diff --git a/.golangci.yml b/.golangci.yml index 1b1d146975..5b93d0fd48 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -83,8 +83,10 @@ linters-settings: - github.com/armon/go-metrics - - cosmossdk.io/math + - cosmossdk.io/core - cosmossdk.io/errors + - cosmossdk.io/math + - cosmossdk.io/store - github.com/cosmos/go-bip39 - github.com/cosmos/cosmos-sdk - github.com/cosmos/ibc-go/v6 diff --git a/CHANGELOG.md b/CHANGELOG.md index 34ad93c58b..de3a6b27d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * Bump cosmos-SDK to `v0.50.2` (from `v0.46.13-pio-2`) [#1772](https://github.com/provenance-io/provenance/issues/1772). * Add store for crisis module for sdk v0.50 [#1760](https://github.com/provenance-io/provenance/issues/1760). * Add PreBlocker support for sdk v0.50 [#1760](https://github.com/provenance-io/provenance/issues/1760). +* Add the Sanction module back in [#1922](https://github.com/provenance-io/provenance/pull/1922). ### Improvements diff --git a/app/app.go b/app/app.go index 39e1226c41..0b3f60c99c 100644 --- a/app/app.go +++ b/app/app.go @@ -21,6 +21,7 @@ import ( "cosmossdk.io/log" sdkmath "cosmossdk.io/math" + "cosmossdk.io/x/tx/signing" storetypes "cosmossdk.io/store/types" "cosmossdk.io/x/evidence" @@ -32,6 +33,9 @@ import ( "cosmossdk.io/x/upgrade" upgradekeeper "cosmossdk.io/x/upgrade/keeper" upgradetypes "cosmossdk.io/x/upgrade/types" + "github.com/cosmos/cosmos-sdk/codec/address" + "github.com/cosmos/cosmos-sdk/std" + "github.com/cosmos/gogoproto/proto" icq "github.com/cosmos/ibc-apps/modules/async-icq/v8" icqkeeper "github.com/cosmos/ibc-apps/modules/async-icq/v8/keeper" @@ -40,9 +44,6 @@ import ( // "github.com/cosmos/cosmos-sdk/x/quarantine" // TODO[1760]: quarantine // quarantinekeeper "github.com/cosmos/cosmos-sdk/x/quarantine/keeper" // TODO[1760]: quarantine // quarantinemodule "github.com/cosmos/cosmos-sdk/x/quarantine/module" // TODO[1760]: quarantine - // "github.com/cosmos/cosmos-sdk/x/sanction" // TODO[1760]: sanction - // sanctionkeeper "github.com/cosmos/cosmos-sdk/x/sanction/keeper" // TODO[1760]: sanction - // sanctionmodule "github.com/cosmos/cosmos-sdk/x/sanction/module" // TODO[1760]: sanction dbm "github.com/cosmos/cosmos-db" "github.com/cosmos/cosmos-sdk/baseapp" @@ -131,7 +132,7 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" ibctestingtypes "github.com/cosmos/ibc-go/v8/testing/types" - appparams "github.com/provenance-io/provenance/app/params" + simappparams "github.com/provenance-io/provenance/app/params" "github.com/provenance-io/provenance/internal/antewrapper" piohandlers "github.com/provenance-io/provenance/internal/handlers" "github.com/provenance-io/provenance/internal/pioconfig" @@ -177,6 +178,9 @@ import ( rewardkeeper "github.com/provenance-io/provenance/x/reward/keeper" rewardmodule "github.com/provenance-io/provenance/x/reward/module" rewardtypes "github.com/provenance-io/provenance/x/reward/types" + "github.com/provenance-io/provenance/x/sanction" + sanctionkeeper "github.com/provenance-io/provenance/x/sanction/keeper" + sanctionmodule "github.com/provenance-io/provenance/x/sanction/module" triggerkeeper "github.com/provenance-io/provenance/x/trigger/keeper" triggermodule "github.com/provenance-io/provenance/x/trigger/module" triggertypes "github.com/provenance-io/provenance/x/trigger/types" @@ -266,7 +270,7 @@ type App struct { MsgFeesKeeper msgfeeskeeper.Keeper RewardKeeper rewardkeeper.Keeper // QuarantineKeeper quarantinekeeper.Keeper // TODO[1760]: quarantine - // SanctionKeeper sanctionkeeper.Keeper // TODO[1760]: sanction + SanctionKeeper sanctionkeeper.Keeper TriggerKeeper triggerkeeper.Keeper OracleKeeper oraclekeeper.Keeper ConsensusParamsKeeper consensusparamkeeper.Keeper @@ -329,15 +333,29 @@ func init() { // New returns a reference to an initialized Provenance Blockchain App. func New( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, - homePath string, invCheckPeriod uint, encodingConfig appparams.EncodingConfig, + homePath string, invCheckPeriod uint, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp), ) *App { - appCodec := encodingConfig.Marshaler - legacyAmino := encodingConfig.Amino - interfaceRegistry := encodingConfig.InterfaceRegistry + interfaceRegistry, _ := types.NewInterfaceRegistryWithOptions(types.InterfaceRegistryOptions{ + ProtoFiles: proto.HybridResolver, + SigningOptions: signing.Options{ + AddressCodec: address.Bech32Codec{ + Bech32Prefix: sdk.GetConfig().GetBech32AccountAddrPrefix(), + }, + ValidatorAddressCodec: address.Bech32Codec{ + Bech32Prefix: sdk.GetConfig().GetBech32ValidatorAddrPrefix(), + }, + }, + }) + appCodec := codec.NewProtoCodec(interfaceRegistry) + legacyAmino := codec.NewLegacyAmino() + txConfig := tx.NewTxConfig(appCodec, tx.DefaultSignModes) + + std.RegisterLegacyAminoCodec(legacyAmino) + std.RegisterInterfaces(interfaceRegistry) - bApp := baseapp.NewBaseApp("provenanced", logger, db, encodingConfig.TxConfig.TxDecoder(), baseAppOptions...) - bApp.SetMsgServiceRouter(piohandlers.NewPioMsgServiceRouter(encodingConfig.TxConfig.TxDecoder())) + bApp := baseapp.NewBaseApp("provenanced", logger, db, txConfig.TxDecoder(), baseAppOptions...) + bApp.SetMsgServiceRouter(piohandlers.NewPioMsgServiceRouter(txConfig.TxDecoder())) bApp.SetCommitMultiStoreTracer(traceStore) bApp.SetVersion(version.Version) bApp.SetInterfaceRegistry(interfaceRegistry) @@ -365,7 +383,7 @@ func New( wasmtypes.StoreKey, rewardtypes.StoreKey, // quarantine.StoreKey, // TODO[1760]: quarantine - // sanction.StoreKey, // TODO[1760]: sanction + sanction.StoreKey, triggertypes.StoreKey, oracletypes.StoreKey, hold.StoreKey, @@ -445,10 +463,8 @@ func New( EnabledSignModes: enabledSignModes, TextualCoinMetadataQueryFn: txmodule.NewBankKeeperCoinMetadataQueryFn(app.BankKeeper), } - txConfig, err := tx.NewTxConfigWithOptions( - appCodec, - txConfigOpts, - ) + var err error + txConfig, err = tx.NewTxConfigWithOptions(appCodec, txConfigOpts) if err != nil { panic(err) } @@ -679,15 +695,14 @@ func New( ) oracleModule := oraclemodule.NewAppModule(appCodec, app.OracleKeeper, app.AccountKeeper, app.BankKeeper, app.IBCKeeper.ChannelKeeper) - // TODO[1760]: sanction - // unsanctionableAddrs := make([]sdk.AccAddress, 0, len(maccPerms)+1) - // for mName := range maccPerms { - // unsanctionableAddrs = append(unsanctionableAddrs, authtypes.NewModuleAddress(mName)) - // } - // unsanctionableAddrs = append(unsanctionableAddrs, authtypes.NewModuleAddress(quarantine.ModuleName)) - // app.SanctionKeeper = sanctionkeeper.NewKeeper(appCodec, keys[sanction.StoreKey], - // app.BankKeeper, &app.GovKeeper, - // govAuthority, unsanctionableAddrs) + unsanctionableAddrs := make([]sdk.AccAddress, 0, len(maccPerms)+1) + for mName := range maccPerms { + unsanctionableAddrs = append(unsanctionableAddrs, authtypes.NewModuleAddress(mName)) + } + // unsanctionableAddrs = append(unsanctionableAddrs, authtypes.NewModuleAddress(quarantine.ModuleName)) // TODO[1760]: quarantine + app.SanctionKeeper = sanctionkeeper.NewKeeper(appCodec, keys[sanction.StoreKey], + app.BankKeeper, &app.GovKeeper, + govAuthority, unsanctionableAddrs) // register the proposal types govRouter := govtypesv1beta1.NewRouter() @@ -706,11 +721,7 @@ func New( // Set legacy router for backwards compatibility with gov v1beta1 govKeeper.SetLegacyRouter(govRouter) - app.GovKeeper = *govKeeper.SetHooks( - govtypes.NewMultiGovHooks( - // app.SanctionKeeper // TODO[1760]: sanction - ), - ) + app.GovKeeper = *govKeeper.SetHooks(govtypes.NewMultiGovHooks(app.SanctionKeeper)) // Create static IBC router, add transfer route, then set and seal it ibcRouter := porttypes.NewRouter() @@ -764,7 +775,7 @@ func New( groupmodule.NewAppModule(appCodec, app.GroupKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), consensus.NewAppModule(appCodec, app.ConsensusParamsKeeper), // quarantinemodule.NewAppModule(appCodec, app.QuarantineKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), // TODO[1760]: quarantine - // sanctionmodule.NewAppModule(appCodec, app.SanctionKeeper, app.AccountKeeper, app.BankKeeper, app.GovKeeper, app.interfaceRegistry), // TODO[1760]: sanction + sanctionmodule.NewAppModule(appCodec, app.SanctionKeeper, app.AccountKeeper, app.BankKeeper, app.GovKeeper, app.interfaceRegistry), // PROVENANCE metadata.NewAppModule(appCodec, app.MetadataKeeper, app.AccountKeeper), @@ -851,7 +862,7 @@ func New( nametypes.ModuleName, vestingtypes.ModuleName, // quarantine.ModuleName, // TODO[1760]: quarantine - // sanction.ModuleName, // TODO[1760]: sanction + sanction.ModuleName, hold.ModuleName, exchange.ModuleName, consensusparamtypes.ModuleName, @@ -893,7 +904,7 @@ func New( feegrant.ModuleName, paramstypes.ModuleName, // quarantine.ModuleName, // TODO[1760]: quarantine - // sanction.ModuleName, // TODO[1760]: sanction + sanction.ModuleName, hold.ModuleName, exchange.ModuleName, consensusparamtypes.ModuleName, @@ -921,7 +932,7 @@ func New( group.ModuleName, feegrant.ModuleName, // quarantine.ModuleName, // TODO[1760]: quarantine - // sanction.ModuleName, // TODO[1760]: sanction + sanction.ModuleName, nametypes.ModuleName, attributetypes.ModuleName, @@ -969,7 +980,7 @@ func New( upgradetypes.ModuleName, vestingtypes.ModuleName, // quarantine.ModuleName, // TODO[1760]: quarantine - // sanction.ModuleName, // TODO[1760]: sanction + sanction.ModuleName, hold.ModuleName, exchange.ModuleName, consensusparamtypes.ModuleName, // TODO[1760]: Is this the correct placement? @@ -1012,7 +1023,7 @@ func New( authzmodule.NewAppModule(appCodec, app.AuthzKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), groupmodule.NewAppModule(appCodec, app.GroupKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), // quarantinemodule.NewAppModule(appCodec, app.QuarantineKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), // TODO[1760]: quarantine - // sanctionmodule.NewAppModule(appCodec, app.SanctionKeeper, app.AccountKeeper, app.BankKeeper, app.GovKeeper, app.interfaceRegistry), // TODO[1760]: sanction + sanctionmodule.NewAppModule(appCodec, app.SanctionKeeper, app.AccountKeeper, app.BankKeeper, app.GovKeeper, app.interfaceRegistry), metadata.NewAppModule(appCodec, app.MetadataKeeper, app.AccountKeeper), marker.NewAppModule(appCodec, app.MarkerKeeper, app.AccountKeeper, app.BankKeeper, app.FeeGrantKeeper, app.GovKeeper, app.AttributeKeeper, app.interfaceRegistry), @@ -1247,6 +1258,16 @@ func (app *App) InterfaceRegistry() types.InterfaceRegistry { return app.interfaceRegistry } +// GetEncodingConfig returns the various encoding configurations used in this app. +func (app *App) GetEncodingConfig() simappparams.EncodingConfig { + return simappparams.EncodingConfig{ + InterfaceRegistry: app.InterfaceRegistry(), + Marshaler: app.AppCodec(), + TxConfig: app.GetTxConfig(), + Amino: app.LegacyAmino(), + } +} + // DefaultGenesis returns a default genesis from the registered AppModuleBasic's. func (app *App) DefaultGenesis() map[string]json.RawMessage { return app.BasicModuleManager.DefaultGenesis(app.appCodec) diff --git a/app/app_test.go b/app/app_test.go index 3a28e476a5..bd3769afdf 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -34,7 +34,6 @@ func TestSimAppExportAndBlockedAddrs(t *testing.T) { InvCheckPeriod: 0, HomePath: t.TempDir(), SkipUpgradeHeights: map[int64]bool{}, - EncConfig: MakeEncodingConfig(), AppOpts: simtestutil.EmptyAppOptions{}, } app := NewAppWithCustomOptions(t, false, opts) @@ -57,7 +56,7 @@ func TestSimAppExportAndBlockedAddrs(t *testing.T) { // Making a new app object with the db, so that initchain hasn't been called app2 := New(log.NewTestLogger(t), opts.DB, nil, true, - map[int64]bool{}, opts.HomePath, 0, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}) + map[int64]bool{}, opts.HomePath, 0, simtestutil.EmptyAppOptions{}) require.NotPanics(t, func() { _, err = app2.ExportAppStateAndValidators(false, nil, nil) }, "exporting app state at current height") @@ -81,7 +80,6 @@ func TestExportAppStateAndValidators(t *testing.T) { InvCheckPeriod: 0, HomePath: t.TempDir(), SkipUpgradeHeights: map[int64]bool{}, - EncConfig: MakeEncodingConfig(), AppOpts: simtestutil.EmptyAppOptions{}, } app := NewAppWithCustomOptions(t, false, opts) diff --git a/app/encoding.go b/app/encoding.go deleted file mode 100644 index 68187444f4..0000000000 --- a/app/encoding.go +++ /dev/null @@ -1,17 +0,0 @@ -package app - -import ( - "github.com/cosmos/cosmos-sdk/std" - "github.com/provenance-io/provenance/app/params" -) - -// MakeTestEncodingConfig creates an EncodingConfig for testing. This function -// should be used only in tests or when creating a new app instance (NewApp*()). -// App user shouldn't create new codecs - use the app.AppCodec instead. -// [DEPRECATED] -func MakeEncodingConfig() params.EncodingConfig { - encodingConfig := params.MakeTestEncodingConfig() - std.RegisterLegacyAminoCodec(encodingConfig.Amino) - std.RegisterInterfaces(encodingConfig.InterfaceRegistry) - return encodingConfig -} diff --git a/app/params/proto.go b/app/params/proto.go index 8107f1b3bf..e046afbd7b 100644 --- a/app/params/proto.go +++ b/app/params/proto.go @@ -17,7 +17,13 @@ import ( // MakeTestEncodingConfig creates an EncodingConfig for a non-amino based test configuration. // This function should be used only internally (in the SDK). // App user shouldn't create new codecs - use the app.AppCodec instead. -// [DEPRECATED] +// +// TODO[1760]: Update all the simulation stuff that uses this to instead get what's needed from the SimState. +// That will involve passing the SimSate into many places where we used to provide a codec. +// Then delete this file and amino.go, and clean up stuff in the Makefile that uses the test_amino tag. +// +// Deprecated: Either get this from the app (app.GetEncodingConfig()) or use MakeTestEncodingConfig (from the app package), +// or get what's needed from the SimSate. func MakeTestEncodingConfig() EncodingConfig { cdc := amino.NewLegacyAmino() signingOptions := signing.Options{ diff --git a/app/sim_bench_test.go b/app/sim_bench_test.go index 507a1466cd..46a8e8fa23 100644 --- a/app/sim_bench_test.go +++ b/app/sim_bench_test.go @@ -37,7 +37,7 @@ func BenchmarkFullAppSimulation(b *testing.B) { } }() - app := New(logger, db, nil, true, map[int64]bool{}, b.TempDir(), simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, interBlockCacheOpt()) + app := New(logger, db, nil, true, map[int64]bool{}, b.TempDir(), simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, interBlockCacheOpt()) // run randomized simulation _, simParams, simErr := simulation.SimulateFromSeed( @@ -86,7 +86,7 @@ func BenchmarkInvariants(b *testing.B) { } }() - app := New(logger, db, nil, true, map[int64]bool{}, b.TempDir(), simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, interBlockCacheOpt()) + app := New(logger, db, nil, true, map[int64]bool{}, b.TempDir(), simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, interBlockCacheOpt()) // run randomized simulation _, lastBlockTime, simParams, simErr := simulation.SimulateFromSeedProv( diff --git a/app/sim_test.go b/app/sim_test.go index ccb4d3f2d0..16101e613f 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -26,7 +26,6 @@ import ( icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v8/types" // "github.com/cosmos/cosmos-sdk/x/quarantine" // TODO[1760]: quarantine - // "github.com/cosmos/cosmos-sdk/x/sanction" // TODO[1760]: sanction dbm "github.com/cosmos/cosmos-db" "github.com/cosmos/cosmos-sdk/baseapp" @@ -57,6 +56,7 @@ import ( metadatatypes "github.com/provenance-io/provenance/x/metadata/types" msgfeetype "github.com/provenance-io/provenance/x/msgfees/types" nametypes "github.com/provenance-io/provenance/x/name/types" + "github.com/provenance-io/provenance/x/sanction" triggertypes "github.com/provenance-io/provenance/x/trigger/types" ) @@ -138,7 +138,7 @@ func TestFullAppSimulation(t *testing.T) { require.NoError(t, os.RemoveAll(dir)) }() - app := New(logger, db, nil, true, map[int64]bool{}, t.TempDir(), simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) + app := New(logger, db, nil, true, map[int64]bool{}, t.TempDir(), simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) require.Equal(t, "provenanced", app.Name()) fmt.Printf("running provenance full app simulation\n") @@ -177,7 +177,7 @@ func TestSimple(t *testing.T) { require.NoError(t, os.RemoveAll(dir)) }() - app := New(logger, db, nil, true, map[int64]bool{}, t.TempDir(), simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) + app := New(logger, db, nil, true, map[int64]bool{}, t.TempDir(), simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) require.Equal(t, "provenanced", app.Name()) // run randomized simulation @@ -216,7 +216,7 @@ func TestAppImportExport(t *testing.T) { }() home := t.TempDir() - app := New(logger, db, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) + app := New(logger, db, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) fmt.Printf("running provenance test import export\n") @@ -255,7 +255,7 @@ func TestAppImportExport(t *testing.T) { require.NoError(t, os.RemoveAll(newDir)) }() - newApp := New(log.NewNopLogger(), newDB, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) + newApp := New(log.NewNopLogger(), newDB, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) var genesisState sdksim.GenesisState err = json.Unmarshal(exported.AppState, &genesisState) @@ -296,7 +296,7 @@ func TestAppImportExport(t *testing.T) { {app.keys[capabilitytypes.StoreKey], newApp.keys[capabilitytypes.StoreKey], [][]byte{}}, {app.keys[authzkeeper.StoreKey], newApp.keys[authzkeeper.StoreKey], [][]byte{authzkeeper.GrantKey, authzkeeper.GrantQueuePrefix}}, // {app.keys[quarantine.StoreKey], newApp.keys[quarantine.StoreKey], [][]byte{}}, // TODO[1760]: quarantine - // {app.keys[sanction.StoreKey], newApp.keys[sanction.StoreKey], [][]byte{}}, // TODO[1760]: sanction + {app.keys[sanction.StoreKey], newApp.keys[sanction.StoreKey], [][]byte{}}, {app.keys[markertypes.StoreKey], newApp.keys[markertypes.StoreKey], [][]byte{}}, {app.keys[msgfeetype.StoreKey], newApp.keys[msgfeetype.StoreKey], [][]byte{}}, @@ -333,7 +333,7 @@ func TestAppSimulationAfterImport(t *testing.T) { }() home := t.TempDir() - app := New(logger, db, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) + app := New(logger, db, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) // Run randomized simulation stopEarly, lastBlockTime, simParams, simErr := simulation.SimulateFromSeedProv( @@ -375,7 +375,7 @@ func TestAppSimulationAfterImport(t *testing.T) { require.NoError(t, os.RemoveAll(newDir)) }() - newApp := New(log.NewNopLogger(), newDB, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) + newApp := New(log.NewNopLogger(), newDB, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, fauxMerkleModeOpt) _, err = newApp.InitChain(&abci.RequestInitChain{ AppStateBytes: exported.AppState, @@ -446,7 +446,7 @@ func TestAppStateDeterminism(t *testing.T) { } db := dbm.NewMemDB() - app := New(logger, db, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, MakeEncodingConfig(), simtestutil.EmptyAppOptions{}, interBlockCacheOpt()) + app := New(logger, db, nil, true, map[int64]bool{}, home, simcli.FlagPeriodValue, simtestutil.EmptyAppOptions{}, interBlockCacheOpt()) fmt.Printf( "running provenance non-determinism simulation; seed %d: %d/%d, attempt: %d/%d\n", diff --git a/app/test_helpers.go b/app/test_helpers.go index e46685e493..e674218105 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -72,20 +72,18 @@ type SetupOptions struct { InvCheckPeriod uint HomePath string SkipUpgradeHeights map[int64]bool - EncConfig params.EncodingConfig AppOpts servertypes.AppOptions ChainID string } func setup(t *testing.T, withGenesis bool, invCheckPeriod uint, chainID string) (*App, GenesisState) { db := dbm.NewMemDB() - encCdc := MakeEncodingConfig() // set default config if not set by the flow if len(pioconfig.GetProvenanceConfig().FeeDenom) == 0 { pioconfig.SetProvenanceConfig("", 0) } - app := New(loggerMaker(), db, nil, true, map[int64]bool{}, t.TempDir(), invCheckPeriod, encCdc, simtestutil.EmptyAppOptions{}, baseapp.SetChainID(chainID)) + app := New(loggerMaker(), db, nil, true, map[int64]bool{}, t.TempDir(), invCheckPeriod, simtestutil.EmptyAppOptions{}, baseapp.SetChainID(chainID)) if withGenesis { return app, app.DefaultGenesis() } @@ -161,7 +159,7 @@ func NewAppWithCustomOptions(t *testing.T, isCheckTx bool, options SetupOptions) Coins: sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, 100_000_000_000_000)), } - app := New(options.Logger, options.DB, nil, true, options.SkipUpgradeHeights, options.HomePath, options.InvCheckPeriod, options.EncConfig, options.AppOpts) + app := New(options.Logger, options.DB, nil, true, options.SkipUpgradeHeights, options.HomePath, options.InvCheckPeriod, options.AppOpts) genesisState := app.DefaultGenesis() genesisState = genesisStateWithValSet(t, app, genesisState, valSet, []authtypes.GenesisAccount{acc}, balance) @@ -577,3 +575,22 @@ func genesisStateWithRewards(t *testing.T, require.NoError(t, err, "marshaling reward genesis state JSON") return genesisState } + +// MakeTestEncodingConfig creates an encoding config suitable for unit tests. +func MakeTestEncodingConfig(t *testing.T) params.EncodingConfig { + tempDir, err := os.MkdirTemp("", "tempprovapp") + switch { + case t != nil: + require.NoError(t, err, "failed to create temp dir %q", tempDir) + case err != nil: + panic(fmt.Errorf("failed to create temp dir %q: %w", tempDir, err)) + } + defer os.RemoveAll(tempDir) + + tempApp := New(log.NewNopLogger(), dbm.NewMemDB(), nil, true, nil, + tempDir, + 0, + simtestutil.EmptyAppOptions{}, + ) + return tempApp.GetEncodingConfig() +} diff --git a/client/docs/config.json b/client/docs/config.json index bb70c658e9..250182d5e1 100644 --- a/client/docs/config.json +++ b/client/docs/config.json @@ -122,14 +122,21 @@ { "url": "./tmp-swagger-gen/provenance/reward/v1/query.swagger.json", + }, + { + "url": "./tmp-swagger-gen/provenance/reward/v1/tx.swagger.json" + }, + + { + "url": "./tmp-swagger-gen/cosmos/sanction/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "MsgFeeParams" + "Params": "SanctionParams" } } }, { - "url": "./tmp-swagger-gen/provenance/reward/v1/tx.swagger.json" + "url": "./tmp-swagger-gen/cosmos/sanction/v1beta1/tx.swagger.json" }, { diff --git a/client/docs/statik/statik.go b/client/docs/statik/statik.go index 75c9bd5acc..487aad2306 100644 --- a/client/docs/statik/statik.go +++ b/client/docs/statik/statik.go @@ -8,6 +8,6 @@ import ( ) func init() { - data := "PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00 \x00favicon-16x16.pngUT\x05\x00\x01\x80Cm8\x00\xbd\x01B\xfe\x89PNG\x0d\n\x1a\n\x00\x00\x00\x0dIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\x00\x00\x01\x84IDATx\x01\x95S\x03Luq\x1c\xfd\x8c\xf1\xc3\xec0\xa7)\xcda\xb6k6\xb2\x9b\xf9\xb2k\xc85/\xdb\x8dqx\xc6\x94m\xcc{\xef\x7fO\xff\xf3l\xdc\xed\xf2\xe0\xfe\xf8\xc9\xffP\x14\x11/\x14[\xa3P\xc4\xa1\xbc?\xf1t>7\x12s\x13\x03\x85\xca7IR a\xb5j\x8f\xa71\xbe]\x88\xf6\xb9L\xf0\x1c\x93\xcf\xda\xe3)\x10\x93f\x8d\xe4\x06\x13\xcf\xde<\x9b\xd14\x95\x8a\x92\x81OA\xcfF\x89\xdd<\x9b M\xe6}L\xe4\x07\x15\xc5\xf5\xe3\xffI\x0c{\xd6\x8d\xffs\x994\xbasfh\xae?\xafk\x1aprw\x10 <\xb9\xdb\xc7\x86\xa6\xd1\x19I\n\xa8\xb1\xd7\x84y3g\x171T$\xb5c\x7fq\xfbbq\xbfk\x8e'\x1dQ\xb0\xc2,\x92\x0bx|;F\xe5\xf0\xef\x00\x83\xf2\xa1\x1fx|?q\xbd\xcb\xc2\x16\x80ZF\xf0\xc4J\xf3\xe3\xe4n1\xcc\x17k`:}\xcby\xe8\x98\xcbB\xc7|6z\x97r\xd14\x9d\x06\xd3\xf9\x8a\xe4\x94\x90\x8b\xb6\xd9\x0cP\xebc@\xd0|\xbe*\xc94\xc8\xa7\x98'\xcdh\x00\xe3\xd92\xa6vK}\x0cB\xa4\xf0+D\n\xc7\x81)\xb0\x10\x9a\xe3\xa9\xd8\x8bx\xe4(\xa2\xbb\x8dl\x0d\x01\xb6\x8a-\xf378\xbe\xdd\xc7\xa6\xb6\xc9\xd9\xc6d\xd8\\m\xf4\x0c\x92 uQ\x0e\xd2\xf5\xb3\xd1\xf1w\xdfQ\x16\xb34a$\xa1\xc4\xc4(V\xbcF\xd9\xdf\xa4\x91\xe9\xb0&,\x12+\xcd\x93\xcf\x1c\x1cb\xdc\xca\x00qt\xeb\xcc-\x14\x89\xfe\xfc\x0fm2j\x88\xec\xccs\x18\x00\x00\x00\x00IEND\xaeB`\x82\x01\x00\x00\xff\xffPK\x07\x08\xd4`4t\xc7\x01\x00\x00\xbd\x01\x00\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00 \x00favicon-32x32.pngUT\x05\x00\x01\x80Cm8\x00u\x04\x8a\xfb\x89PNG\x0d\n\x1a\n\x00\x00\x00\x0dIHDR\x00\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x04|ID\xc4\xcf\xd0@\x04&%\xad\x1e\x16\x0f\xf7\x8d\x97AR\xfa\xca\xe7l\x87\x05\xf8\xd2\xfb\x0c\x84\x1d\x0dLVY\xdc/ju\x13\x1a\x88\xd2\xa0\xaaa\x82|nzp_\xf4\x03\xc8 \xd4;^\x8a9}\xeeu\x9a\x91 `\x04\x14s\xec\xe1\x0c\xc6]\xa3\x05``\xd1w\x12*~ \x00\xf3\xae\xd3\xa0\x9cb\x82\xa2bx(\xb3n\x1fqx\xd2\xf2\xda4\x1d\x8a}\x1ck\xd4>\x9cI+\xeb\xb3\xf4k\xc8u`L\x93\xf3]4\xb5\xd0\xc3\xe33\xd9\xee\xd7\xf2\xd9\x19\xea\x18\xc9\xc1Y:\x18\xfb(-\xadN\x82\x06e\xd5\x1f0\xa2\x1dV\xf8\xbe0\xc1\x985\x01\xf8\xd2~\\\xa6\xa5\xb5)&\xf6\x98V\x80l\xe4\x03\xf8\x03\x04\x00s\x9a^\xec\x85\x00\xf4+\x0b\x00\xe1:G\xf2p\x96\x0e\xc4,\xe46\x1e5\xbbP\xdd\x15J\x80}\xce\xa4\xe2\xc8{m\xa4\xe2\xc3\xc2\x01\x07\xc0\xdb\xa4\x18-\xa1\x931\xba\x10S\xfa%\xb6P`\x10\x19v\x99#|Gg\x9b \x10W\xf6\x8dI1\xba\x92\xd66\x17E\x12\xfa\xd9\xa8\xf3UTe\n\x1b\x95\x9d\x81f\xe5\x18\xa5umc\x81\x86\xa6\xeb\xec \x804\xcbg\x17\xa19\xfa\xc6\xf7<\xa3\xbd\xf2\x0e\x7f\x02\x80\x97Y\xc7\xac\x184$h\xa3v\xba! \xcc{\xcd\xb4!\xb1\xd8\x92%h\xe3\x93\xdc\xd3_\xda1\xe6\xaei\xcf\x83\xa6p\xbc$\xf0\xb2\xda\x94\xa2q\x14B@\x13\xdb\xff\xf3\xd7\x0d\xfaA\xb9\xc5n{\x8e\xd6Y\x08\x01u\xc1'~\x16\x8e\xe9\x04\xa2\xfbA+\xc74\x0c\x98\xab\xd7:\xfc0\xd1v\xaf$\xa2#\xb7\xf1\x08\xfdm!OXh8\x10j|g\xd1\xe0a\xb2\x99\x04\x9a[y\x9a\xbdk\xf24C$\xa0\x9e#\x9f\xa3\xa8\x001\xc6\x1a\"\xc0\xe4i\xa6\xcc0\xf3\xf7\xb7\xf5XE\xb8\xe0\xa1\xc9\xc2\x0c\x90\x83\x80$\x838\xdf\xd6\xe3\xd4\x82FNG\x0f\x876\x8a\xbf1\xa8d(\xa7@\x8cQX\x90\xdb\x19\x9f\xc5YG\xe9\x9e\x00\xa5y3]\x9aJ\xe1\"\x00\x00\x00\x00IEND\xaeB`\x82\x01\x00\x00\xff\xffPK\x07\x086B\xc8\xd7\x7f\x04\x00\x00u\x04\x00\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n\x00 \x00index.htmlUT\x05\x00\x01\x80Cm8\x9cT]k\xdc:\x10}\xdf_1Q\x1e\x92\\\"\xfb&\x81p\xf1\xb5\xfd\x90\xa6\xa5\x81\x94\x06\x92}(\xa5\x14\xd9\x1a{\xa7\x91\xa5E\x92\xf7#!\xff\xbdX\xf6\xae\xb7\xdd\x90BYX\x8f\xe7\x9c9\x1a\x1d\x8d\x9c\x1ep\x0e\x1f\x1f>\xddBe,8/<\x95 \xc9yKE\xeb\xc9h(Z-\x15B\xd1\x92\x92\xc0y>I\x0f\xae?\xbf{\xf8r\xf7\x1ef\xbeQ\xf9$\xed\x1e\xa0\x84\xae3\x86\x9a\xe5\x13\x80t\x86Bv\x01@\xda\xa0\x17P\xce\x84u\xe836}\xf8\xc0\xffc\x03\xe4\xc9+\xcc\xef\x97\xa2\xae\xd1\xc2\xf4&\x8d\xfbL\x8f*\xd2\x8f`Qe\xcc\xf9\xb5B7C\xf4\x0c\xfcz\x8e\x19\xf3\xb8\xf2q\xe9\x1c\x83\x99\xc5*c\xae\xd7\xe0-E!\xbb'A\xa5\xd1\x9bbjD\x8d\xf1\\\xd7\x9b\xeaJ,:\x9c_\x9c\xaf.\xce\xa3\x008zB\x97\xb1\x90a\x10\xff\x9d\xde\xd9\xe5\xea\xec\xf2\x17\xbd\x90\x19\xf5\xc2\xc6\xfa\x18\x82\x9bC\xf8<<\x01\n\xb3\xe2\x8e\x9eH\xd7 \x14\xc6J\xb4\xbc0\xab\xff\xb7\xb8Y\xa0\xad\x94Y&\xc0\x1b\xf3\xc4]i\x8dR\x85\xb0\x8e/\xd0z*\x85\xda\xe7\xf2u\x02=q\x83\xbdL\x86\xe0\x9f\xd3M\x90\x14X\x19\x8b\xe3\xbb\xa8<\xda7\xfb#=CK~O\xb40r\xbdW\xd8\x08[\x93N\xfe\x1d\xdb+D\xf9X[\xd3j\x99\xc0a%\xba\xdf(\xd5\xfd\xa7\xf1\xd6\xaf4\xee'\xac\x0b;\xf9\xc1OI\x0b \xb9;\x0e,OcI\x8b|2\x18^Z\x9a{p\xb6\xdc%\xf1~\xc6\xa3\x1f\x8e\xe5\xdd*\x81\x94\xbfY\xe1\xbc\xd0R(\xa3\x91\xcf-:\xf4o\x14\xf7/K\xd2\xd2,#\xa3\x95\x11\x122\xa8Z]v\x17\xec\xf8\x04\x9e7N\xc51\\\x85{&\xc0\xad\x9d\xc7f\xc8\x97F;\x0f-A\x06\xc3m\x99\xde\\\x85\x9e\x8fGG[\xab\x12`Q\xeb\x8c\xd8v\xfb_}K7\xd3F\xfe]\xb1\xa1\x82h%q{\x8b\x9b6\x88/\xc4i }\xc07u~}\xe5\xad\xfd\xc9\x98\xe7q\xd8_}o\xf1\x92%\x9dx\x15\x9f\xd3yO\xbdX]\x1aA\xc9>t\xd6o\x93\xd3\x92\xf2\x04l\xc5\x8d\x92jz\xc1jN\xd6\xf2\xa9\x87\xfa\xb5]\x05\xcc\xf9\x1acB\xa9,\x9f\xd0\x08\x05\xb7\x962\xec\xdb\xb6\xe2\x16b\xc6\xd5\x942H\x05KfI\x06\x7f\x9c\x98\xa8\xc0\xd5\x9c\xa2\x0c\x13\xa3\xe7U\x8e\xb55;'Nk\xe6\xd0\x9d;\xd4%^\x14\xbd\xd5\xf7\x92QN\x8e.\x1c`\x079m\xe3\x9e\x8a\xfe\xed\xa2\xad\xe0y>\xe6\xe23\xdc\xf8u\xa7=\xa3\xf6\xa1\x98\xb4\x17g\xa9\xf4\x1dA\xa8Z\xe4\xf6\x88_\xfc)\xf8\xd5N\xcf,\xea\xb4\xabS\xf2\xd2\xe0v\x10\x90\x82\xbd\xb3\xe1\xc1g\xc8>\x120\x0c{\x1d\xbd\x1c\xd1\x7fd\xb4\xbf\x82|\xf7\x9f\xd0\xa7\x1e\x82\xc5`H\xc0\x94F3p0$H.\x0f]v3\xaa\x9b\x1c\x83EW}\xba4\x12O`_\xb5!H5\xd1 \x9a\x0c\xaa\xcd\x04\x8cE\xe7M:\xe1\x08\xfe\xefQ\xab\x02\xfe\xb7A\xeb\xb6k\xbb\x05{\xef\x8e\xde\x84\xcb\x9c\xb2\x8f\x04\xd7U\xf9\x9aQ:\xbe\xf51\xf1\x1a\xaaW\x97uR\xdd\xe7\xf59\x974\xb7\xfc5s\xd0\xc4P\xdf\xdd\"\xd7\x96\xc2\xdab7x\xb8;\xfc\x01\xfa'\x00\x00\xff\xffPK\x07\x08]\x12r 9\x03\x00\x00T \x00\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00 \x00swagger-ui-bundle.jsUT\x05\x00\x01\x80Cm8\xec\xfdyw\xdb6\xf68\x8c\xff\xffy\x15\xd7\xfa\xf6\x9b!kZ\xb1\x9d\xa5\xad\x13\xc5\x93\xc5m\xb3g\xe2\xa4\xcb\xa8\x1a\x1fZ\x82,6\x14\xa8\x90\x90m\xb5\xf2\xef\xb5\xff\x0e.\x00\x12$\x01\x10r\xdc\x99\xf9<\xcf\xc3s\xdaX\\\xb0\\\\\\\xdc\xfdn\xc1tI\xc7,\xc9h@\"`!\xfc\xf9?\x00\x00\xbd\xec\xf4w2f=\x18\x0c\x80\xad\x16$\x9b\x02\xb9\\d9+\xe0\xd6-\xd3\xd3y6Y\xa6\x04\x0e\xe5\x1f}\xf5\xf6\x00X\x10\xc2\x01\xf4T7\xfaG\x132M(\xe1-\x8a\xbf\xfa\xf1|\x02\x87\xf2G0\x1c\xe1\x80\x0e\\\x839T\x7f\xf5\x8f/\xe2\xb33\x92\x7f|\xfedI'));&\xe6'\xffs\x15\xb0YRD\xd5\xf4\xd5\xd4s\xc2\x969\xd5\xc0\xa2\x1e\xf0\xeb<\xce\x81\xc1\x00\xfe\xbcz\xf0?\xe5M\xf5*\xd0 \xd7_\xe6W2\x85\x80\x0d\xf3Q\xa8\xda\xe5?\x14t\x1e\xd4^\xe5mg|t\xc3|\xc4\xbb\xa8=\xc4\xb6\x0e \x8fZw\xd3\x03\xd8\xdak\xdf\x96]\x1c\xc0\x9fW\xb5gW\xf5N\xe5\xa8\x08\x1f\xd58N\xd3 S\x83\x8b \x8b@\xfbEC\xfe3\x85\x01l\xedj\x0f\xca\xd6\xaand\x9b\xb4?\x87\x01\x90\x08h\x7f\xcc\xa7\xc5\xff\x98\xc0\xa0\x8ep\x11\xb4@F\xfb\x99\xc4\xc5\xf5\x1a\xde\xe2\xd2\xf7\x05J\xbc\xcb\xb3\x05\xc9\xd9J~\xd9\x86\xd08\xa3\xd3\xe4l\x99\xc7\xa7)\xb1\x80\x85.\xe7D=\xdfm??#\xec\x00\xf2:\xc4\xc2j\x8e|\x0e\xb46\x87\xe6\xe8\x15\x86 Z\x93\xfe\xc9 )^\xab\xbd\xd1\xc25\xfdR+\xc1\xe7\x1a/SV\x1f\x03\x1c\xf8}\xed\xb1\xd6\xb4? X\x04\xbd\xb8\xc7\x81\x1c\x01\xabO/k.Q\xb3;\xd9\x8c\\\x99E\x9e\xb1\x8c\xef\xca\xfe,.\xde^P\xb5F\x02\x9b\xf0\xfbz\xfb\x0b\x18@\xef\xf6$)X/\x02\x1a\xd0>'\x12w\xef\xde\x13\xaf]\x05\xc3\x06~P\xbd\xff\xde\xb2 P\xb0<\x19\xb3^59\x9d\xdc\xd0\xe0\x1b\xd5T\xd4D\xb5ZS\xf5\x8f\xbe\xbdw'\x0c\xbc\xbe3\x0f\x81\xe9+-\xb6\x08S+\xd9\x05PN#\xb6\x02\x02 -XL\xc7\x9c\xbe\xb10\x046\xcb\xb3\x0b\xa0\xe4\x02>\xac\x16\xe4(\xcf\xb3<\xe8=\x8d)\xcd\x18p\xe0B\x0c\xe34.\n\x88\x0b\x88\xcb\x1ezacG\xde\xcct\xaaG\x1c\xc1\xf3\x08)\x15\x0d\xf6\xef\xef\x87\xf5M\x94\xc0\x00\x82\x1c\x06\x90\x85|\x07\xe4\xf5\x1d\x90\xc3\x81\x01y%\x9cZ\x1bO\x1f\x8f\x01\x96M8\x96t\x98\x18\xc1\x8c\xafd9\x04|\x06|\x13\xef>\x00\n\x0f\x81\xf5SB\xcf\xd8\xec\x01\xd0\xedm\xd3G\xa0f\x8d\xc4\x99\x8e\x1e\x18\xdf\xc8\xfb\x15m\x81A\xfd\xe7z\xcd\x89\x11\xe4}\x9d@I4\xe9\x9d\xc7\xe9\x92\xf4 \xa1\x90s\x88\x05y\xff\"OX\xf9F\x18A\xb0\x1bA\xa2 \x10\xf2\xc9\xe5\xfdOd\xc5igk(\x0djo\xda\xb9%\x009.\x18\x08\xb0\xf6*E*\x16h\xdb\\\x1c\x04\xb9\xbc\xcf\xbf\xd6)H\xbd\xcf+\xbf\x1d\xa5\xef\xc4\xfaHJ\xc4\xa0\xc17\xf7\xef70\xadB,N\xca\xff\x9dX\x7f\xf7\xde\x7f\x0e\xe9\xad\x04\x84\xe8\x14\xe3=\x99\x92\x9c\xd0\xb1\"\x1b\x9c\xd7\x81Y\\\xd0\xbf18%\x84BB\x13\x96\xc4iR\x90 \xec@\xb1\\\x90<\x08kop\x12C&\xbd\xd0x\x86l1\x8e\xd3%c\xb65\x18@p\x9e%\x13\xd8\x85\x01\xe7\xd2\xe0\x10zK*N\xedI\x0f\x0e\x9a(\xcc\xe9\x1bg$+\xaep\xab\xe4\xed\xf8\xc7\x04\x0e\xf4s\xe9\xaf[R\x18@\x1cp\xec\xfa6l\xaci&\x1f\xdd\xb9\xfb]\xf3Q\"\x1f\xdd\xbd\x17\x86&>0n\xb3\x05\xea|6p\x05\xc4\x8d\x1e\xc4\xb6\xb9\xae\x87'\x16\x90\xdf\xba\x05t\x99\xa6\xb8\x92\xccr\xf6\x1cs,\xe1\x8ceN\x8a\x82\xcfs\xbe,\x18\x90\x84\xcdH\x0e\xa7D4\x90\xe5\xdaa\x14\x01?\xacz\xb0\xbd1v4\xd0\x8eT\x04\x88o5d@\xab\xd7\xf9\xe8k$\xca\xc8\x19\x16,_\x8eY\x96\x9b\xa0\x0d\x88\x0f\xe9\x92\x1c\x00i3\x85\xd0d\x1c\x0d\x8c%\xbf\x14\xdd6\xb3\x96\xd0fPw[/5\xc87'\xae\xf2PPk|\x88\xd3\xcfk\xc7\x01\x13\x92\xce\xc9 \xc2\xe0\xe4\x84\x1fT\x1b\xf2\x01\xb8\x1b*\xa0\xe7\xae\x83\xd6\xbc\xd5T+|\x85\x1e\xe7y\xbc\xd2x\xc3\"M\xc6D\xdb*\xa0o\x17f=\xae\xc5\xdc\xeb\x8b/\xf9\xceqNbV;\x99\xc20\xd2\xf1\xa4\xaf-9\xe7\xc7\x1b\xdb\xc8<\x14\x03C\x0f\xd5\xee\xc5}-6\xec\x8b\x80\x84^-\xe6\xce\x16\x97U\x8b\xbf\xfa\xb6\x989[,\xaa\x16_\xfa\xb6\x98t\xcf\xfa\xd6-\xd8J\xab\xa6\x7f\xf0m\xda@\n\xb5\xa6\xb7\x82-\xc1\x1c\x91\xe1t\xe4\xd7\xe0\xd2\xb7\xc1\x85g\x83\x85o\x83\x13\xcf\x06\xd3\xee\x15_\xaf\xb1[\xaf\xe6\xc6\xbe\xe3\x9b\xb5\xc6\xa7\xffbA.X7\x16d\xea\x8fD\xfcA\xfbI\xf1\x9c\x95\x9ck,\xee\xbc$+\xc2\xc5\xf5\xa5|\x81N\xc8%\xde(\xc4\x8d\xc7E\x91\x8d\x93\x98%\xe7\xfc\xa3T\xdc|\x9bOH\x8eo\x8d\xf9\x0d\xd5\x06\xef\xba_\xb5\xc0\x07\xd0?&\xfc\xbcJ\xda\xf4c\xca\x05\xc4\xbf\xff\xfd\xe4\xe4\xf9\xeb\xd7\x1f?<~\xf2\xea\xe8\xe4\xf9\x87\xa3\xf7\xf8\xc7\xc9\xdf\xff\xdekS\xd6E\xfb\x8b\x97G\xbf\x1e=\xb3\xbc>1t\xf0\xe6\xd9\xd1/\xd6\x0ff\xed\x0f\xde\xbe\x7fv\xf4\xde\xfa\xc19\x0c\xe0^\xfb\xf6\x1c\x06\xb0\x07\x0f\x1f\xc2\xb9A\xf1\x00\x03\x98\xc3\x0e\x18\x8e\x96\x15*\x9c\xda\xf7O\x8dZ\"\xa8\x8e\xb2\xad\xbd\xd6SC3'\xd7i\xc6F\xcb/\x9c\xd8J\xfa\xd8$g\xc4\xf6\"O\x92|dn\x91\xc8\xa3\xa1lp\xd7o;]\xf2\xd3\xcc\xf6\xf0\xd8q\x12q\xbee\xbd\x86\xdd\xb6\xf4W\x13*_\xc7l\xd6\x9f\xc7\x97\xfc\x90&R\xb2\x84\x1dT\xb4\xf0c\x88\xb3Tx8\x06\xa8O\x13Rh\x06\x0f\x81>\x80\x8c\x8b\x9f\xf90\x1b\xf1\xe3j\x98\xc160\x83\xac)A\x99{\xcd\xf6\xa9s94\x9e\x8c\xf4\x8b\xe4\x0f\x05S\xfcs\x80\x0cE\xc2\xe9\x02#\xc1cq\xba\xf2'^\x1d\x7f\xb2B\x12\x99P\xba\x9c\x9f\x92\xbc\xc6\x82\xba$o\x8a\xd0\x7f\xf4\xe8\x91 \xfc\xa0\x1a\xe5|&\x15\x1c,_\xa9\xbb\xfb\xdf\xdd\xfd\xee\xfe7\xfb\xdf\xdd\xc3\x19\xd2R\x05\xfb&~cn\x85/2m\xe3\xba\x0d|\x0c\x1e\xc2.\x1c\n o\x03\xab\xc9,\xe0\x00\xcec\x97\n\xaf\xc1\x14\xda\xdaxkb\xe2\x1aM\x05rm94\xe4Zs\xe8\x08\xa1\x1e\x1e\x0e`\x87\xe2\xc9^g\xce\x0d/3x\xc4\x01\xe85\xb0w\xd6\x95\x97\xa3z-G\xee\xb9a?\xf8\xb6\xc7\xfc\xda{\xed\x018}c\xc0!P\xce]\xcb\xc5\xd6\xf77\x83m \x9c\xf5n\x087\x9cC\x12\xef%\xa8di\x9d\xf4\xfa/\x8e\xdf\xcf9\x1dhS\xe6\xdf\xf9y\xd1\xbe\xfd\x06\x06\xb0\xdf\xbe\xfd\x9e\x9fR\x95tW\x19K\x8eW\xf3\xd3,\xe5\xeb(\xfe\xea\x8bM\x9d\x19\x8c \xcf\xc4I\xa7^0\x1cm\xaf`\x00\xef9\x8e<\xb3\x1d\x01\x1f\xcd4\x87\xcd\x92\xa2O\xc9%\xf3f\xc6?\xab\x95\xb2\xe8\xa8\x94\xc1\xa4Z(\xbe\x05\xf7j\xcb6\xe4\xdf;\xa8(\x1cB^\x9e!\x19\x1c \x91v\x9e\x86\x99Y\xb2\x9bd\xd4v\xe2z\xd2\xea\xef]T\xc19$\x81~\xcequJ\x9a\x96A\xfd\xe1\xe6>\xb7~\xf4ec\x9f\xb8\x19\x83\x866H\xb3\xf4!\xcexu\xf1\x93\xb9\x0be\x91\xe1C\xb5\"\x82\xd4!\x08\xa3\x85\xdf\x8c~tw'\x0e\xd3\xf7Hk\x87\xefG|\xcb\x90\xe1\xb3\x91a\x08\x0d\xb5\xcc@?\x13\xd5\xf0\xbcF\xf4\xb3\x07\x8c\xd5\xc9\xabCXp)^]\xbcpv\x81\x1a\xa0\xe6\x91\xa3\xb6cB\xd0 \xab\x84\xe8>\xcb\x8e\xc9g\xbc\xa5Z7\xb7\x0d\x1aP\x0b\"\xc5'\x93M\x18\x95X\xe4\x02\x181\xae4(M\xa9M\xbfut\xb9 cF&\x82A\x83,\x87DIE\xa27\xc8\xa6b\xcb\x15\x11\x7f\xfa \xa5\x1b\xf1\xe8\x00\xb5\\\xb6n\x8d\xab\xc8\xaf+_d\xfb\xf5\xcb\xe0\xdeg\x19\xcab\n\xe2r\x11\x96\xed\xb5 \xfdi\x9e\xcd\x8f(\xcbW\xe5\xcb\xc4w\x94/\xbfl\x94\x86\x81\x11} |\x9cR\x8aT\xb7\x96\xdec\xfb\xc19\xb6\xe0\xcb\x07\xa7F\x13\"4\x19\xdeo\x8cL\xff\xf5QSU\xb1\xec\x98\xe5 =s)\xdd\xb4\xc1\xf6\x86\xcf\xe5\x01=\xea\xd5{\x88\xe0c\xff\xe5\xd1\xaf\xc70\x80\xe7\xfc\xef\x9f\x1e\xbf\xfax\xc4\x7f\xfd\xce\x7f\x1d\xbd\xf9\xf0\xfe9\xfe|\x13\xd5\xfaOh\xc1Q\x1f\x06\xcdQe\xcb|Le\xf2\xd9\xb3M\xd3\xd8^\\\x7fQ\x11|''%\x00{|$\x7f\xf6\"\xe8]\xf5\x9cc\x1e\xc7\xe3\x19yO\x8a\x0e\xeb\xa8\xd6\xd5\x96\xe8\x0b?\xc4sOt-e\xbd\x8f\x14\x1fL\xf0\xfc\xd2\xdf\x1c\x88\x17+\xac\xef\xb3L\xc8\xb2a$\x1eI\xc1Q\xfbH\x9e-\xf2\x05\xd74\xca\xfe\xbb\xac\x18\xdaDR\"\xbdx\x04\xa3\xd8\xd2\x01\x98{\xc8\xf2\x0d\xba\x18wv\xc1\x82_#x\x11F\xf0km\xf1\x15\xbd\xf5\\\x133\xa6\xbf\x14-\xbf\xf4\xc7\xf4\x97\x0eL\x7fY\x1b`EI=\x9b6\x0d\xf1\xe5\x0d#\xfc\x90#\xfc\xa8\x8d\xf0/o\x18S\xf6\xbcz\xf8\"Liw\xc1\x82\x1f\xc4z\xfe\xe0\xbf\x9e?8\xd6\xf3\x87\x06\xe5b_\xb6\x96/\xfaI!Z\xc8\x08\xff\xa5\xb4\xb7\x1c\xbd\xa5\xba\x96\x8f_S\xe4\xbelko\xbf\x8a\xe0\x9f\x11\xfc\x12\xc1?\xdaJ\xd3\xe3\xa3\x7f\xa0\xc2\xd4&9\x12\xe2\x10\x1dOb\xe4\xca\xd0\xa3L'6\x1b\xb1\xaf\xcc\xd2\x83\xe2/\xa5q\xe9\x13Y\x15F\x1eR\x8cDr\x83\xd5PN\xf8\x07\xc2\xc7\xadF\x077\x19\x1auN>\xa9\xf4\xf3\x96\xf9\xa3\x80\xe1\xaf\xa0\xcb\xbb\xbb\x93\x86\xb3\xa8q\xef\xa9<\x0c\x86#\xaf\x8e2KG\xea,\xaa\x0c\x18\xff\xf04\xb0 7fm\xf0+\xdeZ\xf0\x95\xd4\xb5\x12\x12\x0cG\xa1_\xbbq\x07r\x08\xa3fR\x883\x0fy@\xd9\x05 \xdb\\\xf3\x93\xea\x8d\xdc\xfc\xc6\x1f\xd5\x1b\xd4\xfc\x86Q\xca9\xac\x84\x9cR\xf5d\x16*\xbfL\xd2\x19~\x8a\xe0|\x04\xfc\xb8O6\x92x6\x92Y\x97\x1d@/\xcc\xc2\xdc\x97OO\x08r74\x8b\xc2\x8d\xe4?7\xb0\xc5\x80\x1e\x06|(W\xd7k\x08)\xf1T\x97\x11\xc9\x9a\x99\x81\x9a\xd9D\xf0\xd2\xca\x91\xf0\x03\xa2\xb2l\xecE\x10\x0b3F\x0c\x0f\x07\x90<\x80\xd8\xeeF\x07r\x1cK\xde\xc6\x90r\xd1\nv \xe6\xb2\x95\xc5\xad\x0e\xd4b\x0b\xbd\x1e\x0b\x96\xc3\xbdQ\x84\x8a\xbb\xe5pw\xc4\xbf\x8c\x80\x84\xa5\xa6$\x86mh+\xe1\xa0%~\xa9K}\xd6zhU\xfb\x936\xab\x8c\x9et~Df\xfc\x17/\x93q\x85\xac\x90\x15+\xe7\x02\x0c\xc7\xc6\x8f\x81\x93\xa5P\x97r\xfe\xf0_X\x05\xfc\xedmx\x04 \x1c:\x1a\x07?u\xa7\xba\xacjOu]\xc1\x01|F\x07F.\xcaKL\x12\xe8L\x86{\x8d\x93\xa8\xfc\xa8}\xdb\x03M\xb2\xfc\x1ax2\xb5;\xb1*\xca\xa4y\x94\x0b_L\x8eR\x11XQ\x83\xe3M\xfd\x0c\xa3\xd5\xbe\x91\xba\xcf\x0c\x9bx\x19\xd0\xb0?\x8f\x17\xd5\xba\xbb\xda\x05m\xd2\x08Q\x0c\x1d\xa06\x10:Ts\x13b\x1d\xd2\xaf\xff\x81!\xa9-\xd0^t\xb4\xeaD\xd0\xeb\x99|\xcd\xf8\xd5\xeb5=\xf7\xf0;N\xd3\x17\xde*\xab\x85\xfbT1\xf0#/9\x1b\xc1\xa1\xb4 \\:\x7f\x95\x14\"\nfB\xc4\xf3_\xeb\xcf_\xc7\x0b\xa1\xbb\xf2\x1a\xce\xc4=\x1ce=\xae\xf9]\x0d\x14O\xdd\xd4\xaa\xe9\xaf\xf9Acf\xdf\x11\x1cwHe\xbe$\xb0%\xf5\xef\x0c-\xcc%Fm\xd9\x18%\xc1\x82j/\xeem\xa0\xa6\x97N\x08o\xa7V#\x06So\xb8\xb6f \xb8y\xf9f\x10\x868\xa1\x00=\x0f\xf4\xbb\x9bN\x10\xec\x93\xf4\xa7f[f\xc7Q\xd2'\x9f\x97qZ\xa0J\xde\xf4\x02\xd3^\xd8Ro\x07\xcc\x93#?\xf7Z\xf2\xee\xe5\x8d\x03\x11M\xa4\xd9\xb5+\x87\x07\xed&+o\xca\xc7\xda\xcd\xe6\xe7''\xb3\xb8\x98\xb5\x1a\xa8n\x97\xaf\xd4\x1e\xac\xd7B\x7f\xcco.\xe5\xb0\nu\xa3\x907\xc6\xea\xc6\x18=\xa5;\x90\xb2\xe9\xc1!\x0d\xd1\xf8\xdb \x1b\xe5Z\x81\x9e}\xe6\xb6\xf9H\\\xac\x06J\x88})#\x04\x1d\xe6\x8f>9'\xf9*\xe8T\xa8\xa8K\xb1B9\xda\x00\x83P\xec\x82Nv\"\xe3@\x98\x91 CNQ8/\x06\x94\xc3\x15o\xeeb\\\xa1\xed(\x00\xf4\xdf\x97\xfdq.\xc2c\x8f\xa8q\xda\x16\xa8\xe5gc\xee\xbc\xf1\xaaZ@\x0b\xcd\xd1\xd5\xbe\x88m\xda\x0d\xdbB\x90\xb4 \x0exg\x0d\x0f\xf9\xe6\xa5xK\xc7\x12\x10\xa9\x05\x81\x01$f\x08\x1b\xa17\x15\xc10\xc6/\x16 \xb6\x8frE*\xd1\xc7\x14<\xa8_\x1c\x9e\x9c\x13\xdd\xc2\xd8\xb4\x00\x9d\xa43\xfe{\x86<\x01\xe9\x9f\x11\xf4\x8a\\\x85\xfc \xbf\xab\xddB\x1cQ\x185\x95\x1ek\x06\x8a \x885V\xf1q\xaa\x11\x13\xbe\xa8\x0b/\xba7w\xd3\xbd-T4\xea\xf1bsM\x02\xe2\x1c\xbbj\xc0\x8c\x8fB\x9f\xa3\xbc\x1e\x1a\xfa\xa4\x86/\xcb\x1e\xdc\x86\xdd\xd2\x9fE\xfa\xbd\x84\x91zC}\xe8:\xd8\xfeY\x0e\xed\x9ff\xc4\xf9\xa7\xb4\x19tl5\x1b\xb4\xce:\xa0U\x8b\x8c\x11*\x02O_\xa1\x15q9\x0b\x99\x97b\xd5X\n\xad\x0d\xf3j\x9c\x91@\xbaZE\xa0\xe2\xfb\nF\x16\x10\xc3\xfb\x98\x9e\x118]\xc1n/\x8cpo\xe19\xb4\x1b\xd5W \x0d5\xe8[z\x1bv\xc3\x08i\xba\xf6\x02\xc5e\x94K\x18\x9f\x16\xe8z\xc8\xe0\xa1\xe4\xd8\xf8\xdb;T\x99pN\n\x16\xe75\xdd&\xa1\x13M\xb5y\x82C\xc3\xc1\xeaX\xa3\xa3\x07\xfe=&I\x1a\x04\x0cv8\x01\xbe\x0d\x94\x8bV!\x97\xcd7\xc3\x9d_JX\xfeb\xc6\x9d_\xbe\x0cwN\xcd\xbaD\x81/\x9aJ\xe9\xf1i\xc1\xf2x\xcc\x9a\x96 K\xb3'\xc4\xe5fz\xe1|z$\x9f\xea\x0f53\xd6\xf0\x1f#\x15`\x1a\x10\x12\xc1K\x8e\x19z\xdc\xc3\x19\xe9\x0c\x04\x82\x86\x15\x86\x93G\x94\x0f4M\xfb\xf0\x932g\x84\xa3\xb6gc\xa3\xcf\x8dL25\x7fY\xadG\xe9![S-U\x1e\xb2\x03\xc8\x85\x8b\xac\x15W\xa4\x8a\x88\x04t\xc80\xecn\x07=\xba\xb2\x11\n\x7f\xbc\xa3jgf\x1c\x15\xadT;\xf3\x9a\xac\x9fu\xc84Q\xe3\x14Z\x937\xbe\x95\x9956\x9bikJ \xaa7\xbd\\M\xa8/\xf4\xc3CbD\xf9Z\xdf\xb3\xb8p&\x02\x80\xa6\xa5S4\xdd\x08\x93o\xa9\x02\x1a\xbd|\xe9\xc6\x12\x9d\x8a\x9dU\x99\xaa\"\xc9V\xeb;-\x11;-\xe1;-{\x00\x89;\x16:\xe6\xdf\xe3bf\xb0\x03 \x1c@b\xd1\xf35vf<\x8a n\xee\xc6\xc4\xa8\xb4\xb5\n\xa3\x89\x17\xc8\xae\xb3=%\xb8\xac\xfbS\x03\xa1uw\xe6\x9d{8\xb9\x89=\xbc\xd9*(\xc8\xa1\xa65\xfb\xf7\xed\xf9\x98\xef\xf9\xd8o\x8fk\x8b8\x9cU\x87\x1c\x95\x87\x1c5\xee\x8b\xd2[\xc5c\xad\x91\xf7\x0dk\xbb\xb2&4iB\x86\x85{V\xd8\xf2SP7\xcb\x86v\x94\xb1\xe8$\x9e\x04\xd4\"\x83\x96\xbb8{\x00[\x01F\x9cKyT\x08\xa4\x18\x8b\xb7'\xb4\x10A&d\xe2\x08\xf2\xedm\xb9\xab\x1e\xd8\xa5\x91\xbc s#L+}\xf5\x8d\x025\xcb7\x86\xaaE\x9d\xf3D\xd7\x12\x8b\xed\xf2\xbd\xa5Y\xcb\nl\xbe\xd5\x98\xb6\x0e\x1dZ\x0e\\$\xe1\x8c\x8e{@,\x8dX(\xaf\x8d\x10\xe4\x12\xe5\xf3\xff\x02\x94\xaf\x0e\x15\xfd\x14)C\x08D\xca\xa2\xb6\x83\x80~\xa0\x94\xc6\xa8\x07\x1e\xcc[6LF\x11'T\xadC\xc226\xbeK\xa8\xa6%\x12\xbb\xe4A\x17\xdd\xa4.m\x12\x9a\xd8\x86\xc9H\x84C\x96c\x8b\xeb\x03;\xcdI\xfc\xa9\xbd\xa06lk\x1d[\xc6\xe5\xfd\x8f\xed\xbe\xc6\xc2Z \x9ai\xb1\x8d/\xdf\x08\xab\x8a+\x01\x8f\xaac\xb5Ka\xd8\xbdQA\xc1\x0d\x11\xa5\x02\x9eC\xb1(\x82\xf2\xe4\x1e6\xbe\xe6\xb4.+\xf67\x1f\xfa3\xbcsI\x03\xe6\xe4\xfa.v\x0dA\x1b\x0e\xa1\xf7\x9e,H\xcc`8\xea\xc1A\xf5\x0b\xbd \x98\xa6\x16\xda\x86^u\x0f\xbf\xe5wX2'\x05\xb4\x9d\x8e\xe7\xd7g\xcaML\xb8\x18\x82\x81\x01\xaf\xf5\x93\xd0q\xba\x9c\x10o.|Ft\xc5W;*\xab\xd1<\xa6,\xf0\x99Hm\xffpPYQ^\x8b\xd9\x13S\x85\x03\xa5\xad\xab\x8d\xec\x83\xb0\x13\xc3\x8e\x08\xa6k2\n\xcd\x91\xe6\xe4\x9c\xe4\xc5&n\xda\x1dp\x9d\x90\xcb\xb7\xd3\xeb\x83\x15\x0eQc\xb8\xb3\xe7\xec&\x8d\x0b\xf6\xfc\x06\xba\xaa0\xb4\xb3\xcb\xeb\x0bS*UT\xb9\xc4\x98+\xcaJ\xb0\xca\x03\xa36\\\xda<\xd1\xa8S A\xbd\xe6\xb2\xb9\x94\xb3\x11\xab\xba\x19\xb1Vl&<\x04\xaa(N\xc5\x02Q \x89\xd0\x98\xf0F]7\"~xP\xd8\x1a4\xa5\x91\xd2\x13\x0fI]\xf5\x0e\x87m\xcc\xd4\xa6z\xde\xb6\xf7s\xfa\xbe\x92\xf4}u\xc3\xf4\x1dU\xc6\x8a\xbc\x8b\x1f\x1au\x17\xda\xddm\xe8\xf5\xfb\xfd\xea.\xa1\x13\xd8\x86@\x08\x15\xeaE\xb2\xe0\xed\xc1\xe9\xaa\xf69Y\xf0\x86{!\x9e\x07\xed\x93`u\xb3'\x81\x1an\xa5\x8b\x84\xaf\xebCi\x9d\x11\xabk\x9d\x11\x8as\x08\x08\xec\xe8}\x87p[\xeb\xcf\xba?0@zW\x18\xe452!n\xf05B\x9d\xf84\xcd\x0c\xb6\x87\xc6\x90\xbd\xcf\x9d\xc6\xa1Rv\xaa\x1d.\xe8R \x02\xb2\xcb\xa7\x91\xb0\x15\xe0\x19S\xdd\x0d\xe1\xe1\xa0\xf4-]\x91`7\x82\xddP\x1eO+\x89\xdcg\x84\x05\xbaU@\x99\x0c\xf8}f\xb8\x8f k\x9f]\xab\xeb\x1c6\xe7eTemy,\xf6-\xf8\xbf:\x92\x0c\x06|.vi@d\x17p\xaf3\x94\xf6D\xb5\xd0\xb5\xf3 4\x13mp\x89\x03\xed\xc3j\xf5\x85\xe7#\x0eGB\xd4@sV7s\x16V\xd8\x8dz\xc3J$\xe0\x90\x93\xf2`k\x03S\xf8\x1a\xf3\xe0iw\xeb*G\xeaT9\xd6%\xc4\x08\x12\xa3\x06\xd1\xbcl\x19l\x8b\x11\xed\xf0\x01\xe4\xfe\x0b\xd4\x92\xd7\x8c\x00\xdc\xfc\x00\xae\x80g\x1co\x03\xa0\x969\xf9\x02\xd9\x0c\xce\x9b8\xec\x95 \x9d9\xd5!\x0d\xe8\xf3E\x7f\x84\x16\xc9\xbf\x98\x03P\xca\x17\x94\xd7c\x1f\x91kuC\x0c\xc1\x8a4\x16F\xf8}\xc8\x1fe\xb8\x1d\x9aU\xc5\x13\xfegy_\x92,\xf9 \x9eq\xe7ed\x91\x81\x8f8%*\x9d\xd3 \x89\xe0\x94\xe0\x9f\x17\xd5\x9fG\xea\xcfSRF\xf4\x887\xb5@\x1e\xf1\xbe\x0c\xf29jH0|\xa1/\x89-\xbb\x04\x9el\xc9|\x89 &v\xf6\xab\xd3\x8e\xdf\x0b\xaa$,\x11\xec\x87*\x7f\x06\xbe~\xe0\xbfk\xee\xdf\xbbw\xe7\x1e\xdc\xe2\xe7\xd9\x9a\x13s\xfb\xc6)\xdfd\xe2M;\x92\xe3^\xd9F\xb7\xbbG\x8f\x1e\xc1\xde\xfdP\xde\xe1O\x02V\xde|\xf8\x10\xf6\xee\x8b\xdc3!\xac\x9b\xce\xf8\xb6P\xa6\xe3._Il\x1en\xc1\xde\xee7w\xbe\xb9\xbb\xf7\xed\xfe]X\xc3\x9d\xfd\xfd\xbd\xfd\xfd{w\xbf\xe1O\xfc\x9c2\x9fZ:\xd2)&\xac\xd7\x8e\xe0\xeb\x92\x86Z4\xd5\xdd>\x8f\xaa\xa3\xb6\x07\xa3\xbb\xe3\xae\x9e\xb7\x9a#4Px\xc5\x18\xa8qY\xe6P\xa5=\x18\xd8}\xce\x12\xf4)\xdc\x92C\x15\x0e;\xc2\xa7\xc21P\xd0\xf0t\x17\xd66\xe7(q\xec\x8d\xe0\xbd\x80\xf5\x1b\x993\x83`:\x1cxF0\xf1\x19>\xe7T\x1c\x1b\xe7K}\x9d,\x0bp :\xdb\x08\xc7gq1{\x9aM\x88\x06\x19u\xcb\xa4\\\xc4\x96\xaa\x90-\x1d\xa4\x9e \xb43\x9e\x1f\x9a\xbe\xaa\x08\xbfw\xc2c\x8d\x84a\x97\x1a3\xa9\x9c\x0b\xcb\xaf\xc9\xf09\x19y}\xb9\xf5\xd6:n\xb05\xceOS\xb4q?/\x8e\xaaT\xd8\xe8\x0egz\xe25\x16[g\xdd\xe0\xd5\xbf\x96\xa3\xa0\xd9\x84|X-\xf8\x96\xdb\x0d\xa1\xb8H\xd8x\x06Au\xbf\xab)~\x8d\xe3\x82\xc0\xdeA\xe7{\xa0\xd1\xfe\xfe\x92&\x9f\x97\xe4\xf93\xfb\x1c\xd5\x85\xcd\x7f\xb7a\xf3\x93l\x8c\x01\xc3G)\xe1\xff\x88\xc96n\x96cp6mVj\x83\xdcR\xdaj\x19\xdf3\x7f\xcd\x97k{\xfb5\x89\xf4\xa3\xef\x16\xbc\x16{\xff5\xee}G\x88\xc8\x07\x12r\xac/\xa4,z=G\xd7\x06\n=V6\xd5\x01\xfe@\x97\xe7\xa6\xc7`\xefMFw\xc8%#\xb4H\xaa@\xc2\x02\xe2\x9c`\x92\xe38M\xb3\x0b2\x81\xb8\x80OdU\xf4\x9b\x89\xb3\x9b\xdd\xf3\x0de-n\xf1\xdc\x98\xc3X\xbf|\xd2\x11\xab\xab\xbb*\x86~iI\x8c;\xde\x94|\xbay\xf1\x01\xcc~\xb1\xea\xc2\x15j\xac\xc3\xa6$C\xb2\xc9Z$\x89\xc6\xc1\x9b>\x08\xad\x0d\xb9\xd5m\xfa\xa5\xcb\xda\xfe=\xf7\xe3\xc5\"]I6\xde\x12\xd1\xaf_W\x91\x83L\xf23\xb0\x03\xb2\xddD\xb0\xe6\x94^\x91\xbc\x16\xde\x7f\xa4\x08!\x96AA\x18\xc4@\xf9>\xa8 \xa7\xc6\x08\x19\x95{\xc2\x89\xfa\xfc*\xe7`\x9f\xfd\x06\xf4\xc4y\xeaot\xda+\xe5kI\xd68\xc3\xa0e\xb41\xe6\x03h@\xeb'4]\xf1&\x85\xd6\x14\xd5\xa4c\xe1\xd4{J\x80s\x0fd\xd2\xf7\xf4\"\xfdd\xe1\xedKu\x0c\x13\x8c\x92f\xa1 \xf5b\x16\xfc\x85;{\xf0\xb5HU\xd8\x1f\xcf\xe2\x9c3/\x8fY@Q\x98\xb1\x8aG\xc7\xa4\xed#\xad\xff\xe2\xbd?&U\xc6\x84\xa48*ic\x9bj\xbc\xf5\xdaa,_9\xf0V\xa9;\x8d4\xf3\xcf\xab\x08z\x7f\xefE\x82]\xb4\xea\x04\xc6\xb18\xe2]{\\\xf6cs\xf57\xa0Y\xd8\x16\x97\xdf\x91\x08>XE\xe6\x9fI\xfc\xe9u\xdc\xd02\n\x06/xGd\xe6\x02\xf9\x92\xa1qqF\xb6\xa1\xfc\x1c;<9I\xe6\xf3%\x92p\x8em''\x8d\x14\xed\x1d)\"\x03lE\xfc\x0e\x9e\x93&\xd2\xf3\xfe\x7f\xe7o\xec\xdd7$\xa6\xe4\x0f\xf6\xef\x192\x1f\xbf\xb7\x0cY\xb2\xf86)\xfa\x95e\x03\x9c\x91@\xc4f\xa1tV\xb9\xcd/H>\xcd\xf2\xb9P\x7f\xc7\xa2\x8d\x8b\x84\xcd \xa6\x90\xd0iB\x13F\xa0H\xfe \xbe;\xf0\xa3[\x8cw&\x0d\xfbE$\x0d\xfb\x8cMp\xfeb\x1c\x94\xf9\xd3\xf9\xb3>\x1f\xd9\xeb%\x8byO\x85\x16\xd6\xd2\xa5\xab\xce\xad\xe9\xed^\x91\x80*-?\xedO\xb3\xfc(\x1e\xcfj\xf1V\xc6@\x06u)R\x8a\xdc\x15m\xa9\x9b\xd4e\x8a\x82\xf6\x03\xe7g\xef\\ \x7f\x90\x8el\xe6\x1fI\x04'|\x9e\x1f\x89G2\x9d\xd2| B\x8a\xcb\x038r\xa9\x88\\\x8bd%!\x1d\x15\x86`{\x00\xfb]\xa2\x14\xda\x85\xe1Q\x95@\xc6p,\xbfN\x8a\"\xa1g\x82 \xc3^?\x91\x95\xc8f\xc1\x86\xd4\x94fR]\x82y\xe6/E\xfcU\xde\x97-\xdc\xbds\x9d\x11\xfc\xd76_\n\x85\xa7\x96\x01\xeau\xbc\xb0\xa6<\xfb\xf8\x85\x96\xc5\x93<\xcb*\x959\xff\x81\xa2s\x19K#\xf26\x85&\x93b\xad\xebb\xa3\xae\xff\xa1'\x85r\xcf\xa9 \xec9\xdd\xa0i\x9c\xc8r1\x89\x19y\x8e/\xaf\x0c\xd5\x0cm\xdfn\xba\xb29\x99g\xe7\xa4S\xd26\xccz\xe5nxBR\xc2'\xe0\xdbtk\xd6\xbeS^m:e\xd1IsA\xdc\x89\xa3\x85\x08Y\x92\x17\xa5G;\x94\xae \xa12\xce\x94\x13\x18\x92\x91l\xd4c,m\xf4\xb0\x8c\x06\x83]\xd1)R\xc6b\n\x14w\xf8\xc8\x96$\xda'\x91\xc4\xb9\x8c\x03\x15\xa6\x8d\x95]'\x1aw\xfa\xe2qr\x17K?<;Q<\x97)c\x12YM\xcbb\xd6RW\x01\x03\xc8\x82\xa5\x83\x06\xca\xe5*p\x02K\xe9\xac\xdb\x8e!\x03\xab\xd4qF\x82\x04cH\xd0p\xc3\xf7n\x04\xbd\x84\x9e\xc7i2\xe1\x94\xf8]\xccf69\x88\xcf&\x85\x01\xc4.\x0fT\xfe\xd2XNy\xc5\xa7\x8c\xd4*\xe5\xfb\xc9\xfe\x01?\x07I0\xae\x16\xd0\xa9(\x9d\xe2\xec\xc7r\xf6\xe2\xd7\x8a\xff\x92\xbb=H9\xbe\x06I\xc5\xcb\xb0\x10\xcf\x8e4\x82\xa9\x81\x07\x90{\x9eR\xd4\xe9Z\"\x1ee\xdfy\xd9\x9b\xe4\x9aZu\xd0\x1a;`\x9c\x92\xd8Y\x94Hk\xbc\xed\x16\xc3\x84?\x84Ym\xc0:\xea\x8d\xb3\xee\xf6k2P\xe7\x04J\x8b,_\xa9\xb8x-t\x11&\x06@\x8e\x86 b\xb1\xfeE\\<\x16\xf44@\x1f\xb6\xfe\xc9 \xa1\xc52'o9\xbd\x0e\xea\xc4[\xb1R\xce\x81\x97\xbd{\xee\xc1\xd6\xf9P?7\xf4\xd1pQ\xec\xd2\x0d\xb6\xb8x\xae41\x9b\xf5\xaf\xf7\xd3\xb12%\xc86\xebA\x9e[\xce\xb67spR\x1a\x11r\x01/\xfde\x9e\x8d\xbc\xd0\xbe\xd4\x89Y;\xdcKo\x1b\x94\x03\xdb\x99E:\x88\x08\xba3\x93\x80a\x82\x19\x86\x19eL6\xf7H\x94}\xea\x80\x80\xb6\xda\x9d{K\xed\x98\x8a\xc11`+?\xd2\xfeI*\xd6Fgk\xa2*\xaf\x03\xb24\xc8\xe15\x1a\xd2r?\xe8\x0c\xce\x9edp\x0c\xd3I\n.\xb9\x0f\xe0\xb3\xc1s\xe8{\x12\x01\xb2W\x8dd\xc0\xaf\x1f\xbf\xb3TO{\xc2\xdf\xd6\x81dS\x0f\xfedO\xfc\x81\xc3oOH&*j\x19\x1f\xac5>\x9c @,\x9d\x9c&l\x8e\xe0PN\xb14\x13.\xc8\xd4\xab\xcf\x9f\xaf\xd3\xe78[Rv\xed._\\\xa7\xcbOd\xf5\xa3`\x8aY\x0b\xba~\xdd\xfezs\xdd\xae\xbc;}\xd9\xdd\xe9 \x13\xa5FK\xa7\xe6*\xc2\x86V\xbe\xcd\xf1\xf8\x93H\xd3\xa9(\xcaW$\x90\xbf\xfc\xb4\xa1?t\xa6x\x14\x15\x90D\xc6\xaaVRJ[\xb3_u6k\xa6m\x1ce\xac\xe5o\xd1\xab\xf8\xc0\xe6\x8eyr\xb2\xc8\xc9\xb9\xc9\x14\xec\x97\x85\xe5\x9f\xbeIQ\xeb\xc5_\x9f8\xf2\xf6fJ\xaa#\x11d\xa5H\xc7\xf0\x87F\xe9\xa8\xb8!\xa5\xbb\\\xfc\xaa\x13\xbd\xcck\n\xbf8\x93R\x7f\x8fz\xed\xe0{>\xa0\x7f\x92`\xd73\xff\xdd?\x9c\xb8z.k\x92\x9b\x8d\x9c\n\x15-\xab\xadt8\x17\xc1\xa9\xc5\x9d\x12d~\xd8\x8b\xe0\xc4\xa1\xbc\xc1\x04pL\xf5\x86\x91/\n\xbc\x11h\xcaU\xb1\xb8I\x04q\x18\xc1\x96T}T~U\xe6\x0eD\x1e\\\x19~\x18$\xb2P\xd7!\xe7\x02\xa4\xf6`g\x0fK~\x1d4\xab\xc9\xf1\xeb\xcae\n\x17zvl\xc6g\x14{U\xf9\xc6\x9fp\x9bW\x93\x1cZ\xa1'\x8a\x8f\x19\x1f\x9b\x82@m\xc8C\xea*\x8b\xb2>c\x16\x95\xd4\x07Q\x97\xb4\xd5\x14\xa4\xa5\xa3@O\xb8\\p\x08\x19\xee6\x93\xbe\xc2\x82\x8f\xd2\xe9\xa6\xd4/\x89\x05\x8d`\xe9\xe4U\xb8D%$\xb6\xc0\xf8\xe9\x01GD\xb9\x9e\x84\xf3#G\xc12\x8c\xe0(\x881\xeb\xc3\x05?'D\x0e\xd7!\xff\xcc7\x9d;cn\x1e\xaa\x95\xa8\xf4W\xe1\xf6\xd9\xba\xff\xc2\xcf\x13\x976\x80c\xea[l\xcc\xf2\x08\x1b\x0c\xf8\x02h\xac\xf3\x8br\xa6\xb2\xbaP\x04\x99\xc9\x96\x83\xbbW$\xde\x0e\xaa$_U\xcb\x07\xda\xdf\x8f\x1e=\xe2\xf4\xe3\x16\x9c\x99\xf7\xf9\xb2\xde\x08\xba\xe9k\x1fY),\x1f\xef\x8f8^\xaci\x1b\xc3Z\xfc\xb1\xc4qI\xbd\xea\xb0\x82\nl\xc3\xb9\x84\xccH\xe8\x15\x07\xf5\xd5\xcdB\xfe\xe5C\xf1\x1d\xe1+\x0d\x070L\" \xbeK\x9e3\x17\xbd\xac\x12k`\xf5\x82Z\x86\x02Z\x9a\xe8:\x12\xdfph\xd1a2\xb2\xd3\xcc\x02M\xb46\xeds\x1c,\xd1-:\xe0\xaf\x15\xf5\x8c\xc6>~ \xd3V4\xa1\xba\xae\xc2\x90\x1f_\x8be1\x0b\x0c\x9eEV\xf2\x12+\xa0e~@\xce\x9c@.w=zmUj\x95[\xb7\x00\xb3\xb0\xd6\xd4+\"'c\x99\xd8Wl\x7f?\xce\x12\xc1S\x82\xc9h\x87\xbc\xa3QX\xe3\xc8\x98\x0fG\xa6.\xe5l\xc0\x86\xb6\x04x\xea\xca\x10\xab%\xf9'5\x115FEKl\xad\xfe\x01F.J]\n\xd9\xcd\xb4\x99wU8\x8d\xf2|\n\x0b\x90\xd1a\x9a\x82W\xc9\x99\xd6\x8e\xb9d\xb7\xe0\xb8\x85\x14\xa9\xe8\xb2\xf9\x1f\"\x7f\x9dJ\xdb\xff\x0e\xec\xc1!L\xfa\x8bLT\x82\x98\x0cSN\x8dZ7\x86|\xe4\x9c\x1f\x9f\x08\x06S\xfc\x0e#\xec9hh\xff&\x95)\\ \xcc\x11L\xbaX\xd2\xab\x08~\xbc693F\x97!vY6+\n\xf5\\\\ \x82z\xfdp\x11\xf9IP\xf6\xb1hF\x12EC\x84\xa6\xd7J\xd8x\xc3\\\xce\xb9%\xb8\xbb24\x1b\x95\xb3\xc3%\x13\x8f03\xf2H\xc4q \x19\x89\x99\xd8\x89&x\xaeM\x17k\x99\xa1U\x02\xe8\xa7$\xc8m\xa0\xd2\x04D&Y\x1e\x8a@b\x0e\xa9\xb2P\xf0]\x9a\x9f\xa7u\x18\x9a_\x1acL\xe5\xd6\x00\x82\x14n\x81 \xb5\x91\xae!\xa1\xce\x1a\xca\x1c3AUtz\xc9D\x93\x08|s\xe7\x0b5B\\.\xf3;|\xef\x8d\xe1\x10\x16\xc3\xe9\x08\xdc!\xeb3\xa1(\x9b\x08\x0b\x8cX\xe8\xfaZ\x99g'\xd4\x04\x13\x8f\x83B\xc0\x01E\x97\x85F\xde\xc7N\xf2\xeep\xf3\xaaU\xfc\x92\x0c\x01\xdf\xcf\xa2\xde\xcc<\x8c\x103v\x1fHV\x9f>\x80%\xa6\xf9\xe1\xb81\x80\xbd\x10\xe2\xe1r\x84hp\x0b5\x0bl\x98lo\x8f\x1c5\xeb@\x13J\x87\xf9H\xa8\xb8\x84/|\x80 \x05\xb7\xb1\xda\x98\x81\x90\xf0\xc7\x8b\x08\xd2\x08\x96\x11\xcc,\x90\x94\xe79\xff\xbf\x08S/\xa1\xc4\xe5?\x16,\x86{\xf0/\x98j\x9c\x8b\xba\xe3h\x0f?\xde357\xab\xda\x99\x99\x11\xf1tSr\x7f\"\xd1m\x86\x14\xfc\x00R\xf8\x17\x92\xfd\x14\xd6`\xc1\xd0\x0b\xed\x93\x82\x05\x8b\x08\xa6\x11\xcc\"8\x0d\x9b\x01\xf8\x1d\xe2\xc7yY\xed\xa3\xf2\x80\xb0\x1f\xb5B\xbdZ\xa6\xbf\xc9\xb5\x08Z!\xc5P\x80O\xb9\xa7\x1eb\x99=Q\xf3\xacslz\x97\x88\xf6\xf5\x0e\xdd*\x8d\xa4\xfa\xcc1\x06\xb7\xa2#\xe9\x92\x16\xf0%\xb5L5\x00\xa8\xbbn\x19\xa2\x81_0\x80\xafH\x90X\xed\xe7\xe0\x14\x17\xc6\x19e \xdd\xa8\xf8C\xbb\x7f\xedW_\xf8\xccv\xecj\xa8\xb6\xa7mct\xe6J\xb5\xe6Im\x10\x90:0\xf9*\xa7|\x06s\xb8\x0dw\xdb-\x8f\xd5\xb3\xfd\xf6\xb3i\xf9\x9d\xcds\x7fa\xf1\x188\x97\xb1CG\xc6\x80a\xe4\x9b\xbb\xf3XZ\xe4\xea \xe6\xc9+\xa9\x9d\x99/\xa4\x18:\xec\xaa\xe7D\xdd5\x1e\xc4`r\xa9\x03\n^\x89\xe3:\x87G\"kt\x0e\x0fa\x0e\x87p\x81\x99\x07\xf2\x08U\x0c\x18g\x8a\x85 X@\xfb,\x13\xf2w\x88ei\xd9\xc6n1\xe8'r\x9c\xfc!z6\xa4\x01\xe9\xd2\xf4\x96\x9a\xda\x0e\x7f\x13\x93\x17\x89\x9f\xa7\xc5\xc4\xed0\xa2\xe5\x01\x99\xb1\x8e< \x0b\x16\xc1\x05\xe1l2\xf3\xc8\x03\xa2 \x1f\x81=\xc6r\xc1\xb4#\xeeKsZ\xbcJ\n\x06\xc3^\x04\xbdQ;\xa9E\xad'\xcf\xa4\x16\x89\xaa\x15_%\xc5\x0f\xcb\xac\xe4\xa4\x9e\x95\xdcq\x9ar\x01\xb6d-1I3\x8e<\xcb\x93\xb3\xc4\xe6\xd9\xa6d.\xde\x13\xed\x8b2\xa1\x04n\xc1\x99!\x14\xd2\n '\x0c6\xcb\xae\xe1k\xbf@\x901\x04\x99d\xabjU\xf3\x1dE\xa00\xb1\x7f\xe5\xc4\xc6\xe0\xa1\x96\x0dvs\x975\xc0c\xe1!\xec\xc2!|\x92\x19\x0cq\x9b\xed\xca\x08SqsW\xa8\x1f\xf7\xc43f\x8c.\x03\xb0'\xd8c\xe8\xfb\xa4\x16\xd3\xfcNe\xcf9aq\x92\xba\x19*\xe5\xdeo})q\x06\n \x14\xdfb\x94\xc08^\xc4\xe3\x84\xad\x84A|\x00\x97Xo\xbb\x195 \xe4A\x14\xb12\xf1R\xd6x\x89\xf4ORrN\xd2\xea]\xfb\"n%~\xe1\x06\x89\x08\x9b\xa8BL\xcbuV^\xf6b\x14\x1c^\x9b\xb8\xdc;7\xd3\x05\x82E\xac\x14~\xad \xa4\xcf13z\x17^\xb9\xe2,k\xdbj\xb3\xf4-H \xcaJ\x1c\x9aU\x03 \xcb,\x992T\\h2\xaf\xcah\xaf^R\xba\x0d\xf1p\x91&c\xe4\xdb\xf6lQ\xbb\xb5\xc1&\xb4 \xf9&d\xa0\xd1\xcbn'8\xfe\x0d\xc9$tjZ\xfeTK\xab'\x9b\xc0\x15\xe6\xf8\xd3\xc8>!%%\x81j\xd7NE\xc1\x19)'(\x16\xcbb\xd6\x05 %\xbcU\x11\xfa\x96]\xae\xc1\xc9\xca \xe1\x1b\x16\xbai%\xe0\x9f\x90\x11\x91dQ\xd9R-;\xbe\xe6\x16\xbc\x8b2\xbb\x96\x16\x11%w*\xe8*l\xe3\x1e\x1e\xe6^%\xd9\xea`\xcb|\xf3:|R\x87\xecn\x04;{\xeeV\x97\x14wWW\xcb\xad\xf5\xb8\x16\xb0\xad\xa1a\x9f\xf0\xc8\xd9\xf1\x05\xb3#\xfbd\x99HnH7\x07\xb1\x17(\x9a@\xee\x00\xf0&\x89W\x1e\xfb'^i\xf7\xe1\x95\x90\xa3\xd9\x91o\xe2\x95vw\x1b\xe4\x19y\xec\x97g\xc4\xdc\x87\xd7\xb4\xce\xaf\x93\xd7\xe3qg\x9e\x91&\x9fx,\x08\xad\xd7\x89\xa6o\xc2v\x11\x8dz\xcb\xbe\xf5\x97\xce\xbf\xa8\xee_9\"Y\xe2\xaf\xac\xfa\xe7\x1e\xddfI\x19\xca\xedi\x17gOJ\xe4\xb3\xaf\xcd\x06\x05a0\x14\xb1\xabB.\x9e\xa8\xa7\xec\xdfW\x04\x86b\xd1\xd6\x8d)\xd0F\xd9)\x9aur\xa5\xfe\xd8 _\xbc\x02\xa1s@\xa1\x04\xc1\xa2\xd7w\xa6\xd7\xad\xec\xdc\x98\xc8_\x92d\xe2\x82\x05:\x9b\x135\xb8\x9c\x1a\x87\xa3s7\x91\xc6\xdcl\x94\x90\xc2\xb4\\I\x81\x12\xf6\x00&\xac\xad\xc1\x9a\xb1v\xe2\x89W\xcf\x8f?X2O\x9c\xa3\x05]\x83\x9cM\x7f5gV<\xc0\xb1\xa3h\xac%-\xa8f\xd2\x8cn\xd3\x7f\x9d\xb3\xe1\x8c\xa9`\x90sV\x05\x83\x9c\xb32\x18\xe4\x9c\x95\x89\"\x9f\xc8\x9c\x91\xda\xbbx\xbf|[\xbd\xa5~\xe1\x8b\xa5\xfd\xed\x89\xb2\xc5i\xb7\xd5\x17\xea\x17>\xaaR{=)\xf3|U\x0f\xcadOOj\xd9\x9f\xf0\x85f\xe2\xa0'\x0d\x89\x19_\xd2\x93\xf4<\xd1r\xf6\xc8\x87z\x0e\x9d'\xb5\xa4:\xa2\x0b=\x03\xce\x13=#N\x04\xf3\xb6\x08\xf4\x84L\xb3\xdcd}\xb4iZh\xe9\xd0\x84\xde\xcc\x0c#\xdb\xca\x8d\x81\xeb\\\x86^hL\x97Y\xbb\x88\xfaC\xe1\x13e\x0e\xad\x15\x0e\x80\x8f\\\xadK=\xe1p\xc4O2s7\x99\xf4\xbb\x10\xaaHs/LT\xbd\xb0S\xf2\x18\xf4Q\x0c]\x06,,R\x1fs\xba\x15\xd7\xc0\x8c\xb0\x85\x1d\xd4q\x86!\x8e\x06\xdfJj\xa0jSe\xe3\x80\x85\x95,\xf3\x80\xf2\x12\x06p\\\xe5\xce2\xcf\x7f+1\xabTj\x8e\x13\xbb\x0f\xa0\x10.\xa6\x05\xfaIJX\x14\xa3R\xfc\xb2\x12\xe4\x0c\xddD\x96%\xf48\x8d\x0f#X6)\x98\x01G\x1fO\x19i\x1d\xef\x9d(\x1a\xd4q\x14\x83\x8c\xbf\x00S\xa5\xf5\x13\x85\xfa\x0e\x84\xcd\xdc\x08k\xee\xc4\x0b\x07\x93:\x0e\xda,J\x88\x839&\xcb\xe4\xd8\xa5\x83\xd1\x80\x82\xf8Rf\x86\x0c\x1a\xbf6DN\xb5Y\x9c('\x9b\x8ceoRY\x91\xa1\x92/\x92~mq9M\xceD\x85\x11\xc4udi\x1fog,\x82\x15\x8b8\xd3\xe0J\xa3~b?\xad*^]\x1d\xe2F\x08KEay\xb2\x1b_\xc2\x04-,\xc8\x1dQ3Ryf\x87O-\x91\x88d\x1cv\xc3\xc6\xc4\xa0\x16\xf7\xcc\xe7\xb6\x8c\xc0jc\xad\xe9q\x96\xb5rV\x16O\x13u)b\x12K\xff\xa5C\x85`\xe2x?PQ\xee\xf8\xd3\xce\xa3\x82\xf4K\x89e\xe5\xc3]\xf4\x8c\xdd\x81\xd8\xfd \xaa\x18\xf9k\x16\xbe\x11_y\x04s\xc4\x1d\xfe\xf2\xdca\x0f\x95@\xe8\xe4\xe1\xd5\x95\xa0\xe3,\x9fvZ\xee\x87SG\xd1\x11\xd0\xd4\x12X\xedq'\x85\x03N5\xdd\x9f\xc8\x96\xd1\xb3k9$\xe6\\)`\xdcvx\x97/a\xd1t\xcb\xcfPs\xdc\xb1\xac\xc2\xa9\xd5\x7f\x01S$/\xf5\x05L\xe0\xd1#\xc8\xdc\xdf\x8d1\x00f\x9b\x1f\xeb\xea\x03\xc72\x8d\xcb\x05\x1d\xdf\xf0\x82\xe2\xb9\xf6\xc0\xea`\xa1_|\xed\x8d\x19]L\x97Z\xf4\xa5M\xe8k^\x89,\xb2\xc7E\x9d.\x85|\xf3ZJUh\xe7\xcbv;\xbe\xba\xf80\xd2\x86/a\x17\x82\x83.\xf5#\x92\x8f\xe1\x00\xd2.$\x079\xf2X\xb8\xa2\x17\x98y?\x13\x87R\xc2Q\x83\xf2S;\x0b\xedn \xe0\x9c\x92co ]l=\xf6K(qaL\xf6c;D\x96\xad\xec\\\xe7\x0e\x8d\xc2\xb2T\x93\xc3\x0e\x17\x92\x96\x9a\xaa\\\xfc\xd4T\xe5\x0co(=9\xc5_U\xd6\xa3e\xa9$\xcf\xf0\x87&5&\xe2\x86\xd4\x97\xc7\xe2W=\xb9\xd7\xd2\x0b\x14G\xcc\xa5Q;c\x18\x06}\xc6\x07$\xec\xfa\\|\xf34\x85_\xb6\xa1l\x03q,\xfc\xf1er\x1ewL\x05\x11N\xf3\x0f\x15qS\x8a\xd9\xd6\x07\xc8\x0b#^j\xbe\x14\x99kc\n\x96\xb3\x83sK\x1b\xc4u\xb8td\xcc\x19\x0b\x13\x9f\xb4\xe5\x89\x8d\xa1`\xe1\xd4$\x8d\xc5 \xa5\xf2F\x05\x92\x0d\x136\xde\xb2c\x18\xc0\xd8\x1c6h[\xd1\xa2>\xf2\xf2\xf8'\x95[\xa6\xdeUT\x83\x9d\x80<\n;-\xde\x12\x0e\xcb\x9b\xcaD\x16\xeb\xe3l\xc7 \xd8\xf0\xe6\xd8\xce\xd3\x95j6\xf4\x07(c\xf0\x88\xe6\x99J\xa4\x07\xea\x9c\x05\"?\x97dK\x91+\xe5\xa3\xe2\xe2\xa5g\x1a\xc3\xa7\xf6\x91\x94\x16\xf4\x86\xedW\xb7\xac\x9a\xf9A\xf1\xe5C!\xd0(V\x10\xb6\xe1\xdc\x86t5sD\xc9DJ\xbe\x15\xbf~ \xfc\x16\xd0\x15\x07\x0b\xab\x0eJ\x1f\x06\x11\xaa\x95\xa3'\x03\xffhg\x00\xe7N\xc4\xeb*\xf3n\xad\xe8\xe5L\xd2\xa3\x05\xbd\xa8\xa83Q\xeeX\x7f\xa2\xe2\x0f,\xe5\x8d5\xb3\xbe\x9en\x07\xf33\xd8\xd9\xf6\x0e\xf6?\xf1a\xff1\xc6\x03\xb6m\xc5\x19\x96\xa5\xcc\x8c\xd8H\x91\x9b>@\xb3\xd1.\xfe\xbd\x8d!c\xbc\x05\x83\xc7\x02\xc7\x87\xb8\xb9\xbf\x92.2\x15s\xdc[j\xd8\x86\x86_\x13\xa7R\x13\xfb+\xd1#\xd5\x91i\xac\x82N\xb7a\xccG\xfd \xc4\xe7r\x1fa\xf5\xac\xb4\xbe\xe3\x0fa\xa8\x8cG\xe9H\xee*.\xd8\x8da[e\x1f(\xf8\x9f\xe7\x86\x11\x8d\x85L\xc8\x1f\x8f#QF}\xcc\x0f\x00\xf1o\x82\xff\xba&2\x15\xd2X\x82\x11\x04\xf8\xe72|\x00\x0b\x0e\x11\xec\xb9\xe0\xbb\xc9k\n\xb5\xa1\x8b\xf1\x9a\xf1n\xd2\xe5N2\xc3 \x8a\x87\x18#!\xc8\xc6RH\xdc\x07|`x[Soat\xe3\xc4\xbc\xb2X0]|s\xeb\x16\xc6\x01\xa3h6i\xa8 :h\xc5\x1c#X\x90\x90\xa7bz\x9c\xdf(\x1e\xc0\n\x1e\xc19\xff\x87S\x82.Y\xe2\x14\x060E\n\xb22+I\xd4\xc5\xbb\x9bK\x92s:\x12\xfdV\xbf\xad \xa4\xcc\xfc\x9d\xfaP\xf4|\x8e\xb4\x0b\x060\xe9\xa0L\xa0\x18|\x05\xb2\x80/\n\xc6\xac\xcfj\x8a\x93\x1c\xd9\x98e\x88g\xdd\xa3\x01,B\x8898\x16\xb8h\xf8o!\xdc\x16*\x07\x85VSR\x0f(\xda2\x85O\x96\xee\xc8\\8\xce8\xa5B\xfcp\xae\x9c\xdc\x87\xa9S\x98\xe1\x0bs\"\x84\xeeG\x8f\xf8\x81\xeeZ\x18>\x80\x13\xa4\xae\x8b\xea\xf5\x10Ns\x12\x7f\xb2\x7fu\"\x05\xb5\xed\x01\x04bK\x85\xf05\x9c\xe0&\xd9)!#\xf7\xd3\xf0\xc4,\xdc\x9a\x177\x15X\xfdH\xaa\x11E;M\x90\x16|ev`\xcc\x97(\x15\xfb\xe1\xa1\xd8\x0f\xb5\x0f\xca\xe5,8%\x90\xef+\xea\xb2#\xa9\xca\x8e1\x8ar\xe3\x94\xa4KTkT\xc7\x89`\xbbI\x8d\x9d_V\xba\x1d\xc08\xce\xca\xbd*\xd5\xdd\xabf\xbe\xeeU\x9cL\\\xb0 \x16\xe2\x0eFj6\xa3\x1b-\xc7\xf1c\xbf|\x91\xb9\x9e/\xb2\x16A_eY[\xba#B0)\xb6\x93 F \xc6\x9a\xbe'\x15\x10~$\xf7l\x82\xeb++\xfd\xc5A!RJ\x8aU\xbf\xe9\x94\x92\xb9\x88GK7@\x8f\x04\x1e)\xa7\xc9[\xb7D\x82\xa8\xca+9A\x92\xa2 \xdf\xccrcY\xa9\xb7])\xe6\x84[\xf5.*\xe5\x94\xce\xfa\x9co\xcas\xaf\xf6\xdf\xb9\xdbw\x16z|.\xdc\xe1>\xb0\xaa\xbe#\xbf\xb5\xb1\xdf\xcd\xf9\xff\xfa\xfa\x8e\x1f\xdcP,Ka\x8e\x9b\x08gk\xf0\xb5oJ\xbe\xba\xea\xe1\x9dfT\xb1+!\xaa\x14\xe1(\x02\xe1\x8f\x03\xb4\xdb\xf7OD\xea \x91;<\x15\xf6e\x8f\xdc\xe1^sz\xeeT&\xac\x842a\xc5{|\xcd\x02Q\xdd\xe6\x88\x05\xadP?K\xeb\xbf\xbb%\x0ci\xda\x89\x14KoM\xbd\x14K>8)\x1c\xfc\xbcHI\xc1,\n\xff\xa2\xe2\xf8\xf9\xd1\xba\xb4\xa9\x12\x06\"o\x93\x19o\x85~\xa2KQ\x18K\xf28\x10\xda\xd3\xea\xe7>|\x0d\x89r\xdcD\x1b\x910V\xb6\x93\x9fZDXu\xc9\xfe\xb5\xf9H\x15\x0bJk\x96}\x14\xf6Y\xf6\x92\xac\xc8\xe4\x98|\x0e\xc2\xcd)3\x19\xeeZ\xb8\x86\xb0?M\x93E\xc0;x\x1d\x8b|:\x1anr\xa2\x9b\xd7p\xb5\x8e\xb9\xba\x933:\\\xa0\xf1L\x95}c\xa10\xfe)%\x86\xe6\xdc\x1bkj\x0bND\x96J45(/\xb5X3\xabm\xa6B\x80\x18Qi\x19\x0e\xf7F]\x8b\x9d\x0b\xd5\x9eXG9\n\x91j\xdd:\x081?\xe9L\x1f+\x12Z\xb5\x10\xcbB)\xb2\x19+\xc9\xb0\xf1=\xb9\xfc\x9e(\xca!|\xc3%\xe5\xc8\xcc\x9c\x0c\x07\xe3kt\x7f\xf7\xcc\xbc\xfc\xa6\xc3\xeb\x04\xdd\x954\xaf\x93\x93eA^\x92U\x01U)\x0bE\xf1\xdaI|m\x9d\xbe\xb7\xd0tc\x8f\x9b7\xff\xec\xafm\xfe\xd5_\xdb\xfc\xc7\x8e8\xb6\x7f0W\x8aXV\x1bA\xbd{~\x83o\xf1.\xafN\xad9CR\xe6\x08\x8b9\xaa\xe2%\x9d\x0d\x9d\x97e\x92\xe5G\xb2\xfe\x19\xfa^9\x15b\xfe\x83\x05}7\xc9n\x02\x0b#\x12\x99*\x8a\xf09\xcd\xe2\xa2\xd3\x0d\x15\xf4\x8e\x12:N\x97\x13R4\xab\xda\x97-\xaa\x176kv\x16\xdb[\x1c\xc7\xe3\x19yO\x8a%\x86Q\x12\x1aaE3\xe9Q\xf8\x91\xe2\xe3Z\xd9.W\x04\x93\x12C\xcc\xce\x14P\xa7P\xadzV\x9e\x8c\xa1\xf4:\x14\xbc\xa1]\x1da-v\xa5y\xa7n:?\xa1\xef\xe5\x07\xc1\x9b.\xa9^i7UW\xa2]\xbb\x98\xaeXx?'Vu)\xbbf\xee,_\xab.\xe4RHg\x1d[uU\xfb\x0c\xdd\\\x87\xbb\x1d\xd9\x90\x00\xc3:\xd5\xbb\xda\x87{\xa3H\xfb\xbb\xe5^\xd8\xbc\xdcfQ+\x19Q\x97-\x8b\xb9\x1f>\xf2\x95\xc2\x15\xfe\x9d\xcbLp\x00\xbf[\x11\xa9v\xd3F{?ws\xba\x9d\x148o\x12\xdd|s\xd2b\xa7\x01y3\xa4\xd3\xa7\xa82\xc6\x81bbz7\xc5\xadj\xa6d\x18&\x8c\xbe\xf6\xa2\xc4Nn\x14\xedp@N\x02\xe43\xbck\x13\xa0\xac\xc3\xd9\xa6N\x83\xf2\xa0\x9a\x91\xfaXZ\x04mD)\xeb\x98\xb2\x99(\xf9\xcc\xb9\x86\xc3o:\xeb*o@i\x94\xf8\x9atR\x19t\xb4\x93\x04F\xc9\xaf\xf6\xb7\xcf\xa5OZ&h\x83\xdbE\x05}\x13\x9c4H\xc9\xef\x1cZ\xcbHC\xb6\x18)\xd0\x92\xe3\x9bq\x01\xc0\xa2NhUE\xb4\xec\xf1\xef\xbb=\xd7\xdc\x1b\x9c\xea,\x16m\xeev\xba s\xe4\xe2\xb2\x88`\x7f\xd02\xe7\xcd \xa9S\xe0\xa3y\x06\xa0sW\x1b\x8c\x13\xf4\xbd(\xa4D\xdb\x961pW\xa8Yj\x90-W:\xc1\xb2'\xd4\x04\xc8\xbc\x8f;{\xb0cHa\x0d\x92{h\xd2X+WP\xa7\xb1\xb5\xc6--_\x8f\x8d\xeb\xe0\x0e\xa9\x81\x97\xa3\xe6\xe8\x90\xff8\x0f\xd7Q\x8c\xe4*\x82-\x1b\xec\xcc\xb1E\xae\x19\x19\xcfx{\x0f^[\xfe\x0f_\x95_\xc7\xc9\x8e\x9b1k\xa2\x9a\x15\x8f\xcf\xcbD\xbd~\xc7o\x86\xc7\xd4\x8a\xf7\xb2\xb5U\x11\xc4\xccq\xfaf\x7f-;P\x8e\xa7\xcd\x0bH[\xbb\xa1\xb4P(t\x98\x0e\xa6\xc0\xe5My\xae\xc5 \xd8\xcf\x98\xa5\xb9*/t#|\xe2p\xeb\x05%5\xe8|\x02~P%R\xdc\xde\x8e \xe3\x0d\xe5\x12\x02hn\xb6\xe7\xf9\xe4Sm\xfa\x84\x81Z<7\x1f\xe1\x03\xa6&\x1f\x918*/v\x03m\x036\xc3\xd3\xf9S\xe1\\\xdc\xc9\x8d\x80\n\xca\xa8s$\x89\xfb\x0be\x08K|\xb8\x12\x906\xb1b\xb8\xeb\xb0\x9a\xa9\x0b\xb3Y\x1a\x13\x83\xeaW\x1d_\xc6h*\xd4r\x02}\xc6\x8a\x882\xb7:\"\xcf\xd8\xcap\x82U\xf01\xf3;~\xb6\x81'\xbe\xc4\x8fX\"N\xf9\x0c7r#\xe2B\xc4\x1e\xdcF\x1f\x1c\x0cDD\x9f\x1c\xf9\xfe[Y\xc1,\xeb\xcc\x9b\xc4\xd1\xe6\x9d\xa8cf\xb7'|@\ni \xc8\xe1\x04\x0c\x12X\xaf!\xe6\x7f\xc5e\x8f\x1c&}\x96 \x15\xbav\x10\x07a\x05)\xf3\xa0\xa4\x93w\x0c;&\xcc,`0\x10\x9e~\x01\xdfl\x85tD\xda\x85\x03c\xa5\x89s\xe9\xd5\xe8>vR\xc5bV\xe1\x06K\xac\xac\xa5\x8c\xa1\xcb\xca\x80\x18\xc1\x16\x9eR\x992\x8b-\xcb4>A\xda<+<\x8ea\x99\xe1\x86\xc9p\xd3*)\x10\x93E\x15\x15\x93\xb6\xcd\xe9$\xa6\x9b1\xf8\xb1\x85\x11\xa4_\xa6\xa7\xca\x9c\xe09\x96!\xda\xa4\xc2\xbcf!F\x11\xb4\xdd\xe5\xaf\xf45\xbe\x9e\xb2N\xda\xf4x\xff^K\xe4\xd6\xd3)\xb4\xd1Zm\xab\xf8\xec\xeb\xe3\xb1\xbc7|\x96\xaa\xb5z\x10B\xd6yZrxmo\x17\xf0HC\xf9\xae\x93\xd8+\xfa\x1d\xba\"\xe0\xf9u\xe5V\x13\x10T\x13tM\xa1\xe4\xaa1 \x96\xd2\xe2\x11\x0c\xb0g\x91\xa8\xa3\x13\xc9'\xcfU\x92\\\xf4\xc6\xd05\x95\x9b(\x08\xeaXk;0\x7f\xf2=0\xddd\xfb\x86x`;\x19K|\xf6\x08 \x1c.\xef\xe72\xc8\xc2E\xa7\xba\x11\xdd\xc1i\xa7\x9d\xa4J\xa4\xe4\xc6\xd3\xb2\xc9u\xa7aE\xb5\x8a\x16\xdb]\xb8\xd9\xee0\x02C\xa0\xe5\xcd\xf0\xdc7\xb0,Y\xee\xb3.\x9b0\xf7_~\xdel@\xb0p\x93\xe3\"\x19\x12\xb5\xabk\x92uP\xa4De\x1d\\JZ\x11\xd6Y\x7f\xa4\x0cY\x832d\x918\xc2\xb2.\xba\xd0-7L+\xabG\x07\x8f\xcf1\x04+\xf9\x8d\xf1/\xde\x81\xe0\xf2\x8a\x1a\xde\x8ee<\x93\x83\xbd\x87\x8bY\x92\x12\xb0:\xe5\x81\xae\x0e@\xdb\x95>\xf3\x04\xfb\xd8\x88\xe6\xf9 ?\xde\x88\xe1\xe3\x8b-\x01\x0e\xfcE:e\xa9s$\x07P\xce\x86\x04E\x07\xed9WUC\xac[\x99_\x85\x89\xb2e\x1d\n\x04\xd0\xb8\xe7-\xf4\xbcJ\xe1!\x16\xac\xb9\x05q\x80U\xfb\x90(\xa7\x18\xa8\x0d\x07*M7R\x04*\xcb\x01$()\x86\xa5$\xb1\xb5\x8b\xc59\xedxeW\x95\xf3\x85\xe5_\xb7K(\xfd\x15\xa6\x8c\xdc.\xae\x81\\\xc5aG\xa1\xf3\x1b\xa3R\x92\xadJ\xbc\x94\x14\xc4\xcbd\x02\xea\xdc\x92\xa9\xe672\xcf\xa6\xbe\xf4\x06d/\xb9\xa4\x00\xa5\xfb\xf5po\xc4%T\xd4\x10\x06K\x15O\x81\xd8\xc5\x8f\xd18H\xab#\x93\x96\x84#\x8f\xc4\xf9\x99v\x93E~-\x85sn\"K\xa3\xa5\xad\xe5u\xb6\xa0\\\xb4\x90\xac\xa3g\x97\x1di\xbb(`\xd7\xaa\xdd C\xbb\x01E\xf533\xfd\xec\xa4\xa8\xc2#\x13]@M\xf2\x8b\"\xb8Kk\xda\xe8\xccN-\xc5\x9eT\xda\x8d\x9a\x83 \xeb(\xe2$\xe1>\xccq\xe4\x99(\xbdx\x08\xe2C\xe9^\xc6\xac\xee\x83e\x96i\xeb\x11\x91\xf4\x8b,g~\xd2\xacb\xa2\x022\xbc3\x8a\x80\x0e\xef\x8c\x10\xcb\xc9p\x7f\x04;@\x87\xfb\x86\x0c\xc1aU\x90\xbc\x91\x95\xc1j\xb1I\x86l\xa4v\xd2\x00\xf6\xdbm6+\xf4\xb9\x1a\xe2\xa0\x1f\xee\x99\x06&8\xd7_e\x8d\x0f\xe1\xd6\xfdR\xfc\xfa!h(\x04m8\xf5\xc2\x89S\xc2\xdfE\xc3+\x0f\xbb\xd1\x17\xe2 \x1fJ\x89\x1bV\xbc\xc8\xc9d9\xde@\x87![\xff\x15=+\x05;G\xd1\x87S(*,\xf9\xf2\xdd\xb6\x0c\xd4\x8a\xe5&\xdfWG@\xca&\x03\xaf\x0f:\x12\x89\xf9\xcc\xc3\xf5\xf4|\xff\xd5\x8b'\x13\xf5s\xec[N%\x8f\xbfu\x0b\xa8\xa6\xbf\xad\x85M\xae\xd7U4\x82\xf8\x05[\x03\xde\xedz-b[\xbd\xc6\xfb\xb2\x8a\xbf\xf8\x02\xa1Y\xea:\xf91OH\x90\xfbz8\x97k\xd6\xf2\xb3\x04\x81\x84\xf3\x84\x06u\xcb\x14\x0c\xfc\xf6u3\x0b\x9f\xf0\xf3\xac\xce\xc4\xdfE\xbcv&Bx\xb6T\xfd\x0bM\xa2\x81Z\xfa=i\xa9\x10\xe4\x95\xd9\x92\xf0\x81\x06\x94\xf6|\xba\x05Y\xe2\xc1\xb9\xe5\x9e\xc0U\x97\x022_\x1f~2\xc1O\x01\x86\xb0W>\x97\x1c\xdf\x1d\x07\xfe\xf5\xf5m\x1e\xec\xff\x06\x9c!\xaef\xa7\x00\x86\xba \\\xce\xe4\x9a\x80\x92X\xe0\x02\x88H@\xd2/\xb29\xb9N\x07\x1c\xbd\x1c\xcd\xcb\xfaR\xffFFJ\xe5\xc7\x8c\x11\xbb\xa5\xb3\xaf,Gq](\xe2\x00]\xb3\xbcy\x81\xf8\x87\xce\\\x08\xc2\xc4\"jr\x90\xfe8\xa3\x05\xcb\x97c\xd4,\xfb\xd1\xf7\xaf,\x8e\xdeI\x99\xcdFD a\x89\x116\xcb\xb3\x0bD\xf1\x0f\xab\x059\xca\xf3,\x0fzG\x97\x0b2fd\x02\xc3\x97\x11\xfc4\x02\xb6\\\xa4\xe4\x00z\xb0\xdd\xcaHk\x19\xc3?\xdd\xd1U\xaf\x88\x8cG\x08#x\xea\x1b`\xf5\x8b\xbb\xcd\xa5\x00[^\xb1A\x19\x17x\xbd\x9a\xfe\x87\xbb\xe9z\xc4V {\xfaUc\xb88\xb7\x15j\x81\\^\xbd\x12\x8f\xea\x1c\x9c\x14\xd7\\zT\xee\xf6\xd6\x13\xb41\xce\x9aY\xdd\xf1-\xe9\xa4/\xf3\xac\xbf\xd0\xb3\xcbW\xdf\x0bm\x13k\xa7.\xb5\x8c\x9eu\xe6\xba'\xf0Hf\xa3<\x10\xc5>\xe0\x10v\xf8\x0f\xbfs\x9fZ\xb6\xf2\xb9\xf4E\xfb\xc9x\xe0\xa3\x14m\xe7\xa5\xf9\xd3\x9f=0\x1f\x8f\xc0\xd3\x94@\x96\x03\x06E\xef\xa4\xc9\xa7r\x0f\x98I\xbc\x18\x14\x1f\xb5\x81@X\x97\xd9\x0b\x16yG\xe2d\xc1A\x94$\xd0\x99SLX\xb0\x13Z\xb0\x98\x8eI6\xd5*\x9e;\x9c\"\x10r\x88\x1e\xf5Ok\xc9>\xf3\xc0\xa6z.\x9bpr\xe8\xfc\xa2\xa8\x96\xea\xd6\xb2\xc6U(\xe5'\xb2*\xac~\x89\xea\xda\xf2\xe3\xca\xf4\x8b\xe5+\x8f\xb7\xf8\xc5\x8c\x11\xae^\x9d\xa8K\xceeB\xa6 %\xef\xf2lAr\xb6\x92\x9c\xaf\x7f+\xfc:#L\x13-7\x19\x83\xbat\x12$\xc2&7j\xe2\xaa\xdb F\xbf\x8a\xdax;\x8fo\xd3uF\x1a\x89\x98#\xe8=\x8d)\xcd\x18o\x1d2\n1\x85\xa4L\xcf\x9b\x93q\x96O\xfa\xbd\x92d\x8ah;\x07\x8bi\xba\xba3\xb7\xa9\xcb\x12\x8d\xd0\xbc\xae\xfa\xa7 \x9d\x04U\xd4]\xf7gW0\x8e\xd9x\x06\x086\xf7\x80\xae\x02\xe5\x9a\xae\x8e\x88X\xea'\x90\xeb\xa7\xf1\x9c\x94\xa1\xc3\x9fD(^\x8c?&d\x1a/S\xf6\x13\xe7\x960\xe7\x8c\xb5\x1b\xfb\x00\xc4\xea\x88\x80\xc3\x8f\xa4\xa9\x98P\x97\x05q2\x94)\xcaS\xab\x15C\x9d\x99t]\xa5\xe4\xa7\xb1P\"\xda\xb1\xa9h\xd3\x7f\xb1\xe0\x1d\x8b\xe0#gL\xde\xdd\\\x95\xaew7Y\xa5\xebm>!9\x99\xbc\x8e\x17\xf0g/\x82\xdeU\xbbV\xd7\xbbk\xd4\xea:\xd7k\x04\xf0\x95\x125\xfc\xed\x90\xadyh\xc9b:\x18F\x8a\x1f\xd2PT\xa6m\xd5\xd0z\xf7o\xaenS\x96\x9d\xe1S\x92I\x95\"}\xb4\xb5{\xa1\xcc\x88\xe0\x1c\xf5f\x95\xbf~g\xae\xdaG\xef\xae_\xfbHo\xb8]\x06\xb5\xd6p-\xf5\xb8\x0f\xb0+\x90U\x9f\x06\xa8\xb8\xd1 \xa7?rv\xbf\x91nDGD+\xf2i\xa30\xd8\xd2\xba\xdc\xe8E\xbe\xb9\x80\xa1\x0e\x90\xa1\x05\xd6\x12\xde\xe57/\xbf\x12\x17\xed\xa1O\xf3l~DY\xbe\x12\xbaRM\xf9\xd3\x8d+\x9b\x15J\x10\xc2\xdf\xa0U%\xc1#\xbf6\xab\x11\x85Z\xb7V3BEH\xe4\x12\xd5?\xb2.+\xdf\xd5\xaf\x99t\xe5$\xfe\xd5\x16\xd4\xd1\xc2\xf4\x9d-\xf2^\x18$\x1a\x84dRh\x84t\x00\x1fX\x1d\xbe\xc3\x99\xaanP\x83zY\xe7\xc0\xb0o#`\xc1\x1b\x16\xc1\xafa\x04o\xaeA\x81\xdb\x82\x1fR`\x13&\xd4\x9ao\xc4\x0dt\x96K\x13m\x8b\xa2i\xce\x86Q?rL>oD3\xb0q\xf5e\x9b.\xbc\xa9\xc3\xcd+T\xe8\\\xab\xc8l\xc67\x0e\xdf\xef\x159\xdc2%\x1b\xac\x8dQ%\x1b@\xa3\x86\xf74A\xd7\x1d\x89y*+\x87=8\xfc*l\x05\x896\x80 0\xb7\x13;t\xb2h\x06\x02\xa7\x02\x9fk\x87\xcd\x06`\xc8\xaf\x03\x06\xda\x00\xc3<^\x18\xf0\x15$\x18Z\x85_\xde|\xd9\x19\x119B\x94\xda(\xa99\xe0\xd6&\xaf\x99\xf3<\x1c\x97I\xc0l1KW\x9c@\xa9|\xcb\xff\x14\xeb\x10\x8a,=e\x0fV\xd5y\xd9|\x16\xc9|\xcd\x14\x0eD1 SWa'Q\xd8\xechB\x1b\x9f\x0e\x96\xd0\x01Au<\x99\x8f\x0bZ\xd7=\xb5\x0c\x1aV\xd4m\x82\xcd\xba\xa8\x9e\nye\x19\xa2N\xef\x8bRL@\x83\x8aP\x1a\xa2\xa2Y\xac\x02\x16\xc4G\xbf\xb0\xd2\xbcbZ\x0e\xd7RT' \x0b\xde\xb3\x08^\x86\x11\xbc\xd7\x97\xca\x14\x08\xe8I\xc4\xcbh\xc06%\x7f\xffe\x9b\xab\x93\xd2\xd8\xd7\xc7\xb8\xe9\xbcy3\xdca\x08r_\x96\xcc8S?\xbc\xff\"\x84\xbd\x11\x0ce\xbe\x18\xca\x14\x862\x85\xa1\xa2\xda\x96\xc2K\xaf\x9aa,x\xc6\"\xf8!\x8c\xe0\xd9\x97s\x10\x0e\xe4{v#\xc8\xf7Wb\x18\xf3\xc7/\xe3dn\x0c\xbf\xfe\xc3HT\xe1\xcf\x86\x88\xf4Jr\xba\xaft\xe8\x10)\xcct\xf1\x10\xedu\x94,D\xb3\x9fW\xff\x95\x88\x84\xc7\xa5\xed!\xbf\xbeb\x81\xb5\x88\x9e\xe6d\x11;\xdf*\xd1\x15K\xf4\xa30 \xaa\x12\xa3\xd8Z\xdd\xdc\x157-R,\xbf\xdaz9#\xa2\x1b\x81\xfd_\x83\xe8\x1e\x91\xa1~{\x01\xca\xf0\xca\x9a[\xb8\xa3\xa2\x86Z/\xd6\xe5e\x89\xde\x95\xae\x11\x82@\x0eS\x18\xa0~)\xde%\xee|S\x0e\x1e\xf7r\x06\x87\"\x91\x8b@\x89\x1cQ\xa2\xba\xb9'n\xee\xb5\xf3\xe5\xeb\x97\xc5e\xd1\x83&\xd4\xce\xe1z\x1a\x827\xf6G\xcf\xec\x8f^\xd9\x1fa\x8e\xaa \xa7\x11\x9c\x10.ZP\xed\xcd/T\xb0.\xa9\xe4A\xb7\xa1g\xd5\xb0\xd6:\xdc\xf8\xf8\xaci\xd4\xf9\xe7o/he\xf2qw\xe6\xa9L\x10v\xd0YY\x1d\xdd\x85\xe6\xf5\xcd[\x1b\xdc\x90\x18\xe2\x94ks\xe1\xe2\xeba\xf5\xb7\xd2Y\x18b6\x9b3\xf1R\xfeV\x92\x89Qe%\xfa\xbfuK\x1b@M\x9fk\x9eli\x1f\xd7l\x03v\x9dT\xff\x84\xcc\x17l\x85br\xf9c\x001\x95\xa2\xf6/\xa4\x9d\xf2\xb41UO\x8dq{\xd1*+\xb5\xb0P\xffM\xb3j-\xe9'\x9a]P\xf8DV\xd0\xfb\x1bl\x03\x81m\xf8[\x0f2\n\xfc\x97\xc2c\x8b\x91\xbc\x06\xbd\xad\n|\xb2\x98~Y\x8b\xc3\x8c\x14\x1ez\xc3\x9a1\xa1\xbeD\x85\xd2ku\xe0V\xad,\x846\x9a\n\xe7\xe0\xa0Z\x87v\x1d\xe6\xda\x1ax*\xd7\xed\x1b\xc7OCZ\x9f\xa9\xccS\xea\xca\xac\xd8\x9a)\xeb\x9ci\xfb\xe8\xae\xcd\xf4\x86\xb4\xfd\xce>\xae\xcf\x1eX!\x91\x07\x06\\k:jZ:\x00])e1Y_uk\xd8\x8dS\xbc9v\xf3\xdf8C\xe25\xc1\xff\x84 \xa1\xbeA62\x0dT\x1b@\x06\x0d\xf8\x1a\x04\x1ap\xa8w\x82\xcc\x16z\xd7j\xc0\xb1\x15\xa8\x8c\xc5\nuxO\xd7\xed\xd3\xf2\xd7\x19a\xefT\xf3o\xa7\x9c\xb4\xd8\x11E\x1b\x7f\xde\xcc\xe4\xed\x17(\xb2\xec(\x99--\xfe\xebu\xdd\xcb\xb0\xaf\xee\xf6\xde\xa3\x93D\xcf\xab\xb3\xc2\xdd\x993'\xfd9E\xff\xde\x94\xcacgk\x1c\x94\xc9\xe9\xf9\xb3k'\xa7O\xae\x9d\x9c\xde\xc5\xc1\x97\x92t<\x99\xd8\x8b\x11\x18\xb6\xa6\x17 S7 \xb7\x82-\x04\xe1\x16\x19N\x9b9\xa4\xeb,zF+[UFK\x0bUy\x1b\xeb`\x97\x0f\xda\xe5\xb73*Jdk\xd5\xb2\xab\x9b?'\x18\xd4\xa2\x1e\xf0\x9f\xd5\xc3V\xf9m\xf5\xe0\x19!\x8bF\xf1\xed\xfa\xc3F\xb3\xeaV\xfd%c\x01\xef\x8c\x1aJ\x8dg\xd4XA\xbc\xbc\xdd\xae \x9eQ\x8f:\xe0\x19\xed\xdb\xeb\x80\xe3CW\x1dp\x16\x144\x82#\x8ey\x05\xbd1\x07\x93\x82\xa2-Yf\xd0\xf6\x96D\x02Nq\xfb\x9f\x88\xb0?\x9bZ\xbd1\xa9\xaawL\x98U\x9a*\xbeH\x9a\xaa\xb8Vg\xbb\xf1d\xe2\xdb\xee\xa4\xc0\x9aq\xac\xac\xbcC\xb7\xb7CH\x026\xa4\xa3\xb0}\xec85\x8a\xe5\xb1\xcd\x8f\x1d\x8b\xfa\xc6x\xec(\x07\xa9Z$\xc1p\xb7yx4\x96>\xa1\x8c\xe4\x05\x19\xb3\x9b]\xfe*\xa3\x12\xf3\xab\xbd.0\xc4/\xbeC6\x94\x98NeS\x18\x9f\x17\xcb~-,0\xf0\x14N\xbfg\xd6'\xe7$_y\xb4\xac\xae\x12\x1dJ#\x8cE\xf5\x0b\x02 \x90\xcd\x93\xa4\xc5\xa6$\xeefZ\x1aHR,OY\x1e\xff\x7f8\xf2o\xc2\x91\xeb\xc6ry\xa2\x08&\xb2\xbai\x14Q<\xa4\xcf1\x85`\xc43G\xab\xe5\x10\x81\x93\xebi\xf4$9H7I=/K\xaf6\xd1q\xafCM\xd3\x1e\\[\xe7T\xdf!Y\xce|y\x819\x0d~.\xbdw:Nf\xde\xee\x93\x95\x8f^\xc2\xd08\xebn\xff/\xd2 \x15\x7f\xadz\x85iZ\x85\xb61\xcf#3t\x90c\xcc\xb9\xafa\xd88\x1d?\x85Xk\xc4\x9b\xea\x80L\xf9\xb0;\xd5[\xc5\x7f^\xfb\xb3\x99\xc2G\xf65\x8f?\x91\xe0\x0bu>8\xfb\xa48FM|J\xdb*\xa01\x8d`\xcaq\xac\xf7\xf7\xbf\x9f\x9c<\x7f\xfd\xfa\xe3\x87\xc7O^\x1d\x9d\x1c\x1f}89\xf9\xfb\xdf{mG\x90\x05\x7f\xbb\xf0P\x1aM:\x11\x81X\xaa5\xb1f\xb5&\x05\x05U([j\x88\xb1\x1c\x9c<4\xa5w<\xae\xf0|\xc1V\"|\xba\x04\xa3\x9f\"b\xd6\xbd\x17\xebJ\xae\x85#\x08\xa3\xcaf\xdf(_G\xd5\xb4\x88\xc8\xea]\xad)\xf3M\xc2}\xee\xa4Kc\xcc;\x10\x8c\xf9xg40\x99j,\xed\xce\xbf@\xa5u!TZg\xb4\xd2d]\xfc\xbfM\x93u\xe6\x86_\xa9\xee3\x14X\xd4\x7f-\xe8pJ\x95\x03\xddBSj-*\xa5\xd6\xa2\xae`R?\xeb\x0f$k\xb0\xa0\xba\xcej\xe1\xa3\xf0Y\xb8\x14>\x8b.\x85\xcf\x82\xaa}\x08\x038\xa7\xf2\x06\xdf\x8a\x88\x92\x11\xb0`N9q\n#\x98\xdf\x9cFh\xfe\x97h\x84\xe67\xa9\x11\x92\xfe\xf7.\xc5\xd0\x9cV~\xfa\x82r\x9f\x19(\xf7\x8aFp\xca\xf7\xc9\xdc\x83\x16\x9flJ\xd8N\xffC\x84\xed\xc2 \xcd\x95 l+>\xde\x13\x1a<\xf7/\xbby\xf4\x05\x84\xed\xad l\x97\x1aa\xe3\xb7\xfaKZ\xcc\x92){\x9c\xa6\xbe\xd1\xfc\x97\xde\x8a\xee\xa7nE\xf7)\xad\x1clO\xf5\xbdvA\xe5\x0d\xb9\xd7Np\xaf\x1d\xd1\x08.8\xb5<\xba\xb9\xbdvt\x93\xbb\xe2\x98\xc5\xe3O0\xe4\x1bb\xd4\xde\x10G\xd7p\x05\xa9\x1b\xe3g$6\x14\xaaG\xbd\x15\xd1\x92r\x93\xf0\x81H\xbcNvv\x1e\x84\xf8\xbd\xf0\xaa\xb2\xef\x058\x04\x99\x84\xc6\x14\xf7W\x1b\xf9\x82\x90O\x1b\x01\x88\x8f\xba2\x1c\xf2_\x86\xec\x1d\xad^\x96\xc5\xac\xab\x97J\xdbP\xae\xaf\x9f\xd6\xa1\xd4\xf4\x95\xce$\xb8\xfb\xb7[\xedD\x1a\x03\xcc\x07\x1e!0\x9bo\xc1\x0e\xecq\x88?\x12j\xc3\x9d\x9d\x10?\xb3\xf1\x05\x98Y\xa5lcH-\xb9\x0f\xf9\x825\xd7\x82_\x86D\xcbu|\xb4\x04S\x96\x9c6\xae\x87\x16o\xd5\xac\x18*\xef\xd6\xcb\x9f3\xe9\xda\xff\x98\x9a\xc5\x93\xd6\xe2=\xe6\xa4\xc8C0\x91\xead\xb4u\x05$\x0c\x05G\xe4^\xbf*\x07I\x87\xd4\x82\x0c\xb8\x19\xba\x1d\x9b\xaa\xe4\xed\xcb\xf0\xa0\x0d84&\xb2\xe4\xd9P\x00*4pT\xa7\x10\xeb\xdfN\x9d\x0f-2\x8aw\xca\xc0X\xdb\xfa\xb3\xc6\xfa\xd3\xeb\xae\x7f\xdb\xfd\xba\xb5\xfeYge*\x1de\x8b4\x19\x93`\xcf\xdd\xa6<\xa66i\x97\xa3\xa1\xa7:\xca\xd4\x95\x0f\x067\xbb3\x9d\xa2\x8d\xd67\x9fF\xb6\xb8\xce,6\xb12}i|\xb6D\xa9\x06\x06m\x82W\x9c\x15q\x83\x8d#\x89\xcf\x91\xc9\x89\xca[\xe9\xe8Q\x0e\xd6\xc7\x15\x8cbq\x11\xa2\x7fe\xd6p\x7f\x08jM\xd7-TeG\x17\xa49\xfa*M\x8f5\xc6\xaf<\x99\xf2\xda\xc9\x84e\xce\xb2:\xc9\xe2\x07\xcd\x83\x10\xeff\xee\xd3\xdd\xbd\x88yc\x11\xb3k\xad\xdfcj\xaa0\xddX\xc3\xcd\xd4V\xa5.\xa9\xad\xb9\xaa\x10\x94\xe3\xeacZMH\x9f\xcc\x86a\xc8\xfa\xcc\xf6,z\xa8\xa3kkAe\xdc\x81\xbe$\xd5\xd1\xa2y~\xb9\x90\x82\x8a=\x977\x10!\xaf%\x13\xccU0\x08\xd5\x92 \xe27y\x07\x13\xe85Y?\x1d\xa9\xd7l3\xb3\x0e\xb1\x9a\xa9\xf1\xec\xcb\xfdNn\xcf\xc8\x84N\xaf\x7f\xc5O\xe4]\xf1\x03\xb2\xdf\n\xd0\x91\xf0\xec\x17\xcb`Q\xd1\x98g(Z\xead\x1e\xba\xb2\xf393\xf3\xf9D\x05\x1c\xa1\xd6\x15\x85\x9a\x01\\\x1a\xa4\xf7c\x1a\xc1S\x93\xde\xf5\xc3\xe3\xa7/-\x9a\xd7O\xfc\xfd#\x0fi\xffq\xe9\xae\xd7\x91?\xb4.\xf3\x7frf\x94\xa9\x98\xe1L\xe7\x84\xb3\xa6\xa3^V\xd1\xbf\\\xfc\xaaS\x07\xbf\x94\x81o\x9d\xa7\xee\xb1\xd0\x03\x1cs\x80<\xa6A\xcb=\xc5\xd2\xe8\xbbnq\xb1D{\xabYR;\x9c\x86\xa8\xa3cCjH\x84k\x85\xa4\x9e\xbe\x8bU\xbc1\x0d#\xa8\\&\xb5\xd0\x88\xe3\xd5\xfc4K\xb1B\x82\xeby\xb3\xadf}|\xfd\xd7':|Z\xaa\x17?\xf9h\x03?\xb9\xb4\x81\x9f\xba\xb4\x81\xbc\x0b\xdd\xb6\xf6D\xb7\xb5E@\xfb\xcf+\x02\xf91\xe2\xcbDM\xe9\xbfdJl\x8f4_\xafH\xe0bE@.8\x91\xb9qE\xa6\xed\xeah_\xaf\x8d6zh0\x06U\xbe\x07\x8b\xe9\xcdi\xdaV\xd8c\xa61\xad\x15\xc4\xbbm\x9a\xc0\xb2\xe7tB.\xc9\xe4\x98|\xf6\x00\x8cF\xe2\xdf\xcb\xa8s\xbf^^\x1c\xfb\xb7\x8e\xc01\xa6\xc2\xf6\xd1\xccc\x82\xdf\x9e\xfa\xa4\x07\x9c\x85Y-H6\xc5\xfc\xda/\x8eQ\xe7\xc8\xff\x10\x16\x1e\x0b\xf8P\xbb\xc4\xdf\xf1\x9d\xde\xdb7\xff-\x13|\xfb\xa6\x9c\xe2\xdb779\xc9\x97du\x0dAC\xf8\x13\xd8\xfa\xa4\x93F\x8f\x1eU\xa3\x10\x98\xfcS\xcc\x89\x1aX\xcc\x1b\xa0\xebI\x0f1\xa1\x89\xb9<\xb8aXB+\xb4\x19,j\xc8\x125W\x9c\xa1\x84\x8ay\xbbYh.Sc\x18\x08\xe7@|6o\xa3oRZR\x04=\x84C\xe8aE\x028\x80^\xd4\xb3c2\x83\x01\xf4\x0czTu} \xa6\xbbp\x9c\xcaR\xfd[{\xe8\xb2\xba-,%\xfc_t3\xdaR%\xa4\xb4I\xe1\x9a\x96^4x\xe6\xf4\xda\x9c%\xc8\x1d\xe0\xc5\xb7}\"\xab/ ?\xcf\xbdVt^\x93C=\xd0\xaa\xdcb\xf5\x94\x9d^\x9d\x89\xb3t\xc3\x0d\x16A\xe6\\\xe0\x06\xae\xb5\x1cT\x1e\xc2>\xe6G\xe4\x98\x02\x07b\xc3\xb6\xb6\x83\xae\x06\xc0\x9a\xb5\x0e\xe4\xc8\xe0\x10\x82LR9l.\x94\xed\x92\xb2\xf4\xad\xa8\x18\x988\x0b2\xe7\xfe {\x9f\x9c\xcd\xd8\x86pS\x84Ig\x84*C\x94\x9b>I\xaeG\x9a\xdes\xab\xdd\x1dl\x83\xc6^\xfcq\xb7D*=\x19\xaeWWh\\\xbe&\x06?\xb9\xde!\xc1\xb9\x91\xcdz\x14yYD\xac\xdc\x1b\x8a\xa5\xc2LY0L]\xe5^5&\x9a3\xb3\x06\xe4\x80\xb9\x1f\x94\xba\xbf\x80\xd6\xfc\xee\xd5\xcb\xe9\x92\xbd\x8a7Q\x0f\x88}\x8d\x1e2\xbb\x11\xec\xecy\xf5\x92\x14G\xf3\x05\xf3\xb11\xc8^4\"\xae\xcb\xe9M\xc9\xfd@.c\x9d\x19\xf5\xe0EmFH\xaf\xd9\x8c\xb3%m\xee\xfc\x8e\xf9<\x0dH\xa5J\x12\xdb^\n\xb0\xe2\xe3\x0d\xf4*\xd8\xfb\x13_\xf6T\xf6\xefK\xa5@\xa3T\x1fI\x10V\x06)W\x06<%\xe5\x98\x88w\x17\xeb\x8a\xdf\xcb\xbc AU\xa7\\T\x12\xe7\xbbR\xcfy\xec%\xb5i2\x97\x99\xddU\x97\xa3\x94\n\x9e\x05\xba\xb9\xcdR!\xefJ?o}V\x8f|^\xc6\xe9&\xc2\xd69)\xc9\x86W\xfb2k\xa6\xc7V\xd3\x1dN\xcdk\x8b\x81Z\xfd\x13L\x97W+\xceDHu\xdf\xcd)\xd6\xab\xb7\xfeN\xc3\x86\xaa\xd5\xcd'\xd6\xaa\x1at\xf9\x8e5>&\xc6<\xa0\xea\xba\xf2\xe4\xf7\xc4.}\x93m\xb8\xdf\xa5\xf8\x81;|\xa3\xd3\xa5\x14Y6\xe7,,\xd5\";xn\xea']V\xc2%m\n\x97\xbc\xefa\x16\x01\x1d9\x05L/\xd6\x8aO\xff%\xf1%n5o\xf4M\x84=T\x8dQc\xa9]\xf3\x98\x1agd\xc7\x8a\xe8 7\xb3z8\xda\xb2\x99MF\xb1!rx\x0e\xa5\x02\xdc\xa6\xe3\xf1_-\xcf\xa1\xbc$r\x05\xfdF\x91o\xcc\xbc \xe8\x1f\xfb5\x9f\xc6\xec\xf5\xb5\xa51\xdf5\x02m\x13\xffb\xae\x93\xa4\xae&m\xabk\xea\xbb6\xb2\xd6Bn8k]\xc7\xa1\xae\x895o\xf1\x8d%O\xd9\xe2\x06ga \xd9\x1f5)\xc1WD\xd0\x8f\x12\x7f\x8c\xe1\xa7\xdd\xab\x0d\xcc\x90\xf5\x82y\x1e\xd8R\xa1\xa4.\xef\xfa\x14\x1f\x9fa]m\x9b>5\xaa\xfcd}\x07\xfe\x9cz\x0e\xddTnZ\xf8\x03c\xa1MUa:\xabU\x98\xee\xcc\xb6\x9c`\\\x90GV\xe4\x00}\x1a\xb1Z:\xc6-\xa9\xa4\xc4I\x04+\xceJ\xafB\x14\x13V\x95\xbf\xa7\x19D\xaee\xf1:\xad\xce\xf2l\xb9\xf8w\xb0\xe2~6\xbc@f\xbb{\xc7P\xd5\xc5\xf9wO\x06\xde\xc8\xb9w\xe9\\\xf8\x95\xb59w\xfe\x99\xe0\xdc\xbb\xf7\xb5~I\xf0\x04\"\x04r\xbd\x86\xe1(\xc4\x18\x06\xccY>\x8c#HFp\x00\x89\x87q\xd0A\xc7\xec0P(\xe8G\x81\xb3:\xe5\xed4?U\x14\x8cD\x90\x04&\x12\xa9.\xcb\xf87\x165f\xf1&r\x06\xd2!\x99py%b\x08V\x9e\xbd<\xdf\x84\x86\xab~\x9e\xd3M{J\x8a\xe3\xe5\xa9g\x81\xcfR\x06\x1c\xd8|\xc2\xcaJ)\xc2\xea,y\xf4J'\xe4\xb7\xb4\xe5y\\&\xc6\xd9 \x9f\x96y\x8a\x0b\xce\x0bm2\xc9\xc05K 3m\x96ay\xd3\xffT\xfbDVo\xa7\x1b\x0c\xa9<\xd483\xb7\x11$o\xc0H(\"\xce\xfd\x8f\xf8\x9aV\x86\xef\xea\xe7-)\xd5\xa7\xdbts5Z\xab\xe4W\x1f\xf9Y\xff\xfe^^g],\xbc7\xae\xb11\x97U\xbb\xefy|\xb9A\xaf/\xd8F*\x8cy|\xb9\xe9\x99\xfa\xa2\x96\x8f\xc8\xab\x13?\xa3Yk\x06p\x08\xef\xa9pa\xf9\xe8'(\xcd\x13z\xfd\xe9\x88\xee\x98\xe8\xcewn9\xd9\x18\x13\x8d!\x8f`n\xbe\xf8\x94,6\x80\x9d\xd6\xfe\xeb\x98\xcd\xfa\xf3\xf82\xb0T$\xb6t\xd6\x14\xbe}\xa5\x04\xcb\x1e\xe3M\x06D\xbb\xe3=\x90\x9fgI\xba\xa1\x99\xa1\x1c\xccO\xd74l|J\x16\x1f)K\xd2\xcd\xba\x15@WC\xdeL\x05%\x12\x82m\xd6_\xdb\xcaa\xc8\x0c\x06\xe6\xfeX\xfc\x89l\xb0\xbc\xacf\x80\xb8\x06J\xf1\xfen\x18\xa5x\x93\x9b\xa3\x14\xff\xeaKP\xea:\x92\xc4?\xbc\xb8[\xad\x84\xd1G\x8aj\xdeZ\xf26\x8c\xac\xec`x\x15;\xcd\xac\xdaeuq\x91.\xab\xc7\xe6i\x05Zja \xd8\xb1\xbb\xb5sY\xcf\xbf\xa3\xec\x7f\xc9\xb8\x19\x04\x1f\x82*\x91e\xd7\x0c\xb5f*\xe9\xa7\xfc\xf6\xd6-\xd8\xde\x8eQH\x95\x0dZ\n\x95\xab\xeb*\x8c \xb6\xbeq\x15\x81^\x06\xe9\xbfhU\xb2|\x93e!5o,\xfe\x9d[\xae\xe5\xd7\xd2\xe1Q\xa2.9N\xcf(K\xfdB\xdf\xa9e9\xd3\xee\x0f\xc0?\xe2Q\xbf\x9c\xd1\x8f\xfae\x89\x95\xd0/e\xba\x89;\x8bS\xa9K\xe8\xf0kE\xaa<\x1c\x1aUD\xa3\xac\xdf\xeb7\xd1B:\xab\xfa\xbd\x9d\xe2\xdb{\x1d\xae\xad`\xdaki\x04\x05j<\x0f9i\x1b\x0c\xe0\x8d\x14s>s\x8c,\xf0\x05\x91\xe6o)=C\xfe\x0b\x16\xb7\x8b\x088)\x80\xf1\xe1\xe6\x9aW~\xf0\\\x97\xa9(\x0f\xad\xcd\x98\n\x15C\xb0!_\xba\xb9\x186\x8b\x8b\xd9\xd3l\xb2\x81\xa3\x0b\x9bU\xd9\x05\xb0\x8a\xf3L\xcf6\xd0\xcd#@\xb9\xbd\x84\x83\xf2`\x00{p\x1bv\xcb\x8d\xe6 ]\xcaL:\xeeT\xf0\xf9\xb9\xf2\xa36\x16\x0ea\xcf\\\xf5\xb6|M\x0c\xcck\xf1\x1b\xdf\xf0\xd1^\xa2\x90~\xe7\xee\x9d\xfd\xef\xf6\xbe\xbds\xefN\x18\x95\xb7\xe1\xe1C\xd8\xbb\x07k`\xf0\xe8\xd1#\xd8\xd9\xbb\x17\xc1\xdd\xfb{\xdf\xde\xbd\xf7\xdd\xee7\xcd\xf7\xeeh\xef\xdd\x89\xe0^\xf5\x1c\xd3\xb9\x07\x0c\xb6\xe1\xce\xb7\xf7\xef\xee\x7f\xb7\xbf\xf7\xdd}Xs\x98\xfe\x8bo\xe9\x7f\xc9\xcf\xf6\xeeG\xb0\xbf\x7f\xf7\xfe\xb7\xfb\xfb\xf7\xca\xe6\x8f\xe5\xe7\xd8M\xf9\xe6\x9d\x08\xee\xec\xdf\xbf\x7f\xf7\xdb\xef\xbe\xdb\xfd.\xd4\x9bpl\xb9@\xe7\x0f(\xd6\xba<\xdc\x10j0\x80;{\xf05\xe4\xb0\x0d\x9fi\xf0\x94\xe0\xa6yJ\x02\x16\x86|F\xf6\xce\xc1sw\xaaKh\xc5\xaf\xd1K}R>\xdd\x943\xc2\x8e:;\xd8\xacq\xcfvCc9k( \xa2\x89\x14\xd6\xee4\x95\xc1|/~\x10\xc9\xc9\xb4\\\x00\xfa\x1b\x1f\xe8p\xaa\x02\xbc?\xd0\xe1+\xfe\xf7\x07i\xb2(\xf8-\x19:*n\xcb\xc0\xea\xf2\xbe\x1e8\x04\x03xF\xf1IB\x8b\x85\xc8\x8d\x8f\x9f\x1cg\xcb\xbc\x9eW\xc6\x04\xb2\x86\x12I\xba\xb7\xd6g\x87\xad\x8fgqBE\xdb\xd2\x96)ng\x94\xc5 F\xa5\xe3\x10\x84\xee\x12c\xc4s\xd3)9M\x93\x0dB#K\x01\xe5#\xb3\xae\x84I\xed\xb38j\xb9\xf7\xfbZ\xff\xedT1\xb7\xcb\x02N\xe1n#\xc3j)M('\x89a\x12A6\xb2\x17\x9f\x06\x10FU\xcd&\xe9)4\xce\xe3\xc5\xcb\xba\x0f\xb2/\x8c\xae\x01\x04\xbe\xeeMXt\x89\x19-X\x88h\x04\x07\x10\xb0\x93\xeb\xec\xd6\xd7\x14\x93\x9btf\xeexn\x07\x92\xdaI\xf5\xbe,\xed\xfc\xde\xd9\xce\x90E@F^\x8d\xbd\xb1\x90\xc3\xe6\xd9\xdc\xb1\xd9\xb6\x88O2.h\xc3\xd32\xac\xf773\xac\x9d\x1b\x1e\xd63\xf7\xb0z\x05\xd2\xc0\x9a\xf1\x03\x0e\xe1\xc5\xf1\xdb7}\xf1(\x99\xae\x84\xdaVRK\xcf\xdc\xa2\xaf\x9c\x04\xf8\xd8\x9a\xc9\xd3\xd2\xdc\xc7N\x0c\"\xf0\xb0\xe4\xe0\x08<\xc2\xbfw\x90\x9d\xf3\xea\xe0\xb3G\x07\x9c\xf5\xd9\x86\xfd\xfb\xf7\xee\xde\xbds\xef\x9b\xfb\xdf\xc16\x04\x843d\xf7C\xf1\xe7\xa3G\xb0\xdf>}\xeb\x0b%[{M\x87\x0bu$\xbe\xae\x8eD\x19\xa8\xc5\xef5\xceD\x91^\xa0|\xd08\x14;\x89\x9a\xec\xb6\xb1\xb0\x0c\xa3o\x0f0\xfc\x161\xa5>p<\xd82s\xf2\x93/M\xdf\xe0\xa73\xbf\xd1\xc0\xa9=\xbf\x93b\x9a\xd0 JO\x9e\xdd~\x817\xdd!:\xd3\xc1\x01\xec\xb4\xfd\xffLfN>*?\xc3\xd5\xb9\x9e>S\x99\xa8\x9c\xa3\xd1\xd2\x0c\x97{\xc7\xcb\xd53\x8d\x0b\xf6\xfc\x9a#+\x8dq\x7f\xd9\xe8n\"~\xc3\x13qn2~\xc3\xb7\xcb\xc5\x06}*Dm\x86\x15\xd9\x9d\x98\xf9:U\x96\x02.u\x8a\xa0Z\xb1\x10\x98\xf6j_\xfe\x89\x15\x8c;\xb23\xf2\x8b\xa8\xec\x8c\x9c`\xef*\xe7~t\xce\xafRDt\x04\x85VI\x15\x959\xa3\x03{J0\xef\xc9\xd1\x1eB\x0e\x07\x90\xab\xd0\xfdc=\x02x_94\x88\xd61\xc7\x81gP\xb0r\xee\xfc\"\xf2Qz\xab\xfe\x15$\xe4:\x8e\x9f\xa2\x9a\xbdW\xeb7\xe4\x9a\xe8\x89\xfd\x1b;\x0d6\xd2k\x87\x88\x82\xaa\x14]]\x0b\xa5e^\xafG\xd3\xdc\xba%\xf8\x8b\x99\x96dU\xe1\xed\xb5\xfc\x11EUmKV\xa5M\xdd\x117s^j\xc1\xe3\xd1\x00v1\x07\x85%\x90\xc8\x02(d\xbefUt\xd1\xce^\xf5\xa5<\xb4Z\xd5\x14\xc1v\xc61\x92/\xb2b\x13\xd3\xe6\xf5\x93|\xf8\x99\xf5\xaa\x12\x03%\n\xec\xc3\xd7\xea\xd7\x0e\xec\x89\x02\x03\x0e\xcb\x9f-\xf5\xa1~)\xa3\x01s\xca\xe5\xeaJ\xbe\xd8V\xd79 \xad\x8d`+\xc1R\x00b]Eh)\x17\xd1\xb30\xd4\x92\x96b\xb3\xf2\xbe\xb3\xe5+\xde{\xe4\xca\xa3\xa1C\xd4l\xb6\xf3\x06i\x84\xb0\xaa\x19\xd0~\xc7\xfe;'\xefo\x0f\xbd\x86\xfd\xac\x84l\xc6!\x1b\xc3\xff\xe5\xb2\x03\xdfz\x1c\x07\x92\x9a\x0b0\xc6\xfc\x1e\x88w\xe0\x10>\xf3\xb9\xc7\"\x1d)Zm\xd4\xcfL\xa5\x8c\xed\x02\xbf\xd3ZbIU^Q \xefm\x9c\x92\xf8\xdc\x87\xf3Rf\xb9!\xefbd8\x94C\xc7bq\x1e\xe5\xa5 \x00J\xff\x12\xc1\xcb~6EgZ\xebg\"?\x89\xe6\x9d\xef}\\\xc3\xbf\x8e\x1f\xf8\x9e\x11\xaa7\xed\xde\xe3y\xf2\xffq-\xbd\xeaK\xf5\xc7+\x1a\xb9\x90\xcd{\x0c?'l\xe6sN)\x99G\xef\xc5\x8do\x9c\xa7S\x01\x02\xed\xf1\xdbL\x96\xb5;W!\xa7\x08Uz\xd8\x89\xd27\xe87\xcb\xba-\xef\xd0q\xbd=\xfc\x8dy,\xc4 Q\x0bZ\x9a\x95\xbd\xe4\xb4\xeb\xe6\xd31T\x9d\x86\x9b\xd9l\xd8|\x95\xc3\xcd\x03\xda\x89\x96g[\x94\xd0\xaeY \xf4\xc7\x9a%A\xbf]3)\xfc\x1a\xe9J\xda\x10\xef\xbd\xac-\x9f\xb8\xf7C\xadiq\xef\x84\x18>\xbe \x86\xaf\x8fH\xf3\xf36TT~\xb9\x03\xa0m\xb8\"P_\xb4\xef?\xcd\xd2\x94 \xa4\x0f\xe0\xd4\xe0\x03\x81\x01b\x1f\x0d\x0f\xf4\xb4\x92\xefX\xfb\xb9\xc8\xcb\xb70<\x91\xa9\x02\x8f\x8c\xa3d\x07P\x18\x1e\xe8Y%\xe7\x86\xe7\xef\xc98\xcb'\x07\x90\x9b\x9e\xc5\xf4\x8c\x1c\xc0\xca0\x89\xf7dAb\xde\xa4\xe1YR\x1c\xc0\xccp\x7f\x9agsLmkK\x97|\x15\x01\xe9\x93\xcbE\x96\xb3\x02\x93\xc4 \xac\xbcr\xfb\xb4\xf5\x96\x05\x81\x82\xe5\xc9\x98i\xf9i\x94 ]\xdbn\x9a\x0f\x8d\xdeQ\xb3u\x15\xfb\x16G\xb0\x8c\xa0hn$L\xc6\x1e\xb00\x82-\xe3\x1e\xe6]\xa7m\xfa\xa7\xa5\x01C=OX&L;\xca\xf3,\x0fz\xaf\x13\x9aL\x132\x01r9&\x0b> \xc8\xc6\xe3e\x9e\x93\xc9\x03\xe0\x93d3\x024\xa3;s\xf5\xe2\x84\x9c\x03\xa1\xe7I\x9eQNu1\x02\x8b\xbf4]\xa6)\x10\xde*\xccIQ\xc4g\x04b:\x81x2Ix\xb3q\n3\x92.\xa6\xcb\x14.\xe2\x9c&\xf4\xac\xe8\xf7\x0c\x14\x9b\xa4\x05q\x90\xfc1\xe7i\x9a\xc0r\xf8\xf7L\xed\xfcfP\x07\x05\xeb\xe7d\x91\xc6c\x12\xdc\xfe\xbf\xc5\xed\xb3\xa8\x9b\xa8AE\xd8\xc6\xc3\xe9\xf6v;\x84\x17\x90\x8a\x85a\x9f\xc6s\x0c\x8dxN\xcf\xe3<\x89)\x83\x9f\x92,\xc5\xe4\xdb\x86\xfc\x92\xad;l\x96g\x17\x90\xf6\xa7y<'\xc5\x87\xec\x1dV\x91\xd9k\xa6b\xd3\xb0\xfa\xcb\x91\x98\x06w\xee\x86f\xdc\xcd\xaf\xdf\xba#K\xa2L~>!\xd3\x84\x12\x95\xfc\x9c\x8bE\xbd\x93\x13R\xbc\xce&\xcb\x94\xf4L\xa4T:I5\\\x9e0\x8f\x12\xe7\xbb\x9ef\xf3yF\x8f.\x19\xa1\x85\xcc\x7f\x8e\xf7\x1bwH1\x8e\x17XS\xf1UB?\xbd\x8b\xb1\xae\xa2J\x9d\xdf\xba]\xcc\xe24\xcd.\x8e>/\xe3TV#d\xfd\xd3e\x92N\xbe\xcf\xf2\xf9\xb3\x98\xc5\xe2\xb5,g$\x97OY&o\x92<\x89\xd3\xe4\x0frL\xe2|,\xda[\xc4y\xa1\xff>#\xec8\x9e/Rr<\x9e\x91\xb9\xf8\xee\xaf\x17\xc7o\xdf\x88\x9d\xd1\xe9\x01\xc6\xf2U\x07\xb3\x8c\xb6*D5\xab\x8eF\xe8\xa8o\xdd\x82^\x86\xbd\xf6D\x11\xb2\x86\xb1\xa0\xb7\xa4b\x9fNzp\x00\\\x82*\xf8\xc6\x8d\x97)\x0b\x03\x16\x86\x8ex\xd7+\x18\xc7l<\x03q8\xb6\x1e\xcb\xef\x1a\xd9\x1b\xae\xf8^\x16\x03J\xa6\xabNH\xc8F\x8e\x05\xc3|$\xf9f-\xa9<\x1c4\xfb\xc6\x1e\xe2<\x8fW\x1bt@d\xb3\xe8]\xa3\xff-\xeaI\n+\xefp\xd4\xeeH\xb0%\x92O\xd2z\x03b\x0eM\xe3\xabr\x84\x1eT\n\xae\xe6\xb3\x9eAB\x0b\x16\xd31\xc9\xa6\xb0RK\xd2\xe7[\xd2\xf5i /\xc6\x01U\xcf\x86\x8b\xb7\xd2\xb2)\xce\xb8\xcb\xb4\xbc$\xec\x8b\x8c\xce8\xdb\xea\x95\x8a\xd9\xac\xde4\xd5Nd\x98`\xf0Cv\xcc<\x0b\x05)\x15\xa3)\x87\xbb\xd2\xfd\xecF\xb0\xacP\x91\xb4\xb3\xf3v [\xe6\xf0\xc5!3$\xe80\x14\xbe\xeb*\xc6N\x879\x17\x0f\xc90\x1f\x89\xf4\x8at\x99\xa6fMt+\x13&\x82\x8cf\xf9\x1c\x0f\x0f\x81s\x03\xb8\x8c\x90N|O}\x91\xd6<\xc1vOIQ\xd2\x9dc\xd9\xc7\x92\x8eo\xbe\x175\x11\xaff\x9b\x99\x9a\x8dT\xe2u\xbc\xf0A'+\xca4\x93\xfa\xba\xf4\xa2\xf5ue\x01_Y\xa1\x8a5\xe5\xee\x84?\xdb\xa5\x84p\xc8\xef\xb1\xcb\x7f\xdb\xa8K\xc5x9^\xa7\xee$s\x1e\x08Y\xd7\x81 U\xda\xfcn\\\xdd\xa5\x18r\xb1\x01\x98\x8aU\xc1\xc8\xfc\xc3lI?\xbdN&\x93\x94\\\xc49\xf1E\x9c\xee\xfd\xcf\xfa\x93\xa4X\xf0\xb3I2\x8eH\x97\x9cp\xe9n\xd4\xf4\xb2\xd3\x82\x05\x1d[\x08\xcd\x93\x01 0\x959\x0b,\xbel`\x14#\xccw\x0d\xe7\xa0\\#\x0e\x80e\xf14\x9btC\xf9\xbcL\xb2\xa5\xaal[I4+55\xc1\x05?[.\xf8D\xfc\x93\xa8+\xe0\xec\xf7Ty\xd4m\xe8\xf5Bc\x06\xa5\x10\x19pK0\xf3\x95\\f~\x82\xf9l<\x8c\xce\xa9N9\xa5\xc0\xe1\xbc\xa7\xfc3\xd0\x8a)V/\x8a\x13\xb2\x0d\x0eu\x9a\x11\x99\x83\xc0p\xec2\xce>\xb0\x91\x1d\x96\xf5^\xfaI\x81\x9dQ\x91\xf8\xfe\xa05\x88\xf6\xfcg\xc9\xd9,M\xcef\xdd\xdc\xa5Z\xe1I6Fu\xab\x99\x01\xd9\xaa\xf8\x8c\x9e!s\xaf\x08N`\xe4\x92=\xcd(#\x94\xa94\xac\x8f\xe0\x1e\xb9S\xc5\x03\xe9\xafX'\xdf\x8d+\xb5\xec0\xba\xd2@\xa4\x83\xab\xfa\x88\x90\x0b\xdf\x8dP=\xb2\x1c\xee\x8e\"\xd44\xecE\xa8@ \xfd\x84R\x92\xff\xf8\xe1\xf5+\x91q\x18\x16\xa8V\x10r\xb2\xa8g\xbb\x80\x87\xf0\x0d\x92\xc9\xdf~\xc3\xfdJ\xa5\xe7\xdc\xd8\x99m\x86\x03\x84\xf7\x94\xaa\xae\xb7\xb7\x8b\x910\xafM+\xd8\xecE\xb05\x86\xf5\x1a\x16\xf0\x08\xbe\x15\xbd\x08\xaa\x80w\x87\xb7\x7f;\xbe\xddg\xa4`\xc18\x8c\xf8\xdb\xfc\x83\xdb\xc3\xaf~\xbb\x18i\xf7\x83\xdem9\xb2\xf5\xbal\x80\"iN\"\xf8[\xefo\xa0\xdcN\x92\x08z\x7f\xeb\xe9?\x97\xc3\x02v\xe0\xee\x08\xb6\xd1)\x9e\xf2g\xbd\x9d\x9d\xdf.\xefp\x99\xbc\xba\xf5\xf5\xed\xdeh\xb8\x18\xb9\x8de\xb8,SQ\x98\xa1\x1f/\x16\x84N\x9e\xce\x92t\x12\xc4\x9a\xc8}\x94\x12\x8efA\xafX\xc4\xb4\x17\x86\xfd\x82\xb0\xc7\x8c\xe5\xc9\xe9\x92\x91\xa0W\xb0\x15\xaa\x03\x86\xbdq\x96f\xf9\x01\xfc\x9f{\xf7\xee=\x80iF\xd9\xce\x05\x11 qO\xb3t\xf2\xa0\x17\xe1\x8a\xe1\x7f\xfa\xabxo4\\\xc0!\xae\xdd\x1d8\x84}8@\x08\xdf\x87C\xb8+\xff\xe6\xf7\xef\xc0\x01l\xdf\xfeW\x10\x07\xa7\x05\xcb\xe31[\xa7I\\\xac\xe9d\xadL\x0fk\xbeg\xd7E0_\x17$g\xe1\xe1z\xc9\xb2p}\x1a\xc4\x05Y\x93\xb3\x84\xae\xb3,\x0dHL\xc3\xc3uN\xe2O\xeb\x15#\xe1z\x8c\x8f\xf9\x81\xb3\x9e\xc5\xf9\x1aE\xdb\xc9:\x8d\x8bb\x9df\x94\xac\xb3\xf9\"]g\xb4`\xeb\x8c\xb2\x84.I\xb8\x9e\x90\xe0tyvF\xf2\xf58\x99\xc7\xe9z\x9c\xc69YO\x03\xbe\xc7\xd7$\x0f\x0f\xd7 M\xd8:\x0d\xc8Y\xcc\xc8\x9a0\x12\x1e\x86\xebI\xb6\x9ed\xcb\xd3\x94\xacI0\x9ee\xeb\xb48L\xa6\xeb\xb4 A2\x0d\x0f\xf9<\xb0\xf6\xe8\x9a.\xe7\xebsB\xd9\xfa2\x18\x93\x05[\x93\xf1z\x11\xa4\xc98a\xeb,g\xe1\x9a\x91\x80N\x8a5*M\xd69\x0d\xc3\x90w\x9d\xa6l\x96g\xcb\xb3\xd9:N\x0b\xb2Nh\x9c\x06\xe9\x8a\x0f\xe5\x92O'\x8b\xf9\xd7\x01\x89\xc73>\xfb\x84p\xb0e\xf3\xf5\x92\x8e\x03\xbe{\xf9\x00\xcf\xd2\xec4N\xd7g\x19\xcb\xd6g\xcb8\x9f\xac\x93`\xba\x9e/\x02\x81\x03\xc5Z\x1b\x04\x0d\x12\xb6F\x95~p\x92\xd11 \x0f\xd7i\xc2\xa1\xb5dk%\xfa\xacY@\xf2i<&k\x92\xd38\x0d\x0f\xc3\xc3u\x11\xae\xd3 \x9e\x9fN\xe25a\xebl\xfci\x9d\xd1\xb3p=\x0f\x92q\x9e! \\\xa3\x8ai-\xd4\x08\xe1\xfaM\xfcfM\x83xN\x8a\x05o)f\xc99Y\x93K\xb6&\x17\xeb$]gl\xbdL\xd3p\x9d\x05\xc8\x16\xad\x17\xc2\x10\xbe\xce\xd7K\xb6>'y\x9eLH\xb8^\x04\xf1\xf8S|F\xd6q\x1e\xcf\x8bu\x9e\x9c\xf3u\xc93F\xc6\x8cp@\xb0l\x9c\xa5\xeb\xe5i\x9a\x8c\xc3u\x1e\xc4 \xc7\x98 \x9ed4]\xf1\x85\x9b\xae\xcf\x92\x82\x91|\xbd 1[\x7f^&y5\xefb\xbc$k\xa1b[\xb3|\xb5\xe6T1\x0c\xd7Ep\xba\xe2\x8b\x1f\xa7d\xb2&\xe9t=\xcbr\xb6N\xce(\x99\xac\x93?\x10<1K\xc6kT\xe7\xacY\xbe\x1c\xb3\xf5\xf2\xb4\x18\xe7\xc9\x82\xad\x97\x0b\x92\xafWt<\xcb3\x9a\xfcA&\xeb\x8b\x84\x8dg!\x87\xe8|\x91\xf2\xc1\xcf\x08]\xcf\x92b=\xcb\xb3\x8b\xe2p\x9d\xc7\xb4H8\xd2\xe4K\xb2\xceW\xeb\xd5\x82\x041\xee\x8f \x99\xae\x93\xc9\x9a\xc6s\xb2\xce\xa6a\xb8^\x064\x18K4\x9f\x90i\xc0\xd9E\x8e'\x19]\xa7\xa4(\xd6\x85\x18#K\xd2p]\x90u\x91\xf0\x05:\x0f\xe2|\x9d\xe4l\x19\xa7\xeb,\x99\xacQm\xca\xd7\xe7\"\x18\xcf\xe2\xfc\x84\x89\x01\x91\x9c\xacgIJ\xd6 \x9b\x85\xeb\xcb,_\xaf\x12\x92N\xc2\xaf$\x01\x9cr~iw\x14r\x16T'9\x8a\xdc| \x97\xecM6!\xc14\x0cC\x91Al\xc1)\x94\xa0\xeb\x9cF\x1c\xf0\xf3c\xaa\x1d\x00{{\x0f`k\xb8\x17\xc1\xed\xe1o\xb7\xff\xbc\x1a\x06\xbf\xedl\x7f=x\xf8\xe8\xe0\xc1\xfa\xb7\xdf\xfa\xd1\xe1\xd6\xad\xbf\xff\xfft\xfa{{\xf8\xdb(\xac\xdfhPhI\xa0\xc7\xbc\xe3\x0cS\x93sR\xff\xb0\x07[x\xceH\x12=.\xa9\xf3\x98\x1fS\xdb\x90\xc26\x12\xe8m\xd8\x1b\x95\x7f\xee\x8f\x90 \xffvyg\xbc\xb5\xb3\xd3So\xf2{\xb7\xbf\xae\xff\xbc\xcdi\xe1\xff\x11-\x8e\x86;;\x8b\xd1\x03\x87\x07\xcf\x14\xb6\x070\xf6e.\x8d2\xda<^|\xc8\x1a|\x97M\xf5as\xb1\xe4\xc7b#\xc9~\xf9\xcapo\x04\x87\xf5\x9f\x07\xd0\xfbDV\x06\x96D)\x06\x0d\xed\xef[\xdb\xdf\xaf\xb7\xbf?\xaa1[\xaf\xe3\x85\x89\xe1k0\x90\xaf\xe3E?)\x84\x96\x04=\x81\x84\xf7\xc3\x06\x1cd\x9dc\xa4\xa2\x82\x0dE\x0b\x89\x89g\xe4\xfd\xd3*\xef\xfd^\xa5\x11\xea\xcfI~F\x02\x93\x14x.\xa3\xe5\xbbG\xc3\xdf\xe4\x8c\x155V\x07\xe2O\x0bK\xf4\xbc2\xecl\xed\x99\x9fM-:]p*=K\xe6o\x11\xc1\x04\x06(~&\x9a\x96RE\x06\x04!\xa6 \xe4\x83\x0b\xf8\xb6\x9e\xd4\x1c\x85\xc2\x07r\xd8..\x8e\xf72\xe3\x14\xc3'8\xfd\\\x8e%\xab\xc62C\x17Y\xe7Ws\x0e\x83\xceP\xf63|k\xaf\xe3\xad\x15\xe7i\x83\xb3\x08h\x99m'\x82\x9c3X\xc12\x82yS\x0d\xad_mTPB\xc7\x8a\x0b\x1d\xb1r\xfe\xc0\xec\x87\xb1H\x9a\xb72s\x83\x06b\xa1\xab\x86\x8d\xdf\x8c\xa5k\x05r\xe5\x86\xef\xa7\x9c\xfbHm\x18a\xc7\x15~ma \xdeI_n\n\xedo[\xe2\xe6\x8e\xee@\xf1\xf7\xa14\xe0M}\xe1\xd0\xba#\xc7\x14\xb7I)\xb9D\x8e\xf4\xfb$%o\xe29\xf9>\xcf\xe6R\xa6y\x96\x14\x8b\xac@\xe3\xeb\x8f$\x9ex\x94\x95W\"\xde\xedi\x92\x12~l\x0fz\xc1\xf0_\x0fF_\x87\x0f\x0e{\xb7\x93>\xb9$c\xa3\xe1\x00\xcb\x9e\x08\xdb\x00g\xea\xebm\x94MT-\xd8\x88\x93\xaa\x9e\x82\xcdh\xb2\xa1F\xaa\x8c\xf9\x19\x94\x12n\x99\xa6m\x08-\xe2b\x1c\xa7O\xe3\x82\xc0\x00\x9e\xd6\xef|/\x07\xd9 \x1a\xd9\xc3\xd3\x80Tf\xe2\xdf\xfa\xc3\x7f\xf5o\x8f\xbe\xfe\xea6\x17%B\x93\xc6*\xa6 K\xfe \x1f\xf3\xb4\xb3\x07\x0e\x802vlK\x8b\x1d\xe3\xc2\x9a\xd0u\xb8ekM18\xd6{\x0e\x8dG\xf0\x19a\x8f\xc7\x9c\xcb\xe7\xd8\x92gi\x9a\xd0\xb3\xf7\xa4Xd\xb4\xe8\x86F\xe3$\xab\x14\xfe\xfd\xa4\xd0\xb4\xff\x9a:\x84/\x8dMcP?\xf6\xccoV\xfa\xa5\xbaCx\x97Wry\xc2\x15,\xceY\xf1s\xc2fAo\xbfW\xea#u\x15*:\xe9\xf5\xc6b\xf7\xf4\xf04\xfd\xf3*\xac\xb0\xd0V\xa8\xc1LlK\xd5N\xd0\x93]\x88&\x8dv\x12K\x1b|\xcb\x06\xd40.s#a\xa9|\x93\xa6.5v\xa1\x0d2CVA\x887\x9b\xb7\xf1dB\xc8\"]\x1d\xb3\x8e\xbaLmJ\xf3\xdeP\x86\xffye\x0eLi\xe0hf09\xd9\x15\xdaU\x1cQ\x1edC6\xc2\xbdr\x08\x13\x92\x12F\x80\xdf\xe1B\x0d\xff\x87\xf3\x03\xe2\x0dj\xcce`\xcaV\xabl\x03\x06\xb2\xa7\xa2!\xbd\x08\x89)`\xd6\x95\x19HV We=\x95Y\xd7r\xa6X\xad\x16\xa4k\xc1\x89\xb0Z\x94\x87\x12 \x1d\x0c\x84F|s\xad\x89\x08\x84}o\xdf\x00R\xc5\xect\x19$\xcdQ\xc2\xe0\xe2\x13\x88#\x15\x03\xebS\xf4\xbd\xf8\x90\x95\xfe\x1c\x1ek$\xbe\xb1\xac\x91\xd6\x9b\x15M\x1a\xa6\xbf\xfa{\xe7\xb2\x92\xe7I@\x83oL>\x12ctH\xba\xf7\xcd\x9e\xe1\xd9T~x\xef\x1b\xa3{\xc5B\xb9f|\xbbkz<)\x1f\xdf5=\x9e\x95\x8f\x8d\xe3:\x97\x8f\xef\xdf36>W.%\xbb\xf7L\x8f\xcfpV{\xdf\x99x\xff\x95\xfc\xf4\x8eqR\xa7\nX\xfbw8\xe2\xd7\x9e\x97\x04\xfa\xa4\xc3w\xe1\xd6-\x0c\xe1P\xbeU\xd2\xb5\xd8\x8c\x8b\x12\xa5M\xa5\xea\x9bQ\xf3\xfa/\xbe\xb0\x170\x80\xf2\x08lO\xe5\xc8\xe0\xc0\xd3\xad\xd9o\xc9\xc8fsL{\xb06`]ndv\xae\n\x047&on\xfc\xd8\xd9\xf8\xd6\x16q\xdaW}(\x95c\x0dtO\xa9\x89\xfa\xc8\x06\x86\xa7\xce\x91\xf2~\x17U\xbf\xfc\xe7\xd4\x7f\x18u\x07\xaeN\x16\xce\xa1\xf8\xd9\x8c\x8b\x18Z\xc4a\x0b\x8br\xc7\xda\xf8\x9dz\xe3wD\xe3NN\xbcn\xa2\x97} \xefQ\x7f\xc8\xca\x87\xeb5 `\xcfk\xc7\x88\x0e-\xab\xfd\x18\x9d\x84\xab\xfc\xdf\xb4b\xbfM\x9a\x15\xd0\xfd\x00\x86\xd4\x92\xf6\xces\xa3\xc1!h\x02AR\x04\x182\xc5Q\xd5\xcaq\xf9\xa05\n?\xb6\x06|\xfc\x0e\xf0\x08'\xf8i\xd6&\x06\x82{k\xd4l\xeb*`\xb3\xc5{\x99k\xc3\x1cR\xceY\x0d\xa9\xc1\xeau\xd5\xdc\x12\xeds\xef\x93\xc5\xe1\xb1s\x7f\x80\xb2\xa7\xc2#\xa8\xc2\xc4{?\xc5\xe9\x92\xc0|Y08%\x90\x92\xa2\x006\x8b)\xc8\x96\xbd\xca\xd9?\xb68fn0\xa6\x87\xf61\x9d\xa1\xc2=\x97\xc3\x12\x8d{\x0d\xeb\xad\xd9\x85\xb4\xfb\xb4@9\xf3\xf6\xbfv\x0e\x7f\x9bl\x07\xbf\xf5\xf9?\xe1\xa1\xb2\x0chRjc\xa01H\xb6\xc7gp\xef,>\xaf\x9b\x8d\xcecP\x14#\x01\xcf<\x87\xf5\xc1\xe4\x9b\xeb7&<\x95\xb6\x02\xe2\xf0)\xb4Cn\x9a\xa4\xc4k\x80\xaf-\x0e\xc5~c\xec\xb1|Iz\xb2n0?D\xa7qZ\xe87\xb6v\xb5\xbf\xf7\x14#o\x1b\xf5\xa9\xe8\xdek\xe0\xcf\xcd\xce\xd1~\xe3\x16\x835\xa8{\xecc\x93/\xfb\x0c\xedw\x9b3\xb7\xdf\xe0\x92\xe2M\xfc&\xe0\x9f\x95\xce\xc2\x8e\x95V\xcd{\x8d\xec\x8d\xc9\xef\xdcoTJ\xd8S\xa2F\x9fe\xaf\xb2\x0b\x92?\x8d\x0b\x12\x84\x11l\xdd\xfe\xd7\xf0\xcf`t8\xdc\xdd\xf9.\xde\x99\x8e\xfe\xfc\xf6j\xa7\xfc\xfb\xae\xc7\xdf{\xfbW\xc3\xf0j\xe4E\x18\xf8\xc8\xbd&\xfc\xde\xea~\xefOL+\xde\xc4\x8f\xce\x8b.\xbc\x86\xf7\xcc\x1a3\xb0\xf9\xf06 \xf9\x1b\x8c\xf0\x95%\xd2\xc1{|[\x94\\\xc0{rvt\x89\xfe\xc8\xae\xa5\x9dfi\x9a]\xc0Bv\xd2\x83m\x93\x03{\xfd\x0co\xc7et\x8e\xec\xba\x9c\xed\xad[\xb5\xdfv\xae\xd6\xc6\xf1\"\xab\x87\x94\xe74\x9b\xac\xa4RY\xa8\x17\x13\xda\x13N\xf2\xf8\x0b\xcdX'\x97\xf3\xb4\x87\xee\xf2\xda\xcd\x9eEU\x99T\xea\xce\x9c\xa0\x9b\xc2\xc4\xf6j\x0c\xc2;J\xbe^`\x84\x8b\xe8\xc8\xa2\"\x8e\xcb\xd5\xca\xedv\xc7X47\x97|\x8e\xa5\xf3\xb1\xf6\xa6d=,oN\xab79q\xb6\xbd\xb6\xa8^\x9bf\xf9\x8f\xe0,\x82\xd3\x08N\"\xb8\x88\xe0(\x82\xcb\x08\x8eG\x0d\xe1\xd59\xf6J\xdfd|\xc5V\x92\x0eYB\xe4\x9f\x9f\x86\xcd\xb9\xbf\x97\xb4\x1e\xa6 I'\x90\x14@3\x06\x8b<;O&x\x02\x98(\xb6j\xf4\xdc5X>\xf1\x8f0\x80WA\x16\xc1\xb9\xc3%\xe1#\x1a8\xc4x>\xfa\xba\x1a\x80\x1c\xc2\xa4\xda:\x93\xae\xd1|\x86\x01\xbc\xe7\xa3\x998F\xf3Y\x1b\xcd\xe7MG3\xeb\x1a\xc2\xf70\x80g|\x083\xc7\x10\xbe\xd7\x86\xf0\xfd\xa6CXV\x00q\x96\x1d\xe1\xa3\xf9\x03S]a\x91\x11\xfbh\xfe\xd0F\xf3\xc7\xa6\xa3\x19W\xa3\x19w\x8d\xe6 \x0c\xe01\x1f\xcd\xd81\x9a'\xdah\x9el:\x9a\xfa\x91\xd85\x9e\x9f\x1c^K\xeaB\xee&\xf8 5\xe41#;\x8c\xcbQ\xd8\xfc\x02\x0e\xe1\xf7\x00Uh\xbd%\x176\xca\xbbo\xc4\xdd\xe7\x82\x88\xda\xf9\"u\xc9\xd9\xfedsb\xa9\xc8l\xfd`\xeb\x9a\xdf\x8f0\x80\xd7\x81\xab\xda\n\xce\xee\xc7\x0d\xc6\xf8c\xf7\x18k\x87g\xd7\x10\x7f\x86\x01\xbc\xed\x1e\xe2\xcf\x1b\x0c\xf1\xe7\xee!\xd6O\xe8\xae1\xbe\xc0\xec\x8d\x9dc|\xb1\xc1\x18_t\x8fQg\xb0\xbaF\xf8k\xc7\xd0N\x91\xf9)\xd90\x9f\x81\xfe\xaax\xd6\xe74\x18\xf6\x12F\xe6E/\x02\xc1g\x8f0\xc9N\xcb\xcc\xdd\xe5\xe9\x01\x9a`\xd5\xb5\xed\xf8U\xc3\xa4_\xd1E\x82#\x0b\x86\xaa\xd6\x97P=|'\x1f\xeaT\xe0Wd\xc0\xf8\xd3\xe7\\\xa8\x8c\xa4\xb9]\xac\x83{\xb0\xfcJDVKC\xde\x95\xe6\x85\x995\x0e,\x99\xc4\xd4\xe5\xac7\xdb\x89\x13\x1a\x83\xdc\x85\x12/a\x00\x1f\xba\x91\xf6\xa5\x0f.H`\xbd\xf4\xa5\xc6V\xab\xb7\xc1{\xa5\x9dF\xc1\xcd))7\xa3/w66X:Az\x05m*\xf6\xb7\x0cZ\xa6\xf8g\x0e\xef\xdb\x97\xf3T\xea\xae\x98U\xbeK\x84\xcf\xd5\xe5<\xc5m\x8b\x7fa~\x12\xd7\x9a\x0b=\x0f\xff\x86K\xf9\xf2\xdb?\xaf\"\xfe\xfdW_\xe5d\xaa;\x03\xac\x16\xe8\xb4F\xfa\xb8\xaf\xc5\x9f\x0b\x91\xcf#!\xf2w\x95\x16\xe6]\xf5\xe4\x10\xfe\xf6\xf0\x907~N\xf2\"\xc9\xe8\xa0\xb7\xd7\xdf\xed\x01\xa1\xe3l\x92\xd0\xb3A\xef\xe3\x87\xefw\xbe\xed\x1d>\xfa\x8dJ\xb7v\xf8\xe5\xf5+ \x97\xb8\xc40\x8e)g>O \x9c\x11\x8a\xc9\x19' B\x94\xfef\xf5~R\xd7yY^\n\xa7\xd3\x9fsQ \xb8\xfd\xdb\xf1\xd7\xbf\xdd\x0e~;\xde\x0e\xbf\xba\xed@\xf6\n\x88\xb2\x84\x94'*C\xddXx\xa6,\xb5\x93\xa7\xa8/\xfb\xe5\xf5\xab#17\xe1J\xe2\xe3\x01r.\xcb\xaa\xd5\xdb\x13\x9b\xe0\xfb<\x9b\x8b\x8d \xdbk\xcfH)\xc5l\x92]\xd2%\xd9%a\x08\x87M?\x98\xa4\xf2\x83\x81\x83F\x8eJ\xe9\xa3\xa9\xa7?q\xba}\x9d\xcb\xcc\x86\x7f\x1at\x85 \x93\x17V\xe2|\x9a\x8d1\xcbN\xbf\xc0\xc6-\xfa\xa5Joi\xdbZ=\xa1\xa4w)MD\x16\x94byZ\xb0<\xd8\x0b\xfb\xc5\"MX\xd0\xbbe\xd2\xc6\x80\xee\x9f\x9eCB\x81\x86@\xfb\xb3\xb8x{A\xcb\xdc7\xb9pS\xc4(\xc3a>R-\x0e\xb8XE\x86\x132\xce&\xe4\xe3\xfb\xe7O\xb3\xf9\"\xa3\x84\xb2 \x1f\xee\x8e\xc2\x11\x0c \xe7T\xe8\xd6-0\xbe\xb37\x12v\xd5\x9e\x0f>\xa9m\xdd^\xb3v\x1a\x1b7m\xb5Z\xc5\xfd\xca\x97\xab\x81\xd0\xd6\x8cD\xca\xfdA\x0f\xb6MO\xc9\x90\x19\x0d\xb3\xfd\xdf\xb3\x84\xe2\xf2\xb4\xa7&S\xf5\xb8\x07\xa5\xe6S\xcb\xb9\xa1r\x17Sr\x01$`\x9a\xb9\"\x82\xde\x92Mw\xbe\xed\x85au\xb7w\x1a\x17\xe4\xfe]\xd3\x18\xaa\xd4A\xed\xae3\x0c6K2Z\x1c\xe3[6\xaf\x9d8]\xccb\xcf\\\x83\xa0\xbb\x8f)m\xe2\xac\x17\xe2\x16J \x07h\x9c\xf3)i\xcf,G\xb6yc\xce \x9be\x93k\x8fF|n\x1b\x8fz\xea\xcdD\xb4\xc7\xc8\xe2\xb3\xbf\n\x9c\x8d!{\x0f\xd2\x80\x99\x8d\x14S~\xec\x8c\xc9I\xa5\x8a\x8d\xe6\xe4\xc7z\xfa+_^b\xf5\x10\xd1\xd8\x96\x1c5\x88\xbd\xeao&x\xbb!\x8d\xf8\x06\x8dL\xfb3\x0f\xb5\xc4k\xfb\xbb\xb7\xcf\"\xe8m\xf7\xc2\x91\xdc\x9f\xa6%\xb5R)\xe6\xda\xd4\x86\x94]\xb5\x95\xb48\xd6\x94J3N\xb8f\x15\xe1\xa2\x9aSN\x97\xcb\xc8F\x1e#\xf5\x91\xd7a\xae\x94b\x96\xbcd^\x04\xd8X\xa0\x063\x8ektL\x9a\xb31\xa5Q\x9e\xcc\x03m\x91~\xc3\xecx\xbd\x13\xb4\xd8\xf4z\xae\xe1Z\xb2\xaay\x0d\x93\xc3\xec\xb4\x82\xd9\xc7\xb6{Yd\xc8\xe3\xe6\xd54ig\x9b\xe8N\xc2z\xfb_\x97;%s\xdd\xb9l\x915\xf7\xdc_9Bi\xffY\x97\xf6\xa5ui=ZK\xbb\xd8ZZ\xbd\xfc\xa7\xf2?\xd5\x83\xb2\x90\x16\x0d\xee\xdd\x0d\xfbO\x96\xd3)\x91\xde\xe2\xd7\xca\x06hN\x88\xd9\x9cfI\xa9\x8c\x92\x99\xc8\x15\x0f\xff\x7f\xf2\xde\xbc\xbbm\x1cK\x14\xff\xbf?\xc55\xa7_\x8a,\xd3\xb4$\xaf\x91\xedx\xb28\xdd\x99\xc9\xf6b\xa7\xea\xd7\xa3\xf2xh\n\x92\xd8\xa1H\x15\x17;\xae\xb2\xe7\xb3\xff\x0e.\x00\x12\x04\x01\x92rR\xd3\xfd\xde\xe3\xc9\x89E\x12\xc4r\x01\\\xdc\xfd\x9e@\x15\xcb\xf2\x13\xf1\x83\x9c\xc7\xa2\xfc\x17$\x0b(\x81p\x047a\x16\xe6\xb0\xc8\xf3\xd5x{{\xe6\x07\xe4:I\xbex\xf30_\x14\xd7^\x98l\xa7\xf4\xbb\xedi\x12d\xdb\xf8\xf1\x16#\x9fRo\x91/\xa3\xd3P\xc4nd\x94\x86\xcb\xf3\xb9A\n\xc7\x90\x1fA\xba\xb9\xe9@\x0c\x9b'`=\xf1\xd3y6\xb94Q$\x157\x97\xa2\xcb\xaeB\x1f\xb2:\xeaq5ED\xcd$\xed\x1f\x94\xb3\n\xc8\x99uG\xe2l\xa2\x99\xa4\x16\x1dS\xe5\x15\x98C[\xd2\x1a\xd8\x12\xc58j\xc4\xca\xca\n\xef\xbb\xc4\xa8'\x14\xd8\xe7\xa4\x1f\xac\x932\x1a\xf1#\x9a\xacB\x19\xcbcf\x1d\xa8nz\xf5#\xcb\xfd\xe0\xcb#\xba\x80\x11\x98\xd9\xb8\xe9/:r\xfa\xb7W\x9b!\xb7\xd0}D\xb3\xc2\xb8\x17[\xd6\x18\xfd\xf6j?\xc5H\xcfk\xb5^\xd4\xb3\xbd\x88\xa8=\xad\xca\xa8\xf2\x84\xc84'\x04\x8b\xac\xc3\x8c\x102x\x06{p\n\x19l\xc1\x1e\x8c1\xf3R\x00'\xb0w\x04\x01\x1cCv\x04\x01E\xe3\xd1$\xa0\x05.\xe5\xda&AKb\xf0\x1b\xee\xa5n\xb6\xa3\x86R\xdb3\x93\xe9\xac\xd4c\xc1\xb0\x8d\xe2:q\xd1\x16\xd0\xd4\xc4\x9eux\x8a\x03\xb75 \xdb\xe5\xdf\x1c\xdcR,h\x8a\xc3\xa3p\x8afOSzb\xc2\x7f\xd1\x9f\x05\xfd\xf9_\x90\xcc\x90Zd\xcfV\xecYV\xacV\x11=\x7f\xf2\x84=O\xf0\xb9\x0b\xe4\xeb\n\x03\x9c\x80\x1fC\xe9\xd8\xe1\xfd=\xe3\xa1\xbf=\x8d\xe8A\\z)\x19\xc8\xb3\xbch\xe5X\xc4EK\xde \xe7\xb2\xe8H\xe9\xde\xa9\x8b\x16\x97\xb0\x8d\x99\x95\xd9\x03\xdb\xacN\xe4\x0b\x1d\xf3y\x1eJ\x91~h\xb2taQ\xaeo\n9\x8f\xc2pQfP\x88\xda<\xf1\xc5E;?/\xe5W\xf3\xd6\xf2f\xd8\x1a\x82\xc5\xf5\xda\xe4\xd9\xc2_\x911\xac\x9aoD\xa07\xed\xcb\xa5\xbfzY\xbe\xef\x8d\x1ef\x88\x9c\x1ew\x06F\x18\xe5>\xb3\xf5\xe7\xb6\xb6\x87X\xbc\xd9Z\xdb\xf9\x8a\x9f\xf4<+\xb5'#V\xd0<\xeb\xdaN6\xb9\xcd\xae\xb3\xcap2\xb1V\x0dg\x8d\xae\x9f\xbf\xf2~\xfe\xca\xfb\xf9+\xf6\xf3WM\xd9\x94\xc7\xfb\xcfl\x8b\xed\x7f\xcb\xed?\xe1D\x87.\x9b\xb3\xadi6,S,d\xf6\x9a\xc7\x99\xec&&z\n~\xb3\xaf\x82+\x11|t}\xbb\xf2\x11h\x9c\xc7\x84\xfeu\\\x1f\x1e\xb3R\xa5\xef\x85\xfc}\xac\x8e_\xf4\x97\x16\xaa0+r\x1ae\xcen\xbb\x14>\x03\x06F\xac\x05\xdf}\xd0\x8c\xac\xd00]\xe2]\xce\x8f\xe1\xb4\x0c\x9e\xa7\x9b\xb0\xb5N\xe0}~\x02\xefK'\xf0\xbe\xee\x04\xde\xef>\x81\x05\xd5\x00'\x80\xa6+)\x0b\x9e\xc7\x8c\x1c]\xe1\xbd\xcb\xe2\xb3\x9e\x02QQpm`2\xe2\xe5\xc9\xe8\xa5\xe3\xb14u\xa2\xc0\xf6\x1b\xe7\xe3\xad\xcfl\x9f\xb2\x15 \x18S\x16\xc6\xac@\x88\x05<\x94\x97\xb0\x86\xebk\xad\xb1\xa2\x98&A\n\x0f\xbc1t\xb4++\xf6\xc2\xac\xec\x96\xfa\xcd\xa0\x16\\U7\xed\x99\x96\xfco\xd2ar\xf4D\xed\xec\x8b\x89\xa7P6\xa9X\xec\xac\xd5\xe44B\xda\xa6#\x87\x8f\x81X \xdb\x89\x95\xa8/\xb1\xf2_\xa5\xac\xe0\xbft\x14\x8aQ\xec\xd8\x8c;\xe2\xb4\xc2=2\xc9\x1b\x9b\xa0\xaf\xe0\xaeI\n\x02\xf2\xc6\x8b\xb4\x1b/(7^\xc4I\xdfH\"}g\x8c\xf4\x9d\xc11DG0\xa3\x1b/\x98\xcc\x9a\xa4\xef\xcc\x10\xd0i\x85\xaa\xa6\xc44\xe7\xb1\xbdj\x9ds\xbaf\x0b3\xfd\x84F\xd0\xf6\xeaQKB\xa2_3\xcd\x92X\x18\x96D\xd8E\xbf\xa2K\x00#\xd5\xfa,\x10fW\xc1'S\xef\xe7\xa3\x19\x00-#\x1ce\x0d]\xc4y_\xa5\xc9\xea\xa2\x1cS\xd6\xe8{\xb9\xe2\xb4\x99V\xca\x95s\x83\x91\xab\xca\xc8\xf5.\x92\xb8\x03\x97\xd3\xac<\xa1-,\xe1\x18\xe6G\xb0\xa4\x8b\xc4<\xa5\x18ZJE\xb27.,\xcbEL{9\xa1\xfd]\xd2_\x97V\x89t\x03\x13\xb5K\x81x'\x9f\x82\x08\xae\x12\x80w\x1d\xf3\xd0\xb1\x19\x85xC\x17.\xbb\xb9\x1f[\xb7`\xa2\xdd\x82a\xb9\x05\x13\xc7\xe5 \x10\xc1\x87cH\x8e\xc0\xa7\xd0\x0c'~}\xbb\xf9\xe6s\x0eQ\x07vU\x01r\x88:]\x16\x7f \xf3\x8d\xb8r\xb7\xab!\xa2[\xae~\xfe\xcaq\x84\xdaq\xf8\xe58B\x8eJB \x95\x14\x0c\x95\x14p\x0c\xe1\x11\x14t\\\xfe\xa4h\xa2\x92\xc2\xa4E\xe2(\x8cLrC \xe3^\xca\xda\xf6\xd2\x17r\x97]H\xfb\xc9NV\\\x08\x9a\x91 \x89\xa7e\xd7\x9c\xe6V\x8bM[\xad\xc9\xe6\xb6o5\x90\xa1\x8b\xe1~\xe5H=\xe5\xbe\x9b\xb1}G\xb1jP\xee;\x8a\x9cW\x1c9\x9b9T\x81N3u\xef\x05.\xcc\xca\x99G\xa4\xb8\xf5\x8c\x02\xc5\xa6\xe3\x08&\xb3K\xfa\xcc\xa9v\xa1\xdf\xc6s2\x8bi\xe3Nl\x92\xe5\xa0\xc5\x8a\x0fNs\xf5\xea\x0f\x98l\x9d\x9d<3\xd3\xe7\x92\x05\x8bb\xb7U1\x060\xae\xbdk\x9eK\xb1\xa9\"\xb4\xd1\xd2r\x15\xb5:G\x97Z\"\xee\xff\xa5\xd3\xfe\xb1\xc7y\xd1~\x9cO\xff\x87\x8e\xf3\x9b2\xcec%\xffi=X\xbb4\xebK\xc4x7-\x18o\xd9\xb5\xeb\xe9)\xbdTw\xfd\xc2\x85\x9b\xda\x89\x8b\x1c\xe2M\xf7Y\x0b=%J\x9d\xc6\n\xed[u\xd5\xdc\xaa\x95|G\xfeT\xfc\x925\x85\xcc~\xecQ\x8a\xa3\xed\x1f\xcb\x9f\x8c\xc3\xde\xf2\xb3,\x9cWl\x92\x1d8p\x1e\xc6\xd3\x94\xc0y\x92.\x8a\n\x01\xfdk\x14\x06$\xce\x08\xbc{sQ>\xfcq\xbb\xfc)tR<\x8d\xd9\x9c\xe4\x92)\xd7\xf9\xdd\xf2:\x89\xb2\xa6\xae\x8a\x97\xae%\xb9\x94\xbek\xea\xae\x1a\x1fp\xcb\xca\xbb7\xd9Y\\,\x19\xda9\xd2\xc2\xcdH\xc4\xe8=\xa9pS\xf3\xe6\x18\x94Z\xc3\x89\xdcp\xbb<\xba\x83\x85u\x93\x7f\x1d\x98|\x11\xc9\x04\xb1\x8e5%\x96\x0b\xd6\x1e\xb34\xd4\xc2\xee\xbd\xbf$\x99M\x9c\xc9\xe0\xb2\xb5\x0355\xf1\xef\x0fL)<8\x82\x18\x8eaH\xffR\x84\x97O\xac+\xba\x15X\x0f1\x0f\xd3\xcb\x85\x9f\xbeL\xa6\xc4\x8e\xd1t.\xd6\xf7\xd7\x1a\x0cG;\xbb{\xfb\x07\x87O\x99}KK_s\xc5\xa6\xadK\xc4\x95\xabq\x84\x00$\x0b5\xab=\x8c\x8bXw-I\x91\xe8\xc9p3\xb4\xb6\xb2\xd2\xb6\xc2\x94\xd7\xc4\xbb\x9aE\xfe<\x83'PPZ\xe5\xa5\x1f,\x08K\xa5@[\xd1\xcbxo\xcaLG\x154\xe8\x17)\xd1$\x80\x06\x11\xa7\x82%m\xc2\x82M\x9c@\xc6\xb2\xb8\x02\xed\xe7\xb55!zV\xed\xea\xc3Vm\xfb\x0d\x8fx\x1fO\xc2\x8e8\xea\x19\x02\xddw\xbc\xabi\xb2|\xf3\xaa\x9d\xa2f\x16\xb2Z\xaeN\xbepTGU\xd4\xd1\xe4\x08\xa1\x91`P\xfa\xf3\xf0:\n\xe3\xb9Yy..\xda`d'\x94\x8b\xecjP\\3\xdbw\xa1\xcd\xa3K\xbe\x02\x9e\x91FC\x08\xa8\x97Y\xe7L\xaf\xd4\xb6vF\x16\xed\xa7\xb1\x98A5\xdd\\\x12bi\xde\x9f\xe8\xd7\xe6\x9f\xf4\xdf\xeb\xb6\xc0\xb4\xb9\xb5\x19\xd1\x9aU4(\xbd92\xec~&qa\x96\xd7\xb0\x81%M\xc4\x03w\x7f#\x98\xda\xdb[\xf9)\x89q\xc3:\xb2vA\xb3\x01p?U\xc5\x0d\x83\x83jI\x91\xd2U\x11\x87q\x84U\xa4\xde*Y\xd9\x8e\x83\xd8\x8a\xf6Y\x98U>y\x02+z\x96\xaa(E\x90\xac\x7fj\xb6%\xb8\xe3\xfa8\xe7$\x7f\x19%\x19\xc9rq\xc6\xbcN\x93%\xed\xf2\x18\xa6\xaeZ\xb4Y\xa6\x9d\xfc\x12\xf4\xfeT\x1b\x97^\x82 \xca\x0b\x99I\xba\x84\x13y\x18\xc2\x9c\xfb\x87\xd5\x81\xd8\xe8\x1c\xfd\x86vLt\xb2\xabsa=\xfb:\x91Z\xc6\x98\xcc\xd6\xce\x0e\xba\xf2T\xcf%7\xba\xf2Y\x07\xa7\xc3V\x98T\xdc\x11V\xf7\xa4\xaa\xfb#\xae\x13\xd4\x8f\xda\xd6\xce.\xb6\n'\xf5\xb7\x86v\x8e\xca@\xfcl\xc5\xe4b\xc5\xe01!\xf7\xdd\x08\x7f\xa9P\x1b\x84W) \xe8\x96\xadvl\xc3nD\x14\xe1KC!ub\xf9]\xafe\xd3\nf&L\xe7\xd1\xb2\xe9\xc9Y\x1b.\xdd/E\x14\x19\x8d\xa5\xf5<\xf8\x02\x9f\xaa\x04\xa4\xdc\xc5\xea\xb0\xac\xbeR\xce{\xe6\x1d9\x06k\xe4\xedy{\x96\xaeMM\xc0\xe6\xab+\x86\x01\xe8\xdf\x13q^~+);\xd0\x19\xe0N\xac/a<\xa5|}J\xb2$\xba!,\xf7Z\x9ca\xae)z#D\xc8\x1ff\xf4n\x95\x92i\x18\xf89a\x9f\xacR\x92\x91\x18\xcbq\xf3\xffs\x9e\xec\x8de}{\x1e\x85~F2\xeb\xb2I.O\xac,\xf0#?\xc5\xb2\xe4\xd7\x82\xc4\x01~\xb7\xf4W\xab0\x9e[\x97\x1d\x92\x11#y\xe5\x82__ \xe1\x8c\xe5\xb9\xc8\x85'\xac\xcc\xe1\xe6}\xc3\xb4\xd3Z\xb6x\xd8 \x0f\x9d\xc1?\xcc\xd0w\xb7b\x1bS\xfb\x87\xcf\xf1\x978\xb9\x8d\x81\xa9.\xc0\xfa\x81\x13\xa8?X\x10f\xb0$9%\x80\x90KD\x03oHf\xac\x0cae\xfe\xf6\xfc\xdd[\\\x04\xde\x0f\xcaju\\\xc8\x17a\xe6\xe5\xfe\x9c\xae8~G'\x0f7:\xfe\xe0\xf1\xed\xf9;>\xa1\xf8Z\xfc\xbe\xbf7\x8b\x96@b\xd3\x15\xb3\x07^c\xb9.\x98[Ky'\xd7\xda\xea*\xa1\xad\xb5Z`,\xbctu[\x1fO\xb9\xf4\x18f+\xef\xd4Q\xf35\xc9\xc7-\xee\xea\xa5\xe4\xc5\x8a\x05k\x0f\xeae\xe5\x85\x8c\xec\x1cs\x1e\x95\x9f\x96\x1f\xf8B\x9e%hB\x8c1 \xaf\xb7\xb8\xaf\x08'\x9e\x90\xcb\x9eK\x93^\xfe\xa4d\xc6LR\x9f\xc6\x82\xf2\x1d\x17\xf8\x92\x0e\xab%-\xd6\x95ii\xe3Rc\x0b\xbb\\\x82b\x81W\x165\xf4@\xea\\\xd9\xbdx\xf4\n\x85\x8dvG\x8em\xdd~\xc9\xd4\xf8j\x8c+\x1f\xee\x1b\xd8\xf2\x1d\xc7cR\xdd&s\xaeM\xdc+\x99\xe3\xda\xfd\xfc^\xf8\x02G\x91\xdb\xfd=\xd8\\\xf6\xe6\xd3\xd9\x0f\xc5C\x1f\xf5\xb0cH\x1c\xdbb\xfda\xc6`\x92\xb3\xd4\x83\xe3ey\x82\xa9\x92\xd3>\xb0\xd1#\xfd\\\x0e\x15_\x0f\xdc%\x80\x19\xda\xb1\xbd\xb7\x7f\xa8\x06\xacO\xf8\xab\xa7CG+7\x08\x8dC\xef\x1f\xa3\xde\x10\x9f\xfe\xe1O\xcd_\xe5\xbel\x13\x89\x0bmD\xdb\xc1\x00\x1c\x81\xab\xf6}\x15\x11\xa7\x17\x81)\xce\xf1\xa5\xf0\xae\xfa\xb0\xb3Y\x90\x08\x05S\xb0Gz\xa5,_\x96\xf1}\x88!\xe1\xcc\xef\xfd\x8e`*\xed1\xd8J:\xb5`bH%\xeb\x19\xc1\xbck\x98\xe3\xa6@\xd5u-\xef\x1a\xe3V\x18%[\xb0\xbcj\x94EbHW\x8e\xa4\x9e;G|\x9c\x06\xe6\xb5_`\xb7\x90\xa7\x16\xf3\xb5\x88\x0e\xa0_\xbe\xaf\xee\xa0t\x1b\xe8\x18\x9bIi\xc6\xb2\xf64c\xd0\xb3i\xe0\xcb+\x14(\xd67W\xa7\x1f\x9f\xf6\xa9\xe0\xa1\x1a/\x1f\xd8\xea\xd4\xd0\xcd:\x91\xb7\xd0\xe6\xfayN\x96\xab\x1c\xf2\x04\xa6\x84\x1d\xf5E\xca\xbc\xd9\x84\xbdni`\xa0*\x03\xaa\xcdl\xf7\xa2^%:u\xbf\x1d\xc9\x0f\xf7\xb5H~4\xfc\xbf\x16\xc9K\x07\xa0^\x1c=\xdc\xd3\x82d\xf7\xa9F\x1a\x1d\xdb\x0d!u\xc1\x1e\xab\xa9M\xfaz]\xa3\xf2\xc1\x05f\xbd\xb2\x02\x0c\xe0\x0d\x99\xf7Z\x8f\xaa\xa6e\x81\xbf\xe8\x0b,\xca\x02\xe7\xfa\x027e\x81\x8f\xfa\x02\xcb\xb2\xc0\x0b}\x81yY\xe0g}\x81;8\x81)\x9cB\"\x92.\xd1\x99\xe5\xd9\x97~7e\x11\xbb\xc6h&\xa5\xb6W_\xe8\x8a\xd7\x9c\xc2\x18\x16\xf4/\xcb\xecd\xa7\xbc\x95\xdf\x1f\x9c\xaa\n\x03\x9b\x8f\x9a\x9ei)\"\xca\x1d:1\x98\x9a|\x03\xf3\xe0^)\x11\x8a\xae&\x11\xd3\xb1\x14\xf6\x1d\xaa\x7f\xe8h(\xb1\x1d\xc0)\xbe\x841\xaa\x81\\\xb8c:!\xac[k\xbf\x85\xa5O\xb14\x8caI\xcb\xd1JB{\x86&yc\x98c\x07\xb0\x9a\x13\x98\xc1i\x07c\x00\x12\x83_\xd1\xb8z\x0b?\xf9B\x96n\x11f\xb5x\x1e]\xe2\xd3\x0c\xf3#\x83\xad\xea\xd6\xba\xbe\xa3W\xe0g\x04\x06\xe3\xcerP\xb7\x8f\xd1L\xa1za\xcd\xc3\xf5k\xb6u\xf8\\\xbd\xb0\xf2\xd1c*\xd7\xc60\x92\xaf\x0ea\xb1Z\x996W\x99\xb8\xccu\x95b)f5C\xe7\xdc\xad\x94\xa3\xfa\x1a5\xdau\x90\xc4\xa1\xd5\xfebr\xd9r\xc3\xea\x02\x88\xb3d\xd47\xca\x86\xa8N\x91\x19\xae\xfe\xd7\xfc\x0d\xaa5]\xc0of.\xfb\xcc\xb6\xef\xbc\x1b\x96\x14\x1b7^u\x87\xb8\xc4a[n\xe6r\x8c\xf4\x89~sM\xff\xdb\xb8\xa6\xaf\x9e<\x01\xdf\xbev\x01\xab5\xa7(\xc9\xbc\xd7\xcci;\xf3\xfe\x02'0\xa2?\xce\xe1\x04v\xe9\x8f\x8fp\x02\x87\xf4\xc7\x0bZf\x9f\xfe\xfa\x19N`\x07K}\x86\x13\xd8\xc7b\x9f\xe8\xdb\xd1\xa1[\x93\xb70Q\xfc\xbaR09\xeeT\x85=n\xc3x\x9a\xdc\xd2!\xb1_\xde;\x0c2q\x82ZL8\x15\xef\xc7\x86\xcf3\x12a\x10e\xfaW\xfd\x14\xdf\x8dAL\x84m\x89\xd9^\x84\x99\xe5\xc8\xa6_Zq\xdb\x9c\x8b\xdb\xe6\xdf(n\xeb\xe2\xbc\\~b\x8f\xf6\xd5\xd3\x16\x03\x81\xd1S\x9eE\xcaN\xeb\x9cT\xda\xceI\xa5\xa6e\xa1e\xa0\xda=\x1aPBEx`\xb0\xb0\x96\xd9(w\xb5\xc7\x7fT\x901h\xd4\x83\xa44r\x1ak9\x9b \x89g\xe1\xbch)q\x9b\x86\xb9x[\x1f\"\x86\xa0g\x07r\xec\xd6T\xb1\xd0=wfym \xd1\xd8\xde\xdb\xd9Q\xa6\xa8\x9a\x91Z\x7f\xf4M\xeavH\x8d\xfb\xd4\x8b7\xe3>\xfd\xff\xc6\xb5\xa7\x8e\xeb\x8f_z\xe52j\x17\x15\xd6\x94%\xc3#\xc8\xb5\x860\xb9\xde\x10\xe6F\xcd\xd4\xa0\xb5NoDr\xeb\xb0\xea+\x0dUx\x8072I/\xb9\xf7\x94\x89\xe3\x01\xbd\x89\x00=\xa8\xde\xef\xef\x0d\x06\x07\xec\xfd\xfe\xde\xde\xce\x1e]I\xfc\xd7\x13`\xf2&z\xb7\xaby.*\x1c\x94\x95\x1d\xb2\xe7\xc3a\x95]J\x14\x1a\xee\x96\xa5v\x86\xb5\xcf\x87\xa3\x83\xf2\xd5p\xef\xa9\x03<\xbf\xd63\x18\x0e\x87\xbb\xc3\xe1\xd0a\x97\x04\xd3&T4\xbe\xba!\xcf\x02\x87\x9d6\xa11\x8a\xfe\x18\xc06\xc1\xb6 l\x9d`\xf9}\x07\x9e=\x83\xa1\xca\xbe\x8b\x8b\"\xbf\xbd\xfd\x9d\xd1\x80~5\x1c\x8cv\x10&FM\xaf\xce\xac\xb6I\xf5k\xd1\x9a\xeeS\xad)\xf8\x0dw6\xdd~bO\xfc\xad\xdf\xfe\xe5\x92\xfe?\xd8zz\xf9\xfb\xd0\xdd\x19>8G\xdbs\xc5\xe0\x8dR\xc5\xdb\xff\xf9/\xb6}:\xfe:\xf1\xb7f\xbc\xf0\xe1\xc3\xfd\xa4\xfc\xe98\xdb\xcaW,\xe7\xec\xeep_+\xb4n7\xc5R\xc4\xa5|\x88\x89\x1d\xf0\x14\xcc\x01\xe3\xd0w\xf6PO\x92{\x01\x1f\xf1\xf3\xdc\x1e\xe0\xb2\x88Dx.F\xabc|\xab\xaf\xcc\x946\x9f\x0c/\xeb\xb9\xaf\xe0\x140\x80\xea\x9b8\xb7\xf3\xd2D\xcf\x85\xe1>\xa5h\x1a\xaf\x86\xf4\xd5\x00\xe3\xb4\x16v\x8cD\x8f\x01\xcc+\n\xb8\xc9\x93\xe3g\xd6\xe5v\x1d8S\xe9\xcd\xbc\xfe\xaai\x02B/\xeb\x895\x06\xeb\x89\xbf\\\x1diB#[\xc7\xf86\xca\xb5/\x9f\xe1\xcb\xb9\xf6\xe5\x0f\xd6\x0f\xf4\xe5\xafE\x92\x1f5b\xd15\xa7\xed\xc6\x88S\x16\xb2\x11\xb6\xac-\xe0V\xba=\x84x\x93K\x06a\x86\x1eK\x9a\xc1\x85\xe1:\xfa\xe0\xd6dVR2Lq\x0c\xe6z#c\xb4`\x149H\xf8W\x06\xe6\xbeKum\x0coH/2\x89/y\xe4\x1bm\x19]\x0c\x91\xfa<95Z\xdb\xc5l\xc0=\xd2\xe9q\xa0[\x1368\x8e@.y\x04\xf3V \x11\xff\xb4q<\nSW~\xbe5\xcd\xa9\xeb\xdd\\\xf8xN\xd3\x9fE\xcc\"\x1d\xbek\xcfgWJ\x1e\x84b\xd4\xfa\xe5\x17\xcb\x81c\x18p\xcd\x16)\xe3,\x86.X\x7f\x1eZ\x8e\n\x99\x9f\xfc(\x9c\x9e\xc5y\x98\xdf\xbddf(>}\x81x3\x99\x92\x8fI\x88j\xea\xc2e\x9ajZ\x17\x96\x0eI/A\xb4\xd4\xb5'\x86\x9ee\xae\x9c\x18\x08\xbb\xc5\x06\xff\xd7\x1c\x03\x84w\xb6\xb1\x12I\xd80\"\x83\xa8v\xea\xc2\x8d\x0e\x19\xb51Ak\xc9\xd8\xa5\xa0\xd6U\xe0\xcbS)\xc1;\x8c\xf5\xf2\x98\xae\x1e\x19E\xeb\x0dn\x8f1K\xfb\xeai\xcbD\xeb{\x87Z\xd1\xfa\x81Z \x13\xad\x0fGj-\x8f\x93\xad\xbb\x92\xf4\xdc ^_t\x89\xd7o\xba\xc4\xeb\xcb.\xf1\xfa\xbcK\xbc~\x07'L\xb6\x8d\x923.\xe3f\n\x13!A7\x8a\xbc\xcd\xa2\xf5\xc5\xba\xf2\xf8+8\x81kI\xd8G\xbf\xb9\xae \xff~\xd7\xa5Q\xaaD\xechY)\x89\xd8\xd1+\xd3f\x82v\x14\x91\xdfA]\xd0~\x87\x82\xf6S\xb8\x831\xc4\x0eJ\xd4\xe9\xb1\x8c\xc2\xa5\x00\x8fp!&G\xc9\xb9Q\xa0X\x98\x04\x8aw\x8c\xc4\xb8c\xe2@!2\xfc\xec\xb8\x80\xb2\xc2\x0d\x9ee,\xe4\x02\xc3\x15\x06\x08\x10\x02y\xf1\xd6\xbe\xe2\"G\xa301\xf5\x02\xa6\x9eJ\xdc\xffi\xc1\xa2Y\xf5\xa5*\xb3\xb8\xeak\xa0\xaa\xc4\xf8\x06Uw\"\xdd\xa0\xdb\x96J\x00\x15\x9a}hP=\xdc\xf0\xa8\x01\xdc\xcc&\xc4\x1c\"\xda\x85W``KtM0R\xdf<\xf22*\x95\xed\x82\x85\x11\x15~\xec?\x9c\xa0\xe1\x0coH\n\xba\xec\xbb%\xf9\xe4\xa0U\xcd\x0f\x0e\x8fF\xf6\xactu?\xde.}\"\x9e\x19\x03\xfe\xaegP\xa7\xf1X\x8b\x99\xea3\xb7\x0b\xc7\x85\xd4N\xbd\x8f\xb0 \xa9\xf7\x1a~\x84\xa4=\x02\x83\xe0o,\x0b&\xe4\xd2\xa6c0\x02)gF\x03\n\x05}\x7f\x0f9w\x88\xa3_K\xd9\xe0\xeb\xc3u0 #\xc6O\xae\xb15\xddG\x15\x8e\xba\xeaU\xdc\xc3\xfa$_\x84\x95\xd1\xfa\x83,on\x9a\x19\xd0\xfab:\x0c\xa3\xb4\x1aq\xd5\xc0\x05r\xe3G\x8em\xb1\xc7U\xf5F# \xcd\xb1Y\xc9\xdc\x11\x93\xb1[\x1d\xaf\xf6\x9d\xa4\x905Q\xe3S\xdd\xe6\xfc\xfe\xa2\xc6^\x9e\xb37\"\x19E\xa3\x01\x91xb\xacMT\xb1\x08\xb3SV\x160\xf1\xf0j\xb9\xd0\x84\xe7C\x91\xd89\xf6\xb2\x15 \xceIDh/2\xcd#\xbc\xfb\xb7,i\x15\xf7\x89\xa3\xcc\xf4\xad. \x8e\xb8x\xa7}\xbb\xa0\x0cmi \\\xd7\x1e\xd25\xa8XH\xff\xfe\x80\xb1lb\x9d\xa5\x80|}H\xc3\xb1\xc6\xdeF\\\x0f\x18\xd5\xd3\xd4l\xeeB\xd8\xf7x\x85j0\xe2\xd4\xb8\xf5\xd3\xd8\xb6p\x95\xde\xa6\xfejE\xd21\x04I\x11M\xe3\x1fr\x98\x13\x16\x17\xd4r\xdc\xa6\x9fa\xb3 \xad\x17\x99@dt{\x0c\xfe\xa1\x86\xf4\xcd\x86[\"\xe3\xf2\xcdGiZ\x7f\x15\xaa\x9bO0\xae\xcd\x944\xcc\xf9\xae\xbe\xc9v\xbc\x81g!\x8d\x9fW\x0c\xdan\x17\x13f\xe6\xfe\x0f\x9d.\xeeU\x1d\x15:\xc1\xa7h\xe3\xcf\x08\x91J\xde\x8eqCE\x02l?\xe6\"\xf7\x0d\xc3\x88\x1f-R\x1c\x1d\xa8RBLy\xd1\xe4\xd1d*\xa0\xa4\x06\x18\xda\x96\"\xb2\x887M\x8e*\xa5\xfcb\xd2\xcaQ\xea\xa1\xa7\x0f\xcf$\x8f\xa6\x1f\xaco\xfa\xc4V\x16\xae\xbdL\x03[\x03\x03\xed\xba\"\x0d[s\xa9tx?\xd6\xfc\xb2\xdb\xcc\x7f\xae\x8b\xf9E\x92D2\xb3\xd9\xab}I\x90\xac\xda\xa7\x0b\xab\x1bu1\x84\xdcv[uZ\xf2+k\x80\xfa\x99-\x9f\xb23\xa6\xf1\xdc\x95\xa2\xe6\xd4\x0b\xab\xd1s4\x87\x13\xba\xb4\xa3\xeb1\xda\xe8P\xb4\x8a\xe4Qj\xc7\x8ekN\xdb_\x1e\x0d\xa2\xdaZ\x89\x1a\xe1\xfe\xd0h\xcf\x9a\x93\xdcb\x91j\xe8\x9cg\xe2\xae\xb9I\xad\xe7A@\xb2\x8c\x9e\x7f\x18\xab\xb9X\xd19#S\xd36\xb5\x90d\xe1u3\x86\x8c\x99\x87\x95\x0e)kn\xe4~Vb\x0dw\x84\xb5\xac\xc4\x1e\xd7\xa4\xbab\xbe\xa5\xc9N\xb7a\x83\xcb\x81\xce\x88,\xb6w\xf6v\xb5\x8a\x91}Uz[\xf0\xe2\xaa\xe7\x02J\x9f\xecCu\xafD\xac\xd1]u\xe4L\xf1\xaf\x96\x9ei\\\xadV\x18\xb0\xb3\x0eS\xb4L\x9b\x93\xfcc\x92Dd\xaa\xe6\x87Xh\xe4\x1a7%2)\x1f\x97'\xeb\xb2\xc1\x1d\x9cy\x98\xde\xea\x13 \x928\x08#r\x91\xfaq\xe6\xb3\xd2O\x9e\xc0\x0d0'\xff\xe1h\xc72YOP\xeem\xa2l\xdb8\xccY6\xcfq;\xe3\xc5<]\xc34\xbf+i\xdb\x8ce\x18\xc3\xbc\x18\xecX\xae}\xa5\x88\xa54\x82\xabu\x1a\xd98\xa9\x9a\x81S\xb0g(\xb5\x0d\x08%\x19\xcd\x9f9.\xdc\xdaH\xfe\x95\xdf\x9e\x18\xc3\xb0?\xa8t\xe6z\xc0 \xfc(\xba\xf6\x83/\xff\xbb \x05\xf1R\x92\x91\\\x11{<\x16\"\xf5\x9a\xe3$\x0fgw\xcf\xa3H\xad\xbd\x1a\xc8\xa5nI\xdd5\xe3\xff1\x1f\xe7j\x98\xd2\x9a\xb2\x9d6\xb8\xf2\x95\xebj\xfa\xd7\xd8\x07\xa2\x19\xcd\xba=i[\xd5R%\x1b\x83v\xdb\xa8\xeb6\xe35\xe2]-\x93\"\xce1\x15\x06lA.\xdf\xb7V{\xd5F\xdej\xe1\xa2\x88G\xeb\xab\x96\xc5\xfe\x18\x8ev-\xc4\x9c\xe2\xb9C\x7ffI\x9a\xdb\xd7\x8e\x0b\xab\xcd\xcdz%Ud\xba*\xaca\xce\xa3\x1a6\xd7\x0b\x17tR\x04:\x9b\xc4\x06\x0fQ\x1f\xe7\xe8jE\xe2i\x18\xcf_\xf2\xd9\xcb\x9a\x0c\x1c\xba\x156\x0b\x96\xb3_xQ2\xbfHVo\xc9\x0d\x89>a\x88'c\xa0\xa3\x1b\x1e\xbd\xd6\x90\x9e(\xf4\xae\x82\"MI\x9cs\xc6\x0c\xf3\x89c\x9e\x03?\xc8E\x1b?3\x16\x0b\x8f\xe4\x88\x8d\xa2\x11g\xcba\n\x03\x8be\x03,VS?',\xb8WD\x97\xd4{\x7fI\xe8\xaa\x14\x0c\\\x1e.\x89\x9dt\x19\xab\x00\x87F\xe6\xadH:K\xd2\xe5g\xac\xf7\xcd\xec=\xa1\x84\x85\x9f\xde\xd9\xa1\x8bF\x0d\xcd\x85\xcct\xa7 *n\xa5F\xcf\xe2)\x8b\x0c\xae\xe7>{D\xbe#\nf \xf1\xaf\xf4\xaf\xedO\x82K\x97\xef\xc2\xe2:\n\x03\x11\xb8\xc6V}>\xfe\xd4\xfc\x95\xd8\xb2\xdf\x19D*R\x9c\x93\\\x1a\x1b\x9f\x90\xac\x03\x8d\xf1\xad8oC\x87\xc2-4I\xfb\xe0\xc4v\xb4\x14z)\x89\x88\x9f\x11\xbb\x89\xa0\x1c\x03\xd6b_\xb6!\xa4Z\x9d\xba\x99\xee@v]\xa1\x86\xf8\xd2\xea&\xb6\xa1\x02i$\x16$\xcf\xd1\x89>M\xc6N\x88\xc2-E\\\xd0\x93\xe2\xd5R\xa1k\xd6\xf3\xa7S\x8a\x9c\xc3x~\x91\xd8w\x8a8\xef\xb6M\xcc\xc9\xa3\x0b\x95h\xf1\xfe\x1e\x16\xc6(Y\xb3\x0e\xb7:\xa1\x88\xbb\x93\x8f\x1c=\x86!b\xf0\xf6\x95HKO\xd7\xc2]9\xad\xba\xd4v\xdaN\x19{\xc3\xa8<}\xf3\xe2\xe4\xd0\x04\xb5\x03-\xfd\x08\xb9|\xd4\xd7\xd6tWG\x8d\x82\xa4\xb3\x06/`\\\xed,2V}\x81^Sn\x8cL\x19\xee\xcb\x9a\xeb\xb4\xcc\x17\xd3\xb2`\x97t,7^\xbd\xaaf\x05m\xfb\x84\xe3\xb9\xcf\x1c\xb5\x97\xe75\xd1\xdbP\xf2\x16\xc3\xec\x05m3\x8c\xe7\xbcQFFb\xa0\x81\x9c\x0b\xe8PZ\xe0]\xb1C\x03\x8b\xbfGm\x08\x17Ji^\x9c`N\xbc!\xd2\x98\xdaQ\xb5\x8ed\x16\x15\xd9\xe2\x85\x02\xd5[\x85\x19\x8a)G\xceT\xca\xcd\xe5\x88/\xf5\xf3g\x16\xb1\x88\x8b\x94L\xc3\xbe\xe5\xb4\xe2>\xbd\xb6\xb0I^\xb0\xfe\x08@\x9f\xe7\xa9\x9f\x93\xf9\xddz}9\xa0}\xd1gOQ\x00\\\x92T\x87\xf8\xc95\xdd:\xbe\xf2Es\xda\xc5GO\xe9G7\xfa\x91\xb5M\x9a\x9f\xf9\xab\x1e\xa9T\x03[\xb3\xe6\\N\x97\xf0[\x8f\xd5\xf5\xd2\x8f\x7f\xc8\xc5\xb2\x06?\xc6&@\x1cP\x10\xc6\xe0c\xe8E\xf25\x87\xdb\x05II\xc1\x87\xe2c\x08\x85\x1c\xaeI\x18\xcf\xc5\xf6\xf4\xe8\xb8\xa6%5\x80\xfds\x19n2\xb2>z\x81\xd6\x19>]C\xce\xb0\x11\xdb{C\xc7l\xb4\xc3q\xc0\x01\x9d!\xbd*\xe9\xf7\x07\x17,\xbf\xa1B\x02FytP\x06r\x13]s\xeaxU\x9c\x8c\x87G\xa84\xc5\xd3.O9\xcc~@\xc1\xf2T\x17\x1f\x07_\x8d\x86\xea\xab\xd0\x14h\xa2\xd4b\xa0\xcd_\x861!\xe4\xf7\xa5\xf6\xa4\xd3[^\xc8tUSWz=@\xd7\x8e\x95\xf5\x0b\xdd\x1d%U|\xaf$\xe5Q\xcf\xe4\xd7,\xe2i\xa9\xa0\xa9\xcc*O\xab1\x8e\x0d]]\xcf\x83\xe8\xbb*D\xc4/\xd9;\xb1\x1b\x18\xd2\xac\x9d@hW\xfa\xae\xd6)\xe3\xfd\x97\xc3JR\xe8H\x86\x00c\xd4\x03U\xddk\x9d\xc3\x7f\xc4\xfc\xad\xd1\xf7\xc7oG\xb3\xd4\x93\xb3\x97J\xc4O}S&\xfc\xd6 \xd0\x9a^Bgx\xfe=\xc6( T\x0d\x86\xe6\xaa\x84\x94\x0bTu\xf2T;\xb6\x9f:.L\xaci\x98\xad\xe8\x01\xf2\x12=\xa9-\x17\xac\xab\xdcOylVz\x1b\xfbyx\xc3\xfc+1\x96c\xf6\x8a\xcd\xf7\xc7\x94\xd0gd\xca\x9eRT\xee\xcf\xd1\x08\xee\xa5\xa94B\x1f\xca\xdd%j\xd8p\xdf\x18K\xdb\x10\x1d\xad4\xfb\xd3ft\x03\\\xd4\xa7\xd8i\x96\x01\x8e{\xe3Y\x0c\x00\xec`\xf0y \x8f=D\xc5\xecX\xfa&\x9e\xf8\x9a\xdc!\x0d\xe8\x08Y\x1d\xe6B\xf5\xd4Y\x87S\xdd\xc31l\xb08\x8e1\xb7\xde\xfb\xa9i\xbc(i\x84\xbd&\"\x80\x13\xa0\xdcU\xd8\xb0\x9aR\xf6\x1bZY\x89\xc8\x9d\x1a\xc4\x81<\xb1\xbe\xfc\x9f\x9acN\xedL\x96\\\xd5\xa7l\xc5\xfa\xf6J\x9c\xea=$L\xcdAmh&\\H \xd4\xd5\xda,\xc9t\xd5\xc4\xabw\x05}\xa1\xea\x8fl\x87\xd9\xf8a\x88\xcc:7#M\x08\xafM~r\x02h\xadf\x9e\x95\xc6\x8c\xb4r\xa7Y\x9e\xac\xa4I\xe9\x00\xda\xfa\x80P\xeaGH(\xcfZ@\xc1\xb0\xea\x0bD\xbd\xbc\xc2\xda\xa3\x13\xa6\x80\xee\xbd\xb8:\xc1\xb1\"i\x86\x99\xc4\xbb\xd7N\x98}d\x85\x19\xdaj\xb4\xd3\xd6\x8c\xfc\xadv\xbf\xd4J\xf7\x96\x9a\xd6\xa6\xa7\x07\xae\x84z\x0c\x0d\x96\xd1\x0c\xf1\x0f\xd3\x84k\xa3\xd3\xeb\x94\x15\x95\xd0\x9aebB\x146\x89//\xb5\x12\xd1j_;.dU\xe7\x98kc\xe6\xf9\xc5|I\xe2\xfce\xe4g\xbd\x1dNd\xb8\xa8\xbe'5\x1f.\x84\x8d!b\xda\x0d\x8fn\x10\x93[\xf5\x18J\x99\xec\xbf\xfc\xd0\xa9\xdda\"\x16\xf9A\x9d\x98\x06\x8c\xa6.\x8f3E&\x18\xfbR>f<\x9e\x8b\x98\xa4\x19\x908H\xa6a<\xafgD\xc8\x17$\xc6\x8d\x87\xc9\xd2\xca\xc3\x0fD\xe0\x17\x1fx\x03\x06e\xb88c\xb9\xc1@/\xd57\xffF\x18\x19\x18\xcc\x04\xf4S\x13\xb5\x88\x85\xc0\x0cCC\x8c\x9b\x1f\x84}n}\xdc<\x9b\xa6\x0f\xac\xa2\x16gp\xbd\x03\x1d\xae\xdb\x17\x0c\xdb=y\x82LO\xb9\x1e\xe4w\xcdC\xbe\x85P\xc3\xd0>\xde\xf5]N\xde\xf2l\xdd1FWA\xcf\xf3\xea1\x1cWv\xcb\xeaV\xfd!\x99\xcd2\x92\xff@\x97@R\xe4\x90\xcc\xe0:)\xe2if\x9a]\xb5MZ9l\x82\x8d\xb6\xfd\x03\xc7\xd8\x0e\xdbs\xfd\xdb\xc9\xeb\x99\xd1\x99!juO!\xd5@\nuE\x80\xae\x08n\xe0\xb1\xee1\x05\xb3\xbe'\xad\x88)oCD\xb4\x00\xcf|\xd8\xbaU4J\xe2\xda\xec\x8f\xf5\xde,\xdd\x04\xa1\xb84\x9f#@\xcb\xe8\x0e\xf7\xf7\xcc\xed\xde*\xf2\xd9a\xdb\xd4od^\x98\x9dq\xbca\xc7\x8ei\x13 \xd4bIh\x83\x1d\n\xac+%\xee\xd1\xed$\x90\xce\xd3\x01\xdc\xc3\x82M\x9c\xde\xe2\x10\xf8\xe1\x8a\xd3\x81\xc7V\xea8\xdem\x1a\xe63/HX\xa7\xdcL\x8d\xe1\x98\x11\x91\x84rZ$\xb9)\x1bUJi\x08\xfag\xf3\x04\x86t`\x18\xbax\xb4\xb7\x07O \x9f\xa4\x1a=\xd7Z#\xd4$^\x85r\xdd<;\xa1\xbc\x95\x89jy^e\x96\xf1#\x0c\xbfB\xf8\xce\x82\xc8O\xe7\x842\xa8~\x0cK\xffk\xb8,\x96\x90\xa1;\xc7\xe0+\xe5\xb3}9\xcd\xf5p\xdfAWNJ6i)\x9e\x12a\xdf\xf7\x1c\xd4\xa2u%J'\x8b\x9c;JH\xcb\xf5\xdb\xb4\x0f\x92\xd6\xdasHe\xbc0\xfb)$,\xd0H\xf31\x9d\x88\xfb{ \x06\x14/\xf7\xb4\"0\x9b\xbd\xd5\xb8\xd6W\x8c\x9e\xa5\x13r\x80\xb4\x9c\xdb\xa1\xc0\xa9\xcd\xb2'\x9a\xedU[\xbe\x1b\xc3\xa3#\xa7\x14\x0d\x1bOB\x14\x88Z~\x16\x84\xa1\xa5\x17\x8b\xb2\x12\x91\x9f\x87\xf1\xb0\xb5\xc8u\x18\xfb\xe9\x9d\xa1\x08H\x12(\xfdq\xc2*A2\xaf\xad\x95\"\x9fm\xb5\x96`\x84vg/^\xdb\xc41\x02\x1c\xaa\xe6\x82l\xd4\xde\x9f \xdb\xea(\x91\xcf\x86\xfb\x11\xe9*\xb3\xd5R\x08\xaa~\x8f\xe0\xc7v\x08.\xc8\xd7\xeeZbx\xf6\xec\x19\x18\xac\xb6\xf9t\xfa\x19\xd9\xdf\xed\xae\xea\xb7.@\n\xa32cE\xa8\xedpzO\x0cp&\xcc\xc6\x1d\x95;\xf5\xe8f.\xcf\x8f\xd6\xf8T\x95\xbe\xeb\xd1\xd7M\x1b\xc7\"\xf6\x16\xd1F\xc6\xe7riz\xfc\xb9\xe2\x10L{5\xba\x94\x98*\x83\xc6\xa1B\x01\xa4\xa4\x189\xc0\xb64\xd3h\x10\xb7\xc4\x94;L\x99\xf0\x1cOn\xe49\xe1\x99,\x91;\xc575\x11\x1d=\xdd\xb7\xca'\x87 b\xa1I\xcf\x1cV\xe1f\xecB\x98\xbd\xf7\xdf\xdb\xb1S\x16K\xf8\xe1\\\xca\xb7\xb6`\xe8\x08\x91\x80(T\xbe\xdcDZ?\xa6\x07 \xe9p\x84@\xcb\x95V8\x00\x8f\xfe$7\xdd\\\x19@\xa2\x8c`m1\xa3\xd7\xcc\xcdm\xf4k\xafk\xf9A\x8bH\x8c\xd9\xdd#\xcf>K\x93%\xe5\x15S\x07\x15\xc35\xae\xac\xc6J\xe5\x15\xfb\xb45\x841\xcc\x95\x15eX!Z\xe1\x13\xaf8\x87'H\xeb\xb8\x069\x83\xe9\xd0\xad\xc4\x17\x92\xf6\x97\xc7\xd9\xc5\x08\xa4\xa7\xadE*\xf5\x04\xe7Z\xb5\x85#?\xcb\xdf\x18>\xc0\xb1O\xf2\xcb\xb6\xd1ky\x97\x1b?* {\xc1\xae0\x08Q\xce\x843Z\xfd\xe8q\x15\xfe\x06d\x12\xb2\xf0l\x86\xd8o\x85\xb4p\xf5%2\x89\n\xd6O\xb1\x14\\\x95\x89\x14\xd8\x89\xc6\xf8\xef\xb4\x8a\xc6\x99*h\x14\xe9!~\xb8q\xa1\x15>\xe0gY\xfd\xd1\x96\xf4\xcc(/@\xb2\xb6\xa2\xd8GL\x18X\xddw\xee+\x9fEO-`\x9bEQ\xe5\x7fc\xfc\xab\xd9o\x8dG\x8a`\xd6\xd4Q\xde\x8dai\x92FX\x00{\xe2\xa5\xc4\x9f~~\x13\xe7\xc3\xfd\x17gv\x0e?\xea\xdc\x18\xf5\xfb\xdc\xa8E\x16\xce\x8e\xa6A#M\x87j\x98#\x08\xe1\x18\x8a#\x0877\xf5L\x19\xf0\xc6px\xa1\x83\xfdG\xad4OQ\x1cp<\x1c\xc2\x16\x04\xadr\x1dQS\xf9!]9\xb4\x9b\xa1\xe3\xb2\xcfa\x93\x03(+\xe7-\xa0\x001V\xc9\x91\xec\x16K\"\xc1j\x0ca\xeb\x84\xf7\xc6\xe5P0 g3lb\xd8\x84\x0c\x9eAQ\x9e$\x05lA\xe60\x7f`\x84\xda3d\xe6\xc2\xad\xad\xb6!\x97\xc4\xf3\x8c\x07\x0b\\1\x1ep\x05\xc7\x90\x1d\xc1\xaa\x0d\xe8P\x03[{>\x1cCz\x04\x9b\x9b~\x1b\xfa\xa0\xc7\x84\x9c\xf7\xa2\xb8\xce\xf2\xd4\xa6|\x82\xef\x02O\x8d\xa1_X8H\xa4\xd6\x8a\x8a\xa0\xf0\xf5e\xc9\x84\xee4f\xba\xdb\x03\xe9\x89\xcaz-\x9a\xeb\x8eE\xc3+{a\xbf\xa6\x1bJ^\x16\x0e\xaa\xe4\x9a&@\xa6\x96\xae\xfa\xb6d6\x18(\xeb\x94smM.]Y\x14V\xb2\xf2L\"\x963\x87K&8\"r\x02\x94\xb8C\xa2\xafK\xa8\x98\xaf;\xe8\xdb~\x83\xae\xc1\xa6W\xc5g\xfd*~a\xff\xb6~\xa7\xbf\xf6\xad\xbb\x97V\xa3\x92W\x96\xde\xb6|\xd6\xa4\xadF\xa4\xa0\x15\x1b\xb6\x9d\xd3\xd3i\x84i!\x1c\xbe \x19+!\xcd\x9f\xcf\xf9M\xcaO\xc3!\x8f\xdaL\xd1\xc6\xde\xbe\x0b!\x9b\xf6\xc4)\x7f\x9a4yF\x94\xfc\xf0\xad\x0b\xfe\xbc\x8d\x9f\xad\xb3\x10t\xd8q\x8d\xc5\x84SH\x91\x07yq\x97\x13\x91\xf1\x9dbU\xf5!WQ\xe5u\x9b\xae\xb6~\xbdl\xeb\x17\x05\xf3;?_x\xcb0.i\xc6\x1e\"[:\x9f\xe8\x1aq\x04 \x8an\xdb\xd0&\xa5\xbd]\xb4\xafu1F\x07\x99$-\xc9\xe5\x03\x11,\xc1X\x82\x9e\xe0\x11e\xa5w\x9e\xc2)\xec\xc2\x98\xdd\x8dv\xe0\x14v\xf8\xdd\xf0\xe9\x10Na\x04c\x93\xe8\x05iE\xd8\x84\x19\x1c\xa3\xb0O\xc8\xeffm4D\x9f\x04\xb8\x11\x1c\xc3ptX\x12rQ\x8b^ \x04\x9da.\xd2'-.m\x8er\x19\xc3\xa7#x\xc2\x88X2\xa1\x83\x1b^:L8@\xd9\x17{g\x08O r\xe0\xf8\x18\xf6\xe1\x1e\xf6w\xe0 %^\x9f\x89\x0cb\xd8\xdd\xec;t\xd7`\xf6).\xb9\x7f<3>\xde\x8d.]e(!\xf6\xbe\xfe\xcc\x97F4\xdc+G4\x1c\xc1=\xd8bL\xf2\x10}:\xc4\xd1`\xf7\x80\x7fw\xcc\x13\x96\xdd\xdf#9+%x\xfb^\xe3\xdf}\xfc\xf8\x8b\xf2ng\x0dh\xd4\x9f\x15\x06\x08\x1d*\x10\x92@\xe6\xd7AV8\"\xef\x1b\xad\x89\x82\x8c\xa5\x92\x1bI`\xd2\x0eQO\x12\x97\xc6X\x94/\xc2\xcfi\xdd;.\xee\xe4!\xc5s\x81\xdc\x9e\x1d\x94i\xe4\\H\x19>\x0f\x98\x18u\x00O\x00\xf3\xc5\xdd\xb3I\xe4\xdc\x0c\xcb%w\x0f<\x95\x1cer\xc4w\x18\x1bg\xf3\x04fM\x8co\xc2\xd2\xdd\x14\xc9M\x19\xa7\xa9M|\x8a\x8aq\x8a^\xbe\x94$\x9f&\x1d\x1d\xb71>\xe7b\x10\x9d\xde\x02$\xdd\x85\xa5\xc9V&\xaeT\xaf\x0c\x04(\xc3\xa2\xa4\xa8=\xa4\xc7\xeb\xe6I\x9f\xce\xf0\xe3&u\x99j\xeeK\x07\x11\x157\x81l7\x8eO\xf9.\xf7\xb8b\xe9\x84\x1e\x0e\xb9w\x1e%\xb7\xe5\x93\xf6y\xd8$U\x84N\x82\x12V\x0dC\xc0\xba\x95y\xa8\xba\xb37\x1b\x1e8\x90{o\xde\x9f\x7f<{yq\xf5\xee\xf9\xffw\xf5\xe2o\x17g\xe7t=\x0dL\xb2\xb8\x139\x89\x0e1\x98\x05\xe9\x9fwy\xf6\x18\x83\xdf\x0b\xdf\x1a\xc5di\xd8a\xa2R\xb3J2\x9fie)\xbd\x00\xb0\xe5\x18N\x92\x1e\x01\x13\xc4\xc5{\xb5\xdb\x94\x1f\x89K\x8f;\x1e\\\xd8\x1dqZi\x96$\xb6c\x14\x87\x12\xca\x901K\xd3'O\x84'x\xf9\xcc\x1eb\xc2\xbcJ\xa9\xd8\\\xaa\x9d\xd9\x0d\xf8\x1864\xb2\x93\xfa\xbab\xf1u\xbe\xbc\xf3\xbf\x96\x91\xa3|\x1b\x05\xcb\xab$\x89\xce\xc3\xdf\xe8t\x1e\x0e\x9fb\xf2\xa1+\xeea\xd3\xb9\xe2\xb5\x13[sJT=\xbf\xb8`\xbb\x87\x1f\x8cT\x7fd\xf3\xf0EZ\x0b\xcc\x16!\xb5\xec Y\xeb\xa3v]\xd1\x91k\xcb\xb8\x06\xfb\xc9st\xf5\xa7\x0d\xb1_\x18\x1cJ+!\x13\xdetY\xa9Xa_hmM\x98\xe1K\xdd\xd5\xad\xcd\xccAV\xec16\x08\x02ZGc\xdf\xd43\xd0\xc9\xb5\xd5\\j\xb5\xd0B\x0c\x933\x0c\xd2\"\xd5\xa5\xbc\x07\x99\xc4\x97FvK\xc8\xa5j\xc7\x83\xad\xcb\xb3\x0f\xdcV\xdc\x84\xee\xcc\xbd0\x13\xe7>7F1\xb3\x812\n\xf7\xff\xa0\xf9\xa3\x97\xcf\x8c\xb9Q\x13\xce\x19_\xe1 \xdf\xb1\x16\xa1Z\xb7is\x91J\xce\x1e'\xb0p\xa1F\xe9I\xc7\xe7\xc6\xa0\xfe.\xbb\xf5W\xc3\xfd\xb6x\x9d\xa0\x06\x0fh\xd3\x13\x11\xad\x9eH6\xd7\xe4=\xc9(\x89]\x99\x0e/\x8b(\x0fW\x11\xa1\x10\x1c\xeeo]\x87\xb9\xf6X\xac)\x1a\x06Gh\xbeK\x8e\xd8\xf2\x1b9p#\xe2\x9f\xba\x98\xb4R\xc7\x7f e\x82\x1cB\x04\x04\x10\xeb`\xd9\x19}W\xb0\xec~#XvF\x8f\x02\xcbn\x03,;\x8e[=\xa2`b\x7ftZ\xb85\xa0\xb5\xbf\xfb]\xa1u\xf8\x8d\xd0\xda\xdf}\x14\xb4\x0e\x1b\xd0:\xd0Ck_y\x9d\xe8\xda\xf9\x83F0\xcc\xe6LX}a\xfc\x16x&\x8f\xa7\xf2(\xb1\xfa\xd5\x8b~S\xb1Z\x890\x90\x90\x1f\xa2\x19\x1e.\xba>M\xa0\xd9(\x96>>\xa1\xbd\xe5w\x9d\x1f\xe3\xeac \xa4\x89\xe4\xcc%\x19(\x1b\xa5\x1b\xd0\x83\xee\x14\x17\xef\xc5\xc7j1\x9b\x9c\xac\xa0\x0f\xb5\n\xbd(Vq\xf1\xc6_\xae\xd3x\x1b\x9d+.^\xef\xf3u\xeam\xa5\x8e\xa1\x1f\x85,.\xde\xfe\x87u\xda\xef\xb4\x1d\x86\xaa\xe2\xf3u*n\xa1\xc6\xa1\x17E\x0e=\xa9rX\x872\x87j4\x17\xfdF\xd3I\xac\x03\x94v\xd1Z\xc6\xfa3\x8b\x0eUz+\x8e\xb51\x14\xd4\x8b0w\xc4M\xb0\xac\xbef\xd3\xa0\xa5\xc9\x1eD\x0c\x12\x1c\xac)\x0cI\x1d\xa9\x93_\x0b?j\x8f\x1f\x01ZiC\x87lA:\x0c\x85\x8df\xeb\xc1\xc3\xcf\x80\xfb{\x8e,KY\x88\xde/\\\x19E\x18g+L+\xd6\xefd2)F\x98\xffRC\xca\xdf\xdaqq>=\xe3f\xd3%]Q\xba\xf3 \x8e\xe4\xfe\x92\xde\xd2\xcf\x83\x85\xbd\xed\xfd>z\xd8\x9e;\xde\xdf\x930\xb6-\xb0Dx\xb0\xb22\x9e\xec\x89\xa5P\xf7<\x0f,\xc7q\xc1:\xe6\xf4\x06\xae+]6\xf4:\\\x0c\xf2\xa4N\xa3\xf6\xef?\xd5*\x8fW;YU\xcfmf{\x8e\xda\x11\x0e\x90\xb1Z.-\xed\xb6\x94\x17\xcc\xd6,i\x9c\xa8\xb9\xf0u\xa7'pY\xef\xfd=\np\x06,\xd5\x9cr4\xeb)>\xee\x8f\x9e\xd2G\x80\xf6\xd1\xa6\xf1\xa6\xf0\x8c\xf7'\xa7\xbfZ\xdd\x84\xaa\xf2\x9d.\x04Je\xe6RH\x07\xb8\x10\x97\xbf\xd2\xf2WR\xfe\xaa6_/\xf1^\x88\xae\x03[t\xf5`\x0e,\xd8\xa2\xcb\xa9\x90%z\xa1\x0b\xbe\xc3\xcc7\x10\x9c\xa5^0\xe1*\xd8\x9ae\n\xd3\xec\x0e\x8e`\xc6\x0ci77gf `4\x991 `0\x99\xb5J\x00i7ia\xd6KZ\xda\x8c\x83\x1f!\x01\x0c\xe1\x18\x8d\x90Q\x02\xe8\xc31\x84f \xa0\x8c\xa5\x82\xa8\x98\x92>\xb1\xc6\xa4\xb6\xb8q.\x82\x92\x9b\xe3\xdbf z\xd3\xba\x7f\xad\xc6\x96\xf5\x90\x1a\x98:\xaf\xad\x11\xc9\xe4\xff[\x1b\x1a\xb66\x84\x1e\xfaz\x0cf=\xbdp\xdf\xd4E\x10\x86\x1cm}\xa5\x10?X\xac\x0f\xda0@\\X\"\xe2\x87\x984\xd99\xba\xa8\xf1\xe5\x1f\x1a\x03\x03\xa9\x91\xfe\xd4\xd8t\xa6\xeacz&IB\x07s\x1c\xcc)\xf9\n\xb2x\xa1'D\xff\xde\xc1\x0c\xe5\xa5O\x7f\xce\xed\xa9\xf7p\xc2\xf5z\xc9\xda\xeeU\xadud\xaf\x17\x17Fu\xc3\x1d\xee\x8e\x96\\\x02\xea!\x9e`P\x9e\xe3c8\x84\x1f)\xfd{\n \x8ca\x08[\x908\x0e\xdahk^\xf4\x1a\xf0\xfb\xb5\x06\xbc;z\xba\xfbt\xff`\xf4\xf4;\x8dz\xd7<\xea\xbc9\xac\x1d\x1c\x16\x03F\xaf\xc1}\xea\xbd?\xbeea\x99\x96j\x0b>y\xf4\xfa|U\x1bQ[J\xc6\x90\xeeB\x04\xc0\xc0e\xa0v!\xe1<\xae\\\xc7h\x87\xbd\xa3\x10\xd8\xed\xd5\x87\xb7\x8f\xee\xc3\xa1\xa1\x0f{#\xf6\x8e\xf6\xe1P\xe9\x83|\x97\xa9t]\x1f\xfb\x1d\xe1\x15\xd7OI}\x02\xff\xfd\xdf\xc4U\x83`\xe6p\x8a\xa9Z\xfe\xfb\xbfs\x97\x9d\x14,\x0c\xe5&=\xb5\xcb\x1dBD\xc4\x11B\x0f\xf6\xf2Q\xeaT!\xc9\xec\\\xf9&\x17\xdf\xe4\xe57\xb9\xf4\x0d)\x9f\x10\xc7`\x03\xecT:\xcf\xd2\xea\x1aaa\x0c\x90\xb9\x96\xfc\xa4\xa4\xc0`K\x8d\xcb/\xae\xb8\x0c\xf3\x9b\x08q\x86\x81\xbb\xa81\xe7\x9cNH8\x19\x13S\"\x80\x0d\x04)\x00\xd2\x95\n\x07\xaa\x85V\xf7\x80P\xd8\x0f\x11\xd5\xe0\xedYO\xb9\x1a\xe1\x92\x19!\xb8A\xaaM\x90\x13\xb2|\xa3\x05\xf7\x89\xe56!\xdcgoX\x12G\x9b\x9bt\xd89\x17\xae\xffxB\xe9\x1e\xe7\x88\x13\xb5\xec\x1b\xd8\x84\xf0\x12~\xd4\xb9v\xebIY\xfd\x88_\xfccF\x0c\x9b\xb0\xb5\x95\x8bq\x1f\xe1\xd2\x1et\x0c\x97~\xf0\xed\x03>\xec\x83\x10\x84\xc6\xa9\x1c\xe3\xd0U\x15\x1cl\xe2\xfa\xb48\xdco.\xab^\x8d\x8e\x0c\x8drK\x0f\x04\xca\xf0\x12\xcf\xfc~\xfdhN\xf6\xb7\xf5\x03\xa9\x8dZg\xfa\xf4cg\xf4Hx\xec\xaa\xfd\xb0\xcd\x00\x91\x1f\x8d\xf0\x11\x8b\xf37\xdc?88\x18\x0d)\x17Q\xbe\xdf\xe9\xd9\xedG\x82\xaf\xd1\xedF\x1f(gc+#\x18\xee7\x87P\x1b\xd5\xcee\xab\x08\x9fv\xfb\xff:\x8c\x06\xcfN\xf8\xe7\xc3\xd1\xa1\xc3E\xe1[\x9cv\\%\xb76\xa5\x12(X\x1d\xc7\xedF\x07\xff\x10\xf4W\x03\x8c\x84\xdb\xd2\xcb#$/\x9bX0T\xb0`\xda\x0e\xa4P\x03\xa4\xd0\x08\xa4\xb0\x07\x90\xbe\x13\xcaD\xdf\xebr\xc5\xa3:\xefG\xc0\x88\x10[\xd2>@\xaf\xd3\x9e\xd8u\x0d\xe4j\xc4fM8\xde\x88\xd8\xaaF\xe4b\x84\xfd\xce\xe8`\x9f\x0e2\x86S\xc6\x08\x0d\x86\x07\xfb\x03\xb8\x87\x18\xc6\xdd\x14\xc8\x1a8\xfa\xd1\xc3a\x83\xb8\xaf\xa1\xf0?n8\xdf\x0f\xd5\xaf\x87\xe9\xebx\x92>\x1b\xed\xf6\xean?\xe8\xf7\xef.\xb6\xdc\xect\x0f\xe4\xde\xd5\xdd\xd7Q\xe2k\xb0\xfb\xe3\xba\x9b`\x95\x95\xa2ac \xb8\xbe^\xdd\xf8^Pktc\xd8\xb7\x1b\xaf\x92\xe2:\"\x8f\x04\xc7ag?\x06\x82\x01\xed\xd7\x8fG\xc2\xa3\xbb\x1f\xc3>\xfd@\xe6\xd9\xc8\xcd\x18\x848\xc8\x86n\x92\xda\x01\xc7\xacXPm\xfbF5 P\x0f\x93\xd8\x81-\x8a\xf2M\x8e(\x899\xc6_\xd8\xe2\xf4\x81\x1b\"\xafBN\x13AI\xc4\x8dc\x92\x15eD\xc4 \x10\xd8\x86\x84\xc9\x81\x8c\xe8\x8d\x16n\xc5b%$\xb5d\xc2?\x10\x921\x161BSc\xa4$AS\x88\xcfJ\x88nm%\x18 \x8e\x93\n\x1a\x90&\x02\xa4\xe1w\x03i\x83\xa8h\xb7`\xd1\x00U\x85%E\x16{{.\xeaQ\x8c\xf9~pv\x10\xe4\xb3(IP\xd2\xcd\xb1\xb5\xbc\xca\xb8\xc9\x7f\xaf\x81\xe8(\x90o\x1e\xcb\xc8e\x92\xe3\xb6\xd1\x9cj\xb6\x87[\xcd\xd9\x90\xcd\x19\x8aH)M\xf5\xf7Z\x03,G*=|z\x0e\xb27\xa5\xfc\x07\x0e\x92\x8fF\x1d$\x1f\xbbf\x90\xc3\xb5\x06\xa9\xa3V\xbey\x90\xbb\xae$\x12\xef5RF\xb3\x88\xd1\x8ev\xa5\xe1\x8e\xaa\xe7\xc3}\xc3\\k\x963\x85\xcc{\xfd\xf4\xb7\x92E\x12d\xfe\x80\xe9_\x1f2\x06\xa8\x0c\x0dP\x19\xe9\xd7\xccN;d\x86\xbd!\xb3\xe6\x11+\xa4\xc72X6\x8c\x06G\x02\xd57\x8e\x07\x0c\x1d\xad\x97\x9d6\xce\x96\x84\x1d%[\x1a7o\xbd=\x18\x9e\xc5\xfa\x83\xa5#J\xef#Op_:n\x88\x10y3\x89z\xc1~\nsLv\xb6\xd3\x01]\xe2\x97\x05\x86(r\x95s\xdf\xa6\xa7\x94\x0f\xcf\x9e\xc1\x80\x9e\xa3\xc5w9\xaf\xd6\xa4\x00\xfeO\x99\xe8\x16*\xe2\x9b&[\xcc\x85D`\x84\x15\x81\xb1\xf6\x8co\xfecf\xfc\x0f!P\x86\xa3\x03\x17\xb6\x86\xa3\xc3\xb5i\x14R\xd3!Q\xd02\x9f\x84\xe1\xb7\xd0/\x7f \xf9\xb23:\xd8\xa7cE\x19B?\xd4\xfe\x07\xd20\x7f \xf3\x88\x81\xfe\x81t\xcc\x1fH\xc6T\xf9\x10\\%\xedA\x8f!\xb7\xcfm\x0f\x12\xa7F\x12}\x13A\xf3\x07\xd23f\x10\xd5\xb7o\xcdHB\xec\xe2\x1eP\xfc'\"~\x0c\xf2\xa7v(\xbeR\xe6\xac\xcb\xab\xa2ji\xdd\xf9RZ\x1a\xf6j\xc9$Ejo\xea\xedc\x06e\x12\x14\xad\xd5T\xe7\xa8\x82du\xb7\x1e\xddR\xa5\x9b\x1c\xa0Cd\xe9\"X\xd9\xd5\xe7\x8a\xa7\x97\x94\xa5\xa42E\x90\x0b\xd0\x0f\xf3\xb2F\xae\xe2HK\x12\x10\x9d\x17\x98\xf7eWz\xa7\xb0\x11 \xa5\xea\xa0\xdc\xad\x8e*\xf26\xc3\x9b\xdcO\xe7$?\xcf\xfd4\xef\xce\x86Z\x9a\xf1\x003\xd6T\xba\xa1o!K\x8a4 k\xb4\x90\xb6\xf5\x97\xd5v\x16O\xbb\xebJ\xeb\xce\x17%\xf4\xeb3*\xd9_\xe5\x18{iK\x9a\xa8\xda\xcbM\xadU.\x12\xb4L\xbf\x95\xea\xe3\xd6\xe3\x1cTn\xa8\x18t\x99+\x07\xb1\xc5\x96\x904 \xb0t \xc3#HxV\x83\xad-4\x0bK`\x13\x10I\"\xae\xa3w\xba\xb8/\xa5\x93\x11eA\x86d\x07X\x18\xaf\xf5\xb2\xfe\xb105\x8aY\xda\x1a\xedk\xf3\xb9d$\xaf\xf2\xb8\xd4Lubf\xf6\x14:\xfa\\\x98B\xef\xd7\x86\x08fa\x14\xad\x87\x084NWkg\xb6\x16\xe9 0\xa4\x06?6\x95\x1d\xa2M\x9f+\xe1\x85\xe6'.\xcf\xba\xd1\x95\x19 $\xde\xaa\x16\xb0\xdcdy\x04\x18\x80\xe8\x18m\x8c\xc5Am\x88\x8ff\xce\xb7\xaa&\x9b\xd1\xe4\xc33\xf9\xb3\x97\x19\xbf\xfb&\xf36\x80\x1d\xdb\xad\xe7\x02NM^\xc5&\xcf\x8fF{\x95\x12`:-\xc9\x9b)\xcb-\xe2T\xe9\x17a9\x00n\xab\x87>\xca\xb5A\x08\xbc\xe8OB\xf8_P\xaca\xb3\x977b\xe4\xd4\xfb@\x07\xfb\x19N`{\xf2\x9f\x9b\xbfl\x0f\xb6\x9e>\xdf\xfa\x0f\x7f\xeb\xb7\xad\xab\xcb\xed\xb9\xc9\xf5\xe6\xd7\xf6\x10\xae\x80\xca\xd9S\xb0\x06\xe8\xf4_O\x13:V\x1e\xd4\xfbfh\xf0\xb5Q\x01x\xa3\x0f\xd0\x96\x03\x8f\x8a3\x84\xed\xce\x1c\x97\x95\x83L\"\xc2\xf3\xeb\xf2:\xb4\xa7P Y`\x9bFb\x07\x07\x9ea4\xef=qD\xef\x1d\xec\xec\xee\xb6!\xdc\x90\xe7\x873\x97\x80r\x93>\x83\xbd\xfd\x9d\xe1\xd3\xae\xc2\xf4b\x89(vh\x7f\xb6\x86\xb43<\x99\xc4h\xe7\xa9\x0b\xc3\xa7C\x17\x86\x87O[\xd0\xba\xb8\x82$\xce\xc3\xb8\xd0\xe7R\x12\x979{\x10\xf0\xbe\xfb R?\x19\xa5z\xf2\xf5O\xd4{\\$\xed-u\xb6\xd2\x9e] \x97\xc9\xfe\xce\xc8\x98BP\\\xfd\xa0\xe2\xfe\xc1]\x8e\xb9\x8f\xc6>lR\xban\x8b\xa7 8>\x86!3t\xd9\xe2\xa3\xd1\xd6\xc0O\xc5\x84\xf3==\xc6c>\xc9\xab\xfd\x1b\xb3D\x15]\xfb\x8c58d\xd9Y\xba\xd2\x1f\xf0\xce\xc4\xad\xe3\x10\xf37\x1a\xec\xf6l}\xb4^\xeb\xf0\xec\x19\xe62\xc0\x00\xdb\x98\xd0 \xa6w\xa3\xc3^\xdd\xc2y\xea\xd7\xaf\x9d\xf5\xfb\x85I\x17F\xa3]\x16\xc2\x03\xf6\xe1 \xed!\xf6n\x8d\xbev\xa0F\x1c\x07O\xd9\xa0\x8b3 \xd2i\x05\xc9\x94\xc0*1x\x91\xc9U\xb2\xf1\xee>b\xbc\x87t\xbc\xbb\xe4\xeb*I\xf3\x0cN\xe0\xf7\x07\x89v,\xc1\x106<\xd2\x1b\x9b7#\xf9E\xb8$I\x91\xc3\xc2g~\xa0\xd7\x84\xc4 B\xe6W\xf0~\xd04\xe0w7\x10D\xc4O\xbf\xa1\x89\xa2\xb9\xe0\x19n\xc5\x18`e\xef\xab\xe8\xc2\xe5#\n>\x95o\x16T\xe3\xc9 \xf3\xe2\xda`\xf9\x8e5\xf5\xd0C\xb6z\xecv\xd4\xab\xcf\xb7!\xaab_\xd4\x97\x81\xc8\x0f\xa17\x955\xa6\xef\x10U\xb2\xa5SF\xcb\xd79\xfc\xb7\xb6\xd0\xac\xab\x94\xd2v\x07\x0f\xa8&l\xa3Z\xac\x8d\x95\xa0\x1d\x03f\x9d\x11\xdf\xc8\xbc\xa6\xb4\x10O\xe5\x9b\xb1\x8av[\x13k\xd0\xeaU4-\xdf\x19\xe6\xc9\xd4\xa9\xda\xe2=\xad\xdf\x8e\xd5,\x89\xad\x1d\xa3M\xa8Y\x15\xcb_\xb6\xb4\x9a\xe8\x1e\xe7\xa9\xcd&Jb\xb3\x00C\xbf\xd4\x9f\xcdx\x12\xda\xe6\xc6Y5f\x04\xb3\xb7b\x1a\x0b\x9bW\x05\xa5X\xe0\x14[\x14\x01\xc4\xed\x08\xc3\xa7b\xdd.D\x92\xecuj;\xed\xfbu\xdah\x16\x89\x88\xc0\xc4L\xd2\xb3\xad\xb0W\x1a\x8a\x01\xfb\xd8\xc6KR\xa6S\xf4\xed\x083\x11\xe9\xd79~@\xb1d$\xe0\x8aA\xc4x\xf6\"\x9e\xf2cv\xe9\xa5El\x9b<\xfc8(\xe4&;v \xf0D\xcfl\x8f\xea\xe6N\\\xfd\x8ev&T\xa7\x98K^\x86U\x1a_\xe9\xa1\xdd\x16P\x12Q \xab\xc8G\x14\xc8b5h+\xa5\xabV~\xe1\xf6o\xc6\x8c\xc2\xc4\x95\xda\x06\xf9\x12\xf4\xc2^\xe2\xean\x08d\xf2K\xc6\x9b\xe6\xe6a\xad.@\xa3\x01\x8eL;\x1a0\x8f^\xfb\xe6A\x05\xd8C\xebN\\h\x858(\x0b\x9c\x15(9\xe1B{\x96\xe6\xe8D\xcaZ\xaa\xab\xee\x86n\xec\xaa\xc5\xc4\x8b\xc9\xd7\xfc\"\x0c\xbe\xb4\x12\xa7b\x9fR\x8a\x80\xd1\xbc\x8d\xb8\xcdM\x93!\x94W\xa8\xc5\x9e\xc1\xb0 \xce\x12\x17\xc4\xcc'\x93\xb2*\xea\x97G\x10onRr-f\x86XR\xe8\xe8F\x98\xfd\x883\x1b\xe4V\x80\x0fe\xf7\x98\x15Z\xa2\x07\x03\xfa_aO%T\xe8\xc2B\xb6\xabG\x00\x9b\xcfF> <\x1c+[\x8e\xd5\\\xd4\xaaM\xbc<\xcc#\x0cJz\x9d&\xb7\x19I-\xfa\x90\xff\xe6a\xf2\x13\x8f\xc47H\x07\xd2\xdf~:\xbf\x11y5\xbd\x1b\x92ft\xfeX$\x93\xf2>+K\xe3\xbb\x1b\xfcn:}\x1bf9\x89\xb1\xde\x1b\xf6\x12\xdd\xd1\xd9\xef\xd9L\xfcL\xc92\xb9!ja\xf6\xf4y\x14\x89\x17\x99xC\x96a.~\xafR\xb2\"q\xa3%\xfe\xf8C\x1c4\xea\x8d\xa4\xea\xccK\x8d\xef\xc0\xc9e\x1dz\xd7a\xdc\x99\\\xa5A\xb5\xae\xd2$ YV~\xccC\xa4HA\xf1\xea\x8d\x04\xb7\xd3\xb6\xf9\x16\xac\xd2\xb6\xa5|\xb6\x98\x86\xe9\xe3z\xc6>\xed\xeaW\xb1\xf4\xb3/=z6\x90\xb6>h\xb8\x10E\xc5o\x15\x19AEO\x90KL\x9c\xcc\x90\x98G\x84\x1a\xa0\x8a\xd8\xda\x90Uu:}\x0f\x06\xb1\x15\x03\xf5\xcb\x8aU\x19C\x83k|\xc4@\x9aH/\xd5\xe2\xd0\xca\xbe\xe6\xa4\x0bk&f\x94\xd8\xc0p\xc7'0\xa4\x88E\xd2\xdeT\x98jx\xc9\x835\xc8\x8f\x9a\xf4DlLx+duZ\xb0\x19\xd7\x07\xa8\xc2{\xb5\xd7Lt\xcfP{\xea\xa8\x02|\x9fb\xdep\xe2\xd7\xb1\xaeof\x961\x17\xd6\x86\x88\xa2\x19\x0b\xd0 \xc3&\x91\xa1\xa1GnHzW\xcb\"\xdd\x95\xda\x0c\x19\xb7x\x92^j\xf8\x1bts\xb1\x19W\xcdp2\x9b\x04\x17B\xc7a:\xb5\xd05s\xf2Z\xde\xbb1\xf15\xc2\xb5 \xc7\xb8\x84cN\x0f;8\xc5\xe0\x14C\x1e\xd98e\x07\x1c\xcb\xb9 )\x85k3\xa9\x9d\xe4-\xa0\x16\x97\x00]\xfb\xa6\xef\x03}6\xc4Y\x9a,[Yv;4\xcc\xc3\x83\xf1\xb8\x8f\xbc\x94dE\x94\xbf.\xe2\x80\xae%\x17\x9f\x04\xc9rU\xe4~\xce\xd9\x94\xce\xcd&6Z\xe3\xe5\x03\xab/#\xf9\xa7GWJgH[q\xed\xa1L\x0c\x88_\xb9wuE\xb2w\xc9\xb4@\xf6\x8d\xf2i\x98:\xd6/\xa2\xfc\x1dY&,soB\x9f\"\xda$\x02\x8b\xbedH\x94\x11\x1d\xe5\xcb<-\x82\xbcH\xc9\xb4D\xb6}\x18\xefGP\x99\xbeBe6\x99s+\xc1<\xb8F\xea]\xc8\xfeM\x1dg\x87C\x06\xb30\xcd\xf2*^\";\x18\xfc\x18X\xf5p\xbb )\x01\xe2\x07\x0bX\xf1\\\xbb\x94\x11\xf0A\x9c%\x9a\xa3\xc3Gk\xb0\xb2SG\x0d\xa0\xd0\xbd\xc6\xd3\xf8~!wYC\x88UR\x8bq\x1dU\xb5\xf9\xc3\xd3\x0dY_\x0e\x8e\xdb\x93\xe4\"Z\x84\x9cW\x08\x81\xd3~\x03F\xfb\x11N\xfb\xe5\x93\xb4\x9d\xee\x03i(^J\xa6E@l\x85\x13\xea\"\x98\xc9\x84R\xcb\x97\xcc\x18R\xa3\x8es\xe1\xf7\x07E %\xb1\x9fu\x91\xb6\x8f\x04L}\x99\xd3\xf5m'z\xb5\x97\xc2\xa7 \xee#\xb6\x87\xc3\x03\xe5@D\xc6\xc6\x1e\xed\xee8zV4\xb6\x87\x83\x01\xa5\xfc\xda\x1a\x00Y\x84'\xd2'$6Z\xabK\x83\xea\x91TLZ\x12\xcc\x18tM\x96\xb4\x1a\xea\xc1\xaeaD\xed\xcc\xf5\x86\x1c\x0b\xd5\xc4G\x8b=\xb6\xf1H>Z\xedq\xac*$\xeb\xfb\x8e\xc9\x9c\xc6`\x8d\xbc=o\xcf\xd2\xad\x12\x8d\xfd\xe1\xd5\x153\xd4\xa4\x7fO\x84\xdb@o\xf0\x8d\x0e\x0e\xd6\x86\x9f\xcc\x85\xca)\xe7j\xb2\xeau\xa7Q\xbf`\xf7\x0ev\x95\xe7!\x7f\xbe\xa7<\xa7{\xc7\x9ap\x9c\xf8\xbe\x88\xa2K%Tx!\x17\xf8,\xd2\x9d\xab\xa524n?E\x13\x04f\x0fx\xe1\xcf\xcb\xcc\xde\xdf\x01R\xd2\x89Bo\x0b\xcc|2\xe6\n\x16\x08c\x8ev\x99q'\nF\xc6\xc8&?\x16\xb0{OGz\xc8>\xdd\xeb\x9cx\x0d\xbd,\x96q\xc2\xdej\xb7E\xca\xb2\\\xc4%\xd8\x1e\xdb\xf7\xd1Su\x96Y\xdf\xf7w\xd41\xb1Uqp\xd89$\xc3\x0c\x85\x0c\xde)\x83w\xb26\xbc\xf5\xb2> !\xef\x0e4#\x91NXJl\xb4\x93\xd4\x82V\x99h\xce0\x89s c\xa42\x84U\x98\xf9\xbc\xab\xbdx0\xc0\xad>\x96\x90\x1f\x14\xfbR\xb5\xa1\x17\xc6\x0b\x92\x86\xfc\x149\x1c:\xcd3-\xb6w\x06\xeaL\x16\xac\xae\xda*\xac\xea\xb2g.\xf8\xd2\x9br\x80\x19\xae\xbd\xa2\xd2\"\xf0\x14I\x83#\x88\xe0\x18*uFD \x80\xe6\xda\xa5\x04t6\x89\x14\x18\xce\xaa\xfa&\xc1%\x8a\xb9\x94G\x94)\x93\x1f\xb4\xebwg\x86C\x879\xc7\x88@\xda\xc9\x0cfU~IJ\x12\xce\x1a\x84\x96_W\x95\xb9P\xa8\x0f\x10\xfbo\x08\xd7\x89\x94\xf8S\xff:\xe2\xb1c\x17aV=9a^\x80\xf5\xf2\xb7i\x98\xd7\xcb\x97Oxy\xa6q\x89\xa2\xe4\xf6\xaf~4\xfb\xb0\"1'\xd3\xeb\x15\xd5K\x94\xb55>,\xabL\xe2\x80\xd8\x16\x89\xa7\x96\x0b\xabvp6\xb5\xf4\x9a\xba\x85\xc3\xc1\x95\x18\xc0y\xee\xe7\xc4#\xf1\x94L\xe9\xcb\xb4\xd4\xc5\xd9S\xd6\x85.\x1d}c\x0e\xb16[E\x0d\xf4\xe2;\x99\x1d*\x1f9\x19.\xaf!\x17,\xd1\xaf\xbf\x86\xf3\xc5\xcf~N\xd2w~\xfa\xc5r\xd56\xe2bIRZn\xdc\xd0\x85\xcfI>n\xa7\x98\xc5\xe6\xd6\x00b!7[\xdf\xfc\xd5\x80\x1c\xb7\xd7P\xa6$\xcb\xd3\xe4\x8eL\x1b\xdd\xef\xddE\xc9\x9f\x86\xf5V\xacS\xec-]@\x8d\x12\xb5\xf1TK\xac\xfe\xa5W\xf6\x0d\xbd\xce4\x80(\x0b(d\xb9B\x08\xd4\x06\xa2\xc7\xc8\x7f\xfc\x10*\xfd\xb3i\x10\xb4\x88Q\xe1M\x19,I\xe1z\xc5\xbf\xea:\xe4\xb1Av\x80\x14Q$6,\xae}W\xdeGyM{\xff]\x0e\xca\x9d\xe1\xc8\xb1\x1f{\x8a\x93\xca=\xabT\x91t\xd1\xe8k\xf6o\xff@w\x90\xb3\x10\xf7\xfe\xd7G\xf6;\xb1\x07.\xd2\x1e\xdf\x00\xccu\xcbk\xa9\x94\xa1flvl\x1f:]\xf2\xbe\x90;~z\xe2l\xfb\x98$\xc2\x16\xc0\xc4@\x0b\x82\xa6\xf9\x1d*8\xf4\xb2;\x19\xc1 \xc3Pz\n6\x05\xd6F\x0bez\xd0\xd2\xef\x1b\x86\"\x1a\x9a\xb2}\xd4D>\xca\xf1h\xa7\xe7\x8cm\x8d\xf6,t\xb7\xc5\xedVP.\xde\x16\x9bH\x03\x1f8\xe6\x1b.I\xa2\xf3\xf07R\xe2\xad:L\xe8vl\xa4o\xad\xdd\xfa((\xab=*\x1a\\&\x16\x9cNi\x9d\x94\xb9I\xc6\xed\xa8@\\%\xfb\xda:-q\xad\xcf\xdc\xba\"\xf6\xe6$\xa7\xf7\x88\xac\xd0\x01\xca\xa7O\xcb\xf1\xa2czu{\x02\xc3\x81C\x0b\xa4$\"~F\x98\x84\xaf)\xa1}\xd0\xa8oc\"\xd2\xa9b\x83\xe9X\x05\x08\xbd\xf2\xdbD-\xd5\x0b\x06\x8fY\xe4 \xeb\xa6\xd6Y\xe8\xa0[\xec1\x8b\x10\xe0\xe8\xc0\x01\xda5\x0f\xbauO\xab\xe8\x03\xce|\x91\x92\x06@\xbbD;\xe2\xfa\x16h\xa5\xdf\x05Zi\x19G\xa9\x114Z\\\xfd\x01\xd6\x88\xc8\x00z\x98\xcd\x92\"\xed\x02Y\x8bT\xf1[\xa0\x96|\x17\xa8%R\xf4\xa9\xd4Q\xf5\xf9\xe2Z\x0bp\xae\xd6\xf1\xb8\x8e\xca\xf4Gg\x81O\xdb\xe4ju\x03\x7fmq\xb3\x98tO\x95.%\xfcy\xb7l\xc4p\x94\xa7v\xb2\xfe9.\xf7\xe8\xd1-s\xb9\xd1#\xc8\x08\x89\xfa\xda\xd1\xcb\x8a\x0e\xb5\xe2\x96\xe1P}\xce\x98\xfd\xe1\xfe\x81c[Y\x1aX\x1a\x9e\xff5\xefH)_k\xca\xdfX\xfe\xc1\xc2\xf1\xb2U\x14\xe6\xb6%J\xcaR\xd8\xd8\xde\x1f8\"a\xf99F\xca\xe8\x03$\xce=\x93\x9a\x05\x98m\x94~\xe1\xda-tr\x84\xc8d\x0d\xafx4FH\xe4\x87\x14s[\xb1\xbf$\x16\x1a\xd1$\xd5=7\x9fDIxi\xd2cK\x9f\xf9\xd5\x17>/\x87\xf2\xd6M\xf6{\x0c\x19\xb3H\xe0\xde\xcb\xb9\xe3\xb0\xa8b,\xb6\xcbi)c\x871\x14\xe2\xb6\xf64\xa9\xd6\xc4\x18\xec)\x89HN\xf0\xbd+\xbd\x92\xd7\x94c\x97\x93(3\x85\xe54\xb5hu\xf84h!\x87\x04\x14\xa7}&>Ja$a\x87\xdc\xfeZH\xa1sM\x94z:9\xf4\xc1\xa9\xc4A\xc0\xb8\xcb^\xa5\xd76\xeb\xa4\xbe\xf5\x9bo\xb4o\x10\x81\xef\xeckw\xdf\xde\xaeJ\xc53Q\xdb\x81Z<\xe3\xc5UYj\xc4\x9f\xab\x12\xbb\x80?W\xeb\x99\xf1\xe7*2X\xa1\xd0\x8ci\xb3\xce\"B\x0f\xc4z\x81\xa9T\xe0\xb5O\xc9\xe4\xbbz\x81\x05+\x10%\xb1\xbe\x82\x1b8\x81\xb4\xfeh\xd9I\xb47t7\xd0<\xc8\xe7Z\xb2\xf9\xe5\"\x8c\xa6)\x89\xc7\x86sx\xe9\xaf\xc6\x10zK\x7f\xd5$\x0b\x80 1\xcf\xfc`A\xcb\xf0\x9f\xfarAR\xc49-\x85?\xf4e\xf2\x045\x9f\xb4\x14\xff\xa9/\x97\xc4\xd1\xdd\x18f\x8dw\x1a\xca\xe5e\xb2\\%1\xa1M'^y\xd3,\xf7\xb1HI\xadl\xedA\xb3|m\x05\x8cA\x03\x1cy\x86\xc7\xa0\x81J\x98\xfd\xe4G\xe1\xb4,Rx\xf5'\x9aN\xa6\xc9\xea\x82\x99De\xa6.\xbd\x8c\xfc,\x1bC`z\xcf\xd7\xe4\x18\xa6\xa6\x12\xef\xc2\xafa<\x86e\xf3\xfd\xab\x0f\xef\xc6\xe07\x9f\x97J>\x8d\xf1\xe9\xd5U\xb6J\x89?\x1d\xc3M}q\xea)\x829>\xfdc\x90Nc\x93\x87L\x12\xf0\x94\xb2\x1e\xf6h\x7f\xbf\x12\x14V\xe2\xa5\x85\x9f}\xb8\x8d\x85\xc8P\x8b\x9cF\xfb\xaa\x9eO\xcf\xa1~!wc\xd8\xd0XA\xa6d\xa6\x7fqu\x95\x91\xc8\xfc\x0e)\x84\xb1\x9a\xbeX\xeb\x10\x9a\x19O\nI\x9cG\xbc\x94T\xbbJ'?\x8e\xfaU\xf3\x85\xdcI\xd5\x88_BU\xa1\xe1\x1cX2C\x03Y\xd2\xd4*\xd3\xeb\xcf\x7ff'\x96vE\xe6\x98^\x994_\xe0\x1ch\xb6\x16NA\xdc|\xbeJ\x93U6\x86B\x03\xff\xe46\xa6|PhZ\xd6P\x01\xa7\x8a\x0b#\xbd\x0f\xea\xc7\x88\x060:`\xa4\xcc\xd0\xfaw\x1d\x97\x06&\x0b\xf0\x15\xe8,\xc0\xd1\x9b\x96\x11\x04:\xde\x19\xd5S)\x84t\xf1\xe4,3\xcf\nm9R2s\\\x88\xc4\xc3\x19:\x98\xc0&\xa0\xd2\xcfqky\x06=\xb6\x84\x05\xe91.\x9f4\x8b1z\xb7^\x10\x9f!\x1d\x14\x96\x921\xe6\xb5\xb6Q([\xd3\xe6\x99\x87}f\x1f\x93OR5\xe3.\x05\xdfTg\x18\xb5\x05\xa3&d\x98\x0eh\xea\x80\xef\x05\xfc\x8c\x84Fl\x8f2\xe2\xc3\x14\xbd\x944\xcb\xb4T\xf2-J\xc3\x9e)\x85\x11S\xef\xdd\xc01L\x8f\xe0fs\xd3\x81\xc5\xe4\xa6n\xd8s\x83\x811\x9b\\\xee\xc0\xad\xf7\xa9\xee\x8f\xf8\xd0\x18 \n\xdf\x88\xb0?\xa3\xf0\xcat=\xa5\x9d\\\xa21\x87\\\xb2\xd9|\xb5.\x96N\xcd\x96\x8c\x02^\x9a\x81e\xc3\xe0\xfeA\xb77\x02\xba\xdag.\xac0\xa9&z4\x05E\x9a\xd2\x03\x10\xfc\x1aK\x13\xd4\xc9\xaa^Fp\xca&C\xb7\x9e\xd2 P\xbbWs\x8f\"\x0f\xae\xa4P\x9a\xa7G\xfa\xf3x\xfa\x89\xc5F\xf8w\xd2\xa9t\xa8\xc6\xe81\x86\"w\x19\x96\xa5\x7f\xf8>\xa0?\xf8:'\x1e\xc3*\xf4\x17b\x1eu\xfc\x12M\xd1\x13_\xf8\x0c\xb8\x94\xa8\xb4\x7f\x7f\xa8*n\" \xd4\xba\xd0-\xdc|\xb5\x00~8h\xce~\x0cj\xdd2\x16\x8d\x87_\x17\xd2\xf1kHg!\x90\x0e\xdb5\xe5\xf2\x90q\xd0T\xc5A\x0c\xdel\xe1\xe39.\xaf\xe9\x12mi\xde9\n\xb6\xf1\x0d\xd8\x86=\xb7e$F\xf9\xbb\xba~\x8c\xe2\xbd\x15\xf3\x81\x99\xd1?cqG\xcbj\xb0\xd3rM\xec\xb4t`\xd5\x07;-;\xb1\xd3\xbc\xc4NK\xc7\x85;\x86\x9d\xee\xe0\x18\x96GpG\xb1\xd3|rW\xc7Nw\x06\xecT\xeb\xd0\xbc\xd7\xfe\xe7{c\xea\xc2B \x81\x9b\xba\xfe\x9c.\xfe:u\xfch&\xb8\xa6Gc\x0bD\x90\x12\x0c\x8d\xc9\xad\xca\xa4i\xf0'\xe8&M%\xb1\xd3\x81\xe3\x9d\xdf-\xaf\x93HO\xe9\xa6\xebU7:\xd4\x9b\x0d\x0d\x0f\xbf\xcd\xd6m\x83C!\xa9\x0c\xd0q\xc1\x7f\x8b\xdd\xdb\xc8 \x81|\xaa\xaa\x19\x19\xd3\xbf\xdf\xb0#bt\xf5\xfe\xb0sdf\x94+E\x12\xe4f]p\n\x13r\x89\x96g\xfe\xb7\xc8\x131\x1e~cxJ\xf8\xbb~\x13\x11\x1aB\x972\x95\x1b\xa9\xechH\x13W`\xe0b\xd8lD\xe1\x11k\x7f\xc0j\xa4\x93I\xfbF\xe8\xddV\x02\xa7`m\x0d,J_u\x8c\xbf\xc6p\xe9$E\x9cUb\xe7+F\x1c\xea9C\xc4\xcb\x8a\x15I\xaf\xb8yq\xc5lU\xd6c\xacR;\x97eqM\xec\x15$\xb1\xd0E\x9a\xc4\x17\x98\x98_\xcb @\x87]\x8a\xb8\x84\x89\x82\x9e\x0b\x03\xd6\x8dY8/D=\x1a\x9f\x81\xda\x93\x87\xbaU\xf1\xa3\xc0\xd6\\\x0e\xaa\xd7\xb9\xc2\x88\xc45(\xd7\xe0Z\x9f\x80\x98\xdc\xa2\xe9r-.w f\xf8\xfe\xb6\x07\xfb\x9d\x9b\\\xb7kj\xa6\xceJ\x98\xd8\x97~\x1c'9\xd0\x86\x11\xc5%)\x14q\x19sH\xbb[\xbe\xcb\xa0\x1a^\x1f\xcaxyt@\xfb\xa0\x81@P\x10\x91b\x04_\xba_S\xb9\"\xe6\xfb\xdb\\\xdd\x9ch\x19\xab\x99c\xe5\xfe\xf02\x9d\xd0\xec\xe3\xc9\xf4\x87x.\x89\x93\xa8>\x04\xdd\x0c\xd9\x03\x17B1 g\xed\xc3\xa9\xe7\x8c\xb9\x06\xa0\xb5\x18\x0d\xab;M\xf2\x99\x16f\xab\x18\xff\xf7\xc3\x8cr\xa8\x98X\xe6\xfe\xbeK\xceT\xc6\xd6\xe6Lm\xccX*\xd2dj\x1b\x10|\x048\xca\xc7\xa5\x9c'\xed\x92\xf30S\xef\xfb{a\x06\xde\xc4\x0b \xefg/\xcc\xde'\xf9\x82EcH\xdd\xda\x0b\x06\x8a>\x04K7=W\xf5An\x83\x0b\x93\xfb4\xa1\xee\x04NBpjbB\xc9\x079\xd5o\xad\x99\x94\xac\x88\xdfo\xdd0\xcf\x1e\xf5\xe8\xc6\xa5\x133\xda;f^\xd61lb\xd4L\xccP\x85\xc5\\\xefL\xcf\xc1\xe6F\xf4[e\x81\x1a\xcby1\x18/\x8c\x83\xa8\x98\x12\xa1\x95\xe9p\x1fG\xef\xe0\xb2\xad\xda\xeb\x07\xae\xc9\xed[S\xb3\\\x9bEM\xee\xe5\xfe\x9c\x9b[\xd3_O\x9eP\x1e>\xa4\x8b\x88\x89\x92\xe9O<\x13M!a\x1f\xd0\xaeJkJ\x86ofa\x94\x93\xd4n]\x91PAn\x8b\xc7J.\xb1v\xaeV*\xad\x93\xe6\x84i\xa2\x16r\xf3\x15\x9c\x0e\x14:\x88\xdf\xf7\xf7hK\xc6\xde/WQ\x18\x84,\x1dIy#\x97 _\xa5\x12\xe5\x8d\xae\x8e\x9e3\x85\xb2A/J\xfc\xe9\xbfs [Y\xe0G~jq1\xbex%\xd3Y\x89m]\xa0s&\xbac\xc6I\xbc\xc5\xbeA\x84LO\xbc|A\xa0\xec\x7f\x14f\x18\x07\xdf\x87,X\x90\xa5\xef\xc1\x1b\xf1*%Y\x12\xdd\xd0\x13!\x99AV\x04\x0b\xe6\xed\xdf\x08l\xe3Y\xcdIe\x86=\xc9r\x15Fd\xfa\xa6\x82\x9c\xcf]\x08,\xd1\x01\xcb\x85\xc9\xa5\xfa\xc1\xd9\xd7\xe6\x07\x02\x9e\xda\x0f(m\xf9\xce_)\x14v\x03\x9etK\xf2\x1d\xa4\xd5X\xd0\x8b\x01k\xac\x95\xdf\xe3{\xf2kA\xe2\x80\x98K,\xfd\xd5\ns\x1f\x98\n\xcc\xfc(\xba\xf6\x83/c9h\x97\xb8\x1e\x94H\xf3\xd0q\xea\x8b+\x9e\xb0\xadx9\xc1m\x8af\x16\x9eh\xa9z\xa6\xf1\x15m6GQ9a\xa8\\\xe7\xa7|\x84q\xed\xf3#\x16,v\xe8H2'R!!U\xae\x08Fj\xd2\xd6\xae\x16\xc3\x9aP\xc9Jz\x15\xde\xab\xb3\xd7\xcf?\xbf\xbd\x10\xfa\x95R\xc1\xdf\xb6\"\xc4j\xa8w3\xbb\x0d1\xb2\x9c:h\x1d\xdc\x03?#0\x1ck\xe7\x03\x83'\x8a~)p\x9c\x0c\x0c1\x02\x0c\xf1\x96\xb1\x9d\x91\xb9\x1d\xb9b\xb5)\xd5G\\\\\x86\xa6\x04\xd3\xa2\xfd\xa6\x86d~N\x93x\x0e\xcc3\x141\x88h\x12\xd7\xcf9\xc3&|\x16J\xe9D\x9b\xba!\xe4y.SA\x0e\xa2\x83u^{\x92;.l\x90^\xf1_\xc49+[K\x17\n\xa2R\xf0\xe6\xf9\x8a\x04\xe1,$\xd3\x12-\"C\xcfQc\x06v\x92RD\x19\xc6\xf3\x88\xf0\x11r_]\x07\x83\xc6\xfba,pn\xed\xad\xa72\xb5k\x84\xb1\xd1\x0d#\\w\x18\x7f{\xfe\xee-\xc7\xde\xb51P\xbci\x1a\x81\xf4\xae\xd1\x7f\xb1\x8f\xc9-\x14\xb6\xe6\xdcb\xc7\xa7V\xaa#\xf0\xf8X\xf5\x05\xac \x93\xbb\xad1\xd7$\xf6\x86\xc3\x9a\x19\xdf\xa1\x96\x96K\xda\xe4\x956\x81'\xf4\xa5\x1aXLn+\xd4\x1e+\xef>\x9f_\\}>?\xbb\xfa\xf8\xe9\xc3\xc7\xb3O\x17\x7f\x1b\xeb\x92\xa1\xfe\xf5\xf9\xf9\xd5\x8b\x0f\x1f\xde\x9e=\x7f\x7f\xf5\xd3\xf3\xb7\x9f\xcf\xc6\xb0\xab/\xf5\xfe\xf3\xbb\xb3Oo^\x8aR\x87\xfaR\x1f?\x9c\xbfA\xd6@)>2\xd4\xfa\xe1\xa7\xb3Oo?<\x7fu\xf6J\xed\xc6\xce\xa8\xf9E\x18\xd3\x85\xf1\xea\xc3;\xc1\x10\xbfD\x19[\x97\xf3\x12H\xb2\xd1P\x7f:\x02'v\x89\xc7\xab\x0e z8\x98NS\xe0\xe2h\xe2\xbd\xfa\xf0\xeey\x9e\xa7\xe1u\x91\x93\xf7\xfe\x92d+?\xe8\xfe6\xd3\x7f\xdb\xf5Y$>\x13\x00\xe8\xf5U \xbez\xc7\xe3\x9d\xbc#\xf9\"\x99\xf2\xef\xf4\x98\xba\x94W\xccP^\xe1\x85\xd9\xcb\"\xcb\x93e\xd9_J\x18\x16\xdeU\xe3\xb9\xb0\x97\xe4^U\x9a/\x9d\x16\xba\x1f\xf0`]\x95s\xa0\xea\xd7fL\x12f[\xbb\x87\x96\x0b\xb3\x16co\xdaw\xa4\xcd\xbc&Y\x98\x877\xc4X\xa7\x1e\xcb\xf5\xab\xfc\xc3\x0dI)\x07E\xa6\xc6\xe1\x9b\x90b\x93\xc9\x95/\xc3F\x06~\xf2/<\x05\xe2\xb0 \xf8L\x1e\xa5x\xa6\xefd\x19*(\xb5\xad\xbd\x01\xee?\x174[\xb4ms\x03\xdf\x9a7\xe8\x9c>\xeb\x08[\xb5\xf0j{\x02N\x14sA\xf9\xd2\xbbi\x00:\x96k\xb1\x88\xad\xd4\x8e;\x0es|\xcd(\xaf\x17\x19\xbf\x92w\x1b\x9c@\xc4\xca\x07\xc6\xf2\xf5\xcd\x06'\x10\xb0/dD7\x99]6lv\xc4\xa5\xe1\xd7jO4\xbeq\xd6\xf8\xf9\xd6\x7f\\\xf9[\xbf\xfd\xf2K1\x18\xbc\x1cl\xe1\xdfW\xfb\xec\xcf!\xbb}\xcdn_\xb3\xdb\xd1\xeb\xd7\xf4\xcf\xce\x01+\xbcs\xf0\x8a\xfdyMo\x87\xaf\xf1\xedh0x\xb9\xc5\xfe\xbe\xc2?\xac\xf0hx\x88o_\x0e\xd8\xed\xeb3z\xbb3\x18\x0c\xe9\xed\xab\x03\xfc\xf6\xf5S\xf6\xf6\xf5\xab\x97x\xfb\xea5\xbb}\xfd\xfa\x95&|Is\x05\xbdyu\xf5\xfc\xe2\xe2\xd3\x9b\x17\x9f/\xce\xae\xde?\x7fw6\x06k\xea\xe7\xfeVJ\xfc \x0f\xa7Vs\xfb}\xfa\xf0\xe1\xa2\xed\xa34Ir\xcdg\xf5/\xae\xce/\x9e\x7f\xba\xb8z\xf9\xd7\xe7\x9f\xb4F\x85Ji^\x0e6\xc1\xfa\xe5\x97-o\xb0\xf5\x14\x81\xfc\xe2\x00\xa19\xe0\xc0\xddg\xd0\xdcy\xcd\xa0\xb9;\xd0t\xa3Z\x1cz\xae\x1e]\x0d\xb3,d\x8e\xd2\xf1\xd4O\xa7\x0c\xff\xeb\x91y\xcbQ=n\xa4\x16\x00\xb4DV\xca\xf7\xa1\xb3\xea\xfa \xa6\xfai'\x13jj!3\xe2\xc00\xf5\x03\xb7\xbd\xb2I~\xe9\xc8\nr\x8d\xd6\x15\x8c\xa8B|3ln7\x13)\x8a\xe6\xcdFS\xcf\xef\xceO\x1c\x1c\xee\xd4\x18\x8a\x1df\xa3\xfc\xd4\xc0W4x\n\x8a\xef\xfc`\xf1\x89\xcc2.\xe1Bi\xc7\x157\x9d\xe264:a\x87\x9e\xcfX&E\x9cK\xf6\xf1\xea\xd8P\x98\x1f\xa2\xb5\x94^.V eZ\xaf\xc6\xae\x7fi\x94\xe7\x10\xb5\xdf\x92\xce\xa7\xf9\xd2K\xc9\x8cI\x91\xe7$\xffD7\xff;\xda\xea'\xe2O\xefl\xc7#\xf1\xaf\x05)\x08z\x04R\xcc\xdc\x86_\xe7$\xffk\x92\xe5\xef\x93i\xe7\x8e(\xbb*}c\xb7:6\x17q+P\xb5\x8dxSRN+3\xb1S&\x94>S+n\x08\xb0\xeb\xfd\xe0\xf1\xf3Z'74M+\xe3\x8c\x94^4'\x12\x95:(T\xc6\xc4\x13!\x97/_\x05I\x9c\x93\xafF\xdfdM\n\x10\x90\xd6S\xeae\x8b\xa4\x88\xa6\x9fWS?'\x08\x14_\x9ft\x18\xf0\xacA-B\x1d\x82\xbe\xc3\xec1\xeb \xb0\xc5\xa8]\xf6\xd5\xe3\x16`\xdcc\x016\x11P\xdbT\xadH:K\xd2%\x1b\xef\x9b\xd9{\x12\x90,\xf3\xd3\xbb~\xfe\xcb\xc4\xbb*\xf0\xcb\x17~\x1e,\x98\x86\x8f'\x8a\xc51\x9ajo\xac\x9f\nk\xe81`\xf8=0\xe0\xc8\x10\xedo\xb8\xfbT\xab?\x1b\x19\xfc6w\xf6\xd4\xf2\x183\xad2\x08\x91\"YN\x93\xa0\x10\xd3\xab J'^{\xe2\xc7\xbb\x84)q\xf4\xb5\xc5\xfeM8\xc7h\x9erf\xe5\x93\xe6{\xaf\xc8H\xfa|\xce\x1b\xde\xfe\xe5\xfal:'\xbfl\xff2\xdd\xf6r\x92\xe5\xb6\xa6\xa0\xf6\x1c\xd0\xf8x\xd0\x8d\xd7\xf0\xa9\x00\xd9\x82\xcc\x8b\x93\xa9\xc1:*\xe69V\x995\xa7~W\x8b8\xedz\x8e\xa5\x16?\x9e\xc7\xb1\x8cK:\x00\xc3Y\xb2,h\x93\xf4\xd2\xc5\x1d\xa5\xd9\xbch\xc5Z\xed\xb6E\xbe\x8c0\x8a\x1c\xda\x8e\xd1;\x07\xc6\xd2{\x8aP(\x1c}V\x00\xf1\x8bi\xfd\xd6\xd6]\x84Q)\xbbv\xd2p\xc8=\x16(\xdc\xf0?\x94db\x02\\\xdd\x0b:\xf7\x95\xd9B\xed=\xa5\xe1\xea2\x0bf\xeb\xc1\x03\xeb\x89\x92\x82a\xf9\xfc\xe9\x0d\xc6\x83\xd2C\xe1\x1c+\x10\x85\x84\xd2\x94A\x8e\xb7\xaf>\xbc\x93\x7f\xb3\xca\xc5\xddE\xf2\x85\xc4\xec\xc6\xcf\xfd\x8b\xd4\x8f\xb3\x19I\xdf\xe4d\x89\x0f_\x87\xbcQ\xba\x9d\x9fG\xd1\xcb$\x8a\x18\xc7\x8bO\x94\xdb\xd7I\xba\x14\x0e\xca\xf4\x9e\x85t\x16O\xde\x91i\xe8ce\xef\xc2%\x1e\x80\xcc\x8d\x9b\x9e\x03S\x8a\xce\xde\xf9+\x97\xfe\xc52\x1f\xfd\x90\x8e\xe1\xd7\x82d\xac\xeb\x1f\xa3b\x1e\xc6\xfc\x0f\xfb\xf2\xfc\xa7\xbf\xbc\xc5\xb5\x8e\x05\xce\x7f\xfa\x0b#\\\xc5\xddG?_\x9c\x93yy\x9b\x84q.n$(\x9c\xff\xf4\x176\xee$e\x83f\xd15^\x14\xb3\x99\xa8\x8b\x82\xfb|A\x08\xfb\x9c\xa2\xa1\x8b\xd4\x0f\xbe\xbc\xe4\x00/\x1f\xb0\xbb\xa4\x08\xb0G\x96\x88\xe7\xe1\xd2y\xcc\x18\x99\x93\xa1(Dl\xd1L\x1f\xb4\x93\xee\xccb\x92iv&\xddK)\xdd\x89\x8d73\xe0\xfb-\xa8,G\x15t\x81\xce\x1b3\xee\x8a\x94`\xc8Q\x17\"\xba\x10'\xd1%\xdd\xee\x1e\xc2\xb5c\xcd\xab8\x91\xa1\xa62\xbcI\x17\x024\x1c\xe9\xb1\x08T\xe2eQ\x18\x10\xfb\xd0\x85\xada\x97!\xafi\xbb\x9b[\xeb\xce3\xd5\x99c\xea{\x04\xc7\xeem\xd8o$xj\xee \xf6\x10\x9e\xd0s\xbf\xb9\\\xea\xee\x07\xf6\xc8PNrd\xb0w\x0de\xb8\xbb\x84\xa2;_\x0fAJ\xb8pG\xe5\xbd8\x0f\xb7o\x8a\xd8\xde;xp\xe5\xe5\xe3B\xd2\xb5\x84\x8c\x1d\xdc\x1d8\xdeL\xd7\xc3=},\xe6&\xee\xee\xda z&\x82E\x99M\xd0\x1e%\xe6&\xc6D\xf6\xc9\x08\xb9\xf6\x93\xa0l\xac\xb92T\x97\x93\xbe3\xb9&\xa4\xba\x98\xf4\xdd\xbd=\xc7\xde\x18\xd4D\x95\xa3\x9d\x03\x87\xc7\xedq\xc1jF\xcf\xd1\x9bG^QR\x8eG\xfb!\xc2\xfe\xee\xaa\x9e\x82\xe3\xa1%\x06\x8f\xb0\xb6\x12\xd1\xc2\xae4>\xfee\xb8\xba\xabPooRK\xfe}\xaa\xa5\xa8\x10\xa8<]L\xe3\xf54\x895\xe1\x18\x90\xdbB\xff\xdb\x9c\xf1Wbl\x9b'\xa5\xaf\x84n\x8e\xcd\xaeK\xbc\x9d\xa1qn\x1d\xed\xe4\xfe\x13!\xf5\x162n#\xb6\x87\x83\xa1c\x1b\xa7\x9a\xb7{@\x11\xbb>\xae\xef\xef\x0f.X~#\x8c/\xf4\n\xe5+7\xd1x\xa9\x88\xe7\x1c\xcf_\x07\xe8\xfd\xe0\xda\x9aQ|c\xa3!Vn\xcf>\xadU\x8ftat#\x89\xddk6e\xb3(\xdd\x01\xc0\x02\xcb\x86\xf1#\x17\x1c\x81g0@\x1e#ET\xf1t08\x18>}:\xda\xdb=\xd8\x1d<}:\xa4,\xc7\x9a4\xfd\xb7d\xb5lM\xa1\x07[0d\xe6\xc0\xd6\xbb0fVs(\x12\x06B\xc9\x0f\xf8\x17\x0cyFi\x90#\xb8 \xb30\x87E\x9e\xaf\xc6\xdb\xdb3? \xd7I\xf2\xc5\x9b\x87\xf9\xa2\xb8\xf6\xc2d\x1b\x15\x99\xdb\xd3$\xc8\xb6\xf1\xe3\xad) \x92)ar\x9f\xd30\xbe\xf1\xd3\xd0\x8f\xf3\x13\xac\xb2\x96:\xa6L\x1bHQ\x8e\xf5\xc4O\xe7\xd9\xe4\x92\x95\x8bi\x15\x9f?\xbd\xa9d\xdfRb\x19\xd8\x84\xa1\xeao\xc4\xea\xc0Qc\xae\xb6\"\x8a`I\xb2\xcc\x9f\x13t\xb4\xcb\x08>\x8f\x93xk)F<%7@\xe2\x9b0Mb\x14\xaf\xd2\x8f\xf1C\x1cG\x06~<\x05\x7f:\x0d)\x80\xfd\x08\x16$Z\xcd\x8a\x08n\xfd4\x0e\xe3y\xe6)n27<,d\x95oHM \xc0\xa8\xbc\x04\x85d\x14\xf6o\x04p\xe0\xa70\x89\x90\x9d\xc2\x8c\xb8\xb3\xd4_\x92\xec\"\xf9\x98\xac\xe0\x84\xceT\xf2\xc8\x8d\xd1\x87\xbe\xe3IC)]CJ\xb7\xeb\x1c\xc9\xd3\xf5Vk\x8bI\xa7x\x03\xedj\xaa\x86\xf7\x998\x03\x1a\x91\x04\xa1\x81\xf4r\xe1\x1d\xd5\xba+\xa4\xc6j.Up\xdat\xb1\x1aW)L\xf0\xd9%\x93\x94\xc6\xcd\xc8\xc0\xd887T\xe9\xdb\xbcu\xcd\xca\x9b\x932\xf2z\xdf\xa3\xdc\xb5_\xa5\x1a\xaf7\xa5\xa6\x0fi\x99\x8ee\xcdJMu2}M\xbf\xaa4\xda\x0bm\xadl\xd6{\xd7\xaaqU\xd7\xd6\x8aa\x0f\xfa\xd7\x8a\xc5;k]\x1b\x9e\xb2\xab\xa2\xae\xc2Od~\xf6u\xd5\xb7\xb6r\x8d\xb2\xcf:\x16i\x0f\xa7F\xb9\xee\xfe\x8e\x8dR\x1b\xaf\x14\x0f\x84^\xbd\xa7\x1fu\xf4\x1dq\xea\xda\x15\xe3WR\xcd\x0c\xcfIf\xe5X@\xd7\x9e0\xea\xe8\xdd\xa4(\xd5\xb9d>\xa6\xe1\x12\x0d\xfc\xfaV]\xedk\xd4\xeb\xe9P\x07\xbe\xd0l/|n\x88\xe5\xa0[\xe2P\xcf\xc4\xa7\xed?\x93O1\x970~S\x16{p\xca\x185\xb1\xbd\xb7\xebx\xec\xbd\x9e\n]\xdf\xfdWs\x8e\xe1\x04J\xc1K9'#\x0e\xd9\xbf=\x7f\xf7\xf6\xeck@V\xfcx\xc5\x97)\xf13\x9cY\xc2\x1f,\xfd\xf4\x0b\x0b\xfc\xc0n9\xe9pR%v\xa1\xe5)\xcc\xec\"\xfe\x12'\xb71\xb0g\x8e\xe5\xc0&/\x85\x95\x9c\x82\xc52\xfe\x89'\xe5)f\xe3\x99b9n\xd9\xe5U^\xa4\xe4<\xf7\x83/\x17\xa9\x8fQ\xc6\x0codk\x19)\xee\x01\xad\x10\x9fe\xb4$\x86\x0d\x14\xc4\x87\xc3\x9f\xd1.K\xe9\xcd\xca_iK|\x0b\xd6 9\xedOj\x8c\xbb\x90\xd6_\x8a\xb1\xb6\xae\xec\x1b9\x1b\x01\xce\xd3&Xc\xd0G\x0c\xc9)e\xd79 .lT\xc1\xfcq\x1e0\xe1\x07\xa3\nM\xd3\xe1(\xa1\xb4\xd6\x8e\x83\xd3%\x8884E\x91\xa0\xd3\x94*>$\xa5\xff\xc8$\xb6wv\x07\x8e\"h\x15\xbe\x83\xf8\xfe`o\x88\x96W\x07{#\xb5\\\xe5j\x82\xe5vx\xb9]\xfew\x8f\xff\xddw$w\xf1G\xecN\xf1T\xe6\xaat\xe9:b{\xd4Hu\x11r\x13\x08\xf5\xb90\x8dP\xa5\\E\x15\x103\xf5\xe6L\x14NX\x0c\xaf&\x92\xc8L\xd2-\xd1\xd3\xb61\xaaeso\x1af+\xca\xc82O\x0fo\xb5\xf032\xfdD\xe6a\x963\x05\x08Z\xeeNbs\x14\x89\xc2&\x8d\xa0\xec\x0f\xf4Y\xdc\xb4\nJ\x99\xaa\xdd\xbb\x12\xcd\x8a\xa1\xa2\x01\x8b\xf6\x05\x8b\x1c/\xbdy\xc3\xcf\xb6\xc6'\xe5\x0b\x17\xeaq\x86\x9a@\xd4\x04\xd4\x14\xe1\xfaz\xc1\x03\xa5\xfc^\x9e\xfa7$\xcd\xc8\xc5m\xf2\x91\x96\xb3\x89w\x95\xfb\xe9\x9c\xe4\xb4+.dJN\x9bf?\x02\xbd\x18}\xad\xbe\x98\xe6\x97\xd9\x99\xc8\x1dj\x14\x03!\x9e\xa3|=\xa6\xd6@\x05\xb8\x00$\xd3M7#X\xd2K3\xfaX\x1d1@]\xe6\xd1\x1c\xff\xcc\xb4H\xd1\xc8\x85\x99s)PH\x95\xf1\xb7-\xef\xce\x8f\xf5 \xa1\xfb\x9a\xafj\xcd\xc0\x1f\xb3\x84\x93o[\xc2\xd0 \xc8U\xdf\x05\xadB\x80\x16\x9a\xa9\x0bw\xa0I\xc6\x04\x1c\xae\xd3\x86\xce\xd7\x0f\x82bYD~^.\x85W\xbcM\x92u\x19pb\xf0\x83\xa8\xd5R\xb2\xad\xfa\xf3/\xe1\xea\x02;\xde\xab!U\x15nj\xe8U\x98\x92 _s\x14\xab\x9e\x95\x9f\xc59I\xdf\x12\xff\xc6\x00\xa6\xd2\xb4W\xd7R\xb5\xed\xaajlf\xcd;\xe3 ]L\xabF\x7fRO\xf1\xe97\x1f\x8d\x86\x93Q\x1fy\xaeyb\xf2\x88\xceC\xdd\xc9\xa8;I3\xc3I\x1aUI\xa6~Ws0a\xcc\xf9\x86\xc9\xd1\xacK\x8c\x04b+\xd9\xa1G\xbe\x92\xa0\xc8\xa5y{\x13\x7fH\xa7\x84\xd3\xedh\xfb\x95}$i\x86\x1b?\xb7\x193&\x13\x94\"\x0f\x91\xdd\xd8\xdd\xf5^\xf5f\x8f\x11\x81n\x0cZ+\xeb\xcd\xb9\xb3\xca\x86\xad\x95-\xfaVfy(\xe9\xf4\xae\xd2$A\x93\xaa7\xaf\xea\xf5\xd6\x17\xd2M\x03\xadH\x1e\x00\xcdF\xd8\xcb\xb3\x1b\x12\xe7\xccl\x01\xe7a\x0c\x89\xa7\x7f\xd3D\xf4\x8dr\xd9\x0b\xee\xde\xa7\xa9\x83\xbfk\x9d\xb2\xa2\xa4\xdb\xfa\x19\x06ku\xe51S@ZOw-\xfcR<\xd6\x1cD7\xdce`\xd1H\xf4I/;\x9a\xe4,\xfbh\xc4\"\x81\xfd\xfe\xe08\x93\x10#H\xe8\xeb\xc2\x94_\x8d\xf3\x81\xd9\xebd\xda0b>\x1a|z\xd3p\xfa\xb1\x1a\xbc\xeeY \x866\x00J\x84o\x0f\xa3|\xa1I\x8b\xb4=\xa3\xe4C\x9f9\x00)6\x84v1\x8b\x0b\x835XI\xfc2\n\x83/\x96>\x90B\xa3\xdcK\xc6\xe6\xf6(\xfe*)\xae#\xd2\xb7r\xa9t\xff&\xde%EF^%\xb7\xf1:e\xd7\xac\xfe]r\xb3V\xd95\xab\xff\xbc\xea_\xb2\xbbj\x90\xf4t\xf6\x06\x92\x8a\xfeu\xc4\x12\xbcbT\xc0\xdc\x05\xeb\xba\xc8s\xb6Cy2H+\x8cWE.?\xc8\xd0\x14K~\x92\x93\xaf\xb9\x9f\x12\x9f?sZ\xbc\xa8[#s\x88K\xf4\xb2\xe98\x05\xa0\xea \xc4\x85\x87s\xe3\xcd\x03\xb3\xceV]'DDJ\xf59\x8bY\xed\xc8b:=\xeeH\x8dx\xa8T\xf2SZ~\x92^\xb6a\x00\x96/\xe8\x11H`=\xb4\xc5\xf9\x8a\xdb0\x8a^\xd5Z4=g\xed\x9bG\xae\xc7AX\x1dO\x81\x94N(tz\x0c\xfey\x14\x95lC\x17\xd5)\x98<=\xe0\xeby\xbc\x15\x12[\\\x14O6\xfcpc\xb4\x82\x89&\xf1\xe5$\xbflC\x8ab\xfcf\xf0\xeb\xc4\x06\xe2B\xf8\xa4\x86i\xd0=\xb7\xb9\xa1<\x87)\xef`\x8f=\xf1\xa0J\x90\xf2\xd4\xe7\xc7{\x7f\xca\xbb\x84g\xe8\xf2\xa3r\xc5H\x83\x9a\xfd\xa1\xdff\x7f(.a\x87\xe8O2\x03|p^\xba@O \xda\xc8\xab\x8dF\x1e\x83\x19\xf2\xccv8D.7\xa4\\\x91~q4\x11K\xf3 \xdf\xdea+\xbc\x99\xebU\x13\xdefR;\xc0\xbe\x05\x1a.X!\xba\xd2$ Y\x86U\xffo\xdaHW\xf5b\xcf\x04M\xe8\x94\xfc\x01d\x88%\xe1\x14V0\x86\xa9\xe32\x80Q\xaa\x0c\x93\xb1\xfa^JP\xd5\xfd\xd2/\xe6\x8b\x9c\xe9\xc2[\xbbyu\xb5*\xd29\xe90\x81\x89*S\x0fc=\x12\x91\xf4\xc2\x8f\xbf\xf4\xcb\x8f\x1d\xd5\xeb,\xef\x0c,!\x0b\x01\xf0\x8d,a#\x85\x97` \xd5$A\xfa\xe8:7!\xb9\xed\x9aK(\x83\xe9\xd1\xd2U\xd0n\xbc\xd5\xaf~1\xfd\x89\x16e\x82\xf0\x99\xf4n\xc3x\x9a\xdc2\xcb\x81\xb2b\x8d\x87%H\x87P\xeea\xe2\x85W\xdcKM_\xb8<\x0eO!\x16!o\x7f\n\xc9-\xc6t\xe5\xfe'?\xb3\xc6\xc7\xc0z\xd1\xdc\x85MffJr?\x8c\xfa\x00\xac\x04\x12\xfb\x84\xb6\xdb\x199\xbb5B\xa6\x0b\x89\xda\x16oCRZIy@\x1bf\xa3\xf8\x85\xe7\x17s\n5\xcc\xa3e\xfb\xcc\x0bT^\x94\xfe\xb7/J\xb5\x93\xcb\xe4\xa6\x13_\x10\xcc\xa7\x1e\xe4o\xe2\x9c\xa4\xb1\x1f \x01\x1d\xdd&\xa8El\xdb\xae=\xc4R\xe5t\xe8\x9bi\xab}\xe1w\"\xd3\xbaF\x9e{\xff\xae\xdd\x90\x92\xbe\xde$#1C\xcah\xd7\xac\xc7?\xbdTS8\xa9\xd5\xf7\xdb?nH\x8d\xbcLVwi8_\xe4`\x07\x0e\x8c\x06\xc3}\xf872\x85\x9f\xfd\xdcT\xec\xefdz\xcb\xea\xabl\xc5\x02\xbaz\xd1E\xb0,\xff\xe3\xf6\xffQ}\xdc0\x1f(\xfa\xcd\x05u\xab\xd6:)\xa9D\xbd,\x91G3t\x02\xc8\x14\x16\xe1\xd9\xbe\xa5\x10\x17\xcdh\x95-\xe1,\xc4\x86\xafl\xeat\xf49plo\xcc\x9f\x0c\x92\x90\x85\xcbaR3Q\xa5$\x958\x81P1Y8\x81\xd0\x01\xc2\x9c\xfe\xda\xa8\xb32}L\xddb+u\xca\xaf\x13\xcf_\xad\xa2;\x9eP\xa9\x95\xbf,+\xaby\xc3\x86z\x82O\\\xe5D`F\xa0\xd4\x11\xc6\xc6\xa9\xc8\xcb\x93rG\x17\xde\x1f\xff\x9b\xe9G\xc2\xf2\xceZ\xd0\x1aKR\xc6c\xacy\x814\xeai0\x92\xd2\x85\x0eGk\xd7\xb4\xa2-x\xb2\x9e\x9e\xfa\x81C9\xc7\xd8\xb4(\xcb\xade\xf7\x95T\x9e\x0f\xf6zV\xc8\xdc.\xb8\x0f\x8a\xe3\x9e\x1b:\xd5\xf3?\x81A\xaf\xda]\x16*\xbc\xde\x9a\xe8i\xea\xc7\xd3diw\xfan\x18\xbak1\xf36\xdb\xf2\x82$\x0e\xfc\xdc\xae\x85\xc4\xc74\xc6cJeX\xce\x95\xe5\x82\xbd\xb9\x19\xc3&\xa4Ne\x0e\xb1\xb3\xff\xf8\xe43\x8dh\x06<\xb5e\xe39Sp\xec6\xe6\xcb\x07\x83\xd5|\x05\x8d\xdcc\xd9o\x87\x83\x81\x03\xa7\xfa\xd2\xd0-ZF\x94V\x06Y\x0d\xe9\xf2\xdd\x188.\xa46\xe5\x9d\x13\xa7\xdd\xd0\xdd\x14\x8c\\\xb6v\x7fh\xb4g\xcdInQ\\\xc1\xacW2q\xd7t\xfc\xb2\x9e\x07\x94aKR%\xdc\xb4\xc9\xf3\xcbBw\x0c^7\xe5\x0cE\xb2i\x0f_P\"\xf1\x11KTsP\x89\"\xeb\x9a\x17\xc7e\xce\x88F\\\x9f>=\xc1\x9d\x11\x9002l\x9aY\x94$iW\xef\x0c]\x0b\xb3\xf7\xfe{\xf4\x81\xd9\xc44\n\x03\xe6\x12\xc3v}\nc\x88\xd7O\xe8!\xe1\xa4Q\xaf\x87J\xe3>\xc3\x99\xa6\x91\x1b\xb4\xc4qn\xf4\xc1 \\R\xcaK\xddh\x98\xd6\x88\xcb\xd4\x93\x9d\xfe=\xd1\xb0n\x9aO\xea\x9d\xa91p\xf2\xa5\xf0\x8c\xba\x05\xd9\xe7\x0c&\xd5\xa9[\x92ofC\x08X\xe3\xd05\xef\x97\x7f\xa0\xe7\xaa\xd9Gr_\x9f\xc8b\xcf\xe4\xc3\xd9\x89\x0eR;Y?\xffZ\x97\x98gO/\xe69\xd0Iy\x98\x87Y\xf3\\\xc4A\xd5\x1f3\xbd\xff\xb0;\xc7\x9e\xd9\x14.cF<\x1ao[\x96\x94\xdeGk%\xcb\x82 \xb9\xd4\xb9\xf7\xa2\\\x7f`\xf0\x06\x8f\x1a\x11\xd8C\xb3\xe7\x1cH\x82']8`!^\x9ad\x97]\x84\xaaT\\\xe3%\xe72\xef<6\xa6f\x02\x0ds\xc21X\x1f,\xd8\x84\xcdMM\xf2oq\xddj\x93l@\xe3\xdc\xc1'\xad\x92\xf9\x99H\xeb\xa2\x8dfB\xaf\x7f?\xfb\xdb\x184\xf6#\xef\xcf\xce^\xe9\xd3\x17\xce\xfc,\xffw\xa2\x86\x873mg\xcc\x1a\x90\xc8A5\xb5n\x0b\xcc[]\x9f\xb6\xf2\x14\xacs\xca\xfdX\x1f\xd1X\x9f\x98e\x1d\x1b!NOk\x04a,\x97\xd5:\xf4\xdaj\x97{lT\xd4\x9bu\xd6R6P]_\xc4\xa5\x9fLq\x86N\xd2K/lNl\x13\xf2s\x92\xffL\xfc/\xeb@\xfeQ\x00\xd90\x84H\x84&<6\x86\x7f\x088zi\x05\x92\xf8uJ\xc8o\x9dBn\xa8*\x8f\xd0\x1e\xd4\xa3\x8b\x9b\xfe\xc2\xd8vO\x9e\x80\x00\x13\xfd\x1d\xd8u\xb6K\\:\x02\xb0\x8d6c\xfc\xee\xef\x0fe\xb8\xe77\xd9Y\x19yC\xfb\xf5Z\xb4\xc9\xef\xdf\"]\xd6W\xadw{\xcf]\xb0\xaa\xc8F\x0d\xf7w\x8e\xf2\xe4xG\x947\xf7^\xbe={\xfe\xe9\xea\xc5\xdfPs\x847\xf8\xeb\xfd\xd9\xcfW\xcf?_\xfc\xf5\xea\xecS\xf5\xe0\xfc\xe3\xd9K\xfa\xe0\xea\xc5\xf3\x8b\x97\x7fm<.\x1f\\\xfc\xf5\xd3\x87\x9f\xdfkJV/J\xc5\x05\xedCLn/(}\x1b\x9f\xa5\xed\x9eg|u4\x97\x0e\xc5A\xda\xa8\xcd+\xff.J\xfc\xe9\xb8%\x83$\xd4\x89y\xb5C\x18/\xf3[z\xa59@\xca^\x91\x8e^\x9c\xafH\xf0\x8d@\xc9\xbe\xbd\xf9o\x06\x81&\xbe^\xef>\xbf\xba\xa6;\xd7j2\x01\x0d\xc4]~\x9c\xadH\xa0i92\x1f\x02\x8dO\xb5\xad\x06\xbac\xa5\xfc\xd4/\xf2\x85\xa6\xd5Y\xedT\xc2\xd2\xb8\x80\x95b\xab\xaa\x18;\xc9\xaa\x92W\xd7w\xcc-\xb37_\xb6\xaf2X\\\xc6\xaeK\xdcY\xba?3\xa5\xc0\xe5\xda\xe1C\xdaH\xed\xfb{\xb4\x0fa6?\xc4\xa1\xef*\xeasMfs\x7f\xc7\xe1\xec\x96\x0b\x16s?5E\xaf\xeaE\x98H5\x0f\xf4\xee\x88\xfb\x0d\x19\x0bO\xf7?\xd03\xb0\xfb\x03\xbd\xf0e\x7f\xb0\xdb7\xdc\xb1\x10nli\x98\xa1\x98[U\x01W\xd3\x0c0\xe6\x16W\xe2\xd6\xd7\\\x92r?c\\@\xb6s\x04\x9b\x9b9\x1cCl\x0c\xb3\x99\x1a3\\3\xafa\x92\xdb)f\xcfK'\xc3\xcbv)\"\xbd2\xd9\x0b\x98\x9f@\xa9[{\xccm\x0fO \xa9?\x9f\x13\x96\xfc\xaa\xf6p\xe1\xa3\xe5J\xfda\x86%\x8b\xbauK\xb6\xde\xdc\x0f\x07{}$c*\xd8$\x93\xd0\x13)_x\xbc\xb5u\xd4\xe4C\xb8\x94~\x12_\xb2\xfc\x83\x92\x19\xb0\xf6\xac\xd8\x1a>z\x8f\x0c\xba\x93\xd1kFS\x0d\xe4\xeaj\xea\xe7\xfe\xd5\x95\xb6_\xa9\x9d;p\n\xf1D\xc3:\xe7\x94u\x16\x8f\xc7`-\xfcla\xd1\x134\xf6\x96\xfe\xea\xd1\xe31\xb8C\xed7\xe2\xf2\x89\xf0v\x06w\xa8]\xfd\xc6\xec\x11\n\xd7\x84\xeeD \x9dlA\xde\xa5!\x85\x86.:\xc6)\xf86*\x93\x12\x9b\xe0\xba tg\x89T\xddc\x94\xb8v\xc0M\xee\xdbZ\xbd'\xde-\xb9^\xf9\xc1\x97\x8fIt7\x0b\xa3\x88\xab\xe4\xa7d\x95\x92\xa0\x99\x17\x14=\xdeW~\xbe\xc8\xb8=I\x15z\x99\x7fY\xde\x9e\xb0\xf4\xb3z\x06\x8f\xb8`\xb1dM\xda\xd8f\xb5p\x91\x9a\xf0tk\xc5>#^\xd4x\xad0\xd6\xad\xfd\x0c\xffG\xfa\xa8\x11\xc64\xfa\xd8\x9c\xad\x13\x18>R_\xab\x9a&\xd4\x07@w\xdd\xf6\x7f\xda\xa7\xe3\xc1\xfdd\xb8\xf5\xf4\xf2\x97\xe9\x8f\xce\x9f\xb7\xbb\xb6\x88\x01\xa3$\x95\xb1\x8f>\xef\xfb\xc6\x86\xfd\xff\xb3\xf7\xef}q\xe3\xc8\xe20\xfe\xff\xbe\x8a\xc2\xe7\x9c\xac=\x18\x03I&\x97\xce\xb0,\x03\x9d\x1d\xce\x06\xc8\x0f\xc8\xcc\xce\xaf\xc3\x971\xb6\xba\xdb\x1b\xb7\xddk\xab\x9b\xb0\x9b<\xaf\xfd\xf9\xa8$\xd9\xb2,\xd9\x86\xb0{.\xcf\xd7\x7f@[\xd6]\xa5RU\xa9.T9\xd3\x18\n\xc9`\xc4*{\xf2\x04\\\xd5EI\xde\xf0A\xb2\xb1\xc7M\x87\x0b\x1e]\x80xX\x80\xc0\x1f`k\x97\xff\xfa\x0f\xf4e\xcfi}\x8c\xc5\xfb\x80\x99\xd2]L\xf5\xcd\x82\xed(\x17\xfa5\x8a\xe9\xa2\xf9z\x8b+\xd8\x18\xf1\n\x86\x03P\xba\x82*\xae}\xc8\xa1\x83\x90\xd2\xb1\xa1`\x1f^Y\xc8\x9dg\xfa\xfd\x99 w\x9e\xe9\x0e\xc6\x05V}\xa6\xd3\x99\xa5\x99*M\xc5%\x81^\x0d^\x18\xb9\x85\xd7&\xa4S7\xf7\xdats\xea&Zj\x8c\xa9\xa1\x96:\xc7\xd4\x95\x96\x8a\xe1\xdd\xea%q\xb9\xe1\x91\xe2m(\xfc9!\xb7W\x08vk\x97\xbb\xe3`\x7fQ\x97\x8c\xbb\xacqw=\xae\xd5\x947\xca\x9e\x84K\xb5X\xee\xf1\xd01j\x96\xf7E\xbeHJ\"\xb3%\x01\x0f*N\\^_\xd8\xc8|A\xa8Z_\x88YV\x8d,\xbf\x90\xf0\x93\xd6\xec\x8ao\x0fw=\x08ZK\xe3=_\xa62\n|c\\9r\xcf6\xfd\xbc\xd8\x9d\x8b\"\xf4\xc1>\xa4n\xc6\xdd\xdbh\xd7~\\\x81P*)\x18/\xf7\xf1Z>\xea\xbc\x967\xac\\\x9b\xa6\xc5z\xa6\xc3\xea\xc1\xe9\xb4T\xb1\x1cVE\xb5\xca\x96j\xe2a\xd5\xe0\xfa[\xaa\x98\x0f\xab\xa2\x82\x8fFn\xa3\x8a\x81\x8235\x05\xf2AV\x0d\n\x89\xfd\xecu/\x95e\xbf|\xce5\xaeG\x88nF`\xb4%\x13}W\xb4arq\xaa\xf49F\xb4v\xbf%T\xe1\xd8\xf2\xd5\xce\x90Au\xf2\x0d;\xdc\xb9>\x1e\x82\xe8[\x97x^\xcdJ\xc8x0l\xf3f\xf0\x03$o<\x94i\x91I\xee\xd2I\xb6\xb9y\xe5]\x19\x07\xcf\x8d\xf2\x90\xd7\x16\xf4\xa8\xa6_?h\x02\xccr\xfb\xfaZ\xb45\xb4\x0d\x1a\xacIQ&\xdc\xef\x92PE\x92IA\x92\xc5\xe4\xf3\xd9\xd4u\xd6;\x81\xe3u\xe7\xd8e9\x9e<\x11\x02:s\x8eW,\xcf~\xcf\x85cF>\xd3\xcb$\xd2n\xb1z\xf4u\xfaUX\x18V\xad\xd5X~\xefDa\x9a\xde\x84\xd1'\xa7\x92\x1eb\xf8Y\xb8!\x8aZ\xcb\xef-\xaa\xc5ka\x07\xc7c(\xb4\x94\xb3\x8de$\x8e4\x06F\x92\x0f\xa2\x85\x9d\x1e+_\x8b\xc2\x97|$*\x08\xe4LZ\x8d}\xa0G}K>\xed\x1a{ie\xf5\x11\x1aT\\]\xdb\xa2X&\x1f=\x10\x89\xfat\xe9w\xc9\xe7Q\xbbjU>\x93Ooo\x9f\xffk{k\xd5N\x93OW\x87\x07\xd9b#.D\x12SRS\xee\n\xb6\x90\xb3 \xb9\xb9B\xc8\xd0\x9e\xdc \x1e$\x93ps\xf3\xaaa\x8d\x10\xf6D\xe5\xfd\xe6YQ\xcd\x03zt\xfd\xbf\x0e\xbd\x81\xd68<\x14\xe3\xd5hL=wU\x07\x89\xdf{f\xcdx\xbb\xa6\xb5\x89\xcc/\x84\x97E\x93<2\xe9;\xb2\x92\x0c\x91\xe0$\xbb\xc2s(S\xfc\xc2u\xd9\xb5Y\x84\x10y\xf5]\xa9F\xfe\xca\x83i\x91/\x00\x9d\x83\x85i\x9aG\xca\xcf\x0fY\x19NI+\xe1\"\xcdo\xb5#\x81\x91\xa3n\xe2\x16\xdc\xa7\x0c\x0d*w\x94\xa1\xe7C\xe2\xe6<~b\xc8\xdb\xea\xa7G\xf0h0x\xce4\x1f\x0c\xceA\xe34\xc8rq\"\x88\n\xcc\x94\x8biRX\x0f\xf9\x1c\xdc\xb3\x8b\xbdg\x97\xd6\xc5\x8e\xeeI\xb0j\x9b{6I\xae\x0d\xc1\x14\x98\xc2\x05\xc2>\x14\xc14\x91Z\xc1\x8c\x86\x13\xaf\xcaoT\xb07\x8c],z\xaf\xf2\xe9?a\xec\xf5\xd2\x98\x16E\x01\xbe\xff\xc2\xce\x15\x01\xeb\x81`G{\x05\x87\x83h=u#e\xee\x8b\x97\xdf{\xae3\xcd\x8bq\x18\xcd\x9dA\xa8\xa8O\xe3\xf5\xd9\xaeY\x10\xf1\xcc\xe2\x06r\xf7\xb5.)\x10\x82\x88W\xaa\x18\xd7\x1dL\x8c#R\xc3\xf8$+T\xcfL\x8d3\xdb\xbaC\xfe\x01\x9e6\\\xe5n4\x84\xban)\x9c\xc3r\x97\xb1D\xb0/\x0c\xc2\xcb\xc6\xd1\xf5T\x04\x8c\x94\x8c\x0dFO[\xa1I\x13\xe7\x0b6\xd0n\x08\x93\xc3J\x7f\xd3\x89\x1c\x11\x93KI#2\x04\x97\x92v\xebx\x9e\xcf\x0d\xe1\x1b\xa3\x82Z\x91\xc6\xe0\xc6\xb0\x19\x96%kgP\xc5\x9fI\xfbs\x1d\xa2G\x8fK\x0c%\xdb\xfen\xee\x96\xac[ld\xb5x\xf6\xab\x17\xcc\x86\xf2\x83b\xa9|\xdd\xef@u\x0di^\x15\x945\xf1@\x06\xe6\xc5I\x1b\x8b\xf3LY\x1c\x86\xceh\xa5\xec\x03#H\xc4=\x88\xf8\x8e\x16\xe8\xcd\xef\x19\xb7qS\x1a\xe5\x1fqA\xd3\xba\x0f\xca\x17\x0d\x18$ \x945 \xac\x0c\x80P\xb6\x00\x01},\x98\x16\x1d\x05\xd3\x86%G\x9bd\xc3J7A\xc1\xa0\x01\xa4\x82B\xa9\xafv*V;\xf5D\x0c\xbd\xe8~(\xa9\xc6\x12\xadp\xb9\x02I<5_\x01={f2\x18\xcb\\\x8b\xb0rwW\x17nrt\xb7\xfbB\xc7M\xdc\xa7D[R\xa9\xaa\xbd\xb8TS\x82\xd5\x87\x88\xbe\x05\x97&\xb8\x8e}\x98\xfb\xb0\xf6a\xe1\xc3\x0c\xf6`\xa9\xaa\x89\xdbhU);n}dD\xa5Y\x94w\x87\xc2\x06\xde\x11\x06\xd9Oa\x04:\xbae\xcf\x0d\x92\xe0\xcd \xb6q\xc6\xb3\x1e\xe3\x8e\x84r8i\x99v\xb0\x1a\x13wf\xd4\x19E\xba3\xe6\xa6\x072F\xef\x1b\x88\xe1\x0fp\xf3\x06n67\xcd\xd46\xab\xd1]\x08G\xacwn\xe8\xce\x91T\xbd\xb9\xf2\xf0\x8em.\xee\xd8\xee\\L\xf3P\x06\x81\xb7_\x0b\x1e\x0b\xb2\xba\x9a]4!\x1a\xcd\x7f\xcd}\\\xc3\x1eTq'\xde\xc0\x066\xb9F\x8e\xc3\xf5\xbc \xce3b\xb8\x14\x06\xb5\xb3\xb9\xbb\xf6\xe1\xce\x879\xb7\xc5\xe3w\xc4\x03\xba\xf6\xd5\x0b~<\x1f\x1f\xfc\x99\xc7j\xa5\xc1\xf9\xf8\xf2\xc3\xf9)\xec\x89\xdd\xf6\x8d\xe7\xb3\xd5'u\x11\x1c\x8d\xdf\x1e|xw \xfd\xfe\xa9ww^\xf5\xf8\x9d~)\xfcL\xbf\x12\xff_\xdf\xdb\xdf\xb4BR<\xb7\xdcm\xec\xe8\xdb<1\\\xf1\xdc\xdf\x94\xd1rH\x85Fm\x8aD1pD\xee\xc5\x0d\xb1\x18\xddd\x83\x00\xad6a&\x1f\xec\x96\xd6+W\xa8\x869O_\xeaGCU\xcchc]}\xb5-\xdc\x0e\xa7}\xd9\x7f\xdep\x05\xa7\x07\x82\xc9\x8cxp\xf8\xda \xb39FQ\xde\xe2(\x10\xa6I\x16\xa6ig\xd7:;\x0eP\xb9&\xeb\xcf\x08r\xa4Q\x9a\x97b\x00\x9d\x05\x9aF\xe6\xdcu\xc5\xe0\n\x86\x0c\x0e\xba\xe6\xde\x93\xa8\x15{\x1a@\xba\xd2\xb0\xd9)\x81d-\xb0\x11s\x03a\xdbu\x8b|V\xed\xab\x05\x90\xd8\x81\xfb\x83GM?\xae\xff\x93U\xbcNh\xe7u*\xcffA$\xa0\xf8\x80\xbaa\xa7+\n\xae\x01\xd6\xa3T\xc5\x88,\xe7\xc9\xdfV9}\xd3\xe1\x8b\x83=7\x05 ?\xd9\xb3\xf0\xd6^\x0di-\\,\x1f\xa5\xb1\xd7C\x1a\xfb\xb7\xcfO_>Fk/:\x14\x0d\xa1j-}\x94i|\xd1\xa3b\xc8\xdb\x9a}k[\x83t\xd8\xa2<\xa3I\xb6j\xdf\x0c\x81\x95\xc5\xe3|0j\xf6\xbb l2\xfcX\xaen\xf8\xb5\xb5\xbb\xf2!\xf4\xe4e>\xe3@\x19+\xbc\xa9#:s\xe5b\xaf\xca\xfa\xf7Y\xc9v\xe50\xd2C\x0c<\x92\xbaH\x83\xea2\xfa\xa67\x851\x0b\x852\xb5\xd9@\xaf\xcd\\\x96\"\xbf\xce@ [\x92\x96FId\xb8\xb5\x9d\xa2p\xa1\x99\xb6l\xa3\xabvx>\xf6\xd0|yp\x93\x17t\x04N\xc8\xfe\x1b\xd0\x1f\xcb\x92%\x0b\x0c\xe11\xce\xe2\x11\x94\xae\x13\xca\x04\x92\xc5\\\xff\xb9\x99\xd4]\xcb1%<\"H\xb3\xaeD&\xeb5\xd6\x1f\xba\xeb\xbd\xa0!\x1b\x89Zg\xc9\x92\xf4\xfax\xa2\xb1\xae\x1f\xd3U1\x02\xe7&]\xe9&\xed\"\xc3a\x98\xbdO\xc3\xbb\x118Q\x98-\xd3\xf0\xae3\xdb\xe5\xbc\xc8W\xb3y\x9d\x9b\xf2\x04K\xa1y\x98\xcd\x08\xcb\x8c?,\x99RT\x01w\"\x8c e\xce\x92/\x96y\x99T\x0b\xe6Du\x82uu\x94Bb\x1e\xd5b\x1dS\xa6\x14\xfc\xb0\x8cQ&\xa0\x96\\a\x9a\xadhF\xc9gzB\xb2\x15\x16\xc2\xb7\x05\xc9V\xb6\xecK\x9c\xf8|i\x9b\xf5\x15v{e\xe9\xa9\x12\x1ek\x04N|\x93v\xcc\xe1Q\x11\xceX\xa6\"\x9c\xd93\xf0\xd9ey\xac\xd3\xca\xb3QRT\x19)\xb1\x80\x16f\xfd\x9cP\x99\xf3sb\x1bG\x11\xce0\xc0\xa3\xc8\x99\xb2\xdf\xf6\xacg\xeb\xaa\xf5|\xdd\xd5\xb8\\w\x96\xb3c\xc1\x8f\x8a|\x89\xb9\xf2\xa5%\xc3\x8ao\xd7\n\x9ec\x91\xd0\x05\xd7\xe3\xc5\x92&\x84\xcd'\xe1\xbf,\xd9\xb2\xa8\xb8[R\x9eQ\xfe\xb6e\x8dE\xb6\xd8\x9a\xa5(r67\x84\xfd7gy\x9bG\xabr\x04\xce\x94\xfd7g9\xce\x96\x08x<\x02\x981\xcb\x9f\xc9\xddQ~\x9b\x8d\xc0\xf9D\xee\xe2\xfc\xd6\x82\xca\xfeL\xee\xde\x17\xa4,y\xbe%\xfbi\xcd\xf8a\xc9s\xad,\xab\xf0\x0e-\x93\x19\x0f2\x92f\xca\x8cs\xe9\xca|Bh\x18\xab\x05\x16\"\xc1^H\xc2\x0c\xcb\xdf\x013U\xe0\xb8\x118\x0b\xf6\xdb>\x07U\x108\x99\x95qW\x1dY\xcfp\xee1gn\x9b~\x9e\x91\xef\x03\x9e\xd3\xba\x11D\x988\x99\xd16\xbb\xef\xc3\x121\xdd\x92\xfd\xb7eY\x95<\xcb\xaa\xb4e\xe1G\x89\xfd\x1ca\x19\x92l&\xf2$\x99\x05\x19\xbd/\xf2\x99\x80\x9b\xa5\xf8i\xcex\x1eRRm\xcb\"\xa4\xa4kKr \xdb\x08\x9c\x12\x7fX2\x11\xf2 \xb7Y\x89?\xec\x99\xf80J\xfe\xcb\x96-\xe5\x91=\xab.\x962\xa5\xb3\x9f4LS\xde\x07\xfe\xcb\x92mU. b\xec\x92\xff2g\xbb$\x9f\xa9\xdc\xd1T\xfe\xb6dM\x16\xa4:\xf3h\xb2 ]\x87\xdde\xbe\x8a\xe6\x87a\x16\x116\xa5\x94\xbdE\xf8\xd6\x91\x9d\x1f0\x98\xd7\xde_\xf6U\xec\x17\xcci\xdf/\x98U\xeeX\xcc\xdb\xb1e\xf1\xda/Q\xa9>Z\xa5\xd4d_3\xcdX\xd1\xcfy\xbaZ\xd4P\xb7\xc6\xd7\xae\xf5\xfc%L(\x87\x96[\xfe\xcb\x92mNp*o\xd9\x7f\xcd\x04\xb4Y`\xcex(\x1e\x85\xa6\n\xa2w|\xe4\xc0\xa6\x90\x18\xb9\x8d8\x04^P\xa6ID\xdc\xa7^\x93\x1dX\xa3j\xdb?\xbe\xa2VE\x93\x94>'2\xd2Z\x1d\xa4\xb0}\x990 p\xad\xa9\xa2~\xf99:\x8f\xf9)\xcc\xe2\x94\\\xe6\xcbwdMRw\x1d\xcc\x1b \x9e\x0f\xeb\xa0]=\xec\xf5{ll\x8e\xa2$t\x9ca@\xcc\xbe\xae\x19\xdb{\xf2\xc4\x98\x1e\xd4\xd5\xb6\\\x01j\xb3X\xb6\x9b7\xb5.5\x88\xdc\x0dc?\xbe|\x01\xe3\x87\xa0\xaa\xdf\xed\x0e1\x97b\x81\xcb|\x80S\xd1\x86\xa4\x98\xfa\xd0\xed;O>b\x00=j}\x95\x16\xde\\D\"\x99\xcc\xaf`\x0f\x96\x9b\x9b>D\x13\xf6&\x82\xfcV\xaf\xed\xe5\xe6\x11 `\x0f\x92V\xc0\xc6#\xc20%\xc9\xa2\x84\x94\x13r\xd50f\xcb\x87\x08\xb3P\xcb\x9d\xed\x1c\xabu[\xa1\xc7\x99\\\x89X2+\x1e\xa7\xd8\x91{\x9d\xcb\x86Wht/v\xbd\x07\xfbfp\xa2E\xb8\xfcqu\xc3\xd6\x11?(\xb5\xf8\x12e\x08\xb3\x9d\xd4\xe5G\xfd7\xd5\xa8\xd4 \xaa}@%Gg'H~\\\x88\xf3\x96W\xe4TGqc\x02\xe4\xa1\x0c\x1b;\x9d}\x16\x01o\x95\xf6\xaa\xea\xeb:\xee\xd9cC\x0d\xc6\xc2\xbf\x1c\x9f\x1e\x9d\xfdr\xfd\xd3\xc1\xe9\xd1\xbb\xb1\x1c\x0bR\xd4r(x\x86p\xbe\xbb\x1e\x9d\x9b\xba\x92\xde\x16\xa3s\xef1\xbc\xb7\xa2dUEf\xc1}\x96\xf2\xd8\x17_\n\x01 \xf3\x04\x90`uI\xe6\x08\x15\xd7\xc1\x93\xd5\xecO\x92\xf5\xf5\xa8U\x81\xec\x10\x96G\x1a\x97u\xca\x87\"\x10\x1f\x85N\n\xbeck\x98\xc0\xba\x1d\x9b\xf7\xd6\xb0\xb6W>\xc4\x93\xd5\x15\xef.n\xc7\xbdVHy\xe8;.\xf4Z\xfb\x03\xd5\x80b\x867\xa8\x9f-\x85bK7\x1aK\xfd8\xfdhB\xcf\x90\x8e\x88\xc86<4\xe9\xfbpF\xfe\xf2k\xcfA\x86\xb7\x17\xfa\xad\x1e+\xdd\xe9Kz-\x9c\x86\x9a\n\xba\x0e\xa2\x19\xfcm\xd2\xe3\x92\xf7$\xaa\xd3\x06UQ\xa0k|$+W\x85\xc0`?\x87\xe9\x8a\x9c\xe4YB\xf3\x02 \xba\xdeq*\xae.\x90T\xc0K\xdcu`\x984\x97\xed\x80\x0d\xcc\xb41\xed:|\xd8$\xac\x82\x82L\x0bR\xce\x95~\x95\x96\xfb@\xd3R/\xf8\x18\x94\xd2\xe8\xebzZ\x87\xecR\x1fm?To_-\x06\x08\x83<\x904\xc5\xd4Ur\xa5\xd1P\xb4\xe6\x94k\xb4^\x17\xab\x94\x94\xd7\xd7\x0d\xdd\xf0\xeb(\x8c\xe6\x04\x13-\xd7\x8b\x85Bp\\_O\x93,\xc6\xdcv\xaa\xa5\xad\xf7W5-\xc8\x04~\x8d\xb7\xb5\xfb\x06\xa8\xd5\xb1`\xb3\xe0ds3\xbbB\x85\x01\xae*s\x0fO\x83\xbe6\x82(_,\x93\x944\x07a\xbaB'\xa2\xfb\x06\x96\x83M\xa1\xe3hT\x0cQ\xc6)\xecI\xddn\xda\x8e\x04\x84\x13\x98\xfc~\xe3\xf5\x18\x07\xa8\x95\xa2\xae\xfe?\xd0\x07q\xaby[ OY\x92\xc7\xda\xe2\xae\xf3:\x86oD\xa9\xec\xc9\xd4)p\xd1!X\x86\x13!\x07G\xf9\xe0\xbe|\xd1Z\xe5#\xcd\x82if\x88M\xdd\x1a\xad\x0d\x1cB:\xd0\xf2\xa5\xa8a\x99o\x01\xa3\x11\x1a^\x12\xb1\xbe\xea>\xa3\x19Doq\xb5\x81B\xb5\x8c\x16V\xd1\xef\xc3\xa2$\x05\xb0\xe9C\xc3\xb2i\xbeB~\x1f6A7K\xd7\xf6Eq\x15L\xa5\xf1g\xebK\x98b$c\xfc\xff\xe5\xcb\x90]\xdf\x9c\x9d\x1b2\xcd\x0bb4\xf7k\xb9\xb1ZK\xcfx\xbd\x93\x94Hm\x9c\x8eI\xca\x1fs\x92\x82r\x89l|\xee\xc3\x8e\xc9\xf5!C+F\x13R\"\xd9K\x93C\xc4if4/\x0dS:\x82\xa4\x9e\xf2\xd6\xb6\xbb\xd7\n\x84SJ\x8a\xff=\x0b\xc0o~\xff\xa7-\x02\xc34\xf7@\x13F\x04\xa0M\x08\"/\xdb$\x18T[z'\xc10q8 \xc5cM\x02\xefA\x9f\xf2\x17\xcb\xd0\x0cJ\x8b\xae` \x8c\x00e\x06\xdc\xe3cs.\x86\x1dy\xf5Y\xd9\xd2\xa0\xe7\x87\xd9\xb0j4\xba\xa4\xda%fU!\xca\xce\x1e\xc3N8g]\x87E\x98\x853R\x8c \xc9\xd6a\x9a\xc4bg0\"\xc5\xb4'\xa0\x8d\xbd\xe9\x95:*=\x84\x13\xe6\xbe\xef:\xc5I\xd9Z(}\"\xdc\xeee\xf2\xfe\x17\xcc\xe5\xeec\xcc\xe5\x8cP\xde\xbb\x01jo\xc2\xcb\xc1\x9e\xdeB\x0d\xef\x15\xe1\xe9\xb6\xfa1!W\xda\x1e\xfd\xea\xdf\xdf\xf3{\xbf\xbb\x93\xce\xbd\xbb\xe6nC\nn1hq\xd6\x8e\x16\xc0\xc12/O\xc2\xcf\xed\xaf+\xf9\xb5\xfd\xa9\xc4OIy\x9c\xbd\x0boH\xda>x\x94\x8f^M\xc7\x9b\xf2\xa5,\xcf\x87l\x11\xd2hN\xe2\x8b(_\x92\xb2\x8e\x0dj\xfc\xbc\xb5\xe5\xb7*C>\x05{\x8bf\xf5x4)\x9d\x10\xa2\x14F\\\xed\xbe\xe1\xa3\x82\x1f 4z\x9ag\xfdz\xcd\x0fN7\x07\xa1\xca\xaf\xea\xecaq\xcf\xf3 \xdb\xdclCr\x15\x82\xfb\xf53\xe1\xdb\x11\xbd\x04\xb2\x9f[[V\xd2\x99\x0b{\xcc\xbc+\xea\x80\xb5\xbe\xb4u\xabP)\xb7$EP~J\x96\x97\xf9'\x92\xd9\xc3\xef\x80\xa2\x11\x0f\xfb\xdc\xc5\x19_l\xcb\xa4\xc3\x1e\xf7\x0cb\xfd\x9a\xc1\x16\x9ft\xbe\x06+}\xfeK\xff\xe1a\x15^\xdb\xa2`r)\xba\xeb\xfc\xdd\xf1\x8cq\xa5\\%\xb6r\xa7V\xaa\xd4w\xbd\xa8=B\x15\x02\x8f\"\xc1C]\xc7a\xc3\x17\x0d\xf6j\xa3\xa9\xf5\x0f\xd3\xb8m\xc8IL\xa1H\x9d\xc30\xfb=\x85(LSX\x10:\xcfc\xc830b\xd4\x96\xcb\x8d{\xcew+&\xa20S\xd8\xf5\x02)x\xd2no\xd0a\x87\x08\xe0\xe2\xe6M%\xf5^\x1f\xa4\x96\xc5H`\x1f\xb4\xaa\\\xf4:\xaf\xd8\xb1\xdd\x7f`}\x9d1 S\x14\xd5\x15jD8\xcdW\xb8\xc0\xb6y\x1b\xc1!\x8dd\xf2\x97\xedr\xedt\x19\xae\x9c\x87]+\x10\xe1\xc8\x18\xd3^\xdd\x9e\xa1\xe6\x8eJ\xd1?\xc7\xd9\xf4\xfeun\xfcs\xbak\x83\xe4<[\x93\x82\x82p\xfbKsX\x16\xc9\"\xa1\xc9\x9ap\xefON\xdf.\xd3\xd6\xb9\xe9\x0c\xec\xfb\x9d\xfb\xfa\xe5\xd0\xadpd\xd4w\xdd'\xb8\xf0\xf4\xf5B\xd7\x1f\x0dE\xfa\xae\xe7:\xc7\xe3\xeb\xf7\xe7g\x97gz\xd0\xd1U+jA\xe3s\xd9%\xc8\x02)\xcc\x12\x8e\x99\xdc\xdd\xef_x\xae\x93L\x8bpA\xf4\x86\xe4S\xe0\x05\xa0\xcdS+\x8f\xc2\x12\xa0I\x10#7\x97ix\x07{\xe0dyF\x1c\x1f\xa3R\xecx\x0d;\x17\xee\xa4\xb0,\"\x96\xed\xaf\xe1:\xe4VE#\xc7\xe7\xa4(\x0dP\xe3/\xa3\xbf$Y\x9c\xdfV\x08\xc3\x0b\xf2%\xc9\\\x1e*\xa0H(q\x9d\x1fx\xd1?T\xc2\xec\xb7{\x1c\xbf\xfe\xf0q[|r0?\x1a\xbc\xba\xc2\x95\x14 \xde\xbe\x81bk\xeb\x8d\x07\"<\x8b\x12oe\x92L\x8a+\xc3\x8d\xa4\x00\xcc\xd2\xd5\x0e\xc4\xaecE\xa0\x1eP\xa3\xb6Zi-#\x02\x16\xa2v\xe9.Kq\x8e\xcf\x8f\x17N\x91\xa0\x03t\x1f\x9a\x9f\x85\x93\xd3I\x88n,\xd1\xfe\x04=\x9fka\xd4\xa5\xe3h7\xfb\xff^D\xfa\x17O=\xd7\xf9D\xeeJs`\xdf\xdd\xdd\xfe83\x96\x8e\x17\x82\x86w\xf1\x07w(\xf9\xe0~>5\xd9$\x17\x13\x871\x11\x05\xd9\xfaky]\xce\xc3\x82\xc4\xd7\xd7\x8el\xd4\xfc\x0d\xef\xfb\x1f8\xa2\\\x8e(\xe7#\xfa\xc7\xd7\xbe\xf1\xd8\x10\xab\xa38\xd2\xf7\x9b\xd7\x90~R\xbe\x97 |6\xf5M\x04\x99O\xf3wy\x14\xa6\x84\x9f#\xbe\xe4\x9e'\xb0u\x82~\x07\xd1\xa1\xacsVG]B\xbb\xb2\x02\xcd\"-T\x18;\\\xc34%8be\xe9F\xc2\x12\x19\x1e\x008\xde5#8773\xd8\x84\xc2\xab\x18\x13F\xc4\xf7\x9dl\xd6\xbd\xf0\xd2\xe2\xea\xf7\xd9\xffx\xb6\xf7y\x0f\xa9\xf4\xe2\xe5C{\xfb\xa8\xa4\xd2\xee\xeeK/\x98\x9a\x899\x93\x07\x17\x13\x9e\xea\x1b\x87\xf9\xbe\x07\x95a6r$V3!='5A\xeeC\"\x03\x84\xa2\x03\xb6\xf6foz\xa25\xdd\xecH\x87\xc6\xcd\x8d~\xcf\xb9\xea\xf5\x80\xf3t\xd74\x03\x18{\xbdw-\x19#b\xcf\x04\n\xcem3X(\x03_\xf2\x18B\x82\xa7!\x0d\xdf\x11\xc6XI\xa0\x13L\x8c\xa5\xf9\xf2Eu\xd4\x9e\x19$a?\x86\xb1\x8cW\x04\n9ju\xcf\xc7=)g\x95\xec]}\xaa\xcb3\x11\xd5J\xa0\xd1*\x11e\x13\xe8\x8eVc\x1d\xbf\x81uy\xfa\xbdY\xd4\xf0\xbdM\xce\xd9\x07\xbe F\xefd\xc8\xbf5W|k\xfc\x9b\x03\x9b\x90\xa1\xbf\xdb8'e\xf6{\na\x14\x91%\x85\x82\xcc\xc8\xe7\x96\xd3[\x01\x11\x02\xa9~\xdb\xa6f[\x14\xa5\xc5\xfd\x9b\xd3x\xc6\xc3\x1el\x07\xdb\x9aH\xc9x\xe2:\xdb\xc1\xb6\x03\x13r\xe5jnu\xaa\xa3\xd6(\x80\xef=\xbe\xe9\xa4\xb8\xe2\xf6\xb8\xb0am\x03z\x8et\xd3\xfcn\xdc3\xe0\x11\xc5\x8d\x8c\xb4\xfd\x90\xec=L(\xb27F\xac\xda2Q\x16\xa2\xad\xd6 \xc9M\xa0\x9f\xefx\xc1\xf4\xa1k\x9b\x07\xfc\xcc\xe7\xec\xa9|\xe1\x81\xa1\xfe\xf1\x15\x83.\xd4\x19\xfe\xa1Gtq\xae\x91\xc4!xAs@\xdd\x1d\xd4\x97'\x90d\x1c\x93\xac0f\x95 c\x0b|\x1c\x06\xd3\xd65I\x1f\xac\xb7\x97DH\x8cf\x84*\xfc0\xef\xb6\xd9\x8d\x07\x0fXz\x7fT\xdf\xa1\xcd\xb5\xfd\xddFs\x90\xdf\xc1\x1fc\xc2\x05iI\x9e\xc19\x89VE\x99\xac\x89\x94\xb8\x92\xcf\x94dq\x92\xcdZ\xc5\xc2\x15\x9d\xe7\x05\xfc\x9c\x84\xd1\x9c\x94i\xb8\x86w9-\x17a\x96\xaf\xe1\x87T\xfe|\xf5\xfa\x8f\xb3E\x98\xa4A\x94/\xfe\xd0\xaa#M\"\x92\x95\x04N\x8e/\xb5oz\xd6\xcb9\xe6\x82w\xa2\x84{r|\xe9\xf5\x949\xcc\x97wE2\x9bSp#\x0f\x9e\xee\xec>\xdbz\xba\xb3\xfb\xca\xd8\xe5\x9e\xaa\xde\x93b\x91\x94\x18\x14,)aN\nrs\x07\xb3\"\xcc(\x89}\x98\x16\x84@>\x05\x06_3\xb6L9\x84\xd9\x1d,IQ\xe6\x19\xe474L\xb2$\x9bA\x08Q\xbe\xbc\x83|\xaaW\xcf\xce\x11(\xf3)\xbd\x0d\x0b\x02a\x16CX\x96y\x94\x84\x94\xc4\x95\x1e/Zf\xc04II .\x9d\x13p.D \xc7\xc36c\x12\xa6\x90d\xed\xca \xc8\x9cp\x9b\xd0y\xbeb(\x9d\x83M\x92g\xbe\xf0s\xcdz(?\xa7\xc9\"\x11\x0d\xb2\xe28\x8b%\xd0\\\xaf{U\x12\x1f\x07\xe5\xc3\"\x8f\x93)\xfbOp\x0e\x96\xab\x9b4)\xe7>\xc4 k\xe9fE\x89\x0f%K\xc4\x05\xf4\xd9(\xb7\xf3\x02J\x92\xa6\xac\x86\x84\x94\xc6\x89\xa9\xfb\x8eE\xf0\n\x80-\x06\x15\xd3\xcbz\x05\xb7\xf3|\xd1\x1cgR\xc2tUdI9'X&\xce\xa1\xcc}\xbd\xfarU\xdd+\xb0\xd2\xd3>\x1a\x1f\x81sp\x01\xc7\x17\x8e\x0f\xbf\x1c_\xfet\xf6\xe1\x12~98??8\xbd\xfc\x15\xce\xde\xc2\xc1\xe9\xaf\xf0\xe7\xe3\xd3#\x1f\xc6\x7fy\x7f>\xbe\xb8\x80\xb3s\xbd\xe6\xe3\x93\xf7\xef\x8e\xc7G>\x1c\x9f\x1e\xbe\xfbpt|\xfa'\xf8\xf1\xc3%\x9c\x9e]\xc2\xbb\xe3\x93\xe3\xcb\xf1\x11\\\x9ea\xfb\xa2\xe6\xe3\xf1\x05\xab\xfbd|~\xf8\xd3\xc1\xe9\xe5\xc1\x8f\xc7\xef\x8e/\x7f\xf5\xe1\xed\xf1\xe5\xe9\xf8\xe2B\xaf\xff\xed\xd99\x1c\xc0\xfb\x83\xf3\xcb\xe3\xc3\x0f\xef\x0e\xce\xe1\xfd\x87\xf3\xf7g\x17c88=\x82\xd3\xb3\xd3\xe3\xd3\xb7\xe7\xc7\xa7\x7f\x1a\x9f\x8cO/\x038>\x85\xd33\x18\xff<>\xbd\x84\x8b\x9f\x0e\xde\xbd\xc3\x96\x0f>\\\xfetvn\xea\xfd\xe1\xd9\xfb_\xcf\x8f\xff\xf4\xd3%\xfct\xf6\xeeh|~\x01?\x8e\xe1\xdd\xf1\xc1\x8f\xef\xc6\xbc\xe5\xd3_\xe1\xf0\xdd\xc1\xf1\x89\x0fG\x07'\x07\x7fb}?\x87\xb3\xcb\x9f\xc6\xe7\x98M\xf4\xfd\x97\x9f\xc6,\xa957\xa7pp\n\x07\x87\x97\xc7g\xa7l\xcc\x87g\xa7\x97\xe7\x07\x87\x97>\\\x9e\x9d_V5\xfdr|1\xf6\xe1\xe0\xfc\xf8\x82\xcd\xde\xdb\xf3\xb3\x13\x1f\xd8R\x9c\xbdeY\x8eO\xdb\x9d>=\x1d\xf3J\xd9\xaa5\x17\xf7\xec\x1c\xdf?\\\x8c\xeb\x9e\x1e\x8d\x0f\xde\x1d\x9f\xfe\xe9\x82uH\xcd\xacC\xcdv\xe3]\x9e%`!\xf7\xa5\xf4\x02\x92\x8c\xc1g\xc4\xe3\xfc\x8a\xf3\xb5J9\x12\x97$\x8d\xc4s2\x1b\x7fn:\xf1S\xe2oAS\xc7\xdd\xd88\xea\x874Z\xb6q\x10R&AE\x04\xaa}\xf9\xab\x0e\xca\x00#dI\xa8\x12\xa6\xc1XU\xa5x\xc26<\x1a\xd0\x19\xbc\x92\xf7w\x95M\x89\xa7\xb2U,\xc1E%\xa4\xcbdA\x1a\xd2.k%|\n\x1b\xd5\xf0$\xa3ZVK\x17\xebCF>/I\xc4N\x992\xa1+\xe1\x83e\xd0\x8a\xe4VI\x97\x14\xd3\\_#o|}\xedT\xf7PUh\x99\x96\xb0\xab9ak\xe1\x94\xcbH%\xda\x00\xc1\x10\xe0h\x17\xad\xccd\xd4\xfa:\xd0G\x1d g\xe7\xaa\xd3\x96\xc6R\xefS\xaf%\xab\x9c\xec\x18\xae\x14\xe5M,7\x9e\xec\xce+*\xe4jz\xb5N\x1aZ$\xf3\xeb\xf3\xaa\xbc\x0f\xbb\x06\x9d=k\x14M\xc3\x04\xa0\xf9]%\xe0\xc4\xb7\xa6~\xe0\nidA\xb2~\"w\xa5\xbb24iu\xa1\x0f\nc\x84\x12\x9f\x90\xfb\xa2G\xe1I\xee\xa2gz\x1e\x19$T\xc1\xc2\xd0S\xd2\xe8\xa9\x8c\x9c\xeb\x86\x93\xb2\xba\xf54h6\xaay*\x90%f\xeb\x06\xf5Y\x0b\xa5\xea\xc9\xd0x\x8cm\x03\ntN\xd5\xdd\n\xa8\x8b\xa2\x85G\xaf\xee\x83\xd9~i\x8e\x0c\xa35\xe5\xe2\xba\x97\x8bw\xb3F\xa2\x90\xf9\x8a\xb7\x04-\xd6\xd5\x94\xb6\xf7-\xf5\xf9\xea\xf9\x90[s|E\xdd\x96\x11?\x06\x9a\x13\\\x88O\x86\xd5\xa3\x8d\xd5\xa3m8\xa3ze\xbc\xd7\xbc\xc2f:\x0f,l\xec\xa0!d%\x1bMhA1\xcd\x80\x94\xcf=\x11Oq\x10\xbf|\x1f\xa5K\x9b\x00\xbb\xbd\xf4D\x89\x92\xc4\xd6\xd6b\x94\x88\xcc\xba\x01u\xb4\xd4{qZ'W(\x11n\xe7\xcf\xb8>\xba\x1et\x9a=\xea\x8e\xa7\x86\x1do\x0d7,Q6\x9d\xe4\x96\xbdc\x0c\xb9\x94\x08\xffqO\x9e\x98\xa6\x85\xf1\xf7[\xbb\\\xc6W[\x08M\xf2+6\xbcb\x92_a<\xf7\xc3\xa4\x88ViX\\90\x92\xa9\x04\xb3\xf9\x90 \x97\x0e;\x08P\xe2\xa3!\x00\xaa)\n\xac!\xf6#\xe56ih\x9f(\xcc\xd3D\xda\xd0\xf2\x0bR\x96\xe1LV!\xdf\xf6\xea/C+*i\x18}\x12\xd5\xf0\xdf{2\xd5P\x85\x14\xc57w\x04\x03\xf0 \x06\x922\xde\x06\xe1m\xca\xe4\xad\xf8\xc2-?\x84\x1f_\xe0~\xd5\xf2\xecn\x91\xafJ\xc7\x83Mpp\xfe\x1f\xacP\xf8\xfd+\xf35\xe3\x0bc\xc8#\x96n\xf2|\xcc\xd2\xf5k\x80\x95H\x7f\xed\x99\xcc'K\xbb\xd8\xc9\xa4\x10\x8d\xda8J\x84\xbb\x1d\xae\xf0j\xd0\x9d\xe2zS\xdc\x19? \x0b\xd7{\x03\x9b\x9b\x14~\x80\xcc\xa8S,g\xa2\x1do \xa4\xec\xbc$\xd4-0\xfeW1\xd9\xbd\xb2\xe9\xed\xd6\xbf\x14\xa5'\xde\x07\x86\xac\xfdF\xb2P\x8f\xc2`\x1ceS\x15\x9em\x94f\xe2{\xe9\xf9\xe0\x9c\x84K\x9b\x10x\x90V\xbc\"Un\x85\xd0\x13\x10e\xf1\xea\xf8\xc2\"\xd2|\xd1\x12\x81\n\x88\xda\xd5E\xf4\xa5H\x7fi\x84\xb4\xd4\x0ei\xc2< \x0ei\xc8\xad\x140\x1a\x99\xd1\xca\xaaL\xfe\xce\xf1\x05\xfbaX\xf4\xd4\xb0\xe8\xb9\xdfH\xae\x16=i\xa6\xf3E\x0f\x9b\x89|\xd1W\xcdD\xbe\xe8es\xd1S\xe3\xf2\xa8C\x1e\xacN\xdb\xf0\x9b\xb2\xb5\xcb\x1d\xa7\xd0\xca\x9c\x98\xeb\xdcK\x1f$\x9b\x9b\x19\xfc\x00\xc5\x1b\x0f\xc8$\x87M\xc0\xf81\xed\xb05\x92o\xd3\xe6l08\xbdx\xaa#\x1c\xa1\xf2\xfcZ\x07\x1bcL6\xa3\xaaS\x0b\xda\xba\x84\xc4m\x18\x0c\xd5\xe0\x8a]\xec\xb9\x8a\xb1\x90,@B\\Q\x1e(\xdc\x90\x1b\xb6[E\xc7Z\x8dj\x10\xb8V\xbe\xaf\xba\x03\x1dF\x83\x9a\xf7\xf4\xea\xbe\x8b`>%\x9e\xebkcZ\x83\xf6t'\x9a\x97\x8c\xf6\x14'\x03\x16\x0eq\xd37\xaa\xb6\x08u\xc7A\xab\x99\xb3\xaf<\xe8L\x15E\x15\xd56\xb8\x87\x92\x8dU;\xbd\xd9\x9ey)\x06!\xed\x0e\x1b\xb1z\x95\x9e\xe9\xab\x015\xf2m!e\x90\xbaB\x16\x8e\x08\xffl\xd0 \xcbcry\xb7D\xd2\xc9d\xfe\x88\xf7Af:\x92;\xa4\xc7zH\xa3\x1e\x83\xe9%\xdfW8\xbb\xd5\xd4\xec\xf1\xab&\x19t^\xb0&&\xbf\xe0l\x1e\xdd\x15\xec\xc3*HJ-7\xb2\xd4\x9a\xde{{\xfeAgPv\x9f=\xf7\xaa\xcb\xd5!z7\xafwv^\xee\xbe~\xfd\xf4\xfb\xe7/\x9f\xef\xbc~\xbd\xfbP6\xc5\xe4\xbf\x1d\xe7\xf1\x0f\x8c(\xc7_\xff\x81\xbe\xf1\xb93\x02\x02?\xec)\xa2\xb0\xfek\xb1{\xf5\xa6\x1b1I\xdc\xde\xba\xd4\xed\xe9\xceC\x80\xfb\xe9K\x9d\xc0\x04\x01\xdd\xdf\x08\xc1l\x13\xe4\x8f\x00\xc1\xd5NH\x1a\x10\x8cU\xa3\xb9cDJ\x83\xc5\x9env\xd0\xca\x00\x9d\xf7\xe0 \xe5]u\xeb\x05\xf9\xdb*)H\xe3\xc5uV4I\x1d/`\x03\xb3xb\x01U\xae\xfc\xe5\x8b\xdc\x8e7 \xdeD6^du\xc6zz\x02[}u=\xfbf\\=`3v(W\x99\xaf\xd6[FT\x0c\x04\xb6?\x06_>N\xdc\xfd\xd1\xe4\xffL>^]}\xf7\xc5\x9d8\xbf\xbf\xf2\xdc\xfd\x91\xbb\xbf\xf1q\xd7\x9b\xfc\x9f\x8f\x1f\xaf\xbe|\xfc\x18x\xdf\xed\x7f\xdc\xf5>\xea\x81Yx\x00\x98\x8f\xb7\xdf\xfd{oH\x07\x8b!S\xc3\x8eI\x17\x8bV\x92t\x01\x98F\"k\xc3\xad\xb0\xc7\xc6\x1ed\x08\xd4%R1JB\x158B\xa64\xdc\x0em\xa0F .?\x8f\x05\xc2\xa3\xc8n$\xea\x9b,A\xf9\xf6H\xa4\xd3<\xf7^\x86\x0e\xf7BD\xf7\xa4\x1f\xcd\xf2\"A\x99pm\xd3\xcaE\x17\xf5\xc1\xb9\xbe&\xe5I\x1e\xafR\xe2\xe8\x1a B\x1bAU\x08AC\x9b\x05Y\xe4\xc9\xdfI|\x11.\x96)y[\xe4\x8b\x8bhN\x16\xa1\x90*\xf0\x8f\x87\xa8,\xf8\x97\x93w\xe3\xcf\x98\x8d\xb3\x10\xf8\xf3/\x8bT+\x94dSR(\xefe\xbbfq\x00\x824\x81i\xd4\xac(z(\xec\x98\x89\x1b\x0b\xdd\xcc}\xf1\xfd\x0b\xcf\xb0\x0f\xf0\xd3\x8b\xd7\x9e\x91\x97\n\xed\xeb\x83\xa0\x10\xd4\xf3(T\xf5\xdaXKFF\xd0\xddZ\xfd\xae\xfdk-|\x19\xb6+\xe1\xa2\x99\xe1qm\xa5,\xa7\x95\xc7\x10F\x8bg\xbd&\x8b0I\xef\xd1\xc2\xaa$\xc5\x1f _\x8c \xca\x17\x83\xda\x12\xfdb,(\xd9\xa2\xc9\x828\xc3[t\xe5\xf5\x95\x17\xd0\xfc\xf8\xe2L\xa8\x84\x19\xf8\x02\x83<\x05\xd1\xc4\xf0\xb6\x06\xc5u\xe3\x95^O\xd3<\xa4\x8f\\u\x92Q2{\xf4\x0e\x0bT\xd8G\xff\x83\xb2\xca*\xf6\x94\xb88\x10 \x8dW\xad\xf2\xa5\xdd~\x13\xdc\xdb\xbcLw'\xa4\xcc\x82mt\x17\x9d\x0frr%\x99\xdeyF\xff3 \xc4f4h3a\xf2AO6\xc14/\x16\xa1\x812\x02\x81\x12V\x13\xd4O\xbcv`\x13\xb8\xa9\xcc\xca\x18\xd5S\xc2%\xf6.)\xdf\xae\xb2\xc8s\x13\xc6c%\\O\xda\xf9\x90}\xca\xf2\xdb\x0c\xb5 \x85K\x1b\xec]\xd7\xd4\xa46\\Xa%\xcb\x0d\x93<2[7\x89\x7f\x00\xa4\xa3\x15U\xd6\xfa\x8ep\xf7\n\xf6\x9b\xaf\xa3\x96)\xa8|r\xd3RP\xcbR \x99\xd9\xb1\x14\xca\x97\"P\xe1\x8035V\xb3Vg\xaa9\xef\x1c[\x16\x00m\xce\xb26\x844\x93\xcf\xa2\xe3\xdb\x0c\xc9\xb0\xcf\x0bC\xc0f\xf60\x1c6\xc3;j\xf3\xf7\x1b\xfc\xbe,\xc841x\xb4b\xcfuU\x03F\xab5g\xba\xe5S\x9b\xad\x16\xe6\xef\xe3\x8aG\xb6\x1c\xe0a\xc7\x01\xceN\x90\xd4C\xa8\xfa\x97\x9c\xe2a\xdf)\xee\xb2Y\xbd\xc3K\xff,\xa7\xe1\x8cM\x8e\xc3\xcd\xa5\xdc\x1b\xd8\x87\x1bF\x96\x8f\xd0>\x16u\x01\xee|\xb8\xe6\xde\xd2\x17\x13\xf6\xdd\xf9\xbcH\xb3r\xc4\xce\x8e\x1b\x96 _\xd1_\xc1\xb5\x85\xc0Q\x0f\x05\xc48\x91\x0d\xf9\xb2\xdc\x11\x83\x07\xd8\x03\xfe\xff\xcb\x17\x98qK\x10\x9f\xa7HU\x0d\xe5\x85\xe5\xe1P\x023\x11\xa9>\xae\x88\xbf\xf5$\x93nn\x9b'\x04\x9e\x0d\xd3\x81ns\xe5\x13\xc9\x1d\xc8\xfd\xb6\xb2\xca\x85\xdf^v\"\xe4V\x9d\xa6\xd6\xf94g\xad\xcf\xef\xdd\xba|\xb6\xac\x8b\xfb\x8d\x0bs\xaf\xf6E\xaeV\xa6\x01\xe4\xb6U;\x91M\xfd\x85\x99\xdc\xee!\xa7\x0f\x199\xad\xec\x19\xb4$\x95\x1b\xf0\xc2N\x9d\xb2\xbe]\xe8q\n\x0e9\xde\xd8\xb8\x98\x1c*\x84\xf7\x97/\xb0T?\xd4$7#\xc6-\xd3\xd5h\x87\x95\xe2H\xa2\xfa){(\xde\x03\x06\xb3h\xa9\xd2\xb5l\xf2a\x03\xff\xd4R\xbc\xc3\xba\x90Jc\x9d\xad\xde&;Wv\x96E}\x0ed\xff:\x0fm\xfd9\x93\xa5\x04D\xd91\xbd|\x16\x93j\xd4\x12\x1d\x1e^UG\x16\x92M\x07l\x04\x07\xd04\xb5\x9dN\x0e\x91\xef\xc1\xff\xcdOg,\xfd\x8c%~b\x7fJ\x9c\x8b\xee\x85\xf9\xdaw\x80\xc9\xa7\xd9\xd9=hw\xbe\xe1\xf3H\x9dA\x8d\x18\x94\x03p\x1byx\xba\x05\xce\xd5\x87\xad\xfa{d\x99.\x86\x15h\x82\xc7{Tw\xe5;\x05\xd1\xa8pa\xf0^\xa2[\x8e\x04\xde\xf7L[\x17j\x94\xcc\xa4h\xa8\x0fQ7\xa9\xcd\x118\x07\xd9\x1d\x9d\xa3\x0dT\x98\xc1\x0dAc7\x0bU\x80\xe1Q\x86\x9e\x08zC\xa5\x8doeH\xee\x11\xcf\x99\x018R\xcc\xdc\xb8 \xffSv\xd4W,\x15&\xcd\xd9\xf9\xdbB\xff\xb7lQo9WV\xa2]\xb8Xa\xc6\xe1M\xcc}\xb7\xf6\xfb\xab\x0fcV\xd1X\xef\xfaW\xe3=\xc8\xd4x\x89'\x05\x8e\x11\xff\xda\x84R\x86\x0d\xb3\x86\x9c+\x97x\xc3s3\x93\x19lL\xa24\x94\x81{M~\x0b\x92,\xc6\xc0*\xceG\xaa\x85c\xd3\xaf\xe1\x00\xcda;.\xa5X\x7f\x92\xba?\xd3\xbe\x1b.-\x7f\xda\xaf&Q\xcd][t\xcf\xd5\xf0\xc8\x9aq\x87\x95V\x9ex\x15\x87\x05O[\x84\x9f\xabxrU\xc6Fb\x85\x1b\x95 hw\xc1`\xd7$\x85\"2OCl\xd8YY~?\x8ds\xd5\xd8\xa0\xbb\xe2\xc4Z\xb1\xeaz\xc5\xb0\xd2\x0dGY>d\x01\x06W\x19/\x12\xca\xdd\xdcc\x9a\x12\xac\xa3\x9ayy\xbb\xd8\xf8\xaaMz\x9dG\xac\xfeI\xf3\xfb\xaeV\xbe$z\x0e\xbb\xd4\x03\xa9&\xe5\x06\x9b*\xc6(D\x06\xa8\x10\xbe\xebL\x1e\x152X\xacJ\xca\xd0g\x08<\x1e\xf2\x9a\x88[)\x8b\x1b\x05#\\\x11\x0eo\xf5\xcc6GD\x16 \xed\xb7\x9f\xe7\xfe\x8f|X\xf9P\xfa`\xf0\xc4\xac\x83\xb9\xabm\x03\x0c!'\"\xe5\n+\x1c$\xc4\xd4l\x01~F\x05'\xb7\x9d\xce\xd5\xd2\xda\xe9\xd2\xd0\xceDo\xb1\x9e\xa1\x8b#U^\xe3\xa9\xc6oc^5\x9f|\x03\xcd\xc3F\x1f eZ\xbe.\xbf\xff\x90E\xe1j6\xa7>\xac\xb2rI\xa2d\x9a\x90\xb8\x1a\x1bv-\x00\xf7\xf7\xb0\x89\x0e\xa2\x1d\xcf\xe4.\x84\xb7\x17\x05\"j5\xa7\xde\xa3&\xdak\xcdq\x82^\xa2\xd4\x19\x98\x90+\xbb\x92\x05\xd7\xc2\xc8<\x0f\xca\xdb\x04UXt9\x97i\xca\xa2\xb0$\xb0k\x8e\xf4/\\\xb0\xa2[t3\xd5\x82>\xa4\xdb\x9f\xb0\xd2\xa7\xbd\x95\xfa\xcdu\xba\x7f\x13\xcf\xee\xd9\x84\xfa\xf6\xf4\x9e\x0d\xca\x9b\x7fc\x99UE\xd4\xf7[\xe1\xb1\xfd\x18.\x97\xe9\x9d\xe8\xe0J\xd7{\xad\x84\xf4\xb9k\n\\\x83,\xd4\xfd\x1a\xc4C/\xc5\xeb-n\xda\xe2y\x95^t\xc9C4r\xc7\xe5Pnnz\x90N\xca+\xad\x8bF\xfc\xa3j\x954\xb1L\x18\xc7J\xcc\xd0N\xe5!\xb6\xe3\xc26$oX\xfc\xce\xa4\xb2\xda\x1aYV\xa7^\x17\x96\xecAU\x0d<\x93\x91[5\x02)~cx\xd3u\x94/\x0e\xfa\xff(\\\x1a\xc8.y(\x90\xaf:8\x02\xaaU\x94\x04\x08/\xa5\x9f\xf6\xae\x074\x87$\x8b\n\xc2\x90\x0d\xfa\xb7\x08\x9c\xd6\x92J\xe4\xea\x9b\xe9/\xd9\x7fZ\x84\x11\x1e\x82\x8d\x04\x0cL\xd7u^\xe7h\xe6\x00\x1b`\x15\xb9&<\xfa\x8du5\xd9\xc3\x03\x88d\x12\x83\xee\x83[\xfd\xdec\x8c\x8dyU\xd0\x08[F\xd8J8M\xf0\xad\xeb\xd4\xbf\x13\xfb\xb7\xdaA\x9a\x0e\xe3\xad\xd6F\x07\x81\xad\xed\xd1\xb3\x156:\xc6\\\x15\xe5\x9ci\xeb\x8ax_g\xf4\xd1\x87\x98~\xe6>y\xd2\xb9/\xda]2\xb7f\x05t\x8a\x0e\xc8\x1a#\xd6\x97G8\x02\x90K\xd8\x9eh\xa3\x0d\xb7J+\x19\x8a\xe8\x8dh\xf0#cC\xaa\x0b\x0eF\x9e\xa6\xb0\xf04\x96\x93!\xb3\xa1\x03\x83\xc6\x04N\xd0\x9bjo\xbc\xb1W:\xa9\xf6\xcc\x16\xb4\xf8\x0e1\x13]\xcbh\x03\xeat\x10,\x9b\xc8\xd26\x8d\xc4\xdd\xf1\xea\xdbx\xbfE\xfc\x19(?I\xe3\xc3H\x8b\x16e\xea\xeba\xbe\xca\xba\x05\x02:\xbboS\xae\xa0\xed\x85m\xc3YRy\x94\x14\xd3`q\xa0R\x87+\x96\x16\x9c\xfd\xf8F\xe3F\xec#4\x1c\xe6\x95\xbaJ\xa3T\xbfI\x80n\x0cD5\x0f4\x99\xfbl\xe7{\xcf\x0b.hA\xc2\x85\xa0H\x82s\x12\xc6\"\x02\x1b\xbe\xffR$T\xbcg\xee\xee\xeb\xefQ\x80y\xb4Z\xa6\xe437\x80\xe3)\x97E\x98\x95\xd3\xbcX\xf0\x8aww0\xf5}X\x96\x97\xf3\"_\xcd\xe6<\xf3\x8b\xe7\x83LMz\x1d\x01\xf28_&T,\xdc9>\xdf\xf1l\xf4\x9fA\xd7\x1e481II\x12\xc6|\xa1|\x84\x07\xaa\xe0\xa7PF\x8b\xbbf\xd24\xc9\x92f\xc0E\xdb9\xbd\xd19\x07\xfa#-\x0f\x08o\xd4~\xb6\x93F\xaf\xec\xf9\x04R*\x8c\xe6\xfb\xea\xb3\x16^d\nd\xe0o\xc2\xc8 \x82P\x1f\x1a,\xb9\x93\xc5\xe8fk\x8b\xf1y\x18v\x1d+`3h-k\xbe\x07\x02\xac1\xca\x8bO$>'\x7f[\x91\x92\x96o\x0b\xf4\xe9mJ\x96\x8bDP/\xcdPlO\xd3\xdb\x92\xcfW\xee\x91\xa5\xf5\xedk\xc7\xeeV\xb7\xd3]\x9b\x0fYq\x11\xc6\x06\x0dn\x8a\xfc\xb6\xe4\xd4\xcb\xc4Y\xef\x04\xbb;\x8e\x0f\xec\xc7\xeb\xc0\xb9\xaa]\x81\x04kR\x94I^y\xf9\xf0\xe1{\x8fk\xd2\n{\xda\x04\x87w\x99\xe8KpW\xed\xd3\x0b\x1a\xa2-\xfc\xac\xdd\x9dT\xd8\xad\xbc\xd0\x8e\x954H\xb29)\x12\x81\x15^\xed\x1aX\xaa\xc8h-\x02(|\x12z\xa6#\xdc\xe0\xcf\x06\x99IL\x05\xfe\xd1=\x0e\x80\xd4uvw\x9f\xefJG6\xed,\\u\xebC\x92\xd1W(i\x025`\x8d\xd7R1e\x03\x98\xfb\xa8\xa1\xc5\x1a}iE\x0d\x0b,l\xf983bg\x10\"6\xee\x82\x8a\xa3C\x0420\x84Q\x05e\x1fSU\xf6k \xd5\x11\x99\xf0\x8b\x8e\x93\xd9\x15\xfc\xeaz\x7f\xea/\x10\x19z\xb7\x0f\xbb/`\x04\xbb/\x9e\xbdzn\x99\x85FW\xd0\xaa\xf4\xcb\x17A\x0c\xe7\xb0\x0f9\x8c\xc4\\\xa4\xf5\x87\x94Q$)\x8c \xf2\xcd\x95\xd4\xb1~\xdc\xf6w\xafF\xe6az\x18\xa62,\xa7/\x0f\x02\x12\x1f\x15a\x92\xa9\x89\x1c\xe7i)\xcdr\xfclh\xa6\xc5\xa4\xa4E~'\x12\xcd+\x82\xf1\xf99\x7fE\x82\x98Dy,\xa2\xc9\xd8N\xaaF\x1eVxZ\xb5\x86B\xb2q\x16\xe5\xa2\xb7\xa4\x95\xf6\xe5\x0b8+:}%\xe5I*\x13\x87 l\xc5\xb5\xa1rD\xab\xe4)\xef\xb2HJL\xd8\xfb\x0dn\xe5\xf7\xdcZW+\x9cg\xa8\xff\xd2\xab\xb8\x0b\xedC\xb3\xef\xc4\xe4A\xdc\xaeoU\xec\xd8\xad\x84RpY\xf4]\x16u\xe7\xe3\x81\xe0\xb0\xe3\xd1\x8d\xfd@d\x14c\xff\xa8\xe4C\xb4\xb9%\xb2\x81\x8a\xc6 \x15\x7f \xf7\x1eII\xe6+\xbf\xd9\"X\x1b\xf9\x8a\x871\xf5\x0c\xc4\x87\x99\xa6\xd2\x9f\xad-\xe5x\xf71r\x80[\x9fJn\xeeC\xe1\xf9\xca9\xe5^\x08\xa6\xdco\xad\x03\x97\x9br\xb9\xa8\x14\xa9\x12\xc1\xd8\xf3+,V\x19\xe3\x15\xdc\xdc-\x1e\\\x81\x0f\x17\x1cT\xecZ(\xe89\x8aO\x00es\xd0A\\\xf5+\xf8\xe0\xad\x01\xec\xc1\xd8\xd5YD\xfd \xf1\xcc\x90{\x07\x7f\xb7\xb6 C\xde2\xb9\xa2dX\xea-gB}\x8cfZ\xba\xd78\xcd\xfcj4gsv\xed*\xef\xf6\x91\x1b\xbfXi!\x05\x01\xa8@Y'\n\xf8kl\xfa\xba\xdb\x8d\xfciX\xd2\x1f\xbb2T`\xa6\xd4\x88\x8a\xcem$\xaa\x03\xc2\xae\xb9\x03\x92\xdf\xdai`-\x8d<\xcc\xc8-\x84\xfcf\xb11\x016\xba\xe0\xce\xbc\xad\xb9\xe6s\x930\xd8p\xe7\xfc\x12\xec\x8ew\x00\x8d\xbe\xd9\x8f\x06-\xe05\x1c\xa0\xdeY|\x9f2n\xf6V#\xfaX~N\xa6(\xe1\xa2ok\x0e\x0e7\x08\x9e\x94f}\x0c\xbe\x86\xca\xc5\x87\xc4\xcb\xe2\x8b\xed\"A|^\xeb%\xd7u\xd1\xb5\xbd\xac8\x01\x95\xc22e\xaf\xfej/\x8eg\xb4R\x98\xbf\xef\xc9/\x9e\xe7\xc3T\xb9-\x1e\xb4\xa67M\xa4\xc8E\xe9\xc6k\x03\x15\xec\x19\xfaP\xf6F(_\x05>\xc7\xcb\x03\xe5\\\xc4\xa8+r\xa6\x18\xe6\xa4\xf2$\xe4a\x87\xf9\x17\x97\xb7^\x7fSk\xd9\x1d4\x9ake4\xa6Ad\xd0\x17\xf0Q>\"\x06\xa3<\x83\x9e<\x01\xaa\x10C\xb8\x06-\xe2Hb\xe4\x98\xa59\x06,\xfc\xd5\x15\x07\x84\xc68\x16n\x8d\xbb\x07\x8d\xf3\xd6\xdawj\xa4?\x0c\xb6\x0c\xeb\xca\xb1\xb2\x86:\xcc\xb2\xa0j\xf9PD\xcfo#\xd8\xc9g\x9b\xbf\x8a\xf87b&;\xc1\x91\x8b\xcd\xcd5\xf4\x8a\x0e\x83AtZi@l\xe6\x93(\xa9e\x05\xe6\x0c\x95R\xf4\x8a\xa3\xcd\x92\xcf\x1b:\xfd\xcb\xf1\xc6\x82k=\xa1w \xbc'\xc3\x1c\xbb2\xd0'\xce\x86\x0f+\xd8\xdc3\xc9\xd3\xd8\x93\x07a\x9a\xf2\x83\xa0\xe4^\xd8\xe4\xee\xe3;\xa6\xf2\x92\xe6\x83\xe30\xd2\x82\x1f\x00Mx\xd9\xdc\xc4\xac\x1dG\n'I\x18\xb9b\x11\x0b$\xa2\xaf\x89*\xe7\xf1\xecb\x04qN`?l\xe7L\x1b\xd6\xbb(\x08)&\xee\x94\xc8T\x9c|\x10\xcdW\x99\x85\xd1\x92\x0f\xea\x0b\x05DP\xf6\xddy\xb99r\xbf\x88\x87\xc1}\xb5B\xbb\x88\x99\x1a\xdc\x1c\x8c \xad\x16-\xf5\x19\x036\xd5\xc0\xc1\x0b\xae\n\xb9\xa3\x81S\xdau\xf4\xca\x83\xbd\xa6\xb9\xf9\x1e\xb2\xd4ZW\xa9\x87\x0bhn\xa4Z\xb4\xc8H^\x86\x06fM\x07\x9d\xc2\xa7\\\x8f\xb4\xbc:\x85*\xf1\x96\xb6\x07xx\xf0\xc9\xd5\x1b o<6\x0c\xb4=\x92\xa28\x9c6\xebJk\xe1\xe9\x0c\xc2\xca>A~\xb7\x171\xb3s$e\x1e|p\xf8pZ.\x92\xf4gF\xe8\x08\x0d\xad\x84\xc8\xb5\xdbI\xa3\xfe\xa8\xb7{\xd5\xd4\x1b\xdc\xda\xa8\xcfW\x1f\x1c\x8d\xe9\xe6}\x85\xa4\xacE\xbfBYI\xcbX//\xe3nH\x18\x07\x8e\x0f\xce\xd1\xf8\xfd\xce\xce\xce3\x8b\x8f3ho\xf0*\xb9\xd7\xfd\x99\x85E\x10\xb1\xb4\x9e<\x11\xbf\x82yX\x1e\x0b~\x0bl\xa1C\xa5\x9b\xe8z\x99&\xed\xd2Wh(\x07{\x03s\xfb\x16X\xb8\xf3\x0d=\xeb\x08\xe0\xd5/O\x92Z\x90\x1bsU\xdf\x94\xd4\xfc&\xdb\xed\x9c\xe3\x92\x0e\xa6\x9a\xbc\xa4\xc2\x8f\xce\xfaN\xcb\xaf\x88\x85\xe6\xbd\xe2;y\xce5\"\x9c\xb4\xee\xe5}P\x15G\x97\xc9\x92\xf4a\x07.\x01h\x1e4uP\x90\xc30\xcbr\n\xac\"\x1f\xd8\xafB\xdcp\xea\xac\x88\xd6r[$i\xbf\xa3C\xb2\x9e\x1b\xf0\x1b\x18s\xbb\x8d\xfd\x86\xc1#7\x88\x0b\x85\x8d\\\xa5\xab\xd01:W\xa1_V\xae8\xdd\x02\x17\xb4P'4\xb6\x1fi+$\x0d\x94\xe2\xdc\xed\xaa;L\xf0**Y\x06\xd3\"_\xe8\xf1\xe3\x00DH\x05\xcb\x16D\"\x85\xebWpT\x8dT\x18\xe3\x0b\xf6\xf1U\"@FmsEX\xbc\xe1\xd1$\xd3\xcd\xdak;\x86\xac\xaa}\xe1\xf9\x90\x0b\xb9\xfb\xfe\xb0\xb3[R\x03\n\xc8\xf0\xa5\x0f\xa7\x94\x14@\xb2\xd8\x16d\xd3D\xdd(G\xb4\xc5y\x86\xd8\x8b\x19\x9e\xdc\xab\x16\xe7m\xe7\xd2A\xb9\x9e1Y-\xc9'\xb4\\$\x80B\xdc\xd4\xa4\xf2>\xf7\nN\x1az\x80'\xe1\x1dn\x15>\x11\x98\x1bQ\x0fF'+Q_\xc0\xf1\x8c\xd1\xa3\xb9,A\xb1\xa3\xc989\xd4\xbc\x8er\x0dm\x1eg\xeb0Mb\xc8\xf2l\x8bW\xbb-N\x1a\xe4s\x1c\x0f\x95\xc5\xb9/\x8e\xe6\xbc\x87\xcdy/xJ.\xf9\xd0v\x10\x10\xb9\x069\x97\x99\xf2\x00\xd2n\xde$\xc0B\xc3\xde\xaf\xa4A\xb6\xf5AU\xae\xdek|S\xd5}\x078\xd1o\xf4\x8c\xd7Axw#\x17E\x8b[\x82{Jl_\xda\xe1\xc2G>F\xf2H}\xbeVz\x18\xf6\x8a\n\xee\xb2\xa4\xda\xa0\x8c\x88\xcc\x95\x0d\xcf\x15\x03,\xce#\xcc|\x9e\x94F\x18\xf8\xce\xc2\x18\xb9@>\x95\xd8j\xd3\xaa\x1b\xc9\xeaF\x0b\xb8:8\x12m\xde\x0c\x9a\xcb \xed\xfd\xa6\xeck\xa7\xc3GR-\x18\xc4\xed\xc1\x05\x0c}p\xc3=\xb6\x19\xd8Z\xfb\xfc\xdb\xb8\xe0n`\xc3\x1d7\x02\xc3\xcd\xbb\xfaH\xb1\xc2\x08\xf4P\x84\xda\x83\x07\xce\x08\xb2\x1eY\x85\x90<\x8c \xe9\xce\xc8v:\x8fgo\x07M\x1f-\x86S)\xca1O\xc3\xc8\xc8\xe4\x1b\xf3Z\x85<\x9b{\xd0vs\x06\xb5\xa4G\x95\x94\xacj\xfc\xd1\x89\x9e\xcb.\x8c\xb5\xf2A\xa2\x8cvL\xa0& \xc3\xa0j\x10\xf1\xa4\x11\xee\x1c\x1a77\xbb\xea^eCjo\xf0l\xcdV\xda3 \x1b\x16H\x9e\xbflm\xf9\xca\xad(:\x82\xac\xef\xcb\x14\xa9\x07\xbe\x19o\xcf\xda\x02\x13\xbc=\x93$q'\x11X\x12z\xd4\xba1\xef\xa6\x95\xd0\xd6\xd2\xe2\"O\xb8\x99\xa2\xf9\xbb\xfc\x96\x14\x87a\xc9\x8d,6\xdc\x893'\x9f\x19w$\xee\xdd\xd9\xff-\xfc\x11\x96Q\x92\xb0\x1f7I\x16\x16w\xf8+,\xc9\x8b\xe7\x98+*\x9f\x8a\xff[OE\xb1\xdd\x17\xe8k\x17k\x90\xbf\x8b\xf0VQ3r l\x82\xe3xZ?P\xcf\xa8\xb2\n\xd0Ng\xe9`\xb2\xde\xf3\xe8d\xb2G]W\x83+\x83\xf2\x81I3\xd7\xca&5X\xe6[\x93\xda\x89\x91\x83&U\x9c\x83\x91\x91\xe2F\xae\xba\x97\x93\xee\x18W\xe3\x80h\xef\xdd\xe6\xe8\xbc&\x84]\xdf\x87\xcf\xc8\\\x85J\x15\xd7C\x1e\xe3\xc4\x19\xb1\x96,\x96)Y\x90\x8c\x92\xb8\x87\xb5\xa9/\xe7\xb8h\\\xfdF\xb2x`g\xaa\xbb\x8c!{\xdb\x1a\x90 \xa9\x02\xc2\x055\xe2\xeeW\x11\xbd\xdf\x8b\x99\xa8\xcd\xbf\xa1\xe9$\x83{\xa8\xaf\xee\xa8\xa5\xcc\xabP\xf1MQ\xab\xb0\xc8\xcbc\x8e\xe2p\x87\x16R6\xcb\xd8\xad\x06\xd2\x192S\x80\x07q\xad\x1f\xb4S 7\xfdJX]\xd5\xb9\xaf\xd2\xb2\x19\xbf \xcc\xb3\x88TB\xb7\x0e\xd2\x8d\xd6*G;\xbe\xa2\x9a\xd5\x16Q\x83r\xa8\x14-Fe\xe0\x16\xacT\x97\x8c\xdb\xee^\xdbJY-\xd3\xd5v\xa5\x84\xae#\x14\xd1\x81\xf6\xd8\xda\xdb\xbcl\xf4\xc7\xca\xe7Z\x9aw;\xdb\xc7\xd8\x8d\xf7\xdc\xf9\xf5%\xf7Z\xfe\xd6\xb6\xe9*S\xf3ToZ\xae:O/\xbf\xcb%%Y\xecz>\xd0V\x0c\xf8\xdf\xd5=U\x03\n~\xcf\xa0\xd4}\xb6\xf3\xcac\xc7\xe1\xf1bA\xe2$\xa4\x04\x13w\x87\x85\x0ex\x8c(\x83F\x04\xf2\xbbf\xe7\xbf\xb9\x1b\x99\xfb\xe2\xf5\x8e\xe7z\x95\xdbN\xc6-a\x98\xc8\x17\xafw\xbfa\xa8\xeb\xcam\xfc\xcb\x1ds\xf0\x84\x17\xa6\x88?\x99\xfb\xea\xa9!\x86\x97n]-\x0e\xf6f\xc6\x95)jSWx\xa0R*E\x867\x9a\xff\xc5\xb4\xa1.y\xdf\x05\\W^\x1b\"_u\xa5\x0f\xb51\xa2\x12\x9f!\xb4\x98W6\xcb\xe1\x85@\x86\xc1W\xb9A\xb0W\x9b\xbaF\x9a\x93\x05~F\xa0sI\xf4p\x11y\"\xce]\x04\x7f\xd8\x83\x1d\xc6&\xb0\xb4\x914H\x96vN[\x90\xba\xa5\x1by\xde\x1b\xe0a\xee`s\xd3p\x1d\x85z>\xaa\x94\x95rq\xc2T\x1c\x8d\x13z\xe5C\xe1N\xbdz\x8c\x1a\xbf&R\x15w\xc9\xdf\x00\xcd\x0d#\x89\xd6i$\x05\x95Z\x07\x86\x11\xb5&\xd1\x1b1\xd3\x8bHaJ\xc2\xc4nD\n\x8aT\xb8\xf1\xe1+\x97\x12tw\xaa\x06,\x967\xce#\\r\x11\xc0\xe1\x92|\xa6\xa7yL\\\xc7\xe9p\x1cn\xd0\x00QT\xaf\x06\xdc\xaf \x83\xd3\xc1\xe6{\xf2\x80\xe7\x97\xeb\xdc=\x16\xb5\x9d\xdfC\xfc_f\xfd\xfe/\xb11\xe3W\xb3D\x05\xad\xd6\x9a\xe4\x94E\x8e[;Z\"B\xf3\xa3\xca\x8f'8\xd1c\xd0\xc8\x077l\x1e\xc4!\xe5\xe1|\xf6`s3\x81\xff\x80\xa7\\\xdd\x01k\x0b\xcay2\xa5.z\xa1\x10\xe2\x17ix-(\\6\x82 \xad\x96qH\xc9\xbb\xf0\x8e\xcd\xf3\x00*\xd7@\xb2cD\x0f\x83\x80u\x19\xde\xa5y\x18w\x84\xfb\xa9;\xf06I)\xe9>\xe5{:`\x10\xc9\x0e\xeb@9\xcfo\xfb\xc9C\xc6\xa0\xb6|B\xf5\xf8>\xe7\xc1\xb4\x94\x04#UE*\x17\xb0\xba\xfby\x06\xc5\xb6\xe1\xae:\x86ke\x1b\xb3\xd9\xc8\x14\xbf\x8e=l\x16\xb2\x91\xe1.\xc5f]\x88s\x17\xcd\xc3lF\x84UW\xff\x0c\xdes\xfe\xda\xbe\xe3\x1d\xe7\x11\xa70|\xe4)\\\xe41\xb9\xd7\x0c\x9a\xb8/c\xd0\xae\xf6\x06vR\xdc\xb1\xd7|\xf7\\\xf37\xa7\xcd\x9f\xb5\x91\x81Vr\x8a\x1b\xcfi\xb3p:Z\xd1\xca\xb1\xc1:m~\xae\xc2J2;\x83+\xee\xa2\xf2\xbf\x1ea\xe2\xf5mH\xc9\x8fd\x9a\x17d\xfc\x99D+\x14l\xd2 \n3\xf1\x8a~.y\"k\x0cOR%m\x1e\x96?\xe5\xe2\x12\xa6\xfa\xfeKB\xe7'\x84\xf2Y[\x86E\xb8 \x94\x14\xe6\xd4\xe3,JW%\xab\x94P\x9ad\xb3\xb7ya.\xf6\xe3\xddqL2\x9a\xd0;\xfc\x1e\xa6i~{Y\xdc\x1d\xd3\xb3\x15\x95\x85\x16\xec\xa8\xafn\x0ddj\xa1\xbf\x96\xcb<+\x89\xb9P\xa9\x16)\x1b\x05\xf8\x1b\x0dg3\x12\x9f\xc9\xb1\x96\xcd\xa1\x97\xac\xbb\x97\xe1\xac\xca{Dh\x98\xa4\xd5\xab)\xfby\x9e\xd3c\xaet\x87r)\xca\xa3Z\x88\xf6\xe6rzo\xc2\x92\xbc\x0f\xd1\xacO\x00@Rw`\x9ad\xf1Q\x95\xc6+!\xd1\xaaH\xe8\xdd\x91\x96U\xa6\xf3i.\xf2x\x15\x89\xa6\xa2<+W\xb2\xdd\xbc9\xc2eH\xe7\xb2\xfcb\xcd\xfd!I\xe3g\xfcM>SRdaz\x94G<_\x92M\xf9^M\xca\xb3\x83\x8bg\xbc\xec\x92D\xd5\x8f\xff,9\xa8\x9c\x932O\xd7$\xbeX\xdd\xd0\x82\x88\xe6Y\x06\xedC+\xbdQS\xf5r\x91\xaf\x8a\xa8\xce|Ay_WE}\x19\x8b,\xaf!>\x82\xa2\x15\x94\xb9\xafLA\xdaQ\xa5'GyA\xd1\x0c\xf1Wt\x87\xf8+\x9aH\xafn\x13cm\xbf\x97\xd0nVa\xb0\x1c\xfd\x08\x17\xecL\x9d\\1\x96bF\xe8q\xe6N\x9c\x05\xa1\xa1\xe3\x83\x83K\xe6T.\x9e5G\xb5\xd4\xf3a\xe2T\xdb\xact\xae<\x1f\x0f\x8d\x12Eh\xffy\xe1\xb9\x93+\xcfC\xc8\xea\xb1\x87\x94\x97\xa0\xc1I\xb8\x0c\x92\xf2$\\\nE%\xec\x93\xeb`\xb0\x06\xaf\xd6\xf4\x16\xc9I&\x12\xb5\xb9A2\x81\xf7\xe4$\\z*9\xea\xab\x98\xe1g\xae\xe0\xd2\x7f\xf7a\x9a\xae\xf7Bj%)\xbf \xb1O\x94\xe7\xf1\x0e+\x93%\xa7\xea]RR\xcf\xf5\xbc\xa0 l\x1f\xb9\x8d\xaet\xdd\xc1\xc8\x08\xa4\xb1\x081A\x959\xd9\x97o\x88\xb8\xaf?/R\x87[5\xd4\x89]r\x19F\x9c\xbbj}\x9b\xe0\x04\x0el\xca\n\xf8r0\xb0j\xce\xbb\xbe\xfc\xffP\xa3\xa87\xa7\xbe<\xe6AX\x8e\xb3\xff\x1a:\x87\xf1\x84|\xf2\x83\xa4d\xffT\x81$ \xca|A\xbe\x11f+\xe0\xd4\x94\x8d\xfbf\xe4\x92\x07\x1d\xba\xf49>\xa5$\xa3,\xc9\x0c\xabz\xc7\x14\x08}\xd3\x9aH6\xd5\xb1K\xbcj\x9f\xf7\xed\xef\xd6~f\x0b\xda&\xd5\xb8\x8b\x92\xfb\"\x8f\x81\x953Tz\"n\xceZ\x1fQ\xa7\xac\xb5\xb5x\\]r+vW\xbb\xd8\n\x1d\x93`1yb]\x8bM\x811\xd2\xcd_Fp\x89\xd1\xf30j\x15\xcb\xe8,V)M\x96aA\xb7\xa7y\xb1\xd8\x8aC\x1a:u\xb6\xbcX\x1c\xb1\x14\xcc\xcapE\x12\xe1q\xb8\xfdy\xeb\xf6\xf6v\x0b\x8b\xac\x8a\x14\xaf\xd7I\xecT~\xda\x8d\x04\xb96U\x06h\x14\n*\x15\xc0\x189\x1aI\x894\xf2\xe5\x9d\x00Z\x1d\xe3\x87\xf5\xe1\xde \x83&dy/\xb0c\xc7\x8a\x9c}\xc3\xa1\xd2\xc6*\xd1\xaa(HF\xdf\x0bR\x84\xd3e'\xcdS\x19A\xc5\xfd^\xbfrY\x99y\x04~1\xf4\xd2k\xd6\xc1\xce\xff\x893#\x14\xe1{\xc5\xff\xe5%\xfe\xe7\x1e\xba\xd8\xaf|\x89D\x0f\xfb9'a,\xf6B4g?\xd0\xcb\xa6\xa3E\xd2\x88z\xc5\xde\x15Wf;\xd7\x00Z\xf7\x9fS\x1e%M\xa5VX\xd1P\x08\xcb/HJ\"\x9a\x17\x9e\x1b\xf5\x05\x82\xac\xb0\"\xee\x8b\xaaBM\x9d\x9fs\x04\x9cHz\x94\x86V\x85\x1e\x15\x9d7Q\xd3d\x8f\xd2\x0c\xab\x8e\xa3\x0cG\xf7\xfc\xef\xeb\x04\xe1\xa35\xc8k\x14\xcdf9\xdd\"qB\xf3\xc2\xd6\x01A\x9e>J\xf3\x7f-\xf3\xac\xa2>8\x18\xe9\xb3\xacm\x86%\x87$\x8dp~\x94\xce\x14\xa2\xbe\x9e\x0e\xf9Vz\xbe\x97\\R\xdbC\xecSh\xccB\xf7\x11\xc5Qr\x8b\xce\x91\xcd\xca\x80\x89\xc3\xe8\x03~M\xa8\xa6d\xdc\x8f1\xce\x05\x8f\xca\x8a \"~b\x19\x9c\x151)H\xccg%X\x90bF\x18\xc3S\xd3\xa9#\xdd\x16K[\xbbx\x08\xb3\xf4mK\xd9\xdd\xd3\xa5\xdf\x00<\xcf\xd7\x97\xbeZ\x87\xf6\xaa7\xde\xe7*\xff7\xa8c\xd3\x96\xbaC\xb3\xc6\xb5\x88#)\xb9K\xf34\xcc\xfd\xee\x0b\x16\xd1\x98n\x0f\x8a0+8\xd8\xfe\x8a\xbb\x86\xf1Wi\xaf#\xc8\xcai\xde\x9e*m\xae\x16|d\x1aG\xfd\x98\xddP\xab6\xac\\\x83\xb57\xb7\xbb\x1e\xd8\xae\xda\xaa\xa8\xb3u,h\xc3\x9f \x84%\xe5\x0c\xe6\x0e,\x06v`{\xbd\xefNv\xb6^_}\xe7}\x0c\xda\xbf\xb6\x93\x80|&\x11#p\xb8\x0b\xb7]\xd3lH\xe9\x87\xb9+\xf1\xc0\xae\x10I\xeb2\x02\xaag\x12\xee\xdaB\x18s\xe3\xb3\xbe\xc6\xf1\x0e\x9a\x07\x0e \xca\xe4\xef\x04~\x80]\xaf\xb9\xfb\x05\x17\xdbf)%\x03\xd7\x93\xad\xb9\xd6\"\n\x1d\xec\x83K\xda!\xe9H\x87\xca]\xdd\xd5\x8d\xaad\xd5Uk\x18bc\x1bV\x83\x1c\x10F\xae\\\xb3\xb6\xf0d0\x15\x97K\xd9\xf0\x9a\xb7\x8f\\W\x1f\xb6\x9a\xbd\x9a\xf2\x0bB\xe7y\xdc\xab\x9f_-\xb7U\xa6.\x9f\x84U\xc6\x18\xfb-\xc6\xd8\x9bU\x07\x80\xc3\x95\xe5J\xdat/\x8f\x87\xf0\xa8\xb9\xda\xfanh\xbc\xdf\xe8r\xc3oCR\xbc\xe1\x0bB=\x974\xd9\xb8\xbe\xe3\xe5Z\x97f>vGd\xd5}\x1d\xb9\x95\xc8\xab\x12\xb2~[O$\xd5)\xeak \x9e\x0c\xc8\xca,\xf8}\xd4n(U\x1b\x89\xfc\x968\xba\x97\xd0\xab]\xbfY)=d\xd3\xeav}\xa0W\xbe\xd031\x82xS\xb0!\x08g[\x15v\xb5\"\xd4 F\x99D\xeb\xa6\xdcoI\xe2\x1fe\x96\xd5.\xda\x85\xa1P\xcd\xb6r3\xf0(\xed\xcb\xfa\x8cK+\xee#\x1e\xa5!V\x97\x99I\xac.@\x1e\xa5\x1dQ\xdd\x006\xa5\xfbf\xc6\xdc\x99;\x1fn|\xb8\xee\xbe\xceku\xac\x11\xd8\xdd\xaa\xc5Qe\xe7\xd7\x8c\xaeSu\xd0\xe9\x9b\x02\xf9\xa0\xd7\xa3\xae\x0c2\xd3FS\x18\xda\xaf\xb5\x06j\x07o\x13:\x97\xaa6\xe5\x80\x91\x19+\xd1p>'Z\xe4\xd0\xab\xf4\xa1#W\x1f\x03b\x17|\x8ekP\x11\xd5\x9f\xaf5\xe3S\x1f\x04\xcd\xdeU\xe9\x8f\xdc;\x83E\xb2\xfe|m\x85\xb6o\xe7\xb0~\xb6\xfbpnt\xca\x80|\xe4c$%\xb4\xbd\xa5\xa1h\xae\x97#\xeeC\x1fe\x8b\xb3\xbaz\x0f\xc7\xc6\xfbg\xd9\x87\xfa\x8a\xb6\xf7\x94\x92S\x82~\x81*\xc4\\]\x02q\xe5\x01W\xd9G\x83\xee\xcf\xa05\x1a\xe5\xc6\xcc\xa0?\xd1\x89\xc6\x9a\x83\xbc\xd0\xd8\x08\xe5z\xda<\xed\xb7>\x8c\xfd\xc1\x13A\x06\xdf{\x81r\xc6+`N\xab\xf3YEl|5\xaflJ\xb7\xf2d\x0e\"\xf4\xab\xcfH\xf8]\xf4\xcc'\xf7\xa2\x10\x02\xe9\xf0\xd0\x07QZ\xfdD\x06\xce\xb2@=\xc6A1\x8c\xbf\xd32\\G\xe8\xd9\x03\xfb\x08C\xfb \xf6\xed\xff\xd5\xea2\xf4^\xcbZuC\xb9w\x94w\x8c\x1d\xfb\x11TPn\xc8\x9fz6\xee!'\xb1\x0d\x8a\x18\x83\x10F\x95i\x10\x9c\xe2x\x0e\xf3l\x9a\xccJ\xb6<\xf6\x85\xc5\xcb,\x06\xb8\x17yAM>\xd0\xe5\xc3\xfd\x10\xd7{\x92\xe7\xef\x04\xf5\x0b\x94O\xe4\x05\xfd\xf1n\xd8\x9a(e\xcd\xee\x00\xba\x02\xd4\xea\x8f\x9c\x0f\xa3\xdej!t\x1fV\xd8?R\x94\xca\x1cL\nK\x14}P\xe9\xeb}\x90]\xe8\xb0\x11\xff\xea5)\xa6>\x0f\x0c\xf2\x9e\xdd\xd8g\xe9\x83\xbc\xee\xb3\xbe\x1a\x93\xbc'^z\x02{8t\x8aU\xb8\x05^\xd0\xf7\x0eV\xc1\xdb\xdd[\xbb>\x96F\xdc\xd9[\xd6\x01z\xa0\x8a\x0e\xca\x11$\xf7F\x04\x86\x9d\xd9\xdc\x82\xbe\xa6\x07e><\x86\xca\x9ck\x192\xaf\xf0~\x17\x1a\x9f\xf0LST\xb4\x1e\xa93\xbc\xbe>&\xa1\xf1~\x80]ik\x90=J\x8f\xb4j\xef\xd5\xb13\x8e#\x9b\xban\xf7\xe0O\x0e\x95\x1b_\x96U\xb2\xc9&\xa8P\xb4\xeb\xee\xd1\xc2\xa7\xc1-\x98\xb4\xfa\xee\xd1\xd0\xc1\xe0\x86\x0c:\x85U;\x1d\x0dh\xc6)M\xbd\x10\xa3\xfa\xe2\x90\xdeK\x04v\xef\xbbw\xa3JW\xf3|5\xa3\x92\xfcA\x8a \x03\x9b\xb4\xcaW\x8a\x81\x9c\xb0\x14E\xe7\xb89\xb2\x06\x9d,\x15\x9c2y\xc9\xe2\xd8\xc6\x08\xe2\xa4\x1eX\x0b\xa6\xcd\xc3r\xce\xc5\xac\xf8\xf30\x8f\x89q@\xa0\xe3y\xc3\xa5\x9aXq\x93\x11\xca\x03Y\x85JQI\xed\xb6Y\xf7NMi\xb7o^\xb7N,\xf3\x9ec\x99\x1ee^\x1d\xda-\xc2y\xe9)+\xab\x16\xc2@\x13\xa9c\x7f8\x98^'\xb2\xa3\x0c\xab\xe6\x0cf7\xf4{\x1f\xe3.\xbe\xffh\xfe\x19\xdb\xf7\x1b\x01\xa5\xb0\x80\xc7P\x90\xb0\xae\xca\x99\x98\x93\xdc0\x95&\xe5\xf0oD\x83\xbc\xd0\xd5c\xa1\xb8\x07T\x97\xd4\x9ah]\xba\xa1\x0d\x04\xd7y1\xa5N\xa4<\xac\x0c\xb8\x02p/Z\xd7\xc1\x8e}\xd0\xf7\x17\xf2i\xcd\x0e'\xfa>W\xf5\x93k\x1d\xff\x07Hj$\xdanH|\x8d:r\x06\x17<\xdc\xcc\xb1V\x1a\xc5\xf8\xcf\xce\xb6\x08K9\xd9Q\x02\x12\xaa\x11\xa2do\xe0\xd2\xde\x9f\xff\x81*\xa9lRz\x95R\x0d\xb3p\xf2\xaf\xd155\\\xa3\xa0\x99\xb2\xf4\xf1\xd2\xb9\xbd\x1f\x88\xd0\x85\xccU(y^y\x9d\xf7A\xb9T7\xe5#\xaa\xe5\xb5;\xbd\x97@x\xff\x83A\xac\x1a\xaa\xa0x\xa7\xd4\\\x8a\xdf\xb5\x7f\xb11\x1e7\xe5p\x95\x05M\x1f\nl\xcc\x8fP\xaa\x0b\x16!\x8d\xe6\xee\xf6\xffq'\xe1\xd6\xdf\xaf\xd8\x9f\x9d\xad\xd7\x9b\x1f\xb7\x82\xab\xef\xbc\xd1\xb6E\x0b\x97\xbb\xa0HJ\x19\x90\x80\xb1\xed\x1c\x92\xb3V\xd0\xc1\xd6)\xcb/P$\x8a\x14\x92\xef\xd6G\xe7Z\xac\x0f\x1f\x9e\xc33\xe6\x9ar^\xc3\xf6\xc1`h\xd47%\xa2s\x13gN\xe9\x12\xd54)]\x96\x8a\xb7\xac\xe3\xaa$\xf7\x90U\xb7\xdce\xf4\xd4)\x0d\xe9\xdd,zd\x8a\xc7\xa1S\xecF\x19-\x8d\x07\xdb\xe6Rp/z\xdf,M\x96\x03\x02\xcfJqj\xe5\xfa\xd1\xa0\x0b\x93\xa9\xeb\xd8\xc65\x7fm\xf7\xc4\x8c\xd6\xf61\xde#W\xf3> \x97\xda\xb6\xf9\xaf\xb7\x8d#\x8a5\x9c\xf8\xddp8\x98\xcf\xd4\xd7\x92p3\xf3\xa6W\xc2\x92\xd0\xd6+\xe7\xc7\xb9E\x12J\x80\xc7\x8b%\xbdC\xfb\x9f\x8az\xc6\xaf\x12N\xf1\x93\xb4\xa8\x92\x89\x9a\x16\xe0a\x18\xcd\xd5:M\x86S\x82O7\x7f\xc2\xb4\x0bi\x9c\xb5\x0c\x8b\x92\\\xe6\x95U\xd5\xc5\xf8\xf2\xfa\xe2\xf0\xa7\xf1I\xc3\x9c\xfa||q\xf6\xee\xe7\xf1\xd1\xf5\xc5\x87\x1f/\xcf\xc7\xc6oj\xda\xd9\xfb\xf1\xf9\xc1\xe5\xf1\xd9\xe9\xf5\xc9\xf8\xf2\xe0\xfa\xe7\x83w\x1fx\x99\xc3w\xe3\x83s\xf6~\x8c\xf9\xde\x1f\x9c\x1f\x9c\\(_\xce\xc7\xff\xbf\x0f\xe3\x8b\xcbF\xca\xc5\xfb\xb3\xd3\x0b^\xfc\xdd\xd9\x9f\x1aYXoO>\\\x1e\\\x8e\x8fZ\xe9\xedw\xa5\"S\x0fD\xdf\xc7'\xef/\x7f\xe5\xe9\xd7\xc7\xa7\x87\xef>\\\x1c\x9f\x9d\xaa\x19\xf0\x93\x9a\xf0\x9f\x17\xcd\x0c\x1f\xce\xdf\xa9\xaf\x17\xef\xc7\x876\x034\xd8\x83\x1b7s\x9f~\xaf\x93\x9d\xb9\xf8\xf2\xea\xb9\xfe%\x91e\x9e\xe9_B\xf1\xe5\xf9S\xfd\xcbJ\x96\xd9i\x15*\xc5\xa7g\xcf^\xe9\x9f\xd2\xea\xd3k\xfdS$\x9b\xfa\xdek\xd0\x8f\x1c&/\xfaT?%\xb6z\xc7\xe8\x8e\x82,\xd30\"\xee\xf6G\xba=\xf3\xc1\x01\xd0\xf1\x96\xcdkc\xad/\xd6Fsh/q\xdd>\x1f+3g\x8d\xaej\x9e\x1c\xcd\xbd\xf5-\xb6\xf9\xa7\x1d]\x18\xe0\x1c\xe0\x03j\xe9?\xb8\xf5\xdbok\x9d\xa1\x85\xde\xc5\xec\xe9\xc2\xf8\xa1]\xe0\x06\xf6\x88\x13\xcd\xbc\xb8! bO_>w\xf4\xc5\xcc\xa9q\x95?\x8b\x86\x9e8P,\xf7?x\xb4\x9f\x86\x0b2\x02K\xf0\xa8%?\n\xac*\x85I\xf9\x97E\xaa[\xfd\x00\x0crL\x80\xf3\xd6)\x89\xb4\x1b\x9b\xfe\x8b\xa6\x0f\x87o\x9d\x1c1\xb9\xddSS\xdcsjR\x12\x16?\xeb\xa7\xed\x83A\xfb\xf8A\xf3q\"\x14D\xdbj\x1c\x03\x96U\x9av\xa1\x91a\x1f)\xdb\xd3\xfd\xbf>\xa8\xfb}\xbb\xc1\xb2\x9c\x9f\xc8\xdd\x08tS\xbd\x87\xcc\x80\xb4\x1d\xfb\x1f:\x03\x1a\x1f{\xcf\x19`\xf0\xab\x10\x96\xdf2\xf6\xcb\xc7\x1d\xbbT{\xbe\x87\x0f\x10eD\x92r\xfe\x96\x01\x9d\xfc\xb7\x18PI\xe8}\xd9[\xdb\x80\x8e\xee= \xce\x9ew \\6^\x0bx\xca\xf1\x1ad\xc3\xb6\xf16\x89\xd9iEd\xbe4\xd9\xa5e\xaen\xd1\x19W\x05Z\xf4\xe5\\|\xda}\xd9\xfa\xb4\x96Ti\x9b\xcc]\x88O/_\xb4\xc8\xdcY\xf5\xa9Ej\xdfI\xc3R\x13\x93{c=\x14dh\x1e\xd51\x04\xe9v\x0ca%w\x1a\xf3xm`\x1e\xd0\x14Q\xfa\x9fA;\xc8\xe6\x18n\xdb\xfcG\xa3\xc8\xaaH\xb5\x12c\x03\x07\xd3(\xc2\x95\xa8\x1be>\x9b\xd8\xa0F!<\xd2\xb5R\x83\xb8\xabF-\x84\xf1\xc9\xbc\xae\xfa\xfaF\xab\xf5\xd0\xc2\xc7\xf1\x8a$\xf3l\xec\xd0'\x13O\xc8\xcb\x95\x84^\xcb\x8bt\xad\xd4\x81\x81\xb3T\x0b!\n\xd3\xca\x9cup\xa9uYq\xe9m\xa9\xe3\xbd\x81\xf3\xe5e\xd3|f)ca\xa0y1D\xb9\xb6Q\x9e\x18\x99\xf1fAS\x8b\xc7\x9d\xec\xbdZ\xbesi\xfe:@\x8a\xd0\x00\x95J\xccz\xbd 4\x14\x87j\xb3\xceS\x8b\xb4\xa2QOm\xde\xda({\xde#\x051\xd6q]r\x81\x8bV\xd7Q\x05\x0c\x95\x80\xc5a\xcb/e\xaa\x8d\xcc\xef\x86\xaa\xb8\xb9;>\xba\xa8\x16R\xc5J\xdc\xa6\x9bH\xab\\zS\xe8\xd3K\xfeV\x19:\xad9\xb8\xc5\xe7\x01\xe6,\xcdGLQe\x937J\x96\x8c\xdc\x99\x10)\x8a\xce\xea\xf8\x95\x9c027g \x85{R\x83\x1c\xd4\x1a\x16\x10\xc3@\xc0\x97/\x90\xb8\x18\xb0\n\xc1\xb6C\x87\xabD\x0bqF\xda\xb1i-\xda$\x1d{\xbez\"h\x91\\\xaa\xa0\x0c\xa7\xe4]\x1e\xc6\xc6h]j4=\xf3T\xf2\xa5a\xf4t\x9e\x8aX\xfb\xe8\xf1-\x0f2r\xcbx\xf6qq\x9fN\x9b\xa7\x8f=)Y\x93t\x042\xa0\x935\xdf\x82\x94e8c\xc4GP\x90\xb0\xcc;\xcc\xe4\xd2$\xc3|\x8b\xb0\xf8\xc4OQ\xf6+`\xc9\xa8\xdb[\xbfmb\xe4 .:\xb3\xcck{\xf2l[\x05\x03\x1d)\xde6\xf7\xc0Uba\x85\xb0\x0f\xce*\xe3\"et\xf2\xc1\xb6VTo\xad\xd0\xe3&\xe0M\xd1\x88\x1bz\xec\xd0\x1fH#}0\xc4\x95\xfb[\xa5\xbf\xa5Hf; a0\xecM\xab\x86d\xe5\x85\xa8\x7f\x7fBus6`\x8f\x82t\x83\xde\xbbO\xa1\xf2\xff2\xed\x00\x8a\x15\xecA\x18L \x8d\xe6\xf6L%f\x12S\xd5\x01`\x98\xed\xe0\xc2\xc0\xe3\xc8'\xaaD\xb2\xb8\xfa)\xec\xc3?\xbe\xc2\x08R{\x91\xa9\xbcT\x14:\xc2f\xb5\xa0\x0fh, 7\xe6mXd\xdc\x91\x84\x98\xa2\xc6:7\xc2tB\x99d\x11\x81\xf5\xb3`w'\xd8\x810\x8b\xe16IS\xb8!P\x90E\xbe&1$\x19\xac\x9f\x07;\xc1\xce\x1bX\x95\x04,r~\x11\xd0s\xc3\xf1|\x0ep\xb6XW\x0c4\x18i>\xedRv\x8e10\xd9\"\x8fI*/ZN\xc2\xa8\xe8\x88*5\xc7\x12\xd5\xcdVO\xee5\xe6\x16C9\xce()\"\xb2\xa4y\x87R\xf5B\x94\xe0\x04\x8cR\xc42\xcaz\x95\xeb8?y\xe5i\xc1\xad\x9dG\xf0\xfb\xf6\xca%x\x1e\xac\x8a\xd4\xaa\xfe\xc5&\x8fq\x15\x11\x83\x88wIFNW\x8b\x1bR\xbc\xcd\x0b\xb4\xcf\xdb\xb7}h\x86\xdd0\x84\xc2\x90\xcf]\xd5\xcd\x0bZ\xd8\\w\xcb\x1b\xb7\x0eT\x8f[\xca\xe8cH>\xac\x8dN3\xe4\x9b\xb0$Gyd\xe5\x1dA\xb8\x00mB\xc8\x08b{\xf6&x\x8c\xa0c\xd3\xb7ac\x04\xeb\xae\xec-\xc0\x18\xc1\xc2\x98\xfd\xab\x17\xd09\xc9\x06\xe8WA\xe3\x8e\x95M\x98\xbd\x03\xec\xe1\xf6\xad\xfc\x1a\xd6\xae*\x9eL\xc1Mz \x0c\xa8$\x02\x0e\xba\xf3\xcf\xcc$\x06\x082\xa3y\xfb\x9f\xe1\x1do\xa6(\xd6t\x0d\x11T\xe5\xbc\x81\xda\x9a\xeac%K\x08?\xcf\xd9\xa4LWi*\xb6\xc8\xcc\xbd\xf3\x95\x14i\x15\xc0\xd2\x96\xdc\xc8\xb5\x91\xbd~ \xfe\x9a'\x99\xeb\x04\x8eZ\x04)\x15FU\xcb\xd8\x93$\xa0\xdcE\x9b\x9c7\x1f\xb5s\x84\x8b iu\xccr\x9a\xef\x93\x89\x0f\x8e kz\xa3?\xcb\xa7\x11\xcf\xaa#\x10\xa8\xfa\x08\xb9! Dc\xbd\x85\x86X\x01\xda\xa1\x8e= #\x13/qV\xc6E\xf1#j\x99\xe4\xdf`9XhWfvS\xaaVr\xcb\xfc`r\xa5\x1dGo\x85>\xda\xa2&\xc6\xd8kZ\xbf\x96\x15Y\xcdh\xc7\nh\x81X\x03\xdfQ5b\xa8\x0f!\x0f\x80\xe2C\xec\xc3\xdc\x87\xb5\x0f\x0b\x1f*k\xdf[\x1f\xc6V\x85\xa1\xba\xed\xdbb\xd0\x86\xc1p\x0bo\xdexP\xde&\x9c\xca\x0f\x96\x05F\xfc\xe2\xc1\xd0\xbb6Z\x14\x96\x04vF\xddk;\xe5\xe7\xd7\xdf\x82\xf2\xae\xa4d1d\xe3\x12\x19\x8c\xf1y7\xdc\xb0\xe7\xa6 a;\x92\x9a\xfa\xd8\xc1\x05lH\xc2\x89\xc9\x8d\x00\x1e\xe9\x05`\x04q\x9e\xfd\x9e\xc2<\\\x13\x08\x81\x0f\x06h.\x0c`\x08\xe4\x99\x0f\xe1M^\xd0$\x9b\x05\xdcaQxS\xac\x96h\xe2\xc1\xda\xb0\x05\x07\x069\x93\xcf\xfbg2\xd3yQ\xc1\xc6\x92\xa2\xa8)d\xc1\xb1N3\x1fi\xe2\xbc\xa2\xf2\xf8P8\xef\x97#E\xaaS\x9e\xa1\xa4\xfc\xade\xee9\x04\x94\xd6\"R\xe8`\xacK\x0dw\xf3\xb6\x87U\x1eb\xe8\xd4\x14\x91\xf0\x12\x91\xf0\xa2\x1fh\xe1\x1bp\xb0\xe9\xf9\x16\xbclz\x86\xe0j\xd3S)\x14\x8au{\xeaw\x99\x1b\x9a\x1el\xf9\xe9\x83[\x0e9\x91K2\xea\x0b\xb6\xbc \xe5*\xa5'\xe1\xd2\x17\xbc5\x83\xf2_\x12:?\xe4\x0e=%\xcaV\xa0\xed\xa5\x0f\x89\x9b\xe2\xf9z\xbfi\x93O\xc5tL9\x1f6\x8c\x96\xd2\x1f\x13[r\xf7\xb0\xaat\x96\xe5\xe6a\xd5\x98\xd8\x19\x83\xa2\xd2\x90\xc7\xc8\xea\xdc\xde\xbb\xaa>bQ\x7f\x10\xbc^>\x18\xbc\"\x05\xbc\x96\x88x9\x9f\xc4\x8f\xba\x88sWP\x04a\x9a\xe2 R\xba\x1e\xf7f\x86\x8c\xcc\x10n\xc9\xf6\x0c\xe4\xa2lO\x9b\xbbZ\"w\xb5\xd4\xcc\x16\\.\xa1\xb8?\xfbdz*l`b\xa0\xe6\xee\xfa\x7f\x1b\x03ez\x1e\xc2T\x99\x9e{3Z\xa6\xa7\x9f\xf92=\xa8Pm`\xba\x16\xd2\xbd\xf6\xac>WW\x885\xe3\xf6\x87\xb4\xfa\xd0\xa2\x83\x1e:\xbd\x15f\xef\x94\x10u=\x96\xa3`\x04\xf6\x08\xf0\xb6\xe7A\x88h\xf7\xfb\xfba\",\xe4\x90,v\xeeW\x0e\xd4\xcdX\xd2|i\xf1\x91cz\xba\xa9g\xf9|\xc5\xe8\xf1&G\xb6\xc6\xdc6\xc9\xa4\xfa\xb4\xae\xf0z|)\xa8O5Xs\xd0\xcf\xde:\xba\x07\xfd\x95Q\xc3\xab\x8an\x13\xb8d\x00bW \xd6\x9d\x9a\x9c\x0d\xbb\x93\xab\xcac\xcfR\x9a\xd0\x074\xff\xcf\x8b!D\x84\x15\x9c\xa7\x8a\xc8X\xd4\xd6=\xc0\xae\xf5\xe1\x90\xdb\xc3~\x8e\x95\x83\x92{-\xafxz\x1f\xaf\x8dx0\x10I&>\xed\x06\x07\xe4\xf1\xfaz\xf4\xba\xbbG5c\xf1\x1aO\x87\x1d\xec!^V\xba\xbb\xbb\x9e\xafK\xfe\x02j\xbb{\x80\x8aL\xed\xa1Sc\xb3\xa1\x83\xcb\xc6>\xae \xd3\xdef\x9e\xd9\x9b\x19\x8a\x11\x86\xec\xfe6\xd0\xab\xbb\xda\x87\x89\xb1\xd4\x841j\xbb\xaf\xafZ\x1f\xaf\xda\x0e2\xe0\xd9\xf7\x0d\x9d{\xab\xb5\xc77^\xec\xffM\xc6\xc1\xf4+\xa8\x03\x0cC\xfaV\xf7LX\xbd}m\xdb\x02\xdc\xd3\x11x\x8fJ\xdcy{\xff~\x8b\x8e\x9fT\xd8l\xaf\x99m\x80\xfe\x10\xdb\x1c+o\xfdO\x1a\xdd\xc4\xe2\xc0F\x0cO\xc5\x83\xf7\x1bi\xcb0\xe9[\xd6\xee\xf0A\xa3\xab\xb4\xa5\xcdC\xe4.\xc1\xef\xbd\x84]\xf6X\xdf\xae'\x7f\xf1\xcf\x18\xe9#\x98\x13\xf0\xb058\xea\x9f\x85\xe9\xc2\xf0iS\xb7v\xd3\xbc\xed\xc1j\xae\x03&\xa5_=\xd7\xfc\xb9`'\xb6\xc9\xcd\x81e\xc9>uAK\xc3\xb8\xef\xbf\xe7h\xffv\xaf\xd1\x1e\xf4\x8c\xb6e\xe0\xf8\xbfa\xd0g]\x83n\x18y\xf6\x1e\x9c\x1d\xe34\x8c\x857\xff\xbe\xab\xf9\x96\xd9io\x17\x86*\xe5\xd9Tn\x8aa*{\xf9P\x95\xbd\x95&\xeb6\xe7\x12\xf1\x06\xc3\xf2YOu)\x12\x96\x0c<\x18\xca3\xe7\xe1r$qW`\xcc1\xc5\x1c\x95\x8e\xa8\x05m\xc2\x1e\xacl\x9c\xc1\xfd\xb4S\xac\x9a)\xe6\xec3\xbc0\xe0\xacD\x9b|M\xa6\xe0\xce\xe0\xc9\x13\x98)\xa1\xc7\xf4w)y\xd2\x93\x85{\xd2~\xf1\x93\xa4iY\x0d\x1bBK\x86{\xc7\xaa\xcf\x89\xf6\x1e3\x98\xa5w\xc6\x0b\xcf;\x1d\x07\xb9\x93\xd4\x87\xe8\x8am\x84\x8c\xad6\xd2X^\x17\x9bJ\xd4)\xd9k\xbe~\xf9b\x8d\x1f\x00\xca\xd6P\xcbLx\xc3\x1d\x1e\x0c\xdd\x0dt\x0e\x8e\xa1\xfcv\x84\x8b\xa52\xf9;w\xda\xe1\x9a\xea\x82=p\x0c\xbe\x97\xc0\xcc#\xa0H\x07\x83\xc8}\xa6\x1f\xaa\xc8Lq-\xfa\x91\xcaH\x01\xcd/\xd0\x12\x96\xb1\xcf\x02<*\x00?\x8eQ\xc8\xa7\xbe\xefi\xdfG\xbcP\xca\xfeD\xa2\xf3\xcd\xfcY\x90/\x8fcw\xc6\xefc<\xd4)\xe5d\x96k]\x136\xa97\xb0\x07)l\x823r`\x13\"\xf3\\2v\xb6\xe0\xb1>\xca\xa0D\x1c@\xe2\x0bLro\x90ko%w\xe8_]\x8bjX\xbe\x9f\xc3\" oR\xd2\xa5\n\x05\x18,\x9d\xe5\x1eU=\xe9\x96\x08\xb0\xa5,\x97aDFpc\xcd\xf8\xb5_\xbap\xfb\x08=\xedo\xbf{\xce\xabv+\xf7>\x15t]{\x12\x91\xec\xc35\x8c\xe0\xd6G5^=R\x1d\x0e\xa2\x9d\xec\"\xa0\xf0\"\xad\xa8u\xa2L+\x9d\x17B\x87!\xdfm\x7f\xe7\xd8\x17y\xac\xb6\xfac\x1es\x9c\xc4\x8b\x9bK\xb1\xc1\xdd\x05I\xf9\x9f\x17g\xa7\\0\xed\xb9cT\x8cW\xab\x81=`\x19\xb86\xbc;\xf6F0f\xfba\x8csi\xc8<\x16\x93\x0c\xa3\xf6\xa7\xf6\x86n\xa5\xb0\xa1|\x163\xaf\xb8\x01\xf9\x07z\xe6m\x8f\xe33\xee\xc4\x9bU\x92J2\xcc\xfd\xec\xf9P(\xc4\xa8\xab\x1c\x90\xf5A\x08\x9f\x0d\xb5\x11\xc3\x11\xa6R\x19\xbd\xfeq\xd7\x0d!\xe0\x84\xea*:\xea\x93\x9bG\x99u\xab0\x16m\xc2\xd32\xc0\xbc\xe1\x9bD>_U\xf8k\x0e\xd3p\x97\xcc\xc6u\x01{p\x14R\x12d\xf9mG\xa8\x9bLRg.\xd1\xd5\x05\xad\xd3F\x83x\xc5Qj\xa3\x0d\xd8\x82\x8bj\x0dyO-c4\xa8O}\xf5\x84\xa0\xad\xbfyuJ{\x1a\xea8c\xb9\xf6F\xd7}\x0b)\n.^\x98\xab~m\xccg\x9ei@\x8d$\x0b\xafI\xdan{\xf4aK\xf5\x04\x83\xa3\xaf\x1d\xab\xa3\xaf\x9d\xa6\xa3\xaf\x9d+T\xe37P\xef\x15%\xda\xfe\x96uR\xa0\x89\xd8\x07\xb9b\x9e\xc3}\xfeP\x0c1\xc9\xcb9Wf\x1fi\xdd\xa4\x9bT\xd2$\xc14\xebR\x9a\x0f+}\xd5\x01\xf4;\xe9\xe7\x07\xca\xea\xf6\xdf\x16\xa5\xce\xed>\x0c\xb9\xfa\x80\xe6\x1d\x8b_K\xd8\xa9\xfc\xb0\x1d_W8x\xednl\x8a\xf7\xc9\xed\x03\xcb\xce\x08D\xa6\xa3\xca\x9c\x9d\xd1J\xdb\x9f\x17\xe9v\x12P\x86\xac\xa6\x96N\xccq\x00\x15\x81\xd8\xe8\xbe\x0f\xb1\xfd\xec\x16\x80\xb0\xd2\xb8C\xd4},\x9a\xb85\xb1md\xa1\xfcm\xd1\xbf\xe7\x8a\xdf\x96\xa5\x96\xd8\xa2\xdfb\xd8V^\x92\xc4V\xednS,\xdc\xa9\xa5\xab\xc2\xb4\xd9b\x9fa\x0c\x97\xbb4\xa0\x1c+\xce\xc1_=\xce\xa8H@>/\xf3\x02\xfd>7\xe7\xbb\xb2\xf1\xcd\xdc\x97\xcf\x9ej\x90P\xdb\x087\xbdO\x19\x9b\xb4\xb57@,\x89\x91]\\n\x00\x12f\x11\xbaUD\nKA\x80\xe8\x11\xb4\x80$\x03\xe2\x01\xde\xea\x03\x9b,T\xb4p\xd1\x1f\xeb\x08\x92,\xca\x8b\x82D\x14\x92l\x9ds\x07x\x1b\x16W\x8e\xe4~3hv\xe7U\xd9(\xb9\xaf\x9f+\xcdT\xc3\x0f\xa6CD\"\x19\xb9\x1d\x805Y\x8f\xda{\x8d\xd15\xc1\xb2\xc8\x17 \x8a4YUdX\x9096\xe9\xca\xfcRm\xbe\xb3\xf6,;?\x861\xbc\x17mEyV\xd2b\xc50\xb3M\x97\x11O \x1f\x0f\x1b\x83\xbc\xd6\xf3y\xe7\xc5\x05*\xcb\x84\xbe\xe5D\"\xa3~1M\x0b.\xf3U\xb5;\x1c\xb4t\xf5\"}\xbfcZ\xa4\x01bB\xd4\xb0\xe3GW\x921\xd8D~\x9aLrv\x16\xe3\xbf=\xa0\xec\xdf\x08\nVG\xee\xe3\xeb\xbf\x04\xf2^>\xdf\xb5\x8c\xaax\x8c\xea_\xbd\xb0\xd4\xce@M\xd7g\"\x9f\x97i\x12%t\x04\x13\xd6\xb1\xe7\x8c\xe0u_>\xff^\xfc\x7f\xe1\xa9\xdeP\x1f\xde\xbb\x0eJR\x99\x97\x17\xbb\x167\x93\xec\x9b\x8e\xea@\xd0=\x9a\xc7\xca`s\xeb\xea\xbb\x91\xb7\xef~\xdc\xfe\xb8\xed\xed\xbb\x93\x8f\x17\x1fK\x0c\xc9\xd9.\x1eb\xf1\xc9\xc1\xd6\xff\x1f+\xe0\xffw\xb6^on\x05W\xdf\x8dX\x05\xdb\xedB\x8c|\xb1\\\xad:\xff\x86\x9e#\xc3r\xae\x87\xf3\xae\xb3\xec\xb3,\x7f[\x91\xe2\xce\x9eg[\xfatDG\xca\xd6l\x7fd\xd9\xc2\x15\x92x\xbb\xb6\\\xa7\xe1)\xeb\x13\x8fH.\xaf\x86w;\nl\x8f\xdc\x8f\xf1\xa6\xf7\xef\xdb\x18\xc8\xbch\x14\xebo\x04{\xac5\xd4*c\xa8\xa6}\xce\xc9\x87M\xe7\x08v\xcd-\xe3D\x8e`\xb7\xf5Q\xf5# \xaa\x9b\x8d\xd4\x8e\xaf3\xaepo\xb3\x94C\x015\xfa\x83s+\xc3m\x1a\xa4\xe2\xd4\xe2\xc2@\x8bp\xd5\xb9I\xf3\x9b\x91#d\x9e\xcb\"\xa7y\x94\xa7\x1e\x87{v\x96\xb8\xab\x8c\x94Q\xb8\x94\xbc\x13\x9bF\xcf7WH\xd2\x92\xe8\x8e\xea\xf6t\xf7\xd8\xf2A<\x981\x1cX\xb7E\xb0b\x1fJO\xeaz\x14\x93\xcc \x91\xac\x1bR-\x99\xad\xda\xd6uS\x84\xa1\xdb$\x03\x94\x90\xba\xacr6_\x93LG\xaf\xf2Ql\x14\x8a\xa0L\xc3rNP\xfc\xec\xd6o\x8c\xb0\xa5\x9cQ\x9f\x17dj\x8a\xfa\xd3J\x91\xbc\xe9\xef\x9a\xd9\xccp\x11u{;\xad\x02\xfaZ\x89g\xf3\xa4\xc8\xb5\x1e\x01\xe5\x0e\x9f\xd9\xbf\x80\xe6\xef\xf2[R\x1c\x86%A)\x8fc\xb1v\x17\xa3\x1f\xc1\xc6\x06\x9d<\xb5\xec\xbe\x82\x94\x94U\xff\xac\xbd\xd1\xf4+V\xf3\xd0\xa7\xb6C\x14*J\x8f\x1d\xf1*\xb17\xad\xbdPW0E\xcd\x82\x176\x83\xdc\xec\xa9\x94\x1a\xf7sn\xc1\xb0\x12\xc1\x91-\xdc\xcc\x02j\x97\xdd\xe6\x1c3\x96c\x9eX\xb8\x8a;\xd8\x83\x9dv\x7f\x10L+\x88f\x84\xd3\x02\xad\xf5\xe5f\xaaR\xb8=\x8e\x8f\xcb\xcf\x1d@s\"B \xfe\xb3Q\xf50\xabJ\xe4\\\xcc\xe7\xf1\x82)RH\xec\x9c\xdap\xd9q\x13\xb9\x84{.\xf6\xbc\n\x0f\xe0\x85H(A\xdd\x87Y\x03\xea\xe5\xef/_ \xe1\x1eu\x95\x8cU\x15\xc8\xf8\xc9\x17DL\xea\x9b\xe3\xf8\\l\xc1h7\xea7ku\xd7\x93\xa7l\x83N\xb6\xdd\xe0;o\xbbq\xf4xo\xe0\x0e~\x80\xb5\x10s\xbc\x81\xbb\xcdM\x0f\x91\xb5\xcbx\xd8\xf5\xe4\xee\xca\x9b\xec\\\xf9\xdc\x12{\xb2{\xe5C\xc9f\xa5\x84}\x98M\xe6\xb8\xef\x19|\xb7]j\xb2\x1c\xff\x8f\x1b\xa3,@\xfaX.=~\xc9\xe1dh\xfe\xa2f_\xb2>\xee\x83++\x15\xa0\xb3#tT\x95\xa4\x1861\xb7\x87A\x87\xb5\xfczf,\xcfs\xc6(\xfc\x15\xbb\x9c\xf7C\x14\x8eq\\z1\xdek\xcf\xf3\xe5@\xf1\x9f\\\xa5\xe5\xe4\xd9\x15\xae\x96Hd+\xb0\x9c<\xbfR\xebe\xff\x9a\xa8\xc0\xb0}8`\xcd\x02<\xe9\x90\x14\x12\xbf=\x84+\x15 @\xf1c?\xab\x8e\x91 \x9a\x87\xc5\x01uw\xc4\xdc\xea\xdfy\xef8GQ\x9f=\xa2\xd5*\xd3\x00?\x11\xa0\x92\xdd\x18\xe9\x0c9\x14g\xdb\xf1\x82r\x99&\xd4\xe5?\xe5\x0cn\xedz\xd2a5Q2x\xbep\"\xc1A\x8e\x1b\xbce\x93\x02\xb6\x18\xfd\xc1\xb7\xd2.7s\xdby\x03\xc5\xd6\xd6\x1b\x0f#{\xe0M\xd9\xa4\xb8B\xcf\x19\xac\xba\x08#\x13\xec\"~\x0d\x9a\x19\xdcf\x0e\x1fB\x06\xd6#\xee\xb7\xc3\xdd\xa9\x03Z\xb8 \xf7j\xe0C\xab\xc4\xd6V\xb7\x94\x19\xd7&\x0bVY9O\xa6\xd4u\x1c\xcf\xc7~\xb2\x89\xceq\xa9\x82\xea\xed\xcb\x17\xc8\xb8\x0e\x1cf\xcb\x84\xce\xfc\xb6)\xa2\x8a\xb2*\xbe\xbabl\xde\xd8\xb7\xbc\xa0*f\xe0\xfa\xa93\x19a\x97\xff\xe0\x85yf~{\xc8\xdeV%)\xc4b\xb36\xca\xf26/b\xfc\xcc\xbe2B\x13\xa7d\x89\xdf\xd9\xab\\\xb5Q\xab\xfcr\xb2S\x81}\xa3.\x86#\x04\x02d_\xf2\"\x99%\x19oP\xc1\x86\xa2\xbb\x88l\x93\x94\x8c*\x98\x95y\xf6\xd5\x97Mp\xb6\xb7\x1d\xd8\x94\xc5F\xe00|\x8dM3b\x01\xab\xaf/3\xb53Q}\x9b\xf2J\x85)B\x1b\xc4KBG\xbd\xac\xa7|\xf0\xe0\x13'\x94\x19R*\xeb\xaf\xae\x0bh\xae2\xca9\x86n\xa5\xd1\xdeX\x17\xd2\xdd\x84\x8b\xd4\xaa<\xa8x\xa0\x85d\x82\x17\xc9=\xe6_C4{9\xd7\xd0c\xee*Zc0K}H\x14p\xdd\x17~1\x12 \xb2I\x05\xb2\xd5\x95/\x0f(o\xc8Q\x8d\xc3\xe92\xd7\x84\xa1#\xa98\x9a\xa1\xa3I\xf8\x96\xe2\x13\xbd\xb9'\xba\xcbS\xd9$\xcb\x1e?\xc64#O7\xb4c\xdb\xa3\x8f\xf1\xe6\xbfos\x1a\x9a\xb2Yv\x85\xffxe\x0b'\x12!\xd0`\x99/\xdd\xaa\xc3bSS\x81\x96F\x8e\xa7\xcc\xbf\xfc\xa8\x14\x7f\x9c\xc9\x97 \xd17F\x95\x08\xa2\xcd\xf3\x94\xf5\xa9\xa6\xa56z\xa2N\x0f\xeb\x95\xa4\x8d\xfa\x94\xbcQ\x0c\xd0o\xf4=\xc8\xd6\x13\x0dW\xd9\xc4V\xad\x0b'3\xfbx\xe0\x8f\xc0\xf97\xcb\xb5\xb6\xfaHhP(\x82\x0da\x16\x1e\xb2M\x05&\xe5V\xf5\xf9*X\xc2\xc7@\x15R\x8c=\x08~\x8d\x99\xccF\x1f\x15\x05Rr\x02\xa1\x84\x1f`U\x91\xaf%;\xe7\xed\xf3\xcd\xca10ZM\xca\x0e\x0d\x9dT\xd2q\xc9$\x9d\xec^\xb1\x1e\x8a_\x1a5w\x8fnK\xa2\xa1>\x11\x93\xc6\x89\x98\x18O\xc4D=\x11\x13\xc3\x89\x98\xe8'b\"O\xc4\xa4\xa1\xde\xd3\x0e\xeei\xba\x9f\x14\x05F=\xb2o@\xd7vMNI\xf1\xa5\x8f\x04\x89\xf0\x8c\x84\xf5%\xd3\xbb\x0e\xcd\x1b\xca\xe5\xd1v>\x0f@\xc6\xc9\x95\xe3\xb7\xd0e\xd8%1s\x85\xdc\x04\x85<\x1c\xb7\x18\xa9\x88B\x07\x81\xb8;\xfa\xc4\xe3\xb4n\"\x1d)\xd0\xcb>\x9f\xf2\x91\x1d\xf9U\x97\xfc\x15\x9d\xc4 \xcc\xcd=%\x8d\x11\x7f\x15\xb9T}\xe7\xc7H\xfd\x05I\x7f\x96\xfeGG\xfe\xcc\xf8J\xf3\\\x92\x10\xcf\x87\x8d4X\xa6\xabY\x92\x95\x93\xec\xaa\x0biR\xb9\x86\xe35\xc9h)\xeby)\xeaQ\xab\xe9>5\xe4)G\x03\xb2\x167\xab\x1d\x1e\xad\x14D\x9fd\x10z\xb0r\xc3Iy\x85\xeb\\z\xb2\x17\xaf\x1c\x94;\x19<_\x82\x11\x17\xab\xd7\xb4\xed\x95\\\xd9h\xfe\x94w\xf94\\\x90\xa3\xa4\\\x864\x9a\x0b\xedd\xb6\x19\xcen\xb3\xcaP\x99{\xc9b]{\xed\xa0*BGY!8m\xceA\xad\x8f\xb1\x9c\x87%\x89\xcf\xc9,))\xd7q`uhS\xc6A\xcd\xb0|\xd5\xfc%l\xfe\xacR]\xaeS\xab\x0d\"\xf1<(\xdd|\x92\\\x89\xe9\xe8\xd9\xe9P\xa3?=\xae\xed\xefLy6HPh\xc3B\xfcR\xba\xed\x0f\xa2\x07>c\xd3;\x17\xaf\xb4/\x9e^'\xbfB/\x19\xf5\xc1\x17kwg\xa7\x02\xe7\x8e\xccH\x06\xb7s\x1c\x91%\xc9b\x92EI\x95M\x01\xf1Iv\x15\xc4J\x0ee\x10\xf2\x97\xa4K\x9a\xfd\x16\xfb\xaam\x95e\x83\xa7\xb6\xda\x91e,\xfd\x19\xd5!\xb5s/\xf3\xb2LnR\xd2\x82M\xe1\x01\xa0 \xa1\x19;\x9e\x10y\xbc\xc7\x11a\x8c\xc9>\"#\xafVf\x97\x9d\x81u0\xba\x8a\x83\xe7\x92&~0\xb0\x95\x0bu\xd6\xbf\xa7\x1b\xe5\x8fw\\)e\xc0M?\n\xa5,\xb2f.\x0e\xc3k\x11\xeb\x0e#m4\xd1G\xa7\xe6\xe2N\xc5\x8e!\x133\xeeI\x10\xadH\xb9\x93\x8b\xafr.\x9f\n\x9c\xc4\xf3\xe0\xad8\x17\x80\x0dD\x9fH\xa1\xf6L\xf4\x8c\x88 \xe6\xc0\xf66/p\xd2\x87\xce3 \xe2\x06T\xb7\xc7\x8flUk\x13V\x17\x16\xf6\x1d\xdc.\x84\xb2*\xb3[g]\x1b\xc3\x86\x8e\xbbNqn83\x08\x8f\xcb\xa7\x02)\xd4\xac1`^\xf9\xe0\xc9\xaeC@\xd1 V\xa0\x80\x96}\x96\xb2Iq\xd5\x01uP\x1f:b\xc2\xdbQ\x85\xe4\xd3u\xfe\xcaG\x92\xcd\xab4\xed\x82\xaa\xeb\x82\x94\xa4\xb1}Gv5Nh\x11[\xb9\xb8\xe4A\x8fg\xad\x8d\xc3\xe5\xe1\xe2\xb2\x94\x91]\xed\xe1Wd\x8e\xe4'\x8c\x97O\x12\x88\xedg~\x1f\x12\xa1\x1e\x0f\x9e\xdb\xde\xd7\xa2{\xd4\x88\x13$Yk]\xd6\x8evC\xbc>\xf6\xa0\xd0\xdb\x0d\xd5v\x8bI\xd8\xbc\x804j\xd9\xaa\xf4;_\xcf\x87S\xe9\xdc\xa3\xa2\x99VG/\xd0\xee\xd3\xdd\xa7\n\xdd+Hw\xf7\xb51\xfe\xc6\xaaC\xdd\xad\xa6\xb9P4\xfc\xe5\x0b8\xab\xecS\x96\xdff[\xb8\x8e\x9a\xf0\x85\x04\x11w\xe9p\x19\x163B\xf1biF\xe8i\x1e\x93\xb7E\xbe8\x16\xf7\xa8n\x81\x97\x84\xfb\x10\x06I\xb6\xce?\x91?\xad\xc2\"&\xf1a\x98\xa67a\xf4 }Cp\x7f\x99\xd8-\x82W\x14\xe6\xbcU\x16\xdf\xd0zc\xef4\xa9\x8a\xb6\xdeER\x8e\xb38)\xe7}\xf8X\xecK\x87\xe6\xcb\x93|U\x92\x0fK)\x94b\xd3C\xf3\xe5e\xbe\x8a\xe6\xe3,6%\x1f\xb2\xf1\xa7\xe2K\xd7\xb6N\xca\x93|M\x1e\xd0\x1dV\xcc\xd4\xb2\x92\xde\xdd\xee\x05\x0d\x0b\xfa\x80\x86\x8f\xf2\xdb\xcc\xd40\xd67\xa0e\xa1\x82{\x94\x14$\xa2\x129\xf4u\xa2>\x1c\xaf\xe5\xe9\xf8.))\xc9\x88M\x0b;k\xe6\x960i\xc0\x03M?T\x94\xd3\x10\x8cXx\xe6\x18\xa1\x8dA\xb4\x19\xde3\xcf\x18\x18\x18\x14\xfc\xc4\nS\x97\xd83J\x95<#\x90\xfb\xc6 0}\xac\xc6[},\x06-\n/M\xca\xe36\x95j\xb9\x16]WV\x80C\x97\xa6\x18\xbc4\xec\x9c\xd5\x9d0w\xe8\x01I4\xb6\xf3\x06r\xf8\xa1v\xd5\xfc\xe4 l\x90 )\x19b\x0fg\\[\x9e\xe6\xcb%\x89]\xef\x0d\xe4\x9b\x9b^\x8d\x1d'\xf9\x95\x0fE[U\x12\xa4\xc2\x10^X7\x90\xa9!\xe3\x03W\xe9!K\xc4Fr@/\x8b\xd5`J\xbe_\xbay\xff\xed\x06\xf7\xdar`\\[\xdaI\xbc)\x84!\xbf\x19\x87\x1f\x1a7\x7f\x1d+\\lnv;\x18B\x8azR\\\xb1Ue\xe4\x9f\xa2\xfd3)\xdajG\xa0\xdc\x15\xa0\x87\xe0'O\xd8\xa6\xe6\xc1\xb3e\xc1n!\xa9\xbe\xd8Xe\x97\xfaU\xe7\xde\xee\x847\xda\x05U\xf3\xb0\xac!\xaa\x0f\x80\x14\xf1E\xbb\xbd\xaeV0\x9e7\xef4C\x98\x0cq\x0el\xab\x08\x0ce\xf5@/\xed\xd6t\xd4|\x9f\xd6Zh\xbd\xbb\xb5\xa4<`k\x81\x0e#{\x91\xa5\xe4\x18\x82\xba\x14\xcf\xdb3\x9ew\xf9-Zw,\x16y\xf6\x90\xe6,U\x0cj\xfb}\xc8\xce\xa1{\xce$6\xd9,\xd93\x8f\xb4\x08\xd7\xa4(\xc9\xe5m\xfe\x9e1\x8c\xc3\x14\x11\xaa\xe6\xf4\xe2U\xa1!m\x8e3J\x8aw$\\\x1bZE\xd7\xe6FYu\xab\xed\xba\x1a\xadp'\xfc\xa0\\&\xc93\x93g\x0f\xfe\xf10_,\xf3\x8c\x11\x03\x05\xe9]\x00\x90'l\x1b\xbf\xb4Q7\xaf\x9fU{\xc9\xc7\x10\xa6C\xea\xcf\xcd\xf5\xff\xce\xfcfa\x8f8\xc6x8{\x042 U\x95\\\xf1:\xb9\x0dd\xcc\xb1\xaah\xcb\xa4\xa33j\x14kUQ\xa1\xc2\xc9\xee6\x86\x02\xe5^M\xe3FL\xccN\xcb\xca\xac\x9b}je/\x08\x1a\xca\x1c\x86\xab\xd9\x9c\n\xd7\xe1\x9d\xb2\x02v\x8aY\xcdr\xd6\xc2&\xd4\x12\x14\x86\xdb\xe4\x14\xf5Y\xf4\xadp\x91<\x1c.\xcc\x164&n\x97S7\x94\x13\xd7_\xbe\x00 \xca\"\x1a\xa7dA2|\xbfM\xb28\xbf}\xa3O+\xdb\xef4@\x9b\xaer\x99gq\x92\xcd>\x94D\x96\x93\xfaG\xd6\x1c\x9e\x0f\xcfxh\x9c \xcbc\x82F\xfd\xfb<\x8c\x1c\xc9\xf0\xe0i\xe8(|\xab5\x8e\xd0-t\x9f\xaa\x163y\x10\x85\xd9\x87\x92\x1c\x9d\x9dT\xe0\x1b\xe7\x11\x1a\xef\x06\xc9b\xc9{\xca/'\x9f<\xb1}\n\xe6a\xf9\x96\x84tUH\x7f'\x1b{\xd6z\x94\xcc\xae\xe3\xf8\xa8\x1d\xdc\x98\xd9\xed\xef\xbekB\xcdwp8'\xd1\xa7\x92Af\x98q\x81?$%\x94\xab%[_\x1e\xc0\x89\xce \x08.IP\xc7\xe82=['E\x9ea7\xb4J\xf56N\xcf.\xc7#\xb8\x9c'%\x8f\x0f\x95\xe5\x14n\xf3\xe2\x13\x08\xa3\xbd\xf4\x0e\xa9\xce,\xcf\xb6f\x8c\xc6I\"\xde\x13\xd6\x8fh\x0ea \xbf\xf1H\xca\xbf\xf9z\xd5\xbf\xa1\xb8\xee7\x1f~K\xf30f\xff\xd1\x08\xfc7\x1f\xa3Q\xfd\xc6\x1ds\xfc\xd6\xd7\xc1\x1f\xf3\xa2\xc8oK\x98\x16\xf9\x02N\xf2\x98\x14Y\xf2\xf7\xa2\xaf\xd4\x1f\xd1^\x14\xfe\xc1\xb5\x0f\xbe\xd6\xd7%\x17\xab\xe94\xf9\x0c(D\x84L\x98\xaf\xcf\x02p\xa24\x89>9z\xbdUE\xfb7y\x9e\x920chq\x89K\x8e\xab\xc3\x16\x07\xd7@$\xa2\x9c\xb7\xb1J\xed\x1a\xa51AU#c\\dE\xedenW\x90\xb036\x0b\xd3\xd6\x874\x89HV\x92z\x9a\xe0Y\xb0\x13\xec,\x0b\x02\xee\xe1\xaa\xa4\xf9\x02~\\%i\xec\xc1\x1789\xbe\xd4\xcao7\xde}\xbb-\x9e\x8eL\xd0~@\xddS_\xbe\xf0[\x82\x0d\xd7 \xe3\x18\xe7Z\xd2\xc8\x0e\x83Z\xb9GjVA\xbfY\x91\x1c\xb5\x93g\x0el\x9a\xfc`\xa1PP\xad\xecM\xbbOF\x92e-\xae\xa0\xab\x8d\x1a\x15$\xa4\x12=\xb9N\x9c\xacM\xea\x1daP\x12z@i\x91\xdc\xac(q3\x1f\x84\xb3\xe47\x8e\xd0\xfe7\xaa\xc2\x84\x93\xcc&2\x05\x85\x9d@Mb\xae\xbdr;'\x95\xd8\x0c\xa4~\xf2\x10\xac\xc2\xef\xe6\x03^\xde\x07\xe7Y\xb0\x83\xaa\xd6\xc9\xa3!\xd3\xd6\xd1}\x90\xd2\x118aJ\xffL\xee\xf4\x90\xbayF\x8b<\x1d\x81\x13\xd1\"m\x7f?!4\x1c\xa1\xdb\x82\xb0\xfd\xf1b\x9eLY\xcd\xa8W\xcd>\xd7C\xb0\xd0:\xb6\x03\x0e\x0dW\xb3\x90&k\x82\xf3\xd3\x86\x12\xf43v\x92\xc7\xc94!\xc5\x05\x0di}\x8d\xd4\xfe\xd4bO%\xa0\x16\xad\x1b\x83\x8aS\xc43dc\x83\xaa\x90PC\xc1\xb0\xf3\xbau\xcd\xf2\x08K\x99\xb9\xaf^\x1b\xd4_2\xf7e+=\xe1j1\xbb\xdcv\xf4\xd9k\xfc\xf7t\xf7\x95\x1e\xfd\x9a\x8b\xe4w\x9f\xeb\xe5W\x98\xfe\xec{\xb3X\xbe4b\x151d\x93h\x92S\x18\x93\xdd+!\\\xa7\xe8\xb5\xf8\"\xb9I\x93l\x86\x1eu\xa6IQ\xd2\xc3y\x92\xc6\x86)_\x8b\xab\xf6\xc4\xedc\xafH\x90d%)\xe8\x8fd\x9a\x17\xc2\xb1D]\xa1q0\x91\xad\xaeB\xd4\xc58\x0dQ_\x8b?3\xe94XM\xb7Z3\xb3ob\xdcl(07+\xeaTaK\xec\x840\x8fI\xa4\xcc\xb8]\xb8\x95\xba\xdc\xee\xba\xe0\xd7\xf7\xdc\x82\xbdCk4\xafh_\xf5\xd1\x88g\x1c\x1cZ$Q\xb4\xdaA\x91s:l2\x97\xd6\x03l\x88\x1c\xae\xba\xcf\x9d\xec\x1a\xee\xdfb\xac\x1b?\xef\\\xf1;v\x12\xf0`\x9b\x08\x89-\x0eK\x0355+\xed\x1eFl\x83\x89\x8e\xe5\xab\xc4\xef\xddK\x87|P\xcfR5\xfbZ\x0cc\xfc\xe6\x0861\xa3\x15\x8b|U\xa6w\xe7d\x99\x86\x11a$?\xe3\xe3N\xc2\xe2\xd3j\xd9DS\xeb\xb6k\x8c\x9e\xf2-\xef \x05\xcfuD\xd2d\x91P\x12_\x92\xcf\x03\x0d<\xe4\x84\x11\x8571K~\xf9\xbda\xe7\xb4\xe6\"\x1c\xe8>\x17\x9e\xa7n\xe1\xeb\x14\x08\xeb\x19\x8a\xf6\x18\xe4\xe4x=\x02\xfb\xe0\xae\xf0\xde\xcf\xf3!v\xf9u(E\xd5||\xeb\x95]-\x8b<\"e\xf9\x01=\x14\x97\x03\xc4e\x0d\xeb\xae\x9d7\x90)\"\xe67\x90\xd9u\xab+\xf0\xb2\xea\xabHS\x98\x02oXm\xf5@\xa5]\x7f|z1>\xbf\xbc>98\xff\xf3\x87\xf7=j\xf6\x88u\x0b\xe9\xd8\xc7\xe7GJ\x11\x84SJ\n6\xa7}\xd1\x0d\x06\xd9\x05\x9c\x9c\xfd<\xbe\x1e\xff\xe5\xf8\xe2\xf2\xf8\xf4O=\x1d\x9a\xf2\x0eL\x85\xb8\xf6\x9f\xd4\xa3\x8b\xf1\xc0\xf9 \x1b\xf3\xf3\x18M_\x8e\xffry}xvz9>\xbd\xeci|\xf5\xe8\x8d\x9f\x8fq-N\xcf\x8e\xc6=m/\x9b\xeb0T\xc9\xe9\x9e\xf2\x9a5\xa6>\x88\x1a\xb3{\x01\x9a\xd3\x05#\x9f\xe7\x94.G\xdb\xdb\xb7\xb7\xb7\xc1\xed\xb3 /f\xdb\xbb\xaf_\xbf\xde\xfe\xcc>kd\xf3\"\xa4s{\x99W\xdb'!\x9d\xe3\x9f\x93wZ\xc9r=3\x16{\xba\xb3\xb3\xb3]\xaeg\n\x01\xfe8C\xed%u\xd5\xe8\xe9\xb5\x0d\xf6\xc9\xc5\xc1r\xc9\x10(\xfe@S\xde\x0f\x19\x0f~\x1f\x85\xe9[y>*\x94P%\x826\xaa\xbfvV\xd3\x1f\xd6N^L\xa9\xad\xb4aI\x17\xac\x8e\x1e\xdb\xdb\x8cQ\x8d=s_\xed\xbc4\xd0\xf1\x99\xfb\xf4\xc5+\xcf\xcd\xdc\x97\xdf{AR\xfe\x1c\xa6I\\\xc9\xe6\x1a\xb9CE\x19\xdee4\x7f{\x12nV\x94\xe6\x99\xd9\xaf_4'\xd1\xa7\x9b\xfc\xb3\xf9k\xb2\xc0\xf8\xfe\xa6O\xf3$\x8e\x89\xa5\xd2\"\x8c\x93\xdc\xf2\x89\xa0\xed\xa6\xe9S\xb9\xbaY$t\xd4\xd2L\xb6i \xe9\xeb\x8d\xe2\xee\x0dv\xc8\xe3\xa0H\xfc.\xc9>10\xac?`x\x04\x99\\\xb8\xce\xab\x97N\xaf\xae\xb2\xde\xcc\n\x95X]\xadR\xa9\x9f\xc8\x93\xf2\xec\x10\xe5mR\xc7\xfc\xd5\xab\x9ev\x0c\xdePZ\xed\x88Q\xf5\xb4\xf4\xba\xd1\x92\xfc\xc5\xc002\x9a\xd2\x8a\x88\x11Ch-P\x18f2\xa1\xa8\x93\x19N\xb8.\xd6\x15\x17N\xcb\xee\xf0\xb7\x82\x84\xf1Y\x96\xde\xf1\xb78)\xc3\x9b\x94\xc4\x8c\xbcb\xfd\x1f\xa1\xcb\n\xe1 \xeb\xd7|%\xc3\x83\xc6\x10\xc2o\xd8\xad\xdfX\xd2\x12h\x0e!\xa3y\x160MH\x1a\xc3mB\xe7\xf9\x8aB\x98\xc1o\xb2\xc1\xdf`\x1efqJ\x8a@\x91\x93\x16$\x8bI\x01!\xb0\x8el\xe5\xac'XC\x00\xc7\\\x90\xc7\xeb+\xe7\xf9*\x8d\xe1\x86\xc0bEY\x171\xd4\xfeo\xc22\x0e\xbd\xf7\xfd\x16\xc0\x19\x9d\x93\xe26)\x19\x99@(\x90\x84\xbd\xab\x1d\xc8\x0b\xf8M\x8e\xf8\xb7\xc0d2n\xd9~$~\xf8\xfc?\xe2\x94\x8b\xbe\xfc\xb7\x98\xf4C\xd1\x97\x7f\xd2\xb4\xcb\xd2#H\x026\xf3\xbf\xeb\xc8?\xb5\xda\x13-\xdb\x9b\x16u\xc8m|\n\xbf\xcb\x99\x11\x94q\xdb\xfc\xbf\xd3J\xb0\xe5\x08\xe95\x9b31\xa9\xdc\xff\"\xe4S\xf8\x8d[~m\x82\xf3[\xd0\x0ckh\x94]::m\x00\xa2Oq\x0b) \x18\xbc/\xf2%\x1aE\x0c\x83\xcc\xa62td\x03^6\xbe\xc8\xa4\n-%\x16\xd1\xa4\xb8b\xc74\xe7\x9a\x1c\x06\x88\x8e/\xee\xeb\xf2\x0e\xcb\xa9D\xf5\x89\x83\xe0\xcd%\xdb\x89\x0c\xfb\xc7\xba5\xedV\xdb\x99T\x99\xafP\xd5\xdeN\xde.u!\x81|zI\xd4&d\xcd\x08\xfdY\xc7\xbe\xa6.V\x9a5\xf5\xf1\xb5\x8f68(\xbc\xa8\x12\xff_\xf6\xfew\xbdm\x1cY\x18\xc4\xbf\xf7U\x94\xf9;\xa7\x0f9\xa6\x15\xc9v\x9cD\x89\xe3\xe3v\xdc\xd3\x997\x89sbg\xfa\x9d\x9f\xc6G\x0f-A\x16'\x12\xa9CRv<\x93\x9c\xeb\xd8o{\x0d{\x01\xfb\xec%\xed^\xc2>(\x00$\x08\x14H\xcaq\xf7\xf4\xec;\xfc\x90X\x04\x88?\x85B\xa1\xaaP\x7f\xc4_\"X\xf5\x8d\x15\xc4\xdf\xee\xfb\xc4\xa6=\x8d\xbd\xeb\xa7\xea\x11\xaa\x8d\x84\xd9a\xf5Z\x1f\x81|\xdd4\x06i)vVn\xc6V\xc1\xb7+$T\x94Ql\xd7/\xe4\xfd\xa9\x1c^m|M\xb3q\xb4\"\xab\xc8vJ\xf2{\xa4\xfd\x10\xce.*\xf8\x1aFI\x10?\x1c;\xd5!\xb1\x08\xe8\xfd\x12|\xa7\xe4\x18\xb7\xcc2\xfb\xe2\x1f*\xf5\x8c\xa9\xc4\xb1]\x88\xa0\xd2f\xa0\xda)cI\xa9\xd5\xa0k7Z\x95T\x15N\xab\xcb\xd26|UO\xe5\x98\xb4/b*\x90\xb3@\x92L\x96\xc8h\x18\xc4\\@\x06\x8f#\x8a\xc4M\xb6\xc1\xc1\xaa\xa7\x95<\xd0X\xf0\x0dv\x06\n\x0bd\xae\xd6\xca%\xabN\x83\xdd\xa6)\x0e\xb9\x8f\x95\x8a2q\x9f\x8e\xcc\x87\x16\x0du\x00\x8f\xb0\x0e\xfeQ\xf0}\x82\xdc*\xda\x1f\xa2\xa0Xa>9\xe5FB\x80N-\xa2\xa4\xba\x9a\xec\xdbwFZl\xb1\x9a\xcf{i\x16#\xec\xc2\xedZE\xadV\xd1z\xff)\xa1\xfb\x89\xdd!%\xb2q\xdc\xa8cjW\x84\x87\x90\xb4\x10\x15\xe1\x04\xc4\x0fg\xcf\x9aK\x08*\x00#\xcd\x8a\xf89\x06Q\xb2\x071\x03\x7f+\xab\xdc\xb3G\x91H\x99\xb9\x95\xfal\xc4\x7f\xa1\xaa\x1e\xffp\xdf\xf8\x96\xd06\xd6\xef^\xc8\xd9y\xc1\x15\x9c\xeb\x0b\xb75\x10\x7f\x132\xa6^\xb7\xd0\xea\x12\x17\x8b\x18\x81'\xab\xaca\x85\xbd\x94\xbd\xceU\xd0I\xd7=\xb7B\x1e\x12b\xf5\x10\x91\x88wUl5\xfe\xe6\xa8^%\xb6\xaa\xc40\x84Z\xfcG\xbc\x8dV\xe9\x9a\xd1T\x07\xff\xc4\x97\x9f\xd8\x9d|\xf7\x89\xdd=\xc4Z\xd17\xcb\"Tf\x1bAV\xac/M\xaa\xbdCo\x08\xdea\xdf\x11y\xd1\x1bb\xf1\xae\x9d\xba\x9bH\xf8\xa3\x80\xfd/\x9c9\xf6=4J\x08\x14u\xf7\x1f\x8d\x0e\x87\x97\x8f\xae\xc3\x0e\xe7\x87\xbaZ\x1e1\"\x96c\xa3._\xc5\x0f\xfdV\xa0\xf4q\xda.\xa0\x1c\xee\xf2\xe2\xe1&@\x11\xe0\xf0U\x8466\xea\xa3\xb7)\x87\x95\xf8\x8dQ1Y/__ D\xf4w\x05\x83S\xbd\x18\x04\x81\x06M\xff\xb0\xff\xe5p7xx\x80V\xf8J\xd3\x8a\x07 \xce\xec\xe2\x8a\xf6\x0fP\x916\x18\xec\x9a\xd7\xe6\xf2z]\xde\xab\xef\xef\x05\x9d=\xda\"BN\xec\xb1\xe4\xbf\xd6l\xcd\x04\xdfP\x8f\xccm\xb7@h\xbbJ\xdb I\x94\x1a\xcf?\xfd\x14+\xe8C\x0csQ\xa9\xb8\xe4\x82\x8ah/z*B!\x11\x014\xb3\x8e@\x92\x04fF\x8a\x8e\xf2\xf7\x0b\xd8\xed\xe3\x95\xdb6x\xe0\xf3&\x86\xc0q5\x93a\xaeB\xf0\x02^\x16x\xa0g\xffs\x87\x16p\x9d\x1fh\xeb\xed\x1a^\xa2\x0e}\xad\x03\xbd\x01\xdb\xed?\xce\xdf\xa6\xeb\xa4h\x97\xa0\xd4R\xd1\xfd\x83n\x86RH3\x94\xdeXH\xfclZ\xdaT\xd77\x89!I d\xaa\xecr\xbb\x08\xed\x8b2\xd9k\xe9\xbc\x88U\xed\xe1\xa9mc\xaf-\x94\x9cEu\x84\xd2\xeeb\xbd\xf1\x8a\xa1\x95\xa9\xea,\x87#\xea\xad\x08\xbf\x88\"\x13\xf5\xcd!\x8c\x8a\xcb\x10\"\xebB\xbb\x11 \xaf\xa51^\x07\x11\x93\x91\x03%\xdej\x03\xa5\xbe)\x07\xda\xecM \x07\xfac\x9aM$-\xe8\x8aM\xf4bH\xe3\xder@Z\xc3(\x98\xf0\x11\x15fJ\x0crH\xf2\xe6\x1e-\xaa\xba!T3\x9aH#\xf4rd\xd8\xf0\x7f\xf0\x9e\x14\xac\xaa2\xbdo9l=\xc1\x82\xa6\xd4\x97\xbf|\x02\x99\x85\xf5_\xd5\x90\x17\x84\x9b\xa2a\xd2\x80\x86\xc9e \xf0\xb0\x0b0\xcfYA\x01\xd2\x05\xc5\xc4 E1[?\xa1\xc0\xf8\xe5\x0b\xd0\x05\x870\xba\x0c\x02\x85\xb0|\xd4\xa6{\"=jy\xe3\xe4\xd8=\x0e,\xa86\x8327\xc7h,\xac7\x96\xc9\x0e\xf9\xf9\xdb\xbe1\xcc\xe5\xec\x0093\xd6\x99.\xf7I]\xc0\xee\xae\x87#\xe7\x07\xea\x86l\xc77x\xc9'\xfe`/\xa0\xb8\x90\xbd}\x9a\x0b\xe1<\x86\xee\xaf\xa9\x8f#\xbd\xff8\xba\xdd\xed\xdeT\xc1\xdeP\x928I\xa7\x8c\x16j&\xf3(\xe3\xa5h/\xccP\x1b\xc0yI_(\xbaU)^M\x0d\x84?ARZ\x06\x0e\xf6\xf8\xde\x92\xc8P\xc0\xcbC\xd8\xdbE\xd5\xc1^\xa9[(`\x08\x1bJ\x9a\x15h\xad<\x15\xd2\xc5`\xf7)y\xdd\xbao\xde\xc2b\x98\xc7\x91`\xa1${si\xb0\xe3k8\x04u\x0d]\xe9V\xeaurB\xfbR\xaf\x81q\x0e\xcb \x80\xf5\xb2 \x86,\xa8+k\xec\xdb\x89\x85\x90\xeae\xde\xc3M\x97[\x18a\xf3\xf7\x18\xaa\x8b\x05|\xdfD\x8dJ\x0fdf,\xf2\x84\xe24\xa15\xe9\xd3\x0c\xe7\xa4\xd4Ex\xb5\x8c8\xa8$\xd2yO\x1a\xf7\xaam~X\x0f\xfe\x9e\xe8w\x01\xc2\x8eK\xf4\x94\x04\xbc\xea\xec\xbe\x08\xb5\xfb\xecI a\x8c>\x83j5\xcff!4\x82\xbe\x93\xbc\xa2\xf7\xe3\xcaJ\xd3\xb2eA&1\xd2a\xe7\xb3\xde\xd5]\xc1\xde\x08u\x12\xcd\xf8b6\x9a\"\xe8\xe5\xac\xf0\xc5\x0f\x0cb\xdd\xe6\xdec\x8e^\x05\x87\xc4\xf5\x9b\xc7yo*\xe6\xa5R \x0e!\xe2EJmm\x16\xba\xc1\xa0\x00\xaam\xfc\x01n\xf2G\xfa\xc6\xff\xef\xbe\xd8\xf8\xfa\xbeG\x94\xc4\xa8\x0b\xc5\xfc\x03\x9b\xac\xb3<\xc6$\x86\xebP\xf8r\xf1\xf7mWB\xb8w\x8d\x8dk\xedX\xc5\x95H\xaabs\xab\x9e\xa7|(\x84s\xb8f\x1c%\xe84z\xda\xce\xd2u\x82~\xbcY\x9a\x16\x8e\x9c\x98\xe6~\xc6I\xce\xa3\xfc\xa3BhmB\xc0\xec`\xf3q\x15\xc4\xb0\x99{\x16&B$fuq\x8e\x01\xcb{ \x94\xfe&u\xec\xc5c\x90\xfc\x1a\x14\xf4}\xe4\xc0\x02\x02\xd9\xd4\xf3\x95\xcc\\V^\x94\xb9\xc6\xa7\xae\xdbb\xdf\xb4u\xd5\x9f\x08\x15\xaar\xd4\xeeyjg|\xd4qV\xe9(\xb9l\x99\x18\xb9\xdb\xaa\xe4w_\xeb\xb2~3\xef^\xa2E\xa1\x19(;\"yH\xc3\x12\x91\x92\xbdL\xf9\xa9l\x9cD\x96,\xe1K\x89\xb9 \x12\xf9\x13\x0fl.\x89\xc8\xdfe.fyh\xf0wE\xc6\x98\xe5\xd8EN\x14\xcd\xb5Y]B\xf0q\xdbh{\xa3\xe8!w)l\xb1:\xc6\xd0\xa8d \xcb7Q\x08\xef\x83\xc7\xa6\xbeD\x08\xefOLY_\xba8\x0e\x1e\x93.\x8e\xcf\x06OZ%\xac\x86k\x04\xce\x06Q\x97\xc0\xbc\x81]G\x19\x17\xf2\xf7\x1ce\\\xc8\xdfw\x94q\xf1\xfe\xc0Q\xb6\x82Cx\x0c\xea:\x9cH\xa2<\x05y\xfd\xbd&iV9\xd9\"\xe4\xb4w\xde\xc8D\xdf\x84\xb0\x0c1\xd1\x1bnKL\xea\x96\xfa\xd7A\x08W\x98kv\x8d\xd9\xe4\xf6\x82\x10\xc6\xfcL\xf1\xef*6\xfbV\x90\x99S\xf4\x05?\x82)\xefo\xccE\xa4\\\xfd\xeaW\x06R\xcfa\x0c/\xe1\xf69\xdc\xba\xb6*\xdf\xa6\xfe\nc_p\xa2,\xa3\xe4/\xe1\x10\xae\xfc\x1b8\x84\xbb\xd1\xede\x08\xb7!\xf0\xc1\x99Z>\xb3\xa1$\x80\xd3\xd1-\xe7\xf5\x974\x11\xe1OI\xc5\x96A\xb7TA\xa0\x18\x9a\xbdf\xbf\x17\xd0\xcfjw\xff\xa0\x9a{\xdc\xb9\xb9\x9b\x0e\xad\x1dtn\xed\xb6Ck\xbb\xed\xad\x9d\ny\xe5\xc6\xbd$\xda\x891i\xe4\x7f\x14\n\xc3\x11\x17K\x86\x80\xd9\xf5&p\x04\x13\x18\xc2i\xad\xba\xe9\xeax/\xcd\xa9\x14\xdb\xc4a^j$\x8a\x10\xbc*\xd3\xb7g\xfa^H\xd3z\x9d\x0d\xe3T\x13Sv\xa5Y\xfcW\x95\xde\x1d\xcf\xdf\xf2\xe5\xf1\x04\xed\xca\xa4-\xda\x0fQ\x1eO\x8e\xd7\xc5\x9c%E\\\xa6bpV\xff1\xcd\x96\xef\xa3,Z\xe6F\xad\xd5jA~\xfe\xbeJ V\xf4V\x19;V\x05\xaf\x97\"!1\x16\x9c\x9c\xbd\xfb\xf1\xf5\xef?~8\x1d\x1f\x7f\xbc\xf8 _\xfd\xf1\xf8\xcd\xebW\xc7\x17\xa7\xf8\x83\xbf=\xfb\xf0\xfa\xff\x7f:>\xe3\x7f\xee\xe2\xcb\xf7\xb2\xbaU\xf0\xe6\xec\xf7g\x1f/\xea\x1f\xe2\xaf\xf3\x9f\xce~\xc6O\xc6\xef\xcf\xde\x7f|\x0f\x87\x8a(|W\x81T\x86\xcf\xf5\x13\x7f\xff\xb1yE\x9f\xca\x92\xdd=\xea\xf2\x1e\xbf\x19\x04\xb5C*\x9f\xa7\xb7\xaf\xf8\xa2\xc6\x1c4\x9d|\x9e\xecm_`\xea\xf9 A\xa1\xa3\xbbE\x1aM\x87\xcdbG\xb9\x16\xdf\xd2;A\xfe\xbb\xf5\xbeH\xaf\xd3u'V\xdf\xd5\xf5\xea\xbe]\x97\x13?\xe3\x7f\xed~\xcb\x18\xa6\xf7\x1d\xc3\x04\xa3=\xaf\x05\xe2\x7f\xcb\x08\xe6\xf7\x19A\x1d\xb1#\x85\xbe\xfdg&\xfe\xaee\xd1\x9ee\x96\x92\x0bV\xa7OZ\x9e\x10nEJn\x13&\x1e\x15\xf5\x92\x8a\x1c{zJ\xacv\xcf\xa26\x89\x89c'{|\xab\x8dW\xe9j\xbd\xf2\xec+\x8c:%\xf0J\xcc0\xaa\xae\xea\xf4\xc3\x13\xc8kT\x9ab\xcaK\x17\xf9\xf1V\x19\x1b\x97\xed\x8fSD=/\xa4\x89\x98gU4\xa0?\x17}i\xc4\xd0S\x17\x97\xd8\xa6E8\xbd\x12\xe1p\x10^\x8d\x1a9\xe8o+NV\x9c\x1c\xc5\x95\x94\xcay\xdcp\xc7X\xb3!\xe2m\xd1cY\xd6XKx\xd2\xf3\xc6\xe8\xf2H\xc4,K?\xb1\x84\xae ,\xa8\xa5[#]e!\xf2RM\xe6l\x19\xd15&\"\xc2E\xb4t\xf8\xfb\x8b\x9b\xb1kV\xf8\xdel\x91\xdeR\xe1\x82d\xc4\xf4uO\xe2x/\xbf\x8d\xae\xafY\xf6\xf1\xf5\x076\xc5\xb8\xcf\x822\x85\xe0E\xe51+t\x063\xcep\x88\x1c;\xbd\x84\xdd\xf2e;\xcd\xcc\xa4\xfe\xea\xe1\x8d\xbc\x9e\x92G\x04\x7f\xf2t\x9dM\xd8P\xe5\x90\xa7\xe1\xc1n\xd8b\x08\xdem\x94%qr\xed\xa8%%\xc1!x\n\x8f\xc4\x91\xbf\x8c\xee\xe0\x8a\xc1\x1a\xddgCXEy\xce\xa6\x90\xa3y\xc5m\x94\x83\x88\x0e\x86J\x8e\x9ce7,\x83\xf7F\x95\xe4\xdf\n\x89ml*\xc2|a\x1eRQ\x9b\xb0C\x0cB\x88z\x18J\x0c\xed+~M\x10a\xafm\x00\xf2\xfb!\xc4j\xdd\x03?\xa2<\x821\x13\x97qH5\x0c\xdf\no\xa8\x1e\xdc C\x88\x88.\\$U\xa7\n\x14\xaf\xf6\xeb\x92\x04\xd6\xb8\x11c\x11X\xc3\xb9\x11\x059(\x13\xab\x91u\xd62\x84\x87\x98\xa0\x9b$Tu.\xac\x8bt\xf5L\x84zu\x11\xb3\xa4x\xedhk\xa6\xd59g\x93\x8c92\x9b\xaf\x9c&\xba\xfc\xb9\xce\xa2\xa4\x18\x8b\xf3\xdfS\x03s`\x1e\x7f\xf2I\xca\xabrp\xa6+\x96K\xfbF |\x16\x01\xac+A\xf5\xa0\xc7\x9e\xa3l.}\x15\xcd\xf7JKy\xc5\xa5 A\xc0\x16p\x04\xf3^\x9dL\x1c\x82\x87\xf2\x06\x9a_\xf2\x1d\x92\xf7\xae\x8a4\n\xfc\xa8\xcc\xf8\xba\xc6\xbbM^\x96V\xbbgEy\x9d\xf3G-:\x89\xfc\xae\x8f\x14 \x87\xb0&\xe9\x8a\xcc\xc1[\xce\xc2\x9f\xa0\x06`*\x97s\x1cs\x08M\x82\x10f\xf5\xf79\xae3\xdf<\xe8\xba\xd5y\xf2\x93r\xf2\xb3\x00\xd3\xec\x99\xf2\x9b\x83&\\\xa5\xd3\xbb\xa1ji\x1d/\xa6\\8{\x15\x15Q\xe0\xaf\x1c\x8a\xcdu\xb6\x18\x8a\xe0\xce\xbe\x87T\xe3c\xb60Y\x0e\xf5\x08\xb8\xc6\x0eD`\xd1\x94e9\xc9\x96\xf2\x07AH\xb2\xcdPR3\xe2N\xdcI\xafB\xb7\xb0\xf9[\"U\xa9\xac\xc1w\xdf\xb7\x10\xb3f\xe2\xb2\xeeH\\l\x93b\xfd\xa9a\xe7\xb0\xcb\xce\xdc\x84\x8a\xd0\xc1\x00\xd4S#lr\xfbL26eI\x11G\x8b\xbc\x9d\xc4\xa5m\xb4\xcdI\xa3\x1eb{M\xee\xb3e6\xd9{r\x83\xb4\xec=\"r~\xc7\x0d\xe4\xd6\xe9\xb4\xdb\x00\xb98\xf3D\xba:\n\xc6\xf6c\xb6hV\n;m\x8f\xb3\xb2\x8fV!\xa1h\xe5\x1b\x8a\x96\xadVt\xd8j\xc57o\xb5\x1a\xbaG\xfa\xbe\x1bO8\xc7\xefF\xf7 f\x08(z\x13g\xd81\xac\xa5\x0e\xa6!8`\xa1\xd5\x12\xc7\xd4\x10\xd6\xee\x9aj\x11\xc7\xeb,\x1e\x12V\x04\xd0\xb8\xc3\xb2\x07\xd8af\xd2U\xf5\xb4\xef\xb0t\x93\x1df'\x9c\xbe\xd7\x0e\xa2\x95\xa8\xff\xdcJ\xb5\xe7a\xb6\xd2o\xe6\xd4\xfa\xbbm\xe3\xbf\xff\xe6\xbc\xff\xf1\xb7\xd9\xe6\xfc\xa5\x8e\xbf\xeaZ\xe4\xc1x\xc7\x99C\x13%\x90\xfe\x9a\x152\xeb\x1f]+\xef\xc6\x7f.:i\xcf\x84\x824\x8d\xf2\xbds\x0c\xae\x9e\xbaR\x15 \xbdh\xbeb\x93\x96\x8a\xabrx-\x15\xa7Ho8\xe68\x96\x0e\xcbQ6\xa0+\xdc\x94W2(}\xcd\xe1\x08\xfe\xf6\x15\x9cR\xc6\x12\xdb\x93\x08AW\xb9\xae\xb7\xb8T-.\xe9\xeaw-\xec\xf9\x95\xd05dD\xa4 \xfe\x8c[4\x97\xb7p\x08\xfeJ\xc3\x07\x1f\xad\xe2\xff\xf65\xe8E\xd3)\xde\x11E\x8b\xff\xe0\xf0\x11\xd6\xfa\x82-\xa3\xdb:%\xae\xaf\xf4\xb2Y/\xce\xcf\x8e\xcf\xf7\xfc\x80\xcb\xb0\xfd\x10\xa2J\xa0\xbe\na\xd2\x13\xb1\xf7\xd9\xf4\x1cul\xbe\xc8\xac\x0cC\xa2\xee\x8c\xcfXV\x08\xeb^\xe2\xbaU\xd1-\x1c\xd5\"\xf6\x89\xa6\xb2\xaa\xa9\xdb@\\\xa6\x9f\xca\xb4\xf4\x87`\x08\xfa\x7f\xfb\x1a\x82,\x0c\xe1\x96\xb2\xe3\xe3[\xee3\x1c\xc2i\xe9\xd1\xe0;\x88\xc89\xd1\xbc\x93\xa8\xf2\xf3|\x85a\xcc+\xd9\xf2\xd1_\xf24 \xa1`\x9f\x8bG\xabE\x14'!\xfc\xee\xd1\xef\x1a\xa8\xbcw\"\x82[\xee\\\xdc\xad\x98g4\xf6y\xe7\xf6\xf6vg\x96f\xcb\x9du\xb6` ?\n\xa6\xb6b\x13\x04\xb5\xba\xa6\\\xb3z3VL\xe6\x8eY }\xfd\xec\xd8'\x18\xd6i\x08\xde*\xcd\xcd\xdb\x0c\xf5\x94d\xf5\x9c.\x97\x12\xfd\x8dc_\xe0i\xe18\xf9e\x9c\x1bt\xf3\xe2`N\xb3!\xac\xfd\xa0g\xbfw}\x9f\xaf\xd2$gD\x03V\x81\xd5\xc0\xd7\xa0\xc7\xf92\xbf\x99[\x02\x8d+\xd3,KYo\xcaO<\xf7\x92#\xf5\x97.\x91B\x1b\xfd\xe5\x0bx\xaes\x0d\xd4\x15\x88\xfc\x02;9\xd5>\xa3\xed X/\xfd\x84\x0e\xcc_\xbe@\x06G\xb0hWw\x83\xa6\xf2v\xd0Z\xe8\xa8\xd2\x86\x8e\xeaqhP\x7f\x13\x16\x85\xa0T\xe0yG\x158\x94\x8c\xc1\xd8=\x00\xa9\n\xb7\xf9zP\xdd\xfd\x03\x00\x8f\xf5\xf2\"*\xd6\xf9\x05\xfb\xec\x9a\x08\x85\xe6\x98\xaai\x03<\xaf\xacQY\xa0l\xfch\x04D\xcb\xc5r\xb7\x89\x9b]\xf5K\xec\x90\x06\xae\xf9\xa6\x0c\x00P\xfb\xc4m\xf2C\xe7\xa6\xd2\x1f%\xdbh!M*\x17\xad#}\x03\x8bL\xa4\xcd\xe6E\x99\xdc\xb9\xc2sp\xfb\x10\xbc\x10\x98H\x16%\xc2\x04\xe0\x0ft\xee\xc5\xbf\xc6S\x96O\xb2x\x85b\x9e\xfe\x91\xf6\xbe\xf6\xa9\xfeA\x93m\x92\x96k\xcb\xf6\x0e\x02\xa0|\x86\x00\xfd\xec\x7f\xf3\x18\xbd\x01\x1a\xd7^\xfd\xf6l\xab\x10\xad\xfe\x14-\x17\x82\x81s\x99\x10\x95\x19\xa7\xc8\xe8\xbb\x98k*\x15!U\xeb&\x12Y\xb3\x89\x84\x91\xbb\xb6v\xb7o\x0d\xac\xd1\xd8\x94\xdedR\xea\x89\xab\x0bk\x0c\x87\x1cM-g\xea\xc6\xc4p\xb2\x19\x91\x0fT\x13X8\xa2^\xcc\xb3\xf46\xe1\xa8\xaa\xd3\x9f 4q\xfe\xb7\xb7\xf4\x8b4\x9a2a\xc8vq\xf6\xfb\xdf\xbf9\x1d\x0b\xeb\x8bs|\xf5\xf1\xfd\xab\xe3\x0b\xfdU3^\x98\x16\xc5\xbf\x14Z\xacUh\x86Flh\xb1=\"\xb4\x11\xa5\xed\x91q\xd2s\x0e\x9e\xd9 *PrH\x16\xe9\xf5\xf5\xe2\x9b\xcc\xd1\x08\xe5\xe5}\xac\xa1\x88e\x93\x064\xf9X@\x8ep\xc9&\x96\xbf\xfcH\xcc\xcc\xd3W\xa0D\x9br\xb2m\xba\x86\x1a\xfd\xbf\x07\xf6\x97\xafK;\xadL}D\x07AG\x03\xfd<\xc3\x8bmi\xae\xcf\x92\x9b\x9aA\x7f!\xcd\x17\x95\xc9?\x92\x1b\xe4e\x95}?\xe7\xbcr\xcd\xe0\x7f\x95\xe6\xc20[\xfdz\x1bq\xc1M\xf5%\xed\xb7e1\x9e\x9e\xd6Z\x90j\xe3\xf1U:\xbd\x1b#\xf6y\xb6,e5&\xb3T\x8d/\xfe\xf4\x9enN2Vx\xbfk4\x18\xd5\x1b<\x7f\x7f\xf6\xee\xfc\xb4\xa9E\xb1\xd3\x9b\x9a\\\xd7\xe1\xc5\xc14\xfe\xe3\xf1\x87\xd7\xc7?\xbc9%\xe6,\xa06\xbe\x91\x08/\xa7\x8d-\xde\xeb\xd8\xbf\xd1\x02\x95R1\xc2\x12\x7f\xb7O\xba\xc2\x0e\x1e\x9b\xf1\xad\x84/\xecc\xb3\xbap\x85}b\xbe\x16\xee$\xfb\x8f\xcd\xf0\xa8\x0b\xe19kjK&b,\xfbf\xf5\x99\x18\xcc\xb3\xc0\xf7\xe2\x82e\x11Fv\xaaWYq\xfe\xdf\x1f]b,\x14\x8c\x9c\x91p\x8e\x1a\xe2\x04\xe4K\xdf\xf4ui\x94\xd2@Sl\xcc\xe3\xbc\xbe-*\xc8:\xdd}Q\xfa\x9a\x87\xca\xd3\xd5l>\xf7\x13\xacdFQ\xe2+u\x17\xc2U\x08c\xe1\xea\xda\xae\xe0\xc50\x10\x98 \x0b\xf3R\x9c\x94\x9e\x8e'V~Z\xf5tr;\x15148\xe4\x1a\xf2\xad\x89J\x88\x9fM\xd5\x80\x96{\x1b\xebk\xdf$\xec\x16\x12\xe9\xa7\xee\xc8\xe7\xa6\x9eMT\xa9\x9b\x8c\xa8\xfbH\xec\xbe\x08\xf3\x13\xf4P\xc4\x10\xb5\xaf\x15B\xdb\x95>K\x07 \x0e[8<\xa4n\xe3\xce\x85\xd8k\xbd?\x11\xdc\x02\x1d#\x8e?\x9f\xe0\x10NF3\xcc\xfas2\xf2\xfe\xfd\xdf\xcb\x8d\x85\xafn8>\x9d\x8cn.\xed/\x8f\xe1\x10>\xa1\xc3\xb4\x7fC\xdc|\x9d\xc1!\xdc\xc0\x11|\x86#\xb8\xf5=\x96\x14Y\xccr/\x80!\x1c\x97~\xd9\xf6g\xe8\xd4\x85\xb1&\x84~\x1f\xfb\xef\xc9\xafyoF\x82@\x8e\xf5\xefQ\x1f?\x86C\x98\xf8\xefeT6v\x0b,\x08\x02\x8c\xe5i\x86\xbc\xe2\xd5\xc7\x98\xb3\x13?\\\xf8\xe3\x10N\xe55\xb7\xb8\x93S\xa8\xa0\xdf1\x8c%\x94\"^}\x16\xc24\x08B\xf8\xcc[\xc0\xbc_\xe5\x02\xf1\x1e?\x89X \xbc\xf5s\x19i\xf4\xb8#\x95\xf9T\x05c0\xb4i8\xba\xef\xbf\x87\xadk\x0c>\x8f[}\xeb\\,\x90\x1a\xda \x0e\xed8\x08a=*\xb8\xa8z\xcc\xff:\xe5\x7fMC |\xa49\xfc\xee\x9c\xf6ObNC\\D\xbej\xb7\xbe\x9a\xa6\xe3\xaeS\xc4Y^V\xd5\x91n8*\xcbU\x1d\xc2\x19\xb1U\xe0\x9a\xdeV(\xd8_I\x1f}\xfc\xff\x84O=\xe6S\xbf\n\xe1ntuI\\\xa8\xa2\x03x\xea\xa7\xbd\xf7\xb0\x0di\xefG\xf8\x1d\x08o\xff\xf3\x00\xe9\xef\x1d\x1d\x80e\xc3(\xf7\xfa)\xb0\x95\xf8\xfb\xfb\xa8\xd5\xddJ\xfc\xc7\x83\xc0\x9dQP\xf6\xf5\x04\xb6\x0e\x1d\x829?\x80\x0f\x02\x99\x9f>\x04/\xb2ds\x10\xc9w\x86\xedDL\xf5f\x83\xdc\xc0\xb6^\xe5\\!\xefg:\x07\xdaxLG\xc9|B\xe5\x85\xe1l\xc1^\xe0[9cd\xb0\x8d\x83A\xe0{\xafO\xc7\xef?\x9c]\x9cy\xf7\x0e\xb0\x11\"g\x92\x92\x894\x84\xc2\xd2z\xbdp\xc5M\xc3P\x82\xeb\x00\x12\x0ci\x89z{\x7f\x8d\xb0\xc0\xa8\x902\xc4/\xf1\xe1\xf32 \x0e\xbc\x84\xfcy \xbf\xe3G\xc0(\xdf\xde\xbe\x14f2\xff\x1d\xfb\x0bl\xed\xcb\x97\xaa5\x1a=\xcd\xa8\xe2\x9d\x17hw\x10\xf4T\nb\x1a\xa4\x99\xb8\x8fP\x95d\xd0\xdd\xcdzq\xa1\x01u\x0bb/\xb5\x8d\x0e&\x1d\xa7GN\x06\xd3\xac\x07\x8btj\xe4$\x8a\x08\xcdy\x8ca\xe8F\xf1%\x0c\xe9\x13\xc1\x0en\xaf\x07 \xad\x97\x1e\x19\x91\xef\xab\xc3hX\xffL\x86\x88:\x82\x08\x86T\xe4\xf8\xce\xd0\xdf\xdb#\xa0\x9f\x8d\xbc\xf1x\x92fl\xe7/\xf98\x9fG\x19\x9b\x8e\xc7\xe2\xa8\xf7]e\x87\xf0\xb7\xaf\xad\x1b\xcf\x01\xd2t$r8\xfa\xa9\xd0\x9c\xfe\xedk\xd02\x1f\x17=\xbd\x9fF\x91%\xeb%\xcb\xb8\xf04\x84-\x7f\x00\xdf\x03E\x01\x94\xf7\xb4\xaa\xb7\xeb\xa8w\x9b\xc5\x85\xaa\xb3\xef\xa8\xa3\x14#\xb5\x82o\xba\xd8\xa9Z.\xb7\xef\xfe\xe3\xc0\xdf\xd2\xb5\xd4\xfc\xddA\xe0\xcbh\xbf\xe0\x89?\xbc\xa6$\x1a\xa8g\x1e\x17p\x08\xd2\xa2\xaeT\xca\x8f\xe3\xfa\xcdG\xe8>U\xf8\x98\x98L}/\xda\xb3!Rj\xe0\xc71I\xc5\x12xyXQ\xc6#b\x15%L]<\xe34M\x98\x9d\xe0\x15\x86\x18\xcc\x0d2\x91\x7f\xa0\x9a\xdb\xf6a\x19V\x8f:Feg\x04\xaf,\xfb\x19\xd4\xfb\xd1\x10z\xc3cr0\xa0\x03R=\xde\xbb\xefv++4\x05\xd3\x8fC\x88\xc4y(\x17>\xf5\x0bS&V\x0f\x1e\x05~\xe2(\x15A\xa6]\xd1\xd2\xe4\x98rx\x01}\xe1\xd7\xfeR\xb8V28\x02\xcf+\x85\x00\xbeP1\xb6\xa4\x05/\xcc\x83\x00^\xc0\xe3\xc7\xbb\xcf\x0e\x90\xbd\x83\x97\xf0\xf8`o\xf0L4\xb4\x0d\x03\xe9\xa8\xc9iKd}\xcc+\x88\x06\x0e\xf6v\xb1\xf3\x887\xf0do\x7fO\xf6/\xeacG0\xc44H\xe2m\xbe\x88'\xcc\xcfC\xec\x04s\xd5D\xb0#\x9b\xd9\xe6\xe3\xdc\x91\x83z\xf1\x02\x06\xfd\x00\xb6\xe1\xe0\xf1\xe3\xbd\x83_v\xb7\x9b\xfa\x11\xa9\xab1\xb1G\x86-3\xe9\xbeT\xd5\x98\x1a\x9c\xb5\x0c\xf1a\x9e\xc6RWs@\xebj\x06\x96ng\"\xeb\x9b\x83\x94\xca\x9a'\xffT\xd6\x10\xcf?\x955\xfa\xf3Oe\x0d>\xffT\xd6\xfcSY\xf3Oe\xcd/\xa6\xacqjj\x06duw\x18\xd1\x03\xc7\xdd\xc9\xe3\xbe\x83o\xd3\xc2\xb3w\x12DQ\xfcL\xdb$\xa5\x0d\xf9\xca\xb7Q1\xef-\xa3\xcf6\xcf J\xe2\xa4\xc3 \xe9\x18\xb0d\xb4\x19\xf2\\}8\xe2b4l\x83\n\xc2\x19\xfb\xcc\x88\xc9\x0f\x1b\xac\x8f\x9e\xc8#4\xb2\x96\xc4\xb9\x9e1c%_\xbf\xceOK\xb9/,\xd27\xe9$Z0)\x1b\x95)Qpo\x9c\xcd\xbc^\xbeZ\xc4\x85\xef\x85\xde\x86\xec\xfb\xde\xde\xaf\xa2Dq\x04\xad\xdd\xa5\x95i\xc8o\xe5+6A\xfa}\x8f\x15\x95\xea\xb2H.hk\xca\x14\xcd\x13,\xc2CH\xfd\x16Q\x923?\nF\xf1e \x13\xef\xa4z\x92\xf3\xeeh-b\x17\x87J)h\xddR\n^v\xff\x89 \xab\\nL\x07/{`\xf2\xc4\x13Zs\xc2Y\xd9\x89\xca\xcdl\xb3\xb0\x93^\xce\x8a\xd7\xcb%\x9b\xc6Q\xc1l~u\xd2\x9b,X\x949j\xcc\xb1\xc6[a4\x7f2\x8f\x92\x84\x19~\x867X\xe3U\x9c\xaf\xa2bb\x98},m\xe5\xe55\x11\xca\xe7\xae\xed@CA\x1e\x0ea\x9b\x9fe6I\xe6'\xcf\xb5\x99:\x85\xce\x90\x01\x9a\xe1\xc5\xb5\x93\x9b\x95A\xd2x\x85\x10\n\x9f\xf0 \xa8\xbd1\xa6s\xd5\xcad\xdf\xc9\\ \xc2Q\xa5\xdeV5\"<\x96\xa7(D\xae\x1a\x9b\xac\xa5\xfd\x18]\n\xad\xed\xe09D\xd95n\xed\xbcR\xec&\xcf\x03\x95C\xa3,\x1d%\xdb\xdb\xe6I'\xf7\xcf\xf5h{{y\xd9\xb6\xd0\x02(\x7f\xe5\x0c&_\x87\x9b^\x92\xde\xb6\xb6\x86\xb5\x9c\x0d\xcd\xe1H(\x13|$\x93\xec\x16\xe6A\x8f\xd3\xbd\xdd\x10R\xfcc\xd0K\x93*\xb4\xf9\x95\x08T\x1f\xf9qo\x95\xe6\x85\xdc\x85Hk\x06\x18\xcfi\xd2\x8b\xa6\xd3\xd3\x1b\x96\x14o\xe2\xbc` C\x9aN.\x86\xd6\x00r{\x93^\xbc\xe4=\x9e\xa3\x17P\xceG\xd6<\xb5\x89>\x06<@=/\x04\xefw\xf54\x07\xf6\x88|ON\xc8C\xaejK\x8c\x1c]\xa5\xd2$c\xd1\xf4\x0e\x03\xee\x89p|(]/|O\xf8&a\xaa\x15\xf7\x88\xf2^\xb4Z\xb1d\x8a\xf9\xe8}\xed\xab\xa0g\xb7\xdc\x86\xc3y/c\xcb\xf4\x86\x89\xc6\x90g\x0e\xcb}\xea\xf4\x1c\x80\xa6\xcc\x959+.\xe2%K\xd7\x85\x86\x11\x9c\xe9\xa8\xbe\x0f\xeaF\xb3\xd6\xf7V\xa4Y\xa4\xd5C\x98VM\xe0_]\xb9\x15\xf7`\x1b\x9doh:\x8a\xeaF\x9a\x1f\xbf\x19\x02k'\x9b]\x1cv\xdc]\x13\"\x1f\xc8\xae\xdb:n\x81\xde\xa6\xec\xce\x13:D\xff\xe0I{V3G\x9e\x8f\x0cie\xea\x17vj8\x91\x90\xa8-\xb5q\xdc\x9b\xb9\xb2\xfe\xfa\xfd\x10\x92^\xc6\xf2tq\xc3\x02\x8cl\x8f\xa9\xfc\x96\xb1\x96\xdfjC\xc0X\x10\x10\x80yF+\x01\x91\x0dDg\x86v&\x90\xe2\x00\xe9|\xf3\x98\xc7\x8f\xcb\xc9Z\xdaT\x91wF\xb2x[[\x9c\xc9\xf3>\xb0\xeb\xd3\xcf+\xa4\x8di-%\xe6\x86s\xb6\xf8<\x95\xb0\x81\x9c\xf3\xe3{\xe1\x82ZN?\xed\xc9\xab7\x11\x9aA^\\\x89w\x9cK\xb10>\"\xc2\"F\xd2A\xc0O\xf0\x161\xeb\x9d\xa3C(\x17ac\xb7\x05\x00\x88l\x9e\xb6\nA&\x8c\xf1B\x88\xee\x0d\xc4g\xae\xdb\x84Zf\x97Nr\xa9\xa6\xeb\xc9\xea\xc9\xc57\x1a\xd1\xee\x9eC\xa69\xd8Cyc\x12\x15\xbe'\xf8)O0\x1dB\xc2\xab\x875\x9e\xd5\xeez5\xbe\xf4]\xb4d\xbf\x8e\x9c\xbdk\"\xa2\xdc\x934~Z\xe6\x0fR\x9aylj\xce\x854c\xdd\x9eKaf\xcf\x14Z\x16.@\xbc\x92\x0e\xc8\xba\xe4&\xe0&lS\x8e`\x01- peF$\xcc\x98'\xae\xf9\"\xbf\x90\xda\xb7\xd2\xccL|`\x1eH_\xad\xaedN\xa5\x92\xf4\xa6\xfeV\xd6\x9bii\xfdB`\xa3\xe2\xb2m\xc5\xcc\xe5Jp\xa7\x96\xb1C\x1el;\xa8D\xae\xf8\xc9\xa5\xe0\x8a-~\xa6\x13R\xb9Y\x94\xd2\xdd3\xf1\x1f\xef\x99\x18Ty\xeb\xd4\xfdr\xbat\xd9v\xed\xf4\xec\x80\xde\xa4O\xcc\xf7\xb1c3\x08\xf4\xb6\xac=\xe4\xbd\x93\x95tGS\x94Ey\x1e_;\xd4Q[\xb8\xb5[L\xaa\x944KE\xb4-\x1c\xef9\x92\x9c\xdf-\xaf\xd2\x05\x15[\x06\xb9\xe9\xe8j2e\xb3\xeby\xfc\x97O\x8be\x92\xae\xfe+\xcb\x0b\x8f<)e:\xd1'!dJ\xbf\xe4\x05\xbdY\x9a\x9dF\xad\xd1\x1a\nq\x86\x18\x0e\xadA(,\xc4r\xe1l\x1b\xf0\x0e\xca\xf3I\xdc\x95\x89\xa2\"\x08d\x98L\x0f\x93\xeeVn\x16_\xeb\xcc~\x9b\xd7\\\x84{\x9e\xc3\xdc\x94rC\xa49\x83PFK\x9f\x85\xa8!\x89{\xb3\xe7\x90\xc3KX<\xb7\xf9\xd2\xb2\xe5\x95\x90=\xd7\x9ap\xbc\xe0\xc2q(\x14!\\\xfe\xf3\xa7\xe510\xf1\xa7B\x98\xf1\xa7A\x88\x8a\x90y9\x86\xa5H\xc2u\x03/a\xf9<\x00I&\xa6!\xead\xe6\xa3eiQ\x95\x8cV\xa8S\x1f\xad\x1c2\xb8\x96a\x0d\x86\xdd\xb2J\xb5\xed\x9eA\x9f\xe6\xd7\x06\xa6nI\xec\x9e\xdd\x03j\xf7\xf8\xbc\xe0\x80s\x8f\xfe`\xf7 \xa8\xd9{<\xc5\xd7\x8f\xf7\x1e\x93)\x1a\xd6\xd4\x98\xa1t\xd7\xcc\xd2U\xae\xb9\xfdV)\xd4\x95_o\xc6f\xb9\xcc\xe2\xc7\x7f\n\xafh\x9c\x19\xea\xef5Jc\xf7\x9d\xff\x1d\xfb^\xd4\xdd\xa8\xd7\x9aof\x9c\x7f`\xd1\xa4\xd0\xf3\x10\xf2\xed\xa2W\xc9e>\xfd6\x9e\xb1\x8c\x85e\xe4\x82wg\x89\xc7\xbc\xbe[\x87e\xca\xf8\xa7\x8f\xbd\xa0>\xbf\x9e\x91\xd3\xbf\xbc\xaf\x0ceD\x05\xa2\xae\xcab\xafR\xb7\x85\xe0\xa9)\xd4u\x06\xfa$gi6a\x1f\xed\x00\x01\xe4j\x19\x1d\xfeX}\xab\x04x\xd6qp,\x04O\xeb\xba>\xbeE-\xab\xf1Z\xcfj\x9c\xd7\xf3#\xb3[X\xd4^\x1a)\x97s.\xd3\xe5z\x03ZkA\xfd\xcb8\x7f\xbf\xce\x98\x85\x15[\xfd&\x95AY\xd3r\xe5\xe2\x8di\xa5\xb9\x86\xa8p_\x82\x92\xf8\xcf\x02\x9b\xbc\x18\x0bc\xf5l\xfe\x90\xae\xafa\x861\x0c\xba\xfe\x07\x91\xcb\x13q\xb5k\x1fjk\x10\xf5+X;nb\xee\xbf\x04\n\xe8z\xc2\xb0\x07n\x9aT'\n^\x84\xef.\xf1\x17\xdf\xb8\xf5_\xbe\x97q\xdc\xed1q\xaf\xe4\xa1\xc9\xf0A\x7f\xd0\xdf\xfb\xc5F\x9a\xf8\x8f\xf7\xefm\x9d\x86\xe2\xd6\xd6`C\xd6\x98\x1eP\xed\x82\xf0\xfc\xf4\xe4\xc3\xe9\xc5\xf8\xd5\xd9\xf8\xdd\xd9\xc5\xf8\xfd\xf1\xf9\xf9\xf8\xe2\xa7\xd7\xe7\xe3\xb3\x0f\xe3?\x9d}\x1c\xff\xfc\xfa\xcd\x9b\xf1\x0f\xa7\xe3\x1f_\x7f8}\xf5\x0d\xees\x0f\xe65O\xc1u\xd7\x12\x0f\xa51\xe0\x01\xed\x92\xf7\xd82\xd0\x92v^\x074\xc3\xbd\xfb\xe4q\xdd^\xf4\xc9\xbe\xfe\xbb\x87)\x13=\x91k\xfe\xbcH3\xe65\x98}\xaa\x05\xed]i\xb3\n\xabV\xd2\xe5U\x9c\xb0\x0fl\xba\x9e\xa0\xd7gkKi\xcd\xdb\xa0j\xe9*N\xa6\"\x8c\xd0 \x1fY\xda\xa9\xb1\xd8\xd1X\xb4Z-\xee\xde\xc6\xd3\xe9\x82\xddF\x9d&\x189Z\x9ap2\x9fwia\xbd\xb1\x1b\x85\xe3 Ps\xe8\xd0g\\\x1bs\xd1\xd3o\xcb\x80\xc9|\xb0V\xf46\x8e\x8aFJO\x92.a\xf4\xb3\xda\xad/\xe7\xb1\x11\xf9\xc4\xb5\x98(38m-\x15\xf1\x16\xff\x88:\x9f0\xa5/\xc5BED*\xe5\xd3\xcf+\x8c\xf9\x00\xc5\x9c\x01K\xe6Q2a\x19\x14)\\1\x88\xca\xe9\xf6\xa8\xe8\x8ajq}\x16\x08C\xd9Z\x0d[+A\x8e\xa9h\x1bS&\xb0\xbf}H72\x99/\xa1g\xc6{j\xfb\xf5\x84pM\xe1\xef\xf1\x9e\xda~\xbd\x92\xa7W\xad\xa0D\x88)\xa9\x8e\x9c\xe1\xda\x8a\x1c(\xe2\xfa[X\xc6\x06&\xb0\xe8F\xe7MVS\x8bNM\xdc\xd0L\x8csAX\xd3\x82,\xd4\xe5]\xebj\x80v}M\xa5O\x95s\x98\xfaA\x08\xb32\x9a\x8dU\x0d\xb4\xa94\xda(\x8a\xd4\xdb\x0d\x15@\xea,\xb6\x06!\xef\xd5\x1e\x91\xfe(\xd9}&\xb23\x9f\xd9W\x14\xe63C\xfd\xc4\x84\xf9I\x08\x03\xda\x8a\x0b\xac]A\xbfu\xad\xe4\xd2\xbd\x92[Y/B;\x02k\xe9d\xf08X\xae\xf3\x82/\x19\xc6\xe2\x05!x\xe5=\xf8\x983\x98\xac\xf3\"]\xc2\xb2\xa4\xe8\xa8e\x88\xf2\xbbd\x02\x91\xf8\x9c\\^#-:\xeb\xa1l`\x0d\xe1\xdf\xca!Dw\x98\xb2}\x1e\xdd0\x88\x12(\x83\x1d\x83\x87jiPvG=\xf8\x89W\xb9K\xd7\xb0\x8c\xf3|\xc5\x16\x0b6\x85\x08PD\x89\x92\xe2\xe8\xdf\x1c\xa3Y\x11\x00P\xa7g\xd9\xfdT\x1a\x804\xce\xcd\x1dFs%E\x1bNSr\x7fA\x9a\xc2~\x85Y\x9cD\x8bEc\x1b\x03\xfb3\x9b|\xe8\xf6\x12\x9c\\\xcd\xc4\xd9 \x93\xa6k\x89\xe1\xb7\xb7]\xc8\x7f#3\xb6\x17\xa3\xc4aD\x92\xb6^\x80\x82\xa6\x92\xfb\xce]m\xe9\x0c\xc8\x15\xf7^\xbf{}Q\xff\x94V\"\xadI\xc3L\xb5hd\xec\xf1|}\x95O\xb2\xf8\x8a\x91\x11\x96\xafKq\x87\n\xf5\"\xe4'\x89$m\x92\x1f\xdc\x9bp\xf2\x93,a\x9f\x8b\x0f]O3\xf5H\x1d\x0f\x05Y\xf58!\xac\x1e*Th})BX\x8f\xd2^\xd4j?sS\xf9)\x11I\xacu+Fz\xb8\xdaJ\xb5C\x1a\x14\xb4 5\x91\x0e\xeb\x8b\xbb\x15\xa3\xe0\x9d^\xc9t\x89\x12\xd8\x8a\xec!\xac\x9d=\x96\xe4\xb6\xddJ\x9f\x95\xf6\xd4\xe2/\x7fn\x9e\xeb\xfaC\x93~@)\xa2\xe1pQ\xa2Ma9\xc3\xeaO\xa3\x0d\x82z\xd6\x89\x06\x7f;l\x90z\xba\x9cQ\xf8&\xe8\x843P\x0d\xcf\xf2&\x01\x81|\xcc\xc2\xc6\xf2\x05\x11)\x87\x0b]\xb4K\xecc\xeb\x0e0&Q\x91\xef\x94!x\xff\xfe\xef\x9c\xb9\xfc\xfc\x88\xff\xac\x07\x93\xff\x06\x89Z\x17\xf1\x1d~i\xd6\x9d\x8d\x14E\x1f\x9bWB\\\x1a(o\xc7\x84\xd8|I\x84\xc2Qfk.\x9f\x87\x9cp\xfa\xad\xd7\x10\x1eh\xa5Mo\xad\x8c\x1f;\xb9a\xb3X\xaf!\x92\xb9\xe2\xb5\x81\xe8\xa6v\xc1\x1c5\xea4\x90{\x89\x91{\x01\xcc\xd7\x8a\x7fm\xa1hS*\xdal^\xbc\xc0\x1b\x93\xc8b\xcbxs\xa8$\xe6\x1cIQ5\xd1\xb7\x9bH\x90\x1d\x17\x8e\x07a\xcd:\xda\xb3mY\xc8\xa3\xca-\xd7%\xba+2\xbe\x91\xf0I\x02^uV\xa1\xf7\x83 \xda\xe3~\xd0\x8bzB\xa3e\x82~cm\xd5\xa6\xf5\x9dkm.u\xc9\xcc0\xf2.\xacP\x97\xc7x_\xa6q9exIq\x19\xa8Y\x83^\xda\x8b/xQ\xc5\x18\x95\x08\xd0|\xda\xd0\xac\x8d\xdd\xf8\x80n\xbc\x18\xf5/I\x04)zBz\xf5k\xb0l\x18AWB\xca\xfc\xa2\x87j\x18\xc9\x80\x87\x15T\x88\x13\xc88\xec\x1fDq\xf8`J\xbc\x10\n\x15\x00\xb9\x8b\xf2S\\\x10\xd5(\xb7&}\xc0\x11xq\x12\x17q\xb4\x107P\n,*\xabr\x91\x82\xae\x9b\x83!\xa6\x1c\xbf\x89\xd3u.\xd3)gl\xc2\xe2\x1b6\x85\xab;]\xffP\x8b\xec\xaakM\xcb\xd1w\x81e\xb5g\x9f8\x9cQ-\xdb{y\xb1i\x1e\x19\xca\x84\x9frG\x1d\xc0#\xd3\x98]\xb8Q\x1cA=b\x02\xe5\x90\x86r\x0d\x1cA^\x1e\x07e\xc5j\xf5)}5GJ\x8a\xba\x13y\x06\n\x97Q \xaf\x1f\xfb5\xcb\x95\x82KXh\xc3kW\x8d\xf4\xaa\x0bL\xee!\xe8y\xc0\x17\xd6\xa3i~A4\xa6\x08z_\x18\x9fp\x1c\xe3@,\xf8\xaf\x9d5\xc7\xaa\x9d>G\x96d\xb3\xadS\xed{\xa7\xbd\x9c\x96\x0f\xa8\x84\x0e\x9e>\xe2\x08\x92\xb6t\x87\xa5G\x1f\xbe\xae\x0f^_\x0cm\x80Ay\xb6%\xfe\x9e2\xf0\xde\xdc\xfc\xb6\xcd\xbcag l\xbf\xe5\xa9\x8b\xb6\xf4}\x18j\xb1\x01\xd2\x92\xb0g\xc1s\xd8\xde\xe64={\x1e@*\xe8y\xe1\xb3Qr\x89\xcaT\x87\x1dh\xba\x19\xd4\xb5\x83\xf1\xc9A\xe0{E\xfaq\xb5b\xd9I\x943\x97\x15'}Hv\x02\x0eqA\xaf\x06\xb0C\xd8\x1c\x8bh\x97\x94\xaf\x7f\x81>_\"%\xc6!\xec\x14\xf0\x12R \xcb\x14\xb6\xd1h\x0b]\x81\x12Y\x90r|\x0c\xca\x8f\x12\xd8>\x844\x10\xe0\xe6\x1f'\xf2\xe3\x04v\xf8\xef\x97/1v7\xff\xe3\xd0\xcczU.h\\.U\x8aK\x95\xc1\x0bH\x9f\x07\x10\x8f2\xb4\xa5\x19e|$\xf4a\x17\xb7\xac\x92\xb9D|.\xc2\xc2\xd5\xf7F\x7f\xfe\xf3z\xb7\xdf\x9f\xfe\xf9\xcf\xeb\xe9\xd3~\x7f\x87\xff?\x9b\xcd\xfe\xfc\xe7u\x7fO\xfc\xec\xef\x1d\xf0\x9f3\xb6\x8b?glw\x86\xdfL\xf1\xe7n\x7f&J\xfbL\xfc7\xbb\xdc\xdc`W\xce#\xe9\x15,/\xdaM\xcf\xbabG\x08\x19\x85 \xa9\x03A\xe2\x86\xbdD\xac\x1a\xdee\xc6\x12\x03\xf8\nmo\xa7\x97\xb8v)\xbc\x80\xf8y h\x9e\xcfw\xd7(\xbdD\x0f0\xc76\xdb\x90\xb8U\xdbl\xf0\x9420\xae\x84\xf1J\xcdA\xc6\xd7\x8fI\"\xe3\xd6\xb3\xa0\xe1\x9a4\x04)\x9c\xf6\"\x05\xad\"H\x89[\x83\xa4M\x84US-\x99,ZQ-v\xde\x11(\xdeLXldhx5\xea\x13\xa6\xcf\xa0\xd6[\x04*\xb7\xc5{<\x0f\xb9\xec\xe5\xa7\xd5A\x17c\x1eHs\" \xc7)r`\xd7\x07`\xd7,q]e\x00\x88{9o\x14/\xb4\xbe|A'\xc1\xdaG_i\x94)\xbfO\xd8\xad\x1f\xf7N\xf0\x17\x97\xe38\x0bo\xe0\x13\x7fT\x15\xcc\x8e\xa0\xef\x9ax3\x94\xb3ng\x05\xfbd\x19\xf5\xc6\xba\x04}\x9c\xdf%\x13%,\x9b\x82tM\xd6vUZ\xeb\x95~\xcf\x12\x116\xc0U;\xd7k\xbf\xcf\xd2\xcfw\x97\x8e\xab\xf7\x16\xf9\x18\xad\xff\xdb\xc4\xe1\xcc\xe5F\x81\\\x0c:\x95\xe2_\xeb\xf2\xaf\xb8\xfc\xab\xcd\xc8\x86\xa2\xdd\xb6\xd6\xa1\xc52\xb8y\x92\xa5i\x17\xb5\x01\xdd\xeax\x0d\x11m\xff'\xfe\xb4d\x86jmY\xf8\x8fm\xd2\xecWj\x11\xf4\xd4\x10\x1b\xa2\xfa\xa0\x1f\xf8\x89\x7f\xb0\xff$\xd8\x88{ih\xd0\xdc%b\xf3\xec?i92\xcbKo\x19\xfa\xc8q\x80\nv\x15\xad\x0c\x95.\x06\x8a\x92h\xab\xa2-\xe53\xb4\x95\xfa\x89\xf0kV\xf4\x1c#\x02&h\xae\xaa\xf7\xc7x\x97m\xa7r\xc3\xacim\xdc\xee3\xda0\xe4\xc0\xca2\x14\xa1\xb1n\xed\x15\xa7\x07\xbbm\xd8\xae\xd8\x80<\x84E\x08\x13\x8a\x19@g\x02\xf8\x9e\x0c \xaf1\x8cv\xa9\xc8\xa8Dq\x07x\x1f\xc6\x019E \xfb3@\x1f\xdd\x97\xb0j&%\xc2\x8f\x9a\x9f0\x94nm\xce[\x11\xc5\x9a\xe85\xc7%\xb6\xdb\xbaq\xf08Kq\x87f\xbd\xbf\x96`\xe0\x12\x17?\xb63B\xf4\x04\xc5\xf9\xa0\xbb\xb8\xa0N\"!k!dE\xce\xfb\xdc\xc0\x0bX=w\x1d\xe5\x98\xa7\x96\x8c\xef\x02\xd2)\xba\x18\xdd\x10we\x1c\x00y\x80M\x8c\xf9\ns)\xd9\xbf\n\xe1\x0eC\x1d\x15\x88\xa1\x13\xcc\xca\xe8\x8b8F7\"\x9d\x13\x7fK\xb7\xa6\x99r\x8c]*\x1f^o\x1c`\xea\x9a8Y;\x92\x0c.\x0d\xcb:\xfd\xb9\xcaX\xf4\xc9*\xb1I!:\xa77\x8db\x0b\xa5\xf1V]V\xed\x93\xd8\xbf\xc6j\x9cA\xbd\x13\x9a\x1a\xbe\xfb\x17\xd2\xcdTl\x8bIP\xe1\xd2\xb50\x06p&\xbdl\xea\xb1 \n\xe0\x84\x04\x90\xd0\xf8*\xe2\xa7\xc4\x18+\x86/\xd0\x15\xee\xa3\x85\\\xdar\xe0\x8e\xe1|\xeb\x82\x90\x87\xc8\xa4'<\xcaQCZ\xfe(\xeaN\xe9\xf8\xd7\xbd\x84\x95o\x92\xf35\xc9\x9e\xc4\xac\x9a\x98\xefT\xcc\x97\x84\xa9e>N2\xbf\xf7$\xe8}\x8c\x93\xe2)\x8a\xb1\x0fr^\xee>\xa3B\x80r\xb1\x87\xbe\xc79\xd8\xbf\xaf\xe8)\xe2\xa5~\x93/\xddSz\xac\xbb\xedcr\xeb2b\xa1\xa5q(g\xf8l\x8e0\xf4_\xe6\xc7!$\x1dp\xa4D8x\xfc8\xf03\xc7\xd6M7\xebc\xd0\xa7\xa3RqN\xcd\xbf\n!'&v\x0d\x870\xf2X\x96\xa5\x99\x17\x827Y\x08\x7f5o\xca\xf2\"K\xef0\xb0N\xb4\x16\xef2\x96\xaf\x97\xcc\xbbt\xb9\x08\xdd9\x11&\x06y\x1b\xc3a\x88\xde\xe0ROf\xce\x154\x1aU\xe8F\x86\xb1]\x0f\xbd\xc9\xc5\xed\xd3\xdbt\xca\x9b\xdc\xdab\xda\x0b\x19Z\xd9\xb7\xeb\x99o\xbe|\xc1O3\xb9\x7f\xce\xca\x12\xc7\x1d\xa40r\x98\xc7\xd7\xf3\x9f\xa3\x82eo\xa3\xec\x93\xbd& id\xd5\xeeO\xed\x1f\xac\x89\xd1\x1d\xc1\xe0\x00\x8608\xd8{\xba\xef\x80Bm(\xfc,\xe0S\x12'\xa42\xa5\x10\xb0\x88\xaa\x82(\x90\xd9c\xd6!\xdd\x08\xc6\xfb\x9d-\xd24\xf3\xedr\x15\x96@\x08\x8a \\\xeeo\xca\x84\xed\x18\xe4R\xcb\xd8\x1e\x8b<\xe9\x9c\x8f\xd5_\x9d\xa4k\xf4\xa5W\xf5f\x8b\xf4V\xa4\x1a\xd7j\xb2D\xa4\xc8/\xf3\xb5\xb3d*\xe8W\xed-\x87\xb2\xf8\xb6|\x85.>\xc2\x9d\x05\x7f'\x8cM\x15\x91\xac5(Z\xa3\x8a\xd4\xda\x89 \x8aF\xfbbC\x9cO\xe6l\xba^\xd4G#\xf7\x8f\xf9\x12-\xe9N\x93I*\x87\xca\xacw\\\xae^\x17\xb3\xa7*\xe3|t\x1b\xc5\xc5\xab,\x8a\x13\x0dNr\xaeo\xd3\x8c\xd5\xdb\x9f\xa4S\x96\x99\xe0+{\x13oY\xf5\x8a\xa3\xc4\x1c/\xb2\xe6\x92\x82<\x0bzBE\xf1J\xb4\x15\xd8M\xb3[\x98\xfbU#\x81\xdd\x8fVX\xc3W\x97\xe7\xd7\x95\xdb\xf3\xcb\xa4\x1c[\x88\x8b:e\xb8\xaa8\x08>\xb4+\xd2\x95\x0dG8\xce\x8c\x03\x92\xd7\x17DK\x04\xa9\xa8\xad\xb8\n\xf1 \x14\"4\x03\xcc\xebV4\x06\xdb/w|\x10\xba\xd8f\x89\x1b\xda\x87\xea\xcdaU\x1a`\x14\nW\xdcx\x07 \xc7\xd5m\\\x16B\xeab\xe9%\x17\xc1\x0c\x88\xd8`\xabL\xcd\xe1\x08\xfc\xc8\xd8c\x9d\xf8\x04\xd4\x8d\x8b=\xac\xd6\xc9\xee\xa7\xaa(\xf1\xcc\xd5\x1ah\x9c{Y\x99\xb7\xde\xe4b\"\x94\x01\x8a*!\xd4%\xddRy\xd3\xc2*\xb1\xd06o\xb8N}aX\xb1\x91d'\xf6\xed\n\xa0\xb9xI\xb9\xfa!\x9c\x93\x97\xf7\x1ct\x11\x86.\xf2\x91f#\xbew\x82+B\x81\x9es&\xa2\xe4,zq.\xd8'?\x13\xce\x07\xfa\xb6A\xcd%e\xbb\nztn\xa5*1NKa\xa8W\xf7Mz\x9d\xdcD\x8bx\nI\x9a\xec\x88f\x1f\xc9\xc3a2_'\x9f<39\x9dz\xf0\xb8wLDnk\x02n\x11F\xb0\n!F\xe1\x93\x13p\xbf\xe4bb\xcc\xc7c\x0cY\x1a\x9c\x96\xf1\x97\xfb\x1c\xa3]\xf37?&\x93\xc5qi\x16\xb3\x0bi6\xc7\x1c6\xcdv\xde\xc6\xdc\x16\xbdY\x96.i\xdc\xc0 f\xfc\x94\xd6\x8f<{\xbe\x9aC\x9e\xe0({\xeb$\x9f\xc7\xb3\xc2\x0f \x9a\x15,\x03\x96L\x81\xdd`\xf0\x8f\x00s80\xb48\x10!\xfa\x10X\x02U\xbb\xb4\x8d[F5|z\xf6\xa3h\xd2\"\x0eQyd`nK\x0em\x8c\x0bXn\xda\xdb,\x96\x97{&\xb4\xa5\x8e\xaeJ\xf5\xa5\x8fw\xc0{\xfbT\xed\x9bz\x99\x0ci\x8c\xe9\x9ej\x03\xa2\xb0\xcfT,\xb6\xad\xd5\x16\x93`\xe2$\x84\xd5\xb9 \xdc$r\xc0/L\xe6\xb0b\xba\x98\x93\x8e|\xf5\xcd\xf8\xe3\x0e\x1a\x7f\xab\xd1xj\xc0E\xc9E}\xff=\xd4\xddEp)\n\xc1\x16\x1d\xf1)\x88\xb5\x9eFE\xc4\x97\x1ac s\xa0\xf9}\xb1\xa6\x1d\x89\xa2@\xd2\x92\xa6*\xe4Kx\x1b\x14\xa5\xad\x01\xee\xfb\xef\x914\x06\xa1XT3\x10d\xed\x17\xed\x94q\xa5\x87q\xf2J\xc6\xeb\xdb\x93\x9f\xea\nc\x82\x7fP\x01\xad\xea\xaf+\xce\xcf^bB\n\xae\x8d\xc7\x89\x80\x8e\xee\xfd\xc6\xfe\xf9 \xdf\xee,\x13\x82\x06\xbf^\xc5\x88,\xd5\xdf\xf5\n\xe3u\xa2\xd7)\x7f\x19\xb5\xaa:\xad\x87\x99\x90\x06\x10;\xd6\x8b\x05G\x10+\xccw\xbdq^\xb7K\xc37\"EE\x06\xe4\xf29\xc9AVG\xf4\x04\xcfoC{Th1\xdb|\xa4kxld&7/r\x15eu\x86\x9b\xa1;\xa1 \xfb\xc2\xba\x07U\xac\x9e\xf4\n\xc3\xa0\xa9\xe3*\x1c\x1a\x126;\xfcH\x1d&r\xcf\xb5\x9e\xe4\x97/_\xc2\xa0\xf6k\xb7\xf6k\xbf\xf6\xebi\xfd\xbb\x83\x10\xd8\xf6v`:]\x83\xe0\xb6\x03T>\xbd\xa8q\x17\x0c\xe7\xab\xa0\xa9\xcf\xbc\xb04\x06\xfd\x10\xfa\x1dc\xdb\x9c\xd3PPW*\xed\xc2\x97\xdd;\x97\xf3-e\x05\xc7\xfa\xa9\xef\xf1\xd7\xea\x9d\x17V\x8b\x1eP\xdfH\x9d\x88\xe2\x04\xd2*\xf5\xc6 \xba\xa3\x0d\xe1\xa4f\xe6\x02\x0d\xf3<\xa1\xe7)\x87\x04j\x92\x9e\xc8\xb0\x80\x0c\x87\xfe\xee\xc2N\xea@\xf7\xf3\xc9}\x82\xd4\xf4!\xc8\x82\x9b\x1a\x92~\xa8O\xf2X\x10\xd6\x8e\x13\xbb\xca!\x864\"\x01\x0bXV\x9c\x16\x17\x10\xce\x9c\xab\\\xeaK8x\x8bx\xf2\x89\x1ag\xa7>\xde\xb7\xaf\xb0\xc2v\xa1y\xa3zB|w(\xe6,eZ\x85\x90\xa8\xd9\x96\xe8\x18\x82\xb9d\xdarn6\xa5\x8bo%\x02\x88bS\xdf\xe3\xe3\xa9m\xeb\xe7\xf5AJ\x0b\x01\xa5|\xf2\x83\xe7\x86\xc0\xe3\x1a\xe1\xdb\xb6C\xc88z\x8eDWH\x1d-F\xa9{\xaf\xe3\x98\xdeu\x13I\xfaB\xfbU\xb9\xb0\x08\x07\x16\x0c7D\xe2\x15_$\x91\x93\xa4\x16^\x8a\xb8g\x92%;\xa6\xf4\xa0\xff\xd2\x15:\x99\xd8\x93\xcd\x1a\x02)Mx\xe2\xecd\x9a\x91$\x9f\xef\xc0\xb4\x95\x02\x0d\x01 \xa5\x0dM 1\x8a\x00\x8d\x9er\xfd\xa4r\x832\n(\xa9\x9b\xd0\xfeZ\x9al\x0d\xc3\x0f-\x99\xee\xcb\x17\xa5f\xa8n\xac\xe5\x8c\x87`\x89\xef\xa2\x9d\xb0\xfc$l\xd4\x01\xbd\x16\x97\xc40\x84s\x95q\x81\x13D\xd7<%\x81>T*\xa8@k-p0\xfe\xdf\x7f\xafzq\xb5\x8d|\xb2\x0c\xd0Q\x03\x8d\x13}\xa6\xbe\xc7\xebUJ\x82\x10C|\x18Q\xae\x04\xe4\xaa\x93\xc6\x96\x97q\xfcS\xe5\xf6\x00\x0b\x96\xe7P\xcc\xa3\x04ny\x8de\x94}\xf2\xc4\xb8P\xb9\xaa\xc0\x86\xcd*\xd1\xeeH\xad\x05\xff\x91\xe2\x95\x19\xde!\xa4b\xe1\x91\xbf\x93R\xf94\xc5\x01{A\xa8}_S\xa9HM\x91\x05@J\xa3T\xd38\x9aJ\xb5@or\x10\x1a\x82\xb0X\xc1\x04WP\xae\x8aX\xdaL\x1e\xf1}8*\x05\xbc\xa1<\"\x8f\x1cz-\xfe\x7f?\xd0u\x7f;\xa8\xec$gQ\x02\xd01\xa3\xa4\xdaJ\x9a\xc2C\xe2\x8f\x1a*\xea\xc6\xcbk\x94\xda]\x14?\xb0\xea\xa7\x9b\xa1 \x1ew\"(Z\xc3\xc4\x85\xa6\x80x\x00q\x8e\x81s\xe3\xe5JdH`6\x1d6n b\xcc2\xd2\xca\x8c\x96\x82\xd6\xf7B\xb8#\x8b\xa7Y\x14'^\x083\xb2T\xed\xcf%Y*g\x17\xc2\"\x109S\x8d\x8f\x13N\xaa'\x0deWd\x99\xa467AX\xc6\xbd\xde\x8au-!^\xeb\x8fo\xb3\xb8\xa8]\xbcn\x99/\x91\x08\x96\x9f\xcc\xa88\xb9_\x1b\xd6w\xe2\xbc\x8a\xc6\xb5E\xceP\x18\xeeM;\xc5\xb2\x8e\xeb\x06#\x1a\xef\x8b\x04\xf2\x8c\xab\x8cQ9^\\X\x17\"\xea!|\xeb\xc9X\xc6\x02\xc6\xd5.\xa0A\xac\xb20Pes 24\x00\xd4\xb2!8O\x05\xc4$1\xc1P\xb6\x14*j\xc5Jk\x1c\x8e\xbeBt\x91\xd1@k\xe4\x12\x1d&%qW\xa1\x0ej\x15^\xc2\x80W\xda\x11\xcd\xbe\xf3+\xfa/x\xcc\xad\x95b\xa2f\xd1\"g\x80\xddB\xc6\xf2U\x9a\xe4,\x04ek\x9e\x98\x17\xb0\xb5%n(\xdd\xde\x96\x93\xeb\x8bl\xca\xbc\xbdMw\xe3\xb2\x05\x88\x8aT\x15A\x08W~+5\x13\x08'\x10L\xbc\x17\xe7\x82\xc1\x98\x10\x11!\x9a\x06y\xed\xdcV-\x84\xf9\x8a\xa4 \xee\x8e\xee\x9ai\x93l\xbb\xf5\xb8\xd8\xb4\xdb\xab\xa6n\xab\xc3.\xe9\x89\xbf\xbb\x9d\xfdJ\x9e\x15;\xb1$\xfed7]o\x07\x00\xac`n\xba\xb1\xef*c+\x96L\x15P*/=\xb3D\xe4\x98iP\xa1\xf7\xc6h\xc2\x97\x0b\xe4\x91?F\xc5%\x1cA\xe4\xeb/\x02\xb4\xe3\xab~\xd7-\xb2j\x9f\x1e\xc2( k\xaf.\xb1\x8a\xf0\\J\x1c\x04OCeu`\x8b\x03\xa5\xce\x1f\x88w\x06W \x90^\x9e3|3\xc7%\xa1\x95w{\xc8\x8aU7r\x89\xbc\xcd\xf3\x03\xebR\xdf2\x82\xb1\x18\xf3&\x9d\xd5F*\x03\xf7\xdaWL\xd4\x90Jz\xc1\x1f\xc2\xc9%\xd6b9\xeb\x1c\xbdR\x11\xce\xe3\x9c\xfeh\xe0\xfe\x88U\xcc\xa5,\x87#lIXq(\x89Q\x96\xe1Qi8f\xd8^\x19\xfa)8\x90\xd6\xf0j\x11KvA\x18\x13%R\x92%p\x18\x9d\xfd\x9c\xfcB\xe9\xf0#\x0f\x0b'\xa8S\xa8\xcf\x9c\xde,\x9b\xce\x8an\xa5\x163\xb4\xff\x1cb\x0c\x15\n\xf1\xf6v\x00\xd9(\xbet\xc1\xa0Qak\x19\x0e\x01I\xa6nd\x9c\xc3w~Q\x9d\x9f\x0d:8D\x89H[l\xf9\x99\xca\xd9\x13\x850\x08\x0c@\xec\xa0\xe4cc\x93d~\x14\x08\xe5_\xa3\xfe\xa5\xb6{]\x0b\xdf\xb49S\xeb\xc6\xb5Ib\xcek_Vn\x10\xd2p\x83\xc60A\xd1\x05g\x12\x94\x82\x98\xdb\x00\xadT=(\x02C\xf0l*FRe\xb3\xa2\xdao\xc1\xe5.B=\xe0]Q]\x89\x9c\x11.G|\xe7R\xef\xc5\x85\x88\xa5\xc9\xc9\x1c\x0eM\x99\xa6\xec\xca4}\xcey\xa9<\xd4\x04\x853\xb9\xa6\x9b\x1c\xabM\xeb\x1fM\xcb\x93\x0e\x0e\x0d\xcc\x08\x0dU1\xdav\xb4\x98\x19\xde\xc8@\xfb\x9d\x00]\x9e\xb9\xc6QS\x9d2\xcc`\xf7[1\x15\xa4YJ\xdd\xd0D\x19\x1fY\xe6'\xf5\x1b\x88\xf7\xa4\x01\x12\xe0\xd9*\xd1<\x08(;CC\x0f\xc5\xb9\xdb6@U\xaaV\xbe\x8b\x04\x87\x0dr\xb2B\xc7\xd1\xb0E\x82\xb0\xe3>\xc2\x83\x1b\x99w\x87\x05e\xfd\x1c\xd1\x14s\xf2\xab\x0e\xd3\xbd\xcd\xa2\xd5F\xa7\xbb\xfb8\xef|\xf6g\x8e#\xa2<\x1eR\x8c\xc7\x83\x0c\xa5\x10\xa7[\xc5^NN\xa6\xbe\xc7g\xb3bS\x90\xc2}R\xf7\x97P\xba\xf8f\xc9\x99 \xcb\x87nnP\xf2\xec\xd6\xaf\x0f\\Z3p^c\x16\x9a\xa9\xb6\x8d\xbc\xa5&A\xf2\xd6%,HW4\xfe\xe8\x90P\xc2i\x0d\x14~Z\x9b\xa3\x90SS\x8e.[\x89\xe17R*\x95QS\xafY\xef\xa7B\xa4\xf7\xcd\x0f\xb0\x9e\xb2JQb?\xce/\x0d\x04\xd1U\xba\xf1R\x90\xa4\xb6l\x806\x93\xba\xcf\xd4<\xceG\xe9%\xd4c7kR\x81,\xf4UE\x0d\xa9\xdb\x1c\xee[\xd1K\xab\xcb8\xf3/B%3=\x85F\xc7\xf5\xfe\xca\xe1\xdc\x80\xfa\x1agt]^1\"\x83\x84Hp=\x8a/\xb5\x9d\xde\xbb\x8a\x93\xa9\xa4n\xbc\xa8\xc1#\xa7\xd0\xbd)\xdb!\xa3\xa1\xd0X\xde\x1f\x16\x81\xf2\xfe\xce\x14\xe7Z\x89\x11\xf6Di\xda\xd3\xc5\xddD\x91\x90\x9ao7\xe9z\xc2\x92\xf5\x92e\xbc.\x97\x13lj\xb3\x91k\nEak\x17G\xf6\x1c\xeb\xb3C\xbf\x8f\xf1,K\x97\xfcT\x86Cx\xfb]UV\xcf\xac\x10b\n\x1eG\x82\x05C0\xae\xe5j\xb0\xe3Mti\xa2-\x1b\x90\x88\x99Q\x16\x94\n\x83\x94<\xaa\x1b\xb4,_\xc9Q\xd7?\x97~,\x1d\x0c\x8f\xee}\xd7\x03m~D\xee\xd0\x02\xe23K;M\xbc\xaeZsn:\xf4\xb2\x8e\x84\x9f\xde\x11:\xe1\x94\xd6\x9b\x1b\xf4\x83p\xae\xb1\xb3%\xd3\x93*yA9Y\x08s\x9d{\xba6i\x17\xa7\xd6\xc0\xfcF\x08\xd4?\x96\xaf\xfd\xf2\x04 ;h\xb8\xb7\xe4=\xce\x11\xe7\xcb\xf5 &bv 5(\xf3e\x1dV8(\xbc~E\xd0\x92\xfa,\x87\x9cU\xfbYzd\xb5\x10\x93{\xc3}@\xf3w\x99\x1d~\xc1\xf2\xa1\x996\xb6`\x84u\xf8\x96\xe5\x1d\x90\xdf\x12#\xb0\xca\xcd)\xd4+\x08]Vs\x1b\xc6\xa2\x9aNU\x06\xf9\xe9\x9ca\x87\x0c\xc8\x96\x95\xa1g\xaa\xfbvDd\xafL>\xabG\xcf\xca\xd9B\x04\xb5\xe4\xff\x7f\xf9\x02\xb7q2Mom\xfa\x92\xd2\xe1\xef\x91\x93p93\xd1Y.\xa0\xc4\xb4xZ\xf9N\xf5\xc6h\x89\xfd#\xd2K\x07x\xf0\xcb^\xce\x8a\x8bx\xc9\xd2u\xd1Q\xccI\xd8-\xc4~*N\xb0\xeak\x8c\x87P1@!\xe0\x00d\xa1\xa5\xb7\xc0~_'\x05\xcbn\xa2\xc5=;V\x9f\xd3=\xabR\xa2k}d\xa8\x80\xa9}\xd0*\xffH.\x1f5\xb1\xbe\xd5|\\S\x97fl\x86\xb6\x91\xba\xec=3\xe6k|\x84\xed\xb6\x81\xa4\xb6\xc6\x02\"YX\xe2\x011g\x96d\xe9b\xd1EA\xa4C\xc7g\xbc\xb9\x05\x93?_OQ\xfc\xd0_\xd9\xf8\xc5{['D\x7f\x0f\xd2\x99i\x0e\xc7{\x1b#\x9c\x8f'E|#\xb4\xaf\x91\xfa\xf3[:\xa7/\x08\xe5M\xaaV\xd5\xaeW\xc0\xcbC\x99S\xc9l\x15\x0e\xa1\xda2~+/\xcaz\xe34Q\x93\x17\x97\x12\xe5o\xea\xb6\x87p\xb9\n1\xa4\xd5n\xa0\xf6\xdcr\xc9\xa6\xb1\x08\xce\xd2N\xc2\xea_Ta+*Rh\xd5\xe08X\xb2.za\xb9\xf36\x1c\x82\xf1\x0d9\x08\xbbNm\x18\xf5\xe2\xea|\xe8\x94\xe0lc\xe6\xd9\x11S-Eeb\x9c\xebq\x88\x9a\xf1SY$\xe1\x9d\x82\xe7\xc16\x17\x82q\xbeE\xfa&\xbd\x15 \xc9|\xa7\xfd7\x1a\x11ys\xf6\xd9\xa3\x8d{D9FBj\xa9\xb0\xd3\\#\xca'q\xdcX\xe3*N\xa2\xec\xae\xb9J\x94\xb3\x83\xfd\xe6\x91L\xf2\xdd\xb6\n;-5\x8a\xd9\xe0`\xc1\xda\xea\xec\xb4V\xca\xa2[G9h\x1e\xda\xfd{\xda\\\x95\x1e\xde\xf6\x16\xaf\xefnG6,\x8a\x931\x08\x95B.\xdc \xac\xab'\xb8\"\x81\xed\x0c\xbc\xba\x90\x92S\x11x\xd6r\x11T<\x7f\x1e\x94\x03s\xb6\x0c]p\x17:\xe1\xafz:\x0c\x12\xba\xa0!tBE\xe8\x88\x8e\xd0\x15%\xd5\xa3M\x03k\xb7\xcdd\x11\x15q2h\xed\xbdq\xf7\xaaG\xf5-\xdbl\xeb\xbaq\xbbC'\xd2\x02\x1dh\x9cz\x94\xba\xae\xc1\xe8\xa9mO\x82r\xb1h\x0e\xb2\xa5\x1eN\xb3}I\xb4\xeb\xf4ZD\xa3\xd0R\xd8\xea\x0f\xa5#\xa4n&\x1d\xd1{\xc5\xe5b\xed\x989<\x94\xd1\nE\x120\xdb+\xc4\xfb\x98|J\xd2\xdb\x04\x14\x15\x18\x82\x18\xb6[{\x88V{uJT\x05v(#\xd3Q,W\x07\xb4\xc7F\n\xf6\x99C)/\xdb\xe4\xac\xd3B\x80\x8e\x88\xd1\x08n#\xd7VR\x81\x1d\xcc\xe2\xc5\xe2M\x84z\xba\xf5\xfd{i\xc4j}^\x93\xda\xbcf\xa2\xc7\xbd\x8dzlDX]\x89),\xc0\x0ea\x15\"\xe7\xe4k\x1d\x9b\x92B\xed\x17\xd6[Dy\xf1\x8e\xa1\xa0\xadB#\xf2W\x17i\x81\x92\x92\xfe\xeed\x1e \x9f:\xdd\x1f\xb0\xa6\x0d,\xff,\xcf\xaa\xc8&\xf3\xa5\xa9\xc5\x8bC\x18\xec>QIb\xe0\xe5Kx\x0c\x87\x87p #B\xe3\x9b}\xfef\xb0\x0fG\xb0\xa7^\xed\xf1W{}8\x82}\xf5\xea\x80\xbf\xda\x85#\xd8\x19\xc0\x10vv\x1b\x87\xb4v\x1c\x9fJ\x1bXM\x7f\xa7\x0e\"[\xca\xdf\xc4\x05\x1a-Ov\x9f\xf2\xbd\xec\x0f\x9e\xed\xc2\xf7\x98\x14<\xd0\xac\x99\xeaK\xe1\xfd\xdf\xff\xd7\xff\xe9\xa0\xb2\xe8cTU\x97\x16\x83\x9ak\xd8\xa0\xe9h\xa5\x062p\x0dd\xd08\x10\xa0\x06\xb3k\x0c\x06\x7f\x9b\x1d\xee\xba:\xdc\x95\x1dv&\x9e\x85T\x88>\xa7\x90L\x93$\x12t\xb0\x1f\x1aX\xffB\xf36\xc3x^\xe8\x97YCy\\V}\x1f\xf0\x0f\x03c_\x94\x89\x0d\xeb\xfcVho*\x11\x17\xac\xa9\xa32\xc2\x99\xbe\x9f\xcb\x11\xefh!\xd0\x9a\xf7^N\xaa\x00\xf8z\x95\xd9T8\x8a\x07\xf0\xaf\xb0\xcb7P\xbfI)_\xa5n\xf4K\xf2\xee\xb6#i\x0e\x04\x80\xd7\x91\x93y\x94\x9d\xa4Sv\\\xf8\x9a\x0f\xac\x199Z=\x18b\x9f\x8b\xdd\x8f\x1f\xef>;\x004\xcc\x7fq\x08\x8f\x0f\xf6\x06\xcfj&_\x06.Y\x04m\xdfX\xb8Q_\xa4-\xd6 \xb2{i\xd6\x19Xu\x06\x97!$\x95\xa3\xfa\xce\xe0\xfeF\x1e\x14\xde\x9a3\x19\x103\xd9m\x9f \x1f\xa5c\xe1*4C\xa87\"\xd2\xc2M1\xeb7\xe2G\xda\x81$n?\xa8\x9c\xec\xf5\x8d\xd4r\x11\xe4&\xc7\x0d\xdc\xcb\xb6ksj\x10\xe8\xdb\x01\xc1\xc8\x95h\x84\xcc\x84\xdcbj\xfc\xd66\xdb#\x89T_z\x9b\x1c\xd5\xd6J\xb2\x1a\xd2\xf1\xcc71b\x0fv !\xb0bOY\xa4%j5\x1a\xf1\xa3\xd6\xf47\xed\x87 t\x0c\xbf\x86iI\x0b\xcd\x9a=\x1c\xaa\x91[\xe9\xa8\x11;\xcaA\xf7C\x04\xb0\x81\xa9\xc3\x16lX\xb9\x99\x1d\xc7\xf9\xd0\x0c\x8ci\x03\xf3\xd4\x06\x0b\xada\xf5WQ\x8f\xe7\x06\x87\x10\xd75\xd3\x8a\x91t\x0b\xff\x95\xcdmy\x06\x95\x82\xa1\x01~\\\xb6\xd0t|\xee\xb4\xff\xe3*\xef%\xfab\x96\xac\x99b\xe2\x85\x9c\xe3\xe8\x18t\x03%\xd5Mhs\xbb\xf5\xbd/\xec\x14\xd1\xe5\x9bD\xa3\x04c\x92V\x00\xd71\x89\xf3\xfc\x9c\x10$\x81\xe2/\xeao\xf0:I[\x91:\xd4\xa5\x88\xd0xK\xf5\xc0\xf8\x8f\x1cV\x1d\x9d\xebc\x92RL\xe3]\xc2\x8d\x99\x17\xbd\x81\x01\xae\xec\x93+\x8aAs\x0e\x19\xbc\xe0M(\xd2hW\xba\x91\xd9\x03\"\xbf\x18e\x97\x0e\xfe#E\x0d}\xd9L\x8a\x8e\xbcB_\xaf\xa1@\x8aG_\x08)\xdd\xc8\xce\x0e\x0e\x86\xaf\xde\xce\xae\x10\xb3\x9b\x06\x86\x8c\x956\xb2\xa0\xf3\x18v\x7f\xfd1\xc8\xb60\xf8\xce\xa1\xca\xd2Y\x1f\xd5\x1e=*\xd5y}\xfb\xb8M\x8bQOhly\x9b*\x96\x01\xfb\x8d\xaf\xad\xf3-\xb1\xa9\x8c\x1e\xa0\x01v\xc0O,\xcaMn\x0c\x9a\x05\xef\x0b\xcfijh\xf5|a\xf5\x0d\xa3\xa9\x17\x9a\xa9g};\xbe \x08\xa9C4h\xe4\x85\x1eT@\xa9C\xeb\xde\xc3\xd1\xc4\x98\xfa\xa45 \xc68\xa5\xeeu5\xa3\x9b\x1ei9Nn\xb4\\Pt\xa63LcS\x164\xa9\xd7\x11\x87\x11\x04\xb5\x84*\xf5\xb4 \xb1\x9d\x01\xabfu_Zc\x14Y\x94\xe4\xb34[\ns\x0c\xca3\x06C\x83_\xa8z\x1dl\xa7\xc0d\x9b\x8d^h\xa9*\xe9\x95\xb5\x9a]9*\xb1\x0d\x0f\x9c\xc9\x95[J\xdb\xca\xea\xf2\x983v\x80\xe068\x84\xae\xa2\xc9'\x15\xaaf\xb9^\x14\xf1j\xc1\xa0\x88\x97,w\x86\xbcW\x03\x99\xaf\x93O\xa5\x9bJ9\xba\xea\x8d\xcc\xfaW\x94W\x852ut\x88Y\xf8\xdc\x93M\xbb\xda\xc5\xf3'5Lw\xfc\xd4\x8al\xaeLd\xe1\x05\xa4D\xe0\x8d\xaa+\xdf,\xb6z\xfcZ\x99\x81Ri\x04\x19\x9bj\x88C\x99I\xeakN\xd7\x90`\x14\xf1.\\\xc5\x1c\xf4\x8d5*u3\xafT?/h\xfb%\xc2\x13\x83\xaa\xa6E\xf3h\xcc-RNT3y\xaa\xde\x1d\xea5\xdc\xa9Ff\x8bu>\xd7\x1a\x10\xbf\x0fU\x89\xb2\xbaG\x9b\xedU\xc6J_\xbd\xa8M1J\xf1S\xca\x1d\xa3\x8eg\xe4\xc8\xf4\xd1\x1c\xe9\xbfj\x99\xd3Hnl]\x12\xd7\xfa\xa2p.r-\xc9U\xb5\x7f\x9a\xe7\xb1v\xb1}\xb5\xab\x14\xc2\x88\xd4\xe6\x12j\x99GY\x15\xee\xde\x8a\x14\xa0\x0eL\xeb\xa2\xe3$Z,\xf86\xac\x16y\x9a&\x0cn\xe7,\x81\xdb2\xa9\xd2\xd6!\xf4\xcd\\\x86B\x8bi\x10\xcd\x1au\xdc\xb0\xbb\xbc\x88\x17\x8b\xdaV3\xbb,!C\xb8\x03TB[j\xa5V\x0b\xb5w~,\xd8\x95x\xc3\xe0\xee:\x816']\xa3 \xa5\xdfS\xbd}\xcb\x9d\xac\x1ay}0\xb5\xfd\xd6&)X\x00\xae\xbev\xc4\x98qvk\x8b\xb2t\x97ug\xb3\xa63\x13\x85\x13\xfd\x80\xe1P\xa9\x1dB\xac|\xa3]\xb7\x17!le\x06\"\xd1\xf2Q\xe7#\xc7\xcf\x8c5\xc2\xf3\xe5\x17:q\xbe:Al:\x174\xdf\xaa4\xc2\xb6t;)t\x88\xe25\x82\x02\xb8\x88\"\\cW0\x0c\x93\xc9\xc0\xf4-.\xcb\xd7\x1b\x0dU\x93\x15\x03\\\xf4\xea\xdc\x960!\xb6\xb7A\xdf \x89\x8e\xa9\x1at\xfe\xccd\x14\xed\xd6\x8c-\xd6l\x90Q\xf8\xc2fZ\x10Y\xe1Cn\x12w\x83\xb8\xdc\x8b\xd7\xd6\x98j3\xeb$G_\xcc#\xa9KEiv\x1aM\xe6\xf5\x8aq\x95\xdf~\x92\xb1\x1a.tK\xdf\xab\xf0*\x16D\x93\xa4\xaa\xd2\x8a\xb4\xb4\x1am\x03 \xe7\x069\x8eug\xb4iV\x10M]\x12\x99`\xbe\xc08\x80\xc0F\xc9\xa5U\xf9\xab/\xf3f\xa3\\`\xaeUX\xd34\xc2}\x97\x8b\x84g\x00\x7f\xfb\x86&5\x0c\xd0Sen\x92\xb7\x16\x89\x1d\xb9jq\xfe.z\xe7c\xfa_\xd4b\x14B\x7f\x817w\xdf\x7f/\xd5\x15;\x98\x9b!\xc5\xe8\xd6\xc32\xfc\n^ \xb5\xa7O\xef4\xc7\xba\x0b\xce\xc1\x93\xa7\x81\xcf\x87$\x916\xca\xf3\xf8:\x81!\x16=\xfbV\x9b\xc2\x10\xd2\x10\xb3\xc9\x85\xb0\x0eA\xf5h\xec\xadNv\xbd\xd6\x85\x05\x7f\xb4\xb8 Evg|E{g-B\x90Q\x00I'\xacI\x9a\xcc\xe2\xeb\xb5r\xc3\xea\xd3\xcc\x7f\xe4t\xd2js\xe2\xc2,\xd8C0\xcc\x80\xb5u\x85IT\xda\x8fU\xa7\x93\xb8\xf4Xhw\xb9\x99%Y7\x0f\xdd=\xec\xfa\x90\xab\x91\x88\xd0\x86$\x14\xc3\x8d\x13\xd4\xa35\x0cJ\xa6\xa5.\x0b\x1d!ez\x0d?\x13\xf9\xc1\x05K\x81\x9eZ\xd5*e\xfa\xad\n^\x17\xc9\xd4\xd2\x83\x83 \xc4\x8c\xa8\xa3\xcb\x10\xe2v\xaa\x1aR\x1ap\xce\xf9\xacG\xec\xb2d\xe6\xf9\x8fz\x15${\x05\xf6\xf3\x1c\xd8\xce\xce\xf3@\xb9\xb9z\x91\x07\xdb\xe0oo'A\xa5\x82\xda;0\xe5zM\x8f\xa2\xdc&|o\x96\x88\x9c\xb9XTJ\x1c>o\xb0\x90Q\xeeC\xf0\x02\xd8\xe6\xff\xfcM\xb51K\xa4\xc3\xa68;+\xc7\x81\xe7\xf0\xf5y\x9de\xec\xbcF\x04\xc5G\xf9\xc6\xb1f\xaeD\xf2 \x9eZE`\xa9\x1e\xec\xbd\xc9\x9f\xc8OB3\x01\x95\x03\xfd\x81\xba^\xfe\xfa\xad\xc4I\x88\x1cT&u\x1a\xe9\xeb\x00\xaa\xaa]\xb3\xe2\xec6Q\xd5^\xb1|\x92\xc5\xab\"5\x0c\xa8#\xd7\x07\xef\xa2\xa5\x19\xd3d\xed\xaa{~\xb7\xbcJ\x17y\x87\x93\x89\\cA\x82\xe5\xd1\x9c\xf9\x85\x89\xa7('\xea50\xca@\xe4\xe7\x81bv*\xf1\x9b\xce-G\xae4\x7fpOg\xa1H\xba\x9eQ>\xb6\xfa\xd2\x93M\xa0\xa1\x86\xfd]\x1d\x81\\\xaa\x0e\xcc\xe7\xbe\xfe\x07\x9b\x89n\xe0SJ\xe8\xb4\x9c\xfd]\xbd\x95o\xdc\x15\x8f)\xfe7\xf1\x07\xfb\xe6n\x89iO0\xce\x9e\xde\x17I\xf9\xc1Fd\xc2\xe3\xfb\xa7\xa4v\xa3\xddK\x12\x0c\x19\x92+\\!\xbd#\xc1\x87\xac\xa9\xe5HF\xd9%\xfa8)_\x8a\x08\x05\x12\xf5\x85\xb5$I\x0b\xa0\xf5>\xba1\xfcr\xe8[[R\xdb'B\x10\xd4\xd3\xc8}\xf9\xe2P\xe0![\xefR\x10\xceY\xdbh;\xa1\x05\xcdH\x15!x\xe31\xcb\xdf\xa6\xd35\x9a\x9c\x98K\x89\x8c\x8e.W\x06\"\xde<\xda}v\x81\x88\xbdX9\x17\xae\xdf/\xd6\xd7q\x92\x0f\x1d{\x8be\x99\xab\x08\xb0\xed\xe9z\xc2\xb2|\x08~\x9f\x0b\xbar\xe9\xcd\xe2E\xc1\xb2\xee\xc4\x80\xf5>\xb1\xbbs\xf6_~\xd0c7,\xd3\xc8\xb4\x13\xb4`u_\xb4d\x0bD\xa9mT4d6Q\xb2?z\xb8f\"\x16aw\xb2\xefDg\xd6[\xb2\xec\x9a\xf9N \x19\xc5T\";\xdc\x06X0\xfe\xe1O\x0f\x8d\x08\x9a\x1e\xa3\xf2 N~\x0dtH\xe8pZ\xbf\x06\x805)\xb2.\xc2\xc5B\xe5\xb6k^\x97\x89\xcb\x0f\xf3m%\x94\x0f:\x0b\xe5j2\xa6\\./e\xec\xc9\x95\xaa\x03\xc3{\xfa;\xfb/>\x83\x85uG\xc5\x19\x9b!\x18WS\x0bv\xc3\x16\xc32`|\xadl\xc9\xf2<\xba\xe6Go\xe9\xe6\x8d\xb5\x8c\x1e\xff\xbe\xa2\xb7K\xaf\xd5\xa4\xe1\xb4`\xfb\x97\xfc|\xc5&C(z\x9c\xc98W\xda$\xfc\xf5\x87\x04\xd6\x91\xb28f\xf35\xe8\xc0\xb1\xaaok\xa2\x80\xd8\xa1\xf8b\x15 \xbe\xc4l\xba\xc2G\x87\xf6\xf0\xc9\xae\xa9\xd4\x7fH\xed!Er\x08\xf7\xf8\xff\x15\xf4\x80 \x87\x8e7\xd3\x11\xd2\xe4]q\x8f\xc6\xff\xdc\xab\xfe\xdc\x0f\x02a:\xf3\xf7'_\xb4!\xa3\xeb\xc0\xe8\x80\xc67e\xb41\xc4ZI\xc7\xbd\xa0\x17'S\xf6\xf9l\xe6{\xd2\xe21\x9dA\x84g\xbd\x9f\x07\xa6\x11)\x947\xd1/a\xc7\xe9\xf6\x7fS:q\x1b] \x07ft \xa3:S\x96\xb6\x98\x05\xa1\xf0\xbd\x90\xea\x1e\xf4i\xe7z\xfb\xa1\xab\xc3>\x92\xd8\xed\x0ebB\xadqq3\xe1\x9b\x88\xd0\x90\xd7\xcdh\"\x91i\xdc*'4\xb1\xab\xe5\xef\x970\xc0\x83}\x1b\xbc4\xc3\x18)\x05\x0c!\x1b%\xb0\x0d\x83K\xa3\xea\xae\xac\x8a\xc0\x0b\xc1\xd3kj%X\x80\xbf\x9c\x03\xfc\x1a\x82\x97\xcf\xd3\xf5b\nW\x0c\"\x97Z\xc3O6\xc9$\xe0&~\xbf\xe9\xfdD\x9c\xbdEO\x1c\xfc$\xa1\xd1nu\x1dD}\xb0\xf7TCZ\x071\x0f\x91_\xfcMC\xe6\x1b(\x8dkw\xfa\x14\xf9\x11&@\x9e\xf2s\xeay\"e\xeaj\x11M\x98\x9f\xb0[\xf8\xc0\xaeO?\xaf\xfc$\x04\xef\x9aW\xf7\xbc\x80\xd2\x1b({\xa2\xdf:\x1e.\xa2\xbc@ss\x11Yr\xb1\xc0\x1fy\x19\x16\xd6@+R\xb4\x10\x98\xf6\xd8|\x1d[M\n\xa5\x8b0{U\x0cl\xd0q\xf5\xea\x80l\xd3\xb1\x94k\xae\x8b}JXU\x9a\x16cm\xaa\xa9\xd6\xc1B\x8f:n\x1aB\xd9=oG\xe3\xc8\xbf\xc5$\xe9A\x97\x9d\x90F\x1cs\xb0a\xdb\xe5\x92}\x11\xdd\xa5\xeb\xa2\xdb={)\x88\xfc\x03\xdc\xafS8\xfeP\x1c2}\xbf\xbe\xdb\xef\xbb\xef\xd7\x9fv\x16\xe5\xffW\xe0\xab\xff\xbe\xdb\xca\xc6\x99P\xaahvM\xa3\xa8HaM\xfc\xd0X\xb3& \xb4\xb0\xab\xe6\x98\xa4\xd3\xb8\n\x96hm\xaen\xe7\xa3J/\x90\x86\x90\xf7>\xbe\x7fu|q:~s\xfc\xa7\xb3\x8f\x17-\x8a\x82\xfaQ+\x88\x00\x9e\xa0R\xb9\xa7S\xc2\xc6\xde~|\xfd\xe6\xe2\xb4M\x91\\\xefM\x08\xde\x9b\xf5v\xfe\xd3\xd9\xcf-\x9dX\n\xca^>Oo\x13\x9b\x0e\xa9\xa3b]j\xed\xabO\x8ay\x9c\\\xbb\x1c\xe0\x94\x16\x1f\xdb\x95\x87T\xd5\xc8\xdf\xf8\xd8;\x1ev\x1c\x0e\x19\xe1\xd8\xd8\n\x07 \xf5\xb7g\xafN7\x06\x07\xce\x8d\x06GUi\x99N\x99c\xfa\x18\xea\xdc\x1fy\xbcJ\xee]\xaa\xfb\xab\x84\x0f5\x13\xb1C\xd0\xc6\xd9\xabO#\xfd\xad\x1c\xa5|\xd9\xce\xd7\xcbe\x94\xdd\xe1\x94o\xe7\x91\xc8\x0f\xc4\x7f\xc4\xf99_U\x11\x86}\x9de,)~D<\xd5\xdf\xb8\x98-u\xec<\xdd\xfbUO\x1d\x82\x95\x13de`Z\x97\xe5\x92\xda\xe8T\xa5\x9aS\x07\xf6\xe8Z#\x13\xda\xf2\x86\x04\xb4\xba\xb6&\xc9\x80S\xdd\xb50\xd6\xa5 {\xb4\xd6\x8brw'i\xb6\x8c\x16\xf1_\x19\xba{\x05\xd2\xfe\x1d\xfb\xd6wp\xae\xef\xe0\x00\xcb\xeb\xaf\xf9w 9\xcc\x1a\x0eu\xda\x8d\xa5\xdd\xab.\xa0\xd7SX\xe9\xa6\xb1pT\xff\xe9\x8e\x9e\xd3>kj\xef\x1a\xea\xe5\"0\xa6jo\x1bA\x94\xbaK\x06\xb6\xfc\xdb\x81\x1d\xdfBf\xc3c\xd3\xb8Hk\x18\xd2\x89\x94T\xf2\xcf\xdeAG\xd7/N\xa5\x8c\xa1\xd0jt9\xc0\x14\xf3\xe6d~\x12\x8c\xfa\x97!$\xa3\xc1%zc\xfa&EoTm\xab\xbb!\xd6\x13\xcd\xda\xc2\xa90\x14\xd7\x90#\x16\xfec\xd2\xc8Y\xa4\x0e\xac\xf7\xf8]\xfd\xaf\xce\xb0zb\xd2\x0c\xa9\x96x\x16\xf8^\\\xb0,\xc2\xa5\xb0\xc9\x9b\xe1K\xd9\x06o\xc7\x8a\x9b\xa1\xf4\xfd\xac\x87\x0dk\xc9\xc71{\xdaa\x8d\x9f\xddp\x8a\x8dsI\x8d\xb0\"\xf6\xfa\xab\xe5\x1a=\xb9\x1ce\x97f\xfe\xbdX.b\x93\xa4\x06\xaa\x1f#*Q(\xa1\xc8)NM^\xa5\x1a\x108\xb1[oA\x83 \xedx\xd3\xd9r_\xc4AB?\xe6*\x84\x93\x19oE\x913\xf3=\xbdi4\xc0\xd1R!?\xccb\x02\xa6X\x86Y\x97\xda\xa0\nMr\xb0z\xa6i\xc2\x86b\xdc\x9d\x83^\x878\xb0\x0d\xba\x8f\xa86\x98\x1f;\x08\x03\xeb\xe0\x1e\xd5\x05\xcb\x7f\x05\xfe\xe9\x97VE\xe4xk\xea^\xbe\xdb,Z\x1d+\xfdBC\xee\xe8\x7fH\x85\xc5\xde\xaf\xcb:.Paa\x99\x94\xaf\xcb\xa2\x81Y\x94\xcb\xa2\xbd\xfd\x03Z\x97AD_\xfd\xa7.\xe3\x97\xde\x97$:\xadHw\x81X\x95\xec\x99%\x91,yj\x954i),!c!\x9b\xd9\xb3\xba\x9eH\xb5\xc6\xc0x?\x93\xefwI\x84j\x08S\xfaK\xd8\xb9\xd4\xf4,\x99\xa6g\xd1\xac\x0f\xb3\x10fJ\x06?\x7f\x7fz\xd2M\xefQ\xe6G\xd0\xa2\")\x81\x1b\xa3\xe9\xa2Z\x04-Ru\xa5\x08\xe8\xa3V\n\x01\xc7`>~x\xd3m,\xb2\xb3u\xb6\xd0\xfb\"\xc4\xf6\x86\xce\xfep~\xf6n\xa3\xde\xfe\x92\xa7\xa6\xb4u\x96MY\xc6\xa6\x9a\xee%\xe8\xdc\xff\x87\xd3\xf3\xb37\x7f<}\xb5\xc1\x18P\xf8\xc9X\x9e.n\xd8\xd4\xbb|\xf8\xb1\x8c\xcf?\xfep\xf1\xe1tc\xad\x0c\xad\x8fI\x84\x13\xbd]\x98J\x13\xdab\xde\xa2\xa4Qs=__\x15\x193e>]\xad\x14\x04\x0ehd\xdd\xa1\xf0\xfe\xf8\xc3\xf1\xdb\x87\x9a:\x9f\x9d{\xe6Y\xb4|\x17- \xd0\xc4U\x85\xd7\x84\xd6o]\x15\xdb\x85y\x13\xcc1\x9cg/\xce\xff\xe7\x92\x88 7!tB\xea\xbd\xf0T\xe6\xe7\xcf\xfc$\x9d\"\xd1\xda\x8a\x05g\x0dG\xb0\x16\xaa\x88$Z2\xa17\xeby\xb0\xad\xde\xc6\x89|\xc7?\xde\x11\x05\xaa\x1d\x1f\xf3\xf7\x97_\xc4\xf61\xca\xe9\xea\x02\x8e\xc0\xc3\x19\x8d?/\x17\x1e\x0c\xe5/Z\x7f\xa0i\xf7\x18\xe6\xf3F\xeb$7\xd6dA\x08#\x0f\xa1\xc9\n\x86Wv\x93\x10f\x97A\x08yg\xac9}\xfb\xfe\xe2O\x02w\xc6\xaf\xdf\x9d\xbc\xf9x\xfe\xba\x95\xb0l\x84EoY1O\x89\x1a\x0f\x83Kq2Y\xac\xa7\xect\xb9*\xee\xfe\xc8Ak\xf3-\xc2\x1cx+.y\x1ee\xc2v\x1be\x89\xef\xfd\x1ce \x06\x1el\x02\x08L\xd0\xe4\"I\x0b\xb8f \x17^\x19D\x80c\xfb\x1f\xec\xae\x87\x16d6\n\xe4\x18\x1d\xd7\x81#\x0f\xb3\xe8c\x04@\xce\xd9g/\x84\x9c\xaf\xfd\xba}\xed\xffx\xfc\xe6uE3\xce\x7f\xbd\xe5\x8e\xf3\xb3\xe3\xf3=z\xad5\x05YGH\x04\x84\xfa\x9f0\"\xe7\xb4\xe3\xd1\xe7\xe5\xe2Q\xdc+X^\xf8\xb1\xd8\xde\x1c\x0d\xd6K\x96\x8f\xc5\x96\xa4\xbe\xe4{x\xd2\xe3\x9ca\xc4\xa1\xf3s\x8c\xf3\x8bd\xcc\x10ArB\x18\xb1\x86!6\xdfcl4]c\xb7_R\xd3\xefx\xfb1S\xd6\x8f\x1a\xed\x10m\x95\x8e\x15\x94\x01\x95K\xecV\x18\"\x8e\xb0\x9bh\x11\xf3\xc9\xbd\xe7\xad\xa3\x91\xfb\"\x84\xb4\x835\x18\x87FAR\xe4\xa2\xa2\xc8!(\x0b\x85Ks\xfe\xa4\xd1\x93\x1d\x15\xa5}\x7f\x08\x93\xfco\xdc%\xdavx(\x1cH\xdaq`t\xd9\x15\x07\xbaX\x03\x81\xc5F\xd6\xacCj\xdd\x12\xb0\xdf\x18\xf0\xe7\xa7\x17\x9c\x9b{\x7f\xf6\xee\xfc\xc1\xb8\xb8\xcc\x8c\x07\x035\x1e\xce.\xc3k\x9d\xde\xd2A\xc8\xd6\x0ef\xc3_\xa3\x13\x1d\xc2\x07\x8e\xc0\xd0\xea\xdb\xa0\x15\xd6\xd2dP,\x8e\xfcC\xd1V/!\xcf\xc6\xd2\x90_T\x92? \x9e\xaa\x88\x8au\xce\x19\x16U\xb5zS_\x9bP\x96g,_\xa5I\x8eY\x02\xb2\xa07g\xd1\x94\xa19\xd2\xba\xfc\xfb\xcb\x17K?\xc0\x17c\x824\\\xe3}\xb1\x1d\x8e*i\x08\x91\x8b\xdd_;(\xe4B\xc1\xae\xf7\xc3\"\xbd\x12\xda\x97iTDzPm\xbb\x8e?A\x8a\xed\x1aD\x08^\xc1>\x17\x9cr\x88\xd6\xf8\x112\xe9\x88\x95\xff\xf1\xf1\xf4\xbc\xedJ\x7f\x03\xa4\xfc\xaf\xcd\x902\xd6\x90\xb2U\xec\xf8\xaf5\xcb\x0b9\xe9\xd8\x05\xf9.\xa2\x05\x9f\xf9\xdb\x8f\x17\xc7\x17\xa7\xaf\xfe\x91 \xb0\\\x17Q\xc1\xa6\x1f\x1e\x0e\x10\x929<{\x7f\xfa\xe1\xf8\xe2\xf5\xd9\xbb\xf1\xdb\xd3\x8bc~B||0:\xd5$r9\xa4\"\x01\x92O\xec\x8e\x96\xa6F\xad,\x85\x83[\xeaz\x1eYN\xa0\xe5J(V\x0e\xb5\x0e\xae\xcf\xf3 \x080{dY\xbd\xd2\x0el\xfcI\xab\x90\x8d\x9f\x1eUX\xe2\xaa\xb7\xe0\x87ll\x9f\xaci\xd0M\x1b$\x98\x87\x87>\xc5\x9a\xb0\xa3qOL\xd9\x82I&C'\x87Y\x08\xe9e;\xde\xab\xc9<\xe8\xd6\x7f\x98\xb9\x94{\xbb\xe3T8-;?\xf9\xe9\xf4\xed\x83\xadI>\x993\xeat\xfe&*\x96\xf2s,\xd6\x11\xd5\x13\xfdTT,\x13\xca\x87/_\xb0\x9e\xbc\xb6\x1dR\x1fxc \x83s\xf1\xe6\xb2\x9e\x97$(\x7fv\xbe\xbf\xdd\xa3c\x99=\xdb'4\xdd\xf2\xb67_\xb1I\xccr\xaf\x8b\x1d\x00\xb9\x16!\xb2d\x99\xcf\xd0_?/\xb2\xf5\xa4H3\x12zZ*\xa8HK\x0f\x7fx\x08~\x82mD\x01\xdf\xdb\x98\xdbh\x08\xa9n+\xd0\xe9*\xe1\xa6\x16\x87\x15\xe7\xb8\xff\x8cV\xd8\xef\x99 \x91\x86\x85\xfb\x94\xce>\xf1\x07V\x948\xa9\xb1\xa7\x14\xf6\x93\xde*K',78\xdbU\xc9\xfd\x94\x89\xf6k\xe5S,\xafg\xc0\xaf\xd7\x98c\x8d\xb7\x82\x9f<\x99GI\xc2\x0c\x85\xdb\x0d\xd6x\x15\xe7\xab\xa80\xc35/1\x1di\xed\xd55\x11\x80\xee\xae\xed*\xf7F\xa67\xd8\xb6\xc3_\x83\xd4\xea\\\x1bWJ>s\xe6\xbeW\x97Z\xd7V(R\xf5\x08\xba\x82\x15B(|B\x92\xa9\xbd1\xa6s\xd5h\\\xc1\x1fu\xe1%x\xcez[\xd5\x88V|\xe7O1\xc6\xc1\xaa\xb1\xc9*G\xba\x8c\xd6\xcaQ{\xf0\x9c2lJ\xaa\xe8\xaa\x95\x11S\xb2\xbd\xed\xb8g\xbb\x1emo/[o\xda\xd7\x8e$\x1a\xf2\x06\xe8\xc7j\xe0\xa1\x15\xae:\x84\xcc_\x06!,\xbf\xd3^5\xc7\x86\xd7VG\xff\xc8\x93[\x00\x87\x90\xf8\xcf\xf6\x02\x7f\x16\xe0\xb5l#\xec\xd0\x94\xe1\"\x9e|\xf2#\xff\x0e\xe3\x94\x0ct\xfe\x0f\x86p\x83\xc6`\xbd$\xbdmm\x0dk9\x1b\xc2\xd0\xc2\xb12\x19N\xd8-\xcc\x83\x1e'{\xbb\xfct\xe2\x7f\x0czi\"\x8578\x84\xab\x10\xbb\x8b\xfc\xb8\xb7J\xf3B\xeeB$5\x03d>&\xbdh:=\xbdaI\xf1&\xce\x0b\x96\xb0\x0c\\\x01\x0b\xb5\x06P\xdb=\xe9\xc5K\xde\xe39\x86S\xcdU\xd0c\xf7\xd4&\xfa\x18|tt\xe3\x07\xca\xef\xea\xa6\x87\xf6\x88t\xa7\xa1\xab\x10\xb6\xc4\xc8y_^\x9ad,\x9a\xde\xa1\x1d\xc2d\x1e%\xd7\xcc\x838\x81\x85\xef\x89 \xaf\x1e_>\xf7\x88\xf2^\xb4Z\xb1dz2\x8f\x17S_\xfb*\xe8\xd9-\xb7\xe1p\xde\xcb\xd82\xbda\xa21\x91 \xa7\xdc\xa7\x06\xce\xd6\x16\xb5a|\xac\xb8\x88\x97,]\x17\x1aF\x84\xd0\xaf\x1f\xb8\xfa\xd1g}?\x84\x95q\x06pZ=\x84i\xd5\x04\xfe\xf5\xedq2\x1bM\xebh:\xea\x08\xc2\xcd\x9f\x9b!\xb0v\xb2\xd9\x18\xc9\xb5\xb5kBQ\x02\xb2\xeb\xb6\x8e[\xa0\xb7)\xb3\xb3\xfb\x94dvv\xfb\x8f\xef\xc3\xe2`\xb2\x10\xa4\x95\xa9_\x88|\x1b:\x9b#\xed\xedJK\x08[\xf1\x82\x91\xa2{3;\xa5\x98\xf8\x82\xf3\xc2\xa8\x05\xe3b\x92\xb4\xa4\xe5\xec\xc32\xce7\x8cs[\x8fu\xffd\xef[\x02\xda\x17\xba\xe5\xc0!l\xb9\xcc\xb9w\xfb\xbf\xa4Q\x8e>\x1eY\xa7\x8b\xa5d+\xf3\"\x9c%\x1d\xa1\xc5]\xa8\x8f\x89\xe1\xd40j\x8aw2\x9a\x13\xd8\xe3\x81\xccOC\x88\\\xb5\xa112\x85zn\xa4\xb3}1J/\xfd\x88\xd0\x10\x98\x8f\xd0\x0e\xa2\x8a\xc2Y\xb7=\x8a\xb3ztF\x9e\x0c$\xa3\x1e\xdb\xe0K=x\xeb\xb7\xeeM\xd3\xa4\xda7%`\xd5N\xf0\xf3\x00c\xfav\xd0\x80\xab'\xf3=\xce\x15\xcb\xc8\x1b\x89\x88\xd7 \xd2'\\\xb6exq\x918\xc2^\nM\xc0\xb7R_\x84\xc9\x8e\xe5\xff\x98\x0d\x87\x8b\xdb\x9b\xa1Q5\xe9\xc1>}\xca>1\xe5j\xa9R\xd83St\xca\xfc\x15\xe6\xa1,\xc4\xf0\xa7\xfd.g2\xba\x1f\xe4\xd4\xc9\xbc\x15\xa1d\xa9TP\xf5\x8dX\nb\\\x84\xdf\x19\x84(\xb2\xa3\xa7|\x8aQ\xe2\x82@Jb\xa1\x90\xdaa\x07\x06!J\xe9\xecy\x99o\x12\xc5\xbe\xed\xed\x05\xbc\x80\xc9s\xd7\x81\xc2%\xa4\xb5_\x8c\x16\x97\x0e\x82\xcc\x05w\xc2y\x81O\x01{\x995I\xc7\\\xa6_\x8d\xa6\x0e\xe9XO\xaf\xcd\xbb\xe1\xc2C\xee\xdf\x840\x0da\xc5\x99{QA\x98r\xceQ\x80\xb9\xe1\x9c\xfc\x0d\x0c!\xe6c\xc6@\x17\xfc\xcd\xe8\x92\x9f\xceT\xf8!\xebM\xe6\xaf\xb0\x83y \x00\xc6\x87\xf7\x9d\xfb\x13\xb5>\xf7E\xc2\xbd\xfdN\xbc\x1bq\x14{\xe31\x9a\xb9\x8e\xc7b\xaf\xe0\x9e\xe0\x8c\x88\xfc\xc0\x86z{V\x9cZ\x12\x19\xa2\\Z\xa1\x12V1Zb\x1a\xc3\xbf\x01\x95\xd7\xa3\x82\x0b\xf7\x1b\x9a\xb5k\xf4\xc9\xe4\xc5\xd261\xab9\x10\x16C\x95\x9c0\xc4\x0d\xc1\xab\x9b\xe2\xb6\xc5\x8f\xc10\x94\\&E\xb3\x07B\x06p\x9b\xf7\x7f\xf5\x1d\x8b\x9dv\x81\xc7/lN\x1cBQ7\xa1\xc8Q\x17\xcd>\xb3\xc9\xba`\xf2N\x0b_ \xfb\x81?\xe4ir\xbeb\x13\xed\x95\xfc\xe9\nJ\x11\xfb\x89\xbfO\x862\xe7%\x83=\x87\xa3<\x91\xecX\xad\xc5/c\x0b\\\x9bL\xa3\x0cU\xa9\xec\xf3\x15\x9bH\x07\x05R\x1aj\xc4VfX\xf6TL{(L\xd1rv\x91rx\xcbz\x89^\xc55\xa1\x90Z\xa9_c655\xa1\xa9\x1b\x0c+\xc71\x14 #\xcc\xe5\x04\x11\xbc\x80\xe29D\xdb\xdb\x01\xc4\xa3\xe8\xb2\x96&$\"\x0e\x08\x13d1\x82*N\x14\x06\x7f\xa8_\xcf\x9dD\x939\xa3\\\x8c\x94\xd4\x11\x8f\xfa\x0e\x07\xa5\xdc\x0eP\xbf\x0e\xab;\xce\x80\xb2K\xe0\x8f_\x8f\xb9I\xe5\xacq\xf2\xe9F\x7f9\x1a{\x05\xbd\x7f\xc9\xd8\x8c\xa3<\xdeb\xf3\xedh\xcc\xd2W\xa3\n\x81]n\xc2\x80\x87\xd4F\x7fh\\!\xcd\xb8\x94\x0c\xda[\xa4\xd7\xb2k\xe1\xb6\xea\x9b\x1a\xdc\xfah-J\xb5\xc1h\xcb\xb0\x8c\xf7\x1f/\xc3`\xc7\xd2\xae\xd0\x8aRcP\x95\xbf?]\xef\xa2c\xb8\xd1c\xbd\x9d\xa4\xcbU\x9a`VJ\x0b\x04e\x94\xb6\xf3\"\xcd\x1c\xd6\x01Z\xa0b\xbb\x02\xde\xaa\xd5z\xb1\xeb\x08\xab\xa6\x8c%S\x96\xd9\xa5\xb9\x0c\x1c\xfe\x89\xbd\x8dV+6=I\x93\"\x8a\x13\xaa\xea\xa2\xdc\xbeK\xb6L\xe3\xbf\xb2\xc0\x8fDvr\x91>:F\x1e\xdcJ\xa2\xe5T\x0bfiZ\xbcN\xf8\xda8\x9d\xd9\xf4\x99\x0d\x810\x1c\xe7\x0f1\xf8\xa19\xd0\xdc\x1e\xe8\x02\xc7J7)\xa05\x84\xb5\xfdYd\xdd\x88\x80\xc5\xcb\xba=\xd5Z/\x9a6r\xf6\x02\x0d\xd9(\xc2\xd9\xe2\xf4\x05\xbf\xa8\xe3\x17Tk\xeft\xfe\x02d\xe58\xf3\xfe\x94bf\xd0=\xea7\xb2\xf1uTD\xfa'p\x04\xff$0\xb0\x81y\xbb\xe6\xcc\xdbcj\xbe\xd7$[\x17\xcb\x12\xda\xe5\x0cK\xac\xd6\xd6\xaa5\xca\x01\x11?1\x0b\x16\xb2\xc0\xead\"\x0b\xac>f\xb2\xe0\xc0,X\xe1\xd2\x99\x97\xe4S\xac\xbe2\xde\xcee#O\x9eXC\xbd\x11\xe2\xffc\xf3\xfa|)?y\xfa\xf8\x19\xcd\xe6^\xff\xbal._W+\x1d\xb4C\xe5k\x13\x81\x06\xa3l \x8eR\xa7\"Y=\x9a&\xb9\xad*\xd4\xaf\x18\xf2\x8aM\x12\x1a\xefL\xda\xe1L\xcc\x02?\xeb\x952\xb3\x8a\xe8\xbf\xae\x19\x9594\xe7n\x0d)\x90:\x04\xfd\xd1F:\xab\x19\x06%r\x98\x8b\xda\xdbQ\xfb\xdc?\xb1\xbb!xb\x1f{\xf4A\xa0?\x9224r\xec\xd4#\x07>-\xf5\xd7\"\xee\xc7\xa9Hl\xcf\xe9\x91a\xbf\xf67\xf4u\x0fdn\xf3U\x96\xaer\xf9\xf7$M\n\xf6\xb9h\x81#\xb4\xc2\xf2\xebe\x10\x12\xe1\xd8\xcbb\x7f\xd5+\x89\x9dK9\x8d\x98KC-\x95\x9c\xc2\x0d\x1fp\xc2&\x85\x16\xdb\xa4-\x80\xeb\x8dL\x8eo\x9a_\x7fE31\xe6S\xd1'\xd5\xa3PD?\xbe\x96\xd1\ns\xd0_\xa4\xfc\x04@\xdb\xe7v\xa9\xc1h\xb0}\x9d\xf1\xde\x9a\xba\xc7\xd4\x1f\xf7\x9a|\x0d\xfc\xa4\x8c\xf1D\x146d\xf6Ij7\xee\x0d\xd4d#J\xb2\x01\x15\xf9\xadP\x107t\x1f\x96rl@5\xeeC1Z\xa8\xc5M\xef}\x96\xde\xc4\x9c\x97\xef\xd0\x18 j\xa6Y+j\x82\xe0\xb16\xa3Qn\xf2t_:\xdf@\x97Zh\xd2W\xb1\x81`h$\x0ci\xb4\xf4j\x8c(]r\xc6)\xe7\x8c\x1b=\xa7by\xd9JS&\xd2\xba'\x1670\xc9(\xbd\x0c!\xc3\x7f\x19\x99\x88\xa6i6c\xbc\xacp\xb0\x9f\xc44\x85\xcdc\x830\xde,\xb1C\x9d0\xb8x\x1c\xf58(\x82\x9b|\xeb\xa4\xff>\x14C\xa4\xac\xc5\xda8\xb6\xf6\x93\xe2\x8a\x03'\x12Z~\x8c\xb2G\xa3^\x13=\xb5\xa9J\xb1)U\x11\x14e\xa2\x90\xfb\xe7x\xb1\xf8\xc0&,\xbeA\xa1%o 2&\x81id%\xf9\xa3M\xb8\xda\xbd\x9b\xd2\xd4\xafM\xa4\xa7#y\xdc\x944\xaa\xcb\x06\x0e\xd8e\x1d7\x14 \x8a\xa4\xd3\x96\xa6\xee\x8b8A\x18\xb9n\xdc\xf4\xa7@a#\x0e\xc1\xcb\xd2\xb4p\xdd\\\xa8\xa7\x9d\xa5\xdb\xd8\xec\xc1A\xfa\x1a\xc8\xde\xd7P\x97B\xc9\xedn\xc5c\x03\x8db\xa9\xaaY\x08\xde\xf1j\xe55\xcc}\xde\xabl/x\x7f\xbek\xe6q\x88\xb7\xa2\x81\xc5\xcc\xb4\x1aUTJ\xb3$Z\x12z\x8e\x16\x90{\xd3\xf8\xc6\x92\xe5\xd5\x93\x17w\x0b\xd6\x14\x14i\x15M\xa7\xe8B\xee\x0d\xd8\xb2\x01k'\xe9\"\xcd\x86\xe0\xfd\xff\xa2(r\xe4\xbd\xb3W0\x04\xef\xff\xf9\xdf\xff\xb7\xff\x03<\xf7\xf9\xea\xc5\x9e\x00\\\x08\xdeI\xe9\xa8.\xd7\x96/\x0c\xe6\xbf>\x84\x02\x8e\xc0\xe38\x0f%\xb5\xf0`\xc8\x17\xd1\x0b!g\x0c\x8a9+\xbd\xe3=+\xe4w}b\xb7\xad\xca(\xb5&\xdd\x18f\xb9B[>\xab\xd8o!oW\xdcx\x9c\x7f`\xd1\xa4h\x17.\x9a\x0dI\xf5\xa7\xf3\xd1\xa5\x9e\xf2\x08k\xa7:\xd0\xc2\xdf&N\xfe6i<\xad\x92{\xf0\xb7\xd0*\xd5\xd1'RB\x9eHI+\x9f\x0b\xdd\x89\xb9z6%\xea\xea\xa9\xae\x02:\x9cI\xea\xe9 \xe1&n\x1a\xdcI\xc2\xc5\x1bwz\xda\xd2\xbd\xa8Dl\x01\xa3\x06\x0d\xa8Y\xb5\xed\xde\x1dZM\xfdJ\x06\x95\x91\xb7\x83Yy;\x88\x96\xa9\xe2v0\x85\x17\xc0\x9eC\xba\xbd\x1d \xd7Y\xbb\x1dt1\xb0\xa0\xdf.\xe9h\x9b9 \xd7\xc9TP\xb6XOG\xc5\x87\xea\"\x92\xe36\x89G:d;VL=\xc27\xbb\xc0c\xc6\x8d\x1f\x8e\x99Q\xd4\xddPgW0\xb4\x94\xc6\xf6\x19\x9d\x86\x10\x9b@\x8ag\xe0\x97\xc6[U\xe2\xbf4\x90A+\x13v\x0b\x17w+v*\x12x\xbdcl\n\x11\x88\x0fB(R\x981\x0e\xfd\xa8:#z\xf0s\x94\xc3u|\xc3\x12\x880\xd5\x8d\xaf\x99\x04\xa5\xfcPY'BM>\xe5\xe7\x89q\xe1\x9aZA08\xd6 \xa3-3*\x84\\U\xce\x8b\xc5\xbc]\xe4(\xb0\x1b\xfe\xf3N\xb1\x9f>\xfa\x14\xe0\xcf[?\xc2\x1f\xb7\x82[\xf3\x99\x1f\xf4\x16\xe9\xb5\x0c\xeeR\x9d\x86\xb38\x99j\xc7\x1e\xe70$\xb3Q\x0e\xa0\xd3%\xa1\xdb|_Nx\x08\x89\xff\xe4\x89i\xc8W\xe9\x8c\xeb\x97\x03]\xba\xa4\xaf'\xdc\x03\x99G9^\xb3\x0bG\x89w\xe9\x94\xe5C\x18\xddX\x12\xc2:\x04\xe1V\xa4\x90\xd5w\x10T4\xdb\x16\xb1\x93\x1c'\x838\x94\xd7x\n$x\np\xc4Jz\xf2,\x80\xa1\x8a_\x87\xb1\x89\x9d:\xee\x05\xca\x11\x92\xfd\xec)\xa4\xc6hl[\xfd\xc6\x03\xd0\x81\x8e\x8dwR4,\x0b\xa1U\xd1\x1b4\xb8@\xd26[g\xd0\x84\x1b\xec7\xf1\\\xf5Q\xcbKC\x93\xceO\xd1b\x8cz[\xc4K\xa2\xc4SE;\x8bt\x12-<\xbb\x06[F\xf1\xc2~\xbdL\x93bn\xbfN\xd6\xcb+F\x8ck\x15\xe5\xf9m\x9aM\xed\x92\x8c\xef\x07\xfbu\xce\xa2lBtP0b0\x9c\xef'\xde\x923^gD\x03\xb7\x8c}\xaak`\xdb\x94tN.W\\N*v\xb6\xfe\xab\xce\xb5\x92\xac\xae\xce\xe5\x16p\x04[[\xd9Hp\xce\x98b\x8e\xcf4\xcaX$+T\xe3}p\xfc\x12\xa9\x03\xcf'\\\x8c|\xc3f\xc5\xd0\x0c\xe1U\xabq\x91\xae\xac\n\x19\x9be,\x9f\x8b\n\xb8m\xf3\xb6}\x98\xf5\xac~Q:\xf8\x1c\x9aE\x17)\xfaK\xf7\xeejm\xb4\xee\xc3\xec\xdb\xe1\xe4R\x83\xfa\x83\xc7\xa6u\xbatM\xb7B\xc1E]\xd4W\x9c\x82\xb7\x86\xd6f\xbdY\x9c\xe5\x05\xaa\xf4\xddZ\x1b\x94\x9f\x12\x112\x06\xd3ic}\xferO\x8aS\x1cC/\xeeV\xd5\x89s\x93\xc6S_\xbc\xc7\xa5\x83\xc3v\x0f\x15@`k\xeaX\x8bU\xd2V\xc5T\xfbvW\xf9r\xae\xba\x15\x82{\"a]918\xe2\xc4]\x04\xd3AMy}j\x15\xde\x04F0\xa6o\xa0\xdc\xdd(\x07}\x1f\xcbz\xb3t\xb2\xce\xcds\x86v^~\xf0\xdd\x1f%\xf1\x12c\xdb\xbf.d\x90\xfb\x93t\x9d\x104\xf6*\xcd\xa6,{\xbd\x8c\xae\xd9\xd9\xba@\x06\xbf\xa1\xca\xf9\"\x9e\x10$Y\xab\xf1s<\xa5\x8e\x95\xab\xf4\xf3\x8f\x0b\xf6\xd9Y\xf0\xfb,]\xaf\xc8\xd2\xb3l\x1a'\xd1\xc2Qa\x92.\xd6K\xd7\xdcDan\x17\xcc\xc8\xa1\xcc\xc48n\xe9\x92\xf7i\x1e\x17\xf1\x0d1{^z>\xcf\xe2\xe4\x13]\xf6\x8e]G\xee/1\\\xb1]t\x9d\xc5\xd3\x0f\xd4Xd\xc1iB\x1c\xc5\xb2\xec|\x15%\xee\xc2\"\xca\x08X\xf1\xd2\x13\x84WS\x99\xb3WQ\xec\xeeX\x96\xd3}\xcf\xd2\xa4\xf8\x99\xc5\xd7s\xa2l\x11'\xecd\x11-\x89\xb5\xe7E?9>KW\xd1$.\xee\x88\x02\x1a\xdci\xb6\x9aG\x14\xaa\x14\xd1\xd5y\xfcWb\xedn\xe3izK|\xf0\xd7\xd7\xc9\x94\xc2\xae\xbf\xa6\xe9\x92\x98z\xbcX\x9c\xb9\xc6:[\xa4\xe9\xd4Y\xca\xb9\xd9\x86\xc2,\xfd\xc4^E\xf9<\xca\xb2\xa8\xb1B:\x9b\x91\xdb^\xd4x\x1b\x17,[\xc4\xcb\xd8Y\xa3e\x0c%A(\xcb\xbe\xda\x17p#\xefgv\xf5).\xbc\x10\xbce\xce\xff}\x9b\xfe\x95\xffw\xe6i\x9a\x1e\xa9\x89\xf9\xc4\xeer?\xeb\xe2\xee\x9d\xdauh\xa7\xe3Q\xeba\x0e\x9a:\x11\x13WL\xe6Qv\\\xf8\xfd\xa0W\xa4\x1f\xb90+5\x99\xbc,__ \xc3\x0b\x7f@\xd9\xa4\xa3!\xe8%gf\xf4\xd0\x97X\xa6\xa98\x8d{\xca\xd8\xa2\xf1q\xfe1\x89\x8b\x05\xcb\xf3w\x92i7\xdcs\xf3y\x9a\x15\xf3(\x99*\xad\xd5\xe9\xe7U\x94\xe4\"'\xa3=\xc5\xabh\xf2\xe9:K\xd7|\x8f\xd3\x00\xa8j\x1c\x17E4\x99/\x19Ev\xed\xda'\xb4\xaccW\xc4#\xa4KEA\x8d\xd3\xe4\x7fnR\xf9O]*\x7f`+\x16\x15C*\x8d)\xa1:\xb1;i\x87\xdd\xfd\xc7\xdeiD\x92\xc29F\x81\xa5\x8eC\xba^\xe9\\\x98\xc76W*W\xb6\xfb\xd0~H\x8b\x82\x93\xc2\xa6\x01\x8a:\x9d\x86)\xaav\x1a\xac\xa8z\x8f!\x0b\xf1\xa9i\xc0\xbcF\xa7\xe1\xf2\x8a\x9d\x06\xcb+\xdec\xa8\x1f\xc4y\xd84V\xac\xd2i\xb0X\xb3\xd3h\xb1\xe6=\x86\x8bbg\xd3`/\xd2U\xa7\xa1^\xa4\xabN\x03\xbdHW\x1b\x0d\x93\xf3&\xae\x11\xf2\xb2\x96Ny\x95?FY\x1c5\x11\xca&\xfeG\xafC3\"\xeaib\x87\xd4\xc3[\xf91Z\xc6\x8b\xbb\xae\xf3O\xd7\x05o\xd8\x05\x02Y\xdc\xb2D\xb2V\x0b\xacd\xad\x86\xe5\xf9\x8e\xfe\xe5P\x15\xc4\xf8\xf6\x9b\x84\xaa\xc4\x7fj\x06\xe3K\x85a\xd0`\x1f\xe3\x02\xee\x89\xf0\x80O\xfb\x96\x83\xbc4 \xc2rv\x0b\x1f\xd8\xf5\xe9\xe7\x95\xef\xfd\xe7\xc8\x83m\xc8z\xc7\x17\x17\x1f^\xff\xf0\xf1\xe2t\xfc\xee\xf8\xed\xe9\xf8\xfc\xe2\xf8\xc3\xc5\xf8\xe4\xa7\xe3\x0f\xb0\x0d\xde%]\xa9,\xfe\xdd\xbfXi\xcd\"\"\x1e\xfbZ\x06\x80(_\x96w\xa5\xb9\xf3\xaetkkmG`\xc7\x00\x81\x11\xf1\x9e\xcb\xfd2\xfb\x1a\x1a\xb4\xf9\xeb\x11\xbb\xc4\xb0\xaf\xa8\xdd\x85!\xf8\x91\xf6\xa6\x16H\x9bNs\xdc\xc5\x9e\x10\xf3\x84\xcc\xa3\xfc\x874]\xb0(\x11:\x80\xef\xbf\x87\xad\xaa\xe8\xddz\xc9\xb2xR\x16\xc5\xf9\xbb\xe8\x1dg\xfeT\x05%\xce\x99\x15\x0bx\x01\x83\xb2\xd6\xd9\x0d\xcb\x16i4eS\xab\xaf\x01\xa9\xc0\x03\x89<\x13[\x1f\x87V\xcbo\xa3\xec\xd3z\xf5c\x9a\xbd~\xd5\xaaJ\x13\xd3\xcez\xaf_\x8d\xeb\x88\xc0q\xe0\x90cHj\x85\xb4\xae#@\xce\x8a\xe3\xa2\xc8\xe2\xabu\xc1\xac>\x1d\x8c.f\x9b(\xbf\xf2\x89\xee\x89\xe0\xefM3\xfd\x90\xa6m\xd7\x95\xe5T?\x9c\x9d]\xd8\x93\xfd\xb7C\xcf\xfb\xb7\x0d\xe6i\xf4HB\xd7\x9a&\xd1uXK\xdcK\xf4k\xccT\xed\x8c\x0ePV\xea?\xbc\xfc\xe6\x1f\xc5,'\xf6\xd7Q\xad\xc2\x08U\xc8\xb4Q\x15j ]\x82\x0bF\x8b\x14.\x1f\xa5~\xd0\xf3huc\xe9\x07\xd6\x8b\x14tl\xb3\x0e\xf5\x94\xf6\xff\xe6n\xfc\xf2E\xbcl\xd8@\xfdRE\x1e\xab5\x86!\xfe\xad\x90\xbb\x93\xbe\xb2\xc4\x9d8?Y\xe7E\xba\xac\x16\x15\x01X\x91\x0d\xbc\xc1\x1a\xa2\xf8V\xf5 \x01\xba\xc1*\x1b\xbdtXl9\xc4\\RL\x15{\xa7\xc00#\xc6`<\xaf\x05\xd1\x11\x80ndk\x880\x92\xb6\xe0[a\xe1[\xd1\x8co\xa4\x1f!h8\x94\xf60cW\x9c&T\xbeD\xf5\xf0\xa6\xe2@hw]\x06~l\x913GgP\"x\x8a\xee\xbd\xba\x02\\\x98}\x89\xabb\x13pb\xb9\xe8\xeeT\x9b|\x02y\xf11/\xed>\xd0$Q\x81\xe8\x8eo\x8cK:@\xabzZ\x06\x0e\x9a\xbdQZ\xdfq4\x93\xa4?k\xfb\xa3|\x15M\x1c{\xb5\xfa\xea\xc8\xa0~\xef\xce\xfd\xb5\xc8\xa2\x877\xbc\xe8.O\xed\xe8\xb4\xd3\x8eN\xac\xf6}l:P\xa9\x8c\x8c\xf7\xd8\xa5s\xc4\x8e+|\x9b0\x08Hc\xd0}\x82\x14\x14\x06^Lz\xdaV\xd2(\x86\xdcA\x1d\xf7\xa0\x8b\x0886a.\xf3\x00\xf8\x8a& P\x89\x84\x15\xfaXmH\x15%\xa4\x1a\xc7V\xc7\xf4Mh\x145\x8c\xee==\xf0\xc9\xb71%r\x9e|\xa5\x85\x7fgJ\x94\x06\x9c\xad\nU\xf0\xe3\x06r\x84\x1d\xdb\x04\xc2\xbd\xd9\xab\xa3U' \xee\xddj\x1f\xabG\xc0F1\xb2\xd3\x03\x0c\xfb\x8b\x7f{\x0e\x9fc1J{a\x8d\x93\x9d8d\xc5\x97\xf4>\x12\x17\xe2m\xc8R\xfer\xc8f\"9\xe77\xcaf\x03*lq\xe2\xef\x0e\x1c\x11\xc6\xcdp\xeb2\xcf\x97\xd9\xca\xba\x92\xdc\xb6\x06\xa4\x91lnq\xb1x\xd7\x8bV\xccY\x9a\xa25\xcd\xebW\x95\x0dv\xcd\xdci\xc5\x92i\x9c\\\x7fD\xa3\"\n]\xda\xbe\xc1\xe5\xb7\xb1\xc6\xf0.\x10w\xed\xf2\xcaU\x06C \xf1\x04\xc3\x9aW\xf6B\x94\xfdL\xc5\xb1|\xff=(\x03>\x89\x98>\xeb-\xd7\x8b\"^-\xa8\xb4P\x15\x1e8\xc5=\x82X\xde\x94\xd9\xd8\"\xcc\x81B\x1b(\xf5\xd2UaGEu\xde\xba\xa3\xbbA&\xc4d\xdd\xe5 \xa9\xbb\x1cd#AhG\xe9\xe5\xff\xcb\xde\xbbv\xc7\x8d\x1b\x0d\xc2\xdf\xf3+J\xcc\xacCF4\xad\x8b\xc7c\xb7G\xd1\xeb\xb1\xe5\x8d\xb3\xe3\xcbZ\x9e\xe4\xeci+Z\xaa\x1b\xdd\xcd\x11\x9bdH\xb6de\xac\xe7\xb7\xbf\x07\x85\x0bA\x12 \xc0\xb6<\x93d\x1f|\xb0\xd5$\x88K\xa1P\xa8*\xd4\xe5\xac\x93\xc0\xa4\xd5\x92\xd2B\xdcn\xc1L\x89X\xd0\xcd\x0e\xb1\x8b\xa7\xf9\x197\xa4\xd2\x93\x02\xacPaLU2\xc7[\xf1\x0d\x9e\"\xed\xe7Gj\x82xQ:\x1a\x13\x137\"A\xc3\xa6\xde\x02O{r\xda\x01R\x907\xb3@&\xa0l\xdb!t\x87\xba\xa3#\xac\xb1\xe2k\xe2\xc7\xd3\xbd\xee\x17F\xcc\x12\x7f\xe9\x05\xef%\xa9\xff\x9cW5\x06Mq8\x9f\x84<\xc1b\x19\x99\xecA\xf3\x8c\xd9\x01Nz\xd6\x8c\xe2\x8d~\xb3q_xv\xb8\xf4\x97k\xf0\xc8]\xe7\x9b\xac\xfe\x1b\xeb\xcba\"\xe2\xa0U\xf6\xb6\x8e\xdd\xed\x8c\xbf\x07>QZ$\xc8\x9c1*\xc9\x92:\x89Sn\xb9*\x08\x07et2\x984!?\xf1\xbdI\x8f\xc9\x12\x8eU\xecs\x83\xaeP\xc2\x7fX\xcc\x17EXw\x8d%\x8e\xa20@\xf2\x10\xceoy\xe7\xec\"\xcf|~\xeb\x0e\x04\xdf\x85\xba\x9b\xd8\x0eP\xcd\xb9\xe3*.|\x1ec\xcb\x18\xd5\xe0\x96\x85\xaa5\xd9\xf9_\xc7\xd5kN\xbc'\x92\xa0\xd7\x0dA\xefch\xa8\xa6\x8d\xa8\xf9\x8eW\x13r\x1eu\x16\x99\xbe\xdc\xa0\xc9\xcfF\xb7\x8d\xc3\xee^e\xc1\xa3\xf1\xd3\xe7\xcc!\xc8\xb6\xc6\x06/\x0f\x15\x13\x87\xfa,\xf2\xaaf\xa0\xd7\xec-\xd3\xc6bVmZD\xb2n\xb1\xd6\xc8\x0cY\xe7\xa1e\"\xd6\xfe\\Y4{_Je8\xd2-\xb1\xbe\xdf\xd2N8\xc4\xde.\x99\x7f\xb6\x8da \xd9q\xaf\x19A\x08%Ztex\xb6i*42\xd3N\x0f\xbb\x8e\x07\x9amW\xa5]\x0c\xd5\x15?D>\x13\xaf\x17)G\xfe\xfa\xaaLm7\xb0m\xae\xe7u\x19O\xfbx\xbf\x1b\x91\x80g\xcdy\xd45q\xdc\xf0\xe7\xdd\xfb\x8c\x8a;:\xd3\x0e\x809<3\xdewx\x13 \x19\x93N<==\xb4\x96m\xd6\xab\xf7\x11\xcd\xfb<\x1c\x97\x91\x8fxz\xa2}\x91/\x8f\xee\x88\x98\xc7\x00\xf1\xd3\x0e^J\xb9\xccc\xd9\x92Zi\x8e\x86\xf4b\x86\xb3\x88)\xb1h\x03z\xb9S\xeb:\x84A\xfc4\xa1:z!=D\x11|\x8bI%\xbb\x17\xc2\x0cv]\xbc@Ax\xf9\x0eU\x80\x16\x0d\xa3\xbcu\xbc\xd6\xe6nP\x0bg\xab\x85\xf2\x18\x9e\xaf\xc8\xec\x12\x03K\xf1\xc05,\xf55\xe4\x0b\xf8\xbf\xe8\xa3\x05\xbb\xe0\xfd\xdfH/\x9a\x82Q\xb1\x03\x8a!\xb5A\xac\xf5\xf3\xe8<\xbf\xceHI \x87\xef\xed\x1f\xeeyMX\x89\x04\xd5\xc9\x13 \xf2\x10f6\xae\x98\x16MV,\xb6\xec\xc8\xb7\x1c\xc1\x86#\xdc\xab\xac&e\x16\xa72|\x8b\x8f\xc1%]<`\xc4\xac\x1a\x8cQ3p\xdd\xbb'NPf\xf5\xda\n\x95\xa5\xffF\x8dfK9\xc3&\xa4\x8c\xcb'%\x0b%(?\xea\x03\xc9g\x10\x088\x082r\x0d\x15\x9b\xae/~\xb3\x1a~\x1e\x04\x11\xe7\xb2)\xa3\x83\x87}\xd6zr\x04\x19C4\xbcr\xcb\xe7]r\xc16\xae)7\x99\xc7\x9c\x12\xba9\x89\xdb\x0b\xc3\x9d+s\x0c\x1c\xe1#\xb5G\xec\xd8\xf7\xc2\x86\x02\xb4q\\\xde^\x9c#\x00\xd1p\x8fy\x8f\xcbGk\x96\xc1\x97\xb9)w\xf3+\xd1\x92\xfb\x95\xea\xbf\x98t\x05\x86s\x16\xc9\xa1N0g\x8a\x1a\xe4l\x02\xcd\xadC7\x81,{\xf3uN\x92\xef\xbay\xd6\x94P\x17}\xd4\xfd\xf3\xdb\xd3\x0f=\xc7\x00Z\x9e\xbf}\xfd\xee\xed\xe9\xab\x0f'\x13\xd0\x88\x02'\xaf\xdf}\xf8?\x138\xe8\xbfY\x92\xfa\xc3M\xe1\xc4\xb8\xb7/~;'\x01\xdd\xe8\x11v\x83\xea\xea\xa4\xfak\x9c&s\x11\x15\n\xd1\xd6\xb0 \xf8\xbeN\"9\x05\x98@\x12\xd1\x99\x8a\xa4g\xa5\xef\x1d<\xd2'o\xec\x88\xd4\x067\xf1/\xb5=`\"x\x1f, f\xc68Y\x17\xf5\x8dD\xa4\x97\xf1\xac\xce\xcb\x1b'\x88R\x92o\x9bR\x1f;\xfa\x8d\xb1]\xe7\xd4\xa5\x90\xa7\xed\xb0l`\x90Dl\xa2\x94k8\x82<\xbcS\xd8\x9a7\x07\xdf\x05,Ve\x0f\nm\xf5\xf3\x95\xd6K\xdcpL\xd8\x00\xc5\x81\x94S\x04\xa7Tk\x9fR-\x86\xa9\xdc~\xc4v\xd5\xaf%\x83\x8e\xddb\x82ZK\xfbI\xf5\x01\xdd;\xc6M\xa8\x15\xc8&\x19l_\xac\xb7\xce\xd2\x88\xbd\xfc\x9f$#e2\x93cx\x9e\xc6\x95\xd5! \xf8\xd2j\xb0\xbeO\x9bX?\xad\x89:w\x92\xb8l-\xf9\xeb\xeby\x19\x9aQ\xfb\xe1#\xc6\xe1\xef\xf7rj\x08YB\x97\x81S\xec \xff\xa0\x9fiD\xd1\x94{\x91\xa7\x11,\xbc\x89\xe7.\x08H\x9c\xa1\xfc\x8b\x86\x7fW\xef\xceItIn\xe0\x18\xe2\x88T\xb3\xb8 >>\x08P\xc5T\xe7,G\xaa\x7f\xf8H57\x12\x7f\x8d\x89\xd9\xd51=\xa2\xc7\xc6\x9e\x92+\x9e\xa7\xa9\na\x16\xea\x13q\xd2E)BLr\xc2gQ\x1b\x04 %\xd2\x1e\xe5\x00\xd1\xb7\xcb\xbb`\x92\xaaxD\xf9\xaa\x9a\x13\xa2&\x94\x9a\x88\x94\xd10O\xbc\xae\xc26\x89'\x0dTy\x17u\xf4\xcd7|d\x18\xf4Or\xf83\x7f\x81 \xf1\x85p\xa2\x07\x8b\xc6\x0e\xa3\xf7\x84\x13\x94U\xeb\x05\x86\xda\xf0\xbc\xae\xb9\xc5\x97\xfaA\xb2\xd0\xa9h\xcb\xb2 \xa1\xc2tn3v(\xeeuo\x7f\x17\xec\xf6\xf7Q'\xe0%S\x7f\xe9N\xad\xc2\xec4\xfe\x92\xd7Q\x04lq\n\xf5\x177k\x02\xe4\x98\xf2\xa9\xf5?\xa2G\xbb\xb4!\xf6\x98\x07\x12\x06\x89\x0c\xa2\x92\x14i<#\xfe\x83\xe9\xc7\x8f\x7f\xff&\xfa\xe3\xee\xb1\x1fL?\x9e\xfdr\xfb\xf9\xec\xc12\x04\xef\xe3\xc7o\xeeyJ\xb5vW\x9f\xa5oT\x10\xfd\xf1\xd8?>\xfa\xf8\xf1\xa3\x1f|\xc6m\x1b\xed\xf2\x07g\x01\xb6\xf4\xcd~\xf4\xc7c\x86\x18\xdft\x03\xc2\xeb\xbd`\x85~\x8d\x8fV\xa7n\x96\x06|hF\xdc\x0d\x10?\x184X\xd8,\xef\xb7\xbf\xf9]\xff\xaf\x8e\xb2\xae\xe1*\xd8\x11\xb3(\xf3\xb5Qm\xf2:\xc6T\xde\x85\xff:.Z\x06|\xaf\xe3\xc2AQ\xd3\xaa\x85\xdbL\xb6\xd6y\x1e\x18\xdb8%5\xfb\xe8\x94\xd4\xad!\x9c\x92\xdaa\x08\xadZ\xca\x10\xfa\xcf{q\xa4\xaex\x92r*#\xbc\x8e\x8b>b\xae\xf8\xcbS\xd2am\x9c\x12\x9a\xcd\xa3\x8a\xd4\xecm{\x0d\xc3v\x0e\xea\xa1\xe5\x9fGK\xd2\xd7@\xb3D\xb8\xc3\x0d\xcc\xb9i\xa0\xe6\xe3\xd8\x16T\x8ew\xde\xe0\x8f?g4\xb4g\xa1\x85l\xf2\xf0@VQ<\x9fkF1\xecx\x0e<\x07\x83a\n\xd6\x98\x94\xfd)\xac\xf4Sh6\x94\x8e)\xba\xe2\x99\xe6\xbb\xee\x07\xc0\xb3\xf2\xe9\x9e/\xad\x13\x03Eg\x1a\xe9C\x1ai\xda\xbd\x19\xd3.&~~\x95\xd5>\xe1\x1e\x9b\xfe>ej\xf74\x8a\x8a-P[\\\xdf-\xb5T\xef\x8ae\xc8\xac\xc7c\xbd8s\xf4\xed\n\xab\x8bi}6~?\x0c7\xcd#.\xe9\x9av\xdd-*\xafq\x15D\xeb\xb8\xf0o\xb6\xd8.\xc3\xe3\\\xb3l\xf8\xddD\xf9.\xbb\xc9 \x00k\x0d\x00\\\xf7\x9a\n\x80\xb5\x1e\x00\xbf\xeb\xffE\x87E\x05\x85\xe9\x99\x8e/97\xf3%yo\x1eF\xf3\xa8+\x99\xc2y\xb6J\xd2\xf9\xab\x17:\x99\x0c\xc3Oe\xd2\xab\xfa|\x8c\xb5\xd7\xb5E\xc8\xf6>f\xd8G\xc6B\xd13\xcd\xffO\xd9e\x96_g\xc8s\xf8h\xc2\x0f~\\\x03c\x80\x16I\xca\xa2\xf2H\xd6\xe6\xef\xd1\x1f\xa7\x1f?~|p\xf6\x80Y\x1c\xef\x827au\xd3$#\xccM\x9a>\x0c<\x14<\xb19\xa69\x9b\xc3\xc5\x0d6\x9b\xc9\xf7\xaa\xf3\x87nB'}\xb8k\xf4\x05\xde\xef\xc9\xba\xa8o\xb0\xc1q\xf7\x1b\xde\xefk\xf2\xa96}(\xd4\xd8\xfc\x8f \xff#\x9a'U\x91\xc6hY\xca\xdc\x98\xf0i\xc6\x7fJ\x80\x0e\xce\xec\x93\x01\xa3B\xc4\x90Sz\xde\xbeh\xba\xd1Z\x97\x94\xa2b\xa3\x91\xefW\xcaE\xa5\xb7\xd7\x19)_\xbd\xe8a\xab\xd4\x8b\xa2\xe5\x8c\xae\xef<\x08B\xb8\xc6\xfc\x91\x80\xb1\xc8\xcf\xab|S\xce\xda\x1cE{'\x9d\xf6\xb4\xb6yvJXH\x9d\x92dcL\xab\xf4\xd6\x92\x14\xd03\xdf\xdb\x7f\x88\xd1\x923\xb9\xa1\xe8\xee\xeaW\x97\x92z\xc9$\xf5\xb2\xa5\xbe(\x87-\nY\x8e\xb9\xd2\x90Z\x1f\xb8\x0e/\xf7\x13\x93m\xa1\x1ck+:\x7f\xdc\x8cY\xaf\x8c\x8b#\xc2\x83\xf9(\xcch\xeb!6\xbaO\x1b\x8d\xa3\xa4z\x9do2\xba\xc9Xo\xdf\xed\xb7;+\xe2\x92d57\x90R~\x1ea\x8cr\xe5\x01^\x8e\xca\xd6\x0f<&\xec\xc9\xf7.\x176\x1d\xd5h\xf6\x03Y\xe4%y\xdd\xbaAu3\xe7/}c\xb8H\x0e\x87 h2\xaf\x03FSc\x03\x9e@\xa6\xaf\xc0\xec\x9e\xcc\xf6oby&05\xac\xbd\x84\xb9\xd9V\x8f\xc55\xe4\xc1s\xc6Z#\n\xc8\xfd\xc4\x1b\xd1\x83n\x9b\xddC1JA\x194\xfe\x91\x98\xd5\x8bb\xd5\x1b\x96y)\x87N|\xfd`\xea\xf6V\xae\x95a1\x97Va\xf1\xa6b\xf0\xc6r\x95\x92g\x030\xdbf\x8c\xa8\xc7m\x01\xac\x8e\x94\xb5\xdd\xdd\xb5\x8c&[\xdf)\xc8X\xa4\xc7\x16\xa4\xf6\xf5\x90\xaa|\xa2K\xc7x!\x82\xf7\x0f\x8d\xbb\xd8\x94K\xc2\x87N\xe6r\xf0\x95\xc5\xd5\x14\xc3j\x9eF\xe7EI\xaeHV\xbf\xdb\x94\xcb$3*j[\xc9\x94\xf6\x9e\x02\x81\xef\xe1B\xd2fb\xa6\xcd\xb4\x9c\xfb\x17Sr\xe6\xaa8\x03\x9c\xf8@\xd0\xfa\xe1[\xdaf\xb7\x7f\xc9\xe2 \x85\xcaN\x17\xa9\x86\xfa^\x92\xfa9\x8f\xecW\xc7\xb3\xcbg\xf39\xc9\xe6\x9b\xb5\xebHtVO\x836L\x82~\x9c\x0c\x86\xaf.\x99\xe5$Z\n\xe9\xcf\xbe\x1av\x8f\x18\xeb@\x1a\xae\x81s\x11\xd2*\xcav\x9e\x80\xa2\xe4Z\x88\x08\x87\x06\x8aL\xc1N\x9b\xcf\xa3\xf39\xb9\xd8,_\xbd0\xae\x00\x8e\x0d\x99\x9d\x16L\x7f\xb8y\xf5B\xc4\x9c\x17EcB\xdb\xfd\xc4\xb6\x14\x12\xcd\xf9z\x00y\x1a\xb0!|B\x8e\x9f\x08\xce\xeb\x1d\xdf\xbcC\xc8\xd3\x15i{\xb8\"\x8f.7\xfc\x18\xc4T*\x124\x12\x0b\xa6\xf5\xb4t\xaf0\x8f\xae#\xe8\xf0\xb1\x83\x839q\xf3)n\x1at\x1d\x84\x03\x18\xc4\x19\xe9\xd4=g\xb9]\xbbw\x87\x01\x12\x0e\xb6\xefpT\xecO\x89\xf2n\xa3{'\x19$\xb7\xe19@G\x1e\xcfk$Gi\xff\x15Y&UMJ\xc2\xe8U\xdc\xe5@\xaa\xd5\x9b<;\xad\xe3l\x1e\x97\xf3\xbf\xc5e\x96dK$\xbe\x0e\\\xb0\xf1FB\xa4>,I(\xf2\xc2N\xaat\xd8\xecH\xa2N2\x94;\xb5/\xc6\x86\xda?\xc5\xa7\xdb\x1b\x010G\x97\xeeu\xbf\xde\x9e\x969\x1b\xba\xe9{\xa09gH\x14\xcf\xe7'T\x80\xfc\x91{+2'\xa8\xeeSn\x1e\xb6\xb3\xaf\xb5\xadn\x1a]\xe7Wc\xd2\x8a\x08\xff{C_c1\x90\xc5\x9b\x881\xa4'6\xc9'\xd3<\xf0=\x8a\x00\xbb\x0c4w<\x959\xd1w\xb3\xcd,L~\xb5\xfd\xed?\x8b\x8bzS:\x06\xee\x80\xedW~\xef\xae\xc15\xb0\xf2\x9a\x8bKQ\x06`f\x1f]\xa9\xff\xd8\x05\xcc%\xe7\xa0^\x88$\xba\xeaL\x8d\xe6\xdf\xad\x84kwA\x0d\x1e\x1f\xe8\xc2\xf8\xd1\xe7\xfaP\x11\x87\x8f\xba\x99\x00\xb8[\xddw\x07A\xbb\xfd\x8d.M/\xf3aM\xf2\xecy\\\xc4\x17I\x9a\xd4\x89=u\xc2\xd5\x97&\xa0\x80\x8e\x14\xe6\xb7SQ\xdc\xbb\xc7\xb2Ox<\x8d\x00^\x1b}\xfe\xdcKI\xc1\x9e\x95\x1b\"*\xceXL\xff\x93yR\xc7\x17]\xa7`\x93\x03o\x92g\xaf\xb2E^\xb2(\xf4\x16\x0c\x17\x1a\xb6x`Jz4\xc5\x18\xfb\x04\xdd>\x8c)\xbe+1\xa0\xf7\xccc\x1c\x03\x1cj\x97\xc8G\xb7\x91M\xa4\xce\xc2'Zy\x1el'nI\xaa:/\x89l\xc7i\xf9\xd9\x05[lJ\xda\xc3tZ\xca\x9c\x0d\x13\xc6j\xedi\xeb\x14\xed;G\x9c\xe9\xc7\xab\xb52\x84\xdc7\xe5l`\xa1\xe30!\x90\x19z%\xd6\xd8D\x95\n\xbe2\x84*\x08!\xf1\xcb\xe1\xd0E*\xcc\x9d`\xa5\xd7\x1azr\xda\x18l\x1e\x13Q\x90\x007\x96\x1e\x83*\x16\x93^\x81\x17~\xa8\x87,\xc9\xe6\xad\xaa'\xd9\xbc\x8f\x15\xfd\x81I\xebP ^\xd9B\x7f\xb3\xab\xbb\xd6\xb4\xf1m\x12a\xbf\x1f\xee'\x87\xb8`\xf2\xf5\xcc\xb8\x8eD\x08*\x01\xf7\xb4\x12\x18b>)8\x10\xefg\x11=1\x10\x80\xbe7[\xc5e<\xabI\xe9\x85p\x9f\xa7\xf9\xe2\n\xee\x01\xb1\x04A\xcc\x1b\xa2\xcc\xe3`3\xdaV4Y\xfa\xb9\xddR-\xd2]\xbd\xc5\x98\xf7\xd5\xb0*\xe1\xf3\xe7a\x941\x98\xb8\xe3\x04F\xaa\xef+\x03\xf2[n\xd0\xea\xa82\xe3*3\xbb$\x99&\xd6\x15E\xc5V\xaa\x7f\x91\xb6\x9b2w\x86\x1d\xd4\xdd \xb4v\xd8\xd9\x0bp\x04\xaf\xe3z\x15\xad\x93\xccG\xa7\xad\xd6b\xfd\xc6\xfb\x02\x1dt\xf86\xf8@>\xd5\x83[!\x89fy\x9a\xc6EE|d\xe1\x12\x13bg\xf2e\x0fYs\xb8\xcf_\xb3Y\xe9\x12\xcf\x8aH[\x95\x82\x93CQ\x94\xf4<\x12\xcb/\xb8\x15\x8f\xe4\x96\xe2\xa6\x830>\x01\xee\x8d\xd9q\\\x11\x02\xa2XO8n\xfe\x14\xdcy\xd0\x84\xe2\xeb+B\xf5\xea\xa5\x86\xf7\x9e\xd5\xc9\x15Q\xf2\x08\x91\xe8\"\x9fwRH \x81z(\xbc\x8f\xee\xbb\xdf\xb5\xff\xda\n\x9cW6\xef\xdb\xc7z\x86\xb3\x17f:\xd6\xfb\xea\xb2(\x0e\xfb\xdfv\x1b\xafZ.^}\x0f\xaf\x94\xf5\xf2\xb0+\x15\xcf\xf8\xf3n?\xcc8\xfe\xf0\xdb\xee\xf3\x82\xcf\xad\x1bub\xce\xfa\x17\xe1\xb0\x1f>\xea\x0e`\xc5:z\xdcy|\x85\x8f\x0f\x0e\xba\xe3Z\x8364\xdb\x92u\xdf\xcb\xdfu\xc3\xb9\xf6n3\x17\xaa\x03\xdb\xfe\xc3'\xddQ\x9d\xf3\xee\xbb\xd3\xb9n\x1c\xdb\x92~\x00\xe4N\xe5\x13\x8cQ\xa6\x8b\x1f\xdc\xaa\xf6 \x8e\xba\x9e\xd2\xa7p\x04O\xda\x8f\x9e\xd3Z\x9dj\x97\xc68\xde\xcf\x8c&h\xcc4L&\xcf\xa2\xbb\xf6\x14\x1fu\x93qMZ)\xc8\xba\xac\xae\xce:\xec\xad\xb9Sz\xb6\xca\xa0\x80\x8c\x84\xabO\xfck\x96\x8ew\xd8\xfa\xec\x9d\xd8n!\xf2\xa4\xdd\xbe\x90\x96\xb7\xa9\x06%O\x8b\xa8\x9f5\xdbtv\xc6\xe6\xe8=\xec.\xd1\x14\xf2\x03\x8e\xc0C/~\x16\x8ck\xc2L\x155w$1\x1cC\x0c\x13\x88\xbb\xf6x1\x9a\xe2\x05\xa1T\x95\xd5\xc9\x9a\xf4\xaet{\x13\xa6\xfb~\xd5\x89\xf3@\xc1\x94\x85<6\x01w\xa9D\x07\x98n\xf8\xa8DU\xcd\xd1\xfe\xe8Q\x95`\xc8\x81s\x16\xbdC1\xa0\x88\xcek\x0eD\x1e\x0e\x89e\x87\xffQ\x8d\x88\xf0*\xabsLa\xbd\xc1\x85\"\xb8P\xd9\xb0\xb5\xe4\x07eUuKJ\xc9\xe3:B\xe0\xbe'\xb3<\x9b%)\xf9P\xc6Y\x153\xfeuI\xeawy\x9e\x92\xb9\xbf\x83\xcc\xc1,\xdaT\xe49\x9e\xe6|\x01;\xb3\xce\xa3\x82\x94T\x02\xf5\xdf \xb1\x11\xe4|\x10\xe1`\x7f%I \xe5)\xf2\xe1i\xbd6\xe9\x8d\xf0*d/\x84U\xb4\xc94\xeb\x86\xd6D\x9d\xed)\xf8\xec\x9e\xf4\x15<\x85\xbaI\xfb\xf74\x80\x9a\xab\x81\xf0\xb7\xaf\xbc\x1b\x1e\xec+\xb3\xa5\xf0\xb3\xf1\x96\xc2U\xa4\xcbj\xae\xf3Q\x13f%t\xe9>\x7f\x86\x9d,:_\xe5\x15\xbf\xdb\x18cC\xfc\xb3\x91\xf4\xec\xf8;\xdc\xdeU\x02u\x07\xfd\xde$\x1f)\x9f\x9dj\x9e=\x1f\x06\xdc\x1b3\xe0\x1c$U\x0e^=\x9b\xce.\x88\xef\xdd\x1b\x0fN\xdc\x06mX\xf20{\xfd\x9bW\x93e-\xbb\xf6\xc2\x16\x9e\xe7Y\x1d'\x19)_e\x8b\xbcO\x05z\x07\x83\xf8\x8bN\xf1}\xffl{a\xb3\x88\xc7\x08R%^\xbe\xc2\x11\xbc\xefZ\xa95\xc3}\xa1\xf8(%U;\x88\n\x0f\xe7\xf9\xa2\x15\xd9\x06\xe3\x11\x0d\xf4.\xe6N\x07\xa0\x10\xfdfn\xb4A\xde\xd3\x87\x1e1T#\x82\xd2\xb9\xff\xd8\x93\x8c;\xdfL\xe0E\x87\xeb\x10A\x11\xaa\x1fn\x18\x01B(L\xe0\xb2\xc3\xd4a\xa2\xd4\xd7y\x96\xd4\xb9K\xc4\xc7\xae\x84\xd1\x112\xcf\xd9\xbd8\xedl\xc0\xd2U\x7f\xe8B\x03\xb6\x1f\xa3\xd6\xb8\xfc2\xb4\xab\xaf\xaf\"\x92\xfdcC6\x82T\x8b\x00\x19\x92x\x86L\x08\x95\xf5\x9e\xc7iz\x11\xcf.\xd5\x8a\xb9F~\xa2\x87\xd8\xe0\x9c\x196\xbc!\xd7\xd6ik\xe7\xfc3\xcf\x19R\xfa\xde\xe1w^\x10\xc2&\"Y\xb5)\x89\x92\x14\x97\x03\x02\x93J\xf77\xab\x10=1\xde<\xc6\x13\xee\xd6XG\x17T`!sf\x0dQ\xf9\x1f\xd0\xacY\x8cJ\xdf$\x0b\x8c+1\x89o$#\xad\xb8\x9c\xc6g\xf4\x8bp8\n\x07\x83\xd6\xe9\xe6\xa2. \x9e\xf2\x92(8C\xacc\xc6\x82\\`\x11\xadbT\xaerH>\xa6\x90\xfcQ0\x1f\xba\xee\xd4N\x1c\xd6\xf7\x8bF|\x15]\xc5i\x82&#\x1c\xeb\xfc<\xe4|\xde\x8b\xb7\xaf9A\x11\x96\xec\xad0C\x0dr<\xf1B\x93\xad\x8c\x07\x94\xaa\x93\x18\x83\xa3\x15qU%\xd9\x12b`\x95!M. \xfca\x9e\\\xfd!\xc4\x97\x80\xfdr=\x85\xe8\x07\xdf\x07\x90\x97\xf0\xfd<\xb9\x82\x07\x7f\x8a\xd0-DL\xd0\xb1\xc7YJ\xdb\xc7\x0e_\xe6\xf9@w/\xf3\x9cu\xf62\xcfEg\x99\x1a\x03Z\x89U\xc6\xf9f\xec\xf5\xc3*\xa9`\x1d\xdf\xc0\x05\x81Y\xbc\xa9\x98W\xcd&K\xf0\x02!\xc9\xb38Mo \xcd\xe39\x1dP}\x9dC\x92\xcdIA\xe1\x9b\xd50\xcb\x8b\x84Tt\xc8lL\xdc\x07\xc7\xb0\xa5\x98\x9fX\xdc\x19\xf9\x0b\xd3m\x1bR\xf8 h\xe2\x9ci:\xb0\x9a\x9fRq\xbb\xe0n\xa7\x06\x05\x122H\xe7E\x99\xcfHU!o\xc6\xc3\x99\xfaUt>c\x7f\x1a\x15B\xf4\xeb\xa5~\xe2T\x92\x7f\xe3\xeb\xf2d`\x12\x8c\xa1QSa?\x1d\x12{\x0cSY\x80\x7f\xee\xcf\xd8\x15\x80Y\x07L{X\xb0\x1e\xfaB\x05\xe5\xde7\x17i2\x93\xf1\xbb-\x96)sa,k=[\xd4\x9237\xf3\x85\xf9\"\x14@\xab\xa1\x17E\x9eq\xba\xc3\xd2O1\xac@\x82\xa4d\x1e\x84\xb0\xd0\xb6\xa3\xbfk\xfd\xb1'\x07<\xc3\xd8xvS\x0e\xe0\xc0]!\x1f\x99\x19\x00\xb7\xa6\x12\"r\x84;o}\x93\x82\xfd\x06\x8e\xe0\x95\xb1\x89\x0b*\x82a\x13)\xfe\xab C\x00\\9\"\x89w\xf7d\xa5\"a\x16\xc2E\x08I\xe0\x88\x08\xc6C\x8b\x1bK\xe3\x92^\x07!\\\xdb\x8f.\xb7\xfb\xfcf\x95\x07N Ud\x1c\xce\x08\xa2_X\xdb%\xd6\xcf\xcd\x81\xf8p\xcfD\xe6j\xdc\xed:\"\x83\x8e\x0c\xc6T\xb5\xaf\xd0n{_Q\x96\x7f\xe0\x01\x020\xd4D\xa3\x9191\xd0/!V\xed; '\xaf\xcb\xddc/\xa7u\x8f/9\x0b\xfb\\\xcek\xa1;@\xeb\x98\x9e\xb7n\xeb\xa7F\xf7\xa0;\xde\x93\x10b\x1dD(\xac\x14N\x8e\xb9\xa5\x0d\x86c\xdd\xe0^\x1b\n\xee3\x8ffq\xf6\x9el*\x9e\x19\x8a\x8eb\xd3\xc92C\xc5\x0b2\x8bg+\xc2v:\xad\xa1oQP\xf6M[_6\x8f\x9e\xff\xf9\xe4\xf9\xff:\xfd\xe95\xaa\x16\x99\xf6Q\xdf\xc2\xa6\x97\x93c\xc4\xc7\xe2t\xd8D\xf9\xa6&\xe5\x9f?\xbc\xfe\xd1\xd4Ke\x1b_\x08\xdd\xa8\xbc\xa2\x88\x13b \xb5Q\xe1\xe2Y\xaf\x16\xe9\xba\x90\xa9\x97O\xe2\xce)\x94\x9e\x94A\xa8\xfaWf\xcc\xb1r\xb0e\x10\x8c\x80H\xf5\\\x06\x9c\xe1\x91\xbf\xe5j\x1b\x1c\xec\x85P\xc0.\x1c\xec\xa1S\xf4\xc7\x0c\xfc\x8a\x94W\xa4d\xd5g\xe6\xea\xfa\x99\xe9tWtg\x1dx!h\xaee\xfb4\x03\xb5K\x86F\x0e\x19\xaf\xdd\xd3\xef\x19P\x81\x07\x98r\xd5\x90\xe9'\x94GIV\x91\xb2\xfeP\x12\xc2\x1c\x1b}F\x9d\xe81`\xe4\xd3.X\n\x80P\xb3\xd3kE\xab>\xf2:\xefG|\xfa\x85\xf7O\x87\x8f\xbe\x0d\xf4\xcd\x9b\x8f\xa5\xc6\x0fH\x03$TM*\x1a\xe37|\xed\x98\x95@\xd9DS}\x1a\xa01\x8fN\xb9l\xd0A\xb1\x060\x00\xeb\xb1\xf6;\x98\xc8Z,\xe4+\xcf\xeb\xd7\xb3\xf8\xfb\x82\xab\xbb::?'\xd5\xeb|\xbeI\x89F\xcd\xc3C\xb2f~\xf7\xea\x0d\xc3\xe7b\xbc|4\x7f)\xd5f\x8e\xa1\xd4Z\xd8\xcd\x859\\\xdb\xb4\xeeV\x1d\x0d\xaf\x83r>\xff;\xaaVqA:f\xd3t\xe7\xce\xca\xe4\x82L\x94\x8at\xfa\xa8\xc2\xfa\xc7&)\xc9\xbc=\xe2yR\x15\xf4,v\xfe\x80\xf9\x94\xd5C=4+\x10\xdc\xe1\x12\x84-8\x98\x11W\x7f\x0b\xcd\xaf<\xc0\x14\x16I\\\x89\x90\xb2\xccK\xf5\x8e\x04\x1f\xf4\xb8.\xfd\xddt\xbd*\xf3k\x8c\x80t\xc2\xbfj/\xa9\xde\xbc\xdb O\x95\xcb\xe4\xc7\xdd\x1bJ~\x9b\xdc\xb3S\x14\xa9\xae\xba7\xa41\xaf\xdf\xc5\xde\x0d\x7f\xdem\xbf\xe2\xcf\xbb\x17\xc0\xfc\"\xb9\x97^\x80_$\xf7\xd2\x0b,\xf8\xf3\xee\xc5/\xbbH>x\xa2\xbbH\xce\xfc\xc3\xc7\xddy\xb1\xfb\xe3\xfd\xc3n\xfbW\xbc\xfd\xee\xb5\xfa\x9a_\xabw\xdbY\xf2\xe7\xddy\xb1\x1b\xe4\xde=\xf4\x05\x07\x7fw\xba\xe7\xbc\x99\xeep\xae\xf9\xf05W\xc4\xb4zw\x94\x9f\xf0y\xef\xda\xfa\xb4\xafN\x7f\x0eG\xddh\xda\x97p\x04\x0f\xdb\x8f\x9eQN@\x04\x00|V.\xf1\x12\xa9:\xebD\x18|\xab\xd6\x12\xa1\xeb\xba\x95\xde\xa9\x950\xf4n\\\xe7\xa5\xa9\xf6\x07\xb5\xb6\x88<\xd8\xae\xf2\x9a\xdfb\xcb\xdf\xd3gg\x94g\x9b*\x03.\xe3\x9b3O\xf7\xf4\x87\xcdbA\xca\xde\xbb\x17q\x1d\xff5!\xd7\xbd\x17<\xc7\x87\xee\x03\xd2{\xf82\xcd\xe3\xfa\xf0@\xdf=\xbe|\xf4P\xff\xf2UV?6\xbe\xd9\x7fd|e\xea\xecu\\\xf4\x9e1\x17\x14\xf1\xf8C\xe7-\x8b \xd8\xfb\xe8\x94\xd4\xfdg\xc8\xdf\xf5\x1f\xdf\xac/\xf2\xb4\xf7\xf8\xa7\xc487|\xf5<\x8d\xd7\x05\x99\x9bk\x98\xa6O\xdf\xb5\xe6O\xc9\xbc\xf2\x1e\xc9\xa8\xf8\xeam\xe7\xe3\xbf\x91\xf8R\x02ig?\xd4262,\xef\xab\x10~\x0e\xe1M\x08\xefu\xb7w/B\xbc\xbb\xc9\xe0\x1e\x9c\xf6\x99\xeb\x9f\xf8\xab\xe7\xfdW\xff\xe0\xaf.\xdb\xe7\x03ei_\xe1%\xee\x0b*\xb5\xc31\xbc\xa2\xe3\x90#\x98\xd0\xdfA\x10\xaa\xda\xd3\x17R\x84x\xd1ol\xe7Z\xcd[\xdaa\x9e\xe8\x0c^\xe2\xbdBWJ\xa5\x9f\xbe4\x89\xc1thW~M%\xee\x1fe\xd3\x18\xd5\xf7E\xf7\xe02\xc4\xbf\xa5\x1d\xff\x13\x8e`E[\xe9\xbd\xa5\xe5\x078\xa25\x8e\xe0-\x15\xb8\xf1\xafwz\x05\xc6\x85:\xc1\x8a\x8e\xe2G\x83\xaa\x03[\xf9 \xdb{F\xff\xfa\x01\xb5ToLr\x81\x98\xeeO\xac\xee1\xfcr\x0b\x13Xv'\xff\x13\x1c\xc3\x82v\xbd\xf1_0\x1d\xe7\x04f\xf4w\xcc\x7f\xf7\x1a7\x82F\xf4\xba\xf3z\xfa\xcf3\xd9\xc1\x1b\xee/\xfb\x8bA\xefH\xc7\xb8\xa6\x1d\xfe\x93N\xbf\xdf\xdb\xef\xcc\xbf\xde\xa3\x0d\xde{`!\x18\xcb\xa0\x8f\"\x7f\x85#x\x8f\x9aj\x1d\x9a\xfcU\x0e\xf2\xaf\xfd\x97\xef16#bF\x88~\xed\x0d*\xca\x08`\x92}\xe9\xd9t\x00\xde\xdcbXC\xbf\x14\xbb\xb1D&\xe7}\xd7\x12<\x08u\xe8\x7fn\xeb\xd2p\x9f\xf3\x02\xc7\x9d\x87\xa0t\x9c\xbbvLa\xf6g8\x82\x7f\xc01b\xc6\x1c&P\xc0\x04\xff\xbe$7\xd5\xab\x0c\x03\xe2\xf6:\xfd\x1b\x1c\xc1K8\x16{{\x02\x7f\xee\x01\\h5\xfd\xbf\xd1U\xab\x15\xde\xcf4\x93\xbf!5)1\xc6\x13z\xe8\x9e\xa1%\xfd\x0b\x9c\x8f\xdb\xec\xe4\x93\x91\x1c\xe7\xc1\x93.\x87$8N}\"\xaa\xef\x1e\x8f\x9669<\x12\xe6u\x81W~;\x18Z\xbc\x95\xeb`\xe4\xb8\xf7\x1f\x1b\x92\xc2\x1ety2\xce)?\xd6g\x85=x\xd2}\xbei\xc2\xf62\x0f[\x11A\x97\x1d\xa0\x15%#\x83\n\xdfV\x94\x8d\xe9\x19\x8b\xb2\x81\xce[\x14\x04<\xcc\xc6\xb0{{{}a\x02\xb1\x1e\xe8N\x06\xc1\xeab\xeb\x81v\xd8cX\xb9{\xd4\xf6\xab\x8d\xcb\x9c\xb4\xaeuG\xae\xf0\xe3\xc7z\xcc<\xec\xc9H|\xb0\x8f\x0f\xb7\x1dl\xe2+\xa9\xa0\x99\xc9\x18&\xec\xf7\xbe`\xf0]4\xcc\xa5\xde2\xfed\x1b\xa6\xfeF\xa3Q\xa3@\xaeZi\xd7\xa8L\xe1Z\xc6\xfb\xb0\x0f\x13\xc0\xe0\xfd}\xe2e\xbdc\x93\xa8KA\x1a\x0b\xb9\x82\xc5\xfd\xbc\xbf\xcf\xaebs?i:c\x1d\xa1\x14\xc9\x82\xf7o\x82\xa7\xb0\xbb\x1b\xc3\xf7\xb0y\x1a@\xc5\xcd\x11\xa65\xecB|\xa6?\x17Y\xe3\xfawr@\xa9\xec\x816\xb5/{\xa9\x9f\x06\x90\x8a^L=\x08\xf6\x87\x05\x0c\xcd\xfc\nS\x8a\x11\x96S3\x04\x9d\xdeo\xfb\x85\xefn%a\x0f\xbe\x1f\xf8\xa5\x01A\xbf\xc0\xf7\x91S*\xa6\x15i\x12\xab\x87\xe05*\x16\xaf{Y\xce\xb3\xd3*w1\xb7\x81A\x05c@B\x0d\xd5\xcbzZ\xae\xa6\xf5\xa7=H\x99\xf7$\xea\xe2\xd9\x0dV3\x05\xc9\x1f\x90\xfe1^w\x04N\xd1\x884M\xe9/\xafr\x9b\xc0\xbc^,q\xdayTs\\\x11\xb4\xdedQ}\xc94;3\xd8\xdb)\xb0\xa4k\xd9\x80\xc2\xcf\xfc\xfd'\x07\xc1\x17h\xcf\xbe\xf6\x92\x1bM \xf54\x03\xc3\x88\x18\xbd\xa4\x92l\x91k3\x87\xd1\x92\xe6Km\xee0\xc0\x94\xb5e6\x81C\xfdKT\xdcM\xe0a\xef\xa5\xc659\xb3\x1ao\x82\xb2nSrF\xb9\xb6\xfb\x9a\xfb\xd0~\xd3\xccOs\x96g\x8bdYEi\xbeDs\xc0~=F\x02J5\xdb\x00\xa8f\xa7\x89\x8d\x91`\x97Z\x92 \xcb[\xafDR\xc5\x12\xfe\x04\xfb\xa8\x87f'\x00\xa5\xca\x94\xb0\xee?\x05J&\xcb\xa7\x10\xef\xee\x06\x94F\xd2\ngjkZ\xb2\x89\xa0\xfa\xd3\x91\x12\x92\x95+M\x83)9\x8b\xe2\xa2H\x11\xe5\x06\x0d\xda\xc5\xe9\x1a\xd1\xb5D\xfd6&)f\x17\xee\x1e}\x88\xf7\xb3\\/\xdb}\x8fOY\x05\x8aD\xbd\xf7\xf4!{\x8d\x18\xd8{\x8fO=\xad[>^Vc\x0e\xa8\xca\xe4\x17\x8f\xa8\x99\xf4\x91\xc00]\xa7S\xc2\x9a\x07\x8e21]M\xe3\xd7\xb9vpc\x8f\xc4\xc6\x978\xae\xa5u\xfa\xb3\xc0\xc0`\x90\xce}\xc4:\xbe$\x7f\xae\xeb\xc2\xa7\xc4\x97\xbc\xa4\xaf)Y*\xf2\xaa\xc6\x1f\x06\xd5\xc3\xc5&I\xe7\xef\xc9?6\xa4\xaa\xd5\xe6\xd4\xe7\x06\xd2\xc1r{\xab\x1f\xf1G\xfa\xfa%\xa9\xf2\xf4\xaaU\x9f?\x1a\xac\xcfMM4\x9f\xf17\xfa\xaf+R&q\x9a\xfc\x93\xbc'\x95\xfa\xad\xfa\\\xffe^\xbc\x9a\xab_\xacHZ\x90\xb2\x8a\xe8\xf3\xbbEc7\xdc\x91\xc4\xad\xd6\xeb\x0c\xf0\x84\x9e\x96\x8d\xfa\x84\xfe\x10-\xf7\xe9\xd1\x15w\x1d\xa1\xb5\x8cGQ2\x81\xd2p\xd2\x98\xa3\xe3\xf2.'\xba\xa8<\x1aM\x8e\xe0C\xe8h\x91+\xc8\xc5\xa0Q>W~\xa1\x97N\x94r\xcd\xa7|a\x00=\xf0If\x1anF2\x15k\xceNDx\x0d\x83\xe7wGp\xd0\xb9\xdd\x00^\xb9\xe5\x9c\x7f\xf9\xfc\xd9\xc0A\xb0\xaf\xf5\x90e\xfb\x7fS\xc6\x17)\x19\x00e\xb6Y\x13Q\xc7\xc0\x10,I\x8f.\x01h\x82\x10C\x1d\xd9On\x01\xb0\x1e\xbf\xa8\n\xe9\x96#\x9f\x88-\xd3\x1f\x138Dl\x11\xad\x8c\xc0\x9d:\x9a\xfbY\x08^\xcc\xfd\x8a\xb3\xfe\xd4s\x17\xfb\x18\xde\x9c+\xef\xdaO\xbdRG\x05KL\x05\xb5_Gt?\x1f\x1c*\"\xaf?\x1d\x1c\x82J\x072\xff\xe1\x81\xf2e8<\xf8\xce\x97\xdfn\xfbek\xb4\xe3\xbe\xdc\xba\xcf\xc3\xc3\xc7\xe6O5R{\xfb\xd0o\xbd\x92$\xb2\xd4c\xb7@-\x0dr\x13c@\x1fy\xf6\xdb\x93T\xea\x07\x93\x1b\xf1M\xec\xb6.\x1f\n\x7f\x82\x83\x8e\xb5x\xc3\\\x1e\x9c\xc1q\xfb\xe7\xc4\x98\n\x8d\xb29\xbe\xa6\xf5Cc\xeb\x87\xed\xd6\x0f\xcfP\xff\x1eDW\x07o\x0bRbL\x9aWh^\x12\xd7 \xc6/\xb9y\x9d\xcf5\x1e\x9f*\xa8[\xa9\xddTE\x0b&kP,\x10&\xe8\xf87\x13\xf4#\xf0I\x10\xb0(Qy\xd39s\x84U\xd2r}\xac0\xc7\x96\x174\x86a\xab\xf6'\x01L \xe1W[\xfaE\x1e\x9e\x9e\x9e\xbej\xfd\xc5\xcc\x02\xc9@8K\xdd\x12\x8dC\x00\xfb\x12\x99\xc8\xad\xc0A\xbfnG\x84\x80]\xf0\xce1}P+QZ\xb5\xf3\xff\xfd\xfe\x9b\xff\xf1\xf7{\x7f\xf4\x83\xf3\xdd\xa3\xe9/\x1f\xcfn\x9fN\xbe\xff\xd3\xe7\xe8\xe3\x83\xe3\xf0\xe3\xc7?x\xde}\x96<\xed\\g\x99\x0b\x0df\xb0\\\xe8\xcc\xf3\xb0\xb1\xa1\xdbo\xfa\xad\x95~}\xff<\xf8\xe5 \xbc\x0dD\xd3J\xe6\x12\xff<\xf8\xa3@\x80\xe6\x83\xe9\xf9Y\xf0\xc7o\xf8s\xcb\xc6UF\x851X\xe7~M\x87\xd1\x0f\xa4nX\xdc\xd8v\xa0\xf0\x06\xbd\xfb\xfdtL\xa667\xb66+N\x1fw\xf6\x90\x03q\xc6\xc4\xcaDWA\xdc\xc1\xb1\xe0Vb\xcf\xeel\xb3g?\x7f\x86\x1d\x12\x15q\xbd\xaa\xfa\x8du\xaa\xb3jC\xb1-@Qs\xf1\xea\xfd\nR\xb6\xcf!\xc9\xa0\xd4\x9b\xa8*\xeaXZi\x9a\x1b\xa2\xcc\x03\x87\x85\xf7\xee\xd9\xfbg\xafO>\x9c\xbc?e\x83O\xa2:\xff\xa9(laSD\xb9\xe2\x0eg\xb4\xa7ibP\xa6\x8aB;\x8c\x07\xe9el\x83}\x1cX\x87\x04\xd0\x18j\xdbk\x8aR\x15df\x8c\x13\xa6+t\x95XX\xd1\xdc\xfd\xa35\xa9W9\n]-(\xbb7 i\xfed \x9c\xa8Z4:(]\xc1\x0c4\xbe\xc9\x06]-(\x85\xa1W\xb2D\xe8\xcd\xe0Gz\xa7\x97\xfe\x9b\xf6\xaf\xadT\x96\xa0U[b\xe3\x9a\x0bp*g\x95~\xe6\xef?\xee\x06\xff\x00n\xb6\x86o\xbby(\xea(\xa9\xde>;=t\x125\x98.$/H\x16\x17\x89\x91\x89\xe0Y\x15(\xae\x17\x0d\xae\xd3\xc9\x1ez\x1a\x16<\xa9N\xaf\xe3\xe5\x92\x94\x07#\xc6P\xb1O\xb6\x18\xc3\x81n\x0cy\xf1j\xce\x12\xf0\xd7Q2\x7fY\xe6\xebwq\xbdz\x8d\xf8\xcd\xdcI\xeb(%\xcbxv\xf3\xaa\xff6\xa6o\x97\xa4\x96\xc7\xf9\xfb\xf8z\x84\xf8\xc2\xd9[F}\x8f\xd9Ib\xd7\xd7J\xc9/\x12[\xd7\xbc5\x18!f\xbb\xd5\\+\x11\x8b\xcb&\xa1\xdf;x\xe2$\x83'Nb\xa3z\x89\x12\x19i\xc7p\xef%H^\xa2\xf2\x85\x83\x0c\xca4\xf7\x13\x19\xf0\"\xf6\xf9\x1f\x9b\xb3\xa8\xca\xd7\xc4\xb7\x03\x14\xba+\xc2\xee\x16\xb5uu\x91\xd7\x0c\xd9\x10\xd0>>\x9bK\xdc\x80#\xd8\xd0\x87$\x9e\xad\xd4\x87\x15\x8b\x93Q\xaeQ\xcb\xc5w\xc4\x98\x0dQ\x90\x99~mY\x005D/\xb3\xd4\xa1\xb3\xd9\xc1\xb5F\x96\xaf\x8e\xbe\xf9F\x8emn\xba\x8b\x82\xde\x89m\x0c2+\x0e\xda\xccx\xca\"\x9f\xbd\x17\xc2\xa2uZ\x0e\xac\x9d\xc0\x18\xcc\x92\x15\xafIMJ\x0d\xdb!\x8a\x1cgE\xc7\x19\x07\xb0\xe3\xb0\xe7D\x91r\xe0\x948\xf0\x08;\x9did\x0d\xf6{\xb3<\xab\x93lC4\xa9a\xd4r\xc5]qs\x9f9\x7f\x99\x9cqE\xa1\xddj\x83\x02uK9\xad\xa8tB\xffc\x91\xca3\x8a\xc6\xf8\xf4\x08\xa6\x99ev\xc0\x87\x86\x87\xcb\xb4r\xa8M\x076k\x84\xa6\xfd\x00f}{'\x13\xbd\xd4\x15\x12\x9d\x9f\xe7e\xb2L\xb28U\xc4)\xe6\x96\xa1}\x83\x12\x8cBT\xc2\xf6O\x96\xb7\x9f%L\xe7W\xed\xd6\x81\xe8\\\xab\xbbE\x86\x00Td\xc4\xac-\xf4\xba\xcd\x98\x02\xbc\x80#\x98M\xf7\x1c\x00NKa\x84\x91\xe9\x0d\x15P\xda0*:0\xaa\xac=\x9b\x19%\xfb[\xe4\xe5\x9bm\xcc\xce\x18\xeb\xb6\x04\x0e\x9d\xb9%U\x84ZV\x06\xda\xd7-\x92^\\QzQ\x07\xe0\x15e>\xdf\xcc\x08\x1f\xdc\x15\n\x02\xb3<\xab6\xeb\xf6\xb3\x8a\xcc6eR\xdf\x88g\x9f?\x83\xbf\x9a^\x9d\xa1\xb1\xdb\xd5Y\x08s\xb6\xf3V\xba\x0ca\xddB\x01\xb3A\xc6f\xa5\x909v\xa64\xed\xd0\xbf\xb97\xa0\x03\xc8\x80\x83m\xcd\x14\xf5N\xf5\x81{\x18\x98\x14\xe1\xbar\x03G\\Ab\x9f'X3pt\x8b\\\xa0\x8b\x10\x9d\x16(\xd1M\x1b\xa2;\x0f\x9e\xc2\x8eO\xa7\xe8_\xc0\x11\x9cG\x19\xf9T\xfbA\x10\xcd\xf3\x8c\x04O\xf9\xe4]\xc1%\n\xed\x8f\xb2z\x17,\x00\xa8\xdb\xbcD\x91#>\xa1(um'3\xdd\xc2n\x90N\xce\xc6\x8eZ\x94\xde.\xa3\x0c\xcf\xc9\xb6\xad\x01\x87\xc7\xa7\x91h\xa4+\xa7#QKW\x9e\x8fD7]\x19\x87\x82\xba\"\x17\xf92D\xa7\x95\x0eZ^\xd3\xe5\xa3\x98I\xa1\xe6_\xc2\x11<\xebb\xe6'\x8e\x99;\xf6\xab\x981\xe5\x8a\x87\"\xbf\xdc\x06uu\x85bb\x87\xd7v>\xc5mE\xde\x1be\x1e\x81\xb7\x19*p\xc4\\\n\xc4\xbcq\xfe\xd4q\x9d\xac\xb5\xb6\x150n\xfdJ\x0f\x1b\x8d\xf9K\xef\x89<\x89T\x85\x08G\x8e\xceMQ_E\xbb\xe0J\xd8\x87\xdf\xe9T\xb4\x85P\xd1\xf6\x82Z\x03\xf7\x17\xb6k(\xf8\xf0\x98\x07\xa4b\x11\xa1\\\x15rs\x08\x8d\x06\xab\xdf\xe9jL\xa7D\xb9w\xfc\xfb\xc7\xeb\xb3\x07\xcb\x84]\xfe\x0d\x80u\x9c\xe9\xc1\xe3'\x036\x16\xffo\x98\x1e\xdc\xcd\xd5s\x9a\xc7\xf3S\xa3\xc2\xb0\x94\x9c3\xd3R\xd0\xe6\x0d\xe9\xdb\xf5\xc9\xc6\xe4\xdb\xcb \x90(\xbf43\xf2\x9b2\xa5U6e\xca\\\xc5\x8c\x15\xab:\xae7\x15\xe6$\xc1\xbfl5Y\x8aPQ\x9b\xfe2\x7f\xb1\"\xf1\x9c\x94\xd5\x04\x12\x9fD\xfc\x87\x81B\xe8\x1b\x89\xe1\x08r\xf1\xe5\xd4\xe3y\x84\xee\xd3\x9d\xe7\x19\xf4\x10\x1b\xccC\xf9\xf93\x9c\xfb\xb1\xd9\x0f\xca\xdf\xa0kKM>\xb1\xf8\xe5\x17i~\xc1\x14X\x17\xe8'\x1e\x88\xcd\x1c\xd5+\x929(\xb9)\xc9\xceY{hH\x97G\xf3\xb8\x8e\xd9\xdf\x9b\xc0r\x00]\xf5\"\x01;(\xea\x84\xa63.\x8a4\x99\xa1\x02\xe9\xc1\xcf\x15\x8bO\xc1\\w\xfer\xfa\xf6MT\xc4eE|LA\xb4l\x8c>\xe3\x05\xf91\x8f\xe7C\x0c\xf4-\x1d\x85\x0e\x84\xa2\xe4\x98\x01\x01\x8e(\x85\xc8\xa3\xfc\xe2g0j\xf5\x9dX\x83\x9c\x8d\xf5\x84\xdbl\xeb\xb9\x01\xfd\xe9\xc3a\x91\xf7\xa9\x83\x9b\xe1B2\x9cT\xaaO\x19\xf6\x8c\x94a\xafM\x19\xf6\x18e\xd0\xe3\xaa\xce\xbf\x04\x94\xa5\x15\xe3SC\x8e\x10\xa1\xd6e\xf6@:\x1d\xaf\xf9r@ \xba9\xcd\xe8@\x85\xbf \x9a\xfaGI\xc5\x1d\xa1\xa6\xd9Y\x00\xc7\xac\xd2\x04\xa6\xf4\xff\xb3\x10\x7f\n\xb9\x8b\xe2\x93\xf0U\xd1@\x1d\xf1\xb7\x1b,s\xc0ld\xe0\xa4\xd0Gfy\x99\xf0#C\xc4\x89\x13\xcfd\x9c\xd1\xa3\xadl\xaeVm\xfb\x0dS\xe0\x17\x12\x15I\xf1\xa5\x06,\xcdM\xe3,Oy\xd6\x9a\x97\x98\xf0\xcc||\x90(N\xd3\xfc\xfad]\xd47\x18;\xd8|||\xd9\xcc\x8fE\xf2\x1dJ\x1f\xf5WX\xdd\x04@es\xfdb\xc8\xc8\x1f\xfb9\xcb\xdfp\xc1\xa2k\xa8 \xcd\xe5\xd7y\xff\xe3+\x91~'\x9b\xe5s\xf2\xd3\xfbW\x86\x80P\xa0p\x92\xa8\xcdM\xb8j\xe8\xa6\x99]\x1eX\x1dma\xd0\xfc\x16l\x81\x19\x95\xcf;\xf7\xe4:\xee0\x08\xcdW\xbe\xb9m\xa9rfd\xd4\xde\xbf8C\x97G\x18\xfe\x1d\x8e!\x8f\xd6q\xe1'A\xf4s\x9ed\xbe\x17zt\xf3z\xebMZ'\x0c}\xd4J0\xe9\xd4\xd7\x03`V]M\xc0\x0b\x0d\x06\x99\x15\xbe\xfd\x1f\x07{\x86\xf75{\xbf\xf7\xc4\xf0\x9en\xbfj\x02\xdeg\xaf\x0fP\xa4^\x94\xe9\xc0\x14\xd0\x9e\xe7\xb4M\xab\xe1{\xe0\xceU#\xda\x02\xce73U'7Dx\x85\xd1\xd64\x1b\xb8>\xa1\x9bvg\xa7\x8c\xaa\xcb\xa48\xa1\x88\x9ed\xcba\xab\x82\x9c\x87\xeb\xefo\x0bc\x88V\xe0l\x95\x1d\x83EQ9\xf6/\xa2)\xc6^ny\xe2\xbf\x9d6\x82v\xa3Q\x88\"6\xf84\xa1\xc7\xcf\xc6\x8f\x8d\xeeJ\xa2pc\x1fC\x1a\xd2\x10\xf2 \xd4\x05v\x0e)Oo$0\xeb\x86\x9dB\xa90Y\xa0\xe1\x91~\x14l\x85\xcc\x0e\x0eI6Of\x14\xa3u\xf1R\xbb9o`\x00\x8f\xd3\xdf\x8e\x95Aq\xc3*\xf9\x08\xee\xd4\xf3\xd0\x9d\\[=\xc7\xd6\xfe\xb1!\xa5!\x8203\xa9Y\xe4\xe5Z\x7f\xd0\x0c\x86fM\xfb\xfb9 \xc6X\xb3@\x83\x04\xb1\x9fL\xc9\x19;)\x07\x10|`3\x168\x15\x83\x8c\xc3d\x12\xf9\xf29\x7f\xf9\x01_\x9a\xed;P\xe8{\x80\xf4\xbb\x88\xcb\xfa\xe3\x03\n\xa9\xfbT\"y\x90D5\xa9j\xbf\xb0\x9a|\xf08j\xa6\xf8\x9d\x80J\x04.\x01d\xe4\x1a\xe6\xa1\x06\xa8=\xf6\xd4*\xd6\xb06\xa3\xb8(H6gAu\x92i}\x86\xf6\xbdC\x00\xd6om\xa6\xf4\x94\xe3\xac\xfc\xc40\x1d\x1ez\x98\xe1T\x7f\x07j\x91L\x1bq\x058\xf8V\x98)\xb2*\xd2\xa4\xf6\xbdco\x00\x01\xae\xa0g\x0b\xbc\n\xa1\x1b\x8aB-K\xba\x9b\xa6{\x03G ^ O\xf7\x07j\\\xa0=\x86\x19\x85nl\xf8q\x8e\xe9\x96\x04 db\xe6\xcd\x00\xb2t\x90#\xd7 \x87\xeb\xa6\xe3\x8bu>%f%6e\xab.ZCl\xa8\xf4\xf9PFmP\xa9u?\x0b\xa7(&\x8c3\"\xc4\xb5-\x9d\x8d(\xf2fSG\xb0C\x96\x0c\x08\xcfG\x12\xb0l\xbf{O!\x83\xef\x81<\x85lw7\x10bYC\xb8\x87\xac\x8d\x04gRG\x8b$\xadI9~1\xccZ\xfb[\xc1O\xde3\xb9@@\xd3LI\x8f\x84c\x0fv\xf1(\xf7\xfal\x1d \xa3p\x11BE\x99^}{L\xe1u\x04K\xd8\x85\xeb\xb0\xd9\xd4x\x928\xecj\xed\x94\xbe\xb2\xc1q\x08uT\xad\xf2M:\x7f\x91_gi\x1e\xcf\x9f\xa1Z\x8deg%\xe9\xc2p\xdd.\xed\xc3\xfc\xcc?\xe8eK\xa4Eh\xc5\xf7\x86\x94\xe2Z\xa3\xe6\xb9\xd0\xa7\xeb^\xae\x1a\x8b\xe7\xfe\xcb+\xf1Rc\x0f\xad\xba\x1a\x0b\x9b`\xf9\xec\xcf\xec\x8c\x136\xc1l\x07Ri\xf8m\xf9\xbf\xe9\xea K\xce5)\x97\xe4U\x86\xcf\xde\x96\xb4\x02\x1cA\x8ao\xb8\xc3\xb7C\xc0\x1bh\xd6Zz\xdf\xd8\x11\xdf,\x11\xb2]Y\x7fq3\xda\xfa\xb2E\xad\xfb\xad(B\xf2\xeeg\x90a \xbaK\xab\x9b\x03\xaa\x8c\xf5,2\x08\x82\xaa\x01\xbf_\xf2\xc8\xe85\xfe\x95\xf9\xa4\x97\xa8[6\xd1F}Z\xf9\xe0;\x8d\xc5\xfdZ\xa0\xb5\x169\x97\x02\xc5\xbe\xd5\xbd\xbd\x11\xdf\xf6Ru\x02?\xf5\xe4\xae\xd2\x83\xa3\xed(op\xda\xe8\x83a\x02\x9a\xf4\xee\xdd\x1d\xc0\x8f\"\xdbI \x88?=2\xaf\x14S+y\x94\xad\xe3\xf2RRj f\xae\nUL,!\x17Kn\xa0\x97\x01\xf6\x8d2\xc0~[\x06\xd8?\x1b\x08C(Ng9\xcc\xeb2.\x1c\x0f\x14\x16\x82\xfdi\x00\xd5u\xc2T\xc5QQ\x92+\xe4\x8d3\xf2\xc9\xca6\xce\xe2\x8a\xc0\xded\xb0\x0e\x08\xd3,\x93\x10[\xdb\x84X\x91\xc2\x1e5\x02\x14\x96u@O\x1c\x0c6\xbf\x92\x04\xac\xf9\xfb\xf3gL.\xa7\xdd6q\x10\xc2N\x1c\x95,\xa4\x04\xa6)\x9b\x91\xa2\xce\x07w\xb9Z\x18`\xe0\x08\xf6\x1d\x0d\xb1.J\x12_Zk\xda\xef\x87\xe5\xb5$\xef\xff\x11\x9d~\x7f\x1e\xda\xfb\x17\xb5\xe0\x9a=r[3\x12\xd5{\xcc\x1c\x9fdu\x08\xf4\xe7h8=\xf9u\xc1\xc4\x87\x1c;\x00\xe1\x89\x1d\x08,\xe3lmYjlm\xdfa\x1f(\xa7_<$|\xc6&\xe13\x1c\x96/y8+\xce\x81\x19\xbb\x90<\x9a\xb1\x1f~\xb8\x88\x08z\x92,\xec\x1f\x86\xca\x0ex\x14\x82\x8f\xf9\x1eJ\x8c\xed\x82\x071\x06y\xa1O\xcbt\xf8\"\x0b$\xe0\x1c\x90Q\xb2\xab*2\x8aa<\xa1{]=@|\x16\xaf\xd4\xadw\x07,\xa0[A\xed\x1a HU\xe4YE\xbe\x84\x82\x1c|\xf7\xebn\x8d.\x0598d$\xa47\x13\xa3\x0eP\x14\x84\xdc\xc1\xa1\x1b\xe4HT\xef\xb7\x89\xc8\xfexP=\xfauA\xc5\xc7l\xc9\x0f\xc3\xc0\xe0\x82\xbe\x8c\x8c\x18\x9c\xc3Da\xcd}goN\x82\xe5\xd0\x01\x83\x10$.\x1d;n\x04I\x0b\x0e\x9e\xe0b\x1e\xb0\xbb\xb4\xb8\x9e\xad\xfc\xfd\xc3\xc0\x10\xafFW\x9ai\x1c\xda\xa7\x01w\xb8\xba\xcc\xc4\x8b\x8e\xdd\x01.\x87\x0eh\xce\x1a\xf4s\xae\x94c\x19%J\xc5Z#\x08\xf8\x8f\xe7\xf9\x1c\xc3\xc5\xf2\x9fL]\xc5L@ \x97{Q\xde\xc6G\xf5A\xa8\xbb\x99S\x0b\x1b\xa5\x03\xda \x19\x8b\xf2\xcb\xd1\xeb\xf3\xd0\x02'Q\xeev}\xf0\x16\xd1\x0d\x9c\x89\x0e\x9c\x89\x04'}\x1cv\x93\xcfw\x0b\x82\xf1\xe1\x81\x1d\x8c\x92\x8c\xc6\x17\xe5\xa6\xa8}\x8f=\xf0\xc2^ \xefna]X\xf0 +y$\x9b{#\x86R\xd5y1`\"\xa9\x07\xf9-K\x93\x871S\xa7\xc6o\xa7\xf4\xcc?x\xa2\xd7\xf9i\x02\x18\xdc\xea\xd4D|\xa0v\x85t\x03\\\x16\x92\x10\x07'%![(\x8d\xdbnVB\xa125*{\x06%B>\x98\x07\xfe\xcfU\x9e}\xfe\xb4N?\xdf\xc4\xeb\xf43\xa6\x00\xfdx\xf1\x80\xf1\\_|\xb9\xd3\x8d\x10\xb2\xad9\xe1\xc3\xfd\xffxk\xc2\x81\xc1\xb4/1I\xa0\x06Q\xfe\x1eCi\xe2\xd5\x97\xf7\x00\x83\xa0\xe0M\xba]F\x16\xe6\x04\x99`\x02\xddkTS\xe3\xb3\x01\x13)#\xa3\x85\xbaR\xba9\xd8\xbc\x9b\x00\xcfti\xce\x95\xa5\x19GZ5S\x991+g\x9d9\xaa#i]\x0c3\x19\xeeW\xa4\xfc\x0b\x85\xf1\xd2\x8d\xcaiL\x85\x9d\xf1\x19i\x94ua6\xca2\x0db\xee0\x08Q\xb9e&\xeb\xd4\xfaJ\xdf:zAY\xf6\xb8\x88\x9b4x!\xe1\xc5\xf3\xb9\xb0\x8a\xff\xfc\x99\xb2#\xeb\xfc\x8a\xb4\x9f0\x06\xc5\x10\x99\xc6\xb8/;\xc6Z\xa6 ^\x0d\x82\x0f\xa7\xff\xf93\xd0\xb9\"$\xd7\x9b:\x16\x90D\xc9\xfb\xc6\xd1\xd4x=\xd8\xcf\x15o\xdfo\xe0AA\xd7\x07\x80|\x8a\xb7\x16\xbag/\x08)\x9a\xe7n8\xb4t\xc0\xa1\xaf\x8e\xc87Fcl\xb3\x87\x06\x1f\xe1\xa9\xbc\xd6Z\x92\x1aM\xaf\x7f\xb8y\x97'\x19\xa5\x08\xfd\x18\xb8\x00.n\x0f\x82\xbcw\xb2\x86\x86\xda\x88\xd1\xbf3\xff\xbas\xa3\x84\xbe\xecz1t\xeb\x7f\xce_\x1ej\x0d\x06\xae\x87\xec\x10N\xc4\xa7\xda\xdb\xdcO\xe26W\xf7\xf2T|\xaa\xb5~x>d\xc3p)>\xd5:\x0c>\x13o\x1f\xf7\x8d\x18\x9a+\xdc>4\xe3\xf9|2,'\x8b2(3\x81\x90\x9b\xe8>\x1d0\x1c\x1c\x92\x9b@\x91\x9d\xb4\x154\x08\xd6o\x89\x93\x85 $\xbaw\x94\x8a\xde\xe9|9a\xb6Ny\xfb !\xf5\xba\xab1S\xba\xe8\x1a'\x8a8\x899\x19\xca\x86\xa3\xe5\xdc\x06\xdd %\xad\xb7!L\x87\xb6\xa3\x89\x9a\x9b\x0e\x1ae=\xdb\x8a\x0b\xdd\x9a\xdaV\xf1\xaa!\xb6\xe6\x11f\xcc\xeb\xf85\xa9c\x1c\x1d\xa9\x00\x83}\xadI\x8d\xaa\xcd\xb5_3\xd5B\xc7\x8f\\\xd0\xfc\xcf\x9f[xEk^\xe9)\xd7U\xc8\x9b\x15\xe9l\xafl00\x9e\x85\xf5Y\x10\xde\xf1\xc8m\xc0\\v\x0e\xc7a<\xbb\xd0\x83`)A0\x1ee\x14\x06\xe0\xc2\xc8\x00h\x9f\x8a\xdd\xd7{\xa9a\xcf\x8a\xb8$Y\x8d\xa1\xba5<\xda\x10\x83\xd6\xf1\xf0\xac\xed\xf1\xaa\x95\x84\x9aG\x98B\x17\xf1\x95]\x9b0\xbf\x97\x92\xf9\xbd\x18aE\xfbE\x9f\x18\xd4\xc3\xa2s\xb0\xa5O\xf1\xba\xef\xfd\xa3\x01\xc6\"\x8d\xeb\x9ad\x13\xd0\x04}Yl\xd2\xf4\xe6\x8d\x08g\x84s\x1e\xe1;\xbe\xf0g~\xea\x93\xae\xf6\x1a\xf4\xe3\xc8:\xddh<1\x93\xea]\x99\xaf\x93\x8a\x8c\x18D\xc1\xb5\x86s\x9f`,\x14\xa7\xb1p\xcf\xae7\xe4\xda\x117\x86\xe3\xa3\xf0\xa1\xe0}m\xa5U\xb5\x01\xb8\xa8\xdb`\x08\xcf\xc1U\xc4j&\xf7\xaeL\xd6I\x9d8kA\xdcg\xb9\xf9\xcdg\x99T\x7f\xa9\xf2\x8c\xcb`+\xdd\xfb\xe7L\xde\xed\x89i\x16\x84\x92jn!/\x9b\xb4\xdc`\x1a\x18\xefQ\xe3\x1b\x9fT\xaf\xb9&b\x02W\xba\xd7\xcf\xe6s\\\xb0\xa6\xdaZW\xed\x7f\x92\x8c\x94q\x9d\x97#\xe6\xf5\\\x92d\xe5\xfb\x97\xcd\xd7ns\x13\x1fL@\x93P \xa9\x18\xdb=\x81B\xf7\xf2\x84\xe5\xaeu\x1eq+x\n~\xdc\x1fc\xeb \x95\xdf\x15C\x1f\xa9\x0c\xfd\x9dRap#t\xa3\x8e}A\xae\xb4'\xdb~\xba?\x94fm\xf8\xd3'{\x03\x86M\xb6O\xb7\xcebw\xb0\xf7\x9d\xf9\xd3\xff`s*q\xbfw\x07\xfeJz>\x8c\xe5o\xe8;\xae\xe8k\x97\xbcv\xcfF]_\x9d\x850\xb8N\xea\xd5\xf3\x92\xccIV'qZ\xc11xI6K7s\x82&`U\xbc&\xf7Y\x9cx\x8d+\xb6`\x03\xc4z\xdb\x14yd@hB\xe7\xbe\x81Pm\"p\x9d9\xbd&`G]XML\x01\xecX\xf5\x1e\xb0\x8cyTA\x8d\x177,\xfc=\x9b\xd1\xb6&\x9a\xd0g\xc6\xcf\x06\xd2\x1b\xcd\x9a\xe5\x99h\"\x88\x01\x8aw\xaea\xe0@\x95c/\xf2\xb9>x\xa7.\xcb\xc9\xef\xcc\xbf~\x85\xdb\xbdd\xe8\xb2,\x1e\xf0\xe9]\xc7\x97,\xb7\xf2_N\xdf\xbe\x11N\xbd\xb3\x94\xc4\xe5\xf3x\xb6\"6\xbb\xd6**\xd2\xcd2\xc9\xaa\xa8$\x8bJ\xf9\xb0cB|\xeb\x9aQ\x1eT\xc2R\x9b\x17J\x10\x97z\x95\x18\x92\x99\x9c\xa0X\xd8\x19\xe0<\x9f\xe1\xf0X\x14]\x12\x84\xdd\x19,TX\xf8\xd7C\xeae\xddf2\x84;\x01\xd3f\xba0\xe0\x97~JB\x8c\x9a\xb6\x07m\xd0i\n\xeb \x01N\xd5\xb0cI\x81\x931MM\xd3X\x13\xf2>\x08\xf5\xdf\xad\xf5\xdf1\x9cN\x08~\xc7\x8f.$\xec\x85\xb6~\x9c\xa6o\x17A\xd8\x8d\xf9n\x06\xb55k\x9b\xbc\x11\x1a\xa6<\x17qE^\xe4\xb3 \x9clCi\xf8\xf0\x07IfW[\xa1\xe5\xbdE\xa1\x82\xfe\x8b\xa4\x9aQ1$c\xec\xaa\x86\xebmj\xf3\xd5y\x1d\xcf\xca\\\xcb?\x8b\xb2\xce\xe7$\x15\x94\x86W\xefGE\x01\x854\x9e\xbb\xe4E\x86\x8eos\xdc\xac]b\xf4mv\xd5\x1b&\xdb\xb8\x1d\x8b\xf2\xa5\xee\xc7\xa2\xb8\xba!\x8b\"\xcf\x8a\x9e\x07\x87\xc9\x16\xb4[\x98\xeb\xa0[\x8fc\x1c:D\x91#\xb48v\x882\xac\xf2\xe6\x8e\x1e\xe6f\xb4>\x1b\xa283D\x9d\x0f\x9c}8D1(\xd2\xfd\x00&0\xeb%\x13\xb3\x9d\xe6\xa0\x90^\xc2N\x083\x8b9\x94pl1\x1cd\x8bE\x92\xa2{W\xff~\xde\xc4\x8fT(\x8c\xbe\xee\xaa\x1d\xb0\x0b3\x17\x19R\xdc\xb1]\xd2\xa3E\xfa\xcak9\xc66}\xd1\xd7^\xf2\xa6U\xc2\xa5\xaf\x89\xf1\xe3\x9dy\xf9\x0b^\xdb\x91\x97?g\xebr\x99\x14B\x97\x87<\xa7\xbe\xf25\x8b\xe7U\xd7\x1a\x19\x1d\xb8\xc1\x13\x89\xf8Ibd\xfai\xad\x13tc\x0e\xb1E\xbc\xd5\xbe\xa6\xffl\x04\x9d\x0b1fN\xed\x97\x18\x91\xd1\xcck\x8c\xe03\x1cy\x8c\xdb\xc0?\xe1t\xbf\x9b\xfa\xbd\xcfZn8\xf7\xa8\xb5\xb4\xe2\xd2\xfc\xbe\xe6\x15K\xbbY\x19Rnf\xfe\xd6\xba\x83\x83\xbd\xad\x93\xbb?\xd9Z\xfe\xdfZ\xfa\x1f\x18\xabU\xf6W\xdf\xdc\xb9\x10a\xe2\xc8\x0d\xfaOy\xa2\x9b\xd9\x03TAE\xb3\xb8\xa87%9\xad\xe3\xd9\xe5\x872\x9e\x1186\xbd\xe1\x04\x9d\xfe\x1b\xcd\xf2\xac\xaa\xcb\xcd\x0c\xdd\xdf'\xecYEkR^C\xfan\x06\xec\x99\xe5\xaaA\x1fx+k\x05\xde*Y\xe0\xad\x92\x05\xde*ww\x03\xc8\xa6e;\xf0Vi\xe0\xacqpkRU\xf1\x92`\xae\xc6\xbd\xb3\x90\x99\xd0\xd4\xad\x93J\xa7l7\x11\x8c\xac\xb9\x8bW\x9dUC\xf5\x05\xcf\xedC\x8f`\xf5\xa9\x02:\xfai\xd8q\xa8\x1a\xad\xf5\xfb\xed\xf12\xa9^\x96\x84\xa47o\xe25\xb1\xe7w\x90\x86\xe4S\xd2\xf2\xc7\xd1\xae\x1d;\xc4\xa5\x0b\x9d\x91\x80\x97Q\x92\xcd\xc9\xa7\xb7\x0b\xca\xa5\xfc \xee\xefS\xda\x9d\xcb\x87Y\xf30q\x0d=)WZ4BX#}$\xb1\x12e\xf4i\xf2\x1a\xb9K\x17M?\xc7:\xb80 \x1dX\xe5\x85\xa0f5\x0b\xc1\x13\xe7\x05\xfe\x10\xf9\xf8^\xb4\xbf\x98\x89\x90\xb4\xd5\x83j\xb6\"\xeb\xb8\xfb\xb4\xd5\x88\xf2\xbc\xdd\x95\xda\x0c\xef\xe8\x946\xa7\x1f{\x82cg\xfd= \x9f\xe2u\x91\x12\xefl\x0c\xc6v\xc8\xf7\xc3/ \xc3\xadW\xff\x96*X$G\xc6\xedp\x07\n\xda\xfe6B\xf3\x86~03\n\x87\x8cG\xf9\xc3`\xef\x8c\x9c\xed \xc5T\xef3r%\x91>\xb9F\xab\x8f~'\x1d!TP\xdd~E\xb1g\x90r\x97\xa4\xca\xd3+\xe2w\xb5\x82\x96}[G\xf3\xa4\x8a/R\xc6]-\xe2\x19\xc1\x00Q\xdd1\x84\x18]\xfb\x92<+\x92\xeaC\xbc\x94\xd9C\xfd:\xd0G)\x1e\xa2A\xb34!\x99\\\xc1Nt\xb7\xdfL\xcbxh\xd62\xfah\xed\xffm\x80\x91\xe4\x1e\x05\xba\x8a\x82\xa1\xd4\xa7\xf3\xa9\xc4[\xad\xb7A\x8a\xbb\xf9;\x03SY\xfa\xa9!\x8cb\xe6\xef?2\x06Q\\\x0cEP\xd4\x86\xb0[17\xf9'\x86\x00\x8a\x99\xff\xad\x8e#^s\xbe\xb7\x0d\xd8\x1ce\x0d48\x94\x82A\xae\x06CL\xe5\x8f\xe8\"\xc9\xe6~\xb6I\xd3\x90\x7f\x16\xf0X\x1f\x14\x9f1m\xad\xd2\x04\x7f|\xba\xb9\xa8KB\xdf\xce\xd5\xb7\xe4\x13\x99mj\xb4\xd0\x11\x7f\xd3\xc7\x9d\x18\x8fi\xebA\xabB\x13\xf01\xed=\xa4\x15\xdbJd\xe5g\xc82\x85\xb0\xb3\xe1\x87M\x92\xf2f\xae\xa2w\xcf\xde?{}\xf2\xe1\xe4\xfd\xf9\x0f?\xbd\xfa\xf1\xc5\xc9\xfbS\xd3f\x82#Xi_\xd0\x0f.h\x9b\xef\x99\xd4\x84\xed\xaa\x0f\x10r$-X\x9f\xfd\xdd\x90\x17\xaf\xe6\x13Xc\xe2\xfb\xf6\x86\xc0q+-\xc8\xac\xd1\xe2\xf1\xffY\xd8\x17\xfe\x00\x9d\xfc\x98 \xc5\xfe4\x99\x8e\xdao [\x14\xa5\xbd\xcbm\x17o*n\x0d \x84`\x1d(.\xe8y4\x96fe/l\xf4R\xc8\xc3xt\xef{\x83\xbe\xbb\x94\x08WRi\xcf\x02\x88\xd7\x06\xed/\x89Vy\x85\xbe\xba>\xff\xf3\x082\xfc#@ 3I\x80\xbf\x17\xbf\x8e`\xca\xc5\xdcY\x9e\xca\xe8(\xde\x84\x8a\x13^p\x86_^\xc4\x15y\x17\xd7+\xfe\xa9\xfcy\x04T\xba\xb3/\x80\xaa\x03\xc9\xc7\n\xca\x16e\xd3\xde\x80\xd01\xfc\xe9\xfe\x17\x98\xb8l\xadW{\xb2\xf7h\xdbO\x0f\x1fn\xad\x1f{\xb27` \xf4\xef%\x9a\xa9\xbf\xee\x9c\x1bG\x9bdv\x01\x89\xb8I \xd5\xeb\xb8\x18\x08.\x9e\xc3@\x84\xf0d\xc8\x1dX\x1a\x0chu\xbe\x9b![\x83j\xc8W8\x15\xedj\x87$\x82\xa1\x1fj\x9d\x85\x17C\x9e\xc42C\xa86h\xb4\xe0\xe5\x0f\xf6\x86\xdc\x81\x87Y2E\x14\xbd\xf6I@E\xc1\x02\x8d\xb6\xad\xaa\x1a\x11n\xfdP+5\x89x\xeb\xda\x81\x8b8\xda\x87\xda\xb7\"\x8e\xf6Cm\xc3\"\x8e\xf6C\xed2 o\xf0\x87Z\xafm\xe1\x0e\xfeP\xeb\x98\xed\x94\x08A\xb9\x00\x1e<\x80;\xf9\xb5\x98\x98K\x82^.\x12\xf6b\x98\xcdd,\x92g\xf1'\x99\x93\x8b\xcd\xf2GrE(\xe7\x98d\x8b\xdcR_\xde\xfaO-\xael\xac\xe2\x9f\x93\xaa\xce\xcb\x1b\xb3\xd5\x9a(\x8cy\xb07+|s\x1d\xaa\x16\xcc:|.Y:\xdb\x07U\x1dSi\xc46\xd4\xc2\xb5\xbd\xc6\x0c\xc3\xd2\"\xaf\xf8\xa1$d\x82\x9b\xea\xdc,4\xa9\xa5Z\xe5\xd7/\xe8\x02\x9a31\x89\x12\xa7\xa93\x1c\xd8\xd2Q2M\xa5 FY-h\x91&\x17\xafI\xbd\xca\xe7\xd5\xa4\x8b\xab\x9dd0\x14u\x035\x10\xbcu\xdc\x1d\xc6\\\x93RJ\x14\xca\xc1\x04\xfc\x06eI$\xb7w\xbe$5S\x16\xf0\xceE\x05n\xf3\xad\xd6\xe3\x8f\xfa\xd5Wq\xf5~\x93\xc9\xaa\xecg\xbf\xdau\x19\x17\x05\x99\xbfk\xce&\xfaT\x98\xfa\xac\xe3\xc2\x97\xd5X\x1d\xa5\x89@\x84\xe4\x91\xc0\x89\x1a\x13j\xd1\x01\xc7>fD\xd4T\x8c\xe7s\x7fz\x166\x1cp`\xf9\x80\xe3\\\xf3\x11\x7f \xbf\xdb\x14\xf3\xb8&\x1c\xec\xbe\xda\x94\xde\xd2`\xd0\x11\x87\"\xc1\xbcA\x02\x12\xc2\xd4L\xbd.\xc9\xcd\x04<\xa4L\x03h\xc7Y\x03\xbb\xee@\x14\xe4\xef\xe94\x1a\x9a\xc7\x8c\xf5m\x1f\x82z\x9bV\x87Z-1\xbbBc\x17j\x19\xaa\x8c\x8f!\x83\xfb\xb0\x0f\x13\xd8\x0bBd?\xf6\x9fB\x0e\xdfC\xf6\x14\xf2\xdd\xdd\x00\xcai\x8e73\xadK\xb6\xdc\xc1%\x17\xdd\xbfy\x94\x95 J\xf3e\x13\x86Jc\xbd\xa1\x16\xb39\x8b\xc1Fd\xe8\x90a\xcbtE\xca\x8b\xbc\x1a\x8a\x04\xb1\xd5B\xc9v\x99\xf3_{\xd9l\x0d\xc0\xbf\xcf\x82M\xbd)\x06\xce\x84]\xf0\xce(C\x7ff\x8b\xca&\xcaWX\xcb\x86*\x8dYNKx\x05P\x04dAE\\lk\xd4\x827\xb9\x83*\x13Qr\x83\x08\xd0-B\xfa\x99*\xf4\x99\x9ex\x98F\xb8d\xd70h\xf4\xde\xab\x10\xc0\x04t\x04\xda\xc7\xb0m9\xbf\xc9Qk0\xe9G\xc4\xab\xca\xad\xdcu\xb7\\m\x93P[\x14>\xd1\x9d^\x889\xcc\xc5G\xaeHy3\xce\xb1Y-R\x86<\xe2I\x98\x9d\xbe4$\x1bkU\xb1o*\xde\xb7T\xd4tL-K?\x0f\xc1\x988\xb1[0\x16D\x08\xb3\x10\x16!\x14\xe8\x14\xbf\na\x8d\xee\xab7\xf6\xb1\x80n\x85p\x1a\xc2\xf3\x10.Cx\x16\xc2\xdb\x10\xde\xb9A\xbe[,+\x11o;~\xd0\xadL,V&\xdeje\xbae\xdb\x95\xea\x16\xcch\xdd\xa7A\xf9\xa8\x00\x16C%\x96\xf9r\xb6[\xa4nq\x0fk1T\xec!*l\x85\xa5b\xb8$7x\xd3\xbf\x98.T#\x9a;\x07\xde\xc3\xff,\xe0\xf1\x9d\xd7L\x0f\xe3D\xe3\xd9\xe9\xa3>\xf9\x92\xdc \x0d1%.u-,\xe2\xff\x97o\x93f\xa4\x8f\xbfl@\xe0\x96\x11\xc4V\\\x93H\xd9\n\x9a\x89)\x98\x1b\xa2\xe2m1\x9d\x9f\x85\xa8G[H\xab+\xd5l*\x08Q\x8d\xa6>\xc2\x93\x1dC\xa9\xcc\xf1\xcfu\x88\x87B\xa2\x0dD1\x9b\xe6\xd17\xdf\x94dq\xc6\xb2\x95\xee\xec\x85\xa8=\xdb\xd9gf\xbf\"\xed\x91\xa4\x99\xfb\x0fC\xb4\x0d\xee\xb8\xbe\xd0\x9fU\xf3\xd3\x98 \xd3\xb58\xa7C\xb2\x15J\x1c0\xce\xc5'8\x82\x13\xc4\x1d?\x08\xa2y\x9e91r.Eb\xe4\xe1\x7f\x18m\xc0\xe8&p\x04\x9fD\x10\xf9\xe7p\x04\xf9\xf4\xf4,\xc4\xf8\x95\x0b!\xf7\x9c\x06!\x86\xac\xd4\x9c^\xcf\x83\x10\xdeb\x96\x17\xc4\xb2\x10\x06\xd3\xfa\x8e)\xf1\xd8\x84H\xb6\xf2\xaf\x04\xf5\x9dg\xff\x0d&K\x91^W:\xb2\xf6\x16\xe5\xb6\xd9\xf4\xed\x19\xd2\xb4\x80Y\xb8\xa5d\x19\xd7\xe4\xff$$\x9d\xfb\xa5\xcf\xd8\xd6\"\x08\xc1\xab\xf7\xbc\x10\x0e\x1e\xdd\x05\xcdr\xc9\x81e+\x18x\x9aJ{\xa7,d\x0c=\x83\xef\x1c\x1f\x0e-)\xb8\\\xcb\xbf\n>P\xa0\xbd\xc3\xcc\x06\x19\x8b\xd0\x96a$\xbbw\xff\x0d8K\xe9r\x80\x87\xfb\n\x0b\xf8\x1c%\xbcK\xcc\xddZ\xdc\xc5\xfe8tt\x15\x1c*\x82Q\x89\x9b\xf4\x8b_62\xb8CV\xf0\xf0Ny\\\xc7\xcc\xaaC\xe5\xce&v\x07\x94M\xb2\x91\x87\x98\xb3\x153\x0b\xc6\"c\xde\xc3\x80\xf3\x9e{\x8c\xf7\x8c\xadi\x02m\x85\xc9\x1cw \x9b\xcbq?Ty\xe1\x87\xfb!\xec\\P2s\x12\xf1]\xa4\xfc\xddM\xc05\xb68\xa5Hs)\x9426c>\x0ca\xe7\xfc\xce\x89\xe2\xc3;\xd8\x81\xf0/D\x14Y\xde\xbd\xeb/\x9b\x14[\xc1;\xd86\x92D/\x92,\xa9V\xfe\xc3\xc3;\xc1-\x87D\x89\xb6\xd2\x1b\xd9\xde\x9d\x8c\xec\xf1\x97\x8dl\x1b?sS\x913t\xf4?7\x95\xedp\xf26\x84\xd8\x9e\x98\xd0V\xa6Tj\xa7$\x97\x92\xaf\x87\x8f\x1dB\x1a\x9b\xca\x94\xd2\xbc\x10\xa9\xc8\xc3\xef\xdc\xee\x0e\xba\xc5\x10\x15r\xa8\xdc\xb2\xc4\xf1\x9d\x8b\x83\x9b D\x9b+\x0c\xc9\xcb\xcf\x8d\x82\xeb.\xe6\x8a\xeeBj\xe2\x1f\x852f\xac\xa2\xba\xc8uw\xf8\xdd8mc\xf5\x19\x88\x81[`1\xa5\xd5\x18\x84x\x8d\x1e\x02w\xa1\xae(%\x97\xb4\xa5zb;\x9a<\x1e\xdf\xf9N[\xc2\x11\xac\x85\xc6\xa1\xec\x88m7\xfeR\xbcZ\xf28\xa3K)\xc1\xed\xefo\xb3J\xfb[p\xa4\x02\xdd$l\xb7\xd0En\xc1\x97\xb1\xf1n\xc1`\xcaq\x1el\xc1Pn=\xd0-N>\xb9W\xf7\x1fQ\xe8\xb2\xd4\xd3\x9cA|\x14\xf0\xfd\xbd\xc7\xf6w9\x9a?d\x12\xfa\x16\xfc\xa0\x1c\xd6\x81JO\x0e(\xff\xb7\xa0<\xdfJ\xe1\xffV[\xf2\x7f\xce\x99\xc4\xbb\x85%3\x16c\xa2\xfc\xdd\xd6\xf7}\xe5\x97j\x8b~-Z\xc1\xf8\xb3\xf9\xb8An\xad\xa0\x91\xee\x8c\x9c\xcb9\x18\xcb\x7f9\xe73\xef\x96^\xcfc\xf9+\xd6\xf3\xc8\x93\xe8K\xf8'9\xe2\x91\xfc\x92\x1b\x0e\xdc\x86P\x8e\xe7\x87\xa6\x8fB$(t\xf7\x1e\x8ca\x7f\xa6\x07\xc8\xee\xd0Mu\xe0\xc8\xee8\xb07\x16k\x8a[\x9f\x04}\x03\xe2\x9c\x99\x1d\x96\x81\xcd\x8a\x18\xa4=\xe8\x9bxM&\xc0\xa3.|\xfe<\x14~Q\x94V\xe8Y\x95!\x92\x8f\xfd\xdc2\xfa\xd1Q\x8d\xecVN\x94(\x8d\xb6r\xb2\xd1@\xbbw\x9b(\x8aE\xe4\xaam\x16\xdb1\x1eU\xbc?\x9c\xcc\n\xa4\xf7\xd6\x92\xd4\x82\xd3\xac^\xe6%k\xce\xaf\xd5\x8c\xae\xbf\x0d\xd0U\x83\xec;\x84\xbd4\xec\xecX|\xb72\xd8J\xc9K`\xa1\x0c\xb9\xd2\xfb\xcc-u\xa7Z$\xe8q\xe8\x16\xe0~\x05\xe8. \xc7hno?\x02\xb8\xd6\xf9\xa9Q\x13\"\xd9\x11\xa5\x06>\xb1\x1c\x1f\xaa\xd7n\xcb\x1f`Z\xf3\xfc3_\x11\x14\xef7\xd9\xf3|\x93\x0de\xb0\x1a\x0d\x0buB]\x98\xfbDl\xb0\xaf8)\xde\xd7\x87d\xc8 \x7f\xf4\xb4\xf4K\xdc\xcc\xcbm\x951\xe2\xcf\xb4V\xedeX\xf2\xaa\xaf\x08\x0fA\xe7^es\xf2\xe9W\x03\xc9\x87\xa4\xc0\xe4\xcbj\xe7N0\xf2\xb2\xcd\xfa\x82\x94\x1e\xec4\xbe\xd9p\x0c\xf7\xf7\xc1\x94&\x0d\xee\x04Lt\xb7\xde%t$\xbdkX\x83\xbb\x1f=w@\xd8\x96\xae9\xd8\xc8\xb6\xcc\x92\xc7\x916_C\xd4\xb2\xb3\xb6\xbf\x87\xf2\x9c\xa7TG\x1f\x8c\xa1x\x91_\x08+v\x80}E(\x0d\x03\xa5a\xf1\xda\xe9;\xe8f\xe1y&F\x1e\xach\x8d\xd7\x0b\xec\x1f@\xc6\xbd\xcd\x19Dm\x8bE\x0bf\xd8\x19NY\xa1\x16\xb4\x9b\xd0\x1aqKV\x025\x82\x19sK\xf0\xbb+\x00\xde\xff\xcck\x88!\xcb\xb3\xfb,\x0f0\xf3\x1b\xf3Bp\x19-\xf0!d\x91\xf4\xf1b\xb1\x83\x1b?.1\xf5\xb0\xc5Ys\x1e\xcb'2=\x91\xf0\xd5\xec\xb19\xcd\xf7l\"\xad\xf7\x1fV$s\x82+h\x8cM\xd5\\\x1a\x1a\x88U\xd2\xcd\xca'\\\xed&\x86\xbb]\x7f\xe2\x14\xd0\xf4\xc5\x96E\xb2\xc3\xba\xcc\x15\xdd\xe2\x96\x93D-\xfd\x8c\xc7]\xfc\xb463,\xb0~\x0d\x8e\xbc\x03\x991D\xc3\x06\x97v\xe6\xebvL\x16\xb1\xd2hO\xd1qJP^!\x19\xd5\x19\xe3\x88Z\\\xf5\xae\xc8\xb4\xbf\xdc6xdA$q\xba+\xfesM\xe2)\xe6BW\xc75\xc1\xf0\xbev\x14p\x0c\x1ebY\xe1\xe1\x11\xb3\xc0\x14\xd8\xaet\x81mvp3dJ\xa7\xbf\x02\xb2\xb0\\\xc6\xdb\npV\x84iq[]:\xd5\xc4\x07\xb4\x81\xe8{\xd8\x13!n8U\xfeP&d\x0eu\xce\xf3;C\xdc\xf6\n\x86z\x15\xd7\x90T\xd9\x1fj\xa8W\xa4$;\x9e\x0c\xb7\xd9\x1dFU\xa4 \x95\x18C\xd8\xff\n\x00\xee\x11\xdf\xaf\x05^'>\xb5\xd9c\xfc\xafN\x14\x19''!\x11eN\xb7M]\xb6\x154S\xcd\xac\x95m\xfb\x070\xbe\x81\x06\x8d\xd9\xfe\xe9x\xbb\xda\xdc(\x03~\x890\x0e \xee\xfdkB\xa5\xaa\xe5k\x1c\x07\xaa\xd2h\x0c\xee90\x90\x8d\x97\x18\xa0\xe6p/\xd4\x0bBH\xe1\x04\x15h\xa8\x1c\x93'\x05\x95k\x9eW\xb8\x1f-\x01\xd8\xbf\x00\x1c\xcf7eI\xb2\xad\xa0\xe2\x08\x11!w\xe8\xb4u\xfc\x15\x1f\x04\x7f\xfa\x95tG\xfd\xfeG\xccu\x14\xf5\x89\xf4\x92\xbb\x95\xb6\x9b\x00\xe6\xd7\xb0\xfbU\xe8q\x17\xf4#\x00b\x83\x87:\x97\x99\xda\xc7W\x99\x05')o\x17\x1fn\x8aQ:\x80\x11\x1b[\xd8<|\xa5\x8d\xf8cr1b\xe0\x8e\x83F\xf07a+\xee~\xe0\xe7K\xf25t\x8f\x0d\xcb\x8a\xc9\xf1\xdb\xdc\xeaW\x80\xbf\x12\x14\xe3+\xcc\x86m\x82&\xfc \x9d\xd4\x90\xb8\xb4\xf54\xaa\xadf\xe1\xbe\x07z\x13\xa9\xe8D\xbe\xce\xd9\xc4\x83\x8f\x8c\x99\xc8\x98Y\xf44\xe8\xc6\xc3\x08\xfe\x04>;\xd1\xbf\xc6,gi\x9e\x8d\xa2X\x8e\x93\xfc\xcb\xe9\xdb7<@\x1feMsE6\xfd\x1a\xe7\xab\x88\x8d5b&\xb6\x89H\x97lb\x9f4-\x84 \xce-\x81W\x93\xcc\x97k.\xda\xac( a\xfbH\x14\xd09\xfe\xedW\xc6\x99sM\x19\xc0\xba\xb9\xcf\xb5\x19\xc9\xa0R\xcf\xc9\x11_D\x8ck:h\xf1\xec\x0e\xc2\x06\xed+\x97\xda\xa8\xdc1\xb8v\xb7\x88}i\x8a\xb0\xa6+}\xe9\xe4\xeb\xf6f\x87\x85\x88\x96\xed6\n5\xb6+\x9ekN_\x89\x00b\xf8\x1d\xfba\xfd\xce=\xca\x04\x1b\x8d\xaa\x8a\xf5\x13\x11\x0eI\xa0I\xa3\x9a\x0dB\xf5\x9e\x99\x07\xb3M\xbed\x131]0\xbbV@\x9a\x8c\x11C\xd5\xdfx\xd3\x16\xb6\x1f\xb2\x0c\x1e~\xef\x19Rl\xca8k\xea\xff \xf6\xf7\xb4\xd7\xe5\xd6\x98\xbc\xa2\xb0\xf5\xcb\\\x17O,\x9cT\x99r?P\x99\xf4\xc3\xf7\xfeF\xfepE\xa0$\xf1lE\xe6\x10\xc3*.\xe7\x90&\xeb\xa4\x86|A\xc7\xcbMT\xa0\xdcd\x95g\xa3V\x0eD\xa2DW\xb9>\x87.5\x93zK\x03\x97}&\x92\x08i\x9b\x19oy\x00\xe3\xac\x0f\xc0\x01\x00\x00\xd0_\xfe8M\xfd\xcd\x97\x8e\x0fi\xa0\x88\x97\x13\x82\x0cmfm\xe56p\xcdN\xd0-\xdb\x91\xb4/\xd8\xa9\xbc\xc3Q\x03\xcd:Xv\x04\xa5}\x89\xc4\xb9\x9aE\x1a]\x85o \xab'J\x8e\x0dtu-p\x1f\x1cla\xc7]\xa6\x95\xaa\xd9\x97\x0bPD\x11\x87\xc7P&_]\x89\x99\xf1\xfe\xa8o6\x8e\xd1\xa3\xd4\xe2\x0e\x06Qdh\xb2\x8a\x99 w\\\x08J\xbf\x0e\xd9\xaa\xfe\x98\\\xf8A\x10<\x85\x1d\x9fB\xc0\xaf0\xa9A\xcb\x8c\xff)\x87M\x00\xc4\xaf\xf8\xe5\x87\xf3`\xc6\xdft\x89\x12s\xcbi\n0;\xc5\x11\xe5\x16\x16I\x16\xa7\xe9X\x80\x8d\x071-; %\xd7\x85bL]Hc\xeaQ\x8dm;l\x10\xeer\x01\xb70\xde\x8c\xfa\xdc\xcd\x86\x15\x9ck\xde\xb2;p\xd2G0\xeb\xe7\x12Q\xac\xe2\xb0(\xed+Q\x8ck\xeeO-\x91A\x9d\x8cQEa'\xfe\x04\xfaY\xfeu\xe56p\xb1\xa4\x1d\xb9\xceRTj\x99K\x95cf\xd12!2%\xec\xee\x16\x97\xf8i\xd6\x1a\xd2,\xc0\xf1`\xbc\x1dxo\x90\x8d1&}\xef\xd5\xad\xeel:1J\x07%YT\x13X\x0b4\xd1\xd3sL\xa1<\x81\xe5p\xad&\x05\xd7\x04n,Ue\x04\x9c \\\x88\xaa\xfd\xa9\xb4O 5\x0c\xf9u;By\x93ay\\<\xf8\xc3\x87\x03\xf1\xe0\x87?=x\xfc\xdd\xb6\x9f>\xde:\xa5\xe4\xc1\xf6\x91\xef\xf7\xf7\xb6\xfdt\xff\xbb\xed\x13\x04\xec\x7fIF\xca\xd6+\xa9\x94\xf9\x8d\xe2\xed\xeb\x07\x93\x1b\x95\x98,2LT\x93\x8aY5\xe9\x07\x80\xb5jq\x80Q\x99\xecm\xebV\x9d\xe5Z\x8a\xa1$i\\'W\x04~z\xffc\x08\xd7I\xbd\xca75\xac\xe2\xab$[B\x0c\"\x13E\x84Y\xbe'\xf0\x07\x19\xf4\xf4\x0f\xf2\x1d\x7fZ\xe3S].Bh\xa0\xf8\xa9'\x97\xd6Z\xf5w\x9f2\x89ep\x82^b\x84\x9e \x9f\x0c \xcf\xf3M:\x87,\xaf%DJ\xb2 %\xc9f\x04.\xc8,\xa6X\x93/&\x80\xb3\x16\xb92\x11\xc3:c6\x0d$\x1e\xc4)\x1f!\xe9\x05h\xa3P\xfb\xde\xef=\xb7V7\xc6\xe9 \x9b\xbfwS\xa2\x89o\x8b\xda\x084\xe09\xd5\x98\x9eeA0\xc0\xb1 \xab\x80\x14\x99\x90\xe1U\xa6\x0c\xc2E\xc3 ,{\x8b>\xec\xbfr~\xce\x15\xabz\x1eA\x97\x91\xc6\xca\x10\xf3\x91\xa9C\xe1v\x81\xee\xb8W\xf9\xa4+\xce\xda\xfaKM\xf8\xed\xb6\xd0\x95\xbe\x03!B\xeaWY\x88\xcep\x0c\xbae\xae\x038\x86\x1a&\xd0_\x96:\x80 \xf8\xb4U8\x82W,G\xf8_N\xdf\xbe\xe9\xcf\xdb\xc8O\xf2\xcey\x1b\xb5>U`\x88\xef\xdd@\x90Zq}\xa6\xbd\x85f\x9a7.\x17\x7f\x0f\xfbR5V\xf7\xeb\n\xdc>\xed\xde\xd1\xe91\x1d\xcd\x18\x9b\xac\xe4e\x87\xca\xf6\x89J\x91'YMJNG\xe8\x9e\x87yN*\xacC>%U\x0dI\x06\xf3|\x86\xa1\xa9\xb5\xf9Th\x91\xadh\xce\x14\xcd(\xf9t\xbb\xc9\x16\xf5P\x9e\xe9\x11\xad\x95\xfe\xb21\xf9 \xea\x8c?\xdc\x14\x84\xeb\xfbN>\x15dV\xa3\xaa\x8f}\x14\xc2\x12\xadi\xe9\xbcU\x90\xd1\xc3\xd3\xdbd,\xaf\xcc\xdc\x03\x96|\xe0\xaau\xa3c\x9e\x92\xf7\x80Y(\x92\xe9\xde\x99\xbc!!Q\xb5\xb9\xa8\xea\x12s\xc1\x80\xe7\xc9~\xa6g0\xc1\x0cXHb\x1fx\x01\xd3\x86\xb9a\xdfb\x90~\xeb@\xc3\xd9\x82\x13\x89J\x9b\x8cT\xb3\xb8 >\x91\xc9\x9f\x1e\xfc\xd7\xfe\x83e\x88\xb9\x9d\x94g{\xf8\xec\xbf\xbazP\xd3\xd0\x8a\xc1\xa15\xfdkzg\x1d\xed\xa9\xbd\x7f|\xc0\x1e\xee\xbbv?\x1fdP~\xf6\xeb\xc6\xa4wG\xa3\x95\x11\x9b\x97D\xb3U\\>\xab\xfdZ\xda\x0b\xe9\xe9\n\xcb^\x86\xa6C\xf7u\x1e\xfe\xbc/\x8e_j\xdac\x8a!;\x98\xb9^ \x0e\xfb\xf1{\xfe\x03k\xd0_;t3;M~%\xf8\xcc\x10\xb4:1q\x0d\xf5\x01\xef\xc5K\xcdpsL\xf5\x95\xf3\xc0\x15\x1f\xf0\xda\xb9\x0cA\x1b2Sh\xd2\xec\xa7\x0e\xf4\x01\xc1)\xe01\xdd\x12\x13\x84\x00\xb22q\xe1\x17A\x93@Z\xdb\xda\xad\x9f\x19V#\x86#\xf0\xf1\xee\xc2\xfb\xbe*\xc8l\x1d\x17\xf7);\xf8'/\xa0\xd4\xed\xf7\xd8\x89\x9ep\xd6p\x84\xce\xfc\x1d\xdb\x81\xe9Y\x80i\xcf^\xe43\x0cZ\xea'\x98\xca\xd0\x86B\x1b8\x02\xcf3Q\xffq\x19\xadi[\x1b:|\x84Q\x81\xb7\xaa\xf9t\x83$\x86\xfe\xef\xda\x9c\xd2$n\x92\x18c\xb6\xcf\xfd\xd8h\xe8\xa1\xe3h\x86\xe7\x9eO\x13\xbc\"\xc2\xff\xb9\x93\n\xbf\x7f\x89\xbb\xfbW\xfdu\xe7 \xbd\xdaC\xa3Kr5\x94\x93k=\x94Xk9\x98\xb0K\xa6\x82\xd2~{1\x94X\xeb\x9c%\xba\xd5e\xb3\xbd\x16}jSH\x9d\x88>\xb5\xcd~\x1aL\xf2{:\x94\x13\xeb\xb9\x18\xae\x16J\x97B&\xef\xbfz\xc6\xd3\xea\xbf'\xcb\x93O\x85\xef\xfd\xdd\x9f\xc6\xf7\xffy\xb6;y\xf0\xe0\xf3\x83\x07\x81\x17\x82\x97x\x9a\xef\xder}\xf5\xf3\xe6\x8c\xf5(k\xf7\x9e,\xf0\xf0\xf6\xec2\xb4(x\x03&2M\xe2\xc7,_\x7f\x87\xebGk\x00\xe0\x17\x9c:\x04\xef\x0f\xf2\x1d#\x87\xbd\xe7\x1f\xf8\xa4\x07\x94?\xaf\x8d\x8a(f\xcd\xf1MI\x16\x06K\x0e\xa1\x91\xec\xce\xdf@\xdbE\xc1\x8b\x00\xbc\x86a\xa7\xd2^\x08\xda\x83I\x14\x94\xc8i\xad\xcb(\xa9^\x96\x84\xa47o\xe25\x99\x07~e\x0d\xeeN\xfb\xc2\xb4sJ\xf6#?\x93\x14\xd3~1\xaag\xe2\xda\xc20\x05\xd1\x04\xd6\x9b\xaa\x86\x0b\"Y8\xf0)\x9a\xdc\x7fO\x16\x81\x913U\x0bk\xc5\xe1\xfe\x98\x8f}\x02\x0e\xd9A\x16\x1b\xbc\xa3_\xd9,\xcamW\xa4\x14\x8e\x0b8B\xb1\xdc\xdek\x81\xa1\xb7\xf7\x1c\"E`\xd8\xee)\xf3\x9b\xb5en\xa3\xe5\xca\xf1\xbe\xca\xed\x02\x85\xb6\x96\xd2\xae\x0b8\x86\xdc/BH\xa9 gL.+\xca\xb8\xdb\x01\x8e, =-\xec\xb5A\x15X\xe6v\x88\xc0\x18\xd4\x01\x8e>\x0c%\xae\xdc>p\xc5!\xd0\x1f\xc8\xad\xd7V$[6\x91\xc7\xac\x9d\xdd8\"\x03\x12\x90\x95?\x0f\xe1*\x84\n\xcd\xbb\x1c\x16\x029\xa1M\x9aR\xb6\xeb\n\x8e\xc1\xbfA\x91y.\xfc\x07\x19\x9f\xe8/\x05u\xf1o\x02\xc62/9\xd1\x1dV\x93q\x99\xf6_\x06%\\)\n\x8c\xc6\x88\x80\xee\xa9%OhD\xe9(Bh\xe3_\x850\x0f\x82\x88+\xad\xe0\x18\x96\xf2\xef ,\xbb&]N[\x0ddl\xa3\x11\xbb\x0d\xb6\x00/\x8c\x051l\x01f\x18 j\xb0o@\xe0j\xa4\xa5\xc6\xc5\x98\xd3\xa9\xe9\xa9\xa2\xdeZ\xe7W\x84\n3\xb0t\xc8\xfaE\xf7\xefEK\x1b$\xa4\xe4\n\xd3\xdf\xb8-\xc77\x1c\xae\xd6\xca\xb63\x0b\x84\xc6\x89\xee\xca+\x14R\xd3f\x96\x17\xa12N\x91\x1b\xd0\x9acT\x14\xb9\x94W\xd6\xea\xb7\x81\x03\xe8\xdc\xce+\x10\xc4l\x9c\xc5\xb6Z\x84\xfa@\xab\x005\x15iST\xc4\xf5**\xc9|3#\xfe\xd6C\x00\xf52\x96ytNk\xbc:\x9d\xd6nA\xa2h\xc1\x8c\xfd\xee\xfb\x08F$\xa55\x15>hU7\xcc\x9d\xe4\xb9\xb2$S\xb5'\x7f:\x82=\xd4U\xec\x85\xcdmn\xe0\xd7AG\x1cv\xf2\xa4\xd3\x15q\xb1\xe3\xd7\xd3\xcc\xe1\xb2\xbf[\x86\xe2\xf2\xe8\xca\xad_\x8f1\xb7\xb9\xf5K\xe1\xa5q\xd1\x88\xe4\x17\xd6o\xed7\x12\xdd\"p\xc9\xc6\xb5\x81\x95\x011\xbf5\\\xf8\xf7\x9ejd\xb0W\\\x80T$\xbc\xd7&23\xcfg\xcf\xe3\xd9\x8aL\xe0\x9d\x1e\xb5\xe3\x8b*O75I\x167\x13\xc8\xf5uf)\x89K\xde\x8c\x9b\xd2\x85\xf33;\\\xf1;')\xa9 \xbb\x8a\x98t\xf1\xf7\xdd6\x91-\x94\x16\xcd 6\xa8x\xf4\x93TE\xf0 \xbc\xd5W\xba.\xe3\x82\xd7H\xf45\x96\xa4F2n0\xbfG\xdd\xf7\x04b\xfd[\xf2\xa9.\xe3Y\xfd\xb2\xcc\xd7\xd8\xc8F_M\xde\x06\xb9.\x87r\x19x\xce\xee\x920\x81\xec0\x88W$\x9e\xa3\xa1\x87}\xd3<\x9b\xcdHQO\xc0\x8b\x8b\"Mfh\x8f\xf3\xe0\xe7*\xcfBP\x9f\xdc\xc4\xeb\xd4\x1b\xde/\xc3\xf47\xcd\xe3\xf9)\xdaF\xef\x98\xe3\xaf\xdd:\xdf\x0c\x8a\"\xe8^\x84G\xf6\x80\x91\xce\xb6-_K\x02_\xc5\x0b\xf2c\x1e\xcf\x07=\xb4F\xe1-\xc7\x19#\x0fH\x97\xe1\x1dcF?\xe4\xe8\xa42\x81\x99\xbe\xaa\xb8\x1f\xf9\x8b\xfa\xc9%\xc9&\xb0\xe8\xd3\xa5\xa0k\xb9\xc3\xa7\x08G\xf0\xaa\xaf\x8a\xfc\xd9\xaa4\x17*V\xa2^\x0f\x10\xf5z\xa0cp\xd0\xeeD5J\xa9{\xe6FcMZ\x1enm\x0ds\xf0\xed\xf6\x9f>\xfa\x02C\x1a\xf5\xcd\xaf\xa0Z.\xad\xeb \xdb\x1a\xec\xc0\xb0\xd1\x0e\xe8\x8fI\x93\xc29\x17\n\\3\xba\xf6\x87\xc1\x14\x95h\x12\xa7Q!\x99\xb5\x94 ^1\xe8\xa7\x85lv\x1c\xadI\x1dS\xa4\xe6\x7f\xb24\\6\xe5\xe6f\x1b\xe5f\xdeUnn\xacZ\nf\xd0\xd4Isk\xfb\x08T\x0dl\xfb\x16\x1a!\xd8\xe813\x88i\x9b&\xc3$\xb5\x08;\x8fH\x88\xabL\xb1m\x89\x003\xf8Vhn],\xdag\x98\xee\x04\xb7\xc3\xf0X7[\xf0.\x80\x1d`B,8\x82Y\xcf\xfe\xa2[\xa8x\xcd\xf8\x1d\xfc\xc0\xdfca\xd89\xfb\xf4\xcbm\x08\xb3 \x88\x10\xd6n:\xd7i\"\xe5\xe8M\x08\xbf\xdc\x062c6\xe9\xf8\xa78\nb\x887I;\xc4\x97\xfd+\xe0_624\xe5\xb8\xed\xb8A\x0b.\xa4\xa3\x8b\x81\xa0W]\x13\x89\x94`\xfeqH2h#*\x8b\xbdT\xb9\xe0)(\xe6\x1d\x1d\\\xb5\x9bU;\x9b\x18'\xd1\x9a\x94K\xf2\x82\x90\x82\xae\x98E`\xba\xb5\xc5n\xe2\xad.\x98\xac\xdci|\x16\x04!\xcc\x18]\xa2\x84J\xd6\xe2\xba\x9b\xa9D\x96M\x08\x1eV\xf3\x02\xfaM\x9fG\x10\xc5Y\xd6i=\xc1XTc\x0eu\xeb\x19\xd9z%e\xf7\xdf\xc8\xd8T\xfd\xf5+\x1c\xd8\xf9\xd0\xadl\xd2\\\x90\x8e?&\x1b\x9b\xf0Qgei9+{\xd9\xd6q\x1d\xec^\x82\xe2\xbc\xec8\xa6O\xcf\xec\xea\x9d\xfe\x1d\xa2E\x1c\xe9wC\xa9q\xd2\xb1]+\xa3\xaa \xb3\x10\xaa\xa1})e\x90\xfey\xe2@\x84\xdd\xb4}\x9bi}\xa6,h\x19\xc9\xa5{\x1d\xcf\xca\xdcO\xed\xa4e\x94.E\xe0]\xe3\x87j\x0bR\x03\x0d$\xf2\x0e9\x1dv\xec\x18P\xb4\x04\xea\x8a\x88s/\x0bac\x10\xb3\xb4O%!\xd64d5\\\xfdoJ\xf6oB\xc9\x9a\xa4\xcd\xa3(\x99i/\xd0\xd1\xc6z\x1aa\xda\x08\xd2\xb1qC\xd9\x122d\x06NK<\xdd\xb4w\xf4:\x9f\x93T\xc0\x9d\xedjZ\xc7\x80\xeaN\xbbY\xe5\xed\xed\xbbx\x14\xe3>~\xaf\xc5\xff\x8f\xef5\xfd`\xcc.*\xd2T@\xdf\xf3l\x95\xa4\xf3\x92d\x13]\x8cq\x16e\xb0v3BM\x86l\x95\xe4\xe1&b\"\xca`\x0b$*\xca\xbc\xce\xff\xca\x9fgp\x8c\xbbe\xd3\xde-\x99R\xab\x89P\x8a\xc6\xc4W\xec\x99\xbf\xa7\x04\x8c\x08|\x12\x89\x99i\x94\xcb\xc6\xd3T\xb5\x84e_Ok\xc3\xa5V\xab\n\x1cAB\x913\x13\xa3\xd1\xba\x19t=\xf9~u\xc2\x19\x0fY\xfcm\xf8\xcbC\xdd\xcbJ\x98\xd7i-\xe8RA\x90\xb5\x0d\xcfTM\x91 \xf2\xae\x17i\x9d\xb4\xf6\xcc\xb0M\x86o-\xf3\x9cR\xc1\xdc7\x9a\xba\x81\x8d\xe8t\x1c\xc9I\x08S\xf3hd\\\xac\x11\x81\x89\\\xb8\xb9\xabnP\xf5\xb8$\x19\xc6\xc2\xda\xb1\xa5\x1bB\x1b\x13[\xfb\xa0\x08\xc5dJ\xd4t\x03v\xd5\x08p\xa3\xe3L\xee\x00;K\x17O\xcb38\x86\xc4\xa7\x7f\x0821a\x8fq\xbd\xe8\x83\xc1V\xb8\xe7u\xe2\xcb\x85f\xcdl\xd2t@\x91\xae_\x7f{\xc0\xa9;\x8e;G\x17\xc5\x97\xb1;\xa7g\x81\xd6\x19FL\xccE\xed$\xd9\x04\x19\x15\x92\x81$S\xd3,*\x7fS\x9ei\xef)\xe4\xf0}c\x87~\xef\x1e\xf8\x0c\x03\xf2\xb3\x10|D\xb8\x86lN\xcb\xb3\xe0)\xe4\xbb\xbb\x01\x0b\x911--\xd7\xfbb\x1a\x18\xe0E\xa1\xd7_eu\xd8\x8e\x18\xb3F\x0e\xdb\xaeu\x03A\x945\x82cfi4Q\x9f\x1e\x888\xc9Hu\xd0\xafE\x11\x1cu6\x0dN\xfb\x12Ui\x8dA\xa8\x05\x0f@\xdd\xc9#6\xa4\x98j9\xcd\xd0\xa8\x9eE\x8e-Y\xfe\x85\x1c\xad\xd4\xd0\xe8?\x04\xfalxg*\xc4w\xf4V4\xfa\xb7\x9b\x99\xf7\xd9X\x06o\xf8\xd6\xe5p\xc0\xf1\xf9\xdf\x8b5T\x7f\xfd\n\xdc\x84\x10\xc3\x1e\x0e\x89aZnB\xf0!\xfbZ\x8b{\xc1\x88\xeck\xe5;\xc9\x89<2q\"\x99\xff\xed\x00\xf6\x0cr\"W<\x03Y\x87\x99\x94\xa2\x1bKs\xab\xf2*\x03\x9b\x1a\xb7%f\x0b\x9e\x85\xb0\x08\xa1\x08a\x1e\xc2\nMF\xd7h\xbdv\x03G\x10\x97Kt5T2m\x1d\xa0uYc@!\xabL\x0f\xe8!\xda\xfaI\xf9v\xfdn\x97Z\x141\xf6\xeb\xd29\xf2\x14\x9e.O\x9f\x06P]'L>\x14\xd9, \x86\xce\xb1\xd11LW\xe8\x90\xd5S(\xce\xe1\x08nx\\\x99\x93\xacNJ\xf2\xa1$\x84\xa5\x18\xbe\x11\x86\xf5,\xb50\xad\xf6\x8f\x0d\xa9\xeaWYM\xca\x19)\xea\xbcd\xc9\x86\xe9\x9b\xaa\xc8\xb3\x8a\xb4^\x15\xf8\xaa\xad\xe7b\xd9Jo4\xb22\xcbGl'\xd2\x80\xa10\xea\xd5\x8b\xa4\x9a\x95\xc9:\xc9X~\xbe\xcc\x8d{\x92\xa6~\x06+\x90n\xe9O\xd9x\x83\xdf-\x1a\x98L`\xe1\xf6m\x1bh\x13(\xdc>\xebCu\x02s\xeb\x97\xb7!\xda\xce3\xf6[\xa6\xbe9\xbd\x8e\x97KR\x06\x0e!\xf3\xa0 {h\xadKe\xb15\x86\xf2d\x8aY\"\xb2\xac~\x1bv%\x8cN\xea\x0d*\x8c\xael\x863\xa2\xb0\xe1\xac\xdd\xc0\xd6\xcf\x80\xe1\x1a\xad\xab\xbaL\n\x11\x85\x14\xedl\x06\xadcD\xb1^\x12\xe1&\xfe\xd6y\x13/\x99\xe3/\xc9\xea\x10vJJ\xc2\xda\n|\xe6\xdb\x99\xa9\xcc\xe7\x12\xc1\xcfW]\x91\xf8\x97|Y2\xf4\xd6C\x16\x9f\xaeQ|Qn\x8a\xda\xf7X\x87^\x08K\x97\x19X2\xad\x8e\xc9\xac*\xb5\x18\x96L\xaaF\xc6\x960VI\xebb\xd8\x9f\x8a\xb8\xa5\x93j\x8b\x81\xc3F\x0e\x0d\x93\xb0p\xb9X\x9e\x14V\x9d\x99\x1f\x8ce\xaa\xfe\xbdX#\xfd`\xf2A&@s2\xef\x19O\xe6\xbd\xf6\xc9\xbcg:\x99{kjSE1\x0b\xe97\xf1z\xc0+\x809d\xaf1\n\xbb\xb9\x16\xc6\xe2\x8d(Yf\xe1\xb2\x0c\xb9\x9a\x9dG\x08|\x94\x89\x1eV\xfbFX\xed\xb7a\xb5?\xc4\xc5\x80\x8a\xdb\xe4\x13\x99mj\x16rZa\xcf\x86\x891#\xc2\x04I\x8ay\xc7\x86]\x1aDB\xf0\xfa\xe7\xae\x87O{G*}\xbc\xa9H\xf9\x92\xd4\xb3\x95g\x8d\xc1&V\xd4\xca0\xb0%\x9d@9\\M\x0d\xcaeI)\xac,\xffP\xa8\xb4\xdb\x10\x12\x831\xb7\xf5\xd6\xde\xac\x1f6\xed\xb6\x9a\x1d\x1d\x94\xe6k\xbb\xe4*\xd9\x0b\xfd\xdbF\xcd\xc1\x03\n\x1c\x03\x95\xd4\x0d\xa0\xcd\xb1-\xbe\xcc\x1f\xe2\xa5\xbeV\xd2n3\x87c\xf0\xf87\x1e\x18\xcd\xa4c\x96\xec\xe7\xe0m\x03\xe4\xe7\xf9\xba\x88\xeb\xe4\"I\x93\xfa\xe6u>7\xec\xe2\x8d\xc1\xdb\x96\x96\x05\xbe3\x92\x12\xc6\xaf\x90x\xb6\x92\xdd\x06\xf4\xa8\xb0s\xfa\x8d\xb6\xdbNb\x18\xd8l$&\xc5Z\x12\xc7\xf4[\xdaO\xa3:^Vp\x0c3\xfeg\x00\x13\x98&gc\xcd\xc0[\xce\xb4G\xaa3\xad]\xbb\x8a1\x1cX`\x1c\xfc\x8f\xddF\x0c~\x06\\\x97\xcd\x00\x9e\x17\xaf\xe6\x81\x9f\xe2\xfd_n\xdb\xf0\xa2\x0c\xa3\xc6\x04bk+:W\xedn)PDv\x1b\x11\xe7\x98\xed\x8d\xc2\x18\xba%\x8a\xa0_\x86\xfd\xd2-\x12q\x9c\xfd\xd9Z\xe4\xccL\xdeE\xb1\xf9wQ\x8c\xdaLgg\x01\xd0\x7fwwCH\xa6\x9e\x07\xbb0\x83]|D\xf1\xa5\x18n\x83\xa9\xa9\x9b\xb0D\xf4\xecK\xb0M\xfb\x8aP\xcc\xa4\xa2)\xed\x8a\xa2\xa4C\x04a\xacz\x04s\x16\x8a|\xfcp\x81wK\xe5^:L{m\xeeyA+\xb7:\x9c\xd3\xde\xcc\x89\x9bAQ\xe2\xb31\x17\xc6\xba\x06\x06Z\x7f\xa9\xd66;\xfb\xcaj\xb0\x10\xea\xa8\"\xe9\xc2\xe0'\xac\xde\xb2\x1d\xf6-\x10\xd6\xf1%9aL\x0c\x1cQ\xb2\xc1\x1e=+\x92\xeaC\xbc\x94\xb4\xa1\x92\x7f5\x95\x9d\xf4Vw\xc0\xb2\xea\xf7\x1dj\xce\xd4\xe1\x1b\x9d\xf63^\xb3hMh\x80\x1a\xd9h\xe2v\x07*t8?s\xad\xd9\x85Ic`\xa2\xb5\xa5\xe1@\x96w29$\x99\xe9>KVJh\xa5r\x9a\x9f\x0d*\x9c$\x81\xab\xb47\xf4\xc0x\xb5l\x9a\x9f\x05\xd8Xs\xf8V,,\x8d\xb9i\xceMO\xf0\xebi\xa2W\xf2\x9b\xf9\x0e}\xc3q\x91T\xba`\x81=\x1b\x0d=\xe6\xffK\"\xfaV \xf8\x8f\xd9\x03nK\xd9\x9e*=K\xfa\x84Q(\xf6\xbf\xd5\x9a T\\u\xdf\x7f\x93\xda\xb0\x02\x9a%\xd1\xbalj\xd6z6\xc6}\xa5g\x89\xca\xb4\x12:\xd7CMW\x0b\x16.\x8d\x1d\x1a\xfa~\xba\xf03:\x17*\x88\xa9\x13\xdf\x9a\xa5\x19w\x07\xf6\xe4` \xce\xf1\x7f\x86\xa6\xe7\x0b\x85O\x85\xd14\x1f\n>\x89*2\xdb\x94I\x9d\x90*\x04\"\xee*0JPV\x7f\xb8)\x08{\xca\x14\x08\xcac\xc3I\xc3\xa4\xaej\xb6\"&\xd9\x8c\x89\x9c\x9a;\x11m\xed\x8a\xd7\xee\xdf\x93h\xab\xcf\x98\xdc\xcd\"\x19\xfcT\x1ax\xf2\x05\xd6\x92\xea\x0f}\xa5\x82\x81\x87\x0f\xf4\x87|~\x13\xa2\xb6\xb8\xbc\"\xa5a\xf2s\xaeP\xa6U\xfe\x1a\x97I|\x91\x12\x83S\xed\n\xab\xae\xea\xdapE\xb1\xe4R\xaeP\x93\xe8k\xdd\xb4k\xfd\xb0I\xd2\xb9\xb1\xb2\x08\xe2\xf5)J\xaa\xb7\xcfN\x0f\x03\xbf\xd6\x1c\x147\xe8\xaeO\x1b~\x0b\xc7p.\xef!\x95\x88\xe8\x86 \x83\xef\x8c\xc4bS\xa6\x13cd\xa3YI\xe6$\xab\x938\xad&\x80Z\xf6Ut\x9d\xd4\xab\xe7\xcds8\x06/\xc9f\xe9fN0\x0ca\x15\xaf\xc9}\x16C\xcc\xd0h\xe3\x08l85gy~\x89q\xdeuF\x84\xfd\xf9\xc5\xa8\xfd\x7f\xa7A[z\xb4\x07!T\xb2B\x0fS\xe1\x08*\xca\xf4\xf3\x1a\x12\xed(=7\x80\xf2\x83\\\xaa%\xa9%\x91}\x1f_\x07CQew>\xa8\x91U\x9f\xfb^\xc3\xa4P\x89'\xc3\xd0\xb1Y^\xc3\"\xdfds\x9d\xab\x10\xed\xfb5F\x9e\x94\xd4C\x0f\xbeWmm\xd3k8\x86_na\x02\xaf\xf5\xd5\x7f\xc66\x87t1o\xb0\x86\x10\xd7\xf5\xf3{\x17m\xca\x14v\x8f\x8c\xa6\xa1\x83\xaa\x01F\x93\xcc\x01\x03$\xcd0\xdeT\xb2\x8dm\xbcU\xec\xec{c\x18\x9dF'\xf1\xc6pdr\x1d\xc4\xcf}\xcc\x0cB\xd8\xc9\xa4\xa5\x8d\x88(\x10ql\x0e\xe1]\x1fr\x12joBx\xc7\xd7\x80\xa2\x17J\xc1?\x07Q\x9d\xffT\x14\xa4|\x1eW\xc4\xc7\xa08G\xb0d\xca%=~\xbc\x97*\xfej\xfa\xe6\xccT\xb3\xe4\xd8\xce7b\x14\xa3\xbb=e\xa7\x0ch\xf7\x02\x8e\xe0\x99\xe2\xa9u\xea\xbfR\xc8_\x104\xcf\xdf\xb7\x9ek\x9a{1B+'4\x8a7S\x12%\xd9\x80-ai\x89\xb3\x85\xaa\xbd\x8b|~\xe3\xc9\x18\xb2\x8ca@\xbc\x8b\xd5\xbf\xa3\xc6h_Z\xb4-;\x11\xb5\xd0:\x8a}\x94\xc5k\xfck9e\x7f\x9fQn\xce\xf0>\xc1M\x1e\xb10\xadX\x19&p\xe9\xb3\xbfCx\x11tn;D\xc2\x96\xeb\xb8\xcc|\xef\x9d\x80+\x8f\xd4\xcf\x9a\xc6p\xfdI\x05\xf1\xfa\"Yn\xf2M%\x83\xdb\xd7+\x02<\n3\xee=X\xc5\x15\xac\xf3\x92\xbe\x893\xc83\xd2(\xfa1;\x00~\x91!\xee\xf7z\x88\xb39\xbe.\xe2\xaa\"\xf3\xfbI\xa6|\x8b\xba\x8d\n\xe6 \x8b#\xc6\xfa\x848\x83?$\xd9\x1f\xd8\xdb\xc8\x0bB\x11\\\xebh8\xf6bG\xd5%u\xeb\x8a8\x86\x91\xb9\x1bsCy\xf2\x85\xbd\n\x8cCHJ2\xa7\xbfvH\x84\xb7\xe2'\xeb\xa2\xbe\xf9+3\xf9nH2\xf7\xe2|/>h&\xd8\x06\x06\x856\x9dgQ\xe6W\xc9\x9chI\xb5:\x99\xb7]L\xf3\x98;\xa8@E\x8ev\xf5M\x81\x88\xa2\xd1@\x976\xaf\x0d\xe0[@I\xa3:\x90.\xdf\xcdK\x03d\xa02\x058M\xb48\xec\x85;\xb6vqA\x84\x97\x8c+\x1c\x91!\x041\x18\x15s\x80l\xf2\xbd{\x90Y\xb4\xce%\xf9\x871\x0e\x8d(rl\xd6@h\"3\xc1p-E\xa9\xfcj\xb8\xa6\xcdz\xc4\xd9\x9c\\\xa7f\xa6\xa4\xf1\xc7\xbe\xa9\xc3/\xcc*@\x0f6u\xe8N\x9d\xa0\x9d\xf1;\xcem\xd2\x9e\xae\x9b\x9e~\x0c\xe1]\xc0\x83\xef\x9ct\x1e\x07\xe2\xcc\xc3M\xda\xb6\x80\x97\xe7a`\xf1\xbd\xa43\xfc\xa9\x9f\x8aM\xf9~l\x98/q\x9c\xc8&\x8c\xde\x18\xa0J\x96\xbb\xe0cP\xfb{\xc8\xdeb\x18\xec&goE\xca\x04M\x8b\x06l\xceoC\xfa\x99\xbe\xa7\xe6\x10~\x8ec\x82#\xf8\xa9\xbf6\xfd\x13\x9c\x0d\xee\x9d\n\xe8>\xc3\xc1\x02#\xa17\xf6\xab\xec\x7foHy\xf3\xb6|\x99\x97\xeb\xc0\x7f\x17\x84\xf0\xeew\xed>Z?m\xf7\xac\xcama#\xb20\xb9\x97\x9e\x80ng\xbbMV\x06)/\xdbo\x14K\xa7\x1b\xc5\\\x11\x02\xcd\xb5\x12'A\x15\xa4\xbc\xec$TB+\x99!\x12\xffXp\xe6\x03\x86{\x15\xdf\x02J\x92\xb6:\x84\xa9\x87<\x9e\x87\xf7\x85~\xc9\x82\xd3Rv\xf1\xc7\xfc\xbaa\x17=6\xb0\xca;\x0bD\x9c\xb7\x81f\x1cj75\xcc\x03N1n\xbb\xf9\xfd\x8c\xc7\xd94sj9\xc5fDi\x97,\xae\x14\x91\n*\xc6\x8dL\x85*\xcd@6\xa59*\xdb\xd0\x0d_!c\xe9\xe5\x01\xfc \xee#\xcf\xe6\xa7\xec&\x86\xce\xb2\x9a\xaaUL>\x93;io\xba\xb2\xa1j\xbawF\xc7'\xda\xdb;\x0b(1\x14\x8dz\xbfxM\xcfn3o9zL\xcf\x98\x87\xc7\x83_\xfc\xe9\xdfo\xcfv\x83\xdb\x07K\xd5\xcf\xe3)\x0bs\x81\x862> \x9e\x06T\xb6\xd8T+\xbf\x9c\xee\x9f\xd9}6\x0d*`?\xdd\xe6f~\x16]\x89\xfd\x85\xbcq\xf3sJ\xac\x97\xa1b\xc2\xed\xaf\x86\x8fo\xe0\xc4g\xc3\xef\xf3\xa5\x0d\x9b\xfd\xb3\xb2\x13\xc9\xfd\x17\x99\x1c\xe6\xd6\x0b\xc1[\xda\x02\x81\xd0\xa5O\xa5\x97j9\xe8\xccd\xba\xdb\xd4\xf7\xd0\xb5\xc6\xb2m\xac;\xb9\x1c\xb1\x85\xcd\xae\xef\xc2\xe2\xcb\xd6 ]\xca\x95<\xb6\x19\x93l\x8b\xdfPj\xbe\xa9-\xdf\xd0\x13\xe6\x9d\xcf\x1dLgy\x8a\xb4\xf4\x9d_\xb6\x1f\xd8F\x9b\xe0\xbe[\xe5\x15z\x1e\x96\xf8\xd7\xf0\x17\xcc\x85\x8e\x92s\x14T\x1c\xfap\xc9\xac\xcb\xf1E\x84O\xf3\xe97H\x9e\x138\x86\x9cb\xf4\xe4\x01\xe6\xd4\xf0\x13\xd8\x85\x18\x9d\xf0\x82\xe9F\xf5\x00\x84c\xd8\xb4\\\x99`b\xc8\xbaz\xeb\xa7!hr\xb2\xdf\xfa\xe8\x9bk\xa7\x15\xe3x\x8a!=8H\x8e\xc2\x85\x0b\xc8\xdb\xc7z)R\xb2XX\x8c.j\xe5\x03\xa8E\x97\xb7}oT\xf3 T\x98\xf4K\xfc`;\x0e\xfd\xad\x8cma\xf4/\x8a!1\xc3\xcd\xa4\x83\x9b\xab\xba.\x06p\x87\x19\xf4\n\xdcL\xe4_C\xf8\x96\xe27\"\xb0\xbb\xad\xf6\xcc\x82\x99]\xac\x9caz\x17>\xc9\xae\x99+\x96\xf6\x89\xf0\x1b\x17&\xc6\xf2\xbfy\xf80E\xdd\xc4n\x98e\x8di&i\xa2\xe6nU\x03\x82\x7flH\xf9\x95V\xc86{ &\xb3\x8e\xbd\x8ep|\x08\x03\xf6\x17\x87\xc0\xce>w{\xbbw\x0f\xbc\x8b'?\xbd\x7f\xf5<_\x17yF\xb2\xda\xcf4\xbe\xa7:\xcb\xea\xbc\\\xbf\x88\xeb\xf8_\x12\x00~\xc64\xc1=\x0b\x16F\xa5\xe8\xd8\x11<\xf8\x87D\x13\xfa\xcbiC\x89-a\x1ee\xa7\xe3I\x7f,\xe6o]\xb6\xab\x1ei\x1d\xfc\x05\xfe\x93\x03\x0d\xa8\xbf\xee\x9c\xc5\xe8\xcb\xf9\xf9\x90\x12P\xc4`\xd2\x8a\xc8B-\xf9\xed\xe3q\x81r\xff\x05\x08\x8e\xb9bC\xa9\xcdu\x10*QU\xdf\xa4\x03\x95P/K\xd14\x1d\xf6\xae\xe9\xabr\x86%\x18\x8c_g\x1b!8moZp\x16\x13HP?_%\xeb\x82\"\xd4\xe0\x17|J\x13\xd8\xd0ol\x990X6\xa0 \xec\xec\x1b\xab\x99$\xcb!\xfa\x9f\x0b\xd2\xaf\x0bL\xf2\x1f\xc9\x98\x99\x19\xb06K5\xcc\x88l\xfa\x91\x0e\xbcM\xc6mF=n\xdb\xa5\x04+\xd2\x99\xb6\x8b\xe2\xcd )\xde*\x86\x8d|Op\xc3\xb1\\me\xa4\xb4\x0f\nq\xca\xacY!\xdb\\$\xc5\x8c\xa9\xbc}?\xf3\x86\x0fAQ\xf8n\x19\xb5\x15E\xc1-\xe9\x98r\x95\xf7\xe3\xe8\xce\xcew\xa7\ni\xb7\x0f\xc5\xb6\xe3\x07\xf6{\x82f\xb4\xf0\xd0IP\xcd\xc6\x1dJ\xee;e\xf4\xa1\xd0\xdf\x1e\xad'\xb7}U\x0b]\xdf\xa9\xc7S(K\xe6\x8c\x12\x9e\x9a\xbf\xec\x9ad\x11\x14\xbb\xa6g\xae\xdd\x81\xeat!\xc1\xb0\xff\xa8\xe3\xe5\xac\xdf`[t\xe2\xfd\x0f\x14\xfcM\xed\xfd\x9c'\x99\xefi\x9c\x13\x95w\xd0E\xd8_]#\x9b\x0cid\xe3F#\xdb\xd5\xb9\xb2[\x90\x17I\x85\\!\x99S\xfc\x88g5;\x01\xf3P\x1f\xc3\xdeb\xb8i8_\xb5VF\xf5X/\xb0Krcc\x04\x9cTl\x16M,3\xfd\xb42D\xcc\xafk\x88\x1e\x00W\xeb\xda\xe7(\n\x87\x13\xe6\xd6\xb2Ku\xe2(\x1c\x8e\xe1h8\x8f\xa0\x7f\xe6\x88\xc2\xa2\\2\xa6\x92\xb15M\xb6\xdc\xf1{lc\xca;/7Qhrv\xc1\x81\xa4\xf1\x05I\xbb\xe3`.\xf2_e4\xd1\xe0h\xd6q]&\x9f\xbe2X\xc6&r\xe1M\xb2,2 \x1c\xd3\x83\x84\xb9\xfbQ\x06\xef)\x05U\xcdX=\x0c#2a\xaa\xce\x10\x7f\xe9\xc70\xe0\x8e\x8a``\x8a\xb4#\x9b\xa7\xbe\x90`\x13\xee\x1c\xdb\x8ccB\xfb73\x9e[\xc0\x15\x1c`\x0b\xcaBkn\x02\xc0(\xed\xb3-Q\xc43\xf2\x82\xa4\xc9:\xa9)\x93\xee4\xfd\x94O_\x99\xf8o;o\x0f\x83\x15\x18RX\x0d\xcc\xbeH\x8a\xd1\x93\x9f\xfd\xcbM\xfe3\xc6\x0eu\x9dh\xde\x0d H\xeb\xa1AE\xc7\x1d\x92\xbe}\xc2\x1c\x92\x1e\xe9\x1d\x92\x985\xf9#]~\xff\xd4i%\x05\xec&\x0f\x8e\x7f?=\xfb\xffv\xbe\xb9\xf7\x07?\xf8\xe3n\xf8\xf4\xc8\x93\xf7\x19\xdcp\xb6?\x15\x8d&~L\xa7\x0f\xfe>\x8d\xef\xffs\xef\xfe\x93\x8f\xf7\xa3\xf3\xff:\xdb\xfd\xe6A\x12\xd5\xa4\xaau,\xd7\xb6~\x01O\x0e\xf7\xb7\xb7\xd1?\xd8\xfe\xd3\xc3/0\xefo\xbd\xfa\xb7\xd4\x8a\xca\x00\xa9f\x95\xa6\xdd5\xb5\xec[ a\xcc\x9a\xc1\x84(\x96\x08\x95\x9a|(\xd8\xe6`\"\x14\xb3\xdb\xef\xa2\xef=\x8bw\xa3\x86\xcbbtR\x8c\x84\xc2\x9d\x18\xdc{\xe7\xed1\x16b\x8c\x06\xdfeLx \x80\x89F[q\xeb\xd7\xd4\x10n\xe4\n\xb3-\xdc\xbb\x07;;\x1d\xfd\xea\\D\xc8\xd2\x7f\xb8\xee\xc7\xc6\x8aC\x98z3a\xf6\xac:\xfd\xde\x9c\xb2\xf0\x00<\xb6\xcfP*)\xe5\xa6l\xd1\xbd\\]H\xe3\xb4E\xdb8\xad3\xf42P\x14\xd8W\xf4\x1f\x16\xd3\xa6s}\xd5\xc0\x0bG\xd5\xfc\x94a\x7f\x8e\xc1_il4\x06X\x13\x19\xe0&\x83$\x1bN\xde\"8\x98\xf9t(\xb6$p\xa4^O\xb3\x01{\x0f\xb4\x07\xb0\x9d\xd3R\xa1\xcb\xf3\xd6\x7f\xfel\xbb\x10\x03\x8e\xfd9zN\x0c\x9b\x9b\xb0!X\x9bCy?.\x92\xffEx4\xcc8\x00\x0f\x17\x93\xdf3\xf2\xe0\x98\xfeB8\x19\xc8\xeb\xf0$\x08\xc1c(\xd1\xab+.\xcf;\xb5\xd9\x9dp\xaf\xb6\x08\xc0\xa6\xd6\x1e\x9e\x1d\xa8>\x18\xcc/^\x8c\xde\xce\xf2\x80\x8c\x01\x1aW\xc9L\x8c\x86\x85\xccp\xfd\x1e\x14\xae \xc1@\xc1\xf6[\xcfnAuYT\xc4Uu\x9d\x97\x03a\xcatE\xc8\xb3\x8a\x7f,\x0buA\xd9\xa3\xca\x01z\xa2\xc8\xb5\x8a\x9e\xa9w\x8ep\x04\xde\x0f\x14\xfcN\xf1\xbf\xbc\xe5\x81*-R\xae>R\xa1\xe0r\xf9\xb9\x87a\xdf\xe9\x06\x8eVq\xf5\xf6:\x13'`{x\xb9-_\xb2d\xb3 \xcf)Bi\xfa\xdeS\xa8\xe1{8\xf8\xf6\xd1S\xd8\xdd\xad\x03 ,\xda&\xf3\xca\xa1t\xff{\xd8\x7fD\xb9\xb1=\xc5\xf2\xb1\xe5\x17\xd4q\x0c2\xab\xef:>:\xbeR\xb3\x8ebJ:?\xe4l\xca\xb6\xb3V\x91\x18\x8e\x00s\xce\xd5Q\x91\xc6I\xc6>\xa7\x9c\x1a\x87\xdd\xac$qM\xfcl\x93b|y\xca\x0b\x96l\xda%|/\x1d\xb8\xe8\xdc\xcb@UV\x91iy\x86\xf8\x98\xd1?\xd8\xef\xee\x92sS\xe9f\xcd1)6)\x97\xa43\xfe,\xec;\x92\xa2\xba\xb6IC\xd9\xe1\xc3\xd9\x0d\x99T\x7f \x9d\x9b\xd6\x03\x81\xd6\xed\xc6\x0e\x96\xeb\xa8\xb3\xa5E*gVDk\xfa%r\x9cS:\x1d\x83\xe8\xe5\xe7\xedE\xf8\xfc\x99\x8a(i\x9a_\xbf\x13\x18\x8c\x0fw\xcah\x16\xa7\xa9\xdfEo\xba7\x18\x11 S\x0cv\xbb\xb37b\xc3\x0fy\x809LK&\xcd\xecBLp\x87D\xbb\xfa\xbd\xa0\xcd}\xef\xdf\x8c\xcd)A'\xd0\x16\x9aS\xdc@m\xa7\xae\x95^#\xc7\xe0g}\xc1:\x0b!\xd1*\xc0\x18\x8c \xbe>\x062M\x10\x9f\x15\xad\xb6\x84\x02}\xc5k\xfc\xff\xec\xbdk\x97\x1c\xc7\x95 \xf6]\xbf\"P3KU\x0d\n\x8d\xee\x06@\x11MAt\xa3\xbb\x014\xd4\xe8n\xf6\x03 \x00a\xa0\xac\xcc\xa8\xaaDge&\xf2Q\xdd\x8d\x11\xe6\x90#\x8a\xc2\x83;\xb3\xde\x91\xa8\x91=cy\xd6$H\x00\xb3^\xdb\xeb\xb5\xd7\xf6\x8e\xf7\x1c>\xd6>Gs\xa8\x99\xbf\x80?\xb0\xfe >\x117\"2\xf3\xde\xc8\xac\x02 R\x9c\x1d\xd59\x12\x1by\xe3\x1d7\xee+\xee\xbdqFcp[\xfcSc\xeeB\x81M\xe2o(X%\xf9B\x8e\x97\xbe\x9cjS\xf7\xf8a\xda\x0e\xada4\xd6\xe1j\xd2\x1b^\xf7\xebc6ms\xc2#v\xf4\x88\x01\xe8t1bT\xde.\x01\xbe\x90\xa6\xfe \x9cDs\xd4\x18\xca\xf3\xcb\xa6\x0f\x13\xd2H\n\x88\x9d]\x0foX\x06\xc6\xd1\xc0<.$\x95F'A\xfb\x8b\x93\xaa7\xa8_\xc9\xb1X\xce.|Tf\x17f-\x946\xc0<e\xbe\x9e\x9e5_O\x7f\xc7|\x9d\x9b\x9f\x97q\xc5G\xf5\xc0\xe4\xa0\xd8\x82\x80\xb2\xb9\xf9W40\x12\xd8\x0e_\xe7gO\x96>\xcf\x9d\x9eg\xb2\xd9\xef\xb1\x97o\xb0\xa3\xe2\xcb\xfc+\xecG\xec\xe5\x13\xec%f\xea\x9c:5\x7f\xfae\xd3\xff\xa9\xef\x9c8y\xb2hb~\xfe\xa4nbn\xbe\xdc\x06\xb4\xca^b/\x9f\xb07\xddND\x0bs]\xb9\xb0/\x9f:u\xe2e)S\xcc\xcd\xce\xcb\"\x1d\xf6\xdd\xef\xb2\xb9Y\xf6#\xa6\xbe\xa0\xb5\x97; C89k\x86\xf0\n\x19\xc2\xdc<\x19C\xf3\xd0:\x0d\xac\xc2\xce\xd5\xddh\x14;ns\x14n\xf5\xcd6\x8aaQ\xefV\xdd\xc5Cd\xbdr\xa0\xe2g\x9cD\xf1\x02kE\xd5\x0c{\x96fI\xeef\x91zH\xbb\xf4\xa1\xe8\xab\x16\"4\x85b|\xdfb_VaU3/\x16C \x1bTS=\xfe\xcf\xe6g\x8f\x0f\x8a\x16\xca\xf7\xc4\xd5\xc50\x97\xb2\xad\xadsK'N\xbf\xf22J\x1f\xd3\x97i\x89\xe1m \x8a\xbd[\xe7\x96\xe6\xbes\xe2\x95ib\x8c\x88\x90\x19uY\xeb\xa8-\xf3\x04\xa5\x13jh\xcf\xd1\xcd\xc4+\xe6j'f\x1e-\xf5W\x8b\xc0a\x00f\x95\x9eo_\xf5\x0e\x02E(6P\xbe\xbdF\xb7/l\x9f\x9e\xc3a4\xbe\xfa>\x8f\xbe\x9b0W\xb5\xbd\x93n\xfdY\xe9\x04H\xef\xc8P\xbf{\x02O\xb9H\xc7\xac6/;\x9b,;\x99<\x13\x19\xf9\xf8\x1a\xe33\x03\x9e\xed\xf8#\xde\xee@\xf5\xd2\xbf\x17T\xbc\xfe\x11x\x19\xcf\xa2!Vt\xa6\xe2\xbb\xcc\xf62\x03\xe7@\xca\x9f0\xb0\x05\xf9\x97\xfcc\x9aY2\xb5\xf0A\x97\xb9\xf5t;oC\n\x97\\\x12h\xb52G,~f\xba\x02/\xf6\x0fhp\xf1\xef\xa9\xea\xfb\xd2\x80\xa0\x0b\x1e\xf1\x85\"\xa03\xe3\xe8\xd3\xd1\x01\xf3\x91\xfag\xd6\xe92\xc7\xcc\xb4\x81\x07\xa5\xb2\xe9z&#\xad\"\xe94\x13ef\xb2\xca\xbc\x083E\xbaDSm\xc9\xd0\x02`bA\xc5\x18\x14\x1c=\xda|\xe7);\xbe\x1e\xdcP,.\xb81U\x87\xba\xc8\xb4\xe9\xfeX\xad~\xa7\x7fc\xf5\xe8W4\xf1\x8d\xd4X\x96\xcaj\\\xf6\xb4\xc67M\xd2\x8c\xba\xe4s\xb5{\xde/v\x88\xc5\xd3n\x90\xdc\x9c\xfeL\x1a%Y\xbb\xd3e\xb1\xf9K\x06\xea\x95\x9e\x88\x14{\xf7=\xd8\xc3c\xc7\xeawM\x0e\x04v\x8c\xc5\xd3l\x98\xc1\x8e/\xd8\x99\x8c\xed\xbb\x1e\xdc\xe8\xb2#N\x9b_wotY&\xff?\x9c\x8c\xdbZx\xd14\xa8\x90yi\xfa\xfd\xbb\xc5\xb1\xab\xc0\xee\x96\x1c\xa6\x8c\x7fR\xde,kHu\x9c\x15Y\x17\xcfT\x1e\xce\xbaki0\xadm\xf0H\x1bH\xab\x95\xa8\x8a\xef:\xffV\xe9\xbbA\x0e\xe9\xcc\xa9;\xa9(\xfb3n\x14\xcb\xb7\xf8j\xc0\x92_I\xf1\xa8\xa0\x0c\xea!d[\x8f\xd7go<\xaf\x04\xa49%=(\xc0\x0e\xe8u\xb3\x8d}\x9e8=ka\x9f\x13/\x98\xd5\xe2Fj`H\xad\xbbK\x19o\xd8\x9e?1[1\xb4_L\xa3pS\x1cw\xfd\xa0\x9b3S\xfc\x13\xacN<^\n\xa2P>*=s\xd3\xfc\xb3*\xee\xe5\xd6%p#\xfe[G\xc8s\xa9+\xd4\x11\xa2\\&O\xa9;\xdc\xf9\x8c\xf8o\xf5@\xd9\x14\xaa\xc0*\xa9Kw\x03\xd0K\xean5\xb5\xd5\x9e.\xa7d\x02\xa2w\x0b\x17P\xd4\x1f\x8f\xab\xfcO\xc3i\xe4Mt\x97\x85\xb0q\xa6\x8cM\x8bs\x95\x93JR\xe3\xa7R ~\xd3\xd2\xcf\x91\xb9\"\xbc\xeb\x8cN|.\x1f\x98?2\xdb\xe9\xaa\x82V--a\xaf\xb1Dp\xc2\xd9.\xe3\xf2\xeeDH[l\x81\xc5\xf2\xa3\xcc\xb8\xdcR\x179\x00\xa2\xab4V\x99\x0d\xed\xe8XAE\x8b\xa5\x95\"=x\xb0{\x9e\xee7\x8a\xcd\xce\xb93\xa5\xe6\xe4\x1d\x8a:\n\x16\x9b\x9dlF\x9d\xc7\xe7jJ\x8bl\xe2T\xd6\xb7,\xa5C\xd3\xacT\xa3\x05\x8eO\xd1\x93D\xd4\x10D\x94.\xc3\x0d\x89\xad\xaa\x0c\xa1S?\x06ql\xca\x1d\xdaw@\x9a@\xe4\x11cg\x04\xf75\x88\xd81Od\x01\xb8\xc3\xb2a\x12\xed\x8b-#\xcai\xbb\xb5#\x1a0\xce\xc1\xac\xef\xf8\x01\xf7Z]\xd6\xdaY\xd9\xde\xb9\xb9\xb1\xb9\xb2\xb5\xb8\xb3\xba\xb1~\xf3\xdc\xe2\xea\xda\xcarK\xa2T\xd8e|\x82\x18\x86\x16G\xac8E\x92\xba\xcd\xad\xae]i\xc5\xab[\x88\xb7:\x0f\xecf^\xd9\xaa<\xef\xb4\xcd\xb0\x90\x18j\xeb&\xcd+h\x1e\x81g?\x8c\xe2\x1f\xca\x8bL\x9ed\x87\xccOY\x18eL\xa8\xf9Q\xbfX\xe2\x94\xa9\xa8J\xe6\x87l\xeb\xdc\xd2\xb1\x97O\xcf\xce\x8b\x05/\xd6zc\xf3\xe6\xea\xfa\xe5\xc5\xb5\xd5\xe6\xf5\xd6\xcbR%V\x95\x7fE\xca\x92\x8fT)\x8eU)m\xe6l\x03=`\x90WW2\xd0\xac\xdd:\xde\xb2\xd8>a\x17\xc8\xe7!;\xc3,\x8f\x16\x8cKv>\x0b\xb31!b\x146h\x80\x1d\xd6\x84\xe3J\xd3\xe2\xa1|\x1a\xae\x8e:\nb\xf8\xaa\xf5\xcaWl\xf9@\xda\x16\x877\x14\x95-\x11a\x08\xde.\xc7\xb3]\x1f\xdc`\xaf\xc9)\xf4\xc18\xd6\x9e\xed\xb2\xa1N\xc5z\\f\xe7\x1b\x8a\xee\xc7\xec\x18\xe4\xe2o\x8f\x98\xa1\xbc\x95\x00^\xd9\xf8aA\xb8G\x82R\x0f\x8f\x1e\xc5\xf7\xc8^\xad\x89_\xe2\xfa1@\xf4AG.\x9e\xa7\xad\xee\xd6\n\x0d\xae\x8aL\xe3\xbf\xb4\xf6\x95\xa5\xd2A\xa7\xf9H\xac\x1c\xc4\xdc\xcd\xb8\xc7\x9c\x90\xe5a\xea\x0f\x04\xba\xf7\x9c\x94\x1f\x9b\x9be\xea9d\xa6\x08\xf3\xc8\xd9\xf3\xc3\x01\xcb\x86\\6\x96\xf0>Ox\xe8r\x0f\nH\x80\xf4\xe9c<\xe0\xf2\xa8\xef\xfb\xd9P~\xbe\xc3\x93\xe8\x98h\xd6\x03\x81\xb5z\x8a6\x17w.\xdc\\][[9\xbf\xb8vsqkk\xf1\xea\xcd\xd5\xf5\xe5\x957\xd4\x99\x02\xed\x8e5\xbd\xe5W\x9d\xb2\xdc9\xb1\xa0\x7f\xfc\xc7\x83iu\x1b\xa6\x96p\xc8\xbew\x86\x8d'\xdd\xcb\xc8\x85\xae\xf2H\xf1e\xc0\xbeg6q\x021\x1fr\x19\xc6\xe1\xf7}\xbd&\xec\xd2\xee\xf6\x0e[\xdf\xd8a=\xce\x06\xd2W7a\xd9\xd0 a\xc5\xa5\xc1V\xd0'\xb5\xb8\xa9\xa0Jf\xc9\xab\x0bzyqmw\xe5\xe6\xc6\xee\xce\xcd\x8ds7\xcfn\xec\xae/oO\xbf\x96\xf2\xde \xd8\x92\xb4\xdc\xa7\xd7\xc5\xf4n\xc0\xedV\xd8e^\x97\x0d\x04\x99\xeb|\xfd<\x8b\xd5\xd1R\xfd\xb3\x08\xccE \xc3@\xb9\xc5\x1c9\xc3\x06E\xaa\x83?n\x15\xf8\xe2\xcc\xe4!\xe4\x9a\xdct\xb2a\xe1)8\x90\xa7\xbb\x113\xf0\xaa\xe5\xdf\x9cU\xab]1\xbaZ\x1e\x032Y\xc3\xa8l\x02s\x7fz\x81\xd9&\x16\x13\x07\xe1\xe6\xa5\x91\x7f\xb3\x94\xdf\xce\x05\xe5a\xa3<\xcd\xc4qq\xc2\xe2\x18l\xaf\xbc\xbe\xbb\xb2\xbe\xb4rs}c\xe7\xe6\xe2:\x10\x14\x1c\xe12-\xbb5\x9e>\xf2F\x9f\xef3\x1d\xd6\xa4\x0e\xb9\xf2\x00\xebB>Msk\x9a\xb3\xef\xb2\xf4U\x96\x1f=\xdaa\xfe\xf5\\\x86`\xcau\xba\x9e\x0bN\x05\xf7\xf7\x12R\x16\x8d\xac\xda\x8bO\x054\xbfqC\xe2 \x1bRw\x0bU\xbd\xf6\xa2^\xf4\xd3IVJ\x96rB\xa6\xba\xa9\x10&\xb5%\x1bg/\xae,\xed\xb4\x00k\xc5z\xbcJFy$\xbf\xce\xc5\x01\x9a\xb6\xdf\xafD\xa2\xab\x1f\x9eq\xbe-_\xd9\x81\x826\xe5xEa:b\x87\xa9\x86-\x0cr\x8aa)\x9f(9\x92\x82\xc4\x1d\x07\x12\xa7>\x177\x81\x8dc\xfdv\xfdX\xe5\xa9K3'Q\x1c\xbeu\xbc\xf5\xed/6\xde\xb2\x1a\xc7\xa9\x1a\xc7\xa5\x02 X\xadm\xb9\xa5\x027\xedr\x8b\xc2t\xb9\xe3\x84\xa7\xe2X\xb5U\x88\\/\xe0\x025~(F\xf5C\xe6\x84\x1e\xfb\xa1\x18\xcd\x0fK(\xd4\xa9n\xcd\xb9\xad\x8dK7\xb7V^\xdf]\xddZ\x994W#/\x98\xa9V\xd4c\xf3\xb5P+\xcd\x02\x94o\xa1\xb5Eq\xca\x99\xcb\xd2\xd3O\xdd\xf1\xbc\x1fv\xd9\x0f\xd5\xc8\xd4\"\x88\x115,\x02\xc8\x1b_\xfd*83C'\xdd\xd5\xc9n\xdaz%\xbeyK\xb1\xb4\xb8.H\xdd\xd2\xc6\xfa\xce\xe2\xea\xfa\xcd\xdd\xf5\xe5\x95s\xab\xeb\x13\x96\xc6r%Q6\xc5\xa8e\xa87cB\xa0\xb4<\xe3\x85:\xd8\x98_\x83)kxD+\xd8E 1\x1e_\xd2\x98\x94\x1d\x05\x15I\xfd\xb3y\x0f\x96\x9cP.4OdT\xb2\xa3\x16\xb7$\xe48\x99\x14f=\x9e\xfa \xf7\xa4u\xcfB\x03\xd5\xba..\x97W\xb2I\xe6\xab\xc1\xad\xb2\xe5\xc2|,\x0c\x0fM+\xed\x83W\x99\xa3\xdc\xac\xa2\xe7\x9a\xb8\x98be\xce\x8e\x9c\xa9\x10\xf33\xe6E\x1c\xf0\x91\x1f\xf8if\x99\xfd\xee\xfa\xd6\xca\xf6\xc6\xda\xe5\xc5\xb3k+\xd3\xce\x7f\n\xfaZ\x8fQ\x81\x10\x07\xdb\x16\xff}\xfdk2\xd0\xea\x1f\x18j\x81\\O\xbc\xa3\xab\xc9}.~wo\xd0c\xa3\x7fb\xaa\xd2\xeb\xbdq\xc9\xe4\x9c\x03\x99\xf9\xe2K\xec\x9a\x98\xc7\xd4\xfb&\xd9\xc3\xd4\xfb\xd6(\xd7yZ\xae\xc3;f\xf7\x8b\x93B\xd4\xf3Iq/J\xb8\xd6\xdd\x87\x1d\xd6oW\xe4\xeb\xb0\xd3\xc5\x02\xb7\xd0\x03~\xf4#\xa1\x11\xd0F\x1aL\x1e\x89L\x19\xf6\xa3\x1f\xd5\xe5\x01\xac\x84t(\xd7\xfc\xc2\xab1\x12\x82y\xd2\xe6\xd7\xa3\x1b\xd2\xb79\xd4\xc6\x9dI1\x0b\xcd\xee\x81\x926\x94\xfdn\xf1\x1a\xd7]\x81\x88\x1f\xecLm0\x99\xf9K:\xed\xca\xf7\x92\xcf\x1enF~\x98I\x0f\xfa\xc0Du\x17\xfc\xee\x0cs\xcdW\xd8\xdb3\xaco\xbel\xc9p\xbd\x04\xc7\xe7\xe2y\xe9\x0b2u\x8bb\x91\xd4A\xebM\xbe>\xc5V\xadaR\xd6\x8c\x8a\x85\x12\x13\x1c;\x81\xef9\x99\xf4\xe9\x8aK\x1f\x84\xd6\xe5}K\x15\x9b\xc6\xb3-l\xcf\xbfR\xea\xbd\xd6w\xdb\xa6h\x1dI\x94\xb72\x9f\xb9\x99\x81{\xac^\x9e\x9d\xc3\x98\xab5Y\x0de@U\xe6\x0b\xa9#\xe1.\xf7\xc7<\xe92\xf3\x96\x84L)\"x\xe2\x11|\xcc4*!\x1c\xf9BQ\x0b_(\xad\x0cM)SN'Sr\ni\xcf\xcfw*\x8ew\x96<25\xbe\x93\xf4\x909\xfd\x8c'k\x91\xe3M\x13a \xafk\x93(\xcaVC\x08\xc4>C?\xe9w\xc9\xd1\xf7\x19?\xf4\xb3\x8d\xc5<\x1bB\xb2\x98<\x1b.\xca\xde\xd2\x197\n\xfb\xfe O\xb8\x80Zj\xc6 7)\xdc\x16e*(is\xee\xf9\xa1\xd7\x86\xcb\x0f\xe94\xdeT\x0d\xf2\x1a\x9dan\xb5\x16%O\x94\xa5\xa6\x99\x93\xf1\xcd \x1f\xf8\xa15\x0eD\xfcD?u0&W_\x12\x87t\x81Ez\xb3\xeay\xb7\x03\xcb\xd2\x185\x96\xf2\x80\xbbY$Z\xb4\xbf\x0fY\x93\x95\x16r\xdd\xd4\x0ft?q\xe2E\xdd\xbf\xfdQ\xae\x89\xee!U\xdaa\xdd\x05\x0c(v\xb5\x8a\xf0\x91B\xf8\x13\xa7O\xe2\x9c\x19>\xbc<\xd4\x9e?A\xb2M:\nt\xe2\xf4)\x0c\xca\x0dH\xe6\xd90\xb0&\xb7c`C(\xdbc\xd3\xed{&\xa3J(iWQW6\xbc#\x89\xea&$\xe80\x91D*\x05@\x06\xd1\xdf\xfczX\x93K\xa2L$x9\xff\xa7M6\nj}\xaf\xa7\xcfzY\x93\xf1\xb2Y(s5\x89\xb5\x18\xdb\n\x9d\xacL;\x0c\nQ|/\x1e\x0d\xd9\xd6\xa7\x85\x16\xca\xa5\xcdR\x14\x12\xdc\xd5r\xfaMz5?\xddX\xdc>\xd1\x91 \xcd&>\xb2\xc1\x16\xd8\xf5\x96%\xd3b\xcb\x12\xa6*\xd4\x82\xbc\xdd\x11r\xc8j\xd8\xben\xd2E\xa4]v=\xbbA\xd2\xc1\xc0F\x04\xec5\xe6\xcb\x07\x99\x13\x94\n\xb3![\x99\xfd\xdc\xebdq\xb5\xae5:u\x9c\xcd\xcf\xd2F0\xc5\"8\x0b,\x98\xc9\xa2\x8b\xdb\xe8=gHS+NB#\"\xf4\xeb\x1c\x8d4U\x98\x1a\x0b\xfci\xb0\xc0\x81\xb7[j\xb1 7O ~eX \xc3\x98-X\x907aA\xca^c\xd1\xf3b\x81\x0d\xcb\xd5\x96\xa5So\x19\xfb\xa6\x89F]\xed\n-\xa5#\xca+$\x84d^r\x14d\x8e<\x00\x90Kq\xf5;\xe8+$\x1b\x9e\xc3\x11\x16\x81\x8a\x87\x98\xb7\xf2\x14\xf7\xeb!\xa7\xfa\xaf2\xa9\x97\xfeT:'kT\xca\xc9\xdae\xc1\xcc\xf6\x85\x8d+7\x17ww.\xdc\xdc\xdc\xd8\xdc\xdd\x9c\x90oY\xfb\x95e3\xb1-\x9f\x9f\x9e\xd1L\xca\xb3v+\x1dF\xfbe\x84\x17\xa8Q\xda;\xfbx\xc4P6\xb6V\xaf\xad<\xefH(B'&Op?\x89F\x17\xb7;BW&\xa5\x80\x90\x0c\xc4\x80\x8b\x1c\xc1-x8CV\xbe\xe4\xc4\x1d\x1c\xf8n\xd4%\x1ef\xc9\xe16\xbf\xdd\x9e6\xe3\xba\x96\x0dP\xbaN\xdee8\xb0U\xff\xe4,\xaf\xcf\xd6\xe46H$t\xae\x06\nIe\x159i\xc1 \x17T*\x939\xcfjl\x0c\x95T\xab2\xc7H\xe9\xa5\x1d\xbf#W,\x92[\x1c\xda\xcdG\x85\xa9\xac\x94\xdf\xd4\x9a\x97\x87\x95\xc2}\x8aq\xca\x93.\x86\xa9\xb9R\xebFC\xfca`\xaf\xab\x19\x96u\x9aLm|\xdb\xccET\x0e\xbbL\xd5ot\x9f.xe^?*H3\xb7P\xce\xa6\n\x8f\x93\xf5\xb2\xc8)?\xdaS\xf7Ls\xa7S\x1e\x96\xda\xba\x1b]\x98j[\x7f\x98\x98\x11B\x066\xc3y,\xa1\xb7\x10\xad\xa6?\x8a77\xc4\x9f\xf3/\xe6D\x86\x92Q\xdb\xcfaX\x97,\xd9\xa9\xf1u2\xe7\x10\xde\xeb!o\xfd\n\xaa\x17u \xcfH\x95\x14$z]$\xd6T\x96\xc6\x81\x15\x96\x88\xd7\xb9\xd1-\xe7\x05\xac[\xaa\xb5\x8d\xf3\x1b\xbb;/f\x81,\xc4hf\xdf\xcf\x86\x97\xf2\x0c\xaeG\xa6\xc8\xa8h\xc9\xe4\xd5\xf8\x8c+\x9f\x81\xc0\xb2\xda\x10^\x0b\x9a\xd5\x98N,\xb8\x96L^\xc0\xa5\x8d\xf5s\xab\xe7w\xb7V$/z\xde\x85l\x1a \x18\x16,\xdcG\x8d\xea\xb7+\xc0t\xc1\xf6\xb8\x04\x83\x94s\xf2\xd3E\xb3x\x90\xd4\xad\xfaO\xaf`\xa9\xe7\xa2d\x0bLY\xe0\xbe\xa4\xd2\x0f\x94\x98\xee\xd9\xc3ug\xc4S\\q'2}H\x90`\xd5a\xa9\x9a\xe5\xb8i\xdbS\xde\x0e\xdb'\x89t\x15)\x08\x95\xa1 o\xc3),D9J\xb4z\xbe8\xe2\xafDV\x1a\xab\x04B\xf5\xc7\x8a\x9a\x05\xcb\x967\xcb\xe2\x01\x19\x82\xec\x90Z\xe5\xe8\x08enr\x1f\x8a\xbc#\xd9\xa9\x83p\xa6v/'\xf7\\\xd3\xf1tb\x0b\xd2\xa2l\x0f \xb4\x8d\xec\xe4\x80\xecT\xfb\xcaQh\xe4\xa05?\xcd\x88\x90\xc5\xca\x96\x8b\xe7\x16\xb4\x18\x12\xb6\xa2\xa9\x84-fD\xaa:\x81\x8b)\x9c\xae\x17\xbaXIYt\xac\xe2c\xb9T.\xc9T\xd2\x95/%\x86\xe0\x1b\x9b\xa7\xc3vn#\xb9]\x9c\x17\x91\x92\x12\xeb\xe1o$\xa7S#@H\x11\x80\xce\xcb\x8d\xc24\n\xf8\xcc\xbe\x93\x84\xed\xd6\x95\xc5\xad\xf5\xd5\xf5\xf3\x0b\xcc>2?e\x1e\x8f\x13\xee:\xe00\xeb\xb1}?\x08X\x8f\xeb0\x1e\xed\x91\x19\xf2\x83\x8c\x8d\x9c[Q\xc2\xc6\\g\x9aB7\xe2;\xd3\x04\xbb\x11\xe7\x99\xce`,I\x98?\xa1W\x1b\x8f\xc1\xbf\xca\x9b\x039PF\xa9\xba(\xd7\x95T\xd0\xbc\x97^b\xed6\xbcp\xa1$\xe3(\xe6i\xab\xd3\x99\xd9\xe3_h%\x99\xf4~v\xa30s\xfc0U\x17N\xb2\x87T\x8bI\xdc\"w\xeb\xdf]\xe5\xc1\x98+I(\x08\xa2}\xeem\xc3\xa8\xba,\xed\xa8\xe46\x99\x84\xfb]f9\xe9\xba\x1d\x1f\x9e\n\x95\xb9\xcd\xec\xf4\xc0\xaf\xa3\x07\xddI\xa2B\xfdbh|u\x92\x81\xbc\x08L\x0b\x07\xb79V\xcd\x15f\x8a\\\x9f\xbb\xc1^\xab\xfes\xa1\xe9TMEtT\xa16\x18\xfa\n\xaec\xe7~e\xc6\xa3\xfa\xecL\x9f\x84\xdc\x1c\xf14\x1a\xf1)\xc5fSG \x1e/\xe1\x9b\x9f\xa4Y\xbb\x06G\xac\xb2t\xd3.V\xe4\xbf\xc9\xfc}\x82da3rh\xa2\x84\xb8 \x92D_$\x13\xa9\xeeg1\xa6\x06\xe2\x0b\x9b:\xe3\xa7\xe2?\x10\x1b|\xe4H\xa6\x8c\x95\xcf\xbd\xcf*\x97#2\x9b\xf2\xce\xcc\xc8\x89\xa7h\xa5\xd4\xd2\x91#!\xec\x7f\xddv\x1b\xaf\xd1#s\xb6\xad\xd7\x87\x0b\x99W\x19E\x84\x8a\xa2\xf0\xa5\x11A+F\xe5]\xff\x16\xfbFhD\xfc\x80\xbb\xb9\xf4,\xb0j!]\x95\xe5f\xfe\x94E\xd7\x90\xd6\xceH2\x88\xa4\xaa($\xcd\x8aB5^\xb8\"\xe1\x17\xe3\x99R/\xad\xa0\xb7]\xcd\xcf\x9a\x04)|\x9aj\x9f\x83\x89\x94\x1a\\\xe7\x8e\xe8\xa8\x0c\xd6\xd90\xaayr,\x97%\xa6x\xc1M,C\x968\x0d\xcf\xc9\xd6\x1f\x95\xe2\x80/(\x03\x90>\xeeb\x9f\xaa_\xd4\x89\xae\x97\x1eJ\xd4\x7f\x81%5*\x88\xdc~+hb\xfb\xe5W\xdd\xca\x1d\xe0VMS\xf6s_K\xc8x\x1b[\xa9\xac\x0d\x80\x93_\xcd\x1by\xb0\xa3\x0b\xcc\xb1\x83K\x0f\xde\xd4\xd8(\xcb\xaf\xe6X^\xbf\x95rJ\x1d-\xfa\x86P\x89/\xe3\xf1\xd2\x0f\xebnB\xd3\xa1\x94\xd8Vn\xe7N\xf0}~\x08(\x86\xbe\xd1\xf5\xaa[*j?\x917G\xdf\x80\x15\xa4#K\xdba\xfb$y\xe7:2>\x16\x13\xfd\x8dj\x05I>\xd3\xb7\x10\x16{\x82\x02\xf1\xf3\xa2\xfd0\x98\xd2\x1d\x89Y\xc8emj\n\xfd+\xf4D\x9e$\xea\x02\xb9Y]aZQ\x9at\x8d\x8c\x7f\x8e\xa94u?\x10\xf8Tp\xfb\xc95\x02I\x9f\xfb\xa0\xc4v\xcc\xddv6\x93 ~'\xf4\x8a< \xda\x9d\"\x93\xbf.\xb6\x9b\x04u6\n\xfdk\x1e\xbbL\x14#8\xac\xea\xa2[7\xc6\x00\xfe ,\xdc\x0d\xb8\x934\xbc\x8d\xa1\x7f\xcf\x83dB\xfe\x0f\xa6h3O\x82\x05[\x9e\x16\xfc\x13\x03\xde\x96^\xd1G\x1a\x1e<\xd4?\xf5 \xe9j\x98\xf1\xc4\xe5q\x16%\x0b2=\x0f\xfe*\x96j:\xf9\xb5\xfc#w\x8du\xbf\x1a\xef\xee\xf2/\xe1i\x1c\x85)'C%\x9f\x7f\xfbcu\x13\xee\xf10\xf3\x9d ]`\xad\xd4\x19qEg\x1b\xe2\xe0\xf4O\x91\xb7&\xa7\xf6\xf2OP\xc98[\xa8\xbe\xe2y+\x8d\xc2\xee\x1f\x1c\xff\x83\xc9\xe4\xad\xf9\x94\xdc\xed\xccdC\x1e\xb6\xfb]\xd6o\xb8$\xb0Bj\x96\xc9r\xc8\xa6\xd5\x8c\xb4@x\x1d\xa2\x1d\xcc\xd1\xec\xb2V\x11*\xa4i\x8a\xf9\x08zG\xab\xe1\x0d\xf4\xaa\x1553&Nx\\N\xdf\x01r\x95\x11G\xfcg\x01\xc4p)\x90Ws h\xdf\xa8\x92\x1d6\xebLdT\xd9a,\xa8\x85\x90\xb5n\xc2\x02\xddT\x93\xbb B\xf8\x04\xbcQ\xae#\xb6\x04n\xfaW\xb3I\xe4\xab\xcd\xff\xb9V\xb7\x0d\xaa\xdbh7\xe3N\xb7\xb9\xc6)\xa2\xce\x8c_\xfe\xddm\xb2\x0c\x97\x7fU+qe\xb8pc@\xcc\xd4\xfag\xbb\xd9\xb0\xda5i\xe7\xd3\x04\xd8L\x8a[113\x8d\xd9!u\x10N3v\xd5\xa3\xd5B\xb3\x0d\xd8\xf6S\xb3\xb6\xbc.g<\x98 \xd1)]\xf0nQD\xe6;m&=\xf5\x98\xdc`\xed,\xa2\x88j\x1e\xa0\xa2\x9b\xfa-\xfb\xbf\x90\xb5k\x82\xe7O\xf5\xab \xca\x99\x9f:&\xe7\xab\xf2 \xfa\xed\xda\xe5\xbe\xace\xf3\x85\x9e\xa4\x1a\xf32\xab\xe2M\xdf\x8e7\xf6\xba\xea\xdai\xbaH\xb9t\xe6EG\xca}\xe9x6j7u\xdba\xfb\xf4 \x12\x9c\xa6\xee\xa8N\x9c\xb0\\R\xc9\x00NZ\xc5Q\xa0\x93\xb3\xb3\xb6P\x04\x00\x11\x0bm\xaa\xc6pr\xb6\xe6\xecXB\xb9\xfe\xe9\xc5\xb3}\xcd\x01\x18c\x95T\xb2\xda\xc8\x80gk\x91\xeb\x04 `-4\x9b\x03\xb5\xf7\x834K\xc4N\x92\xf2\xab\xceHU\xed\xb4\x0bi\xa9q,\xbf}bf\xec\xd8g\x0fw\x130Tk\xfb>|op6\x85\xf3S\xb9v\xc0U'^w7_\xa2\x96\x169\x9b\xe9\x87`C\xef`E\xb9\xee\"^O\xe9\xb9\\#\xac\x06*}\x99[\xb9*\xa0\xf2\xb7<\xb7\xe6\x9cFh9\xda\\)\x1f~\x97\xf96\x03\xbf9\x0d~\xfd\x1dIh5\xe2\x87U#>{\x8d\xb5\xa3&\xfb\xbdR!:\x02w\x9f\xab\xd8n\x12\xb4[\xe2CU\x89\x08KV\xfd\xc2\xa8?\x93'\x81@2x\x81]HH\x99\x8a\x84#\xe7%\x04\x03\x89ED\xfd\x06\x9f\x9f2\xe6\x0fx6%\xa6q\x15\x0d\x83\xdf\xdf\x94\xf6\xfc\x05\x19J\xf8\x0d\x9d\xa5v\xef\xe8*\xe1q\xde\xf6\xda\x9f\xf4\xf0\xf0\xbf\xbc\x87\x07e\xb0u\xb1~\x82U\xdb\xef>e\x00\x91\x8e\xad+\xc5sE]\x96\xce\xecn./\xee\xac\xdc\x84\xd8\x86\xed A\x0df\xef\xe0\xb9\xf1j\xb4J\xa1\x04\xd0P\n\xdc\xeb\xce\xc6\xf9\xf3k\xd3\xf6\xfa\\1)8U\x89\x19\xb2\x8a\x05;\x82\x02=\xa2o\xc2=\xf7\xf3\xc9\xd3\xd7\x0d[\xb5\xd9\x1f\xa6\x91\xad\xa7\x90o+ \x16\xea\x8b1e-\xe0\xf8\x15\x8d\xe7\xd09\x9f\xfb\xbe\x91C&\x1b\x95c\xb4[xtNa\xb2f%\x84\xda\xf7C/\xda/.3\x86NZ\x93\x00\x0d\xff\xb2\x99\xc09\x8c\xf2L\xc7uKJ\xbe\xccy\xbc\xe6\x87{\x17\x9ct8\xcd\xfd\xd2\x04\x1b]-\xf4K\x98|\xc4\xae\x9a\xfc\xb6\xb5\x1b[\xf2\xcc\x99\x90\x06\xc4$\x1d\xdaq\x06\x0b\x85\xbb\x10\x1dJ\xe5\xcb\xdd\"\xd1\xacEUq\xa4\x9a`UU\x00\xf4\xb2-|\x07@\xdf\xb1+\x17\xce\xd7'W\xff\xf6 \x89\xbc\xcc\xd8v\x93(\x08v\xc0\xf5.U\xffPw\xe0\xf2[\xc2\x1d\xefp'\x82r\x8a\xb8\"\x1c\xae\xd45!X\xcd\x0e\x8f\xfd\xda\xb8\xf6\xbe5\xf2\n\x0c-'g\xb1\x97d\xaej\x9c>AR\xa34\x86\xb6c\xde(\xdf\xa0l\x07V\xac\xe8\x7f}X\xc1\xd4*\xc5\xe5e\x9cH/\x0b\xc67\xc9\xcf\x06\x9c5\x81&5\xc4\xbdLKp+\xef\xf8c\x0f{\xd8h-\xafU\xde\xc2\xcfT\xee\xe3\x08r\x1f\x17\x9e\xf6y\x8d\x99\x1e\xb2*V\xa9y\xd4\xe9\xb2\xb0\xdd\x91\x8f0\nT\xf4\xc3Ag\x8aG`\xc5\xfeG\x13#D\\Yj\xae\xe1\xd6 0O@k\xa14\x10Bi \x84\xd2\xa0\xa1\x9eV\xa6\x13!\xef\x8b\xe3#+\x9fK\xa2\xd1j\xba=\x8c\xf6\xc3\xef\xf3C\x89\x88u\x0d\xc8\xdca}\xf4:ls\x7f1\x8d&\xeeO\x8e\xa5\xf1\xd8\x19\x16O\\\xa9\xa1,\xd5\xb4Rr\xc0n\xa7\xac\x9e:B\xcc\x12\x93\xef\xc8\xa4\xa2\xf5u\xe7\xe5\x9d\x8cyX\xf65\\\xbb-\xe3\xd0\xe1\xcaA\xd3\xa4M'\x83v\xd9Q\xe6Iw\x16\xf1\xd7P\xaaTs\xd5\xf6^z\xe9\xb9\x1b\xac\x8b\x84\x98\xea.\xbe\xaa\x07N\xff\xb2Z\x95hT7\xc4\xc3\xf4\xb7\xf9j\xa4\xd6\xd8\xca\x8a\x8b( \x107\xa1\xcd\x9bYTs\xfdd\xae\x9dp\x1eIE\x06\xafs\xfaTW\xe3T\x86\xb5\x0cf\xaa95[GX\x85RV\xe4\xb2z\x0c\x9f\x92`2\x85\xe6`z)\xa8p\xa7J\x9f$\xbbh\xc2\x8f\xb1\xc9\x06\x04\x0f\x90\xcc5\x1c\x8d\xd6\x11\xf08\x13\xc4\x8c\xe9\xcc\xf9\x91\xa9\xd8\xe9J\xc4o*\xd1L4|\x9c\xf9w\xfah\x12\xfd\xd3'\x9e\xebwhT\xba\xdd\xf6\xf1\x9b\xc7\x07]\xd6b\xad >\x1c\x13(\x94#\xe9\xa8o\xe8\xa6\xa0\xa2\xbb%\xaa\xda\xf6\x1b\xe6\x18J\xfe\xdav\xba\xf0\xdc@h\x8eP\xdby!\xe7rl\x95\x9f&2\xf3\xa9,l\xac\xe2\xf7\x8b\xd0S\xe0\x9f\x96\xeb\x043\xa9Y\x03\xd7xi\xf9i;\x01\xfd;0Z:\xef\x80\xe1:D\x1a\x0c\x92\x11%g\xc7e*\x92\xa5-t\xacq\xddF5\xb2\xe8\x8b[\xb9f!A\xca\xbd`&\xec\x87\xc5Zn:\x89\x98/\x17\x92\x8cY9u\xd7-\x0b\xc8G\x1eg\xb2\xa8\x96\xac\xff\xd68\xc4@\xae(\x96\xf7\xa7\xb1\xd7O\xc3%d\xbb\x8aWP\x87\x1340\xbb\xe5\xa9\xda\x8d=\x9e\x01m\xc4\x94f\x04M\xf0\x8d\x97\xaf\xfeC\xe1U3\xe5\x97\x84|\x14\xe7\x19\xf7\xb6\xb3\xc3@\xe6#\xae\xad \xd6\xb4\xe5\xf4\xd2(\xc83\x95S;\x99\x89\xa3T\xc6\xea\xd4W\x93\xf1\xf7\xec5v\xbc\xed\xe4Y\xf4#X\xc7\x1f\x0d}\xcf\xe3a\xe78[\xa8\x02:\xc7\xeb\x99O\xab\xef\x1fp\x0f\xf7\\\xbc\x90f\xafidx\x99^\xf0U\xf9\x1fG\xf0\xe0b\x91^\xad\xa7\xd221\xbdm\xa5\x9cN\x97\xb5\x8f\xc8wTZi\xe6d\xbe\x0b\xae\xd3\xe5\x81\xbd\xf4\x12\xf3eZ\xe0v2\x13\x8dy\xd2\x0f\xa2}v\x94\x15\xff\xb8Z\xf9\xd7\x1b\x9d\xc2\xdd\xde>\x17=\xd3IX\x88\x14\xc5 \x960\xc0\xf3\xdaT\xa9\x93\x8d_\x88\x96-\xb0\x86D\xe7\xba\xec\x02\xab\x89q\x13\xbf\xcaQ^`\x83\x06,.\xb3\x9f\x056\xae/I\xa4\xae\x056\xb4\x13\x1f{\x1b\xa5{\xe9\xfa\x95\xa8r\xa6i\x1d\xbf\x18\xc3\x9e\xccM\xef$\xf5UZ\xac\xed\x01\xb4_\xd4{\xa44\x8b&\xa9\x1e^;\xf1\xbb,\xb7SgDX\xb2\xa1\x9fvY\x9d]\xd5\x08\xc1\xa9\xd5\x90\xed\x1aCv\xda\xe9J\xeb\xed\xec\xab\xac\x0f\x8f\xf8\xf5\x8f\x1e\xed0\xf7z\xbfj\xc8\xee7\xbf\x16/\xd8\x9cO3\xa7\xc2 \xe5\xbb\x83\xc1\xcc\xcd\x9b\xd2\xb9\xec\xe6M\xed\x12]\xf2)\x0f:\x1d\xe9a\xa6L\xe2\xbc\xcb\xae\x8b\xba&\xc9\xb2\xdb\xe9\xc8\xf0\x99(\\\x8b\x1co\xa2\xfdL\xff4\x07\xf6g\xe2$\x8a\xd3\"\x93\xc2L\x16\xc1\xc1j\xca5\xc0\x14\x17F\x92G8\x939\x83\xae|\x04U}]\xf5\x1a8*\xbe2\xadH\xb0\x82?\xd4\xe9\xc4p\xc3\x10\x12G\x02{V\"J\x96K\xe6\xe9\xbc\xb4\xd2\xf06<\x92I\x82.\xaby\xf6hO\x88=\xad\x84\x87\x1eOj\xcc\xa6\x8a\xdaL\xbc]a\xc5\xa0Rdq0Q\xaai\xec\x84\x84\x9c\xd1F\xfa\x0b\xf0\x9c\x04\xe0Cm\xe1\xbb\xdd\xda\x9e\xb8z\x90B\"F\x1d?\xa7\xab|\xa3\xd3E)\x19\xee\xb6\x8b.\xcc\x15\xf37\xda\x87\xe7\x1bG\xfaCi\x176\xff\xfc\x1d\xd9/\xfd~G\xf6\xbf8\xd9\xb7\xe8\x85\x9a\x13d\xce\xe0\x0b\xd3\xec\xf0w4\xfbw4\xfb\xab\xa6\xd9\xcf\xe7\x1ag!?\xb5It\xa28='\x13\xb2=\x87\xe3R10\xc4Kt\xba\xaf\x93\xb3\xa7-L\xe3E\xe5\xfb\xfa\xe6\xeeG\xa3\xb7(\xc9{gy/\xa5TA\xbe\xd5~\x86\x85&`\x13\x87\x0f\xfc\x97\x85\xa1\x93\xcc\xd4l\x8a`\xa8)\xed\x19\xcc\x04\xeaB$\xf9tlD\xff\xa6\xf5\x1e\xc2?U/\x91\x0f\xc0w\x1b\xbc7'\xb6f7\x9a\x19h\xb3\n\x03\x13\xbf\x98F!\x9e\xfc\x146L\xf6%\xe6os\xe3jwf\xa2P\x90\xdc\x80g\x96G!m?\xb3\x8c/\xbd\xc4Zz\x10\xe5@\xcdP^\xec\xa6<\xdb\xf1G<\xca\xa5\xbb3<\xb8\x7f\x86\x1d\x99\xeb|\x95+_\x0b\xad1s\x92\xaf\xd3\xd2Y9\x15\xeb\xa1/\xefF\xf9\xbd\xc6\x96\xe7d\xce\x82?r\x06\xfcx:\x1e\x1c=\x18\x05\xaf\xf6\x9c\x94\xbf|\xb2\xbbya}\xfe\xda\xe1\xd9\x13\xce\x95\xadYgy\xd6\xbftkq\xdf\xbd0\xf0W\x97\xceF\xd7\xae\x04\xa1s\xe1\xf5\xd3\xab\xb7V\xf7/]8{r\xd5_\x1c\xf0\xf3si/\xbctzu4\x9c\xf5.,\xbe\xbcvx\xfa\x84w\xc2\xcd\xbd;\x97\xf2\xde\x89\x8b\xe1\xda\x9d\xd5\xfdK\xcb\x8bc\xf7\xc4\xb5p\xd5?;\xef\\\xb9|\xe2\xf5\xd1\xe9\x93\x9b\xdb\xab\xfb\xab\xcb\x8b\x83K;\x8b\xfb\xab\xcb+\xfb\x97\x96V\x07\xee\x85\x8b\x81;\x7f\xf9\xd0\x1b]>\xeb\x9e8\x1b\\=\xb1\xb5}\xf5\x8d\xad\xb8wg\xd6\xe7+s\xf1\xb5s\xc1\xbas\xe5u\x7f\xf5\xfczz\xf5\x8d\xf5;\x9b\xdb\x17\xd3k\x17.e\xee\xe8t\xda;\x1f\xe4\xd7\x0eW\x07\xee\x89\xadS\xbd\xf3\xbb\xa7WG\x17\x87W\xe7\xb3\xd0\x1d\x9d\x9e\xeb\x8d^\xcf\x9c+s\xc3k\xf3\xbb/\xaf\x9e?5\xee\x8dv\xbf\xb3z\xbe\nw\xcf\x9f\xbe\xe3\x88\xbe\xe6O\xbe\xbcz>\xc8\xc5\xdfW\xaf\xec\x0f\x9c+\xa7b\xef|0\xec-\xa7\x83\xab\xa3s\xb7\x9cy\xef\xb0w\xe2r~mi\xee\xf0\xda\x1bg\x83\xabo\xbc^W\xde\xdf\xbcup\xcby\xe3\xe2\xad\xde\xf9\xdd\xc1\xd5\x13\x83\xd3\xab\xb7v\xf7W\xfd\xb3\xb7\xf8\xce\xac\xbf\xbe\xb3\xe8\xaf\x9e\xbf\x16\xf7\xce\xef\x9f^\x1d\xc91\xf9\xab\xe7O\x85kW\xce\xcdz\x17V3\xf7\xc4\xd6ao>\x0b6\xb7/~\x87\xcf\xaf\x8f{\xa3k\xf1\xb5\xc3S\xb7z\xf3\x07c7\x9c;\xbd\xea\x9f\xcd\xaf\x1d\xce\x0d\xbd\x0b[\x87ko\xac\xcf\xba\xa3\xd3\xc9\xb5\xed9\xb3o\xfcDv\xab7\x7fj\xe4\\qso>\xd8\xf3\xce\x0fO\xf7\xb7W\x07\xbd\x91\x9b]}ck\xd6\xf5\xe7\x0eQ\xdb\x87W\xafl\xc5\xde\x1b\xeb\xb8\xdc\x1d\xef\xc2\xc5\xb13\xbf\x9b];\x7f\xee\x8es\xfe\xdc\xa1;:w\n\xd5\xdd\xbb\xfa\xc6zt\xf5\x8d\x8b\x87W\xdf\x08d\xfdb\xfc\xab\xb7\xd6wv\xe7\xc4\xffV\xfd\xb3\xa6-\x18\x93X\x93\x15\xb1&\x87\x9b\xdb\xabw\xd6K\xf5\xd6\xael\x0d\xdd\xf9\xe1\xd0\x0d/\x0e\xc5z]\xda\xb9:\xbbvk\xef\xce\xa5;W\x0f\xd6\x97/\x1d\\\xba\xf3\xfa\xfc\xfa\xf2\xca\xdc\xea\xf2\xee\xfc\xda\xad\xbd\x13\xebw\x06'.\xed\xbc~g\xfd\xce\xe0\xf0\xd2\xce\xa5\x93\xab\xb7N\xber\xf5\xca\xa9\xb8w\xe5\xdc\xec\xb5\xcb[\x87W\xaf\x9c\xbasmt\xfa\xb0\xb7}V\xae\x99s\xe5\xe2\x9cw\xfe\xf2\xc6\xd5+sb\x8dg\xdd\xd1\xb9\xdc\x9d\xbf6vG\xb3\xfe\xea\x85\xadS\xae\xc0\xa1\xf0\xe2\xd8;\x7fn\xf6\xda\xf6\xea\xe0\xea\xfc\xb9\xf4\xea\xec\xdc\xf8\x9a\xc4\xad\x83\xb87\xbau\xf9|\x90]{\xe3\xd2\xe9\xd5[\x8b\xdf\xb9\xb4\xbd:\xb8v\xe1\xb2\x98\xf3\x81{\xb8:\xb8:\xba\x1c:WN\x9e^\xbdu\xf6\x8eX\x0b\xc0\xab\xade\x81g\xde\xf2\xac\xef\\9\xb5w\xed\xca\xb5\xb87\n\xc4X\x8en.\x9d\x1e\xf6F\x81\xd8\x9f\xe0\xf2\x85\x8b\xc3^\xb8>\xea\x9d\xb8\x98m\xde\xda\x1f_\x9d\x0f\x0e\xaf\xce\x1f\x04\xe2oq\xe66\x07\xd1\x99\xd67D\"X\x8a\x82\xc0\x89Sx\xbab\xcd\x0f\xf7\xe4\x1f\xe0\xcb#\xff\\\x0d\xe3\x1c\xfe\xda\xe1\x07\xd9b\xc2!\x0d\xea\xd9<\xcb\"\xe0\x16[\xd2KX6\xa5\xfe+\xb3}\xcb\xb7{\xeb\x82\x11\xa5\xff51Ch\xcf\xecW\xac\xafS\xf6mF\x10G7f3i\xf4mF\x90T\x01H\xef\x81\x02\x10#\x88\xab\x00\x15#\x88\xf4\x13\xb7\x9b\xbf\xbf&\x87m\xdaqLx\xbd\xb10p\xab\x85!3\x16\x06\xae^L\x98}\x95\x85\xec\xbb\x8c\xbf\xca\xc2\xa3G;L\xc5\x0d\x17\x16\x86\x10\xa9\xe1jb\xd9tI\xa3U\xe9#G\xd0\xac:3\xb7\"?l\xb7X\xab3\x93%\xfe\xa8\x8dEg&\xb5\xfc2f\xd5wd\x96#\x9b\x14\nLl \x99R\xdbSb\x1c\xc9\xa8a\xa4|G\xdc\xe9(\x99\x05\x8a\x17\x12K]\xec+\x1aIPj\x0b\x9e\xdfE6\x85\xccj=\x98`9\x98\xd6j\xa0\x11\xa4\xd0\xd6\xebET\x95\x834\x0f\x82\xd4M\xb8\xed\x81)\xfd\x0bM\xc9\xfa2\x96\\q\xbc\xcb\xae\xb7\x8a\xf6e&\x9d<\x08j\xdf\x1e\x93\xc9\xec\x8cg\x8e[k\xf5\xe0 \x88B4\xaf\xad!\xed\x84\xd4J\xf7\x9d\xc1\x80'\xc7\\\x8dn2\xabN\xc8^c\xadcr(l\x81\xb5\xea\xbc\xc6\xa7\x1fG\x9b>3\xe97\x99e\xdc\xc0I\xd3u\xf9XZ\xdc\xf6g\xcc?+\xafj\x95\x7fw'\xbb>\xde\xe8Tb\xfd\xdb\xae\xc5\xceR\xa5\xde\x1e\xf1\x97\x1bE=?\xe0bI\xaa\xfb\x9c9\xbd\x80g\x0b\xacu\x0c\xfeB`\x8f\xa7{Y\x14\x0b\xb8\xfa\x13\x15\x08\x9cd \x9a=6\xf4JW\xb3\xafV\xe8A\xf0;J\x00\xbf\xdf\x1a%\x18\xfa^CV8\xa0\x01{\x9c\xc7K\x90\x8d\xb3\xa1=I\x0b\xf8\x0c\xa0\x93\xd0\x02\x01m\xba\xd2\x9bB\"\x88\xf8Sb\x05\xf1\xdb\x90DC\x0cE\x90\x8brw\xe2\xdf\xd0\xa2|\xabQ!\"k\x19\x94c-\xd9b\x8b< k\x86%\x93\xf1\xbe\xf4\x12;\x12NAe\xc0\xb6*C\xe8\x9b\xa9\xcc\xf5\x1a{\xb6\xe1\xd89\xf3C\xe65\xbb>z(\xedG;\xefL\xd2\xf6\xf5u\x83W\x1b\xec\xa4\x7f\xa2\x83\x1c\x1e\x0d2F\xdc)L :\xc8\xa9\xa85\xb1'\xa6z\x0b\xd8w\xd9\xdc4}0\x99\xd4Q\xbe\xe5\xd2\n\xa3\x90\x0b\x02=mT\xad\xa0\xea~\x98O\x91hob =\x84^\x10\xb9{0\x86\xae\xf9\xe8F\xc11\xf9(\xa5\xfc\xde\xd8\xd6\xf3\xda%t\x0cW\x8c\x0c%\xd7K\\\xc1\\\xca8u\x88=\x11\x97\xbf0\xa7J\xb3\xc3\xa0\xf6yl\xfd\xf3\xfc4\x0e\x9c\xc3\x05\xe9}\xacv\xd1\xf2nG\xf9\xd7`9+1\xc7\x9a\x14J/\x86\x19v\x8d\xc2\xf3;\xb6\xf3\xe2\xd8\xce$T\xf4\xfc\xb1\x1d\x0dK|jZ\xc9\xa9\xa8R\x16\xa1Z\xfb\x89\x13\xc7<\xa9u\xd2{!\xd8S\x1c\xc4vI\x85\xfe\x1d&}}\x98\xd4\x93\x8b\xfeU#\x93\xea\xe5+\xc5\xa5\x8e\xfe&\x98?\xcd\x91Y\x1af\xabF|.\x19t\xeaQp\xd2\x82f\xfc s\x12\xee\xb4*\xb7\xec2\xb5\x936\x1d}\xf1\xc6}\xd1\x02j\xb9r\x86\x8c\xa1j\xaa3Tw\xa1Ws\x80(\xdb\xd4\xe6\xab/z\xb0dV6(-\xc7b\xe9b\x08\x85lo\x81\xeb\xe8\xcc\xba\x17 \xd4jB\x00\xa7<02\x15&\xfc\xb5\xc0\xf8\xcc(\x0f2?\x96V\xa7\xeb\xad\x96\xf4\x0bo\x89S \xaf\xf6j\xb3\xac\xaa\xa3\x17Q\xa4\xedZ/~\xf5\xef\x1bC\x13\x9e_\xa9Q\x0f\x0d^\x16\x1d4\x14\x06\xedF\xafj}\xb9\xa4hte\x14g\x87\xb2\xdd\xfa\xe2\x91\x1e\xab\xdc\x17\xd8?\xf9<\x12{\xcd\xfe\xbd-\xb3u!\xc8\x17\x15\xfa\xc4\x81jt\x0f)Q\x16+\xf9\xab\xad\xa8\x17\xaa1\xab\xac\xc6\xb6\x86\xe5 \x97\x86N8\xe0\xc6?\x05\xfei-/P\x94\xbdV?\xdd(V\"n\xfdt\xd5\x80Z\xf6d\xd6w\xbb\xacu\xecX\xab\xa3DWA\xf6\xaaq\xca\xd3\x054|\x99\x012}R\x1a\xa2 Y1\x91m\x999\xb7)}\xfd\xddnQ\xe8\xb7\xc9\xc2\n|92\x87\xac\xfe\xd5\xa3T\xbd\xd7\xa8\xda\xab\x86\x93BM\xcb\xd4\x81\x9e\x99\n\x8a\x95\x9b\x9a\x18\xf2\xc9'\x91\x1a\x08\x9e\xd6m7\x93\x83p\n*\xe3K\xab\x02\x84\xd7+N3\x939\xc9\x80g3\x80Ei\x83\xf3\xb43\xe1\xa5\x1b\x01\x8f\xd8k\xcc\x9f\xce\xd0\xaf\x7f\xc6\xb7\x06\xe8\n\xb7\xfb\x91\xdd}\x9e\xe0~\xd3\xa4\xc4\xe7\x9a\xf6\x04=\xd4\x93\x97\xe5\xba\x103\x04\x81!\x13\x0f\xbbS\xd3l\x17\xdc\x1a\x12[\x88>\xc2\xff\xeaR\x8f\x85\xd0`.\xd8\x9a':A\xe8g\xbfe\xc1\x9f\x91\xb9\xb2\x17\xc2\xec\xd9d\x86\xcf\x9e\x83\xe9\xb3)\x88\xab\xf3e\xf4\x00\xe8 X`\xad0\x8ab\x1e\xf2\x84\x85Q\xc2\xfb\x9fCe\xd5e\xb0\xce\xb6\xd1\x8c\x98c\xf3\x04\x9d;\xf4\x03/\xe1\x96\x90\xeeIK\x0e\x9a\xbc}U'\x9a\x8d\x86\xdc\x1f\x0c\xe5c\x13ymR\x18\xf1\xebE\x89\xc7\x93\x05eUj\x10H\x9cd\xe0\x87\x0b\xac\xe1\xa1\x92\xd8\xf1\x95\xfa\xf2O\xc9\x04\xb0\x1ee\x8b\xa1?r2\xee} \xc9_\xdfN\x17'\xccO7\xc4Y\xf5\x1a\x84\xc2\xb1\x8e\x19,\x1fL\x85\xf0\x82\xb1\xd4\xe2v\x18\xa5n\xe2\xc7\x99\xbe\x00\x98@6\xef\xda\xce\xc1oO\xe5Q\xab=I\xdb\xd1\x0b8I\xdb\xa9'\x11\xac\xb41\xec5p:\x0e\x95\x8f1,\xfc\xc4\x9dI:F\xe3!\xe8by\xb3\xe3\xc5\x8b\xa6z\x15,\xa2\xa9\x1a\xc6\x82v\x00d\xec\x9b\xe1\xffK\x9dp\xbcZ'\x1c\xcf\xe6j\xe3\xeb*6\x1f\x1c\xcf\xe6j\x93+\x8057\xa2gs\xb5 \x14\x80\xe4\xecw\x15\xe0\xf4+\xa71\xa8\xaf@sd`\xb1\x86\xd8\xfdt\xbc\xaf\xc7OG\xffE\xb4\x91\xe7\xa5\xf5E\xfcQ\xd2\xb5\xa5 \xc1d\xbc\xd6\x8c5!\xee(\xa8\xc4\x1d\xb9\xe0\x15\xe4B\xdc\x91{\xf4h\x87\x05\xd7\xdd\xaaW\x90k\xb9\xe0SK)\xa8\x866\x99\xe5\x84\x11\x81\xdf\x19aF\x115\x9b\xd5\xc5\x1c\x052\xe6(\x99\x19\xf0\xecR\xe4\xf1@HO\x13E\xec\xd2\xf8\x94\x17?7^\xfc\xad\xdf;^z\x15\xfbxKf\x93+2\x87\xfd\xe1\xcc\x1f\xfc\xde\x0f\xca%~p\xfcx\x97\xb5\xa4\x05\xc0\xd6\x96k\xd2\xd8\x1eO\xdd!\x1f9\xa4\xc9\x9aB\xbaQ\xd0\xca\xc8\x14\xee\xaaIo\xf1\xfe\xb6\xac\xf2<\x93N\x14[\xab\xbc\xbf;\xd3\xf7C\xafx\xde\xdbf!\xb8\xdb\x85\x9c\x14\x84\xa1'\xc4 \xa5V8H\xad\xc2\x81\xf3<\xc2\xc1\xd7\xca\x18Uj!\xb9=\xcdJ:\x9f\x98\xff\x94)2\xca\xa7}\xf9\xd8\x81\xc2r\x83\xebK\xe5\xb2T\xc2o\xe7~\xd2\xc4\x99SY.l4\xd2\xb9\x8a\xcbo\xf1~}\xa1\xbe\x99\xc3f\xeds\xf9L\x11`>\xa3nz\x9b\x8d\x832\x8dd\xbb\x05\xecN\x9e\xe4V\x83\xb9b\x08\xa5%\x95\x9aXx\x0c\x857\x13\x7f\xe4g\xfe\x98O\xac0bgX+\x92#i\xd0\x1e\x06\x82\x04\xc2\xab\x902)\xd0\xef\xff~\xc2\xfbuna2 \xa9|\xccx\x00\xe1\x0f\x1a\x07\xcbt\xab=\x10\xb4\xec\x88S\x14sJ\xc5\xccIo\xa7P\xcc\xb8\xa3\x04\xb5\xd6\xdcI\xa1~\xe5[\xa2\x91\x18\x06\x93\xff\x7f,\xf3\xb3\x80\xd7Z<_`\x7f\xd0\xd3\xcd\x9b\x19?\xc8j\xfb\x8b\x05_\x10\xbc\xa8\xb6c\x7f4h\xec7M\xdc\x05\x16\xb6O\xce\xcd5!\x95V/\xe7g\xe3\x83\x86\x8d\xdf\xf7\xbdl8\xb9\xd8Du\x96\x19\x15t\x8d\xf7E\xbfs|4\xe9\xa5=\x95\xbcL\x92\xc2\xc0\x11\xd8<\xa1F/\xca\xb2h\xb4\xc0Zb\xb0\xb5%k\xe2_\xea\\G\x04\x15=\x94\x89\x1a\xfctcq\xfbD\xbbS:\x07\x1e\x8f\x13\xeeJ\xcd\xad\xa6z\xba\xef\xcbL\x84\xae1:J\xbe\xe9\n\xa5\x8c-\xb0#G\x06]y\x06\xcb\xa7+;\x8c9\xbc\x997j2\xf9\xb8N\xca\xcd\xd9]h\\\x99 \x87\xc7\xa3\xb6\xa1\xc6\xe6\x18Bo5\x86\xc6:\xcfelb*\xc0N\x90\xdc\x05\xd6@\x9d\xf5\xaf\xe0F\x8d\xf7)\xfa\x07\\\xa6\xf1\xa12\xfd\x0b\xe5\x14\xa7xL\xbf\xc0\x85\x05v8\xb9\xb8d;\x0b\xccm^\xb4\xa6\xcc\xb1\xb0\xff\x8e\xe0\x0b_n\xfb\x87_r\xfba\x08/v\xf7\xff\xf1m\xa8\x96I\xea\x1e\x8b\xd3\xbf)\xf6T\xbd\xf8X\xbf\xa9P,\xccG=\x9eL,\xe6\x87\x19\x1fLQ\xae\x17E\x01w\xc2\x86rZ\x03\xfc2\xc86\xfe\x92vh\xa6\x91C\xc9\xa9\x13\xef\x02\xd9\x7f\xe9\xd8d\x85O\x8c\xe7\xac\xb5\x0c\x95\xb0s(\xb7d\xe70\xe6\xd4,\xa4\xd7\xa8o\xf6YZ\xa2\xb9w\xc9\x89\xa5Lm\x93\xd0\xab\x1b\x17\x9b\xaaB\x97i\xae\xa46o\xca*\x15\x95\xa3\\\x0b8Um=\xd8\xcd\xa28\x1c\xc4j\x99\x92\x88?\xa9\xa8\xa2\xf1E!q\xc4\xaaE\x8a}n*\xc5\x0fbG(\xac\xb1`\x87EA \x00hx\xd3\x14*\xf1VS.\xf0\xd3\xf2\xc2\x14\xa8Q\x8d\xa6\x87L\xa5\xbf]\xfb\x9e\x18Q\xea\x08\xdd\xfd\x8e\x0c\x90\n\xa8\xc1/\xb7Y\xd6\x84\xe6\xda\xce\xc1J\xd6\x95EN\xce\x9d\xea\xd8\x8c\x7f\xb2\xd0\xec)\xab\xfdO\xc2\xe6N\xd8\x0dm\xf9\xd7kh36\xb0\x19\xc7\xf3.D\xd1^\xbb\xd5\xe3\xfd(\xe1\xdbjy\x14\xd9M\x1b\xd3:\x9a{\xe6a\xc2\xfb0\xcc\x94g\x8bY\x96\xf8\xbd<\xe3m!\x80\xb7\xba\xf6\xdb\xbfN\xb74LlzM\xa7q\x89;\xfe\x87\xd7\x17\x8f]\xfbA:{\xec\xf4\x91\xd7~0s\xe3\xe8\xef\x1f\x1f\xa8d\xc5Ug8\xba\xda\xf5i\x98\x8a\x85\xd1\x88\"\xf0\x94\xae\xf5\xe2\xf2\xf2\xcd\xc5\x9d\x9d\xad\x05v\xbd\x05\x97\xe8\xadj\x86P\x92\xda\x82\xd5\xe6c\xc2C).\x11\xd3(O\\\x8bE\x00\xee\x19\x1a\xfc\x89\xfcBm8s\x06\xee\x0eZ\xd2w\xbc*B\x08\x95;mgE\xd6\xe6\xa4N{\xac\xbb\x94\xach\xabN\xb2\xe7E\xfbaU\xa4\xbbK\x0d\xac\x10\xbbq\x86\x85|\xbf\xb0c\xd6\x08\x8f\xc3l\x14\x88clg}\xd9a\x1c\x0d\x12'\x1e\xf2\xa4\xbeP/\xe1\xce^Z\x0f\x0f\xfcp\xcf\xef\x1f6\x17\xd8\x91\x9b\xbc\xc0Z7{\x81\x13\xeeY\xd2\xa8w\xd4EK;\xb3(\xd0\xae\xcc\x12\x96\xa3\x850w\xff\xafI\x15\x05\xf8\x9fq\x8d\x91\xe3\x8aa\x7fJ\x86\xa6\x01\x04\xb1FN \xd6\xeb\xd9Gx\xd7\x17/m.\xb0\xd6K\xa4|l\xf9\xba\x18J\xccy\xfc\xe7\xb84|\xbf\xf7!\xfd\xae@\x8f\x7fNA\x00\xf8K\nH\x83H>)\xf1\xec\xf1_P\xe0X\x02\xfe\x1b\x02\x90\xb3\xbbGvDz\xa6\xb6\x9e=z\x9f\x02d\x94\xac\xb5\xca(\x85\xf9`,\x02\x90\xe3\xc8\x16?\xb2\x03{\x12\xf8\xd8\x0e\x94\x07\xf2\xd1\x13;P\xf6\xf9\xe8\xa9\x1d\x08\xb3\xf8\x1b;P\xe2\xfc\xa3\x7fm\x07\xca\x85y\xf4?\xda\x81\x12#\x1f\xfd\x1b\nL2\xb9\x02\xbf\xb2A\xc6r\x8e\x0f\x08]\x01\x18L\xe3\xaf(0\x05\xfc\xbfGhE8HEo\x9f\xfc\x84\x02\xee8\x89\xc0\xe7g\xff\xfc?`T\x8c\x06\xd2\xee\xfa)9\xd0\x1a\x80[[\x8c\xe2>\x1c\xf5\x7fO\xaa(\xc8\xcf\xff%\x86\x88S\xf0\xec\xfe=\xf2Y\x10>\x89\x88d\xe9bID\x1fcJ\xe6\x00F\xdf\x7f@\xbe\xfbr\xc1\xee?$\x80(]`\xado\xe3Y\xc4qpxN1#+\xa9s\xe28\x89\x0ej\xc6-@\xfc\xb6u$\x8b\x89\xf4\xac\xb2l\x83\x06|\x80k\xa4.\x10\xcf\x7fI\x0e\xb1\x81\xfco\xa4N\xea\x0f\xe4\xc0\xef\xff\x8cT\x12X\xf0\x07\xe4\xeb\xe1\xa8f\x17\x04DM\xe6\x9f\xe3n2?\xf0$\x8d&L\xd1@\xfe\x07\\'\x17\x02G\xeb\x13\x82Q\xea;!!\xfbn\x14\xfa!\x1c\x14\xcc2\x9d}\x05\xf9\x08S\xf5\x9e\xe3\xee\xb9\x11\xd0\xab\xfb\xefZ\x80Z\xcf\xee\xbdG\xa0\x89\xa4\xbaO1}\xef9\xc9\x98\xcb\xb1<\xc0\xfd\x9du\x92}.1\xfb]\xcc\xbb{\x05\x08\xa3\x1a\x80\x80dS`/\xd9\x13\x80?%\xf3\xee%{\x99\x06\x92%\xab]\xeb\xb3 s\x90\xfd\x81\xcf\x98\xe7\xf6\xbc\xdby$\x97\x1dK\n=\xee:y*W\x0e\x8f\xec\xac\x04q+\xac\xd7\x08\x1b\xc5\xd9\xa1\\\xf4G\x98\x92\xf4\x04~X\x91\x83'a\x94\x8b:oc>qV\x82\x82\xc0Ok\xc0\x99\x9430\xf9\xeb\xa9\xef\xff\x0b\xfd\x0e\xa2\x0c\x1dB\xb6\xcf9\x1co\xd2\x89\x96\xb4\xc8\xbej\x00f6=\x7f\xe0\x02\x05~\x88\x05O\x01\x02\xd1\xf3\xd9/0 \x16\xb0\x1c\xaa\xe1\xc3\xdf\xf3\x07\x91\x17\xc1\xb9\xc4\xb2\x93\x80\xc5\x01l\xe4GX~\x12\xc0\xcc\x1fq\x80ZF\x93\xdeV}~D\xd0\xdd\x1f\xa4\x99#\xb9\xc5_\x90\xa9\xfb\x83,\xf1\xa5,\"\xf4&Q\xe6=rr\x8b2\xd0\xc3{\x98\xd6\xf4\xfcAnF\x8e\xa9W\xcf\x1f\xa83\xfa\xd02)s\xda\x1e\x92\xe5\xd8s\x92h_\x80\xde\xc7\xd4\xa2\x178\xee^\x10\xdd\xe1J\xb8\xfa\x10\xcb,\xb2@z;w\x12 \x7f\x0f\x0b<\x12\xae'%K`5\xa1R\xc2,\x0d\x968*\xa5\x02\xb8\xb5}\xf6\x0b\xb2;\xe5R\x89\xbaT~\xf6\x1e\x96\x02\xa4\xae- \xff\x023\x86^\xb077/\xeb\x90\x03\x12\xec\xcd\x9d\x94\x10BE\x82\xbd\x13\x00\xc1\xc2\xb2LO !\x98\xa1\xf5B\xb1\x18g\x9e\xfd\x183\xda^\xc8o\xe7\xbe$\x07\xf7\xff\xda\x02^\x07\x94~\x8a%\xc0^\x08\x80w\xb1\xbau\xd6\xc8B\xff\x07\xaebd!2nh\xeb\x01\xe9]_i\xdb@\xfb\x99\x0f\xe8E\xe6\x1a\x1d\xf4@J\xf9\xf0>\x05-\xaf \xc8\xcf\x7fa\x81\x04\x12\x82YT/:\xf0\xa0\x0eV4\x04D\xd6\xf9\x19^\x04\xd1\xda\x96\xac\x83%\x11\x01\x91\x07\xd6\xb2\x08\x07\x1e\xd4!\xa8\x10\x1dx\xb2\xce\xcf\x08O\x8f\x0e.\xc8*\x96\x01H2\xfa3r\xf6\xa2\x83\x0b\xcb\xb2\nVo\x05D\xb2\xce\x9fciD4\x06u\xe8.\x1c\x0ce\x9d\x9fa\x92,Z\xdb\x95u\xb0\xbe\" \x92\x95\xfc\x9c\xf0\xfc\xe8`\x08u\xb0\x02$ \xb2\xce\xcf\xc8i\x8e\x0eF~\x08\x04\xea\x01\xa1\xf2\xd1\x81&^\x0f\x08k\x8d\x0e\x0c\xd5}\x80\x15\xb5^t\xb0\x0b{\x8e\x95\x0d\x01\x01<\xc1\x82i/:\xc8\xa1\xce\x7fk\x81\x00\x9e`\xa5S\xb4\x06{\x8e\xb5N\x01\x01<\xf9\xa5\xa55\xa8ci-\x07<\xb1`\xddeY\x85\xd0\x92\xe8@\x9e\xfd\x9f\x11\xca\x16\x1d\\\x06\xd4\xb2\xec\xece\x89[?'\xb49:\x18C\x1dB\x95\xa3\x831\xe0#V\xb6Dk\xb0j\x844F\x07\x97a\xa5\xb1V'Z\x83:XA\x11\x10Xi\x0b\x0e_\x86U\xb3\xec\xf5eXi\x0b\xfa\x8c\xa1\x8e\x05y\xc6\xb0\xd2\x04\x0b\xeae\xe8\xb3\xca\x98\xf6k\xb2o\xf5\x80qO\xb2\xf7\x8f\xf1a=\x0bZ\x10\x95\xb7zF=\xfa\xdf \x84\x8f\x84p\xf7\xec\xad?#\x90:\xc9>Us!R}/\x8d\xc4:\xff\xe0\x07\x96\xefR\x85\xff\x90\xc8#i\x14\x0c\xd3\\\x02\x7fEHv\x1e\xc8m{\x93lu\x1e@j1\x1bH)o\x7fj\x01HM\xf9 \xb6L\x08\x08\xe8\xcax \xce\xe6F\xdf\xb35\xa7@\xb8\xd6\x92\xb6E~\x8a%3\xd7@~J\xea\x80\xfc\x88\x89\xbc\x12G\xefar\xe9:\xb16ta\xf9\xcbu\xe2^\xa2d\xc3\xc7\x98\xd5\xb9N\xac\x9a|\x8c\xf5\x7f\x01R\xb5\xf0\xe8\\'VB\xecc\xcc9\x96\x9c\xd8\xcf\x9c`\xd9\xef\xf7y\xc2\xc3\xccw\x02\xc9\x14~\x82w\xdaubPY\x1e\xff\xe7\x7f\x8f\x1bq\x9d\x04\xb6\xf3-,1\xbaN\"\x15\xd3_\xd3\x05;\x0c\xf8!h\x17X\nqu_\x8f1\x82.\xe9\xf6>\xc5<\xd35\x10Z\x87{\xbe\xd4\xc7\xc9\xb2\x18\x08\xe6YKJW\xf8\x14\xa3\xb4\xab\x01xc\x96J\xaa=V\xc0\\7W\xf3\xa1\xa3\xce\xe34\x95\xc7\xf41f\xf6K\xb0e\x9fb\xb3\x8b\xab\xbe\x93\xfdW\x93\xf9\x18\xcb\xa9K\x02\x1086\x90[R\x1b\xb1\xce\xe6J\x7f\x86\xd6\xc7\xf8\x84.\xf10\xe3\xc9\xb2\x1c\xc4\xc7\x98\x1c\xb9\x12\xe8\xd9\x81K\xfd\xc4\xbe\xdfZ\x9f\xc3D|\xe9\x02\xa8\xd6x{\xdc\xa1\xfc\xfe\x0fdC\x87\x1c$\xe5\xbf\xc4b\x98\x84\x8c\x9c\xc4\x0e]\x1a\n\x12\xfa9\xedF\xaa\xcd\xa4\x17\xb0\xe4\xfd\x82l\x00\xa0\xc6\xaf \xd5\xf0\x13W\x91\x1a,\x9f\nP\xc0\x9d$\x89\xf6\xb56\xf2\xce\xffY_\xc6\xe8\"\xef\xfc_\xd6B\x1eX\xc4\x9e=\xc0\xb2\x8a\x02k\x0d\xf8\x01\x96K\x14\xdcS\x06\x9d\x07X>Z\x92\xf0e%\xd0c\xd9E\xd5\x16L\xf5cL\x9c\x15l[T\xfcs|\x9a\xa0\xd9KF\xd2\xc3B:\xc07\xb5\xb0\x87%u\x00\xef\x18y\xcf\xb2\xba\x92c|\x88\xb5z\xd7\x07=\xd3\xb6\x1f}}\x8c?\xc2\x07\xd2\xf5\x93\x11\xd8^\x9fb\x0b\x82\xeb'\xa9B\x8b\x0f\xb1\xcc\xb5$\xd4\xb7}?\xe5KQ\x98Ey\xb2\x1af|\x908\x923\xde\xc3\x87n)\x88R\xbe\x94'\xc1\xe1r\x94\xf7\x02\xfez\x1ee w\x90-1%\x8b2dc\x82\xbc'\x97\xe6\x97X\x0c\x93\x90\xdc\xcf\xac\xc0\xa5\x08\xac\x89\xcf\xee\x91\xe3\xad \x0b\xb6\x1ap\x03\x83Ey\xd7\x80\x88\xfd\x16@\xb7k`\xa3\x91 Y]\xdbw1\xec\xff\x8a\x02\x80\xd5\x12\x16\x14\x8d\xe2>L\x07Kb\xae|\x19a\xc4\x15\xdd\xb6\xd5\x0c\xf8\x01`\xd7\xdbx_\x8d\x99\x90p\xca(\x1chv\x8bI\xddR\x14\x0e\x92\\ux\x1f\x0b\xbaK\x05\x0f!\x18V\x80\xf0\x11\xb3\xe1\x15-#\xb5t\xdb,\xb4\xfaNw N\"\xb8\xd6\"\xacI\x82r7\xb3C76\xaf\nR@d\x9e(>\xac\xfb\x9e\x02g\xc0\xe7q)\xca\x05?i%\xa2e\xa6\x90\xec!\x99M\xee9I\"W\xe7}26 \x93\xeb\xf3>^\x1f7\xe7\xb1\x84<$s\xcdy*9\xc7C\xacM\xb9y\xa0\x97\x1b\xdbv\x01$\xa7\xf5>\xd6A\x96\x94\xbd\x95\xf0i\xf8~\x0f\xab\x9an.\x84b%\xf9\x126\x92\xc7J\xfe&\xd7:nn\xe4e\xc2\x96s#/\x13\x11+\xd7\xf2\xf2\x03K\x83\x11\\\xe4\x91c\xaf\x84\xbc{O,\x02rn\x90\x92\x90T \x92\"\xe0\xfbX\x8dv\x05y\xe7\xb7\xe3\x84\xbb5\xdb\"\xe1i\xee\xd6mN\x12\x1cjc.\xd6\x80$\xb00\xe7\x12\\\xcd\x93D\x1a\xe6?\xc6J\xb7\x9b'c$\xb3\xd0\xad\xd7E\n\x91\x85N\xbc~d\xea\xba\x87\x0e\xaa|\x83F\x04V}\x83v\x0f_\xc5\xb8\x87\x81\x9b \xda\xf3\xec]L\x90\x97e\xaep\x01z\x13Sc\xaf\x00a\xc1\xd4s\x02}\xa3\x81\x0f\xd8\xb2\xdeh\xd2\xdc\"\x00~\x8aq\xde\xd35(\x00\xc4\xb171QXv\xd2!\\\xb0\xe1\xbd\xf14\xe4\x01f\xea^\xc9>\x8f\x97\xd5\xeb\x05\xd2\xd3\xe0\xd7X\xc8X6Z\x15\xde#\xcf@pc\xcb \xb3cv\xe2\xc1g,\x1e,\xdb\xb5M\xf0\xf5\xf8 >\xb3\x9e\xd7\xb0]z\x1d\x7f\x8a\x8f\xf3\xf2r\x94%\x0e\x984\xdf\xc7\x94\xd7\xf3\xa2,\x05!\xe41FQ\x8f\x0b\x0e\xff1\xd6\xe7\x969p\x1e\xac\x18,\xf3\x00\xae\xbf\xc8\xdc5\x00\xcf\xde+\xe9_\x18i\xbd\xbe\x9f\xc2\xd1\xf9\x00\xbb\xe0,k\x85 \x8f\xc0\xd3\x00\xb28\x17\xe0B\xe9\x03l\xeb\xf5\x86\x0ep\x8a\x9fb!Y@`=\xb1\xcc\xb0\xec;n\xe2g\xbe\xeb\x04\x8bun[\xa52\xa06\xfc\x1a\x0b\xa7\x95\x12B\xd6\xd5mQ,,J\x9eW\x9eT?\xac/\xb2\xa3\xae\xeb\x7f\x8d\x8dx\x9e\xefH2\xfb\x10[\\\x96}g\x14\x815\x86\xc0\xbc\xc90#Gcs\x9e\x80\xa75\x10\xb9h\xd8 N\xad0\xe4\x00\xf8\x03\x07\x04\xe3\xdf\xe0U\xf2\xfc\xd4\x97b\xeeCL\x18=y\x13\xf4 \xc1n\x7f\xec\x83c\x83\x1d\x12\x85\xc6\x94\xfe\x90 \x9a?\x8e\xc2\x03+h\xf9\"\x9ct\x8c5\xde-P\xda\xb1\x1c\xe3\x05n\x94\xc8\x81\xbf\x8b\xf9\x9b\x17\xb8\x89|b\xe0\xd9\xbb\x98\x0f{Q\x10H\x94\xfe}\xdc\xbd\xb9\xa9\xc2:\xb2gD]\xacH*c\x06\xde\x0e\xaf\x06q\xa3Li\xc2?&(\x16eJ\x9f\xc1$[B\x94Pq\x1f\xd3\xa0\xe5([\xb9\x9d\x83>8+:f\x01S\x0c\xae\x01\xd8Z\xc1\xb5\x9d\xf4\xd9}\x8c\x1f+\xb0hX\x0d\xe5\xb0fX\xca\xe1\xcbJ\xd2 \xaa\xc9\x8a\xba\x05\xc2\x83\xd5Fz\"cpU\x01\x1fR8\x9f?\xc1R\x1c\xef\xeb\x860cZ\xd1:\x066\xc3p\x0d\xc07FR\x8bz\xf6\x04o\xc5\x8a \x8b -\x19\x08fy| \x89\xf7\x132\xedA\xaa\x8e\xca\x13l\xe4\x05e\xed \x96\xe2VJ\x86_\xd2\x7f\xe0\x87\x19OdW\x7f\x86 \x13\x87K\xed\xb71\x93\xe2\x01\x0c\x0d\xef8\x0f\xcc\xd0\xf0\xda\xaf\xe8\xe8\x0b\xbc\xc6\\\x03H'B_\x94c\xc6\x04IBR\xb8\x86%@\x99ky{\xe4\x04\xc1\xb6\x91\x08\x7f\x81\xe5\xe3B\x17\xb5\xd7\xbf\xcc\x13\xdc\xc6{\xd8Y\x84\x8fRI{\xdf\xc4\x9cS\x00\xe6NH\x10V\xa3$H\xba\xbe\xbdI\xfa]?\xbf\xc0Z\x9f\x91\x83'-\xef\x9f\xe1\x0b8\x1e\xaa\xce1G^\xd1.\xfe\x0474\x80`\x87\xd1\"\xb0M\x8e\x1b-\x82\xe0`\x0cT\xf4!\xc1\x80\xd8IR\xe0\n\xd8*\xc3\xb5\xf4\xfe\x18Sx\xe5\xb4\xfb9&\xd6+\xc6\xd9\xfbs\xda\x8f\x01\xe1Z\x02$\xb6\xf67\x04p[_\n\x12\xba\xc7o\xd7\x931~[y\x97\xdc\xc7k\xcdo\xa7\x81\x13f\x83,\xb1\x1fT\x00\x07<\xb5\x9f\x16\xa3\x07=\xa6#\xcd\x1dy\xc4\xce\xd8\xaah\xad\xdf6\xa0\x9c\xc3\xb5\xe8}\xcc\x92Vn\xe7~\xe0\xf7\x12?\x97s\xf9)\x16\x18JN\x946\x08\xd8\xae\x1ec\xa5\x81\xdf\x1e\x17\x1b\x8e\xa5h\xaeY\xe0\x07d\xc3\x13Mq\xf1\xa1_\xd1nA\xd8\x10\xc55\x00\xf3m\xaeI\x0e\xd1&W\xd4\xbe=\xc6\xd7&\xbcnCW\xc0tE\xf8\x06|&|i\xe7\x82\xa0\xdb\xb8[\xb0\x96~\x82'\xb0\xa2\"%\xc8IV\xdf y\xc9\x13\xe9R\xff'\xd8A\x8a\x1f\xb8\xa2\xc2\x11\xf2\xd9\x87\xad\xbf\x87\xe9\xd1\x8a\x80\xa4V\x10?\x88\xb9\x9b9:^\x86\xac\xfa\xca\x01${\xf0\x9d@^/S\xdeY\x14\xb03\xd7\xbe\x13\x04\xbe\xbc$T\x96G\xc2d\xcf\x81\x98\x80\xa5\xe6>\x88 \x98\x82\xf6\xf9Hu\xf5K|\xf3\xd0\xef\xfb\x10\xf8\xf8\x9f\xff\x06\xcf\xb3\xdf\xd7\x10Z)\xd0 \xdc\xd59\xcd\xe4\xb1\x9c\xd6\xd7\x00L\xe2\x8a\x01`5\xe2\x9c\x1f\x04\xdc\xc3l \x13\\(ec>X\xec\xea\xdf\x82\x9e\xfa\xb70 p\xc0B\x87\xc5\xaeb\x9e\x18\xeb\xfbA\x16J\xf4x\x0f\x9f\xd3~\x18 \x06\xf0\x9f\xc8\x96\x19\x96\x81\xf5\xb3\xbea\x19\xf8\x10\x9d\x8b\x92E\x10'\xee\x91=\x88\x12\xa7\x1e$\xfdX\x1eb\xc3\x87\x00\xc0\xbd\x00\xe6g\xe7\xa2<\xf1y\x92%p\x0bL\xe6\x14;I\xa6\xfd\x1e\xb0\x10\xdaO\x1cW\xba\xb3\x7fL&& \x92\xa9\xff\x04\xd3, \x12L\xfdc\xbc\x9f\x12rJV\xc2\xc4_\x82^\x96 <\x01 zE\x82\xb0\xe0.@\xf30\n\xb2 \x02\x04}aF$@\xd2\xe1\xfec\xac(I\x08T\xc2\xfb%A0\nl\xfa\x13\xa0\x93P\x0bK\x19\x02t\n\xa6\x85e` \x82\x06\xb1=W\x80\xbe\x03 l\x13\xe8'\x0e\xb0\x97\xb7\x08%HT\xe8\xc3\xbbX\x08?\xa7y\x05\xd9{\xa3\xfbb\x81p\xa0U\xaf\xff\x07\xf3\xe2\xf3\xca\x08\xfd9\xdevm\x9d\xfe\x1c\xb3\x17Y\xc3\x13\x12\x08^\xb8\x81\x81\xe0\x15\x18\xc0\xcd\xed\x13l\x970\xa2\xc9\x13L\xd6\x00$\xf9\xfb\x13L\x8e\x15\x0c\xe6\x8a\x91~\xc0S5Yz\xf3.`0\xc8'\x988\x9c\xd7\x1c\x0b\xab\x17\x03\x0d\xc0\xec\xf7\xbcTd\x1fb\xda4\x00? ,\xac\x0c\x065\xc5\xfd\x11l\xce\xdbXx:\xaf\xaeN0\xa7\x1e\xa8\xab\x13\x82qpc\x80\x9b\x19Hg\xcfgO\xc8\x1e\x83\xbc\xf2\x04s\xaeApK~\xc7\xd3\x1d\x84\xea\x00\x92\x05\n\x8b\x98a\x0b\x10\x10\x98\xec\xc5\x9ckud]\x96U}\xaf\x82\xcf\xb4\xaf\x01X\xc6\xf0G\x0eh^\xb6\xb6\x06~\xe8$\x87\xab\xf6\xd5\x199\x83@\x9d\xe8\xb71j\x0b`\xec@\xca$\xbaw#\x99\xc5\xb4\xf5)\xd6\xd4\xfd\x91\xb4<={\x80Y\xb8?\x8a\xa5\xc3\xec\x7f\xc2\xf8\xb4:\x8a\x03\x1f\xd4\x1f\xe2`\xe2\x87l\xc1v\xf9\xe5\x87\xae2\xb0\xbd\x8d\xafc\xcc\xde\xdd\xc3\x8a\xb7\x84\xa8\xd0\xfd\x0f\xb1\xbe\xec\x87*\x87\x06\x99\xd1\xaa\xc2\x12\x82q\xea;\xd9\x8d0s\x81\xc6<\xc0B\x9c\xca\x08\x0d\xb1\x1a\x98\x81V\x9c\x97,\x8d\xf2\xa4\xae\xd9Uy\x11\xc8M\xf6$\x92X\xc4\x0f\xb3\xc0I\x86\xd2 \xf7\x11\x16\xda\xfc0\xd3A\x14\x1fa!q5\x1c\xfb\xa9/\x1d\xac\xc0fb![\xba\x88\x89qz\x0bK\xe5\xab\x1b@I\xb0m\xd5\x8f@\xf4!X\xabo\xbc0\xc1\xf35\x00\xdf%\xac\x1a\xae\x86\xf9\x92o \xd8\xac\xb5\n'\xf9s\xcc\x07\xd5 \xff\x1c\x0b\x16~\xed*\xf9Z\xca\xfe\x18\xb3\xf9U\xcd\x15\xc9\xe12\\\x11k?\xdaC\x92\xe2|\xea\x87Z\xf0&49\xf5A\xc8}HF\x9d\xfa`#~\x88\xbd_%DZb\x1fb\xca$@c\xfb 2\xfb\x0e\xeb\xfcS\x9f\xe2\xcbp\xdf@\x08\xc1\xcc\xf7\x00-\xb0\xee\xe1+\xc0?`s\xe8\xaa\xbaq\xc1\xac\xdbW\xdf1V\\\xd4\")\x9e\xfa-\x0d\xc0\xeb\xa8l\x1b\x18%\xc0\xb4\xf1\xf7xm/j\x06\x86y\xff-\x0d\xc02\xca-E6\xff_L\x1d/\x1a4\xc5\x87\xe4\x96\x81`}\xea\xa2\xc1!,\x94\xde2\x10\x8c\x90\x17S\x9e\xc0d\xf0\xce\xde\xd2\x90\x7f\xc0\xf2\xc4E\xbdQ\xd8\xa6uKo\x14\xe6\xf8\xdfw\xe2X\x9e!|\xe6\xf64\x00\x930 \x90\x97\xbfX<\xf9\xbe1\x8abo\xa5=\x03\xc1\xab\xf9}\x18/\xe9\x1d>\xe3\xbe\xbf\xafw\x0b\x0b^{\x1a\x80\x91zo\x90@B\xa8O\xb1\x90\xf5}\x15\x0d\x8cwdOE\x03cn\xf5}\x85qX8\xd9S\xd64,\x7f|\xdf`\x03\xa6\xf1{\x06B\xea\x18l\xc0\x82\xd6\x9e\x86\xfc9&\x9b\xc1\xa2\xd6\\\xf0\"\xae\x99\xfc\x02\xf88\x04\x06\x82W8pJ1\x04\xf80\x06\xce q\xe0\x16\x13\xb3\xff5g\xd4\xf3$\xbe`\xdc\x0f\x0c\x04\xabOk*k\xe6\xaf\xb0\xf8\x14h\x00\xdeM\x01\x80\xfc\x8e\x98\x11\x05\xc6\xb3\xccR \xcc\x8exC\xd7\x1c\xf9\xe2\x9a\xbe\xc4\xc23\n\x1cH\xb8\xf61f\xf0kZ\xab\xc7RK\xa0\xed\x00\x98\x85\x98\x986\x1b@\xc6\xf6\xfd\x14\x8b\x18\x12\xd2\x97\xec\xe0}|\xf9 `\n\x84e#\x01\x02\xe1\x81\xa8\xa2\x02\x14\xc8\x95x\x07\xcfH\x06\xd6I\x81\xe5}\x8a)\x89\xb6\xe7|\x80y\x8f\x80e\xb2\xda;\x98\xcb\xa8\x1b\xd2'\xa4\xa7\xc5\xcc\xf1\xa1'\x8a'\x06\x84\x89z\xe0@D\xf2\x13,\xfe\x0b\x00\x98\xa8\xfe5\xb5\x18\x05g\xd5\xb2\xbf\x8f\xa9E\xd0\xd3\x10|\x98\x03\x9d\xe4\xef\xaf\xb0n\x10\xf4\x12\xb0:\xfc\x91\x0d \xea\\\xa7\x80=9\xecGX\xd1\x16\x904\x00D\xc6\x1c\x12`2\x8f\xd1#\xcc\xac\xd6\x8c\xb7!V\xd0\x03\x03\xc1B\xca\x9a!\xbd\xf8\xf8\x05\x06\x82\xa5\xa4\xc0\xe5\xb0\x13\xefb\xd6\x13\xb82\x16\x15\xaf\xc1\x1a\x90F\xb2\xa5\xf0\x99t\xec\xb9R@}\x1f\xb3\x89\xc0\xe48\xc4\x84QB\xc0\xe2AN\x9d\x97x\xda\xe1\x143\xf1\xc0K\xf2T\x03\xc9.x`\xd2x\x87l5\x18!1 \x06\xf2r\x1f\x9fT\xe9\xf2/\x88\xcfY\x81\x07\xe01GhP%.\x80\x90\x81\xb5\xb2\x0d\x89R\x8f\x8a\x85\xc9V\xb7\xec\xedN(\x89)\x80\"\x04\xb0,g\xba\xd1\xc7\x90\x1cj\xd1\xd2\x12\xf7\x03H\xc7J\x91C\xc0\xc1\xf9\xbf\xbc\x14x\x19\xa1\x94t\xd7.\xf9\x8dc\x0b\x85.Ur\x1b\xc7\xb6\x9ej\x11\xed5\x8ei\x87(u.\x88\xa0\x8dw\xb1\xe9VLZy\xe0\xeb,\x7f\xc4\x1f\xbeT\x06\x02|\xdf!\xe7\x85\xf73\xb3|\xa0\x1ec+5\x0d\xf8 FaQ\xa4j+$\xf6\x99\x80\x14!\xadT\x8b\xa4\xb5[-\xcb\xa8iA)r>t\xa9\xf4v\xee\x0f\x8a\x1e1\x11\xb6\x05'`\x8a[\x8a\x9e!\xa1\xa4\nV,\x8c\x0d\x83\xab\xd8\x82%\x1d1\xd4l\x98p^\x84\x98\xe1\xd9\xc8FJ)\x1f\x1f\xe0S_.\xa0\x90\xe9CL\x9c\xcbe\x8c}\xf2\x01\x16\x93D)\x08\x92)\x0d\x19\x0b,P\xa8:-|\xa7\x0feJ\xa1\x1aXG(\x17\xd0\x07\x00\xeb\x04(\xda\x03\xe3.\x8d\xf4 \x82\xd0\n8\\S\xfc\x80\x0bi\xba\x19p\xc1CD\x1a}\xf3C k\xc9'\x80\x9e\xbe\xb4\xee\xbb\xba\x99#\xf2\x9e\xf1 x\x8c\xd7+(\xf9\x04`\xedM\xc1\xe4\x1a<\xc1\xb4&\xe0\xa9\x9a\xacE\xce\xe0\xa9r\\x\x82o\xd4\x03\x9e\xa6\xa5\xab;,\x81\n\xb0\xb6\x13`\x0dZ\xc0\xf8m\xe5\xf7jYc\x01\xd5`\xb25kO\xaa*\x14\xa1U\xa2\x08\x12\xb0 \xe1\x8a\xeeHrA\x94\x80\"\x95\xb8\x0d&\xcdC$\xc7x\x00k\xd9\xb6|\x06\xd7\x92GD\x18\xd0~:T\x1eOJ\x04\x92X{\x12\xa5\xc0R\x01=1\xb4\x91\xec\x00\xa4\x00z\x93X>\x12E3\x1f\x10\xca\x98:Z\xf9\xc6\xf8\xb9\xa6\xafF\x88dh\x8c\x92X\x98ZS\xaa5\xa1\x95\xb5\xdfk\xa4\x81\xc08}ac\x88\x80\x80`J8vz\xbbg\xb3\xc7\xa4z\x82\x041Rc] B\x92vb\xf8\x8c\xc8\x8b\x06\x82\xed\xbbk;\x0b\xac\xf5]\xfcQ\"\x05\xe5\x9a\x99\xa5l\xa0\x9d\xce\x08\xdd6Ng\x84\x86d\xb5\x82\xa4T\x8c\x16l:QP\xa8K\x84=e\x9a\x9d\x7f@hQ\xc9U\x8d\x98v4K&t$K\xe0:\x97hK\x81\x0e1&\x89\xf3\x83,\xd1\xeerdRy\xe2\x19\xc3\x0e9\xb3ybB\x90\xc9\nV|\xd0>\xb2H\xf3\xda\x07\xcd\x02S\xb7\xfa\x1f\xe3\xdb+\x13.\x83g0r\x80\x16\xfc%\xd6\xec\x04\x80\xc3\xe3\x1b\x04v \xc4\x89\xf71\x91\x1e\xc1\xf7w\xf0\x94\n\xfeT\x032\x96\x0dl\x1e\x03\xb0a)Xa\x03\xb0\xb2y\xe0k\x92\x91\x93\xec\x01\xc5z\x0f\xdf\xfd\x8et\xb6\xc5g\x1fa\x99\xf9\x12H\xa0\xd8\xbc7\x82\xcf\x98\xbd\x8eL\xca*l\xe5\x18\xe9H\xe6{\x98\xb1\x8f\xb8\x93\xe6 \xf7\x8a\x07\xb6\xb0\xf2q\x89{~>2Ndoa\x82{\x89\x07\x81\x1f\xeak\x01l\xf4\xbe\xa4\xd5\x01l\x88\x1bi\x00>\xe2\xa3\xa1\xdc\x9c\xb7\xc9\xea\xfb\xae\x0c?\xfb\x18K:*-\xe8=l(\x19\xf9\x9e\xfd\x8d\xa2\x91\xef)\xba\xf0\x14\x13\xd6\x91\xef\xd5\xa4\xcf-\xb2\xc0`\xb2.!\xf0\xc6\x16^\x1b \x82\xd1a \x0e@R]\xf9\x08/\x81\xcc\xc9\xaa\x13\xaf\xde\xc3\x8cq\x14\xb8\x90\xad\x10\xdb\x8fG\x01\xb3\xb4g\x1e\x1a\xa3\xb0\x0c\x1e9\xf8%\xa6M\x12\x02f\x85:\x18\xf8\xfc`\x1f\xbb\xb0'\x9d\x8c?\xc6\xd4:,R\xcc\xd3\xb1\x97r\xc9S\xa0\xce$\x89\x97}]\xdf\xe5|\x86\xb7*4\x10lz_\xd7w9\x9fa\xae\x11\x1a\x08\x96:C\x93r\x96\xf6S\xce9k\x19\xb9Jt\x89Q|\x1d\xc88\xd6\x14B\xf8\x8c\x15\xca\xd0Pw|\xbaT\x82_\xb2\xd4\\{F\xbd\x8fYU\xc8\xf5\xdd+V*D% y\xc7\nQ\xaa\x02\x85\x99\x88g2\xfdu>p2\x7f\xcc\x11\x1fy\x13KW\xba\xdc\xce\xd0w\xf7\xa6*\x16N.u\x99'\x87\xcd%Ko\xf5`KS\xc8S\xaer\"a[AX\x04l[&\x9cf\xdc\xa3A%$\x82\x02\n\x96-\x7fD\xde]\xe7\xfb\xca1\xf9\x07!\x19\x82 \xaf&\xf4\x86\x17\xf1\xd5\x18\xb6\xae\xf9.6\xb8\x85\x1a\x80\x87\x19\xea\x988\x8a\xd9*,\x0e;\x16\x86:\xce\xcd\x06\xb8]\xdfX9\xd6\xcd\x06O\xeb@:4\xccRI\xef\x13\x96\x1aB\x1d\xd6b!\xc9\x03\x00a\xb95\xd4\xc6[\x028\x9f\x01\x06=\xa5\x030\xd1\x0eX\xb7\x0cM\xb8\x03!\xacCexx\x8a\xd5\xbbPj\x0b\xf7\x08\x0e\xc3Cq\x0f1\xf3\x0b}\x10>\x1eb\xa9/\x04\x8c'\x0d\xad+\x93'V\x11Be\xf2\xc4\xea^h|8\xb0\xba\x19\x1a'\x0eZGI)XD\x0e\xf5E2]Du\x97\x8c\xa5\xb5\xb0z\x13L\xc7P\xb9\n&\x03\xb1\xdc \x92M\xb2\\!\x92\xed\xd278dx\xc5\x15\x8emJ\xe5[\x1c\x1b\x19jM\xdbr\x0e@\x1b\xa3\xddh\xb5\xf5!&W\xa1\xd1[\x1fbkZ\xb8\xa6\xce\xc8\x13:8-\xc1c6\xb5\x1e\x9dM\xb8#Y\xd8[\x98\xbb\xadG\xa1\x04\xfa\xe1@\x13w\"l\xac\xebX\x11\"\x9d\x18\x01\x16K\xec\xfam62|\xd0\n\xf0\xe7\xf5(\xab&\x95\xc7\x86\xc9_\x01.\x06\x81)\x7fQ\x06\xc5b\xda\x86b\xe3\x9d\x0d\xe5\x0c\xf7\xc4V\x9e\xa2\x08\x0e\xcclh\xadX&\xcc2\xd6\xa3\x8c\x86\xe2\xd8ZB\xf18\x14\xe1\xa3L\xb9B\x13I\\@\x8c/\xb4\xbd\xa2r\x87\xb6\x03\xc7N}\xbb\xf0\x10\xf4C\xac\xd9\x02\x0cr\x98c\xe3\xd5z\x94aO\x00r\xe8Q\x19\xe3\x0c`[\x19\xabG\x00\xa1\x15\xb2`\x0d\x8dS\xb0by1\xd5U\x05\xca\xc8c\x1dHY\xea\xb2\x0f\x95^\xac\xd6\x95+p\x06\x93\xd7\xf5(\xab\x93\x07\x9f\xfc+[sT(|\xf2\xd7\xb6\xadV\xa2\x00\xf6\xc8\x93\x10\x85\x04v\x18 \x01\xd6\xa9\x01\x06H\x805\x8f\xf5(\xdbL\xb8\xcb=\xf5\xd2\x0b\xb6\xf3\x95\xe0f\xad\x9e\xfc\x1b\xdb\xe4t\xb1\xea\xba>\xb4P\xac->\xe6I\xca\xcbD\x0fOG\x94\x92\x195\xcb\xc8IdlTHc\xa7EOA%\x8b\xe1Y\xa86\xe4\xc1\xd9\xce{*\xe7\xdb\x03+\xb6\x97K\x15\xcdYX\x84.\x18\x8b9C\x83\xd6\x01V\xcb\x15Mb\xd3\x97(Z\x8c\xedO(k7\x05\n\xb7\x1c\xa2#\x8b\"\xae\xcb\xb9\x07\xbb\x8e\x0d\xfa%x\xb1\xeb\xd4XQ*\x86v\x1d\x1b\x1aK%\x8b\xf3\xf4\x1f\xed\x0d\x96\x16\xea\xc75\xb3Ck\xf4\xc0\xc23\x8bn,\x93\x93\xc0\x82\xccXx\xa2,Qeg\xc4Z\xa4J\x15=Y\x86\x81\x99?\xd1\xd6\xe3\x1a\xa9@\x00\x9c P \xf1mPH\xcd\xf1\xf4o\xe9+\xb4\xa1\x8e\x80\xbbG\xa5\x810\x8e\x02\x1d\\\x88M\xc9!?}\xc7Z &Id\xcc4\x8f\x1b\x88\xb2\x02\xabI\xd6T\xd6\x93\xb4\xf4\x9b\xa9|;D\xc8\xd7qx\x9f\x10\x8b\x96\x81\x10;T\xa6\xbc\xd1h/\xe8yr\xaa\xe2\x96K\xc0d\xa8\xaeK\x9e/\xa7\x07\xbfRD\xb5C\x04\x0dy\xa5A\xec\xc3\xf2+1\x0f\xcb,\x9a\xbfG\xbfrH\xda\xf86\xbe\x13\x0es\x9d-\x96\xd8\xb3\xc7\xfa='\xcb.^^\xd6\xcf\x14\x12+\xd8e\xf3\x82!\xb1\x18\x8cM-B\xe6\xc6\xa6\x16Y\xc6\xb1N\xbbe\x19\xc7\x18\xf2\xcf\xd8 \x17t\xb8\n9\xbc\xe3\"\xfe\x1d\xdf\\\x85cm\xcbz\x1f\xdb\xe9\xc3\xb1\x8ee\xb0\xf5\x06. v\x88\xb9\xc4\xb7\x815\x0b{\x9f\xd0\xdd\xb1\xe1\n\x0f\xfe\x9d\xad\xa6~[\xf8?X\x80\xfb\xc6\xe8Oh\xda\xbe\xe6\x99\x04\x15\xf65\xcf\xb4B\x14W\xa3\xb0P\x9b\xc7\xf1\xd5\xe1\x86I\x11\x81\xef*\"\x03\xc1W\x81Q\xdd\xf3\x99\x91\xba\xac%\xeffn\xe8\xf4\x11XF\x894\x00kc*\\\x1b\xef=Dk\xff=\xd6\x89\xa2\xda\x1797\xf4\x9bM\x9f\xe1k\xed\xc8@05\x8a\xe0!\x98g\x1fa\x9a\x13\xe9\xd7\xce\xb0\x93V\xe4\xa5\x91\n{\xc2\x96\xdd\x8d\x15H\xbd\xf0\x19\xde\xff\x88+\x00Y\xf8\xbeZ\xc6G\xd8\x95iC\x1b\xfeI[\x1a\x80\x0f\xa6\nV\xff5\xde\xa9\x0d\x93\xc4\x824e \xd8\xa4\x1d\x81\xb1\xfdC\xcc\xba\"\x9d\xa8\xe7\x116\xc3DC\x81\xfd\x9fc9&\xaa{\xa112\xa6hl\x06\x8f\x02\xbd&d\xeb\x03\xf3(\xe1#\xec\xb4\x13\xe9\xc4\x12o\xd2Z0\x17,\xcbn(O\x98\xcf\xb0\n\x1bi\x006]o\x8c\xf8\xc0\xb1\xceR\x01~\x83\x19\xe8\x86\xf4\x8f\x90\xe9\xa7\xb1M3*@x\xef#%R=\xc2\x86\x9fhT\xfb.\xec\x861\x9e\xe2+\xd2\xc8@\xb0\n`\\)\xb1\xf1i#\xe6\xa1\xf5\xc5U|\xbdo\n\x16E\xb0_Z\x14sx\xf0\xf0\x11\x96\x11\x8c\xef%y\xc5vC\x0e\xeb1\xa1 N\xe2k\xbf\xc8(\x17\x04)\xc0\xb3\xf01\xa6\x14Q\xe2\x81\xb5\xe7mL\x8b$\x04R\x8a\xd8`2\x13\x17\x16>\xa2\xc4\x13\xb8\xff1A\xe4\xc4\x1f\xa8\xec$d#\x13\xf5b\"\xde\xc6(I\x83\x08D\xb9\xc7\xf8>7J$\xa9zLH\xb1\xfd%\xe1\x0d\xa3\\\x90\x01k\xc7\x0fB\x89u\x8a\xa4O\xc8.\x1a\x08!\x94\xeau\x8f\x07\xb8\xca\x86\x11\xf4\xf0\xf6F\x06\x82\xa9\xc8F\xe1s\x8bq\xb2p\xc7%\x8f\x1a\x03\xc8\x81zx\xa97T\xb6\x06\xb2\xd2\xea;\xd9\x9a\xb1\"q\xefbanc\xccu|\x11!2\x12\xa6\x82k\x9f\xfd\x19fe\x1a\xaa\xc2 \xff\x94\xac\xfb\x98'\x9bN\xc2\xc3l\xc8S\xb86\xfc3|\xd4\xb42\x85M\x06B\xd7\x13\xd8\x87\xe7Q\xd1\x01-\x95\x94\xb8\xf2\x14s\xfc\x92}\x82B\x94m\x02\x016\x9d\xc4<\xcfF\x81\xc0\xc61\xf9\x8b\xe13&}1O\\\xc91\xfe\x19\x05\xf82\x1f\xca\x0c\x05\x8c \xd6\xf3Mlt\xd6\x94\xe7\x01\x99>O2\x1eJ\x81\xecM\xac\x85lj\xfe\x8ayu\xac\x01XX\xde\x84\xa7\xd2\xb1\x96\x1b\xc3S\xe9\x98\x1c\xc7Cxu\x00\x1f\x8ax\xa8^q\xa6\xfeX\xf1P=\x17\xfd\x17\xf8&tS\xf6\x8c\xe9z,;\xc6\xfc.\xf63wX\x9b';\x86Q\xe1S\x12\x07N\x08\xef\xc7\x93\xa4i\x00\x82\x84jx\\\x02\x06i\xb7-\xd5$\xd1?j\xf9\xec(\xc6\xff\x11\x16\x92\x05\x104\x7f|\xb2\x04D\xd7\xc2\xa6\x04\x01\xf3\xa4\x9aE\xde\x81\x93 p\xf3#\xb8\x11\xe4\xe0\xd3\xfa\x18\x0bE\x9bA\x9e\xea\x87\xd9?\xc6h#\xaa\x8d\xc2:\x88:l\x1f\x11\x1c \xf24\xdb\x97c\xfc\x08\x8b\xeb\xf1\xc8\xd6\xdaf\x04\xc9\xa8\xc4\n\xcba\x92\xcc\x83\xb1\x90\xb9\xb4\xa1\x10c\xd9\xa6\xbe|\xc5bml\xa4\x04l\xbf\x8a\xa3\\>\xf6\xf81\xde\x95M\xb9\xecO0\xd3\x05S\xe4}\xcc\x0d\xe3DE\x18a\xc2nL\x94\xf7\xb1<\x1d\xc3[\xf5O\xc8y\xd0\x96K\xfa\xdd\xad\xe9\x9b\xbb\xa50&:\x02\xee\xaaw\x83\xad\xe3(\xdf\xb3\x90\xb6-\x97,5%\xaa\x96\xf6\xda^\n\xab4f2e\xe3\xab\x05T\x8e\xd4\xc2\xb2\x96\x84+;\xce\x13\xccu%P\x87Ya\xe9J\x00\xb5\xc5\x10\x0fh3Q\x16\xc37\xe9\x16i\x08>E\x12\x92\xdaq0\xd1Qht\xf8p\xc1j\x19z\xc3\xc0\xd5S\xed\x98\x02m\x96\x1ej'\xd4)\x89\xfaN\xa0\x04\x00\xac\xb3\x08\xa0V3\xde\xc5\xca\x94\x00\xa698\\\xbfKx\x87z\x7f\xed\x1e\x96D7\x93(\x8e\x12\x9dI\xed\x1e\xc6\xcc\x02\xac\x12\xb5\xe1\xfa\xa2a\xf0\x9b\xb7\x80\xea\xb6-N\xf2\x04\x04\x83\x07\x98en\x1a\xa1\x11\xdb\xc6bc\x91\xc6\x86\xc9Mx\x95\x87\xac\xbf\xfc\xfc\x1b,\x96\xc6y\xe8*\x13\x17\x06\xbd\xae9,&\xd7\xb75\x00\xef\xc8\xed\xbal\x8b\xafk:\x87\xcd\x13\xb7\x0d\x9d\xc3\xec\xe2\xb6\xc1\xd9\xb7\xb0\x80\xf9\xbaY\x15\xact\xdf6\xab\x82\xf9\xfc\xed\xdc\xc9x\x12\xfa*3\x01\xc9\x8c*\xe0z\xf4\x98\xeb\xea\xd8\x94\xd7l\xdf\x15\x91\xc2\x02\xd5\xeb\xbb\x1b;\x0b\xec\xdb\xado\xe3*Qf\xf9\x9c\x98\x84KX\x9b\xd0B\xec\xbd\xbf\xfd;\xcc{\xb6\x8c/5\xde\xa0\xc4@0\xc3I\x1c\x0f\x12\x90\xde\xc3;\x91\x94\xb34a\xfa\xb1\xa5c;1\x1a&\x1a\x80u\xf0\xc4\xa4U\xc2'S@\xe4\x94\x1ea^\x9f\x14 \x97hs*s\x12fo[Z\xd9\xc4R\x97\xb9\xfc\xa2\xfd\xab\x1a6\x00\x10\xbc\x0f0]KLR%:\xe6\"\xa9\x12\x19Bq\x97f\x81\xa8JX\x84J\x8atKXQL\x8atK\x18\xf1\x13\x93n\xe9\x03L\x0f\x92R\xba%\xac\xe9l\x99tK\xefc\xa4O\x8aLLX\xd2(]\x03\x92E7 \x97\xb0\xc2\x94\x14\xb9\x98(\xeae>\x10M\xac5IH\xa8\xfd\xe7q\xbd-\x93\x8d [\x18\x13\x03\xc1\x1c%1y\x9a0\x05HL\x9e&\xb2[:O\xd3]\x1b@\xd4\xb9A\x01*O\x13\xa6\x84I)O\x13\x16\xd3\x93R\x9e&<\xa3-\xe3\xa7\x8f\x15\xfb\xc4@0\x03\xdf2~\xfads\x0d\x04\xd3\xd6\xc4\xe4i\xc2\xc6\xb3\x04\xf24\xe15\xd8\x02\xcd\x91\xe0>8\xc3b\xad'\xd1y\x9a0kM\xbc\xc0\xa4\\\"\x87\xdf\xe4p\"\xf8V\xe4p\xa2 \x15\x17Jh\x19\xc8\xe9\x04?9\xf0t+@g\xc9%\xd4\x99;\x81\xc9\x92k\xab\x08\x88K\xc6\xc6A\xdey\x0f\xeb\xae[+\xe7\x05\x91\xc3|5\x81W\xfe\xf1g\x8b\xff\x0fvV\xd6E\xd03r5\xc5vcT\x90<\xb7\x9a\x14\x890\xb0=\")\x12a\x90\xe6U\x0eh\xb2BZ\x90 \xdd\xe8\xc4\x16\xf8\x16\xdb\x84'\x93\x17\x7f\x13\x9d\xd8\xe2\xa7\x04\xe7\x8a\xc4\x16\x98ln\xc98\xba\xcf\xb1\x8e\x95\xc8\xcf\xbf\xa1]DR+'\x8cX\xc6\x88\xe3|]\x18\x8bQ$9\xe6>\xc8}\x820\xa7\xaa\xf7\x84\xb5v%g\x17fTE\x89J\xd4\xfbO\xf1\xfd_\xd1\x91I\xda\x85\xe9\xbfl\xaa\x9c\xb5\x0b\x93\nY\x80\xa6\xed\xc2*\xb5*\x86\xf3v\xe1\xd3b\x8a\x95\x12wa\xb3\x16*\xa3\xf3\x0ea\xf1G\x16;W\x8b\xa7\xe5\x04V:\xc2\x95\"Z\xa9\x10\xf8\x06P\x8c\x13EP\xf6.\xeb:\x97\xf2\x80A)\xc2.D)\x9c{\x8bPf\x9ff\xd4\xb2.\xa2N\x97\x85em\x0d,\xb0\x13[F,\xcfr\x13Z(\x8a\xa0\x8cYx:\xc4\x17\xf1\x01\xa1\xceVG\xc4\xa6B\x85\xf7\x1a\x96\xdad1\x925\x0bK\x04\xaaTur\x98R\xa9B\xa5\xa4WX\x8b\xab\x94\xd0\xf8\x87\x05s\x94\xd3\x8c N \xae\x9b\xc0\xbak\x02\x87\xee\xd7D\x88\xf2\xd3\xea\x83\x8d\xa4\xa2I\xa6CP1\xd0\xe9 \x08\xfa\x05\x90\xf3\x81HQEf\x1bL\x0c\x93jf\x1b\x02\xd6\x81\x0cO \x933 d0WLL\x02\x19\xbc\xe8\x89I \x83iKbn\xd3\xb0&\xb8\xa5uQ\xc2\x95\x8d.J\x04\xde\"/ \x1duqGB\xf0/\xcaC\xaf\x94\xe0\xfe\x03\xac\xde'0\xc6\x8e\xe53\xdc\xf8>\"\x9a]\\r;$<\xc2d\x03!\x04\x19\x85\xf0\x90\xb3[d\xea\xc0\x06\xb5-};E\xebh]\x1b\xfb\xc6l)\xc9\x8b\xec}\xedw\x99\\\x83\x08\xd1&\xb9\x06\x16l\x93\"\xb9\x06\x01\x15\xa9)\x082\x17t \xc7ni\xdf\xc3\xf7\xb0\xa5\xab\xe4db\x81H\xc2zE:\xe2\xc5\x93\xf7d\xbc\xb5\xe8:\xf2a0\xefR\x88\xdc\xc9'd'G*\xaf<65\x08\x00\x84\xaa\xfd\x0d\xcd\x02\xb5\xbdqn\x07\xce*\xa9\x16\xf538\xadX\x9c\x01G\x9f\xe3\xf4\xab$\xe3\x1fb!_\x00\xd4E\x1aa!F\xf0\xc5rQj d\xc9bG]\xc1\xfe\x92\xa0\x99\x04\xe9w\xfd,\xd0\xc4z\xf0\xd3\xdbJ\x96x@\x98\x9f\x80\x80\xaf\xd1\x9f\xd3\xb5Ko\xab\xdc!\x0f\xb0\xb0,!P\xefg\x965\xbf\xad\xfcg\x88\xd4t[\x076`\xb5\xa7\x08\x94x@(\xce\xedR\xf8\x82\xb5^\xe1\xd7o\xab\x0b3 \xb4\xd4D_<\xc04P\x82L \\\x0dPuH\xebJK\xd9{\x98\xd5\x97^\xae'R@=\x08j\xe1g\xa8\xc8.\xd2p\xc0\x86\x02\x85R\x8f\x17\xcb\x16\x06\xd8X\xa4h\x8a\xb0\x11Yn7\xd4#\xa6\xf8\x93;p\x83L\x1e\xf2Oo\xe75\x80\xda\xeb\xa5msk\x89u\xc8\xd4hR\x98#\xa7\x0d\x02I\x03mJ35\xee\x87\x98jogp\xfa\x08 U\x80\xbf\xb0\x01d[\x7fAD\xc6,q\x04\x9f\xe6q\xea\x07r \x7f\x83\x95$]D9_as\\\x9a%\xd2\xeeE\xb2\xdfm\xc3\x01|H\xf0Z\x1dL\xc2r\xf3\x9e~\xb3\x9b\xa8\x0e&\x16\x89\x02\xe0d\x91\x19\xe7=\x9d\xaa\xe7)\xe1\xbayo\x94\x83\x07\xf3S\"[\xe7=\x90\xfa\x9fb\xbb\xa2\x80@_\x84\xc0\xe6=\xcdE\x9f`\xb2\x9c\xe6=\xc3E\xb1^Z\x1c#\xdb\x1a\x990*+H\x11\x05\xcb\xb4\xcb\x11T\xd6\x0e\x8b\xb3d\xaf\xad\x12\n\xdb\xa6 \xd0\xdbu\xeb\xa3\xfd\x1f\xb1-A\x80`\xd3\x9f\x12\xec\x11 \xc8\xf2F8\x86\n\xf6\xa2\xfaj\xee\x96]\x8f\xb0\xd6*\xc0e\xd7#\x8cL\xe5`_\xd2\xb6%\xd2\xb7\xa6\x04r=\xaa\xeb\xa5\x14\xe1k\x19\xa7\x0eY\xb3\x80\xca\xaeGD5\x15p\xedzD\xd4S\x01\xacUPs\xb7^\x0b\xcd\xdd\xe1\xce\xd0\xb1_Bm\xc3e\xd2=\xc2\xf7j\xbf\x83!\xf0\x97\x98\xb8n\xc3v?\xa4\x15\x80}\xd2\xd3\x1a\xcf \xf2\x82OO\x9a\xc7\xf3\xe2;\x91M\xf3\xf8\x84\xf8N\x84\xc7<\xd6\xe4\x05[ \x05H#(\x11XM\x84 \x05\x009\xa0\xd8\x1e\x1b\xd2\x83\x05\xb8j@w\x0d\xb08\xa0\x96\xa6\x87\xca7\xfcWXQ\x9405 |!\x9c\xe6\xb1I\xdbJOSl\xa8!\xa55\xb1\xa2\x86Dp\xcdcE\x0d)\x1d\x8855|J\xc45#\xed\xd8\xb6\xbfn]*b\x90eI\xca\xe1\x94V\xa8\xa6h\x96\xa1\x96)\x9ae\x8e\x9a\xa2\x11\x9e\x9e\xc7z\xad\x89\xc0!@@\xd1\x08\xbb/b\xd6\x88\x19\xc6\xc4\xacachjb\xd6\xac\x90\x9a\xbc\xd7\xe9~\xa8\x8d'D\xba\xb9\x03\x91S\x9f`=q\xc7\x113\xfaA\x86>gN2\x80\x9dy\x17Oh\xc7\x91!\x9aX\xaf\xc8\xe4\xe7\xdf`\xe4\xcf\x94\x9d\x9f\xf8\xea\xef\x18k\"i\xc9@\xb0\xa6\xb1cl\x80\xd8\xfe\x92\x19\x08\x96\xa9\x94zF+H\xdd\x0c#\xbf\xce\x9c\xfcclw\xcdx\xa0\xbcb\xdf\xc5\xeclG\xdb\x8b\xf0 \xcc4\x00\xdb\xcd\xb3!O\xf8I\xd1\xd8=\xb2,\x02\xd4\x8f@b'\xd0\xac\x11\xba3\xe4\xf0\x06*\xa6g\x99\x06`\xb6)\x01\xe9\xa1\xc0\xf7\xdf\xe0\xc3)ac;\xc4w\xf7J\x197\xf1A\x91\xf0:cJ5\x03\xe2[\xbf\xa2/\xf5gC?T\x9e\x8d\x98\xdeU\xb3\x1dbh6\xdcS\xb1\xbdtD\xf5\xe3\xb9\xb0\xb1\xb5.N\x066\xc7d\xc3(\x11X\xf8 \xe6\x1c\x86\xbb\x93\xb6t<\xce\xaf\xb1%\x1a\xa5\xdb\xc0\xc4\xce\x92k\x03\x8bq(\xd1\x06\x99\xa0\xba!\xf9\x84\xe0\xa0\x00\x80\xec\x8d\x15z\x00\x01\xc1\xf8\x88\xa0\xa8\x00\xc2\xbb\xb9XP\xc9\xea\x1e\xe0\xce\"\x0e>B\xd8n\x99\x81\xd7\xee\x03r\xd2\xa3\xb8\x07\xe7\xed],\xd0dQ\xac\xd3\x18\xe3\xa1\xed\x18\xdb\x06\xa6\xed\x99\x81`\xca! *d\xe3)6\x1bdQ\n\xc3\xc6rSVx_\x93\xa3\xb6\xb5\xb8,\x99\xe4\xdb\x84\xb0$\x0e\xec\x91\x05R\\\x9f\xbf\x87\x15.\x0d\xd4\xde\x0b\xefaA\x0d\xc7\xee\x93\xac\xea4t\x9f\xa4W\xd7E@F\xc6HJ\xe2\xfa\xc9\xa5\x9a%\xac\x9f\\\xafe\x89zU\xe5\xd9/\xb0IL_\xc9\xd9z6\xb6\xc1\x8f\xb0\xdc\xbb\x93\xf8q\xc0\x97\xeb\xe8\xb2\x80\xaa\x9a\x96\xe1\x02\xea\x7f\x88]\x06\xb3\xc4\xcf\xd4\xd6~\x84e\xa3,\x89\xf9\x1d\xe5F\xf5gx\x0fw\x8c-\x00k\xbe\x99\xb1\x05\x10\xa2\xa5nz0\xfb\xcf\xd4U\x0f\x96_v\xb4\xf9\x9f\xa0\xb7\xb6\xff\xe3E\xd81\xcf\x0f\xd0>4\x04_\xc0d\xfb>\\\x8c\xdc'\xdb\xb4\x1f\x0d\xb9\xe3U\xf3K\x12\xea\x08\x85\x90w\x13&1\xbb& \x1e\x1f\xba\xdc@\xf0~\xefj\xd1\x07\x8b*\xb9\x96\x960?\xcau\x0d\x0c\x10M\xe9\x00\xfb\x0f\xf0\xb6\xec\xf6\xd4\x93\xca\xf8\xa67W\x80\x7f\xc0s\xde\xed%\\\xc6y\x7f\x86\x97,7\x10L\x13wu\xb4>\xde\xb3\\\x030\xfe\xed\xc2\xa8\xb0\x1c\x93\xc3\x98\xf0\xa9\xcf=\xed:\x809\xc6\xae \xd6\xc7\x04<7\x10LZs\xe3\xca\x89M]y\xe1?\x88\xf9\xe1\xae\x16s\xb0\xd8\x91k\x00V\xd7vM\xc0<\x16as\x03\xc1\x879\xd7\x9e\x85da\x86N\x02\xeen\x98d\xe6& -\x1ern\xde\xc5\xc2\xdaJ.\xdf\xa7\x12\xa0w1\x95\xca\xcbOWY\x80*6\xe5]l\x1e\xcd\xcdC\x18X\xfc\xda\xd5\x11\xf2X\\\xcf5\x00\xbb\xedC\xb0\xed\xc7\x98\xc1\xee\x86\x9e\x8e\xa9\xc5\xef\xe5\x00\xc8\x84\xd4\xe2Ce\xc0:\xa6\x16\xd3sY\x00\x07\xd5\xe2{(c\x8a}\x88\xf1SBt\xb6\xff\x07\xf8\xa8\xed\xaad\x0b\x9fa\x0c\xc95\x00k\xf4\xbb\x86\xc5c\xcd-7\x10L\x04\x9b.\x1cw\xe3\xc2\xb9\x86\xd0\x95\x02f\xa9Wv\xda|\x1f\xdb\x8c\x15\xb8r'KOh\\\xbd\xb3\xc5\x8a\xc5n,\xa4\x81b|\x18\x9eW\xe1\x96\xfa\xd8+\x98\x9c\xeaX91\x9aw?\xc8\x19\xd2%\x8a\xa7\xa4\xc8a\x8ak\xb77\x8e\xf1[MX\x9b\x94E\xd0\xad1\x96awU\x08\x14^\xe4\\}\xc7\xeb*\xbe\x0fm\x15v\x8d\xc1\xfbs, \xe6\x85-\x9cn\x93v\xbf\xc4\x95$\xa4\x187mSa\x10x\x7fb\x99=O\x0c\xa9\xc1\xe7)/?\x02e\x01jRC\x16\\9\x19~F6Z\x03\xb0\xd8\x92k\x0f\xaa_`\x82\xbbkD\x1d\xc2?\x8c\xa8\x83U\xb7\xdc\xbc<\x84\xeb\xecj\xdd\xe83L\xbbr\x03\xc1\xf2w\xae\x9d\xbb0M\xca\x8d\x0b\x17\x96ps-\x0b\x90\xd5\xdeUy\n\x08\xe1V\xdf\xb1.\x97\xef\x1ba\xfd\x11\x96\x9d\xc6N8\x80;\xc8G\xb8\xb9\xb1\x934\\\xab\x8c\x9dD(\xce\xd2c\x01\xaf\xd0\xd8I\xc2H\xe8\xbe\xf0\x9a\x06\xc6\xc2\xb1\x93\xd4\\\xc6\x08\x88o\x0b:\x17\x80\xfa\xb8\xc6\xb1\x16\xa7,\xed%Vz\"\x00\xe0`\x8f\xe5\x86\xb1\x93\x18O\x0clR\x11\xb0\xea\x1d\x03\xbd\xd2-\x97Q7\x0d5\x85*\xa6\xbd\xe62\xca\xc0g-\xa4-\"\xc4\xb6!`H\xd3\"\xaf\x03\x97\xca\x18\xaaH\xfc\xa1/+\xcd\xfa)f\xe1c\xc53\x9e\xe2\x83 \x002\x8a\xef)>\x08\x97A$\xc4\xe4l\x0c\x9f\xf1\xf0\x8a$f\xb8\xeb\"\x87\x19\xee\xa1HaFFe\xea`]H\xb6&%\xaf\xa7\x98\xe3^V\x9e\x9c\xf8\xa6m\x0c\xdfI\xea\x991\xe7j\xb9\x1e`qx\xcc\xb9\xd2W\xb1\n1\xe6A\xe0\xc3\xbd\x02&w\x97y\xa2\xda{\x93\x1c\n\x0d\xfa\x11\xad\x93\xd5\xd5\xc8j\xca\x97\x13\x9bb\xb9T\xc3\xd5\x13\x17u\xd5\xb7y\xec$\x8e\xf2+\xff+,B\xebR\x85\xe5\x07#3}\x04\x04\x13\xe5\xcbZ\x0c\xc7\xc2\xf6X\x030\xee\x8e\xb5\xc4JQ\xdf\xe4\x8e\xb4dz\x1c\x9b\x9c\x8b\x96\x0c\x89\x97\x8dx\x86\x95\xf1\xb1\x81\x10:[\x1b\xef=6o\x17\x92sg\xd8\x16!R\x86ma\xc5z\\\xba\x01\xb6\x90\x8b\xd2-\xb0\x15j\xeeKj\xa0\xbc\x8eZ].\x0e\x17\xd6\x00\xc6w\xfc\xc1\x1dG\xb2\x82G\x18\xf1\xafh\xbfV\xcc\xfd\xf65\x00\xf3\x9d}\xee\xa9\xf3\xf0\x18+\x00W\xb8\x07Q\xbd\x0f\xf1\xe8\xf65\xe4\x1e\xde\x17 \x81C\x89qj\x9f\xfb*[\xcc\xdb\x18\x97\xafht\xc3\xf3\xd9\xd7\x00<\x9f+\x063\xb0\xa0\xb3o \x98\x94\xec\xdb;\xdfO\xac\xa7g?\xe1N6\xb4\x82\xae\x18D\xc2\x87`\xdf \x12\xd6A\x0e\x94'\xd4C\xcc\x04\x0f\xd4\xce<\xfb\x05\x16\xc0\x0e\x94\x13\x14\xd1\x9c\x0e<-\xfe\xe0k\xe67\xf4za\x9b\xc2\x81\x06\xe0\xfd?\xd0\x0f\xb5\x90\xb7o\x0f\xb4\x8eL\x9e\xbb}Cf#\xc06\x90\x03\xf9\x15\xab\x00\x07:\xbd$y\xcb\xf7@\xdfA\x927|\x0f\xd4\xf3d\xe4!\xdd\x03\xfd\xe2\x0bf\x05\x07:\x99\xe0Gx\xaf\xde0\xe8\x80\x95\xef\x03\x03\xc1,\xef\xa0\x88\x0d\xc1l\xea 2\xd6A\xb2\x91:<\x9d\xbc\xdc{\xa0}>\xc8\x83\xbdo\x18L\xc2\xc4\xea\xc0`\x12&\x8a\x07\xc6;\xee#l\x1f<0\n\xd7G\xf8\xb6\xed\xc0\x88\xcc\xa4\xa7q\x0dK>\xd8\xaf%\x00W\x8d\x8d\x0e\x93\xdfC\x03\xc1\xb8yu\x11\x84\x12\x8c\xe6\x87\x0e\xd8\xaf\xf0\xfe\\\xd5$\x0b/\xda\xa1\x06`\xbc\xbc\n\x1d`\xd9\xe6\x10\xda\xc7\xa4\xfd\x90\xcbdBX5\xbb\xaaO\n\x96\xdf\x0f5\x00\x8f\xe7\xea*\xf4\x8b\xef\xa2\x0f}\xe8\x18+\xadW\x0d\xe2a?\x9fC\x03\xc1D\xff\xaaA\x14L \x0f\x0d\xa2`JxU\xd9\x0b\xb1\x08t\xa8\x0c\x86\xa4<\xe8;\x9f\xe1\x83z\xa8\xf4 l\x00\xb8fBQ0\xc2\xdf1\x10LT\xae\x99\x1b\\\x8c\x1ew\x0c\x04\x93\x90k0\x0d\xbc\x8cw\xe03F\x82k\xea\xe5vL\"\xee\xa8\xef\x98\xa6\xdc\xe1\\?\xe2\x89\x19\xc65\x9eDW|/\x1b\xd6?\xa3vM]\x9fb\xc9\xf0\x8e\xfa\x8eq\xe5\x9a\n\x9b\xc6]\xdd\xd1\xc8E\xa6\xa3,\xfe\xa4\x030\xf8\xff=\xee\xe0\x8e?0!c\xf8l^\xd3ar\xf8\xb6\xed\x8e\xc1;|v\xae\x19\xbc\xc3D\xfa\x8e\xc1;|p\xef\xec\xdf\x92k\x85 \xd7\x9d\xfd\x10\x00\xef\xb6\xcc\xf7\xbb\xf2\xaf\xbb]\xd6\xcfC\xe9g\xda\xe6]\x96uY\xd8a\x7fd\n\xb5\xf2\x94\xb34K|7k\xbdj\xbe\x8e\x9d\x84%\xec\x0c\x0b\xdb'\xe7^\xe9T\xbb\x8a\xe4\xf7\xf9\xeftf\xf2\x90\xa7\xae\x13\xf3K^Q\x93\xcf\xf0\x838J\xb2\x94\x9d\xa9\xf6[\xeeTw\x11v\x99\xdfeN\x97\xe5\xec\x0c\xcb\xaa\xdd\x88\x9fh\x84\xcf\xc4Qz\xc99x\xb5\x02\xf5\xfb\xac\xfd\xf2,;sF\x14H\x13w\xc6\x1d:\xc9R\xe4\xf1\xc5\xac\x9dup_\xe2\xd7\x8f\x12\xd6\xce\x8e\x1e}\x95e\xec\xbb,}\xd5VF\xb7<\x07-\xb7Cfo\xbe\xc3\x12\x9e\xe5I\xc8\x8e\xcc\xbdZ\xdb\xc8\xcb\xf3\xb2\x91\xd0\x14v\xd8\x19\x96\xb4\xa36\xb4\x98\x06\xbe\xcb\xdb9;\xca\xe6\xc4\xeat:]v\xe4\x08\x9f\x89\x9d$\xe5\xc9\xcc\xd8 |\xcf\xc9\xf8\x9a\x1f\xee\xb5\x9d\x0e{\xe9%\xd6\x96+!\x16\n\xea\xf0\x99\xc0\x0f\xf7\x96\xa20\xe3a\xc6\xce\x88e<2\xdb\xb1\x8f\xe7\xb4\x1a\x8bhGV\x17K\xc0^\x13\x7f\x9fa\xf3l\x81eG\x8f\x92\x8aw\xc9\x173\xebo\xd5\x97\x93\xeb\xec\xb33lV\xad\xb4\xe8\xf3\xc4<;\xd2\xb4\xa0\xa2\xcc\x91v\xc8\xbe\xc7^\x11\x7f\x86\xec\xbbl\xeed\xe7\xd5\x0e\x19\x81XX\xebd:j.t\xfe\xfe\x83\xf4\xe8\xf1A\x97\xb5X\xab3\x93E\xf2\x0eg\xc9Iy\xfb\x85\xe0\xf0F\xef\x16w\xb3\x19\x8f\xf7\xfd\x90o&Q\xcc\x93\xec\xb0\x9duY\xeb\xe6M\x9e^\x8a\xbc<\xe0\xad.\xc1\xd6 \xe7\x0b\xec\xc8l1\x82N\x97\xc9V\x9c<\xc8\xca\xd3\xac\x99%\xc5\x147\x1a\xc5Q\xc8\xc3,]`\x8en\x89\"\xfb~\xe2\xc4K\xa5\xa2y}\xd14s2\xbe\x19\xe4\x03?L\x17jXA\x1as\xb7\x0e\xc6Tw\xdb<\x90\xb9&\xd2\x05\x96\xd0^\xf4/-J\xf9\xd6Bw\xedu\x9d<\x1b>\xc7\x08\xa2\xe7i;r\xd2\x13Mm;r\x8f\xd2\x05\x96\xd6\xcf+\xe1^\xeer\xd1\xb5[\xbf\xd4\xfaWZ\x84\xc0>P\xf2\xf5n\xcd)\xbcK\xe9l\xdc\x0e\xdb'\xe7\xe7;\x16\xc9\x14@'0\xc87\xa0\x93\x18$\x88W_\x82NaP\xaeA'H\xadT58\x7f\xe2e\x0c\nt_'\xc9\x08]\xdd\xe0\xc9\x13\x9d\xce\xab\xdf20}JX\xbf\x9e\x1c\x08\x02\xc6g\x8a\xc3\xc8^c\x9c\xd96Um\xce\x02\xe3u+j\xe98\xa6\x1d\x0b\x92Mz-\x88t\x95\xd4j\x0e\xfeGw)\xbb \xf3 `G\xce0N\xe59\xc9P$\xcfc~\xc8xG\x93\xa18\x89\xb2(;\x8c\xf9\xcc\xd0I7\xf6CM\x90f\\'\x08\x04Q\x0bA\xd6\xc9\xae\x877\x04S\xb9\x1e\xde@|N\x0d\xb3L\x8b\x04-,-\x02\xfbF\x90J?\xdd\xdew\x06\x03\x9e\xcc\x0b\x8e7\xe3\xa7\x1b\x8b\xdb'\xe4\x9f)O\xc6\xb7\x1b(\x82\x103y\x91\x942\xc5#KtY.\xddJ\xa4\xec\xaa\x93\xe6\xc7\x03&\"\x99\xb0\x90\x00\n\x17^l\xb1\x97{fz\xaek\xcd\x03\xcc\x9f9o0\xefp\xde\xa4=/2+vD\x00\x01 \"\x80$)Y\xd5}\xb0\x96\xad$\"\x10\xd7\x1d;\xf6}'a\x00\x9b*\xfaf\xe7\xbe\x92\x1bl\xbf\x0d\xf1\xed\xd6\x8e\x12\xc6}-\x8cW[\xd1\xde\x07]=\x1d\x13W\x0d\xd8;#\xc5\xe1U^\x10z\x91R\x1c_aP\xfc\xeb\xbb\x9c6\xa2&\xday_\xf6\xa6\x0b!\xdf\x16\xc7\xce\x1cz\xec\xcb\x85\xcdc\xa7\x851\xd5\xf8\xec\xa3\xcc\x94\xf7t\xc8\xb0/\x9fq\x03\xf4\xc5L\xd94s\xb7\x89\x85\xf1o E\xe3\xdf\x12\xfe\xc6\xbfk\xdc\xce\xfe\xac\xd0\xfe\xddLI,e\xffvUw\x8f\x91C\x1d\x82\x83)\x84\x13\xbcXn\x86\x7f\x95\xb8\x17\x87\xed\x85\xf9K\x1f\x89\x15F\xfe\x18\xcee=\xbd\xce=\xfb\xb9MP\x0c\xed6\x93\xc4_\xbf?=#\xe1\x9f\xa3\xe4IY,\x92,\xfc\x99\x18\x88\x8a\x9cR\xd1JZ\x9e\x96\x8c\x1e\xa8Hy\x05!\xe2+ \x91\xd2D\x88\xe4\x9f\x86\xd8\x16\xbf\xe8\x84#\x0d\xaan.\x95-\xee\xceP\x7f7k\x87.\x83}\x7f\xed6\xccvq\xab\x8c'\xdc\x01\xc2+>t\xdf{\x11\xe6\x85\xd3\x06\xfe\xeav#q\x91]\x1d\x92\xbf\xdb\x8e7O\xb2\x03\x7f\xb60\xcc\x0d\xa4[\x93\x1d\x06\xbe\xee\x0e\x1d\xc7\xd8Q3\xa2\x14R\x8a\xe9\xe6\xb1\xba\x14u\x0e\xd3\x91\xa6\x94\xe2\xdf\x92Q\x01\x94\x0d\xb1\x14g\xd8J(\xcb>\xb6P\xbe\x84bn\xfe\xc1c\x7f\xf6}D\xf7|\xd2\x04\x00m\xfdk\x0d\x03\x11#\x03\x92\x96\xf9\xc2\x8e\xc9\x05\xf8\x14\x81\xf3\x1b\xbd\xda\xd6_\xaeQ\x056\xf3\xe6aT\x90l\x00|@}\x88\x18FE\x91-Q\xd6\xbdv\x1cG\xc1v8.X\x8b\xa2H-\xfc\x14!\xd7\xf2\xd3\xf0\xcf\xe4J\xbc\xa1\x84\xc2\n\xc3/;\xfd\xd0>\xe2?\xc8\x7f\xadt\xe5*\x99\xbfJV@o\x8d\x8a\xad\xf2\"\x12\x9f\x15\x0b&2\x7f\x92e\xfe\x95\x9d\xc1c\x18\xc1>d\xb0\x01#\x98\xc0\xa6\xe3\".\x18=\x82\x10\xbe\x82\xec\x11\x84\xeb\xeb\x0e$\xd3\x90V8\x96[\x9b\x86\xc7\xdd\xcd\xa4}\xfaws\xd9\x97\x155\xe3\xd3\xcb=j1\x8b\xd3\xe2\x98\x92\x8b3\xbf\xb0\x13\x87r\x93mV3\xd1^\xff\xac\xe0\xf7\xbf\xff[\xf2\x8c\x9a\x9a\xbdK\xa1\x82\xdc\x06W\x1f\x0f\xe3\xebVe\x91\xef\x84\x8d\\\x99\x81\xbd3\xd6y \x03+\x13%\xf5\x86\xa1Z\xa7GB\xa0\xd5\xe4E\x1d\xde\xd6\xc8\xd7\xe6m\xbev\x18\xf1\xb2\x12\x8f\xe3\xf6*#\xccK[\xe1\x9fB\x89\x7f\xe2\n\xff\x14\x1c\xff\x14\x12\xfe\xc9\x18\xfe\xc9\xe0+(\x1eAF\xf1O<\xcd\xba\xf8'\xd3\xe0\x9f\x04Ug\xb7\xc6?\x127E\xf1\x8f\xdfB/1\xc59]\xd1\x8e\xe9\x88\xaf\x84\xd7?)+E>gV\xa9\x8b\x07\x99\x0e\xa2\xa3MH\xaa\xa2\xfb*N\x88\x15u\x98\xa4Z\xa9\xf1P\xaf\xd4\xd8T)5X\xd1H%\xcdcEz\xa5\xc6\xd6\xef\xab\xd4\x10\xbfd\x91\x7f\xb3\xa1\xa7~\x14\x9d\xfa\xb3\xf7\xf9\xa4&b\x9as\xf9\xb6(\xd2'\xa8\x88\x8b\xd4\x15\xde\x12Lc\xf5u\x12\\Mj\xfa\xbcY\xe7\x90a#\xad\xfa\x92\x97?M\xe2\xc2\x0f\xd1\xdfL\xa3\xbc\x94:;\x08B\xf4V\xc8\xd55_\xa7\x84%\xff\xa9\xfa\xd6(\xe9\x12Q\xf1E\x18\xbf\x9f@(j}\xe6\x87\xc3\xb7c\xbb\xab\x9fKxI\x07\x90C\xbc\xbe\xec\xd8\xa6p\x8cUF\x14l\x91\xa8XQ'\xf1\xd1A\xb4\xff.%\xa8\xf5B\xc0\xedr-\xb1\xb8\x18*ex\xb7\x0e7\x0cI\xc9\xec\x8d_,\xba\xe5LJbU@TA\xa6\xa5\xb0)\x0b\xe7`\xaf\x15\x95\x1e\xb0:\x03\x9cH\xe0\xe9ul+O}J\xf5\xd0\xdb\xc4\x05\xebU\x02\xd5$\xda\xcc4\x9d'SI-\xfd\xb4\xa6-z\x94@\xda\x8e\x83\xf0\xbc\x03e\xe2yO\xae&\x12c\"\x9ekW\xdf\xdcb\\\xcd\"\xc6\xeb\xaf=\xc8\\\xc7\xaa\xf1\x81Z_|\x91\x91\xb9\x10\x13\xecc[0\xb9\xd9\xf8A\xcc!W\x16_\xab\xc6\x17\x99XI\xba\x9b\xf2\x00\xa3jc\xe90\xd5\x8c-\xf0=\x9bUR\xaaa\x02\x83\n\xf7LZ\n\x0c\xf9\xd1q\xd3\xd0\xbf\xf3\xa5\x0b\n\xfe\x94\x98\xd6\x12pX\x13\x98\x99\xc5\x01\xb8\xe4Q\x8f\xc8\x00\xfd\x86,s\xa5%)\x16I\xd0\xdbV\x8a\xee1=\xa2\x15q\x9e\xe9=\xc3\xd8t\x17r\xba\xdd=\x12\x99(J.\x8e\xb2\xab\xe7\xc5\xeb\xb2\x98\xb4\x8d9\xe5\xe7Z!<\xd0\xbdo\xbfko\xe3\xb0C\xcb\x8eY\xfey\x194uo\xa3Pu\xe7\xd0\xcb\xc8\x0e\xc5\x9d\x13\xf6\xdf9\xe1\xe7}\xe7d5\xf1\xa1\xbbu\xa4*\xdf\xd3\x85\xeb\xd6\x0b\x07\xdfNX'\x9e\x87g\n\xa8/\xab\xfb\xabb \xba\x95\x98\xb1\xf8<\xee\x96D\xec\x0ee\x06\x84GW\xa9b\x9c3\xac\x12\xe6\x07\x97dV\x16\x8a\n\xf3\x9e+4\xc5\xf2$~\xba\xf0\xe33\xc5\xf7\x01\x82\x8d\xf5\xd2\xcf\xde\x07\xc9E\xac\x92?.X\x95e\x12\x90\xe8\xe0\xd2_\xa6\x11QU;g\xd5:\xb4\xa1\xaa\xee\x12\xb85q\xc1\xe4\x01\x01\xc9gY\x98\xd2\xad\xb7*]f\xf7\xb3\xb3\xd6g|\xe9\xf8'\xe4\x02\x12\xefu\x16\x90\x8c\x04/\xfd\xb4y\xce\xe9ZG\xb4\xda\x99\xf7\x9e\x08\xe1w\x98\xe5E\x9bu\xa3\x80v\x05{p\x86]\xa8\x90\xd6)\xec\x81\x95\xe0)fw\xd3U\xcd\xef\xa3\n\xdar\x81\xc9f\xdb\xb6?H\xa2\\\x19n2\xbc\xf5(\xeb\x1b\xce\xf0B\xba\x97\xcc\nRl\xe4EF\xfc%\xbf\x08\xe9$\x98\x91k\xe4\x85q@._\xcfm+\\\xfag\xe4\x1e[\x88N\xa1_\x06a\xa2+<\x0f\x03B\x0bu,\xf0 \xdb\xd6\xe7qZ\x16*m\x03\x9f\xcb\x0c\xf6\xeb\x0b\xae\x85DOt7\x1d\x93f[\xf3\x90b\xecK\xf3;\xc1\x0e\xa1\x82V\x98t\n\xb5\xa3)\\lL;(.'\xd0\x8f*/\xae\"b\xb2^\x07\xf4\x1a\x880\x98\x07\x1d\x9d\xb6b\xf72\x026F\xeb\xdf\xfe\xf5\x8f\x96\x90}\xdf\x14\x07\x81\x0e:NN\xf0p\xea:/]\x88(\xc0\xdf|\x85\x1a\xbdfI\xba\xc1O\xb8v\xba\xf6\x17\xfc^p,\xe7#L7 iFf~\xa1\xdb\x0b\xca\x95\x0b\xbcQ\xd5\xa4\x97\x82\xfc\xb7\xd8\x0d\xd3\xf8nw\x88dj\xb8w\x9c\x12\xe1\xec\x1a\xa9\xb0\x06+\xab\xabta\x1a\xf6<6\xf2\xfeA\x98\xa7~1[<\x8f\xc3\"\xf4\xa3\xef9\xcb\xaa`J\xc4\xc3n\xff (\xf8\x12\xf1H\x13\x9c\xa0\x9f\x94\x05\x1b`\xc1\xbaz\x01\xb4\xcd\xc8\x9c\xde\x04B}E\xcehs\x13\x06\x8a\xcf\xe7\xb0\x0f\x01L`\xae\xffhU*\x15\x18\xa5\x8azu\x83\xfd\x86z\xef\x9d\n\x1f(\xa5\x1dZC<\x18p\x07\xc9 \xb24\x9d\xfd@\x05'yRf32\x81es\x04\x86\x83\xb2P5\xd3\xbbW5K>\x01_\xc1p\xcb\xfc\xf8\x04\xcan\x0dr\x99\xfaq\xf0\x8c\xa4\xc5b\x02#\x85t@\xf0\xdbJ\x01\x9c\x80\xda+a\xb8\x83$\xac\x02\xf8jA\xd8\x9c \xc2d\xe2WQ\x9f\x13&z.\xe4\\w:3Y\xfb\xa3!\x12j M\xd5\x15\x90\xd58B\x96L#\x06\xec\xdd\x19\xe8]\xe9 \xefz\x8c\xa7\x15\xe9\xa2\xad\xd2\x90\xbc\xc5\x14\xeb\x95\xb0\xaf\xad\x9e\x18g\xcc\x89\x9d\xee\xed\x05B\x98\xc8\x996\xedh\xd2L\x12\x03VJn\xf8\x17\x0b\x8dW-\xfa\xaf~\xb2\x19\xff\xd4\xd4\x81\\\xc9zS\x818X=f\xaf\xf2\x83\"i!\x04Y\xdbCQd2\x87Z\xd1nY\xbd\x8a\xd1\xc2\xcb\xd3(,l\xeb\xc7\xd8r\x86)\xd3\x15\xad\xc4\xf0\x186a\x9f\x1b\xb3\x11X\x87\x91\xe3\xfd\x94\x84\xb1m\x81\xe5\xc0:\x14`V\xe0\xf2\xcat\x10\xeaM\xa3\xb8\xaa\xa5\xa9\xf5\xc5\x06\x8d\x1d&/\xfa\xe5z\xd8\xb6\xa8\xa8\xf3\xe6=q\xdc4,\xb4#\xafF\x91\xb2\xe5#\xef\n\xf6 \xc5\xb7\x9f\x1b\xf13S\x918 /\xe8\x908!/\xe8\x908>/Pz\xbb\xcfT$N\xce\x0b:*\xcf\x88\xdb\xe9\xd6c\x9d *gf\xa0rf\x9f\x9e\xca1;e\xf6P9x\xa5\xbb=\xc2\x90U\xa1'L\xce\x18\xd3\xd3k\x88M\x9f\xd0\xcbI\xc1\xbe\xaa\xd5Hx\x06\x14gY\xee\xe3{?\x0b\xfd\xd3\x88\xa0\xc8c\x85\x0e\x85R;\xec#\xc8bn\xb3^(\xfa\xd3\x7f\x951O\xfc2\xcbH\xcc\xbf4\xd3j\xd5\xa4\xcfH\xf1\xa4(\xb2\xf0\xb4,\x88m\x05~\xe1o\x9c\xf3>\xfb\xe8\xac\xe6\xc2\xa9\xaf\x06K,\x8d\x05{\xd5\x8d\x82\x91pb\x83\xa9\x0e3\xa66\xc68AZ9\xd1\x97\x9f\xfb\xd1\x04|e\xf1\xb5f\x8f\xabE\x1f\xb4\xa3\x8c\xe3\xc0\xddd_R.\x97\x04\xac\x85\x8e\xe9/\xef\x04\xcd\xdc:\xdc\x00\xfa\xafh\x90\x08\xb4\xbd7T\x9cE8\x8c\xb3\xa8\\\x8b\x9f\x85\xc1\xcb\xa4\x8c\xdb\xc9\xff\xe0\xa32\x19\xdcB^\x0d'\xa4 \xbcH\xf9\xd3\x96\xebcZ\x08%>#\xc7\xcb,\xb2\xfa/^\x15Y\xd7Z\x8b\x1f\xc2(zKf$<\xc7\xcb2\x1f\xb0&\xbd\xa7|\xc8\xa2\xc4\xb2sJ\xdf\xc9^\x15\x1f$\x955{\xe3+\xf5\xdaS\xba\xaf\x1eqk#\xd0\xb5\xab\xf9\xceD\xc4\xd1\x15@/\x19o\x1e\xc6\x81D\xfc\x0d\xa4\xfc\niwyl\xc5F\xdf\xda6LF{h\x8c\x11Vdl\x0b\xb0b\x15`\xe9\x1b\xb3CVO`\xc9\xdc\xaa<>\xa2\x96:zu\xfa7\xb1[\xf3\xc5o>|\x80\xac\xc7\xb0\x11$\xac\xd9n\xa2\xf7Cf\x92\xda_\x0fqj\xa1P\xb7Zz\xe6\x0e\xd4\x08\xb7\xa7Ha\xb31\xf4`\xdf\xa9\xf8\xc4\x8c\xd3\xee\xfc\x98\x0f\xdc7\xcd\xe9\x1e `9\x98\xcf\xc9\xac\x08\xcf\x89\xf8\xd2\x88E\xd0\xfb\xaa}\x92{\xd5\x1d\xb2k\x94|\x92MgW{\x82\x06\x1e5\xb3\x04\x87\xc7\x14\xf4\xf2\xf0g\x0d\n\xe4c\xceo*\x14\x91\xd5|\xc2\x13L\x0d\xd8\xae\xbe\x93\xc8?%\x91\xb1\x9bE\xb1\x8c\xbeA%\xf3\x8d;aa\xd1\x8c\xbd\xd4\xea\x03\x04\xf0&y\xad\xeb0fT 3\xb7k\xda\xa2\x98\x00\xa6o\xe1\x13&p\xeb3\xa0\xe6g[\x8693:C\\!W\xd7\x03\xa7\xdb\xa8\xa7\xb3G\xf6\x8a\x841N\x8e\x905\xf5\x00\x1374\xbe\x0b\x88\xa3\xb4LY\x90`\x83\x8eP\xb7A\xd6S^\x0b\xde\xbd}1\xb1\x0c]7Dg\xa1\x9d\xe1\x8c\xb4\xb5\x17\xdb\xb5d\x8b\xd3\x0c\xd2y5|\xd8\xb4s\xd2Wk\xd89\xf9\xab\xdd\xa9}\xe0\xd5c\x89\x03z\x7f\x0d\xf1\x98\xce\x1a\xda\x06\xd4~\x1bC\xea\xf1\xdb\x95\xc4\xe5\x12\xcd\x11ns\x8e\xe9\xd3\xe2\xe8z\xaf\xf9\xfa\xec\x13\x13\xcfkZ\x8e\xc6\x14V@\x050`\xbf\x06\xa2\x03\xa8\xe2?\x92`B/\xf3\xbd=Hl$\xa6\xfa\xa9\x1c\x86\x1a\xfa\xeb \x9cc\xacH\xb1\x87\x89\xfaq`\xa2\x9fm\x88\x96\xb8}\x93\xe5\xa6\xb5\x05\xb9T\xf1s\xf2\xc3G\xccW\xa2\xcf&\x0e\x86\x83\x83\xb9\x91.\x0c\x9a\x16D\xeb\xf0Q[Ctj\xf4\x88[\xeb\x05\xee\x13\xbb\xce\xf1\xed\xe7&v\x8dtb\xd7H'v\x8dtb\xd7H'v\x8dtb\xd7\x88\x89]\xebQEL\xc0\xaa\x12\xabF\x9f^\xac:\xbb\x8dXU\x12\xac(\xa4\xa7]\xad\xadVy\xdc\x92Z\xdeJy|+\x11\xcf\x9dr?}\xbcM1\xc4)F\x19\xe9\xa3\xa6Q4\xb7\xa5\xeb\xb5\x10\xb2\xa5\x98\x81I\xdbMk\x1f\xa1w\xee1+\xa4p~\xe5\xd8\xed:\x15\xd2\x17\xb0>GI8\x962\x0fE4\xe5a\xf3\xe8\xe3\x9d\xb9\x8b\xdb\x0fYX\x90\xd7qt\xd5\xc0\xbc\xedG\xa7\xabp%\xb0\x1f\x0c\x08\x83\xa1\xb7W\xcc\xc0\x80\x96\xe9\xee\xaa\xd3g\x02\xd9\x85\x1f\x07\x11y\xbd\xea\x88[\xa0;\x14\xd0(\x10\xdf\xfb)O\xe2{\xa1W\x90\xbc\xb0\x0b\x16\xc0^\xb6\x1d\xe0yf`2\xc8\xa6\x00VY\xbe\xf6\xe17m\xaf\xbc\x91vlX\xc1\"9;\x8b\xc8\xf3\xfc \x08\x8b\xaf\x93K0$\x99\x91\x1f\x19\xbf\xb2\xb1\x0f[y\xe9\xdb~\xb9W(F5\x815\x8c'\xc0\xfe2~\xa7\xb6\xc0\x84\x1e\x98\xc7\xa46\x9d\x08W\xf2#\x8fE\xe1|!\x9e\x0e\x82\xd6W\xe5\xa7A\xa3p\xa4\xc3\xea\x14t'w{f\x1bV\xb2\xa9\x80\x15\xf8o\xfa\x08\x05u\xe3\x16\xaa/\xf1\xc1*S\x1d\xf6[\xdd\x02\x02V\xb1\x82\x001\x85\x16\x9e\xe0\xb6\x04\xf5\xdf_~\xa9\x9e\xaa-Ur\\X\x93\x1a\xab\\N\x18\x11\xd8\xf8\xb3\xd2\xeb\x0f@\x0b2d\xae\x8e\xf1o\xbc\xd4\xcf\xc2\xe0]\x1a\xf8\x85.\x08\xc2M\xd7X\xa2\x11\xf8*\xcbo\xb4\xeb\xac\xda\xa5;\x9a\xb2V\x10\x05+\x1e\x86a\xeaxXA%\x0f\x15ie\x88\xb6\"?\x99P\x9f\x0f\x101A\xa5\x9f\x1fx?\x86\x98O\xce\xfa\xba,\n\xb3c#p\xba+\xb3\xad#rY<\xc9\x88\xd2\x15M~JV}\x11\x9e-\xa2\xf0lQ0\xb0\x9a\xf4T\xe1\xee\xab\x97\x9ef\\zz\x13W\xe0\x81\xd2\xd3\x94U\xcc\x0c\xa3@\xf2\xad\x8f\"\x1f\xaa\xf0\xd5SK\x91M\xcer!9\xee\xd9'\xc7\x85s\x13\xa3a-vk\xab\xe7*o^`\x19XS\xbfo\x99fC\xe6%b\x11\xa8\x82R\xf4\xcf\xe9\xc6c\xab|\x13\xf8\x94\xdfqH\x9bX\xb8Rz\xfe\xb4\x15\x01\x15,\x17\xce\xf1_\n\xa2\x06 \x83y8\xbd|\x1e\xacd\x17\x0b\x9ck 3\x12\xe0\xed&\"b\xf6~\xc5\x08\xa2\xfa\xe0\xf5\x7f\xd1q\xae\xe8\x91\xc7\x00\xdb\xbb\xbb\xdc\xbc7~\x9e_$Y\xb0\xf2\xe6\xfd\x11\x9fO\xb1w7\xdb\x0d\xbf,\x12z\xddG\xa4\xa0\xbb\x12\x93\x8b\x8d\x94\xcfu\xc0\xd7\xb1\x08\"8\xf8\x0b\x0ea+|q\xf3\xdd_\xe8\xfdkz\xc2z\x88\xa7\x07\xdd\xe7C\xf6\x85>\x84^\x9e\x83,\xe4\xa1\nf\xda[\xd5\xe0\"\xc8\x8a\x0dF\xf4\xda\x12\x11\xb6\xe4\x94\xf8\x19\xc9\xf8\xbdj\x82\xf7\xdf\xe9\xc6\xc3\xe1\xdd\xea\xca\xbb\xf1u\x87\xd7B\xf0\xd9]u7\xba\xe6\xee\xf6\x8ac\x16\x89\x16.\xcf\xe7\x86\"\x87_m\xab\"\x9c\xbb@6w\x81h\x86#\x99\x01\x08\xc6\xe8\x7fl\xda\xa9a\x08\x81,\xfb\xeb\xd4\x11\xab\x12\x0c\xf6\xfe\xed\xd1\xd1\x1b\xccLK\xe2\x82\xcbR'P\xc6y\x99\xa6IV\x90\x80IR\x08\xa5\x97\xac\xffh\xc1:\xa4\xb0N\x7f\xddN\xfc[\x0f\xaf\x16\x017W8\xed\xb3e\x919\xf6.{\xd1\x002\xb9)c4r\xc6\xab7-\x98\xf4\x1b\xcf\xb4\xab\xccLH_+D\x0b\xb5\x1e\xd5$3c33\xf1e\x95\x82\x92\xaf\x1d\xcf\xe9\xc3\xc4e\xfd\x02$w\xb3\x00\x9d\x99\xa8\xb2\x92\x1b\xb3\xbe\xd1;'O}J\xe3\xd6\xab\xa7\x96\x1e*s\x9d\xd1\x01\x9d\x99\x00\xca\xb4\x9cd\xc8r2Q\xbby9\xd9\xc5=h9\xd9\xeau\x86l\x17\xd5\xec\x15\x06\xb7\xf54\xe5\x15\x87\x9e\x94\xbf\xe2\x11\xa4E\xefT3\x96g\xbe\x17r\xe2\x95\xa7*\x0f\xdbp\xdbK\xd0\x90\xd5\xd0\xa0\x1fL\x15\xe9G\x0d0tM\xb4k\xa9r\xbc\xfa\xf4\x07q\x05LT-\xa7j\xe4\x03\x82\xc8\x19h;\xe5)T\xc7\xa9Q\x07\x8d\xcb\xebxn\xd2\xd5\xe17\x12\x08B\x87\xa0\xba\xbd\xfa\xf2ws\xf6MZY~\xfbp\x03\x85\x82\xde\xaaYGW\xa7\x06 \x96\xf7\x95R>k\xf1\x80$\xa1\xe7\xbc\x8d+u\xe5;pKo\xea\xa2\x11[p\xb8;t\xdb\xa1\xba\x9eT6(\xc2\x9b\xd6\xa3Z4\xa4*U\xef\xfe\x8d\xe2Yw\xe5J\xffhB\x83\xed-\xbd\xd4`\xab\xc3\xd3\x87UQ\xc7\xad\xd9\xaf\x8a\x1e\xe8d\x07\xdb[\x0fu\xd2\x83\xedme\x8ckV\xf4yX\xf2\xc9\xfb\xd9lHX\x8dHym\x9aSyR\x16\x8b\xe7\x05YJ\xb9\xc7\x9b\x15\xea\xec\x0c\x93ZR\xd0\xacR\xa7\xa26\xa6<%3\x1e\xb6\xd0\x9ba?\x98\x90\xeb\xeb\xab\xe7\x01\x89\x8b\xb0\xc0\xa06b\x08\x7f&W\xa8*\xc2\xbe;\x8db`mQ\xf5i\x12\xe7\xe5\x92\xe4?0\x01\xd1JB\xfb\xdea\x17\x8aa\x8b\x0eQX\xe0\xd8Ek\xd0\x9a\xe12_\xcf#\xfft\xd0\x00\x05\n\x97\xd2\xf2\xb1\xbc\x0f\xb0\x8f\xd1\xe0z-%\xea\x0f\xbf\x0f\xf3\x10\x85'k\x9bj*\x8d>\x14FN\xfd\xd9\xfb\xba\xb2:\x1c\x14\xa2QK\xd4^uP\xdd^\x0cCR\xcd\xc00(FO\xab\xd7\xde\xec\xc2\xa5\x98\xbbzT\xca5U\xf6\xa8A\x1f\xf0\xb9j9\xf4\xbb04z\x04\xd3n%\xf1Qv\x95\x94\x05:\x07\xeb+'\xbc2\xf3g\xee\xa9\x1cr\xbd\x99X{}M\x96\xe5\xd2\x8f\xa2\xe4\xe2(\xbbz^\xbc.\x0d\x96P,\x87e\xc1\xeb\x1d\xc4\xfei\xa4\"\xd5\xc4\x83\xf1\x1f\xbc\xb9A\x0b\x12\xad\x10\x0e#\xa8\xebb\x1ag}\xcd\x05\xd6\x1c\x18L\xf6\xbc\xaa\xdc\x1b\x1fv\xc9\xb6`H(\xd9\xb3\xaa\xea\x80!\\UZ\xce\x97\xa8\xc5\xd4\xd7<\xad\x06\xfb\xc6\xa8\x13=a\xdd\x0b\xad\x8e\xbe\xe2\x05\x86e\xaeQf\x8f\xc3\xd8\x01\xab. \xa5?\xd2\xc8%\xfb\x80\x07\x85;BZZ_\xfb\x90\xd5~Z\xa1\xca\x1e\x0f\xb0\xa7\xac\xfe\xdb\xdaM\xbc\xef\x8b\xf7\xb0\x07%\xa5m\x0c>\x7fO(Q\xe5\x859e\xbe\xf4\xb5^\xc3\x1e\x9c0\x16ArS7\xcd\xee\x0d\xec\xc1\xa9\x97G\xe1\x8cP\x9c\xb51rx\x82\xef\xc6\xf7F\xe5\xdf\x8dS\xad\x1a\xb4oZ\xcd\xcd\xc7\xe8\xacO\x05w'}\x0eP\xf5\xdd\xb8\x9f\xd5\x838T>~\x155\xd3\xcc\x1c\xac\xfdX# \x02\xc5l\xc3\x82,\xc1\x82u\x9e}\x8b\xd9\x93v\xae^\n\xf7\x96\x8f\xaa\x1b]2S\xc3\xca\xac\xa0\x13\x1c\xa6\x04\xd5\xf6\xc4#2W>F\xf5ZQv\x86\x1f\xba\x9a\x9er\x0c\xd9x?\xd1~J\x83\xf9h\xdb\xd9\"\xb9\xfe17\xb3F\xedR\xcce\x17\xcd\x9bu-\x1c\x98\x06J\x18\x0d\xa2\x14\x8b\x88\xa7A3\x193=6H1]r 9K\xb3\xf1\xb4\xdd\x02*\xe5\xf5\xaf\x1b\x1e\x10r=\xf4fI\x19\x17\xf6\xad\xceD\x0b\x1c#2\xa0cmg\"7\xcf\xb0\xee$\xc4\xb8zO\x14\xe7W\xa0\xa6\xaf\x96\x0d\xa8\xb3\x18<\xe2Y\x12\xc1,\x89N\xd8\x85\x03\x8d\xdd\x8aN\xd0IK7\x13\xeb\x15\xbap}\x8aq\xc8nO\xda\xe1<\x93}\xa3\x1c\xe3\xb8\x1a\x99\x94\x06\x99P\x82\x8c:%\x9f \xee7\x9fV]\xbd\xf4S/\xcc_\xfa)\xf3\x17R\xd8\x1f\xd2\xe7\xda\x0e\xa5\x8e\x07&o\xd2\xcd\xe7\xa2\xcf\x8fh\x1e\x1bc\x95@G\xcaj\x88ZB\x1fA\xc1O\xe0\x94\xd1\x80}\xd9\x84j\xb6g\x02\x06\xfe\x80>\x99\x7f\x81W\xe6\x04z\xe2T\xa4\xac\xd6\xa2F]?\x84\xc8\x82\xf8\xb5|\xc9\xbe\xc2\xf4%\xc6v\x98\xdb\x94\xec\x94h\xae\xdf\xcc\x04\xd4\xe7\xa3#\x7f!\xa4H\xf2\x97-QV\xff\xbaK\xb2t\x03\x07%jsNo\x02\xe7}\x8b)\xb8\xb7 \xf4\x04\xd7\xaeBEN\xe0\xbd\xb6\xa2.^h#;\x1c\x06\xd8\xbb\x0b,\x7f\x13\xe31m\xc7i}\xdd\xbfJ m\x90o0\x01\xcbj\xdc\x9bm\xb2\xe6\x8e\xee\xad\x8a\"\xab\xef.\xb8\xcbY\x1e\x1a\x07\":\x9f\xf0\xb0\xe2\x98Z\xb2K\xb8\x1a\x0e\x8a\x8c!\x14,c\x1f\xc1y]-\xf5\x13\xdb\xa1\xa4\xe2\xeb:t\xab\x9e9\xb8\x93\x95\xff\x87d/oJ\x0f\xd7\xe0}\x82w=\xa3\xda_\xd7r\x01\x8c7\x80; \xfd\xa9\xbd\x81\xb9$\x03#%\x1a \x83\xa6\x87\xb1\xae\xda\xa5iN\\\xe6y&\xe2\xfb>\xade4\xdc\xff\xe8\xccmk\x8a\xafL + y\xf2 \xf05\x10\xe9\x00\x1c\xef=\xb9\xc2\x1b\xdfH\xa8\xf3\x8b\xa1_\xd8/\x9e\xa5\x97\x93\xe2mg\x06\x03r\x1c\x8bh\xf8fd\x0dm\xdcn\xacmr\x0f\x1e\xc6\xfeI\xd1<\xf9\xd2m\xa0\x06Zw\xcaM@r\x93\x83t\x17\xb8\xf1\xa9\xd1,\xb7Blo\xf4+\xd2\x08\xfc\xf8zP\xbd\xef[\xe0\\\xbd3\x01s\x9d\xf8\xa1/\xf9\xaf|i\xaf\x06\xc1\x03\xdc\xdc\xb5\xa6T\xedG\xa85W\x9be?\x84\x03W0\xcck\xea\xdb\x8e)\x0f\x19C\xe3\n3D\x9d\x12\x0f'\xb5\xe5sY\x0dr\xc0\xa9\x84\xd5h)\xf1\xf0\xc3\x9c\xd0^\x9f\xc7L5\xd4\xfba_\xa4\x90\xc1\x88g\x95 ~Fh\xa7F\x97\xab_\x03Z|t\x03\x8bo\x95\xa5\xf7\xb9\xe8M\x1dD\xb6%\xa9\xe9\xcb\xb5\xd4\x12\x01\xf5Uoi\xb8\xba\xda\xcd\x86\xbe\xac\xab\x92\x95\x94\xdb\x13\x98\xd6!SZ\xf1h\xe9\xaa\x06\x06\x1b\xaf\xf3\xcf\xd0\xa8\xc6e\xa6\x0b\x1d\x03\x16\xcc)\x95\xc1\x1e$H\xecdM\xd3\x91\xccl:\xd2\xf4\x93k\x81\xac_[\xe8\x89W\xab\x98)\x0e4\x94SZ\x83\x85\x83\x84\x9a\xbaZ\\?\xadod\xe9G\xea$\xedyq\x15\x11\x9de)%\xfb\xcf\xb2\xa4\x8c\x83\xa7I\x84\x19\xdc\xff\x7f\x0f\x1e\x9e\xce7\xb7\xbb\xf7t\xeb\xe4\x19\xc6\x92fj\x19\x9dL\"\x9c3\x1bx\xab\xdd\xa8E\x17\xdf\x92O\xfegj\x0d\xd6\x03E\xd9\x10(\xd2\xd8K5\x0dj?\xcf\xe9\x07\xdax\x16\x81\xce\x18.\xd0\x19\xc3\x05:c\xb8@g\x0c\x17\xacf\x0c\x17\xa8\x8d\xe1\x82\xda\x18\xae\xebd\x93r\x0f\x81-\xa5\xb1[\xf0\xe9\x8d\xdd\xcc)\xfe$c7\x15\xed'\x19\xbd(L\xde:\x9e\xc2\x83M\xdbn\x95Q\xf8\xf31\xbf\xe93\xae)jO\xe0\x1es\x11JPO-t\xde\xd98M.\xadc\x03}O!L\xeb%\xcc\xd7i\x8d\xf9M\x88\xe0\xc2\"\xeeX\x9a\x91\x99_\x08i\x80\x1dsI\x8e\\\xc0.\xd7>U\xda0\x86\x8e\xcd\xa7n}\xe3\xc2\xcf\xe20>3\x89\xffE\xdd\x89uW|e\xec\xfd\x94\x84\xb1m\x81^\xe8\x91\xe8{J\xbd\x97t\x16\x1d\xfa\xf3\x97kW\x86\x01\xc3Pd\xb9\xb9\xc9\xb6\x88\xa4\x94#5d\x0b#\x97\xa9\x1f\x07\xcfX\xbd\xbaoOzO\xcf\x9b:\x01\xd4\xcd\x1c!\xfb\x1c \x19_\xa6\xbf\xb3\x16\x9f\xe75\xf4\xef\x0e\x1a\x9f\xad\x83\x86\xc15C\xaf\xa8\x890\x91c\x97\x89\x02~\x93\x87\xde<\xc9\x96\xbe\xa2_\xee\x92\xc1\x03\x9a\xab\xfd1\x84K\xd7\xda\xde\x1eD\x18\xd9\xfb4\x8c\xfd\xec\x8a\xbd\xc1\xecB\xd6\xa9\x9f\x93\xddm\xf1F\xef\xa9\xc1@_\xef\xd2\xa0\xf4\xe4\xe0\x01\x12\xe7\xa12\xdd\x90\x84\xeaJ\x1eS\n\xf6\xc1\n\xe3s?\n\x03\x8b\xc9\xe0\xbbm\x86E\xd4\xfc\xa2\xd4\xd4\\E$\x9a\xdbU\xcaK:\xda|\xba\xa9\x08\xd2\xaf\x90\x07\x04a\xce\xd9\xdc\xc2\x0b\xf3g\xfc\xaf\xe6a\xf8\xcch{\xb7\xca\xbd\xdfL\xef\x0duR~\xe1\xe8\x9e+\xde\xd5u3\x92\xa7I\x9c\x13I\xea\x01R\xa6\\\xcd\xebJ\xde\xc3\xdbnEN\xd2\xb9\xcb\xc6\xf6}\x05\xd6\xd3\"\xb7P\x8b\xdc\x8c\x84R\x15\xf0\xacP\x06<\x8b\xab\x80g\x94\x88\xccX\xc0\xb3\x0c\xbe\x82\xe2\x11d\xeb\xeb\x0e\xc4\xd3\xac\x19\xf0,\xd3\x07<\xab\x15\xf0&\x92\xadJzwx\x95\x17di;M\xdb\\\xfc\xeb\xbb\x9cN\xc7HW1Z\x96\xd9e:v\xc6r\xbf2j\x96\xad8?\xde\x0d^L<\xad\xdb\xf6\x0f\xdd_\x8a\x8d\x0c\xcd\xd1J\x854\xb6\x80}\xc0\xd4\x18\xcd\x06\xacc`\x81t\x9b/\x95x\x0e)\xd5\xe7\xb1\x1d\xf3\xec\x05-XW\xc0]kl\n\x03\x88V\xd3Sag\xfa\xcc/|\x8b}\xe22\x85\x03\xcbZr\x8c}\xb78YWw\x18\xee\xaa\xffn\xe3\xa6\x81\xa8N\xeb\xdd\x8d\xa4\xd3\xba~(j\x84\xd2?\x14q\x1eT\xae\xcc\x98\xb8\xa1\xbe\xf0\x84\x0f\xb3\xd6\xc9:\x91P\x9b\x9are~\x00Ul*\xc59\xc6\x80\xa2\xfb0\x0d\x11|;s\xc2\x98\xcf.\xc4\x02\x94\xf5\x15\x9a\xe7\x0bH\x94\x13\x15S\x8b\xbc\x96\xa6\x9d\xa2\xdb\x8ei\x1b\xb3a{\x93\x0f?\xc8\x9f\xc9\xa6\xc4C6\xc5\xbc#\x03\xb7#6n\xc7\n{\x11W\xaa\xb4\xcc{\x9dq\x17\xf5\xd4\xb1\x1d\xe5\xd6t.\xed!\xfb\xe3Br\xbb\x9d {w\xc6\xef\xdb\x99\x84\xc5\xddeq>\xf7k\x84\xe2\x9b6\x8a%#\x17\xa8G_M\xb5e\x08Mn\x9d\x82\xa8\xa7\x89G\x9de\xa3\xb4}\xa2\xbcrl\xdah\xac\xd9\xb6\x81\xb1\xbai\xeb\xa5\x97\x914\xf2g\xc4\x8e\xc9\x05\xbc%g\x07\x97\xa9m\xfdb\xc1:`D\xc6k\xcb\x05\xeb\xccr:*9\n\x11\xa5\x04\x1f\xf8\xf3\xf7\xa5+\x95\xca\x8e\xd2\x8e\xedqG\n\x1a\xf2\x92Q'4\x0fSX\x8c\xb7v\x95T]\xf9;\xb2\xac\x14\xfb\xfer\xed\xb6\xa5\x82\x99\x0b\xbe\xf7\xee\xcd\xb3'G\x07'\x87\x07/\x0e\x9e\x1e\x1d<;9}\xfd\xea\xe8\xe0\xd5\xd1\xc9\xd1\xdf\xde\xfc\xfbZ\xaa\x88\xe0\xd5\x16\xf5\xf0\xcd\xebW\x87\x07\xbf\xcf\xaa\xeadR\xaa\x98\xac=\xeb\x91\xb8\x10\xeaH\xf1U\x16\x84a\xaf\x93\xef\x9f\xbc}\xfe\xe4\xeb\x17\x07w{du$\xc4 \x0c\x16{\xef\x89\xc2\xa8\xc5\x17K\xad\x069 \xef)\xef\xfe\xcc\x85\xd0H\x11b\x05\xe3V\x94.\xf8\xcd\xf5\xcdnq%\xd72\x8fQ[\xbd\x97\xf0\xd7;\x0f\xa4\xfb6\xa1\xcb\x82y\xf4\x92\xec\xc0\x9f-l\xbdh\x01\xe9>\xef^\x18\x07\xe4\xd2\xfb)gr?-\xd5Gw4\xb1U1\"\x88G.\xd3$+\xf2)#\x80R?\x9f\xf9\xd1S?'\xdf\x84\x11\xa1\xdb\xe8\xd8\x85s\x8c\x1b#.\xd1}\xe9w\xdbAH\xba~\x07-\\loo\xefR\xb2H\x8c\x03\xd7eg\xb43\xe8k\xc3\xb2\x0b\x1b\x8d\xad\xb1L\xd0\xd4\x11\xbd\xecU\x0c5*Z#\x93\xa6W P\xdfd\xc92\xcc\x91r\x89\xed\xed\x9d\xfb\x8e\x0b\x87H\x91\xd7\xa65^^\xf8Y\x91\xff\x102\x0dIlo?\xd8\x1d4\xc3\xd8~8FM\xef\xc3\x07\x9dU\xda\xde\x19\xd6F\x1fpno?TB\xe7\xf6\x8e\xca\xc0%\xb6\xef\xb7_3b\xef\xfeHZ\xe9\xe6H\xc7[\xf7\x1d\x1b\x05n.X\xf8\xaf\xd5\x83\x87P\xbbt\x82\xd2;\x9b\x08'\xb3\x13\xda\xff\xa6\xf8\xe3=ES\xf5~\x18\x92x4T\xa6'\n!|\x15\xac\xe0Da\xd7\x18W\x85\xe1\xfa\xba\x12{\xac\x11\xdcTxL\x19\x94J\x9cm\xd7s\x10\xa2\xb9\xc4\x1e\xa1MzB\x0f\x9bE\x0f;\x8b\xd3\xc6\x8d\x0cYZ\xd9\xfa\x1d\x992\x99C\xec\xe2O\x89;\xbav\xab\xcah]\xf3D\x08*Q\xd7\xc0W:\xb3Y\x17\x0e\xfe\xac\xabg\xb6E\xe2\"\x0b\x890\x9co\xc3\x8f\xbc~\xf2F\xca\x0b\xac\x8e\xd0\xd8\xfb\xa5j\xaf\xf9*\xaaP\x17\x8b\xb9\xda\xdd\x93 \x89)\xdb\xb2f\xa6\xfdoy.F;\xeas\xf1\xb0\x1d\x95\x91\x1d\x8b\x87m\xc1\xb6\x8f\x9c\xc6#\xe9,\xeflb4\xf3\xd8\x1e=tl+,H\xe6\x17\x98CV\x0f\xbb|q(,\xd5\xb3k\xa1\x82>y\x1b\xa9\x11\x11\xc6\xef\xf6U:\x9e\x98\\\x16\x142Gn;u\x00\xed.\xc4\xb6)+\x0b\xcf\xaba\xaf\xb6\xdc\x12\xc2Q\xdf\x86[\xbb\xeau\xdd\xd5\xe2\x95\xedm\x07\xf6\x95\x9coHr\xe81@N\xecv\xa2\xa1Jk\x10\xbb\xb8y!\xaa\x07\x90\xda\xadT\x079S\x16\x94\xf0\x18\xf2G\x0ed\xde\xdc&\\\x182\xcd\xd7\xd7\x8f](\xa6q[\x08!\xa8\x8c\x9b.\xd8\xfd\x91\x9a|\x18\xa9!q{g[\xb3duw\x1a8\xab)\x0e\x96wFGQ\x94l%\xf4q-#$9\x84\xcaES U\xa3\x14\x1c#\x05iBI\x1cv\xa9\xc2\xda\x9e\xde\xb5\x117\xed\x11D\xf0\x18f\x8f\xf46\xc0\xb45\x9bne>\x9d\xad\xaf\x1f;\xb4\xcd\xd2\xa9\xcdU:\x1f2\xe1S\x7f\x970[_\xef\xe9\x16\xaf\x87\x19\x841\xe4Ho\xe4\xd3\xd91\x0b+\xea\xd4r\x0f\xac\xf2\xe1\x03j\xa2\xaak\xe5\xcb/a\xa3\x19\xbbhE\x1c'a\xb3]\xd5\xa9{\xe9\x17\x0bo\xe9_v\xc1\x88\x95\x84q\x1f \xe9\x11\xba\xcd\xb0\x0dq\x1c\xf8\n6a\x9f\x9e8X\xa7C\xdc\xa4\x97 C)7F\"\xea\xf9P\xac\xbds'\xc0\xaf\x83\xfc\x10\x83\xb8SHbD\x9eM k\x0d|\xb3#\xa2\xf3k\x8dPp\xc8\x0e\x88B+\xc1\xc6\x94\xe3\xda}\xf8\x009%/\"\x14\x87\xf1X\xb4\x9c\x9a\x9d\x80\x8dr8o\xb6\xf0\xb3\xa7I@\x9e\x14v\x8ek\xbe\xb33~\xb8K\xbf\x0d\xe11\xec\xecn\x8d\x1e\xb2\x86\xd6a\x84\xe0\x87\xb6\x04\xb6\xdf\xf9\x98V`\x0d\xecn\x8d\xb1s\x9f6p\x7fk{\x8b\xf7\xcf\xeacGt'a\xc2\xdf2/\xbd\xdc\xc5N\xc6\xb4\xcc\x87\x0d\xde\xcc:\x1d\xe7\x06\x1f\xd4W_\xc1h\xd3\x81u\xd8\xdd\xd9\xd9\xda\xbd\x1b\x08\xef\xdc\x1f\x1c vu\xd8\x90\x02\x8b\x83\x12e~\xa5\x0d\x8a*\xdc\xbd7\x90\x19\x13\x1f\xb6\xc4\xf0\xc5\"K.\x802\xef\x98%\x1dO\x80\x05a\x0eqR\x00R\x00\xa7\x11Y\xd3X~dv\xc1\xa2\xf0\x11g\xc5sB/\x81\x07\xc88\x8c\xb7\xb7\xf1\xdf\xed\xdd\x87\xec\xdf\xfb[\xec\xdf\x07\xfc\xfd\x83\x9d\x0eg\xb1\xbb\xe9\x08\xaefHg\xbd\x84\xd4\xaejgd\xd2(\x99\xc6\xf6\xe8\xbec[E\xc2N\xd5\x91\x7ff!\xdbi\xfdlQVn\x9d\x82\xfc\xda\x1eX\xd3\x04o{\xf8\xf9\xd8b\x0c\xd7\xfd-\xc7\xe6\x14@\xed\xc9\x00UCV?mU\xb5\x89\xe9j\x90l\xa7\x90i\x1dK\x1ah\x0c\xa94d-\xe4\x85\\\xa3\x1c\xfe\xa6\xc32\xac\xd8\xa3\xcdQ\xbf\x0d\xf5}:I\xb5(\x9f\xae\xe3\x03\x87Y\x1e:.X\xbe\xd2\xfe\x10\x83ik{i\xf7\xd6)l\x99\x088\x9e_\xaf\xc1\xa0\xf9KDK?\x11\xa2\xb8;0)\x0d\xbb4\xc4\xd5\xf8\xa8s\x0c\xd5z0Le#\x9d\xc3*\x02\xb6\xcdTG\x02$\xd8\x86d6\x13U\x89\xf3U\xf5\xa7\xd2\xb0\xe9\x1bE\x1e\xe5\xf5|\xf56\xd7>\xcep\xdb\xf8\xc6z\xea\xc7\xff\xb1\x80Y\x12\x9f\x93\xac\x00\x0e\xe9E\x02i\x16.\xc3\"<'\x8c\xcdZ\x95\x9a\xef;\xf3\xdb\xbbm\xc91\xc3\xc6\xe3\xed-%\xcd:RJ\x15Z\xec\xd3\x03\xc1>\xdd\xff\xef\x99}\xd2\xb0\xa5\xdb\xbb\xea\x95\x1dw\xc48>\xc7\xca\x94 }~p\xf2\xe6\xed\xeb\xa3\xd7\xed\x80\x15e\x9b\xdfo\x16\xb7\xc5\x01\x9d\xf58g\xb9+\x0b\xde\x15E\\\xe1<3D\xc6@+\x0c-5\x84$w\xe1\xa1S\x90\x17\x84y\x1a\xf9W\xf4v\x88\x93\x18\xf3E\xdb\xe3\x9d\x11\x9a\xf5\x938x\xba\x08\xa3\x00Y\xb7\xc2\xcb3\xcacX?\xf9\xe7>\xf3\xe9\x9dXU\x16J\xee\xfb\xf7C\x18\x07\xc9\x85\x17$3\x14\xa18^\x92\x92\xd8F\x18\xb9\xc8\xc2\x82\xd8\xd6W\xec\xd3\xc7\xa2\x8a\xf7\xcd\x1eC\xd1_\xfdx\x8f\x17\xa1j\xd7\x9bEI\x8e\xe9\x0ds<\xc1\xdf<\x82lc\xe3\x91\x03\x01\x89HA \xaf\x01i\x1aN\xb3c\xbdMYn\xb7`H\x8dI\xf9E\xc1,8)\x9dfD\xad\x889\x95tF\\F\x11J\x90)\x15g\x97-x'\x0ecpcrA\xf9\xbef1s\xff\x8aYZ^\x82\xa6g\x98\xd5\xc2qei\xab\x90p%v|+\x9a\x7f\xa46\x1e\xec\x9c\x08\x0e\xf9\xdb\x0f\xf4\x94\x1f\xbd\x98\xff{\x90\x1d\x8cF\x0f\xd4d\xf1\xb8\x8d\xa0\xb9\xf0`w\xd7\xb1\xd7\xda\x02\x075\xca\xb8\xc1\xfd\xce\x97\xa8\xe4\x84t\x17\x17\xe0\"u_Sfiz\xacX\xf3\x98\xf2\xd5\xa5\xc3\xa4\x04>\x8a\xf31%<^\x9b\x91\x88,\xa4\xf8\xf0\x11\x14BX\xcb\xf7\x03\xbf\xa3\xa8\x01w\x83\xb9\xa8\xfc\xa7\xd0\x8e\xb0\xb5\x0f\x1f\xea\xd6\xd4[\x14\xddt\x8b\x1e>\xd4\xac$\x83N\xdb\xfa\xd9r\xd0\xd5\x82\xd2\x81\xcf\xf3\x83\xb8\\2\xbe\xc1\x96`\x18L\xe6\xd1\x82\xd2=\xac\x93\x83\xd0s\x8d\xe6;y\x1a\x85\x85ma\x8e}\xde!\xb9\xf9 \xed@\x95\xd0ti.\xa7m\xdd\xdc{'\xd3\xe0\xd6\xff]T\xf5\xdf\x92\xa8J\x83\xb2\xb6w\xdb\xef\xc3\x01\x94\x8c__\x94\xd5\xc5e\xbcN\xcfH\xf1FT|=o^\xab\x1aX$\x02\x9d\x01fp\x0e\xf1dMQ\x1b\xad\xa2\xf0)\xa9\x90\xc4y\x91\x95\xb3\"\xc9\xd0\xe4 \xc28/\xfcx\xd6-\xddo\xfe-\xdd\xbe\x93\xe6g\x1c\x0f\xec\x83\xdf6\x00_q\xfdw\xb6nz&9\xfe\xc8V\x17XT\xf7'g\x1f(;P\xb1\x0c\x0f( \xcd\x98\xca-\xc7\x15\xde\xf0[\xfc\x82E\xc6\x80'\x8f\xb5G\x9bc\xc7\xe5>\xb5\x94Z\xc0\x83\x1b\xb5\xb8\x05\xf6\xaa!kp\xd1s6\x17\xba\xb3\xa0\x13m\xe1\xe9\xe1\xe1\xdb2\"/\xc2\\\x11\xec\xe0\xe9\xe1\xe1!%M\x9f\x91Y\xe4\xb3x\xd3\xdd\x80 O\x0f\x0f\xd1\x14\x817\xd1.\x8dB\x12\x17o\xc9\xacP\x97?{\xfd\xd2X\xc8\xe6\xa2->J\xde\x93X=\xf8g~\xe1\x1fe~\x9c\xcfI\xf6\xbc Ku\x1b\xdf\x84\x91f\xe4\xdf\x1e\xbd|\xf1$\x8a\x9e&Q\xc4\"P\xa9\xab\xf4\x95\x7f\x93dK\xee\x85\xa4\xae\xc0\x9c%\xb4U^\x92 \xf4\xd53|\x19. e\x89qs\xbb_\xbe\xf2\x97$x\x95\x04\xe4\xa5\x9f*J\x93@\xb3\xebo\xfc0\x16\xe1O\xd4K\xf3&*\xcfB\xc5|\xd9{\xcdp\x0e\xbf\xff\xd3\x0b\xbc\x8a\xd4m\x1e~\xff\xa7W\xe5\xf2\x94d\xda\xe27\x98%X\x03\x0b\xb4< c\xcd\x80\x0f\xbf\xff\x93 \x90\x0e\xbf\xff\x13\x83\x94$\xd3\x80\xc9!f\\\xfb\xba\x9c\xcf\xb5\x03\xa4\x07\xe5pAH\xa1^\xd5#rY\x1ce\xfe\xec\xfdS\xddQ\xa9jh\x8a\x93rV\xad]Ur\xed\xa2+zb\x07\x945a\x94\xf89|\x05\x0b\xc1s\xc2\xf9\xfa\xba\x8aZ]\xba\x18\xc9~1=W\x18\xbcQ&4\x98\x9e)JN\x91\xacW\x95\x9c\xc0\x1e\x9cR\xa4\x7f\xaa\xba\x90\x80_\xc5'H~\x9e\xd0\xfb\xf7\xc3\x07(\xed\x13\x17f.\xa4\x8e\x0b'\xd3y\xfdn\xee\xc2\x19E~\xd33\xca\x80\xa5.\xa8\xe2\xd2 r]\xd2[=s\xe0d\xba\xc4\xcfC\xfa\xf9\xd2\x85l\xba<\xae\xc5\x9b0\x14a\xf7\n\x804J\xcb\xed\xfbj\xbe\x03\x11w\xe3\xbd_Q\x94:&n\xbc\xbd\xfb\xefv%\xff8v%z\x82\xef\xbec[e\x9c\xcf\x92\x14\xbdU\xda$\\\"\xfc\xf5T\x07\xa6\x123@2\xcd\x8e\x99R`\xe7\x01\x1a\xaff.\xfc\xa2\x97\xf6u\x98\xfaiv<%\xf4\x18\xc9\xf6\xf0\xca\x99\xe8$\xfeF\xd8\xfb\x0c\xed\\\x84\xb1\xa9/(\xa9\xf1v[\xc2\x92W\xc4V\xe35\xa7\xb0\xc6\xaa\xb8%*\x8d\xcf\x9c5\xdf\x16\xd4\xb0p%\xf7\xb7[\xaf\x03\xdez\x1b\x85,8\ni\xd7?\xe7\xef\xdb\xf6\x10K\xd6\xebN\x1b\xb5\x9c\xf1\xf7[\x8e\x97\x93\xd6\xba_\xb1\xb6\x1elvb\xe1\x9dr`m\x8f\xea\x84\xb7\xd6\x1e\xd5\x05\x7f\xdf\x1e\xd5\x01R\x9a\x95\x8c\xbeYx\x89\x85i\x96\xccH\xde\xf2D?\xc4\"\xae\x98k\x16=\x85=\xb0\xf8Gx\xceg\xf6e\xab\xd7\xf7f\x89\xee\x13\xb4\xb0\xdd\x83So\xde,xM\x0f\xc4\x9aY\xda[dW\x1a\x9eW\xe0\xc8C/#y\x12\x9d\x13\xbb\xbdz\xf2\x83\x1e\x1aM\xf6g\x8f\x1ea\xa1\x1e\xccS2C\xfcr<(\x1b\x96x\x88\xfd\xde\x85\xf7z\xd6\xf7\xba\xcb\xd2\x83d\xc7\xf0\x14\xfdQU|\x1c\xdf\x8b\xb7\xe4'F\xd9\x1e\x9c\x93\xb8p\x98\x0fK\xb1 \xb1\xfd\xde\x919\xb4\xa2\xd3\xcd5\xcc\xfcb\xb6\x00\x9cCK\xf9\xd6\x06\xbf7\xbdsF\x15\xb5V\xa8\xbcf\xaf\xa5\xf4\xbb\xe6d*m\xb5\xcd\xe21\xd0a;8\x85\xe6h[\xe0r\xd4\x87\xed@\xe8\xb9\x88w\xa2\x95\x88\xd02\xc4\xb7\xea\x0d8\xe7\xb6\xcb\xc4;\x99\xa9k\\\xe95\xaa\xf2\xd3\xe0.\x89wr\xcex\xcb\x11`\x8c\x9a\x93\x9c\xb1\x97\x9b\x8c\xb5\xac\x05K}p\xc5\x85\x995\x02M`\x1f\n/y\x0f\x13(\xbc\xb9\x1f\xf6\x84@\x87*A\x14?\x1c\xfd\xd5#^\x9d\x02\\\x7fm\x9649H\x96~\x18\xab\x17P<\xfa\x13,?%\xa5?\x124\x1b\x19\xf3\xb5[PP\xf9 \x89)\xfck\x0fF\x8e+\xe2\xff\x94H\x81\xec\xa1I\xb5\x8d\x81*f\x1e\x89\x0b\x92\xd9\\\xa7P\xda\x19\xf2\xe8\x98\xa1\xd8#\x97aas\x06\x7fm\xd3au\xf6\xd0\x1b\x81\xdbX\xefCd\x1f\xd8\x16?w\x1b\xb3\x85\x1f\xc60\xbb\x9aE\xc4B\n\x08Ma\xde\xd8\x14\x82\xf7!d\xda\xd2\x18\xfdK\"Z\x9cc\xc9\x04\"[\x91\x1dP~\x1a\xe7\xb2wYp\xfck>\x9f\x1f\x9fDd\xf7\x84\xdf\xbc6\xe0#\x88k\xd9t\xf8\xc8\x01\xdf\x8e\xa7\xe1\xfaz[9 ?\xf4\x90\xa0\x90\xdc\xad\x8e\xd5\xc8\x05\xd42\xaf\x89}z\xa9\x1b\x93\"z\xe6\xb5\xe9\xf8\xbf\xec\xc5Egl\xf1s\x03\xfd,\x1eD[(\xc4\xe5f\xfbxB\xb5\x13\xa5[\xfc\xbc\xa3\x80\xa9J\xe7\x14\x08(|\xc0C\xe0\xf0\xa3c\xea\xed\xa7\xde\xdeV\x85_54\xca\x80U-\xfa\xb7l7,\x01S\x05\x87\xa9\xaa\x02\xdf.v\x0b\x9b\x92u\x0e\x00'\x01J\xf4L\x0d>\xfa\xc6\x9dz\xd5\xbbv\xc2T\x8er\xaa\xddu)\xbc\x93\x00\xaf\x10\xfcA1\xbd\xcb\xd6\xa0\xf0N.hA\xe1x'\x94\xa2\xa7d\x85wB/\xc81\xfe\xf2\xc5W\xccG\xfdd\xc6\xed\x0d\xe9Eqd\x17(\xc40\x8e\xfc\xed\xb0\x91\xbb\x15o\xaeV\xf5\xac\xc5\xdeI\xa0\x03\x86\xb8\x9e\x14*\xcd\xf9\x9c4\xd7\xaf\xf9\xda\xa5\x9d\xb1\x1b\xb0:X\xf5\xe5\x073\xb4\xec9\xa5\xa7\x19\x89\x87\x00\xc2\"'\xd1\\\x97?\x8f>\xb8\xceo\xd0\xbcj\x7f(\xf1\x04\x12\xaf\xde\x7f\x17\x9e\\L\xc0\x90l\xb1\xaa\x16h\xd3\xb2\x8aGC\x95\x8bg\x18\xc5\"\x0c(\xe9}\xfc\x16/\x98\x11\xde\xcd\xaf\xf8\xef\xbb$\x03^\xb1\xbe\xb2\xde\xc0\xdb\x86\x9b\xdf\xa1wL\x05\xfe1\x03\xff\x11\x85\xef\xd8\x855\xddx\x87\x8d\x93\x8f\xcf<\x91\x01\xfb\xd7\xb3w\xd7\xda\xf9w\xe7\xdd\"2\xea\x1d\x7f\x8dg\xfd\xd0x`\x17<\x82\xe7\xa1\x0b\xe2PX.X'\x0b\xcbq1\xd4\xa9\x0bY\x9d\xc5\xbau*\xd4\xe0Cl\x04\x13\xd6n\x05)\xe2\xcf\x16r1.\xfa\xabf\xfe\xec\xe6\x97\xd5_\xd7.\xbb\xc4\xf5\x93d\xd2>A\xd9\xb1\xbf\xe4\x9b\x97\xbd\xc9e f h?\xfc\xeb\xbcSy!Wf\x84b= \xa7i\xdeco?\x189\xf6\xa1l[\xdb\x1e\x1f\x89\x07\x84\xfa\x17\xac\xdc\x13{)v\xcd\x9cS\xfc=\xec)\xd9T\xa6\x7f\xc6\xb3A\x19\xacf\xad\x9a3G\xba\x97br\xce\xfd \x19C\xefb\xfe\xe7\xa4\xb5&\xb3*\x07U\xb5\xc6\"Y\xcc\x89\xdf.\xcbi\xd9\x11\x9f\xc7\x1a\x05\x93Xp(\xcd}n\x9e#\x04\x97\xbe(v\x92\xc5\"\x13!\x88q\xeaa\x88kG{\xe5\xd41\xb9\x80\xecQ\x17\xba\x04U\xc8n\\\xfa\x86\xdf(\xa8'}\x8b \xd5GNU\x84Z\xe6=v2\xb0D\x86\xe6SoNwy\x88\xb2\x98\xe0\xcdv\x88\xdb\x89?}JA\x93\x0b\x16\xf4m\x82\n\xf5\xc6$\xe7\xf6\xdc\xfb\x13\xac\xc3\xdc\xfb\x01\xff\xff\x0d\xfc\x11\xd6^\xb7\x01\xf2\x8d \x8a\x0e\x1b\x1f3\x13S[\xc6\x15\xdc\xfe}\xec\xd8\xf2+\xa6v\x90L\xe0Y\xc7\x87\x8d.%|\xd3\x9e\x1b]\x9e\xbeM\x16\x04\xd2\x13\x15f\x02I\xf4\xb4\xe9V\xdc\xbe\xc3\x14\x16j@\xeb\xacS=\\\xbb\xa4+\xbc\xf6\xda1\x8e\x1a\xf7\xbbo\xd8|T\x17v)\x0eG\xb5o\x870\x81>\\\xd7\x19\xda\x9a\xfd\x9a\xc9\xeb\xb7\x1fl\x99\xa2\x85\x1ez\xcc\xea\xd9\xc3\x13d\xbf\x97\xc1\xc24-?\x8a\xfa\xa6$\x93\xaa\xea[\x8fa-\x9d\xf1\x10\x8b\x86`\x14\xdf$\xbc\x8a^d\x13\x0e\xe7T\x05\x1e\x9d\x1a\"4\x03o\xd2\x90$\x1f\xb8~m\xa4\xa7\xb1\xce).\xa7\xd7\xc8p9\xeb9\x0f\xb6\x14\xae\xaf\xf7S\x80\xe8!a\xe8\x1f\x90\x98F\xcc\xcbP =\x9b\xeb\xebn--\xa3\x10\x81(r\xf8\x08\x01;\xa6\xa4E.\x88\xf4iy\xcc0\xdf\xc6\x062\x18\x99\x1d\xf7Q\x85Z\xa6\x198\x98KM)\xeb]\xeb\x8f|\xe8\xa1-Ub\x87\xde\xf9\xd0\x8b%\xf3g\xbdg\xf7\xae\x00]\x0f\xc5\xc9\nP\xbc:luw\xbd>v`\x90\xe6i\x93\x08jw a;\x90\xd9\x89i\x07$\x14\x84?o\xa4\"dB\xaf\xf6\xd4\x91\xc7\xb4\x1b\xb6]\x05\x8a\xed\xb9\xaasmo\x0f\x98\x84\x07\xc2\xb8f\x0dk\xa7\x8f\x18\xd6\xc1\x9a@\x18\xcf\x92,\xa3\xb7u\x18\x9f'34K\xd2\xb9\x9a\xdd\xdc\xbe\xb8\xa3\x02\x14z~\xb5;\xf7\xf6}\x95\x9f\xbc\xc2\x86\xbb\xe4f\x01m\xcdc\xce\x9bi\xdb\x02F,\xb0W\xe3\xdd\xac\xe5C\xc2u\x1c\xa6\xdd\x98\xbb\x90\xaa\x08\xa8\xc0\x85\x85\x0b\xe7\xae\xb0\x07Ia\xbf_2\xd4Y\\\xf1\\\xa30Ze\xff|\xc5|Fq E-p\xeb\xd4;E\x13\x96\x0e\xdc(I\xe6\xb3\x9b\xfa!\xa20\xd5>sT\xf3C\x9dJ\x802|a\x9d\xe0<\x82\x00\x1e\xc3\xe9#8\xd5Y\x9a\xa2\x95\xe9\x92\x07\x8c\xbd\xb2}\x9b2#dzz\xecL7\x8f]XLG\x18+\xf0\xca\xc6wN\xed\xa7\xba\xc4\x9f\xb3\xca\x0cu\xd9<\x8ej\x13X\xa6\xf7\xc1da\xdcq\xea\x11\xaca\x97\xe7^L.\x0b\xdbq\xbc \x89\x89\xc6\x1a\xb7\x1alb\x9f\xbbp\xe5\xc2\x82\x07\x82\x82b\xd8\xd0\xae\x1d\xef\xeb\xb7\x07O\xfeL\xc9ezq\xbd=8z\xf7\xf6\x15\xec\xc1l\xb5C\xb6\xd3o%-\xe07\xe90\x90JFW\xe0:\xd8\x87\xc2\xa6\xf7\x14.\x7f\xcc\x97\xbfh_\\\x15\xafk\x8c,I<\xd6\xacB\xe6\x87\xe0'\xe1\xaf\x90\xa1\xd8\xb0rhs\xdb\xfa\xc6?4\x7f\x0d^\xab\xae!QR\x1b\x99Hf\xa0M@7Y\x98\x0c3\x1f\xe1+*\xcd\x11\xaf\x11;cv3L\x8c\x87\x86W\xd3\xe4\x98\x0b\xf5n&:\x8d\x1c/a\x98\xc3NuY\xa1f\x0b?\xf3g\x05\xc9\x9e\xf9\x85?Q\xba\x94q\xfb\x9c\xde\x85H\xbd\xc0/\xd0j\x8aNe\xde\x03\xdfJ$\\\xf5\xa1\x9a\x85'\xde\xdc.\xd0TOA\xf0a\x82\xb4\x12\xb9\xe0\xaeK\n\xac\x1aX\xa5\x90\xe3M\x88\xa7u\x14nLo\x18\x89\xfc\xa4%U\xed\xde\x7f\x82Y\x9b\xde?\x9ef\xc7m,\x1br\x16\xae\xef\xec'M3y`\x13`,\xd4\xac\xd3q H\x04\xe3\xaaB:\x1d\x1c\xc5\xd3\x12t\xfc\x01\xb8\xf3C#t\\fg\xde\x1bX\x87\xcc{kP1\xcd\xc3\xd8\x8f\xa2\xab\xa1\xd2w\x9f+\x8d\x93*j0\xe5\x88\xc5\x1f\x1a\xd1{\xacSr\xab\x92\xd9\xb4\xd5\xc7\xb1,\xa7\xd4\x1ab\xf3\xcfJ\xcchj;m\xbd\x8a\x89\xcc\xeal\xb4\xfc\xa8\x8c\xcb(\xebF\xa9\x8b\x8f<.\x86`V\x1b\x96^u\xf9\x11\x81\xb7\xebP\"\x02\xf7l\xb7\xc0\xf1\xd0\x00\x88E6\x18\x08\xf1\"\\\x84\xb9\x01\xdcB\xa5}\xad\xd0J\xc7\x1eACwn\x0b0\xa9\x953\x8e\x1d\xa3\xd2\xa4_M=dAc{\xfb\xc1}\xae\xa5\x7f\xc0\xff}\xd8\x8cj\xc7\xc3co?\xe4Q\xed\x1e\x8a\xf7;\xfc_\xfe\xfdC\xfe\xfdC\xf6\xfd\x0e%G\xf0\xdf\x11\xffw\xcc\xff\xdd\xe2\xffn\xf3\x7fw\xf8\xbf\xbb\xfc\xdf\xfb\xfc\xdf\x07\xfc_\xde\xde\x88\xb77\xe2\xed\x8dx{#\xde\xdeh[\x19e\x8f9\xdb\x0eY\x8b^0\x1aw\xc2x\x87U\x90J\xbc\x92\x9f\xf2\x10\x8f]\x94(WJ\x02\x82\xfe\xc1-\xc8CD\x88\xe6\x04k\xcc\xd0}\x84\xf1V\xaa\xa0\x19Ul\x91\x0e\x82\x94\x1b\xed\x83\xd0:o\x9f+\xb4\xdc8\xe9n\n?_$\xed{\x0c\xbeVL\xc0\xa2\xc2\xed\xc1z\x9d\xc8\xcf\xc78; \xc5'\xa3\xd1h{4\x1a9\"v>C\x18o\xfd\xf8\x8c\xebH\nYG\xe2\x03\xa6\xb3\x84Y\x12\x10H\xe9dtv\x96\\i]\xc0W,\xba%\xecc4 \x0cy\xca\xa2_\xae\x83m\x17\xb0\xb1\xc7\xca\x1dx\xfc\x18\x10~\n\xf8\x0f0\xda\x1co\xc3:\x8b\x99\xd9\x9b1\x17$\xfc\xcb\xb3\x0c[\xb7\xc3a\xbd`\xa6\x8b\x1b4\xda\xdcR`+\x0dPd\xfe\xc5pP`\xb15\xbc\xcc\xbf\xe0LiX\xcbnM\xe0A\x81\xa7d`\x12\xc3c(\x1f9\xc0-\xb9x\xe4\xd6bZ\xae\xaf\x1f;\x18F\xe2+&kiV\xa8\xc1\xa6<6X\xab\xf9w\xb3\xf4\xea\xeb\x83\xe2\xacM\xc7\xb6\x8a,\\Z&\x85y\x9b\x9bV-\xaa`\x059\x15\xb2u\xbb\x01\xf7\xc2\xca\x8e&\xd6\xdf\xa6:\xbc\xd4\xf6\xc3\xf6{\xba}\xd6\xd4\x82u\xf0YD\xce\xaeXS$\xdb\xfa\xff\xd3Z%\xff\xcf\xfac\x9b/\x8a\xea\xaau\xa5/\xda\xb5f\x03\xb8o\x90\x85\x12\x8aT\xb2\xc0\xc7\x1d\x0e#S\x04k\xb2\xe6O\xc9\xb1\xcd\xbc\xf3~\xfb\xf5\xff\xf8\xb7\xff\xc2\xe2\x9d\xf2\x9fX\xa6l\xe3Zs\x8b\xd3\xb5I\x98;s\x89J\xbe9\x86\xe3\xed0\xca\x807\xfe\x97_\x82\x9dLcZ;GWnA\xfbR\x94_\xca\x07\xb9e\xf9\xd2Z\x809\xec\xc1\xcc\xa3\xb0\xda\xc7\xa0\x81\x04\x8er0eT\x05\x8e\x803\xef6\xe1jE\x96]-w\xc1\xc2\xbc\xeccM\x85HTh\x11\x1ej\xc1\x82Z\x0b+\x8fT\xaem\xfdX\xfc\x18\xffx\xfe\xe3\xfc\xc7\x0c\xfe\xed_\xff\xeb\xff\xf5\xeb\x7f\xfd\xd7\xff\xf3\xb7_\x7f\xfd\xed\xd7\xff\xfc\xdb\xaf\xff\xc3o\xbf\xfe\x8f\xbf\xfd\xfa?\xfd\xf6\xeb\x7f\xf9\xed\xd7\xff\xf9\xb7_\xff\x97\xdf~\xfd_\x7f\xfb\xf5\x7f\xfb\xed\xd7\xff\xfd\xb7_\xff\x9f\xdf\xfe\xf3\xff\xfd\xff\xfe\xfa\xeb\x8f\xe5xs\xfc\x00\xff\xff\xf0\xc7rN\xe6sk\xc8\x19\xbb!M9\xde\xde\xc1(n-vF\x8f\x91g\xe2\x8a~\xd2{I\x0b\xd5q\xafm\xf3 $r\xc3 \xea\x02\x8a\x8d:\xe1%(n\xb1,\x8f\xc4\x01\xe6_Q1x\x14\xc8\xe9\xa7[\x8em\x89z\x96\x81\xa6\x11u\xfaVJ\\_\xa1X*\x17\xe4\xf6\x95\xe76V\xdcg\xf0\x18F\xb0/\xa5#\x1e\x1d\xd7\x06\xcc\xcaV2\x96\xf1\xc7\x1c\xd3\xacl\xe9Iy\xee\x1b\x11\xf9\xddN\xd0\xe493 \x18~j\x0d\xbc\x82O\xc7\xcdM\xe1\xd1\x0f\xb3DM \xf7\xdc)a\x03\xeaK\xbbd6\x15\xf9\xef\x02O\xf7\xc7J\xde_\x06\x8d0\x9eEe\xc0\x82]\xe8@C\xd4\xe9\x03\x8d\n\xed\xff\xa7D\x02\x8e\xba\x07\x0fS;\xbd\xc6\x08\x91\xab\x80\xc3\xed\x0ecc\x99\x06\xe3\x8e\x8c\xa4\xc4/&x\x83\xef:+v\xd9\xb7_\xa3\x91\x96\xb6\xb8\xa9\xb4\xb8\x0e\xdcO\x99`\x05x\xa3\xc0E\x91\x89>\xe4\xf1P[\"S\xf48\xe5a\xfaC\xd8\xdb\x83\x11\xdc\x83M\x05Ca=M\xca\xb8\xa8\x1d\xb7br\xe6\x17\xe19is\x12\x0f/\xc9\xdd\x0f\xbd(>\xc9\xd8\x93\xb8\x98%\xd1\xc78\xb2\xb4i:|\xd1\xfc\xc7<\xb6\xb4\xaf<\xfc\x99|\xbcY\xf0\xd6?\xe6$\xc2\xc2\x8f\xc2Y\xbe\xd2\x1c\x86L!\xfc\x14\x80\xb42\xf2\x19\xb4\xfa\x88\xf6\x17\x19\x99\x7f\xe4\xa5\xcf\x97~\x14\xad4\xfc!\xa3\x17\xad~\xf4\xc5\xa7\xef\xdf\xaf\x06\xfc\x83\xc6/\x9a\xfd\xf8\x13(O\xef~\xf4\xe5'\xc1\xfey\x99~\x84\xa1\xa7w4\xf4\xd8\x1e\x8d)\xb9\xbc\xf4\x8b\xd9\xc2rad\xae.\x0dfZ\xd5S\x8a?\xd5k\"\x1e\xc1\x19\x10\x93\x921\x91e\x0f(z\xa8\xd2\x99\xc5\xd3B\x9f\x19C2\xafO`_\xd8\xe11/\xaa \x9a\xc0q)o\xecL\x8bc!\xc8\xcf:qA >\xbe\xe1jrQ\xa3\xe5\xc2\xf8\x06\xeb\x99)<4`\xd0\x92\x86}K\xea7\x964\x93\x974\x1b\xb8\xa4\x12?\x91a\\\xb3\x04W\x95\xbd\xe1k\x19:,N\xd3\xdd\xadhN\xfc\xec\xdf\x01\xf4\xee\x963\x8d\xc2B \x9e\x1d\x03K\xfd: \x0dGl\x8fw\xda\xbe& D!\xdd\xd7L\xef\x86J\xb4\xae\x90\xc4\x9a\xa1\xf1\x8a\xe5\x9f\x9e\xce,\x9ew\xe2\x9e}\xea\xfc\xf1\x9eC\x99\xe3\x0f\x1f`\x1bu\x1e\x05\xc9\x8b\xba|\x7f\xe2\xdcsac$\xc2:\xd1zc\xac\xe7\x9f\xca\xb5|lH\xaa\xc4\x1a\xf3\xea:\xde\xbeC\xffkT\x92\xcb\x1d[*\xa3\xdc;-\xaf\x8a\xbd\xfd\xaaP\x05r\xe7\xdc\xf7Y\x12\xa8\xde\xb3\x9d\xfd\xfd{\x1e\xb9$3\xdb\xb2\xe8\x1c\x15P3DO\x02\x92\xad\x9a\xd0]\xaa\xe3\x06@\xd3'gOx!\xf14<\x95%\\;\x95\x8a\xfc\xedZ\"\xa7_\xab\x83\xe8\xe1\xe8\xd4\x9f\x9d3K\xff\xdc\x85\x08\xc3T\xcfY8}\x93\x93z\xc0B}\x86gq\x92\x91\xa7>\xc6\xf6\xb3B\x0b&\xf4\xda\x83uZ\xb6,\xa3\"\x8c\xc2\x18\x8b\x96\x8d\xa22\x0eQ\x11\xbf\x0fV\xd9(\xc8\x8bp\xf6\xfe\x8a\xbe\xbf\xe2\xef\xf5CX\x98}\xe4\xcf\x9b\xbbY\xc0>l\x8f\x1fn?\xdc\xbd?~\xb8\x83\xe6\xfe\x8f\x1f?65\x80\xd1g\xeb\x03O\xbc\x1c\x83\xa3\xbb\x10\xc0:Xg:\xfb\x01\x94\xfea\xd0\x06t\x8e\x90Z`J\xce%o\x876\xf2\x85\xbd\xbf\xf6\xe3\x8f\xb9c\xb9\x10\xa84\xd4\xd5\x83\xfe\xeeK\x06\x8b<\xbe\xe7\x9amG\x18y\x0cE\xcd\xb0\x0e\xf9t\xf3\xb8\x82\xf0\xc7\x80\xf1\xd5\xec\x94\x07?\xe12\xa5\x85+>p\x1c\x17\xd6\xd0\xb6\xbf!\xf1\xc2\xa4!\x9b\xc7\x95F.s\xcd\xe4O\xe3\xc1\xa9\xcf1.\x01\xcc\xe1\xab\xae\xe4{\x03\xc6\x8f`\xbe\xbe\xee\xc8;S\x8b\xd8\xe6h\xe8k\xe3\x8f=\xa5D\xbc\xf1\\;nw\xf0|9\xbe\xaaC0\xa2]\x00s\x14J\xe9\x07l%F\x0e\xcf.!-\x1b\x8b1\x1f\xb9\x90V\xad\xee\xc1\xb9\xe3|\x00\xbec,\xa3O{\xfb\xe8\xa0\xeb\xc1\xc19\xecC\xca\xcb6]8\xc7O:#hY.3\x8f\x06kS\xa0F!\xd3\xdct\xa4\x15\xb3\x07a\xb6\xe6\xa5\xd9FW\xb0\x0f\xd3c\x98\x08\x1cT g\xdb\xdc\xa0Z\xcc-\xd1\x08\x1a\xa2\xeb\x06d\xd5\x8d\x08\x01\x89\xac\x8ak\xb2*\xeb\x90U\xb1\x8a\xac\xcaV\xa5\x03\xcc\xf2\xfa\xd4\x8e\xed\xedQ[\xec\x9c\x88\x92q\xbb$\x14%;\xed\x12\x9f\x97\x8c\xee?h\x17\x95\xbchgk\xb3]\x94\xf3\xa2\xadNO\x11/\xb9?\xden\x17\xcdz\x03\xf7U)\x98\x88wrB\xf2\x97IPFD\x97C\x14$\x99\xff/\nW\x10\x8c\xbb\xc7r\xe2\xe9B\x99\xd5\xf9\xdex\x0c\x86v\x8a!o\xe1\xe7\xaf/b\x91\xbe\xb5\nC\x17s\x95\x0d3\xb6 \xdd\x84oP\x83\x10&\xa6\xf3\xcb\xa8\xe0\xa1\x99\x9a\xa0A7e\xbb\xb3Ts\xae|q\x1e\xfd\xa1z/\x96\x0eR-\x8b\xdaY;\xcc\xf4<\x18Y\xa3.E\x92\xd6Y0\xde\xdd\xd9\xdd\x1c\x05-E\x1b\xbdv\xad-o\xf4\xc0\x1b\xb7J\xe8}j\x9d\xfa\xf1OI\xab\xe0\x8c\x16\x1c\xfa\x85\x0b\xe3\x1dxR\x9e\xc1xs\xf4\x006\xefOv\xc6\x93\xf1.\xfc\xe9\xe5\x91t\x10\x86\xe9\ns\xb1\xf4\xde9\xc9\xf20\x89s\xbc*;/?|\x80_\xae]E\x89\x97_\xf8gg${\x17*\x9d\x97x\xb5 (\x02\xdd\x9e\x85\xc5[r\x1e\xb2\xf2\x85\xb2\xfcY\x98\x15W\x13\x08\xba\x85\xa7e\x18\x05G\xe1\x92\xe4\x85\xbfL'p\xd6\xad\xb2\xf4g\x8b0&\x93v\x0c\x85.\x07Ph\x1d\xaf\x82dy\x12\x06,\xcf\x94\x1ao\x06\xc9\xf2U\x12\x10S\x95<%\xb3\x89\xde\x88*\x8b&J5,/\xccMMG\xfeUR\x16\x13\xb0\xbe\xf6s\xf2\x02\xff\xd0\xb4\x14$\xb3\x83\xcb\xd4\x8f\xd9r[Q\x98\xebj.\xfd\xcbg,\xf5( \x8e\xfc3c\xff\xf30*Hf\xaa\x81\xe6\xa4~\x91d\xefp\x9e\x8b\xa2H\xf3\xc9\xbd{IL)^\x01=^\x98\xdc\xab*j\x86\xc5|\x97r\xfdB\xce\xca\xbcH\x96\xfar\x9eO\xf5uJX\xea\xaa\xe7A7\xa9N\xab.\xcfz\xf4\xac\xd4%\xbb\xaa\xea\x13\x92\xbe\x08\xe3\xf7a|\xa6\xaf\x94\xb1\xd6\x9e\xc7\x05\xc9f$-\x92\xacOc[\x7f\xc9\xb0\x97\xb2\x82f\xba\x19\xc9\xd3$\xce\xc9'\xea._$\x17\xe8\xd3M\x02\xbejj\x073\xa8q\xeb\xcb$ \xd1[\x12\x07$\xc3u\xb3\xc8\xa5\xbfL#\xa2\x83`\xe9+\x04\xe5\xe0\x19I\x8b\xc5\x04\xb4{R\xd7\xcf\x87|@\xa7ppY\x10<#\xb9~\x1fi\xbd\xa7\xc9r\x99\xc4\x83j\x97)\xc5\xc3$8,O\x97a\xc1\xa2M\xe4\x13\x98Zg\x04\xd5.i\xc9\xfeIr\xfc\x97e\xd1\xa5\xbf\x92\x94nU\x8e\xfa\x01\xe2\x07X\x89\xcb8\xad\"\xf3g\xc4\xd20\x9eiFrR\xd0>\"\x81\xb0u51C\x17\xad\xa9\xa9\x10\xc6a\x11\xfa\xd1!\xddX\xfd\xd1\x9a\xc7\x86c\x99,\xd3$\xa6|\xcb\xa4\xed<\x05jp\xa2\xfc?%\xd3\xe7^\xeag99D\xb9Y'M p\x82\x89x\x1c\x057\xf1:OF\xac)\xa5X?\xe5\xdd\xf8b\x8d\x1c\x9b\xdeq\x05\xd2\xde\xb1\xa2\xb7+\xed5\x91_\xe5\x05Y\xaa\xc8\x08\xf1T\xd8+\xf5\xf8\xcfU\x0eW\xb5M\xa9\xc7\xf7V\x03kl\x9b\xda\xb3\xd2\x8eJ\\\x1ff~U\xd4J=\xf6K\xdd\xb7x\xc4\x95\x90z\xec\x97\xb6\xb2f\xaeP\xdf\x98\xc6~X\x1d\xdd\xc5)\x1e\xbc]S\xaf\xcc\"\xfd84;\x01\xa9'C\x7f\x97@V\xc4&\xe8\xfb\xa4\xa2\xa7O)=\xdd\xaa\xdd\xfa\xbbEZ\xdb\xa7HRK\xfdS\x15\x9a\x078`\xb2\xdc#\xa5\xc0\x86\xb0\x073\xc7\x85\x13/'\x05\x1bCn\x97\x8e\x0b\x17\x02;=\xc1\x99\xe7^\x94\xf8\x01 0\x8fI\x9d=\x9d6\xb5\x16\xd3CE\x7fZ \xf2\x84\x16KQ\xb0\xe9BX\x8f\xb2\xc4y3^p\xd3\x85\xa4S\"%|ck$:.\xd3\xc0/\xc8\xbb,\xb2-\x0b\x07\xd6-|\x91\xf8A\x18\x9fQ\xe8/s\xdb\xca\xcb\x19\x06~\xd1\xd4>L\xc9\xcc\xa6\x83\xc8:\x83\xc0d)\xcdo\x82\xe4\"\xa6s\x07\x0c\xea\xc1g\xaa\x1d\"\xd6\xe8\xf4+\xda\xe0\xc5\xe8\x81#6\xc0\x81\x0b/C\xd2\xa7\xde\x14\x17\xac'i\xaa\x93\x97V\x91J\xb0\xfeI\xa8\x0d\xcd\x0f\x1c0s9\xb2\xc6\xdfK\x92] \xf8\xab\x9b\xd0\x8bR\xab\xe1\xe5bXj4\xc9\xa3\x89P\xe0\xc0T8\xbceL\x06\xd0x\x89`\xf7\xe1\x03\xf04\x1e\"k\xc7\xe1\xfb0MI\x00YM\x07\xc6 \xfc\x0bk\xe5_ \xc9\xf07\xfd\xf8_\xe0\xc2\xcf\x11\xed\x87\xf3\x90\x04\xbau\xe2x\xe8\xa2\x8b\x18\xba\xe7\xeb\x92bB\x0e\xf2L\xa6\xc8~\xbf\xcb\"\xa5\xac\x0d\xe5\x98\x8dM\xee\xbc\xa0G\x9b\x9d\xa8\xaf\xaf\xdeq\xb0Y3\xd6\xf8\xf0\xc1\xd8\x82\xe2\xfa\xc6K\xed\xb2;\x1d\nlo\xc92)\x08\xfb^M\x81\xab\xd8\x90\xd4\xeb\xbeU}\xa9`)\xe8\xa7\x9d\xd7M\x1c\xec\xc2\x01fb\xb0\x8d\xf3\xbc\xa4\xd5\\\xb8\xa0\x87\xf1@r\x03\xba\x96\x91,\xe9\xa5E\x1c2\xe1\xd8\xde\x19=\xe88\xf0\x8ev\x1c\x8f\x8b\xfd\xde\x93\xab|HC\xf5\xcau\xac\xa0\x99\xb6\xf5\xe1\xae4\xe1\xd8\x1e\xef\xdcwx\xbaM\x03\x95\xd1631\xbb\xed4\xb3s\x03\xacnX\"/C\xb3\xa3J8\x18\xdb;\x9d\xc0\xb0\xb5pq\xd2\x9fb\xb3\xb3\x03\xdc\x83\x1b\x1d\xbe[\xfbp\x7f\xdb\xf1\xe6rL\x94!-\x0e\x9cD{\x9bn7\x89\x9d1\xf3\x07\x1f\xdd\xe7~\xe4c\xeeW>\xbe\xaf\x04\xaf\xc3\xab\xe5i\x12\x0di\xbb\xd7J_\x9d\x8e\xb7\x13\n\x83G\xe9m\xe7\xb2\xe4\x913\xda[\xca\x83\xf4\xee\xb4\x83\xf1\xf2\x19\x8c\xb7\x1d\xef\xcf\x07\x7fk\x96\xb1\xd4\xa1;\xed\xf1\x88\xcc\xa1\xed\x011\x81\xf6\xc3vX\xa1\x94{\x87\xb4\x8d\x13x\xea\xd0\xb6O\xc2\xa2\x82\x94\xe6\xfbs\xfe^\x9d9tg\xdc\xae/2\x87\xb6'\xcc\xb2\x86n\xb5G\xc3R\x86\x8e\xdb\xb5Y\xc6\xd0N\xdc\x87\x0b\xbe\x9a\xed\xb9\x1e\xb0%h\x8f\xf1\x92Wo\xcf\xf5\x90\x8f\xbd]\xff)\x1bL'X\xca{\xb6\xe5\xed\xd7O\x04Bj\xbe~\x0d{\xf0\xb4\x9d$\xf4\x0d\xec\xc1\xfb\xf6\xcb#\xcc\xfb\xd9z\xf9\x12/\x08\x06\xd7\xcd\x92\xe7\xd5\xd5\xd1|\xff\x13\xec\xc1sJ.<\xafQz\xb3\x06\xbd`\x02\xdb:Y\x84A@\xe2\xb6\xca\xff-+-\x927Y\xb8\x0c\x99\xbfM\xb3\xc63\xd4\x03y)g(\x9f\xe7\x07q\xb9d!\x91\x9b\x15_\xd0\x1b\xd2\xb6r\x1c\xfd\x06c\x05\xb3\xabvs\xef\xe4Z\x9dd\xc6\x7fg\xa5I\xba\xa1\xa9\xf0\x0d\xecu\xb4I\xcd\x1a?\xeb\x02\xc2\xbcl\xd6\xfb\x1aW\xf4/\xac\xb1f\xd1\xf7\xb0\x07k_cf\x88\xaf\xa5\x8c/\xad\xbf\xbdy\x18\x07O\x17a\xd4R4|\x0b<\x82odvr\xe6w\xce}X\xdb\x83K\xfb\x0d\xf2fh\xd7\xab&\xd0\x87\xc5\xd8\x82\xba\xe17\xb2\xad\xb0Y*\xc2\x93,\xdf\xd7V\xbav\xbcn\xd0#P\x8aA\xae\x9dv\xddkG\x0eg\xa3\xb1]\x03 !\xbf\xb6\xbfQ\x9b\xd3d\x92\xac\xe2\x9biq\xec\xc2\x9b\xaa=\x1e\x10\x92 \xb7\xf9\x0d\xfd\xf9\x06\x9b\xe9\x04\xc0\xbf\x86 \xbcin\xd9\x0f\xbd|\xbb\xe0\xd9\xdf1\xaf\xf1K\xfbe\x0d\x08&\x1d%fL\xef\xaa'\x9b\xdd\x7f\x07{\xf032\xc5\x0c\xea\x1bP\xeb\x89\x9b\xbb\xb1\x88\x06\x80R4B:\x0b0\xa8\xa5F\x94\xfd\x97\xa6\x19\xfcm`l\x80\xaa\xe1=\xb1I\x7f\xb3\xff^m\xe0\x15\xcb\xe2\x02{p\xc13\xd6\xd1w\xb4$\xb1\xdf\xa1\x91\xc4>\xc6\xd7\xa9\x10\x10f\\\xa5\xfd\xbdby\x85\xa7\xaf\x8e\xa7\x053s\x11\xbf\xf7x\x0e\"\xdc\xb4Xw\x10\xea&)\x17\xb1\x89\x89\x8bT\x90\x0d\x93\xba\xc3\x0f\x1f\x18\xf4\xbdr\xe1\xc0\x1ea6uJ\xa6\xd4\xfd\xd2\xe1\x7f[\xad\x06\xfd\xb6\x86V\xd3b\xfey\x88q\xc8\x95\xd2\xf5\xad\xd6\xbc\xb3\xe0\x1fK\x9e\xe8\xb3\xa0CKXj+\x16e\x97IP\x98\x1fe\xf2\xc8\x81\xbf\xa1\xfe\x1d\xc3\x05&\x18\x06\xa60j\xdf\x8d)7\xfe4\xf88=k\x18\xaf\xe0\xc6\x13\x96\xaaP\xdb\xf3\x1a\xd6\xae\x01\x08A\x83\xe5\xf7\\K(0\x11f\xc1e\xaf\xd9\x05\xa2\xec\xda\x17\x9f\xff\xf9N\xfc\x16%\x0cz\xe8o\xbay\xe4\x18\x0b\xdbv4\xcd)~1d\x8f\x98\xdd\x05]\xff.\\\x0b)\x11\x89\xa9\x9e\x94\xff\xc8\x11{\x82\x87\xcd\x17\xb3\x8a9\x04\x7f#v+dSz7-\x0c\xe70l\xce\xaa\xae\xf73nmi\xdb/M\x81\x0d1\x08\x14=N2\xa2\xef&\xc4\xb0\x18IZ\x87{\x92\x92\xd0w\xf2b\x9c\xf3\x8cj\xa9\xca\xebw\xb3\xe1\xf5\xbb)\xf9\xe6\xbb\x9d)6\"B*\xaf\x13\xe0Y\xdajl\xc0SZ\xfe\x9d](\xcd\x03\xce\xfe\x9a\xbe:\x16\xf8\xc2\xae\x8f\xbc\xb8'\xbe\xad\x0d\xe9\x10\xa9\xab\xd2\x1d]+\xa5|H\xf2}O\xff\xf7-\xdd\xc3N.@\x18\x14I5\xa7T^\x8bXp\\\xf8\xa1\x99\xeeM\xce8h\x15I\xe5\xe3\xdd'\x04)0C\xdf\xfb?\xc8M?\xc5\xa4t_\xb8\x94E\x81=\xf8\x1bF\x90\xdby\xe8\xe0_\x87\xf8\xff\x7fF\xae|\xbc\xc3\xde\xfd\x89\xf1\xe8\xbb\xec\xaf\xbf\xf2\xfc\xc6k\x94\xdf\xdc\xc6e-\xe9\xfc-\x15\xc3`\xb9\xf4kD0\x0b\xfc\xbaWR\xf5\x83\x1d4$2t\xc4\xbe\xedc\xaa;\x1fS\xdd\xf9,[\xda\xcf\xed\xf5f ;\x91\xe8\x16Y\\V\x1d\xe7\xbfPva\xe1\xe7\xcf\xf9\x01p\xc3\xfci\x12\xcf\xfc\xe20\xcd\x88\x1f \x9b#(0\x17\x9d\x85\\n\xbd\xeb2\xd7\x0c\x97\x07\xe8u\xd1\xde\xd3\x958)W\xec\xcc\x91\x7f\xe6\x96q>KR\xda\\.LC-\xd7\xa2\x17\x01a8\xe2/\xf5!!\xe4\x91\x03\x81\xfd\x97)!\xcd\xb4\xe65\x12\"\x98\x8f*\xf0\xf2\"\xc9\xe8\xe5\x12\xf3V\nR7\x13\xd3f\xce\xed\x82L\xe3V;t\x05\x0f\x1bk\xc7Ox7B]\xbf\xfdG%;{Ao\xb5\xf5=\xb47\xdf\x87\x17\xf4TM\xd8?{\xdd\xe4\xea-\x04\xfc\x9e\\}\xd3\xdf\x15Z\xe0\x7f\x87\x16\xf8\xc6\x9c=>0\x1a\xb8\x83\x9b\xa0\x19<-\x8c\xe1\x85ZCA{z\x81t\xdc\x9e\x9c\xba\xc3H\xc6\x9799$\x05\xaa\xb1\x8d|\xda\xf7\xaa\xf0\xc0\x9d\x96\xc2e\x1a\x91!-5\x93\xcd^w\x8eJk\xa3\x19\xc3\xdb\x8dq\x84A\xd4\x07$+\xedZ%\x17\xb0\x0f\x976\xa6\xa5\xfc\xb3}\xc9h\x1d\xe3f\x07d\x1e\xc6D\xa8\xa8'\xf07CqH\xf2 \xfc\xb9Y\xe1\x8c\x14\x92\x8a\xfb\x19\xc9gY\xc8\xd4\n_\x98*\xbe\xf2\x97\xb4\xb1\x7f6\xd5a\xc7 \x9f\xc0_\x1b\xeb\x88\"\x96\xe6b\xdakx\xc5\x1a\x98|q\x11\xbel\xc7<\x16\x8c\xda4.\xa3\xe8\x18c\x99\xfdd\x0b\xba\xd3\xfa\xe5\x9a\xbf\xe9\xae\xbd\xdf1,m}\xc26\xb7\x851\x1d\x17\xac\xef\x0e_\xbfR\x04\x01\xa9\xb4\x0c+\x10?\x9cd#\xc7\x8c\xa3\x18=R\xc5\xe0\xa1,\x05\xa7\xc9\xea\xeb>ib!\xf1\xf0L\xde\x9c \x1a\x1d\xbb`\x9f\xda\x9d\xa4n\x9c\xc4\xffN\xf6\xbf9\xe3\xd5\xecb\x089.\xfaRJ\x87X\x987\xa44;\x06\xf5\x8eK\xfb-\x1c\x0d\x1a\x00\x0e$t\xect\x1a.\xfc\xc4\xb5*\xcf\xbb\xc2\x87\x06XIB\x84\xe9[$\xc6c{g\xd3\x91\x85\x0b.\xbcm\xd4cI\xb6^\xcf1_\xe8\xcb\x1aq\xb3\xbf\xfdb\xe1\x82E\xff\xb1\xf8=;\xe7j\xa6\x1a\x06\xd66\x07\xa9\x00j\xe9xG\xca)\xa2B\xa9\x93\xd8QBaU\xbd\x94\xe0\x073e\xda\xb7\x98\xc5\xe5\xed\x1a\xce(2HV\xa0\xea\xbb\\\x00O\xf1\x11\xed=\xf4\xe6,/\xcb\xe6#(kH\x8d\x1e9\x90W\x16\xe8\x94`/\xa7\x11\x12\xe5HN2\x10V\x1f`Ia\xb8\xda\x8av\x84\xdb\xc2\x9b\x90\x92]\xdd5\xfd\xe5\xda\x13\xa4D\xb3\x10\x83\x03\xd5\x86\x14\x02\x96/\xc28H.P\xc9\\\xfd\xe2BS\x05F\x84}C\xa1\xcdZ\xa0\xb8]v\x8b\xab\xb5\xa3\x83\xa88\x0c\x8akM\xd9H\xe1\x07l\xf2\x18G\\\xe58\xeb\x95n\xe9\x93\xd5T\x04\x88\xca\xda\xaa7\xf9\xbb\x18\"w\xf4Q4\xd1<\xc06\xcf\xbf\xdc\xd4\x14\x0e\x02\x00\xa6K\xb1-?\xbf\x8ag\xcfWR\xc8\x89OY\xfa\x12\xa4\xa5\x07}\xa7\xd6|\x15\xde\xe9UA^\xb0#0\xe4\\F\xdas\x89\xe9\xa5:%\x19\x96\xb4}:\xf9Ro\xd1\xdb\x13\x83/9p\x0f\xb6aC\xe2\xcd\xaf](\xbc\"\xf9\xfa\xaa <3\x9catm\x9e\xfd\xa4\xb0\xe7\xce1|\xf5\x15\x8c\x1e\xc0\x87N\x11\xac\xc3\x88\x17\x8f\xd5\xc5cV\xbc\xab.\xddr\xe8JL\xf3\xf5u\xbc\xa60\xb2\xf2.| \xe3\x9d\x9d\xf6\xfb\x07\x9d\xd7\xe3\x9d\x1d\xf8\x12Z\x89\xa4\xc6<\xc5\xb5\xb8:\xd5\x93\xd1\x0c\x96\xce\xe5\xf1c\xd8\xeev\xd2\xc2\xb6\xa3A\xbd\x8c6\x8dK\xb6\xad_\xb1\xc7\x8fa\xa6\x87wZ\xb0u\xfd\x12v\xb7\xe8\x0bko\xcfB)\xf7\x98\xb7\"\xf6\xcbf\xed\x8cq\x1f\x1e8\xb0\xaemx\xb4)Z\xa6\x80Q\xb5\xcc\xbb\x1aK]Y\xed\xa1\x0b)L7\xdc\xf4\xb5\x82\x7f\x16B\xc7D\x12>Ze\xcc8\x8f@N\x0f\xfb.\x8c\x8b\x07l\x1f\xf7\xe5?&,\x9f\x0b\xdb\x14\xeb\xc9\xd7O\x9f\x1d|\xf3\xa7o\x9f\x7f\xf7\xe7\x17/_\xbd~\xf3\x97\xb7\x87G\xef\xbe\xff\xe1\xaf\x7f\xfbg\xfft\x16\x90\xf9\xd9\"\xfc\xe9}\xb4\x8c\x93\xf4\xefY^\x94\xe7\x17\x97W?o\x8e\xc6[\xdb;\xbb\xf7\x1f<\\\xbfg\xf1h\xdc\x0c\x8f\xf8\x95t\xbe\x84\xaf \x7f\x04\xeb\xeb\xa5\x03\x19K\xc6\xedOK:\xf0\xa9/\x83r\xe9`,c\x95[[\xa4\xc7\xea\x02\xd8\xba\x84U\x01\xff\x01\xb6)\x1a\x13\x8c6E\x9e\\\x16\xf8\xc1vn\xc2\x84!f:^9mfw\x1df:\x8c_g\x8cB\xf7S9:z\xc1v \xa6\xff\xac\xef\xc1\x96\x83\x00c\x13\xba\x13\x14\xe5P\xec9\xda\xbd?\x1a\xed>\xd8d>\xf6\xd3\x92\x9e-\x06\xe9\x14\\w\xc6\xbc\x84\xa1\x0fV>>\xa6\xac\xb9\x80|;\xc4\x8cZ\x08\xff\x0f$\x98\x0f\xf1\xcd\xb8\xfdfWz\xb1\xbb\x05_B\xd8\xe6\xa9*\x8a\xa6{\x14\xaa_\xc9\xd4\xda\xb0d\x08\xdaD\x08\xda\x1dS\xd0\xb2NTE[JzC^\xcd\xc2\xcb\x88\x1f(T\x81<(\x8a\x02\x0cCW\x10\xea\x0f\xe0\x8f\x90PZ\x80b\x06\x85`\x94.\xfc\x88\xaek\xe9\xa8k\xa0\xbf>\xaeY\xb7\x8c^\xcb\x1b\xf7\xbb\xef\xd1~\x06\xf6\xb1\xe3\x11LT\x01\x0bR^e\x83\x96+\x9a\x0e\x10QR2a\xde\"w\xb8\xc3\xfe\xfa\x1e\xa4\x0c\xc3\x04\xf0%\x9f\xc3\xc6\x8cM\x02\x02x\xfcx\x0f6f\x94rX\xa7'\x18f\x18\xd8\x14\xeb\x8fwv\xe1\x8f\x10\"\xc2d\x1d\xb8 \xda\x9b\xc1\xc6\x1e\xcc_\xf9\xaf\xb8\x8c\xa7\xc0\xb6\x18x\xec\x83\x8dY\x04D1o\x92!\xef\x19j\xe9}\xd1\xd6R5\xcf?\x85\x0dX\x1c\xc3\x87=\x18\x8d\xe9\xc1:o\xddp7b\x8a\xb9\x10\xa4)\x9c\xb6\x0b\x17\xac\xda\xac\xb5#B\xe5\x96S\xb2\xb1\xab4bAj^)\xa3G$\xbcd\xac\x8c+\x81%[\xaa\xb8\x12X\xa2\x8a*A\x0b:_\xe4\xbc\xa0\x13l\x82\x99\x9a\x8e\xef\xb7U\xaf\xcc\xd6\xb4mf9\xc7ff\xad\xb7)o\\\x11\xe6\x82\xd9\x9a\xee\xec\xb6\x03]/\xaaO\x1e\xb6?\xe1\xf6\xa6\xe3v\xdfK1\xb7\xce\xac\x99\xc5\xa9&\xa0\xc3\xd5\xa7\x0f\xe8p:D\x1a&%\x1bm\x82\xca\x89IU_M\x8b(UA\x92t\x9e\xb15J\xe5{\xed\n\xb8\xd6\x88\x0d\xb4y\xdc\xd5\xcb\xab\x82\x7f\xb4\xdc\xc9\x84a\x8d\x8b\x05i\xbb@-p\xcb\xcd^\xc1\xbd\xce\xc5+\xb8\xcd\x9a\xbc\xe3L\xde\xc7\xd0\xf1@\xd6\xd7\xcb\x92\xa4x\x1eS\xd4\xd1S\x11\xe7\xfdF\xccN\xe1\xd4\x0c]M\x99xN\x932\x0e\x0e\xc5\xc45\x95\x8a$\x89N\x93K\x8d\xc34bz4\x00\xa8\\\x18\xe9\x1d\x81\x16\x01\xd5\x1b\xef4\x8c\x03\x1e\xf0\x87\x95\xa1\x82\x99\xdd<{p\xeaVn\xd63\x14r|w\xc8\xf6\x9ayUr\xe1[\xb3\x93\xfe\xb0\x85\xe2\xa9\x18s\xda\xfe\x99\xc7\xf6\xf9hQ\xc6\xef_\x86A\x10\x91\x0b?#\x8e\x1d;\x86\xc0i \x06\xf2\x12\xe1FNN\xde\x1e<{\xf7\xd7\x93g\x07\xdf\x1f\xbd~\xfd\xe2\xf0\xe4\xe0\xafG\x07\xaf\x0e\x9f\xbf~u\xf2\xf4\xf5\xcb7\xaf\x0f\x0fNNP\x87\xc7\xbcGsE$\x1c\x90\xc8\xc6M\x97\xd6D=\xe9!\xaa\xdd\xf9\x84\x12;b\xfa\x9ez\x98\\\xffS\xa5*wTf$6?\xaf\x8eXk\x0cO\xc2\xbdK\xd1\x1a\x05\xdfVN\xb5\xf8\x17?\x1e:\xadRk\xbce}$\x89\x0b\xd3\xee\xba\xbf'W\x13\xb0\xe8f\xd1\x19)\xdc\xa2\xf9\x05gTCC\xcb\xc2\x04a\xa6;\xdf\xe6\x90U\xe8\x81\x8dFLx\xc0hz}l\xd7\xd4\xa9\x07txp\xc4t\xb0\xf2\x0b=\xb0\xc9y\x80\x81\xd8&\xd0\x16\x0f\xe5}\x18t\x879\xa37\x1cJ\x91b\xc09\xfe\x1a\xc5JNC\xdb\xa8\x06KU\x9b\xdf\x94\xf1\xac\xf1-\xb1\x0b4\xa0\xd5y\xf9\xaa\x1aQ\x8c\xc0[\xfai-:\xd7jW\xe5\xa7\x1e@\xc7\xde\xb5\xfd\\;^F\x82rF\xec\x0b4\xa35\x0f\x957\xacA\xa0\xc0t4mTg\xeb\x02\x00^p\xfc\xc5qU\x8c,\x01\xb7\x06m\x1cH\x85\xfe\x03\x9a\xd7r\x1f\x00\x08\xfcF\x9b\xd6O\xf1\x9c\x07\x17U\xc0\xedX\x0b\xb7\xe3\xe6\xfd=>\xeeq\x0d\x07Nd&\xde\xc2\xcf_\xa0\xb7\xb6yD(T\xd0W\x19\n\xd3\xa8\x07T\xa9\xdf\x0b\xcf\x9f\x17${\xc1\x9d\xa7\x91\x83X\xdbt\xe1\xc0\x96J\x1cY3\x1f\x9bB:\x9a\xcf\x84\xdc\x0c?\x1e}\x1e\x12\xd52M\x14\xd9\x9f\xc5c\x82\xdc\xbb=`\xcd\x99dB\x18\xd1\x7f*\x07\xcd\x03\x00TY\x80\xeb\"\xfd4\x85\x95\x18\xb0z\xd3\xc5\xbb\xa1\xad\xf0\x18T\xba\xe3\xd13\x02\xceG\x16\x82K\xe2o\x06u\xfe|9\x81\xb9XZ}\xb5\xb7\xc4\x9f\x15\x93:H\xa2\x1as\nn\x8cqi\x12\xcf \x18\xc6\xe5\x96p\xce\xa7u{p\x92\x07\xa9\x8bX5xdw9\xb0\x01\xc2\x82!c\x87\xce\xf8\xbbo\x0c3\xcaW\x99\x91\x96\xb7Q\x0c\x14\xf6\x14q\xf7\x06\x0f\xab\x894\x07\x0c\xcdxE2b\xc4p\xef {(b`\x0bLmW\x97\x18\x9f\x99,.a\xbea\x8c|JN\x7fz\xe9\xa7\x0e\xbdA\xfa\x97\ndZ\x89\xf1\x18\x99fW\xb9\x87V+\xd6\x0f\xa9X\x93\x9a8\x1bB\xe6\xf7RH<\xc6-F\x82&\xd3\xf8x\x85H\xe0\x82\x10Y\x91\x0c\xe9J\xf8br\x013\xef\xa5\x9f\x9a\x19\x05\xe0\x84\x89\xcc\x15\xf7s\x93k\x99)\xc2\xb0\xfc\x08\x93\x80lZx\x94\x1d\x18\xd0x/\xa3\x0d\x12'u`\xc7\x8e\xc9_N~\xf8\x88\xab D \x97\x0c'\xc6/\xf5\xac(\xa8\xc4\xbe\xed\x07aO\x0d\x95\xc8\x0f\xbbm\xa8,\xe4\x08X\x9b.\x04\xde,Y\x9e\x86\xb18M\xb9\xc3r\xea\x9f\xf6&\xc97\xa3\xdf\xa3\xabt\x88L\xa8W\nC\xa6\x9b\xc7^\x91\xbcKS\x92=\xf5sb\xa3\x11P\x15+\xbeW\xec\x86\xa7\x9e\xcd\xcd\xb1\xf5H\xa2\x1aP\xacH\xe7!?\xe7<\xb6y\xac\xcc\xf8-\x1eTT;\xf28\x92&}\x9c\xc1:\xc5u\xa1\x9aU\xba\xcd\xa5L\xc9\x13A+\x0f\xd8\x80!\xb72\xdfN\xdb\xca\xab\x86o7@N\xef\xdfbx\x02\x915\xc7\xe7\xf3v\x07\x82\x05^\x06d\xc5\xcb\xa0\x03T\xc4`\xd6\xa2z\x1a\x02\x06\x8a^\x1c\x13\xa0\x14\x9dL\xe0\xf2\xa3a\xb5o ?j\xeel\xc0n\xf5\x9ef\xba]\xc3\x98\xd1\x06_\xa8\xf2W\x07\xdd\x86\xc6\xcd\xfd\xe8\xbfpi\xaf*\xac0\x8d\xeb\x0c\x0e\x1b\xf7\x9dc\xef\"\xf3S>\xa4\xdeK:\xe3\xf8U\x03h\x03\x04\xbe\xe2\x0e\xca\xa6q\xcf\xb5\xc6\xbbD\xe3K\x14\x10 A\x91\x9d0\x1f\x17\xb4UL\x8e\x1d\n]m\x9ad\xc8P@Z\xaa\xde\xa3\xd9~\xc4\xbd\x88\x87\xa3!\xaci\xa9:\x14Q\xc4t\x8fB\xbf\xd8~\x90\x90\x90\xcfY\xe6\xc8\x16\x89\x92\x87\xb2\xb4\xad\x10\x13\x12\xe4P$\x954\xaa\x96\xd2\x16\x0b\xbf\xe0\xafs\xf0\xb1\x91\xaa\xcc\x0e \x14\x0b\x02\x17\xec\xe4\x00CD\x8e\x0e\x11\xc9\x0f\xef\xe8\xc0\xcez$\xdd<\xf0\xe67\xbcO)\x88\x08\xbd\xafM$\x82\xb6\xf8n\xf1\xc4*\xd7\x8e Q\n\xa2\xce\x8c,\xb26\xb2\xa8%D\xfd\x01\x0e\x9a'S\xce\xa5\xa3J\xe7%?\xe2TN3 9<4)\x16A\xb87)qL\xc2\xd0J5\xf8^\xc4\x12v\x10K\xb1\xc2\xf0A\x16\xcaO\xb3a\x88\xc5\xef\"\x16\x9f!\x16\xb4x\xf5\x99M\xaa\x82\xd9\xe9\x1d\nH\x14\xd5\xca\x88\xa5\xb2\xbe\x0d\x15\x1c\x0d3Mb\x83\x0d\x1dn#\xcdlr\xc3GP\xae\xaf;h\x0e\xdd\xe0M\xca\x9e\xe5\x10\x8f@\xf1\xc8\xcf\x990\xda\x94\xcb\x8b\x9e\xc7v\xe2\x1cS\x8e{\xe6\x17\xb6\xaf \xad\xdb\xcfM\x10\\hBp\x02\xc0~?\x0c\x17\xf6\xa1\xb7\xc2\x80\xde\xd4<\x0e\x08\xf4\xa6a\x81n\x87\xdeP\xca7\x08\x99\x0d\x90\x94fM\x0b\x17\x15.X]^\xd0\x14\x08\x10\njL\xec\xad^\x0e\xf7v\xe2\xbe\xa6|\xfd\x1fg]\x06#\x16\xc1m\xb3C\xabr\x11\x15\xcf\xf5G\\\xe3o\xe2\x01K{c\x99\xe5\xc4+\x93\xc7z\xeaV\x83\x92\xaa\xb05<\xb6\xf9\xbe~\xf4\xd0\x96,\x8b\xb2[m\xce\x9d\xd2jJz\xaa\xd2\x98T\x14\x99\xb3\xa2\x84EEa\xf5RFz6\xb0\x97\xc1\xe1-\xf4\x1e/\xf9ix\x84u\xc9\x8f\xb0\"?2\xa7\x8a\xe6\xe4\xc3W\x90=\x02\x9f\x92\x1f\xe1\xd4o\x92\x1f\xfe\x00\xf2\xe3\x9c\xa7C=\xb0cAl`*$\x0d\xa9\x11\x1a\x93W\xf2\x87O^i\\\x81\x89(m\xd6c\xe9\xd8\x85\xcd\xa2\xca\x1b\xdb4X\xd7|\x14q\xc5] )\x08\xc6\xe6\xfa\xf0\xa1\xa3\xf1\x13jt\xf5R\xcah\xca\xab\x85[\xed\xc8\x1d\xe2Q\x9f\x18\x99\x84\x1f\x80nl4(<\x0d\xc5\xbc\x9ff\xc4\xa7\x07\xcd\xa9\x10\x17\x90\xc1\xa6 \xd2\xc6\xd7\xce\x8b\x85\x99\xcd\xe8k\x1a\xe4\xeb\xb4\xe8\xb3\xe1\x82\x017\x9b\xfc\x08\xe9\x1f\x05\xfd~\xf8\xd6\xbb\xff\xb7\x1f\x94(\xdeB*!\"\x06\x0cZ\x1e\xe0\x1d\x0e\xabI\x1f\xba5\x138\xf7^\x1d\xfcpr\xf4\xed\xdb\xd7?\xbc:9x\xfb\xb6_\x03#\x1e\xcc\x80\xa0\xcf\x92\xa5zR\xff*J\xfc\x80\xa5\xf8Y\xc8j\x84AM\x98\xb5\x1bX\x03\xe6a\xecG\xd1\xd0-\x12@\xd5[\xd9\xdc\xb5\xc9\x02\xb0p\xb42\xd7[b\xaa\x97~\xca(\xe8\xe4M\x96\xa4C\x90\xd5\x10\xf9\xb7\x11\xcf\xf4\xb6\x04M\xac\xd2\xb2\xe3!\x03H\x9a\xdb.\xc93\x8e^\x87\xaf\xca \x92q\xd8\xb2\x0c!\xee\xec\xa6\x87\x02\x8a\xe5\x0dVL\xc8\x81\xd5VG:P\xea[\xb6c\xfam\xf5\xea\xdaV:\xaa\\hCG\xddZ\xc5\xab2\x02-\xd4\x0d\x9b\xac\xa2\x1b\x0d\x8fT\xde!\x0dA\x860\x03\x95\xb4\"\x83\xea\xcbF\x9a\xcd\xea\x05\n\xd8j\x96\x04)\x9a\xd6\xd5\xd6\xaa2\x80Z\x15T*\x91\xc8r\xe6\x1a$\x91\xf0*\xf9\x1a\x067\xe8H\xe9\xf7\xc1n}\x89&\xb6\x9c\x8c\x9b\xc6\x14\x18x\xf4\xea\xf6`\xa7\xd91\x86\x95\xc1yu\x1b\x99&.\xc4\xc7\xc6\xaf\x9bp\xa7\xd0\x19\xb7\xbe\x91\x13\xfdk\x9a\xd5\xba\xee\xcb\x8c}w[\xdb\xbb\xaa\x8a\xa1Y;\xddC\x18\x9b]B\x98\xa261$\xe5ow\x18V\xa9\xa3\x1aoe\xd5\x8f6\xc2.\xc8\xb2\xd5a\xca\xa2j.%\x9d\x8b\xdfG6\x9c\xf3,K~\xaf\xa8\xb2 `9\x93\xd6\xd2O\xa7\xf9\xb1+$\x9fye\xb1\xde\xd8\x96\xee\x9bir\xac|)O\xb2\xb7\x02\xed\x13\xe3z\xf4Ub\xf3\x13\xb0\xdfW\xdd LU_\xf2}\x88W\x8d\xf4I#2\xa1*J\xc4\x81>Z\xc6\xaa\x9e$*\x9c\xe9xQr\x86\x02]\x850$\x96\x93\xa9\xef1Ij\xcb\xf7\xc3D\xec\x0b'F#\xb1\xa0'\xa3\xa5\xb0\x98*N8\xab8\xe1B\x84\x12\x7f\x04 |\x05\xc5#H('\x9cQ\xf8\x92W@wb\x05\x82GcpN\xa7\x13\x17\xa6\xf4\xba\xaf\x00&SY\xae\x0c\x8d\xe5\x85\x11C\x9a\x19\xc3\x08\xcfE\xd7\x036\xd7\x7f\xe8\xfe\x92\x13\x8d\x9f\xe0\xdb\xdeX];[c\x85\x17\xb0\x9c\x14\xa9.U\x07\xc8S{\xca \x9dE\xdbI\x99\xb4\xa3\xca_\x0f\x19g=\xae\xf1\xa64\xdc\xcc\xce0\xcce\xc6b\x86\xb2|7\xda\xb8\xa1\xedX\x9e\x98+\xc5\x9b\xd7#q\x86\x0c\x85.\xd9\xb6)\x87\x94\x9f\xe7\xe1Y<\xa4\xa9\xfeY\xe9'\xc3z\x99`\"\x98-g\xc59\x98\x93\x0c\xc9\xa7\xf2Z\xbd\xfb\xd9\xed{\xa1\xeb\xd8\xf6\x9ef\xb1\x055\xc1\x1a\xb7\xd4\xb9\x8cv\xb6\xdaYyJ\xcc\x1aP\\$O\xf8\x01\x7f\x93$\x11i\xa5{\xc3Yx\xf3\xa4\xccL\xb5\"\xd8\x83{?\xde[\xbfw\xa6\"\x86gZ\xbfi\xdb\xb2`\x1d\xd0\"\x13MG\xed\xc8\x05\xeb\x8b/\xefYf\x94>W\xca>Q\xd0C\xeb\xf0\xfc\x1c\xf4\xcfY\x12\x17\xe4\xb2`1<\xf9\x9b2\xa6\x7fo\x1a{Hu\xe7Ul\x0b\xc1\x9e\xba\x18_\xd0\x9e\xd8m\x0b\xd33_\x99\x84\x19\x0f\xb1\x81\xac\xaf\x9bg\x1aHaI\x94\xf3\xcdH\xce\xf0\x98\x98\xf1{r\xf5&#\xf3\xf0R\x9a3_\x94\xb8\xb3(\xd9J\x8b\xb2\xe8_\x146\x9c\xee\xb2\xf8XZ\x8d\xad[\xa14\xaci.\xafi\xb7\x98\x02_\xc9\xd66o\xadms\x03\x9a\xc4WD\xa9\xfbs\nq\x19\xaeo\xe8\x15\x0b\xbfx\xcb\xd4\xac\x02\xd8)\x05\xcf\x13\x9e\x02\xcb\xe1\x98xa\xfe\xbd\x1f\x85\xc1ADh\x0d\xda\x0e}\x1f1\xc6 Jb\xf2$\x0e\xde2x\xfe3\xb9\xa2\x1d\xf8\xb0\x0e\xf6ZD\xe7\xcf\xe2\x9e MF\xff\xa2T\x01{\xbf\x0f\x96\x05\x13\x98\xd9\xf8\xa7\x03\xeb`\xdd\xb3\x1c\x0cU\xe8\xb8\"\xf0n\xe4\x98\xc1\xe5\xdc\xee\x0f\xcf\x04{`Y\xcd\x85\x113dq\xb9h\x8d\x19e\xc0\xd9\x10\xba\x1c\x03\xdd\xab\x802\xd2\x88\n\x02\xbb\xc0([\xd8a\xb3\xb2O\x87\xb3p\xa1\xa4\\\x92\x97\x91\x88\xf89\xb1K\xf3\x1c\x96=We\xe3\xce\xaf\xef\xf4\xb9\x14P7 \"\x95\x81I\xcd\xd88\x1a(\xaco\x9d\x8e\xc6\xcb\xce\x01\xa1\x9b\xe2\x07\x01]\x830>;J\xec\xb9\x98\xe8\x8d\x06R\x1dd\xa9W\xf9,K\xaf\xefp\xcc\x81\x0by\x8b\xae9\xeb\xc8>\xe7Iv\xe0\xcf\x16\x93^b\x06\x84-7\xb3\xb5\x96\xa2\xac+\xec\xc5\xabk\xb4 I*\xb7f\x84\xa3\x94\x85\x84\x9aWp\xd4\x8e\xc3\xdc\xc4\x0cK?\xfdH\x03\x9e*\xa8`\xfe\x15\x9e\xbf\xcc\x15\xbb\xc0\x9c\x8f\x8diJ\x96~\xfa<.\x92\x1f\xc2b\xf1g\xb1\xdb\x98?5\xf6\xa3 \x9c7+\xe3\x8e\x0e\xd0\x00\xf2\xd1\xe0\xb2-\xd9h\x8ckU$\x88\x12\xfb$y\x82\x95\xe8[\x80B,\x80\x1a\xa5vRg\xd5\xf0\xa9\xa6\xa2\xce\xf0\xed-\xa9\xa8\xd1f\x9b.\xc2\xc0\x7f\xb1\xfd\xc0\xe9\xb34\x16)U<\x91R\x85B+g\xa3\x86H<\x9b\xdf\xa5I\xda\xa3\x83b\xa7\x17\xfdjY(\x16Epr\xdd\x06\xc4\xe4\x02\xbf\xef$gP\xd0\x8a\xe6Y7R\x85\xd1&1)\x8fm\x8dw0\xc7\x85\x84\xdb*\x1fN\xc5\xfaPv\x92\x16\xa5I\x12\x1d\x86?\xd7n\x9d\xcd5\xa1\x97\x9b9\x9d\x04\xa5 \x92.\x01\xdb\x1d\xb7\x8c\xdf\x06\x9c\x15\x90\xc5`\xc6m\x89\x1bc\xe61%\xe3\x1a{\x01g\xf0}\xfa\xb6\x9a/K\xc7T\xfd\xb9\x07#L\xc6$\xb0\x18\xec\xd1\xbbS\x91\x9bIAZ\xc6\xa4I\x83O\xda\x0bB\x9f\x0e=?p\x0dn\x02\xe4 \xad\xddJ\x80\x0e*`\x8fyl~\xd5r\x80\x12\xe6A\x05\xf7\x9dT\x15\xa0^\xceb\x91\x91\xce\x82\x0e\xb90\xe0\x96\xab\x95\xdd\xc9je\xae\xf0\xcb\xeb\\1\xe2\x19\xbe`\xcax\x1e\x8a5\xeb\xf2\x81\xdd%3\x98\x91\xdcf\xd5\x92;Y\xb5\xa4Z5FM\xa8\x9d\xc0VZ\xb8NB\x88n\x0b\x9a{\x8d\x99k|\xac{m\x9b\xa5Z\x1e\xef\xdeW\xc5\xa2\x8b\xed\x9d\xadv\"]\xbf\xbe\x10c{g\xbb\x13^\xaed\xe5\x0f\x1d\x17,\xaf\x9d\xc6\x95N\xc8\x9aX\x9ax\xc5\n\xc4#\x08-\x0c \xd2\xcdx\x80\xef\x05cB8\x8b\xe4{$\x9f\xf9)\xb1 c\x92&\x18Z\x9e\xe5Q\xb0\xb7v\xdb\xd22\xb8\x990\xae\xa2\x06y\xdc\xccj\"\x84\xc7w\x9a\xb90\xd7\x11H\xa9\x8bq\xf2\x84\xb9F\x1761_I#05\x86\x91\xfd\x12\xacSz\xa2\xfcX\xbc\x12YP\x90|sk\x07F\xbcd,\x16\xab\xd9\xc27X\xd7\x8a\xcb\xe5)\xc9\xe47\xf5\xaa\xf2.\n\xef\x8b/\xf8\xc8\xd0\x15\xb2\"wg\x94{)\\\xca\x83\xb2\x00\xcd\xfbP\xc2: \x05\xb2\x89L\xb0\xe3\xc2HM\x13/0\xc6\xa5\xf2\xc8\x9c#\xb3)59\x81\x18\xd6A\xa1y\xa1\xab\xd2\xe4\xcf\x0b\x8d\x06\xa1\x92j/\x99\xc4zII\x8c*\xbc\xf6r}\xdd\x81\x05\xac\xef\x01\xb1S\xba\x0f\xd3\xe5\xb1\x0b\xe78\x97\xd4\x85\xa5\xc3w\xaf;\x02Ml[\x90\xd8\xa2P\x99\x8d\x10\xf8\xf0\xcf\xfaP\xd8\x95\x8b\xd1\x04\xcf8m\xd7\x13Z\xe6\x0c\xc1\xa0\xf0H\\d!\xe91s\xa9\x16\xe5\x84-\xca\x9a}\x05{p\xea\xc5\xe4\xb2\xb0\x1d\xc7\x0b\x12L\x1d&-\xcc\x15K;#\xad\xcd\xc9\xfa\xba~u\xc4CW\xa9\x7f$\xda\x01\xe8\x17H\x91i\xd2\x8e\xe1\xae\xcdSU(\x92P\xdd\xc1\xca4\xc7\xca\x0e\xc2P\x0e_\x0d\xc6\xd6\x9e5\x01koS\x03\xc1\xd6\x04\x8b\xc7V\x17J\xb4\xf2\x02\xeb\x0b\n\x93\x1d5\xc0\xbd\xe9\xde\xe4\xf8\xdeY\x1fc.5TL\xc9q\xb7_#GY\xc6w\xb3(\x9b8m\xdd\xa2\xec\x8di\xf1d\x95Ea\xcba[\x1e;\xccd\xba\x89\x1az\xbaV\xeco\xd4D\x13//O\x19\x15`\x8f\xd1\x97Pz1r\x1ci5\xed\xbd\xcd\x0f{c\xe7\xee\x17\xb4\x86W\xf5\xd9\xb9\x13\xfd\xd7\xfd]\x87\xc7\xe8\xfc\xc6\x9f\x15Iv\xd5=\xc5\n)\xc0\x84\xa2H\xbfM\xa5b\xd1\xe9i\xc6JOO3e\x85 \xc8H\x9e\xb3:\xec\xb7\xb2ZFx/\x19Qw\x94\x15\xe1,\"\xbc\x0e\xfeVV\xcb\xc3\x80W\xa2\xbf\x94U\xca LX\x15\xfaKU\xe5\x14\x8bO\x95E~\xce\xda\xa7?\x94\x15\x82\x90\x95\x07\xa1\xba8\xe1\xc5\xea\x9e\xc33V\x1c\x9e)\x8b\xa3d\xf6\xfe\xefeR\xf01T\x7f*+'\xc1\x15\xab\x96\x04W\xca\nl\xeb\xd4\x1bwZ\x16E\x12\xb3\n\xf8SUi\xe6\xc7\xe7>\xdb\\\xf6S])\xa5\xe0\xcak\xe1oe\xb5\x90\xcf\x8a\xfePVH\xf8\xd6\xd2\x1f\xea\n\x11/\x8f4\xc5gYR\xa6\xa2\x0e\xfe\xa1\xaa\x18\xf8\x05\x03F\xfaCW!\n\xf3\xa2\xaaD\xffPV\x0cX\x95@YH\xd8p\x03\xa2\x1cn@\n?\x8cr^\x05\x7f+\xab\xcd\xd9\xca\x06s\xe5\xaa\x06\xa1\x1f%\x0c\xa6\xd8Ou\xa5s^\xe3\\Y\xcc\xc7\xa9\x1e&_\x05\xe5\xfc\xc9\x12\x0b\xc9R]xJ\x02^~J\x94K4\x0fI\x14`\xd2\xe7\xcc\xb6\xc4\x1f\xea\x8ag2\x98\xd5\x7fj*\x97\x19\x11\x15\xcbL L\xf3$\xc1\\\xb5\xff\x1f{o\xda\x1d7\x92$\x08\xbe\xdd\x8f\xf5+\x9c\xf1\xaa% \x03\x0c1H\x89\x94B\xa2\xd8J%\xb3[\xdd\x99\x92FRVMw0\x8a Fx0PB\x00Q8xdQ\xef\xf5\xcc\xec\xdc\xf7\xee\\=\xf7\xd9\xb3;\xf7\xb1\xc7\xec\xce\xf4\xf4\x87\xce\xfc#\xf3\x07\xf6/\xecs3w\xc0\x017\x07\x10$\x95U\xbbo\xf1\x81D\xf8\x05wssss3s3Q\x08^\xe9B\xc9R\x16I\xc81.\x86\x90\xbd\x18\x92\x99\xdb\x98\xb9Mf\xee`\xe6\x0e\x99y\x1f3\xef\x93\x99\x0f0\xf3\x01\x99\xb9\x8b\x99\xbbd&\xf7qB\xc4\x8b\xad\x80\x04\n\xbe\x92\x85\xcaU\xb6\xb0\xae\xb1\x85l\x85n![\"\xca\x89\x17\xaa\x00\x92X\x92\xc0\x06\xf3\xc4_\xe2\xe4\xe2+Yh\x89K\"X\x92\xeb!\x88V9\xe2\x1c\xbc\xd1ERY\x80\\\x95\xefO\x10\x90\xefOH8\xbe\xe7\x97\xa7\x1cQ\x15_\xa9B\xa1\x7f\")\x04\xbc\x91E\xf8)\x8f\xf0K\xf8J\x16Bh\x85$\xb8\xc2 z/\xb3\xa3\xf7T\x81\xa5\x1f`G\xc5\x0b]`%\xf3\xc9\x89^\xfa\xc9{\x99\x9f\xd0\x1f\xe0Q\x8e\x05x\x94\xdb\n\x04\x99$%\xea\x07]P\xd2m\xf1b) \xb1\x17\xde\xa8\"\x91\x8f\xa40\xf2IR\x18\xc5\x18M\x19\xcb\xc8\x1fTA<0B1y\xac\xa5\n\xe1\xf4\xd2\xdbU\xbc\xca\xca\x85\xa4~X\n*\xba\x17[i^\x9cg\n\xa7\xf1\x95*\x84\xdf\"?\xb2\xf2\x13\x1fg\x00\xde\xc8\"\xc14StU\xbe\x93\xc5T\x11[v|Zp\x8c\xea\x07U\xf0gP\xe2gTV\x82\x03I\xc8\x91$\x08\x85\x84\x84@\x92\x9f \xcf$^\xa8\x02\xd8/\xb2C\xa9\xbf\xc4\xef\x8a\x17\xb2@\x89:v\xc4I\xf9\xb4\x98N\xf9N\x17\x0b\x15~\xe1+Yh\xe9\x87\x88b\xf0F\x16\x89\xf3d\x8a\x13\x82\xafd\xa1\x95/;\xb4\xf2\xe9\xdedI\x1c!I\xc5W\xba\xd0\xa5d\xe0\xe1\x8d,\x92#\xeb\x9d\xe6$\xf3\x9d\xe6\xcb\xa5\x9f\\\xca\"\xf0N\x17\x93\xf3@\xaf\x97\xcc?\x91\xfd\xc80R,Q\xa4\xe0\x9d3\x1b\xf3\x9c!\xd9\xcdH\x92\x9b\xf1\x8b\xac8\xd2\xa8\x1fdA\xc1[`)\xf1F\x16Y`\xfe\x82\xceT[vf\xdb\xb3\xb3@n\x87\xe2\x85.\x90)x\x887\xb2\x08R\xcd\x8c$\x99Y\xe2O\xdf\xcb|\x7fJ\xd2x$\xf0$u\xcf\x11As\x12;\xcf|\xfc\xf0\x99O~\xf9,\x98qW\xfc\xfa\x9c$\x11<\x0c\x83\x95<@\xcaw\xaa\x18\xae$\x9a5Y\xfa\xa7\x92\xbb\x11oT\x910\x88\xb0\x84x\xb1\x15\xf0\x93_K\xfcY\xc0\xa3\xac(Z&Q\x95\x96~\xaa\xf6\xf1\x94\x9c\xe3\x95\x82\xd0\xca\x02\x9d\x95\x9fe<\x89T\x19\xf1N\x16\x8b\xc3\xcbSI\x00\xe5\xbb\xadX1R\xf5\x83*(\xc6\xe4\x87\x95\xd1V\x93\xc8J\x8a\xb8&6\xd2\x9a\xc5\x92\xc8d1M\xec\xcf$=<#\xe7Q\x10\x85\x82:\x90\x05\n\xa2\x9b!\xd5\xad\x94\xb0\xc8\x88P\x05{\x0b2\xa2\xaa]f\xb5w2\x1a\xfb\xae\x1e|\xac\xd2 eMv\xc3~\x18\xc6\xd7\xf8\xe1\xba\xe95j`)\xfdk\xe4\x0c\xeb\xe1\xb5r\xd9\xf7zq\xb4\xa8\x7fp\xff\xbeeL\x8df\x1f\xcal\xe3&\xf2s&\x8doi\x19\xba\xfa\xcaT\x94x\xf2\xc4\x8f\xe2\xe8r\x19\xe7\xe9\xd3\xa7\x84\xa8tn\x95\xaf\xfah\x99v\xe6\xf4\xe0\x8dB;\x06\x82#\xc1\x98\x9e9\x85\x12\xd5RN\x0c\x17\xca\x15\xe3\xb6\x14Dm*\x14\x95\x8aUKA\xc55\x9f5q\xcd\x0c\x19\x8e@0\x1cg\x8eR\xde\xda\n\x02\xd0\xb1 \xbc\xda\n\xfa\xd1\xe5\x88-\x9cD7\xb3{ \xdab;(_\xcd\xdb\xe4\xdd\xeaQ\x9a\x9c\xaa\x7f\x1fk|\xcc\xfaS\xd3wh\xb7\x9a\\\xdd\x94b\xe6\xf4\xd4U\x13\xf6u\x8f\xf5!8j\xefk\x16\xcf\xcbx]\x98\x91`\xc6\xc2OY \x03\x16\x8b\x9a\xef.W\x9cEq\xe6\x83\x8a>\x88\xd2`\xc6\xd5P\x07m~\xb0\xce\xe4\xbd\xc0\xac\xd5\x99#\xdcn\xad;[k\x83\x01\x93\x9f\x00+F\xc7\xef\xee\xf4CBF\x05f\x16\xc3\x8f\xc5\xf0\xeb \x12 \xc5\xb4\x14\xd3\xd2|\xb5\n\x03>cY\xacC\xcdc\xfcb\xc5\xa7\x19\x9f1?B\xe8\x0c\x08g\xb1\xfa\xd3|Q\xbfP8\x87\xa8p\x0e\xd9\x13-\xc8u\xd8\xefw\x05\x0d\xdc\xd6p|\x8f\x85\x05f\x89\x1e\x8fE\xdfC\xf16\xe9y,\xef\x0091AS\xddf\x11.\xe5\x95\x16\x0e7\x18,ey^\x7fl>T\xe8\xa5\xc8q\x93\xea\xe0Q\x80\xdd|%\xae\x89\xe4|\x0d\xc4\xce?>b\xe7\x9d\x11\x9b\xa5At\x1ar\x8c\xbf \xd9\x80\x9ba\xf9M&\xde\x16^Ja\xe8\xf7J\x887\x1cp\xba\xa6\xad\x0e\xdey\x8e\xf1\xeeN\xe4/\xc1\x98\x95\xb8\x9fC=y\xab}\xb1\xedA\x1c\x1cL\xe3\xa8\xb8;qu\xc5\xaa)\xd0\x9bri\xb7c\x9fz\x94\xd1\x99\xd1X\xa7\x16>\x00\x14\x7f)\x90]\xcd\xa4\xa8\x0e%|(\xf1\x8bCw\x0b\x17\x05\xfa\xafk\x12\xb9\xc6\xbbL\xf5\x07\xd0f\xe9\xf0q6q\xeb\x0c\x86>\x01I9\x01\xb1\x05\xd8\x91IY\x80\xa4\xbc\x8cg\xbc\x95\xa3\xb8 \x0cm$\x03\xf9\xca\xef\x95`\xfc\xc2875\xd6V@\xeb\xbbZ;M\xea\xc6\x81UL\xba6*\xf1\xec\xd7_\xcb\xebpd\xf8\xcd\xd61k\\\x17\xf8\xa5h\x1d\xb6\x18\x90?X\xf8\xe9\xab\xf3\xa8\xb8[\x1ev\"\xfd\xac\x99A\x1b\x00\x83\xd6\x8d5c7e\xcf\xd8/\x80t\xc5\xd1\x1a[4q:\xd0<\xe5\x18\x07\xb4\x06\xbb\xbe\x9b-\xdd\x02A\x8a\x95\xa1{X\xe6\x05\x83\x9e\xeb\x17\x8fm\x8f\x18\xd4J\xcc<\x07\x7f\x1e:\x8c\xdb\x97\xa6Xp\xbf\xf1\xf6\xd5\xcb\x01\x9eu\x83\xf9\xa55\\\x80z\xd6\\i`\x1f\xaao~\x1d\x96Z\x1c\xc1\x8eY,\xcf\xa6\xfd\xf2\x1a\xe8\xf2\xee\xb2\xdd\x9cL=\xb7\x862\x157\x1f[\x8fYV\x99\xe9\xac\xfd(\xa6dAb\xef\xec@\x1f\xa9\x9d!*:\x1e8\x1bC\x8f\x15\xb3\xa7\x9c\x87T\xe6\xa6\x80\xd5\x80\x1d\xd6\x8f\xa5\xb0},\xf8\xf4}\x01\xc6\xd4c'y\xc6\x12>\xe5\xc1\x19\x9f\xb1_I\x99\x9f\xb1 \x9a\xf1\x0b\xf6+\xe9\xa0\xe7\xb1\x13\xf4\xed\x05\xf7\xa4k`\xb3\xcf\xee\xf7\xb2\x04\xa5o\xd1r:\xfc\xf6\xe9`\xda\n\xe2\x9d\xbc\x8f\xeaWX\xd3jo\x05\x81v;QG\xd6\x99\xc6vY\x9f\x96\xa5x{\xeb-]t0\xddT\xcf\x0d\xa7\xf4\xff;\xac\xc6\xd7\xf8\xc5\xaf\xd7\xe44:\x1d\xe0\nfa\x1cv\xc4\xd9i\x97f\x99lz\x0en n\x85\x0f\x99\x17\xa0\x9e\xb7\xd6i^\x12\xdd\x16\xcc\xed1%\xfc\x02BK~oX\x9fv\xc6\xfa\x10\xb0\xbe\xee`\xae\xfe\x18X\x1f\xde\x00\xeb\xc3[\xc7z\x85\xc2>:\x93\x04\xfe\xa9\x8dk)V\xca\\\xac\x94N(-J\xaf`\xa5\xcc;\xae\x94\x8d\xd5zpz\xcf\xe5\x99l\xdeL\x8e\x8f\xa2O\xfdY\xa1\xc2\x10\x195\x9e\x0da\x80\xd7\xf9{L^\x139\x8a@\xd3\x06\xb7J\xc8Z\xfa%\x13\xe5\xa7K\xd6\xef\xb0L\xcf\xe4\xa5\xb2\x95\x93zln\xae\xf6y\xb7\xd5.\xe0\xb6(\xc0\xb6\xf8\x05\xadc#\xf5\x83vE\x92\x99>\x87(\xfcQR+y\xfd\xef\xa0pR\x7fu\xc5\x86\xec\x1ed\xc0K\xc6F\x8c\xc3\x85I\xb8\xed\x07\x0cZ\xa5\xb5\x0f\x96o\xcfhJ\x02\x17g\x97J\"\x81\xe8\x84\xe2=\xf0\xd8\x1c`\x92\xa37\x1ep\xb1\x13#+\xfa\xdc\x0f\xc3 :-D\x0e)\x83\x95\x03\x8e\xb9\xd9,H\xf84\x0b/Y\x90\xb2(F65N\x04\xd18\xb9\x84\xc0*_\xaf\x92x\xb5)\x88N\xfa5[\xf9\xd3\xf7\xfe)\x1f\xb0\xafR\xce\xbe.\x1a\x1c\x00\xc3Z\xfct\xdc\xaf\xc5:\x9b\xfaa(\x9aX\x0e\xd8\x1b\xee\xcf\xd82N\xb8\xe0\\\x17Y\xb6\x1a\xdd\xbb7?\x19,\xf9\xbd<\xe5\x9bP{\xb3\xfc\x8eu\x91hx(f<\x19\x07\x13v\x007+\x8b\xcb\xa1*\x0d\x89\xc4\xbb\x05/\xcf:\x15\xa2\x19\xa4`\xe5(\x18\xef\x94%\xfcgy\x90\x80TQ?O!\xdf\x1dd\xa9$\x067b\xdc\xa9\xe0H\xdb\xa5k\xa6+\xe61\xbc3\x92\xa1\x0d*\xb4^\xba\xd6B\x1co\x10\xd7\xdd\xd5#\xc6\x10c,\x91\xa4\xdbm\xee\xa4v\x9b\xbb\x8b\x10\xe11\xdb\x80\x10\x91A\xed\x16ucMV\xeaBb\xbcB\xadM\xe4\xd0\x0e\x9a5nvS}\xea\xc8\xf5\x82\x17\x9f\xae7\xbbAx-\xf0cc\xe9\xf8\xe3\xe1\xa4\xd3@X\x17\xd9\x8e\x0d\xa3\xa5[\xd8\xf6\x05k~\xbf\xeeu\x96&s\xa7\xcdWL\x95\x9e\xc5\xba?\xd5\xe5\x85\xec\x80I\xbb(\xe0\xfc4\xf1\xfa\x1b~zx\xb1*\xef\x81\xf7XGG@\xf2K\xca\xf4\x08\xaf\x9c\x82;\x89\xb7ZJ6\xee\xfd\xea\xaf*\xd7\x1b\xef\xfc\xd3\x1e,\xe0\x16k\xb2L\xef &\x9bpD\xa7W\xa2\xe3\xaa\x07\xf58r6\xe0^\xda\xddwiN\x98a,\x05\xb5+UZx\x07\xd9\x84\xbc\x9a\x9bSR~m8\x01ht\xb0T\x99\xa1\xcf\xfcL\xfb\xfa\xcc\xcfx\x8f\xc6J\xa3&\xcemY7\xe1\xa7\xfcbE\\1\xb6\xa1Q7x\x9e4#+-\xd0/v\xec\xe6\xad\x1a\x91\xb6i\x1bn\xdd\xf6\xd4\xe8\xfd\x088\x9b\xc6=\xb4y+\xc620\x03M\x05$\x98;\xf4\xa8\xa9C]iL\x9b\xd3\xb7\xea/YIs>\xc9\xf6Q\xc5V\xa6xl^;\xa9\xb0}\xc1J\xcf\x07z\xc2\xdc\xd3\xa4b7\xf0C\xd0\xe4x\xa7P\xe9\xdfR\xfb\xbd\xe1\x83\xc1\xee@z\x1e\xb8Vkg\xa5\x8f\xe9\xdd\xfb\xee\xa0\x88\x98@Y\xf3\xb6\x19\x1b\x07\xb2\x9d\x07\xa4}\xef\x83\xfb{\x16\x83]\xdfQ\x92\xb9\xdb\x18\x87aG\x8c\x9d\x1fn\xd3n\xa3\xeb&\xca\xa2\xb3\xbdep\x11Di\xc7I\xad/xuf\x19\x13\xd2\xc3\xd4j\xef\x8b\x9f\x1c\xb1\xdeg\x87\x9f\xbfxyx\xfc\xe5\xb3\x97\xbfe\xf1\xad\x90f~\x16L\xbb\x95])\x0c\xefTZ\xfaS]\xa3\xc2\"\x08g\xcf\xd7\xadu\xca\xb3\xcf\x90\x1a@\x84\x9dj\x9d\xe3/\x0f\xdf\xfc\xda\xe1g\xf6\xaa/\xa2 \x0b\xfc\x10\"\x17\xadY\xf5\xb9\xd6\xddu\xaa&<\x82\xbb\xb4\xaa\xc6\xab\x97\xcf\x0f\xad \x94+\xe8\xc7A\x18~\x89\x8eK;\x80\xa4\xa8\xf6Y0\xbbF-\xf1\xb17\xa8($@j\xc3\xa3E\x9c\x0bp\xc86\xbeZ\xcd*\x10\xed:\xc8z\xbd.\xfd\xfd,\x98]\xa7\x1a|.Zv\x86\xcfW/\xdf>\xfb\xfc\xf0\xf8\x9asB\xd5^\x1b\xc8T#k\x0c=\x87\xa2\xc5\x1c\x8dX\xef\xd5\x8f\x0e\xdf\xbcy\xf1\xd9\xe1\xf1\xa7\xcf\xde\x1e\x12\xbc\x8f\xd9Nh%:\xb0\x10\x93\xe0\x8c\xcf`5}\x9e\xc4\xcb\x86\x15\xd9\xe5[S\xeb\xb7fA\xba\n\xfd\xcb\x97p\xe3\xbb\x13G\xce\x80\xf0j\xf5X]\xac\xab\x1e\x8b\xd6H\xd1\xd4\xce_\x13\x1cgK(\xb9B\xed\x11\xa1\x9a;\xaa\xb8a\x8b\xfa}W\n\xb4\xc7\xd1d-\x15\x17AJ;\xf7\x9b\x0f\x8c\xda\xe2\x88.C\xa6\x19y\xa4\xabP\xd6\xd0\xb5k\xf7\xca\xd2\xa1\x1b\xf4\xc5\xd8;\xd6\xe8N\xad.8\x13\xaa\xa7\xed\xb3\x85c\xa4B\xcb#\xb2\xf4Z\x08\xa9\xed\xc6kt{\xa5q\xa9\n\x84E\xda\xba\xf0+\x98\x87\xce\x1d\xd8\xe8^\x94u[C\xac\xba\x8e\x82\xa8\xbdU\xf5(>\xaf\xdd\xa6_=\xd0\x9f\xba)`\xd4\xd9\x14\x90)\xb1\x97\xe0\x16A\xd3\xd9\xed\xb3\xe2 \x9c\x8d\xd8cw\xc1\x88\xf6y\xe8\xa7\xe9\x88\xfdV\x9c3\x1f\xf4!\x19_\xae\xb2 :eY,C\xcf0\x9f%<\xe5\xc9\x19\x9f\x01\xa6\x88\x9ez\xec\xeb_I\xbf\xf60\x16>n\xd8\xd1\xd1\xdd\x8c\x9dp\x06\x11\xf2A\xb4\x0b3\xdac\xef\xf9\xe5\x80}\x86M\x05\x19\xf3S\xe6G\xa5\xc1\xb4j\x11R\xb8?{,\xca\x9c\x07a\xc8\xd2L\xfc=\xe1\xcc\x9fNy\x9a\x06'a\xd1\xb8n.~\x97vRo{\x94\xd8\x0b\x80\xd6A\xea\xa5\x1e\x90~\xad3;L\xe3\xb9Cs\xa2\xd9\x01\x0b\xc7\xd1D\xca\xe9\xbb\xf7\x83\x95\xa7\xcb\xc0\xa1\xb6C\x10{\xe4\x1e\xebu\x9e_1\x95\x02\xb2\x97q\x9eh\xb6\xc2\xa0 \xcb\x16~\xc4\xe2h\xca\x07\xec\xdd\"H\x05\xe4\xe7a0\xcd\xd8\xd2\xbf\x14s3\xcb\xb9h\xc9\xc7Mm\xd0C\x07\xc8gq0s8\xc6\x95_\xc0\x8b\xc7\xa8\x80S\xb6\xa7Y\xff\xab?\xf2#\xb4\xc7\xe5\xfa\xd3\xde\xac\xbd\xc4\x07\xa42\xeb\xd04?\xcf\xe2\x93 \x9aU-\xee\xd7PA\xd3\x81u\x98f#\x98\xd6\x11+\x13\x88\x95\x8e3;b\x9d\x10U\xee\xdc\x11\xc8Te\xe1\xd0Ml\x05\x8f \x12\xc2\xdc\x9fr\x1bB\xc5g`\x87Q\x9a#\x86eXj\xc9\xb3ENDg\x9f\xe5Y\xfci\x10\xcd^\xfbAb\x89TY\x8dR\x19\xd5\x97\x99\x0f\xcbl:@\xee\x1f\xa6T\xbe\xbb\xa4\xbfw\xf5\xc0\x1c\xd7\x1bC\xbb\x8a\x1cC\"\xb6\xedJg\xf2^h4\xce;X\x8e\xad`\xd8\xc6\xf7\xda\xf5\x80sg\x85!w\xa6fm\x97M\xc7\xf9D\x0c:li\xa9\xc1\xef\xb3\xfe\x881\xcd(\x02\xd8\xd6S\xd6d7\x0d\xc6+\xe0\xac{\x05\xb7\xdc\x86H*\x06\x8a\x92w\xdb\xc1\xc0P\xbfmR\xf4\xe7L\xba\xcfN[\x03\x96\xeaO\xe0\x80\x13q;\x13\xb0\xac\x13@\x99\\_\x81_E\x85\x11\x81 \xd1l\x15\x87\xc1\xf4\x92\xfdJ\n(\xfd\x9e\xc3\xeb\xf9\x82G\xb8\x02O\x81\xdd,\x96\xa6\xa8\x02\xc4x\x89\xb3\xdf\xd0\x9d\x03\x96`\xe4\xd2\x85#^\x042\xb0\x11\xd5C\xf4\xe0\x8be\xcf\x8a\xb2\xdd\xa0/\xddA\xcb\xda\x1d8+(\x1ec\xd0\x93\\|\xc7+*7\xd6m\xe0\x15\xcc-\xbe\x13\xa1\x9fY\xf7\xfb\xea\xb1$p\xa4AY\x83\xaf~\"=\xf3Xo\xc9\x93S\xaeB\x1c\xbd\x8c?\xcbW\xa1\xd8\x90\xf9o\xf2\xcb\xd4qG\xec\xb9\x1f\x89m\x17\x8a\xb1(\x8e6\xb1\x99\x14\x08x\xe62\xe2\xc8\x82Q\xca*:=`\xf8Z\xbf\xf5.\x91\x06-\xf8\xb5\xec<\x96\xf4;\xc5\xed^p\xfa\xa9\xbf\xe4\x18\x06]l\xbd\x9dv\xd6\xc7\x02D+\xf0\xf0*\xf6\x044\x92SE\xa7~\x9eJk\xb2\xf3\xb8.\xb6u\\\xb1\xc5\xd5\x0e\xd3\x8e\xab8\x0e\xc9w\x8b\x15P\xe9\xa7\xd8\x1c\x17\"\xf5=\xbfL\x15\x0b,\x19S\xcb\x0dUeB\xd8 -\x16m\x96\x88:{i\xdd\xf70\xb04F\x83\x15\x10\xf1\xcaH\xb2\x96{\x8e\xe2\x81C\xad\xa5\x96]=\xaaL\xe2\xca{(I{\xe1\xd2\xd6#\xb2\xef\xde\xe0^\x98\xf0\xd5\xcc4\xa5\x9b\x13\xe3\x14\xc0\x0b\x1dV\xa4\xdbz<\xbb1\xe0\xad\x00\xb7\x02\xf5\x9a]]\xb6\x1e\x1524\x9e\xa3\x94\xc4\n\xec\xb5/\xd5[1C\xd1\xa9\x87P\x13\xb4\x82\x86)\x83\xd6\xe3\xe3 \x85J`\xe3\xb7\xb1E\x96&H\xaa\x89\xb4\x97\xed\x1d\xac\x88\xea\xaf\xddG\xda\xde\xa5S\x1fO\xac}\x94\xfe\xc1\xa5\x02\xa9\xb3p\x0b\xfa\x87\xf2\xf8d\xc0\xa3\x9f\xe5<\xe7o\xb4\xa6$\x86\xad}z-\x06\xdc\x11N\xca\x16g\xa3\x0e\xb0\xeb\xc3\xea\xd8\x1e\xd6\x97iF\xa2\xce\xb1\xaeT\xd7y{vB\x90\xb6\x12\xb2M\xe42\xab\xa9T\x93\x06sPV\xa2\x89yXP\x91\xd7\xee\xdc\xe9\xf0e\xf5T.\x11r\xb2]\xcf\"\xeag\xfd}\xb6\xdd\xd6>\xab\xc9,\xdb\x8f\x05L\x9e\x88\xb2q\xc4\xfal\xd8\x81O\x85\xe0\x0b\xfbH\x99\xe2\xeb\xfaA\xf8\x00\xe8\xab\"\xda\xad\xa4t\x9b[C\xe7&|\x0e\x0e\xc4\xbc\xca\xbaP6\xeaQi1\x9fq\x19\xcb\xc7>\x90\xc2\xcaWT\xa9\xb1\n\xec\x80Lv\xdcV\x81^\xe0\x10\xacY\x0evuUs2`\xa6\x7f\x85\xf8\xc4\x88-\xc5\xc9W\xa2\x7fq]]\xf0.\xe2\xd3=\xb1\xb9\xe8\xea)q\n@~_P\xc14\xd0\x14w=\xb7\x06\x91\x9c^\xad-'\xde\x04\x84\xe5\x15c\x97\x88\x9f\xb3cOO\xac\xf8\x10\xc1h\xc8Z&\x85\xe22\xa8_>\x90!O\x9d\x95n\x00\x9e\xb9\xae\xc7VN\xe6\xb1S\xf5\xc2\xd5\xcb%\xec\xb0u\xb5\x08\\EP\xc1\xe6\x0bMI\xbd\x98\xe3\x82\xacB\xef\x1c*\xda=\xd6\xc3\xc0\x07pnr\x06\x83\x81`\x98M\xd1\x16NO\xb0\\\xa15\n\xf3\xd9\xd7\xd8\xc0\xd7\x92\x93\x04f:u\xf5\xf1\xcb@%N-I\x86\x9bj\xe4w\x9a,\x93n`\xd0s\xd6\x12\xd3\x0c\x0co\xca\xe2\x91cs\xe6g\xa7zr\x00F\x0cg\xee\xca\xe0\x96\xc3\xfb;\x10\xdd\xf2v\xc7\xb3\xbdG\xdb\xe2)\x1b\x00\xb1\xd5\xc5.Ek\xfd\x12*5Z\x0b\xc1X\x1f\xeby\x96#$\x8f\xf2%O\xd0\x01\xfe\x86%\xd0\xe8)\xef*]Q[\xf3\x80\x96\xb5\x13b\x82\xc6\xbe\x07\xdf{\xbf\x83[\xe9\xb7D\x93\x8e\x9d'\x1b\xcf\xea\x08\xc4\xf6\xd9\xd0Bv\x18uz\xb8\xc1\xfao\xa3E\x80\xb7\x9e\x14A\xe3M\xa3*\xca\x927\x95\xe0&\xf5 >Iyr&\x86.\xce\xdcp\x0bXK\x1a\xc9\xa0\xbc\xe2P\xad\x12{\x10\xd1]+\xb4\x8fvr\x19:\xc7\xd6\n\x92;\xf0\xf7\x02\x91\x8a\x80\xc7\xf0\xcf\x00Bn\xa4\x98[\x8fYP\x11\xf0\x04\xb4\xcb\xa2\xb3\xc2)N@\xc8f\xb6<\x1a\xc4|\xecO\xf0\xe2\xa7xA\x07G\xb6\xbd\x8ai\"\x11\xbd\xc7u\xeb\xab-\x93\xd8\xa6\x16F\x8a\xe6\xbc6:\x08\xca\xaa +\x04\x04E\xc5F\x91\xe9\x99\xe6a\xabY\xf2\x85\x07C\xec\xbamm\xeaO\x06\x1e\xc7\x04;\xfb\xe2\xe5\x8bw\x8d\xc5?\xb4\\Q\xd5No\xb1\xcb\xb2E\x12\x9f\x83P\x05n\x119w\xdf\xf0Y>\xe5 \xeb\xdde}\x96\x81\x1b\x90\x9e\xc4`>c\xc5V\xc9fy\x82*[\x90 \x05\xdfH\xe3\x9b\x17sT\xaf\x81\xd8g\xe5\xa7)j\xe2DZ\"[\x0e\xd2\xb2\x19\x8f]\xc69\xca5\xf8\xc5*\x0c\xa6A\x16^\x16\x0bf\xc1U\xfb\xd8\xe0\x80\xbd\xab'\x81\xfe-\x8a\xc1B\xb0h\x15\xba!\x1a\x9e\xc5\xd1\xdd\x8c\x9d\xfbQ&:\x91\xf2\x8c\xf9\xd2\x01\x81X'\xa0\xbf\x93\xbd\xc2\x8eL\xfd\x08\x0c?\x80\xb9\x91\x86\x83,\x9ek-7\xb9\x96\x11\xd3\x1f -\x10\xad^\xdc{\xfd\xe6\xd5\xa7\x87\xc7_\xbd\xfc\xcd\x97\xaf~\xfc\xf2\xf8\xd9\xf3w/^\xbd<\xee\xb1>\xfb\xd2\xcf\x16\x83\xc4\x8ff\xf1\xd2q+\xa1\xcd\xb5\xe0\x9e{\xee ]\x85A\xe6\xf4z*\x80o\xe3\xe7k\x93\xdb\x15\xbd\x10\xb5\xe8\xed\x86\x01>\xdd\x00K@\xbb\xbfJ\xe2\x13\xf1\x1ed\x0b\xe63\x1c6|v\xc0>\x83 \x12\xcb5\x8b\xd9\xc2\x8ff!z\x99P\x98\xce\xfa\xec.\x8b\x13\x16g\x0b\x9e0\x1f\xd6 \x88\x18z\x08\xe1Ozh\xd6\xb5\xf2\xd1<\x8a_\x82\x8d\xd54\x06/\xa3 X\x96\x06g\x80:\x85yO\x81q\x1a\x9aM\xf3$\x01\xa3\x03\xc0)\x81\x1c~t\xc9\xf2\xe8}\x14\x9fG\xea\xbb\x1e\xcb\xa3\x90\xa7)\x0b\xb2\x1a\x12\x07\x11;_\x04\xd3\x05\xde \xa4>PAZ\x8f%\xfc\xd4Of\xd0X\x8c+\x06\xbf!\xc1\xd2\x0d\xcd\xd1\xa9\x86\xc0\xd9\x13D\xd9\xc1]\x8b&\x86\xd0\xfe95\xd3\xa0\xca\x01\xd3(\x0e\xc2\xf1\x06\xfa\xddEo)\x96\x87\xd83\x0b\x9d\xa4\xd2`\xc6\xb2\x12\x14\xc9\x80\x8f\xb2\xf8*/\xbd\xbc\x88\xceb4\xdcz\xed'>\x84u\xff\xb2\xf0\xb1\x9b\x15\xac\x84\xf4\xf4@\x124\xf0\x16$\xb6\xae]\x97\xd8\xbbD\xd6\x83]#+(\xb2\xf6\\\xf2X\xeb[\x95\xba\xd2v\xa4\xb2\xfey\xf3\xfa\xb7\x1e\xc0\xb5\x05_\x1bj\xa2\xe6\xd8[\x0bd\xb1^\x8d\x82\xff/1\xe9\x15\xbds\x04\xe5%\xa61P3L\xcdU\xf0}\xcf\x15E\x9c\xed\x8e\x9f\x82\x1a\x89\xa6\x0e\xb5\x1b\x81\xa4\xb9\xa5'\xbb\xb7Y\x9cp6\x8b9zc^\xf8g\x1c%\xf3\xc1L\xc9\x1c\x06\xecK\xff=g\xf2*//#\x8c\x94J\x85\xfa\xe6\x1b\xa4\xday\xf7|\x11\xa7\x1c\xa7&\x05\x99\xb0l7\x1d\x10\xc1k}I'\x0b\x14s\x0d\xed\x13\xba\x0d-\xb6\x84\x17\x19\xaaM\x07A\xaa^\xf5\xb8.\x85\xbbd\x1f$\xd8A\x8aB\x91\xe2\\\x9e\xd5\xa2\xa2\xa8\xc1e18&\x88*\x81\xdf^,\x979\xc4\x83/\xbeZ\xdec\x9a\xc7a\x18\x9f\x07\xd1\xa9rx\x10\x80S\xaa\xbb\xac\xcf\x02T\x1a\xdc\xedy\xacw\x17eL\x83\xbb\xe6\xd8\xe1\xc0%f\xef-\xff\x19(#\xf0\\\xe8\x0e\xe6A\x98\xf1\xa4\xe5\xa8 \xc7\xbba\xdc\xdf\xaa\x1da\xeaZ)Y/\xd7e\xc0\x07\xac\xa7]\x19\x04\x81\x04^\x94,J\x1d\xb0\x9e\xf2\xeb\xd0c\xa3\xe2G\xc0S\x14\x97\xe1\xc0ss\xe0l\x1e\xe7\x118\xa5\xbe\xab&E\x03\x7f\x16\xb3y\x10\x15a\x83\x04\\Q\xf0\xaf\xe4_\x853 \xbcC.\xc5\x1a\x0dp\xd6\xef>\x96\x9dD\xff\x13'\\J\xeaf\x83\xbbuw\xca\xb7\xbf\x1b\xde\x1aE\xf3\xd6\"\x0euo\x9c]tH\xa4d\x13UH\xa0\x1a\x12X\xaed\xa7\x97+)\x0bEQ\xe7\xad\xc8?\xeb\x02(M\xb6y+\x13\xa4W\xacB\xab\xa0\xd0b\xd7\xae\x07\x00/\xe7\xa9:#]>\x199\x8fP\xc4\xfd\xe8\xa1[\xedy\xe4<\xd8\xdb\xead\xe0Y\x1e\xa1\x87\x86\xafC\xe9l\xf0\x91\xeb\xf4\x8a\xd8\xe0\xa4\xad\xf3\xde\x96\xc5\x8a;r\x86\x0f\\\x8d\x8a\xaeq*\xb0\x1d\x084ER6\x8e\xd1c\xad\x16\xbb\x1c\xee\x14@4\x81:\xcdJ\x1c]~\xd7 \xc0\xcdV\x86\xf7~\xe2\xfc\xca\xf6\xd6\xd5Q\xea~\xe2\xfc\xd4?\xf3\xd3i\x12\xac\xb2\xab\x99\x9f\xf9\xee\xbd`i\xc2\xf2\xde\xf8'G\x17\xdb[\x9bG\x17{\x87\x93{\xa7\xf5\"\x01\xb69\xfe\xc9h\xd2wG\xf7N\x97\xe6qk\xdc\x1b\x08Bt\xaf7\xa1\xe1]\x05h\xeaGA\x16|\xc3\xbfJ\xc26a\xd5\x99\xb4\xb5\xf1\xe4\x8e!\xaf\x95\x89cA\x8fRKw\x12\x10j\x05\xfd\x010\xec\xaf\xe6\x0e\x1foM\\\xf6\x94m\x12\xee\x97\x9d\xdc\x95&\xe7N\x04\x12\xc0\xa5\x9fM\x17N\xe0\x8ad4\xd9\x11\x873\x96\x0c2\x9ef\xe8\xb6\xa4\xe7\x9f\xc4y6: \xfd\xe8\xbd\xd86r\xb8\x1d\xae'V\xbe\xb3\xa6\x15e\xb9<\x1e\xd8\xec\xff\x1f\x0e]#\xdci\xc3f\n.\xa2\x07Y\xfcE|\xce\x93\xe7~\xca\x1dpG\x02\xfa\xa3\x03&\x90\x94\x8d\x0c\x1f\x1f\x96\xe5\x15\xaf7\x84]\xca\x9e>r\xb6\x1f\xda\x96\xaf}z\x95\xb0\xdbI\x1c\xeeVG\xb3\xe6\x1a+\xbb\xb7W\x17]|/\xa6\xe4`H\xdelF\xde\x0d$g\xff\xbf1y1\xc7\xf5 \x8e\xba\xd9\x8cw\x03t!d\xb9\x96\xe5\xb8\xbe\xa2)\x84\x13\xeb\xc1r\xa3g\x8f\xf2\xaf\x0b\xcb\xea\x9aCh\x96\xf5\x80\xc5\x03\x19\x94@\x814F\x12\x18 \xd1\x90\xe2y\xa34\x93\xa8\x0e\x96\x91hd\x91\x0d\xa6\x0b?y\x969[\x16%L*\xcb'N\xe4\xb1\xa1\xb2P\x82\x08!\xd9 \x0d\x83)w\x1a\"\xb0\xe4c>\x01\xc5wU\xd8\x7fm\xda\xbb\xfd\xb0\x1d\xc4\xf6cl\x0c;\x9a\x14\xdf\x93\x98T,2\xe9\x02\xea\x80\xc5\x82w\xf7\xd8\x06\x98\x01D\xec\xe9>\x8b\x95Ux\xf1\xa9\xeb\x8e\xe6\xc1^\x9d l\xc1\xbb\x9b\xd0g\x8e\x08\x02\x97\xb4\x92\xf6\xc5b\xe3h[\xbf\xc4Ks\xb65>\xa1\x10\xb97>:\xcag\x0f\xb7\xb66\xc5\xff\xf9|^\xbf\xf4\x96\xa8B[;Xhkgw~t\x94\xcf\xf96\xfc\x9c\xf3m\xf1s{k\x06?\xb7\xb7\xcc&\xe0\xc6\x00|fg:\xc6\xcf\x9c\xd8>\x07\x86~\xe3\x9f\xb4t\n.\xf49\x07#\xbd\xd1\x19\xdf\x85\xe2\xb3\xf9|\xe2\xfe|\xfb\x03y\xc5Oo\xf7d>\x9f@\xc2\xd4\xfe\xa1T~\xa8\x08\xe1sU\x84\x01r\xc5[\xef\xa0V!T\x9f\x99\xf3-\x8e\xff\xe6\x93\x03\x15\xe1\xc9\x91\x9d\xde\xde\xda\x9a\xc9V\xc7\x18\x93)\x9f\xc8\x95~\x85A\xe2\\k\x1b=\xf7\x93\xfaY`\xaa\xf5r\x1c\xa8\xae\x1e\xf4\xf0\x1a<(\x08\xa3z\xfb\xb5~\xcf\xd9\xbe\x0c\x8c\xe0\xc0\xe8\x9c\x83\xfdr\xa40\xe8)F\x8a\xec\x9d\xf6\xae\xbb&\xb8\xe4*\xe7p_t<\xb9\xee2\xde~hc\x08m\xcb\x98\xf2%/G\xdb\x1b\xdf\xfdo\xbf\xf3\xbb\x93\xde\x8dF\xd6\xbc\x9d\xa8\xdd\xdd \x1c\xb1o\x14,\xbe\x0f,\xbe\x0b\xce\x1ez\xbd\x1b\xdd9\xd2h\x9c\x058\x06\x0b\n\x87\x9e\xf1\xd1\xc5T\x1c\x8bf\xbbG\x17\xb3\x87\x9bG\x17\xf3\xdd\xa3\x8b9\xbc\xcc\x8f\xf2\xad\xa1X\x19\xf9\xd6po>\xb9w\xda\x00\xc2u\xc9\xc3M`\xed\x80\xd0\x1a\xa4\x82 \xa9U\xd0\x0c<\x96\xd4a{} \xdew\x9d\xea\xd7{\x7f\xf8;\xbd\x11\xeb=\xab\xad\x9b\xde\x1f\xfe1:\xf9\x8f\xd3\xc9\x7f\x82N\xfe\x1f\xe8\xe4?I'\xffC\x91\xec\x1b\xc9\xff\x88N\xfe\xc7t\xf2?\xa1\x93\xff)\x9d\xfc\xcf\xe8\xe4?-\x92\x9f\x1b\xc9\xff\\$O\x8d\xe4\xbf\"\x92\xeb\xde\xf1{\x7f\xf8\xefD\xf2\xccH\xfe3\"\xb9\xee;\xbe\xf7\x87\x7f\x96N\xfest\xf2\x9f\xa7\x93\xffg\x91\xcc\x8d\xe4\xff\x85N\xfe\x17t\xf2\xbf\xa4\x93\xff\x82H~a$\xffE:\xf9/\xd1\xc9\x7f\x99N\xfeW\"90\x92\xff5\x9d\xfco\xe8\xe4\x7fK'\xffU\x91\xfc\xd2H\xfe\xf7\"92\x92\xffG\x91\xfc\xcaH\xfe\x9f\xe8\xe4\xbfF'\xffu:\xf9o\xd0\xc9\x7f\x8bN\xfe\x0f\"96\x92\xff#\x9d\xfc\xbf\xd2\xc9\xff\x1b\x9d\xfc\xbf\xd3\xc9\xff\x89N\xfe]\x91\xfc\x95\x91\xfc\xb7\xe9\xe4\xbfC'\xff]:\xf9\xff\x14\xc9\xb9\x91\xfc\x7f\xd1\xc9\xff\x99N\xfe/t\xf2\xdf\x13\xc9\xf5\xd8\x01\xbd?\xfc}\x91|i$\xff\x01\x9d\xfc\xa7D\xf23s9\xfc\x9eH\xf7\xcd\xf4\xbf/\xd2\xdf-\x8c\xf4\xff*\xd233\xfd\x1f\x88\xf44\xad\xa7\x7fK\x93\xe5oi\xfa\xfb-Mh\xbf\x05\"n\x90\xb7o\xff\x04\x9d\xfc'\xe9d\x80\x80A\x0c\xbf\xfd3t\xf2\x9f\xa3\x93\xff\x02\x9d\x0c\x84\xd6\xa0\xa8\xdf\xfeY:\xf9\xcf\xd3\xc9\x7f\x91N\x06\x12d\x90\xe5oij\xfd-P&\x83Z\x7f\xfbW\xe9d \x13\x06\xfd\xfd\xf6\xaf\xd1\xc9\x7f\x83N\xfe[t\xf2\xdf\xa6\x93\x81\x04\x19\xf8\xf6\xed_\xa7\x93\xff&\x9d\xfc\xbbt\xf2\xdf\xa1\x93a\xcd\xfe\x9a\x91\xfc\xf7\xe9\xe4\x7fH'\xffc:\x19\x16\xe7\xa9\x91\xfc\x0f\xe8\xe4\x7fD'\xff\x13:\x196\xfb_7\x92\x7f\x8fN\x06\x1e\xc0X\x98\xdf\xfes:\x19\xb6Xc\x07\xfb\xf6_\xd0\xc9\xff\x8aN\xfe7t\xf2\xbf\xa3\x93a\xfb66\xb6o\xff%\x9dLo\x9a\xdf\xd2\xbb\xe3\xb7\xff\x9eN\x86\xed\xe47\x8cd\xd8N~j$\xc3v\xf2\x9bF\xf2\xff!\x92\xdf\x1b\xc9\xff\x89N\x86\x9d\xe0\x0b#\xf9?\xd3\xc9\xbfO'\xff\x01\x99\xfc\xdd\x1f\xa3K\xc3.\x13\x1a\xc9\xff\x85N\xfe\xafd\xf2w\xbfC'\xffq:\x19H\xaf\xc1\x8d|\xf7'\xe9\xe4?M'\xff9:\x196\x01\x83\xa5\xf9\xeeO\xd1\xc9\x7f\x86N\xfe\xf3t2\xd0o\x83I\xf9\xee/\xd1\xc9\x7f\x85N\x06Bm\xf0\x17\xdf\xfde:\xf9\xaf\xd2\xc9@c\xdf\x18\xc9\x7f\x83N\xfe[t2P\xcd\xc4H\xfe\x9bt\xf2\xef\xd2\xc9@\xa8\xdf\x1a\xc9\x7f\x97N\xfe\xfbt\xf2?\xa4\x93\x81\"\x1b\\\xc1w\x7f\x8fN\xfe\x07t\xf2?\xa2\x93\x81\"\xbf3\x92\xff)\x9d\xfc{t2\x90\xde\xccH\xfegt\xf2?\xa7\x93\x81\x98\x1aL\xe1w\xff\x82N\xfeWt\xf2\xbf\xa1\x93\xff\x1d\x9d\xfc\x1f\xe8d\xa0\xb1\x06\x0b\xf9\xdd\xbf\xa4\x93\xff5\x9d\xfco\xe9\xe4\x7fO'\xffG:\x19H\xef\x8f\x8dd \xbd\xe7F2\x90^\x83\xc7\xfd\x0eH\xaf\xc1\xcc~\xf7\x9f\xe8\xd2@z\x7f\xdbH\xfe\xcft\xf2\xef\xd3\xc9@L\xbf1\x92\xff\x0b\x9d\xfc_\xc9\xe4oav^\x98\x1b\x0f\xc0*0v\x9e\xef\xf0\xb8fp.\xdf\x01\xb3\x14\x9b\xe9\xc0X\xde5\xc9\x1b\xec\x1bi\xa9\xd9\xb5)Hi\x8f>\xd7\x16rw\x12\xb0\x11\xce\xd4F`\xa3[\xa9p\x03\xc9Z=\xf6\xa3\x12;R\x96\xdf\x84\xc4M\x9am?l\xf7\xbcG\xabT\n\x0b\xc5}\xd0+x\xba\xea\x04u\xf4\xfa\xc0AA%\xd5\x10~\xa9\x86\x80\x00T(\x87\xcd\xba\xc9a)\xb5\x01\x18Tlmm\x1e]l\xcf\x8f.v\xfc\xcd\xa3\x8b\xfb[G\x17\x0fN6\x8f.v\xb7\x8e.\xf6\xc4\xcb\xde|\xd2\xbfw]%\xa3\xeadt\x93N\xfa\x9b\xdfL\xc6\xcf6\x7f{r\x05\x7f\x7f\xbe\xed}\x80\xb4\xab\xf1\xd6\xe6\xa3\x89x\xc5L\xf9\x02\xa9W\xe3\x9f\xe0\xcf\xad\xcdGlr\xef\x9a\xdd\x8f\xd0Pb-\xb5O\xa1\x939:\xba\xf0\xa7GG\x17'\xc3\xa3\xa3\x8b\xd9\xde\xd1\xd1\xc5\\\xfc\x01\x01\xab\x008B\x1c@\x8e0\x07\xa0#\xd4\x8f.NP\xe0\xba%\x05\xae\xbbsvt\x94\x89\xea'GG\xa2\xae\xbf\x05r\xd9\xf9\xfc\xe8(::J\xa0\xd0\xf6C\xfc\xf7\xe8\xe8(\x1f\xee>\x14%\x86\x0fA\xf9 \x1a\xc2\x7fC\xfc\xb7\x8d\xffv\xf0\xdf}\xfc\xf7\x00\xff\xed\xe2\xbf=\xfc\x87mn=\xc2\x7f>~\x01;\xf7@\xfc\xdb\xd9\xda\xda\xaa\x11\x18\xd46\xf5X\x9fE\xac\xcfz\x16M\xd2\xac\xdf3\x17\x1cH\xa1\xb7\xf7\xe4\xb0\xf7Nh\xa5\x91\x98j\x01\xd4\xb9\x80\xd4|\xf7\x08\xa5\xddG\x17\xa6\xea''5Q\xaak\xa0\x18\xa9}\xd0\xda\xf4\xb3\xcd\xdf>BA;H\xdaQ\xd4~t1\xe36u\xd3\x1az\xad\xf0Zz-\xd0\x18\x8d;\xf7k\xae)\x98\xfcB\x0d\x96S\x8a\xa4\x95Vt\xda\\t&\x8b\xae\xa9>\xb8\xb2\xa9\x12\xdd\xba2naU\xc6\xcd,\xca8R\xf5\xc8R\x8f\x85\x9d\xf4s3Z?wV\xd1\xcf\xd1\xed\x89\xbc\xda}\xcbe\xa9b\x19OQ\xa3\xa7\xe0\xdf\x17`\x03\xc5\x95s0\x9a]\x85\xe1\xd5\xf2*\xe1W\xe9Uvu\xc6]\xf7@\xaa\xef\xc6\x89\xc7\xa6\x1e\xeb\xfd\xb0g\xaa\xff\xd8\xcah\xe8\xb3\xab/\xbe\xb8\xfa\xf2\xea\xcd\xe1\xd5\xdb\xabwW?:\xac5\xc4\xfalnk\xac\xec\xdf\xbcK\xffT\x8d\xb6\xcf\xf79\xc0\x1d\xeb\x87\xd7\xa6\xec\x1b\xce\x06\xd8t \xea\xa6l\x10\xc0\x14\x97\x1d\xb0\x15\x18A#\xe3\xef\x17\x0eG\xd9Z\xa8S\xdc\xb5~d\xbdk}o\xfc\x93\xc1\xa4\xff\xc3{\x03~\xc1\xa7N,z\x10\xc35\xb1\xf2m\xf0\xe2\xf0\xf8\xf5\x9bW\xef^\x81\x91~\x0f\xac\xb8{\xe8\xc8\xd1I\x93\xa9{<\x1c\xa0E\xd3\x88\xf5z\xd7\x85\xc4F >\x18@`\xd6k\x8c\x14\x91~\xcf\x1d\xf7\x8e\x8f\xa7q\xc27\x7f\x9a\x1e\xa7\x0b?\xe1\xb3\xe3c\x9b\x95\xfdu\xa5\nv\xdf6\xed2\x83\xf6s[7\xb0\xa9\xad\x01\x88\xcb\xc2\x87\xcd\xe3\xce\x1de\xde[!JcN{\x05)\xe9\xd2\xe6>\xcb\xd8\x01\x1b\xb2\x11l\xda\xd7\x05\xbf\xa0\x9e\xc4 \xeb\xf88\x8cg~\xba8\x16{\xfdqqg\xe8\xf8\x988v\xb5\xb8OX\x17\xb9*PR\xf0\xa8\x02#\x983\xc7pZ\xcc\xb4\xf3sf\xc0\x8fULN\xf7\xd1\xa6\xb4\x98\xee\xa6@J\xb2VPx\x15\x86\x95.\xbeP\xd8\xfd\xde.\xf0\xbf\x7fx\x16\xc6\xe7\x07\xd5+>0\xc4X\x1b\xf8\xed\x0e\xb4\x01\xcb\xda\x06\xd9\xe4=\xacu\x9c\xe5\"\xeaW\x17#rdC\x8fEb\xe8\xfbh\x8d\xaf\x89\xd82i\x9d\x9c!\x83pS\x02\xd1\xc6\x96\x8c'\xb7\xc4\x88\x0cw(\xf6\x18\x83\xd7h\xcc\xd8*\x0c\xa6\xbc\x0d\xf2\x9d\xd0\x8bf}\x13D\"rN6\x9c\x88=A\xc7\x11N\x04\x9e\xa0\xd4\xd5\xd4M6\x14\xebm\xb0\x8a\xd1WD\x89\x8f`\x1e\xef\xb1\xcd\xcd\x02H\x1e\xdb\xba\xd6\x9e[@\xe9\x174z\x1c\xbb.\xba\x1dG\x93\xf1\xb0m\x0b\xba\xd5\xa1\x146\xaa\xd5\xb1\x08rW\xb91\xf6\x11\xba\xd2u5\x9b\x80\x8d\x01\xb0\x91\x15\xb0\xb1\x04\xac\xd3\xefkH\x12a\xec\xd0\xb1\xf8\xf0\xc4\x85\x08P\xe3X\xc0[F9j_\xdb\x0d\xc3\xddn\x1d\xae\x0d\x89\x12\x15\xf9\xcd\x95G+\xdb-\xa1\xebr\x01\xad\x14\xc9\x8e\xdf\xd2S\x1d\xd9\x9d\x1e\x9e\xe8\xd1\x81\x1b\xf0\x9bQ\xbe<\xe1\x89\x96\x90\x02\xe7\xa9%\x9c\xc4q\xc8}\xe9\xf4M\xf0\xa6\xc7\xc7@\x89\x8e\x8f{2\x10\xc0Hs\xce\xf7}\xceFe\x1d\xc0d\x9c\xf2\x0eb\xfc\x8f\xdc\x07\xdc\xa1>f\x1f\x1a\x16a\xd9\x0fz\x05F\x80\x8c4e\x03\xc1\x034\xeeU7\xdeHnk\xc8\x8a\xc9\x8d\xf7fK\x8f\xb6{7\xae\x8eI\xe5\xdc\xfdV\x90X\xa6\xa5(\x80{\x10\xe9u\xef\xac\xe2w\x9d\xbcI\x06\x8e/b's\xa9\xfa\xaa\x8dT\x11\xb8\x1d\xa2\x05&o\xaa\x05\xe0{(j\xec\xbb\xfe\xc8q\xa4N>\xe6\x13\xb8|\x90wu3k\xa6\x9cI\x8f\xbc\xbc\x00\x87\x95\xf3\x0ea'a\x07,\x1f\xa7\xc0C\x87\x82\xc1\x0c F\x9a\xb1\x1bH\x03w\x87\xf5[ \xf2\x02\x84!`AL\xd8~\xd4*A\xb2\x12\xc6\xd8F\xa3\x87\x15&\xe6\xce\x1d\x96\x8d\xb7&\xe3\xed \xde\x19\x14\xef[\x82\xbd\x13/\xc3\x89\xd8\x82\x8ao5\xdd`\x8e\xa4\x13Q\x88\xb6\x16QAB\xaf\x0d\xb5\xa1qwF]\x8d\xa3\xa064%U\xdbm0\xc4\xaf\x0bd#\x80\x99\x02\x1d\x91n4\x8d\xe1\x0b\x04K\xcd\xe4)\xdbg\x1b\xb9y8,\xce\xf4\x85\xdf\x98\x8dZ\xfc\n\x10\xb0\xf2\x8a\xc7\x03\x96nnZ\xa5\xabs\xd1\xbdqjq}=\x85`\xa18\xbbs\xc1G\xc0\x166\x9e\x8f\xb7&\x02\xb97\x1c\xf1\x06b\x92\xd2\x93\xcdFS\xac\x0f\xe8\xdec\xd6\xef\xa7\xec \x0b\xad\xbdZ\xb1}\xe6\xa8\xae\xb9V\xe7i3\x10\x0d\xaf,\xb9\x0b1IV\xaf\xde\xc5\xd0l\x04\xa5\xe6\x90\x04B\xdco8\xab\xe6\xd1\x8aG\xc6}\xb7\xd3\xbe3\x86Q)\x1bBQ\xe7.\x94\\\xb2}\x96;3\x8f-<\xb6\xc2U\xe1\xb13\x0b\xc5\x04\xba\xabwy f\x12\x0b\x8f\xcd<\x16\xb0+y_\xeeL,\xcae\xf3\x08\x1afP\xd5\xba\xc1\xa1\xad\xf5\xeai}J\xea\x07HT\xd1\xacu\x86\xbc\x01\x8b\xd8~\x04\xca:\xf3\xb5\xa2\xac\xe4\xd5o\xbd\xc3\xfa\xc7T\x7f\xbb\xf1x\xb7\xf4\xad\x9b\xf2r\x16\x8d\xe0C\xea~\x9fH\xaf\x97\x07b\xbd\xd5\xead\xa1\xeb\xa9\x8c \xbfLy\xd9\x8a\xe7ft1\xa6\xb1G\x91\xa5\x15V\xf0Gb\xab+\xdcT=a>\xdbd\xc3bM\xe6\x95\x83\\\x15\xd3\xfb\xfdH\xa2\x90H5\x9b7\xc6!\x17L\xe0\xe4\x1d\\M[\xf8Z\xc5\xd6\xde\x90\x93\xb5n\xc5u1\x9ade\xb7\xa9x\xa7\"\x9d\xd2\x1c \x14\xaa\xab?Sl\xbf\xaeq\x08ew\xea\xcdL%\xdfTO\x9f\x9b\x9c\xc1J\x0f\xac\xfaLy\xf0\xac\x9b\x97\xcc\xaa\xa5\x12\xff\xb2^b\xa1\x97\xc0M\xbb^\xe4\xec\xe6\xc2S\xc5\xa2,=v\xea\xb1K\n\xffO\x04+\xe2PG\xa1c\xc8\xc9\x88\x9cs\xb6\xcfN\xd8\x01\x9b\xb1\x11\xcb\xc9\xba\x87l\x9f\x1d\x17%\xa86.\xc4^/\x1a:\x17\x9c\xcd\x8a\x1d\xb0\x05\x1b\xb1sW\xfc\"8\xa6\xb7\xa2\xb8h\xf5P/~h+\xfe\\5|h.\xe7\xe7bK\x0fA\xd7e\xaedX\xa5!\x9cb\x8a\x8d\xd2\\l'\xe0+\xc5\x83A42>\xc5\xf76.\x8a\x06/A*x\xa964\xd7c'\"e\x8a\"\xdb\x98\x98\xb5\x11\x0bd\xeay%\xc3\x1c\xdb\x86\x13\xb1;lN\x0eM\xcc\xf6{\xb6\xcf.@\x0c\\\xb8\x96\xe9\x1d\x1f\x9f'\xfej\x05\x82jb\xa2\xc4\xf3\x8c\xed\xb3\xb7Z\xb5\xac^\x8d&w\xef\xc5\xb8\x9e5\x9d\x07_\xb1}\xf6\x9e\x1d0>\x00Wr \x11mp\x9a\xfe\x9a\xed\xb3g >-\x8bg4[d\x05\xf6\xa9\xf3\xcac\xaf\x15\x1c/\xdb|^\xd3l\xd0\x06L\xaac\xb6\xee\x9b\xd3w\xfd\xad\xd1\xd8\xea\xe4\xc1o\x9b6\x96\xd9\xdd\x1ev\xf5\xe3zv\xcbf\x1du.M\xb7\xef\x80\x02\xfel\xe6\x80w\xe1\x1a0\xc4\xe3k\xf4\xcd\x9f\xcd\xc0\xabP\x99\"\xb6D4\xca\xf0\x0d\xfb\x8b\xa0jj\xe1\x93\xf0\xad\x037\xba\x99\xae\xa6\x13O$w\xd3\xc8\xed\xb4s~\x9f\x8cX\xfb\xb7\xec\xbae\x00\xbb\x93\xb5}\xc2\x8a\xd06/I\x86\xb9\x93d\xf5\xb6(7\x17\x14\xdf\x90K\xfc\xafo\xf8\xa9L\xaf\xb7\x13\x9a\x1b\xbb\xe0\x01\xb6\xcd\xed\xbf\xd8\xa3?E o}\x93\xae\xf0\x03\x9f\xf9\x99aiZa\x05\xc0\xa3e#+\xf0\xa5\xbf\xa2\xf8\x00-\xd8\xfb\xf2\x84\x1bM,\xf5\"h\x97R/r\xaa\x17y\xcb\x0dn\xe3\xb2\x92\x0f\x12\xf0z\x91\x93J\x11\x10\x81\xd7\x8b\x1c\x1b\x8c\xcf\xa7\xf9|nv\xf8\xbc\x066\xffG\x01?\xaf\x17:,\x9c\xaa\x15\xeb\xde\xe2\x9b\xea\x02\x18\x83\x03v\x88\xfb\xc2\xabyg\xd7k\x8aX'\x1e;\xf4\xd8[\x8f=\xaf\xe3~z\x1e\x80\x0f4R\x8e\x05q\xdc\xceGF:\x93; \x1f\x9c\\f\xfc\x0bd\xf77\xc41P\xfb}u\xc50\xff\xd5|\x9e\xf2\xac\xcc\xc7\xdf\x8d\x1c\x88x8x\xa3:\x01\x00{\xd2\x1b \xfe2\xcbCG\x8f\xe9\x8e\x16:\xcb\xb6\xden\xbcu\x04u\x8f1\x18\x0c\xbce\xaeKl\xfe\xf0\xb5\xb9\xf95H_Y\xd2\xcf\x1a{\x178}\xee\xb1>%y\x86\xda\xb3\xc6\xda|\x10\x81Oq1&x\x03O+K\xe53\x1c\xc2\x9d\xe0\x0fK\xf3KK\xa7/\x9b?\x8b\xfa\xa0~\xc5(\xa9R\x7fA\xd7W\xbcZn\xa9vj\xaf\xf6\x0c5\xfd,\xb4\x8b\x8b\x80/sD\xfb)x{\x85\xb3\xde\x86\x12R\x00\xbb\xfa\xac\x15\xfb\x14\xfb\xf6\\\n\x1b\xec\x9f{U\xb4\xf5\n\xe0aa\xd8\xd8\xd5>\x9bz\xecyy\x14\xb5\x7f\xf858\xb4{\x0f\x88\xf8\x1eC\x15\x94\x0b\xb8\x91!|^\nm<\xf6\xda\x02\xde\x13\xfb\x8a.\xf9\xf8\x0b\xe55P\x0cJ\xfe\xb0J\xaf\x99\xb6\xce\xda\x94\xcf\xed[\xf4\xba\xec\x9c\x0c\xe1\x04\xd3K\xcb\xaa\xb8\x195\x82\n\xa5\x0e\x0d\x8e\xfb\xfdl\xc2\xf6\xc1\x86\x9e\xd7\xee\xa2\xb9\x1fC\xc4\xf5q\x86\xd786\xbe\xf6\xb0\xecv\xb3\x8f(\xf1\xc7\xd0\xe4xn\xe9\xb0\x8f\xf2\xde\x94\x02\"\x08@\xd8\x1d\x16\x9bp\x9c\x82f\x8e:\xcb\x0b6hJ\xf2\xffb=\xcc\x05\xe1H\x9c\xcc\xd5tC\x1b\xa1\x95z\x14\xd1\x8a\x04\xe34\x7f\xccV\x0dJ\n\xc1:M\xc7+\x8b$\x7f\xc3 A\xc0\x00^\x9aG\x9aA\xdb\xcc\xed\xa8\x95\x10\xdfX\x80\x190E\xc1\xc47`4\xa9\x0c\x87R4\xba \xa8\x98\x12\xf0o\xd4\xbc\xab\xa6\xba`-U\xf1P\xea\xdf*\xa0\"\x18\xb9P\x1c\x9eV\xec \x9b[!s\n\x1a\x10\x05\x1f\x8b\"\xe4\x12,\x07g\x16\xf0\xf9n!\xfe \xe1B\xe5%\x1cWg\x80E\x1c\xf0g\xc4|G\x9c`!\x15\xd1+\xb5)~u\x05\xc4 ;\x10=\xdc\xdf\xc7\xd3w.\x1bA\xd4\x84vO\xecJb\x90\xa8\xd0\x14\xfc$\xe1\xfe{#\xc7T\xe1.a{\x03\x9exZ\x1a\x92\x83m\xc6\xac\x89>\x83\xea\x07\xf0wi\x03\xfc1\xb0\\Z\xab4\xe8\xcf\x81\x17\xd3\x8a\x99\x03:\x16\xeb\xe6\\|\xad\xda\xc9@F\xec0R3\xd4D\x91\x01\x06\x8fE\xde\xb1.\xa6\x86\x14\xb2,|\xf3\\/{\x8eF\xdf\x08\xfa\x0e\x1bX\xaao\xa1\xc5\x0f\x81\xe0g?\xa8V\\\x9f\xf4\x13\x87\xcfJ|\xc7\xcd!F\x83\xb5 (\xd0\xdc|\x0b\x03>\x8e'b)E\xec K\xacK\xc9\x87\xa5T\x8fZ(\x9e\xcc\xf1\x01i\xd1\xac\xd9 \xc6q\xbf\x0f\xb1\x0e;\x80(\xf8\xde\x00\xa1\xa23\xaa\x91\xf2\xc7.K0(cf\x04'\x91\xbdKZzg7E\xa0\x05\xf9\xf7\xa9\xfb\xe2\x94\x94\xbcm\x0b\xb3\xc8\x1dbiZ\x9eHf\xeb\xc6\xd0\xb5|\xa7\x953[\x170C\xcbMz\x03`>\x84)-\xc1\xe3\x8f\x0b\xf0}\x1e\xc6~\xb6\xb3-\xb5\x08\x80\x80\xb5\xcc\xdd\xfbt\xe6\x8b({h\xcd\x19\xeeZ\xb3l\x1f\xfb*\xb06\x08Y\xcfC\x7f\xb9\xe23{ \xdb7E^\xe5\xa3\x1b[\x9e\x9e\xafaP\xad&\xdd^E\xf0P\xcb+\xe48\xb5\xf4R\x08afp#Q\nr\xea\xb3!q\xc5\xc8\x00\xa9N-MIrj\xc9J\x17TKVB\x9dZ2\x08r\xeaiRxSK\xfe1\xf7\xdf\x17\xfd\xd8\x18z\xeb-\xc1@.\xc1\xd8\xe1E\x94&\xb1\x1fm\xf8c\xb1*o`\xdaK\xfb\xa0\xd85\xac\xdfn\x81C\xae\x8f\x0dc5\xe9\xf1\x98L\xfb'u\xf6\x18O,,[$6\xe7\xc2\xec\xc6\xd5\x9c\xf6G\xae\xb9\x91o\x00\x03~\x87e\xa8\xea\xb5\x10\xe86\xcb\xd7\x86\xb3\xc6\x9e\xebh\x81\xb6<\xd93\x8b\xe9\x05}\xfd\xc8N\xe5v\\\x07\xae8y\xac\xa7\xd6\x8b\xed\xe2\xd9\x0d\x9a~\x9d\xc4\xcb \xe5\x1f\xa1\xe5\xb7<\xfb\x08\xad\xca\x95uK-o\x1b\x97v\xe5\x8aX\xdf\xc0\xb3\x12\x856.B8gE\x00\xda\xa8\xe1\xf4\x15\xc0\xf1!\xb2\x1c.\x90m\n(\xb6 \x99\x0f\xe9\x06\x96\x95\xd2E0\xcf\x9c\x06D\xd5.\xfe\x03k\xd1\xb64E\xf9\xc0\x89\x8b\xbd\xcb\xde\xb2x\x00\xf8q\xc3\xa2\xa2)-\x99\x8aS\xe1$\xec\xa9\xf4%\xa6\xf6\xbc\x91\xd8\xc0Y\x9f9\xd2\xc8\xfd\x80\xf5\x9e\xdc\x13TM\xfe\xee\xb3\xde\xd3\x9e^Jn\xa0\x82\xa1\x8aD\xe9\xa3Hf\x83\xa6\x10\xe4\xa0\xd4\xc2\xb3\xcfb`\xdf\xc2\xd4)kC\xc7\x138J\x96\xbf\x07\xfej\xc5#\xf0\xef\xe0\xe9\xf84\xc0\xc4\xb8\x92\xa8\xcc\x18\x9c\x0dq\x06\xdd\xd8\xeaB\"\xe0N\x06br\x01\xb5*\xbc4pi\x80*W\xbf2s=`=\x86e\xb5\x072\x0e\xd6\xabN/\x8a3\xe6\xa7ip\x1a\xf1\x19\xcbb\xe6\xb3\x95\x9f\xf0(\xdb\xa0\xf8\x07\xf5\x9ci\xfe\x91\xe8^\xaa\xa7\xf4H\xa3 f\xec\x0d\xe7\x8e\xd6[IT#\xaf\xd2\x02\x8a\x80\xfa\x82\xc1P\x94\xd6\xf5\x9agE\x7f\x14{\xe9P\xbc\xa2zlT\xca\xc2f\x08\x9a\xd7uJ\xb4\x0d\x17\x0d<\xc4\xd0\xe0\x84\xcb\x95\xd7\x1d\xc1\xe7\xaa\x1c\xd1\xd3\xce$\xd3*\xfa\xac]d+~}pK\xc7\xc3\xce\x83\x07\xf2\x80\xdd$\xe8W\xdbyu\x80\xbd;\xbd\x11\xeb\xdd\xf1\x97\xab\xc75\xa2x\xb7wW\xe4\xfc,\x8f\xb3zV\xef.VZ\xc5\xa9\x91\xf5\x04\xb2B\xb3\xceS\xc88\xcd\x1ek\xc1\xfa\xda\x04\xe3\x16\xa9\xb8$^\x92\xb2\x01\xf1*\xc4=\xce\xf8N\xef\xc9\xd3\xbb\x18c\xa1U\xd8\xa6\x04\xccFP>\xe0\xd9\xca\x8e\x92\xd0\xad\x91G}\x08\xf1\xe3\n\xdc\xa5\x19\xc1\xa3\x1dwpx\xc6\xa3\xecp\x19d\x19O(o\x1f\xe6A:\x913\xbd\x08\x0cu\xb5x\"\xe7\xe1\xd0ub\x0f\xfc\x97\xc4\x837%\xc5\x14_\xbc\x0f\x89?N\x82\xacH\xdc\xdd}\x00\x89\x9f\xe5\xab\x90_\xc8\xa4]Hz\x97\xf8Q:\x8f\x93\xa5L\xdd\x83\xd4\xd7~\x9a\xbe[$q~\xba\x90\xe9\x0f!\x1de\xe2x\xb0\x8bu\x97\x1f\xc1\x8a\xb7\xe97\xce4\xdf]6\xc9yL\x9fF\xf9\xe0\\\x0d\x07U \xb8\xd5\x88D.j\x80\xd5\xd8\xca\xcfS\xae\xbd\x1a\xc7&\xfa\x93\x01I\x85\xa2r\x1f\x82\x16\x13\x9e\xe6\xcb\xca{\xe3\xa9,\x1a\xc4Q\xc1\x92\xc5`,\x08 \x89\x1fD=\x8f\x05\x90r\x1c\xa4o\xb3Y\x00r\xfcL\x1b\x18\x1e\x9e\xc1\x119\xd4\x12l\x9c\xc7r`\x88\xc4od\xdb<\x96\xd6\xa5xg\xd2Ztch\x83oN\x0e\xd6\x87\x8f\xf9r\xc7\xe5H\xc7\xbaA/\xed\xd0 y\xa9\x8d\x0ff<\xcd\x92\xf8\x12\x17\xb6\xfc\xd1\xf5\xb3!M\xb7\xc5\x16:u\\OZ\x02$\x830H3\x1e\xf1\xe4\xb9\xd8\x87\xa4\x13\xe1\x1e\x17\x9bi\xcfU\xfbk\x9d\xde\xd2_\x9cZ\xd1d\x19\x9f\xf1/\xe4wjsndj\xf3oV\xd5\xe7\xb9\x9eW\xce9Y\x13F$\x98%\xea\xabz\xae\xed\xab\xd3\xc6\xafN\xc9v\xcb\xdc\x86\x95\xa0\xc8-br\xa5\x9f\xf5\x14\x1d\xdb\xa7\x06\xb6O\x8b:\xd5\x14<\xca\x08\x02\x04gL\xaf\x95\x86\xbb\x10`\xa9\x89\xac\xf7\x04!I\xb3$\x98f=\x92\xaa\xdf\x1f\xba\x03\xbc\xadDZ\x08\xec\xb6z\x9c\xaf\xe3R\x81f\x9cD\xb3\x8d\xf6m\x8d\x15\xa6\x91\x9ci7E3Wg#\xdf]\xae\xb8d%\x9f\xfb\x91\xe0&\xc5>\xc3|6\x0d\xfd4e~\xca\xfc\xe2K\xc4\xb9\xf0C\xe9\x86\x1b\x19\x9e\x05\xf7g\xd2LK\xa6d~\x10VS\xe4y`\xdf\xea\\\x99i\xbb\xbc\xe9E\xaa\x99QS\xbc\xad\xe5h\xe9g\xbe\xd5;Y\xc4/2\x94G\x99\xe34y3}(O\xc1\x16\xa9\x18.\x88}@Q>\xaa@%\xab\x82$\xf3\x98\x8c\x01\x80\xcdT\xa1\xe1U\xc6\x9eG \xfc\xfe\xf8\xc3/\xfa\xdb\x05\x062\x06\x89\x06 \x10\x06\xebc\xac!\xc6:c6Fl#\xf0R\x00V\xb6\xdat`\xe5\xeaH#z4\x10\x10\xa1\xcf3\x12\x01\x87\xc6\x10\x0f\xaa\x03\xaa\xe1x}\xca\x8b/ \xf0\x16\x91A\x949\x05a\xce\xde\x04\x11\x15\xf5\xae\x11\"M\xbdkY\x81\xd5\xaf\xfd4\x0e\xda\x1d\xb8#\xfc\xf7\xeb\xf0\x97\xd0\xa3|\xe6Tn4\x15\x9d\xc5kM=\x14\xc7\xc3\xacHoH\x02n\x8f]\x16\xb1\xfe>\xe8\xc03\xcb\x9c\xd1f\"5\xf8\xc5\xd1\xd4o_D\xcdcJ\x06~\x18\xc6Sg\xcbb\x8an`LQ\xb3\x0d\xedJ\xc8\xc0\xb19F\xb3)\xf9\xbd\xaf\xa2\xd4\x9fs\x87\xb3\xa7O\x9f\x82x\xd2\xaf\x82/\x17\xd3\xf9\x98\xf9\x8f]\x00\x9c\x0f\xdf@\xa8\x06x\xa3>\xf7@\x97\xb6\xbaD\x9b\x1fQ\xa5\xaf\nV\x0c||\x04\xba\x0d\xc4\x81\x01\xe2\"\xe1\x83`\xb5d\xf4\xb7 JW|\x9aU~\x0c\xa6y\x9a\xc5K \x13\xa5t\xa6\x98\xa0q\xbd\xe0\xa4 \xd9\xd5j.*\x11r5\x1c\xd6\x88YI\x8e\xe5\xf2\xa6(\xae]\xfa,to\xa0/\xd2\xc6k=rw6H\xa2\xb6\xef\xea\xeeN+nH\x8eD=\xb0\xefC0\xcb\x17\xcb%\x9f\x05~f\x95jH\x05\x0d\x1a\x19I\xbf3\xe6}7\xfd \xe1\xa2\xbb=\x7f\xda\xa0\x9baRw\xc3\x07\xb3x\n\x922{\xb9Uitt\xca\xb3\xd7\nI^\x81R\x83\xcc\xb0\xba\xb0\x12M\xad\xc0\x92D\xc0\xe4]\xb0\xe4q\x9e\xc9\xe8\x88\xdc+\xfd\x1c\xac\x92x\xca\xd3t\xd2\x835\xfc\xf3\x0fEpIy!x \x0b\xa0\xb1m\x1b\x1dQ\x8f\xa6\x07j\xa4\xdc\xfa\xb3p\x88\x0b_\xea\xb1 \xb8\xd8HG\x9d\xa6O\x80\x12u\xb0\x8a\xd3\xecK\xe9@M\x9c6\xf9 X\x8a%\xf9v\x9a\x04\xab\xccj\xef\xa3\x1eE\xc47\xb6\x9a\xa5\x88LJ\x12\x05\xb3nu\xd1\xa6?\x05\xf3W\x94o\xdb\xf4\xeaOF\xeb\x10\xf4\x07\xf7\x86\x12\x02N\xaf\xe7\xb1\xde'=y\xaa(?\x1c\xd5o\xd9UZ\xa1g\xc2qA\"%\x9b~\xbe\xf0\xa3\x88\x838\xdb\x01{J~\xce\xaaY\xee@\xc0}H\x0f\xb8\x11\xb9\x16\x0e\x07\nn\x93y\xae\x81\xa7\x01tb\xbb\x02\x14\x0b\x16\x82l\x0c\x16b/\x8e\x12\xee\xcf.\xd3\xcc\xcf\xf8t\xe1G\xa7\x1c|\xdd\xcc\x07\xd3\x84\xfb\x19\x97\xa2w\xa7\x97\x02R\xf5\x04`\xc0\x8eq^\x90\x00Yd\x9d\xae*\xd4\xb3~\xc5\x8e`\xd9\xc0\xec\xf1:\xe8%E\xbdt+\xc8d\xc5\xf2d\xfc|\x11\x8430s\xced\x9e\x1d\x8fD-\x94m\xabZv\xc0w\x87SI\xed\x9c\x85\xc7\xb6\x8c\x1bF\xea\x11\xa4\x03\xc43=}\xcf\xf8\xa1\xd8\xed\xe0\x16P\xe2G\xb3x\xe9\xc8@\xb5\xc8m\x14=h4a\xcc\x06i\x9c'S.ob\x08\x8c\xd1\x83sI\x1b\xa5\x812\xe9\x93|\x172%A4\xe3\x17\xaf\xe6\x8e\x0f\x02\xbd\x85\xd3\x97\xe9\xa0pq\x14\xd3b3q\x14\xeb\xd8\x9f\xcd@\xd8\xaad\x14\xb0*\xeb\x89NO.\xba\x1el\x7f\x1bC\x10\xfc\x0e\xfc,\xf3\xa7\x0b(\xe9\xf4\x8a\x85)\x052Ig\x00T\x89\x8c/XX\xa43\x96\xf9\xf5p\x93*&\xa1\xf3\\kR\xb5\x8d\x9a\x19/\x97DGy7q\x80\xd1\xe6MF\x7f\x156\xbd48.\x14\\\xea\x10\xb1 \x11\x0f#\xe4>#\xf6DwM\xd0\xef\xbb\xca\x97@Qo\x0c\xaaA\x8b\xdd>\xd3\xec\xbe\x9aW\xa1\xd8\x8fO\xfc\xe9\xfbF_\xe3\xe2\xf1\x93\xd3\x942\xb8S\x0fq\xacU\x8f\xdc\x86\xc2q:A\x01w\xe2\xa4\xae\xc7\xd2~\xdf\x86p+<\xa2\xe9sG\x1c\xa4\x1b\x8c\x08f\x0d\x16%\x18\x947\xac\xdfhd-M6\x18\xa9\x80t\xd4\xa5\x88\x04\x0d\x94\x86\xe88L#\xca!\x19\xebV=p\x85\xad\x8d\xc8N ?|\xf5'K.;p\x02\x1b\x1dW\x8f\xfe\xa8\x81\xa0RW\xa0Y;\x83\xa3\x9e\x04\xea \xack\xee\xbdz\x94\x91u\xd2\"\xbb\xa0\x1e0\xbc\xde\xb2\x1b\xdfRO\xa3\x01%\xf5\xb4\x98i\xd7\x1f\xe8\xd3p\xdd>%\xe3-\xeajw\xd3s\x9d~m_\xa7_\x1eK\xc6\xc3\xef\xa3w;\xd7\xef\x9d\xf8\xbb\xfd\x91\xfb\xd8j\xebM=\xa0\xb0\x0fA\xe4@\xd8{P\x0f\xcdQWJ\xd8\x98\xa3\xa2\x00\x9b\x07\x91\x1f\x86]\xe8\xc3\x0c\xd8\xb9i\x87\xf3\x825\xb7\xab\xe1oM\xb6\xe7\xf4\x8a\x98\x05:/\x94\xf2p^^aW\xf7W\xb3E\x90\xc2\x0d\xd7\x11\x14\xd0\x94\xc0\xba\x11\xc0\x0e\xec\xc5v[\x80\xee\xd7\xa2\x8a\xed\xc3B6\xed\xc4\x17\xadV\x06a<\xf5\xc3\xb7Y\x9c\xf8\xa7\xbc9\xe6\xda\xd4\x07\x02\xd8\xe6\x15\xa45\xda\x19\xd3U\xca\x95\xef7\xc6^\x97>#\xc0\x9c\xac\x97%9\xc7\xc3?\x9e\xfb\x9d\xc8\x1dd\xf1\x17\xf19O\x9e\xfb\x84\x06Y\xff\xd5\xf9^\x1fS\x97a\x9c^\x14\x7f\xc6W \x9f\x82\xe9ZO\xbb\x97g\xf6Wi\x9b(\xd7\xaa\xf5\x9b\x82M\x1b\xfe\x06ycS/\x119=\xd0\x10\xd5\xbaV7>\xb29\xf7f`\x90\xd0\xcb\x12\x7f\xca+M\xb0\x036\x8d\xa34\x0e\xf9\x002\x1d\xf0w\xa4\x92\xce\xfd$B7\xe0\xb0\xf7w\\SL\x17\x17 \xa9\xc9@%UZb\xb5\xadC\xebR\xea\xb4\x86hA\\\xc5\xf9N\x99\\j\x0cw\x86\x96+\xe5[\xbbd\x00\x98\xc0\\\x1f\xa8\xdc\x03\xc2\xa0\xe9\xf7\x82\x12\x890v\x98\xe1N\xbb4%!\x02\xe8\x8b'\x1e\x04\xd1\x82'A&\x1d\xc1\x0c\xc1\xd2C\xa59\x01\x9a\x99\x04\x9a`\xfd8\xd3\x8cF\x9a\xa0\xc5\x007\xf0\x94\xdc\xea/\xa4\xc1\xb6&r\x86\x8f\x1et\x9a\x9fj\xad\xdd\xebT\x1a>\xba\xef\x96f1\xd7\xac\xaf\x19\xd0ti\xa1M\xe3\xbc3\xa4\x02\xe8\x8bt\x8bK\x82\xbd\xf6[\xea\xf5\x89\x92\xaa\x08\xbc\xac]\x1e\xe0\x0c^H\xa2\x9b?\x88\xe2d\xe9\x87\xc17<\x81k\xa9\xa0\x96s2\xed\x8678.+\x95\x0d\xa5G\x0c\x7f\xe0\xa7\x97\xd1\xd4E\xcf\x04\xfe`\x95\x04\xcb \x0b\xce\xc4\xd6\xa7\x8c`\xd8A\xf5\x13p\xb1z\x0b\x0e\xeb\x19\\\xb3\xc0\xaaF\x89m\x17<\x7f\x8f\xea\xb5\xb5vE\xb1\x1d\x17bQU\x13\xf70Q\xbc>\x84f\x8a\xae\x82\xe5\x8f\xb3\xb7\xf5\xc8\x95Q\x8d\x96\x8146r\xf6\x86\xa0\x9f\x19\xcc\x82t\x15\x97\x89\xbb\x90\xb8\xf4/\x9e\x9d\x16i{*M&lc\xcd\x84\xcf\xc1@\x85'*}[\xac8\x81(\xfe\x9a\xab\xa6\x0d\x91v\xf7(D\x02\xa1\x8f\x7f\x92\x9a\xa8\x049\xf30\xd6\x1dbwC'\xa5>J_\xfa/\xd1_\x05\xba\xe8\x00,\x11Get\xa7\nN?\xee\xdcaA\xfay\x10\x05\xe0\xa2\x1a\x1c\x0dq\xf0\xf2\xe1\xc4\xd2\xdfP\x9bQG'0\xd4\x88\xc3\xde\xb6\x0b\x82[\x18c\x1a\x9cF0\xf5\xbb{;\x9d\x88F\xfb'\xac\xfb\xb3Re\x15\x1f&\x17\x18m6\x05h/\x0d\xe0\x9c!z\xa5\xdbT\xbf7\xb7\xb7\xd6u\xe7\xb1\xc60\xec\xb6\x99\xdadz\xe5\x8c\x03Q\xd0=\xb2pi:\x81>pn\xa3\x9f%b?\xa0\xbd\xd2\x0e\xef\xd7\xfd\xdaH\x02Y\xf7\x98$\x03V\xee\xd1\x01+\x05\x9dm\x86\x0e\xe3\xb4\xb3\x81\x08oCUgX\xec\xe5\xe8\x10\x03n^I\x97\n\x15\x9a\xebjtG\xd1\x1b\xc2\"\xfc\xd5J|\x1d\xf3 l\xe8\xca\x9f\xf4\xb4\xe6\xce\xa8\xe5\xcc\x9bbEt\xd8z\xa0\xda =6\xf7X4\xe6\x13\x88\xe9\x81Nx\xc8K\xe5\xb6\xe3\xea\xad\xe0\xf2\xae%\x16\xe0\xce\x90\xf6K9\xbco\x89 \xfcp\xcf\x1d,y\xb6\x88g)Ejw\x0d\xff\xc0\xa9\xe4\xec\xeaG\xa8\x90^\x0cp,\xac\x96\x9cv]6\xf3re\xa0\xa6\xb1\x9a\xad\xd9(\xa0(G\x12\xcb\x80\xd7\x86\x82!1\xe3\x9a\xdf\x80\x05\xa4\xf2e\x90uXX\xc4Q\n\xec\xbb=vVD*\xf5\xd8\x89\xc7\x8e!\xc8\xec\xa1\xc7.0\x9a\x96\xc7\xde{\xec\x99\xc7^y\x10tk\x0e\xe7/\x9a\xe2c\x00\x11y\xa1\x14i\xb9\xdc\xbd\x0b\xf14\xee\xd6\\#\xe8\x1aW-\x10\xff\x02\x9cu\xea\xc9\xae\x07Qq.\x06\xa7<\xf3 \xf2\xcd\xc5 \x15\xaf\x97\xf0\x8a\x9a\x0d\x0f\x02\xd9\\\xa0\x06\xc5\xf5J\xc1\xcc \xe1i\x1c\x9e\xf1$\x85\xe6_\xc9\xad\xa5H\x15\x8b\xfa\x19SA\xf3\xed\"-Vn\xc0\xd2\xb4\xaa\xa0 &\xf9\x10\x1b\xf2+\xf8\x1e\xf8\xbeq\x02\xb7\xec\xd2>n\xd2K\x91\x08\x8aIb\x9b|-f\xab8\x89C\xe0]_Z&\x9f\xf2\xac\x07\xab6@s<\xd7c\xaf\xc9\xe8%\xa2\x0f\xe8tO\xf0LAi\x808-\xe8 \x9e\xe2\x83\xf1\xd6DP\x80\xb0\x9e\xae\xfa\xbc\x8f\x9e\xa1\xecB!bd\x8a\xb7H\x9c\xde\xf3 \x99\xe6\xa1\x9f\xb0 :\x8b\xa54\xc7c\xbd\xe7/\xde<\xff\xea\x8bgo\x8e_\xbc\xfc\xd1\xab\xe7\xcf\xde\xbdx\xf5\xd2\xa6x\x17\xad\x9e:\x01!\x8bA\xa5\x92\xe8C\x03\x18o\xa9'r6^\xa3J2\xf6\xd8s}^R5/R\x89/\xf8\x90*\xfd\xf4\xd8\x99[x\x15\x14\xeb\xa3Q\xe0\x06\xc7gzV-C\xc5\xbb\x02\x8dh\xa3\xae\x13\x14\xa8[\xe2\x90\xc5\xaa\x10\xf4m:\xb2\x97xT\xc7\x97Rf\xc6F5$s=\x1b\x9a\x17\x9d\xbe\xe5IB\x93\x000\x19&\xa6\xa9\xb8C\x8eV\xad\xa6'l\xdd\x93\xfa\xed\x92\x02\xfd\x8e'lyRT\x0c\xab\xd0\n\xa6\xb8qZ\xe3*5\xa0\xfc\xda\xc12\xbd)5h\xe8\xdc-O\xdf8\x16k,\"'/V\xf3\x16U\x82\xf21\\c>\xa9\xfc\x8f\x93\xe04\x88\xfc\x90T\xf8+n}\xc4\x9e\x99\x99\x92\xd5\x7f \xde\x83`\xb7W?\xcd\xb2\xa7<\xebr\x15T\x0e\xf2U\xc1\xe8\xbdr\xb8\x0b\xbb\xdc\x01[\xa2\xb3\x07\x89\x14\\L\x86I\xf5\xcc//\xfct\x8d/[\xe6\x91r\x12o~\n\xf7\xdb._\xb3\x900\x86\xfd\xa5{\xc00\xaa\xfa\x9d;\xec\x12-\xa5\xd8>{\x0d\xbc\xaa\xb4`\xc0\x1f\xefu\xb4\xc0\x9c\x1e\x86\xa8\xa3\x1cE\x99\x83\x006a\xd4\xae\xf2P\xa2\x15\"N(\x83\x80\xc8w\xee\xb0\x13q\xe6\xd3X#\xaf\xe8\x18|\xa5\xd7\x15\xb0q4j?\xb52M\xa0#\x16\x7f!\x10y\x0bz\x0f6\x02\x1b\xac2\xf9y\x91,\xa1TZRA\xfcW\xf0\xe41\xab\x08\xf5i\xdf\x15f\x7f\xc5\x18Glaf\x14\x87\xe1\x0e\x00\xe6\xc8\xd9\xca\xe5i~\xb6\xbe\xbc\x8fMV\xcd~\x95\x05-\x8b\x1a\x883.A8\xe5\xe1\xf1\xae\xe4d2\xe0d\"\xe4\xd1\xfc2\xc6]\xbdC\xeb\xec\xe9\x85\xa8[\xb6&7\xbfj\x93\xacmi\x11\xe4\xa3\xdcTp\x17\xf1\xcb\x00}\xf5\xfe\x9e\x83\x14\xbd\x95\xf5\xe0\xad\xb0\x93\xdd(\x87.\xf7\xdc\x91\xda\xef4\xb0r9k\x02\xa0%u\x8b\xb0\xb3bE\x9b\x82\x97\xc3\x8f\xd6O\x1f\x82\xd8K\xd8\x93\xdd-\xb1\xa0\xa1\xe3\x1210\xe6\xbe\xd9\xff\x95\xf3\xcc#\xfa\xac\x0b\xbfF,\x00\xd7UV\x12\x1b8\xc7D\xae\xa4]\x81\xe3\xab\xd3\x8e\xf9\x15\xd8\x89\x02\xe7\x9c\xca\x83\xbd\"p\x0e\xcd>\xfbE\xca\xad\x1c\xf1w\x86T \x10q$\xb7h\x99\xea\xe2-\xb1\x97\x83`r0\xf5WY\x9e\xf0\xb7\x99?}\xff.\xf1\xa7\x9a(\xa9\xe2\xab\xa3U#\x15I{D\x94wR\xd1n\xf3\x8aphH\x88\x90\xd2\x9a\x90\x89<\x0b\x07N*\xddm\xe5\xb8\xa9I\x8f\xa4\xca\xa9=hdR\x19\xd50\xc2\x9b\xb8\x81*\x1b\x0d\xa6\xf1L\xe0^\x0eWu \x08D\x84\x8c\xea\x9a\x0e\xa8\xd7\x90\xc7\x93j\x05\xdc\x81\xa5\x90\x02}\x85t\xd7.H\xf7n\x0e\xed\x15e\x1e\xc7#\xd6K\xfcozu\x1ae\x96=\x11\x18\xdf\x9b\x9d\xfb\x1d\xcaf\xc97\x97#\xd6\x13\xffz\x06\x8a\xf3\xc1<\x8eY\x9f\xf1\xc1\x89\x9f\xc0\x7fQ\x0eh\x83\xe8\xca\xec\xdc\x87z\xb7,\xb8\xdd5\xa2B5Hn\xd7\x08\x9c`\xd1\x10\x94\x17q\x02\xc3\xe4\xd6c\xdb5\xbe\x1blu\xb9.\xe9\x04n\xb4b\xa4M\x8a\x1a\xedV<|\x9c@\xfc\xd1qBX\x9b\xb6\x9a\xecD\xe8\xac@\xac\xebV\xf3\x0bd\xf8\x87\x8f\x99\xcf\x9e\xb0\xf41\xeb\xf7}y\x85\xadX\xa0\xfe\xc4\xc3\xf8\xd4\xca=Q\xee\x9a\xea\x13\xcd5KT\xe8EHL\xff\x18\xaa\xc3\x87CT\x1dj\"vT\x1e>\xdc\xfe\xd8\xcaCz\x12\x15\x8f\xa1\xf9\x96\xed\x15Z\xf5\x1ex[\xac\xceC\xe3\xa4\xd26X\xb7-P\xa6\x94#\xda\x00\xda\x96S\xbd\xe3\xb2\xd31x\xc3-\xe6\x06\x8fg\xeb\x1a\x9f\\\xab\xef\x04\xc5\x94\x9f\x18\x91\x97\xa6\xf0\x16\xda\xc8\x98\x9ak\x0e\x1c\x86}\xe7\x0e\x8b\xc7J11\x11\xebr\xdd\x10\xb9\xed\xa8)\xd0\xfc\x01\xe2\xbf\xbc.W\xb9s\x9b\xf9A\xa4V\xc3\xee\x0dV\x83\x82\xb6N\xe6\xd7\\+M{]R\xf6Ulz\x1b\xcae\x88Ju`\xf7R\xbe\xeb\xeby\xf38\xee\xdd\x8e\xaa]\x0d\xd3\x00\xa5\xbc\x0es]l\xa8\x1d\x11+\xcae\xf6\xf46\xf5\xef\xb5\xeb\xa4\x9er\xc8N\xe9\x80\xe6\xb4^t\xd5Y\x953\xeb\xaa\xcaY4\xabr\xce,\xaa\x9c\xda\xe7\x96]5>\xa7\xed\xc1n\xab\x15.I\x8a1\x8d\xa3yp\x9a\x83\xf6\x95\xa6\x1a\xbc\xd0\xce\xd2\xae\xaf\x95\xa7\xa4&\xba\x92\x1b\xdf\x164*i\xe3V\x98\xe2X\xac\x87\xb69\x185\x9c\xea\xb8\xd7;>\xe6\x1c\x0c\x07\x0e4\x07s\x90&\xcer\"\xe9rp\xe6\x87\xb9\xe0h\x16J\"sV\xab\xed\xb1K\xd7\xd3\n\xcab\xd1\x98O\xd8\x01\xe5t]\xe6\x88\x7f\xe8\xb1\x0d\xacO!u\x9f\x8dQ\x9b\x9aM\xca$\xe9\xad\xa3\n\xb1\x1a\x8d\x8f\xa6|\x04\x94\xbe\x1b\x94<\xdd'\x98z*\x80\x8a\x95[>c\xb9F]\xee(J5u\x8c5\xe0*\x992\xdah\xb7\x8a\x05\x07;\x02\xba\xaf\xa2i\xe1\xd4\xe7\xf8\xb8#(\xe6\xf3\x11\xf0\xbe]!!\x89\x04-\xe7F`l\xd0hS\xf1\xa7@\xd7\x97q\x80J\xc4r\xc7|\xd2\xa1\x9e\x896\xe8`T\xd46!\xc6\x14\xeb\x1d\xe0\xed71y\xc98\x98\x08\x1e6pY\\\xfa\xe5\x8d)\xb8b\xae`\x94\xb7\x95s*%\xd2\x97(\x98\x8c\x03i%7\x14\x88\x99\x0c\xd2\x15\xdc|\x0c<6\xa4\xee\xee\x81*-)?\x9b4~V\x8ac\xa3&\xeb\xf8\xb6iG \xa2\xdfzG\xf1\xac\xf0j\xd18\xef\x16:!\xb6\xe3\xb8:\xa1\xf6\x19\xa1\xe7\xb1\xd9\x19<\xccbD(\xc9d\xac6-\xde\n\xdew\xcc\xf0\xc8\x92\xb1',\x12\xd3\x9d\xb9,\x18g\"\xb3z\xd91k\xb8\x08\x07\x1f\x8d\xc1\x81\x05^h\x95\xedn=\x06\xc2\x1b\x8b\xca\xd8\xb4\\\xc5I\xa9\xc9!\x1b\x95\xbaTu\xa3\xac>\x96&\x00t\xb9\xb55+\x88\x0b\xe8\xa9\xec\x03c\xedw\x8b\xba\xdc\xc6\xaa~\xaf\xc6\xb0\xdc\xfc\xeb-\xb7\xad\x9a\xbe\xeeU\x84G7\xebK\xa7[U\xbf\x10\xfc\x14\xcf\xaa\x06\x05\x1b\xe6\xfd\x80\xfe\xf5\x81\xf2\xc6,8\x8b\xa9S\x17z\xe2^:u\xe2z\xba\xd8X\xa6N\xe0R\x84g\xea\xe8\xe6\xd0hG\xb8t~\xfe\x01\x85q:{\xdc\xec\xf5G\x19\x8bi\xa1*\x17N\x88\xce\x88\x8bSc5T\xa4\xc72e\xb4\xc4\xf6Y\xfe\x03vS\x8eY\x9e\xa3\xea\xb1~\x1b\x04\xab\x04\xdb,\xf88\xd2=q\xf9\xbdf\xe7\x01\x1a\xdd\x1f,\xfdU\xbb#hU\x81\x1d\xb0\xcc\xe1\xe3\x08T\xcf\xe2\x7f\x15%\\\xe9|\xc9\xc9+Zi\xf3\n\xff\x07o\xbdc\x0d\xc8\xbd@\xe0\xd516O O\xc5\xbe\xa1Zq\x05\xd7u\x12D\xb3\xf6P\xb6\xddg\x16\x8f=\x8f(S9\x9c\xa8 \x85\xff\xd7<\xd5\xc5(\xda\xe0\x10\xce\xfdv\xba\xdd\xe9 \xadD\xcb\xc8\x98\xe2H\xe6I\\\x0b\xc8\xd5t\xdcF\xff\xed\xe0]\x00\xe6p\x0c\x82d\x0fe\xc4\x13\xd7c\x9f\xc6q\xc8\xfd\xc8\x01V&+}.C\x01\xd4\x05\x81]\xf4m\x8cY\x13\xe4<\xdav\x07A\xc6\x13?\x8big\x8e\xc6\\\xca%\xfa\xc8fAN\x1a\x90\x1bK7\xa5\xe5\xc9!\xbd\xfe\xa7\xf2\x9bur1\xaf\xe3U\xa7c\xb5yX\x9e\xdd\xc6a\x94\xc8\xd7\x0f\xa3f.\x1c\xe6\x08\x1f\x8c\x1f\xac'\xf9\xeaQ}\xddET\xb2\xa5V\x13\xcaV]\xd2\xdbF]\x128Z*%\xf3)J\xe6C\xe7B\x06\x08\xbf\x90\x0e\x12\x99t\x19\x0eh\x0e\x13'R\x02\xf4\xf8\xec\x16\xbe\xf2\xaa\x8d[\xfc1\xc0 \xe8\xc2zF\x9c3y\x89F\xaeN4\xf7tN\xb5\x10\xc5\x82\xa4 \x16\xc9\xdb\xdb\xf2\xc2\x9e8\x9f;\xcb\n\xc71t!b\xd9>\xe3p\x19}i\xe1\x86\xf0T'\xbe\xda\xc2\x85W[\xaft\xaa\xe2f\xe4T\xb05\x91\xcb\x96h\xcc\xc7I\x0bJ\xf5\xc8\x91.\xc9\x02\xe6\xa5R3e !\x03\x7f`/\x040\x9f\x1bzdf*'\x9cs\xe8n2\xb1\xc2\x02\xe0p\x02f\xae\xe7\xf2J*\x1a\xd2\x08\x82\xa9\xe0#\x0e\xc8\xe2l~\x02\xce\xc5\x9c\x128\x1b\xc7\x83Y\x1c\xf1\xc7.(\xe0/\xd8\x81b\xe2\xd0\x1a\xf8\x18%&\xd2\x90\xbd\xf8%\xf6ogVHS\x0e=\xb6p\x96\xb02fp\xddJ\x82\xf9\xb0\xfe\xd1~\xdf\x125K\xcc\x1c\x11\"\xa84\xf7\x9c6`\x03@\xe0\xb4\x123\xdb\x1c=\x8c\xd7\x03\xb9]\x0d'\x0e%B\xc8Py\"GZ%\xed\xb3\xc3\xc1t\xe1'\xcf\xe3\x19\x7f\x969[\xae\xcb\x9e\xee\xb3\x07\x0f\xb6\x1f\xed\x82\xc5\x12{\xb2\xcf\x1e\xec\xee\x0c\x1fA\xf9Cp:9\xee\xf7\xa3\x89\xb4g0\xc0y(\xedG\x0e\xad <+Ax&A\xd8\xef\x9f\xd9\x81v\xd6\x82\x8e\x1a:\x89=\xf0\xd4D\xb8\x02z\xbe\xa3\xad\x9d\x1a\x00\x9dS\x97^P\xe40%4\x15o\xd7\x1d_H~\x00\xbb2\xab\xc8\xee<\xb6,/\x89B\x8c\x90\xa2\xe6\x0d\xf6\xf5\x9a\x96\xe2\xd1\x8e\xd4R\\.O\xe2\x10U\x12\x8f\xee\xdf\x82J\xa2v\xc2)\xf48\xb5-\x1e>[\x91\xc3\xb6\xe9vH\xbe\xcb\xdcb\xc8{(8J\xcd\xf9Bm\xf7`\xfb\xb2\x88\xd3\xcbx\x9a\xc9\xee\xd5\x8d:i\xf5\xa22o\xac\x9b>\xddD\x89\xa8\x97\xd9H\xc6\x95Q\x14,\xd9\x04\x953F~\x16\xbfV\xdaM(B\x95\xc0N\xbf\xf3O'\xb7\xc74\xea\xba\x0e\x8b\x8aC!_\xfdZL\xd8\xac\x90\x98v\xd54\xcc\xbbi.V\x84B\xc2d\xfa\xc2\xfa\xed\x90\x1az\xed\x1b\xe8U;\x97\x14X\xb5\x06\x1a%\x8e+=\xda6i\xa5\xeb\xeaf&\xe7`\x81\x9b\x80\xb3(\xbb\xef50}57\xbb \x92\xc0\xc5\x98c\xac?\x8c\xa1q-wF\xe3\xca)\xb4z\x98\x8f\xbb\\\x8f5\x89[\xbd\xb3\xfc\xd6:\xeb\xc3\xcdrP\x04\x01\xf4CG\xf3j!\xc5h\xda^\x0b\x01\x1a{\xa5\x15\xa1\xe0B\xa6ND[ \xce8\xfa\xa2\x0c\xe2\xe8\xf8x\xc4r\xf0/\x9aQ\xe6|\xc7\x91\xbf\xe4e\x993\xa7n\x02\xfd\xa1*\x1f\x99:q\xfd\x93\xf38\x11\xd5\x9b\xb1L\x0ez\x86\x8a0\xf87\xc2\x7f\xfb,v\n\x8anHE*\xbf\xdf\xf3\xcb\xcf\xbb|\xccb:\x0e\x8b/cA\xc4R`jgv!\xfel\x9cM\xd0\xd6\xb9\xd4\xdc4vm\xe1\xa7/$\x96(X&\xa8\x06\xd1r\xd0\xa2\xaf\xa7\xa5\x18\x01\xd3\x83\xf49\xc8\xaa\xde\xaeT\xc8\x97Zsf\x01\xd9\xaa\x99a6.\xf7\xb1z\x932Y5$\x7f\x1a\xd5\x97\x82\x1c\xd6\xeaB\x9a\xac\x08\xefF-\x19\x19\xa9VO\xc5N\xc2\x9a\xf2\x97Q7\xe5~b|\x12\x13eM\xfcaV\\\xf1i\xc0\xd3zMLUU\xf1\x17Q7\x0c2\xa3f\x18dE\xbd0\xc8\x8cZ\x1a\x0fP\xab\xab\xe5\xc8\x16\xb4\x14\xa2\x9d\x82S0\xda)r\x8av\x8a\x14\xa3\x9dW\xddS\xdfoT!\xeb\xc2_E\x95j+\xae\xd6\xb1\xd8\xde1\xfd\xcb]\xbe\xaa\xc8\xb7\x031\xdcQ\xf01\xa8\x91Q\xd6g=\xd70 \xad\xfc\x863\xc5\xaby\xd7\xaf\xa6\xb5\x98Z\xcc\x1c\xe5\xbc:\xcaXG&\xaf\x0d\xac\xea\xfa\x89\xfc\x0e-\x1e\x95\x8cw-B<8\xc8(0\xce\xd1;E\xf7\xaa@D\xe8\xd5\xb4\xe7)\x98\xf6\xb0B\xd0^!\xae8\xe3\xafp\xcct\x13UHPM\x94l\xf9M\x1cj\xe9\x02\xda\xdd\xb5=\x19\xa1\xdf3\x108P\x9c\x03\xba\xf6/\xf8\x06\xfa\x1c$'\xeb\xd6\x8dG[E\xfc\x1b\x1bx\xd9\x87D\x93\xab+\x91\xaf\xc7*\xc0\xb2o\x8b\xb2\xe0\xc6\xb4\x1e\xca\xe0\xce\x1dV-2\xae\x16\xaa\xce\xfcm\x0cYM\xa0a\x12\xa5>U]\xc6`K\x81\x12\x88.\xcb\xb8\x10\xc0V\x17\xb2\xe3\xae\x8d*Uk9\xee\x02x\xe2_,\x04\"gg\xb8}\xed\xa1\xd8\xdd\x06\xfdR\x0d\xb2\x12\xf2|\xbd\x01\xa6\x86CqX\x18\x88\xe6\xa6)\x88\xf2\xcf\xa1\x1d)\xb0o\xa2R\x0d&\xee\xedY\xcc\x9e\xe9^`\xd6\x1d*\xc1N7O\xef\x01\xb1XR\x9e\x91\xd7g\xe1\xaeQ-\xea\x9d8\x12\xd1\x91\xa4\xa0t\xe2\xf0\xc1)'.\xd3i\x01R\x07)\x071a\x06/\xfbP'\xe5\x10\x9d\\\xdenC\x15\xa0\xfa\x81%\xf0\x07\xdc9\x93\x01\x8f\xb0\x90\n~$\xca\xe0\xad)\x88\xd1\x0d\xfd\x94\x1f\xc8\xd0\xc1Dv;\x14k\x8d\x89)\x04 J\xdej\x1eb\xb5\xa0\xff\xbd\xff\xbeW\xcd\x97\x87\xa2\xfd\xf2\xd20\xc8e'\xeec\xb6\xb9\x99@D\x9f\xfe>\xeb\xfdw V\x00q4\x89 \xd9\xf77j\xb5\x19\xea\xf7%Ik\xbfB\xd8\x12\x95\xc3\xcb\xf0\xd6`\x82\xf2{A\x02\xb8\x18h\xac\xc2<\xe1@\xb3q\xbf\x9f48\xf61\xd0\xb5\xcb>Q\x8b'\x7f\xcb\x17\x18\x86\x86\n8\xae\x8b\xf8Z\x00mc\x1f ]i\x06*)3=\x82\xd3\xbc\xdd\xc5\x8beA7\x9f\xe6\x99f\xc2JwG=\x01\xd8\x8bZ\xb3}\xeb\"QOPD\xdf\xf2\x8b\x15\x13\x8c}\xb8\xba Fe\xaf%>-J\xda\x06\xc0\x14>>f1{\xc2|\xb6\xc9\x86\x8f\x9b\n3\xd9\xb0t\xa7\x07\"\"\xb9?\x04\xa0\xed\xe4\xe3x\xe2j\x0eW\xad\xdd+Z\x83.\x0e'\xa0C\xe9\xf7ckaS\x05\xa9\x1e\xf9\xad\x96>\xb1\x03\x15\x8eN~N\x81\x8fl\x97\xfe\x9a6*#\x9f\xb8M\x9eV\xd0\xc8jo)\xd0(@ao\x03\x1a\xe5\xcdh\x04\xd2\xc4\x8eh\x94\xba,\xc7\x10\x0e\xfd\xbe%\xf0PK`\x03@\x1ah\xe3\xeaJ\xbe\xec\xb3q\xe3DS+\xb3\x9ao\xcd\x9e\xc8\xab{\xe2;\xf2V\x9c\xc4\xd4M\xe9\xfc\xc3 \xcaI\xcfa\xd2c\x81\xf6h(\x1b@\xd5-i\xe4\x0e\x19\xa2\xa2\xc7\xf2\xf1P&~\xc4\xae\x17}\x1fN\xc6\x01\xe0\xb8\xff\xf8F\xfdv=\xd5\x18N\xe05\xf0WJ8\xc9p\x8b\xe6P\xd7\xf3\x8e!\xdd\xc74`\xb2\xdf\x8c\xc9\xb9\xb4/o\xc6\xf5\\\xe9\xc1\xad\xa5B\xd8\x0e:\xac\x05\xc9l\xf9\x02\xbb\xec\x8bAT\x81X\x80\xe3\xb4\x0b=\x0d4,\xedNO5\xee\xdf\x07t\xc8\xc7\x81FO\x9bIi\x88\x88\xe2\xa3\xa7&\xec\xebp2\x8e\x01\xe9\x82k\x10\xd6[\xe9Yq\x15\xb7\xe8\x8c\xa8\xaf\x0c\xf7c\x0f\x10Z\xe4U\x92\x1e\xb3\x0d(&\x15\xe0w\xee\xb0P\x117\x176\xdcp\xb0\x8aW\x8e\xeb\xe1\xa4\xc8_n\x87\x96\xd7X.\xda}\x80.\xeb\xa4\xab\x03\x16\xc9\xa7\xe8|\x89\xd9\xfc\x0f\xe8_7\xe0\xca\xaa\x9a\xff\xbd-y?\x11\xdd\xd2\x0e\xc0\xa9\x9dt\xec|\x93+\x89k1q\xfa\xb7\xd79\xca\x81\xc2\x9b;?\xff\x00\x84\x92;/\xfd\x97x\x0b\x91;;\xf7\xbf\xcf\xb3N\xc1\xf5o\xec\xdf\x8e\x1c\xac\xca:_\x13\xack\xf2\xc6u\"y\x1bl\xb1F.2\x0f,\xe1,fpU\xe6-.\xb9\xb4h\x1cwZuU&\xab\xcd\x7fh\x8642\xc1\x03W\x84\xbf\xfa}\xee~\x9c\xbdP\x93XA\x10)\xd8\xf87`\xa0x\x86\xaf\x12\xab\xa8\xf2\x9b\xa0\n\xb7Ct\x08~\xe5#\xd0\x9b\xdb<\x05\xd2B\x06\x1a\xd5#++j\xe3\xe3\x08x\x10%\x83\x1b\x1e#\xad\xbe\xaf\n\x89@\xc1:\xa1\xa142\x11\xbc\x95\x89h\xdc\xa6\xb3\xca6\xddr \xeb\xc434\xb2\x96-\xfd(\x97\xb7\xfc\x8c\xf5\x10\xd6\xba\xd2\xad\xc7\xa9\x02\x9c\xd2\x00i\x0b\xaf\xdcD\x8fY\xae\x81\xb3\xe0\xc0\xfd\xb2\xa7\xa9\xe4\xc0s\xc5\x81\x8b\xbcT\xe3\xc0surH;\x9c\x1c\x9aN\x0d\x96\x13\x03\x9c\x16R\xf8\xe8p\x02N>\xfa\xfd\xbc\x0b\xdd\xbc\xce(\\O}\x06\xce\x11\x99\xc7\x02\xb0/\x10hHxN\xee@\x0b;a8\x1es\x91\xcb\xc7\xc1\n\xb2\x14\x82\x18 \x93\xc7\xbbk\xe3<\x9e\xa1B8C\xb5\xb3\xa6)B$W\xc1\xbf\xe5)\x0d\x91\xdf_\x03\xf9eo6\x1a{\xd3rd\xc8\xf4\xcf\xe7&#\x9b\x13,r^e\x91\xd3*\x8b\x9c\x16,r^\xfe\"Xd\xb3ekO%G,f\xaa#xn\xb0e\xd9 9\xbb\xe6\xf2\xf2t\"nv\xf5\x07\xf4\xaf[\xda\x03m\xbe\xc1\xe9\xcb3;C\xfa\x82\x9b\xe9K\\\x1aY\x1a\x17_R\xdb\xcd\xb7j\xb1\xf5\\\x84[6m\x88\x16!\xe3\x18\xb4\xdcx\x97B\xd3\xb9\xc7V\x1e\xd8WN\xa5\x81\xa21\x1f\x8b\xa6\xcc3\xd0n(\xc7sf\xfe\x12\xf2\x95\x13\xc6*F\x97\xf5\xc0$\xbc\x99\x97S\x9cF\xe9_\x98\xc4\xad\x04|C\xa9\xa8\x0ep\xaf\xd4*\xa9\xa7\x9d\xad0\xe5\xb1/A3\xbb\xb4`\x9f\xb7<\xb69\x14[\xc3\x99\xbc}2/\x9c\"\xac\xc4\x9b\xa9s\xead\xb1\x1c8\x1a\x00\xd9Y\x83\xe1\xf2\x87\x1a\xf8\xe2H\xb9\xe9m\x87]\xe3\xf5v\xf2\x02%+\xcc\xdd4\x17\x05$\xcct\xc3\xbd}6\x9e\x81\xcb\x8aH\x19\xf1!u\x8f\\\xd4\xc1\x01h \xeeM= nH`\x91\x89tb%}L@\xa8|e\x93\xdfbD\xa3\x1e\xe0?\xect\x94\xf2\x15\xbb\x901\x0d`\xbf^\xa0\xf7\x8d\xd2%2\xac-\xf4\x07\x1b\xe0~%\xbd\x19'\x10M!\x8e2~\x91A,\xa6\xe44u\x0b\xfb\xcd\x04\xe3G\xc4\x88)A\x89BbNlq\xa2[I#\x86\xfb\x96k\xab\xcd\x0d\xc7\x19^\x8c\x94F\xe1\xd6E\x11\x89\xa1\xf3jd-\xe9\xffC5\xcf\xb8\x1da\x14\xff\x8c,\x05\x1f\x043\xbb\xe4O\xfa\xc2d\x8d\xf1\xfc\x01\x03q\xbb\x13\xadaOf\xe3\xb4t\xdb\x8b?\xe2R'ct>\x03W\x9a\xa9t\x80\xc8\x0e\x98\xd2\xec:\xe0P\xdcY\xa0\xe0\xdc\xde \x86\xf6lbnG\xb8\xe2\x1b\x8bbh\xe7\x06Q_\x89Ri\x89R\xa9G\xaf\xaeXF6\x88\x8b;\xc9nCI\x14\xc3\xd5/\xc7C\xf5n\xd7\x90\xf5Gk\x8c\xb7\xdc\xb4gr\\\xe8)\xdc\xc2\xb5\xa1\x087wBy\x9b\xd9\xf4\xfeB\x1d\xb6q+\xa6\xa8\x00\x97\xbc\xb4\x94\xb3\xca\xae.U\xb3\x1c\xe2\x03NOp\xc9E\xb8\x00}\xcd\x05\xf9\xb2\xc5\xfd\xcc\x07OR\xd9\xb4\x03\x95\x85\x95#I\xe1\x1adr0=\xa9Q\xca\xc1\xf4\xc4-\x0d\xa0\xc5\xcf\x02\xd7\xf1G4\x08\xc4\x96)\x9d\xef\x001e\xa3\x12\xa9\x89\xeb\xe38\x8a\xc2\x9bu\xfbvA\xb0\xeb\x14\xb1\x9c\x01\xb1\xbc\xba\x02BY\xec\x9c\x0b\xdd\xabv\x95\x84b\xa2FEU$\x19 \x98 n\xb1\xf5^\xb9\xbcn\xa7r\xa2\x0bD\xff5>\xa6\xe8\x0f4\xaa\xba\x13\x0b\x8cl_\x1d\x92\xce\xc8\x9e\xf3\xa2\xe7&\xea\x1ac)~\xde\n3k2\xad\xc8\xcc\xee\x191\x18\x03\x99^\xbf\xc4\xed\xcb\xf4\xba7]\x15K\x8c\x0epc2\xb9\x1dn\x0c\xc5N/[p\xf0\xd8/\xfe\x8fd$d\xb8X\x1fG\\\xfd/\xd2\xdd:[\xabB\x19val\xb5\x0b7\xc6\xac\xc4M\x99s\xea\xa6\x11S\xa62[\xca\xec_]\x0e\xac\x96)\x14T\x1c\xfc\xa3\n\xf2\xb3\x01\x91\x96\xe8k!w{\xac\x0f\xde\x1eX\x9f\xf5\xee*3\xcf3?\x0cfL\x0dv\x19\xcf\xb8q\xf1\x8d\"I \xee\xeb\xb65\x11Z\x02\xf4\xc2\xb0r\xc7/ES1:X\xf5\xa5\xc9\x14\xb1Q%\xf4\xe14\xc2\x8aC\x8f\xcde\x13f\x19\xd1\x95i\xabS&\xbd4`\xee\x98\xb2\xb7Q\x8f\x18BH\x04\x9c\xfb\x12yj\xce\xb8\xf8=b\x9f\xf1\x8cO3>cy\x14'3\x9e\xf0\x19\x13\x88x%\xb0\x8e\xdd)\"sC\xf8\x9e\\t\xcec\xe7\x8b`\xba`A\xc4\x002K\xff=O\x19F\x1fc3hMpC\xf1\x9c\xa5\xf9t\xca\xd3\xf4\xde\xdc\x0f\xc2<\xe1,X\xae\xe24\x0dNB\xce\x9c\xf3\x05\x8fD\x13wu\xec\xbe\x0b\x13\xeb\x1eE\xcf\xe3(\x0df\x80N\x04m3*?\x1c7\x1f\x1b\xc6 \x15\xbd\xc8\x02\x89\xb5N\x0e\x84'T\x9dc\xac\xf0\x96:\xbbh9S$k\x9d)H\x13\x97\x8fz\x8a\xa8\x8b\xa6\xa5\x90\xe0#\xe9\x89\x9b\x14\xb7JOY\x06\x90k\x06[\x86\xe7\xe3\xfa\xc5\xfc\xea\xe5\xf3\x9b\x03\x88p}\xa5NYm\x91\x96\xad\x86*\xe8\xf9\xfdV\xe7Q\x9c\xca\xd6\xbf\xbd\xd1\xe8\xa2\x1f\xaf\xe28\xe5\x15\x19p\xe8\xa6]\xfc\xd3\xa2\x895H\xad\xcd\x89\xa3\x0eC\xaf\xfd4\xe5\xb3B\x10\xa3\x05\x84\xc6K4\xc1\x9c\xcf\xea\xf1\x8cn\x17~{\x86JG\xcc\xf3\xbd\xf1Qt\x94\x1c\xe5\xdb[\xdb\x0f\xe1\xef\xa3\xc9\xbd\xd3u\xc1\xac\xd0_\xcc:\x89\xfb\x85\xc2\xe2)\x1bnm1\xe5\x80.\x93\x0eX\xb7<\xf6\xe8\x11\x1c\x13\xff\xdb\xef\xfc^O\xde\xff\xcf\xd4=iAq\x9b\x97\x8a\xfc\xcao\xbc}\xf5r\xa0\xc0y\xe9pW6?\x04\xc5Fm\x19\xdd.p\xff_\x83\x9cJ\xcf1~\x19G\x9b\xd3\x98'S<\xc6e\xb1DD\x17o\xf2N>\xea\x85\x8d\xdb\x88\x11o\xd3&\x96\xdf\x0b\x06\xb3 ]\xc5\xa6L\x85p\xa9)\xfaV\xb3\x81\x08 6\xa5\xa2\x9dg\xa7]W\xe0\xcc\x03\xa7B\x1e\xab\xf93\x05\x89#\xf8\xe4AY\x0b\xdbg+\xc5\x96.@\x89P,\xd0\xd4\xb2@\xd3\xe2\xc7\x01\xeb\xe1za#\x06\xbea\ny#\xeb\x8b\xcf\x17\x1d%\xf1u\x86\x0e\xd6R\x9e\xbd\x0b\x96<\xce\xb3\xf6sO!\x00\x8aH\xe1\n\xb7\xe9\xbb\xc4\xa7\x06y\x94\xf0\xb9\x18@\xf9\xcb\x81\x88\xa7\xe0UNt\xe6\xce\x1d\xd6\x8b\xf8E\xf6.\x98\xbe\xef\x81u\x90J\x86\x05\xa4\xba)\x12E\xc5\xf5\xfb/\x8f,\xcb\xbasa\xd9\xff3[\xff\x97\x95\xfe/\xb5\xfe\xb7hpj\xf3@.\xfb\xca\xd8f\x18\xef\xbf\xd0\x98\x8a\xb3\x15B\xc8\x80\x0c\xa7 \xa3\xd7^\x92A\x15\x05.\xf1\xcf\xb9\xd8XE\xb3g\x18\x1ct\x7f\x7f_\xcf\xb9\xba\x92Q\xdb\xcb4\xb1m\x0fvvv\xd8\x88M\x9d\xb9\x83\xa6\xe8z>\x1aGmI\xcc^\xb2}\xf6\xf3\x0f\xd2\xaf\xd6\x90m\xb23\x97}\x82\xd2M%\xaa\xa8\x03\x07t\xde9\x05\"\x18\xec\xd5\x15\x83\x01\xb2}\x0dK<\x16\xb4O\xbbE\xda!\x1e\x0d\xaa\xfb\x1aT\x1d\x0d\x84\x9e\xae\xb0\xabl\xa1h\xbb\xe6\xc4\xae\x8b\nA\x08\xe8W\xb1\xb3\x91\xc6\x03\xd2b\xae\xb2\x8c}'@Hu\x12O\x84\x1e\x0b5 \x05\xfc\xa4$\x9c\xa6\xdf\xa7\xea\x1eT\x839\xbd\x0d\xcd\xdaP\x96\xd5\xd1\x96\xdc\x8b\xd0\\I \x01bp\xec,\xbb4\\Ctn`\xb9\xe5c\x88q\xc6\xf8\x8b\xdf\xb7\xb2\x05\x1a\xbe\x98\xd5\x11\xf3\xd1\xda\\\xb3\xe0\xca\xa4\x01\x87\xd8\x0e\x9e\xb2\xb8\xc9\xb7\x08\xbf\x98r>K\xd9\xd2\xbf\x08\x96\xf9\x92\x15z\x8b\x0c\xa1\xf2}9\x1b\xd9\x1e\xde\xdf\xbb\xffpg\xf7\xfe\xde\xf5\xdbk\x07\xe76\xad\x17\xdd\xd5\xafx\x04bG\xee\xb8\x1d\xcb8R\xc4^\x9c\x14{q.\xdd\xc0Kk\xf258\xe5\xe6\x8d\xd8G\x13\x9bf\xc4\xd7\xdd\xfb\x02\x8b0X\x04\x99\xeaZ\xbb\xc1\xc0i\xf9)b\x0b\x12\xa3W^\x11\x0cr\x00\x99\xd2\x1d\xc2m K\xcb\xe46(\x9f\x83\xf6xW\xeb\xae\xb1\xb32\x044q\xf3\x01\xc2F\x9a\xc9y)\xff23\xd3\xa6\xcc\x10\xda*R\x1f\xed\x15\xa9\xc3\xedm\xb8\x0f\np\x02\x18 \n\x8e]\xae&\x02\xdcz\xff\xf7\x1f\xfc~\xafq\x1d\x9av\xef\x84\x1d\x85\x8e\xb1 \x82\xc178j{\x15D\x96a>\xabK\xb5\xea\xbe;\xd1\x05\x87\x1f\xdc\xe2\xc2N\xe4\xec\x0co\xe2\xdb\x93\xf4]/\x1a\xee\x1d\x1f\xf3\xf4\xcbx\x96\x87\xbcW\xa7\xda2T\x90\x1eJ\xc1EY\x0f\xc4\xd3k\xb2UQF\x00\x89*\xec\xb1X\xbd\x96\x1b\xd0\x07\x93\xdd\x08\x1cq\xb8}Pw\xf3\x1b\xcb\xac\xfb\xdb\x10\x95\xb3\xc8S\x1d\xc0\x90cd\x1f8\x12\x99r\x9c\xd2\xef+\xb5Ca\x9c\xc0\xba\x9f\xbe\xf5\x88\xe9/\xc7\x04\xa8}\x87&\x8b\xd3x\xb9\x8a#A\x0e)8\xa8\xe7\xd9j5b\x97\xc5\x0cZ\xcb\xf9y\xb6\x88\x93\xe0\x1b_\xf4\xe4u\xbc\xcaW#v\xd2\xbd\x1a\xff4\x8bF\xecx\x8d\n\xafV<\x81\x8fA\xcd\xf3n5\xd3\x11;l/\xf9,\xcf\x16/2\xbe\x1c\xb1\x8b\xf6\xc2\xa2\xd9C4{{\xdb^:\x16\xc5\xb7G\xecY{Q\x7f\x15\xfc&\xbf\x14}\x19\xb1\xe7\xed\xc5O\xfc4\x98b\xe9\xf7\xed\xa5\xe5\x91\xe4U{\xc908\xe3ox\xba\x8a\xa3\x94\x8f\xd8\xeb\xf6\nA4\x8fG\xec\x8f\xb4\x17|\x11\xcd\xe3\xe7\x18\xd8\x9d'#\xc6y{\x95\xdf\xc8\x97\xabw\xf1k_\x8c2\xebP>\x8e\xc2 \xe2?\xf2\xc3`\xe6gq\xf2\xa9?;\xe5#\xf6\xaeCE\x85]\xe9\x88}\xb9F\xf1\x11\xfbi{\xe9\x02u\xdf\xe6\xcb\xa5\x9f\\\x8e\xd8\xcb\xf5+} A1G\xec\xcd\xfaU\x11~\x9f\xb5W\\\x04\xa7\x8b08]d\x82\xe1\x18\xb1\x9f\xb5\xd7H$\xa6\xa4#\xf6y\xf7\xd2#\xf6M\xf7\xc2\x9f\xc6\xb3\xcb\x11\xfb\xb4\xbd\xc2\xcaO\xfc%\xcfx\x92\x8e\xd8\x8f\xd6(\xfe&>\x1f\xb1\xdfh\xaf\xc0/\xf84\xcf\xf8\x88\xfdV{\xd9\x05\xf7g\xd0\x91\xdfl/\x0bF\xb4\xe9\x88\xfdZ{Q\xb8\xc5\x17e\x82y\x1d\xb1\x1f\xb6\x97\x8f\xcfxr\x16\xf0\xf3\x11\xfb\xed\xf6\xc2\xf38\xce\xc4\xc2\x8c:,\xb4\xcf\x830\xe3\x89\xb6\x9a\x93\x0e\x95^\x0b\x88\xe3t\xc6\x1d\x8aO\xf3$\x1c\xb1\xa0C\xc9t\xba\xe0K\x81\x83~\x87\xc2o\xb1\xb0\xd6\xf7\xbcC\xade<\xe3\xe1\xe1\x85\xbf\\\x85|\xc4\xc2\x0e5\xbe\x145~\x9c\xf8\xab\x95\xf8\xc6\xb4k\x8d\xe7q\x18\xfa+\xb1F\xd2\xaeUFl\xde\xb5h:b\xab\x0ee\x0f\xa3|)\x9b\x9eu(\x8e\x8c\x8e\xac\xb0\xe8P\x01\xcc6e\xf9\xb3\x0e\xe5\x0bg\xf7\xb2\xce\xb2S\x1dd\xb8F\xec\xb4C\xe9w\xc9\xe5\x8b\xecU\x9e}\x9ag\x99 \xeb\x97\x1d\xea|\xe9'\xefg\xf1y4b\x17\x1dJ\x7f\xea\xa7\xfc\x0b\xff2\xce\xb3\x11{\xdb\xa1\xfc\x8fx\x92\n\xde*\xf1O\x97>\xae\xb7\x11;\xe9^\xf1m\xe6/W#v\xdc\xa1F\xb1a\x1c^d#\xf6\xc5z\x15\x80|~\xd5^\xe7\xb5\xa2\xb7\xf0\x91__\xa3\xc2\x8bh\x1a\xe63~\xb8\\\x89\xd9\xfcq{\xcd\xa2{\x10i\xe4\xc5\x1a\x154\xaap\xda^\xed3\xceW_\x04\xd1\xfb\x11;\xef\x00e\xc1\xff|%H\xda\x1f\x1d\xc8\xd7\xe6\xb2\x02ap\xeb\xc6\n\xeaw\x03i;;}\x96\xa6\\p\xf8\x87E\x87\xc8\xd2\x9d\xe4\xd8\xb4\x9frV;K<\xef\xa4F\x88:\xb5\xf5\x9eh\x8b\xd4\x1c\x8dg\x05\xbc\xd9\xbc|M\xcbW\xbf|\x0d\xcaW\xeal\x8az@\xf9\x8a\x87\xbb\xb0L\x88<6-\x7f\xad\xca\xd7E\xf9zV\xbe.\xd5k\xe3\x89\xf7\x15\x87\xe0\x03\x8f\xa8#/\xe6m\xef\x1a\x11\x8e\x8a\xbc\x9d\xedz\x9e_\xe4\xdd\xdf3\xa2\xe5\x14y\x0f\xef\x1b\xf1\x80\xca<\xe3\xf8\x1d\x96yF_\xa6E\xde\xa3\x9dz\xde\xbc\xcc3\xfa\xb2*\xf3\x1e\xd6\xf3fe\x9e\x01\x97\x85\xca\xbb\xbfe|\xef\xac\xcc3\xda\\\x16y\xc3\xadz\xde\xa9\xca{\xb4c\x8c\xef\xb2\xcc3\xc6pR\xe6\x19\xdf;.\xf3\x8c1\x9c\x17y\xf7\x8d\xbe\x1c\x96y\xc3z\xdeE\x99g\xcc\xfb\xdb2\xcf\x80\xcb\xf32\xcf\x98\xf7\xf7e\x9e1\xef\xcf\xca<\x03.\xaf\xca\xdaq\x07\xdc\xebv\x11G\xab6\xcd5\xd9\x1amW\xc7\xceQzs\xa8\xc5\xe8=}\x10\xa0\xad\x1a\x04D\x10\xa0\xadj3b\x1a5w\xc9\x807\xbfU5\xb2\xf5x\xfd]ugDN48\x81\x1eD\x837\xf0\x03tX7#\xd7\x12\x8e\xa3\x00X)\x8d\xb3\xdb\x87.>\xaa\xdd\x02\xb2\xaaM\xf1\xc1\xaf\xf3\x14Y\x11\x8f\x84)\xc3\xf6\xd4j\x82\x10\xaf\xb4F\xf5\x98\x06z\xc2\xff\x8c\xf9H\xf5-\\j6\xaf\xbe&\x13\xc9\xd0\x19\x14&\xc5\x1b\xd3\xd1\x0c\xc6\xc2\x82D\xff\xda\xaalar\xad\xaf\xb54\xe7\x05ab\x9b\xe7\xac5\xd6\x1a\xec\xe4Y\xe5\xae\x1d\xb1s\xdd\xc7\x01n\x96\x06\xb8\xa9\x0c\x106]\xb7_$\xa9\x86;\xb8\xbfg0\x14.\xe7\xac\xa9\xcc\xb93D|\xc1\x83\x0c\x83\x9b\xd1\x1b\x98\xa3!G\xe2\xac\xf3\x00x\xcf!\x85\x97\xb0|\x0e\xcb^\xcf\x05\x8c\xea\xbe\xec\xc3\n&p\xed\xac\xa7\xcbY\x1f\x96\x8c\x8c\xb0\xaf\x86\x10+\xe6^\x99\xf4-\x0e\xc6\xb5p\xf7\xc7A<\x87\x0e:f,\x06!\xbdM\x1d\xd7E\x0f\n\xcd\x10\x88\xb3@\x17\xadi4\xc0\xab\xe8>\xb0\x01q\x8b)Q\xa4\x19\x944b\x924}\x9f5W\xc9%\xa6\xe0\xfd7!\x1b\xd5\x8d\xcd\xc9\xc6\xb3\x9d/<\xc10{6;\xc9\xe3\xc1B\xd4\x89\x9c!\xab\xc8\xa6NyT\xeb\x07\x12\xef\xd0\x19\xed\xed!)\x15\x14\xf5\xd9\xa6 \xac[\xe2\xef\x9e\xf8\xfbTKh?p\xf3\xc46]Y\xc0\x95\x87\xcd\xec\xcb0\xbf\xb5\x88i\xbc\xcb\x9a\x83A\xa0'\xd0\x92$VI\xe8BO\xb8\xd7\x82u\xa9\x14\xcf\xf9zU\x87r)\x1a\xa9\x96_\xf3N\xb7\xab\xe5+A\xe7\xab\xe5KQ\xbe\xe3\x0e\x12ZQ\xcb\xde Z\xbf\xe3:U^_\xf4^\x9d\xda\xb9h\xad*Y\xde\x88\xf2*;u\x88\xb1ws+\xb3\xf2\xc3[\x1eI;\x8e<\x9aT\x82q\x9e\xe0#\xb1\xee\xe5G\xaf\x18\x05\x17/!\x01\xf7\x9c\xdb*w_1\x0f\xa9(b\x0f`\x1fw\xc9\xc5`Q~p\xcc\xd8\x97\x8e\xdd\x04T\xef\xcf\x0e\x8a\xdd\xc9\xc9\x00\xa3\x8f]S\xa7\x8aG\xea\x87QC\xa7\x9cZ\x17\xed\xa6\xa6\xa13z\xe6*\xb9\xcbg\xad\xac\xfd\xe4\x87:W}\xb82\x1b\xc3\x1b\xa2\xe1\x08\xc2\xe5\xbcb\xf4]{>\x8a\xb5\xf8H\xff\xe0\x11\xd3\x0e\xafi\xc8M\xdb(w;\xbbr\xd5\x94\xa7\x9a\xa0\xf7\xe6 \xc8\x9f\xab\xe8\xf7\xa1q\xce\xd7\xf5\x8c\xa5P\xcc\xa3\xe3t\xd6\x0e\x8fi\xa9\x8b\xea\x84G\x11\x1f\xb6p\xa2)\x0f\xa7<\x98\xd3\xa6`\x85 M\xf0\xe9\xe0\\\xebM\x0bH\x83\xcfCt\xa7\xd4/\xc0\xb5\x08xH\x07\xe7\x9e\xbe\xc6]\xb3\xc5-\xa8\xd2#O\x18z~\xcd\xcd.\xd1\xd0\x91\x0e\xce\x93RZ\x8c\xbcE\xa37\xb9\xfc\x08c\xd8\x82|F\x18\x817\xba\xc2\x98\xa5\x0b\xe2[nq\xe4'\x11\xf1.ps4W\x0fDu\x86p\xcd\xb5=\xac=\x8fV\xc4oH\xede\xde\xc1\xea'c\xf2\x0c\x1at:\x9b\x02v\xe8\x14\xfb\x07\xda\xb5\xe2\xaf}tj\x15\x0e\xb2\xac>\x97\x83\xc6\xe0\xa0\xb9\xbd7\xa0aJcG\xf0\x1f\x19\xba\xbap\xdfPo@o\xfd\xd4\x11\xeed\x9d\xa1\xcb\xeb\xb0\xdd\xa6\xd8\xe2\x07\xce\xa1\xd3\x15\xfbn\xc3\xbb$~\x08\xde\x9d\x17\xd0.\x0fI\xcd\xd6\xf1\x83\x13rk\xd8<1N\"\x9cA\x13\x87\x9f\xd8\x81\x13\x9b\xa9\x01T\xf7e#Xp\xfc\x1d\"\xe6'&\x11\xe8\xdc.\xd5\x8f\xde\x95\x07\x9f\xd4\xf8\x8d\xc8\xb7\x08\xaf\xec\x89 O\xec\xa08uR\x94D\xad#\xff\xd8n\xe4\xfch\xd2\x0f\x9e{\x15\x0e\xce\x8d\x01=\xc3bR(`\x8b9\x19\x8e_\xfb\xb1\x8b:q\x19\x98\x99o\xac\xe2\xf0\x03\x8f\x84\x8f1\x8c\x98`\x1e\xe6\xe0\xa7 \x0d\x16\xb60\xba\x08\xe7\x0f\xe8&=i\xcb<\x81\"Z7\x9f\x85\xe77c\x08\x9b9\x93\xf3\xf9X\xcd\xf1\xaf\xfb\x18\xb8r\xf9i\xc7\xb1\xa4\xf9E@\xe0|\x14\x01\x9e\xd9\xf7#\xf1\xfd[\xb2\x01Gy\xbe\x8c/?\xf9]v\xc6\xe4\xe8\x1fr\xf4\x1f1\xfc\x0e\xfb\xd01\x8d\xb7\xdd8\xc5\xf8\xec\x13i\xb1~\x0dk\xf7\xd98\x7f\x8deQy\xbb*\xfe\x11\xb8\xd7O\xac\x1b\xf6RD.>\xe9\x83\xdc\x14\xdd>t\xcf/\xbbn\x1f\xe6\xdc\xd5Jx\xcc\\\xfaU\x17;=\xfaP\x07\xd1\x84\xb7\x9bc\x8a\xfcY!.V\xa0\x1f\x15=\xd7\xe0\xa1\xa8\xbb\xfa\xfc\x107O\x925Ppv\xfc\x97z\xf2\xf2\x92\x84\x8b/\xfc\xc7\\\xf2~\xf8\xeb\xbaV\xf9R\xad\xcc\x19\xc5b@nq\xa5&\xd4\x1d\xbb\xaes\xa2\xc4\x8c\xaa\x8d\x8f\x86\xe3fQP\x8ar\x07\xceJ\xae\x9ak\xd3\x15FWe\x9dtGI\xce\xca\xcey\xb67\x98\x80e\xd4\\\xe3\xd9\xc9jq\xe9\x07\xd9\x18v\x16\x8b\x9f\xe3\nL\xbc\"\x97\x8f\x841k\x80\x7f\xad>K\xd8\xb3S1\x8f\xceH\x0dTS^\xe7\xf2>Bti\xd2\xdc\xcb\xebH\xd6\x11\xaa\x10\xe48\xcd8$\x82\xe8\x18\x89\xb9\xd4\xc1\x84\xf4\xa6\xea\xb8\x89\xdd\x14\xe9\x07\xa8\x98\xa18Q0\x04\xecG\xbc\xaf\x1a\xb9\xf9#\xc6\xa4\xe0\x93#\xf1D\xc5\xe6\x8b\xc1\x82\xad\xb2\x15\xa5\x8b\x08\x0f\xfb\xfb\x80>r\xfc+a\x1c4\xbd\xe1\xbe[c\x0c-R\x9a\xe4\xc2Y\x0c~\x82\x1e,\x06\xbf\xe1\xffx\xbfr\\E\xc8\x0f\x92):)\xbd\x1c:\xcf\xf6\\G%\x15B\xbb\xba\xeb:j\x11\xa9*Xy\xbf'\xa5\x1e\x15rS\x9d\x1a\x83N\xd3\x1aK\xfe\xe8@G\x98@\xd1<1\xf4\x14\x10w\x1d\x1e\x8aD\x8bg50\x15\xc3u2\x06\xe0\xce\xb1k\x1d5.w\xd3\xb0\xc5\xa8n\x9cL\xee\x8d|\xd9Nro_+\x9aV \xe9\x1c\xb3\x86\x1ao\xc8N\x06x\x84\xbb\x03\xdc@\xce\x95\x8a\x15\xb6i\x91 h\x9a\x92\xca\xa9\xea\x0f=N\xb4R\x83\xd2\x92\xbb\xf2Z\xb57\x91\xa8b\xd6\xd8\xf8\xed\x05UIFm\xb9 A4iI\x90\x0f2\x96\x8b\x99\xc5\xbaf\xa4\x9c\x9d\"\xed\xd5\xac\x18|\x01\xf6\xc1\xef\xf5\x9a\x19\xc0\xc4\x90\xb6C\xfd\x88\xec\xc9\x9c\x02\xb2\xbd\xd9\xeb\xf5\x0be\x19\xc3\x88\x96\xa9\x0e\xd4O\x82\x9cE\x92'q\xc8D\x12\x89\x8d\x0d\x94/b'lb\n\x8d23\x084W\x9a\xd2\xd6\xd3eG\x90.\xc6\x03\x1e}\xc2\xf1\x07\xd7m\xcf\x95\x98x\x8d{\xf7[!\xba\x19\x8b\xa3\x07`\xf1\xc3q\xab\xbe\xea\xc5\xb6\x03\x8b2O#\xdd\x82}\x05\xa2\x81\x08\xc0\x1b\xd9V@!A\xf8\xf5KmMtgu\\\xdcuc\x94\xc1\xf2P\x93\x1b\x1f\xb9\xce4\x8f\\P\x87\x9cG\x12\n\xc3\xb1~%e\xb8\xa1 P\x8c%L\x85\x9aT\x03\x12lg\xd4\xa2\x9dt:\x9c\xa9m\xf5!\xd5gd\xc7\x167[\xb6\xc8Z\x19i\xda\x15\xe5\x86\xd6\xb7\x1e\xd4:\xfb\x7f\xd3\xd8\x87xj\xe8i\xfb\x0bzb\xffo5\xf4'\xea\x180N\xe9B\xc4=\xc66\x94SQ\x8b\x91f\xbb\xb1\xea\x8d\\d\xb9\x1d\xc5\x14\x84\x83\xf7Y\x8a.1\xc7\x17 \x8d\xaf)\x06v\x88\x07\xbf\xd1\x8b_\xfc\xb4\xfa\xac\xfc>O#\xad\xbd\xde\xcc\xf0\x91\xf6z3\xa9^o\x86\xce\xb3-\xd7!M\xd7\xf9ZNX\x1ay\xb5\xca+\x19\xf7ui\x13\xf0> \xa5\x00\x94\xde\x88\x90*\xa4\x06\x16o\x00\x9e\x035&\x98\xe6J\xeeE\xd8G\xbe\x9c\xa2\xdd\xc5\x97(\x88\"M\xd2\x0cPEScl4\xc8\xa3\xd5cl\x1c$\x04\xa9\")\xb6\x8d>V/)\xb5\"\x00\xc2\xaf|\xca\xf8\\\x9e\xaf\xbf\x00'qy\"D\xdb\x9a\x90\x81\x0cv\xe9\x04\xd6\x06\xf3D\x1e\x1d\x9fcgH\xae\xfd%I\xa5n<\xff9HR\x12\xceI\x10\x85\x1a\xad\x05\xc6\x7fC\x83\x1ey\xda\x98\x00z-\xf2\x7f\xe5\x15\x1d\x83\x1a\xaeq\x8a\xf2\xe3\x89\xc8\xa5\xadu)|\xce\xad\xda\x8frU\x95.M\xb5\x06\x92\xfa\xdd\xb1\xe0\\\x94\xb6\x8b5\xec\xc3<\xf2x\x94\x1c\x1e\xff\xeb\x94\xde\xa6G\xd1\x9c:]\x9d\x8e\x92\x8b~\x81;\x888\xe5p\xd6\xba\xb0Q\xec\xe3]\x92\x98x)\x8d_\x93\x94\x8c\xaby2@J|m\x00\xb1\x1e\xccI\x8a\xb7\xbel*\x8b\x06\xfc\xd6\x12\xe1\xbc\x0f\xedf\xbb\x16A\x08\xf5\xdd/\xc21\xc4\x06~\x0cS\xb2\xf2\x9d\xd4\xb4D\x80\xfb\x8e\xc7\xb2b\xef\xc1>\x86\xcf\xa5<\xfe\x0c\xcf\x0e\x1a\xa2\x9e\x1c\x1f\x19\xe6\xd4\xea\xdch2\xbd2\x9c&5\x93J_o\xa8\xc5\xc5\xef\x9a!\x8fLA\xae\xda\x804\xd0\xfe\xdaN\x95,\xb0>\xc1,\x8f\xa8\x15\xf1\x88Zq-D!W\x07\xe1ej\xcaD\x06\x8cf\xbapR\x0c\x93\xaaa\xc0\xa2p\xe1/\xb3\x98\\p#\xdb\xfa\x12/i\xda\"\x0c\xa0\xa2\x0djB\xcd\x07\x9e\xff\x8d\xeb\xa87\xa13\xaccm\xd5\x89\xc1\xf2*\xcbm\xa2\x8aNc'\x1e|\x80\x1e\xc4\x83\x8f\x16i^\xa4\xf7j+\xe8\x10\xa1\x9e\x8b$G\xc1\xf6\x82/\x7f\x18\xa4\x9c\xd0\x84\x1e\x9a\xa0c5E]\x08\x93blF\x93\x17\xf1\x1aOH\xe0\xb8U\x11\xd6v H\xe5\xa8\xb6\x82\xee\x1a\x8f1\x99}\xf8\xee\xe3\x12\x91\xd3\x1e4,\xb3\x96\xe8;\"o\xddt\xcf\xcfM\xf7\xca\xe8xbA\xc44n\x8d\x84\x11#\x11\x987\xda\x88n\xbe\xd6\x92A*\x00\xc3\x01E\x93\"\xa1u\x1d\x17r\xb0\xeb\x84(\x9f6k\x04\xdb\x00T\x82\xce\xba\xde&b\xf4\xd9A\xa32\x99_\xc2\xe9*\x15\xbb5+J\x0c\x01?\x88\xe9\x92\x864f\x0c\xd8\xc7,L\xfd\x15\n\xdd\xc2\xa9gIS\xc5\x95\xe7\x88\xach\xe2\xc4\xee\xc0\x0f\xe7\xf4\xf6x\xc1\xda\xaf\xbe\xdcu\xe1eM\xe3\xe5\x83\x08c\xa7\xeb\xae\x809&{\xd1\x0d\xa8\xe0c\xcb\xd6\xb7{\xec\xd4\xc2\xb4\xec\xfa\xb7\x94\xc8\xf9\xc8;\xd5yx\x11}S\xf7~\xb1p\xc6\xeb%\xeb`\x8b\xf7\xb5\xeb\xae\xb6\xa5\x18u\xd6\xeel\xf4;\x0c\n\xa37tU\xaf\xf8`\xd5\xb1\x9c/v\xd95\xab^\xcb7\x91\xdd\x93\xbb\xd5E\x14\xc0D~\x19\xd7\xccVA\x9c5\xfe\xc0O9@\xd0\xbe\xf1?\xffS\xfe\xec\xd6\xeb\xa3\x8e\x92\x87}}[~\xa9T\xa6y3\xc17e\xb0\xc3S\xb2\x14\xef)%\x9a\xb7\xf0\x92*BX\x95\xce\x94zMOX\xf7\x99\x91\x15\x04\xc2z.\x04\xc8\xf0\xa9\xa8\xe9\xb9\xad8w\xc7\xd4\x0d\xecC\x80\xb9\xa6d\x93\x0c\xde\xee\xe0&&\x8c\x99?\xaf\x93))\x03t\x93,Y\xd3pN\xe7')\x89S\x0d\x0c@H\x04E\xcd\xbf\xfa4\x98\x1bj\xa2C\n\x8f\xa9\xe4\x87:\x90\x820\x06\xefz\xd1j\xcd\xf6\x92\xa9\xa5k\x9ePA\xfbl\xa5qC\xc4\xf2)\x995\xd1Bhb\xce\xf4\xc0Z\x16\xbbfI\xd3\x0fr\xe3\x1c/\xf4#\xbc\x83}X\xb2e^:K\xe7\xbd3\x9d\xb9\xbaKS\xf48\xb9C\xb3(\x14n\x85pw\x87I\xb3ej\x91;\xcd\x8blD\x17h\x9c\xad\xde\xf9\x1e\x96~\x95\x028;+M+\xb7\xa5\xfa\x17\x15\xeb\xed\x93>\x9cT\x8an\xfbp2M\x18\x88o1MW@\x90\xc6\xb3\xe5\xfcIb\xa4(\xbf\xf8\xa5\xcf\xd7mp6\xc3\x83\xd2\x19\xb2\x0fW8m\x8c'\xaeu+\xb5!j$n\xe8\xaf\x9cs\xf5\x0d{dh\xed\xde`\xa7\xf9\x04\"t\xca\xe2\x1e]\x0f\xb9'\xcbU\xcb\"\x9f\x0e\xe5\x8e]Jk\xfa%\xd0\"\xf7+\xc4\x8f\x8b*vuY\xd97 \xb2}\xb8\xc8O\xe3\x074\xd6\x9d\xf2\xd3\x18\xf2\x01Ur\x1e\x82\\\xe0+z\xd7\x9c\x8a\x04\x14R35\xa46\xa8\xf9\xaf\xa7\xd2\xa8\xc4\xba\xbe\xec\x94\xbe\xa6qB\xab\\\xb4\xfa\x91\xa3\x83f;>\x91\xd9@\xde\x1d\x19\x15\xd4\xeaG\xca\x06\xe9`\x1d\xadMZM\xf5\x83\x0c\xb5\x98fn\xd0\xc3\x91\x08\xd3h\x84\x1c\xb5\xb8\x91\x92^l\x94\x1f\xb3\xa5\x1c(\x02q\xde\xde\xd0\xd6\x9e\x96Hx|`l\x91\xdf\xf7\xe1\xb4D\xe8\xf4\xa0Q\x0e\x8c1\x9c\xeaW%\xa6 m\xb4\x02\x91\x1f\xccz\xc1\xedp\xe8\xb5b\x9a%\x14y\xf2gBCy\x81;8\x17?B\xf1L\x81'\xffM\x03\xba$\x18\xa5\x84'\x92\xc4\xd2\x15\x86 \x95\xd9\xc0\xba\xa2\x94\xc4K\xa5\xa54\xbe;\x0c\xd3\xd8\xa7\x89\xcc\x97\xec|p\xfb\xd0i\xb0h,\xa2\x9d\xb3uG\x91\x17\xbaiWxo\x88P\xdbCW\xe1N\xb8v\x86;Kux\xea\xb4\x9eL\n;\x12 \x86X\x1d\xe1[i :z\xf0'i\xb4n\xa1\\\x03i\x00\x95\xa3\x8f\x19\xb7\xa5\x0dU\x05H\xd3\xe1l XP?\xb2\xb8\xd8`*}\xd4\x93p\x98\xd0\x01\x1eJ\xf2\n\x86-\x82\xf9eU\xd3\x14_\x93zb\x020\x83\x821\"L\x8c<\xbc\xf5\xe8:\xc5\xa8\xb4\x0f\xc4J\x06\x9c|\xa0v\x00\x156\xdf\xcd\xb4*vL\xa9\xf6\xd5\x8f\xd4J\x0d\xc4\x96\x140\xecC&\xf0\x16m\xc4\xc5NA\xef\x11\xae\x04\xaf\xa3\xba\xc4s\x86\xcc\x1d\x8b_\x85y\xe4\x12\xc5\xfd:\x1aHg\x9d\x0d\x18=\x07\x1fU\x11\xcfacC\x1b\x17B\xfd\\\x8b\x1c\xffU\xac\xf2\x1b\xcc{@H\xb1\xa4\x15\xf2\x81D\xc08\x8a\xc4\x9e$\xac\xb7w\x91\x97\x13\xe8\xd8\xe9\xd2pn3\x1d\x97\xad\xc8W\xe1\xc5>\xe4d\xabi\xa2 &\x8b\xb9kD6\xf4>tQ\xc3\xf1.\xf2\xba\x96\xd3M\xfd\x04\xe5\xd7\x85J\x18\x1bhw,\xe1\x9dm\xd0f\xb4P\xa3\xcc/0=/\x1f\xb0\x02\xb7\xa2\x10\x1d\x10\x9a\xc7\x01\xda\x96\x8b\xb9\x94\xdaV\x8a\x1b\x1b\xfe\\\\z&\xdfs\x8a\x8d\x0d\x7f6i\x1et\x1f\xbc\xa3\x0d\xd4\xfc\x1b\"\xf7F\x1a\xdfA\x92\x92\x94b\xd6\xf4\x1b?\xbd\x8c\xb2T(\xc5\xa2X\xde\x07\xb4Yy\xf8n\x10\xb7\xd6\xb0\x98\xf9?\x84\x84\x93\x8b8[\xa7-l\xac\xe5G\xe15\xed\x94*\xcc)\x95\xf1Z@~r&\xb0B\xa9B\x03\xbf+?\\\xb9\xaa\xa1\x18\n+\x10W\xb6rny-\x96*.-U3VI\"m\x10\xe8\xd5\xcfEL\xc9\xd57]D@}&\xa6)\xc5\xc6\xc5y\x8f\xfa\x02\x99>\xac+}z\xf0\x16Q\x01\x0e\xc8\xd4%\xbe2el\xcc\x17\xac\x9c\x05\xdb\xe5a\xe2s\xd7\xd7\xfc`@-^#wA\xe4\x11K\xfb@\xc4a\x99\xf6\xb11\xc7\xc2=\x8a\xa3W\x1do\x1f\xae]a\x0e,GA\x1d\xf2 \x06N\xbe\xf6\x00\xa4\xff\x16\x1cVi\xc58<4\xcb\xc6\x1fLJ\xf3\xc7\xf6a\x0c\xe2\xea\xa3R\xd3\xc9Y7\xb9\x83\x04\xf3\xc2\xfe\xd6\x98s\xd1D\x19\xc0\xfctf=\x84Q\xbc\"A\xa9\x07y5\xed\xa8o\xa4n\x1f\x0c\x1e\x7fz\xa0/\xfc\xd0O\x1a\xfd\x13\xf2\xda\x05\xc7o'2iNd\xda\xf9\xd3k\x88L\xda\x82\xc8\x84\xea\x8e\x11\xdbKe\x9csL\x0c\x95\xad\x81\xc9\x89\x17)\x8d\x19e\xe9\xa3\xe3\xb8 h\xf0P\xb2\xdd\xca\xdbC~\xfe\xfd\xa0)\xa8\x92\x80d;\xa2\xcb\x8d\x84\xdb\xb2\xa4\xa0\xd9\xb5\xb1\xd8\xb5\xcd\xfd\x81\xa26\x8b\xed\xbb[\xfd|0\xd9d\xab\x1f\xfb\xb1\x0e\x05\xc10\xcb\x11\xf0\x85GG\x8d\x0b\xf2\x03&\xca\x07\x82\xef!iJW\xeb\xb4\xfb j*\xb5\x01x\xe32\xae\xea%\xad&\x82\xea\x0eR\x94\n\xf6\xe5\x91Woc\x8c7`\xe7\xecc\x9adAzDVt\x0c\x0d\x01-\x18]{\x17yc\x83m\"p\x85\x0e?\x9d\xb8\xe2A\xa1\xab9u,\xc4@\x03q\xac\x95VM\xc0J?sy\xf6\xbcA\xcd+q\x95\x9f\xf1\x8a\x9eI\x89\x0fs(\xf2\xe6\x1d\xea\x01Q\xcb\xa7\xe9D\xaa\x82[\xfb\x0e\x11Z\xe5S\x07\xef8\xa7:[f\xb1\xc8\xfe\xe0\xdc\x0f\xaf#\x8c\x02j\xb3\x15P?\xb9\xdd\x80U\x8b\x99\xb7f\x8a\x95(?\\s\xc8\xd6n\xae\x11\x08rm-\xf8 \x90 \xa6d~\x07q\x16\x86~\xb8\xb4\x89\x01E\xabZc\xf9jU\x95\x1e\xe5\x19\xc6\x0d\xd9\xf0\xe5GL\xf4\xadA9\x0e\xcd\x9a\x85\xb0\xe0\x00\"<\x96\x10O\xfd\xe7\x8d*Z\xc9\xf6\x85\xf9\x06m&\xef\xa4\xa9Q\x10\x0dg\xe8\x14B\x18\x064\xd3W4\x96m\xd32\xc8\xca\x08\xe3\xeb\"\xafns\x1f\xa0(\x85\x1a+\x7f\xa9x\x06\x12\x13\nZ\"\x97\xc7\x85Pjb\xc3B\x0d\xdb|\xfe\xe4\x92\xb9\x8a]E\xa3\xcd0+\x90x!q\x92m\xbc\xcb~\x9b\xde\x01\x9d\xa9j\xba@\x07_m\xf0v\xe2C/1\xb6\xa1BU\xc3\x01\x97O\x9d\x82o\xe5\xad6l\x18\xd8\x87\xb9\xbd\x8a\xd4\x17\xdd\xe4D\xa8\x19\xb1K\xdcq\xd2\x9a\x99\x10\xc0\x957 \x13\xb8\x841\xac\xfb \x8e\x8b\x87\"i\xe3u\xa6\xfa\x11I\xfd\xb0\xabvZ06\xc6\xb1\x18k\xe3\x0b_\xb3\x07T\\MrQ\xc3\xc9\xf1\xae\x90Y\xa4ZV\xd2\xad\xc4\x8eX\x06F\xbaV\xfa\x99-}\xd8\x07\xe2\xf6+\xc97M\xc7\xf0\x8d\xed\xc42;S4\xaeX\x8ai\xb5$z\x99\xd7\x89\xc4\xcb\xdc\xb3\x07\x87\xd1v\xa6\x8d\x11\x1c\xda\x0eQ,E\xc3\x08\xdb\x0e\xab\x15\xd0\x0f1\x9e\xa0\xe1\xe1\xad\xed\xe1\x89\xed\xe1+=0\xa6R\x01\x91c\x9d$=\xb3\xfc\xce\xcal\xd8&?\"hg;\xf1Le\x83\x05\x93\x84v\xb2\xadW\xb7j\xee\xaa\x9f\xf0\x95\xc5\x9a\xb4Nu\xd4\xd1\xa83\xb1\x19\x1a\xe4]\xf9\xad,\x8d\xe9\x8dt\xa7W \xda\xc0\xc3A\xc9\xb2\x90\x07\xbc\x8ey\x90\xbc\xa6\xd7@\xe1:n\x1c:\x0dg\x18a n\xc9{Hr\xd5\xd9\xdf\x177Fm:\x04\xe5\xa8\xc9\xda\x13a\x10\xd7\x11 \xbf@n\x1e!\x14pE\xcb=\x8dE`\xa0(E\x03L\x05\x8bV/]\x17&r\x1dr\xef\xa2` \x9e>\xc8\xb8\xa3\xfaI\x1d\xb9\x99\xa8X\xa2V\xaf~~\x88\xeb\xae\xfaI\x9d|\xd3>\xacC\x17\xc6u\x10|\xd5\xd4\x93\xdc$\x01C\xc9'-\x07\xd2j\xc8\xcd\n\x04\xe2d-x/\xb1w\xd2Z\xb0\xf8R\xad\xb6T\x08\x14J\x06\"K;\x87\xa0\x8f{z\xcc\xa8B\x9dv\xb5\"]\x07\xd6\xc8/<\xec\xa6\xd4\x0bL\xe5\xfd\xacF\x11U\xb0\xb9F\x99\x13or\xea&\x0e*\xb3\x92\xb6`\xac}L:/\xc74\x10\x80\xa9^\x1f\x17\xca\xd8\xc2PB\xcc\xd5\xd0e\xaev\xbc6\xd3\x84T\xc3:\xe5\x1d\x943\xd0\x9f^\xd2\\\xa1\x02\xf3\x88&\x10F)\xac\xe3\xe8\xda\x9fS \xf0\x18\xdf\x7f\x0c\xbcA\x93b\xc8\x86\x0b\x9aH}\xdaE\x8c\x90*\xc7}e%\xc5\xa85\xf4\xb9&H\x0bz,\xf1\xcf\x02\x80Hh\xc5\xebK\xac\x81\xa8\xbc\xeb\x89\xf4B\x90Tm\xe0\x95\x88\xe0\xed\x9dt\x8a4D\xe8\x9dfx}!\xe2\x99\xa7\x85B_\xa8\x9b\n\xee\x02\xcf\x95\xb4\xa4P\xb2\xdb\x19\xe8f\xc0\xb3\xcd\x8f\xcb\xef6\xa0@\xbe\xfc|\xd0\xe0s\x1c !\x88#\xc4\xd4W\xab\x9d{lwa\xd1o \xae\x1d\x1e\x03\x9d\x0egu\xf4\xa9\xaf\xc3\x88\x9b\x9ar\xa0\xc9\xcbd\xcc\xc72\x9a\xb9}\xd8T\x1f\xabz|\xa0\xdc\x1d>\xd7\xd2c\xd1\xd6\xcc\xad\x9b+\xa19]\xdan\xce\x1f\xecs\xa6\xea\xed\xd9\xfd\xbd\xf6\xfa,\xcdMR\xa4L \xbd:R\x8e\xbf\xa5F\xf6\xab\xd1\x94\x0d\x03;\xd5\x0f\xac2W\xd8\x87\xa9}]\xb8\xa9G}e08\xacd\x92\x8f9\x10\x8b\xc8N M\x9d\xea\xfd\xbei\xa4\xef\xf5#E\xaaj\xd3\x16\"|\xa7\xc4p\x07\x81\xb4]\xa1\x12|\x7f R\x9fom\x8fJ\xcf_\x1d\x7f<,?/eU\x1a\xbc>|s\xf0\xe9\xdd\xe9y\xb5\x9fQ\xa5\x1fY\xef\xcd\xa7w\xefJ\xf5\xb6wJ\xf5\x82\x88\xcc\xf1\xc2\x94}\xa9>8\x08\x82\xfc\xd9\x01\xe3 \x8a\xc7 Y\xd0w\xf2]\xf9CWA\xb6\xa1\xfcV\xab\xcd\xb3\xd5\x1a\xb95\xf6\xa5\xfa\xfek\xf9P\xfeP+\xfc\xf5\xe0\xfd\xbb\\q-`\xb0W\x9a\xdb\xfb\xb7Go\xdf\x1f\xbc\xb3-G[0Z \x98x\x84\xbb\xedv\xd9\xb7n\xe9\xd9\x9a\xc4\x18F\xd1w\xba\xf8\xb5\xfc\x14\x93\x19\xcb\xe7\xe2G\xb9\x06\x99\xcf_\x95<\xa5|\xa7[.\xeb~\x93M\xfc\xb4\xea\x06\x1d\x15\x00-\x95\x8b\xb4Z\xdb\xfaDq\x08\xbdRyV\x80\xacT\x9eh\x9cE\xad^\xa1\x01F\xbd-\x15y\x18\x07\xbaL\xaba\x1f\xb6\xcaE\x0c\x81\xb6\xcbE\xf3z[\x97\xf5\xb6\xae\xebm\xad`\x1f\x9eL\xcfn\x87\xc3\x8d\xb3\xdb\xe1\xd3\xb3\xdb\xe1\x8fg\xb7\xc3Wg\xb7\xc3\xc3\x8d\xb3\xdb\xd1\x9b\xb3\xdb\xbd7\x1bg\xb7O\xb7\xcfn\x9f\xeen\x9c\xdd>{s\x96\xbdy\xf3\xe6\x10\xff\x7f3\xbb\x9f\x9ee\xaf\x9f\xb2\x97\xb3\xd7?\xbey3s&\x1dV\xf2\x8a\x97\xb0\x1a\xee\xbd3\x19O\x7f/W\xbb\xff\xdd\xadT{R\x1e\xd6R\x0c\xeb\xe9\xceY\xb69\xdc|\x8a\xff?\xab\xd6\xba\xc3Z\xfd\xb3\xe9\xd9\xec\xec\x1fg\x9f\xab\x8f/\xd8\xe3\xdf\x9d\xc9\xb8s\xdf\xe9\xdcw\xa6d\xe3\xefg\x1b\xb3^\xc7\xfd\xf3\x13\xbf\\\xf3\xbc\xa89\xfd\xbdh\xcfu&\xe3\xff\x98\x0e7\x9e\x91\x8d\xc5\xec\x1f\x9b\x9f\xef\xf9\xf7\xbf\x9fm\xfc_\xcf\xcf\x9e\x9cM\xc6\xff\xf9h\xff\xacw\xf6\xe7\xfe\xf9\xd9\xa0\xf3?g?<>s\xce\\\xf6\xf6\xcc\xfd\xe1\xcfO|\xddYqc<+F\xc3\xc2\x8an\xb4\xc5\xbf+\xd4\xbc\xde\xd4\xa1\xb1\xa9gEK[\x9b-Z\xba}HK8\xbe\x87\x8e\xf5\xc4\xd8\xc3\xf6v\xd1\xd4\xb3\x91\xf2}K\xe9b\xb3\xf4c\xa7E\x87\x1a\xbd\xbaF\xc5,\xc7\xf0\x14^\xec\x0bgI\xf6mg\x0f\x13Zn\xb0\x07cx\xb6\xc7\xca0\xaa\xf8\xd6&\xdc\x0b\x9bF4a\x1c\x0d7\xd1\x9ca\x83U\xea1\xb0\x8cacd\x1d\x98F\xff]\x8c\x82Or\x02\xdd\xb3a\x97\xf7\x9c\x97\xfc\xff\xb0@\xadr\xc1JF\xa3]\xa5(\xc5J\xd5\x82Q\xbe\\\xac(\xe4EjK\xd7X4\xdcT\x8a\x16\xbc\xd6\xb6R\x14\xf3Z\xa3\xa2\xe8\xff\xcfJ\xb6\x94\xd7\x00\x0b\x8a\x97\x1ew\x1f\xc3\x18\xb6\x95i<\xc1\x11\xaa=\x9d\xb1\x92=e8\xff\xe7\x7fc\x9d\x1d\xa5\xe4\xff\xc6:\xeaL\x91*\xb0\xd2\xa7\xc3J\xe93V\xda\xedZ\x17\xe1\xc0\xb8\x08\xb8\xfe\xbb;;[;0\x01\xeet\x87y\x0b_]\x92\xf8U4\xc7\x9c\xa8c\xed\x83\x9d\x9d\xcdg\xbb\xd0\x03\x87!\x0eka\x17^\xbe\x84\x11\xe3uvv\xb76\x87\xe5G\x8f\x18\xbc\xb7\x14o\xd9\x82_\xcb\xed\xe4\x8e\x85\x9a\x043\xee9\x9b;\x8c5\xfb\xa0);\x054\x97;\x85\x17\xb0\xb9\xb3\xfb\x1cN{=\x17\x8e\xa7\xa73\xd8\x87+\xe7\xd4\x85 \x8c`\x0c\xc3>|(\nu\xc4\xe9\xbdV\xc1\xa9\\\x94Dx\xdf\xc7\xc3\x17\x0f\x16~@C\xb2\xa2\xa8,\x0b\xd7Y\x8aN\xb4Q\xe2\xa7huH\x07\x81\x1fR\xb5\x0c6D!:\xd0\x97\xe6^\x1f\xcb[\xedX8\xcf,\xc6i}\xff\x0f\xed\xfbt\x10\x85\xbf\x918\xf4\xc3%w\x8d\xce\x7f\x8a@\x85\xa8U\x12\xed\xeb\x16\x87\xad\xcbQMe\xc4\x18\xb7\x9a\xd1\x99V\xb9{]$\xa4\xab\xcb\x8e\"7\xf0>\xd0\xc15\x8d\x136\x8dG\x8f8$\xba\xf3l\x1d\xf8\x1eF\x1d\x84h\x01\xff\xc1\xba\x84\xb9\x1fS/\xf5\xaf\x91\xc7\xe2IC\xf2\xa4:\xf9\x9b\xe5\x9a@<\xc6`&@o\x89\x97\x06w\xc0d]\x99\x03\x12\xe3E\xb3A\xb0-\x85w\xe0O~w\xd8\xa17\xeb\xb9g\x03\xf9\xed\xcfO\x06\xf4\x96zN8\x1d\xce\xb8\x17\x1b\xef\xc8\x0f\x82\x8dE\x14\xaf\x98\xa4\"\x1a\x04L\xb0I\xa1>Z\xc6\x8e!\x03\xf96L\x9d\x18\xc3B\xe2^\xf1\xcb\xe5\x9b\xb2\x9c\xcf.*z\xcbB>\x13r\x11\x88\xf6%\xccD\x9f20\x1b\xe7?\xe5\xc3}\x081\x12%\x1dx\x97\xd4\xbbz\xe7\x87\xf4\xc7\x98\x92+\x0c{\xc1v\x90\xec\n\x0d\xdc7\x8b\xaf\x7f\x88^\x93l\xcd8Y:o\xe8\xb4\xb4\xba\xd5\xccb\x07?=\x0c]\xea\xb8\xb2iX\xed\xd3\x83\x9f,\x8b\x9d\xdeDE\xc2O\x06\x988\x07\x08\xf2\xc7\xb8\x0e\x17\x83\x94&\xa9\x13\xa3\xa8][\xda\x94,\x81'o\x01g\xe1\xc7I\x9a7\xe8J \x94\xc6\xc0zI\x84\xeef\x90\x92\xe5{\xb2\xc6\xcb[9\xe2\xc7\xe9%\x8d)\x9a\xbb\xc1:\xa6\xd7~\x94%\xc1\x1d\xcc\xa9\x17\x90\x98\xce!\xc9\x16\x0b\xff\x16\xa9b\xf71\xf4 \x86\x1e<\xee*\xc3x\xec\xf6\xe1\x9c\x0f92\x0fy\x1dS\xd6\x8c\x93P/\n\xe7-\xc6,\x07;\x8dg\xb6xr::\xfa\xd1b'\x89\xb7\x0cy>\xb5\xf2\xba\xa2f\x10^\xe8QA\x18\x93Ib+\xdcH\x11q\x8c\xd1\x81\xf1(\x89\xb8\x83\xad\x8fw\xbfB\xed\x06\x11\xbc\x00\x9f\xfd\xe9\xed\xc3\xc8\x15<\x83C\xb0\x8e'\x8e\xb4\x03\x06PW\xf0~/\xf6y|8\x82|\xcfh\xb4=\x1a\x8d\n`\xd3\xdb5\xf5\xd8\x9e\xb8&\x81?\x87\xbf\x9c\x1c\x1f\x15\x11\x0cuv\x8bhp\xb5\xe2\xab\x96)4\x84-E\x92\xc6\x94\xac\xd0\x16\x89\xf8a\x02a\x14n\xacc?\xe4[=o6\xd1\xb6+n=\xd8\xbc2\xd3\x9ai\x96\xecu\xb1d5\x87M\xbc\x7f\xe1\xeb\xd5\x87\xa0\xdc'B8\x1e\xf8 \x17\xfd\x9cP\xc1@\xa1\xaaY\xd1xIaE\xd6k?\\&\xcf\x11\xdb\xc4\xdd\xd6\x1c\x92(\x8b=*.9\xd8&P\xc9\x1aC\xc3\x8c\xaf\x1e\x13\x16\x1d\xc58\xf6\x8a\xdea\xa2\xb7|A3x\x01\x01\xfb\xc3\x17\x14\x9dd\xa6\xd9,\xdf{)\xda&`r!\x1e\x95 \x9c\x12\xb6\xeb\xf9\x0fU#\xae\x03\xcf;\x05\xa3\xd5t\xaa:P\x05}\xf0\xeax\xcd\xb0\x90\xb3MN\xa4\x9e2y\xc4\x11\xf8\x07\xe6\x83N\xc9r|GV\xc1 \x8a\x97\xfd\xcd\xe1ps\x8c\xf0\x13\xa6\xf3u4gm\xf3\xf4\xd2~\xc2\x99\"\xdf\x96\x958\xe0\xe0\xf4\xf0BL\xc2.\x80\x17\xe0\xb1?\x1cv\x12\x17\xfci0\xd3\x9b\xe4!\xf6\xe6\xd5\xeau\xf09\x1d\xfc\x91\xf0\xbb\x95$\x8f\x82\xcc T\xa7X\x13^\xe0p\xbe\x08\xd8\x1e\xc3\x0c_5\xd6i\x1f2\xfe\xa4`\xb0\xca|\x01\x9dK\x14\x83+z\x87!M\xd2i\x84\x17\x7f\xf9\xadM8\x8dfZ\x01(\xb5.\xfe\xa7V\xb2\x94\x102D\x8aMN\xa3\x14JR\x8c\x1c\xf32\x15?{=&Vl d\x98\x80\xa3>\xea\xe7\xa2\xa6\xb5E\xce\xcb\x15\xaf1\x1e\x9d\x83\x87\x00\x02\x16\x9d\x9e\xd8\xf6\x92\x84\x8aSx|\xd6\xc3\xe4C\ng\x8a\x13\x90\x8dY!\xf37\xd3\xd9]J\xc69\x94\x19\xfflSx.\xb2~GZchqyr\xe8D\xees\xd7\xd4Z\xaf\xa7\xb6\xa7\xdd)\xb8\xdb\xb6\xb8he\x08\xf0?\x8f,\x979mz\xd6\xbe\xfc\x19n.}\xc62\x8c\x86\x05#7\xda*\xbe\x8bb\xc3\xb8;7x\x14\xe12\xd6k t>a\xf2\x90f@\xf7!fx\xc5\xd7\xfbm8\xe7\xe6\xcd\xc3\xe7R\x90e\x0b\xa0>d\x95\x1f<\xed\xcf\xba]\xb6!8\xf4b\xba1G\\e$/\xf8c\xcel\xce\xe9\xc2\xf7|V\xec\xe3S\xe4\xfe\x91k\xb3b\xe5\x1b\xc3~\xed\x8bD\xb3r\xc8ZR\xd0q\xb6wpl\xa6\x8d,2\xe7n\xefr[\x01\x0c\xfd$\x84\x96z]\xe81\x82\xdaTe\x93\x13\xc1\x90m\xc5\xad\xbe\x80MC\xff\x9d['u\x1bd\xc8\xbfke\xc0QNjTf\x81\xeb.R\xcc\xda\xcfc\xce\x15\xcf\xe2AL\xd7\x94\xa4N\xf7\x0c\xcdd`\xa3\x94(K\xd7\xf5\x8f\xda\xae\xafE\\A\x89Q)\xd1X\xe2\xf9\xdck2\xf4.\xaby\xb3A\xa8\xa5u\x99Q2M\xae\x11\xeetQ\x08\x95\xbcM1=\xfe\x831\xb8\xf2;;,\x88\x90 \xda\x11+lk\x9b\x93\x13\xfc~\xebX_Dtp5\x97\xbe\x92\xb9\xed\x0c\xfbP\xa6\xffHbY\xf1\xc6\xc8\xad\xef\x96}\x06c\x99\xbb*\x0b\x82v\xa3\xafu\x9f{.\xf0\x0d\xc2O\xdf\xdf\x04q_\xf0<\x1e\x1d\xcc\xce\xc2\xbb\x92\xc8\xe1\x96\xc7\xd7\xa6\xf3~q\xd8#-\xc8\x8f{1\xa5\x97\"^\x8c\x00\xb0+\xce\xb1\x0b2W\x89\x00\x93Z\x08$\xf4o\x19\x0d=\n4Lcm\x94\x80|b\x15\"\x93ji\xa9$\x01\x9dL\xe0\x08\x13\x9c\xd0W'\xc7\x1dd'\xe8\xe0\xca\x0f\xd1\xaaG\x8e\xa0\xdb/6\xd3>\xe3\x0c\x9b\x18\xca_\xcd4*g1\xf95\xbev\x07T1\x9dMq\x8b\x9f&N\xf3\x11P\xd8\x0f\xe8\xdaQ6\x0c\x9b\xbfI\x03C\x84X\xc9\xafv\x18U\xde\x15\x1cP\x9b\xd3\x82\xf1@\xc8\xcfw\xcc\xdcA\xe5\x851lq.)b\xef\x12%\x01g\xb7\xd3\xe9\xb6o\x85\xbf\xd1\xedC\x99\xd11\x98<\x1b\xd9\x816\xdd\xd5^\xcc\xd9\x00\x85\x0b\xd8\xdd4\x1e\xfd\n\xe5(lF\xd8\xecc\x9d \\\xdaem\x86W\xb0\x89Y\x98K\xb04\x9cK\x9d\x80\x10Do\xfc\xf4\xd2\x0f\x81\xc05\x8d/H\xea\xaf\xd8\xcaW\x15<\xa6p \x82sS\xe6\xdb\xb9\xe5\\\\\xbe\x9al\xaf\x11\x98H \x98,\xa5\xceC\x08\x90B\x10\x06z\xeb\x05d\xc5\x11pE\xe2\xab\xa4\x9b\xa7k\xae\xc0\x82\x1dP%\xf1\xa1\x87\xc9\xed\x84bG\x95QCR\xd1\xe9T\xfaL2\xef\xb2$r\xcb\xcc\xe5U\xf4\xe1\xa4\xbd\x1d\xdc\xeb\x0b\xdd\xbc\x9ew\xb9R\xaa\xd0\x15\x18!\xb5\x08\xa2\x1bF.\xd9v\x8d\xe2\xd2\xf8\xcb\xab\xa6#\x7fx\x90u\xce\xf5\xfd1x5\xc0h\x8c\xf6\x1b\xb1\xcb\x03KH\"\x1a\xc3\xb8\xae\x06\x0b]\xa5F\xaep\ng\xa8\xe6\x1a\xb3]*N\x89\xa2\x16+\x93Ou\x8f\xeb\xf2\xb3\xac\xcf\xb5mY\x98k\xd6\x94UG\xcdZ\x88\x9a\xb5\xc7\x98\xda\xdeJ\xbc\x7f6\x13o\x0dY~\xca\xc9r\xf8\x15d\xd9\xcc\xc8\xe8Is\x08\xa2\x86J\x9e\x0d\x03(af\x15\xab\xe5\xc6\x0d\xc5\xc6\xe5\xa2f\xe7\xc4 \xd9\x0en\xd3\xa2\xf6\x84U\xb6M\xae\x03)\xf6cy\na4\xa7\xb0\xca\x92\x02\xdfH\n\x01%I\x8a\xaa{E\xcbV:\xa6\xed\xbb\xa9a\x81\x7fS\xb4a\x9as\x01\xddqQ\x1b\xb6\xea\xc3\xb2\x0fw}\xb8\xe8\xc3y\x1f\xae\xf8e\x94\xe6\xd0~o8\xcc\xff0\x1c\xe6\xcab\x07~\x92\xd2\x90\xe6\xb2\x12\xff\xe5t\xa35\x0d1\xbfx?\xc7~~}\xa3@A\x16\x08~E\xfe\xcc9\x15^\x80jO\xd8Gc\x88u\xc1\x97-\xf8W\x11q\xad\xca\x88:\xefs~\xb5\xcc\xbe\xc1\x84\x03\x01\xd3_\xa9B\xa6\x90:\xf0\xba\xae\xfa\xf0\x85P\x84\x9d\xa2\xf1\xa5\x8b\x17\x1e\xec\x85\xd3\xfa\x19*N\x14\xe4\xa0\xee\xefq3>w\xcb\xc3\x9b\x14\xa3[q~\xec\xbb\x0c\x12\xc6\xd8\xbcn\xfdV \x832\xbfg\x83\xf4\xf3\x1b\x9cS\xf6`-6\x15\x93\xfa\xce1\"w\x0et/'i\x98\n\x80\x1d+}\xb8*\x1f5\xa5{\xc4\x1cR0\x01\xde+\xca^W\x08\x9c\x87\xdc\xb1\xf4\x0b%ob\x96\xce@X\xee\x98%4\xf6YXBr\xcf-\xcf.%Nj\x9f^[\x9f\xae\xacO\x97\x86\x0d\x08\xc2\x8eF\x97\xa7\xf2\x0b\xe4\xc7\x85PY\xb7\x93\x1f3\xa3\xe7\xbf\xf4Vn\x16'\xfbB`\xe6B\x1b\xa9\xf0\xb4\xbb\\(@\x81f\xe7\xa9\xf8~\x7f\xcfhyl\xb5\x84F\xad\x13\xd2\xc1\xb0\x0f^.\x02\x1auP\xea{\x8a\x80\xd7\xe8F\x880n\x03\xb1C'c\xfb\xdcP\xb5\x81\xbfR?l\x84;\xdc\xde\"s\xe1\xd6\xd4y\x85S\xce9F\xc2X\xf8\x94&k\xe2)\xa7\x8f\xaa[\x05td@\x0e\xfa\x8a\xdemp\xd3\xea\x84\xae \xf7\xf0\xc8\xd9\xe9\x8b \xf2\xae\xa4\xd6\x9a\x1d_(l9x\xd7\xb0\xe8\xc3\xbc\x0f\x97}\xb8\xe6w\x05n\x1f\xf7\xc6\xb5\xa0\xd2\xa2\xe8N\x109\x81\xdc\xc8|\xb2\xbf\x97\xf9\xfe\xc57$\xc1\xb7\xc3\xa5e\xf2+\xa6\x04\x88\x97vF\xe9\xba\x91Q2\xe5'a\x80\x17\xe6\xa0\xce\xba\x19\x17\xf8\x9d\xd8\xb3\xad\xbe\xd0\x83sM\xac.P\xbd\x85\xf2\xb1>G\x9b\x9caX\x1beQ\xf9a\x1d\x8e6wD\x8fC\xde\xe3?\xda8\xf4|\x01[\x15\xbb}0\x80\xa1|\xf2\x0b\xfc_[\x19\xab|\xab\xb1\xbd\xda\x06\xbc\xe2\xbe\xb0.\xbe\xf2\x9b4\x8e\xbb\x97%\xdc\xbdVp\x97\xd1\xdb\x1c\x7falR\x1b\xc7\xe6\xc3d^\xf0\x1f\x9c>\x82\x17\xadV\x04.hzC\xa9P\xf8xQ\x10P.\xc0R\xeeD\xc8H\xa3\xc7\xb6\x95H~\xc9\xc5=\x1f\xef\xd99\x9a\x88\x13a\x0dm//@F*%\xf6\xeb\x8a\xd4\xcdU\x0e\xe5\xeb\x84@\xb9N\xf0\n>%Q(h\xa9\x19\xe3\xc2\x97\x05z\x02\xf9\xe5H!\\ \x8ew\x8d\xe4Xj\x9b\xdb\xe0Qe\x04\xba\xb1/\xca$\x9f\xad1\xd2\xb8\x18\xe9\xbc\x874d\xc1]\x81'\x10\xf3{\x13\xac\xc0\x17A\xa9\xc3*\x89\nI\xb5ga\x1e\xde\nI'\xe0\xcc\x1f0G\xd6-\xd6\x1f\xb5\xd8\xb3\x0fQ\x13W\x90\xb1\xaasd-\x9d\xb3\xd1\xa2\xee\x83 \xd9<\xfdn[R]\x15T\xe7f!\xd5$\xf0y\x96g\x0b\x0c\x8a\xab}\xb4\x86Z\xfe9\xf9\xd1\xe9\x01 \xa7\xa9b\x11I\xf3\"\xba\x82\x87\x7f0\xe1\x16\xb7\x08\xa4\x15\xddntP\x04I\xa6\x95\xab.\x8f\x04$.S\xacnW\x12\\b\xf0deC\xdb\xde\xb2N\xbf.h\x89\x1bU\xe22\xfc\xdcg\xe4k\x82+-\x1a\"\xc8\x7f\x8d1\x80\x17\xc7K~=\xcd\x99\x1b\xef2Z!w\xb3B\x86\x92q-\xfe\xc2\xd7[\xe1A\xb3\xd8\x83b\x80\x83\xc4\x83\xbbI\xa0\xbc\xc8\x93ne\xb9\xb3D&\x9d%6F\xbfF\xf1`\xdf\x18\x11\xbe\x8e5\x0c^\x87\x0e1\xea\x16\xac\xe65m0D?\x0ey\xaf\x86]\x9b\xf9\xfe-\x89Y\xc6!X\xc7\x07_3FP\xc7\xd9\xb9q\x88r\xcf\xad\x19\x90aC*\x1b\xce0P\xc5\x1a\xa8j\xe4\xd37\x8d\xbe\x9d\xf2\xc4\xe9x5Y\xe9\x05;\xe4\x1e=\x92\xd6CDc=\xd4\x06b\xe6%\xebxP5{x \x0bdC\x169{\xc1\x1f\xb8}\xb8A\xd4[\xf7z_\xbc\xd9\xeb\xb3\xb3\xe3C\x82\xf3\xbe\xae\x98\xd3TLf\x02\xf4A\xe9\xc1\x1a\xc6\x8c\xb5\x1e\x8b\xb70\xc4\x88\xcc\xf1\xa8\xd8\xe2\x9c\x85M)\x0f\xecA\xed\xcd\xaa\x0fa\x11=\x01\xb6Q\x18\xc7\xb0\xca\xd9\xb8\x96\x83\xe7Zo\xf9\xe6\xc8\xfa\xe6Z\xf0\x8ccA\xed\xd60\xd1M\x17\x90\xee\xd8\xdaix^\x1e!\xb7\x16\xee\x0c%\xe9\xea\x8b\x83\xbbj\xfe\x05\xd5M\xf8\xdc\xfd\n\\e\x9f\x8fB_\xaaj`;\xa3\xb6\xa4\xd3(@W\x8ek\xc9A=P\xbc\xd53'[\xcf\xbe\xfez\x12\xdar\x0bUi!\xc6\xec\xbd\xfb\x9a\x0b\xc76\xe3\xb1\xb0\x1c[\xdc\xa0\xdf\x9a\xf2\x82\xd5\xfb(8\xf6\xd2\x821\xee\xbe\x01,e\x9e\xa5\x00\x8cE\x17\x18\x97\xe6Y\x85D\x19\n\x863\x0e\xa9\xd7\x8d\x83\xb7\xe6\xf9\xd0#1b4\xf6\xe3\xb2\xc3H\x88_u\xf0\xf2}\x94Kt\xfb\xfb\xfb%\xc3\xdfG\x8f\xb8\xf1\xe4\xc4\xca\xefK\x1f\x9f\x82\xe3O\xfcp\x19P\xf8[\x16\xb1\xaab\xedEBJ\xf3,5\x1b\xe9!b\x86\xbe\xd3o\xb1ST\x01\xc3\xb0k\xb69z\xb4P\xd3}\xfb]\x13\xa29\x85v\xd7\xb4\x18\x8fU3\"|W\xb3|\xd0Z\x8a6t\xabC2!>\xaa\xb16e\x9b-\xf6\xa2\xae\xab\x9bvW4\xae\x8a\xfd\xe6}\x98\xeb53\xee/\xca\x90\xfex\x9a\xcd\xdc\xd2\x01\xf3\x01}G\xd4I\xb6h\x11%\x9c\xd1\xa60\x83\xc3`\x93l/m\xa2+\xf1^.\xcal\xc3\x18\x9e\xee\xe4?\x99\xd80t\xe1%\xfb\xaf\xc5]Y\xc4/\xb4}n\xb4\x1d\xb1\xf7\x9eC\xb4\xb1\xe1b\xef\xaf\xda\xc2\x8a )0\xc1f\x1c\x1f^\xbc\x80m\x17z@r\x91*\xdf\x81\x97\xf4\x96\xcc\xa9\xe7\xafH`wiR?*(\x0f\x1c\xbf\x82/f\xbe\x85\xc3RR\x81\xab0\xba \x81&\x1eY\xd3\xdc\xd8\xd3\xd6u}g\xd8)iVPR\xbe\xf5M\x94\xb4\xde\xf0w\xa2\xa4\xf3(\xbbhCI+\x83i\xc1K<\x84\xb4\xeaG\xa1%\xad\x8a\x1aG\xc95o\x0e\xbd\xc6!\xad\xa7\xaa\xdb\\\x87\xd1|\xf1\xdd\x86\xaa\x1a\x1aie\xee\xc4M\xe0n\x85\xf5[\xe7\xc4\x89\x19\xd9l\xd3b}0\x0f2y\n|\x92<\xc8\xe2Ic\xfc\xd8/\x9b:)*\xf5J8\x16\xd5\x10\xf2q\x16\xe6j\x80\xb9\x18G\xc5(N9\x93T5}8\xab\xde]\xd5\xd9U\x86&_j\x8a\x82ZWO\xea[\xd9IiV\xce\x99/\xba\x19z\xdd:^3b1\x88\x9c8\x1ew\xfb\xe4D\x1a\x85\xde\xad\xa7\xc5\xf7\xedM\xa5|\xab\xf8.\x15}\xf8cW\xad\xf4L\xf9\xae\xd4\xd9\xdaS\xea+\xe5\xcfx\xa8\x07\xcf\x8a\xe5x\xe2\xec*\xdd\x0b\xb5\x99\xc7u\xf4\xb7\xcd\xdbHHg\xf7\xf7\xdc\xbe\x8f\xa1y\x8b\x8d\xd5\xcc\xaeD\xe8K^fw\x85\xd5\xba\xd8`\x9e\x95\x0b\x11\xd6\x19\xd6Dp|A\xbfh\x8a\x16\xe1YI\xaf\xb8\xb5\xd3v\x10\xf6\x01\xa0\xafL\x8b>\x9b\xb4\x12\x8dGM1G\xafY\xfb\xc8\xda\xbc\xc1\x8a\xcdV\x10Y\xaef\x91\xd74\x8a\xf1Y\x90\x17p\x95\x89rrn\x8cjw\xd4\xfb\xf6\x04o\xf2C\x14\xf9\xfd\x8b\xb5U\xe2#S:X+\xda\x839\xab\xc0\xe7\xfe\x1f\xdcx\x80\xd1'u%\xc4\xfduI\xe7\x16|{=\x8e\xbe\x14/\xc08/\xc3\xe9gg$y\x191\xde\x0d\xc8\\\xdb\xe6t\xfbp((\x9fS\xae!\x0c\xcd\x0c\xcb\xd1\xe0\xf2`:\x11\xabC\xedtr2\xc2]\x82\x05\x99Y\x94\xe8\xcb\xba\xaeQ\xe1\xacH_ZQr\xf2\xf7\x87@\xa1\xdc\xd1:\xf7f\xc9\x8d\x0d\xba\x93.\xea\xa6,u\x95\x12q\xb3[\xd8\x81\x15gur\x19e\xc1\x1cmu.\xc95\x05\x12\xdeI\xcbk\xbc\x84\x95\xfe\xde\xad\xaf\xbb\xf3{\xc5Buv\x9a\xcf\n\x8d<\x85\x8dg\xa5i1\xean\xa7[\x14\xe8\x9d\xcd\xba\x93n1S\xab&y\xc9ugw|\xed\x85\x11\xd2\xe9\xdd:OZ\xf7\x1c\x96\xf0\x02\xee\xd8\x1f\xf4\x1f\xb7\xd2\x1c\xe7\xa2\xde\xcet9s\x072\xe0\xbb2u;\x9dPp\xe2b\x90'lW]\xd3\xe4:_\xf0\x1b\xe6/\\\x82o\xbb\x7f\x05\xb1/\xb1t\xe7\xb6`T\x0b\x86N\x19\x13\xbfw\x16\xc7\xdb\x91\xf0\xf0;\x9a\x863\xa9cc\xf4\xf4\x0f\xa1q\xe0\xf44W\x82\x15hZ\xd2<\xfc\xc9\xdcy\x99\x1e\x0c\x15\xd1H\xec\xf7\xc2=\xdfN(\xdaV\xe4\xf1\x1c\xdaW\xdet\xcb\x11]D\x84\x07u\xdc\x0c D\xb3W\x13T\xd0\xadH\\\x8b\xdb\xf2[\xc1\xd3\x8bi\xa2\x9d\xc6Z1N+\x03\xa6N\xa4\x1f=\x82%w\xf0,\xaf\xbd_^{\xc8Cq\x84Q\xb8qp\xf2\xea\xed[%\x9eL\x02$\xa6\xe0\x87)\x8d\xd71E\xc7\x87\x04\xc5\xad<\xe8\x9c\\\xda\xa4\x166\xa0\x85<;\x81\xed\xddf \xbb\x82\x15h\x80\xb0RA\xf1\xa4\xdeP\xa9d]\x1f\x1a\xc5\xa8\x0b\x15\xe8Yxp\x94\xd6\xc3z\x18\xff\xd5\xd1Fa,bAQqv\xa0\xcc\xc3\xce\xc8\xa1\xe4\x17\xf2\xb8v2d\x0c-\x03\xa0\x98\x02\x82@\xc4\x92\xb1Wrhn^\xd0\x87\xdd\x9d\xcd=\x11+U}i(k\xb2r\x8e\x15#\xb7J\xfb\xaeE\xde\xe9\x90\xde4\xdf\xaca\xe6 \\B\xc0DL\xf8[F\xcfds/~\x08\x96G\xd4Id\\\xf6T~\xbd\xbfg27>,\x02Y\xb2\xe7\xc5\xafr\x13\x9c\x13\xc1*\xe2\xeb\xfd=W\xeb\xb3\xa7\x18\xa0\x8a=\x93\x91\xaa\xf2'9\xbb\x86o\xca\x1f\xe5\xb6KB\x8cL\xc2\xcd\x07\x8a\x81\xc0\xfd\x80\xce\xdf\x8a:2\x97 \xe7\xdf\x0d\x95O\xf9\xd3|\xe8\xb8v\x052\x88rE\x171\xccG\x8b\xea\x08\xf5\xa7\xd4H\xa8e\xaa!\x10O\xf7,\xf7'\xf2\x17eB\xcb\x97S\xc3\x04\x86b-\x11\x93\x86\xdd\xaev\xe5\x97s\x93t\xf2\xdc$EZ\x12_3#%$V\x11\x82-\x86\x17\x10\xb1?<\x04[\xea\xf8\xd3xf\xa7-?i7\x9c\xdc\x99\x7f\xd5\xad\x1f\x1b\xb1p\xe8\x96\xd9P4\xfb\x95\xd5\x1a\x89%\x95\xb5$X\xa7C\x8dOA\x91\xc9!r\x8a\x8b\xc3\xfc\x86>\xa7\xa0~\xa8P\xd7>\\d),\xa2\x8c\x9drQL\x1f\x94\xc9\xa1He\xf0K\xbf\x9e\xfa\xe0\xa7\xbe1kA\xd3-D\x8b5E\x94\x89\x07\xf46\xa5\xe1\xdc\xa9\x83\x8fo\xea1\x90\xf2|Xg\x95\xe5\x90\xc8\xf7\x85\x8d\xfdI\xf9\xa9M\xe3`\xa5\xccb6?}\xe9l\xea\xf1\x81\xbf>c\x81.\x98h\xe4\x94B/V\xa7\x81tL\x1c$\xf2l\xb9\xc8\x16\x0bN\xba\xeb$3,\x93\xccX\xfc\xf4\xa2 [\x85\xa5@\xa7\x05\xde))\xd8\x07K\x9a\x9e\x84\xfezM\xd3&\x00\xd7\xcc\xd5\xeb{\xb1\xa3\x0c\xd7U\x95\x06:\xd9\x1bD\x00\xf8m\x85c\xd8\xdb\x11\x11p\xc4\xadKi\xb6\xc2:\x80\x1d\xe7\x1b|?w\xcf\x86g\xf1Y\xf8\x7f\xfe\xb7\x9aU\xa0;\xf0\xc39\xbd=^8\xcah\x90\x8a\x1f\xa4N\xc4\xef/\x0c!\xab\"\xd8@2^\x06\xf2\x06\xf6\x9b\xc2\x13\xd8\xe4\x9c\x87^X\xc3q\xc3`0\x00\x1c|o\x1fv\xf4RJ\x1bw3\x04\x91/ A\xea\x90 \xf0B\xc5\x0d\x85\xbd\xfab\xd0\x10#X\x1c\"\xc8\xf8F\x052-\xa0\xe2\xabP!\x0c\xbe_\x01\x15\x81Q\x99\x84\x87\x98\x00\xe7\xea\"\xee\x8aX\x98R\x02\xaa\xa1\x84\xe4\x95\xa1\x01x\x8f\x07\xcc\xefUkAO\xb3\xe6=\xe5\xbc\xe8A\xf7\xf7\xaeJ\xa0\xd4=\x94F\x9c\xfb\xb5\xe6\xe6UB\xf6u\xbb\xda3\xbe\xd8\xfa\x8caE\x0e\xe2\xb1\x1fr\xe1\xb1x\x86\xd1\x92\x1f\xe3U9\xe3XH\xca%\x186)\xa7\xa0\x04(\xd7\xf5\xd8\xdc\x04%(\x9e\x8b\x02~\x05\x82;\x10\x85r|VP\x03G\xa8\xa8x/c\x0e5\xd4]j\xc9tNi\xbe\x92h\x8ev\x953Em\x9d\x9d\xc6\xb1\xa3 \x87\x93\xa4q\xb7_\x81\xf5\x95\x1f\xce\xc7\xc5}n\xe9Y\xae\x90\x1d7\x98w\xd4t\x9e\x98D\xa2\x94\x8b\x00\xca\x07\xbb\xfb/\x82\x00\xfd\x9b\x11\x02\xb9c\xde\xb7\x85A\x95\xb9\xfe\x97\xc3`E\xd6&\x18\xe4\x8e\xb6\xdf\x16\x04\x15\xd7\xd0\x7f=\x08\xd8\x08\x1f\xb4\x13\xc4\xedA\x13\x00|\x19\xbe\x07Ek\xabm\xf0u\x9e\x8cR\xc8\x01&h\xca\x98\x9d\x8f\x1eA\xf7\x7f\xc4\xcd\x1d\xf2\x02E\xb9\xd3\xc5 \x15\xcf\xbaG\xd5\xdf\x9f\xde\xbd\x13\xbf+\xbcv\xf3R7\xac\xb4\xad\xb9uL1\x10Y#\xe0T\xcc\xc1Q\xdaZ\x8d\xe9:\xa6 \x0d\xd3\xb1\xa6%\x8f\x84Q\xe8{$h\x98\x01\x14\xbdv\xffG\x93J\xb3~5\x12D74\xf6HB\x1f\xd02\xaeK\x9b\xc6\xb3\xf5\xfa\xc1\x8d\xe3\xa2\xb6i\xdc#+\x1a<\xb4q\xfd\xc8m\xeb2\xa7\x0b\x92\x05\xe9Iz\x17\xd01tsxu\xff\xe5\xfb\xfd\"\x8a\xfe\xa9\xfb]c?\xd5z\xbf\x97\xf6u\x1agT\xdd\xc7\xa7\xd5\xdf\x1f?\x1d\xca}\xcd\nv\xd4\x97\x17$HJ\xb5\xdf\xd4\n\x0e\xde\x9d\x1c~)]\xb0m\xe4\x87\x0c\xfc[\x12\x90\xeeT\xa4\x13\xf81\x8a\x02J\xc2\x19\xef\xa3\x96\x9cN\xb2\xa12\x03\xed\x17\x93\x1b\x1dQ0&\xc8\x95\xf6\xa00\x91\x00\x1a\x83X\xa56\xdbXG#Z\xf5\xc5\x81=\x96\xeb\xdd\xa6/\x1d\xc9h\xd7\x97\x9c\xd7\x1b\xc3\xbc\xfe\x1d(\x88)C\xe2\xee\x03\x93\x9c\xd6\xb2\xa7\xed\x14\x03\xd54D\xda7\xb4\xa74$\xbfUI]\xa4#u~\x98\xfe;P:\xae\xb4Q5\xd8Z\xcc\x89\xccn\xf5\xba\xa8\xde \x95'q\xa3ylw\x83\x1bB\xf1[\xd4i4C\x19\xad\xdb\x13y\xdesY\x8eN{\xbdh\xe6\xf6\xa1;\x14\x99\xfe\x8d\xe29j=z\x82!\x8b\x1b=\xbfp\x14\x17\xbcQ\xb5+S\xfb\x90\xbby\xf4z\xa4\x9fb\xe6\xb7\x959\x8ev\xddA\x1a}b\x02\xe9+\x92PG@\xa2\xb1\x9a\x0526\x1c\xab\xc8\x85b*\x15I&aO\x0f\x02\x9f$4\xb1\xe1\xe2t\xb3\x0f\xdd\x0b?\xecjR \xe4\x98>\xedC7\xf2R]\x95\x1c\x8e\xd3\xd1\x10\x13Uy\xbaZ%\x88OG\xbb}\xe8^\xd2\xdb\xee\xf7\xbd\x0b0\x8b\xb5\xe5b_\x08\x90\x1f\xe9\xf2\xf0v\xedt\x7fw&\xe3\xe9Fo6q&\xe3\xe1\xfdt\xb4\xf1l\xc6\x8e\xd8\xf3\xd9\x0f\xae3\x19\x9f\x9d\x0d\xe4/VaJ\x0fgXY\xa4\xc4\x9d\xdc\xe7\x15z\xda\xc7\xc5/\xd1\x8c3\x19\x97\x0f\xf2\xa2\x07^\xf9\xecl\xe0L\xc6~\xb8\xb8\x7f\xcb\xfe\x1d\xbdq\xefyQH\xc2\xfb#rt\x7ftp\xe4\xba\x7fV-\xef1.?&\xedU:\xa7O\xcczB\xad\xf0\xbc\x08\"\xf2]\xc4gU\xbf\xcdoF\x18\xa5u:\xbe\xe0`\\\x95\xf9\xa1S\xd5zo\xf6\xcdy\x1am@\x189B\xd8\x07\xc9G\x08\x03\xe4\x1a;2H\xa3w\xd1\x8d\xdc\xd2\x8c\x97\x80 ;\xc8\xc7 b\x00Og}\xe8\xf66\x94+tdX^\x8a\x13\x86\xdf\xa1\x16\xccH\x1fX\xcdE\xc1{\x08\x0b$\x98\x88\xc3l\xf0\xe1\xf8\xe4\xed\xe9\xdb_\x0f\xcf\xdf\x1e\xbdy{\xf4\xf6\xf4\xaf0\x96\x8f\x8e\x0e\x7f:\xa8>\xea\x0eB\x12\x16\xcd\x1d\x91#\x18CZf1\x04is\xd2/\xe33\xa22\x9f\xf1\x86!\x8e\x95\xd3\x10\xb6w1\xe74\xa2\x07t\x95JN#f\xaf\x9b9\x8d\x10~`|\xf3\x18\xbf(\xa3J\xff\x9dx\x0d\x873\x1b\x9d}\xee\x8d\xa1\xe15\xda2\x1b%Bi\xc2\xf8P\xaf\x1c\xf2\x93#r\xc4\xfa\x82\xe4\xc6O\xbdKp\x8c\xca\x03\x8f$T\xd5D\x8e\xb5\xb5@\x01\x0e\"\x9f^<\xe2\x8d\xe5z\xdc6\x8d\x1d\x1d\x1cY\x1b\xcb\x15\xb5\xad\x1a#G\x1a\x8dl\xe1\xf8l\xdcnB\xeb\xf7=\xa0\xc5v\xfe7\x83\xd6\xdb\xa37\xdf\x0eZo\xc3E\x1bh\xd5)\xd0\xf7\x83\xd6\xc67\x05\xd7\xc67\x85\xd7F#\xc0t\xbb\xbdx}8\x18j\xc6\xa2\x9cKe\xbe\xb7\x0f$\xcf\xe95\x810?\xa6\xba\xb4\xcb\x0e\x14\x1e\x083\xb4\x11\x93\x7f\xd6mC\x8d\xff\x8aj\xfcW\xce\x1e)\xff\xb9\x1b\x8e\xe9\xc7\x9f\xbb\x8d\x1c]c\x8b\x93\xca/\xc6\xbb\x9d\xa6\xb3\xfb)\x9c\x9d\xa5\xb3\x9e[z8V{/\xfd\xe0\x0c\"/\xf9\xc1\xe5\x1c\"\xb6\xf0\x83\xf3\xdf\xf7\x0ec\xc6\xdcj7\xa5\xf7\xdd\x89\xebNJ\xac\\\xab\x1b\xdd\xd4_\xd1$%+\xa3)\xcb7\xe7\xd6\x8a\xb0\xe5\xd1\x80\xdeRO0my\xa9/K\xbf\x03\xbf\xa6\x89\x87b\xb85Y\x0b\xf7L\xfd\xb9\x97\xdf\xe0 \x0b\x96\xcf\xc3\xcd\xb9\xb2b\x12j\x9erW1\xf3>\x8c\xe3(v\xba\xafIJs\x9fZ\xca\xcat\xc1\x99|\x91W\xb4\x97NG3\xce\xfc\xf4\xd2\xe9\xe6\x8c{-\x11\xfesk\xd6\x87N:\xdd\x9e\x15f\xb0\xf4\x06X\x07\x0e\xfbo\xf0\xe9\xf4\x95#\xc0\xa0\xf3\xc3\xf3E\x98\x8a\x1ek\x82G\xa9\xe8\xa5\xd3\x9d\x19\x8fO\xd1K\xa7\xbb\xb3>\xa4\xd3\xbd\x99\x89\n\xa3\xca\x15\x03\xdfN\xf7f\x82+\x1d\xf6a\xcb}\x0e\x8b\xc2\xa7r\xeb\xb9\x0b\x0b4\xf0\xd3Q)l\x87u\xb7\xa8\xd3?\x13z\xa5\xd3g3\x04<[\xb3]\xba\x0d?\x80\xb3;\x84\x1f\x10Z\xc3\x19\xf4\xa0\xe7\xa4\xd3\xd1h\xc6\xd0l(\x95\x80\xb8 \xea\x9b\x1bkW\xc4g0\x82M\xc1\x9e\x85\x8bQ\xd5\x1f=\x02o\x90\xd0\xf4\xd4_Q\xc7\x1b,\xc57\x1760\x88\xa6gCa?LR\x12z\xf4x1\xc6\xeeZph\x96M\xc6\x88\xfa\xdb\x93cA\xd7\x8d\x8e\x00\xdf\x8a\x10?\x90\xcc\xf0\x04\xfc\xdf\x8f\xc4t_\xbcP\xac\"L\xe6O\xdf\x0e\x0c\xc5\xcf4\xbe\xab\x0c\x8b\xc3hg\xdb\x1d\xfc\x88\xb6\xc2E\xaf\xe0\x11dd\xd8L>\x97\x1a\xb4(\x18\xba\x07?\xbez}\xf8\xe6\xa7\x9f\xdf\xfe\xe5\x97w\xef\x8f\x8e?\xfc\xd7\xc7\x93\xd3O\xbf\xfe\xf6\xbf\xfe\xfa\xdf\xe4\xc2\x9b\xd3\xc5\xf2\xd2\xff\xe3*X\x85\xd1\xfaoq\x92f\xd77\xb7w\x7f\x1f\x8e6\xb7\xb6wv\xf7\x9e>\xeb=\xd9?\x0b\xcf\xe2\xee\x03%x\xae\xe4\xf9\x1e+\xf6\xc57\xe0\x06J\x1d5^\x8e3\xfa\xe8\x1b\xae\x88B\x1e\x030\xe4\xbeC\xa1\xed\x9e\xa8\xe3 i'\xb9\xfcK\xa5\x19;\x8f\x06\x08\xbb\xdb\x8d7G)\xbc\x80a\xab\xdb\x1f\xd4\x8b\xefj\x1f\x1b)a\x0c\xff\x01OQ\x01]\xc6\xfb\xaf>:\xa3\xb2\x02cz\x16\x9f\x85\xfb3\xa1\xc60\x03=\xb2.K\x86\x91\x80\xb4\x8f\x12\xf3r\x07\x86;\xa1\xdc\xd3{\xf8\x1c\x18\x94\xc9sH{=\x17R\xf8\x0f4\x05\xe3*\x13~\xa5\x13\x88L\x11\xf0\xf2%\x8cv\xe1\x11l\xee\xec\xb8}P\x8b\x9fVK7wv\xe0\x11$\x8c\xec'\x98\x0e\xe4\xc5\x0b\xd8\x85{\xc8rt\x88$:\xa4\xba\xe3U,\xd1\x10dH\\\x82\x03\xfb\x01v\xf1\x9a\xe6\xab\x86\x04c\x18=\xcdu=\xe5\xb6\x86\xda\xb66E)\xbe*|\x0f\x19h\xd4:\xdb\xf9\x9b1\xa6\xdfX\xc4\xd1*\xff\xe2\x04(\x16 \xbd\xc7\xaf\xdf\xd4~\x15C|0)\x87S\xd0\xf67'm\x11:\xe6n.F\x82b@>\xd2Hk2\x0b\xad1`\xe7V\x05;q\xe7g\xd3\x08\x97\x8f-\xfa\xee\x16\xf2|J\xe9\xa6\xaet\xb7R\xb8\xbb\x05\x8f\x00Mr\xd8\x8c\x9c\x88a\xecS\x17z@\xa7\xa9\xf9R\xb5\x8c\xa0[\xfc\x0e\xf1\x1b\x8f\x08\xc6\xb0Y\xa0k\xa9\x9d\xa1\xae\x9d\xedZ\xe1\x8b\x17P\xedqw\x1b\x1b\x1e\x15\xc8\\j\xb9>\xc0\x17/j\x0d\xefn\x97\xdb\xebC\\F\xbc\xfc\xd7Ws\x10f\x89\xb6\xa6\xff+\x87\x9c\xacs\x08F\x85\xe1\x03\x99\xb4\xc8\xe2\xd1`\xf0\xea\xf8\xca3\xdfd\xcf_\x91\xd7\xb8*\xdcx\x1cP\xdb~\xe3\x97\xd2A\xee%\xccv_\xf8\x9c+\x83\xcd\x1ed\"uh0MgE>\xb0\\]\xcb\x01>\xeb\ny\x15\xd5\xb2q\xb3Q\x87\x88\x89\xe3\x87\x10\xdb\xadx\"\xd1$Jj\x16\x8eB\xd6\xcf\x1a\xbb\x96\x9f/\xb2\xd6A\xe6\xa7\xb9\x0fVM\x98!$\xf9\xa1H\x9a\xc1\"\"[\xb4\xca\xdf\x91#Ny[~!\x83S\xd7O\xfc\xb3\\\x8dZ\xec\xfa/\xdc\xc4k\xe2\xc7\xc9\xbf\xd7.\x16\xbe\xbb\x96\x9dJ\xc4\x8c\x0e\xe2\x98\xdc9\x99t\x81\xcco{\xd8\x16\xce\xbel\x0bg\xb8\x85\xf5[7j\xbdu}\xf4\xe7G\xc3!\x85\xe2^\xd1\xbb\x84\xbd]u\xf17\xb5B\xa6\xe9\x8c\xd12\x7f:d\xe7\x0c\xfe\x9d\xcd\xfe\xe9hoXG\x1dW}]\x0d{&R\xd1\x18\xd6\xd1/\xad#\xd1\xae#1\xad#[-\x82\xab\x15\xd5@\xdc\x07_\xc0.\x12\xb0\x8b\x10vF6\xc6\xff7\xd8\xc1\xe5s\xfb\x81\xfb8\xa1\xc6\x0bt\xbdw\xe1\xf7\xdb\xc4\xd6#\xd6\x0f\xc1\x10\x08L9\xc9\xc2\xbe\xb0D\xccIm8Mg\xd6\xfd\xf2mQ\xdeD\xe9\xff\xed<*\xffH\x9ed\xe1\x9c.\xfc\x90\xce\xbfR\xfbb\x81\xc3\xc3\xa1\xea\xd6\xf2\xcd?T\xa6\xbb\x8e\xfc\xb9\x8c/f\xeb]'\xcd\xd94\x7f\xffn\xae\xd1\x7f$Ob\xba\xa4\xb7\xdf\xe5F\xe5\x01\xca3\x1f\x03\xd5`\xbd6\xe7S\xeeW\xa7\xe7\xb3\x19\x11xr\xf6\xc4\x99.\xfd\xd5\xec\x07\xf7\xcfO\xe4\x05\x87\xbez\xac 9\x00\xd2z\xfa\x89\xd4\xbe\x0f\x8dw \xfc\xc2C\x9a\xf2\x86\xd3\x11\xcab\xf2\x16\xe1%\x93K[\x9c\xd8\xac'4\xeb\x9d\xa6\x85!P\\\xb2 *\x9a\xa9\xb5\xf2\xbd\x8f\xe1\x7f\x0e\xc4\xe56Q\x80\xceo\xe1\xaa\xd0-\x19\x13\xf5\xc1\x001\xbc\xd0*.H\xd3~U\x96\xf9J*\x913j\xbc\x83\xb6&1\x0f%(\xd6\x05a\xb0\xea\x01\x1d$Q\x16{\x14z\xac\xc0\x08X:X\x06\xd1\x05 \xc4\xd5_o\x1f\xbaK\x1e\xb9\xaf\xc8D_\x11\xf5\x9fV\xca3\x9b\xd2\xaf\\5i\xd6.\x94_\x08`\x1f\x9eU\xc8 \xec\xc3\xa8r\xad\xb5\x80}\xd8\xda\xac`\x03+\xdb*\x97\xcdY\xd9v\xb9\xec\x92\x95\xed\x94\xcb\xaeY\xd9^\xb9l\xc5\xca\x9e\x96\xcb\x96\xac\xac2\xbe;\xd8\x87\xed\xcaX.XY\xa5\xdfsVV\xe9\xf7\x06\xf6a\xa7\xd2\xc7!\xec\xc3n\xa5\xbd[VV\x99\xdb +\xab\xf4\xf1\x8a\x81\xaf\xe2\x93x\xc5\xca*\xef\x1e\xb0\xb2\xddr\xd91\xe6/\xacT\xfc\x80\x85\x95^N\xb1\xb02\x95\xf7\xb0\xafA\xfa\xe1\x18\xbaggC\xcdQ\xb4\x87O\x88\xe6\xc9S|r\xa1y\xf2\x0c\x9f\xa4\x9a'#\xdeQ\xa8{4\xc2G\xd7\xbaG\x9b\xf8h\xa1{\xb4\x85\x8f\xaa\x0c\x1d\xfbl\xf2\xa1Wu\xd1\xec\xb3\xb5=\x86\xc7gg\xdd\xc7\x9a\xb1\xf3\xbe\xce\xce\xb4\x9d\xf1\xde\x8et\xcfv\xf9\xd4\xceu\x90\xda\xdc\xe2\xad\xbe\xd3?\xe4\xad~\xa8(\x1a\xcaU\xdf\xb2\xf3\xba{\xd7\xedC\xf7\xaf\xec\xbf;\x9a\xe0w\xf1\xe7\xf0\x84\xfdA\xb6\xb7{\xcc\xff?b\xff\xe3W\xfe-\xc2\xaf\xfc\xffc\xac\xbdX`E\xf1\xe7\xcd\x9b\xeeL\x17U\xe3\x8f:\x9d,\xb4\xb6\x95\xabhn\x82\xb2ou-\xeb\xf3\xc8\x19\x9b;;.\xe7\x85n\xbb<\x80\xeff\xb9\xad\xdc\x1a\x19\xab\xef\xee\xecl\xc9\x172\xf1\xc2\xb6\xe6\x05=\xd7\xde\xe1\x8dlo>\xdb~\xb6\xbb\xb7\xf9l\xc7u\xcb\x11q\xbdhNa\x1d\xf9\xa5\x8c\xb9<\x00\xe2\x8a\xdc\xc9L\x0c\xcb\x98\x92\x94\xc6<\x19\xc3\xf0\xf6\x8d\xf8\xe8X\x07\x1c\xe8'1\xd0\xa7\xe5\x95-\xfd\x92\x87\xde\xd9YW\x84u,\xe28\x0e\xf1\xfd\x8d\\Vv\xa1\xa7\x08p\xba\xc8%G\xf5\xc5R\xa2X\xf3x\xe1y\x98n_\x06\xc9\x961\xa7\xdf\x93\xf4r\xb0\"\xb7\x0e\xa6\x0c\x17\xc5\xf7\xf7\xb0\xe9\xcah\xdfW\xfe\xfamxM\x02\x7f\xce\xdbR~\xab\xa1\xb9\x17At\xf3\x8e^\xd3\x00\x99X?9\x8a\x18L\x97\x0e-\x9e\xb8\xd2\x17I)\x93\xbd\xa4w\x81\x08\xc1]:YMLu=%p\x93Ym\xe1\xdb\xff\x8f\xcf\x06\xcds(\x12\xa2pk\x0d\x9e\x845\xae\xdc\x1b\xa4\xf9\xd5\x0c\x8f\x04\xe0?\xe7ARG\x90\x89\x86X?\xac=\x91\xe4!\x18\xa8>\x97}\xc8xg\x19^\\\xab\x8f\xa6\x19\x1b_8%3\xd8\xaf\x06\xc3\x05E\xcd]\xc6gGA1\x868\xd8b\"\x0d%s\xdc\x89\xe2\xf4\x17z\xc7\xb3\xcf\xe4?\xca\x01\xddC\xfa\x9b?\x97\x01\xd5\xf3_\xf7\xf7\xf0T\x86C\x0f\xa3\x8ft\xc1\xdb\x10_\xd5\x16\xc2\xe8U\xb4Z\x93\xf4=\xdb\xce\xbc\x8eR\xa0\xd6\xf4\"\x86\xdd\xe8zu#@\xa9\x14\xa85\xbf \x84\xbcLOd{\xe5\xf0\xb6\x1cu\x1e\xd3`\x85E\xe4\xfaR\xb6F,\x99g\xec\x0d\x92Ra\xaf\xc0K\xb3\x84\xce_\xabOJ\xb1\xfet4\xe2\xa3v3!\xd2\x8b\xdd\x14\xc1~%\x9al\xea\x8at\xc6\xfc~nc\xc4\xf1\x9a\x8d-Q\x83\xa5\x81\x0f/ y\xeeb\xda\x064`\x97\xd9\xfa\x85K\x1f;\xfb\xc1w\xd1\xec\x87\xfb\x8a\x88\xac\x16\xa2\x83\x04\xb3\xbd\x95\x9e\xb0.ydW\x1f\xad\x86\xf8\xf7P\xd5C\x9c Q0\x14x\xdd\xdb\x87\xc8eC\xec\xedW]\xcb\x04\ngV\x10\xbd\xb6\x85\xe3\xd6\x87\xdb\x95\xe4\xf2\x07H]k\xdb\xef\xea$Z\xca\x1c\x08\xb1\x05\xc3>\xfe\xd5\xbe\x8e\x9f\x8c\x0dmm\x96\xa3T\x8d6wQ~\xdf\x1dU\xc3`m>\xdba\xbf\x18\x87RxP0\x96D\xfc\xba\xbf\x87\x9d\xbd\xad\xed\xed\xf2{\xec0\xdeb\xbfx~\x8a\xbc*+\xdf\xadt=\x1am\x8fF#\xebD\xfef\x9c\x08N\xb1\xd2\x0f\xb6\xcc\xbe^\x14__\x15_\xaf\x8a\xaf\xc7\xc5\xd7\xd3\xe2\xebM\xf1\xf5\xd2:\xac7\xc6a=\xf9\xfd,\xfc\x01dT\x13u\xb9\xe57\xb6\x91\xfe^\x0f<\xf2#cs\xcaE\xbf2Y\xa5\\\xf43\xe3m\xcaE\xbf\x01\x06\x99\xae\x0f\xf2/\xf6\xd0\xebl\x1c\xbej\xe7\xd4\xd1\x84B \x0c\xe5\x0b\xdc\xe9<\xeeG\xfd\xe9{N\x07j\xe5\x8cS\xfd$\x12\x92\x96r\x96TV\x12\x83\xf3t\xde9\xfc0\xca\xb0\xec\xbc\xf8z[|\xbd)\xbe^\x14__\x15_\xaf\x8a\xaf\xc7\xc5\xd7\xd3\xe2\xebe\xf1uU|\xbd+\xbe\xae\x8b\xaf\x1f\x8a\xaf\x87\xc5\xd7e\xf1u^|\xbd.\xbe\x9e\x14_\x0f\xc4\xcc\xcc\x89^49\x1f\xd2\xbaJ(7y\x18r\xba\xaaP\xd9^\xcfv\xb3\xd5\xf9$\xc8\xae\xd2\xbf\xafD\x05\xfaM\xaf\x04f+\xf7\x96\x8d\xfdoZc)\x13\x83\xfd\xc5\xc3\xd4\x0e\x12 \x9f\xe7rd\x1d\xf6a\x01hQ\xcdX\x15\xe4Ya\x03\xde\xe3\xe9\xf2\x92[\xf1vA$\xd2\x9c\xbeg'\xc3\xac\x8f\x88\xe9\x1b\xf4\xdc\xb9P\xc1@\xf4\xb5\x00\xd1n$\x1c%\x0e\xbaq\xa8\x7f2\xb7&\xc6\x85\xdcM\x00\x13\x08\xe1%<\x83\"\xed\xd2o0\xc6\xf2\x9fa\x0c\xbf\xc2\x98\x8f\xb2\x13\xf1\x87\x7f\x871\xfch%m\x7fU\xa8Fu\x85\xe8`\x9e\xadJ\xbc\xb7\xe9.\x84\xdf\xfe\xa6\xd5\xdb\xdf\xee\xe3\xc7\x86\x9b\xd9N\x85!\xe3\xa1\xfd\x19H\xde\x16!\x08\x14W\xd3\xc7\x18\xa0\x1dz\xec\x9b\xfeF\xd9\xcf\xb9\x0b;\xe9\x94\xfc\x17'\xed\xf3$\xc6\xbeH\xdeL\x14\x85\xa3\xd1eY\x80\xb0Q~\x92\x1f)G\xe97\x02\x94\xdcYd\xc0H}\xa6\xd9\x90\x87D\xe3\xd9\x82\xccv\xa8 p\xa2\x9ah6\x9c\xe5\x19H\x15T0\xc5n\x04\xeb\xbd\x0d@\x9e$\xa9\xbe{\x8d\x96\xaf\xe8Q\xfd\xf7F?jM\x06{\x90o\xff\xd8\xf8\xb6\xc0\xed\xc2\xe7\xe51z\xbb<~\xdcuM\xf8\x0e\xb2\xf5_\x9b[\xbfg\xad\xff\xc2\xf3\x04r\xbca\xcd\xfe\xe4|dE\xbe)M\"\xb6\xfess\xeb/\x8d\xad\xb7\xc67(\xcb\xee\xb0\x0fO\x9c\xb3\xb0\xe7:\xd3\xdf\xcf\xc2\xd9\x0f\xee\x93\xa5~W\xa9\x1f\x94\xc9\xb3\x9a|\xe1r\xd9DP\x96\x0c&\x90\xa1\x9aA\xb8U@4\x08H\x92\xbeeo\xf0\xfc\xe0\x7f\xce#\xd3\x0d\xfb\x98\x7f;u\x0d{Z\xfd\xa0\xa8~\x16\xcaP0Ct\xffd$^\xfe6c,\x88\xc9k$l\xf5#b\x0c\xc6\xaa\x0b\xb01\xc1\xa7\xfaam'\xc0\xc3\xbc5O\x04\xc4\xc9\x15O7\x1b\xc6\x0cyJ\x18>\xcb\x00o\x80|\xb6\xd3\x13\xe81Y\x0f\x13\xdc38\x88\n0a_\xc7<\x9f\x1d\xf4\xe0\xcfN\xc0\x85I\xbc\xb5\xb0vf\x8ey \x05*\xfa\xc6J\x9f\x19z\x12\xb7 \xdb\x7fk\xc4\xf6\xc7\x98\xac\xa4\xf9~O~rA\xba\xe0\xca\x85\xa4l\xe4\x91\x84\xce\xb4\xc2\x08\xbd\xe4\x02\xda.\xa0\xe7\x0e\x13\xd7v\xb7F\xc8\x04\xd4\x83\x95\xfa(\x15\xf3wv\xb76\x87PD.\xdd\xda\xdeb\xc26*\xa6\xfepF\xc3Mt`Na\x83\xb7\xce\x93\xc9l\x88\xd7z\\\x86c`c\xbc\xdb\x98\xeb\xbc\xde\x0b\xab\xd9\xde>t\x90\x93\xf9\xe4`Zh:\xf5g0\xe6\xa7\xdc\x1fz\xb74\xf5#\xafSmk\xe6\xf2\x8c\xa2\xfa\x86D \x08\xf3\x92\x95t\xba\xfej\x1d%\x89\x7f\x11\x08\xc7\xf71\xf8BU\xc9\x8d@x \xb2n\x13c\xf7\xd9\xb1\xcb\xf3\xbf\x983K\xc1\xbe\xe4\xd7\xa4\x02\x10\xe3\xafin\x01\xe221)\xc5\x95\xd2\xea/B\xb6\xdfx\x8em\xfd{\x9b\x9c\x1e\xe5\xcf\xd8(\xba\xbd..\x97\xdc\x94\x1b\xfc\xb09\x0b\xbb\xd6\x19\xfed\x14\x84MCf\xb8Q\x90\xd4\x8d\x11\xa6\xf7\xb4\xf6\xf1g-\x14\xd1\x1aAq\xbcV\xc9k\xce\x1bTl\x87UE\x96\xe2CY+:\xae2\x90\x85*\x9d\xc0\x0b\x08\xd8\x1f=\x07\x89\xa2\xa3\xe31)oJf\xee\xa0\x88s\xc0P\xc4\x1b\xe4\xf6\x06\\\xcb\xdd\xf1*5\xba\xdc\xbc\x80aR\x9e9\x90\xd3XY/Z\x80\xfaR\xdeN\xder\xa5#F\xfal\x82.\x95\xea]\x98\x80\x87\xdf\xc7\xd0\x9dt\xfb\xe0\x0dr\xbb\x04\xdb\xb1\xc2\xdaXp\x95\xa8\xb8\x1a\x99b33>\x0e5>N\xdfh>\x91\xf1\xbb\x00\xb5K\xee\x13\xa1\x94\xb03sa\xa1\xe2\x06\x0d\x80\xfaA9/\xa9\xf5\x85\x11-\xca\xf4\x99'\xe8\xf7D\x82\xfe\xc7/1k\xbf\xe0\xfdc \x9eG\xd7i\x82Wo\xfc\x04\xe6i\xc2\x10\x02\x8f\x9bN\x9a\xf2\xb4\xa6\x8b\x19\x9f\x99\xf9\xe41OY\x8a\xc3\xb1\xb6\x8a5\xfe\xb4\xc6&K+\xe6w\xec\xfa\xd1\xffU\xd2\xf1\xf1M_\x95\xd9\xd5\xfb\x83|\xc8a\x9fo\xe5\xb0\x0f\x9d\x11F\xc1\xc9\x7f\x0e5\xd9\x82\x13\xc8\xb1\x847Q\xcd\xdb\x9a\x13?U\xa4}\xc1#\xc4\x95\xa5\xdcjVS\xd6|\xd0\x87E\x1f\xed?\xea\xdeR\x0cAQ\xd9\x91?B\x17\x1f\xf9\xa4\xae.C\x85\x9d\xa3h(\xc5\x8dXqI\x92\xcb\x04\xa1\x8b7f\x85o\x06\x02\xeb\xd1#\xb6\x05\x95\x02T\xdb\xdc\xdf\x83P\x84K\xa5\x02\x12\x86\x97 R.\xfb\xa8*u\x85Z\x8aVn_\xa6\xc1\xcc-\xa0\xdf\xfd!\xa6\x8bs\x86\xe3\x15\xf1\xderQ\x8d\xd3\xc2\xb6;\x9a\xc6q\x08\xba\xf2}\x9eR\xdc\x00W\x97\xaf\x1c\xcf*\xab\xde_\x8aU\x96\xc7\xcd\x04\x9cN\xcd\x96I\xa3!\x92\x9f\xb2r\xb9\xaf.\xb0\xc5\xa2\x95\xdf\x1c\xa7\xc4\"\xe0]V\xeeYM\xb9\xf1\x91\xd6H\x1f\x04y\xa5\xe8\xc2%~w\x9aT\x80J\x0e\xd9\xe2$\xd0\xb4\xa3\x145\xb4\xa8\xbe\\\"u\xf9u\xe7*K\xd0\x92\x80\xc0\x05O|\xc3\x13\x98\xdb\x8c\x10\xa1\xa4b\xe5,\xc4e\xe9\xbe\x8d<\xe72\xd8\xc8E\x95=\x135\xc4\x823\xc8\xf8\x0c\xa9\x1d\x0c\x89$\xae\xb5D\x88\x89p\xca\x18\x9c\xcb\xa9?\x9b\xf5\x05\x8d\xe1\x96\x80\x19O\xcb\xce\xffq\xbc\xc7\xdd\xd5b\x07 \xe4\xc7\xbd\xc1\xbe\x15\x1e\x15L\xf0\x90\x89\xe0e\x1dO,\x1d\xd6,\xe77\x9f\x88 N\x13\xc6\xa8\x8a\xaf\xd0\xc5\x8d\xd7\x93\xaf0\x0e\x83S\x81\xd2\xdc\xd4\xa9$|\x1a\xc1\x17\xf4<.z\x1eC\x97\xe1uo_\xed\xdd$\xedHZk\xa2\xee\x89}&g\xe4K\xda\xe2\x14t\xe4QNG\x90\xc9\xe3\x9d3\xd9\xac\xbe[m[\xb5b#\x914\xec\xd3\xa0y\x9fz-\xf7i5\xa7\xb6\x97\xa3o%\xa7vV\xbf\x8a\x9f\xa0\x00\x8eR\x93\xa0`\xfc\x18\xc2\xbb\xddn\x1fq\x02\x95 S\xb6?\xbci\\`3N\xb63\xe2\x87_\x01\xd22N*\x8dq\x04\xcb\x8a%f2\x96q8\xc8x\xa3eF\xbd\x0e\x17\xaf\xb099\x14R\x1e\n\xb2\xe6Y{lR\x8f\xf5\xee?X\xaf \xeb\xbf\x11\xa3\x9a\xd0\xa9\x0b]\x05\xa9\xeac(\xa8\xa5\xf6`.\x1d-e\xf0~\xc9iRx\x00\xdb03\x93\x98i\xc16\xc5l'4\xd9\xe8\xa8\x84\"D[\x1d\x95\xe4)$4B\x12J\xcad\xa6%1\xc1\xb7\xba\x1b\x0c!\xc4W\x9e5\xb8Xy\xfb\xc2g\xca\xc2\x13\xce!\xcd\x9a\x16\xfd\x9fAF\x1a\xd6\x88\xb4X#\x85\"\x84&\x8a\x90\xf3\xbe\xd3xV\xdeA*1\xf091h\xd8\x8c\xae\xd0U\xb6\x82;Q7\xdc\xb4+S-7\xc2\xbe \xf0\xad6\x9cY\x94\xcc\xb7!\xd7(\x89@\x03I\x93\xf4X2\xd5k\xf4m\x84\xaa*-\x0b\xb98F.\x02\x8a\x9eT\x10-\x801/|,i\x048W$Kz!K/'\x95\xf9\x87G\x8f\xf8\xc5\xa4DbT\xe0\xd6\xc1]+i\xe2K\xca\xab\xc1\xc5N*\xc4\xce\xeeKu=\xfed\xee\xa8.\xd2\xe9D\xb5\xff2+\x03sm\x94.\xd4\x8c\xce\x1d\x87\xc7\xbb\x94-\xa3\xfb\x97\x89~*\xb4\xb3\xbe\xa2\xb9\xe5c'O \xa6\xd1\x80\x98}\xec7\x94\xc0\x14\xa1zO[Xy\x15ia|\xdc\x9c1\xf7ui\xbc\x85\x0fy\xbd\xd4\xed\xf3ce\xe0'<\xb4C\xaa\x89\xce.?Uf851\xc3\xd4I\xa7\xfeL@\xcd<\x12{G\xd5X\x11\x15K\xb8\xc8\xd6y\xc4y\xeb\xb0\xee\xc4\xca\xd0$\xe2dZ\xb9R\xf5\x0d\x97\xa8\x90\xaar-\x82,\x9a\xfa\xd3p6\xabL+\xd5\x98\x03\xe6\xe12b\xbb\xd2\x8fR\xab\"\x9b\xb5s\xc43\x02\xb0S\xe8\x1fUOB\xa9\x97V\xcc2q3\x84\xc8\x03\x85}6GZ\x9c\xb0\x13\x08%\x8b\x85\xda\xcbR\x0e\xf2b\xe7\xe5n\x9fr\xfbR\xaadh\x1f$dA_W\xac\x15,\x96{|\x8a\xf1\x80\xde\xa64\x9c;\xf5}\xc4m4\xc7@\xca\xab\x85'~et_\xe4\xf6\xa3z\xb1Z\x07,\x0d\xe9\xd5\xac\x07x\xd9\xd6q(\xecC\x8f\x9aC\xcaX\xa3\x99\xf3h\xe1\x97i\xba\xd6\x04\n\xe7\x0fo\x12C\x0cq\xd1\xdfS\xc1\xec\xd57T\xd1\xb8\xae \xd9zC\xf3\xdb\xdb[\xf6\xf6\x17\xda\xb1+-l\x8e\xec\x0d,\xa3\xf5%\x8d\xedm\xec5Lr\xe1\x07\xa6P\xebzs\x04\xeda\":\xf9\x16\x98%\x1d\xca\x1a\x83\xc4\xd47~d\xbc\xde\x99S/\x9a\xd3O\x1f\xdf\xbe\x8aV\xeb(\xa4a\xea(Q:\xcfzh\xb2\xc0\x18+\xcd\xceM\x07\xdc\x7f\xc2_\xdc5!{NT\xaa\xf1\x05$\xed\xd1\x9e\x8c\xdcQ\xdc\x0f\xa1\xcb;R\x9d\xcd\xf95\x0dZOO\xd0#\xde\x85X(6\xd1H\xf2\xd1#\x10G\x0f\x0dkS\x8cP\xb2\xdbG\xb6\xa0\xfe\x94'\xf03\xd0\xbe\\\xf4I\xd1O\xf2\x8f\xc8\x0f\x9d\xee\xa3\xae[!o}H\xb9go 2U\xb0\x94.\x92\xd1@b\xfa\xfb\xfe\xe4\xd1\xac\xe7\xeeO\x9c\xe9\xef\x8f\xb8\x95\x04\xae\xfa?>?G(\x86V3\x01i0\x159\xe8\xb4i6\x8fb\x156\xabg\x0b \x9b\xe2\x87\xfc\xba\xd7\x89\xa7\xfe\x8c\xb1\xc9-x\xa6\xf8a\x08^\xf8FnU}\x1a\xb9o\xe4\xde\xee\xb6\xd67rk\xb8\xa9\xf1\x8d\xec\x1e\xde\xae\xa9\x97\xd2\xb9\xaag+W\xcb\x14\xdf\x97\xf2\x93$\x7f\xe2\x87-\xc8\xb8\xe1\xcaL\xdc\x94\xf5a\xdd\x87y\x1f.\xfb\xe8\xc9\xa8\x89\x01\xba2X\xe2.\x0d\xe5w\xa8\xf9-\xafSE\xb5Yl\x8a\x92?\xf4\xe9\xdd\x9ar\x9fh\xa2\xe6R\x06\x950\\\xe8\xcf\x10\xb9+\x03=\x02\xe1\xddK\x1du\x04.\x04\xec)\xec\x8bh=\x1c\x10)W\x1a\xd3\x01Y\xaf\x83;'\xeeW#>}6\x0c\xf0\xdc\xech\x8f\x16\x12\xb0\x01\xe6\xfc\xedJ\xbc\xa0Kn\xb7\xf2R\x90\xa1P\xdei\xa0\xe8\xc0Z\xb9f\xcf\x16\xad\xc6t\xa35\x97dC\xa2\xb8\xb3t\xbbj\x01\xce\xb9\x9ac\xe3\x90\xed\xe0Z\xb59\xec\x83\x08\x05\x1fe\xa9s\xd3oa\x94\"A\x91\xc2\x068\x08\x0f{\x00\x88%L a\xdc\xdaB\xbep\xed\xd6\xf3s\x00ga\xabn\xdf\x06\x88\x1cZ\x1d\xad\xe7\n2\xa0Av\x00\x13\xb8`\xaf\x8c\xf9\x9d\x8e\x8a-5 M\xdf\xe3m\xd3\x1a\xe81\x97\x01\xea\\\x0bz\xb6Bl,$^f+\x1a\xa6 \x0f\xe4\x9f^\xfaI\x1fo+\xa8Ei\xc2^V\x90\xad\x10\xbf\x9b\x97\x0f\x14t\xe5\xbd\xd4\x91\x80 $\xab\x02fkmC\x9f\x1d\xd3\xc2\xb3\xd1-]u5\xea\xcd_8\x97m\xe4\xf0\xfa\xc6BSyG\xd7\xa8\xdb\xaf\x8cT{r`\xaa\x0bF\x85\xee\xefQFrB\xae\xfbA:\xd9a\xe7-\x99\xfb\xe1\x92g\xdap\x18\x95\xec\xae\xc8\xedo\xc4O\xbbty\xbb\xb5PS\xe5~p\xa2{#\x97u\xff@ *\xdd\xeb9\xe1-]B\x0f\xab\xac\x05\x82\xe43\xa1\xaf\x0f\x9d\xd8\xa9\xc4\xcd\xccs\x08\x15\x0c\":`\x8c\xc1#\xe1\xe3\x94\xcd\x0dH\x02\xb9|\xd9\xa9\xd8O~\xd6\xef\xd0\x1a\x80\xc6\xa0]\x14\x14-\xba\xe7\xe7\xd8\xfe\xf99R\xe4\x7f|\x86I\x15LZ-\xa89\xe8\x16\x8fC\xe7l?s\x1di\x15\x85\xe2`\x9f\x81vw\xe8\x0e\x16NUp\xee\x832\x0c\\\xbc>l\xba.\xeb\x7f*\xc3\xd9u\x1c\xaa\xda\x8c\xa1\x9aM\xe78\xd5\x14y*\xd5G\xcd6\x9e\xb0*0\x8cl\x87\xa8\xebK%\\\x8aFx\xf9\x9c\xd0\x1cM\xd0@\xf6\xb8\xae\x06\xad\x9a\xc1\xfe\xe33\xbf|\x19\x8b\x83\xa6\x82z\xde%\xf5\xae\xc6\x8aEv\xebM\xab\x92\xf5\x02\xe5\x8b\x8d\xdb\x82\xe8\x1b\x8f\x1d\x0fC6\xf0:\x0f\x1b\xd9\x97\xed}\xde\xdf\x18\xc7\xff\xcc}\xe0~oV\x1a2p\xed|E[\nx\xab2\xb4\x90\xad\xf7\xb4I\x88\x9d\xad\xbd-m\xdc\xa1\xa7\xba\xb0C\xa1\xb3]\xad\xcd\x07\xfft\xbbZ=\x10\xe5\xd5\x83\xc0\x13\xbdVG\xb9\xe0\xf5w\x86\xa5\xd3\xf0\x99\xf2+\x1a\xf8![\x1a\xa7\x82U\xeb\x1a\x19Z\xf8\xe1\xfc\xf5\xf1\xfb\xa3hN\xc7Ui6\xa6\xe1\x9c\xc6c\xf0\x07\xfc[e\x92\xe1*\xca\xc24\xd7\n\x1d\xa4\xbc\x11\x7f\xa0\x7fR~\xfb\x9a\xc6\x89\x1f\x85cH\xaa\xad&x\xc3v~\xc1\xe8\x05\x9d\x7fZ\xcfIJ\x931d\x83r\x89\xe15>\xd2\x93\xec\"\x8d)}\x1b\xa6\xd1\xab(L\x89\x1f\xb2y\x14\xc2\xabB\xa1\xf5\x91\x1a\xcf\xcf?\x1e\x1e\xbc:=\x7f}\xf8\xeb\xe9\xf1\xf1\xbb\x93\xf3\x9f\xde\x1d\xffx\xf0\xee\xfc\xe7\xe3\xe3_\xce\xd1CWk9e\x7fM,\n{\xbbU\xc5\x8ar>\x87\xe7iL\xa9.i\xf8\x92\xa6\xaf\x82(\xa1I\xfaV\x10\xe47q\xb4\xe2\xab\x12\x0f\xccO5\xba\x16\x8aK\xc6*\xc8\xcaM1\xc3@\xb9b\x18\x88e\xa0\xf3|\xcc\xfc\x02\x921\xfbR/\n=?`\xcb_\\h|\xaepH\xeboAL\xf6\xf6\xaa\xd1\xca$5\xa9\xeewNM\xf6\x9e\xea4u\xac\xbc\x1a\xdd,\x13\xe5U\xaa$\x88\xe1\xd3j\xbf\x81(\xaf\xf6\xcb\xe9\xc9\xde3==\xa9\x11\xc35'3\xa3*Y\x9a\xf3\xf2\xcd\xea\xe1w)\xcaG\x95\xf2kQ^\x9d\xeeJ\x94W\xc9\xe4R\x94W\xc1p'\xca\xab`\xb8\xe0\xe5[\xd5\xf6\xcfEy\xb5\xfd\x1bQ^\x9d\xef!*\x18\xdb\xf0n|{6\xc4\xce>D>\xeeP\xb8p/\x07\x87\xd74L\x0fW~\x9a\xd2Xl\xf0\x8f\x94x)\x96\xbf\xf3\x93\x94\x864vVn^\xf7C\x90-\xfd\xf0\xe7\xecB\xd4V\n\x8f\xe39\x8d\x1dR\xad\xfb)\xf5\x83D\xd4.Q\x0bga\xab\xcaj\x9c\xc6\x84\x91d\x12\xa0\x80\xde<\x82\xe4\xc7\xbb#\xb2\xa2\x9a\xfbC\xf69\xf1W\xeb\x80*\xd5\xc7pS\xa72\xecs\x18\xa64~G\xc9u\xb9v\xa6\xaf\xfd\xea\x92\x84\xcbrMCv\xb3\x13\x1a\x94\x07<\x86s}\xcd\x1f\xe9\"\x8a\xe9\xdbp\x9d\x95\xab\xd7]\xb4>#d~\x8e\x92\x02\xb8\x020?\xb1\xb5\xf3\xbd\xbc\xf8U@\x92\xc4\xf1\x8c\xf5O\xe9mZ\xa9|\x89\x95_\x1f\xbf\x97\xd7T\xa2\xaaR\xf2*\n\x17\xfe\x1235\xb4\xab\x99\xb4\xaey\xc1\x17}\xb5f%\xe5\xb1\x96\x0b\xdf\x10/\x8d\xe2\xbb\x16\xb1>\xa5\xc2\x81\xde\xc0\xba\x1a\x98\xb2\x80\xa68\xcd\xf3\x0d!\xc8\xf5iL\xc2\x84\xf0\x1e\xee4\x15\x7fd\xbc\x80\x1f.O\xd2\x98\xa4ty\xe7\\c\xa5\xda\xd8\xc3k?\x8e\xc2\x15\x0dS'0K\xf3\xf8\xed\x8b\xc8\xbf\x99F\x08\x00\xfb\x8cw\xa9\x03\xa8Kb\x9flxY\x1c\xd30\xed\x8eu\xf7 \xbc\xca\x9c\xa6\xc4\x0f\x12k\x15?a\xac\xcf\xdcV\xe7\xd2\x9f\xcfih\xab!\xfc\x02mU\xae\xe8]r\x19\xc5\xa9\x97\xa5\xd6\x01\x05\xe4\x82\x06\xb6\nq\x14\xd09M\xbc\xd8_#\x07e\xa9J\xb24\xf2\"FMRj\xab\x87\x92\x97\x1d\x06\xf4vM\xc2y\x03\x9cH\xb2\x8e\xd6\xd9\xda:=zm\x9f\xde*\x9a\x13{\x05\x19\xb5\xbc\xb1R\x82d\x8c-\xaf\xadj\x14\xfb4LI\x13,\xf1\xce\xfa2\n\xe64\xb6V\x8bi\x92\xd8\xc1\x14S2\x8f\xc2\xe0\xce^\xe7o\x99\x1f\xdb\xdb\xe1\xd3k\xa8\x13\xc5\xd6\x1drM\x82\x8c\xae\xc8ms\x1d\xdf\n\x1d\xac\x13F7\x8duRzk\x1d\x10I\xa3\x95\xef\xd9j\\d\x89\x15t\x81\x7fm]\xef\x98\x06\xf4\x9a4\x10\x0eF\x7f\x16\x0b&\x9f[j-crqa\x87?\xa3\xc2\xd7\xb8]i8o\xe8\xd4\x8b\x02\x8f\xf1\xe1\x0du\xd0P\xae\xa1N\xb2&\xd6\xe5\xf2\xa20\x8d\xa3\x06\xca\x884\xe6\x82\xce/\xac\xe0F\xcf\xe8\x15M\x12\xb2\xb4\x82}\x11D7id]8F\xf9\x82\xa6\xfe\xa2\x9b\xd0:\xecu\x94\xf8aB\xadP\x8c\xa3\x9bFH\xc7\xd1M#\xa4\xe3\xe8\xa6 \xd2 M\x13\xff\xef\x08\x99R\x8d\x8a\x00\xf6\xfa\xf8\xfdA\x9a\xc6\xfeE\x96R\xc6\x1a\xb2s\xaf^E\xf2\x1dy\x8d\xbc\xc2W\x9c\xc2\x8aFgX\x95V\xc4\xd5\x81^\xa3\xb3\xb7W\xad.e\xb0\xaap#e\xb0\xaap\x83q\x08\x9f\xf5a\xb4\xd5\x87\xcd\xbd>lmV,[\x990\xb6\xb9\xa9 \x14\x1d\x0d<\x12~J\xe8\xeb\xe3\xf7\xa8O@\xde%\xf1\xd9\xcc\x91\x0fE\xbd/O\x11Q~\x19\xc5\xb5R\xda\xfcjS\xf3\xc8\xc3+\xda\xf7\xd1\x9cb3\xb2\x00\xa4\xc3\xa0,\x18\xa8U\xab\xca\"~\xd3Zm\x9c\xf1\xae\xd5\x01\xb2\x07\x1d\xee\xb2\xe7\xd4\x0dk1\xf5\xbbHv\xc1V\x9f\xb8F\x05\xcaz \x14C\xac\x06\x9a\x07\xbd\x0dS'/u\xdc>\x8c\x86.\x8f\xe7\xa7\x11?+cu:\x1e\xc8HT\x0b\xc0\xec\xbe\xec\x0b\x86\xe4\xabL\xf6Z\x13\xa6{\x95G-\xc5t\xbc\xaf\x84W\x03\xe35K\xf5\x96\xdax\xd2\x17\x85\\\xa1\xe3\x00\xd9g}I\x12:\xffH\x97~\xc2\xf8X?\n\xe5\xb6\xd0Vg\x9f\x8b\xec\x82\xf1zc\xe8F\xa1\"\xb9X\xbc\x10<\xb2N\xb3\xb8\xfe\xca+^^\xb7\xe5\x87\xfa\xde\x96\x9f9]\xd3pNC\x0f\xd9\xdai7\x8d\xd6*\xda\x86\xf3n\x1fX\xe1/\xf4\xee\x03\xe3\"\xc4O\x862b\x98\xf8\xfb\x03IR\xda\xd5$\xe5\xab\xf7\xea\x95\x9a\xffN\x80\xac\xce\xa1\x1d,\xcbo}#p\xfe\x18d\xb1\x80\x92 \xb2\xaf\xa3\x9bP\x0f\xe7_\xe8\xdd\xa7\xb5\xf8\xfe>\xca\x12\x8aU\x1f\n\xe7\x93\x94\xc4\xdf\x0be_U\xba\xf9\x02X\xe3{\xdf\x15\xdabd\xff,xs\xc9\xf6\xfb\x03\x9c\xf7\xf3\x05\x10\xe7/~W\x90\xcb\xb1}C\x98\x97J*\xe3\xbb\x13\xaa\xbe\xbc07\x9b\xba\xd0^\xa5I{r\xad\xb2\x83[C\xe7C\xb3ZD\xd7r\xf7\xa2G\xc5\xab\xf2\xe1\xabk\x18gim:o {\xd0D\xd3S\x9b\xe3\x105\x19\xa8\x97@k\xa9\x84ki\xb7\x00\xd7\xc4\xac\xb3F0j\xb2\x1c\xd7ymhL \xafe\xde\xb7\x01W\xa0\x94G!:1\x05A\xe9\xceIJ\x90\xbbIa\x02\xe9\x80\xfd\xac\xdeI\x14#b]\xdd\xe4,Y}t\x87\x92\x8f5\x84\xa6\xcd\xfa\xba\xd8\x0e\x1e\x86l\xb3\x99FC\x13^\x82\xbaT5\xf2\xd6\x18\xf3k9\xa8\x9e z\xe39]\x17\xec\xbczX\x07\x87\xe1\xbc}\xf3\x82Z<\xac\x07\xfeR\x13\x9d\xe0\xd7O7\xdc\x96\x10\x85\x8fG\"J|u\xb8h=\xd7df\"1M\xd9\xc4\"\x92\xd3\xa3G\xca\x8e-\x07\xba\x16\x031\xf7\x8e\xab\xe1\xf6AI\x18^\x16\x08\x00\xf9a\xf6.\xc6q\x17\xe1{kMp\x1c\xab>:\x0c\xd1j\x8f\xe7\xa9c\xf2\xcd\xcd`I\xd3\xd7$%\x8e\xcb\x81\xb3\x0f>\xdawEQ@\xe7NTu\x05`X\xbd\xc0,\xc4E\xa5\xac\xd8\x03udO\\X\xf0]V\x8bsbp\x05\x95\x97\xd9\xe7Z\x7f\xfb\xdc\x92GDH\x91m\xb7qn\x8c\x07\xc4\xf3\xb2U\x16\x90\x94\x9e\xdeD\x1f\xd8\xf1\xfb\xdaO\xd6x\xf9\x9c\xe0E\xca\xc2J\x8dn\x1b\xf6;\xa9\xcf\xbf\x83\xd1\xa2\xe6U\x13\x9fo\xb6\xe3[m\xc7s\xa7\x1a\xb0F~\xda\x1c\x1c\xf2\x93\x1fF7\x97\xbew\x89\x8bp\x0d\x13\xbe\"cp\xee\xc4u\xd8\xaa\xa9\xabBd0\xf7\x95\x1bv\xe3\xfa\xea\x1b\x04\xe5&\x02Q\x1dc_\xdf\x15C\n\xf5\xef5\x86\xd9S\xf6]3M\xc1\xad\xdc\x82\\0d\xb81\xad,:5\xd4\x17\xb6\x88\x0c\xd7\xf1\xd8\xdc\x04\x07cj\x05\x14\xc0)\x1b\xbb\x11z\xfe \xa6\x01% un\xdc~~\xe0\xf5\x0d\x01,\xf5\xae\xce\xeda\x06\x0fBu.O\xb6Z\xabo\x8e\xe1\x8f\x1eA\xa7\x85iD\xe5m\x87\x0e\xbc4\x0e~\xa1w\xb8\x1ayJ~\xd8\xd0\xd1\xa2\xcf\xd1s\x80\xf2\x83\xf7\xba\xf9\xbe\xb9t<]XD\xa8\xb1\xa8\xf8*\x1b \xba1\x8b\xdcQ\x1a\xda\xd6HX\x01J\x810\xc1\xaa\xac\x96\xbc\x0d\x1d\x9c\xdf\xc4d\xbd\xa6\xf1I*\xb2~\xa4\xe5\"\xf3\xd5\x01gT0\xd0\x980\xd7\x0d8\xaf\xd3\x0d\xb3\xd5\x05\x8d\xf3\x95c\x0b`\x19\x0b(\xacw\x97\xe7\x8c\xc3\x03\xcc\xdc3`\xf4\xb5%Ms\x93TG\x9cyn\x112\x17\x1d\xefk\x15\xb4+\"?\xfa{\x8dz)\x9eB\x81\xd1\xe1D\xafp}\x8f\xa5_)*\xef=\xd595\xab)\xde#q\xa4\x8a$\xe2V\xb4i\x197\xd5@\xe0\xf8\xe5\\L\x17\xf5\x85\x928\x18\xd60\xd7\xe2\xce\xaf\xcfV\x00\x13\xa0\x0e\x0f8\x92]\x04\xbe\x97SMd\x02\xe2\x01\x99\x17n\xa8\x07\xc9G\xba8\x8d0m_\xbf\x1ab\x0bp\xe1B.\xc8\x0d\xce\xa3\x9b\x90Vc\x96\x16K\xc8\xc4\xb7\xe42\xca\x02!\x06\xb5\x81\xa6\x84I]r\x03\xa9\xae\xac]a\xe4\xd0\xa7\x06\xe8c\xb9\xc8\x86\x16\xd3\x85LL)\x86_\xbf\x0f\x89\x8c\x03\xf0\xb5\x03P.W\xecX\x90\x13\xcb\x94\x8f\xc3\xc7\xafb\x1c}\x08\xf1m\x0c#\x9eG+,\xde\x8e\x90\xc0\xf1\xbdY\x062g\x89\xdb\x80\xf7\xff5\xc8\x8a<;\xe2fLW\xd15-\xa3';\xf9\xbf \x82~\x075\\)\xe2\x80Q\x03iP\x8a\xfc\xe6\xc1^\x0b\x13G\xedR\xa7\x91Xh\xf3\xfb\x1e\xe6\\\x9a@d\x89\xfc\xe2\xac\x8d\xc1V\xd8\xe73_\x81 W8z\xe6!\x8b\xf0\xa0\xfb\xfb\xe0\xb5\xc4\x94\xb9h\x16D\x92\xe4\x04\xc6|\xb05\xf5G`\xb8\x96\x07\x19uD\xb4\xe2Y[\xf1,\xad\\WlZ\xc9\xa0 P\x88\xd0\xb8S\x0ds\xc9ov\xf0\x9d\x80S'V\xcc\x17\x0c\xd3`]WVq_\x17\x95\x17\x04dV\xfa\xd1 \x81\xc60\xca\x96\xd1\x08\xd0\xaf\xca\x83\xa2\x9c\xb6\xb3\xe2\xbc\x7f\xf6\xab:\xa8y\xd9\xce\xa98D\x95{\xa9\xeb>\xac\xf8&w\xfb0e\xbf\x1a \xa9\xfe\x8c\xcf\xb0\xf4+\x0f\xd2Z\xf4\x1bv\x8e\xca\x00+~\x14\x0e\xde\x7f:9=\xfftrx\xfe\xe1\xe3\xf1\x87\xc3\x8f\xa7\x7f\xad\x9f\xafj\xf5\x9f\x0fN\xce\x7f<>~wxpt\xfe\xeb\xc1\xbbO\x87\xf5c\xb7Z\xfd\xe8\xd3\xfb\xc3\x8fo_\xe9\xaag\x9a\xea\x1f\x8eO\xde\x9e\xbe\xfd\xf5\xd0\xf6^\xa2y\xef\xf8\xd7\xc3\x8f\xef\x8e\x0f^\x1f\xbe\xb6\x0d0\xd0\x9eR~\xf2*K\xd2h\x95k;\xc6\xf0\x91.\x0fo\xd7J\x94\xfc\x94&\xe9\xe0\xc2\x0f\xe7NHo\xc4c\xa7\xfb\xbb3')\xb9'\xb1O\xdc\x0d\xcc\x01\x14\x0f\x0eNO?\xbe\xfd\xf1\xd3\xe9\xe1\xf9\xd1\xc1\xfb\xc3\xf3W?\x1f|\xc4\xbc@?\xfc\xb9\xab\xcb\x1ao\x0f\x85\xc1><\xb3\x8e\xd6\x07\xb9x\xfc\xea\x92\xc4\x185\xd1R+I~\xa1w\x96\x1a)\xc6\x1c3=\x0e\x82\xe8\xe6M\x16\x04'^L\xa99\xb6\x0c\xd6\xc3\x08%xjx\x96\x0e\x03\xcbp\x13\xcb\xa3\xbb\xd03w\x9f\xa5\xd1+\x11\x12\xc3\xdcD\x96F\x1f\x02rglE\\\xec\x9b\x9f\xd3 \xf8@\xe6s?\\\x1a;auN\xd6\xc4\xb3\xd6\xb9$\xf1\x89e\xd5\xbcK\x12\x04\x14-\x1c\x8c50\xb4\xc7\x18\"\xb87\x8e\xd6\xb7\xc0\xc2\x0bH\x92\xbc}m\x7f\xceYLS\x8d(H\x8cA\x89\xbc\x88\x01\xc1\x8cV^\x14\xa64\xb4@\x80??\x9c\xfb\x18\xe8\xc3^\xef6}O\xc3\xccZ'\xc6\xc1\x9a\x00%*\xbc\xf3\x13\xdb\x88\xa2xnFO/\x8e\x92\xe48\xf61L\x92\xa1\x0e\xb7\x0c2?\xa4\xa7\xbe\x05\xdey|\\\xc3,\xe6t\x81\x81 \x0dO\xfd\xd8\xdc\xb2\x08\x96c~9\xba \x83\x88\xcck\x91 \xf3\n1Y.\xad\x0bEC\x8f \x04\xc6\xe7\x8b(^Y\x1f\x1e\xd8\xe9\x14\xabr\xd8\xa2\x8f\xf74\xbd\x8c\xe6\xd6*G\xd1\xaf$\xf0\xb9\xff\xa9\x01 \xac\x1a\xe7\x0f\xcc-\xc5dE\x7f\x8cb\x8c\x16i\xa8sI\xc9\x9c\xc6f\xa4\xba\xa4\xfe\xf2\xd2\xdc\x05\x0f`d\x1c\xe4\xa5\xbf\xbc4\xbf\x1b\xd3\x85\xf5\xe1;b!`\x97\xe9*x\x13Y&\x96\xa6\xeb\xc3\xbfe\xfe\xb5\xb1\x86\xefY\x16\xd37/\x10\xden\xbd\xc7\xf0\x8d\xc6\x1a)]\xc6~j>\x81|3\xc4\xaf\xe8\xdd\x07\x12\x93\x95\xb5\x86\x15\xc9\xae\xfc\xd0d\xeet83ov*nd\xd9$e\xba]D(4\x7f2\xec\"~]\x19\x95\xea3\x08a\x08|\xda\xd7\xed\xbe\xca>3$WK\xbe\x052\xd5\xd0C\xe4\x87xVE2\x11\x9b\xf4\x99>?\x84.\xd9L\xac\xac\xe8\xa40\x9d\xe7\x89x\x04\x85r\xbas\xff\xfa\xffa\xefM\xdb\xdb\xc6\x91E\xe1\xef\xf3+`\xde9ij,)\x96\x9d\xc5Q\xe2\xf6u;\xce\xe9\xdc\xc9\xf6\xc6N/\xa3\xf6\xf8\xc0$$\xf1\x84\"8\\d\xbb;\xf9\xef\xef\x83\x02@\x82d\x81\xa4lgf\xeey.?\xd8\"P\x00\xb1\x16\xaa\n\xb58\xfa\xbe\xb7\xb9\xf2\x1e\xfe\xfd\xb7\xf4//\xdc\xdf\xae\xb6\x07\x0f\xf1Q\xe8\xa5\xdbX\xbb\xca\xcf\xc5\x9a\xa2\xee\xd6\x04\xd1DL:\xfd[\x91\x8ab\xf8\x8af\xde\xd2M\xdb/>\x01Ug\xb3\xc9yU\x1f\xbc9\xf1\xa8yVH\x94np\xe0\xd6u'\xe1\x82\x1bkd4\x0e\xa2\x88%b\xbb\x08\x9c<\x9b\x9c\x93m\xc2\xc86 g\xbb\xc8\n/B\x1a{\x00\xbds\xfe\x9cx\xa3\xd1\xf3\x81\xd4\x0c\x1d\x874\xcd`\xe1V\x17\xa6\\\xda\xd5O\xb1\xe6\x90\xce\xb5B\x98\x9a\xf4\xf4\x87\x9b3\xba\x80H\x0d\x8e\xf4\xb7^?a\xe7:`\xb3\x8c\x16\xadgkH\xb8;\x1f\x8c\xe7<9\xa1\xde\xd2\xcd\xeaF\x80E/br \x83~\x81\xfa\x89\x1b\x8d=\xd1x\xb1m\xd3\xc1s\xb3?\xa2\x87Z\xdfQn\xe42\x0f7\x99,\xf1\xfc\xd7\xfb\xd8\x7f\xfb\x96\xcdm_\x82\xaa\x1d\xedkT+7nI\xcd\x1cTC\xb7\xaa\xd0x`\x86#~\xf0\x808r\x06\xc05\x03T\xb2\xe5:)\xcb^G\x19K\xd64\x94\xe9\x83\x8a\xde\xbc\xa9\x13)p\xb3 \xcd\xe1\xf3r*\x82\x14\xfe\x8b\x06\x8bO{4\x0c\x19S\xf5\x83\xa9G\xc6V\xaa\xda\xea2\x13%\x0eI\xa3\x12 \xa2\xc0\xf6\xbf\xdb\x98\xa3\xdc\xaf6\x7f b'\xe1\x0d\xd5c\xb7U\xd5n\xb6\x85r\x86\xc3\x08\x16+20\x99\x91\xad\x0c.\xc1x\x81\x8c\xc8\xa4\x18 ]\x1c\x9d\x9c\xb1\x1c7\xa3\x9ez(\xf9AK\xbc=\xb5.d?\xcb[v\x18F\x15\x87\x1d\xc1Jf\x9c\xbc&UX\xec\xbaH\xef:7\x13[U\xfa\x9e\xe0\xe4\x05\xc9\x9e\x13\xbe\xbd= \xd1\x8c\x9f\x8bI\x98q\x04\x05i\xf5\x9c\xe6\xdcO\xc9\x8c\x9d\xdf\xef\xb6\xb3\x1c{XP\xa4\xbb\x1ec\xa0\x13\x89h\xed\xcd&C\xf2\xdd\x0b\xc9\x1f\x16\x02\xec\x03'Kr\xe6|\xff\xdd\x908/\x1e\xca\xcc\xef\x9d\xf3\xe6\xc1(J;/\x80\xb1\xfc\xde\x01`\xf5\x1b\xf1\xf4=\xdb+a_d\x97\xdc\xbf\xf9\xfeE\x96\xe8b\xc9\xf7/\x1e\xaaDK\x1d^\xd9\xda\xf5\x82\\\xaf\xc2(=\x00\x8eo\xfa\xf0\xe1\xd5\xd5\xd5\xf8jo\xcc\x93\xc5\xc3\xdd\x9d\x9d\x9d\x87\xe9zQ\xb4~\xbdhT5G\xa9x\xe7/\xceT\xf6\xe8\xf0\x85\x1f\xacU\xcb\xe0\xd7y\xf38\xa4 \xa3\n\xfc\xc5\x8a\xc6\n\x1a~!\xd0\x1e\x0f\xa7d\xb6\xdb\x1c\x01\xddi\x8f\x87\x8b\x84\xe7\xba\x9e\xe2\xd56\x1a\xe2 \xd9\x82E\xben\xc4<`\xa1\x9f\xb2L\xd5P\xbe\"%c\x9a\xd0\x95.(1\x8b*\xa6_\x90BY\x82vAM`\xeb\xdc\x11y\xb7\xb0\x90\"wDn\xcacy\xad\x8bdyT\xe5!l\x92\x1e&4\x13\x9a\x84\xe7\xcc9\xcf\xf0\x9c%\xb3\xdcog~#\x08\xa0,0\xad\xbb\xa7,w\xfa\xcc\xf1\x82\xc4\x0b\x81\xc5\xf5\xc2 \xfe@\xb3\xa5\xf8\xed\xb39\xb8n`a\x18\xc4)d/\xc4\x9f`E\xa5\xaf\x07\x08\x80\xa2\xfe\xd3\xe4?\x13\xea\x07,\x02-\xdd\x15M\xc1\x03D\xac\xaaR72\xf0\x93\x877\x0b^\xfc\xd4u\x88\xc244\xebHddJ'\xcd\xb8\xf4\x0d\xc1\xae\xa5\x060\x84;8/(\x1b\xfba6\x07\x0f>\xc4\x1b\x12*\x7f\x99\xc1xk^N:i\x88@\x9c6\\\x9e\"\xf3\xda)\xa2N?p!\xe4\xfcEpV\xd4\x02\x11T\xe8?\xe7/\xa5m\xb5\xf3\"\x0c\xa2\xcf\xe4\xe1\xf7\x0e\x99\x12\xe7\x85\xa3HP\xe7\xfb\x17\x0f\xcb\xdfN\xd9\x95`<\x0f\x12M}\xa9\xe4C\xd9e\xd4\xd3\xed]\x0f\x01T\xc8`Qwoe~q\xe1BO\xeeW\x1f\x9d\xb8\x82(\xe6\x83\x99\x80\xab\n%\xfb\xd0\x0e/\xa2>\xac$Nl\xde\xc1<\xa2S,\xd1p@\xa3\x19\xc9z$=-\x97\xa8\xcfI\x8eK7R5\x85x\x9c\xc1\x86\x02\xa6\n[\xfa\xa4\xce\xbe\xaa0\x83\x0dW>\xb1\xaa\xbe\x9e.\xe3\x0cN\x1e\xd7;+\xe3\x0c\xee=\xae\xc3\xaf\xf1\x15\xa5\xc2\x0c\xee\xd4;\xab\xc2\x0c\xee\xd4 \x91\x1b\xd5\xfc\xfa`\xaa0\x83\x0d\xbb\x8d\x0b)\xb5\xd9{6\x18B\xb8\xc4\x9d\xba\n\xa4\x8a7\xd8\x18\xbe\x13U\xf0\x11\x14\x9c\xf8\xeb\xebB\xa2`r\x0b\xa2\x85\x16{\xf7\xa8\x10\xf9;\xe4l\x19\xa4D\xd0\xf6\x82c%W4%:L,\xb9\xbc!\xff%\xce\xa9H\x9cS\xff5Fn6\xfed\x7f\xd3\x1f(Ka./\xde\xa1'\x83\xb4Z\xfd?36\xbe\xc8\xe8\xe2\\\x1a\xd7(s\xcfl\xac\x97\x85\x1e)\x99jY\x0c\x8a\x1fu&{O\x1dA\x1d\x88\n\x87\xf6\xc1?$\x0e\x81\x0btA\x8f\xa9\x91P\xaa;\x84\xcf \x9c\xda\x96\xb2\xe5\xc0\x8b\xe1\x1a\xc3\x91\x0f\xf6\x89]M\xb4uO6\xfc\xc9\x0eHu\x11\x9b\xd9\xb6\xfa\xce\xc0\xa3\xa4\x15B\x8a\x94\x9fL\x9cA\xa5\x81p\xcf^1\xd158\xf72W\x14\xddu\x86\xb0\xec\x07\xed.M>\xb6x\xdc\x90N\xb6\x133P\xfd\x15\xea!\x19\xf1\x88\xa8m\xa6\xd9\xf8b \xa1!\xda[\xe4\x05\xac\xf2\x07\x0f\xf4\xcfRN#h\xb6\xd7`\x99#a\xa6\xe2W\x87 \xd3\x91\x9b\x0dI\x00>\xb2\x16L\x06\x8e\x85\x88\xc7\x1f\x19\xf5o\xdc\x81v\xa6\xe5\xbe\xc4\xee\x0e\xa0QQ\x9aM \x12\xeb\x99\xa0\xb6v\x16\x97\x9a\xa1:3\xa6\x88\xdf\xe7\xafVKQd\xb6^6\\ \xcd\xc7q^\xc6\xc1\x05\xe7\x92\xa2\xcd\xca\xcfd\xbd\x85*Y\xb7\xa7}i\xbci|l5\x8ey*G\xf0g\xe9\xca\x02\xbe\xd8^\xcd\xa7F5\x97\xb7\xa9\xe6\x1f\x8dj\x16\xdd\xd5\xe8_b5\xbej\x1ca\x19\x8f\x8f.y\x02w\xd3\xe2\x7f\xed\xcc\xcbx|L#i\x0e\xe0x4\x8aCzc\x05)\xfc\xe1h\xc8L&4\x0b\xbc\xcc\xe5|\x1c+\x0f\x85\x8e\xaf\x12<\xcc\xab`\xc6\xe3\x93U\x9c\x05\xe0K\x90\xc9_\x08H\xe4%7q&\x81\xf4o\x0c\xccW >\x9a\x9d$p\xa3\x0e\x91\xfd\x9a\xd9o8\xf5\x99/\xfd\xd6:!\xbc@\xc8\x0f\x0b\xe0[\x96Q\xdf\x04^\xa9\x04\xbc\x80\x8a\x9f\x04\xb0)\x12\xe4\x08\x1c\x96\xe7\xa9\x18\xb0X\xfcG\xb2\xe5L\xe1\xd3$2\x81\x88\x80\xfc Z _$\xa0X\xe6\xc4\xeag\x13\xe8#\xcdX1s \xcd\x98m\xd6N\x19\x03\xf3\x0b'\x85\x1f8\x80lQ*\x7f! \x19\x0d\xa5\xcf\xc9T\xfeB@\xf24\x06I\x8f\x93\xca_M\x90\xb3`\xc5t\xb4$'\x0bV,\xc7B\x1ae<\xfe\x89\x87\xf9\xaa\xec\xdd\x1a^m\xfd\xfb\x99\x06\x99l\xfe\x95\xfce\xd0\x11\x18 \xf6{c\xff^\x8f\xb3\x84z\x9f{\xec\xfd\x1f\x1aeK_\xcb\x82\xe0~\xfdR\x1f\x98{\xf5\x8b\x1a\xb1\xf3\x199 \xea3\xd5\xcc\xc2W\xbe.\xfe\xc8)<\xf4ft\x81\x1du\xd2\xd3{\x00\xba\xfb\xd6 ?\xeap\xc6\xdd\xb5\xcb\xeaMW@\x05>\x06\xb9\xa9/\x86%\xfeA\xba\x1bU\x0e\xdc\xd4\x1e\x01\xb9\x8f\xfc\xcf\x06\x96k\xe0\xcb\x84\xd1\xcf\xcd,\xd9\xb0u\xe03nm6\xcd\xfd\x00\xcb%\xa6\x0c=+]a\xdb\xfbp>$\xaf\x06\xe4U]\x1e\x93\x01\xb1\xd7Vx\x1c\xe7\xe9\xd2E\x86 \x1b\x92W\xb3\xec\\t\xdcB7\xb7v\\j\xac\xdd\xef\x8c\x9cH4Y\xe0\xcb[\xceI\xb0Z|\xf3v\x0d\xc9\xb7\\Us\x9e\xac\xee\xb7\x0b\x1f\x19h\x88\x11'Q?Z\xbap\x9a_\xae\x02)\xb4\xd4\xbfn\xd7\x8d\xc0\x128E\xad \xe9*\xce\x1a\xd7\x8b]g4a\xf4~\xc7\xe1\xb5\n/>\x14\xad\xd3?\x99=$\x01\x82;\x7fj\xe0\xce\x1b\xa0\x9b\xe4\x89\xd0\x87p\xfa\x11\xe5\xfd\xe5%\x07&k\xb8\xa4\xe2\x94Fs\x12<\x1d\xae@\xb0\x0c\xb6\xba\x14\xc7\x1f\x96\xb5\xb4\xd4\x15\xac,\"\x90@\xc6\x14\xc5\xb2>\xb3\x9b\x05\x8b\xf0\xbc0\x88>\xe39\x82\x9e\xc1s\xd4\x1d\n\x96\xa5Ug\xb1<8\x0e\xf1\xac\xab\xcbN\xe1\xcd\xcf\xe84\x89Uf\x95\n\xc5\x89\xad%j5w}\xf3\xff\x80\xff\xbe\xe6WW,\xca\x83\x8c\xad\x90\xf2\xe4\xc7\x9ap\xedW\xd0\xa2\x99\xd1\xd1\xefG\xa3\xbf\x9d\xab\xff\xd3\x8b\xdf\xc6\xbf\x8d~\xf3\xcf\xff\xf2\xe7\x87U\xf0\xbf\"\xb7\x95\xff i\xb5\xd3\x06#B\xfe\x8cJ3\n\xedJ\x1d^\xd0\x199\x03\xf2\xfd\x01\xd9\xa9J0\x02[\xa4\x92\xbfA\xb0\x01\xe4{\xbf\xb4\xc5\xd8\x13|{\x15\x17u\x85\xc4\xf9Oy\x03\xfeW\xf03\xfb\xe5\x0bq\x7f\x05\xf3su\xcf!\x08\x98\xc7\nW\xfeU\xdf\xbd4\xdc\xbc\x16\x04NUFb\x86\x03\xc9\xe8\x824\\C\xea\xcc\x88\xaeX\x1aS\x8f}\xfa\xf8\x9aT\xe3ph\xb9\x94\xbee\xa8e\xc7 [\x07r\x9e\xb9e\x9dRZ[\x1a\xa4\x05,u%\xa99\x17\xb4\xbe\xa5\x9d*\xbcv\xee\xc6\x16\x08\xd5s\x18\x92\xd7Q\x90\x054\xd4t\xbb\xa0%\xe7C\x92\x0c\xc9\xd5@\xfa\xd8o\xfa\xf4\xfb\xda\xe6fP|\xfd\xa4\\\x98\xf0\x8d\xf71\x8b\xce\xe8B\x9a\xdd\x1cE\xfe\x87\xf2\xda*\x85\x0f\xb6,\xf6\xebZ]JA@\xd6\xa5[k\xe9\xa7h\xfe\xd6\xb5@)?\xce\x8a]yN\x0e\xc9\x89X\xdeR\xf3\xebD\xaet\xb2M\xae\xc5/\xb9\xfc\xadKC\x02\xf7@\xe0\x1b\x92\xaf]\x14O\xc7\xc9\xf2\xa68\x82\xe6c\x9ag\x1c\xc2\x88H\xd3\xba\xd6r\xc1x. M\xfe\xe3\x9fr\x14w4\xeb\xd3\xbfSwZ\xa9\" r\x99gY+-\xf7o\xd0\x8dNz\xb3\xa3Q\xff\xe8O\xbc(\x99J\xab\xbeN\x0f\xcc\xd0CCQ+\xd6\xc8\x03l\x83\xb3\xb0\xb8\xd2H\xe0J\x03?\xc7@\xa7\xa7~\x8f\x91t\xc6\x89\x06/\xee\xb3\xa4\xc5T\xcf\x0c)\x11\xd8\xcfP\x0d\xfa\x1ek\x03x\xa7\xfe\xa8N\xa1\x04\xe2\xa2\xd8\x0e\x04\xfdt8\x87\xd5\x8f\x03\xba$\x92\x96\x01\xcb.7P\x7f5&\xc6$6\xdc\xfd\xe3\xebP+\xa2\x08\xa2-\x80x\xf6r\x9a\xe5\xfc\xbe\xe2 \x94H\xdd@-\xa6\x8e\x06\x135\xa29\xc1\xdc\xeccOA'\x9b\xf4\xe4\x9fK,\x0c\xeb\xe8\x90\xbcm\x8e(\xc8\xd4\xc4\x87\xbcz\x9bk~ ]1\xd8\x10(\x01\x85.\xab\x94\xda'\xb9\xd4 \"\xdb\x07\xc4\x01\x15\xa5\xbc}\xc2\xfb\xc6\xcb0\xcc\xc2#\x9f%g\\\xf0\xf9\x81'\xdbA\x0eID\xa6\xfa\xf4\xa9\xd2\x1cf[\x1a\xad\x07\xfa\x03\xf4\x8eZ\x80^\xbfT\x15\x83\xech\xd0\xea\xd3\x1d;\xb5\xfb\xf9s_\x17\xe1Kp\xe2\x80\x93\x16\xb5\xad\xe6J1\xf7\x1c\x1f\x14\x0b\x85\x8f\xa5\xce#\xccRB\xca\x04divP=b\xc1\x7f\x98\x15\x1aYZUL\xd0\x1b\x86\xe2\x98M\x01R?T\xadu\xc0\x0df\x84p]\x83\x9d_)Q\n\x0c\xdc\x89\x1b\xb4\xd1\xc5f \xda\x86\xd3\x12\xbd\xef\xa5\xfcQ\x13\x8aT\xc5[\x18\xff7\x0f\"\xd7qng\xa7O\xca\xa5\xfc\xb3I\xa3 \xce\xf37\x15\x02,\x19{K\x9a\x1ce\xee\x8e\xd8\xbb\x90\xbcM\x1225\xe2^\x10\xeb\xca\xab\xd1\xb7\xbd\xa5\xa6Z\x89\xed~\x97X>\x86\xd3T\x94\x17\x08\xe2\x7f\xc6bs\xa4\x83\x89\xc0\xe8 \x84\x86\x06\x0c\xd8{\x05Z\x1bY\x9c\xd5i\xfbB\x94\xec\xca\xces\x12\x92\x17$\xd5\xb6\x94$\xdc\xde\x1e\xe8fI\x0e6\x19\x92t\x16\x9ew\x912\x8d\xe8\x14\x1e\x0b\x8c\xf0\x14\x9ba1\x8c6i\x0e\x0d\x06e\xdc\xceHv\xb0h\x81\x9b\xc1\xc9\xdf\x8czR7\xe8\xab\x16\xbb\xc5\x16\x00\x19=\xbe\x8c\x82o+\xd7\xefb\x8c\xb8M\xdc\xcb\x15 \x82f\xda\x96%\xb9\x17J\x9a\xdb\xa4\xb3\xbaMh\xe6\x9d\xda\xd4)\xba\xe56\xf1\xacn\x13\x9ay\xa76\xf5\xe0\x03\xb9M\xec\xaa[\x85f\"$\xb3\x9d\x01\x7fW\x14j\x13\xaapE@7`\n,\xa3 \xc4V\x19v\x8b\xf8\xfa-\xde\x95\xda\xd1\x15M\x8c!\xb9\xc6\x83\xe3\xde\x95\x03\xec1\x1f\x97X\x83\xee\xf0\xc9\xcee\xd9\xc1t\xfe\xd4\x8f\xe9\xac\x9f\xfc\xc8\x0co\x80\xade\x8cI\x0b\xcf\x98 >\x00\xf4\x03:\xf3\x08\xc3(Y~4Y\x1f\x7fl\x96 \xe7\x91Yq\x85+\xeb#YN\xed\xecZ;\x1f\x05\xfd\x0cD?\xd3\x01I\xeb\xed\x0e\xa4\xec\x1fX%pU\xf2\xc7\xd7\xc1,8\x07B\xbd\x83\x9d\xb33\x8f\xedW\x8e\x92Z@\xb8`r\x08\x03G L\xad\xdc\xe6\x89`\xcc*\x0c\x1fka\xf8f\xd8A\xecB\x11\xd1\xed9\x90\x81q\xc5dfn\xaa\xd1\xc4\x83M\xd6x\xebZ\x12\xe0\x10\x98\xa6\x87Pb.\xa6\xb0}\xf1\x0dI\xdc\xb5\xa7Hek\xc4\x03\xb2\x15#{\xe3\xcb\x172\x87\xb1\xc0\xf3n\xb5o\xaa_\x9e\x0f\xd0\xca\x1f< \xb1\xa8OL\xc1\\\xfc\xb0\xecR\x91\xd7!\x81\x90\xfbM\x14E\"\xfb\xe9\xa7\xa0\xe0Q\xe9\x94\x98\x1aC85\x07|;\x95k\xa3\xdc\xaa=j\xaf\xc9n\x06\xf6\x9d\x9c\xb2\xacm\x1b\xb7\xdf\x8d\x17\xdf\xdb`\xa3w\xa3`\xdf\xa6|^\x7f\xca\xddrX\xedI\xd1K_u\x81L\xed\xd8\xc5\xdf0\x10k3\x05\x84U\xd4l\x80\x12\xd8\x15\xe3\x98c'\xb2\xf5\xfc\xbd5\xd7]\xb0\xb6\xac\xc2\xda\xb2~\xac\xed\xdd\x99c\nZz-6|\xd6L\xc5\xd1\xe3\xd5\xe6m\x02\x05\xd0\x8f\xbfU\xb5\xa9\xc1\xc6\xf3\x92\x8d/G\x0b/\x16vq\xffx1\xaf\xf25\x03\xbd[\xbc\x07\xcf+\x9f1\xe0\x11\x1aKg\xa5\x05q\xa4B]e\x06\xff\xabIr\x89\xb8#uF{\xa2\xc8\x16 _\x03\xf8\x8c]gJ\xf8\xe8V,>\x03PF(\xe4\x16\xd6\"d\x9b\x04\x03\xe3\x98\xcc\xc9!\xa1P.\xaf\x95SW\x92\x8e\x14\xf2\x1aE\xc2\x1a`\xd1\x81\x10\x0bg]\xdbL\x8a\xffy\x07\x0e\x85\x8b]\x84\xed\x1d%F\xab\x1b\xd5 u\xe6\x91]\x95\x10\xabyC\x9e\xfd\xff\xe9\xe2\x19\x8f\xd6\xf9\x95c\x87[\x01\xd8\x0f\x07iV\xdezvT<\\\xed<'\x11yA\xb2B\xfa\x15mo\x0fH6\x8b\xce\x95\x0e\x87\xcd\xf2\x9c\xf4a\xe7\xda\xf8\xd9\xde<\xe6\xf58\xcdx|\x96P\xefs\x10-\xbaN\xc7\xce6\x81\xc3\x82\xb6&-\x19\xf5\xdboo\xb9\x7f\xd3\xd2\xde\xc4u\x9e6\x1f\xe93\\\xf6\xd9i*C\xea\xa7\x8f&\x8bA6\xe0\x07\xa2\xf4h|\xc7\x03\xf1\xe9\xb3\xba\xcb2\x0e\x86\x87\xa3U:\xea\xf4\xdc]_\xeaj\xeb&n\xe1e\xdd\xe5C\xe2\xac\xd2\x913\xa8\xe3\xda;\xb5\xfb\xe1\xc8\x1d\x0f\x1e.n\xd9\xbe\xb2u\xc9\xb0\x1b\x85kW\xe0\xe3\x8c\x7f\x12\x14$\xe2\x02\xfc\xeb\xbdv\xceF\xa5(\xaa!\x19\x07\xe9\xa7(\xc8B\x96\xa6\xef\xc0\x7f\xd9\xa0k\x1cZ]\x19iQ\x02h@9\x97\x9c\x87\x8cV\\\x17\xcb\x0c\xa5\xc0_z\xe0\xaa\xed\x04\xady\x11\xa4\xef\xe8;7\xab\xa1\x07\xbd2DU \xe80\x9c(s\xc4?\xe5\x83\x07\x84K/\x922\xd2\x05\x99\x82\x08\xbc\x11!\x80HG\xe3`\x96\x99\x04+\xd0\xcf\xca\xc4y\x13_7N\xf7;N\xca\xfe\x0e6)\x0f\xff~\xb7\x8d2\xa8\xec\x94\x11l\x95\xfbl\xf7Cwv4\xfa\xdb\xf9=m\x16g\xf4\xe7\x893\xb08\xc3\xbfCk\xfb\xb5H\xcb\x0b\xfe\xf8\x8a.\xae\xa2 z\xe6\x17\xdb\xb8\xb6\xd8\"y\xf9\x90\xcd\"pq-M\x89\xa5\x14>\x82\xd54\x8b\xec~\x05\xc8m;lpg\x8fw:\xf7\xafej\xbes\xbe#\xdb\xb0\x88\xc8\xb6x\xb9\xe7\x86M\xcc\x86i\x92\xa9\xda\x10q\x08\x87\xecL\xd9\xfcb\xa2l\x8e\xcdE\x97A7\x01?\xa9\xea\xa6\x1b\xdc>\xa4 !(|\xa7B\xda\xff\x07\xf7\xe0[\x13\x84\x9ft\x931\xbb\xce\x12\xeae\xbat\xd9\x1e+s\x8e\xcf\xc2\xbd\x84~\xd9}2\xc0\xec\xe09z\xe8h\x9e\xc1\xb2\xcc\xa3\x19\xabn\xc0s\xcc*=\x9a9?\xb3\xcb\xcfA\x06\xae\xff\x80\x1c\xb9*\xde3\xc8\x7f\xcb\x7f/3W\xf2E\xe6\xac\xd22\xe3\xedi\x99\xfe\xbeL\xe6\x90\xda\xf8jm \x12\xe3`hN3\x8d\x82\x15\xb8\xf8\x02OM\xdcu\x8et\x823$\xe5\xcbI\xe4c|KQ:\xc8\x98\xf4\x14\xd6R\xc7k\x0d\xd3Z\x93\n\xf5g\xad\x05\x9cqa5d\x89\xa0?\xcd\xae\x9c\x15)\xa2\x86\xf2\x0d:S]\x81My\x02\xe6v\xde\\\x0d\xa6k{q\x00\xe6\xfd\x18\xf6\xca\xa0\x8a}\x01Q\x1b\xae\x82\xc8\xe7W\x80\x04\xa5\xa8\x8d\x04csf\xca\x97!i\x02\x14\x83\xdf\x0e\x06#[\xbe\x0e\xaac\x82\xb4\xa5\xa8\xa22\xb4\xc6[o\x9f\xd9\x82\xc6\xa13v^P.\xe2\xe5y\x03d+0a\x90h(\xe2\xe4 \x1aE\x0d\x113\xce)\xa2\\b$5\\D\x91\xbc\xd2.P`\x88\xce\xd1\x8d_qIJ\xee\x8e\x946s\xfc\xdct\xc1,%_\xbb\x93\xba\x0f\xe3\x1c\x97:J\xc7\xcf\x8f\xf6\x8cCE\xbb#~\x86b\xc7\xb0\xdb\xbd\x19h\x13 zY\xc6@5\xeb\xf5\xac\x07\xaa\xe3-\x99\xf7\xf9\x92_\xebHU:,\x1c\xb8\x84\xe7\x95\xd4\xc3R;d\x0c\xc5\x98oj\x8c\x8c!R\x9b\x05\x1d6\xa3)\x98\xaa|\x1b\x88\x95\xe8x\xa1$ nf\x11\xed$\x1a\xecX6\xb2A\x9a\x93\xb2\xff\x98\xcf\x1a\xf1\xc8\xb0\x9aR\xe8f\xb9f\x850\xa8m\x10\x10(\xba\x15\x80^k\x80F\xfeWX\xddx\xe3Tx\x7f\xd5\xbd\xf6o(\xd8\x9fd\xd8\xc16H\x15\x99P\xcfg\xa4\xccFX\xed\x9e*\x90*\xf4P!^\x91\xa7\xdb\xa5\xabJ\xc8!h\xe8[\xaaR\xfd\xc0++\xddc\xd6K\xeb\x9c\xe6\xd0\xb5\x9e6\xa6\xd9\xff\x06\xeb.\x1b\x9b#\xd9\\O\xac\xa7\x8b\x8dj\x9f\xcb1\xca\x8a-uh\xfc\x9e\x96\xdfm\x1d%sR\xcc:aN\xa1F\xf9kJl\xb7\xffU\x8f\x1f]s\xd1M\xcc\x92\xc6m'\xa6\x11\xde.\x9b\x95\xfb\x9d]3/\xcf\xd8{\xf5q7k\xb7mK\xc74\xa5\xb1\x1bv\x1aI\xae\x0b\x85\xf6\x88\xaeZ,\xe4Azh`Ce\xfbk\xe8k\xa2\x14\xbf\xf9\x14G\xa68Xr\xfb=\xd1\x10\xee0\x82\xe7\xc43\xc2\xf7=\x1f@j%\xa9\xdf\xd7\xe6P\xec\x1f9KnNA\xf7\x96'Ga\xe8\xca\x9b\xdb\x99\xe8\xf5\x81\xa0i\xff\xcf\xe9\xfbwc)i\x08\xe67Re\x01D\xd8\xdf\x9d\x83\xda\xcc\x81\xea\xfd\xf9w\x03\xe9\x02`\xe79\x89\xc9\x8b\"\xf4\xd9s\x12oow\x0d\x01Q#\xee\x83\xd6Y\xdc!\xb3$j\xdc\xfdR'\xc3\x1f\xcfy\xb2\x82\x19\x08\xe0g\x9f/\x12\xf5\xd5\xa5\x1ew=\xdeb\xec\xe1\xd2\xb5\x1e;\xcd\xf6,\x95c\xadg\xe0\xe4\xbb\\d\xcbn\xc9*.\xfa\xec\xce\xb5\xe7\xa0\x01\xa8\xf4\xf3u|\x19D>\x1a\x9eO<\x1e\x8f\xb2\x84Ko\xb2\x1e\xa6N\xd0\xaaM]\xa1<\xba\xf0\xc0\xda\xea@\xbfe\xf3Kd\xab\x10`sn\xca\xe3\xe9\xc1\x03\x12\xa0\xdaq\xf8\x06\x13\xdc\xb4\xa3\xaa\x85;\x1b\x88}\x8b\xcc\xbe&\x17\xad\xd5\xe0\xb8\xb1N\x9b4+\xaeZ\x84\xe1x|N\\)'\xe4pG\xa1M\xde\x00{\x0f\xf4\x0f\xc1\x8d\xeeX\xc4\xf2\xc5MD\x11\xd2\xad\xc4Y]\xb8\x1aD\xec4I\xe5]\xa1\xab\xbe6$\x93\x1d\x90\x18\xb5\xdc\xc9\xb8\\\xeai)\x8f1RcK\xb7VbH0\xa9,\xdb/\x91\x0c\xbe\x80e'\xca\xe2\x1a\x1c\xaf\x039\x8b!\xd6\xa3\x16\xf2*x\x03_W\xcfr\xd9\xd4JJ\xf1\xc9&\xa4[\x03E\x01\xb5f\xd9\x81y\xaec\x0d8.\xf3\xca\x8au\xe2\x01\xd9\xda\xaaC\xb6\x926u/\xe8\xdfl\x7f\xda\xb6Fs*\ne\xb1\xd6\x05\xa8\xf4\xab\xa4\xd7\xd66\xed\x1c\xe9\x05\xb6\xc5d\xa5KA\x08\x02\xbd\xb7~\x02\x9a\x06\x1a\x85\xdc\xa3\xed*I+\x1ee\xcbv=\xaa\xae\xaf]1f\xd3n#\x10a\xb5\xdc2C\xe3-\xea\xa0i\xf5\xd32\xaa\xaa\x82>\xdf\x8ej\x0c\xa2~\x9a\xc7\\\xc1\xb0[(3eb*\xdd\x11H \xa99?,\xbbdl\xa2zZ_(\xfc3u\x05\xcd\xe2\xcd\"M\x9dC\xea\xad\x04\x17f5\xce\xe9\xc9\xf1\xc7\x93\xb3\x8b\x97\xef/\xde\xbd?\xbb\xf8ptzzq\xf6\xe3\xeb\xd3\x8b\xf7\x1f/~}\xff\xe9\xe2\xe7\xd7o\xde\\\xfcpr\xf1\xea\xf5\xc7\x93\x97\xce\xed\xbfi\x08K\xeaR\x11\x15o\xb9\x1e\x0d+\xc0\x85\x1f\x94\xe0q\xa0\xf2\xf2^\x0f\x8e\xdf\"\xb3\x90V\xa4\xf6{\x90\xfa\x15\x9c\xe6\xe2\xc7Z\xad\xae\x88K\xc7\x86\x1d\xc8\xaf\x90[\x10\xe9\x9f\xacq\xd3&\xc5 \xe5)Z\xa6\x1f\x92\x8cl\x8b\x92SiN\x01\xd2\xc8\xad\x9d\xba\x9c}0$Y\xb9:*#\x1c\xe2\xee\xd9\xb8\xe9K\xc2\xd0\xa5\x96\x94\x8b2\xf6\xab\x17,d3\x92!\x01\xc4\x03\xea\xd5\xd7\x99[\xbf\xa8 V\xe4\x10\x0c[\xbc\x80\x98=\xb7X@\x08\x90\xc0PDo2\xca\xdbb\xf7OI\xea\x96\xfa\xef\x03\xf9\xd1\xad\xc9\xb0\x16\xe0\xb7]7\xa9\xe0\xc6\x0c{\xf4\xa4b\x8fn-J4\xf7 .\x0ef\xe1\xb9\xe4~\xfa0>rEv\xb36\x80\xda[\xa1,\x8a\x1b\xa5Y\x90l\x9dl\xda\xed\xe5\"r\xbd\x08\xa6$\xefX\x04\xdf\x96\xe8\xb1s\x1c\x06!\x19X\xe8\x9f\x8a\x037\xd7\x01xg\xa8K\xb6\xd2n\xb7\x14\x87&\x16\xf9e9\x9cm\"\xbf2l[\x8b\x14\x12\xa1\xeaJ\x99oU$\xa7\xbf\xaaN\xcc\xe2\xd5\x0ei\xe1\xbf\xc0\xe7\xa3\xb9\xf7\xec\x02\\\xf5-\xaft5\xcd+\xd7r\xa4\xcf!-U\xee\xeez`nt\xbb\xd0\xbcE\xa0\xf8A\x9aoz\x8b\x90\xf6\xbaE\x08;n\x11\xf4/\xfc\xb8\xdap\xb9j\x81E\xc9\xff\xd8\xad\x9e\x12\xd7y6q \x82\xfe\x1fmRp%\xaf\xbe\x1f\xe1w\xb9\x13\x1c\x159nC\xa1\xf7\xbf\x8b\x9c:\xe8\xbe\x1f\xb1\x9c\xf8\xa6fT+\xc5@\x1b\xe2p\xbb\x187$\x07\x9d\x0ed*\x96QnE\xd7V\xac\x85]\xb1\x16\xaa'n(\xc5 \xa1:F\xc9\x8b\x032\xd1\xf2\xb9=G\xf9~ g;\xe7\x03\xe9\xdc\x16\xe644\xb8r\xa9\xc8K5\xd7\x00\xc2\x9b\xe6\xfc4R\xfa\x1efUq\xbc\x94S\xfc_&w\x0f6\x95\xbb\xab-\x9eK\xc9hZ8m\xec\x10Rv\x8c\xfa\xbfD\xfcH7\x92\xfc%\xf5]\xd7E\x92v\x10\xe3\x92\x9e\xc2\x07Z\xda(F%%\xe2\x96\xfc5\xafH\x9d\x1ar\xab\xa8.\xb7B\xa4o\xcd\x15o\x17\x995+\xac\xc9\xc0\xda\xe6\xf1\xb6D\xdbf3#E\xc9Yi\xc1\x89P2\xea\x82\xdb\x8e\xee\xa1\xafY)\xc5\xd8\x90\xfd\xff\x96\x94\xc5\xee.f\xcf\xe4\n\xf8]\x19\xe4X\xda\xf2l\xaeg\xa3A\x9f*v\xc3\xa85\xfd\x90\xf0\xa1\x9dQ\x04Y\xbfv\x90\xd6\xd6\xec\x14\x1cGgC8;i\xdd`\x99\x0dE-\xc5\xe7\xa4\x06\xa9\xbd\x86\xf28B\x17V\xc7\xaa\xe0bU\xd0\x86\x05q\x04\x12T\xd8\x0fQ}M\xf0\"\x9a\xf6d\xdffg\xa5\x95\xbeg\xaer+h_DR\x1d\xca9;\xf9\xe5\xec\xe2\xf8\xfd\xbb\xb3\x93wg\x16G\xacD]1\xc3\xd0X\xa2 \x8bg\x0e\x07\xb8\xcf\xae\xbb\xbcR\xce\xd5M}\x17\\\xc6{UG\xe7\x19K\xca\xfaP\xb8\xaf\x03\xcc\x1d\xa4m14\xdd\xd8\xfe\x8f_\x07\xa7'g\x17o\x8f>\xfe\xf5\xd3\x87\xff\xb7\nH\xdeq\x1c\xdbVCf\xf8\x16\xbc\x1dIp\xdb/\xd7\xcf\xc9\xea\"\xb4\x8f\x1aG\x14\xb5\xcd\x87v\x9c\x809r6W\x89\x19Wz0\xa5\x92\xa0\xb0\x9f\xcf\xe2\x1c\x84\xab\x97V\xe7wp\x0c\x0d\x0b\x973\xed'\x1f(6\xb5\x83\xf8\xdd \xcbn\x90\xb5\xf5\xe6B?\xb0\xe1=\xa9*\xddZ\x15\x0cC}\xcb{\x9d\xe4\x00Qc\xb3\"\xeav3\x99y=\xe8\x02\xf1,\x04E8\xf3z\xa8oIU\xad\x059$\xee\x1c\xa4\xb9su\xe4\x97\xc1cVC\xb2\x1eB$\x9e\xc1@\x86\xe3yK\xb3\xe5xE\xaf\xdd\x95y\xc0\x0b\x80!Y\xd5\xce\xfc\x18|\xf1\xad\x80\xb1h/\xabB:\x95M\xb8(\x11\xe8\x91\x04s\x17CBg\xcbs\xdd\xa2L\xd9B-\xb7\xb7\x07C\x12\x0b\xf2b\xad\xf9|\xed\x81\xc7E\x9c\x7f\x98\x8f]\x7f\xab\x9c`>h\x1a\x03zR\xbaUk\xb2\x89\xf5]\x980\xc2g\xde\xf9\xa0\xcdm>\xf8?\xd2\xe8}^\xfa\x0fi\xd2\xb5\xcdK\x17\x82\xf6\x00\xc3\x7f\x91\x95\\o=\x087<\x05\x9b\xe7^f\xfah\xb5\x84\x9c\xec\xd3\x81bA\xf6vLF\n7\x05\xe6\x92|!\x80\xeb\x96y\x1d\xa8\x98\x94\xf4g\xfb\x9eU'\xef\xdb\xf7?\x9d\\\x9c\xfc\xf2\xfa\xf4\xec\xf5\xbb\xffl9|\x89y\x00w#?\xe3\x1c\xae\xf4\xa9\xbb\x94{\xcd\xae\x11\xaf\xac\xc7E\n\xb1L\xed}\xcd\xeb\xc7\x13\xd8\xc3\xef\xde\xbf<\xe9;\xab\xdd\xe3\x7f\xd7\xfd\xdbB\xa2\x93\xfeT5\xe9IY\x93\x8em\xdbkV\x9bg\xf8-$a\x85\xc5w\x95\xb4H\xd4\xa9b\xe0\x05Qe\xd4\xbbm\xe6Q\xd5s\xcd\xe9\x0b<\xf8\xb0\x19b\x8f\xe1w\xf0\xc4\xde\xfcH\xbaBl\xb6\xf4O\xf8\x9bEt\xedA\xea\xadD\xd7\xa5\x9b'\xd4\xd6W\xb9\x17\xa8\xfb\xe1 \x86\xa7\xae\xfa-8)\xa5\xdb\xbb\xbb{ \x97\xde\xdd\xdd\xad\x0b\xb4\x89\xa1x\xb6_\x1b\xb4\xdau91\x85\xccy\xc7\x81\xbfV\xb6\x1b\x86\x17&\xd60Z$\xe6} \xa8\x89H\xa1\xb7\xb4\xb3\xe7\x82^i*\x89U\xc7FV\xbfu\xa0*x\x0fN \x11\x15\x0f\x81=.N\xde\xfd4%N\x9cp?\x87^ \xe8\xe4\xe7\x93\x1f>\x1c\x1d\xff\xf5\xe2\xf5\xbb7\xaf\xdf\x9d\\\x9c\x9e\xfd\xfa\xe6\xe4tJ\xb6&\xd5F\xd4FJ\x8b\x0b\x9b\xdfE\xa4\xd8\x1b\x13M\xfa\x8e\x8a\x0dL\xb5\x80v\xb9j\xdd0\\?Z\xbc.>\x9d\xcb@\x01\x1b\x88\xf1\xda\xba@\xa1\xc2\x14\xa2U{\xe0k\xd7\xde#\xf0\xe9\xd1y#+\xf8\x9c\x0e\x9e/n\xf1\xbd\xa4\x1f\xd4\xba6\xee\xcd\xf3 \x06\x15\xd8%\xb8\xd8b\xb3\xf8\x1c\xb8\x0d\xbf~G\xda\x8f\x1d\\\x83\xf5n_k\x1e\xbd9@?(p\x97C\xb2\x1e\x0cH2\xae\x07Sq}`\xc3\xf2!\xf8b\xca\xa4\x1f\xa2\x96\xb1\xd3O\x0f\xbfJ\xfa\x91*JTV\x9dT\xa8W\x1f\xdc.\xd4\xbd\xa2\x8a6mM\xfa\xc4(#\x06w\xcd\xdd5l\xfa~\xa5TOW\xfd\xa0\xc57\x16\xd0\xfaZKW\xf5\xa5\xdb\xaf\xbeH\x8a\xcf;\x98Z\xd2\xca\xd8\xb6\xe7\x96k\x9c\x0d\xc8V\xc3\xc7[\x0cV&\x80\xf8\x90\x05.\xcd\xf5\xc1[[|.\x98\xf5\x8d\xa7\x0em\xd7]Y\xdc\x96\x13\xbdj(o\xf1vG\x88\xc5\xe3]\xd4\xb9\xa55r\xc4O\"\xf3A\xc6\x84\xa3\xb4\x8c~\x90Q\xa9\xa4\xd4\xd0\xb1I5\x94\x17|_\x07\xca\xb5\x8c8\xac\x1f?V\x13p+z\xa2\xf3*\xdc\xa2d\xd7PV\xa7\x96\x8bs\xa5dW\xf7\x89\x99*U\xbd\xba#\x80P\xb5\xa5\x9e\xeeU|h\xee=y\\'P\xe68\xe5\x13\xcb\xfa\x1a>9}Y\xdf\xbe\xa2w&\xf5\xea\x96\xaa;\xf5v\xacK%\xfbzO\x05Z\xaa9\xce\x14Xd\x17\xbb\xd2\x07\xc7T\x7f`\xb7\xf2\x97\xe8\xca/\x15H\xcb\xe5rS:\x7fU\xd1 M\xdf\x15\x18u\xc8\xc8\x01 \xc5\xbe\x96:\x89xX\xe8\xc6\x02\x85\xbb\x0b\xe9\x94Z\xaa\xf7(\x12^*\x97Wbf\xd5c\x0d(*B\xf5\xa9\xa2\xb5_]\x82\x17\xcd\xb1\xbbB\xe9$\x8fGi\x96\xe4^\xaf\xebALM\xcb\x88\xf3eq\xf7\xeb\x89\xad\x9c\x06\x19;\xbb\x89YA\xf4\xcb\xbc@i\xc6\xd4\x92\x8d\xd0\x8f\xcd\x8c\xca%l-_\x0e\xdb\x0f4\xf3\x96\xd2\xffZ-?f\x91\x1fD\x8b\xb2\xedH&h\xd6\x80\x03#<\xff\xa3\xf4\xb9\xa5\x15\xeb\xb6&\xb5\xfcW<\xf1\x98\xbc-\xa8dk\xc1\x9f\x18!d(\n\xb9\xa0\xc6|\xb5|\xb5>j\xa9\x80,\xdf'r\xb1\x16C\x9e)\xafOJi \xef\xc71\x0d\xc3K\xea}N\xeb\x1f\xa2ah4\xe3\xe7 \x0c?I\xa4\x0c\xddi\xac\x0c\xabZD[\xe46\xab%z\xbd\xb3\x1c\xed\xe9\xc5\xf66\xbaV\xb2\xd6\x85b'\xdd\xe9\xd0\xb8\xf3\xe9\xaf\x83G\x14\xe6U\xe3\xaa\x14}\n+\x11{!\xcf\xf61\x1ce\xe8g\x0eJ\x82\x0b\x96\xc9\xe5%\xbdl\xb5|\xc6o\xf5\xbeS\x7f\x14v\xd9r\xb7X\x89\n\xc1\xfa\xd8x\x1f\x07)\x04\xbe*f\xb7\xe5lv\xbd\x96\xb6-\xcb!\xd08\xa8B\x08I\xca\xd0F\x13\xfafD\x86%1LV\x97\x1ay\x1f\xf6\xf2eF6\xe8\xf8\x87\x9d\xe9\xb3tl\xb2\xeb\xb6N\x05\xd2\xb8!\x91\x1e\x06b\x1eD\x99-\xa0\x07\xee\xaa^?E\xd4Vl\xa5V\x9b\x83#f\xed\xda>o=\x0e\xc6 \x97\xa4\x91K\x07u\x1c\x86\xee=7o\xd9\xf9\xa0\x96]\xadC#\xa7\n\xdd\xf0\xc1(Y/`2\ne\xaa\xc2\xc2\x83\x016\xbeV\xba\xb2\xc9bo\xed\x808\xa2\xd2\xeb;\x0fu\xdbZ\x0dn\xb9\x1ao\xb5\xf8\x8aq\xd6\xe3f\xa7IZ4_\x83\x12\x83 \x8a\xb8@|.\x96\xe1v,\x87\xa0\xc7\n\x08\xf4\xa4\x07\xe5<\x0f\x86\x15\xc1~\xa1\xaan\xce4\x90\x0543&\xdc\xb5 \x03\xd7\xca\xe5\xbd'\x90\xb78\xecQ\xcf\x18\xa4\xa1flp0H0,b\x08\xe6\xcd\x81\x07a|\x95|\x02i8\xdc\"x\xe3\x93\xb7\x1f\xce~m\xbf>\xb2,hI\x85\xcc\x11\x15\xdeD/\x92*\x81\xbe\x0cB\xdf\xa0\xd2\xb1(\xde\xc8z\xec\x1f\xd2\x8a\x187\xb3\x15\xb1\x9f\xa5\x03\xbd>\xbfi\xf4+\xa2E\xf0\x96ov\\\x02d\x8dmc\x97\xdcII\xbf\x87q\x8c\x0f\x1e\x90\xad\xac\x8d\xa7\xecs\x87\xd0\xc1\x92\xee\x0c\xdb\xef4\xf4S\xb9\xb8, \xbam\xe2\xa0mw\x07\x1d\x01\x05\x08\xe8w\x07\xd1\x9a\x7ff\xff\x99\xd3\xc4g\xbe\xe6\xa9A\x05\x00\xadU\x9a\x93e-!E )\xac\xd6\xf1*\xda\x82a\xd9\xb6\x08\xe8i51\xbf\x05\x1c\xd3W\xba\xa5\xd8\xa2&\xe1\xf9\xf6\x14r%\xdb&\xe3h\x95\x03\xe1\x92\x16\\\xb8e\x93\xb4\x84:p\x99\x8dE\xec\xb3\xe5/V4\xfd\xac\x10U\x9f\xed\xben3\xa7\x04\x1eVuM\xcc\xa3%\xec\x07\xf8\xdb-C \xc4v\xfc\x8e\xf9\xc1\xd6O5~N6 \xd1,9o\x0d`c\xf5\x14\x87\x8dKU\xd2\xb2\xf9\xd0\x18\xe3j=\xf2\xf4\x99\xb3Q\x83\x8c\x93\xa5w\xabL=\xfb\x8d\xa4AM\xca\xc6>\xa5\x81t3[6\x8f\xe8\xe8\x0c\x8d\x1c\x19\xa8\xa1\x0d\xa1VC\xf0 \\\xb5\xf2rpl\xac\xb6\x82\xa5~\xba9K=\x90\x1f\xc2j\xd5B\x8f\xfd\xcdj\x15g\xbe\x1d\x89\x96.w\xbf\x02\xdf\xdb{\x0f\x13\x83\x1d\xeb\xb5n\x80`7;\xd4_\xab\x0f\xf3\x81\xd1H\xaa_X\xf7\xaf~]Q\xbd\xef{\xe5\xceM\xa1\x9e\xe8T\x1b9\xd9\x86\x84\x95\xdeCyP\x011\xc7@I\xaa\x9f\xaa\xa4b\x1f\xe4\xd9\xf0z\xfe\x8e\x89\x0dJ\x93\x9b>\xfb\xb2P\x8e\xc1\xdayH\xe6ME\x80\xcc\xb0\x14\xab\xc2\x0f\xcb\xfb\x11M\xc7\x97\xce\xa8\x0f\xac\xa7\xe1\x97/\xf6\x83\xee\x10\x1f\xa3\xf2;\xd5\xd9jO\xad\\;\x99M\x94 \xb6\x1b\x95>SPk z\x0f\xd0a\xfdI{\xe2\xb8\xc8\xf4\x97 0\xc2\xde\xa6\xa2\xbb\x16\x16i\x08\xbc\xcc\xd6\xa4m1\x17D\xc3\x81\x0c\xd2\x9b\x83\x11\xb8N\x9dJ\xd7[jF\xab\xf7\x04\xc1@\xd5o\xd3\xbeX+\xc7&\x9dW\x11\x10\xe2\xd8\xe6\x1d\x88\xc0\xd5#X\xe5\x03\xeeW\x9f\x1cJ\x17\x98\xb4Ji~\x94\xeb\x1b\xbc\xa6td\xbb\x9e=\xa6\xd9Z\x07\xfe7\xfb]\xe1r\xa1\xb0\xbdGq\x8bw(\xeb\xf6\x80\xf8h\xe3t\xc9\xf3\xb0$K\x8b\xad\x13\xc3\xc4\xa0\xb9\xa25\xf3\xa1\x8c\x82\xacg\xb5\"\n?8 \xd2\x8c\x03\xda\xe5\xbb\xe1\x90x\xb0\xac\xb6|\xf1E\xd1\xa3!\x99\x03\x9f\xde\xbe{\x86$&\x87\x9a7\xeb$e\x01\x91\xd5\xdb\x1aI\x9d\x19\xb8(ab\x17\x81\x95 \xb6\xd5\xc57\x9b\xb4m0$\xb4\x10\xea{\xe2E\xcb$\xe6Cc\xe5\x1e`\xa6=-$\x909\xbb=\xd5O*|Y\x0f)My,5\xd0f\x1fb \xe1,\xect\x93\xb5\x08\xc6m \xcc\xccVii\x11\xb5]dHGo\x0f\x1e\x90\x89r\xa4+\x1d\xc6\x14\x85\x93\xd9\x8e\x85p6\x88\xb1\x03E\xb2\x08\xfc#\n\x88sF~T\xb9\x84\x13\x19\x132%;\xcfI^\xf1\xee\x96\xb7\xfb\xc5^\x1bf\xd9v\xb2\x89\xbbtH\x1c=\xe5\xa6'\xc2\x94\x1c\x92T\xea\xd8H\x8dE\xb9\x1c\xa6$\xbd\x05e\x85\xf8\xbf\xc1\x96#\xbakn\xa1y\xad\xaf\x87\x87\xda\x13A\xdfe*\xb0\xf1\x0f2d\x9b\x1bV\xee?d[,8\xd3#\xda\xe3O\xa8%\x809\xbc(\xf4\x02\xbe:\n\x91\xe0\x90\x845\x19\x81D \xe07\x0b\xc9(\xee\x03p\xaa\xc0\xd4\xe6\xa8\xa0\x8a\xb0@\x15\xd9P\xb7E\xe2\x95\xd0@\x15I\x15\xef}\xac\xcb\x06\\\x18\xe8\xa1\xec#o\xbf2\xc2\x86L\nO\xc2B\xe9Ut\xbf\x1fv\xb24\xe8V\x18\xaa).iEU\xd1m\xc8g\xbb,\xb7\x1d\xc5\xd9\xa4\xd7s\xe2.]\x10\x95\x0f0\xf2URb\xacMP\x9a\xd9\xa4\xc8\x1d\xca\xac\x1a5U%\xa16{Y\xf1 r\xaah\x88\xbb@\xd7OS\x92\x8d\xb9\xdb\xd6Ou\x1a\xbb\xa5\xd9d\x03\x896\xef'\xd1&-\xb2\xba\xd6\x90\xac\x9a\x18\xc4\xc4\xdd\xc5\xfc\x95:1fJ\xcd{E\xdbT\x8bm\xda\xddp8\x0d\xc5\xf0\xfd\x1cdK\xe9]@\x1c\x01!\xca\xa2\x91\xdeR/\xb4\xe2\xfe\x9c+\x1d\xe3-c\x1b\xd8\xd9Y\xf7\x9fy\xb9\xfb>i\x8az\xda0\x08\xeb\xc9\xcb\x14\xc62\xb2\x11\xee\xddZ\xdc\xb7q]4P\x95\x14\x16+|\xd1F2\xe4c\x85\xf4T\xa7[VS\xeb\x95\xafx\xba\xaf\xb8\xd0iA\x06N?_\xc9<\x88h\x18v}\xd9\xec\x05\xca\xf5\xea\xa7\xd5\xf9\xec\xad\xdb\xdf.*\xd5\xdaA\xcc\xd0\x0eb\xa8v\x10+\xb5\x83\x9em\xc8\x16\x0f\xfbI\xb2h\x96Qo\xf9\x91\xcdos\xa2.X\xf6!\xbf\x0c\x03\xafp\x94f\xe9\xb9\xe6\xf2#\xcd\xe5Ov\xda\x18w\x194\xa7w\xedn\xa4\x14\x99\x0e\x0e\x80=\xd3\xaf\xe4\x8f\xaf@I\x8b\xb7\x81\x0c\x04\xd7\xcbv\xc7g\xc8\x98\xd8\x06D\x05\xd5\xb3\x8d\x07||\xc6\xce\xfb|W\xcdl\xdf\x8d\x7f;\xe1s\xf3~\x10\xcc!*)\xe3B9\x86[\xdcQ\x15\xa8\xae\xa6\xae\xa6l+j\xa9\xacPbS\xf9\xfa\xb5\xaf@\xaa1\xb0\x1b\x8fQ/\xcc\x8d!L\xedc\x02\x96\xf0\xb4\xdf\xa6\xb2\x93\x19\x88\xcd\xaa\xc56R*X\xdd\xc9\x96a\x82\xd7l\x1d9\xcd\xb2no\x17\xc9_\xef\xde\n\x94\xb1<\xbdY]rp\xc7*\x7f\x8d\x057\\ys\x9dD\x8c\xdc\x98\xc9U\xed\x00\xba{\xb23\xd9\xd9\xc3{\x95\xfc\xb3Z*\xa3s\xf2\xa4:\xed\xe0W\xf3\x7f\xffo\x9dy\xeb8\xcc*\x04\x0c\xa8\xe6\xcd\x92s\xd8=3~^\xc3|\xe0\xb3\x1dkmy\x01X\x0f\x0cp\xab\x91i\xb1\xb2\x95V\xb2\xcf\x1b\x9d\x90F4\x9b\x19\xc7\xf2\x0e%;0_\x12CR\\Y\x19\xc1\x12\xda\xf6?\x18/\xb53^\x86^\x0e\xb7\x9a9\xed\x0c\xa5\xa9md\x1a\xdf\xba\\\xda\xddvG\xb8\xaa\x0e\xd2\xbf\xca\x04\xd7\x16\xdc\xd5r\xda\xe3\x96\xb4\x08\x02m\xbbS\xd6(\xc5\xd57@-\x8e\xd3\xbf\x891\x17\x1eb\xe4I\xdd3\xba\x0e1\xf2\x14\xb1\xe6*\xcd\xad\xf6'\x0d\x07\xa79x\xa4\xaa~\xbai\xd9\xacd#\xd5S\xabb\x1e_\xfc.6E\xd8D\x12p>%L9\x8f\x0d~g\x10\xef\x97\xaa\x1a\x87:_\x90\xaag\xfc4\xa3Y\xe0I\x1e\xca\x10\x0f\xe5);6\xa3\x19\x9b\xf2\xd0\xbc\xb4NP\xea\xe5\xb4\xd5k{\xd3\xdd\xa9\xe0\xe2\xcb6)\xe5\x8a\xb4\xe3\xb4V\x8b\xa4\xea!\xa8v\xac6EN\xfd*M;*5\x0c2\xfaUX\x1f\xa8\xb6\xfa}\xa6\xa9\xa8\xda\xccW\xc1J\xed\xcfV0\xad\xe6\xd9\xb2\x8a\nP7,\x0d \xc03\xaa7\x18\x12>\xa6\xbe\xff\x81\xf30\x88\x16g\xdc\x0dk\x18\xe1^\x1c \xef\xee>2\x10\xbfD\xfa&\x14o#@\x8a\xb5\xcf\x9a\xe7\x0d\xa9\xc5\xb8o\xe1Q@\x15\xc6eD\xd3|p.\x0eH\xb6L\xf8\x15\xacjA\xd8I\xfd_\xe7\x98F\x11\xcf\x88\xc0<\x84\x12/\xa4iJhJh\xf1%\x07\xc1\xee\xea\xd6\xb8\xd0\xb5\xca\xca%/\xce\x83\xea\x92\xa8\xce\xa1\xa6\x9bM\xf3\x14X\xd3\xac\xdb\xe6G\x9b\xbb\xd4\x10\xfb\xb0R\x9dB5Z\x81\xaa\x8e\xe9-\xf2\x97z7\xc6A\xfa:\xaa`\x17\xe0\xdc\xea\xb5\xe3\xb2\x19\xbcE\xd5k\xb2\xf6\x9en\xd8\x1c\xa3\xea\xba\xc3w\xbc-\xb5\x0b\xa1\xceU\xb5a{\xcc\xea\xdd\xa6\x1e\n\xde\xa6S\x96}\xab\xf6\xe8\xaa-m)1\x88\xc9a\x9b\xa8\x81\xdf\x07j\xb0\x9c\xc5\xfb\xb6\xb3\x189\x8a{\xac\x1a\xe4\x0e\xb5f\x87\xfa\x8e\xfbu\xa5\xc5[\xdb\xad\xfa|%\xf5\n\xab\x83jbbjb\xe2j\xa3\xbb\xcd-\xad\xbeb\xa8\xbc\xa0\x08\xfcc@\x1e\xc9\xf6v\x93\xf8\xaa6\x91\xa2\x9d\xdd\xd4\xf0R\x0b\xec\x1d\x02\xec\xd9\x88\xad\xe2\xecfJ B\xa5\xf1\xb9m\xe2\x10D\x0bW\xfa!\xa8\x93 m\x14|*\xfb\xc9\xaf\"\x96\xbc\xe4^\x0e\x12\x0e\xe55\x89\xaf@HfSb\xd06\x0b\xe38a\x1e\xf5\x96\xacP\xe5\x967P\xdcEn1\x9b\xf2\xc0\x9aT\xb7FX\x1d\xca0^\xceo\xd7{\xde\xd6h$\xc6!\x17\xbd\x1f\x8d~\xbb\xdecNm\xaf\xd5\xce\x02\xab\x8eW\xf3\xf0\xef\xaf\xc4^t\xdb\x1a\x04\xba\xadQ-\xda\xea(\x930\xce\xa3\xea\xd8\xd6j/qK\x8d\xda\xa0\xf7\x82R&\x15b\x03\x0f\x1b\xc0Q4\xea\x14\xb8\xc0\x01\xe7\x19J\xd0\xba\x07\xd1]j\x99\x99\x91Y]k\x86\x07\x0eP.\x06\x86\xf39\xe1\xcfI3\x80\x1d\x89\xea\x9b\xb4\x12\xb5{G\x1a\x03e\xcf }\x0e\xbfh\xb5t\x80\x96~N\"2\"\x01\xf9\x9e\xec<\x1f\x80\xbc\x8bU\xaf\x91\xa2\xd1\x08-\x16\x90\x11\x89T1@\x04\xd5b\x01ZL\xef\xfe\xe89\xc9G\xa3\xe7v^\x1dB\x02\xb71\x8dHK\x1b\xad\xb0\xac$R\x15\xa5\xff\xa9 a\xae\xb3j\x0b\x83\xf4(\xf2XZ\xa5\xc8m\xa7\xacm\x89$\xc9lr\xbe\x89\x96W\xdb\xdc\xf5gIk\xea\n\x06\xea\xb5\x88\x08\xda8\x07i\xe8\x88\xec\x0e\xbcS\x05\xd1\x01*\xf1v\xa6x\x1c\xb1\xeb\xec4\xb8\x0c\x83h\xf1\xdcJ\xa7\x93\xda\xc5X\xa6\x14Z\x9e\x14\xd6q\x12\xe9\x0e\x86d_2A\xe3H\xab)>x@j\xf8\xcc\x80\x90\x11\x0d[\xbeJ\xcaE\\\xc7 \x16c-\xfd\xb4G\xe0\xb6;\xd3\x94\x04\x981,=\x17\x8d\x9e:A\xe1U\x0fx\x1c\xab\x9d[\xcedVWa\xba\x9b\xa8\xe2vD\x81\xc0\xd0\xb7\x15q\xdc\xcb\x85\x8aEj\xfa\x08'\x07\xf1\x1bL\x19h\xb1:x\x16\xef\xcb\xfafqJh\xf3\xb0\x15\x83\xd7\xb5\xd7 (\x02\x07)\xd8\xce\x04\xd1B\x85M\xb4\xb8\xa0k\x9b_Qfv\xdb6\xf2\xf1<\xcc\xd3%\xb4\x82)-\xf4T\xaa\xa1\xf3\x86\x04Gv%+\xbb!e0\xc9`\x08\x85A\x17m\xee\xd6<\x91}%W\xcb d\xc4\xadKT\x8cX\x82 \x97\xe1\xe4E\xa5n-b\xe1 \xa1\x81\xc5Qd\xce\xf8\xf9\x90,\xc7\xcaC\xd7\x99\x9a\x03\x97U\xa6C:\xb53\x87j\xd8\x18;\x1c\x17\xc7v.\xde\xa6\xa9\xd1\x18&lu\x18$Du\x81\x18\x19\xf5\x01h\xde\x19\x96M\x06n\xb1\xa2\xaa!\xf8\xc5qv\xc5\x8f\x92\x05\xf0\xb5\"\xa7\xe2dx\xad\x1c\xefW\x1b|\xc1\"z\x192\x7f*0d5\xa7:\xc4X\xdc\x95\x9f_\xbf{\xf9\xfe\xe7\x8b\x1f\x8f\xde\xbd|s2%\xc1\xd8\xa3\xd1\xa7\x94\xbd|\xff\x96\x1c\x92\xab \xf2\xf9\x15\xc1\xca\xa5,\xfb\xb1Vy\xbb\xe4\xa81\xe1bQT\xc7\xa6\xf1\x85\x13\xdd\xb1\xce\xaa\xd5\x10\x88Sb\xab\xb5\xd6 mV\xdar\xfc\x96U\xb7U\x9a%4\xfeAJ\x1faQ\xf4\x13V\xeb\xdb\x0drH\xf8X\x06\xf0W\xb1\x89\x96\xa0Z-\x0e@\xa8N\x124r\x99\xb1\x81\x16\xd7v5\xe8X\x892o\xdb\"%\n\xbd\xaf&\xadx\x14d<9\xf5\x12\x1e\xca\x88\xe8]\xd3\xaaQf;\x94x\x98\xeb\xb9r\xad\"\x8e\x9b\xbeV\xdb\xda$<\x8a\xc1\x97U\x0c\x89\x93B#\x1dD\x8d\xa2\x8aN\xcc\x11\xe9)\xd3(\x17T\x1b\xd1$0f\x0c\x86\x06\x02\x05\xb4\xc6\xeei\xb7\xcfI\xc7U\"\xce\xf5\xedr\x81\x1eF7\xf18a!\xa3)so+\\(\xde,$\xd7\x12RoEr\xf5S\xc1.\xc4`?K\xe4\x067\x1d\x86\x0eY\x91q\x88\x8c\x03\xc4\xc5\x8a\xe9\x82\xfd\xf2~>O\x99\x0c\xd82\xf6\xb5\xc6\x82\xfe\xa1m4\xe4:z\xc3\xe6\x88\x00\xf5FW\xf5\xeb\x06U\x9d\xf1\xaaX\xf0+\xc1\x82\xceC+;\xbfm\xa9\xf1O\xd5_\xb7\x9a\x89\x92\xf8\xdd\xaf3\xaa\xea\x9acb!~\x1b\xd7\"\xed\x81\x16\xf6\x9e\xe0\x91\x16&\x8f\xeb\xf5\x84\n\xbe\xde\x1e\x0f\xa7\x97q\xbe\xc9\x10B\xd0q\x10\xfd7\x83qi\x8e\xef\xcb\xf7ou\xfc\x8d)I\xda OVqvcT\x9b\xb7\x02\x0b<\xf3!\xcc\x17A\xf4c~)\xb8\xdf~\xc0\x9f\xb2 L\xc5\xd9\xde\x05~\xb2\n\xb2\x8c%S\xf0\x9bg\x05\xfd\x11t\x88\x8a&\x87m\xb0\x05\xef\xe8\x95P\xd5\xf5\xf6/\xe0\xbc\x1e\xd7\x99\xa6\x00g\xb1\xa8e-\xa9\xb5\xf7\xb4\x9e\x9eV\xd4\xc8'\x8f\x9e\xd6\xd5\xc8\x15\x17\xb6[\xff\xbe\xd7-\x03\x01\x8e\xe0\x94\x85r\x08_G\x82\xd9\xa5\xf8\x98+\xd9H>N\x80\x16eE\xa9\xea\xc0c\xf1\xb9\xcd/v\xca\x7f\xb4\xbc\x97\x8e\x0b\xa2\xaa\xc3&\x92\x8eK\xa2\xce\x85X\xe3\xbd\x0c\xad\xea\x02)+\x1dP\xa9\x1f \x94S\x17D\xddu\x04\x94\xa4\xa8\xa2\xb0.F\x9da\xc6\xad=:\xb6\xd1w\"\x9e\x05\xf3\x9b\xa30\xc4\xbeU\xed(*\xf8B\x98\xfbv\xc9W\xbb\xe5Aa^Pk'\xa8Q\x94\x94Ldx\x99D\x8c\x14\x0c-\xd5\xca\x86\x8e\xef\xd5\x06\xc1\xab\xad\x83z\xc5\xb7\xb2A\xc0:\xdf\xf1\x9d\x8d\xcd\x12Z)l\x9b\x81\xc1&\x0d\xae\xf8\xa8n\xfb\x18b\xa6`W\x18hl\x11\xed\xca\xba\xa1\xc6]y\xed\xcd\xae\xf3\x82,\xc5>7\xb0.\xcc&\xcfR.\xbf\x12\x91%\xee\xdc\x14)\xa4C\x12\x0f\x86$\xa8\xf2\xee\xf3\xba\xe1\x15\x14\xbf\xe3\x01\xd6\x90\x05*]\xea\xddz\xdc\xa7@\x1dl{\xa8\x18\x8f\xb6h)\x94\xd78\xdap[*\xa8%\x96\x8d\x98KO\xe6\x85\x90\xe0\xc1\x03\xe2\xa4\xfa\x80\x01\x85/M\xb9\x8a\xac-\xd71\x8f-\xc8W\x8cZ\xf3\xe8l\xce\xeb\x82e\x928N\xa7$'\x87=N\x00\xcd3\x16tt\xd16u}\xff\x91F\x8b\xd6\xa0,`\xdb1\xce\xd8u\xa6d8vP\xb8\xb3\x1d\xfby\x1c\x06\x1e\xcd\xac\xd7\xb5 \x84\xaa?\xe3\n\xcb\x9dI\xb7\xa6C\x92\xc8\xd3\xca\xff\x00\xbb\xcd9\x89|@\xaaI\xe6\xd8\xb9=-rK\xcc\x16\xb6\x9e\xb9-\xbc\xa1\xf8VC\xed\xcf|X\xe4OA\x03\xa5\xe9\xf7\x95\xe0\xcc\x1e\xe9\xc2\x07\xc4\x98$\xb9\x12*\x84\x8dX4H\xb2mh\xe5-\xb1`\x9dv\xd4-k\"\xe6\x174mz\x86\x05\x95\xf3M#o\xc9!\xdep\xd7tKH\xb9,\xed\xb0\xd2\xb7\xc1\x9c{y\xda^iP\x02v\xd5\x99k\x7f \xb0\x86\x8f2\xd7\xe6\x91\xb0]$\x90\x8fa\xe2\x0b+\x80\xe2\xeazH\xf21\x8b\xfcf\x06>\xf9:XC\x9f\xd8=\xa8\x07\x00\x82.!b\x98\x04P\xb723\xf5\xd1\xaf\x8cpu\x14\x07\xe4\x90\xec\x10A\x04g\xfc\x14\xd40\xdcA\xe7~\x0eA\xf2\xee\x85<\xd2h\x02\x1f\xdfPa\x15\xf1]p\x06\x12e)\xec\xe8P\xedh\xb7>\xc6C=\xea\xaau\xf6\xe5\xe8)\x0d\xa7z\xf9\xd0,/^\xcd\x99R\xef\xd5\xae\x87\x9bt]\xf0\xbb\x1e\xd9&-\xee+c\x13\xadV\x90)\xde\x9bX\x0c\x06\xe03W\xb94\x8b\xf5\xf0p\xbb\x03#\xad\xd2\x14\x8f=\x1e\x864N\x99%`k_\xf4\xe6\x8bs\x83L\x89\xd7\x81\xe6\x04\x9c'\xd0W\xcfu\x8a\x90\xf3\xa9\xf5\xb8\xear\xb52\xd4\n\xcb]\xe7V\xf7icX\xbagbQ\x90CIL\x00\xf2\x801!\xd3\xe2\xd7\xf7\x05\x8c+\x01X\xe4\x0f\x15\xa2\x03\x08\xf0Zi\x94\xd5\x99,\xf2\xc1\xd4\x14?\xd9d\xba\x9c{\xc7[\xd2\x84z\x19K\x1ci\x19\xce[\x8e=^\x14\x16\xcb\xa4R4!\xa3\xa2\xb8\x18\x1a\x8c\xeb!=\x84\xb0D\x1d\x1b\xc8)\xd3\x86\xc8\xf4Q\x81\x1eN\xf6\xa5E\xd4\xb9\xc1f\x81;8\xef\xdc\x86DI\x1d\xde\xd2l9^\x05\x91[\x0e{\xc7G\xf2\xaa\x93\x03=\xad\x94L\xcd\xca\xe4\xf4\xb6\xa9\x95\x89\x035\x1a\xb3\xebL\x94\x7f\xf0\x80P\xf2=i\x0d\xc7C\x0c|\xdd\xe2\xa0\x8d\xa86Ri\xff\x92Z\x01\xed\x9aJZ9\x15\xb4\xd6i\xc7xx\x1a\xd0f7FTo\xc1\xe9\x87\xd7\xa7\x87\xf3\x0d\x11\xa0~\xe6%\"\x0c\xe1L\x15\xe8\x9aK\\=\x04\xc7Eb\xc1\x1f\x85!\xd4\x96\xba\x10/\xe8{\xc0 n$\xb8\x0c\xf9\x959\x00\xcb\x99q=U\x91\xa7+\x82\x8d:\xd7\x08\xb6\x91-\x8a\x1a5\xe1\xc2{b\x1d\xfeN\xb1>.\xc5\x93\xb3\xbc\x11\x13T$\x17\xdcKbWB\x00\xe1\xfdx\x1e$\xa9t\x91_(\"\x18I\x95\x82\x9a\xdb)\x12\xb1\xdb{n\xff\xa0\xdd\x16\xca\xd4\xa0+\xf5\x1a+\xea\x86\x8d\x82\xb2\xad\xa5\xeaCuH\xff\xd4\xfc\xd5\xdb\xb3G\xc5`-\x01\x9cl\x18\x9f\xed<'\x91\xb5'{\x92\x13,\x88\xbf6\x1cJ\xc1i\xed6\x89\x80\x1bQ\xa4\x90Fr$ /\x94\xea$%\xdf\x9b\x86b\xf6\xad\x16\x81\x96)\"\xd3\xd4\x8f\\\xceS\x92\x91\x11\x12\xa6\x8a\x90FHi\xfd\x04\x851b\x05\xb8\x91\"\x07\x8c\xbb\xd1\xe0\x9b\x9a\x7f\xec\xef\xedX\x8c\xb0\x8be(\xd5\x9c,\xfc\xfa\x96b{\xb6\"\xb0\x01WVe\x11$%n&\x13\x137\x1a\x14\xfaR\xc6:\x13\xb8\xc2\xf1$\xf1\x98*\xbb\xb6C\x88f#\x93D\xb1)\xd9\xda\x92\xf1mhR(\xda\x7f\xe0i\xa0\xb9\xb4\xad-w\xf2\x84< V 1\x84\x0d\x15\x8d;\x0f\xdb\xa4c\xd8\xac\x17~\x80F\x1e< {\xe0\xe9\xa6\xc9\xdb\xdc\xa1}\xfd\xda\xa1\xb9^\x97\x899\x19W\xec+\xe0\xf2\x8fL\x8b\xe3e0\xf6\xd9\x9c\xe6a\xf6S\xc0\xaeD\xa6$;Pd\xb6\xe5nI\x17\x83\x16_Qc0\xba9\xac\xder\xaa\xd4)\xeak \x84:\x118D\xaf\xa4W\x95\x9c\xa5v{\x13\xe0\x1d]\xb1\xfb\x9dwg\x99e\xf1\xf4\xe1\xc3\xab\xab\xab\xf1\xd5\xde\x98'\x8b\x87\x93g\xcf\x9e=\xbc\x0e\x83\xe8\xb3\xd3\x94\x90!\xf0\xbf\xbc}#\xca\xec?\x8c\xe8\x8a\xa51\xf5\x98\xd3\x94\xa05\xf1\x12\xf5<\x16e?\xb2`\xb1\xcc\xa6\xc4\x91\xaf\xa3%\xbc#>\x9a\xa8\xe7\xe5\xab<\x04O\xd6;H\xb6\xef\x07Y\xb0\xb6d\x86\xc1\"\x12s\xff\x03MY\x18DL|O\xa7\x8d.U\"\xf6\xd10\xe4W\x1f\x19O|\x96@\x99\xf2\x15\x85\x8e\x97\xf4\x92e\x81\x87\xb7b\x15\x87A\x96\xfb\x966&\xf42\xf0^\xf1d%>\x04/\xa39OV\xd8wR\x0fn\x07\xb1Z\xb2, .\xf3\x8cI7\x88N\xe5\x1d\xabJ\xe7\x8b\xa5g\xc2\x8bw\x0c>\xcf\xf8G\x06\xc6\x92\x02\xba|\xc3`\x7f\x0fVy\xb6D\xdb)\xc6\xfcU\xc2\xfe\x91\xb3\xc8\xbb\x99\x12\xa7\xf2\x8e\xd4%\xf2?$|\x1e\x84LA\xab7\x0b\xac\x98\xcf\xd3e0\xcf\x14\xb4x\x1f\xa5\"\x01+p\xc9\xaf\xf1V\xb2E\x10\xe19\x01M\xf1\x8c\x1b4\xd9\xa3\xa1\xf7\x16\x0e`G\xffD\x1a\xe2\xd1\xb8\xd8\x0f\x1e\x8d\xed\x9b\xc1\x0b\x83\x18\xffN\x18\xc4\x1f\xa8\x18tG\xfc\x1c\xc54[Z\xca\x7f\xcca,\x01,\xc9\xd1\x91\xd4\xb5}\x8a\x02\xc1w;\x95w\x0c\x9e\x87\xb3#\x1b?\x98\xcf\xf3\x94\x1ds\xe9\xabsJ\x9cZ\n\xd2\x1b?H$go\xa9\x11\xbc\x9eZ\xf2\xd6\x81m |\xbe\n\"Z\xc1\xef:\xa9\x0d\xbd\xfb\xb9\xa5:|\\}\xbca\xcc_0\xb5\xb7\xf5O\xe4[,dkj\xed\xb8\xd4[\xfb\x81z\x9f\x17 \xcf#_\xd4\x05I\xa3\xcb\"\x0d\xab4\xc2'U\xd0L\x91m\xda\x04\x9b\x9bD4\xfc\xc8R\x9e'\x1eK?\xb2\x7f\xe4A\xc2\xe0\xa3\xb6<\xe4\xe3\xf3 \x0c\xd1\x0f\x88\x8c\xf71\xf5\x02\xf0k#\xdeF\\\xbeZjQ\xa8\x08 -\xa8H\xeew\xdb\xe72\x96|d\xa9\xacB\xfe\xb6V\xa1q\x99\xf1\x86\xc1\x86\x9c\xfb\xc7\x02\x13\x08P\xf12\x02\xbc`\x035\xba\x0b\xc0-\xfd\xe5^\x9e\x8a\x99\xc5\xfb\xc2\xa3\xec\x15]\x05!T\xc5\xa3l4\x877\xb4\xa2(;\x05]\n \x98\x06\xbf\xa3\x03\xa7\xc0\x8e\xfc\xff\xce\xd3\xcc\x04\x1eQH\xb2\x95\xc9\x12\x96y\xcb\xa2\x80|\xb5\x02\xdf\x84eC\xc4\x8b\x05\xf0'\x9a\x04\x12U\x00\xe8Z\xbeZ\x80\x7f\xd6g!\xc0^\xd9\x0eC\xa9\xae\x83\x0fg\xc2Wx\x06\xbe\xc3\xe7\xf8\x0e_L\xf0\xe4]<9\xbc\x89\x97\x8a\xfe\x82\xdf\xa3\x08'\xbe \xf3}\x12\xb0(\x03\xcc\xf0#O\x82\xdf\x05\x9f\x18\x16%y\x99;Z\x16\xd9=\xea\xfa\x89%Y\xe0YjZ\xabL[=\xe0\xb8\xdb\xd1?1\xa8\x84\xfa\xa2:\xd0\x12\x99K\x9a\xb5\x91\xd6RNo\xc2\xca;\x02\xbf\xa4\xd1\x02Ned\x98a8\x8e\xfc\xf5/S\xe2\xc0\xef\x11\xf5\xd7\xa3k\xac\x16\x91\xfb> \x16AT\x02sxG\xe1\x03\x9f\xf1EB\xe3\xa5\x85\x90\x0fVt\xc1L\x92\x01\x12ZI\x86 \"xU\x11\xbe\x86\x80\xd8\xf1X\x8c/\xeb\xcfx*\xbeJ?\xe3_\xf8\xbc\x87'?\xc2\x93Y\x12\xb1\xf0-\xcd\x92\xe0zJ\x1c\xf3\x15\xe9\xad\xcc\x16\x93\xfa\x06\xe4UE\x892\xc9R\xca6\xd9\x9f\xd9\x0d\xdci\xa4P\x95\xfa\x8d\xd6qs\x1a\x8b\xd3^\x01\xaa\x17\x1c\xf2,Xi8\xf8\x89@Iy[\x81;\xcdW\x14:\xcbXr*p?\xac\x0b\xf9>Je\x02V@\xa040\xa6\x95'\x8d~\xb7\x1e6`\x8f\x0e\x05\"v\x14-\x00\xe96\xd2\xb0r\x1cp\x012\xb2+\x9a|f\xc9 \x90\x1c\xf2\xf7\x88\xa1\xb4\x86\xcc|\x1b\x18\x80\xab\xc0\x0ex*\xaf\x085h*o\xa1,\xc0\x05\xd7c\xbeZ\xa15\xf60\xde\xac\xb0?\x07>\xac?\xe3\x0d\x85M\xf1=U\x84\xcb-qV=\xc9R\x9d n\x87\xcb\x96lE\x15\xa2\xc6>\xcf-\xd2\x82(_\xbd\xf72\xba\x86\xf5[\xbe \xdf\xd0R]\xa4\x12\xae\x89\x164O\xbaa\xc73\xa5<\x04\xcd ld\xa7q\x00\xd9\xf2m\xdc6_\xb3d\x1e\xf2+k\xa6\xd8\xe4Z6:%\x8eN\x1a\xc5*\x0d\x1b\x17\x05s\xb6\x0c\xbc\xcf\x11KS\xb3\\\xa6\x13\x91\x821\x0d\xa2\xec\xbd\x92\x08\xc1\xcb\xc8&\x10\x8ai\xc4S6\x018\xf1k4A\x81\xb2e\x81&\xcb\x17\x1cRP\xe7\xb5\xf5\x88\xa4\xda\xcb\x9a\x07v=\xc9^\xaa\xf6)\xeb78\x1c[\xa0\xee\x0e\xe0\xf2}\xc4 \xc1V\x00\x97\xa3\xc8\xac\xa3\xec\x17]\x8f\xf8m\xad\xe2(\xfb\xd5\x80\xfb\xb5\x05\xeeo\x06\xdc\xdf0\xb8\x84\xa5,Y\xb3\xa30^R\xf0\x1bo\xbc\xb7\xc1\xa71\xf3\xb2\x8fby\x9b\xa5\xcaT\xb4,`\xee5+\xc6\xb7\x92\x80\x94\xc07\x9d \xa2r|\x18\x136\x17#(\xfea\xd5\xb1\xf9\xaf2\x17\x1b\xb2\x82\x9ey\x0d+\x0b\x00U\n\x08cP\xba=a1\xa3\x19(\x89A\x81\xe2\xcd\n\xfbR0\xe1N\xf1\x1b\x85\x93<\xe8\xc9u\xc6\xa24\xe0Q\n\x05\xea\x89-%_1\x9a\xe5 3\xcb\xe9$\xb4\x94\xd2oA\x074\xcdCK\x16\xcflR\x94\x04g7\x12\x1c\xf7\xa6\x1e\xb5\xb0\x87)c8\xc3\x9f.i\\!I!\xa1\x95$MC\x1e[\xbe\xa2 \x184\x8fyyH\x13C\xe8SO\xc2\xbe\xa5@N\n\xb9\x84SO\xc2K\xd9\xba\x1b'\x8c\xfaoY\xb6\xe4>\xd4U\xbeb\xf5\x94\xda]\x02\xb8|Ca\xfd\x97l\x1dh\xe1\xa5\xf9\x8aB\xb3\x15.\xe0\x169kKN\x90y\xcb\xb3 \x84\xe5h\xbc\xa1\xf5\xf3X\xd3\x86\xe2\xb7\x95.\x14\x99\xa5\x0c\x02@\xed\"\x884K\x82\xcf,[&<_,\x8dc\xb3\x92\xdevvV\x00\xcd\x03\xb4ZC\xdb)*o\xb8,\x03\x94\xf0\xcf\x96\x95 Y/i\xba\xa4IBeWE\xca\xc8\xd7I\xf8\xa7T!^\xae\x81\xa2\x14\xb7\xaf\x04\x01\xf3&\x88\x98G\xe3\xb2L(\x13Z\x0b\xfc7\x0f\xa2j \x91b-\xf26\xc8\x04\xdd\xb1\n\x8c\xa6\xad\x8a4k1s\xbe\xa1L\xeb\x8c\xf3\xcfL\xd3\xc2\n\xfc\xcaB\x0c\xa7y2\xa7\x1e;\x95X\xc81_1\xe8\x1b\xb1\xd4\xdf\xd0h\x91\xd3\x05\xc0W\x12\x90\x12\x19\xbd\x0c\xa5\xb7&\xb1d\x8c7\x146Y0 \x02\xd4/+\xcc\xaf\x05\x0cv\x96e\xec:;\x02\xfdV\x01\xc6\xae\xb3\x91\xd4v\xb5\x80\xbed\x1eO4\x0e\x00p\xbfH\xb1\x141\x91/\x94h\xc3\xbd\x02\xa0\xa0\xf9\xca\x17\x0c\x92\xa3\x1b!+\xe98$7\xc7%\x019. \xc8E;k\x14t\x91\xd6\x86\x06\n \x13\x05\x94%\xdb\xb6\x7f\x1e\x05\x9e\x8d\xb7Qy?\x04~\x00\xf5\xc1\xdb\xe82\xf0\x03{E\xa0|e@\x83\xaa:\x0e\x9e\xa5\x1fXr\xb2\x92\xc0Y:\x8a\x05\x85\x8a\x11\xbf\xeb#\xe3>\xd7Y\x8f\xca\xeb]\x0c\xf8G-\xaar\xd6#%\xb6\xc2\xc0^\x9b\xb2%g=2dM\x18\xf8\xdb\n\x87\xe8\xacG&\xcb\x88\x15P\xdb\n\x19\xd65\xf32\x9e\x9c\xcc\xe7\xcc\x13xF\xbe\x8e\x18\xbcc5\xb1$\xb5\xb1jk\x96dG\xfe\xfaW\xa8&\xc9@\xf0\x86\xa1\x1d\x91Y\xca\xdd\x00\xb4E\xecVB\xffZ\x83F\xeb\x0e\xd8\xd5\x0f\xfcZ@\xca_\x16\x983\xc0 \nL\xbe\xa0\x90ip\x19\x846n\x18P%>\xacW<\xf1K\x89\x8fxk\x91\xf7\\% \xa9Q\xb7E\xeam\xb4\xc2o\x8cp\x9a\xf1\xba\x90\x95\\\xdb\xef\x87\xafq\x04p\x8d#\x80\xeb\xe3%\x8d\"\x16J\xad[@\x91\xf5$\xec\x1ba\x10}>\xf2\xb2\x1c\x88^\x07^\xa7T\xbe[\xc1\x13/\xe1\xa1\x01.\xdfm\xe0?& \x88\x96\xb0\xcb\x04\x15EC\xe6G\xb3\xd2\xb6\x1aO\x97\xfc\xaa\x00L\x97\xfc\xca\x06x\x16dF\x95\x99x\xb3\x82\xca\xab\\\x05\x89_\xe2^\xaf\xc2\x1f\xc0\xd3\xb6s\xbd\n\xa7\x97\x14U\x98\xb8^\x85\x11\xbe\xc8 \xe7\x17\xf8\x00\xd4\x10\xa5SLAG\x81\x8a\xb3W})\xa4\xe8:\xbc^\x85b\xcd\xea\xf6`J;D\xfa2@\x1as\x83/\xae\x1b|q\xdd4\x17W= \xf9\xf2\xefh]\xbfs\xbe:\x8a\xfc\x0fT\x1cQ\xe5K\xab\x7fT\x8a*\x1f)\x17\x02\x81\xc0\x95\xf5@\x11Dz\x1982Ug`\x84R\xcc!\x04il\x85\xa4Y\x1dil\x806 \xb9\xec\xdb >v\xd6!\x17z\x1b\x84Z\xe1\xad \xb0\xb2m\x10zI[\x8c\xdc\x8a\x85h\xcfWk\xb0WH\xd9\xc6\x8cL\xcd\xc8]\xa4\xaa\x9d*#\x02\x8e?\xb3\x9b\xd4\x0d\x06\xe39ON\xa8\xb7t\xed\n\x84t\\\xae\x08\x19\xe7vgH\x02\xf1\xeb\xc1\x03\xe2\xd2q\xe3\xeb\x12H@\x18\xeax\xdf$@\xc7N\xddu\x02\xc7\xedW[\x82\xfe`\x0e\x15\xa4\xa3\x85Guk\xd7T\x81\xef\xe2>>\x1e\xe3>>vw\xeb\xd5\xcf\xc16\xbdj\xcb\xaa50\xdf\xea\xf8\x05\xa69k\xc3;\x8b\x80\"/\x0e\xc8\xa4\xe6=\xb1i\xaeN@2\x12\x02]\x83o\xd0xIS\xe6\x7fd\x8b \xcd$\x15\xaf\x97\x10\n.\x1e\xe5\xf1~J\x1c\x1eID\x85\xa0)\xfdh\xd7\xf6\x06\xb4r\x11\xe5\xa0e\x90\xf5M@\xd9&\x16LC\xe4\x01^\x9a9\x19\x8f\x7f\x08\xf3\xc4\x19\x12\x07\x04\x01\x10\x1b\xfb-\x8br\x95\xf2\x8a{y\xaa~\xff\x95\xdd\xbc\xe4WQ\xf9\xf6)V\xbf\xdf\xf2\x06\xe8I\xe47'\xab\xa9\xa2\xbf\xa1EV\x8b\x05q\x87\x0b\x12\xfbf*\x0dM\xa7=\x0d\x82Mc\xd4io\xd3\xe0\xc2du\xda\xcfB\xd8\xb0j\x9dV\x8d\\\xf1m\xdb\xb17\x88\x1a\xed\xa6\xa5a\xab\x85b\x0f\xdb\xc4[\x8e\xbb\xb4KP&\x84\xd3\xc2PA\x07\xc7o\xb1\xf3\x92Q\x12\xa4\xf1I\x0b\x14\x8f\x05\xd0%\xcf#\x1f|5\xc4v\xd8\x90\xcd3\x13\xf8\x0d\x9b\xdfn\x94\xbf\xba~m<\xc0\xb2n\x0d\x8a\xfa\x9e\xbb\x16\x07,6\xde\x80~\x9a\x03\xa9\xcd\xfes\xc3\x93J\xac\xe6aH\x96Cbq\x10\xa7\x06\x9fC\xb4xr\xa0]58C\x91\x04|\xa6\x98\xd7!I\xc6\xa5\xea\xba\x8e\xb8\xf3Ry\xb7c\xa9\x0bf\x99\xd5\xfe\xfd \xf9\x8c%N\x93h\xfce3X\xee\x9aE\xa0\x84\x9aNImF\xd8u\x96P/\xd3wtu\xca\xa4%|\xf4\xd6\xa2\xc3\xea_\x0fdF\x0em\xb1\xd3\x06d\x8a\x9a[\x88'\xbd\n\xdam\xde=\x9a2\xe3\xd8\x9bZW\x9a\x1b\xba\x1c\x82\x9d;Y\x923\xe9#\x9e\x8f\x95\xaa\xed\x89\x1f\x80\xc8Q\x9a\xf1\xf82\xb6\xc7R\xfa\xa2\xd5\x07T\x8b\xd1!\xb8\x82\xc7\xb3\x8b\xf6\xc1\x99mo^qd\x96\xc7d\xf1\xe5\xbb}\xb8<\xe9\xed_\x87\xe3\xd6\x12\x17\x8b\xf4\xfc\x8eI\x89\xe0_\xaa6\xe9S\xdc\xd2 \xb5\xa6\x14\x19@n\xa4E{G\x0b\xeaT\x8b\xbdz\xb1t\xe7\x83^\xdd\xd2$TG\x97$m\xd5\xd9!\xd5\x91\x0edFZ\x1c94\\b\xfa\x1f\xf2\xec\x0d\xf8\xd3d\xf5\xe8k\x16\xaf\xa3%\xf1*M\x97a\xd1\x03u\xb5c\xb5\xc1\xc3\x8d\xaf.!\xf5\xae\xcc\x0c\x1e\x99\xc9\xe6\xaf\xbb\xc9\xfbP\x9c\xc9\xc9\x95\x05\xdbc\x94\x9b\xd9\xdf\xab\xf3J!\xce\xfc(\x8f\xdd{u&g\xae\xd2\xeb\xf0\xb1jM=\xdd\x97\xf0\x8f\xea\xbdZ\xaa\xf4\xfa(\xacUz\x9d\xe9Z\xa9A\xab\xc3/\x14|\xdd\x07\xdf\x8d\x1c\xcd\xfa\xe8\\*\x1e\xad>\n\x17e\x84\xaa?\xbe\xd6\xf2\xaej\xe1\xe8g\x0e\xbd\xe4\xe0G\xc0\xa1Q \xdd\xe3\x9dD~\xe5\xfdu\xc6\xf4\x15\x89\x91\xaa\xfd\x0f8\x97\x8a\x95\xf1h\xf4!\xa47\xc6\xcf3ya\x08)a\xe0}\x86\x1fUn\xc7\xe3\xb1,\x91C]>\xcf/Cv\xac\x81\xfd\x84.\xf4\x7f\xd5*\xf9S\xfa7\x90/\xd7A\xa6\x7fC\x8c7\xfd\xf2~]\x02\x15\x8d\xf5\x13\x0e\x1c\x92\x9f\xcb.)<3$\x0e[\xc5Y\x00Q\xcc\x1c\x16y\xc9M\x9c\xe9\x17_\xfdH\x12\x0e\x15\xce5{\x16D\xb1lv\x10\xadi\x18\x00\xd4\xe7\x92_\xfb\xccn>$pO\x02\xbf%k\x16r\xea\xeb\xff\xcc\x7fI3Z\xbe\xbde\x19\xf5\x8d\x94\xa2\xd5+\x93\xd5\x83\x97\xb7\\v\x14^\xde\xe7%\x94\xee\xf5\xaa\xe4\x06c\x9afL\xfe\xc8S\xf9C\xcd\x93\xf8\x0f\x12m\xe2\xc4 _\xe8\xc6&4c\xe5\xc0\x80s>\xc7t\xf1\xeb\xa4\x8c}\x96\x83\"~\xa9\x1a\xd2\x8c\x86\xa1J\xcd/WrV\xd2<\x8d\x99\x9c\xb9,X\xa9P\xd4\xf0\xc6soy,\xc8\x87\xb0xUS\x0c\xbfu\x07\xe1\xa5\x18\x08\xb8\x1f\x0b\x8cE\xba\xe6a\xbe2\x1a{EA\xf6\x0e?\x97\x8c\x85\xcey\x0f)\x91f\x8d\xd8l\xe7|\x9c\xf1Oq\xcc\x92c\x9a2w@\xb6\x05c\x16\x06\x1es\xeb\x9b\x95(\xcbg\x87G\x10\xe3\xb7\x99\x0bv\x98\x19\x8f-\xd9\x1c\x15x\x90;\x8a5Z\x0c\xc1KiFD\xb6\x89s\x0f\x92\x8c\x04\x91*T\x0f\xe3\x0b)P\xe3Cr5K\xce\x8b\x80\xd9\x00Y\xf3\xd2~\xa2PS\x91X\x08\x07\xae\xad\x16\xca\xce\x18\xe2P\x8d/\x12\xce\x81.}\xfd\xb2\xac\x1f\xa9\xe9\xd4^\xd3e\x9ee\xd2\x0c\xf8@\x06\xe0T\xdb\xdbHH\x8d#W\xa6\x08TF\x13FU\x9a\xf1m\xfdK\xf4\xec\xb8\x95\x92\xbf\xd8\x90\x92\xe7(\x13D\x13B\x87pR\\\xcd\xd89.-\xd8\xba\xe9 \xf5\xfb\xd3\xeaGpjtPT\xc7\xeaD\xe8\x07\xa6O\x8b\x0e\xe8\x97U\xcc\xdd\x01}\xa2\xb0z\x17X\x81\xf1;\x01\xfd\x1e@pRt\x00\xbd\x86\xd5\xd5 $\x0f\x96\x0e\xb07\xe2P\xe9\x01\xa3\x0e\x9c^\x90\xc5a\xd4\x03Z\xe2\xe7\x0e\xc0\x0fp\xfat\x01\xf5X/\x1f\xd4\xa9\xd5\x05\xa6O\xb4\x0e\xb8\x8f\xe5i\xd7\x05 'a\x07\xd0\xa9<\x1b{@\xf5\xe8\xc3\xa9:S\xbb\xc0\xe4y\xdb %\xcf\xe2\x0e\xb0\xb3\xf2\x9c\xee\x80\xfc\xc9<|;`\x7fV\x07\xb3\x9d\xbf\x12<\xc0\x1d\x19\xe5\xbfj\x8a\xab\x9do\x94\xfe\x9e.\xdd\xa8M\x82\xac\x9f\xfbf#!\xb8\xd3\xdd\xba\xd9\"\x88(`\xba\x84)\xa2\x19\xde\xdd\x9a!\xc9\xf4\xf6\xa1\xdeU\xaeq\xe4\xe9\xba\xc9p\xbf4X\x81\x8e\xbev\xc9G\xaa\x80@Y\xf6\x01\xb4Nc\x15\xec}7\x1a\x7f[P\xe6\x1d\x80\xdd\x12\x18\xa2\xe6.\xbe\xdb\xdc\xbd\x14\x9cUGc^*\xae\xab\x17X\xd6\xdd\xb9\x97\x9a[\xeb\x01'9\xb9\x1e\x80}F\xf5e\xc1\x01v\x02\xf2\xae\xadkq\xadHz\x8e\xfb\x99\xc1\xf6t\xe1a\xcd\x12\xf5\x81\xeb\xb3\xa8\xcfJV\xaa\xbd\x8f\x16\xef\xb8\xa4g\x1f\x8fLABG\x9b\x8e\x9aB\x86\xbe%\xfa\xf4\xa4\xc5\xbb^\x9f\x9e\x9cU\xd8\xcd\xf6O\xad\xef\xf6)\x19\xe4\xa7\xe3\x1b\xab\xbb}\xe3g\xe0\x88\xdb?\x81\xf8\\\xd3O\x9fO\x1c\xf3\xb8\x93~;\xeeF\x98\x1f@d\xd1\xde\xd2\xa6?\xc4\xa6\x08\x96\n.-q\x9d\xfd'\x0e\x1e\xc8H\xf0M\x17\x10\x90\xa1\xbc%\xba)9\xadf\x01u\x80\x05\xed\xb7?\x17\x83!\xb9\xa8\x94\xbd\x07\xa1/\xdcV\xf3H\x1e\x89\xa5\xdcw\xeb\xd4e\xe3\x8b\x8c.\xd0\xdb1b\x08j\x05\x1fm\x17\x0f\x04z\x18\x90`\x83\xf8\xac\x9f\x08\x96\xfe\xcb\x17\xe2\x9e(\xde^G\x85\n\x0c\x89\xdf\x0d\x16_\xaamh\xae\x820|\xc9B\x961\xcb\xf0\xdc\xfb\xd8Djll\xbd\x8c\xce\x95\xc3Iw0$>4\x0dR\xbb\xfaU\xbcYd\xef\xc7\x90zG\xd9\xfb\xa3}\xd4\x81=o\x11\x18h\xf7nc\x8f\x86\xa1\x8a\xacn@\x97\xcd.~%c\x9aC\xbc\xf8\xe3\x90\xa6\xa9\xcb\xeba@\n\xa9\xb0\xf4\x8f\xd0\xd4\x06a\xd2/\xb1\xe0-\xb0\xec8e\xb9\xcf\xcb\x0b\xed\xca\xadhM\xfd\x8a\xdf\xd3\xa85o,\x9a+\xc4\x0b\x83\xf8\x92\xd3\x04\xf8\xe6>~\xda\xb54\xa9RP\xe9\x94\x1c\x126\xae\xa4\x17\xb7\xa6\xd5\xe4\xaee\x85Mw\xf0-\xa7;\x90^\x86\xcdI\x08\xeec\x12&\x93\xc9\xbf\xc1\xdaM\x98@\xe2\xbeV(\xff\xf6k\xafy\xf1\xc3-79\xb8\x87\xbd\xcf\xecf\n\xf7V\xf5[4\xa2<\x02d\xa0\xe0\xdf\xdce\xe2\xf1\xb2$\xfc+T\x80f\x83/\xb5\x96|\x1a\xb6\xe5\xaeXF[\xb2\xa51\xa8-\x17|\x19\xa0\xd8\x81\xc8\xb8\x16o\xb9\x1f\xcc\x03pA\x90 8wwR\xbf\x18\x14\x8f\xb7\xa4\xc9q5\xf4~\xe7v\xfd\xccnb\x10\x1cH9\xae\xd4\xfd8\x94nm\xa7\xb5x\xa4\x04\x17\x8f\x7ff7\xb7\xf8\xaa/\xb8V\xf3\xa3_\xbe@z\x1e\xd7\x9a\xc2\xc6\xea\x03}\xdbs\xb5\x0c\xbc\xe5\x86\xadi\x19\x83\xfbll%\x05Eg\xf4[b\x00:$\xc1\xb7P\xe9m\xee_\xfcP9I\xbd)qNR\x8f\xa26\x05\xa0=}I\x93)q\x08\x92\xfd\x06\xf4\xad\x9c\xa3$\xe1W\xe27\x02\xf2)\xd6\x00\x9f0\x83\xc6\x8f\xca\xd0\x04 >ZLM^\xf2\xabH\xc3\xc8\x9b\xc7&\x08\x0b\xa7\xc4\x91\xa4\x1a\x92\xfd3\x18K\xbe?E\xb2\xde\xb2(\x9f\x12\xa7\xa2\xf9\xda\x00:\x8a\xe3\xb4\x13H\xb2MS\xe2\xc8\x1fo\xb8\x87\x19O\xbc\xe5\xbf\x7fH\x82\x08\x14\x84\x00?9\x9f\xa2\xc0gQ&\xf0\x89\xdfjg\x80\xa3\xe0\xfd)q~\xa0\xdeg\x9b\x85\xc5\xb3)q\xce\xe8%\x923\xd9\x15}\n\x19\xc5\xcc#&{ba\xc8\xdb\xedf\xe6\x13\xd1M\x8b\xaf\xcb\xc9S5T \xc7\xec\xc7&\xa2\xc1G!ZR\xb4U\xca\xe6\x9b\x99\xbb;S\xb8(L-\x03\xbb\xfb\xb4m%\xef\xedZ\xd6\xf0\xde\x1e|s\xc1\xd0\xf5\xb9\xf7H\xe5Z\xd6\xdd\xdec\x18%\xcc$|O\x8c\xd1\x8f\x1cu\xcb\xb5\xf7\xb4c\xdb\xec\xed\xb7n\x9b\xbdg]{\xe6\xd1N\xc7\x8ey$Z\xfe:J\x19\xea3\xe7\xd1\x93\xb6\xed4\x81\x95\xf3\ns52\x81u\xf3j\x17\xcd\x12\x83\xf9j\x0f\xcd\x12\xady\xf5\x08\xcd\x12My\xf5\x18\xcd\x12\xc3\xf8\xea \x9a%\x06\xf0\xd5S4K\x0c\xde\xab}tC\x88Q{\xf5\x0c\xcd\x9a@\x97w\xd0<9\x1c\xe8x\xec\xc2xL\xd0\x01y$\x06\xe4]\xbe\xb2\xac\xe8 \xccQ+6\xd9\xdd\x15U\xbce\x19\xada\x0e\x9c\xcb\xb3\x9f\xc0\xd2\x0b\xfegvc\xbb\xd1\xcd\x04\xc99\x03\x90s\x19\xec\xf63\xbbir\xa9\xc0\xfcV0\x1ah\xc8\x97\xde\xe3\xab\n\xb9_\x1b\x8d@\xcf~[\xa3\xb4\x7f|\xabld\xa2\xfc\xe1\x93C\x8d\xcc\xc8\x94\xc8\xb0:\xe3y\xc2W\xc7\x8a@\xab\x07DF\x15d7\xa2;\x82YAy\xc0x\xd5\x06eJ\x9cr\xc6\xee\xc1\xc9\xb6\xd4\x11\xfb\xd7s0>\xcd\xa8t\xf7\xc3\x92\x7f\x1d\x03\xd3\\-\xa0\xbb\xc3R\x1bI/\xb5\xa9\xcf\xda\x81<\xb8]\xf4;\xa0\xee\xc4\x96\xdc\x91%\xb2q&\xd5\xb5\xfd?\x86i\xff\xb7X\xf1\xb1\n\x15\xfd\x7f\x8b\xb8\xe9\xdf\x04O\xb00\xa3\xbft\xf1\x84\x1a\xf1JhCv%\x13\x04\x16\x05\xd5\xba\x97\xd5\xfc\x11\x1b\x1b\xc9\x0d\xc6\xaf\x11\xa74\xcc\xe8\xaf\x1b5\xe5\xd7zS~\xad6\xe5W\xbc)5(\x1c\xa8Ws\xff\x86-%\xc8\x91\x86\xff\xdfj\x19 \xce\xf2\xf1\xa0\xb9\xac\x9eu\xd1\x1b\x88\xac\\\x1f\xe0\xcd\xb1\xbe\xc8x\xfc\x86\xadY\xa8\xe2\x02O b`u\x11\xf8\xe0\xf5KdO\x90\xecJ\x84\x8e\xa9\x8a\x91R\x84\xc0\x80 \xa9\" \xc2\xa9U\xa3y\xd8\xb0\xeb\x85\x8co\x83\xe8O^dta~B\xe0\x82q\xc6\xdf\xf0\xabB{\xd3^\xa9\xb6\xfd\xfe\xf4\xf1uQ\x87\x91F\xa6\x88\xda\xfesl{F\xb5}x\xab\x196\xa7\xaf:3\xf5x\xcfS\xb2U3\xa0\xcfS\xf6*\xb8\x14\x13\xb25\xb9\x8f\xb6\x18\x91c\x1e\xd5\x15\xe6\xc51\xff\xf0\xb7\x87\x87\xdf?\xac\xa6\x0b&\xf9\xe1\xdf_\xfc\xb6\xf5\xdb\xe8\xb7Q-\x0f7\xd4?\xfe\xf1\xe4\xf8\xaf\xa7\x9f\xde^\x1c\x9d\x9d}\xbcxw\xf4\xf6dJ\x1cA\xc7\x8c \xe4\xf0\x08b*\xa79\x1a&\xc3\xf7\x8fU\xee\x19\x97\xb1\xb4\xbb\xf0\x081\xe8i\x9ct%\xe6\xd5^\xc6\xd2LTt\x08\x01f\xd88aqH=&\x10\xaaC\x1c\xb2M\xe8\xb8\xd9~\xb2M\xbe;p\xbe#\xdb$\x13?\x9d??\xf8\xae_@s\x1a}dy\xca\x9a=\xe9\x8a\x80\xa8c\x9b\x16\x16\xec.\xd6\xae\xf6\xce\x8aJ 6QL\x93\x94\xbd\x8e \xf0\xe4dg0\x94\xc1\x7f\x80\x8eo\xf6\xc2\xb6/\xeeY\xa4\xf6\xe4\xf1\xe3\xddI\x17\x92\xab\x0fQ\x11\xc7KL\xf6d\x08=\xdc\x91\x91\"wdH/V\x84\xdb\x12ks\xf4\x88< \xc1s\xc2\xc9\x0bB\xd1\x10_E\x8d\xb9\x19f\x90\x93m\xf2h\xe7\xd9\x93!\xa1\x03Y:\x17\xff\xb6\x0f\xc8\xa3\x01\x89\xc4\x7f7\x13\x7f\xd9X\x0b\xa4\x8f2\x97\x0f\x06d\x1b\xcd \xdbd\xd2\x96\xb9\xdb\x96\xb97@f9#\xffq@\x121\x00\xffa\xc6\xa6&\x8d T\x91\xdaD\x17\xc48lo\xab\xf6c\xcdGq\xa0+?5 _\x88\x1b\xa9\x9f/^\x90\xc9\x93\xfb\xc0G\xe6\xac;\x93\xc7\xe3'\xe3]\xe7\xf6\xb5u\xd8,\xb9\x91\xfb\xe8\xc9`(m\x91p\xdb\xa5I\xdd\x9aG{bx40\x8f\xec}\xa8\xe5\xd9\xc6\xa1\xb7\x04;\x1e)kw\xd6\xa2/'\xe0&\x8a\xfb-\xe3\xce)pV\x85\xd5\xbb\x01\xac7\x1b\xe8O\xd4T\x8a\n\xdcL\x06\x11\x1e\x08\xf4\xc7\xed\xe6\x9e\xcd\x16\xa1\xa1\xb4\x04\xf2\x8c|&N\xfd\xc4u\x1e=rDY\xf1\xeb\xb13\xac\xb8\xf3\xb8\xe7\xf8WbB\xf6,\x83\x9f\xa86\x9d\xe6\x97Y\xc2\x04\xd2\xe3EX\xe0\xdb\x7f9\x1b_\\\xb0\xf4-\xf7\xf3\x90\x81!\xdeP\x86\x87\x8b\x98\x97\x01\xa6\xfe\x90\xf0u \x86BG\x1dm\xb6:p#w\xff\xf1n}\xe5\xf1\"\xeb\xd1\x00e#\x02\xabY\x83\x8a\xf7h4M\x1ejM,\xa7\xa2\xa7MIwL\xc5J_\x12\x1dw\xad\xda_\xae\x93\xefyDU\xad-\x83\x18\xb9u\xfb<\x0eK:r'\xd8\x96\x16\x19{O\x1f\x9b\x18T&=\xc1\xc7\x9a\xfes\xc7Z\x9f;-\x07\x9en\x99\n\x1a\x8d|o\xab\x1fU\x016\"n5\xe8\xdd`@\xb2e\xc2\xafH\xc4\xae\x88@2`\xdc\xe0:\xc74\x8axF\x04oJ(\xf1\x04\xc3IhJh\xf1%\x07\xa1~\x14\x17\x8b\x99\xdd\xaf\x95\x95y\xff\x862\xb3e\x1f\xd9\x9c%,\xf2t\xf3\xc4\x87\xc8\x92\xa6\xd1w\x19\xb9d,\"A\x14d\x01\x0d\x83\x94\xf9dD\xd2\xd3\x05\x1b\x93O)+\xeb\x1b\x83\xb4\xa2xu\x07$\xe3\xf2d\xcc\x96l5&\x1f\x19\xf5\xc9J`m\x9a\x11\x15hu~9^\xb1\x87y\xca\xa4\xa8cT~\xc5\xa9\xdf\x8a\xe1\xa3\x91\xb5-~\x1b]A`\xd0\xcb\x95 \xb8\xe1&\xaf\x80\x0b\x08\x95kn\x04C^r\x1e\xa2\x19\xa2\xb1h\x86\x8c\x94\x8bf\xc9\xa3\x15\xcd\xd2\xce\xc5\xb1\xac\x9b\xd5\xa5\xa5\x114\xc2[\x0d\xfdy?Ge\x8bLK\xdb\x90r\x9a:\xb2\x14\x95\xf2Jk\xc7,\xa5xd\xab\x0fr\xa4\xc7F$\x17\xe2\x01\xe0]\xb8\xa6b\x18kW\xbf(\xff\x1e\xd5\x160\x91r\x83\xb1\x99 \x0e\xec\xa2\xec\x1d\xf0F\x83\xa8o\xa2\x14u\x82\xd14\x0d\x16\x10\x9e\xbb\xaf\xb0\xe79\xc9\xc8\x0bB\x93\x05\x88\x94S%\xe6yN\xb2\xedml\xaf\xe8\xa5^\x14\x98e\x88\xe1t\xf1\x89\x84\x04\x91\xe8\xa1j^y,-i\xfa\xfe*R\x8e&o$-')qqN3\xa9\x1b\x1f\xcd\x92\xf3\x1e\xd7\xdd\x86 9~\xe8\xb4\x8d8Q\x9d\xf2\xccN\xa9Q \xdf\x93=\xd1\x1e\xc95\x01\x8e,\xfb\xbdwN\x0e\xab\xaf\xb8\xfb\xd4\x159 ?p\x1e2\x1a\xa1\xa6\x04\x0b\xa2\x0c\xe3\xe7\xcd\xbc\x1b\x84e\xd3\xe9x\x14n}S@\x0e\x89\xbb#\x0e=5\n\x03)\x81\x88\x9b\x88\x0b<\xa2\x80\x8b\xc0\xe6\xf7\x05\xbd\xe3\x8d\xe3H\xf2z\x1dNb\xdc\x99^u\xcd]Y\x8a\xe6\xd58\x00\xe5\xdb\xbdp\xd4\xeeJ\xcb\xd3\xe8\xcb\x17\xb2%\xe8oZ\xd2\xdf\xba\xce\x12j e$\xf5\xb2\x07\x82\x0d\xa8\xbb\xb2\xd5\x0f: \x95\x11\xbd\x8f1\xa9N\xd1\x1d\x87\xc5\xaf\xe0\xad\x96\x91\xa9\x00\x9a\x83\xe3\xd70\xdf\xa6\xe3\xf3\x96%\x0b\xe6\xdfit\xba$OX9\xb1_/\x8b\x02\xed\xacf\x8b\xf3j\xd2\x85\xa1H\xc1N\x1a\xcb\x08\x1b\xd3\xcd\xa6oKV\xb9*\x07O\xcc\xc8)L\x0b>\x81\x06\xa89}f\x0d\x9bL^\x90\x9e\xe6\x97\xa9\x97\x04\x97\xfd\xe7K\xb5\x1d\x97\xa9\x89\xc6\xe4Q\xaa+\xed\xd3\x86,\xb9)\x1a\xd1\xb7\x0d+p\xbeQ\xffZ9\x1ef\xe2\x81q\x1f8.\x92%\xdc\x92F~\xa8\xa8\xe2\xf1e\x10\xf9\x90<\x18\x0cI#\xdbE\xfc\x8c\x10\xb47\x9f*\x1f\xef\xd5\x9f^=qu\xb3\xaa\xbd\x13\xecd\xaf\xa6\x15\x92\x83\x97\x81\xff\x96\xe7Q\xe7]\xab~\xe0\xa3\xe64\xb9\x9b}\xef\xe7 \x0c?2\x8f\x05k\x84\x93h\xfb\xf0U\xcbN\x90[\x0c\xdc\xc3\xa8\xb9j\xf2@M\x7f\xe5\xfaik\xea\xa7hu\x9b\xd1\xf9\x84\xcc\x94)\xb3\xe8\xd5\x8e\x02~\xa3\xaf\xd7\xb17h\xa5\xd7\xcf\xc2jz\x15c\x18\x19\xb6q,\xb2\x9b\xecd5\x7fm\x9c\xf7?0\x16}H\x98GC\x0f\\\x19\xf9\xca[\x7f\xadi\x06H\xc0#\x10\xa3T\x1b%o\xe6\x99\xaf\xb4\xd4\xab\x99v\xa2\x0b\x01\xaa\xf1%\x0d-|\xfd\xd4&\xc6\xc4\x04}\xa7\x06\x14\x1fk\xfb\xb5\xcf\xa1VCY}\xf9[\x02:\xb9\x07\xc6\xd8\x8eK\xe9Z\xfb\xd9\x07\xec\x8b\x14'\x00\xd1\xd9\xd9L]\xe8\xaa\xc4\xc3m\x1c]\x9f\xea\x08&\xcd\xef\xa2\xf2\xebO\x96\xdcl\x00M\xcc\xab \x1a\xc7\xe1\x8dk\x11\xe2`\xcfW\xe2\xd1vo\xc6\xb6G}s9\x06y\x9a<\xb0\x97\xbdk\xb0\xcb\xb3\xccGQ+6r^\xee\x8a\x0e\x8aI?\xb0<\n\xe7\x9a\xfd\xcaDp\xd3\xb5\xc4\xc8o|\xb7\xab\xd1\x18\xf4\xc7#\xedb?\xd2k\xa8z\xe1\xb4T\xef\xc0~\xd3l\xca\xb4q\n\xc8|\xbe\xb6\xaf\xb8\x16\xe9e\x1f\xbc\xb5`\x99\xb4\xb7\xf2\xb5zu_\xec\xa59\x8c\xea\x15\xc7\xf5\x908g\x9cP\xcfci\n\x97\x12W\xb2\xfa\xe2\xf6kHnxN\"\xc6|\x92q\x88\xe0\x1f\xcco\xc8\x1fD]kNI\x96\xe4\x8c|%T\x16\x9f\xf3<\xc9\x96\xc5\xe50\x01\"\x12\xeeF\xe0~q\x00\xf7HcgP\x1c\x04\xf3t|U\xedQ\x9fq\xe8\xa7\xda\xa5\x1f}\xcdi;\x10\xdb\x11qT\x96l\xae\xab\xf6\xa2\x81\xf9\xd1\x96\xe5\xdf^\x0b\xad\x9c\x02\xb6=\xd7^G\xae\xeb\xa8\x1d\xbd\xf6\xdd_\x1cw\x16\nb\xd2AAL\xfa\xef\xfc\xcd(\x08\xaa\xefih\xbb`-\x95{\xbeuX\xc2\x8e0Hp \xe6\x80\xf5R\xad, /e\xba\xce\xc8!\xd4m\xc2\xb6\n\x88:\x84\x84\x1e\x12\x1d\xb1\xfe\xccU\xb4D[~@\x0ee=;dJ\x803u=\xbd*l\xe7\x8a+x\xa7\x10`\xe7UXT\x82\xe2\xb6]\xc5\x16L\xf2\xd6\x96\xeb\x81\xd6\x07\x8c\xe6\xa0\x18\"\xab\xe8\xc1\x95\xbcqN\x0eIN\xa6jY6i\xc8k\xa5\xf9\xc1\xd5\xf5\x99\xca\x01\x1e#q\xff\xf8\xda$\x95\xbb\xee\xd3d\xe0\xe9\x1a~\xc2#`\x10\xc0\xfd\x03\xd1\x88TX\xc7j\xc5\xd5U\xb4l\xac^um^\xb5\xdf\xaf\x16Z\x93\x03\xe5!\xe0~\xb4\x1e\x87v\xa5\xbez'\xc1K\x90ti[\xdcR\xd5\x8f8\xcd\x98U-\xea\x9a\xc7KR\x83\xa9#\x19\xb0>\xd4\x1a\x83\x82\xd3L\xd4K\xf9\xe5\xda\x81T\xa8G\xf2\xb2j\x9bj\xa44\xbf\xddyN\x02\xf2\x82D\x85zf\xb0\xbd\xdd\xc4\x91\xc0\xd3p\xa5\x194$\xd1,8\x07a\x12\x9b\x89\x9f\xe7\xf2\xeeE\xfe\xb6\xb6\xad\x18\xac\xda\x0e\xf9\xb6Sh\xd9\xe7\x05\x00\xca0\x1b\xd4|\x02\x82\xce#\x00\x06\xdb\x7f\x9e\xa4\xf2\xbc\xe9\x89&\x957\xc2\xa7J\xb4\xd6\xd1[(QV\xd0J\x83\xe3#C\x0c\xb9\x08\x8e\x04\x1a\xd6\nv5\x12\xaf\x17\x94\x1aw8v[\xa0\xcaS\xd2\x0e\xb4`\xd9\xcb^\xb5\x01`\x12\xac\x99\x0fd\xd5\xab\x84\xaf:J\xac\x82\xeb j\xc9/\xceS;H\x06\x8a\xdf\x08+\x8dh\xe7f\xd6\xf1\x8fZG@\xee\xc3\xd6f\xca\xed\xdc2k4\x0c\xc1\x05E[~K\xf9B\xf7\xb8\x0d$\xc8n\xfa\x0e\x85\x81\x0b}6\x0f\"V\xa0\xa0\xe6\xce+A\x17,3\xb0\x15\xc4\\k\xc2s\x1b\xfc)\x98 %\x02[\x89\x97,\xf5\x92 \xce0^\x8fV\n\x19\xdaMMPA\xcaPAEP\xa5'\x85[\xe9\x17\xb4H\xea\x86C\xe2\x0d\xc9\x1cCD\xa0['\x0d-L\xcd:\xcf\xc6\x8e\x0bx\xd4\x0eG?\x023\xc4`g\xeb\xb5\xf0\x12\xb1h\x7f\x0cX\x1d\xb83hc,\xda\x88\x16\xc1e+\xe2S>\xb8\xf8\xb0}\x8a\x13\x1d\x1d\xd8\x17\x84\xb1G3\x97\xbb\xde\xc0\xc6\xe5\x14\x87\xdbR\x9e[K\xf2\x82\xf8\xc5\xb9\xb5\xbd\xbd\xec\xea\xb8 \x1b\xfc\xd9\x121+\xd0\x8fRN\x9e\xad\xc1a]\xa6\xfe\xcfE;\xe7\xb3\xf5\xb9\xd5o\xbd~\xc4WV`\x1f\xee\x0d\xc9\xbaC`\xd8O\xfc\x1a\x89\xb1_\x0f\xc9\xaaC\xf2e\xcaW7\x16\x83\xa1\xa9j\xa56%\xfeMp\x14\xd48\x12\xab\xde\x97\x12\xb7\xd7Y\xd8\xed\x81\xa2^\x1aL\xd1\xf8\x90\x04\xb8A\x9a\xd6\xdcn\x0e:\x084\x9a\xb3%\n\x18\x96\x08\xd9@\xc6\xbaeWD)\xaf\xbe\x0d\"\xf0fH\xd8\xb5\xc7b\xd8\xcf\xdc\xf3\xf2$a\xfes\"\x9a\x9f-\x19\x89x4Zi@\x9f\xad \x8b\xd6A\xc2#\xe0\xab\xc5\xa2\x06\xc9^\x1e\x86\x04\x82\x9a\x92\x15KS\xba`\x84F>\xa1\xbe\x0f\x11OhH\x96,\x8c\xe7yH\xaeh\x12\x05\xd1\"\x1dc\xda\xe2,L\x99eQ\x89>\n\xcehV\x1f\xa6s\xbb\xe0\xc3\x83\x9d\x86f\xbb\xd5\xa1\xc8\n\xbf<\x0f\xff#}\xb8\x18\xf6\x13\x1d\xeau3\xf3\xb6\xb7\x9b\x01\x1c\x88d\xfa\x07\xd2\xee\xe1\x808\xaf\xa35M\x02\x1ae\xe4\xa7\x80K\xe1\x15b\x00\xd1H\x91\xf2\xact\xd2\xec\xcc\x1f_\xf1\x1d\x828Hi\x02\xea\xd5\x87\x89\xd0\xa4#\xa8l\xd8A\x95\x13C}L\xbaE\x91\xf6\xd1!\\k\x83<\xb04\xaf\x9a\x0c\x86\x98\x8d\xff`Hr\xd1QO0d\xa0h,\xc5o\xa2\x7f\xdc\x8d\x86\xe4\xe9\x90\xa4\xd8\x01T\x1c>s\xe3;\xcf\xc9|4z> \x01\xa8\xfc\xcd\xe6\xe7-R\xa2\xeaR\xb3\x99\xdd\xa2\x0b\xcf\x1c\x8c\xde\xbe\xe5\x8a\x06\x8b\xae\x8d&C\xa2E\xbc0U\xe4\x90\xec\x80Nvy|F\xe4\x05I\xe0\x86R\xe9\xd2\xb9l\x16\x9dK.~\xf0\x1c\xa7b\xea1V{o\x99\xc6\x9a\x96;\xe6\xc9\xa3.{d\xac\xab\xa6\xec\x06\xd6\x11w\xb3AE\x90u?\xad\xdb{\xba\xffo\xd1\xbcF\x88t\xd9\xbcI#\x02\xbbB7O\xea\x88\x82vK\x07\xba\xfa\x89\x9e\xad\x89\xcb\xca \x8eA\xc3\xb7\x91\xbe(\xe2\xa84D\xac\xd3\xd9\xb9E\x9e\x91\x835\xd0\xc0u\x0c\x1b\x0c\xa0\x88sP\xe0\x83\x8b\x00*\xe5\x13L\x9c\xfc \xd1\x8e\xc6q\x9e.\xdd\x1c_\xbb]\x06\xb4\xdd\xbb\xae>\x06\xba\x7f\xf5^\x14Hr\xeb\xa0.]%\xd5\x9d\x1aDj^` 3\xd9\xfe\xba\xaa\x9e\xc6\x81\x9b-\x9f\x8e\x88\xdb\xdaM\x1321\x1c\xe2j+c\xb3\x83\xaay\x8f\x8c\xebdx\x95\x14i8\xd3\x05\xd4>R\x8f\x14\xb9B=\xacR\x0ff%N\x943\x81\xa0\x9c\x90\x03Q\xf5!I\xc6?\xe4\xf39K\xc8T\x99}\xdaX\xb3CB\xc74\x0c\xb9\xf7)J\xe9\x9c\x15\xf0\xd5A\xee\xbd\xbb \xa9;\xed\xd21\xca\x91\xc3`]h\xa4+e\xe4\x06\x04QL0\xdc\xc6\xb8\x11h\"\xb3+\x02z\xdez\xe1\xa3\xba\xe3\xc5\xc7=\x1e\xdf\xb8\xc9`h\xf52\xf7uP\n\xf2\xdc\xc9\xde\xa3A\xe1\xeek\xf3-\x80\x0c\x88q\xe64\x1bi\xf4\x1d\xd9\xe9\x99TP#\x07\xe4(I\xa8\xe8\xc5\xa08\x99\x9e\x0fH6\x8b\xce!0|t~\x1f;\xa2\x13\xdfO\xf6\xefr\x1c%\"\x13P\x9d)+\xbc\x9f\x96\xed=\xedt\xdcqO-\xab7+\xba\xff\xa3C\xa3M\xfb\xa6H\x14\xabQ\xdd\x05\x16\xc9\x8a4\x82\xd5B\x13\x03\xcf\xccv\xce\xe5\xa9\xa0\x8f '\x88|v\xedH\xcd\xe0d\x0co\xd0\x0e\xf85$\")\xce3\x95\x14\xe7YeSm8\x93\xbb\xbb8\x93\xb0\xff\xb4N\xae\xabS\xfb)\xee\xdap\xff\xe9\x1e\xca%\xec?\xad\x9f\xf2b\xd4\x9d\x99D\xb8\xdaQ\xc0\xb9\xd3d\x19\n\x98\x974cu\x00\xcf\x04xK\xe3z\xfe\xdc\xcc\x7f\x07\x8eD\xea \xb1 \xf2\x91-N\xae\x1b\xb5\xf8&\xc8)\xcb\xea\xf9\xcbJ>Lm\x1dd]\x01\x01\xe9_\x1dde\x82\x00\x86\x91GF\x1dnQ\x1b\x14\xfaS\xc0\xae\xea@7&\xd0\xab\x90\xd3lo\x17\xea\xac\x03^6\x00\x9f\x01\xd4\xb1\xbbA\x1d\xe2\xef\xc4Z\xd3\xde\xc65\x89\xbf\xbb\xbd\xbc\xe7j+a1\xd6\xb7]\xa9\xfb\xb6\x1b\x90G\xf8R\x9d<\xc3tk\x04\x1b\xdbzH\x90\x9aL\xcd\xc9\xb8\x143;-\x91\x0c*^\xf5\x9aHH<}<\xfb)\x83\x07\xc1~\xe0\x00\xa6\xbb\xbf\x06@\xcd\"V\xb0i\x01\xbe\xf3\xf0\x18`\xdd\xbb\xc5\xb2O[93\xbd\x04,\xab\xa4{\xe3j\xd6h\x7f\xa76\xb2bYL\x9e4\x97\xc4K\x9a\xb1q\xc4\xaf6\xc5:\x9a\xdeA&0hj\xbf\xf5\xe9\xfbZ;\x02\xb5\xf9 \xc8\x01{\x8e\x88K\xc9\x08\xf5O+\x98L\x88\x86#\x0e\xa7\xef\xc9\x0e\xf6\x15\x0d\xb7\xbd\x9d\x91\xef\x0fHapnx\x8e\xdei\xaa\xd4}\x95\x1a\x82\x19\xae\xd7W\xdb\xb8\x9a\xcd,j\xbc'\x89\xe1\xe4\x11.\xe3hluEn?\xc3\xc9\xed\x06S\x9a\x93\x03T\x0d&\x85\xf4\x86\x16L\xd8}\x95Y-\xe0\x011\xde\x89G@ \xdb\xcd\xe0\xf0\x92\xb1\xbb\x80\xc6L\x95\xd6Os\xd8\xc5\x94\xa0\xf3[\xd5\x0c\xc9\x06$,\xf1\xb1\xe6|\x80D\xcafQ\x1d#[\xa8+o\xb3\xa9\xda\x7f\x86\xc7\x93\xd8\xdb\xe9\xbe\x1a\xb7R\xbc\x05\x08v\n\x13\xe3\xfb\x18iG\xf4\xbahU\xa1\x90\xfc\xaf$\xbf\xa2YPeL\xec\xbbR\x14\xd9\x85\"\xbb\xe7\x16\xc5\x10\xa2\xe7\x85\x1aW\xd6\xda\x9f;\xea\xe6Ip\xdan0\x1a\x81mu\xd1\x06\xa9Y\xcf]\xf3`\xcd\xe5U\xb4l\xfc\x0b\xb2g2\x06T\xdak\x81^c\xb1p\x05\x95A\xb6\xb7\x13\x08\x16h\xc3\x12\x9aP\x8ef\x89E\xf5\x1d\xcc\x95\x81\xdcNe4\x8f\xa6\x92\x92U\xb8V\x0bip\xeb\x83\xbeyp\xab\x95fa\xc2\xf7\xf6m\x11\xe5\xfap\x83\x81\xab\x83='bS\x92m\xe28\x1b6\xbd+\x12\xcb\xfe3\x1c\xcb\xed?{j \x1bWo+\xd8/\x03j\xf2xH\xaa\x8e\x8aB\x9a.e(\x882\x91\xe6\xd9\xb2\x9a\xb2\xe4i\xcd\xfd\x8f\x18\xa4&\x8cR\xb0\xae86Jku\xa5\x8c&^-\xed\x1f9Knj\x1f\xa0\xd9\xb2Y\x9dH\xad} asRs)T.\xb2l\x0c!P\xc9\x01\xb9\x1c\x92l\x9c\xb0\x94\x87\xebN\x97\xaejr\xc1\xc7\xdd\xd6\x04\xfc\xba\xe9\xa2\xa6\xaf\x9a\xafF\x95r\x1f\xf5\xac\x98\x91C\xb4\xf2b3V<\xac\xc3g\xe6\x0eRIl*y\x16H}.\xad\xd7D\x15\xdf\xf9\x01D\xe0\x96_\x81\x18\xcb\xa6\x1f\x0f\x99\xac\xafZ\xaa\x0d\xfb\x94\x88%\x15TW.\x85\xd0\xc1\xee\x8c\x8e~\xdf\x19=\x1bo\x8f\xce\xb7\xa7\x83\x87A\xf3\x98}8\x9d\xed\x8c\x9e\x9d\xff\xe5\xcf\x0f\x9bG\xed\xc3\xbf\xbb\xbf=\xfc\xed\xe1\xa1{\xb8\xf5\xdb\xc3\xc1\xec\xef\xbf\x1d\xfe\x96\x9e\xffe\xe0\xfev8\xfb;\xfc:\xac\x97\x02\xb3\x04\xe7\x0fgH\x9c\xaf\xe2\xcf\x17\xf1\xe7\xb7\xdf\xc4\xdf\xbf\x8b?\xff\xe5\x9ck\x03\xa1\x99\xf3B\xa4|\xef\x0c\xc9w\xcew\x90\x07q\x80E\x81\x04\xfeF\xf07s\xce\x07\xcd\xd3{\xe6|WV\x15\xd6\x00\xe6\x00\xf0\x1f\xa2\xf8C\xf1\xe7P\xfcy.\xfe\xfc\xaf\xb2\x90W+\x14C\xa1\x12\xfe\x7f95s\n\x1fFd\xb6-\x87\xf4h\xf4\xb7\x8b\xd1\xf9\x1f;\xc3'{_\xeb\xa3\xb0T\x83\x8f\x80\x0e\xdc\xf1_\x06u\xf85ja\xf8\xdftM\xa5!\x1b\xce\x958\x06\x80\xd3\xe0(j\xd6{\xabo\xff\x89\x05\xfa \x88\xcb\x84V.r,\x86\x89s[\x99\x05\x8f\x976\x83\xc8y`\xe3\xdf\x1ch\x84\xd3\x92\x99Zs\xe7-%Uk\xacEE\x83:\x87\xedF\x9d%\xfb\xe8Yri\x93q\xfc\xff\xec\xbd\xeb~\xdbF\x928\xfa}\x9e\xa2\x84\xec8@\x08R\xa4\xe4+mZ\xeb\xc8\xcaF3\x89\xedc\xd93\xbb\x87V\xf4\x87\xc8&\x89\x18\x048\x00\xa8K\xc6\xdeg9\xcfr\x9e\xec\xff\xeb\xaa\xeeF\x03\xe8\x06@\xdb\xc9dv\x07\x1fl\x11\xe8{\xd7\xbd\xab\xab\xe8\xfa:\x17<\x06a\xa6\\\x8d\xc9\xbc\xa2S\x95\xa6\xe4\xb5\xd2\x1b/4R\xa7\x94(\xb7\x1a@\xdde\x0e\xc7\xa1Q)I\xe9\xdb\xec3\xe2\x12\xbaF,-)\x05^\x05i\xb0f9K\xe1\xebm\x1a}M\x19\x05.\x19\x04\"gU-\x81\x80\xc9Q=,<\x01_.\\\xe7\xc81(s[\x94Q\x8b\x14g\\h\xd3\xea|\xe5xp\xc4\xe9\x02\x8c9a\xa8\xd7\x8f(S\xc6&\n\xf3\x9a\x97z4\x1d\x9e\xc3\x04\xff+\xaeV\xbd{\xb7\xbfD\xf2d\x18\xf0%\xa6\xfb\x99@4\xf89 \xe3Z{|\xf5x\x91\xcbA\x9e\x86k\xd7\xf3a\x0fS\x8d\xcb\xb4\xc54\n>\xe6\x06\xf3\x17\xef\xe7\x02&\x90\x91#\xc3\xa5Ew\xbd(\x07\xf0\x16\xcc\xff\xb2\xcc\xf9/\xeb\x02\xc3\x05J\xc1\x17\\\xf8>\x92\x81\xd0\xa4\xd4\xc1\xdfV\xa4\x8e\x1c\x8e\xe0V\x80\x9bV\x18\xc3\x96\xe6\xa9;\xf2T\x10n\xe3\x07(\xa2\xad\xc9N\x1c\xa7\xd2\xc5\xdf?\x8a82e\\\xac-\xfe5\xd7\xd6\xcd\x8b\x82\x91\xffl\x8by\x02\x13py\xe5\xeb\xe9\xf0\xdc\x1b\xe4\xc9\x0f\xc95K\x8f\x83\xcc\xe8>^\x15\x08O|\xa0-\x15\x13\xbb\xaey\x1f@m\xb4x\x19\x81\xab\xa6\x18\xc1\xf0r\xb0\xc6H\xea\xfb?q\x96=\xfd\xe9\xdf\xdf\xed\x9f\xf7\xfe]\xfc\xbfo\xbc\xef\xca\x87\x8dn\x83\xfb\xfb\x0e\xc2\x8e\xea~\xe8\xc3\x81a\xd4{7\xd4\xdd\x9d;\xb0\x9e^\xe3\x8dZ\xb74\xec\x03\xaf&\xd5V#\x91\xd6\xe7\xb0\x87m\xf1-,\x9a\xdf[N\xaf\xcd\x97t\x95&}\xe6\xc3\xb1\x8f\x9e\x87\xfd\x91\x8f\xde\x82\xc3\xc7\xf0\x0c\x9e\xc0F]\x85zfNP\xc6\x1f\x81\xec\xeeK\x1c\xbeD\xf4\xcd\xf4\xd9\xb9\x88/\xdc'tz\xcf\x87\xf4\x12\x9e\xc0{z\xcd\xfb{iP\xaa\xb8^J-\x1e\x13)\xa1\xcaGpY8\xffpJ\xf2\xef\x98\xa9\xbb\xf6\xd2\x87\xf7\xa2\xdf3ZO\xbcw0\xf4\xe1\xd8S\x90\x81\xaf\x8e1\xa1}YM\x98\xb3Y2go_\x9f\xaa E\xee\x99\xe7\xc9\xb5\xb1(\xbd\xda\x82-\xba,\x18_\xf2\x97\x8f\x8bi\x96\x17n\xf1y\x0bG\x15d\xb1K \xfce\xddG[\x95\xf7\x95Uy\xef)\x12\x94f\xec\xfb$\xcb]\xaf\xae\x14\x95\x7f\x7f\xf8\x00\x8e%\xb3\xd6+<\xd7&\x9c(U\x12\x8e\xe7\xce\xb9\xe9[\xe9\x974'\xf4adP\xd5\x11\xec_\x99\xef\x81+\x00\x7fS\x1d\xb2\xa0\xec\xfb\xef\x06\xfb\x9e\x0f?r\x82\x83\xbb\xe8\xc3\x1b\xb9b\xb4\xa1?6\xee$\x88Y\x9e\xc2\x04\xdeL\x9f\xb5\\\xa2?Et<\x15\xd4e\xdezq^\x0d\xffgA\x85_\xd0\x10_\xc3\x04N\x15\xa0\xbd\x80'\xf0\xfa1\xbc\xe0\xa3<\x1d\xccVAz\x9c\xcc\xd9\xb3\xdc}\xe1\xc1S\x18\x1d<\x80#\xf8\x19z\x13pn8\xcf\xc5?O\xa7/\x1a\xc6\nrY\x7f\xee\x97\x8b~ \x19\xc2\x198\x1e\xf4\xe0\xd2\x80\x15\xcf\x8b\x12\xedc\xb9LY\xf0\xbe\xb1T\xdd\xbc\xd4\xfc\xa5\xfe\xd6\x88GO\xe1\xe0\xde=\x99\xeeA\x1b\xbd\xe3H\xc9\xc0\x86\xe8eV\xec\xc3+-vvQ%\x1d\xe4\xc9\xb3\xb3\xe3\xd3\xd3\xf2\x17\xd3\x05b\x0e2\x7f\x93\xbd\xa0\x15\xe6\x08\x9c1\n\xa1\xea\xcd\x98\x83\xbeq\xbe\xdfu%D:\xe9\xfb\x0ez\xf07]\xe8\xeai\x8d\xf0))\x01\xc8\xba\nRb\xf2\xcd\xeb\xdb\x07\xce\xbb9\xccp\xea~)\x08\x9d\x06H\x97^+\x1f\xbf\x9a\x9e\x9c[.E\n:\xc5i\xd6\xac\xe06\xad\xa4\x8a/\xf5/\xbc\x8e\x95L\xf1\x8e\x05//\xb8\xd1/\x8d\xa8\xcf\x1b\xfd\x96\x8b\xd8q\x8dm\xfe\xd2\x80\x02\xdf\"\xc9\xff\x05\x97\x05\xabg\xb3`\xc3x_\x8a\x17!y\xfe\xc5#\x84\xfa\xd6L\xde\xeb\xf0^\x97A\xffR\xe2\xad\\\x92/\x18\xef_\xb4\xbd&\xcb\x9e\x92\xbe\xfeR\xe1\x8aC\x1f\xfeR\x05`\xde\xfc\xf7\xe5\xe6\x8f\xaa\x88\xaf\xad\xe9\xf7u\xf1]u\xf7\xbdW\x11\xb1\x8b/RH)\xc6*\xcb\x94\xa4||\xe9\xd5G\xfd\xfd\x8eb\xfdeQR\xd3A8\xb1[NO\x10\x90\xcb\xb8\xa1\x82w\xab\xd2\xa6\xfa\\9\xabj62\xbb\x18\x0d\xc8\x04e\x05e\xd0\xea\xd8\x04\x8d\xbf\xaa\x88\xb54\xc1&R t\xaf\xbfA\x0f\xfe\xda\x80\x89\xba\xba&\xf43\xfc[\x1a\x16+JP%^p\xdd\xc8i:eU\xd4\x05\x05P\xc3\xa0\x992~\xe2?\x06Lc\x9e\xa7\xc5\x199|\xb6\x1f\xfa\x9c\x88\x92 \x7f\x02\\N\xae\x03\xae\x8aM\xac4'\xec\xbbNhc\xf3&\xd4\x0b\xa6Z\xcc\xe2\x95\xadPh *\x1b @\x96\x87YP\xed#2\xcb\xdd!\xf5\x14+\xe6\x18#\xc1*\x9c\xd1\xb0.\x86\xe0p\xberD\xc0\xc7r]\x0ex\xfc[\x0f\x8f\xad\xb6r\xe2\x18\xa8\xabR\x94/\x14-\xca\x16ij\x0fB>Ht7/phz\xf4\xd5y)ZOSLQ#B\x96\x89\x8a\xc7\xe5E\xec{\xab:q\xber|p\xfexp\xe8\xe0\xd7\xd4FEL\x87<\x96\x83\x18\xdc\xa2\xf2\xe1\x8b~.\xe3)\xba\xd5\xd2\x97\xe1\xf4\xc7du\xac\x18\x1d\xcd6\x91\xdcl\x16\x85\xe24K\x1b\xa1O\xd4\xb0\x81\"\x97\xe2\xb7`\xbb\x14\xc2\xa5\x8aQ\x9e\x8f\x14e\xf8\x18\x02x\xa2\"\x84>\x86\xc0\x9ef\x1d\xfdO\xa6\x81\xc9\x83q\xba=\x17\x086\xdd\x9e7\x8c\x8eB\x93\nQ\x02\xbd&V>\x97\xaa\xc9\x96\xc89H\x11\x0cH\x1d\xf5i\xdc$\xae\xcb\x0eL\xe1\x1c\x85\x82\x90\xd4\xba\xd1\x9c\x93\xd5\xc3\xac\xa2Uu\xf8\x18\"x\x02E\xd6\xf9\xa8Y\\\x9c\xc1\x04\xb2id\x11\x17\x1d9\x16B\xb5\x19\xe1\xf1tF\xd1\x08f\x06\xf1\xd5z\\\xbe\x9c\xc6jf\xe2:zI\xc0\x88\xcb\xd2E\xacNN\xeb2\x86ya[6\xadXW@g_\xf5\x8bHU\xd3\xa2\xa3\xb4\xbe\x9c\x16u\xcem+Z\n\x96T\xdd\x9e\x0dm\xcf\xa6dB\xda\xb4\x1b\x1e0\x04\xf1t\xd3\xa0\xcc\xc7\xd39\xed\xc8\xdc\x12K\xcc\xf8\xb6\x11L;l,\xa1\x82f\x95-\x16\xc8\xe7\xb8\xc09\xf8\x87\x0f\xb0./\\i?\x99\xfaQ\x9f\\CD\xb7R@D\x97U\xc4\x16O\x9a\xf4\xf7\xb9\"\xb0\xd2X\xee\x9e\xcb\xa4\x8a\xb8\x1a\x90=\xc0\xabEx\x92O1\x83\xa2\x162*V\xd2E]V\xd6\xaf=$\x07\x1c\xa8VB+\\)\xe3\x03~]\xe9\xfe\xf8\xf5\xcf\xa5\xf5Y c\xc3\xbe!\xdf\xbbmC\x94\xf0\xcf\xc4\x9f\xbcM)\xff3\xfa\xcb\x17\xd8G4LL\x93+\x0b\xb14\x922\xfc\xc3\xd7\xb1tR\x999\x13\xeat,}+\x18\xfeQ\x9a\xc2\x87\x0f\x107H\xff @\xfc\xaa\x8c\xe8\x16\xc1R>x\x04\xd8\xa2\x03\xf0G\xd1\x90+\xe8\xc1m\x87\x05T\x18\xa1y\x99\xe8\x02\x91\xa2\xd4\x9f@\x83\xe4IU\x99\xce9\xe2(\xa1x[H3\xf5\x05\xb8(\xed\x173\xb6\xc4:\xb5t\x0d\x13\xb8\xe0\x8d\\\xd2\x16a\x9bD\x17E\xedz\x9d\x13\x98\xc0u\xfd\xf5MmR\xdad\nL\xe4\xfdL\x0d\x11\x17\xcf8\n\xafJ\xb4\xa0<\x90z\x1b\x1a\xb9\x06:\xfc\xd0X\x8bA9?\x13\x1c\xa5\x84\xa7\x1a\xdc\x92sN\xb1\x08\xae\xe0\xe77\x1c\x81\x8f\xe8\xbf\x89\xfc>\x86\x1b\x85\xb0\xf4\xca\xf34t\xe2\x0d\x97YM\x99@P_\xac\xdc5\xabu\xbd\xa2\xaeW\xd45\x93]\x17\xb4\x82\xa9\xae\x15q\xc2\x0c\x7f>n\xedu\xad-D\x135+^\xef\xc23\x13\x01)\xca\x90R\xa6\xba\x8e\x15\xb6[ B\xa9.\xbe<\xd2\x7f\x8c\xb5\xba>t%T\x1c\xbc*WY\x903\xf0\x8d]\xa9\x13[<\nso\xe8*\x8b\x0f7\x83M\xb2\xe1\x18\xc9\xdf\xdcH\x17\x96\x95\xd7\xb5[K\x7fx\x08\xffb\x1bE/\xd3\xb71Et\x9e\xbb\xb2\x19\xa3|\x8c\xe0\xe7\x95\x17M\xad\xfa\x8d\xe4A>\xb8\xaf\xb8\xd2\xbc\xe7\x16@H\x7f\x15\n\xed\xbf;\x1eyD\x17\xdf\x04b\xfc\xbb#\x8e\x92\x14\xf1~U4\xac:+\x0d\xe1U\xc1\xfd\x1a\x88`\x87\x85\xf2A.\x89[`=\x8eF{/\xe9?\xdf\"E\x93\xb5\xf2p\xa4\x13\x901g\xa2\xa8\xb1\xc9\x11\x1c\x15\x83\xc1\x8f\x9f*\x02\xee\xdd(xQ\x93\xdcT\xbd\xf6J\xbd\x8a\xb1\n\xad\xb5\x18D!\x9dJ\xd2\xd1*\xe9+\x99\xe5\x98v\x1e\x8dw\xfd\x91\x87^\xb0\xefiA\n\xca.\xff\xba)\x0c\xfaB_w\x06\x84e\xc7\x88q\x03\xf9\xcb\xd3\x10\xf0X\x9c\xef\xfa\xf0\x12\xfb\x92\xb2\xe6Kx\x8a\x12\xe8\xcb~\xdf\x03\xd9\x0e\x1e\xc0\xdeL_\x9e{\x9c\xd4!L\xcd\x98\xfbR\xdc\x7f+:\xe0J\x7f\xf9\xb3O\xa6\xe81<\xc3\x81\xd5>\xf6\xfb\x06Z\xbcG\xe7\xd5'\x16\xc3\xf7c^\xed1<\xf34*\xcb\xc7Pi\x89\xb2\x10\xead\x9a\xaf\x95\xb8\xfb\xf0\xf0\xfe\xdd\x07fM\x8ck\xfc\x87\xf7\xcd\xdff\x18f\xdc\xf8\x89\x83\xf9\x81\xa5\xda\x867\xf9\xd0\xfcm\x0e\x13xP\xbd\x13'\x1f\x8ez\x0f\x0e\xcc\xdf\xb8n9:\xb0\xb4\x8a\x91\xf1\xfa\x16]s\x89~\xc97q\xbf\xbfo.\xc0\x05\xa1\xfd\xe9O\xefn\x0e\x86\xfdw7\x0fN\xce-\xe5.\xb1\xdc\xbb\x9b\x83\x93w\xdb\xc3\xe1\xf0\xe0\xdd\xf6\xbb\xef\x86'\xfc\xdf\xfb\xa3\xf3\xfd\xa5\xb9\xd2\x855\x8f\n\x7f\x92+\x96.\xa2\xe4z\x0c\xceK\xf5'Em\x8c\x19\x9bgp\x1d\xceY\na\x9c\xb3%K3\xc8\x13\xd8\xa4\xc9\x8ceY\x83b\xed\xc4I\xde\xbf\x0c\xb2p\xe6\x8c\xc19\x8d\"\xb6\x0c\"\xd1*\x17\x1dn\x1e\x0e\xc1\x8d\x93\x1c\x02\xc0R\x80h\xb4I\xc28\xf7\x9a\x9a\x0d\xe3\xab \n\xe7}l \x9b\xa6\x17\xd4\xb49\xf1\x9d!\x9d\n\x08\xc55\x82>\xcc\xcc\x9f\xb9\x8e\xfac\x90\xaf\x06\x8b(\xb1\xe5\xae\xe4:\x01\x19\xb5\x07\x8b4Y\x1f\x0bo\x1a\xcd\x9dX>\xca\xad\xf8\xcc|<\x00*\xc6\xfe\xeb ^\n/\xdc\x8b)3\xdaE\xed\xad\x1f[o\xd4A\xd5\x1e\xaeB\x85\xa2I|z\xfe\x18b\x0c\xc4\x9eR\x84X\n]n1hI?\xe5\x9d\xc6\xf6\xbeql\xc5\xb0\n\x89\xc2\x0e\x07\xa9\xe1\x00P}\x93\x02y!\xef\x82<\xf8\x89\xb98\xd5\x03\xf4\xfbC\xceON=)\xf4\xe0\xd8\xa5\x13Su\xe6r\xe9s\xc9\xd6S6@\xca \xeb\x15N;;\xcd\xfe\x99}\xdf\xd5\xb6P\xac\x06\xda\x0e\x1f\xaf:\x0d}\xe1D-\x05\xef\x84\xae\xa9\xb9\xa4jk\xee[I\xaf\xe7y\x1c\xb5\xee\xdd;xt\x9f8\xc7\x93 \xdc\xbb\x7f8z\x84R\x0b\xaf\x08G\xfc\xc5\xc1\x10\xe3\xa2\xdc\xbf{ot\x00\xe24\xad\xde\x96G\x01\xce\xb8\xbc\xea\xba\xa3\xe1\xc1!\xdc\xe1\xbb\xf7\xe4 \x8c\x86(\xc5\x88w1\xffq\xff\xde\xbd\xc3\xfb(X\x89*9\x17\xa0\xb8r0\x06\xf5\xe6\x0b\xc2\xd2K\xfbj\x8a\xf6\x10\x13\x9a\x8f\xe4\xe4#O\x9el\x00\x05\xfa\xbd\xa1\xa78\xd7{\xa0\x0e}\n\xa3!\xdc\x01\\\x9e\x0f\xb4\x1dB\xa0\xa1\xb5\xff\x00b\xe5\x18\x1d*\xf2&\x0c!\xcd\x01\xcf\x02\x05\xb4\xed\x08l\xaf\x1aQM\xcd\xa5\x07\x07\x07\xd0\x83\x07\xf7\xe0\x1bp\x19<\x81\x83\xfb\x1e\xf4\xc1u\x87\x18\xcd\x0c7\xfb\xden=\xbf\xb1\xdd<\x90\xcf\x95\xb8\xfd`I\x89\x82\xb8\x80\x98 Gp\xe22\xd8\x879\x06\x95\x03\xbe\xae\xc2G\x81\xde\xe7\xdec\xdc\x8fk\xf8\x06\x16\xf8\xf91G\xe4 D\x1e\xae6\x95\xban\x06\xbb\x13\x97\xe3\xbe{\x8d~3\xf0\x0d\xf0*._\x99\x8d\xb7\xdb\xc4\x7f\xb4\xc3\x98\x86\xdaz\xce\x18L\x075\xf7a\xe9\xc3-9\xe2\x98\x8c\x9a\xf2\xb9\xd0I\xb6\xb5\xd4\xb5\xf9\x16\xbe|8\xbf\xba\xb2\x7f>\xae\x1b\xc8\xe4\x83\xfb\"(\x85\xeeA\xbd\xf6f\x82\x82\xd0\xf3\xe1\xc4\xbdF<\x86\xa7\xc0'xc\xe8\xea\x86\xf0\x9d\xca\xf1\x89\xfe\x11\xb3\x03_J\x0b\xd1u\xaf\x87\xa1\xa7n\xba\xfa\xfcA\x81\xfb/\xdd\xcb\xddp\xfc\xf4sq\xdc\x87\x0b\x9fC\x9b\xb8>QMr!\x1f\x04\xccK\xe9\xc3\xf5\x0c]\xb6\xa4\xb0\x96#\n\xa3\xa8$\x84\x83U\xc9{\xe1\x92c\\\xe0\x11tN\x83s\x8e\x9e\x02\xd5\xde\x13j\xdd\xb85\xaf\xa0R\xc7)\x06{\x99\xc0{\xd5g\xa2\xd5^{\x84\xd9\x97\xed\xa8\xc5\x91)k\x19\xdcS\x91\x81\xfc\x16\x9e\x88,\xe6\xbc\xd6m\x837\xa8h\xba\x0fy\x81\x1a1G\x0d\xf7\x02c\x82pBn\x02\xda\x98C\x12U\xe4\x84\xfe\x82\x96rk\x1a\x9f\xb5o\x10\xa6\xc7\xd2\xea\xe2\xf8{\xbd\x18\xa1\xb8\xde\xef-P\xda3\xfbb\xc9\x07g\xc6IK\xec\xa3\x8e\x1a=\x96\xc8\xcc\xd1q\xce\x919\x14\xc8<\xe7\x0b\x17j\xc8<\xc70(\xdec\x98\x0bd\xe68\xb8\x81>\x87<\xa9\xe8,\xfd\x02\x04^\xb9K.\xf3\xc2\x1f98\x0e=O8\x15\x9c\xb8\xc7\x0dF(O\xf9\xb4\x13OAj\xafW\x97\xf0\xf4\xe7c\xaf\x17\xf3R\xf5\x84S\xd0\x86\xc7\xef\x9b\x84\xa4\xea\x9b\xadU\x17\xbebi\x16&\xf1\x18\x1c4\xe6X\xb4\xd0\xed,;0\xe5\xb2\x96\x0f] \x1a\xc33;\x9b%\x1f\xb01\xbc4O\xd5b\xb4\x10\xed\xfeh\xfe,\xdb<5\x7f\x16.\xf6\xe3\x8e\x12\xb1\\\xd8\xee2\xb4V\xebv\x90\xb3,\xa7\x98|\xceM\xdc\xef;\xd0#\xd2iJ\x99-\x9f\x8f\x16\x02n\x9b\xcf\xdb8\xa4\x19w\x1b\xdfg\xcdh\xa9\xcd\xe8GW\xe6\xa6\xb9[\xb9k\xf8i\xf3\xab\x83\xac\x0fZ\xbeD\x94n\xac\xa6Y\xf9\x88qn\xeb\x8d\x15\xc1nP,g\x14\x02\xd3\xd5c}$\x15\xffC\xdd\xe3\xcf\x90\xe6\x86\xffy8\xb2d\xbb\xe9\x14\xdfC\xef\xbc<\x1f\xe9\"\xd8\xb6\xabb\xbe\xa6\x0c%\xe5\xb9\xf8\x95\xe6\xc9\x91\xaak\xf3\x16K\xab\x88\xf58i\xeb\xec\xc56\x8a:v%\"\x85vjR;1\xde\xad\xf5\x1dC\x89u\xda\xcb|@\x84 \x0d\xf8\xf2\x16z\xec>|\xf4\x88+\xb7\x03\"Kd\xdd\x97\xde\xc9@q\xaa\xba%\xf3.\xf7\xaa^+\x91,m\x8a5\xd2\x12\x99J%\xb1\xa9e\xf0\x81\x96\xb0\x87>\xd4l\xf8x\x84\x81G\x89w\x1cbzxC\xd8\x99\x18\xf2\x8a\x07\x86L\x90\xa19M1zC\x0c\x853D\xe5\xc89\xa8\xb7\x8cqE\xde\xf5\xf6+\xc29\xd3\x0ckU;\x8ct\x01\x1d\xb1\xc3\xca\x888\xac;1\xe6\xa3\xd1q \x1c\xac\x83\x9b?\xb3[\x14v0\x85\xa9zch:\xd2\xcdW\xa5\xaf\x99\x0c\xf5\x19I\xc9 \x13PV\x1bQ\xd61J\xa4\n3\x8c,\n\xbd\x9e1\x833zLJ\xa9{\xe5\xa3\xc9\x9eMg\xc5\xfd\xff-\xfaQ\x0fm\xc6\xc55\x17\xaf\xd5\x81\xa7)5\xc6\x1a\xed\xd7p\x04\xee\x02\xcb\x16gTk!D\xa9wk!\x8c\x8eEY\xfa\x8c\xc7\x94s\xf3\xed\xe1\x85\xe7\x83\xe5b\xf1\x86k\xd6n\xe0\xc3\xdc\xa3\xb0\xd3\xd39\x1e\xb4\xf3\xffI\x16[a\x1cTr\xe0\x9c\xf2\xff}X\x9d\x17\xafV\x16\xec\x87\x02a\x82\x02\x0f\x8a\x89\xe3\xf9\x97\xcc'6\x083\xfc\x9f\x83e\xab\x8by9Q\x90\xb8\xba[CJ\x19&\xb2\x1ecgw\x02\xa1\x8f9m\xf4IWYld\xf8\n\x030atO\x89\x94\xcdA>\xebpB\x95/)gTKm.)\xe5\xe9\x96a\x94\x8bE\x10e\xcc`\x8a\xa4\x06\x05>6\xe7B\xc9\xbe\x0b\xe30g$\xb1\xd0\xc1s\xbd\xbd9[\x04\xdb(ol\xc9q,@\xf3\xd1\xcc\xce\xeb\x84\xb2\x16sX\xb4l\xa7\x97\xbe\xc6\x0dA\xdef\"\x91\xc8\xb3\x1c\x7f\x1eA\xe8\x06(\x9b\xa8\x01\x046\xea\xc0I\xa4\xe1\x16F\xea\x06x\xb5\xc2\x90wW\x8c8qI\xe3\xe3\x9d\xf1\xbf\xba\x08\x92R0\x83\x9e\xb9Of\xb22\n\xa3/\x86\xc2\xb2\xd7\xe4c\xa9\xde\x1c)U<2W\xdc\xd24\x1bF\x84\xf0\xf2\xfb\xa2\x04\xe6`o&\xd6O\x0e\xfa\xeb`\xa3\xe5\x92\\\x07\x9b\x1a\xdb+\x9d\x85M\xcfKV\xcb\xe2\xb8%\xed\xf5<\x99\x035w\xd94\xe5\x05-\xfe*\xd5d\xa8\xa0q{\xcd\x81\xbfy\xbd\xae,\xf9O\xcba,\x99\xd7Y\xb6\xa1 \x97\xbfR\x1a\xd4\xda\xea\xef5\xeb*fb-\x9fn!0\xe5#\xc6\xee\x96\x82.\xe5\x82\xde\xc5\xec\x1ar\xb7\x80(\x97S\x8e\xcb0\x0e\xd2[\xc7\xf3\x8a\xd7\xcee\x90\xb1\xfbw[-\x07V\xa5\xe8\xde]O$M\xed$\xce^iY)\xcdA\xdd\x0f, \xcf\x0f\x87\xe6\x84\xe7\xf7;\x05\xf47\x1c\xc8(\xde3\x01\"\x9d1\x14\x19\x0bb\x91\xb1 uC7\xf6\xd0\xc2\xaa\xc4O_$ \xc6P\xacB\x17\x8e\xd1\xbeV\xb8\xe6 un\x81*}@\x9f6p\xc9 \x84\xbe\x8c\xd7o\x14\xc7`\xf0\x84\xe6\x81\xf0\xe0)\xad\x1a\xaf.j\xa5\x9eN\x14\xd4\x90\x13\xf4n\xc8p\xa5%\xfe5E\x84\x1f\xd57\xf3n\xdb\x86YfL\xb9\x16\xe0\x03\x84m2\x92\xde\xc0^C\xc3\x16\xed\nt2\x9b\x9bQ\xd0\xaa\xaf\xc8\x95-.\xfb\xf9\xb0?\xfd\x89\x02\xf2\xbd\xeb\x7f\xf5o\x7f\xbc\xf3\xf57\xbd\xc1\xbb\x9f.\xfe\xcf\x87\xff>\xdf\x0f\xa5m\xc5\x12\x88L\xfaw\xccVA\x1a\xccrtD\x81\x15\x0b\xe6,\x85E\xc8\xa29\xc4\xc1\x9a\x99\"h(\xf2_\xb2\xd2\x94\xd1\xda2\xe7\x8ef\x87\xb6iW\xf5msg\xa9\xb93\xc9 \xcc\xd4/f7\xba\x19\xc3F$Ak\x88I\x7fK\xbbqWL\xd0\xde\x16\x7f\xe6I\xcc\xc6\xba\x8d\xca\xe0\x10\xa8?\"6\xbb\xd9\xb0\x0b5Rk\x7fkH'%\x06\xbc\x1a\x849\x85\x88\xa7s\xf9)%/\xa5\xb7y\x92\x9e\xef`D\xab\x8f\x13\xe3\x97u\xda\xca\xc4\xbc\x95\xe8\x9f\xb8\x0e6\xa8\xf6\xfb\xe50\x81\x89\x0c>z\x12\xccV\xed\x81\xb1Us\xc1f\xc3\xe29%\xbb\xa9\x8f\x98n`\xa3G\xb5.\xab \x85\xc0\xd0]\x97\xbe\x18:\x98\xb3\xe9\xc8\xe4\x94T\xf4\x88{ \xc4\x93%\xcb5\xa1\xe4E\xb0f\x99\xcb\xbcz\xff\x9d\xe7:\xcd\x1b:\xef\xb4G\xa1\x9d\x9e\xb1\xc1e2\xbf}\x9b\xb1\xb9\x12\x1e_\xa5\xc9:\xcc\xd8 exC\xbaB\x9c\x9eE)\x0b\xe6\xb7\xc0\xffuL\x87jE\x8b\x18\x90\xad\xd3\x00\x83f[\x1e\xbb\x96\x83j\x0f\x02\x0e8\x84$\x8e\x92`\xde\x05\x05\xf8\xc3\xc5\xa6\x94e\xdb(\xb7Y\xe4\xb1I\xc6W\xa0k\x9b\xb1\xcb\x06X\xa1\xb3\x11\xbc\xdb^n\x9bI'_\xab\xef\xc2\x88\xbdFva\xa6R1\xca?&\xe7$I\x0f\x06|w\x9feZ\xb2c\x12\x97:\x8d0k\x826\x94\x9dj9\xef\xabn\xfdP\x99Q\x91b\xd8-\xa5\xe9l\x98A\xc6\x08t\xf5\xaa\x18\x82B\xa4j\xec4\x95\xa8)K\x05\xe2\xa9\x0e\xeb2\xdc\xd1E\x18\x87\xf9\xb7\xc9\xfc\xb6\x93P\xcf\xd7\x85\xaa\xf1\xb6N\xe3\x10\x19\x97\x91\xc6\xe9UL\x07\x01\x1e\x14\x0d\xbda7\xd8\x90\x9d\xf3i\x17\xc1.\xa3\x04\xc3\xda|\x1b%\x97\x9a~\x15f\xaf\xe4\xdf/\x17B^\x91\xed\xf3\xa2\x9d\xdb_$\xe9\xfay\x90\xa3\xf3\xf4w\xe2\xef\x8e\xfd\xc8\xe2\x9d\xfb\xa2\xcb\x05\x18\xcc\x15-\xaco_\xffp\xa6\xbd\xea\xd8\xad\\>M\x9d\xea\xd4{P\xa0\x0c\xe0\xf5d\xb9\xb4\xebJ\x07\x1an\xc1\x84\xe3\x8cL'\xeaC\x0d\x1a8\x1c\xf3\xf5v\xa7\xc6\xfa6\x97Uh\xbe\x07.\x1f\xbcXT\x1e\xf9\x87\x0f\xb0\xa7u\xd0\xb0f\x80WH+\xb2\xac`\x15\xdb8\xdbn\xb8\xa8\xcf\xe6\xf0\xad\x9c\x0d\xaf\xd9\x16\xfc\xada\x95\xecH!s\x94T\xb7\xd0\xe6\xe2H7(\x90Lf\x9ci\xbb\xce,\x89s\x16\xe7}\x1a\"\x1e\x1a\x9a\xb0LE\xc6\x11u\xb3Z]\x1f\x9c\x9c\xdd\xe4\xfb\x9b(\x08\xe3\xc7\\\x8c\xcfX>y\xfb\xe6\xbb\xfeCG\x05\x97-\xb0H\x86\x8cRo\x06\xbc\x95.\xdd\x18\xaayx\xd1\xf5\xd3\x91@\x8d\xa6qz\xc1f\x13\x85\xb3\x80S\xb6\xfd\x9b\xfe\xf5\xf5u\x9f\xa3x\x7f\x9bFda\x9bWgm\x94`\n\xec \nxI4\xa5\x95\xbf\xca\xeb9!\x8521\xef/\xf2\x1b[@j\xbdPy\x11\x0db\x90\xc8\x04P.\xd6\xa5=\x0dz\xad\xcd\xb6\xe2v\xa7\x9e$\x954`\xe1,\xd9r\x8d1\xc9QdS\xe4\x17x5\x082\xe0\x8bnC\xc8\x1d\xc6\xcc\xb1\xadj\x9d\x85BP-\x91\x97\x0e[\xac\xf3\xd8\x1a%8\x92;\xcfq\xd4\xbeO\xa5\xe5\x17X\xc7g\xebz\x83|\xc5bwk2D\x8b\xe1\xe6D\xfeZh\xd2m \x8ak\x05\x06\xc1Q\xda\xfb\xd85i\x88n^\x98\xf74Kx^\xb1\x84OQ\x956\\yq\xf3i#\xeb\x95\xda\x8b\xddU\x0b*+\xa6/D\xa7\x95\xfb\x0c\xb4\xe7\x00\xbe#\xda\x97\x91\xddB\xd1uQ\x8fj,\n \xae\x15\x9dt\xb4\xe7#\x94\xa8\xbah@\xd5\x9f\xb3$\xfe\x9c\xb6\xfft\xf6\xf2\x05\xf9qX\xa9W\xe9\xbdMY\x98Y-\x18\xf2\xcc\xc5U'\x80\x7f\xff\xe8\xa1\xeaP_\x7f\xa4\x15\xba\xb5\xc4x\xe6\x0f\x06\xf5\xddhK,\xab\xeb\x0d\x92\xd06%\xb7\x85m*S\xed\xccR6gq\x1e\x06QFn\xdf\xc5o\xaeF \xf9\x00\x8a\x00\xb7\xe2\x05\xa1X\xe22\xf9FE\xfe[\xb3|\x95\xcc\xb11\xfaS\xbe'\x87\x19\x86\x7f\xf8t*\xaa\x1cx4I\x18\xef\x1cC\xe9\x9d_\xb57\x18\xf6P\x13\x0ci\x96\xca`i^~\xc3\xec\xf3\xd2o\x19\x98\xb3\xf2\xceI\xd6a\xee\xf8\xb0W,NE\x98\xb2/Vn_\xacv\xd2W\x98;\xf3\xe4\xedfc\xcf\x04\x00\x05\x1a\xdc*\x8f\x0ftF\xef\x8f\xb8\xbcit\xe7\xfb\xe8\xe6r0r\xe2\xc5O\xe7?N\xde\xa8\xe8\x87k\xe9\xf8\x84\x7f\xa8\xc2\xe2\x87\x96\xc5)e\x0b\x96\xa6( \xd0[\x17\xdb)BRj\x1d|\x7f\xf2\xecy\xed\x0b]\xc7\xb7\xc0<\xaa\xdex\xd12\x8a\x92k6G\xb6\xf0\x1f'o I\x81\xb7\x06)\xfb\xdb\x96eyfB\x08\"rR\x83w\xe3nV\x99E\x07\xab\x8c \x83MV{L\xb1!/\xdf\xddq\x0cV\xc3F3B\xabxP\xbam8i\xbam\xc8\x9f\x94.\xdd\x93\x05]\xcb&\xd2\xc3l\"\xd0V\x1d\x0f\xf7\x04\xf3\x9b8\xc6\x06\xec\xcc3\x97\x16P\x83[\x10\xd7\x91\x0d\xaf\x13\x83\xf4 \x16S[W\xeb\xf6\xa6}_\x93\x86\x0d\x951\xf4\xd3\xa3w\xf1\xfe.\xbbY\xdb\xacq\xdb\xd5\xd0b\xa3\x08\x8a\xec\xe2C\xed\xb6\xbf\xfeH\x7f\x07\xb9qc\xa7\xb9A\xd0\xf7*\xf5\xab\x9e\xb5\xf2\xf9\x9c=\x98[\xf9*q\x84\\O\xb8B\xaa\xf3\x04\x1c\xe1\xea#\x95\xe4,\x0f\xf2-'\xb7\x0e\xfd\xe5`jLN\xf3\xe4\xa71\x1c\x0c\x87\xa2t\xf2^\xc5\x8b\xa5\x8fO'\xfc\xab\"\xe7\xe2\xed\x138TU\xe8\x95\xb49\x14\xbfj\x1da\x9118/\xff,\xc7f\xe7\x05\xbe\xce\xb5r\xfc_\x84\x9a\xab\x90\xa9j@\xd5\xd2/4\xf0\xb0\xc1\x82\xe5\xe68rW\"\x16\xa0\x19*tS\xc2\x18\x9c\x8a%\x01\xa7g\x08w\xc6\x1fy@5\x06\x87\x0e\xa7\xa80\xfaX\xcac*|E_\xcd\x8dp\x85m\x0cN\xa1\xd0h\x8dp\x0d\xa3\xf8\xd9*\x00\xf2'Oo[\xcca\xda\xa1\x03o\xdf7eO\x96\xcfG\x98\x05\xe8R\xd7\xd5\xad~odo\xcb\x8c8\xb6l\xc0R\xaa\xe6k#\xfel\xda\x0bM\xfd\x1e\x83\xa3)\x1aT\xa9\x8e\x9ef\xd1\xa8d&\xf4\x10r\xae0\x95\x9dtv:\x95\xfa\xd6\xb9\xe3\x17.P\x85\x1aV\x7f}\x1c\x05\xeb\x0d\x9b\xd7\xbf\x9e\xc6\xf9\xe8\xbe\xb9\x92\xe9\xfdi\x9c\x1f\x1e\x98\x8b\x9b\xde\x7f\x17%\x81\xfd\xc3\xfd\xbb\xe2\x83\xe5z\xea\xba\x93\\\x06\xba\xeb\xc6\x9d;\xc07\xe9/!\xbbn0\xbf\x99\x81\xc0<\x88\xa5\xf4K\x13V\xda0\xe3\x8d7;[\xe9\x8f>\xb4\xc2\x01\xb8\xd5E\x8d\xc4E\xf3@\xebP\x93h-\x11\x9b\xa8\xf8\xbbX\xd9\x11\xa3\x90\x0cB;\x8f\xdd\xd4\xc2\x82$\xcb\"\xf10\xd8L\x99\xe5\x8e\xa1V@$wO\xa0\x07\x8e\x8f\x81\xb1al\xba\x8f\xef\x97\xc6?g\x11\xcbY\xa7\xad\x17EU\x97|\"\x86\xbc\xda\xe5\xf6\x97,\xef\xd4\xb8\xda8\xb9@\xc4F\x82\x8c\x0e\xbb\xf5y\x8e\xcb\xa9R-\x1d\xaf\x82\x9d\x1c\xd0d\x07\x15\x07<77;w\x96\xfb\xca*\x93l\x80\x80\xf2\xea hk_\x08Ym\xb9Y\xe5SI\x96-z\xf4\xacs$\xe7B\xa6\xfc\xe1\xd4\x18\xe3s\xbaqT;\x957\x8c\x11\x9d\";\x98,\xa4u\xd1vkV\xdf\x8f\xba\x83A\xc3 9\xe0)\xb9p\x904\xa32\xfa\xde\x9bM\"\xfaT\xd0\xd5\xe57\x98L\x87\x99\xd8N\xef;\xce\x84\xc5y\x1a\xfe\x16S\xe9\xb6/S\x0eL\x06\xcf\x0fh\x99R\xc51H\x9b\xa1\xc9E\xc8\xb0\x00\x96\xb3\xf8[\xe4\xf3\xcfO~8ys\xc2\xf9%W\xd8}\xa1\x9e\xfb\xe0\xbc|\xf5\xe6\xf4\xe5\x8b3\xfe\xe7\xab\x97g\xf8\xe9\xd5\xdb7\x8ea\x81fZ\x97\xb3(\x89Y\x97\x15\xd7\xa4\xb2\x19ZP\xfc\x86\x15\xbcL\xe6\xb7\xfa)\xdbi\x1cZ\xee\xd8\x1aWP\xa4\xcb\xd7\xc6\xe9\xa9\x97\xf3\xd2\xcb\xf9gNe^9\xf9o\x9a\x14i\x0fc]\xdb\xb0k\x84\x85\xaa1\xae\xaa'\xf6JB\xeb\x18K5D\xd3M\x1a\x94\xcfm\x1a\x8d\x95\x9a\xb2\xc3*\xcf\x07\x9d\xfdi$\xba\xd1\x92\x91\xc5\xa8}\xa1\x1a\x82\x82\xe8\xcb\xe3X\"h5\x9b\xcf\x98R4q\x16N\xd5\xf3\x11\xcc\xd2\xd0\x95\x88c==\x1c\x8e|8\x1c\x1e\xf0\x7f\x0e\xf9?\x0f\xf8?\x0f\x0d\xe82\x1f\xa4l\x1e\xa6\x1d\xd2\x8d\xcb'\\\xa8\xfc.\x97\x9a\x95O\xb7\x96i\x11\xb7\x94\xbb\xa9Pjg\xc9\xdcz@_\x02\xdd\xae\xfb\xd0\x05\xe2\x9a\x95\xa7(\xa1\xa3\xe6\xc6\xcb\xc6;\x80\x1e\x1b|\xafT\xee\x84\xff|M\x06A\x98\xc0\x8c~f\x9b$\xc6{\x9ds\xfe\x1b5\xe7\xae\xab\xaf\xadQ\xcdi-n\x10v@\xb7\xbe \x99\xc3^\x9aml\xa1(\xfc\x9f?\xfe\xf0}\x9eo\xc4<\xec\xa6\x9apG\xcf8\xd0\xb0\xaf\xb9\x14h;\x1e\xb6\xd2\xa7r\x0dB\xc4\xb0\x13\x91\x92\x8f\x02\x9d\x8d\x1br\xc1\xf9Y\x14\xc9m\x13\x9b\xeb\x8a\xa8\xbev\x97\x110#\xa9\xfe0a|qR\xd1\xf8\xdb\xd7?\xa0\xca\x1c\xc2\x11\x84\x03\xed-\x8c\x81\x95\xfdI\xfe\xb3/\xf6\xa3\xcf+\xb5\xf8\xbcH\x93\xa2\xea\xc8\xd0\x0b\xe6\xe9\x97?\xf8257\x19\xbb\x82\xc7\xe0%x;\xe6\xf8\x08\x16\x9d\xa9\xb1|\xd2\xaak\xe8\x0b\x96_'\xe9{i^\x87E\x10Fln\xf2\xfd\x90\x8f\xe8:\x0f\xd7,\xd9v:o\x97\xcf\x17\xeb|\xc3b7Q\xc7Q \x9d\x7fa\xaa\x1d'\x8cg\xd1v\xce\xe8\xf0!)\x9d\xf6p\xc9*\x1c\\\x87\xf9\xea\xb8tND\x15\xd5\x16\xddn\xe46\x96|\xc1\\m\x17\x05\x17!/\x0c>\x00 B;\xf9G\xcb'\xe4\xea\x95\x80:B\x03\x8b\xbb\xb4|\xb8$\xc9+\xc5sWsoO\xb4C\xb7#:\x8a\x1b\xeb/mR\xa9\x99\xd8\"\xf9\x1cl\x92\xe8v\x11F\x91\xc9+X\xfd\xe5:[y\xd1_\xbfk\x90\xb1h\x01G\xf4\xdfXS\xb1>\xeb\xa2l\xec>\x1a\x9a\xae\xaf\xf0\xf7\x0f\xcd\x17\x92\x1e>\xb2\xdc<*\xef\n\x85!\xe6\x84\xb0\xdc\n\x1e2\x8f!)\xbfUQ\x02\xc6\xb5\x9c\xf7\x9f9\xbf\xc3\x87\xd5y$j\x1e\xf5\xf9\xd5!\xeb2\x0df\xef\x19\x9fHg\xd3\x00f\x84\x9b\x9e\xd7e*\x83\x0d+\x8c\xe7\xe1\x8c\x95Zo\xe7\xab\xd4\x01f\x96\xa3\xe4s]zJ\xd9\x86\x05\xad10@\xeb\xa5\xdej\x19d\xeb\xf7\xd2\x9e\x079+Y\xcdN\xcf^\x92\xe1\xac\\\xd6\x1c\x8dg\xce\xa2p\xcd\x15\xb31\xde\x0e\xae}\x97\xc1n\xf6\x0cR-}K\xc7\x90\x8a\xe0\x13\xb6\"\x7fA]\xfde\x1c\xdd\x8e\x8d9\x063\x96\x86A\x14\xfe\xc2\xf8\\vX\xad\xa0v{U>\x86\xbd\xc8\xde\x87\x9b\x17\xdb(\xca,c@p\xe6\x05\xbe\x0f\xe2y\x84\x91Q*V\xf3J\xa3\xba\xc6\x0eL\x04~Q\xf1\xc82\x1f\"\x9f\x8buE\x88\x04\xd3l\xa4%\xdb\xc0R\xd1\xdbZv\xa0{\x82F\x1eV\x89\xb8Xwe\xba !\xdd\x82\xaft\x7f\x0e\xbe\xb6Tq\xe36\xd6RW\xc2\xaf\x9a\x04\xfdP\xb9LQ\x06\xb4\x15\xa7\x93|D[\x01\x0c\xe8\xfbf\xb8\xe2\xcd\x9f+\xf4\x8fm\x81u\xb0{\x9c_\xa1\x84U\x8f\x97A\xefe \x80\xea\x87t\x10f\xe2V\xc1\x95\xa7\x0d\xff\x08\xa6s\x17#\xc4\xc3\xb8:\x07\x8f#\xfb\x84\xa3\xfd\xdc\xcd\xdc\xab\xd2\xa7s\x18\xf3\x9a\xb1^F\xb8x\\y\x9eA\xa5\xe2\x9b\xbd\xf6\xd1~n\xb2\xe0\xe0\x96\x15\xcc\xf0J\x0d\xd1\x10\xff\x8f\x97-\xdf7\x8a<\x0f\x8f\x07\"\xcb\xd6\xdaU\xdc\xdbJ\xda3\x13t\x808|\x98\xc1\x11\xdc\x0e\xb2$\xcd\xdd\x19\xdf\xe0. \x9a\x94\xa9\xf3\x92\xbc\xdd.\xe1 \xac\x95\xb7[\xafw\xd9\xa4\x7f_\xc0\x04\xd6\xd3K\x8b\xc1\x0b\xdd\xbd\n\x80\x9d^`&\x07wY\xbd9\xef^yp\x04K\x99S\x86\xb9\xbc\xa8\x0f FP\xf3Z\xd0\x96\xcf\xb3V5\x86\x1e\xb8\\8p\x06|\xe7/T\x9e\xd2\x0b\x95\x9b\xb4\xb9Q\x03\xd1\xaa\xbd\x91\xfb_&CfQ\xa0\x91\x99\xa9s\xfd:\xe1\x0b\x80n\xe5\xa6\x83 \xcb\xc2e\xec\xfe\xfd#606\xc6\xcdQ\x01\x99\x02\x89\x07x\x8aS\xdc\xf7-\xbd\xd7\xc8W!T\x05\x05\x810\xba\xd1\x9c\x88\xfa\xab\x00\x03\xa0_2\x08\xd4\xe4j9E\xaeD\xdc\x1b\x0do\x82\x81bjp\x04[\xed\xd7X\xffV_\x89\x19\n\xc4u\xe2\x11\x0c\xea\xcc\x01\x8e\xcc\xaf\xc7\xb05\xbc\xae\xf7\xb5\xb0\xf7%\xf9\x14u\xa1~a\xcb\xf2W\xbd\xc1\x8d\xb5A\x11\x18\xea\xa8\xf8s\xac\xa8X\xbd\x1d\xae\xa2\x1b\xb9N\xb1\xb1G\xda\xdfES\x86\x05]\xd9\xdb\xca(\xa5\xbc\xf8\x83N\x8b\xea\x0d\\\x15;K\xb0\x85\x9eU\xcf\x93\x1cy\x8e\xf6\xb3^u\xdd\xd0\xb7.n\xd0 Jop\xa5\xf57\xf5\xd6\x97-\xab]H<\xdaji/\x8be+^\xd6\x91\xad\x04\xd4$\xdc{\xea/4\xa2\x0bo\x93r\xd5\"\xf3U\xa7\xc8\x15\x89h0gi\xe6\x17\x1dY\xb0\xf3m\xfc>N\xaec\xa1k@\xb2A\xf1g\x93&W\xe1\x9c\xcd\x8d\xf8)\xc2\xb1\xe2\x80\x8b\xae\xa6\xb2\xa7\ni\xb7l\xda\"\x8c\x08\xa1\xd1\xa1\x95s\x12\xf9\xces1/\\\xfd\x06\xae*\x80\xba/&o\xd7\xab\xd5\x07z\xedc*\x82*oF!D\xc6\xc2)\xe8\x98\xee.:\xe1\xfd\x0bj]\xbd\xf8s\x8d\x9d\xa2\xff\xc2w\xb4h\xc2\xc0R~9\xe6\x8a?*&\xa8\xba\x07X@\xbc\xe1lF}\x1csE\x9f\xeb\x15\x8e^\xa7>\x9b\x1b\x98@8\xbd\xaeL\x06\x83\xc8\xb8U\x96\x1f{\x18\x0d\xeb\xce\x1d\xc9\xdc\xabw\x1c\x15\x0f?#\x1e~\x06O\xe0V\xe3\xe1g6\xe1\xf6\x18&p;=3\xf0\xefE\x89w\xc7\xd3c\xe2\xdd|\x07N$\xb7\xcd\\\xfe\x1e\xa3\xf8\xde(\x0e\nG0\x97$\x83C\xd6\xca\x87+\x9f\x0bV\x17>,\xab\x8c\xf5cm]\xdec\x07\xe8f\x16\x19\xcc\x9c\xcf\xd0P \x90.\x98\xcf\xff\x9f-Ko_\xa5l\x11\xde\xf0m8r\x0c1\x9e\xc4\xce\xbf/\xf2 \x0c\xe1\x08\x9eA\x0f\xdeW\"\xfc\xe0_\xbf\x8az\xdd\x82\xeb]\xf4nEN\xcd*\x12~Vn#\xb6B\x1c\xa4\x7f\xe0,v\x0c\x07\x06\xa5\x91\x1c(Qi\xa4?ME\x9au\xd29\xdb\xe4\xab1\xdc30\xc1 \x0d\xd6,g\xa9\x18\xc0\x88\x1d\x1a\nEA\x18\xd3j}1]0\xe8\x10L\x05\xda\xbce\xd5\x0ekl\xeeH\xcb\x92\xb1\xffn\xe0N\x7f\x1aL\xcf{\x1e:\xb2N\xffmt\x8e\xf7\xfa,\xbeW 6z\xdf}7\x9d\xfe4}w~\xfe\xcd\xb9gK\\\x03b\x16\xe5\xc2\x94h*m:\x86\xe3\xd4\x0d\xc5Gq\xa5\xda'\xb2\xc5n0!\x85\xbdb\xd6p\x8e\xcd\x97\xa9\x16\xcd\xacZ`/\x1e\xe8[ \x98/\x0c9Z\x15\x1504\x1a\xa5\xab\xae\xc0\xb0$\xdav\x83vF\xa7\xe2\x86;[`=\xfdQ\xc4R\xe4\xf6VB\xb3\x1b`\x08G\xb1\xa88\xa6\x08\x9e@<@\x90n\x0c\xf3\xcdg\x1cA\x0fC\xe7\xef2\xf3`::\x17[3\xf2\xa1/\x02v\x7f\xc6J\x04\xc6\xa0\x14`]\x0ci\xab\xe1\xdd\x8a&HQ\x92\x10\xa3\xc0E\xe8M\xd6\x01tA\xb0Ry\xb9\x0d\x1c\xa9r\xca\xf2\xa2%7\x1b\x89\xe4\x03\xc3\xc7\xd0\xef'm\x8d\x81@\xd0\x90\xa2\x98\xb3i\xd2\x90\xda[>(9LE\x0c\xb6\xc0Cl\xc44\x08\xd3sO\xb28\x9b{\x99\xfet\xb8M-\x1f\xb4\x18\x97\xc1\xe3H\xf2\x86Y\xca\x82\x9c\xa1\x0eg\xd2\xefl\xcf\x95\x08\xe5\xc7\xb7\x8d\xd8b\x91\x9f\x91+y\xe7\x95\xd7\x81\xb6\xc6\x1e\xc9\xd7\x1a\xfcq-\xcc\xbe\xc7\xd5\x87S 4_\x9f\xc6\xb9\xbb\xf5ad\n\xd9`z\xf6\xc2\xecE\xf0\xc2\xcdp\x88\x01b\x1f\x06\xbd\x17\x06\x9a\xcc\xc31\xe3\xab\x8c\xc2\x8c\x8a\x1c\xc8i\xc6P|\xcc\xe8\xd3\x13\xa4\xc7\x8a\xa9\xc1\x91\xda\xc0iv\x8eQ\xf0\xc7\x10N\xb7\xf8g\xeb\xc0\xcc\x18\xa2?\x1cT\xc3\xc6R\xcdm\x08l\xb3\x0f\xe5\xa3\x9b \xec\xa9\x15\xa9\x98\x9a?\xc3\xcc\xf0 \xf6\x84X\x88\x03U{B\xe9\xbd\xd1\x9e\xa0JX4\x96\xe7l\x07{\x02\x8ei\x10.\xe3$e\xba\xe4\xa7dB\xc3G\x1f\x87 \x8d\x0c\x13S\xacl\xbd\x80\xb0D\xbef\xcb\x93\x9b\x8d\xab}\xf10I\xa5n\xae\x085s\x85\xe4\x12\xbc\x83\xba\xe5S~\xc3?eI\x8c\x83=\x11\x9eZ\xc1\xa0\xf8\xe9#f\xb1\xcd\xb1\xf0B\x0e\x06\x17\xea'f\xa5\xc8f\xc1\x86\xbd\n\xf2\x95\xba0\x8b\xa5\x0c\xefy\xf1ml\xab`\xfcR\x1e\xfe\xd6\x90\xd7\xaf\xd5\xad^\xc0c\xbb\xcf\x01]\xd0\xbc\xccXzE\x1e\x9c\xd3syk\xf3\xf2g\xa8f\xfc\x80\xba<]\xbdQ\x17\xed<\xb4\xb6@\x95\x9cv]\x06\xb3\xf7\x14\xc8\xad4`\x98\x98\xa2mV\x07h\x8a\xfd=\xab/I)\x8b*\xe5\x9cJ1-\xb9\xa471<\x81\xf41\xc4\xbd^]\xcb@\xdb\xce4>\xa7e\xc3H\x0bd[\xb7N\x0d\x19VlQ\xb7/S\x16\xbco\x99\xd9\xc2\xcd\xe9\xbe\x88\xaf:\xe3\x7fm8\x14s\x11\x0b\xd3D\xa8\xdfR{E\xabJ\x81\xaaz\x1b\xa2\xa4\xe1\x08\x81R\xc8\x8a\xefF#q\xa8\x1b\x891\x94\xad,.`\x8a\x15\xfb\xa8n\xfc\xf0_n\x88\x89\xbf4jY\xdf\xac\x85\xab\xb2\x01\xd4,\x1a\x18b\x82\x92\xe9\x98\x96\xda(\xa4\xe7\x83<\xf9\xd3\xd9\xcb\x17@9X'\xea\x85k\n\x14\xa3\xe0\"D\x9epAK\xfdg\xce\x9ar\x8f\x84\xa1\xf2[\xe6\x91\x98\xb37\"\xde\x17\x94\xac3\x99\xb0\xced\xfd~\xa3X\x83\xe6\x18\xe4T\xd3\xec\xbc\xc1\xa2\xb8\x97\xd6.\x8e\xf9\xb0\xf1*\xd2g>\xdd\x9cWt\xd0\x08Mf$\xc0\x94\x8f\x98rO\xc5\xac\xb7\x9bg\x92\x0d\x1e\xd9\xac\x93+\xd6\x90o{\x13\xe4\xab1\xdd\x0c\xdc'\xf3\x98\x81\xe0\xb9\x1b\xfb\xc5\x1c\\HK\xae\xd7\x16\x03\xd2\x95\xc8\xf9\xc2\xe7n7\xaf\x18\xf2ADP$i\xa2\x1f\x86B3\xbd\xd0\x8c\x0b\x89.\x89\xa2\x1cJ[\xe7\xcb\x85\x1d2\x11`;\xee\xde\xd0o_r(\x96\x1d\x05\xf3\x86u\x87\x1d\xd6\xbe\xb9\x15\x11}9\xd5X\xa0;kr\x81\xedjF5\xfbEm9\xe0*j\xb2W`\x8f\xb9YDNMm\x08\x15\xb5\xcez\xbd&\xeb'\x07\x8e\x0d\x9e%f\x0d\xc0Q\xc3-f\xc3-\xae\xfau\xde\xbf`>\xff\x87\xed\x1d\x1fm\xd3\xf6u\xd8=\xcd\xc5X\xfd\xc5\xa5\x1c\xc1\x96\xdb\xeciZQ=+\x02\x97\x94:\xb6\x80\n,\x99\xbe\x9bE\x9cR\x08\xb3!\xf1\xf5\x82\xa1\xe7\x94`871tPL=\xd7\x98\xba\xd2\xe1\xf9\xeb\xf2\x9a\xd4\x02 \xf1\xda\x898\xdao\x95vJz\xb9\x90?\xb9bq\xfeC\x98\xe5,F\xfb\xa3\xed\x93\xeb\xac\x93m\xc6\xb6\x1b\x87\xac.\xd6b\xef\xd9m{!lk\x9e\\\xc7m\x05\xdf\xb3\xdb.\xc5f\xab ^2,\x85\x807Of\xdb5\x8b\xf3\x81\xfc\xe3$b\xf8;\xc8\xf3`\xb6\xc2\xda\xae\x93\xc4\xe59u\xad\xa5O\xb1k\x9d\xea\x8c\xbb\xd6+/@\xd7Z\xfazt0A\xc4\x15\xb9;\x16\xaa\x01iO\xb1\x99J\x9b\x80z\x86y[\x8c m\x84\xddV\x12\xa7\n~!R'\x1f\x03\xc9+\xf4\xc3\x12\xc9C\x9e\xadw%r\x80\xc7>\x8c,\x08\xc9 _\x87\xaehH\x02\xb1\x0d\x13\x0d_-\xc8h,i\xc0G{\x8bu\\\xb3\xb5\xa9J6\xe3\xdb\x9c}\n\xbeUju\xc27SO]0\xa7\xdeW1\xb5\n\xeap\x8eT\xc0\x01\x85n`\xd7@I\x99\xbcRD\xd6\x8fd\xad\x8aYJ&\xa8\x19\xff\x8dv\xbe\xb4\x9b\xa0bp \x91F\x90B\xb1Em\xbd\x9a\x01\xac\xc9h\xa8\xb4\xe3\xcfI\x02\xd69\xadW)\xe1\xafQ\xa9\xd63\x94\x1d\x95~\x8d!\xf6\x06\xd9*\\s\xf6\xdd:/\xb9dZ\xc6\xb7%\xeer\x86'\xf2v\xa2%\x06\xdd\x12q'\x90\xadi\x92\xa7\xd9DdH\xab#}!-Ck\x0d\xf6\xa3mo\xbd?C\xee\x17uK\xcb\xac\x82\xd2\xfb\xfa\xb1\x19\xd3\x8c=\x9d\x9ce\x99\x0f\x0e\xff\x831\x87\x1cij\xb56\xa2\xfciv\x12o\xd7\x14\x11\xc3P\xf7\xc3\x07\xdd\xa5\xec\xa3Kq4\x0b\xc8\x89\xe1\x08}\x0b\x12oPD\xb3\x9f@JVR\xfdUb\x04\x94\x9d|\n\x8d`JQ;p\xe12\x11F\xad\xfaQ\x85\xf4(\x1d\xa8Y\xf6F.y1ih\xba\xebU\xda\xd1\xe6\xf1\xb1\xc1,\x89\xb3<\xdd\xce\xd0\xc0=\x99\xe8\xdf\xd0t \x86\xabv \x8e\x8aI\x8d\x0d#3A\xb9\x1d\xea\xb4\x93\xcc#\x0ee\x11\xb6\xaa\x9fh\xf2\xf7\x1a_\x1c\xeb0:)9z\xd7\x8bR\xa2\xc8#Sz!\x07\xcf\xe5K\xed\xb5\xf4\x9b\xb6\xe1\x96!g\x8f\xc4e}\xc8 \x0d\x00\xb3\xc2\x8c\xd58\xb4/\x81[\xc9Bo\xea\xcc\x90\x7fG\xe9\\\xeb`\xe3\x86\xcdc5\xe4\xa4\x91\xf4\xdcz$,\xe9y\x15\xbdE\x80%7\x9f\xc6\xe7\x18W\x9dM\xe3Z\x10\xfc:\xb57\x8c\xca\x90\x87\xa6\xa4\\+\xbaZ\x18\x82G\x15\x83\xa3*2\x1d\x9d\xf3\xb5\xd4\x7f\x8eIX5;\xf0bT6\xb6\n\xae\xc2d\x9b\x8e\xc15\xf4u`\xed\xeb\xa0\xdc\xd7\xc19\x1e3z\x83r\xabx\xc5N\x9a\xd5J#Pg\xe4|\xeb\x9a\xad\x0d\n\xb91&u\xb9\x15\xcf'+:}\xf3\xa5\x13e\xc4\x85\\%\xf2F&Y\xb7\x94\xbf:\x9dF\xe7t\xda\xad\x1f\x91\xceD\xe2\xe8\xe1c\xd8\xc0\x13X\xa8\x067v#\x18o\x11#WL7\x0d\xa7\xe6+.\xf0L\xe7\x0d%\xae0\x97\xe3\xaa\xc1\x12\xb5\xc6\x12\xe1tn\x8b\xef^\xba\x8a\x80W\xde\xec\x12?\x96- \xe3\x13X7\xa9\x1b \xe6\x8a\x0e z'k8\x02>\xa8\x0e>\x83!%\xc0\xce\xd0\xebk\xba\xf4a\xeb\xae\xbcs\xa3\xbb\x99|D\x9clQs[\xbbz \x1fu\xadE\xa76m\xf3\xd7\x8av\x9a\xfb-\x1ex\xdb\x86 \x1f1V\x07O\xbd\x1d\xe1\x17VA\x13Z2\xe9+pk\xbe,)\x9f\xf2\x1a\xd8\x07\xa0\x97Z\xd5J\x18\xd5\\\xfd\xc0H5\xd3)\x17f#\xd5\"\x12$NA\x90\x84\x1dA\x8en\x1ecL\x1e\xcd)\xc1Hd6(R\x1a\xf0\x02\xe7zk\xd3\xd4,\xefg\xe4\x16Q\x8c\xdd/\x06=\x88\x93\x1f\xb7y\x907*\xe6j\xf0\xcc8\xf8\\\x0d^\xe6g\x18\x92\x1e\xcdH\x8f\x06\xc1\x07\x8a\x81V\x0f \xd5@\xc9\xbf\xd1<\xd2\xeb0_\xbd\xc4+R5\xdfI{\xba\xd5L}\xafl]\x8b\x8cg\x0f\x0c!\xf3\x8fC\xec>\x1a\xdd\xab\x10\xa0\x8b\x0b\x96\xfd\x98\xcc\xb7\x11^\xf3\xdf\xad\xcb\xd8\x1d=x\xc0\x17\xd0}t@\xff\x8d\xee\x8b\x9f#\xf1\xff\xa1\xe7\x97\x05[wt\xcf\x1b\xfc\x95\x05\xef\x7f\x0c6]\xfah\x10]}\x99\xc9\xf7p\xe4\xb9U?\x8ePtV\xbd,C^\x0e\xa3\x83\xbb\x95\xf7[j\xea~5Y0\x0d\xfa\xd1\xa8\x1a\xbb\"\xa2\xf2\xd5\xe6g\xf8\xfa^\xd5{d!\xbcG\x0e*\xef\xf1\xdcr\xb0d9_\x91\xf2\xa7y\xc1\xbb\xc2\xec\xe4&gq\x16^F\x95\xcb\x1e\x9c\xedd\x83\xed\"\xcb\x93\xb4\xf2\xe9\x8a,\xca\xa5w\xed\x01d\xab^\x076\xaa)Y\xb8\x88\x8ag\x904\x86%qbx\xaed\xd3V\xd7\xe3\xf2\x98\x97FYg\xc9:\x05\xd6\xc0{\x13(A\xdb\x89\xbf\xa4q\x1bcj\x06\xf9\x88 \x0b?\xe0\x1c\x8e`\xe5.\xc4\xec\x1d\x01\xcf\x8e\xe7a\x0c&\x94}1\xfa\xb6HU\x14\x16\xb37v`8\xf4\xab\x8b Yy\xca\xedAK\xb2\xc1\x9c-\x0c\x83\xf4\xd1?d\xc7m\xb8\xadj\xa8\xee\xa3\x83\xa1\xe7\xaaV\xf1\n\xde\x12o\xbb\xef\x0d1\x96Q\xb1\x963\xb7\xcd\x18\xf1\x00\xf6&\x80\x96\xa5[\x0fs\x7f\xc9\xbb,\x8b\x94\xb1_P\x18\xa4\x17\x9e{\xe5\xf9\xf0\x80\xd6Yc\xff\x1fI~\xdf\xba.\xa6l\xe3\x9f\x8f\x0b\xad\xd0]\x977I\xbb!\xb3\xf4|\x08\x06/NN\x9e\xe3\x01\xba\x0f\x89;u(\x8e\xae\xe3\x83\xb3\n2\xfe\xdf\x92\xe5\xfc\xbf\x8c\xe5\xce\xb9\xdf\x00w\x12\x96n\xb5.j\xeb\x8c>\xf2\xb5x\xc1!\xc6L\xd2\x1a\xcf\x0d^\x1c\xa0`:'\x03\xc4\x1c\x9d\x10\xcc`@\xb0\xb7(\xd2\x7f\\,\xc4\xe1TSP\xe3P\x065\xbeXL\xd99\x8d\xc2\\Zj\x86|U@\xe8\x9b\xbc&\x8c\x0d\x97\x18\xec\x0e\x91\"\xa8-\x02i^\x8b\xe5\xffQ\xdfc\xfa\xbbs\xa2\xf0G\xa3\x87\x96\xc8I\x8dh$\x07\xc6\xae]\xd4\xbe\xf5\x10\xaf\x9d\xf8b1\x82\x1a\x7f\x10\x1c\xab\xc6\x96\x04\xbbz\xe4\xb9N\xb6a\xb3\x90\x95\xd2\x84t\x93\xd8\x10\xf8\x8cb\nj\xe5\x1c?LW(\x84\xf1I3\xa2\xa0}\x8a\x9c\x85PJBHK\\\xcd\xce\xe5\xa9\x1c\x08\x82\xa6\xfb\x90\n\x90T\xe6\x10\xf2\x18\x9a\x86\xe7\x9e\xf2\x1f\x12\x85\x8b\x1c\xf1\x92\x96R7\xe3\xd6T\xf6\xdd\x85\x03Z\xe7\xe1}\xe3\xfas\xf6o\xe6\xba\xc2\xcd\xb3Z-0\xef\xa6\x10\x1a\x86UaBH:w\xab\xef#%\xaf\x18\xa5\x86\xaat\xd0$5DnU\x92\x9b\xe3\xdb\xea\xc8WxxT\x86\x93\xaeR\x00\x1b\\`\xea\x07\x17\xff \xd2\xb1\xae\x1e\x10\x94~\xae\xdbN\xcb\x90\xb2\x04hrojg\xd9\x86\xa3P\x8cr\xe3\xb2A\xd0D\x94+\xe5\x19\x17F\x10\xf0j\xa5\xaa\xd9\x90\x0b\x98Zk\xd6\xc3\xaa<\xd2A\x16\x91|a)\xe8\x9c5 \x94:\x83\xcb\xa7\xa3\xc6\x15Z\x05\xad\x01\xd2\xa4\xc8\xb2W\xf4\xda\xd4b7\xf9B\x1e;4\xcd$F\xe7yT\xf5r\x99\x021\x10\xf1\xa5Y=\xbete\x1c\xc4|\xdb&'WT\x043\xd6\x01\xa0M.\xca%\x00\x18\x9cv\x0d\xb3\x11\xb5\xfe;\x07\x99\x88%\x90\x07\xa2\xb9\x8f\x97\x08\xf6\xf6\xfe\xbb\x9aTF\xfd\xe57(fe!e\\#u>\x84\xb6\xa9\xa3\xdbc)J\xa35\xc4\xeb\x96\x7f\x8d\xb0E\xe7\"$g\xd7\x8b\x9c\xdcE\xd8\xe0\x82S\xbcU\xaf\xe7\x83@r\xa2\xcc~a$\x04\xbc|\x97\xb9)\x8e\x88M\xc3ss*|\xfb\xd2\xa5n\xa4\x8b\\\xe6av\xdbv\xf9\xa0Gg\x80\x92\xbd\x04\xf3\x91]x\x97@\x9b\xec \xe2s \xbeR\xd2s\xeey\"\x11\x03I\xf71_\x93\x99\x1b\xab\x9c8\xc8\xe4D\xfe\x85X\x89\xfd\xc6\xbe,\xee3\x1d0Z>\xff\x88\xd9\x8bD\x0f\xa6\xa9\x9bgi\x80\x10\x1f\xa2f\xcc_\xd4\x91\xc0\x86\x01)YK\xd1\xb7x\xcft/\xb8<\xa1\x14'\xc4H\xbb\xc8\xc5\xa5\x9bt\xcaP9\x9b d7\x0dM\xa8\xd8c\xb8*P\xfb\x0f\xf0\x05$\x94\xaa( \x04D\x8b9\xa3f\xb6\x08\xcc\xf6\x06\x12L\xeeU[\xc9,RQd\x91Wf\x16\xf9fa\x16\x876$uW\xc3\x9b\xce\xf1\xf5\xdd\xa17X\xd4e\x13\x8b\xf9\xe6\x8a\xea\xdcm\x15\x82%\xa5$\xed\xf3\xd6$\x13_\xe2y\x003\xd8\xe6/`\x02\x97\xf5\xd7\xd7\x9c\xbf\xe1!!\xa30;f?\xd4\x13\x98\xc0\x05G\x86\x8b&m\xef\xc6p\x1e%@\xf3\xcaz\xba\x89\xcd\xba\x18\xad\xe7D\xe5\x16\xe1Rx`W\xa5\xf9\x83*\xf4\x85'\x93*\xb8\x1ez\"\xb9U\x95\xca\x83#p/0\x91\x8b\xaen\x1aqm\xc6\xbf\\\xa0j\xea\\\xcc0\xeb\xe2\xe0b&\xa4\xc1K\x9dO a\xc0\xebsK\x1f\xf2\xe9\xf5y\xcd\xca\xc0)\xc0\xca\xe5\xcb\xe9\xa3\xc3\x94O\x04\xd3\x173\xf4\x97,\xf7WA\xe6g,\xf7\xdf\xb3\xdb\xcc\xa7<\x1f\xbe\x98\x8eO\xb7\x0f\x1c\x99\x9e\xce\xe7\xa3\xe9&&\xe0\x16\x82\xbcnZ\xa8\xacu\xb2\xc1 \x8c\xe1\x84\x9c\xcdq\x03\x1c\x1c**L\xa4Em]}\xc3K:{S\xa8uN\xb4e\x16 \xbe\x9e\x9cn\xa1LA\xfa\xd5\xc2\x8d\x0br\x8e\x06\x07\x1a\xae:\xaf\xb3\xab\xec*\x0f\xd1\xc5\x8c\xab\xec\x05\x05\x1frr\xed[\xd5})\x0f\x15z{R+W\x15\x89=\x9f\x82H\xcd\xcb\x8b\xe0d\xe1/\xcc1\xf1\xf6\xb2t\xdc&\x9a\xd1,\x06\xbc\xb5\xfaPjP<&(^W\xcd=dIY\xfap\xed\xf9\x90\x95G\x1a\xe3\xadOe\xf0\xf1|\xd8\xb8b;n(G\xd3\x85\x0f\x89\x9b\x0c\xfe\x03z\x90\x0c\xfe\x8a\xff~\xe7\xc3\x8d\x9c\xf9\x9a\xb3\x90\xb3\xc9J\x98\xa4\xcd\xb0\x16\xa1\x1eTy\xaf\xec#\xe72=O\xb5\xe7\xc3\xfe\xf4\xa7\xa0\xff\xcb\xb0\xff\xe8]\xff\xab\x7f\xfb\xe3\x9d\xaf\xbf\xe9\x0d\xde\xfdt\xf1\x7f>\xfc\xf7\xf9~8\xc8Y\x86\xb9\xd7\xcc\x81Wd\x82\x97\xd9*H\x83Y\xceR\xceW)\xcd\x00,B\x16\xcd!\x0e\xd6\xc6\x9c/\xca\xfa\x94'?$\xd72\xaftyq-sn\xb6\x84t\x9e6\xeb\xd4\x99\xc1\xf1\x11t'$#p\xc5\x98u\xa4\x95\xac\x82\xd6\x10\x93Iv[\x957{[\xfc\x99'1+9\x88\xb5$<\x11\xb7\xa2\xccI\xac\xc0\xa8\xe2\x99\xdf\x1a\xbcF\xc4\x80+i\xc3rS\xb2\xb0\xd6\xb5\x92\xb2C\xbd\xdf\xce\xd9~\x0d\xde}\xa0\xa5\x02\x14\x97sJ\x19\xf2\x13\x0c\xfd\xb1S\xbe\x0c2\x1eQ\xd6bs\x82\x0c\x91\xf9\xbf\x1e\xcd\x14\xbd\xeaL\xddu\xe9\x8bM\x87\xe7>0c\xe86\xadG\xdc\x03q\xee\xb6d\xb9\xe6\x1e\xf7\"X3\xae\xfd\xef\x90!\xaf:\xd7\xa9)\xab\xdcGS\xe6B\xdb\x1e\x19|\x13A]k\x90\xd9\xf8\x95\x04-\xb2 \x0dR\xc6\xe7S\xcd\xdb\xf2,JY0\xbf\x05\xfe\xafc\xba\xcc\\\xc9\xef\xdfi\x80\x06\x7fF(K0\xb5\xd4LM\x81\xec\xd8\x8eY\x93r\x97\xcf6\xdbF\xb6D)x\xff}\xb7\x8c;\xb1\xcb(aZw\x1bO\xa7\xa52\xf8n\x82F\xf1\xf8Z\x15\xb9\x97\xcdT*FW\xa9\xdc\xce?\xf2\x01\xdf\xddg\x99\x96\xac\x96\xdc}:\x8d\xd0\xe0\xc7 \n\xda0\x86\x8cvCP\x04\x9f1\x8cE\x9fQ\x91\x8f\x98\x03\xecm\xce~\xa0\x0b\xbb\x0d3\xc8\x18\x81\xae^\xd5C\x15\xfc\x12'\xd4i*QS| \xc4S\x1d\xd6G\xd54\xdf\xad\xa7E \x0f/JY\x05\xe9\"UC\x12\xa0\xd0\x9c\xdd\x81yZ\x0eE\x91\xd9\xdc\xa0\xa6\xcbG\xf9\x05\x16\x89\x8e\xbe\x8d\x92K\xcd%\xbf\x9a\xecXo\x9f\x17\xed\xdc\xbeL~\xcd\xfb\x90\xe1g:\xf6#\x8bw\xeeK\xcf\x7f\xce\xfb\xab$@\xef\xd8\xad\\>u\xc1\xa2I\x86\xd0z\xd7\xd2mC)\x87\xd4\xba\xd2\x81\x86[\xe8\xf7\xc9\x04\\\xca\xec\xc0:4\xc4\"\xb7\xb9;5\xd6\xb79\xbdB{\x00\x03\x90&\xf1\xf2\xc8?|\x80==S\xb5}\xcd\xd0\x00\xb3\xac\xc8\xb2\x82U\xe8\xd7-\xbe\x95\xb3\xe15\xdbr\xab5\xac\x92\x1d)\x84+hm\x0b\xab1\xa7\xe5\x83\x05K\xf9\xdffI\x9c\xb38\xef\xd3\x10\xf1\xf8\xd6\x12\x04\xadT7\xab\xd5\xf5\xc1\xc9\xd9M\xbe\x8f\x01\xa9\x1es1>c\xf9\xe4\xed\x9b\xef\xfa\x0f1\x04W\x05\x8b\xe4\xe1\x98z3\x10W-Z\xbb1T\xe3\xed\x7f\x0e\x12\xa8\xd14N/\xd8l\xa2\x90\x92<\xee\xdf\xf4\xaf\xaf\xaf\xfb\x1c\xc5\xfb\xdb4\xa2\xe8\xfc\xf3\xea\xac\x8d\x12\x8c\x96a\x8d\x88)\xd1\x94V\xfe*\x8d&!i\xcc\xe6\xfd\x0d)d\xb4\xe44\xf6B\xe5E4\x88AY\x12]\xb1j\xb1.\xedi\xd0km\xb6\x15\xb7;\xf5$\xa9\xa4\x01\x0bg\xc9\x96k\x8cI\x8e\"\x9b\"\xbf\x98t\x17\x82\x0c(\x93]\xa3e\xa2\xcb\x989\xb6\x9d\x9b\xb7\x99\x04\xda\x12&\xb7nq\xc9\xaaY\xa5\x04Gr\xe79\x8e\xda\xf7\xa9\xb4\xfc\x02\xeb\xf8l]o\x90\xafXl\x8aM\xfdQ\x92\xdf\x9c\x88G\xeb8\x7f\x13Pl\x17\"`G\x11P>vQP>\x15\x91\x90o\xb3A\x16\x94\xcf\xc7_\x0bM\xba-A\xc9\xf3\xbe&\xfd\x91\xbfzaS\xcde\xdc\x17\xf2\xba\x1f\n\xaf{u\xb5E:\xdf\x9f+\x1b\xc7`\x91&\xeb\xe3U\x90\x1e's\xe6\xe6\xd3F\xd6+\xb5\x17J\x99`\xcbk\xfa\xd1\xb2\x10\x9dV\xee3\xd0\x9e\x03\xf8\x8eh_Fv\x0bE\xd7E=\xaa\xb1($\xb8Vt\xd2\xd1>\xc7\xf37B\xd5E\x03\xaa\xfe\x9c%\xf1\xe7\xb4\xfd\xa7\xb3\x97/(\x06\xaf\x95z\x95\xde\xdb\x94\x85Y\xab\xe7\x0f\xf9\xf5\xd1\xfd,\x0fU\x87\xfa\xfa#\xad\xd0\xad%\xc6\x08\x94`P\xdf\x8d\xb6\xc4\xb2\xba\xde Q\xda\\F\xf9T\xf1\xcd\xac\x94)\x95\xe9\xbf\xb9\x1a%\xe4\x83\xc2Gv\xa5r4\xc7\x98\x8f\\e\xd7\xf5\xe4NQ\xd6VlL&p\xa5\xf7\xc9\x9c\xd1\xdbd\xce\xfcR\x82\x18`\x9a$\xcc\xbb\xc2l\\z\x06\xf6\x8a\xbd\xc1\xb0\x87\x9a`H\xb3T\x06K\xf3\xf2\x1bf\x9f\x97~\x7f\xf8P_\xa1\x0f\x1f\xc0I\xd6a\xee\xf8\xb0W,NE\x98\xb2/Vn_\xacv\xd2W\x98;\xf3\xe4\xedf#\xed\xbe\x8d\xc8}\xabe\x1a\x87\xa7\xd0\xa7{H\xa6\x8c\xdd\x1f\xdd\\\x0eFN\xbc\xf8\xe9\xfc\xc7\xc9\x1b\xc7+\xefcN\x7f\xa8\xc2\xe2\x07\xe5\x9d\xc1W)[\xb04EI\x80\xde\xba\xd8\x0e\x99V+\x1d|\x7f\xf2\xecy\xed\x0b\xf9\xcbZ`\x1eUoN\xf90&4\x9b#[\xf8\x8f\x937\x90\xa4\xc0[\x939\x873\x13B\x10\x91\x93\x1a|5\x8e\x8f\x0d\xf7\x17\x1d\xac2\x82\x0c6Y\xed\xd3p\xedz\xf2\x8c\xfe\x8ec\xb0\x1a6\x9a\x11Z\xc5\x03B\x1e\xd1~cxb\xfe\xe0\xf6H\x0b\xba\x96M\xa5\x87YT\xa0\xad:\x1e\xdc \xe67q\x8c\x0d\xd8\x99g.-\xa0\x14d\xf8\xed\xeb\xd3\"&\x19\xd7\x91\x0d\xaf\x93\xeeq\xe1:[\xb77\xed\xfb\x9a4l(\xad\xf4\xfe\xbb\xf4\xe8]\xbc\xbf\xcbn\xd66k\xdc\xb4\xda\xe5\x8d\"(\xb2\x8b\x0f\xdd2\xda\x8b\x8d\x1b;\xcd\x0d\x82\xbeWi\xed\x0e\x82|>g\x0f\xe6V\xbe\x9a+_\xfa\xbf\x17\x82\xbbH\xd0-\xae\xeeI%\x99R\xd5SXs\xfe\x17\xe6\nC\xf7\x0d\xf9i\x0c\x07\xc3\xa1\x8c\xfe\xfa^\xfa\x85\x88\x8fO'\xfc\xab\"\xe7\xe2\xed\x138TU\x8a\\\xf8E'\xfcW\xad#,2\x06\xe7\xe5\x9f\xe5\xd8\xec\xbc\xc0\xd7\xb9V\x8e\xffc\x8a\xfc\xaa\xa1\xb1j\x17)/7\x1axDZo\x1b4\xaf\xac\xc7n\xba)a\x0cN\xc5\x92\x80\xd3\xb3\xe4Q\x92\x07Tcp\xceD\xcc\x88P\x06\xa6\x90\xc7T\xf8\x8a\xbe\x9a\x1b\xe1\n\xdb\x18\x9cB\xa1\xd1\x1a\xe1\x1aF\xf1\xb3U\x00\xe4O\x9e\xde\xb6\x98\xc3\xb4C\x07\xde\xbe_=\xc3\xd0\x9f\x8f0\xc3\xe0\xd4\xcd\x94\x174\x97\xca\x91\xbd-3\xe2T\xa3\x1f\xcbGJ\xd5|m\xc4\x9fM{\xa1\xa9\xdfcp4E\x83*\xd5\xd1\xd3,\x1a\x95\xcc\x84\x1eB\xce\x15L`\xaa\xe2\xd5\x9cJ}\xeb\xdc\xf1\x8b(6\x85\x1aV\x7f}\x1c\x05\xeb\x0d\x9b\xd7\xbf\x9e\xc6\xf9\xe8\xbe\xb9\x92\xe9\xfdi\x9c\x1f\x1e\x98\x8b\x9b\xde\x7f\x17%\x81\xfd\xc3\xfd\xbb\xe2\x83%,A\xfbuP\xf9H^\xc0!\x94o\xd2_Bv\xdd`~3\x03\x81y\x10*[\xaf\xb0\xd2\x86\x19o\x9cS\x88\xdd\x87v\xa5\xc4\xc1\xd6\x10C$.\x9a\x07Z\x87\x9aDk\x89\xd8D\xc5 \xd5\xca\x8eP\x94D\xb5\x9d<\x83\x9a\xae\xde)?\xbeu\xb0\xb1:Di\x05`\x82\xa7\xd0\x18\xfd\xd4\xc7\xe8\xa706$\xff\xc1 ^\xc5\xf8\x85\x93z\x97\xad\x17EU\x97|\"u\x9f\xf6J\xfbK\x96wj\\m\x9c\\ b#\xe4f~T\x9a'\xa5{l\xebx\x154\xfbFU:\x96\x1d\xd4\xc2Bs\xe8h\xeb+\xabL\xb2\x01\x02\xca\xab'\x80\xa0\xad}\xe9\xf3\xdb\xe1\x1a\x14\xd4\x02\xdc\xc8\x1e=\xeb\x1c)\xdc\x8d\x88L\x95\xfb\xc5\x18\xe3st\xfc\xcak\xa7\xf2\x861b\xd0\xb2\x0e&\x0bi]\xb4\xe5\xfb\xd3\xf7\xa3\xee`\xd0\x92\xea\x8d\xc9\xc8lfT\xc6\x8b\x89f\x93\x88>\x15\xf23\xfe\xf5'\xd3a&\xb6\xd3\xfb\x8e3\x11\xae\xd2\xbf\xfeT\xba\xed\xcb4\xae\xdf\xf7\x92O\xd3\x94*\x8eA\xda\x0cM.B\x86\x05\xb0\x9c\xc5\xdf\"\x9f\x7f~\xf2\xc3\xc9\x9b\x13\xce/\xb9\xc2\xee\x0b\xf5\xdc\x07\xe7\xe5\xab7\xa7/_\x9c\xf1?_\xbd<\xc3O\xaf\xde\xbeq\x0c\x0b4\xd3\xba\x9c\x89\xf4\x17\xad+\xaeIe\xd2\x13\xdc\xbe\x82\x97\xc9\xfcV?e;\x8dC\xb3+\x96!\x16\xf5G\x1f\"Bnm\x9c\x9ez9/\xbd\x9c\x7f\xe6T\xe6\x95\x93\xff\xa6I\x91\xf60\xd6\xb5\x0d\xbbFX\xa8\x1a\xe3\xaazb\xaf$\xb4\x8e\xb1TC4\xdd\xa4A\xf9\xdc\xa6\xd1X\xa9);\xac\xf2|\xd0\xd9\x9fF\xa2\x1b-\x19Y\x8c\xda\x17\xca\x90D\xb7\\\x84\x96\xc7q,\x83nDm\xa6\x14M\x9c\x85S\xf5|\x04\xb34$/\xd5L\x0f\x87#\x1f\x0e\x87\x07\xfc\x9fC\xfe\xcf\x03\xfe\xcfC\x03\xba\xcc\x07)\x9b\x87)\x05\xd8\xed\xc4\xd2\xb8\xa0.RK]jV>\xddZ\xf6:\x88\x97UwS\xa1\xd4\xce\x92\xb9\xf5\x80\xbe\x04\xba]\xf7\xa1\x0b\xc45+OQBG\xcd&\xeb\xa4|,\xea\x93\x11\xf4\xd8\xe0{\xa5r'\xfc\xe7k2\x08\x02\x86^\xe5?\xb3M\x12g|{\xe7\xfc7j\xce]W_[\xa3\x9a\xd3Z\xd3%\x17\xd0\xad/H\xe6\xb0\x97f\x1b[(\n\xff\xe7\x8f?|\x9f\xe7\x1b1\x0f\xbb\xa9&\xdc\xd13\x0e4\xeck.\x05\xda\x8e\x87\xad\xf4\xa9\\\x83\x101\xecD\xa4\xe4\xa3@g\xe3bN\xa7gQ$\xb7Ml\xae\xeb\x91\xb1\xc4\xee2\x02f$\xd5\x1f&\x8c/N*\x1a\x7f\xfb\xfa\x07G&\xa2\x0f\x07\xda[\x18\x03+\xfb\x93\xfcg_\xecG\x9fWj\xf1y\x91&E\xd5\x91\xa1\x17L\x0f(\x7f\xf0ejn2v\x05\x8f\xf1\xc1$\x97\xcb\xe7\xa3\x8f`\xd1\x99\x1a\xcb'\xad\xba\x86\xbe`\xf9u\x92\xbe\x97\xe6uX\x04a\xc4\xe6&\xdf\x0f\xf9\x88\xaes\x8a\xfe\xfd\x0f\xe9|\xc3b7Q\xc7Q \x9d\x7f\xe1\xe5&'\x8cg\xd1v.\xe2\xd4%\xa5\xd3\x1e.Y\x85\x18\xa5\xec\xb8tND\x15\xd5\x16\xddn\xe46\x96|\xc1\\m\x17\x05\x17!/\x0c>\x00 B;\xf9G\xcb'\xe4\xea\x95\x80:B\x03\x8b\xbb\xb4|0j\xe4 c\xf1\\\x0f\xa6\x9ah\x87n*}\xa0\xf6\xd2&\x95\x9a\x89-\x92\xcf\xc1&\x89n\x17a\x14\x99\xbc\x82\xd5_\xae\x9e\xc1\x163[\x90lQ\x8d\x85\xf6\x07\xd1xiqv\xbai\x94\x9bn\x19\xdd\xbb\xeb\x0d\xc8\x98b\nd\x1b\x1a\xb7\xc0lQ\x14\\\xc0pLQ5\xd5J\x13\xa2Q'\x10\xcd\xa4*\x8d\x9b\xf4\xc6\xe5\x03\xd1|\x13m\xeb\xa9\xfe\xaa\xb6\xd0\xc6\xcd\n\xb5\x18\xef2\x89\xec\xdd\xf2`W\xf9Ml\xe9\x9eQF\xffE*KN\x910\xdc\x9a&\xe7J\xc4\x1b\xcd\xe0I\x11N\xfa\x88k\xd6\xc2\xbf\xe2Y\xee\xa2s\xfd\x8b\xe0E\x9d\xcee\xd7!\xae\x9a5\xdb\xfd,\xc8\x18\x0c\xc7V\xc0\x97\x0dX\x8f\xd7\xe5\x83\x0d\x1d>\xb0\xb7$\x1f-\xd9\x80\xb8z\xd5\x10Y@>\x98\x86\xad\xb9\x18\x0e\xe0\xeea\xfb\x00\xf0J\xac\xcb\xd7\xf4\xf0\xa0\x85\xdb\xc8\xc0\x86\xadm\x06\xd3\xa8\xd73'\xea\x94\x8fY\xf2\x82\xe6\xc9\xe1\xa4F\xf6\xfe\xb9\x0c\x1b\x92<6\x83\xa7\x13\xb8\xfb\x90On\xc6!\xeb\xde\x03\x0f\xd7z\x06}\xb8\xfb\xd0>O\xe5\x95\x8b\x0d\xdc\xbf\xa7\x1ax0,\x1a\xb8\x7f\x0fz0\xb2\xdc\x10\x86\x1d\x1ch\xa9\x97G\x0fT/\xa3\xe1Ac\xf0<\xf9\xa8\x15>|\xe0k\xcb-p\xab#\x045\x96\xb2o\x10\x08\xb0\xe5+\xf1\xe8\x01\xae\xc4'l3\x1f\xe8\x81}\xa0mPp\xd0\x0c\x05\x82\xc4\x98\xa0 \xfd\\(H\x7f\xe7P\x10\xea\x10\xf1\xeb\x83B\xfa\xd9\xa0\xa0F;\xba\x0f\xdf@\x0c=\x93Q\xfd\x0f\xf6_\x82\xdf\x05ER\xe2\x08\xfaz\xea\x94\x8f\xbe\xc6\xca\xf8\n\x15\xab\xa2XVP\xf2\xf2;\xb8w_2\xaa\xc7\xb0\x85'pp\xef\xfec\xe8\xf5\xb6\x1e\x04\xd3-\x86#\xfe\xa3\x03=p]\xfeqt\x1f\x8e\xc0\x19:\"]r\x0f\xb6\x05\x97\x1d\xdd\xf7<\x9b\x87\x8d\xcc\x9e\xd6hFo\xb8E\xd9\x9b\xf0\xfe\xca[\\\xf2ft\x9cR\xceP\xe1\xac\xc8\xb4T\xc5F\xcdRj\x94%\xb6j:I!\xf0=<$\xf9\x8fkNw\xefi\x7f\xdf/\xfe~\xa4\xbd\x1f\x1dh\x1f\x12\x0e\xfb\x87\x8f\xf8\x8c\x12\x0e\xfbw\x0f\xd4[B\xdc\x84\x10W\xbd%l\xc4\xb7\x8f\x86\xea-a\x0f\xbe\x1d\x1d\x1cX\x04xtd\x80>\xc4*\x1dh\xce\xd7P^(BE\x9b\x8b\xd3|K\x0f\x1e\x12\xbdO9T\xfb\x80\x05\x83ib\xb1\xdd*\x82\xc1\xeb\x1e\x0c\xef\x1a+\x8f\x1e\x1d\x00\x0e\xf7)\xdc?\x87\x1e\x7fs\xf0\x10>\xc0\xfdC\xb8\x03\x9dZ\xbew\xef\xe0\xd1}5\xe7{\x0f\x0e\xef\xde5utppWv4:\xd0{\xa2\xbe\xe1\x0e\xdc?\xdcm\x00\xcd\xd6\x87\xb0\xc1v\x80\x10\xd2\xeb\xe9pW2*\xbd}}*\x94\xb1\xb7\xafOa\x1dD\x8b$]3\xab\xdb!\x08\xfb\xc5hx\xc0\x07]\x81P\xdf\xb4\x18w\x87\xf0\x81\x12\xc5\xdd\xbfw\xef\xf0>b\xad\xa8\x9ex\xf0\xe4 \x8cx\x81\xd0\xf3p\xbd\x1e\xd6\xd6ktP[\xb0\xe6u4\x0e\xbc\x03\x01+\x02\x890\x8c\xfbT\x12qs\xe8\x15\x80\xea\x95c7\x96\x15\x95\x96\x88\x05\xd4\x97\xe5\x8e\n\xef\xd8\x94\xb9\x85#K\x98}\x17\xc6!E\xe4:\x02\x87\x93?,~\x99$\x11\x0b\xe2zSG\xe0\xe4\xe9\x96!Y\\\x04QF\x7f9\xfa\xb8\x0b:,\xf5\xa5hw}\xc9\xae\x1e5\xc51,8\x02F\x1e\x18vQ\x87h\xd1\xc2\xc5-&\x0c\xa4[+U\xa5\xc8\x9c\x0fX9\xf1:w\x04MF\x87UgR\xb9ht\xa5\x12\xfa\xd2\xd8\xca_\x89\x0e\xd8\xa2\x18%bD\xba\xe6H\x96\x03<\xb3\xa9\x7f\xe4\xf8B\x99b'\xf6d>\xa6%,qM=\xe3\x83\xcc1\x1c\xa8\x88$\\\xbd\xdbrvL\xd9\xf29GZ\x10+Z\xc0\x13\xd8r\x1e\xb4h2\xe1S\xaa\xe1EC\xa6\x879\xa5$n\xc9\x16\x11\xba\x19\xe6\xb7\xedU\xd3A\xca\x87\xafm\xf9\x12\xf8\xbcQ\x08Skp\x05\x13\x98\xab\xf9\xaea\x02W4\xdf%\xcds O\xe0\x8a\xcfs\xe9\xc1\x8c\xd3\xa4\x15\xf4p8\xf3\xe9\xf2\x9c\xf3\x1b^`-\xd4\xb0\xde\x04\x9a.V`\x08+\xbep\x91^\xdeLp\x88r\x97{\xe4\xdd\xb5W\xaf\x8bj\x02gf\xedDL\xc7o.v\xa1\x8f<\x024\x995\xbe<\xba\x04\x86\x88_\xa1-\xea\xc6\x87\x0f2[\x8fdFJ|,\xb7`\xa8\x9d\x17\"CM\xec\xba\x12)\xf1c \x08\xb5%$\x8fp\xdbW\x8e\x1b#vXn\x94P\xbdN\x8e\x93\xc1:\xb8\xf93\xbb\xcd\x94\xee\xae\xde\x18\x86\xc5\xd1m\x04\xfbU\xb5p\xa6\x84 ^`f\xa8\xb8\xc1m\x93T\xd2443\x15\xaa\xdb\xaf\xb0\x9b\x0d\x8e\xb3\xfe\xd1&\xc0r\xbc\xde m\n}D\xe1\xe9\xb9\x8f\xc86$,\x1b\n\x0c\xf3\xf1\x94\x99\x13\x96K\xf1\xff\x05\x9d\xc1\\\xd3\x7f'T\xe8\x86\xb0\xf1\xa6\"\x00\xdf\xd8\x04\xe0\xb3\xaa\x00|c\x11\x80\xcfp\x8c\xb9^tm\xa5\x1c\xbc\x82\x18<:]\xb9\x87\x0f\x10\x1c\xcf\xe0\x08\x07:\x821\x9c\xa8\x9d9+\xc4\xe0\xb3B\x0c>+\xc4\xe03RJ\xd5[\x12\x83\xcf\xa4\x12 G\xc0es\xe8\xf5(\xc2\xda5Y\x9b\xb1\x8f \x86\x91\xe6\xb4\xc7j\x0e\x035CJ\xba\xa2\xcdp\xd9\xaa\xa0\xf2\x8a\xbd\xde\x12\xabn=\xb8\x82'\xe0\xbe\x87 \xdc@\x1f\x96\\B\xa38\xd5\xb7\xba\x04~\xe5\xc3{N\xa2\xc4\x96]a\xf1^\x9bIl\x96\xc4y\x18ow=\xe6\x03\xe1\x0d7\xe4\x00\xf3\x9bo\xc5Ee+\xcc4\xdc\xf8\xf6\xee\xa1\x18'o\x077\x10\x8e\xc0\xe5\xebz\xa5\x86[]\xd6\x1b\x0f\xe3\xa9q\xd2\xf5\xc7\x83\xa1\xc0\x11\xea\xbfR\xf3\xd2T\xf3R\xaby-\x8f,\xd4\xf6\x188H\xa1\xb7\xf4zk\x1cn\xd6\xc4\xe5\x8f}\x90\xb0\xb1\xb6o8oN\xce\x97\xc3\xd3{\x1b\x04\xc1X\xfb^\x9d\x10B\x98\x8c\xf88\x81\xc8\xbd\xf5a\xc3\xdf]\x8b\xe2\xfc\xdd\xa5x'\x8e\xc4W\xeaH\xfc\xd6\xf3 \x98\xde\x9ec(KXMW\x82\x96\xf0\x17\x86\x9bY 4(\xf7\x18\xe5\x98\xdbsO\xbf\xa6\x85r\x06\x1c\xc1\xf1\xf4Xk\xe6\x12\xc6\xb2\x8b\xe9\xb1\x0f\x97\x16\xc5\x8c\xaf\x06\x06\xf5\xea\xf7\x17^\x93\xc1\x8cou\x99\x16\xdeb/D,\xd5.\x12UE\x8c\xa8\xef\xe7\x1f\xec\xbf\x16\nt\xaet\x95\xe5\xc3\x07X\xf2/^\xfd\x93\x0e\xb7\xe5\xdd\xe3;\xb7\x86'\x90\x19v\xce\xfb\xcc}\xe3Hb\xdd9D\x84\xcf\xd9\xa3\ns\x90B\xc5\x1f\xcak\xd69\x93\xc1#K*\x83\xc3\x87#\xaf\xfdtO\xba\x13\xc8\xebpp\x04\x7f\xffH \x0dAB\x8b\x91\xeb\xc7e\x9d2]\xea\x03\xaeF\xd5\x13\x03\x1e\xb6GI\xb4'\x85HE\xa7\xad~p\xa2|\xe2\xb2Z\xfa\xb3\xd6\xc8p\xd69\x8d\x0e-s\xba[M[D\x81\x05\x1f<\xea2U\xc3\x0cJ\xfaT\x7fD:\x94\x12\x16Qt\xfc\xfbG.\xad\x04\xa83\xd9D\x16\xbc\xf01\x0d,\x9a\x10\xe6\xe9\xe3#\x88\x0c\x82L\xec\xce\xf8\x07\xa0\x98\x81>\x84nDA:g6\xbd\x18\x8aU\xcfv[`\xf3\x19\xeb\xfe7{E\xdb\xdf\xc0,I\xde\x87L\x7fs\x9cln\xd3p\xb9\xca\xdd\x99\x07\x07\xc3\xd1A\xff`8\xba\x0b\xaf\x93u\x10\xc3\xd9*\xbf\x8d\xd6A\xdcT\xe1\x1e\x1d\x9e#\x0f\x99\xa3*O\xfcf\xc4\x99H)w\n\xc4\xd3\x0d\x95\xc3?&\xb0u\xe7>d\xed\xa1)M8SI\xe4\x9d\xb14\x0c\xa2\xf0\x17\x93~\\],E\xa0\xc4v\xd7WZ7O}\xf8P\xbdm\x88pY\xa8n\x05d\x86\x16\xc8L0\xa9\x1e\x88\x06\xc3\x0cB\xf2\xfe\xab\xee2\xeep\xd0\x12\xa8R\x81y\x1c\xac\x9b\x1a\x93\x1auX\x8b4A\x07|\x18\x9e\x9b\xfa\xda\xb6\xf6u\x15D-]\xe1uu\xe8\x813q\xa0\x07\xdbz\x8f\xc2R\x06)W\xb5\x9f-\xadW<#(\xca@\xdft\x18\x8b\xc7\xd4\xd9\x8b\xe0\x85\x1b\x99\" \x89\xaa\xd9\n\x831 \x0dxA&\x00\x03\x14g(\x98?\x86\x1f\x83\x9b\xfe\xb3%\xc3\xc1\xff\x18\xe4\xab\xc1\"J\x92\xd4\x8d\x9a\xa87\x1e\x87\x0c\xe6\xc9:\x08\x8d=\xe8o\xb0\xd7\xe4\x15$'(\xfa\x98\x9cUe\x9b\xea\xd3\xe6\xdd\xe0D\xc1\x8d\xb3C\x87?\x047\x9f\xd3\x9b\x90\xc5v\xe8\xf0sf\xd8\xeaF\xd4\x04\xf4j\xbfu\xa8\xaf\xb5\xd4\x81\xffj2k1L\xc9Y\xebF\xca\xba\x1aP?N\xa9\xab\x04\xfb\x8f\xe1\x9b\xfd\xf2k.\x9a\xed\xff4}\xb7\x1d\x0e\x87\x8f\xf8\xbf\x07\xc3>\xff\xef\x01\xe3\xff>\xa4\x1f\x8b\xc5y\xef\xdf\xf6M\xc7c\xdb\xdf\xeax\xac\x1a\x93\xb9\xfc\xd7'I\xf8\x1dC\xaa\x8b\xfek\xcb\xeb2-\x1c\xc4t\xefk\xd7\xfb\xe6|\x7f\xd9\x16\x8b\\\x1eK\xa0\xbbF\xc9\x9e;\xf4J^\x1ae'\x8d\xf2\xec\xdb4H\xbd\xe3n\xb3,\xb9i\xc8\x1c\xf32+\xb2\x92\xc7c\xbb<\x9eV\xcd\xd3\xb1E\xe4N\xd1U\x00\x1d\x07\xee\xdc\x81\x14m\x97\xf7\x0fG\xe8q\x11C\x0fF\xfa\xc9|\x83X^s\x08\xc1\xca\x16\xc1\x9a\x0e*\x9fbW\x07h\x1c\x12n\x1c\\un0\x1c\xcb\xe3\xcf\xd1\xf0\xe0.|C\xde\x1a8v\x0fz\x90\xf0\x1f\xd8^\x8f\x8e\xf2\xed\xe4'\xa7\xebp\x07w\x87ey(\x84}\xb8\x7f\xb7\xf8\xc7\xf3at\xf0\xd0Z\xc6\x83?\xc2\xfd\xbb\xd62\xe5\xcf!\xfeB\x1f\x84^\xa3\x1bg\xa3\xbd\xban\xf25\x9c\xc6Qh\x89\xbb\x0f1B\x04\xcd\xf4\xe0ny\x84i\xf3$S\xc3\x04R\x9a\x00\xe7\x97\xbc\x03\xfeR\xb5?zt`l\xa0^WTH;\xd8\x0d\xda\xd2O\xea\x90\xb2gw\xf3\xe7@\xc3la\xf9\xedF\xb2J\x91\x86\x0b\x96(\\\xa6z\xfe/\xcb\x19\xb2\xc4\x93\x86[d\xa1\xddAs\x9e\xb4`F\x80V!v\xc3f\x8d\xa9\xc5\x94\xb62\x99L h4\x0d\x83\xd2\xcbCx\x02\\\xbao)\x9c\x90S\xcd\xf0\\\x19\xa7\xc2^\xcf\x0c\xc8p\xbd\n#\xa6\x14'>\x14s\xbb\xd2v\xc7\x81N\xf3x\xe9\x8f\xcc\x19r\xfe`\xdfIK\x8a\x00\xd0\x9d\x04\x85v\xbaS\xbb\xc2\xach\xa3\x8eZz\x8d;\"\xbd\xc1\xd4\x99\xfet\xee\x9c\x97\xcd\x07d;\xe0\xa2l\xcd\x9e\xa3\xda\x12\xa4\xbd\xed\x92\xf0\x0ea\x81\xb0\x1a!%\x1bd\xc96\x9d\xd9\"Fx\xbe,\x18\xca\x82\xe48\x98\x0efI<\x0bD\x10Gv\x0d\xaf\xd9\xf2\xe4f\xe3\xa6\"\xe0\xcf\x07\xc7\xab\x99]\xc1H\xba\xd8`\x11\xc6\xf3\xe3U\x90\x9e\xc6sv\xd3fB\x93\x0f\x87\xd1\\\x87\x0f\x85\x89\xfd\x86\xb3\xa22\xceZ.>\x95,i\x89\xeb\xf9\x02E\x0b\xd7\x98X\xa2\x1c\xda\x1c\xdcx\x10\x05YN\xc3\x7f\n\xb9\xf7\xd8\xe38\xd0\xb8]\x86\xfc\xcc\xbeX\x8aoos\xb6\xd3R\xc8\xd9\xf0\xd5\xc0\x1b\xb4\xb4 \xe4\x95\x858\x83\xf5q&\xe6x\x8b\xc4\xc5\x9fu\xbe\x1a*\x17\x87n\xa6\xebc\xa6j\xf6\x0d\xe0\xd2\x0c\x9e\x88\xc6\xc6\xbd\xb3EY.\xe4\x1b\xe5\x98\xc9\x85\x8d\xea\x89\x88\xfe$\xe8t\x84\xfb\xd4\x92~KQ\xc6\x84\xeb\x8c\x94)?\x99\x0e\x8dq6tyg\x97\xd5j\xbd)\xa3?r\\Hc\n\xdc\x92(\xe8#\xb50\xee%\x7f>\xb6\xedA\x8a\x06W\xd9\x8b\xf1^\x0c\xd8D\xbc\x96\xa5$\xa9\xf2\xc9\x84\xbcA\x92B\xb4+\xcd\x89\x8f\x15}?\x87\x9e\xafdN\xe95\xca<\xa7\xd0=\xa8\x07\xee\xa2Q\xe0\x10\xde$\x9c\xf4\xbdJ\xc2\xb8\xc5\xe6!\x9f.\xb6\x0f\\\xdb\x99lW\xae\xb1\xc6=DjIU\xc4\x13\xd6\x12\xa1~j\xef\x1b\xa7o\xe1\xfajBo\x84\x85\xe8\x8bM\xac?\xb9\xcf\xd7\xf2\xf9w\xdf\x9d\x1b_\xeek\xbb\xfeQ\x1c\x16t=\x13\xf8\xba\xdf\xef\xbf\x8b1\x00\x96\xb3\xca\xf3M6\xde\xdf\xdf\xb0\x1c\xf3\xdd\x0f\xb2\xeb`\xb9d\xe9 L\xf6\xaf\x0e\xf6\xe5\xaf\x9f\xb3$v\xde\xc5\xf3d}\x11\xce\xc7\xe0|%>\xf4\xb7\xa1\xf3\x8e\x0e\xc1\x82\xd2>\xab\xa60\xf2\xc15-\x07\xf4a\xe6\xc1>$\x1dg\xa5?ie{\xb4\xa3\xc0\x0cz\x10\xc17d\xee\x1d\xdc\x83#8\xc08\x0e\xdf`$&\xfe\xbf{\x17\xfa\xf4\xd2C\x95\xd2\xa6\xe0\xd8\x9e\x02Py\x17#\x0e\xac\x08\\\xdf3t\xef\xf5\xf0\x00\xf2 \x10`\x0f\x88L\xd37.\xb1\xa0\x0b\x90\xbe\xd2\x81\x0f\x8f\x1eiPo\xc7\xce\xea\xf3\xd1\x87G\x1d\x8b\x7ft\x9b\xcb\xd9/%5\x90\x84h\x07S\x85|2wK\xf1\x9e\x8dG4\xf2\xb1\x84\xb4\x93\x8c\xc8N\xa4X\xbe\xdd\x8c\xbb[\xbb\xa1h\xd4\x1571\x91*y\xeap\x8c\x8fU|B\x87\xe6\xdcS\xc6\x9d\xdck\x8a\x1d)\x1f\xe1`\xf4|\x9b\x8a\x00\x90q;\xb8\xb3\xf9\x92\xbd\\,2\x96\x9bBz\xeb\xcf'\xed[\x9e\x8c\xc1\x92\xab\x80>\xff\xd7\xb8\x89\xd6\x85q\x9e\xfc%d\xd7\xe5u6]\x9c\xad>\x92Wc\x9c\xf0o\x93m<\x0f\xe3\xe5q\x14\xb28\x7f\xcdf\xb9\xeb\x0dV\x88'\xed+\x14H\x8a\xae\xf8Z\x0f\xc2\xf6j3YM\xe2j{\x95\xc5N\xbcc\xc3Q\x02zm\xa1n0\x05\xf2\x13Xp\x88\n\x91^<\x85\x19\x1cQ\xbc\x01Z\xc91\x04\xe2\xc3\x06\x8e s\x03N/\xf9\x9b\xa2\x00\xb1\xd2\x06\xccn\x80\x81\x19\x8bs\x96\xd6\xb60\xed\xb0\x8b\x99\xdb$]\x94I\xe1>\x1c@\x8f\xa3\x0b\xc7\xaa\x96]\xe7\x85=OL\xefS\xe6\x94\xe5\xc9f\x0c\x81\xbd\xc0:\xb9\n\xe3e\xc7\x0c\xfcP\xd0\x86\xbd\xbd\xfa!\x90|\x1a\xc6\xc3\x81f,\x80\xa7\xb1\x14.\xdfX[Jca\x833N\xbdUN\xb3\xa4\x14?\x90\x7f\x9cDl]s \x04\xc1G[\x17C,\x82\xd0E\x88\x9f\xfd\x17\x1a\x91\xc5\x8f7\xc9\xa6\xcb\xd0\xd0j\xef\x9a\xfb\xa0x\xd7j\xe0\xd4n\x18/\xc5\xc8yo\xea#/k^N\xa4\\\xddd\xe5\xd2l\xde$\x1c\x92wL]\x81\x9bkIN\xa9P\xa0#\xac\x95\x978\x8cc\x96\n\x89\x01\x97y\x86\xc8Bov\x1c\xa3\x00\xadn\x8b\"\xf5T+\xa2\xe6\xc9\x86\x93 \x14\xde\xe2A\x82,\xca\xb4\xfb`\x06W\x83\xb75\x06%\x0drv\x86\x1bQ\x8b\xeah\xa3G\xd2N\xd5\x08N\x96D2e(i \xcb\xaf \x9c\x03\xef\x8ek\xff_\xbb\xed>k@'h\xec\xe8S`M\xc9\xe7\xac\x04^~' \xdc\x15S>\x0d\nw\x86/\x01/\x7f\xa8\xbct\x82\xf9\xfc\xe4\x8a\xc5\xf9\x0fa\x96\xb3Xd\x0c*L.{b\xcaq\xf2\xff\xb2\x98\xcc/\xf8\x9a\xb9%\x9ac\xbc'&E\x1ag\x15fy\x92\xdeV\xad9\x9bm\xb6:\xcb\x83\x9c\xcc<\xa2\x90y\x9d\xb8L\x13\x92 \x08\xe1\xe05\xe3\x85Qj\xd4+\xd7%\x0b\xcaT*>\x0fj\x95\xf9\xe8\x82m\x9e8\x9e\xda\xdc\xea\x82\xb8N\x94\x04s\xc7o\x87 \xeakWE\xb1ql\xeb \xde\x06\x91%\x86=Wq\x1a\x86\xbdI6\x19\xaen\x9b\xe7\xb5|\x18\x86\xe8&K\xdc/,\x16\xdc\x8cRH\x15\x9f\x12T\xf1\xc4\x8bAQ\xce\x06\xf7\xb0\x87\x97\xf3\xc40e\xb0\xf7\xc1*\xc8\x10\x92v].iUL\x06\xa8\xd0\xb8\xde\xa0\xd0\x08\x9aO\x0dZ\xedC\xd2h\xa7 {\xc9\xa4x\xf0\xed\xed\xe9\xdc\xadM!e\x0b\x99\xc1\xef+\xc7\x9b\x8e\x9a\xf2\x05\x83t\x8ek\x1b\x05\xd4\x0c\x05$L&\x850\x99s\x1e\xc3:\x88\xdc \xe4\x98D\x08\xe9\x9c5\xb5+\xf4Cx2\x81\x14\xc8 \x1d\xd0\xff\xdc \x124\xa8\xa8\xd0\xac}\xd9\xa1\xd9D\xb6\xf6L\xae\xebW2\x8aO\xe1\x86\xe5\xb8?}x\xf7.\xf34J\xe5\xbe{\x97}\xf87\xcf\xe4\xc2i\xc5\x9aY\x14\xce\xdewB\x99\xd2\xb1!\x1b\xe4A\xbad\xf9c:\x89q\x9e9\"\xd8L\x1e,_\x04k\xf6\xd8\x13G\x9f\x9b eq\xfe\"\x997$\n\xdfs\xf7\x90\xb1\x8c(\xe0\xd7\xe0z\x15\xceV\xa4&`\x1a\xc8?\xb3[\xfa\xb5fy\xa0~\xcc\xf24R?\x82\x88\x97j\x8c\xfd\x82\x16\xc86h\x94\x90\xa8\xa8\x94\xa2\x10\xf5\x08d\xe52G\x95\xdf\xe3\x9a\x91\xbc\xfa\xc4\x1a5\xd1\x80\xb6\xb9R{\xca?\xd0\x88\xac\xb8\x96\x82\\\xc7\x8d\xeb\xe7k\xd5\xa7\x94\x02pW\x90\x06\xdd\xc5\x0b\xb3\x18\xe4y\x1a^ns\xe6:\x9cv8\"\x85A3\xd9\x12\xc6\xfe\xe2\xce\xf6W\x0e\xf9\xb7n\xc9C:\x1f\xcc\xa2 \xcb8\x90\xb5\x86\xfa\x91\x06\xdf\x06\xb7w\xf9D\x0d\x840-\xdcZ\xdcQ\x9b\x89\x10\x8fW\xber\xc4\xd1j\x87\xbdB\x0c\x88\xe4\xd1J;\xb9\xca$\xac\x10q\x8c>\x95.\x01egJ\x19'\x08\xcf\xc94\xd5\x06}W\xe2\xcac'\xd6\xa5?\x15^\x02\x93\x16c\x164\xab\xd3\xf2Y\xec\xcc\x19\xa9\x16]\xff,3\x9c\x0c\xfa\xb0@/\xeb;\"x\xd9N\xb3\x94(\xa7\xa4<\xf7\xef\\\xdet\x8c>^\xfa\xf3\x11C\xbb\xa2\x94\x91\xf9\"\x83\xf4\xac\xc1\xe8af'\x16V\xf2\x07{!\xe9\x07\xa7^~t\xcb\xdea\x18\x9e\xd1\x18J-\xc5[\xad\xc1f\x13\xdd\x92\xa7 \x8c9\xac\x7f\xf8\x00\xae~\xa2\x1c\x9a\x0f\xa0;\xdd\xc9\x13\xc1\x1b\xe9\x94\xb2\xc8\xc9\xe7\x83sq\xc1\xb2\x1f\x93\xf96\xe2\x92^y_0}\xdbX\xcf\xc8\xa0\xeb\x99\x926m\xdc\xd8\xbd\xeb\x19\x02\xa8\xf0\x0f\x07\xd5\x0f\xa1\xf8pX\xfd\x10\x88\x0f\xf7\xaa\x1f\xb6\xe2\xc3\xfd\xea\x07L\xf6\xe0\x0e+o#,^MJ\x85'G\xbc\x15\x94&\xf1\x0f\xb2\x88\xb9\x87\x0f\x1fT\x1b^P\x94\x17\xcft1\xd3\x90\xf4Y?\x83f\x83b=E\x9c\xd5:\xac\xcb\x9b\xb1-\x97/A,2E\xbdX\xb1h\xc3\xd2l\x90lN\xe7\xe5\xe1\xb6;\x02\xaa\xd1\x0b\x7f:\x0b\xfe\x91\x9c(F\xe7\x89Lj6\xcf:\xa9\x9e\xf1JA\xb5\x92\x9b\x0f..0\xfd\xd9\x05\xc5\\\x1b\xfa\x18\x19R\x16\xf2<\x91#\x11K\x93{g\xe3\xc1D8\xc8\x93\xe52bg\xab\xe4:\xeeJK\xa4\xb0\x1f\x0e6i\xb2i9c\xcc\x85\xd3\xeem\xb2\xcd\x9fa\xdb-\x15b!\xb7-\x9b\x8b\x91\x97\x1cG8$\xd5\xd5\xcd\xab>\xc25;\xc3\x896\x17E\xad\x96s\xae\xd7,K\xa2+6?\xdb^\xe6)k<\x0f\xc53P\xcd?'@;\xf9@$\xc6\xa95\x84!KV\xc9\xb5;u\xd4\x0c2\x87\xec\xd9\xe7>\xec\xd9\x9c\x9a)u\xcfq\x10\xcfXt\xccE\xe2\xae[\x869j\x04\xbdo\xde\xae\xf4\xf64\x7f\xb9\xcdO\xe2\xe02b\xf31\xec\x85B\xa7\xac|\xb1\xb6b\xc8H\x03\xc5\xd8\xdf\xa4\x1c\x10v\x1a\xfb'\x80[\xb6a\xb3\x1d\x80m\x13\x98b\x8a\xea\x0fA\x1be,j\x10\x0c\x7f\xcbU\xe60\x84.\x1b\x7f!\xbf$F\xc9\xc11\x87ejs\xab\xa3M8\xb9a\xb3m\xde)q\"\xec2-F\xed\x9e\xc6\xaf\xd2d\x99\xb2,\x1b7&\xf2n\x18c\x1d\xfb\xba\x0e\xf6\x13\xa1\xe5\x8cEl\x96'\xe9\xaf\x00/]\x08\x13\x1f\xc2\xab _\xd9aK\xdd\x07\xc0\xac\xf6\x1b6\xab\x12\x15.\x9b\xfd\xe9\xcc\xf5\xe8\x12\xb1\xa9\xc4\xd4\xe1\x03Wt\xa6a\xf9\xcdt\xebW\xde\x82_\x0da\x7f\x85\x0d\xb0\x10\xf6\xf2\x1eX\nu\xdf\x06R\xd1\x9b\xb2\x00\xd6 \xc9\xc8>[\x13zZr\x8a\xfb\xa6;\x97\xb57\xca\x11\xc1\x87\xad&\x85\xf8\xc2\x07\x81OA\x7f;5\xcf\xe3=\xbb\x1d\x83\xb3\x0e6Hb\xde$\\\x8c\xce\x1c\xf34\x84\xe8\xdc\xd9]B\x1aJ\xf2A\xb2i\x07\x98\\\xc8)\x1d\x89A\"\xc4\xb4\x9c\xdc\x1d\xe3E\xb8\xcc\xbc\xb63w\n&?Of'7\x9b \xce\xc2\xa4\x834\xc2\x85G\xb6\xf9!\x8c\xdf\x87q\x8bX\xb4\xa5\xe2a\xb6\x89\x82\xdb\x97]\xa5\xa3L\xaf%R\xd9I\xff\x8f\xe6\x9a\x11\xa9\xb6\xdb\x0d\xd7\xa6\x10\xc6\xd7a\xfe#\xa2]\xcb\xeaa'OO\x16\x83\x1f\x83M\xab\xd2\xfe\xb3\xd0\xf4\x17x\x13\xfcOg^\x0b\x8b\x03T4\xc6p\xda\xdc,\x7f\xf2`\xd9\xe9\x86\x05\xa7\xdfV\xef]\xfd\xc9\xa4\xee\x91[\x14-\xfa.\xf4,\xc7\xc2\xdd\xf4g\xce6)\x9b\x059\x17\xf1OI\xf3-^9B]3\xf6\xa5\x15\xa3\xee\x9a\xccS\xf2!\x0e4\x86\xa4\xbdh\xa1\xa7t\xb8JQ\xd6UZTi\xa8\xaa\x8a-j\x19\x96\xaf\xdb \xc4\x82u\xb7X\xb4\xf7R\xd2/;\\\xf0SzU\x8b.\ne\x15\xaaE\xf6\x80\xbaN\xd9B\xf2AW\x81Z\xf4O\xb0\xe8\xc6-\xda(4\xe8\xc7-B\x12X\xd5\xfd\x16\xce\x0ff\x89\x96\x04b<\xd2\xa9}mo\xb0f\xd6\xd5\x9a\xebzB\x04P\xf7_\xd7\x1fa-\x89\xa4\x89V\xb8\xb5\x0b\x8f\"\xf7\xc7\xb6\xabb\n\x9c\xc7\xf0s\xf3\x8c\nm\xba\xcdh\xdf\x11<\xba\x82\xb4v\xb6-\x96P{\xd3\\\xb5tR)*\x97\xde\xb5U\xd7\x0eiUu\xed][uqD\xa7\xaa\x8a\xdf\xcd\xd5\xa4<5\x86\xcb\xf6\x82\x82\x95\x8f\xe1\xba\xbd\xac\xe2\xe3c\xb8h\x19y!$\x8c\xe1e{Y\xad\xe5W\xcd\xa5K\xf2\xd0\x18\x8e\xbb\x94\xd6Z?k.\xaf Och\xd9\x9d\x92\xe44\x86g\xcd\xa5u\xc1r\x0c'\x1d\n\xa3T9\x86\x9b\xe6\xa2\x8bx\x0co\xac%l\x87\xab\xb5\xb7\x1f\xcf=\xbfrO\xe4\xa3\x9b\x0d^mSfJ1\xb9\x92\xe4\x02-\x1d\xb5\xb3\xa9\x12s\xda\xab84\x16t\x00\xdd\xc7J\xdf*\xbc\xa4Z\xd5\xc4\x0c\xaa\xb2\x84\x8d\xf2k\xc6\x05\xcc\x15#&\x00\x13\xa0\\\x14\xbf7\xc7\xaf\xc8\xe6\xf8\x15\xd9\x1c\xbf\"\x9b\xe3Wds\xfc\x8al\x8e_\xfc\xc3Pw\x1a\x8a\xc8\xb9\xcb\x92k\xfa\xb7\xf6\xd9\x9a5\xfadi\xfeX&k\x8cv\\ip\xc7\xf2?\xd9\xe5Jx\x18bq\x992\xa7\x9a\xd6\xc8\xe8\xd4\xf8\x19\x07\xa7d\xa0Z\xb2\xfc\x07$t\x06)\xbe\xab}j\x17\xdbT\xbe\x83\xaa\x1c\x9b\x14\xdf\xc1l\x9b\xa6\\\xbch\x10t\xd1>\xe9\xc6\x98T\xbc\xd1y\x0d\xef\xe8\xb6\xceO\xab\x90Yd\x1dg5r\xa4O\xeb\xd7\xf0\"\x11\xdc\x03D\xf0\x19\xbcS\xe0|\x8d\xe7\xf5_;\xf0ug\xd2Z\x86\x00\x93@\xd5bg\xfc\xa4=T@a\xb3\xe6\xb6\xac\x06\xa3\xa50\\\xfb(\xcf\xa7\xcc88\xd3\x90\xed\x99\x18\x87Nwg>\xccj|\x84Z\xff\x171\x16\xcf\xfftb\x8c \x8b(\x15\xfa\xd5|a\xb0\x8b\xd3\xac\xba\xf0\xc3WL\x91_\x15_?\x82 \xe5 u3\x8fr\xe8\x0f\x1f\xc3\x0c\x9e@\xf6\x18f\xbd\x9e\x07\xd1tv\xae\xd7\x9c\xce\x0ca\x01\xc5R\xc6x\xe1\xd1\xe6\x9c\x8b\x18\xd8\xca-fA\x14 \x96\xc1|\x98\xf2\xba\xe72\xf4b\x84IZ\xc3\xc1,J\xb2N\xeeV\xc2\xc5J\xb7\xfd\xa11\xfc9G\x85\x10\x7f\xbbU\xffz 4\xc3\x8bZ5\xa6\xc77\xe3\xb7\xe0\\_\x96\xe4ub[\x1d\x0d\x9eqwcj\xba\x03;\xa4\xd3\x15\x96\xa6\x1d\x86\x10\xeeb\xf1\x0e\x84\xf1t\xf0\xec\xec\x8d\xbd\x14\xdfm\xed\x04-\x90)m\x1b\xcc`\x98\x0e\x15\xa1)\xd6\xc1\xa9\x81sS\x8aT\x87\xaf]f\xcb\xd0\xd0\xc6\x8a\xe7\xe1U\x8dT\xeb\x8f\xbaV5\x06g\x1e\x06Q\xb2\xecoo\xacWq\xbfH7\x97\xc1\xec\xfd\x1f\xea\xe57Z<9\xa5>^\xcf\xff\x8d\xfaZ\xb1`\xfe)\x9d\xad\x0e\x95\x1c\xe8<\xbb\n\xc2(\xb8\x8c\x18\xea\xfbI\x1a\xfe\"\\\xb8\x9a6\xfbr\x9b\xe7h\xe0\xb5\x0f8\xbf\xdd P\x89\x92\x9d&\x86\xfc\xa0\x8f\xd3k\xa8\x91\xc4\xba\xb9 \xeb\xec\xbc\x02\xd9\xd5\xb2q\xf4\xd7\xe1<_\x8d\xc19\x186\x0cd%\xa2;\xf0R;\x8f`\x9b\xd5e5\xfdY\xa5l1\x06\xe7+\x9c_\xc3 n\xa20~\xff}\xa9\xb0\x05y\x91\xe9~Y\x00\x9c%q\xce\xe2\xdc:\xfbh\x80|\xee\x8c\xfd\xcd\xf5\x06\xeb`S\xcaI\xdex\xfd\xb7\x85~\xce\xda\xcc\xb6\xc8~[\x0e?\x9e\x9d\xbdi=\xf0\x98\x17,\xc1\x1a\xb7D>e\x13X\xcb\x19\x96\xce\"[\x0f\x81*\xa6\xb8\x96\x93\xdb\x92\x91\xaf\xc5\x00\\1{\xd6\xdd\xa1\xe5c\xb3\xb4y\xf8\xd4\xbe}9%\n\xdf\xfeK_\x12\xcf\xbf\xf4\xa5\xff\xc5\xfa\x92\xe0|]4\xa6\xce\x97S\xf2\xeez@\\\xd7/\x06\x1a}|\x93\xa8\x83g\x9bI&\xafim\xe6\xd4\x15\xffR\xda\xccO,\x80\xac\xac\x8dy\xa4\x8b(\xd9\xedU\xb2\xd9n\x1c4,6+u{{\xbb)>\x89\xa8\x13\x14\xee\xce\xde \x0b\x7f\xb1D\x13\xf9\x92:\x10\xef\xb2\x7f\x9d\x06\x9b\xcd\xa7\x08\xbc\x1d\xe4U\xad\xb3\x04\x8e\xc0\xb9\xccc%\x113\x88\x92\xd9{6w`\\\xfd\xb0\x8d\xc5\xa7\xae\xf2\xaa\xf8\xb5\xf3\x14\xb2M\x10kR\xbb\x1c@\xa3\x98\xfe\xcf\"\xe5\xe2\x82\x7f\xa5\xad\xf1W\x1d\x96U\x13|\x1b\xea\x9bG\x8c\xf4\x14\xddkm#\x8f\x85u\xf8_\x92\x0d\xfcK\xb2\x81\x7fI6\xbf\xbddc\xbd7\xc0\x06Y\x9el8\xd4\x07\xcb\x80\xf8\xb0\x99\xff\xc8\xcb\x05\xd2z,:\xb1\x88&\xe8lop\xa9\xff\x9f(\x8e\x94\x1c\xd5?\x8dy\xef\xc6R9\n\x96\x85\x94\x8b\x0b\xceH5\x9am\xf8\xda\x81\x0b8A\x1a\x06\xfd(\xb8d\x91c\xea\x06h\x9c\xd6\x8e\xe4\xf7\x0e]}!>\xfeO\xc2\x93\xd9g\xf2\xe4\x86\xfa\xe6\x11\xff/\xb4\"\xcc8K\xad\xf1\xd4D|\xa9q\xe1PV11\xdb\x99\x89\x0bo\xc5\x87\x1a\x17\xce\xc4\x87\x1a\x17\x8e\xc4\x87\x12\x17\x9e\xc9\xc8G3\x11\xf9\xc8\xc4\x8fg\xbf=?^t\xe5\xc7\xb6\xb0EU*l\xe5\xb9W\"\xafz\x95\x98[}g\x92:\x0fl W$\x16+\x18$1\xa7\xcd\xc7\xab ^\xb6g0\x02\x8d\xcf\xb1A\x1c\xac-\xbaXP\\[\xab\xb0\xe8\xbf\x7fDL`&\xf4\xe3\xfc.\xc3\xbb\xee|H\x9d\x06S\x0fb\xc7\x1b\xa9\x1f\xdf*\x15\xca\x0d\xc8\xe3\xd7\xd2}\x94,M\x91tv\xe8\xbfY8\x08\xda\x14t\x8a\xab\xd0\xc9@B\xc1\x154\x93H\xcd\xe6\xdd\x1a\x80U@\x819\xa25 \x1d\x19\xe4 \xc9w\x96\x99\xc5b\xcd\\s:\xd3\xa0~\xec\xbe\xc3b\x9a7\xb3\xe3Y|P\x84\xfa\xe0\xbf,8\x0ee\xd9)3\xcaN\xc1?@vj6\xe2t1\xf6\xc4U\x00i\x83\xa5\xee\x87\xeeyW\x1bR\x88\x85\xbb\x9d\xd0\x07t\xd2\xcd\x91\xff4g\xeb\xa6\xabH[*Jy\xe0\xda\x8cO\x19\x15\xfe\x96d\xc8\x96\xa3\xf6\xa4do\xb2\x97\xa5\xc0\x19\x8b0\xcaY\xfaIH\xb7\xb77\xc3k?\x96(\xea\x80\xd8g\xef\x7fc\xee\xbfc\xe7r\xe5D\xd4]\xbc~\x94\xdfnXC\x8c\xd8\xa6\xc1\xcc\xbf\xcc`&;\x0c\xa6Q\x8f\xb0\xdd\xbf\xd8\xdd\x088K\xe2<\x08\x9b\x0e\xd9\xf7\xf66h\x95\xe4b\x87\xb5\xdfE\x92\xae\x1b;Nb\x8a\xf2\"o\xa5(6h\xebvS\xa6\xf6mI\x97Z\x16&\xe8t\xc2\xd9v\xba7[\xb1u\xd0z`\x18\xe3\xf2\xb6\xb4\xb5\xd3\xe9\xa6.\xc3\x8c\x81\x95d\x9a\xe6\x9a\x81vy\xad\xe5\xdeK\xf9\x08\xf5\x13\x8e.\x0bN\xea\x7fA\x00\xbd\xcc\xe3VK\xb5\x00P\x8e^\x0b\xfa\xf3\xc8:\x82\xack\xef\\e\xa6\xa3yi\xa3\xee\xac\xcdjR\x96m\xc8\xce\x0fX\xc6\xf1`\xfciC\x15\x1e!\x84H\x1d=B\xeaS*\x00\xc4\xba\xb8e\xeb\xf8'\x8d\xb5e\x0c|\x8b\xe7I\xdc\xe4\x97\xb1\x83\x97\x8as\x8cn\x1bh\n\x9bs\xa25o\x03 \x01\x94t\x18\xf0E 7\x9b%\x1b\xd6\x9f\xb3E\x83/\x87\xa5\x9bMq,q\xc6[\xc9 H\x19l36\x87<\x81e\x1a\xc49\x041\x04\x9bM\x14\x8a\x80\xd3\xf3p\xb1`)\x8bs\x88\xd8\x15\x8b2H\x16\x10\xccf,\xcbx\x95y\x90\x07\x90\xc4p\xc9VA\xb4\xe0\xdf\xf2\x15\x03\x16\xcfy\xa3\xe9\x00N\x82\xd9\n\x9e\xbd:\x85up\x0bs6\x8bx\x7fI\xcc Ia\x9d\xa4\x0cp2\xd9\xa0i\xf7\xf5Q\xf3\xa6R\xf6\xb7m\x98\xb2\x0c\xbbZ$Q\x94\\\x87\xf1R\xb6\x04Dg\x80b\xe1'1\xcb\xe06\xd9\xc25\x9f\x9a\x9ac\x9e\xc0\x19\xa5\xd1\x85\xb7\xa7\x03\x07\xe3\x03\xef\xc6\x81?\x8d\xfb~\xac\xbb\xd64J<\x9f\xcb\x91A2\x9f\x06%\xc5\xbe\xf0\xdb\xb6\xa6w`\x00\x92\xbd\xb5\x05\x8dA\x10oR\xa9\xda\x19\x04\xa7z\x9ft] \xeal\xa3\xa2\xe4b\xbf7\x1b\xd5\xef\xf2<\xc8\xa7?,\x96\xa8\x7f\xb6\x93\xa1\xffy\x17\xb6\xbe\xa8\xda\xdd\xa6T\x8b\xd0\xaaH\x0b\x9aUo2\x905\xeb\xdc\xbb9\xbaw\x93kC\xe5\xe3\xd1\x16\x1a(\xd8\xc1}^h\xdc\xc1&\xfc3\xbb\xe5\xc3hR\xa4#*|\x19d\xe1\xac\xad\xecL9\xd17+\xdb\xb9\xce\x9a\xcc\xda_v\x1db\x06\x93E\x13C\x9a\x05\x19\x031\x0fgl-\x06bh\xb6\x83\x8dV\xce\x02\x1d\xb5&\xe8\xae9AW\xed j\xfaJ\x87\xc8\x1c:+\xec\x10\xf9c'\x0d\x0dHF\x15\x1a\x9a=\x8d&4\xe8\xf6\xf2\xb9LY`9V\x05\xb5\xbf\x08z\x9f\xb1\xbd\xd1\xbf\xb6\xf7\xf7\xb9\xbd\x92U~\xf2\xcev\x928A\xedn\xf3\\|p\xde\xc6\xef\xe3\xe4:Vas4'nTB\xc1\xf1a\xd1\xf5v+t8\x0bo\x1b?\x8d\x1bz\xe0\xf4\x7f\xde\xae7V\x15\xcb\x90h\xe6\x7f\xf8 \xe8\xefR\xba\xfc\x97L\xf9\xbfD\xa6\xe4\x82V\xd2@HU\x1c\x00\xd7A;E\x93\xd0\x14\x17e\xd7,\xcb\x82%k*\x9d\x16\xa5\xb3d\x9b\xce\xac\x02\xd4\xe7\x92\x1e\xdd\xc6\x83\xb3\xb5\x85m\x05\xcc\xd3}\x1b1\x13\xe4\xea\xcfe0{\xbfL\x93m\xd4)\xd5\xe7\xfbm\x80\x1e\xf5\x07\x97\xe7\x1f\x16\x98\xbay\xa7\xa1t#\xaa\xc9\x95\x16t\x7f\xea;w\x8a\xd4\x10\x9c\xe0\xe14\x1c[z\x9c\xfa\x92\xdbX\xd8\xef\"\x94w\x1b\xdc\x83.(u0\xb2\x81\x12\x95\xba\x99\xc4@\x19\xe6\xda\xf7.\xc44\x8d\xcei\xbc\xd9\xe6m1v\x03*\xfb:\xb9n+\xb9\xa5\x92\xc7I\xa3\xb0\x08*\xff$\x1e\x19\x9fp\xc1\xac\xad\xfc\x8c\xca\xff\x18\xa4\xef\xe7\xc9ukX`\xcaB\xe9\xfc C\x9d\xbe\n\xf2U\x9bO\x0e\x08\x17\x96\\\x04W\x12\xa4\xa9\xb9\xc2\x1c Y\x10E8\x85\xcc\xf5v;\xf0\x92\x8fdo$\x11\xf3%9\x9d;\x1e\x9e\x7f}\xba\xe9\xa2\xdb9W\xcb\x19\xea\xean{\x99Y2g\xaaT\xa2\xe2\x04\xbb\x0e\x07B<\x07t\xfe\xff\xff\x0f\\2pz\x8e\xbd\xa5E\x9b\x11\x84\xa2#OU\x16\x19\xcd\xe7\xce\xf1!9\xb7V\xc6\xb4\xb6\x9bF\x87\x98\xd5}\xc3\xf5\xb2y\xd3\x19j\xd0\xb62\xad\xb7\xf4I\xf7\x19\xcb\xf5\x9a\xb3l\x96\x86\x9b\x1c\xa3^7\xcf\xe5\x93\xc7\xa4\x1f\xfc\n\xbd\xa8\xeb\xd6\x96w\xf5\x8b\x8d\xe24\xde}\x0ca\xfc\xd9#\xa0;\x13j\x14\x88\xeec\x07\xc1\xa4\xc1\xf1\xa04\x18\x07\xbe\xc1\x07\x1a\x9dB\xb6mC \xdb\xc0Dx\x8ep\xe5\xabE\xcd*L\x9e\xf2\x92\x06\xfel\x82%\xcf\x87yS\x98\x8a\xae\xde\x83\x9f\xe4g\"\x1fT\xcd[\x0f\xb2\xa1\xfd\xe4\x1d\xc0\xea\xefD\x9f:\x0b\x1a\xa6\x80\xa9\xa6\xc3\xec\xf2\x907m\x97\xd3u\xc1\xa2N\xbbK\xbb\xa67e\xdd\x85+\x91\xfa\x8e\x15\x97\xbcZN\xe3\xc8[6\x0f\xd2%\xcbi\xe3\xede\xe5\xdd\xb7\x8a\xbf<#\x91\xbcmg\x85\xc0ega6\xf6\xc5\no\xfd\x10\xd3L\x87\xadz\xfc\xbf|\n\x8a\xe7\x93\xac\xbe\xffd>\x05\xb0\x9bN\xde\xe9f)\x88\x9e\x7f\x83\xc4\xdc\x0b*\x186\x8cb\xdb%|\x05\xdf\xd1m\xab\xde\x11a\xa9f\x9d`&\xf3a\x0b\xc1w\xb0\xcdXj\xbfP#v\xbfK\xf6RR\xce\x1b4o\xa9\x9c7\xccS*\xe7p\xd4Bs\xe4\xa8m\x8a<\x7f>r\xf0\xb4\x9a\x19\x7f\xeb\x94\xa8\xffp=\xbf\x8bc\x06\x94\\HZ\x95\x0e\xbaM,\xf5\xfcX\xd3\xf39\xda\xd8\xd6\xbe\xbe\xf0\xffK\xb5\xfdv\xed}\x978\x93\xf0;\xd0\xf6\xa3O\xd3\xf6wS\xdf\x17\xbb\x99\x08\x0c\xda\xbe\"z\xedj\x7f\xf2\xab\xaa\xfduc\xa3\xfetP\xfb[N\xccH#\xb1GH,\xd4~\xe7\xdb \x0bg\xe5\xe8\x88\x8e\xbdj\xab\xce\xdb\xac\xc3\xa7]tx\xfb\xb0\xad:\xbc\xadJ\xd0\xb6\x14\xad6\x89O\xd7\xe1?yLU\xdd\xf5\xad\xe4yR}\xb5V\xac\xa8\xaf\x8e\x0f\x1b\xfc\x9f\xeb\xaf\x0d~e\xcd\xc3\xf9\x82\xfa\xabpC\x9f#q\xa7?[j\x10\xafw$\xde\xfe*\xfa\xf1\x17\xdb\xa8WA\x96]'\xe9|\xe7\x8d\xd2\xed\x0c\xbf\xde>\xed\xbe\xfa\xc16O8g\x8bX\xcew!f\xd7\xfd\x8d\x98c\xb7}\xebXZ@P\xc7\xd2\x9f\xb6\xcb_\xc4\n\xf2Y\xde{\xff$V\x10\xd3\x11yy\xc8\x8b\xdf\xbf\x15$\xd5\xac \xf6R \xda\xf7;\x18I\xd2\x16\x99\x8d\x1c\x9b)\xb5\x176gf\xe0\xc14<\xe7\xb2\x85\xaf\x9b@\x9a\xe4V\x94q\x03\xf3n\xa2\xe5\x84Y\xa3\x0b\x94w\xf5\x9f\xc9\xc7aa\x8d\x1b\xb2\xb0\xf98,l>\x0e\x0b\x9b\x8f\xc3\xc2\xe6\xe3\xb0\xb0\xf98,\xc8\xb2R\xfe\xc0\x05Yw!M,\xfc\x8fGw\x1fxf#\xcb\xe2\xb77\xb2l\xbe\xa4\x91\xe5\xf7\xe6\xf80\xff]:>\x04\x9d\x14\xee\x85*\xd9A\xc3\xe3\xbb8\xe3 B\x17\xf8\xb3\x06\xc5\x07\xa3\x98\x0c\x8a\x04d\xae\xd0\xc8\xed5\xae`Bb\xf7\x86$\\%j\xb5f\x16]Wj\xce\xa2\x90\xc5\xf9\xa9H&\xba\x1a\xc8\xdfm\xed,\x8d\xed\x9c\xb1Y\xca\xf2r[\xf4\xae\xad\xbd\xdbJ{R\xacx\x8379\xb0\xb6\xc8Q\xd8\xbfL\xe6\xb7\xceg\xbb\xa7\x04\x9b\x0d\x9d\xb5\xad\x06\xe2O\xfb\xe0\xbe\x84+\x0b]\xdb\x1c\xc3\xf4\xbc\x01\x14\xc5\xe27\xa6\xdb\xd4W\xb51\xb9favkH\xea(\xd7y\xdc\xb8;\xfan\x8c\xe1\xd6X\xee\x1f\xe0\x8e\xf3\xab\x18\x9b\x9a%\xbd\xaeaU@\x85Vi\xa3?\x00\xbbEV\x81]\xa3\xab\xc0\x8e\x11V@\xb0\xe1\xbc\x83\xcdkKS\xec\x96/\x05\x8a0+\x9d\x8c^\"\xa9I\x07\xa3\xd7\x82Jv0zm\xba\x86y\x01\xe9J\xb2\x83\x85lE\xe5w\xb3\x90]Q\xa5\xae\x16\xb25\x9e\x1b\x84\xd9\xcbgg\x87\xcd%9\x89^\xbb^-\xfe\xe01\xd7c1\xea ^o\xc7\x9f\xcd-\xdd\x16-\x11\xf59N\xd9\x9c\xc5y\x18D\x19\xb5T\\\xa4oi\xea\xff\xb2\xf7\xef\xebm\x1b\xc9\xa28\xfa\xffz\x8a\x12fN\x06\x1c\x93\xb0(\xdf\x99(>\x89-\xef8c\xc7\xde\x96\x9d\xcc\xda\x1ao} \xd0$\x11\x83\x00\x02\x80\x944\x89\xdfe?\xcbz\xb2\xdf\xd7\xd5\xdd\xb8\xf6\x0d\x94l\xcb\x19c\xd6r(\xa0\x80\xbeUW\xd7\xbd\xe6\x98\x04\x06I\xfc\"6/\xeci\x0d\x8eu*I\xc8\xe2\xf9\xd9\x91\xc0\x9f\x14\xfc\x96\xfeSg\x98)\xba\x9d\xb9\x07\xdf\xf7\x0d/\x1e\xa1\x15\xe6Cj\x16\xe5\xc2\x82\xb8t9u\x80W\xc5\xdf;\xbaT\xa7\x9c\xad\x1fG![\xbff\x88\xbf\x08\x040\xf4\x0fsC\xe8;y\\/dK\x1dgT\x9a^\x99\xaf\x94?\x06\x07\xdc\x17\xdfm\xca\xd5\xc1\x18\xe8\xed\x16\x1a\x823\xd2\xb9\xbc\xacL\xca\x02\xbd\x0e\xd57\xe8P\xcb\xba\xca4\xe7Ft\x1e/\xab;\x0d\x9dj\xbd\xf5\xd0g\xa7\xff\xa5J\x9b\xc8\xde8\xd6\xb9\\mM\xc3\x14\xaaU\xd9Zj\x868\x86\xb3\x1d=\xbd\\'Z\xd3\x11F%\xc3\xcc9\xdd\xf8s\xfc\xb9\x1ci\xbf\x99\xf5?\xc9R}\xbcy\xf5l\x80{SRo\xd8\xea\x13o\xf2\x98\xe5F\xa9\x19\xd5~\xef\xea\x9f\x17\xd6\x1d}\x9d\xbe#\xac\x83\xd6\xfds\x1a\xb8\\\xd2\xd7\xab\xcei\x1b\xd4/s3F\x077\x88zm\xc7\xe0<\x89\xd3\xb3\xe13\xca6\x1e\xfa\"\xd6\x93\xb8\x87\x93\xf8\x10!5\x0e\\\x81i\xe7\x1b\x01*=\xb0~\"V\xe5:~\x82AB\x98\x01\xe5\xb4\x92\xb4\xb4\x13\xb2ij\xff\xcf\x068\xaf\xb57pe\xf9\x12;X\xf5\x19\xa3E\xa4\xf4\xe71\x15\x17\xa6\x9a\xf8y@UE\xf1\xaeL3\n\xa8\x1b\xa0r8\x11\xf2u\xa6\xdeDa\x7f>\x0dl\xb7\xb5\xb9\xc2 \xfd\xd2\x9f\xe0'/a\x83@\xfe\xd4JE\xfd\xb1\x11\xb0\xda*Z\x04\xcc\x9aV\x8d!\x08h\xe3=\xf9\xf9b\x9b\xa5\xb1b\x98i\xa3\x8dq\x96/}\x16\x18'\xc6r\x8a\xf94\xb4\x08\x87S6\x14\xd9\xda\xd4\xae\xa9d\xf8|(^\x81r\xafqR\x11 \xdb\xf3\xb9\x0bV\xbd6\xbf\xb8\x1bfiF\x98f\xdc\xbf@?B\xaeoi\xab\xe9\xb48\xf3\x8aA\x02B\xea\xf8\x95\x81=`i=\xb4M\xd7\x0e\x14W\xd9\xf0o\x1b\x92\x1b\xc6\xfc\xbf)\x08d~\xee\xafII\xf2\x02}\xe6)#\xc99E\xd4t\xaa9^|\xdce9\xbf\xfaJ\x8c\x19\xd9'\xc5\x96B\x1e\xd4\xdd;\xa3\x9f@f\xbc\x01'\x14\x8fZ>\xf5\xea\xe9\x0bk\xf642\x1cf\x15\xd8`\x02\xf3g=\xcd\xea\x89\xb3:\xc8,\xd8\xa6\x86\x9fA\x07\xbd\x0c\xda+\x86\xfa\x12\\\x1aB\xde*+\xc4\x87 m\xbd\xfduE{\xe9\xa3\xef\x93\x82YWl\xf6\n\x03\xfd\xb2_\xda\xfb\x85O\xe0n\x18\xcd,.W\xb5\xdfd\xf8\x7fl\xd3\xbdK\xec\x81=$\xfb\xa7\xf8\x8fe:W{-\x01W\xc2\xee\xb4\x92\x98\x9d\x9d\xe3 \xd3\xef\"\xe6\x9e\x0e\xcb^\x0df\xa5\xa1\xd1\x13\x12\xacS:]j\xe2\xa03y\xc1\x8a\x04\xef\xe6\xa9\xa2 \xb8\xb84\xadZEt1\x9cc^\xdfV\xe9\xc3\xe8\xdea9\xa2\x1c\xb8\x01s\xfc%\xba\x8a\xb7\x84\xfb\x8c\xd9PD\xaf0*(i\x08gpf\x06\xe6[\xa9\x9a\x19\xf3\x1b\xf5\xce ^\x9a \x1e\x19\xb6\x05p\xdd\xe4% 54\x89\xb5\xf5|\xed\xba\xd4\"\x9d\x8a\xb9OM\x0c\x8bJ]~\x170M\xc4.H\x8dTp\xe7Q\x9au\x94\xd0iO\xaf\x96\x03\xd6^r9\xbd(t\xdal\xea\xbfMM\x97\xf2\xb2\xd4\x15\x84$\xb5\xef\x18\x8e\xae\xc2\x03R5\xe0\xd0f\xb8\x1f\xcf\x03\xf2\x92\xf87<\xeb=\xb0\x859G\xc9H\xc7'eC\xda\xd6&\x887\x1e\xee\xbd\x0c\xf8\xba\x9e\xdb$\xc0\xff4}\xaf\xde\xd2v\xbf\x91\x15_\xb3\xfa\x97\x1d\x81Ej|\x18\x90\x1e\x1fx\xe7\xab\x14\xf9R(K\xc7\xddz\xcc*\xc7\xdd\xf0\n\x1cw{\xe5\x95\x94\x94\xa3\x94\x94W\"\xbb\x97Wj\xe3\x82i$\xc0GS\xd6n\xc3\xea%\x1b\\\x04\x8b\xe4\xb9\x112\xad\x1dq\xd0\x15O\x0d\x19\x0dq\xc1\xf1\xe1\x10R]\xe2\x92\x8d\x88\xf4\xac\\\x00\x15\x0en^\x10\x13?\xd7\xf8\x1f3\xc7\x82\x19\xe8Y2\xce]\xf9\xfa\x82\x1c\xc2\xd8\xcb\xe0\xe4h\xce\xbd\xb6\x02\x81\xc7#C\xdffU\xa4\xba\x16\x8c\xaf\x94\x96M\xad\x17T\x9b{6`S\xaa\xcd\x7fK\x9b|$\xe06\x8a\x91*\x11\xbc\xc5mZm3\xe1\x1covw\xcf\xd1q\x02\xb9H\x9doj\x8a`\x94\xc1/D\n\x019\x06E\x0bp\xb1\xcc\xf4d\xca==\x18K\xca\xcbJDIH\xce_,\xdctd\xf2\x97\x8b\xa0\xf72\xaf\xa0{\x92\xbe\xd5\xf8uXy\xd1C\xc3crx\x15\x1d qA`/g\x1e\xda\x8a\xf1\xc1\xb7t\n\x18\x84\xb9C\xa23\x9d\xcf\x0dv\xba\xa9\x9c\xc7\xf7\xb4\x89\x84\x94\xf5\x8148\xd8P\x04\\1\x0e\xb6\x91KOY0\xaa\xd5\x14\x9e\xe1\xcbsX\xa4cPE\xdf7\x16\xc9WO\x02\xe3\x98\xacF\xdf?\xe8\xd4\x1e\xe9\x89\xcdy\xc46\xaa\xd5y\xc4\xe6\xd3\xe6_\xfb\xe7\xca\xbf\xbe\xf2\xb2M\xb1r\x9d\x9c\x14Y\x9a\x14\x04\xed\xca\x87\xa8\xd3WP3E\xde|\xd6^ev\x1c\xd2\x1a\xba\x9c\xed\xd4\\\xdf\x95\xf8C\xcca\xcf\xf3y\xc8\xe0\xd8T\xb6^hS0\x87R\xa0d\xe9\xc0\xe1!\x92\xd1t\xc1\xa2X\xc4\xe7*C\xdd!\xaa\xff\x12\xfa\xc17\xaf\x9eV\xb2\x9e\x9bu\x03\xa5(A\xd9b.\x03Vr\xeb\x15 \xa3\x9c\x04\xe5\x9bZ\x9f\xd1\x13\xe8t\x0c+\xfe\xd1\xaf\x9c\xd1[\xf6\x93\x8bS\xa7\x95\x84\xe1\x8b\"9\xa6@\xb09\x8b\xe5\xd4\x19\x89\xba\x06\xa2y\x99Lp\xee \xcd\xe6q\x1a\xbc\xc3\x12\xeey\x1a\x9f\x9e\xceK]\x08c\xdbF\xc4\xff\x92B3\x0b\x11\xf1sI\\\x94\xb1\xde\x89\xa9\xce\xc9\xf5\xcc\xa1\x8aD_\x9a\x03\xe4Z\xd69\x19\xb3\x1f\x07X\x15\xd9\xbd\xf7y\x9c\x05\xd0\xd29\xad\x88\x1f\x92\\b\xf53\xed\x19\xbb\xe0\xc9F\x98\xa1\xa0=\xc0\x9b\xd4\x17\xb2\xce\x1b\xd9\xc1\xbb\x12L{\x81\xcc\xc9N\xea\xd1\x86\\d\xfc(\xc3e\xae\xe9\xa2I\xfb\xe1\x8e\xc1\x81u\xe1\xe8G\x1d\x1aGm8\xf3\xa1M\xa0%Y^\xc6;gr\xb1\xa9\xa7\x06=*\x06W\x9c\xdb\xa1X\xa5\x9b8\xac\x08\xe1\x9b,\xf4K\xdb|\xac6\x15\xcd\xeb$\x0e\x9e\xd0\xf9\xa0tI\xea?\xff\xf8\xa3 E\x0fq\x0e\x81?\xdbO\xd9\xf1\xcd\x9f\xf3?\xda\x10aTd\xb1\x7f\xc11\xeb\xb1P\x7f\xb07\xe4\x0f\xa5c\xf8\xdcR\xb2\x8a\xe9\xd4\xc3\x0eM\xca\x9a\xd6\xf0\x06C=T\xd5\x8e\xe5\x93\xac\x7f\xd3\xafx=\x0b3?T\xcax=\xc7\x07\xfc\xc8\x12\x98\xa2\x87\x0c\x98\xf3\x00\xba\\<\xdfPi8\x14\xe4\xe9!\xf8\xde\xbau\xebI\x9a\xbb\x9b1\x14#\x98\x81\xef\xe5\x9d\x9b\xfa\x86B\xa8\n(S\xa1{cL\xa9\xb0\xa2\xa7+\xcf@$\xd7\x974\xafm\xfd\xf9\xea\x10\xf1\xca\xf4\xc7cSE\x97u\xfdb\x92\x96\x8f\xd3\x00I\x12\x86\x87k\xdf[\xd6\xef\x11\x9b\xf4\x1d\x175<\xfa.\x1a\xc0\xe75x\xe3\x98\xd0\xber\xda\xb7{n-\xd2VlO\x1c\xca\x9f\x92\xa4\x9c`\xe4\xd8[JZ\xb6'\xce#~\x13\xa3\xc24y\x85\x80\xeb\x94\x12\xd7 ,\x16\xea\x9c\x81\x8a\x8d\xfb=\x0b\xcf\xd2\xber\x0c\x87]wm\xa3)\x1c,\x0enk_W\xe8p\xf9\x0c\xc3\xe2\xc8\xe8\xf5%.\xa4\x95z\xa7\\\xe0l=8\x98\xe3\xcc\xc1\x90\xf7\xed y\xcb\xa2\x15\xb5\xef\x9a\x92x<\xa2\xe24\x1e\x06\xc7\\\xe0\x96\x8b\x82`1iMn'\xd0E\xaa\x1c\x99f\x96\xd3\x0fm\xe2\xf6\xd1\x18V\xda\xf4\x06v\xcc\xd7\xed>\xf3\xf5\xe6\xd53-\xdf5\xd4)TD&\xd2-\xa0\x1e\x8f%\xa3\xb7\xd2\xa7Xh\x8e\xe7\x98\xe4[\x92\x83\xd8O\xda1a\xf0\xcc\xc0Q\xb1\xcf\x16\x13\xf6\xeeN#+\xe9~1\xafR\x99\xef\xd85\xb6\x1dw\xec[8\xa8\xd1 \x8d!H\xe3S\xd6d5\xeb\x13z\x8f\x1fk\xban8h$\xd4.\xd1\xd5\xf5\xc7\xca}\x9cv\xea1)\xfd(.\x0cy=J\x8c\xa4\xfdP\xab\xf8\xd1Vo\xe8\x92\x85cX_e(S\xd5\xfe& kfc\xa7\xd1G\x8d\xe0\xba7\x8d\xaf\x81S\xf9\xf8_1\xaa\xed\x84_K\xdd\xf4\xb5\xca\xf7\xb6\n\x8e\xc1\x0d<\x04\xe1\x86\xb8]\x95\x99\xae\x03\x18.4\x9f>7\x0e\x8e183\xb80\xb0\xc8\x0c\x8e\xa5'4\x04\x17m\xf2x\x06\x06\xe6\x9c\xf3\xa7\xda\xcc\x89\xf4j\xca+\xba\x98\xb1\xf7\xf5|<\xd2\xcc\x871\xb4\xb2\xea\xd7\xb1MS\x11=\x96\xe7\x97 k\x10|\xed\x0c\xe6\xe6\x06\xd5\xe1-\x97\xf0\x85\x97\xeb?C\xbc{\xdd\xf4\x9f+\xa5\xfe\x13\x9f\xf4\xb4\x96\x91x\"S\x80\xaed\x9a\xd1\x0d\x7f\xd0\xd3\x8c\x16\xfcA\xaf\x8d\x98?\xe8iF\x03\xfe\xa0\x97\x1dy!\x1a\xdf\x7f\xd0}\x94Q\xf1e%\xb4\xa7h}\xec@\x84\xa2\x83\x8a\x9aU\xab\x8f\xafO\xdd\xda\xda\xd6T\xa9\x94\xa5&*\x99\xfd\xac\x99B\xb9\xb0Q\xbcEm\xc5\x9bE\ne\xac\xd0\\\xc7]\xbc\xc9\xe3!\x96-\x9eU\xb9\xad\xce\x90\xcb\x19\xc2LG\xce`!z\xe9\x12o\x93\xc7.\xe6\xe5\x17;5N\x99\xa3\x00\x95\xe4\x99;\x87+\xd1\x14\xca\xe7*\xe5s\xd5\xd4\xe3\x8c\xdc\x91\xc7\x1d\x8f\xd2\xbc\xe7\xf3\x04`\x9d\xe3\x17\xc9|\x7f\xbaT\xba\x86f\x9b\xb3\xa6\xabd\n\x0f\xc1Y\x95eV\xccn\xdeL\x13*Q\n\xbf\x06/JoV\xef9 \xab\xaa\xd7K\x8a\xab\xb4\xb1\xc5\x0d\\\xa8\x15\xa6m\xcb\x9b\xd2\xc6\x16\x08z\xf9K\x14\xc7\xafH@\xa2-\xd2\xb6\xc2\xc2\xec\xa6\x94\xd3\x85\xe2}\xf8\x12\x81\x88;\xb2p\xac\xc7uB`\xdb\xa5\x02\xddr\x95\x03\x96K\x1eZ'\xf3\xb1o/\xa1\xec\xd4\xbc\"[\xa7\xd8\xa9t\xce\x1b\xba\xe3\xf6\xe4\xd3\xed\xab\x9e\x1a\xb1d\x99W\xf8t.\xffM\xde\xe41\xa3Bu\xb1\x83j\xf2TqF^\xb0\xc9s\x92\x94OXj\x08s\x85\x93-%I{\xcc\xf9\x03\x7f\xbb\x1b,4\x97f\x05\xff\xc6f\x0c\x18\x9f\x88~\x16{Q\xf1\x93\xff\x93\xbbB\xfd\xca\x8a)0\xc4K\x1b\xaf\x88\xa3\x80\xd0M\xb2\xd2U\xc9m\xf9dlzy\xc5|\x13\x9fDw\xc3F \x87\xeb\xa4\xd5:\xea\n\xba@=dU\xbf\xac\x12\x92\xb1\x9d]\xb5\x89\x89\xf5\x0c\xf5\xb5\x00\xb5 \xcb\x17\xf3_\xad\x12\x99\x95\xfeR\x9b-F\\\x9d\xdd\xa7\xcdB\xd3~\xa7\xca[\x93\x9a\xdf\xa8\xf7\x9f6\x8bC\x0b\xdc\xc2& \x8c\xe7\xe8\xae\xbei\xe9\xa1!,\xf0\xe5\xcf|L\xa3m|\x0d*\xb2\xc5\x8d\xc5\xe5*5:\xf1\x89+\xc5@M\x816\xcf\xa2\x82\x9e\x8b\xb4ez\x98&c\xc8u9g\xc4\xc5\xd1\x8f\xc7j\xba%\xaf\xa3\x85\xa5\xad2\x98\xc1bTi \xf3Q\xad\x16\xdc\xb9\xb0\xba\xb8XJ\xd1*3\xa4\x05\x9a\xd0\x8b\x9e\x1e/\xb1\xac\x90\x05\x96\xd0+\xcd\xac\xd0\x1b\xaarE\x169@\x01\x83\xb9\xe9JY\xa17T\xdb\xc7\x08\xaa\x91\x8c\xd8\xe3F>D%d\x13\x8a\"3\xa6\xb5\xfd\x06\xa6\xbaB\xde\xab[\x0d\xaf\x8c\x9fR\xa8\xc9\x17p\x856D \xce\xfe^]8\xe9R\x96mYy\xe6\xcf\xc9\xb2-\xad\xe1\x9b\xaaj\xf8F\xaa\x1a\xbe\xbe\xaa\x86\xefFU\xc3\xb7P\xd5\xf0\x8d{5|Y \xcf\x82K\x05m\xe8@\x04\xcb~\x16%~\x0d\\\xfb\xa7\xe4\xd8\xafi\x88\xe0\x10\xee\x9cq\xe6\x8c\x1bPC%\x02J\x0d\xc2\x8e\xb2`\x15\xc5aN4\x944\x1d\xc6\xa9GC\xb8t\xdf\x9aC\xdf\x0c\x90/\xb0p\xb2\x8e%_\xb0\xc38\x0d\x8e\xce3?)\xb4Q\x14\x19?\xb8I\xf6,J\xdeE\x89fFCQ\x04\xd8Y\xf8qAX\n\xfeL\x0dO\xb9\xf4\x0d\x96\xfd\x8c\xfd\x0c\x1dk\x95\xa0[\x06jSes\xcd@\x1f\xf3\x1e\xeb@\x97\x0c\xd4\x04V\x05\x164\xa1\x1aJ1\x9cb\xab\xb7\x15\xb5r\xc8\xe7yz\xa6\x19\xdcY\x14R\xd2\xe0\x1c\xec\xeb\xbccH\xb4\\\x95\x0cjpo7\x85>\x14\x88\xed\x08\\\xab\xbf\xc4\x14\xcf&\xd8\xe7 r8t\xa9\x9aw5\x9d<\x8f\xa3\xe4\xdd\x0f\x83>\xa6\"6:\xad\xa3\xb6\x86rT\xbc\xc8HB \xf6\x91j\x9er\xa3\xf9@\x92JC'xg\xe2)\x1a\xe6{\xce'BcX\xab\x9d\x16y\xba\xfe\xf1\xd8\xfd\xbd\x1b\xcd\x87\x1a\x0f\xa7\x9e\x94\xf7\xe3k\x97\xd0\xb4/\xd4g*\xa1>S \xf5\x99J\xa8\xcfTB}6,GS\xe6vc\x94\xa9\xe4\xeef:\x97\xf3\x05~\xed^sY\xb96@&\xecg\x1f_\xd8\xd7\x9b\xe9\xbe\x08\xfb\xe2\xfap\xc2\xbeP\xa4\xaa\xe1r\xcbT\x05)\x87\xc3@R\x0dc\xc9\xb4\x07\xe9r\x19\x13d1\xd5\xa0L\x82O\x93\xd79\x15\xf8\xf1\xb8T\x03o8\xf0#? Hl\x00.8\xf0\xd19 6\xba|\xfb\x0b\xa3\xe1.\x1b\xa0<\x08\xadU\x12\xabjq\x8cz\x8e\xed\x10s\xea\x1a\x81\xad2q/+P\x8b\xef^\xb0 \xf5\x8b[\xc6\xef\xce+P\x8b\xef\x9e\xb6\xdd\xce*\xc6J\xc3z`\xb8\xbd)w\x02\x15\x9f\xcf\xbc\x90d9 \xfcRW=\xe0\x1c!\xb98\xa4\x06;F0}n\x8bG\x08c\xcak\xf1\x0e\xa1R\x8dn\xe7;\x84\xd0*\xe0^\xf0\x8f\xf0\xe9\xd2\x95\x9c|\x89\xa0~\x1c\xa7g\xaf\xf3\x8b\xa7\xe5\x8b\x8d\x06\x83_\xb3y\x1b\x98-\xe49\xeb0\xff\xfa\x11\x13?\xd5\xe0O\x11\x9c\xb0\xbd\xf94y\x99\xa7\xcb\x9c\x14\x1a,\xf9\x15\x0e\xe1\x9d\xd7P\xea\xa8A\x7fB\xd0\xa6\xeeF\x0d\xfb\na1\xdd\xb7,\xa3\xb7\xb8\x1e#\xc6 %Q\x9ai\xb5@\xcf\xe0\x10\x1e3#_\x15\x02\xae\xd3\x8f\xbd\xa9\xe1\xb3<\x0d7\x81\x1e\xfc7\xee\x8f\x8c\xa9G\x9eEE9r\x1f\x8f\xe1\xc4iT\xd5\xd5\xf5\xee \x1c\xc2\xb6F\x9bc\x1c\xba{<\x86G\x9a\x97\xfe\xddQl9c\xf8n\x0c/4\xca\xab\xef\x9b\xbd<:/ \xeaI\x8b\x91\xfbX\xd3\xcc\xcf\xc8\x04\xd9\xcd\xda\x0f\x0c\xb6YKX\x0d\xfc\x0b\x03\xe6\xf8\xa6\x83\xfc\x91A\x06,w\x9d\x1a\xee\xbf\x19\x9c\x8d\xf2\xf5\x1f\x0c\xd4F\xf9\xfa\xbf\x18(\xc7G\x1d\xe4_\x19d\xe5\xd5\xc1\xb2,h_\xf9?\x9dW\x8e\xf4I^\xfe\xd9ma\xb3^\xfb\xb96\x17\xca\xfff\xaf\x98\x14\xc2\x84\xf2/!\xcf\xe9S\xe3\x86\xda\xa5\xf7\x19f\x8fe)d\xd1\xc4\xf9-\xec\x9b\xdc\x95\xd0\x9d~\xef\x19\xee+\x1e\x9a\x97{\xad\xec>,F\x87\x838\x9c{\xd3\xb9p\xe4\xe8\xe0R\xf43\xf1\x8c\xa1$\xb6\x16R\x10\x1e\x04\xb4\x7f't\xdfI\xd2\x84\x02\xd8\xe69\xb1\x12\xe6\x9b\xaa\xdb*\xe7c}2R\xf9\xf6\\\x06\xe2\xc0\x0dx\x047\xc0\x91\xe9x\xdbP\xea\xd5\x8e\xc2\x99F\x03\xfe\xefZ\x01\xaa\xd4\x80\xaa\xa6\xe0\x9fZ-\xb1\xc0[\x94ngp\xaa\xeea\x83S\xd5\xfa\x98\xb4}K4\xa7w\xab\x84\xd3Z\x0f\xd7\xf0\x9f\xd1\x1c\xf6\xb53\x84\xca!W=M\xffm\xa7x8\x1f:\xfdC0\xb0R\x8d\xab\xeb\xe2\xbf\x1f\xc3c\xba!\x1f\xb3-\xfe\xc7\x1f\xcc\xff\xe4\xf0\xf0\x10\x1e\xd7\xce(\xea\\\x13\x06?\xe8J\x15u\xeb \xd3\xd5S\x15z-\x03\x18\xbaU'\xee\xed\xe9TC\xe8d\x13\x10\xa7~\x18%\xcb\x89\x9fDk_c\x1f\x19\x8d\xe1H\x9bX\xc8`%\x91\xb5\x8d\xea\xcd\xd3$\xcd\xd7\xbe\"\x07\x10&x\xfa\xc5\xcf\x93(Y\xce\xe0qM\"Fc\xf8\xd5\"\xcf\xd1\xb0\xfe4\xd89}\xa9\xca\xab\xc6Bcf\x10M\x83\xff\xb01G\xfc\xaaX\xd4\xd1h\x0c?\xd1y\xfc \xc3=/\x91\xb6E6,\xc1\xf3N\xc24(v\x9f\xd1\x0f\x86YO\xa2$\x84u\x9a\x13\x08EF\x9f+^\xd8\xd6\x0c\x0c\x1f\xb91\xd0\xd5\xd8\xe6\xa99\xeb\xcceq\xeb\xa7\xa6\x18\xa4\xc23u\x1b\xff[\xd7\x86}\xb0\xac\xc5L\xc4\x91\xf6\x0bJ\x8b\xd6O\xda\xe8X\xf6\xb4\x91c\xa7yj\xa87\xd4\x0f\xbaa\xd7R\xc4\x0c~\xb3:\x85yA\x10;\xf1\xa3\xe2Ef\xf0X\x03\xc5+x\xff\x03\xdd%uj\xb8\xa6\xbaL\xeb\xaa\xdb\xd2\x95I\xeb]\x89\xab#\xb9\xcf\xe0\xb9\x86mi*\x12f\xf0R\x0d\xb9H\xa4Ev\xc4e\xcdP5\xb4d\xda\xecE-\x15\x996\x7fQ\xe6\x97\xab\xe7\xdc\xb1\x93q\xe1\x86nr\x17\xe4P\xb1\xe1*l|\xae\xc1\xc1\xbf\xeap\xd0z2\x98M\xfeX\x0d \x1cV5Ly\xda\x91\x1bgB\x03Q\x98\xe5H\xda~\xf5\xda\x16\x15b\x85;\x12\xda\x91\xe31T\x1f\xd1\xe9!\x96\x84\xbb\x83\x91\x90}l\x06s\xafh\xdd\xd1\xacs\xff\xe5\x0b\xafw\xd3\xf0>\x05\xf9\xd9\xcf#\x8a\xf0?3\xed;\xffH\xef\x89a\x18Mx6\x8ca_8Z,HPF[\">\x85\x9d\x11\xdf\xa9\x9e\xe2}3\xfe}\xf5\x15\xbc\xa4\xff\xbc\xc2\x7fLtq\xa7cV((T4Z\xd5\xd8\xff\xd2\x9eo\xec\xa33x\xf5aq\xdf\x96\x98\xf0H\x16\xa6!\x9b\xc1\x13\xc5\xcc\xd7S\x7f\x15S\xfc\xbcRu\xbc\xa4\x12\xf9\xbcL&\xcb<\xddd(ys\xfd\x95\x91\xb3{.\xdeW\xf5\xe8\x17+\xc9Y{Z\xd9\xce\xe20\x92|\xd9\xb5\xad\xec=3(\xacvJn\x9a\xaa\x1f\xb5(k9 \xf6C\xd3wz4\x86\xa7W\xb5\x97\x85 \x1aT\xc1dCw\xf3.\xcd)]'\xaaey\xa6\x19\xe0\xcf\xba\xd6*\xb5\xf1\x0c\x9e\xa9g\xbaJ\xea\xab\x89*\x11\xcc\x90(\xfb\xa0\x8d\xfd\xb0>\xb7[l\xc4Ul\x98\x86-N\x9b#\xd2\x1aK\xb9\xf5a\x06o\xcc@\xfc\x90\xda\x8a\x80\xbf\x97\xfc\xfe\x934w\x19C\xa59\xfc\xfb\x8c\xb4\x95\xce\xdf~\x1b\xa9A\xe4\x86\xad\x19\xbcV\xbf\x82\\\xac\x89\x9a\x10\xf4\xa0\xf8\xdet\xdc\xfe\x1f\x1d\x06\x93J\x17>\x83\xef\xad1\xce@2vq\x1bz\xb9\xc9\x89\xcce\xa8\xca|'w\x19j\x9c\x1c8)\xad\x87y\xb5\x99d\xcf\xf8\xa6\xec?\xaaQ\x85J\x8a\x0b\x8fY\xbc\xba>5\xcc6\xa1\xf3B\xfa\x12Z\xd4\x9e1\xa5\x17\xd2B\xee\x85\xb4\xa8\xbd\x90\xee5S\x19-4\xeeF_b\x8b\xfe\x03\xdd\x8d\xac\xfc~\x86\xc4\xfb\xe7\xf6\x0e-\xe9\x10\x87\x16\xe6\xa6\xd4\xb6\x13\xa9\xa1}K_\xaa\x0d\xd6\xd039\xa7\x14,\\\x9d\x91-5X\x80`QQ\x95=\xd5\xf0\x0d\x0b\x845\xb9\x9ed\x08\xa5s= Y\xd7V\xe9\xd9\xb1\xa9{+\xfe1\x0b\x17\x94-\x03\xcd\xa3e\x94\xf8\xf1\x0b\x9bW0\x12I8\xa2X\xbd\xb1\x84C\xc8\xcc\xb3z\x81K\xc4\xd5\x1d\xc1&\x8fJ\xadU{\xce\x12(Tu`\xab\xae|_j\x8d\xf9\xa7\x9d\xc4\x0b|:\x9f\x1b\x03\xbf\xcf\xe4/\xbe4\x04\x9a\xf3\x1a'?n\xd6\xd9\xeb\x14\x811;\xc4\x07\xb7.\xd7Z\x01\xd6O\xe8\xfc\x8d\x06b\x8d\x16\xb0\xae*(\x05\xd1\x08 \xa7\xba\x1e\n^P\xc5\xb9\xa9?{f\xaf\xa6\xd3\x05>v\x0c\xd0\x1a\xc3r\xcd\xe3\xc8\xe3\xc6ig\xc3\xab\x92\xfb\xba\xabcc\xafX\xd2\x83\xad\xa8\x99],\x8a\xedn\xe9\xdd\xd5\xc8\"{\xfen=\xab\x93\\D\x8a\x02\x04\xef\xc7 :Qg\xdc\xff\xea+\xb8\xf0\x82t\x93\x94\xae\xaeos\xbdY\xbc&\xb93\xd0d\xcc\x1a\x1e\xe3!N\xd4\x941\x94\x98\xef\x97JMT\"\x89r\xec[\xe1^\x982\x89 \x81\xae\x13\x06\x17\xae\xc2\x01\x05z\xacEu\xd7\xac\xb8\xd2V\xc8\xc9\xb4\x08{\x85B\x87!N\xa1\xbb\xcfL\"D\xb0\xb3\x08q=\x03\x19>i\xa6\xb2\x01\xc5\xa6?\xa32\xa3_\xc4\x04q\xed.&hK:\x9b\xb8\x8fK\x1d\x1b<\xb3\x8e\xf4\xdd\xf7c\x94P\xded\x19\xc9\x1f\xf9\x05\x91%W\xd9\x99P-\x86\x13\xaa\xfa\xbb\xe3\xcf\xa0\xc4\xf1g\xaa\xad\x10\x91S_\x94\x16\xff\xb1\xd4H\xcd\xc0\x95\x034\x11\x89Dc`\x14\xf5\xe9\xc6I\xac\xe2PR\x844\xc6\xa1D\x08\xa6\x8fC\xf1\x11F\x1b?\x82u\xf1\xed\x84\xf7\x82w\xecq\x9d\xc6\xc4\x18\xe1AO\xd8\xb2\x99G\xe4\xc3\x9f\x04y3'\x838\x0d\xe8<\x9d\x9e\xb6\x9d\x9d\xa5@\x83\xcd_\xdazUU\x02\x06\x9d\x02J$`\xd0\x98\xa2\xb2\x06\xdf\xca\x9ao\xfbO\xfbXy\x80J\xd8\x1b\x0d\x0e\xb2,\x0d\x91|\x84Wy\x04^7v\x99\x9e\xaa\xcd\x80\x078\xe4\xe5R\xfa\x87[D\xcf\x84\xfb\xb2\xd3-\xea\x96\xd0\x8f\xd8\xe9\";=\xa2\x8f\x7fz\xf8\x98\xc1\xa63J\xf5q\xb2\xad*\xca\xd7\xe6\xa6>\xe6$\xed\xd27b\xa5\xdb\xe1#\xaf\xd2\xb3\xee\xbe\xe6\x83M\x87j*\xa4\x0c\x9d,\x81\xcc\xfb\xf1\x95~\\Z\x9bS\xd7F\xb3\xb4i\x1d\xbb\xe2P^\xe3R\xfd\xc2\xf2\xa5*c\xbc\xaeC\xa2f*\xeb\x93\x1a\xacU\xe3T\x0d\x96[\xc0\xc8\xeb2\xaa\xcb~\xf6\x06\xe3<\x89H\x8cN\xe5\x1f\xb2\x114Q\xb3\xa2\xa1\xeafZECK\x8f$e~qL~\xc3\xec\xb7\xa6\xcc\xa0\xdbF\x8d\xa8f\x9d\x9f1\x1c(\x881=\xbb\xcb\x93}\x85\xb3!\xee\xe4\x93\xa9$ \xc8\xb0\xad\x12\xd5Q\x84\x0cUT\xa5\xdeT\xb8\x8a\x9e\xa3\xcb\xa9BAy\xfe\xb3\x1f\xcb\xf4<\x9d\x04\x96\xef\xdb\x05\x10\xdf\xcb\xcf\x04\xf6\x99\xebu&\xbcJ\xcf\x0c\xc7\xc2\xed\xe9\x9f\xe2X`\x03\xb59\x19(B\xc8\xcf\x04\xe2Q|\xe8?C\xa6\x14\x1eR\xa63\xfd\xf1\xb8\xfa\xe1\xa2\x92\x91+\x1a\x87\x9d\x14\xd6\x94\x88o]#1ap\x9d\xbd\x1a}&H\xdbG\xcc?Q\x02\x13\n\xf0\xe0\xee\xfe\x9f#g \n\x9f\x98\x949\x1a\xc3\xa6O\xca\x15\x82z\x1fp\x91\xe6\xe0\xd2\xaf\xd1 \xaf$p^Bn\x8c\x13\xceR\xff\x16\xa31N\xf4\xfe\xd7\x10\xc07P|\x0d\xc1\x8d\x1b#\x88O\x82\xb7\xcd7O\x02\xf5\xc1B\xb7v\xc4O\xb2\xbe\xb2\x00ei\xa3\xc2 \xf0\xe3\x98k\x0d\xc8\x18N\xe8\xbboE\x11\x87\x18O\xe1\xc8Cs\x85\x1fG\xff\xae\xa5\x07c\x19\x07zE\x1e\xa1\xe3\xed{?\xbfG\xadBz\x865y^\x936\xef\xab\xfa\x1a\xf3$\xaai\x00\xd7X\xe2\xbe\xa3\xdfc\x7f.\xa2\x98PN\x03S-\n\xef%\xaf|\x0b)Z\x0dY E\xac\xce\x9c\xc07\xacVa\n7 \x82o\x0f\x99;n\xc2\xe2\xbbqs\xf39}\xcc\xd6JV]u\xcc4\x19=E\x17\xdd}\x1fC[u\x95\xb5\xcf\x98\x9c\xbf\x8a\x96\xab\x98\xce9\xaf[I$\xc1P\x1d ]\xc6\xff\xf5\xbb\xf7&\x0b\xfd\x92\\\xaf\xfe}\x02e\xdfV\x1f\x90\xc1vV%h\xe87\x14\xa9\x88\x0f\x15\xc3\xb4:.,0\x86\xc4\xc4\xb9\"\x9f\xeaj!&A\x1a\xaa\xca2\x8eQ/v%\xed\x89\xa1Nx\xc5yY57q\xd5^\x1dt]\x9a\x14Z\xd5M\xe71\x07r\xcc\x96i'\xcb\xf5\xc9\x01YYN\xda\xb4\xe4\xc8\xd1\xf5\xfa\x97\x15!qU\x04KG\xd0\xd5_i\xcc\x19\x96=\x80uD\xbf\xa0\xae{\xfa\x9er\x00\xc6M\xd4W\xc3\x99Tpr\xa7\xd7\xe6N\"\x1e9\xcf\xd2\xbc,Z\xc7S\x9f\xbd\x85\x06\xe7\x99\x903\xf8>N\xe7\xee y+[\x83\xf2\"\xc3\x91ST\xa7\xfc@\xc4\x8ad\xdfL\x83\x92\x94\x93\xa2\xcc\x89\xbf\xeeH\xeb\x1d\xf6'ZT\xf5v\xf7\x0e\x0f\xe1,J\xc2\xf4\xccK\xfcm\xb4\xf4\xcb4\xf7\xd6\xc5\xb1\xbf%\xb4\x0f#\xddC7\xefsV$.\x88\x82k\xa3\x87\x1e\xff\xda\x9bW\xcf8\xc61\x0e\xfe\xcd\xabgn\xae\x91\xe9C\x9e\x0c\xa4\x8b\xa6\xbeL\xef\x1dyX/W\xb8\xb6\xc1!8I\x9aP|\x8e\xbcUN(G\x9c\xd2\xdf\x05)\xbf+\xcb<\x9aoJ\xe2V\x9b\xcfa\xb2N\xa3\x1cq\xcd\x00\xd13\xb3\xfb\x1ec$\x9cq\x15\xd3;\x1a\xd7\xdd\x9d\xa7\xe1\x05\xe5\xd9H\x12>ZEq\xe8F\xc8\xa6\x05t\xeb\xba=\xc0\x9c\xac\xd3-\xa9\x01\x1b\x93\x95\x93m\xfa\xae1Y\xa9\xea\xe8}/E\xc9\xeb L\xc9\x95\xbfR1+R\x89Y\xbeJ\xcc\xda\xa8\xc4\xacB%f\xc5\xfcAOb\nx\xca\xc7\xbe\x1cUKZYU\x12B\x98>+\xe0?\x81`\x95\x8f\xc1\x97\x0bV\xd1u\x14\xacr.Xml\x05\xabt\xa8`\x95{\"x\\\x84\xe1\xfc\xc2B\x04\xad\x84\x0e\xde\xd5\\T\x88\xac\xc3\x85\xbc\xa0\xf5QT\xa8\xba'\x02\x10M\x90\xd5k\xcc\xed\xe2-\xe5\x9f{\xad\xbcg]\x14\xf1T\x8f\x18\xfb\xf0\xfa\"#\xac\xd7V\xdd\xace#\xca~\xe4i\\|\x17\x04$+\x7f@\xf5\xaf\x89\x9f30})\xe6v2\xb0\x8f\x11\xba\xedY\xa5@\xf4\x11To\xa4\xdd \x8c\xceO\xa6\xac\x08\xbad\xea4EZ9\xd1\xd3\xe5\xb4d\xde{j\x00\xe1>\xbb\x91BH\xaa\x17\xbd\x1f3\xabs\xafp4\xdd\xad\x96\x82X!\x15\xc4|;A\xacX\xa5\x9b8\xacX\"ka\xc7\xb4/\x1a>M\xdd\xc0@\xe4NH\xff\xb6(\xbf\xcf\xde\xaab\xdb8x\xfdw\x1bN\x84\xd6q\xb0\xeaO9\x14n\xc6\x0e(\xbb\xd7\x86\x97\x07\xbc\xf1\x17\x15\x0f;-\xfa\xe5J4D\x7f\xb6\x9f2D\xe1\xcf\xd9\x1f}\xdch/\xffG\x92\x06\xf5$\xc1F^d\x1e\x19\xd5z\xe9)C\xd2\xc3\x03=yH,\xbdN65\xac!\xa5,\xf3\xd3\xb0\xcc\x13\x8bl\x841\xefm\xd2\xc6-5p\xc8\xdc\\\x06\xa6\x0d]U=\xd6G\xd5l\xf9\x11Zi\xed\x8e1\x89\xdf\xa34$#7\xd5x>\xac\xb1\x98\x8f\x13\xd4d\xd3T\xd1\xc6w\x9d8\xda\x12\xb1\x86\xa6\xca6~\x1d\xbbj\n\"\x91m\xf5\xaf\xbe\x92\xdd\x16Q\xa4\xb27f\xb5\x84\xf7\xb2\xf5D\xdd\xf8)\x1cB\xd1\xac\xf6\xc7\xa6rIJv\x82>b\xe7)\x95p\xc5\xb0\xe9\xacJ\xcd6\xe229\xee\x0c\xd1+T\x1b\xcc\x98\xd9\xe0J\x9a\xb3q\x01\x10\x971O\x16w\x05x\xd5\x88_n\xcf\xb5)q]\xec\xcfI]3\xc4\xe4\x08\xd5i\x0e8b\xa3\xcc\xad\xcb\xa6\xa5\xad\x16\xc3\x89\xab&(L\xb0\x97\\1\xa2\xe065\xc4\xa6\xde\x7f\xc5\x0c\xe6\x1a\xc0\xc6:\x89t\x17\xfc\xe5 \x8eQ\xbeJ#]\xc6\xabA\xc8Q\xe3b\x94\xe8\x92\"Df\xa5\x9a~E\xb5\xd5^\xea`i\xeb|\x94\x1a^\xae\x99y@\x93\x03\xaa\x93y@CP\x18\xf7\xd8a\x11\xcc\xbcd\x8fk\xd0\x1c'\x8a0}U\xfe\xa5\xe1\xdb\xd4B\xc9(\\k\x86b\x0e{o0=i\xbb\xe8\xa8\xc1\xf2\x1d\xba\xb4+\x8dS\xb8\xe1\x88K\xed\x8eS\xa1\xf0\x84\xde\xe39wU\xcd;\xf4 \xd7&\x03\xbc\xa2~\xd8\x04\xbb9\x8f\x1b@]j\xfe\xa1;\x18G\xc9;\xcd<=\xc3\xc7un\x07\xdd\x8c\xb5<\x9bR\xa5gS\xa9b\xa5\x81\xb3\xd3I\xdf\xc3\xa9T{8\x89\x0bYg\xa5\xa7\x93\xb8\xb0|\xc9\xc9\xd4\x00\x15\x027\x18F\xed\x0c\xcepx\x08)<\xac\xf1\xfc\x94'#A'_G\xce\xb8\x80\x99y\xb9\xd0\xad$\x08a\xc5P\x96\xb8\x8e:[\xb1\x1c':6\x15\xd0\x1d\xf8\xb1\xd0\xa6mQ\xafkh`\x91h#\x13\xa1\x8du\x1aZ\x8b\x90iH\x8cC\xaaO%M8/\x0c:I\x803\x07]u\xce\x8c\xa2\xc6\xe1\xa1.m30\xbe\xa4\xabK\x9aa\xd9\x0f\xa5\xaa\xc9\xdc\x15\x0e\xae\xe5\x87\xc0\xfeT\x85\xfeI\xad\x84U\x14\x85n\x15\x83\xde!\xa1K\x8d\xe7;$u\xe9'C\xeaGX\xd6\x99\x83\x98\x85\x98U\x8a\x1a\xb9'-\xfb\xcf\xaf\x85\xa4\x16\xa7\xea\xa0\xdf\x9b\xd6\x03\xf8\x1c2\xb9\x84*w\xacP\xe5\x8e\x15\xaa\xdc\xb1B\x95;V\xa8r\xc7\n\xa5\xe6\x8b\x98?\x91Z\x10\xdcP\xd8\n\xc2\xcaV\x80\xbf\xa6\xb7z\x05\xa4\x17R\x8b\x03\xaa\x07Te\xa5\xc3\x8fo\\X\xd9\x1a\x17\x88\xc4\xb6 C<\xb3hkjo);O)\x0e\x8d}\x914\xc1'+\xf2N%$n\x90\xba<2)\xb9\x12\xe6\xeb\xd3oF\xfd\ns%\x92\xd1m\xf9\x99\x8b*\xec\xe3\xd2/uJ\xeb\xbcO\xb2\xbbK/\xae\xf7h\xd82\n\xb4\x9a\x11\xc8\xcf\x9c\\\xd1Z\xef6\xfa{Q6\x84\xf4\xe8\xa5\xb8\xa4\xc3q\xfa\xac\x1d\xfd\x94\x02\xbf\xe1\n\xdd\x94\xaeF\xb3\xca\x08-Z\xe0RK\x1d*3\x9aP\xfeB\x0d\xc3\xac%\xe6\x02d\xccbb\xe1\x9a\x13\"\xa0Y\xaf\xb8B8\x9d\x12t\x8b\x10v\x9a\xdau\x0dk\xd0\xd4.\xab\xfeYhj/\xf8\x0cVx\xa4\x06\x9dW\xa0\xf6\xf6\xb1S8\x84\x95\x17%\x0b\x92c\xaeS\x8d\"\xe1\x0c\x0ea\xc9\xc5!5\xd4\x11\x1c\x82\xcf8u&\xe2h\x93\xfa\x9d\xd7\xd0\xe4\xdc_g\xb1>\x07\xe0q\x0d\xced%\x0d\xec#8\x84\xadU'\xdeqH\xe1P\xc5\xe5Q%\xfcw\x0c~\x9d\x86$>b\xbd\xd6\x81\xbf`\xe06%\x80^2\xd0*.\xd3TL\xe75\x83\xb7Tp?\x17\x9b\x16i\x97'\xa1Q\xf4\xc8\xbaPP\xf1\x05\xb8g\xee\xc8$/>\x15+\x84\xc5\xb2x\xc7\x9c1<\x7f;\xe6\x8a\xe7\xe7~6r\x7f\x7f\xdfe3\xba\xd7\xafp\x08O\xb9\xc4\x87\x88\xe9\xf4>\xa0\x16\xf1\xeaP?4M=ma\x98#\x94\xe0\x99W`m\xa0hq1r\xbb0T\xccf@KR\x1e\xe3M\xb6AF\xee\xaf\"\xec\xd70\x9b&A2J\x82x\x13\x92W\xc4\x0f_$\xf1E\x8b\xcb\xec^\xf4\xd0\xa3\xc7\xcd\xaf\xf0\x10\xcaJy\x95\xf0;\xa7U\x9fj\xc5V\xce\x9f\xb9\x8d\xcc\x89\xcd\x151\xf5]L\xfb[\xfaI\x85\xe6\x8d9T\xd1^\x9c\xba\xbe\xe8\x01k\xda\xf7V~Q\xad\x1d\x9d\xf2\x90g\xfb\xacnQ\xb9\x14\x07\x95T\x0b\xd2\x9b\xebd\x0c\xcfu\xf3(\x99C\xcdi\xc4\x80\x7f\xc9\xa3\x92hg\xfc\xbd\xde\xfcq\x8e\xbe\xcc\x94v\x9d[\x04\x8a\x89K\xb0\xc0\x94\x1d\xa2l/+&\xf5\xd7\xbf\xe6d\xe1\x08\x97.\xda\xae\x8a\xebQ\xe0;\xddu?Y8\xf05/a\xdcF\x0bTeo\x1a\x16\xff\xd6\xbc\x9a\xb1p\x0d3\xbe&\x16\xaey\xe5\xda\xb8\xb8\xe6\x95\xf2\x1893\xa4\xe0\xd0[{<5%V\xba\xa4YK\\\xc8t\xc9\xd9IqiMKw*\xcd]\xaeQ\xf2)\xe3\xfe\x9aW\xdb\xa4\xc2h\x9by\xf68[(\x8f\x19\x17\x97,v\xbc~V+-(J_\xd6^b\x1c\xeb\xf0q\n1A3\x06A\x05\xe4\x1b\x92\xa2\xf7\xf9\x18\xde\xed\x98\xdc`\x07M>8p\x03\xdc\x0ds#\xd7l,'\xf4K\x9f\xb9\x85+\x03\xff\xafN\xdd>D\xd7\x1f]\xa1\x9a\x7f\xb0n\x7f\xe7}-[\x8bn\xab\xa7\xa7z\x93\xa1\xaa\xf1\x17\xba\x86E\xd5\x1f_\x94)l\xd8&T\xa7\xc4\x18\xce\xcc\xbb\xcdj\xacL\x9dWQ\xf3\xe6\xd0\x1b6Y\xd3\xcet\x84@2\xf1Q\"\x11\xd6\xa8\x19\xcc5[o\xe84\xbe\xb60q\x1b8\x1e\xf5\x94\xb4\xec\xd7|-\x04#E9\x9b\xee-\xef\x1da\xc7(\x88\xc4\xd5\xc7\xe4\xb7^\xd2\xb9\xe6\xd51\xb1\xcb\xf4>\x8a\xf5\x1e\xc3\\\x9b\x83q\xed\xc7\xb5\x83\x81\xc3\x9d=\n\xd0E\xa1 \xe1\xa8^ar\xa43\x1a\x83\x03l\xe9\xbc\xda\x06Uq\x9b?i:\xf1\x9d\x16\xc5+K\x89u\x9a}MV\xfc\xa6Z^S{\xb1c\xa2\xd0\xd5^D>T\x88\x02L\xb5\xfd\"\x0fIN\xc2\x91\x9bhV\x94\x1fB3\xf8I\xb1p\xd5\xd4\x1di\xa6\xee\x91n\xea\xb8h;\x83#\xeb\x99\xd3\xf7e4\xae\x04\xfc+\xb5w\x0e0r\x1e\xc3C8\xf6\xcaT\xc6\x85v\xa2W\xba\x97\xe1\xc0}i\"T\xc8\xb5i\x14<\xf4JpP\x06 :B\xad\xfe\x11,\x17\x064\xa4p\xa4\xad\x87Yo\xdf\x9fR\xe0\xaa\x92j\x95{\x1f\xbc\x94\x05i\xa5\xb7 \xd5fCF \x85u\xe8\xf7\xf7]s\x89\xcc\x9a\xd7TL6T\xffm\x9b\xd0\xea\xbf\xf8\xcdke\x13Z)sG\xacTQ%+UT\xc9J\x15U\xb2RE\x95\xacTQ%+\xa5Mh%lB+\x8c\xc8\xbf-\xb5\x04\xb1g\xbd/W\xe6\xa0\xf6\xedP\xf4]\x91no\xf5\xf1\x0dE[[C\xd1\x97(\x94\x8e\xd1\xca\x14\x85\xa2\xb7\x88d~^\x90\x90oq\x85X\x85\x91\"\x1bt\xdd\x7f\xd9\x04\x1fd\xf2\x12!)\x9c\x1bSk3\x99\xff|\xa9\x16b)\x10S\x91@\x94\x14\xa5\x9f\x04$]\x00\x0b<4\xebC\x12\x1e,\xf9$\x8aQ=\xa52\x8f\x89+\xf1R\x16\xc6g\x91\xc3\xa0y\xe56\xe6\xb5\xe6\xd5] \xca\x0cobydn\xf3R\x9cD\xd5\xe31~\xca\x0f\xbf+^\x93\xf3\xd2\xd5L,\xd7\x1bZ\xf7\xbc\xd3\xe3\x92\xf2\x07\xac\xaa\xbbN\x03!C\xafO\x1b\xa4r\x95\xd9\x02PN\x90\xec\x15\xd7\xea\x88W\x07a\xec\x942@\xb9)\x95\xbd$b\x7f^\xa2\xabWc\xd5\xb4\xb4d\xd6\xc1g\x16YB\xad\xccu\xac^\xc9&\x97$T\x12\x17\xabR\xc2\xf9|5\x98_\x9b;Xz\x8d\x87\xf0\xfb{\xd0\xba\x0fo\x06d>-\xdav\xa3\xd6nT\xbf\x85\xf5A\x06X\xd5\xe8\xc1\\\xfb\xf2\xa1\xa6\x8b\x92\xcf\xc7~I\xb0\xbe\xe8\xebhMt\"\xf4\xba\x9a\x04\x8d4$\xc9\xf5\xd5\xbc(\xc5\xa7\xcb\x92\x8aL\x0d7\xffo\xc3\x87\xe9_\xad \xf6\x9b\x91W\x92\xa2t\x93\x11\x05\xf6O\x1c>#\x93\xc7Q\x91\xa5\x05f\xe6w\xde\xd2\xe3\xe3\xa6_\x96~\xb0\xa2\x07\xb5xI\x05.\xbe%4,\xa1\xdd\xb7\xa4\xe0\xbd~5\xb4G\xec[\xf4h\x82\xd7\xb9\x9f\x14\x0b\x92\xcb\xba\xd6|\xa3\xd75\xeb\xcfI\xdf\xd0(\x8f\xe9*8\xf4\x98u Jx\x9c\xb9\xe9$\xa4[\xf9\xa2\xca\xb1Q\x92\xf3\xf2\xe6\xaa\\\xc7\x16\xban\x0c\xce\xe9\x1e\xf0\xc2\xcaV%;(\xa5\xc9\x0ed\x17K\x80pa\x84\xed\xca?\xb2\xebT\x9f\x94`n\xf1\x8938\x84\x93\x0b\xca\xd0\x15\x9byQ\xe6n\xea\xc5~Q>MBr\xfeb\xe1:7\x9d\x11\xdc\x80\xe9h\x0c\xa7o\xbd_\xd3(q\x9d\x99n\x9b\x8a\x0b\xed\xfc*D\xd5l\x08=\x13\xd4\xc9\xfdpdZv\xe0K\x7f^\x99{\xc8y\x99\xfbA\xf9\x84\xe7oz\x92\xa7k\xde\x8fF7\x98W\xc4\xc8=2\x18\x84\xe8\x85!<\xb43\xcc\xeaG\xe7\xf3\xdc\xc0 i\x9fR\x1aTy]\xd6\x99+\xe8\xc7%\xb7yB\x8b\x17\xf9\x8b\x8c$\x1c3/eIq|\xa3\xc6\x16\xaa\xfa\xec\x06\x07\\\xd8\xa9\x06\x8a\xb88We3hw>\x863\xfd\xa4\x83q\xe2\x9bYf`\x11 #\xff\xb5\x9aM\x91\xcbc\x06g\x83\xc7\xa2|\x81\xb3\xdb\x14\xf1\x94\xe3`)u\xb8\xce\xa8\xfa2\xe7< $%\x96\xd6\x86\xf9\xa6\x84\x8bt\x93\xc3\xd7r/\xda\x99f\x96k\xda\xe7\x06'\x84\xa2\x81\xdbN~\xc8x\xd7\x9b\x14\xe8_7\xb3\xd8\x8f\x92\x9b\x8d\xd9\xff\xc8\x036\xf0k\xc2\x88\xa7\x181\xcc\xe0\xe6\xff\x8d\xd6\xfe\x92\xfc\xebf\x0b\x87\x12\x8f\xbb\xfd\x14\xaeSl\x97\x8e\xd6\xb0\xd1\xa4\xf9\x0e8\xa8Fv\xc0\xd1+\xdb\xd7K\xed!\x80\xf9\x9ed\x9a\xcb\xe6\xb5\xf6\xcf\x7f\x89\xc2r5\x03g\xba\xbf\xff\xff\x93c\" \xe5W7\x94\x073\x1d\xbb\xa8\xd0\xc8\xf0\xb9\xf37a\x94v\xe6\xce\xea\xb8P\x9f\x8d\xf4\x8bzC\x117G\xaa\x1d\xb1tA\xd1h\x1c\xd7O=\x9d\x11]\xado\x96\xacL\xb5\x89\xe8\xc48\xcc\x7f\x88n\x1f\x04O\x17P~\xfc\xbdQ\x9e\xcbtE\xe22o\x0d\xee\xe4\xf5-\xec\xc3C(lw\x80z\xf9\xad\xcd\x7f\x91:\x9c\xf1M\x92\x93 ]&\xd1\xbfIX\x99\x89p\x8e\xbf\x16\x81A\x94\x89\x10A\xee~\x81\xd4\xdd\xd3E\x8a~\xca\xd9/4\xa4\xf8\xd3M\xe4\x06K\x91@\x99\x8a)\xad\x8d\xf7Z\xb7\xa5\xe5\xa5q\xa4\xe1\xc5Vg,\xc0\xb0Tz\x9e*]\xab\xacm\x916UH\x98Yu'\xcb`\x95\xef\xd0}p\xf7\x8e\xc4\x88\xa7\xd7}\xd6\xbe\x9eY\x1c\x95\xeeM\xf7\x9b\x7f\xdd|x\xf2\x7f\xbf}{\xe3\xdb\xd1\xcd\xe5\xc8[DqIr\x0b\x0fK\xfe!\xc7\xa9\xb2\x0dEkY\"\xdc\x8e\xfa\xba\xdd\xdf\xc8\xb6\xbf7\xbf\xf9\xd7\xcd\x1b\xac\x9b\x9c\x11 \xda\x0f\xfb\xf6\x1f\xc6\xaf\xfe\xeb\xa6\xddw7\xb6\xdf\xb5\x9e@\xec\xc0\x9er\\\x80\xc8E0\xef\xf0^$~\xf8\xbdn\xd6\xf8!\xcf\x9d\xd9\xed\x850JuM|\xf0-Li\x13\x0d]Gm\xcb\x9b\xbe\x85\x87\xed?g\xf0\xbb\xe4\xdcg\xb1[\x82\x83\xed?G\xbd\xad'a\x89\xfb\xa01\x1c\xca\xf4\xa6\x01\x1c\xc2IGeSg\xb2\xa5\x7fu\xe2\xac\xe9x\x17c4\x07\xbb\x0b8\x042\x86\xd4]\xd8\xb8\x13\xf3uR)\xeau!]\xec\x14wK\xd6^\xe4\x96\x94uq\x1e\xc5i\x11%\xcb\xd7\xfe\xd2\x81\x19l\xf8\xdd\x17\x19I\xea\xbb>\xbf{L\xe2E\x1b\xdeyM\xe4\xb9\xbe\xe5\x01\x81\xed\xa3\xf7\xfdH\xe2\xba2\x86TeR\x8eLI\xeaX\xfdq\xa4\xe8\xbd\xe7\xad\x81R\x1e\xdf\xa7\x88\x15O&\xf2\x9e\xd2\xad\x95\xbb\xc9\x18b\x85\x92\x0fK\x89\xc3\x0d\x88\xfa\xef\xa3b\xb69\x83us7n\x8c\xa1\xd0\xd9Y(J\xa4'%L@\xe7\xbe\x1dVP\x07\nM\xa1|\xb8l\xb9\xf0\xef\x0c\xe7 ov\xbb\x1aV\x8f\x109\x1d\xac\x9c\x057 ds\x0f7 \xab~ET\xe8\xc4\x80\x05\xec\xcd\x18\xb0\xeb\xc6\xf0kh\xd0\xa6\x0eN\xb4\xc7\xc3\x81\x02o\x91\xe6G~\xb0\xb2\xdb\x1e\xd9 yK\xf7_\xf7\xe4\xa42jfw\xaa\xf0/\xed\xedu\xfc%F\\\xfb\xfb\xaf\xa6o\xe9%\x12\xb6\xde\xfc\xfb^\xdd\xc0\xdf!'\x19\xf1\xd1vB\x99\xbaoVe\x99\x15\xb3\x9b7\x97Q\xb9\xda\xcc\xbd ]\xdf\xfc5M\x8a`\x15G\xc9;\x92\x977[\xf0\xdf6\xbe\xd4\xfc\xe8\xa34\xbb\xc8\xa3\xe5\xaa\x047\x18\xc1\xc1\xfe\xf4\xf6\xe4`\x7fzg\x0c?\xa6 \x1cW\x1f\xf3\x9a\xef<\x8b\x02\x92\x14$\x84M\x12\x92\x1c\xca\x15\x81\xe7O_\x8b\xdbM\xd0\x9b\xd5od\x06X\xd4c3\xb3\x842\x7frw\xdeq\xe3\x08Ab\xaf\x12$\xc8\x08\xcaU\x9e\x9e\xa1\x9d\xe1\xf5EF\x8e\xf2<\xcd]\x87\x9cgL\xdd\xe6\x03\x7fI\x92\"y\x8a(]\x8e*^\xa3\x0fr\xd0\x05\x81\x1b]0\xe1\xa9@\xc4\xc1\xf4w(\xfb\x1f\xca\x19\xf7A\xa9~\xc3\xce\x98\x8fX\x16\xf4\xfe\xc4@S\x9d\x97Vg\xde!\xc5\x1b\xde\x97\xca\x1e\xb1O\xb1\xa9\xfd*z\xc7|\x8d\xa5\x00\xaa\x97\xd1\x0d\xe3[\x98~=\xa2''\x0b]qS\xb8q\x88F\xf8\x12\xbe\xfd\xf6\x10\xa6c:\xc4\xc3\xee\x18E\x8b\xf4P\xe2o\xb4\x1a\x1f\x86\xed5cxw:2\xe1\x82\xc2\xbb)w\xc9\xc8+\xd3g\xe9\x99\xa8D;\xac\x0f\x1f\xdd\x99\xed3,\xfe\xba\xa82\x1b\xd0_\xf7F\x7f\x8e\x82\xaf\xdb/\x05f\xd4\x05f\x84\x17\xfd\x80h8\x81\xe0\xb9\xaa\x8a\xf6\xa8\xe2\xa8\x8e\xceKM1\xef\xb4[\xb2;U\x97\xecN?\xbeZ\x88 t\x9d\xb1\x98-\x8b\xe6z\xddReh>t\xb7Jy\xa7\xd3Sr^\x92\xa4\xe8\x1d\xf6\xef\x99\xe7\xd4\x0c\x9c1\xf0\xa3)1\xd7\xda\x8e\xae\x1bB=e\x9ecG\xeb\xac\xbc0\x94\x89\xef\xc5\xd4\x8a*\xf1\x98S\xb5~'\x12\xfa\xc9\x88\xeb'\xafU\xc5x\xd5\xc8m\xf0\x10\xb1B\x85\x88Q\xc1\xbf(9\xea\x98\xf9S}\x02\xfb\xfc\x0b\x8f\xa3\x02)\x9d\x14\xa1\xf9\xb9\x8f4\x0f{\x8d\xda-\xf4\xf6\xbb\x0c\xaew\xf4\xa9-\xd4\xa7\xad\x9c\"\x0e\x9d\x96\xe9r\xa9\x11>B\xdesY\xfa\xe7\x9e\xeb\x86\xba\xbfQ\x92mJi#\xcc\x04\xee\x04+\x12\xbc\x9b\xa7\xe7\x12MY\xa3\x0b\xfd\x87\xf8\x1e\x1e!\xa8t\x90(tj^\xc9\xac\x9c\x8c\\Q\xc1\xda\xe3\x1f6\x1e\xb7\xa318\xc7$ \x01'\x95mL\xa7\xe7#\xf4Y\x95\xe8\xff\xa49\xa1\xe5&\x93Pj2Q\x94\x93T\xa4\x88\xbeu\xd0\xcb\x0b\xf0%\x17\xb4\xdc\xb0ag\xd4\xb0\xcd\x05-v\xe0.f\x82\xa1\xeeG_}\xd5\xfa[-F$&\x1bD\xc3\x02\x90TC\x18\xb9\x89'$\xc618\xcc9\x03\xad\xcb\x88\x13\xcc\xbaLD^\xc2\x84\xd5PB\x91\xbfOG\x9a\x96\x14\xebCK\\\xdbai\xb2\xad\x94\xc8y\xad\xc2W\x03\xa5\xd6\x9af\x1fS\x1aX\xc9\xb4\x9b\x1a\x94\x8a\xc4\xda\x05IxT6\xce\x15.\x04N\x1e\xe5\xe4\xdct\x0c\xfe\x186*S\x10\xe6\xf3\xe6\xd5*X\xcdA\x8b\x8c\x05\xc2\x00c\x9ci\xc6KX\xea\xf6\x13\x10u M\xd3\xc8\xca\xb5WHg\\\x18\xb5r\"\x19C\xae\x98\xdbF\xf4\"\x96\xf0`k!\x0e\xb3\xaf\xbe\x02\x07\xb5Y\xb8\xdf\xd2z\xa1t\xfa$\xc1\x9a\xe9\xa2\x96\x01\xcf\xc3\xa88>\xf3\x97K\x92\x1f\xa0N\xd6\x87\xaa\x8d\xf3I\x9d\xf9\xf6\x8f?\xd8]L\xcf\xcbi\x11\x8f\xed\xad\xefW w\xabT\x8aj\x88\xc67f\xd8\x0b\x9e=\xea\xab\xaf\xc0m\xf4A\xd1\x83\xddZ\xaa+`\xef \x07\xb0\x1e}tY8h\xb2Y\xcfI\xfe\x9a\xeb\xc7F\xae\xaf\x88\x93\xeb{q\xc90\xdd\x1d}\x9c|\xedU\x12\x86_\xa28~E\x02\x12m\x91;\x91\xd5\xdc\xb7\xce\xc5Ps\xea\x9fxw\x99R\x88G\x97\xda\x83Hd\xa2\x02 \x1b\xee\x84\x1cf*3\x9a\xcd\xeeJ\xab\xed\xe4F\xad|\xd4#q\xa8\x07,%\xf5h\xc4Q=\xd9\xac\x91w\xf5\x81\xe5b\x88:\xf7u\xad \x17\xcd\xc6{53lJoP\x18\x86\xd2\xd84\x1b\x8c\x03\xa1\xff\x9d\x893#'\xbfm\xa2\x9c\x84\x8cT\xe1\xae\xf2\xd9\x19L\xf72\xba\x89x\x8b(/J\xb7\xb3\x01\xb1\x90e\xc1?+jZ\xdam\xc7bTe\xd1\xee\xee\xb4\xfe\x86lo<\x99\x18\xf4\x01\xbc\x05\xec\xce+\xc3q\x9fX\xee\x8f|@V\x8e\xb4\x865\x98\xcb#.?sm\xaf\x9e\xd7 Z{\xfe\xa6%\xaa\x0b\x95\xb7\x1e#\xad\xe9M`Mo\xc2\xea\xb3\xe6\n\x0f\x85\x91\xde`\x95\x07cj\x11\xafX\xa5gGB\xdde(\xef\xc0\xa0\x1f\xa5\xebu\x9a\xd8\xbcs\x81^\xd9\xce\x8fE\x9a\xb0\xcc\xe7O\xd2|m*)\x9b\xbb\xcc\x98\xfc=\x0b\xaaQ\xc2\x9e\n\xc7\n\xc6n\xa8\x01\xcf\xe0\xb0\xc9\xa2\x9c\x9a\x0b\x98\xceM\xf6\xac\xb6\xc1\xc9`\x15Y$Zk6\xd4\xf6#\x83\x95)\xa8\xec3\x85W\x15S\x10\xd8\xea\x06\x06\xbbP\xd0\xf4\x8f\xa2\x9fh\xa4\xf3\xc1{\xf4\x135\xcd$E\xd9\xc8\\hot\x92\x91I\xbbwk\xf3\x93\xa1\xf4X\xc3\xc2\xa3\xc9\x05\x04\x83\x8b\xb65\x8dL\x81\x12R\x97\xe1\xe4\x88\xe1\xafm\x0d\x8ds\x06nSC\xe3\xb8\xb13\xb8\"\xddT&\xa4 \xde\x94!MEC\n-\x93\x12P\x89^\xfd\x81\xef\xea]\xb9H\xf3\xb5\xaf\xed\xe5\x0b8\x04\xf4\x81^!7Rv\x18\x11\xed\x86x \x87\xf0\x82\xbdP\x1a\x10\xf45%\x00\xb47\x8f\xfd\xd2wL5\xf8\x9eS\xe8'\x15t\x94\xd4\xa1\xe5\xea\x97\x9e\xd6\xc3\xae\x19\x0e5\xf8\xaf\xa2\xf3(\x0cD%Y\x17T\x16\xc0\x81t\xab\xc95\xaf\x9f\xe0\x10\xde\xc1Cx\xd7\xe5\xa1\x1cM$\xe7+8\xc4\xc0GW\xd4\xa2\xe8\x12\xf0\x91[Vy{\x95_y\x0c\x87\xb0n~e\xe0\xfb\xcf,\x12Y\xbd\xb1\x80\xf9\xcd\x02\xe6 \x1c\xc2\xdeT\xab)h0z\xcc\xe9\xfeY\x8dOl=:\xec\xe03:v\xda\xc1gM\xbew\x8c\xfd\xe1\xb7\x84(\x87\x86\xe37\xf5\xf7\x04h\xe3koh\x9bo\xea\xf0e\xda\x03\xec\xf5~\x1b\x8e\xf5\xed\xb7\xfa[U\x1b\xe3f\xccB\xd9\x15G\xb1\x02FWL\xd6z\xa4\xe8\xf3\xf6\xb3\xdc\xfbH\x17&\xa8\xb0\x99\xd9\xba$4\xdf\x8c\x12\xa7\xe5\xde }\xe9\ns\xf8\x0fq&\xba\nC\xffSx\xd82#\xd2\x06\xa1\xa2\x070\xeb=T\xf6\xa6=\xb9\xf8au\xc6\x00VF]\xddC\xabT\x0dA\x1ac\xbe\x10\xdaS\xf5\xd9\xa7\xea\xaf\xf3?\xff\xef\xefN\xc3\x8f\xee*f\xb39Y\x9a:\xe9cx9\x86_Q\x0fu\xe2\xc0\x0d\xf8\x15n\x80\xf3\xd6\x19\xc3w\x18\xc2\xb7\xf3\xac\xb5z\x92\xa7\xd9\x84\x9fg\xca)p\xffJ\x1b\x1d\x833\xd2o\xb5\x1d\xa7 $YN\x02\xbfT\xad\xcf\xfbq}\x96\xd6\xdb\xbf\xf1\x16\xc6\x846\xfe\xfep\xab\x15i\x9c\xe4\\g\xdcb\xdbq\xba\xc6\xb0\xa4}~%\x94\xe3\xaf\xae4G\xfa\xb1\x89\x9dgnW\x14o&\x14\x83\x0c\xeeR\xe7\xff\xb0H\xa9~\xfe\xb3\x1f\xeb\xcb\xb0\xc8g\xa8N\xa0\xbf\xa63\xf2X\xcc\xc8\xe3\xff\xf8\x19\xb9\xc2\x1a+;8wV\xdb\xa9\xe1\xe2\xa9!\xca\xe7Zz\xcc\xeb\x9f\xc8\xbei\xc2\x8a\xbd3\xd4\x0b\xc3\x1f\x7f\xc0\xde\x13\xb3$\xab\xed\x87\xca\xf9\x85\xb2+\xea\xb5\x14\xbdw\xbe\x89\xbe\xfdn\xebG1\xa6\xe2@V\xb4\xf8\xe6f\xf4-=\xe6\xe0\x06\xbc\xb1\x88\x8eo^\xc2|\xaa\xc1\x8f\xda7\x8f\x07\xf5\x8eU\xc9\xcd\xde\x8fZ3\xd5\xe0\x94~\xfb0s&\xd82\xbbi\xe3*A6i\x8d9\xfbM9\x98\xd7t,{\xcf\xb5'Z+\xcb\x13\xc6\xdc\xce\x0cY\xed*)\x07\xcb\xebP\x94\x8a\xcc\xd3\xa3\xad$o\xd0uX\xebM\xb8N\xf3'5\x84`\xabf\xf0T\x0d\xd4\xd8Z\xf2\xedVK\x9d\x8c\xd5\xa2\x14\x0f&\xd0p\xb9m\x83\xcfXx\xbd%\xef\xbb\xabV\x84\xd0\xc5+fB\xccc\x7f\xea\x1a\x12\xf5\\^(\x11\x087\xc3\x0b\x0d\xc5:\xd2-\xab\xf5\xba\xd5\x0e\x96\xdd\xba\x88\x06\xa4\xe0\x0e\xd9\x9a\xacVvZ\x1f{\x8d\x8f\x98\xb3\x8e\xd6A\xb3*\xa2\xf6\x8d<\x89\xa5\x84H\xefX\x01G\x816M\x1d\x8en\x9a\x84K\xda\xac\xa9\xc9\xa9\xec\xe0\xc7\xa4,\xa3d\xf9$\xcd\xdd\xa0'g4\x183\xcdD\xd4>k3\xf8\x89\xb96PY\xf5'\xe4U\xd4\xaf %\xa7~\xf6\xae\xca\x89\xf9\xfa\x97R T\xaeT\x81\xca\x95*P\xb9R\x05*W\xaa`\x98+U\xe0\x16\x8d\x8e\x06jO\xe2\xe0\xe3\xfb?-l\xfd\x9f\xbe\x04\x98\x0b@\xfb\x00\xf38\n\xde}j\x87\x17k?$R[?4goevS\xc30\xcb\xe0\x1aU\xferma\xe2m\xfd8\xe2\x85\x1e\xfcu\xe1\x9e\xa4c\xf0\x91\x02UO\xbe'\x8b4'\xfcp\x12\x00\xa8\xb7\xe3\xb3\xe4\xa5 \x7f\xca|::7\xdd\xd1\x18\x12\x8f\xf0?4\xc7\x82\x18\xb4\xf6\x04\xce\xf0\xf4\xd5\x9c\xa3kn\xe1\xe8\xfb\xec\x02\x12*\x837\xda\xcb<\x0d7\xc1\xb0\xb8\xfe\xca\xdb\x8f\x8d\\\x92r\x80\x7f\x94\x19\xc9O\x04 \xae^\xf5\x1a\xeb\xf8\xdb?i,\xbf)\xf6y\xce\xa2\xabme\x93y\x99\x00G)\x10\xe1G\xfc\xd8f\xa9\xa6\xae\xdb\xb1\x8d\x19X\xee\xab\xb2\xc6H+\xa0I\xd3\xc9\xf8\xaat2\x1bU:\x99B\x95N&\xe6\x0f\xe4\x15\xd0Z\xb9c\xaeY\xc6\x98\xfeG\x84\x1e\xfa/\x0f\x1e<\x90 \xe9\"M\xcac\xa6\xcfv\xa2\xd2\x8f\xa3\xa0\x1b\xa2\xd3\xfa34\xd2'\x03\xe3\x00m\x1a!)\x83\xd6\xab\xbb\xa4\xf6\x93\xee\x94\x1fc\xc72\x03\xaf\x18\x02#\xff\xdb\xe9\xd1\x8e\xa5\x9b\xc0L\xb9`\x00\xf5\x82\x81\xfeEP\xb1\x08\xc62@\xc0\x19\x04:\xac\xb6\x17\xd1\xc8u\xc4\xd6V\xf9\x05C#\x94\x06\x9ae\xe1wVyC\x87\xd0\xf2\xfe\xeb\xe39\x01\xf46&C>\x06\x90\xb7yz\xaaI\xca\x00\x9c>\xff\xc0\xcb\xa9\xea\xe3\xe4\x8dI\x06@\xde\x85\xdd\x86;$\xd3\xc0\xd0.M\xf2\xf4l\xd7^\xed\xd2\\\x90\xc6\xfa\x05\xb8l\x92\x02\xd8\xb1\xddV6\x82\x8f\xdf<\xf3\x1a\x1a\x90\x05\xa1\xf4HR\xe6\x17\xb2\x12\xb9&\xdd\xb1\xf0\x01\xee\xc8?d\x0c\x07\x06\xbf%\x10\xee\xbb'\xfb\x9ax\x10q\xa1\x0b\xef\xc9\xd4\xa2\xda\xcf\x9e$\x1f\x83\x1b\x8d\xaa<\x81\xeaL\xd5\xe2\x12N\xbc\x91\xd7\xf1\x19\x7f;\x12N\xb4\x1dOr\xee=\x02\xb3\xc6S\xa3G\x89\xb86\xb2\xa6Z\x0e\xec\xfa\xee\x9a\xd8W\x8b\xbd\x0c\xe2HJ\xb5`\x97\xf0\x0f\x10\xd7P|\x06\xd6lz \x13\x94\xb8vl:\x92(\xa3?]o|^Fb\xa39H\x13\x9b\xf6)\x97\x80\xb6CGx\xcb\x991\x95\xbe\x83\xa6D\x83\x97\xa0\x80\xe5\xdcb\xa6\x1f\x94F\xfdX\xc3t\x93CHS\xbd\x83\x94c\xeb\x88?x\xcbP\x82\xba)\n\x85x\xf7\xba\x89B\x9fT\x83\x19\xc8\x04\x1e* \xb9\x81\x10xP\xdc\xf93\xa8/\x1b\xfc\xbeDK\xd9g\xf9m#5m$\x90k\xaa/\x19\"m0I\x83\x84Q\x99\xe6F\x0d#SF\x92<\xb7P\\2md\xec_\xa4\x9b\xd2\x02\xbf\xb3p\xb9#\xcc \x884\xdcH\x18\xe55\xf8\xf3\xd5\x07\x84\xcaL\x04\x82gv\x8a\x8c\x04\xe6\xe1\x84W9\x9c+\xeb<\xf3\x0b\x93#\xc8h\xa7tj\xb6\xfc\xfc\xa2\xcdL\xeb\x93\xa7C+\xcc\x19gA>\x05\x0c?u\xc7;\x9e\x95\xa5\xe1h\x14\xec}\xd9<\xa2\x94V\xea\x9d\xf6jo\x9f\xaa\x8f\x9f\xf7c,Mgh\x86\xe9\x90\xf4\xa7\x87\xd031\x7f\x1fVg\xaf\xe9+\xcd\x99\x0fx\x08+\xb7\x03\xc5\x1c\xc3\x1a\xae_\x02\x16Co\xc4\xcd\xcc/W\xf8\xbe\xb2\x1f\xc5\xda\x8f\xe3F-F\xbf\x84\xee\xeb\x0d\x7fW\xf5gt\xce\xebFw\xff\xb3UT\x92\xe3\xcc\x0f\x98k;\x99\xe0\n\xabw\x95U\x15Gi\xaa\x01>\xb05)\n\x7fI\xb4\x07\x8b\x16]\x8cC\xc2\x8a\xa0\x93\x90\x04)3\x91;3p\xb0\x12\x8aah\xc1&/\xd0\xdc\x94\xa5QR*\xb9\x1f\xd9\xd8\xb0\xb6\xb5\x8e\xe6i\xaa(W\x07\x7f\xe2\xcd\xa3$t\x19:\xe4R\xbb\xb6\xf3\xe3f\x9dA\x99\x02\x1d\n\xc5\x96\xbc\xd6U\x88\x1fm\xb24\xd4\x04\xb6\x13m\x91C\xe5\xbc\x8c\x8f\x92ZtwJ\x8e%h\x9fEE\xe9E\x05\xfd\x8f\xdb\xd9\x0c\xf6\x9bI\xb2\x97\xb8\x9f\xb0\xc7v\xd5%>\xc4\xd2\x804\xc8!\xfa\xe3&\xe8\xe5\x91c\xcc\xa4\xdd\xa7\xd3\xa4Z\xc6\xd6\xe7v\xde\x19\x9f\x90\x90Z\x13I\x0c\x0fB\xc4\xfd\xc8$\xcd~3\xff\x99 \xd5\x95\xd2\xa86\xd6Z\xd1\xab\xf6+\x06\xda%\xd3\xd6\xad\x94\xda:\x17\xd3k9\xce\x88W\xa4t\xc0\xb1\xb1\x1d \x11\xfcd\xff\xadW\xa6o\xe8va\xf5\x8a\xe0\x06\x10\xaf\x88\xa3\x80\xb8\xd3N\xc7\x04-\x81^\x1d10\xa7\xccm\xf2\xa4-\xa51\xfb\xc2\x17\xbd.\xbf,\xf5\xbaA\x95\xbb\xefO\xa3\xe1\xfd\xe2\xa0jQ\x01\xe9\x12>\x87\xe2\x13u\x12O\xdc\n\xd7\xd0\x93\xb0\xca\x92\xf58\n\x9f\xa7\x9bD\x16Td\xab$\xaf\x95\xe3\xcdl\x1fE\x95\xce\xa837\n\xf0*?R\x7f\xb2\xda\xf3!;J>`\xea/\xd2\x1bT\xfbN\x9d\xe6\xa9s\xbf*\x9d\xcf+)0\x9dH\x13G\xa4\xc3\xbf\xc4\xf8?\x81\xb9\xa39\x04\x93\xb5\xa3\xe2\"M\xa6\x0e\xec\xaeV%\xddv\xb3\xda\x89\x89\x82^\xc8&\x8edR^dD\xb0\xb7\xc8f\xba ?\xfe\xa5\x9f\xd1\xe9\x11\x0b4\xd6\xec\xd4\x03s\xcd\xf4\x9c\xf5J\xab\xf7\xd5\xc4\x85\xa9\x06SZp6\xe22\xe9fR\xe6C`\xa5\x953\xe8\xdb\xf8\xa05\x81\x9bR\x8fm\x80\xaeE}\xc7\xda\xe9z\xa5\xdbB\xcf\x98I\x12@\x8fzU\xa9\xf9\x08\x93^~\x93\xe6\x16cI\xb5co\x91\xa7\xeb\x1f\x8fG\xee\x89C\x0f\xb5(@.\xff\xe6\xafE\x9a8o\x1b\x9c\xe3\xf8\xday:\xd3\x1e\xbd\x10!\x06\xcf\xa2\xe4\x9d&5\xfcug\x10\x13\xf7\xb6* \xfdg\xc9\x18^\x05?\x98H\xf9\xc1\xa8\xe2\x07\x93\x11\xe3|\xf6\xbf\x86\x0d|\x03\xc9\xd7\xb0\xa1\xfc`t\xb2i\xf3\x83\x1b ?(\xf8\xcd\x0f\xc5\x08F#M\x12i\xcc\xb2\xf8\xda_\xa2\x05\x17u1\xa7\x8d\x1bLx\xa5\xccn\xa1X,\xb8B\xe6\xad\xd9\xb2\xc5i\xaf3:5\x98\xb1\x96\xc7\x003\xfd)\xf2F\xb7\x87\xa8\xe6G\xe87^d\xd7\xb9\x87\x9f\x80c\x1a\x14\xadf\xed\xf4\x91\x0fq\xfaH\x07\xa4\xcad eK\x7f\xb9$aE\xb8\x0b]\xc6G\xcc\\lv 11\x0f\xf6\x8aB;\xee*\xdd\x92|\x1b\x913S\x8d\xc1\x17\x1c\xceA\xa1p\xb0\xf56\xad\xad\xb7U(\x9d6\xaa\x1e\xf8$\x9f4z\xe8/\x0bg\x0c\xa5\xc1Y\x98y\xcf\x08\xa7\x92\x08\x1dI\x8c\xb6\xe2\x9dye\xa86M\xd5OT\xc2*_\xb8\x84\x9f\x05\xec\xe4\xb6\x00\xf5(sF\x1d\xe8\x9cl\xd4\xee\n\x00=;F\xf7jbPL\xd9\x95\xe6\"\xe9}\xd3\x85\xef\xaa3A\xa7\x87\x1b\x0e\xf3\xa2S\xcd\x89o\x9a\x90\xda\xef\xc1\xe0\x93j\xf4}\x00\xd6\xc3t\x00\xab\x0f-\x0bN\x992\x86PG\x06\xc4U\xa7\xeb7\xc32b\xb36d\xb0\x15\x17\xf33\x8b, \xe9N1$G\x05\xce\xde%\x0d/\xad\xc6\x06\x1e\xc3\xc6\xd29}g_\x0b\x10\x1b\xcc\xa2\xa7\xc6\xf8[q\x898\\C\nSzE\xe1\x0c\xd2*\x19\x93\xc5\x0bt\x8b%Z/\x9c&\xe4\x8b\xec\xa9\x19u\x9b\xc0/s\xb2\x88\xce\xb1\xb0]\xbd\x0c\xc6\xb7W9Y\xcc\xc0\xf9K\xf5\x12\x8e\xc6\xa2\xd9\x8a\xde0\xda\xa1'\x1a\xb6\xfe\xdbR\xb0&\x08&\xca\x8f\xfeM\xe0\x1bVUDM1o5\x0c\xfa?\xa5u\x9cv\x01L*\x0b!J01\xc9\x1eHm&\xad;\x03\xe5[\x83SI_\xa4\xb3\x12D\xa4\x04\xc7Z\xe4\x10\xd2\xc6\xae^\xc9\xcd\xfa1\x1a\xbe?i$.H\xbcS\xfe\x077VQ!\xb0=\xaf\xff%\xf9\xc4\xe5\xf9}\xde\xea\xc7\xe5S\xf964\xb1\xa8\xed\xed*'\x91\xcc\xc3\x98\x8fb\xe4\x9e$\xc8\xdc\xc0\x1e{[V\xe4\xbf=\xab\xd7\x8a\x81\xd7\x1d8I#\xd7\x83\x89Y\xc7\xa1\x9b\x98tJ\xcev\xe2\x9fc\x8fnE\xdd\x99\xc3(\xa5\xe6\x0c1\x9a\x99\x81\x87J\xffB\xa2\xe5\xaa\x9cAN\xb9\x9dy\x1a\xb3,\xa4I\x9a\xaf}m\xfc\x9ez\xec\xb2\xe4\x00j\xf0\x96wl\x9c\x06\xef\xaad\x04\x94e\x1b\xee\x05l%z\x08\x9f\x0b;\xe9\x83\xce\xca$\xf6\xe7$\xc6\xf3HQ#|\x0cI\xdbT\xbc\xb3/\x03(\xdbW'\x1f\xb4\xb0=\xd8\x1c\x1b\xff\x05\xd7B\xcb\xf84Y\xa4o\xf2\x18\x8f'\xfa\xfb{\xbf /\xfdr\xa5Q8JS+\xa4\xaa\xd4\n\x91*\xb5\x82\xafJ\xad\xb0Q\xa5V(T\xa9\x15\xe2Vj\x05\xb4C\xb7\x01\xea\xdc\x0b\xdcR=\xdd\xbf\x16\xa9\x17zsn\xc5\x11h\xdc(\xbeD%5\xe1\x86\x9eY\xab\xb4\xd0\xe8x\xd8\xa95\xe7\x8b\xb5\xd3q3(\x16\x84\xb64\xd9\xe4jR\xe4\x9c\x00E\x1dx\xf3\xea\x19\x96\xc1-\xd1g\xc1\x81\xb7\xbb$\x80\xd11\xb6vn\xd1\x06\x0c\x85O\x8c\xa5\xd0\x9b\x05\xb8\x12l\x053\xc6\xc2\x00\xac\x85\x81\x98\x0b\x15\xf6\x86~i\x90\x89\x93\x01\x1aM\x00h:\x9e\xf3\x94\x9c\x7f\xfc\x01N\xb9\"\x10\x92-\x89\xe9\xc9c\x905\xd3\xfa\x0b\x14\x93-\x14|\x1c\x9a\xac\xfd\xc8\x08\xefc\xf2<\x87\xb2p\x16\xf1\x1fV\x8cL\xaa\x15/mX\x1e\xa3\x86\x8aq\x94.\x96\xf5*\xfc$*\xa3\x7f\x937y\x99%r\x90\xfb\xbb\x9d8\xc5\x14\x9e\x945\xd4\xb1\xf3L\xb5\xb9\xc9c\x1d\x10\xb3\xd3\x08\xee\xc4\xe4\xe5^\xa2\x0c\xa9\x83bR[S\xca\xd3A\xc7\xcc\xea\x83L\xee\x15x\xcdc\xee\x98\xbc\xcaV\xa8\xa6\xe1\xb1\x8e\x86\xd3\xdeh\xf99\xe4\x984\x829c\x085\x06\xbc\x9a\x19\xd4\x9cZ\xcd9\xd4\xba\x91\xb6\xcfA\x85\xa3\x8d\xfa\xa4\xb8\x949\xb9y8\xb0\xda\xfe\xd7\xedp(T\x87C\xa1:\x1c\n\xd5\xe1P\xa8\x0e\x87\x82\x1d\x0e2\x92_||\x92\xaf\xd7\xa0\x7f!\xf9\xe2\xb2%\xf9\xc2/v\x97 Z\xc6\x1cXo\xa1\xf8Zn\xa1\xeb\xc1_\xf5\xf7\xd6\x17v\xea\xcf\xb2\xb7v\xd6/4u\x0b\x8b4Ugp\xfa\x8f;\xf7\xae\xc7\xa6\x157\xffDB\xd1\x97\x94B\xda\x94BO0\x9f9K\xff`4\xe5\x03\x9fO\x1ed\xd7\xc8 $\x17\x06\"i\\\xf4&\x0b\xfd\x92\xb0\x86e\xc6\xdbO\x9e{\xe8\xd2d\xf2\x03K\x9d\x83\x82\xae\xa5\x96\xfdG\xa9\xd6\x90B\xe9\x8e\x13\xa7~\x18%K\x96\xd5\xb8\xf4\xf8\x9f\xc7\xa5_n\xb4B\"\xc5[g\xe1G1 \x07\xbf\x8bn\x85^\xb0\xc9s\x92\x94\x1cC\x0c\xd2\xeb\xef\xef\xb5\x82(\xba\xde\xb9\x1b\x0f\x0b\xea\xd1\x9e\xe5$tF\xdc\xdb\xb0y\xff/\xbe\xefk\xb3\xa07%W\xfa/\x8e\x0dmw{S\xfe\xbb\xaa\x1a\x7f5\x07$\x8e\x1f\xebU\xfaQ\xb2CN\xfa|XK rf\xaa'|\x9d\xce\xa3\x98\xcc`z0\xb4/N\x94d\x1b\xfbTCut$\x9f\x05\xfe\xba\xf2\xe5,\xf6\x03\xb2J\xe3\x90\xe43p\x18\xea\xc0\xfc\x02J\x7f\xa9y\xab\xbc\xc8\xd0\xbeE\xceu\xdf\xee%*j\x12M\xf5k\xd5\xc1_c\x8aS\xe6\x1b\xe2T\xd8\xe28\xa0U<\x84U\x81qs\x14\x94\xdcn\xf6\x81\x13x_O^*S\xf1R\x99\x8a\x97\xcaT\xbcT\xa6\xe2\xa5\xb2a%\xc53\xca\x15\xb4\xeeb`L\xa6\x89\x9cY\xe0\xc7\xa6\xfbR.,\xfb\xf8\\X\x08\x87\xf0\x84\xb7\xef!\xebAwO\xbb\xcf\xfa@\x1a\xe8\x84\xd7v\xf0\xa4yYse\xc0{\xa7\xe6\x96\xec8%\x11iK\xfb\xa4Wmn\x19|\xc4B\xa3K\xbf$\xd2\n\xae\xe2\x8a\x8a\xa30*\xbfO\xcfg\xb075\x12\x0bGI\xe4#\xc3.\x86+a\x80`P\x02F\x18\xc0\x13\x81H\x95\xc3\xd8?\xacq]4\xa7\xbef\x96\xac\xcdc\xaa\xd3dx\xb6E\x90\x8cD\x9boB;\x14U\xa2\xb7\xa1#\xf8d\xfel\x8c\xcf\x14\xe7\xde\xa34)6k]\xfeD\xa8\x9c\xd62?\xf7\xd7z@\xe6\xb5\x16\x15\xbcf\xb6\x1e8\x1a\xc2\x1eC\xe5\xb7\x96\xf9\xe5\xea\xb9E\x9a\x8e\xcd\x003\x0ep\n\xbfq\x9d\xefYE\x1c\x0dk\n\x9c\x82o\\\xe759/\xbf\xcb\x89o\x02\xcf\x18\xf8*Z\xae\xe2h\xb9*\x1f\xa5\xa1\xd1\x81,d\xef4R\xf0\x99\xde@\xef\xed\x08\x8bg\xe2Z\x91\x92\xe4\xbfD8[\xfe\xf7\x17OC\x92\x94Qy\xe1\xfa\xdc\xe7<\x1fyu\xd9\x94\xc2\x19s\xd3\xf7\xb3\xa8(Gn\xf7\xc8\xea^[,\xa7\xd9\xe8\x1c\xdb*\xae\xcf?\x9a\x93\xdf6\xa4(\x1f\xd9\xf7~\xddBb\xfai\xc4\xccN*Wq[\xf8,\xc8\xde\x98\xd5\x8c\x0c%\n\xd5\x03}\xfbK\xd1>\x12~=\xec\x05\x1c\xc2\x92\x89\xc7z\xc09\x02V\x07\x85\xd1[\xed\xca\xaa6\xcf\xd3\xf0b\x82X`\xf0zpB\xbf\xf4\x19\xe4\x04c6f\x907#8\xec\xdf\x8e\x92\xfa\xdd(\xd1\xd5\xfc\x1a\xc3\x9c.k\xaa\xa9\xae\xb9\xd8m\xb0\xa7\xa7\xc8\xf0\xc3\x0dpW\x0d\xeb\xa3\x03Q\xb2\xf5\xe3\x88e\x070\x0d\x8a\x93\xdf\x0b\x03\xadk\x8b\x0e+? c\xf2\x82\xdfT\x8f\x9d\xee\xbc\x0b:z\xd5\xc8\x8d\xce@\xaa\x91\x13\xab\n\xa3bp\x9a\x1ej\xca\xae\xee\x8e\x86\x13\x96\x91U_P[\x87\x11\x97i\x9b\x84Q\xa9mX\xd5h1\xa0\xc19\xa6\xa0(\x13\x08\xfc$ 1H\xd6\x86u\x04D%\xb50*\xd5PF\xeck\xa4\xa9(\xd3\xe52&O\x05\x99\xd1\xef\xbc\x87\xe0<\xc2\x1ebG\xe8+u\xd5\x02\xcd\xd2\xb3\x0c\x0e\xa6\xf9X\x95\xeb\xf8 \xd6q\xd8i\xbe\xdb\xf1N\xceKq\x8c\x89L\xb4\xc0\xca\x92\xa9?`\xf4U\xe3\xf8\xbf\xd5Oo;\xf1\xad\x89\xeb\xa9(\x81\xc1\xf9Z\x81\x9d\xad\xe4\xcb\x9a}\xa9L\xea\xd4\xbb\xab\xf0.k\xc7\x9c\xd4\x87\xd1\xaay\\\xf6D\x1eq|\n\xdf8m\x02\xe0\xf6\x04\xe0\xf8\xba\xef\xfd\xfe\xbe+\xbfW\xf3\x17\xca\x1f<\xaaz\x10V\xcf\xdf\xb7\x95\x03\xdb\xa6x\xda\xe5\x97\x9b\x98y\x05\x89\xd9\xfdY\xcdLDU\xde\x10T/\xa5B\xbd\xa4\xd0\x1cQ6\xf9\xe6\xf9:\xbe\x19y%)J*\xceJ\xe1(\x83\x8c\xcbf\x02D\xab\x08<\x84\x84\xc7\x80\xd0\x9e\x9e\x9e\xafYu\xb0\xe6M\x99\xe7P\xb4\x00\x97w~\xef\xf0\x10\n\x9db=\x86C\xd8C\x8e\x0f\x93\x17\xfe\xfe\x9e\x8e\xb2\x903M\xc4+HyLY5W'\x1c\xe1fW\xd4\xb0\x1e\x8d\x9b9\xf1\xf5\x9eH\xc5?\xd7\xb1V\xa1\xd7P\x06(\x12\x9cK\x94u@\xe2\x82\xe0\xdc\xb6\x92\xf3\x17x\x0c\xb8\x0e\xce\xb1\xaa[\xfa.i\xbb\x83L\x88\xacEMc\xda\xcf\xb5)\x0d\x17\xf8\xd97\xad7\x14\xd1I\xafXvK\xb7\xe3R\xae$J\xbcE\xe2E\xc9\x82\xe4\xc7X\xe2\x7f\xe4\xe6<\xdaF\x9dg\x8d\xbe\xb7\xa0h|\x8c=\x16/\xa6\xa8\xefT\xcc\x07+\xb0\xf0K\x1e\x95\xe4E\x12_H\xf3]*\xe6EL{kf\x14\n3\xa1\xf7Lj\x19B=~\n\xf4\xcf\xb5\xa44\x99q\xaf\xf0}\xa2\x90\x90\x0d\x8bOw\xd1i]bc\x0c\xa9|\xdc\xa7C\x06\xee\x92N\xed\x0e\xf8\xe3\x0f\x08G\x0c^\xfa\xf96\x03>\x14\xedl\xe8p\xde%\x98\x89\x82`\xa6\x1d\n\xac\x82\xa3\x84=\xa7Bl\xcb\xe0\xea\x95y\xb4vYA6\xbd!\xb6\xb1\x85\x95ek9\x99\xe8\xc7\xba(\xb0\xb3\xc3J\xea\x8eUh\xa8\xa6k\x0c3+\xd9\xf8;v\x8aURc\xbe\x14^\xc2\xfc\xa8\x0c\xc9\xef\xe5\x96\x8e\xeb\xe9J\x7f\xdd+\x10\xd0\x1f\x0f\xee\xdf\x1a\xfd9\x8a\x10\xfc\xf9\x1c\xc2\x189|\x92\x06\x9bK\x96 \xe2$\x88\x15\x94\xa1\x1cB\x98\x068\x0e\x8f\x9c\x93\xe0Q\xba^\xfbI\xe8:A\x9a]\x98Sd\xc9\xa8\xd4\x07\xf3\xcc\xf0\xb8\x12R\xcd\xb4\x95\x9ck\x88\xeb9%W\xe0\xfd\xae\x0e\xce\xac\x8bK:\x8fX\xee&\xd3\x17\xd5T\xb2]\xbf'\xa3\xd2dQ\xaa\xb3\xcb+\xdb)\xc9y\xe9\xe7D](\x11P\x14CTj)\xbb\xf0\x8ezrs\xe2\x87\x8c7b\xb6q5dk$tZ\xd4\xa0V\x89A[\xc52/\x91\x0bT\xb0E\xf2)\xfd\xa0\xe6\xf7\xebP0\xa7\x7f(m\xe8\xa14\x95\x9dJ\xf4\xc9\xf4\xbe\xecX\xa2O\x1eLUqlj\n$\xbc\xd1N$\xa5\x08(\xe3&\xab?U\xd9|\\gE\xfc\x90\xe4EW$\xa5\xe2h\xe9e\x9bb\xe52T\xc3\x84\x9d\xec\xef\xc9?\x9d\xb1x\x9d\xe5\xd1\xc5\x18N\xfe\xf8o\xce\xdf\xb0zf\x9d\xa1\x08n\xc0\xdf\x9c\xbf\x8dx|\xf4\x06M\x12*V\x93\x9e\xaa{\xfbrTC\xb1Wa@\x0e$9C\xc5U\xe6\x17\x8a\x8dP94.\xc6h{\xea\x9c\x1b\xdd)\xf2HR\xe6\x11)\xa8\x90\x04{.\x16\xba\xa1\xc7i\xe6%\xe4\xbctG#/L\x132\xfa\x9a\x8f\xc2d\x8e\xc4L`6\xd6\x91\x15\xefZ\xe3\xc8\x0d\xc7p`R\xcfS\x9e\xedd\xdfP\xa1b\x8dPS\x89#\xa6\xb8(\x12\xad\x1b\xab\xff\x038\xdd\xd5\xde\xc2\x0dpf\x98?m\xcdW[N\x0b\xfa\x84\x00\x02\xbf\x0cV\xa0>Yc\x86\x11\xb8\xc2}{\xc1{XD\x89\x1f\xc7\xaa\x15V\xaf=\xbd\x98\x12%\xf3\xf8\xa1\xd5\xf8\xed*\x06`h\x0e\xf8\xd6\x89GP\xae\xf2\xf4\x8c\xbb\x07u/\xc9<\xfc\x97\xfa/\xfaA\x8e\x8a\xf34\xbc\x90\xa5\xd6\xa1 \xcez\x13\x97Q\xe6\xe7\xe5\xcdE\x9a\xaf'\xa1_\xfa\xcc\xd1\nG\xe6\xbc|q\xfc\x9a\xfd\xdd\xdd\xbb\x1aNa\xa9\xd9\x8f\xc0-|:\xa7\x8e\xb9f_\x82q}\xaa\xfdy:\xc6\x8c\x1c\xf2\xfd\xc9&\x057\xe7\xc51\xf9\x8d\xefN\xdas\xf7\x14\x0e\xe1\xac\xbb;\x97\xc6\xdd |\xf4G\xfd\x8dw\xca7\xacq\xfb\x01\xcf\xf5qd\xdc\x82\xc0\xb7\xe1\x91v\x1b\x02\x9e\x08|\x0f>q0h>J\x8a\xd2O\x02\x92.j\xae\xdb{\x12\xa1\xb0\xd0\xda\xa0\xe7t\x83\x1e\xfe\xffq\x83z\x89\xbf&\xf4\xef\xaf\xcb\x8b\x8c\x1c\xb2{\xf4'\xdf\xb9(P\xf7\xde5\xeem\x90\xe25X\xedq\x10\x98\xb4?F\x8c\x91\xdb\x05m6\x9f\x1e\x9f\xe8\xb5\x87\xc1\xfcg\x8d=\x7f\xa6\xdf\xf3`\xd94\xf0}x!\xf6\xfe|\xe8\xabe\x0f\x1b\x94\xb7#E\xb5 \x84\x97\x13t\x07uo\xfe\xeb_\xc9\xcd\xe5\x18\x1c\xa7\xab\xd8\xe3\xe3/e\xe5\xac\xdb\x1c\x8d\xcf\xb9\x93[\x8aJz\x9b\x8f'\xc4^7F\xefK\xcc\xca\x97\x98\x95O\x11\xb32 Z%B\x95c\xb0\"k\xab\x9a\xd7\x0dp\xab\xcf\x0b\xf1#29\xd5 c\xa0.K\x1b\xb3\x072\xbeD\xc1/\xa0#\\U_\xb0\x1e\x19\xe2J~\x0dCiZ>\x98\x97\xad\xe3-Q\xde\x148\x01\n\xeb\x1f305\xd6\xff\x9aV\xf0n\xba\xa7\xb1\xd0\x17\x8e\x82H\x9b\xf8\x10\xebr\xdd*p\xcc\xa3\xdb\x1b\xb3x\xfd\xf2c\xff\x00\xca7\xbd\xd2\xad\xea\xbc~_\x91\xf64\xec\xa6\x993;\xae\xd4N+\xbcW\xc3\x95h\xc6\x94\xa3M\x1d\x17o\xc5T\x0e\xf2\x98wF[\x89\xc5\\\xe7[Q\x8c\xdb\xa8\xf6R\x16\x8a\xe1d\x16E\x92\x01u\xfcL\xebdY\xb2\x9b\xf7\xce\xa0Z`\x85\xbd\x95 \xb6%\xbbM[jw\x05\xdf\xf5\x8c\xaf\xf9\xc2\xf7} \xbe\xef\xcfg`\xfa\x14gF\xcd\"\x99\xce\x0d\xcb\xb0\x82|@\x90\x00s\xb1\xa8\xc2\x17\xf91\xac\xd1\x96D\xf8\x02'\xf6\xe6\xd8\xd8\x82\x04\x9b<*/\x1e\xd3}\x1d\x95\xa6Z\xc7t+\xe5\xc6x\xdf\x98A\xf9\x9br\x95\xe6\xd1\xbf\xc9\xf7%\xa5\xb0{\xdd@\xb6\xe6\x15\xb0W\xc4Qx\x05\xf60\x8c\xd4\xe5\xc5&\xff\xf8\x03\xfd\x9d\xae\xc4\xea\xc5\xbax\x890\xda\xcd\xb0\x96\x8a+\x89\xa3m\xce\x86z\"\x02m\xd7\x9a\\\x91>\x84\x94u\\\x9b\xdf\xaa\xb1\xad\xd4\xc6\xae\xcaAX\xb7z<~\xbaJq\xf5\x1f\x9b\xeb\xea\x93zo\xc8\xe3T\x03\xb7ht4P\x1f\xad\xd7\xd9wC\x15Xj\xad6\xd9~\xf8\x80\xd2\x88\xfbP\x89*\xf4\xa1\xc9\x87\n\x1a\xf94\xd2\xe45\xbe\xcchD\xfb\x9e+n\xac\xd3\x90\xc4\x942\x8da\x8f\x07\xaaz\xe4<\xf3\x93\x90\x84#\xa1\xea0\xb8\xc6\n\xf8Y\xff\x13\n\n\xd0\xdf\xc3\xf2\xe9\xdd\x98\xb4&\x18iW\xb5&\x87\x89\x11&\x10S\xc8\xe3\xc8\x94\x1a*S\xb8n=ZE\x9f\xba-\xcd F\x99[\xac\xfeK\xee$\xd8\x86\xeaOI7\x9a\xf7\xc3\xf0^6\x11\xbc\x1f\x8e\x0d[E!9&\xf1\xe2Er\x84\xd3j\xe2\xc5\xf4+\x0d\x15\x1bV\xa1\xb5B\xe7C\xf7D\xd2\x89\x07\xac\xf6F\xdes\x0c\x85!\x1a\x90\x0f\xad\xfd\x11s\x80N\xf0\xf5\x94T\xa3\x19\xb4cw\xd8\xaa\xb6\xf3\xf0 \xb8z\xd4\x82\x98p\x08\x991\x956P\x98|\xaa\xe8\xcd\xfe\xfc\xb2U\xe8b\xae.\xdcl\x88F'\xc1\x0c \xea\xf2\xb6\x0d\xb5\xde*\x8a\xc3\x9c$\x943\xfa(M\xebB\x0d\xcd\x0d\xc9\xc2\xcc\xaasM\xc3Q\xdaxi\x05\x9b\xbc@\xa5[\x96F\x892_\x1c\xf4\xb0\xb7\xba\xcb$\xe7?\xed\xe0v\x1fX\xab\x92\x04%\xaa\x1368\x8c\x8b\x95\xed\x12\x1eP\xe4\xd4\xc7\xa0\"|\x17S\xf6\xcb\xbf Ar\x985a\xbb\x87\xa7\x91J\xf5\x85\x02\x990\xb0h\x1d\xd1\x92\xe8\xb5\xee\xc1\xee\xfc\xeey\xde\xfb\x0e\x89k\xb0C\x1d\xaf\x0f$O\\\xf8i=\x10GO\x9b(v\xdc \xbb\x14\x87~\xbf\x1e\xd2\xf83\xf0\xf9\xbb\x96*\xc11\xfb\xa10\xdc_g\xe5\xe0\xe7!\xc1\xf8A\x19m\xc9k\x7f>\xc8VZ\x99aC\xbf\xf4\x0bR\xa2G\x8e\xfc\xc8\xb6\x92Q\xaa^\xa8\xd5\x12\xbd\xdb\x97\x13JP\x13\x98,\xa2\xa5\x02\x8a\x89%\x86\xc0\xce\x00\x13QW\xb9\x86\x9fS\n\xfc\n\xf9\xaa(Y*E\x18G\xc4\xef#\x8b\x18\xa0k\x1b\x12\xef\xc6\x0d\x97~\xba\x02\xb4HS\xd4\x98\xc1\x98R\xf9\xaa\x8d\x99\xc4\x83\xefc\x0b/W\xc9j7\xb2\xce\xb0-^\xffIg\xafq8\xb5\xe0ly\xef\xc6XG\xee\xc4\xd1\x90\xefG%Y#\x9fY\xd3\x9a\xc3\xc3ff\x9d\xc6\xd9\xf2\x10\x1c\xbe\xb3x^\x96\xc1}\xd3\x07\xadt\xba\x16G\xc9;U\x860\xa8\x92\xd9\xf0$8\x8e9\x9dJ[~\xa8\x86\xa5\x1aDD\xc7{\x14F%`\x8c)\xcb\xbe\xc1\x1a\xe1wX\x154\x8dqd\xd7\xa5\xe0\xe7\xc8\xf5Z\x08\xda\xb3\x88'\xe7i5n\xbbBlTW\xb6>l\xc7\xd6\xb9P\xcc\xb1Y<\x92\xcb\x8c\xe8_}\x05\xe9\x18\x8c\xcb\xa0\xa9\x84\xa65\x071b\xab\xad\x94\xd2.M\xa2\xa1\xf55 \xd5\xa6;h\x1d\x06\xda\xc4'\xa4\xa6\x993\xd0\x14\xb3\x14\x14Y\x97\xef\xb4\xf7\xc0(1~\xdef\xa4\x05\x15\xb1z\x12S\xca\x9f\xf4\xa4\xb2H\xbc\"\x13\xbe\x162\xa9l\xc3\x1f\xf4\xda(\xf8\x83\x9eT\x16K\x0dL(\xfe\xb8qS,W\x1b\x98\x16\x1f_<\xcbl\xc53\xbd\xcfn>\x06\xbf\x7f\x92wy\xdfk\xe3\xb3+\x92\x84ozb\xa2\xc2g7\xed\x8b\x8az\x9f\xdd\xbc6X\x1d\xb6\xb7\x8e\x8aG\xcde\x89\xe3\x01\xabE\xc92\xca\x17\xab\xf4\xcc=a\x94\xb3p\xc6@\xde\xd2o\xf7\xe9\xc0\x989Q\x8c\xbb\xe3\xa5+f\xe9\x0dSH\x85\x1a\xdfN\xa8\xb9\xe6\xbc\xbb\x0dc\x9c6\xf8V\xdd!\x1c\x19B\x9f\x9a\xda\xf8\xe6\x92V\xc7\x05J\xb2Q\xdb\xdb\xb7\x03\xe2E\xc5\xf1*=K\x9aK\xdf\x80\xa6\x1c\xc0[\xccB\xa0?\xa0\xed8\x12\xa6\"\x9d\xa7\xe7J\xdeX\xd5L:\xeejX~o\xa9\xfbu=h\x1e\xb4\xc6\xe3\x93\x84Z\x0f\x8e\x90\x9d\xae\x9ax\xb5ZYY2'P\xf6\xa7\xa9]~l\x97]C\x16\xde\xa7T\xa3\x9f\xf5\x06v<\xabc\xe3\x19\x9d\xe1]\xc3\x19\xed\xea\x1e\x82\xf2\x10\x07\xbe\xad\xd0^\xe2\xf06)g\n%\xc6\x9c\x89^\xcc\xa0c\x84\x16G5\xe7\x02\xfc\xa2\x88\x96h\x931\xeb,\xaa\xe3\x806<\xfd\x1aJ\xf8\xa6w*|\x0d%\xa5\xfcj4\xda\xf2<6\xf5\xa1Pj\x82\xed\xaa&s:\xb4d$\xba]%\xfd\xf6V~\xf1\xe2,\x11l\x0c\xd3\x16b\x04\x02\xeeZr\x92\xd3\x13(9\xc9\xdf\xdaF\xc2B\xe3x\xef\xe3D\x1f\x01S\x1bw\x89\xea\xc4&\xda\xc3\x06\x9aCN\xd8\x81\x9a\xc07PV\xb3\x9b\xe8g\x17\x1a+\\\x9e$\x860\xc6\xdc#\xc9fMr\x7f\x8e\xe7a\xebO,&1\xc6\x9a\x88t\xd3o\x04\xd0\xde\xfe\x18x\xf64\xba$X8\xd1\xcd\xbd\xb3<*+\x88\xd1X\xc1d\x12\xfa\xc1w\xe4B\x1a!\".\xdb\xa0<\xa8\x17\xaa\x9a\xff\x92\x87\x9fh\xa6\xa8\xe27(\xeb\xe66P\x89\xee=^ \x12\xd3B\xe5\xbd\x9c\x84\xe2\xea\xf7\xe5\xbd;\xeao\xb3\xc8\xa8\x8c\xae\xd0\"2\xd5\xb9\xb2\xe2U\x80G>\xee\xb9\xa4\x19\x92Z\x8eD$dB\xce\xe0\xf5EF\x8e\xf2<\xcd]\xe7\x91\x9f$i t\xcf\x80\xcf\x8e\x18\xf0\x0b\xf0\xab\xd6T\x825g\xcbT \xf8\xa014c\x87At\x9a4{\xf9\x8a,HN\x92@t\x956\x08+\xbfH\xfeV\xc2\x9c\x90\x04\xd0\xe5\xd4\x8f\xa3\x82\x840\x81b\x93\x91\xdc\x1d\xb5 \xe8\xb0H\xa8+\xb9\x0f\xf5\xfc\xee\x95h\x97N\x11m\x1d\xd8;\xc4\xcc\x9dt\xf2\x90\xc0V\x13\xd2z\xc2\x98}9\x8e@c\x9e\xdc\xa8\xcd\xba\xf2\xcd\xb1$\xe5K\x81|/\x16nd\xe9\x1e\x0dR\x0c\x1c\x82'\x18\xa5.\x1f\xd2W_\xb1\xc21\xa8\x84V\xa0\xcd1\x9dlz\xe0\xe6\xa4((\xf6\xae7E $*W$\x879a\x1fH\xf3\x06\x1e\x8d\x81\xe2\x99\x037\xaa\x86\x14\xabB\xea\xedX\x9fQ\x8c\x87q\xb1s\xad\xfd\xaaa\x97\xd2\xa4(\xf3\x0d\xe5\xcdL\x96o\xbb\xf8\x8c\x9a2\xea\x8b'\xd0K\xd0\xc2\x996b\x1fX7+\xda*M\xc9'.\x05M\x1cq\x87 \x97\xcfT\xd1\xc2(x\x08\xd2\xfb\x1c7f(\xb9\n\xb4<\x94\x8a)n4\x86\xa62b\x0c)\xbd\xa5-\xd7P\xac\xd2M\x1cV\xef\xbc\xc1l\xa5\x96\x95\x03\xb4\x019\x82\xf5\xc0\xed\xa1\x9d\xd7T\"\xaf\xc2\xb70\xa5s\xd5H\xeeY\xf3 \xd3\xb7\xf0\xb0\xfd\xe7\xacg\x1a\xef^Q+\x01;\xdd\xd7\xaa\x02P\xd0\xa03\xcc\x9f\x81\xa5p}\x910\x1f\x80\x9a$\xbc#\x17\x85\x9b#WNZu(F#\x8flI~Q\xb3\x8b\xdaC\xae\xd1b\xe2E\x05\xf2Ac\xb6y\xb2B\xc9\x0c\x01\xe2\x14\x1e\xfd\xedn\xa2\xb9I\xd1\xcf\x94\x9e\x03\xfd\xeeiW\x12:\xddKO\xa8\x9c\x1c\x9d\x10m\xc7\xe4{\xa0\x8f\xb4\x94S\xef\x18\x06\xbb\xc73\xf1\x9e\xae\xd7\x1b\xdc\xa5\xad$\xc3p\x08\xd1\x18H\x83\x89\x8f4\xbc\x8cNa\x06R\xa5\x19\xb4\x07\xf2\x9e%\x88t\xf7E\xdd\x1d|r\xdd\xb4z\xa14WR\xca\x9f\xdc\xef)\xe9\"\xfe\xa4\xa7\xef\xf3\xf9\x83\x9e\xbeo\xc3\x1f\xf4>U\xf0\x07=}_\xcc\x1f\xf4\xf4}\x81T\xdf\xb7@\xf0\xa0s7\xe3\x1f\xb9\xd7t*\x08\xd5\x8a\xc0\xf0\xe3+\x02\xf5e\x8c\x86(\x02\x15\xc1\xfb=\x97\x0c\xad\"0\x96*\x02\x83J\x11\x18\x8f\xc68\xd7\xfb_\xc3\x02\xbe\x81\xf8kXP\x81%8Y\xb4\x15\x81\x0b;E`a\xab\x08\x8c\xec\x15\x81\x01W\x04.yd\xb2\xff=\xaf\xa9n#\xc7\xf1>\n\xdd_\xcb\xaa\xe0E\xc5\x8b\xef\x8eoa\x01\x87\x93\xdak\xa0p\xc6<\x1e\xc7/\x1cz\xae\x9c8a\x1d1\xe5\xbc\xed\xb5\xf3\x9e\xf7\xeeQ\xc7\x13l@\xff\x1c\xe8\xab\x86\xf0\xb3,\x11\xde\x15h@\x15\x8aN\xce\x8f4\xe7G\xbc\xc0\x93\x1b\xbe\"E\x1aoIx\xbc\x99\x979!\xeeI\xb50\x1d\x85\xaed\x85\\\xbar\xf4\x900\xa5\x17(Z\nU\xdb\xf4\x02\xb1T\xa1\xba\xf9\x04\nU\xbd*\xd5F\xe5\xca\xb2\x1d:\xfaa3<\xcf\xfd\x80\xa0\x8d\x18\xb8#\xb9\xaa=F\xb8,\xa9\x90\x1dE\xb4\xebb\x94$$\x9f\x18z\xa7l\n\x1d&\xad\xdb\xda\x0d\xe1\x9c\x12k' z}\xa4\x99#\xa7\xcc\xb5\x9d\xb1\xcb|\x96\xc6\x98\xf8\xec/w\xef\xde5h\\\x17iR\x1e\xb3o:Q\xe9\xc7Q\xb0C\x9a4\xf5`\xc2\xfa\x90jp\x893GG\x99\x1a/\xa9`^h\xa7(\xdd\xe4\x01\x99\xc1\x91\xbc\xbb\xa3Q\x8d\x80\xe7\x94H\x9f\x8b<\xd0\xe7J\xc3\xb4\x95\x0fw\xc7i\xcf\xa2\x8e\x1b\x0bi2\xd9\xae\xd1=\xe9dj\x80\xa2\xf2\xe4\xa9\x8b\xa7\x8e/\xd8\xf2,'\x81_\xea\x99X\xe0\x02\xe6\nm\xa9^T\xa0I\xf5\x1d~\xe8\x9d\xc7\xad&\x85\x9b\x1b>\x91)\xf3\x1f5\xaf-\xe5\xdc\x03?\xfe.\x8e\x96\xc9\x0c\x9c2\xcd\x0c\xf8I\xaf\x8cr\xff\xc9\xf2\x15\xf7\x9c\xd8\xf7\x0e\xc8\xda\xc03\x1amQ,\x026\xf3(\xfe\xff\x82>\x19p\x08\xce<\x8dC=n\xeaw'\x08\xad\x84&\x0d\x04\xb4I\xca\x86G;Vk\xa5\xde~\xa6=\xa3\xef\x17\xa7\x1c\x99\xee\xfb9\xe7dv'\xcc`K\xa3\xa0A\xa7r\xdd\xb0AIy\x80\x1f<\x7f\xd7s:\xf6sc\xee\xb1\x0c\x81w\xef\xb9\xaa\xcb/\xc7\xddT\x00\x16(\xc7\x03\xbd\xd0V\x99\xc0\x0dp\xf0WN\x7f\x9d\xd2_\xbe\xae'F7\x07!\x0f\x1b-\xf1m\xbf\x00\x83\xd5\xab!\x9b\xf1:\x84\x0d\xcd\x00\x86+\x9a\xdb\xe2\x0e\x02\x81\xa1%\xeeIa\xf0 \xe0Q\xdc\x0b\xb8\xa1\xb3\xa8\x8dd\xd62\xf6\xa46\xa8U\x87\xcc\x99\xf1\xb8\xe7'\xe4\xff\xfc?\xa7\xfdV\xf9\xb1\x0f\xa4\xc4\xea@J\xf9\x81\xa4&\xb2\x18\x8dw>\xe1%b\xbd\"\x8e\x02B{s\xa0,\x08+\xae-/\n\x99\xc2CH\xbd2\xfd\xf1\xb8\xfa\x81S\x9a\xf2 \xb2\x8a\x80\xbc\x0c\x19\x07\xb1\xaf,\x1cU\xac\xc9\x074\x99\xb3{\xf7\xee\xe9i\x07h\xe9\x07\xd8\x1c \x0c\x97\x92K\x92G\x18:\xc6\xc1d\x12l\x86\xda\xf1\xfc\xf3U\xbb\x10\xd4\xbc\xaal\x7f\x1e\xd3\x13\xefX0\x816;\xd5f\xce\x9do\xe0\xef\xf0\xed\xa59]\xc9Q`\"\xd75\xa9\xd6EuZ\xd3\xe9>\x8d\x1e\xaa\x8c\xb5$\xd3\x82D\x1f\xabA\x8c\xe4\x19Is\xb5\xb2\xbf^\xe5z\xa2\x0e\x0c&\xdf\xda\xae\xe8\xaf\x1d\x8am\x88\x197\x91,\x1b\x1f)\xa4W\x9a\xd8\xed+E3\xb0F5\x18\x82n G9T@\xa2\x89\xd2\xdc\x8c\x19\xd5\xa0\x81n\x06\xa7 #\xca\x01(\x92\xad@W\xda\xfc\xe9*\xd1\x11U\xaa\x03\xd0\xf1\xa7/\xe8\xd8\xb8.\x89\x8eL\x9f\xfd\x99\xa3\xe3\xab\xabD\xc7$-\x07 \xa3\x01\xad>\xbf#\x11\x0d\x14Wv\x02\xbe\xba\xec XW\xff\xba\x94 \xa0\xaf\x08\x0e\xe2\xb4\xd0\x94K}\xef\xec\xe0G\x98\x19\xfd\x08\x99\xe1\xee\xba9Pe\xca\xcc\x90\x99\xd4M*\xe2O\xa41\xe4\x99*\x86^z\x971\xa8\xdc\xbc\xac\xdc\xc6\xa0\xf2\xf42\xbbR\x01W\xe1G\x83E\xffd&\xf4\xb7^\x94\x84\xe4\xfc\xc5\xc2\x95\xa4\x12j^\xa6\xd8\xa0%\xcf\xeci\xe1\xfa\x03\xdci\xac\x1c\xe0\xd6\x03\xdcw\xcc&y(p\xe7\xb1\xd2u\xc4\x81h\x02?\x83C\xd8R\xd2~\xb98\x17\xd8\xc5\xbb\x02\xe0\n\"l`wg\x06`\xedo/\x13\xe0d\xd5GK;3\xe8\xe7C\x1b\x9d\x0b\xb5\xeb\x82!\xc4\xaf\xf6L\xf0\xe1\x9bC\xd8\x18\xc8L\xbf\xc2\xd3\x89\xe7yo\xb5#pN\x9c1\xac\x85\xdem\xbd\x9b\xae\x1b:\xfa\xeef\x90\xa9Y\xdf\x0d\xd6:o\xa8\xcc\xb5:\xbd7\x98q\xc1\x18\x97\x05\x95\xe2\xb96\xe2\x98\xfbF\x8f\xd0\x7fX\xaa\xab)\xec\xcf~l\xb4R\nX\xceB\xc9+\x1d\x8aK\x91\xcb\x8a=\xaad\xce\x0c\x1e\xee\x1ej+\x0c\xfb\x1a\x13&m\xa9B\xa9K\xc5\x1b\xb6v\xa3\xa0\xda6C4\x11\x01=\xd4\xfc\x12\xe9\x8c\xc1>\xa51\xb4\xa4\xd8\x80K\xb1V\x078\x0bvN\xb4\x9ex\xd0\x10f\x0d\\\x87\x9dh\x0e\xb5\xe8\xeb\x1bU\x1fcpZ\xf17\xad\xe7\xbd\xbb\x1dy\x14o}\xb6\xb1mr\xc93UI\x9e\x91J\xf2\xf4U\x92\xe7F%y\x16*\xc9S]\xad \xeb\xc5qRy\xd4\xcd\xea0\x9c\xe9\xfe\xe7\"\x80\xde\x9d\xd3\xff]?\x19TR\x14\xa1/\xf4)e\xd0\xf4\x03\xc8\xa0;\xe6\xf8\x87\xeb\"\x83\xdaH\x89\xc9@i5\xddAZ5\xcb\x8a\xfe0Yqc+\xda\x16\x18D\xdb\x0d\x15\xd1{\x03\xb0d\xc4{\xe8\x9f\\E\xa4\x18J\x07\xa0\x06S\x9f\x0d$n\xc4yP\x81\xce\xc2K\x8d\x83/\xd2|\xedk\x95\xb6\xc0\xb7#\x7f\xe1|m\x94\xaa\xb654F\xaa\x1a\xc0\xd7\xd2 \x15\x9f\xfec\xc8\xa7\xb1\x1c\x1c|\x03\\\xa8d\xe1vKR\xd6\x0bG\xf7\xb6\xfeE\x94,\xafL\xf2\xc6\xa9\x19C%\x81\xf3\x95\xb8\x02\x11\x9cw\xf1\xa7\xb4\xdc\xb9\x97\x17\xde\xca/\xcc-\xe9\xe7\xeb\x14\x8fe\x18\x83i.)Y<_\xc7\xe8\xfa\xb7\xfa\x0f\xd9\x13vS\x07;m\x0c\xe3\x84\x83\x81\xf1h\xae\xbd\xf3?\xff\x8f\xfe\xcf\xc1\x14\xe2\xce\x0c\x9c1\x1c\x97y\x94,\xddT\xe7M\xdaL\x94T!\xe8Vw\xe6\x9e\x99&\x83K\xaa[\x03\xa7\xdf\xf2II4=\xbc\x9c\xc2\xcb\\\xfa\xeb:(\xbc\xc6Pz\xe2}I <}\x86\xa7k\x91\xe0I\x14Qj\x8d\xc3&\xd3\x13?\x1e\xfa\xd8\x92T\x8f\x7f\xf6%*\xd9\xb4z\x8c\x87\xc0\x15ef\xe2{\xb2\x97\x0d\xc9*\x05S\xd9\xd9yI3W\x92\x1c\xf9\xa2k\x80|}<\x8be:\xd5\x94?\xe8\xe9T#\xfe\xa0\xa7S\xf5\xf9\x83\x9eNu\xc3\x1f\xf4t\xaa\x05\x7f\xd0B\xf2X\x8d\xe4\xf1\xc7G\xf2\xe0\x8a\xb2\x14\xa5*\x05f\xcf\xbbF\xa6\xc0\xcc\x87+0\x95Y\x8a6R\xc5edR\\~\xb2,Ei\xf2:\xbfH7%\xa6\xdfV\x03'\x1c\xf8\x91\x9f\x04$6\x00\xe7\xcc\xab%\xf1\xe71 \xb5\x01\xfe\x86\xba\xdd\xea\xb3\xb1U\xa8<\xbf\x98\xa4\x1buT\xb7\xb6R\xfb|S\x96\xf6Y\xd1\x9dy\x99\x00o\xef\xf4\x94\xfe\x11\xe0\x84\xd8\x147\x97\x1f\xcb\x94\x0fd\x93\x8aa]\x1f\xaa\x9f6\x1dT\xd4\xfc\x1b\x83\xf3:\xbf\x80\xa8\x84tS\x82\xccdfp\xdd\xd4\x17\xf7\xaeX#V\x12\xaak?i\xe1\xe7\x0c\x9e\xf0\x1d\xd0\xa8\x86\xd6\x01o`\xa8\x19\x9c\xe3\xe8\x0c\xf6jc!&\xc8\xa8\x0f\x95\xebYp\xfc\xcb\xa1\xf2\xe5P\xb9\xbe\x87\xca\xfc\"\xf3\x0bC\x91\x16\xe2E\xc5\xf1\x99\xbf\\\x92\xfc\xc0t\x94\xb0\\?\x1a\x12\x86P~\\\xa4\xc7\xab\xf4L{\xe2\x94\xba\xc3\xa0\x19XP\x8f\xd6\x0bVQ\x1c\xe6$A\xa1\x0e\xcb\xfc\x98?bG\xa6\xb7$/\xa24\x99d\xb9\xbf\\\xfb\xca\x13,\x1d\x7f\x88\xe6NO\xd7\xa4(\xfc%\x01\xc5\xfd\xc9\xc4_\xcf\xa3\xe5&\xdd\xa8\x0b~X\xcd\xa5\x12hu\xab\x0e\x0ey\x83\xb4\x18\xca\x14\x18\xc6\xe2\n@]\xea\x06\x13\xc7\xa8>\x94\x99\xdb\n\xd2\x90\xd4\xad\x15\x0c\xf5X\"V? \xa9\xa4a\xf9j\x9a\x91\xc4\xcf\"\xf6\xea\"\"qXP6 IK\x98\x13\xc8rR\x90\xa4\xc4\x8a\xd4+\x02\x85\xbf&\xc0\xf1\x1c\xd2\x1c^d$\xf9\xee\xe5\xd3\xc6\xb8\xeeY\x8e\xdc9\xdedY\x9a\x97$\x14\x0b*z\xe7\xe7d\xc0\xf8\xf8\xd4\xa0\xf0\xf57\xe7\xc0\xdbw\xfeV\xcdR\xb9J\x0b\x02\xe5\xca/a\xed\x97\xc1j\xc0g\xf9\xb4\xcd\xe0\x96\xb7\xef%l\xf6\xdcE\x9a\x039\xf7\xd7YL\xc6\xbb~k\x1f\xbf5\xf2\x1c\x11\xd3BI\xb0\xc5\x16\xd5\xee\xf3\x0f\xb0\xdf\xae\xdf\xf6^GE\x11%\xcb\xcfgs;\xafWt\x87\xa5\xdb($a\xe3u\x08SR`\xad\xdd\"#A\xb4\xb8\x00\x9f\x1eoQg'X\xef$\xbe#\xa3$\x8c\x02\xbf$\xd5\xd7$\x1b\xb9\xdd\x00|\xd9\x83\x97\x11\x10Z5I\xed\x85\x04q\xf2\xcb<\x0e\xc5\xa6\x96=c|\xca\xe7\xc7\xfd_c\xd5\xe5\xe0\xdc\xf4l\x97\x0c\xd48\xae\xfd8\xae0Q \x96\xe5\xf2\x9cm\x12\x9a\xd9u\xb7\x03\x07\x13\xb6\xe3\x7f\xafY\x92v\x8a\xa0\x8f \xc9\x9eE\xc9\xbb\xcf]\xbd\xdd\x18\x87\x0d\xb2pq]\xa9\xde\x96F/1\xe1\xa0$\xe7\xe50$\xf3\x8d\xb8\x93\xa4\xa8\xe1\x96\x88V\xb5N\x05\x1e\x1a<5\xa11\xd9^\x96\x93-I\xca\xc7\xacG\xae\x84\x92*\xf3\x9b\xae\xb0\xa2[\x89\x15\xddn\xb2\xf4N\x0c\xb4\x8b\xd9&=>\xdbT\xe9g\xa9n\x1f\xe3j\xf7\x1d\x89)\xb6\xb9\xb8+F\xacLk\x0b\xa1s=B\xe7\xed\x19\x94O\x86R\x8a\xe6k\x1b\xd9\xb0RJ UU\xc1\xf3u\x9c\x143pVe\x99\xcdn\xde<;;\xf3\xcenyi\xbe\xbcy\xb0\xbf\xbf\x7f\x13_\x93\xbf\xf4\xcf8J\xdeI\xdf\x9c>x\xf0\xe0&\x16 \x94\xbc\xabM\xf0\x93\xa5\x05rc3p\xfcy\x91\xc6\x1be\xf9{^\x05QQ\xbcF\x94?\xdc\xef\xa3\x7f\x17\x99\xd5\xd3J\x16\x85\xc5\xbc^\xac\xe7i,\x9d\xdamD\xce\xbeO\xcfg\xe0\xec\xc3>\x1c\xd0\xff\x93\x0c\x06\x0bNm\x928\x0d\xdeu\xd3\xd3\xe9z\x97\xb1<\xe0\x12\xa4\x9b\x81\xf3|z\xc7\xbb\x0f\xf7\x7f\x98\xde\xfe\xf9\x8ew\xf7\xd1\xf46\x1cx\xf7\xf6o\xc1\xf4\xc0\xbb{\xf7\x0eLa\xba\x0fS\xb8\xe7\xdd\xbau\x1b\xa6p\x97?\xbd\x0bw\xbc\xbb?\xdf]\x1dl'\xde\xfd\xfd\xe9\xa3\xfbp\xcb\xbbw\xe76\xdc\xf7\xee=\xb8\x07\xb7\xe8K\xb7\x82\xa9w\xb0\x7f\x8b\x0e\x07\xf0\xd9\x01\x1cx\xd3\x07\x0f~\xbe\xff\xc3\xed`\xe2\xdd\xb9s\x0b\xf6'S\xf0\xee\xde\xbe;\x99\xc2\x14\x1fM\xef\x05\xfb\xe0\xdd\xb9\xfd\xc0\xbb}p\x9f\xde\xbb\xf5\xc0{p\x87>\xbd\xb5\x7f/\xa60\xf7\xbc[\xf7\xef=\xba\xe3\xdd\xbdw\x00\xd3\xfb\xde\xfd\xbbS\xb8\xeb\xdd\xb9\x03\xd3\x07p\xcf\x9b\xc2\xf4\xc1\xea\x8ew?\xa0\x9f\x80}\x98\xd2\xcfL\xe8W`J\xbf3\xa9>swB\xbf\x13xw\x0enO\xbc\xe9\xdd{\xde\x83;\xb7&\xde\xbd;\xec\x07m\xee\xee\xcf\x0fh\x97\x1eM\xef\xc1}\xdaG\x98\xde\xf5n\xdd9\x80\xfb\xc0&\xec\xdf\x9d\xf9\x1f\x8d>\xf8\xca_\x9bu\xff\x93\xac\xe0\xf3\xe9\x01\xdc\xff\xe1\xfe\xcfw\x10l\x10\n\x7f\x82\xd5\x97\xe4\xb9\xb8\xc4\xe2\xdf\xf6n\xdd\xbe\x0f\xd3\xdb\xde\xfd\xdb\x0f\x82\x89w\xfb\xee\x03\xfa\xff\x93\xa9wp ~\xdd}p\x0f\xf6\x9fQ4\x98z\xf7\xa7\x0f\xe2\xc9\x81w\xf7\xce\x94\n`\x07\xdaW\xf0Q\xe3\x1f\x04\xa0\x98B\x1f\xc7\x07\xde\xbd;\xf7'\xb7\xbc\xe9\x9d \xfd\xf9\x00\x7f\x1e\x04\xb2\x97\xee\x8b\x97\xaa\xdb\x80\xb7\xc5\xcf\xaa\x83\xf7\xbd\xe9\xfd[1vor\xcb\xdb\xbf5\x0dto\x80\xe8z\xf5\x9ca\x1a\xed\x1d\xf6\x89b\xc2\xf4\x0e]k\xf1;P\xbe\xf2)0AY,\xf7\x12\xf8p\xcb;\xb8\x03\xd3\xfdgw\xbd\xe9\xfe\x038\xf0\xee\xdc\x0f&\xde\xc1\xdd\xfb\x13\xef\xe0\x1e\xffqo\x1f\x17\xf7\xc1\xbd\x07\xe2\x81wo\x7f\x8a\xff}p\xf7\x01\xec\xc7\xf7\xbc\xfb\xb7\xe0\x9e\xf7`\xff~@!\xbc\x83{S\xfc\xef\xbd}:[\xf4\xc5x\xd2\x80\x99\x08 \xfa\xe9)\xb6\x83\xdf\x11\xed\xd2\x15\xec4\xfcL\xf4\xf3\xd3\xce\xfa\xa4\x1fyy\x89\xa9\xbf\xe7\xdd\x9e\xde\x07\x9c\xf8\xc0;\xb8w0\x11\x93\xc6~<\xb8\xf7\x00\xf6\x0b\x9c\xcc{\xfbS\x9c\xc8\xbb8\x91\x0f\xf6\xef\x03\x9d\xce\x00\x97@\xcc\x14\xfb\x81/q\xa0I\x05\xd4XQ\xfc\x14N8[\x81~\x93\xb8\xf3\xe9t\xc7\xd8\xc1\xc9=oz{\xfa\x81\xe6\xfd6\x1c\xdcV\xcd;/\xcbqe\xd3\xfd\x00\xeemo\xffp\xc7\xbb\x7f+\xbe\xe5!)\xba\xf3\xe0\xd9}\xb8\x1bO\xee\x02\xfb\xdf\xd4\xbb=\x9d\xd0\x7f\x9eQ(\x98\xde\xfa\xe1`\xfa\xf3\xbdO0t\x16\xf1~e#\xdf\x87\xe9\xfd\xd5\xed\xed\xe4`5\xb9\xbd=\xf8\xf7\xf3[pw{\xb0\x9a\xde\xff\xf9\xee\x0f\xb7\xfe\xbd\xbe\x05\xf7V\xd3\x83\xed\xe4\xe0\x87\xbb\xdb\xff\x8f\xbdw[r\xe4F\x16\x04\xdf\xfb+\x90l\x9d*\xb2x\xc9d\xd6E\x123\xb3\xb2\xd5j\xe9\xb4\xd6T\xdd2\xa9\xfa\xcc\xce\x90\xacj0\x08\x92\xa1\x8c\x9b\x10\x08ff 5\xd6\x0fk\xfb\x03\xbb\x0f;f\xbb/\xfb0k\xf3\xb2f\xfb\x0b\xf3)\xfd%kp\x07\x107D0\x98U\xea\xd3\xe7LS\xb2\xca\x08\x04.\x0e\xc0\xe1\xeep8\xdc\xcf\xeb\x9d\x1d|\x1c\xc5\x84Q\x18D\xfd\xf3O\x07\x13\x9a\xa6\xfe6\xaa\x9f+G\xfd\xe9\xd9Y\xd5\xa6\xd47\x1f\x9e9\xce\x95\xd5\x87\xe9s\xc7\xb9\xb2\xfa\xf0\xb4\xbaCK\xf1\xc3\xf3j\x13\x81\xf3F\xa5\xdd\x9b\xa9\xba\x9e}\xee0u\xdddA\x80\x9f\x9f\xbb\x82\xedxq\x18\xc6QH\xf9\x8d\xce4\xad\x1c\xc5\xba\xd4$\x9ekP\xd5\x0f\xce\x10R\xee\x91+\xf5\x19\xdeX\x04\xd1\xbb\xf5[\x0c\xd7\x95\xd0}\x8b~\xd6_D|\xc3\xe0\xc3|\xa9S\xfc(\xf0#\xf6*^3rEN\xa6\xa5T<\x0d\x85G\x9d\xbeR\"(\x1e\xba\xaa'\x9d\x8aJv\x86\xa7\xa7\xe6\xc5\xb4x\x9f\xc4[N\x93\x9d\xfe\\x/\xa0S\xbd\xf7\x1b\xe7-\xa9^\n\xe6y=rrE\xc4}\xc2\xe2\x0d\xea\x8c\xfa\xa0\xb1\x19\xc1\xc1qOOWoP\xedL\xc4nIV\xe9\x89J\xa3:\xcd\x8b\xb9\xc9\xe6\xd7\xbb\xa6\x92c\x93\x9c\x056-\xad\x8d\xba\xbd\x1e\xef\xc1\xd5\xc9\x8c\xb3~0gK\x03O\xcaD\x1f\xae\x1e\xfe\xfc\xbe\xba\xa4`\x08r\xf3\x11\x95\xb5UY\xc5\xfb\xc5\xa6G\x84\x15*\x1c\x95j\xb2\xa0tR~\xa9Z\xcb\xfa+\xb80\xc9\x06D\xecx|\x0b\xfd\xfe\x8a\xf3\x98\xf7{\xff\x81\xc7\xd1\x96\xfc\x993\x85\xdet\x15\xb0?\xe3\xa1\xa4\x18\x11o\xc7\xbc\x1b\xb8\x9c\x7f\xea\xa1\x13\x8e\xea\xbd0\x8b\x9f\x18\xabF\x8d\x8cM\x1a\x8c\x88\x02[\xab\xe7!\x87V\xe4\xdc\xb0\xfb\xb4_\xfc6\x98lb\xfe\x15\xf5v\xb9-{m\xd5`sy\x99y\xb4\x84i\xc4\xa6\xcd\x1b\xd7Z\xbf\xbe3+\xc4\xd2\xaa\x10\xc6\xa6\x01W\xd4\xef\x8a\xb4\xde\xf93\x8a\xb8\x82\xc1\x87zj\xaa1\xa1\xfcp\x9dj\x06#\x8d\x99\x9e\xae\x18\xf29\xd5\x91\x16\xedU3\x1eK\xd3~4\x18\x91H\xd3\x89&@\xf4\xa1Z\xb7\xde\x01:!\xb6W\xd6\x94~@\x14\x86\xcea=\xe5\xf5\xa4RZG\xe4\x1b\xb3\xbc?\xe2\xb8D\x15\xbax6\xfa\xa0\xa1\xea\x06\xe2\x03\x06\x0c+\xee2l\xe0\xf7+\xe6B\xd1\xa7M\xe1u\x92 ?H\x0dC\xfe\x15\xf9(|\xbd\x81\xa1?u\x1e\x07\xf85%\xa6%\xb1)D\xfeE!\x01\x9c\x8e\xc4\xa6\x97[&~\xcb\x19U\x14<\xb6/\x0ebZ\xec\xb6\xaf$\xa7nS\xe3\xe0\xba\x9b\x98\x93\xbe\xe9e\x0e\xe1Hk\xfc\x03\x16m\xc5n\x04B\xca\xd9\x08D\x92^\xef\x82\xc4\xe3\xf1\xc5\x80P2\xbc\"|\xce\xe6\xfeR1@\xb6T\x8d\xf8\xc3!\xb6\x84]r#\"-\xcea\x1d\xfa\x8f\x0b\xf7x\x9a\x03>\x1c\xfa\xe4\x92\xc4\x17\x03\xd2\xc3\xa5\x80\x8e\xf3m\x17\xc85\xf6\xaa\x80\xa0\x06\x19U\x16s\x0ej`\x9a5\x8c\xc1Q#\xf0\x91\xb0s\xb2\xa3\xa9\x0bC\xd5\xa7,b\xa9G\x13\xf6j\xed\x92=U\x0e\xce\x92\x80z\xec\xabH\xf8\xc2g\xa9K\x12U\xd9\xb0\x9a\xdf\x8b0\xa8\x8b\xa4?\x17\xb4\xfa\x19J\"?e\xb1`o!\xa6\xd5a\xed~\xef2/\xf3rQ\xd8\x88\xbe\x1f\x95\xeb\x03\x95QG\xb2\xd3\xbb<-\xd4\xda#C\x92b\xf6r\xed\x1eR\xc4.5\xb2\xb9Xj9\xeb\x9a\xf4.\x13\xce^^\xaa\xe2P9\xed\xc3g-\x17\xc0u\xe6\xcbS\xf8zy\xaar\x16\x00 3\xd2\xebR\xb02\x0e\x1b\x16y\xae\x85=R2`\xe0\xe2\x0f\xdeH\x91F\x08\x1d;\x17\x8ekjkX\x1b\x8e\xc305\xeb\x93\x80F\xdb\xef8\xdb\xf8wu\xc9)Q\xe4\x9a\x86\xa9K(Q\xdf\xc1\xc9\x0c\xf8\x9f\xd1\x19'i\x12\xf8\xa2\x7f\xbaH\x87\xa7\xdb\xc1@\x87\xf2\x86H\xde\xbc\x1f\xe0\x12\xc6\x1e\xbe\xf5\xb2T\xc4\xe1\x88x\xf3\xb3\xe5\xc0\xfa\xb1p\xe5\x99\xab,\xcb\xca8\xd4\xed\x17U7\x1f\xe3\xd1\xe3U\xef1\x19\x92\x1d\x0c\xbb\xdf\x8f\xfb\x9b\xc1@\x8d\xf8\xe3\xde\xe3R)\xa7)ia\xc6\xd5\xbc\xad\xd5L\xc1\x0c\xf6\xa3\xc9\xce\xdf\xee\x02\x88p\xf4\xe8\x11)\xbcj\xc3\xd5B\xca\x88\xcc\x133\xd90\xeb\x1e\x15}o\x80n)\xfa\xf6\xd3\xa0\x15\x83\x1c\x88\xa1\x87DK\xeb\xd9d\xc7\xe8\xda\x8f\xb6\xb5%\xd8\xbabv\xaa\x0d@\xc7\xdd\xb7l\xcf\x02\xecb\xb95S\xf1\x91k\xd1Yum\xad\xef\xbap\x00c\xda\x1bM\xeev\"\x0c\xfe\x98\xc1\xb1\xed\xe5\x8e\x93\xd3\x97=X\\;\xfe\x12<\n8\x87k\x95\x05\x01\x13o\x03?\x15\xdd T\x168\x08S\xa1\xa2#G#\x0b\x9a\xa7\x13\xea\xf3\x05\x0b\xbbC\x17\xf8\xd5Y\xca+\xa9A\xd6\x0cU\xe0\xd7;\x19s%\xaa\xad\xdd\xc3\xd5&\x98\xaa\xb9v2\xc0\xdee\x1c\xe8e\x03\x95\x93\x97dJ\xae\xc9c\x92\n\xca\x05\xaeP\xf3 \x96&FTu#L \xbc#'!n\x99\x04E\xb5`[\xdf\xa9\xcfE\x06!\x80\x0c\\\x93\x1e\xa2bR\x9d\x99\xbc\xe6N\xe0\x9a\xe1<\xe9\x17jW;\xe659\x07\xe1\xf1%\x05\x1b\x10\x03\x07R*\xce6\x06\x06\x0c\xf3\x15\xbb(\"\x8c\xc1\x11\xcb\x8cV+\xf0C\xba\xed\"\xb2\x9b\x01|LR\xee\x95 M\xb9\xa7\x01\xad\x8fS\xf6\xd0!oX\xbd~\xb85Q\xcf\xfa\x8f \x0d\xf4hc-4P\xf3\x80\xcc\xd5$\xa0]1.\xe1\xc7\xbd\xc7\xeaO\x86\xeb\xbfH\xbf\xc9i\xaf\xb0\xd0+#\x04\x11D\xbb\xd3C\xc8^'\x16X\xcb\x113\xd5T\x8f\xe2\x81G@\xa3\xb27\xd5r\x0c4\x0d\xf5\xac\xe2\xf5\xfd\x11\xd0\xa8\xecM\xb5\x1c\x03MC=\xfc\x08Pxm\x9e\xf9Q p\xd7\xa8v\xa2\xd8\x1d\xb8\x94\xd8i.E\x03\x7f\x1bi\x0eu\xaf\xd6\x8d`wb\x0c\xa93\xa43\x98\xa3\xca\xac\xea\x90\x1d\xd3\xb7]\xad|\x1d\xe5\x1e\xda\xb3\xf5G\xee\xd9qh\xbc\xae\x96O\x05\x8f\x1d\xa2jc\x15\x98\xbf\xa1\x96# q\xd7s\x8c\xe0\xc5BG\xe9# \xa8\x97_\xb3\xa0{\xf3k\x16\xb8\xca\x1f\x01\x80\xa3\x06?J\xbbC\xe0G\xa9\xab\xfc\x11\x108j\x08)\xaf\x0b\x15\x8d5\xa8\xdc\xce\x1a\x8e\x00\xc2UG\x9a\xad\x0e\xad\xb5\x1c#\xb3U\xf3f\x1e>V\xebN\x8e\xa8;i\xab\xbb&`\xee(_\xaf\xb4.\xf1\x90D\xa1\x1b\xa9\xec\xa4Vj'\xb5\x88P\x12\\9\x88l\x1ao\xc4\xd1M@\x81\x94\\whM=\xd6);\xbb\x13\x1d\x07\xad2T\x95\xf1\x11a`N\xcb\xbaTV\xac\xaa^\x93\xa0\xdb\x0f\xae\x87\xaeVu\xae\xd9R\xd3\xe3KU\xe2\xa0\x14\xf7\xf2\xb1\xa3\x99#\x16\x85\xca_SB\xc5\xb1\x88b\xc1\xder\xb69\x04\xad\xe1D\x7f\xc8\xc2\x15\xe3\x08\x9f\xbf&C2\x1dLD\xac\x1d\x938N\x97\x95\x88\xdb\xdbD\x9cm\xc0\x10\xdb\xc9\xc4P\xea\xcdV\xdf\xac\xc9Kr\x06G\xa6\x9c\x0c\xafHof\xf5\x0c\xf0u0\"\x8f\xd5\n2\xea\x1f\x03\xffX\xd5\xfe\xd2\n\xfd\xbf\xdeD\x8fuL\xdf\xc7=\xe2\xaf\xaf\xac\xc4\xff\xb8\xf7rn>\xf5\x96Jxw.:;.\x80Y]wD\xba3eI\xf8\xf1\xe5\x8eW\xc1M\xc7)Kz\xb0N\x14\x1fn\xce\xa22\xc0\xec_\xa6\x0c\x9a\xaeeSY.\xe3\xa0^\\m\xa1\xa1|k\xcf\x8e\xc0\x9f8PM\x9dj@\xeaT\xc4\xd6|\x14\xea\x07>\xcc\x0fNX;j\xe1l\xd6\xa6\xde\x17,\xac-\x0e\x0b\xcc\x11\x1dt\xe9Kl=4\xf2v\xf1\xc1CE\xb3Fr|o\xefR\xd7\xc5\x105-\x06\x92\xe3|\x01\xe3\xabC\xb4\xa2\xde\x0d\xac\x90\xbf\xfe\xaf\xffM\xe1|e\xb0\xd6\xc7\xc8(\x0e\xcd\xd9\xfa\x08\xcd\xdbZ\xd4D\x9c#\xf6^\xeb\x9a\xb0\xb9>N>rC\x7fL\x0d\xc2Q\xc3Q\x02\xf3\xba\xb2\xe9+\x1f\x03\xa5\xe4\x8ad\xc5\xf3\xc3.\xcb\xa8_\xe4\xa4\x84\xf5]\xc4\xa9\x90}8\x8c\xc8\xcb+\"\xf4\xe9\x1a\x19\x93s\xc5\xc7\x15\x9b.+\xcaP\x13\x05\xd6\x07F\x0b\x85/FmU\xd2X\x89\xb9B\xbf\x82\xc6\xea\xac\x9c\xac\x99\xa5iU\x15\xafh\xcf\x8a\xf5\x9c\x97\xda\xd4 Z\xab\x85=Tip\xc5\xb9\xd4\xcf\xf78P\x03ri\x8f\x0f\xa1\xa9\x8a\n\xd5*\xd9\xecya\xaf.\xa7\xe4SS<\xa8\xcd \xf5\x03\x0f\xfa\xea\xc6]1\xb9\"\xf3\xda\x94\xcd{@\xa8{\xe8\xdb\xff\xec\xf9\xc0q\xf03\xef)\xden\xb2\xbcpg\xe1l\xc38\x8b<\x08\x13\x0f\x19?ug\xd4S\xaa3}\xe6\xced\xe9\xa2\xa0~`\xf2~\xde\x0c\xdc\xb9\xce3=k\x82\x0e\x8e-C\x16 \x03\xdft\xea\xce\x9a\x86\x94\x0b8\x06\xb49\xcf\xdd9\x03?\xba\xf17\xf7&\xd7\xd3\xc1\xb2\x94iy\xc4q\xbf\xc3z\xaahd\xc5\xcb\x84\xdc\x1ej+\x92pvA\x18\xb9$\xb1F\xc6\x0b\xc2\x86\xc3A\xa1\n\x8c$\x12\xcf\xd9r~\xb6\x1c\x11x\x98.]\xa6W\xc5\x03vm\xe5Q\"\x10.n\x84Gi.\xf8\x04\x9a\x02D\xe66X\x01\xa2-\x13\xdfg\x01K\xfb\xbd\xde``\xe1\x16\xe4\x92D\x17D(\xf0\xf9\\,\xfb\xac\xd1\x84\xe3\x03n\xc3\x95,A\x1a\xbb\xc6\x8a\x160\xd7\x84i;\x17\x1c\xcb:\xe1SC6\xb3\xd4\xcae\x01\xa9\x830\xb1I\xca=s\x88\xde?]D\xa7[\xbc\xf6:\x11\xdc\x0f]\xe2m\xc0\xf6,p\xde\xdeRm\xa532?\x1b\x91\xa9\x03?\xf3\xbb\xd8\xf32^\x82CWm\xc2h\x0c\x8f\x14X\xa3\xa2\xbd$\x9b\xb0h?\xb2\x1d\xff\xd8\xc6\xafO\xab\xb6\xaa\xdaJ\xe6y\x93\x91\x0c3\xa7\xb6\xbe\x0b\x0b)\x9c\xe6\xa6#\x12\x8c\xe0\x18\xbb~\x04\xfd\xec\x9c\x9c(\x82<\xf1v\x94\x7f\x19\xaf\xd9\x17\xa2\x7f\x96\x9f\x17\x8f\xa7\xf5\"\x9fO\xebE\xa6\xedE\xb4G}f\x1d\xe4\xf7\x96\xb3^{\x11j\x96x\xa1\x8b#2_\x0eF\xa4\x9f\xc1\xd5b:\"S\xe07gDJ\xf2\xfc\xb3:T\x19\xc8}\x8d\xcd\xc0r\x0c\xc8\x15\xa1\x93$N_\xd1\xbb\x11\x8a\x01\x8a\xc1]\x90\x94\\\x92@\xb1\xb0\xe9\x19\xd4L\x01E\x0b\xb5\xa7\x83\x0b\x92\x0e\x87naR\x873\x0c|\x8f\xf5\xcfG$\x1b\x8c4[\x86C}\xf3\x05\x9a\x1a\x91\xd4\xa0\xb9Y\xf4\xe4\x9a\x8c\xa7dF\xfa>l7\xd9\xde\xa7H\x07\xa5\xac\xa7)\xda8\x18\xe9;\xd8\xd0F%\xc7\x1c%Xo 2m\xe3\xc7+\xb2\x19(X\x1c\x14\xb0\x1bq(\xd0=\xf0'\x82Q=p\xa1\xb8\xccF\x0b\xb4\xa4~\xc9\xd8\xd2\xca)\xd2J\x9aKM\xd3\x12M\xac\x954\x0d8\x85*Z=\xde+\x89R\xd4\xca%\x8dR\x92\xaa\xc0J[.a\xcf\xfc\xa0\x03jY\xd3\x82\xc6\xe2\x82\xf0\x82pt\xd2\xef\xab\xf5\xed\xf7\xf9\xa8`R]\xa56\x88\xe3\x83\x8b\x01\x10 \xaeQ'68S\xb7\xd40\xbfb\xc3\xaa\xe4(o\\\xe1Q>\x14 \xde\xa1=c\xde=\x9bx\xc8[\xef/N\xf9\\6W\xcf\xa6U{B\xaa\xd3\xab\x86\xf8h\xed\xff\xec\xfc\xccIA\xd3\x9c\xbc\xd4\xccp\x14t\x9apB\xe4\x80\xf5\x88\xecFd?\"\xe1\x88l\xbb\xd1\xc5\x03\xa4\xf4\x01t1\xa8\xd3\xc5\xd4\xd0E\x0f\xe8b0\"g\xedt\xd1\xeb@\x17\x13rE\x02K\x17\x15\xd1\xf2\x90.n\xc8%\xc6p\xe8?=G\x8a\xb6\x86\xac\x15\xea\xb8Ac\x9c)R\xa4\xf5\xe0\x82lj\xb4\x12\xc8\x80\xaf\x00\xde\x1c\x80f\x0fM(\xc1R\xc7m\x1ca\xfc)\x03\xa4\x82px\xa5(\xc3G\x04\x0fZ\xb6\xf5\xed`\x1c7\xea\x91\"\xc8\xe4\x9a\xf4\xc3:`\x16(%O@\x86^\x0fSw\x83\x02|\x1a<\x07d\x17\x03\x05\x8c\x93\xad\xd8\xd2\x9a)9J[\xde\xb1U\xbc\xacoX\xcdtD\xbcA\x99M\xa4\x93|s2\xdf\"w\xa8\xa6\xb9.\xbe\xe8\xb8\x9c\xa1\xc3\xe4\x0d\xfc?\xecK\xe9\x8a7m>\x1eS\xf1[\x99\n\x10\xccB\x17\xb4\xc7\x8eR\x92\xb6\xa1>\x92\xff\xf8\xc7\xf3\x9f\"g\xf1\x1b8K\xce\x99\xfc\x1agr\xf2\x1f\xffh\xfe\xe3\x1f\xe2?\xe9/\xc4\x7f\xfcv\xfe\xe3\xbb\xf8\x8f\xff7\xe5?\x0fA\xc1F\xfc\x83\x01\x8fpw\x07n>\xec\x0e.\"\x97\x84_\x90H\xed\xe0JX\x01\x08\x16\xcf\xa3\xe5\xc0\xce\xba\x99\x07\xbd\x03\x11f\x00]\xbb\x10\x91{\x8b\xfb\xd7\x1a\x0d\x90\xcaK\xdb\x0c\x18\x80\xfar\xc2{d\xb5\xf4\xa4b\xf8LJ\x0b\xd9\xaa\xd5\x816\xb1\xfc\xa2\x9a\xddx\xd6B}\xb5\xe8\xdfz\xc5c\x17\xa4\x06\x85\xf5\xc7\x8cB\n$t\x85\x8b\xe6F\x1cF2\x0f\xe8\x8a\x05#r2\x053\x1cGUE\xfdV\xb9\xae\xe9\x88$Z\xce\x0e\x14IMM5}`'z\xfb\xcc\x06#r\xb2\xa9^$\xd2\x93\x9d\x0f\x05\x18%\x0e\\\xdd\x04\x04\xa4\x96\xe4\x95K\x8c\x0en\xd6I\xbeaw\x9c\xc348Q\xd1\xdbpo8\xac}\x06/Q\xb9\xb2\x83:\x15\x1an0\xa0']\xe0%\x0e\x98[\xa0%\xfa\nmK\x90\xc3\x96\x0e\x11\xdd)\xdc% *^\x93>lG\xe7\xcbAG8+\xb4\xbf\x19\x12\x81\x0eh\xda\x82\xcdv\x006\xeb\x08V\xa3\x8e\xc6\xfc\xac\xae\xc6eEh~\x06\xa0\x96j\xac\xfa\xa50\x8c\x1f\x0c}\x95U~\x8cQ\x1d\x8f\xbd\x06\xb8\xe0\xe2\x8a\x82\x1eh\x02\xd0&\x886\xab\xd7x\xfei9\xc8\x97]\x91ji\x83\xf5l\x80\xf2\x8c\x9b\xd3\x9b\xdcs[,\x97@\xac\xf6<_$q\xd2\xcf\x03\xbe\xc4\xf9\xbe3\x8b\x04\x9cg]\x17\x13fJ\xac\xe1\xa8%\xe5p\xa3\x87p\xb5\x1c\x1f\xba\xe6\xf0\x98\xee\xe1\xab\x0e\x0e\xd6Z\xc3|\x1b\xccj\x98\x12\xb7\x14\xe2#G-\xf6\xc9\x1ft\xa3\x84\xc4\xd1\xcbC\xb8u\x10q\xea4\xb2\x96\xd2\x0567\x95n\x83\xae\x05\xb2\nT\x1f$W\xd9d\xbb\xbf\xe6\xcd^\xfdruo\x7f>\xee\x0f\x16\xf3\xc5\xf2\xe7\xf7\xc3\xeb'\x93O\x16o\xe4h\xf6\xeb\xcb\x93\xc5b9\x00E\xf0b\xf1\xc9\xb4\xf71\xf6\x10\x0ey\xa5\xb8\xbb\xef\xb0\xb7()\xcf\x1a\xb6\x0dy\xce\xef\xd9\xf6\xab\xbb\x04\xc4]\xb8&\xd4\x7f#\xe7=\x08\xd2\xb8\x88\xfa\x83\xf9\xf2\xf1\xa27\x19\x9d\\\x8f{\xfafO\xaf\x87\xc1\xb7\xb8\xb9\xdb\x83\xa6\x82\xcbA_\x95*_t\xaeC\xd31n\x97\x9d\x804[\xa5\x82\xf7\xa7\x0e\xbc\x1cL\xd2\x98w\x0cN\xaa\xeb+\x9ck\x9a\x13@W\xbd\xa5\xeeI\xec\xdf\xa0\xff\xc9\x03\xc7\xa5g\xe4\xa3\xc2h\xa3\x82\x04_\xfa\xeb\x11\xe9m{j\xe7\xbb\xb1\x92Q\x9e\x17E\x933$\x98\xbb\x92\xc0\x1e\xa3\xc0\xee\xa6+\xd5\xed\xdd\xce\x9c\xd5\xba\xf3\x93\xe2\x86\xb2\xafH>\x14\xb0\xd2{eo\xf9\x12\xe8\xb2\x18\x8f\x9bk#\x06\n\xc1\xee\x84\xdeLP\xbd\xd9\x1b\x1c\xdc\x1b\x9a\x9f\xd5\x80\x9f\x8d@OF\xf3\xdd\xc6f\x12\xd0T|\x13\xad\xd9\x1d~\xf7\xb4\x0c\xb7g\x81\x11\x8d/@|\xdfL\xd8\x1d\xf3\xfa\x19\xe8-\n\xa5^\xa2\xfa\xfc \x95-\xfe4e\x83N5\xd3\xd9\xe2\xcf\x8a%\x99\xde\x98\x06#\x92\xa0>\x8d\x0cI2\x9f.\xf5\xe0v\x08EG\x0e\xf1\x99\xe2\xef=\xb8q>\xbeo\xd6L\xadc\x07\xb5\xb6\xc5\xb1\xde\xb5\xb8\x91\xcc\xcf\x97\x1d\xa2\xe7\x91\xc3\xf2b\xf1\xf7\xd0\xee=d\xeaT\x0f\xba\x15\xf9\xdb\xcc\xce!>_\xfc\x1d\xe0\xf9\xc5\x9f\x82)\x80\x05\x93/\x921I\xe6O\x0d\x8a6\xabR\xcc/-ho\xfa\x01\xb9$Y!\xe1!\xfd}\xc8t\xd9\x95\xf6K,\xa9\x12aT\x04\x0d(\x8d\x91\x98}\xdd\xf4\xd9\x08\\\x1b\xa4#bR\x04\xea\xb4\xdb)\xe6\x07 7&\xd5\x1cZ\x9c.\x86c\xb9\x98,&rq\x8d\xff\xc9\x93\x93\x93\x139\x1a\xc9\xf1\xf8\xb4~\x98q\xba\xe8\xf7=)B\xc9e2X\x0cN\xb7~\xfd`\xa3>w\xde\x8c\xf4\xfe\xfb\x7fsL\x11W\x1f\xfe_\xc7\x87D}\xf8\x7f\x1c\x1fD8#\xbd\xbf\xfe/\xffw\xaf\xf4\xa5\xc1\xda\xa6\x8b4\x95\xcbQ.iIk\xab\x8a\xbe}\x1a\xe4\xa5\xd2\xde\xa8\xc8\nS\xcd\n\xd3&VXc\xc4v\xd3\x94v\xe7\xc7\x19)\x97;\xcc\x96I\x91\xed*,\xcd,\xdb\x85\x95 gQ9/U\xafx\xd0<\xc8Oz\xfa=<\xa3\xb9&\x01\x99\x91\xc0J\xc3\xf1\xa8\xdd\xf6\xac\xfa\xd3\xd2\x97?\x17\x13\x11\x7f\x1b\xdf2\xfe%MY\xbfbtS\xfc\xa9e\xc6'\x82\xa5\xa2O\x07\x16^Z0\xbf\x18\x8eA\xec\xfe\xef\xff_oPH\x9d\xfc|>z\x0f\x1f\xfe\xfa\x97\xffZ\xfc\xd2\x9f_\x9f,\x07\x7f\xfd\xcb\x7f\x85\x8f\x9fL'\x93\xfa\xd7\x9f\x9f\xe9\xb2\x9fL\xd5\x7f\xc5\x0c#[\xef\xa8T\xee\x8d\x9c\xbf\x19/\x07\xe3\xf1\xb8\xaf\x1e\xe4'\x83\xd3m\x085\xfc\xf5/\xff\xfb'\xe7\x95\xbc\x8bt0\x1e\xf7\x17i)\xdb\xffV\xcb6\x7f3^\xa4\xaa\xd2>>\xd5\xb3\x83\xff\x96\\mM?\x8an\xd5\x12\x8d\xf9\xe3\xde\xd2E\x1c }[\xa7\x08\xa7\xf3\xf1\"\xc5\xdd\xd1\xf2\xd4\xb5\xc3\xa2m\x16\x8a'}a\x0e\x02\x01\x7f\x8d`\x0e\xd3~\xe2#\x120\x85\xbc\x85N\xd6\xdb\xc8\x0e\x98^\xdb\xad\x04\xd0em\x10k\x13\x914WF\x91<\x80\xde\xf8\xceM\x9b=\x92\x1d\x91\xfb\x11Y\x8d\xc8\xdb\x11\xb9\xfd0\x82t\xab5\xbf\xab&\xc2\xb4\xd2\xc4`u.\xc5\x9a\xccFaK\xaer\x88a\xe8\xb60tx\xfct;\xdf\xea\x9c\xe4\xf2\x8al\x06\x17d;\x1e\xb7\x9c(\x99_a\x0c\xb6\n\xb9P\xae\xd2\x9b\x14\xd8_\xd9\x15<\xe8,[\xb1\x19v\xe1\x82(\xc1\xca\x03\xc2\x18\x97vAz\xe3\x13\xe3\x86\xc7\x1f\x0c.\xda\x87\xd9\xfc\xc0\xd7\x07\xb9\"'\xb4\xafPX\xefN\xc6d\xaa\x05\xc2\xd4\xeeW\xa6#rO\xaeH\xef1NL\n\xa6\x89\xa0:\xc0\xb2\x01\x1e[']\xe6\xc3\xfcT\xeb{U\xc3zDB\xf57\xe9\x06\xb5\xf9\xc1\xa0\xb4\xcdc_\xcd\x83\x9a\xcaQeJ\xc9f\xa0\xa7\xf4\xa8\x06\x89\x06z7I\xfdh\x1b0\x18\x8a{\xd5R\xa1r\x95\xb69f\x18\x8a\xbf\x1c\xe0{rM\xfao\xe7;\\j\xc5\xe3\xca\xcc\x91<\";\xb46\xc8\x89 Z\xc4\xce\xcf\x97\x15\xb6\x91\xf5\x0b\x02\x80\x9e`G\xb9\xa7K\xd0&\x7f\x0c\x10\xce\x1e\x08\xc2t\xa9X^qI\x1d^+\xae\x9fj\xca\x8f2V \xbe\xd1\xe5WW\x836\xfd\xf6\xe4\x9a\xdc\x1e\xb3\xcf1?\x18\xc5V\x1d\xb4\xeb\x97\xc4\xe9\xcc\x0e\xddQ%\x11ug\xc4\x11\x07\xbb\xed\xa7\xf7J\x9b\xce\x85\xc0j5T\x8b\x03VH\xff0\x02\xf4\xfe\xfa\x97\xff\xe2\x8a\xa0\xea\xfa\xbd',H\xd9G\xad\xfa\xa3\xee\xc1\xc0\xc0\xbc\xea\xf8\x15\xe4\xa9\xdb\xdb[\xf9\x1b\xb9\x98-N\x17\xa7N\xb9\xc9o\xd4L\x9f\xbe\xb9\\\x9c\xd2E\xfa\xe4\xe5\xa9\x91\x90\xda\xc5#Z3^7F\xe8s\x87^CX\x0b.7\x06\xab\xce&\xe82\xaa\xf9\x9c*\xe3\xc1\x8c\x9c4\xc4\xae`!\xf5[>\x8b[_\x08\xc6\x9b+\xd7\xf2\xf2\xd7Q!0g\xd3\xdd\x16\xf3Ko}\xe1\xed\x14\x92l\x99x}\x9f\xb0\xfeA\xa1\xc1\xa3)#\xbd\x8c\x07\xbd\xd9Add\xc7\xacy%\xb2\xccH4\x81\xc8dl\xfd\x9a\xddu\\\xf60\xaa\xd0\x83?\xf1\xc0\x11\xf9\xa6\xfak:w*\xfe\xe0\xc2n{6\x1c\x08\x98\xb5\xbf\xaf\xa1\xe8)\x90D\x0cjF\x18\x96\xafTB\xbf\xb0\xa3z\xa3s\x9c\xfa\xa3\x92[\x9b\xa6\x9f\xe3\x0c\xcc~j\xfcb63Sg\x8ez\xb9\xea\xb4\xe8\xf2\xf5\x11\x0b\xfc\xe8&\x9d\x11V\x1f\x12\x9a\x89X}U\xcb\xa4\x1c\x93\xda\x15L\xea\xd8\x8d\x0co:\x80*\xeee\n;\x80:|jg\x12eA\xab\xe2E\xdf\xc3i\xd8\xe3\x14,\x95\xee]\x96J\xce\xb1\xaemk\xee;\x1e|\x14\xb6+\xa0o\xb9\xffX\xe7\x1f\xb9\xdb\xa0\x1eXD\x822);\xea\x14\x04\xea\xd1\xb7\xd0\xb5\xdc\x9d\xabr\xb6 \x9f[Vw\xfa\xe6\x92\xce_.\xd2\xa5a\x0d\xdb\x01\x1a\x87\xea+\xa3\xbb\xf1xD\xfc~\x9a;\x18P\x89\xc3\xe1@\xc9\xc6\x90\x0bR\n\x9b\xaf\xbc\xad\x18k\xcc\xcbv\x01\x9e\xe8\x0e\xac\xe0\x90Q\xc9\xf9}\x85\x1b\x14.\x13(\xf4F\xa1\x7f5\xc91\xda\xee:l\xaf\xf6\xa5=e\x08\x05\xfb\x81\x82yo\x15\x06F\xbc;L\xf1\x88\x99tOo\xa3\xd7\xd0\x9a\xde\x11np\xc7\xba!\x97\xb6Y4\xbe\xcdM\xdf \xce%\x15\xec[\x05\xc6~\xbeYN2\x1e\xa0\xa6J\xdb%\x1b-\x1a|\xd4;T\xf5Y\xb5\xb4\x1e\x11\xef\x18\x12I\x1e\xa4\x0d'E\x8dx\x90\xab\xa5\x93\x8eJq\x92\x0b{\xebN\x05 \xb2\xc0C;f\x1d\x8c\x1d\xd1;m\xcc\xab\x87\xbf{9}`\xd5f&T\xfd\x99\x81\xe8p.E\xb4\x02\xf3\xa1#\xf1\xd0)\xb6\x98\xd6\xbd\xec\x91\xd3\xfb\xf0>\x15h\xe0\xd1\xd0\x8d\xc7\xdd\xe1\x0b\xd0\x92\x1eP=!\xc3|L\x0c\x91\xe8 \x0e\xa9_P8\xb4zh\x9f\x1f:\x8fG \xf2\xd1\xf3w_9\xbb\xcaJgWY\xf9\xec\xca\x1b\xd9\x834}vu\xb0\x9d\xf6m2\xee\xd5\x0eV\x82\xe7\x1e\xe3\xf1\x05pI\xadM9\xb9\xb2\x14\x9a\xe0\xadmC/\xe0Sf\xac\xd7/\x06\x8a-\xdb6:\xed\xe0\xf6:(\xe2\x88\xf89z\xc4\xfa\xe6+\x1a\xc0\xd9\xe2U\x8ew\xfa\xe4\xa4\xdc\xa1'\xe4\x0b\xcb\xc7&?\xa6\xd5\x8fg\x93\xe9\xf3\xc9\xd3Jj5\xd3\x97qr\xcf\xfd\xedN\xf4\xbd\x019?\x9b>'\xff\xcc\xd96\xe6\xf7\xe4\x7f\xa2^\xbcJ\xc9\xe5\x96\xb3\xedo\xd4?\xe3\x1f!e\xe2\xc5\xe1\xcbj5\xaf\xbeyM\xbe\xf5=\x16\xa5l=!\x85\x18\x86j\xdc\xd28\xe3\x1e\x83X\x86\x01\xe6IOC_\x8c\xf5\xcb$\xd9%\x07\xa0T\x15\xa6\xb3\xd3\xd3\xad/v\xd9JAp\xaa B\x80N\xdbF\xe1\xb4\xf4\x0e[\xd1Q\xd9\x80\xbd\xddF(\x9e\xfcI\xf8\x81q\xb0\xae\x9d\xe2W\xac\xc4\x9c\x02v\x9c_\x94v\x9fe\xc6Q*x\xe6\x89\x98\xcfH\\_\x88\x19\x0fR\xf7\xb6\xb5eG\x9b\xeff\x1d\x1f#v\xfb\x1f\xfch\x1d\xdf\xba?\x97\xb7\xda\xae\xcay\xa6\xd6.\x9b\xe9{3\xf5\x1c\xc5X\xac.'\xd0\"\x0c\xbe\xa3\x14\x9d\xf8\xe9\x97A\x9c\xa2\x13\x9ck\x18\x89WT\xec&!\xbd\xebGj\xaf2R\xd2\xfc\x0cvK#\xa2\x1d\nT\xfd\xd5\x17\x7f\xa0KC0\"\xe1\x8b{\x0b\xc51e\xf1\xeeV\xab.\x86\x98\xcb\x8bfz\xf5N\xf0\x07\xc1[\xdbP?\x0dJ\xd0\xb2OGX,\xcc\xce\x8cnV\xa5\xe9\x04\xb7F|\xb5\\\xef\xddX\x8d\xc0w\xc1mc\x8c\xa8\xb1\xfaU\xbe\xb6\nj\x0bf\x02w@\xa0,\xc8\xf3=\x94\xfb\x17\x1a\xe8\xa8\x03] s\x15\xef\x02#,=\xf74\x14\xc1\xb7j8bb\x19\x95\x93'\x1e\x0d\x02\x13%FS\xe9\xc1(\x8f\x86te\xa3! rM\x04\x99\x91\x13\xbco\n\xbe\\\xec\xe8\xa0V\x08\x8c\xc7\x05\xf1\xa3T\xd0\xc8S\x85\xe2\x89\" \xaf\xe9V\x15.\xfa\x83\x9a\xd9\xd1}m\x89R\x7f0Y\xa9\xa7>+\xfaY\xea2\x88%\xd23k\x16\x05\xcc\xcf\xa8V\x01\x86\x9c\xbc\xb6\x0e'\x83\xcd\xb1\xa3\x94 \xe0TH\x9a\xe4\xd0\x0cF\x8e\xb3\x0cw\x17^\x15i\xf8q}(\x90\xffc:Q(f{QH\x9b\x141\xbf\x99T \xcb\x85\n\xd5c3\xa9\xd5\x1c\x18r\xc2ssV\xcb\x91!\xb3~k\xce^b\xc2P\xa4\x90\xe2&.\x83#f\xe6u\x81q\x1e719\xcb=f^\xf2RvZ\xbe\x80\xdb\x11\x85\xc5\xd2<\x1f\x05\x81\x05j\xb3\xef-\xc3me\x14l_\xbf6\x17(\x88,H\x05\xcd\xfbQ\x83]Jy?\"1p\x99C\x9e\xb3H>n06}\x81j\xaa~U\xc0\x1c\x19t\xd6\xbe\x7f\xe2\xf2\xaa\xfd9\xcfPIS\xb2\xabS\xfa\xa4\xabTp\xea\x89WL\xec\xe2u\x07d\xc0\xa0f=S\xae\xd7\x05\xe1Ph\x9e\x1d\x1e\x04R\x94\xc3\"\xe2G*\x9b\x98\xech\xfa\xc7\xdb\xc8F\xa3\x8fP\x14a\xf3hI\xd0#X\x03\xfb6\xb8\xd8\x05Fv'X\xb4\xee\x08#\x80\x87\xf2\x1f\xcb\xc5\xfbf\xe4\xaan\xe7\xde7\xdc\xcc)m\x15\x1a\x16\x98\x91\x18AW]\x1b\x9b^a;\xd1\x1b\x00\x93*\xa4\x90\x0e\x13L@\xde)\x14\xd2\x81F\x90\x99R\xbe\xcd\xc01V\x83\x843(u\x01\xc2\x03\xb6\xce\x0d-\x81\x07q\x19\xe9$\xcd\x12\xc6a\x01\xe2\x0d\xe95\x0b\x98`\xe5\xae\x8c*;2\x8a\n\x84\xa8\xd3\\\x07\x81\x9f\xa4~:k\xdd\xa2\x17\x7f\xd6\xa4K\xebh^b\x90\x04\x98\x83(\x0b\x02%VD\xe4\x9a\xf4&\x93\x9e\x12~1\xbc\xa21\xf6Rl\x1f\xf4\xfcc\x12Y\xd5\xf1\x90D] \xb6V\xecvDN%\x0f\x7f\xc19\xbd/x\xe8\xd25\x0c\xf2\x8e\x18eq5r\x83\xf9\x15\x96\xa1\xdd\xeb\xb0\xceG\"\xc4\x9c\xbb\xc0\x1aU\xd2\x95m:j\xc5\x87q\xfd8\xcb1 p\xff\xe5\x8bh\xfd%MD\xc6\xd9\x11\x03s\"&\xdb ^\xd1\xc0\x11\x9e\xf1\xcfP\xed\xf7l\xcb\xee\xfeL\xc2,\x15dG\xf7\x8c\x88\x1d#\x8f\xb7\x8f\xc9&\xa0[\x92\xb2Z`F\xf3\xcbG\xac\xb23\xbc \xb8T\xc1@\x8a\x81\xcf\x00}\xb9\xb9\x80\x1f\xf1\x08\"\xe9\xad\xd9\xdd \xdf7Eh\xbf\x82\xe1(\x8c9\x94Jl\xb5\xdf\xb2\x1b\x8az#Pw}\x84\xeb\\\xc6H\xb9Wf\x99!}\xec\xe3m+W\xdc\xdc\xdb\x9d/X\x9aP\x8f\xc1\x08\xce\x08\x04dr\xec\x0f\x8a\xfa\x8e\xc3\xdb\x02\xb7\xde\xc5\x86+\x8d\x18W\xa0\x1a9#O\x90\xb2\x98\xf2\xfa\xd5\xb7\x9d\xf0\xcanw\xbb\x80V\xdc\x96\x08,\x86\xa1UE12\xa5\xf95\nb\x95\xe6\x8eiMJ\xd2\xeb\xc4\x81S&\xbe\x10\xe5\xbdb\x87\xbbkzC\xa3J\xa6\xfd\xc1\x9c-\xf30\xba]\x1a\xdd\xd6\x1b=\xba\xc5.\xed\xe8\xce\xa5]\x1a\xaa*xtK\xad\x0b\xa9\x82\x829\xfeu\x01n[\x07\xae\xcb PU\x06d\xe8\xc2\xebU)\x0c\xae\xf9\xb9G\xe4K\xc5>\xbb\x8cH\xb1U=\x92\xfd\x1e0\xdf^M\xc3I\x1a\xe4\xbb\xf5\xbass\xb9\x9a\x0d\xd5hf\"\xa0\x82\xfe`\x94\xc7^\xac\x10\x14\xd4\xaf\xe9\xb9\xd0\xdc\x0bo\x11D\xe0\xf8\x1d\xefDr\xb5\x13W\x94\x17\xef/\x98\xc4\x0b\x98\xf4l\x92\xee\xfc\x8d\xe8+\x12<&\xb8\xed\xf7QrP\xdc\x9c\"\xc1l\xe2\x88n\x1c\x9d\x189\x85\x16\x03\xcfu\xc5\x0e\xce\xc2x\xcf\xfe\xee\x07\x8f\x16oX\x95FR\x0de\xbbv\x13\\p\xe2 _\xc0\xa8\xc3\xb1\n\x8e\xb7j\xc1c\xfdtD\x1c\xd7m\xc9!\x8d\xd9G\x9d\x89m}\xc9tY1\xb5\xe6;\x93\xe4\x1dM;\xcf\xbb\x15\x8e\xd0\x9a\xa3GzdX\x9d|\xb8(\xdc+\xdc\xa5\x81LL'w\x81(e\xe2\x1b\xc3?\x8f\x80\xaa\xc6\x89\x8f\xe3\x80\xae&\x8fk\xb1\xf3\x90\x1b\x1d\\\x87\x96J:\x8f\xa2\x16\xbcE\xe5`\xb2\x83\xce\x0f\xb0\xe2\x07\xc1\x0f\xf0\x96y\xef\xb2\x87\xd1\x95 \xaa \xf5\xdcb`2\xd2{\xd9\xcb\xa3\xf8\xda\x91R+\xbdwy\x8a\x05{/{\xcb\xa3T\xc7%\xf0:\x0c\x05\x8a\xcd\x96\x0bYA\xbe\x1a\xc5\xcb\xfc\xaaC\xa7\xd7G\xfb\xc0\xcd\x97\x87\x84j\xe2G\x84\x0d\x08sk\x03\x84\x16\x98\xc9\x90<\xc6\x08\x0b\xb0\xf5\xc0\xa8`\xed\xf4<\xa7\x16\xf5\xd1+\xa5\xbcW\xa2xMou\x84\x88\xfcQD\xdf\xceS\xdc\xa5\x89\xa2\xd6\xc9\xc8\xfcm\xbe?\x8c\xb4\xda\xa3-f\x06\x14\xe5\x1d\x98\x7f<\x0d@\x14`\x85\xd3+T\xb5\xe3X\xfe\x9e\xb3M\x7f\xd0\x82 ~N\"\xa0R\xedoZ\xcf\x04\xbb\x13\xfdBm\xa8\xb7oROt\x19\xbd\x02\xcc\x1d\x05f\xb3On\x1e9bm\x87Dc\x1e\x07(\xe6g\xf9:\xc2\xf6e\x8a\xbcC\xed&\xdb\xe6\x95\x1b\x13u\xa3K1\x1b'\xabA\xd5\x190\xb6!\xb9\"\xbd\xb7\xab\x80F7\xbd\xae\xaa\x942<]P\xae$\x81[-k\xfb\x12\x85\x93\x9a\xa1\xa5\x8dC\xd2\x1b#s\x9bu\xa4\xfc5\x8c\xe9\x02\xa9Uek`\xd7\xf1k\xadF\xae*f\x89\xbb\xd5\xbc\xc0\x11\xcd\x19b\xa2uT\xf6X\xce\xa8\xb0\x15\xbb\xc3@\x1e\x93\xef\xfe\xf8\xc37\xaf\xbf\xf9\x97\xaf\xde~\xf3\x87\xaf\xbf\xf9\xc37\xaf\xffc7\n\xe6<\xd69\x82\x8c\xa9\xf2z\x8f\x0f\x1a\xfe\xd3\xfe\xf5\xac7\x7f\xd3[>\xb9\xee\xc9\xc7\xf37\x8f\x97O\xae\x1f\xcb\xf9\x9b\xc7\xbd\xab\xcb\x97\x7f^\xa4\xcb\xe1\xe0\x14\x19\xdc\xe9\xfc\xcd\"]\x9c\xf5\x1e\xbf\\\x9c^-\xee\xce\xa6\xe3\xc5\xdd\xf4\xeb\xc5\xdd\xa7_/\x87\xa7\x134\x0fQ\xb3\xdb\xbf\x9e-\x16\xe9\x93+\xf5O\x0foM\xdao\x83\xeb\xde\xa8\xe8\xcbd\xaer+Vy\xd9?\xf9\xdd\x1f\xbf|\xfd\x1f\xbf\xfbj\xa0^u\xeab\x91\x0e\xf3W1\"= \xeeQ\n\x15\xaa\xcf\x83'\x86\xdb\xe2\xbb,Tq\xd9?\x85F{\xe0o\xe6t~6\xfe\x9c\x8e\xdf}1\xfeO\xcb\xfcq\xb6|rZ\xad\xb3\x0c\x81\xb0\xad\xa8^\x9d^\x17\xda\xcb\xf9\xf7\x88\xf4\xb6~\xcfE\x0b\xd5\xa0\x7f\xb9\xa3\x9cz\x82q\x13Q\xddhZ\xfa\x8f\xa2U\x9a\\\xc8G\xbf\x9e\xbe8\xbb\x90\x8f\x02\xa1\x9e\xe1q\x8b\x8f\xe7\x17\xf2\xd1OY\x0c/O\x9f\xc1\xbf\x9f_\xd4\xaf\xdb\xab\x1f\x989tA\xd8\xd2n\xa4\xb0\xf7\xb0\xf8Q\xb2\x8c\x98//PUzb|]\x82\xf2g\xfe\xf4@nE\x10ON\xc4A7\x1bAE\x93\x1b\x8f\x88\xd0\x9a\xbaf\xab\x81\xc0\xaa\x87\x91c\xa91Ut\xe7\x8bh\x0d\x93w\xff\x87x\xcdR0'\xf6At\xd1Zv\x7fD\xa2\x81M\xec\x17h\xfeWh\xa4\xa1\xca\xf5\xb5\x8f\x81\x81\xd6\x0d\n\xab\x1b\xa4M>\x86H\xe3fJ\x89wq!@\xc9\xa1\xa9\xf0\xaa\xc3\xd12\n^\xb7Q\xf0\xdc\xa3pD'4\xed\xf4\xbbP\xe5\x06(\x8e\xc3x\xad\xdf\x8dr\xb2Y\xd1I[\xba\xdd\xbcp\xf5~]\xaf\x8f\xc8*\xd79Z\x0eA\xd0\xb1\xf3C\xd3\x01{\xf89\xef\xb02\xa29\x07/\xb2\xcd\xd3E\x0b\x92t\x01\xf3\xd4X!\xda)\x84\xcb\xdc\x99\xf2\x91\xecg\x0f\x99\xba\xbaX\xd4(m\x14V\xc2\xd1'85\xc3\x86\xe2\xb2j\x11|Adh9\xe1\xb3\x92q\xc5\xe1Ds \x0f\xad\xa8\xaa!\x83\xcc\xef\x18Q5\x1f\xfb.H\xdc8\x12\xf9\x0c\x1e\x1c\x88\x0f\x06\xd9\xe0\xd4\x87\x00l\xf1\xf2\xe3\x81\xfb\xabr\x06\x87\xb4\xa4\x1a^\x9e\x8e\xb4S\xb0I\xffz\xe6G\x82\xf1\x08\xbc\xf4\xd1@Z\xf2\xe7\xc7\x91z\x01\x92\x14\xf3T2\x95-\xe1~\xcaR\x99\xecb\x81^i\xeee\xc2\xe35fO\xe5&\xce\xa25\xd4$\xfd0\x8cW~\xe0\xb3H\xfa\xd1:S}`\xa9\x0ciD\xb7\xb0VU\xb9\x84q%tI\xc1\xbc]\x14\x07\xf1\xf6^z;\xee\xa7\"\xa4\xa9\xf4\xe20\xcc\"_\xdc\xcb\xb5\xcf\x99\x82\xe1^\xb2u\xe6a\xf5\xec\xa7\xccO\xa0\x1e?J\x85/2\xc1dH\xf9\x0d\x13~\xb4\x95i\x1cd\x08\xd1\x9eb\x81T\xae(\xdfR_=\xc4\x99\xf0\x7f\xca\x98\\\xa1\xa20\x95j\xfb\xaedf\xe9\x05\x8cF\xf8\x10\x8b\x1d<\xc4a\x92 \xc6\xe5\x9a\x85\xb1\xc7\xa9\x90k\x9f\x86q\xb4N%\xf4\xdf\xf7R\xb9\x8b\x83\xb5\x1fmS\x19\xf8\xdb\x1d\xb4\x9fP.\"Us\x12d\xe1\n \xca\x92$\x80\xber\xeaC\x13{\x16)y4\x95\xd4\xa3k\x16\xdeK\x8fr\x06\xd0\xc4aB\xa3{\xe9\xf1\x0c\x06{\x1d\x87\x007\xbbK\xe2\x94\xad\xe5\x06\x9aI\xe5&\x88\xd5X\xc9-\x0d\x02\xc6\xef\xe56\xf3\x05\xe5\x00\x8e\xbf\xa6\xf7\xf2\xc6WX\x11\xc9\x88e\xa9\xa0\\\xc67~Do\xa9\xe4\xcc\xf3\x13\x96J\xce\"A\x03\xf5w\xef\xb3\xdbT\xa6;\xff&\xddQ\x89\xce R\x009\xe6B\xa6\xf7\xa9`a*\xe9\x96E\xde\xbd\\1\x1e\xf8\x91\xf4h\xc88\x95\x1e\xa0\x85\xf4\xe2\xcd\x861\x85/\xeb8\x95\n\x05\xa2\xadd\xa9\xa0\x82I\xa6z\n\xe03.\xe4&\x13\xab8\x9074\xdb\xb0H\x06\xd9]\xc6\xefeH\xfd4\x8ed\x18G4\xdd\xc90KY\x16\xca\x88n\xe3{\x8a\xb8\xa6\xa0L\xa8\xcf\xd5\x1f\x80)\xf6|\x1a\xe0\xa8\xdeKA\x85\x88c)|\x16\xad\xa9\x1a\xe1=\x0b\xe4\xde\xa7?\xb2T\xee\xfd \xa0\xeaO\xaa\xd0f\x1f\x03d\xfb\xf8\x9en\x99\x04\xccF4P\xa3\xbfN\xa5\xb7c4\x91\x9e\xdaw\xc85\x8d<&a\xd1\xcam@S5\xb2Y\xaa\xd0,\xda\xc62\xf2\xa3\x1f)L\xb4^\x0e2\xdd\xc5j\xd4\xe2\x80r)b5\x03\"\xbe\xb9\x8f\xa5\x88\xe3 \x95\xb7j\x8d\xca\xdb\x98\xdf\xa4\x922\x1eK\xca\x13*i\xeaS\xb9b\xa9\x90+\xff\x86\xc9U\x00h\xf9\xee\x9d\x1a\xdeDzA\xb6\x92^\x1c\xabU\x19'rCy(7~\xba\x93[\x7f#\xe46\xe3\x99\xf4\xa3M,\x7f\x8cW\xa9\xbc\xf1o}y\xc3\xd9Z\x064Z\xcb\xc0\x0fc\x19\xf8\xd1\x8d\x0cY\x94I\xb5\x18e\x18\xaf\xa9\x8ch\xc8d\xa2\xf06Q_\x938\x15\xf2\xa7$\x8e$\xf7\xbd\x9d\xe4\xd9\x8e\xcb\x94\xdd\xddK\xe1'\xa9\x1a/\xa6\xfe\x89\xe5-\x8d\xb6\xf2V-\xe7[\xff\xc6\x97\xef\xe2\x88\xa9%%W\xfeZ\xae|\x05\xf0J\xad#\xe9\xb1Xa\xb0Z\xaar\x1b\xef\xa5\x1f y\xe3\x872\xf4\x03\x191!\xe3(\x901\xdf\xaa\xe5/\x93l%\x15\xc0\x82\x052\x8bby\xcb\xd6\xf2\xee\xeeN\xde\xdd\xbf\x93\xd4\x93t-)\x93t#\xe9VR_\xd2@\xd2P\xd2H\xd2X\xd2\x9f$\xe5\x92\xa6\x92\nI3Io%\xbd\x93\xf4\x9d\\Q\xb9Z\xc9\xd5Z\xae\x98\\m\xe4j+W;\xb9\xf2\xe5\xeaG\xb9\n\xe5*\x92\xabX\xae\xb8\\\xa5r%\xe4j/W\xb7ru/W\n|\xe9y\xd2[Ko#\xbd\xad\xf4v\xd2\xf3\xa5w#\xbd@z\xa1\xf4\x14)\x94\x1e\x97^&\xbd\xbd\xf4n\xa5w'\xbd{\xe9\xbd\x93k&\xd7?\xca\xf5\x8d\\\x87r\x1d\xcb\xf5;\xc9<\xc9\x98d[\xc9\xb8d\xa9dB\xb2Ln|\xb9\xf9Qnn\xe4&\x94\x9bXn\xb8\xdcR\xb9]\xc9\xedZn\x99\xdcn\xe4v+\xb7jb\xe56\x90\xdbPn#\xb9M\xe4\xf6'\xb9\xe5r\x9b\xca\xad\x9an\xb9\xbd\x95\xdb{\xb9\xbb\x91\xbbP\xee\"\xb9\xe3r'\xe4.\x93\xfeZ\xfaL\xfa\x81\xf4C\xe9G\xd2\x8f\xa5\xff\x93\xf4\xb9\xf4S\xe9\x0b\xf9#\x93?\x86\xf2\xc7X\xfe\x98\xc8\x1b&o\xb6\xf2f'o|y\x13\xca\x9bH\xde$\xf2\x86\xcb\x9b[ys/o\xde\xc9\x80\xca`%\x03O\x06\xbe\x0cnd\xc0e\x90\xca@\xc8 \x93\xc1^\x06j\xa9\xca\xd0\x93\xe1Z\x86L\x86[\x19\xeedx#\xc3@\x86\xa1\x0c\xd5\n\x96a\"\xc3\x9fd\xc8e\x98\xcaP\xc80\x93\xe1^\x86\xb72\xbc\x93\xe1\xbd\x0c\xdf\xc9\x88\xca\xc8\x93\x11\x93\xd1FF[\x19\xf92\nd\x14\xcb(\x91\x11\x97Q&\xa3w2\x0eeBe\xc2d\xb2\x91\xc9V&;\x99\xdc\xc8$\x90I(\x93H&\\&\xa9L\x84Lner/\x7fR4M\xf2X\xf2T\xf2L\xf2[\x99R\x99\xaed\xea\xc9t-S&\xd3\xadLw2\xf5e\xfa\xa3Lod\x1a\xc84\x94i$\xd3X\xa6\\\xa6B\xa6\x99L\xf72\xbd\x93\xe9\xbdL\xdfI\xe1I\xb1\x96b#\xc5V\x8a\x9d\x14?Jq#E E(E$E,E\"\x05\x97BH\xb1\x97\xe2V\x8aw2\xa32\xdb\xca\xecFf\xa9\xcc\xeee\xf6N\xee\xa9\xdc{r\xcf\xe4~+\xf7\xbe\xdcGr\x9f\xc9\xdb\x8d\xbcM\xe5=\x93\xf7B\xbe\xa3\xf2](\xdf\xdd\x0e\x16\xab\xd3\xaa\xe6\xb47\"\xe8\xffoq\xbb\x1c\xfc\xa6\xbf\xb8\xfdy:\x9a>\x7f?0\xba\xcc\xb2:\x14r_\xcf\xe6\x8b\xf1\xc5\xec\xd1\xd5b\xb8\xf8d\xb4\xb8]L\x96\xc3\xdf\x14\nD\xf6\x897Ub4\xa3\xb6B\x94\x19\x96\xf3\xf1dh\xc5\x87\xe5p\xd6\xbf>i\xfa\xb48]\x9c\x0e\xfa\xd7'\x8b\xf5pqz=\xe8_c\xca\xb5\x13\x90\xbaJ\xb7?\xb9>E\xa5\xaej\xff\xf6\xf6v19\xbadsG\xad\xf6\x17\xd4\xc5\x8b\xb1\x05|\xf8\xe87\xbf^\x9c\xfe\xd3\xd5\x7f~\xdb\x1f\xc8\xc7\x9f\x80@Tg\xe1O\xbc\x0du\xc8\x11\xb3@\x8c\x0f\xaf\x03y\x12=\x1a\x7f\xe2\x81&-''Y\xb7\"\xdf\xb3\x80\n\x7f\xcfl\xb9\xcd\x81S\xc8\xa3/\xfa\x117\x99$\x87NX\x9a\x87\xd0\xd2\xf7\x19I\x9a\xa1\xb54\x7fF\x1cZc\xf3\x0b\xb1\xdf\x0d\xc1~\xba\x10\xf7vj\xd4E\x08\x81\xdb\xe4\x03\xe3bX!\xf9\x17\xa2_\"W\x87\xf8\xb4\x00$\xc6\x95r\xba\xe8\x9fn\x0f\xdc\xb7\x8fJ\xf9\x07\xa7\xdb\x03<\x1b\xb9\x80\x0d\x0e#%9\x1b\x90K\xd2\x07\xf2\x14\x95\x92-!?9\xeb8\xa6$\x9fs\x87w8\x976\xf2UU0\xeb\xaa\x84\xf4#pK\xd5(X\xce\x17\xb7\xcb\x06\xc1rG\xd3\xaf\xb3 \xc8\x8b\x9a\"-\x12\xbf\xa3\x9a\x8c\xfb?x;\x16\xb2\x83\x15\xb8a\xf8\x0f1_\x7f\xa90d#\x18\xaf\x023\x9b\xbfY\xa4\xcb'\xd7\xa6JG\x15E\xe6\xdb]\x1e5\xd3S\x94\x06tM\x7f2\x1dR\xec\xca\xdcb\xc94!\xfa]\xcc\xd2?\xc4\xe2\xf7to)\xf6\x1f\xf9\xefb\xa1\xad\xd3Z\xb2\x7f!\xbee4\x15\x7f\x8c\x98\xe9q\xa5\x8c\x9f~S\x9b\xcc\x9c\x92\xf5]\xe7\xf1\xce\x13\x89r'\xba,\xd7\xea\x82\xd3](\xce\xeb`~\xb6,\x1f\xac\xb6J\xf1\xbd\x1f\xe9\x9e\xa6\x1e\xf7\x131Cg=0\xce\xbd\xfd\xaa\x9c\xd8\xa5G\x87\x86\xbe\xa3\x89\xa0\x9d\xf1\x13\x86\x8e\xe7\xd5\xfa\x07\xfb\x00\xc7:@\x9fw89c\x13A\xdb\x1avO\\\xded\xbbA^\xc7\x82\x87\x81\x7f\x827&NL\x0f\x9aWQ\xcdW\xac\xf99\x91\xa7\x0d\x05\xbb\xa0\x92\x01\xf3\x84\xd9\xf1m#Q\xcd\xc09\x88$\n#P\xf8\x08\n\xf9Q\xf6\xcf]\x06\xef\x01\xc7\xbc\xaf\x8abS\xd7C\xae\xc2\xbe\x18Jv\x84-7\xf5=\x06\xc2\xa2\xc1\xa6\xb3T\xe3<\xc1\x8e\xc3q\xf6W\x98\xc5\x8fs\xe6\x87\x1ej;\x8e\xc2W\xb8\x7f\xe9Zy\xbe\x1f\xecX\x7fq\x94\xbb6R\xf4g\xfb\xc0\x06\x1f\x80A\x0d\x8d4\xce\xa7\xde\x8a\xfd-fT\xef\xd5\xba\xce\xe9\xeb\xf2\xd6\xaek3E\x0d\x00\x96\xed\xd8\xde\x83\xe6\xd88N\xd3\x0d\x82\xe74;\xe1\x0f\x87\xe2\xb8\x89\xef\xfd\xa6k\x93\x8dh\xf0'\xfe\x80E\x9d\xf1\x00\xf7S\xb9\xc2\x13\xc6\xc3(\x8d\xfb\xa8\x00\xbe>uY\xc3VX\x91\xad\xa2A\x1e5\xf9\xbf\xe3,a\xd1\x9a\xad?\x96\xedI\xc6;S\x99?\xf1.4\xa6tO'\xe3\x0dJ\xa2\"\xb6:\xf7\xb8V\x80\xacn\x9ak\x1f\xec\x90\x94}\xc3d0\xa5=\xed+\x10\xcc\xbdGM\x05!\xf4}G\xaf \x0f\\*\xd0\xb2qv\x9e\xfb\xf4~D\xc3\xe4\x02\xe21=\xeav\xcd\xea\xd85R\xbd6\x05\xed?tN\x8c\xbe\xae\xa8P(\xe7\xc3\x05\xd1\x07\xe7XU\xb5\x83\xa3\xf8\x9f\xcc\x12\xc2\x12\xf6#^`}\xcd\xa9\x1f\xf8\xd1\xf6\x87\x80B\xcc\xf6.\xe3S\xae\xb6\x8bl\xe4V\xd1\x97\x17\xb7\xdb\xe1zS\xf3\xeeAy8,Nb\xd1\x19$\xc7X\x1e\x01J\xef\xb4M\xe1Q\xd4\xe0\x1a\x87\xab\xe3i'/F\x8a\xfa\xda\x94\xf7#\xedh\x11c$\xf16?\xa5\x1a\xb0x\x92\xfb\xe5\x84\xbb\xc0\xf9`\xbc7\xbeeFd\xbe\xc4(>\xfd\xa2\xdbx\x1d\x8a\xeaC\xa3a\x1b\x8c\xc8<\x0fa\xde\x1b\x91\x1e\x04\xa4\x86\xf02\xea-\xf0S\xd1s\x85(\x9d\x973Bm\x9f\x7f@m;\xaek9?\xfb\x80Z\xe0\x93\xaeg\xdaZ\x8f\xbb\xbc \xcbm\xea8\xaf\xd4\xd1\x00;\xa3k?\xda\x9aBO\x1f\xd0pP\xa9\xe3\x99{\xf6v\"\x0c\xa0.\x93\xef\xf9\x03\xda\x12t\x15\xd8\x1e~\xda\xa9\x87k\xb6)\x0em\x15m\xdc\x85\x8aPA\xb1\xcf+\x81\x0d\x97\xee\x98x\xd5\x05\x8a\x14<\x0b\xacW\xb6\x8a\xcb){\xdd\x81\xa1\x1b\x1bF.\x89o\xaf)\xb0\xe1pP\xa8BG\x92\x9f\xb3%\xc4\xe7\x82\x87\xe9\xd2%\x8e\xd1@\xcc\x08\xe6<\x87\xf3\x85\xf9r\xa0\xa9\xd2\xa0BzrJa\x9fh\xc1\xad\x11\x04\x82\xf0\xdf\xb1\xaa\x835\x87\xe6\xcd\xf6E{\xfb-\x00\xbee\xe2\xfb,`)\x1e\xa3\xa3\xa3\x04\xec$\xbaH\x10\xe8\x10\xe1dzA(\xb9\xd4GHl\x12\xf8\x91j\x98\"Q\xbd\xf1\x93\xaf\xc2D\xdc\x7f\xebG,\xedS\x08m@\xc9\xcb+\x12\xa1\x17\xfe\x93>\x9b\x88\x1fv\xfeF\xcc\xe9\x12\xae\xdb\xac\x82\x9bo\xa25\x8b\x84\xfb\xfa\x13\x00\xccq\xe0\xe1F\x08\xd4\x12\xcf\xf9Ru\x91\xc2\xf1\xe6\xc9tpA\xf8p\xe8\x90\x130\xea\x85\xf0\xb7;\xa1`\xcfF\x84M\xfc\x14@4\xb0[\xbe\x90\x19\xb9\xaa\x8f\x9dQ_\x07\xa6\xa7y1\xda\xa86W\x8da%#2\x1c\xdaAB\xaa\xa1\xb9RB9\x8b@\xe8\xad\xd7\xda\x12\x0e&\x1f\xe7\xda\xe7\n\x9f\xcaq\xa5\xcc\x0420S]D\x0bQ\x8b%\x99\x82q*W\x1f\xb3\xb3\xb3\xcf\x9e/\xe5|\x91\x9d?;\x7f\xb6\xc8\xce\xcf\xce?\xd3\x89\xd5R\x01\x94\xca\xce\xce\xe8\xd9i!,X\x111\xe1\x8e\x91\x03+G\x84W\xc7P\x81\xe8#\xa2\xb9<)\x03\x02\x94\x92\xe1>>\xb3\xc7\x02\xd5\x9b\xf3\xc0\xe55\xab7\xc2I0\x02'\x10\xb98\x9b\x8eHo\x11\xa9\x14\xabU\\\x88\xde \x8f^W.\x9f\x15\x18p\x93Z\x1b\xd6V}\x0e5\x94\xd3\xb3\x82p\xf2e\xbcf_\x88~4 \xd7:,,F\xf9\xf3t<\x14\x08\xfe\xa6P\xbf\xa7j\xe8i\xda\x00\xee\x85)\x19\x13o@\xfe\x89<3\xc7\xb5\x90\x08\xc5y\x95z\xe8\xd5\x8c>\x15\x99\xf1\x07k\xe6\xc1\xdc\xab\xd54\xa4\xef\x8f\x14q\xf3#f\xfe\xbe\xa2w\x05\x024*\x05\xb4Al\x1fz\x1epZ\x86U?@e\x18kM\x9a\xeb\xae\xae\x96\xab\xdf\x8a\x00\x9c\x0dj\xa8X\xac;\xdf7\xfd\xaa\x0e\x08/\xbaUD\x1e\xd6\x1a<\xa0\xb8Y\xc7\xfa\xe7li\xd5`(\x11\xb0\xa5\xa2\xbc\x85.\x14=\x9f\xbd\x1f\x95\xda,K\x1a\xadM\xd7]\xda\xeb\xfe\xa2(\x87g\x8f\xfdC\x90]V\x00\x1b\xa0\xe8w\xe1\xea%k\x83\xfa\x87\x84zGC\x9cr/\x978\x0d\xd0z\x15\xd9\x0c\x85%\xc8\x1e\x0c\xde\x97;\xca\xd3C\xaezKn1\x9d\x00F\xf6\xe4\xa9\x06\x19\x02\xfdA\xf0\xfd\x96z5w\xc2\x0e\x86\x0c\xd2\x1f\xb9\x04\x97\xf8\xa6n\x07\xdfP\x10\xbf$\x91#b/Z\xaa\x9d4\x0c\xf2x\xccr\xbb\x04\xa6\x96\xedq\xdd\xd92Q\xc7\xdeV \xa9j\x19\xa98]],b\xb0\x8c\x1a=\x14\xa9,\x81\x82\xb6\xe2\x92\xd4/\xaf\xffy\xa0V\x01F5\xf0\xf1\x10\xce,\x87`9\x02\xb7\xad\x8acpr]Z\x19Pjj\x1c\xc1\xdb\xc4Q>\x82(\xc7\xa8~\x0c\x1c\x93\x91iQ\x05|\xb7\xf6\x05\x19\x83\xe1\xac\xf6 \x1a(\xd4\xbf \x81\xa2\xbc\xf1p8\x80\x88ne\xc8\x06j*Ax\x03&?\x18\x01\x07;\xb3)gZ\x1c\xaa\xf54\xc5\xfe\xe0\xc8\xa8\x15&e\xf7\xcee\xf3xY\\\n\x8d}\xd4c\x9d\xd5}UUD+\xb4\x8d;J\xb42\xa9\xee\x90\x83\xee%b\xf6\x82\x0e,2c*\x96j\x12\n\"\xcd%y\x96\x9b\xe3L\x1ds\x18\x03^\\\x81\x8f\x9a)\xee\xdb\x9aVW\xbe\x03\xe2j-\xb9x~\x8b\xdd\x1fl\x02rHy\x15\xd2\x97W\xe4Y\xfb\xc6J\x81:\x1c\x1er\x06k\xf5\x9cZ\x86\xe3\xa3<\xf6{C\x8c*\x1d\x8b\nUf\xb5\xaf6\xe6TN\x05\xd4\x96\"\x1e\x91g\xe0\xe8\xc5va\x04[\xd2ZyP\xc2\xb8\xaf'*\x10\xd3\x19\x99\x8b\x91\x86\xd7\xa1<\xd1\xe1\xab\x18\xca\x8c\xa5\xcf\xef\x95\xf0\x96\x8bI\xef\x7f\x194\xecN\xdf\\\xc7F\xe8|C/^\xb1\x84\x11\xb3\xc8Z\xcf\xbe\x81\xec\xccd\xaf\xa3\xbaG\x86\xe4)yI6\x8dh\xadrM\xcf_\xa0\xd7\x96\x18u\x1def\xe0\xa1\x82\xe3s\xcc\x13\xb7\xd6\x04\x92\xf7\x08%\xe7\xbeg5'\xc0\xda\xfa\x9e\xda\x03\x0d\xc8\x98\xa4\x03rI\x9e\xb6V\xa45\x159\xc5\x01C\xf9\x89\xe0~\xd8/\xeej\xff\xac7\xb5\xad\x95\xf1\x82\x8d]\x03a\x16\x17\xe4\xa4?\x1cf\xa8\xd1A\xc1 :\x90\x16g$+\xcdH\xb6\x04\x9b\xbe\xd2$\xa84P\x7f\xd8<5]P\x03\xb5\xa8\x8d:0\xb1\xb8\xa2[\xca\\\x84\x00\x04\xf8\xe6\xd1\x06\xe5R9\x0b\x8aj0\xb5\x10\xb0\xbe\x81\n\x01\x9a\x9e\xb9\xe9\x0b\x90\x9en\xd4\xc5\x87vs<\xce\xc9MF\x86\x8ae_\x03\xeb\x81\x93\xbfn\xc4\x07\x94\xf1\x0e\xea\x93PN\xc3tFhG\xc2\x84\x8a\x85\x0c\x16\xa7\x93\x1c\xfd{\xa29\xf5\xb0\xbb\xc7Q\x9b\xf0\x10\xb5\xd9\x93\x97$l]\x89/\xce\xb5\xb1[\x05\xdb\xf7\xc3\xe1\xa0\xb5\xa0\x1e\\\x85\xeey\xac\xdf\x90\xde\xfd\x81\xa5\xc2\x8f\xb6\x1f\xb2\xfc\xf5f\xa3\x0e\x13\xac\xe4\xbd\x92\xc84\x11\xc8Y\x17\xab\xeaA \xeaaa,\x01\xc9\xf3\x91\xbd\"{\x14\xce X\xed\x9e\\\x92\x10\xc2\x11\x15\xd6\xe2~@fd\x0f\xd4,D\x81m^\x98\x0d\xa8/\x17[T\x1d\xe3b\x0b#\xcd\x0bP-TS|\x17\x8e6\x8cO)\x94`b\xb3\xa39\xe9\xf7K\xe8\x10\x97\xd0!^\x02`\xfd\x12\n\xc4\xcb\xc1\x00\x03\xa09IZ\xfb\\7\x8b=~\xabXc\x03+\x9fLGpW\xe7\x0c\xaf\xa6l\xec&-!\x97d}A\x92C\xb1\x0b6\xf3d\xa9/eE\xb0\xfa\xdbt6\x04\xaeA4SC\xf3sSE\xf3k\xf6\xd0\xb5k\xedtf\\\xfd\xdb\xc9Q{\x14\x93\x98\xcf\xd1\xa88c\xa0A{\xfa\xf4\xd3:\x8dF\xc1\xb3\x03\xde;\xdb-\xa2\xc8\xf1x}\x18\xe8\x12f\xc7K\xc7\x8a\x0dH\xf9\xc0aT>~\xb8\xaa\x9c{v\xe4)y\x99\xa6\xa0\xc1\x9a\x19@\x84g1\".wue^P \xed\xfb~0\xca\x97\xa8\xd5K#\x11\x8f\xbb3\xbf\x02\xa0M\xf1om\x9c\xdb&\xa6T\x190\xc5\x1b\xe6\xd3\xa5=\x1d\xd2K\x0b\x17\x13\xcd\x97\x16F\xac\xd6s\x93\x90!\x01Z\x94\xcd\x93\"}\xb2\xe9t\x9e,\xdd\x8a\x83\x12\xf9L\xff.xd\x99\x17:\x0cJ\x0eq\xbf~F\x86%9Gm\xd8\xd3V\xce\xf4\xec\xbcE\xee\xce\x80N>zD\x9e=G\xc9\x1b\xa4\xf0\xe7\x07\xa4pX jEN/HF.I\xea<|\xac\x88\xd8\xb5Vm{O\x11B\xda\xd8\x1e\x01\xbfrVT\xf5\xab(\xef\x9a\xfe\x93\xbe\x8f\x1b\x80G\x8fH\xff\xe4\x84k\xbb\x10-\x13j\xa1\xac\xe3b\xd8\xf1\xe6\x85\xfaaR\xdb\xa0z:}\x14N\xda\xe4\xcai\x90\x0b \xf5\xf9\x90s\xa9\xf4y\x9b\x90\x86\\9.\xa3\xe6\x80\\\x93\xb1\x12\xa8\x0dzE\xae\x89\xe6\x15\xf4\x02)\xe0\xd9S\xfd\xack\xe0\xe4\xb2\x84\x07\xf5Zlc\xbc0Z\xf5\xce\xc7\xad\x9d?N\x0e\x8d\x0f\xadD\xf0\x83\xa8F&_&c\xd7\x1e\xb3e\\.\xc9\xb3\xcf\x14ZF\xe4%y\xfeic5\xa8em\\b\xbc\x1d\x08b\x15=m\xa0\xa8\x1d\xdegj\x0e\"ry\xa5\x80i\x13\x9e\x9e\xa1\xee3R\xb0?{a\xa2\xa6\xb6\x88\x16\x16\xb4\xda\xd7\xa6\xe3\xf7B\xa9\x07\xa2\x87yj\xa7\xd7\xb534p\x87\xd9\xb2\x9b\x19)\x01c;\"\xf7#\xb2\x1a\x91\xb7#r;\"_\x8d\xc8\xdd\x88\xfc0\"_\x8e\xc8\xcd\x88|\xe1\x10\xe1\x00\x15\x94\x08\xa9q\xd4(\x14\xb6\x8e\xbc\x0d\x1a;=\x89\xaa\x12^\xaa\xa4\x95lB\x03\xd3\x96Q\xfe\xd0\x8dO\xe8B\xaa\xb5\xbe\xcf\xed\xb7\xef\x8aV\xb8gG\x12l\xace\xb6\xe4\x1a\xef\x017\xafV\xd8T\xa2\xffj\xad\xd4\xd07\xca\xd5<\x911I\xf0~fg\xfa\x1e\xf35\xe3l\xfd6\xf0S\xd1$\x97A\x9e\x19\xd972\x82\xdb\x87KlJz\xed\x08\xea*\x0b\x02&Z!\xfdpx\xac\xc9\xd2[\xbd\x07\xbak\xdb\xf7\x81\x81\xce\xe0\x82\x9c\xf4O\xfa`\xb6\x836\x98\xb0\x81\xea\xdfW\xd5AkD[K[\xe9Rkf\xee\xc9\x98\xac\x958\xf3\x0cX\xb6*\xadPhG.\xc9\xb4\x94\xa2\xa4\xa8uQ~\xa7\n?v\x9dg\x1b\xc6\xce\x17,<0\x80_}\xc8\x00\x06\xd5\xdd<\xea\xc5\xc0H\xc1\xec\xf5\x0b\x08\xbdq\xec6\x8a;\xf1\xfb\xeaN\xbc,\xdd\x82e\x965\x808\xab\xefU\xb4}`\xd3\xc6\x00\xf7\xa6y%j\xaf\xfe\x16f\x11\x88\x99\x1a\xf5\xb7Vn'c\"\xc8K\x9c\x14\xa7=X\x15\xba\xa0\xda\x9b\xb4\x08\xaeW\x83v\xf3\x80\xa9|\xf0&\x050\xbd\xb0'\xf9\n\xb7(tD\xee+\xd2:\xd1\xa6xj\\\x8a\xa6g\xf8~\xbc]\xde\x8d^\\?\xa0\x82\xe1KrE\xee\xec.\xe8\x07rI\xbe\xbc ?4)\x18\x14\xe9\xbd\x9b\xffP\xb4\xe3kW.\xdc\x1cP,4+\x15\xea\n\x05\xd5\xf8M#\xc7W_\xb7m\xf2C\xce\x08)HAg\x83&Eo\xeev#\xe7{\xe52\xee\xe6C\xb7\xa4\xb0\xd6\xf7\xf6\xeb\xad5\x1cXuAB\xc5\xaf\xca\x1c\x04q\x91T\xa8\xf5\x831\xf4\xd6bdn\xc7\xa8\xa4\x8cG\x8f\xda\xcd\x0cHY\xf2G\x1c\x07>?$\xe7\xf5q\x03\x9c\x8c\xf4\xde\xe8\xdc\x08\xcc%\xe6L\xc6\xe4\xbc\x14\xb7\xd3f\x98GKcAevi\xb9\x851\xd2Y\xad\x08\xca\xf3\x0bm\xc6\xd9\xcf\x13U\xcb\xcb\n!+\x14(\xa4G\xe8\xd8\xbc1k\x97\x82\xa1\x7fO\x9b\x8bv$\x08\x99\xb6g\x1b\x92sT+\xf43\xb3\x0b\xf4\x14\x17x\xfe\x99{\x08\x87\xc3lPVDd\xc3\xa1\xc2m\x16\xed'\xe6VCjn\xae\x94\xd2 \\c-\xeb\x84\xb3\x8d3?~\xd0\x85R+\x9a\xe3\xf1f\x80\x0b;S\xcb\xb8\xa1\xcey\x0f\xae\xf0\xa6Km\x1a\xd9\x8d\x04\xda\x9b\x19o9\xdb0\xce\"\xafY\xbdIW\x8a\xda9\xe2\xe1\x1f\x14\xa9\xe2*?\xae\x1d\xf9\xd1\x03RTI\x10\xcd\x06d\x8c\x82S\xf1\x08%+\x0b/\xc3+\xf2\xac.M\x15.\xa2\x14\x1b(1~C\xd9\xec\xd7\xe1U\xedx\xc7\xb6;.}k\xd1\xe0\xe6\x82Z \"Z\x86z\xac\xa1.\xf6\xdd\xaf\xf64\xfe\x90\xd9}03SR\xca\x07\xe9\xbcL\xea\x07Q\xe7\xe3\xe8\xf2A\xad,\x9c\xe8\xb7ka\x9f>o\xd3\xc2\xe2\xb5\xb5\x03\xd5\xe4ZW\xb3\x16\x1cd\xe6\x82<}\x9e\xf3`P\xce\x82\xca\x94\\^\x91\x17\x17\x03\xe2\x83\xf1Wci\x17\xd5;\xe9\xfb\xe4%y\x81\x10\xea\xfa\xb4.&.S\xb5\xd4\xae1kg\xd8OG\xe4\xa9\":\xf9\xcd\x90\xfa\xf7\xe7\xea\xbb\xda\xfae$7\xcc\xac\x01H\xf3\xcb&`=?(\x08DG\xeas\xf1:W\x13\x8d\xda}\x8bX\xec\xb8\xc9\xfd\x11\x94\xbev\x0c;\x02\xebG\xaa\x9dv+\xa8\x9c\xc6CH\x1fm\xc2r\x084\x18\xb3\x07u\xd1\xdb\xf9\xc1\x1a\x1ci\xcd\x97\xb5\x0ev\xec\x97\x99\x84&R\xd26\x0b\xbf\xacZ\xdd\xa4>\xc4\x12pd\xee\xe1\x88F\x8bV{\xa7K\xcb\x10\xcd{GG\x86\x8aa\x8e=\xe0\xe8\xf7K\xec\x91\x96\x88\x1a\xd5:|\xbfH\xc8\xe8R\xcb$\xfdg\xcf\xf3\x8b\xb8\xb5U\x17#mz\x81:_\x8eE\xe2\xf2B\xee\xc7x\x17\xc6BQ`\xb31l\xd7\xfcb\xb9F\xb5^\xe1>\xdc/\xb0\x9cM\x17\xb4\xbe\xe9\xfca\xa8\x7f\x00\xf7:\x82|\xdc\xa2\x06V\x9d\x1f\xbd|\xdc\xe5\xad\xa8\xea\xbf\xf2\x12\xef03\x87W\xfc\xe0# \x16\x85;\xdfg\xe7\xd5\xbb\xdd\n\x81O\xdf\\\xf6\xe7:x\x9fvu=_\xa4\x8b\xd3\x97U\xd7n>f^\x9c:\xb2\xbf\\\x9ev#4#B]\xb4&?\xa0\xa8H\xc5\xb5\xa1\xab\xd8o\xd63$e1\xba.\xbbxJvMF\xe4$\xdf\xdc\xedD\x18\xb4\xca;\x89\xa2M\x8apx\xb0[zyu\xc0<\xf4\xc5\x99{\xeb\xe4\xb5\xef<\x9f\xe2\xa6\xae\x9f\xb9H\x97\xa7w\xae\x8a|a\xbe\xaci_Y8{._rz\xdfv\x1c\xf3\xecS\x00\x1a\xa4\x96\x93\x96\x1b)\xe6g.\xa5<='\xb2z\xf5\xc0\xfc4\x18`t\xf9\xf9\xa7\xaaf\xa1d\xb7\xe9\xf9y-\xfb\xfb.\xdb\xdeg\x9f6\xf7\x9c\xd8c\xa5\xeaV\x11-a\xd1\x95\x9e?(\xb6R\x87\"W\xd2\xb5\xd7\x13\x0f\x0eC{\x82h\xc0\xe7\xe9|Zq\xd6\xb7o\x0b\xd5m\xfcm\xc6\xa1U\xb5\xb3e\x1c\x9fx\xa8\xfe\xee\xa6\xf0\xef9\xfc\xfb\x14\xfe}\x06\xff>\x87\x7f_\xc0\xbf\x8c\xae\xb1\xd4\xce\xc2\x03\x1e2z\xfe\x86\xd3P\xbb\xc1P\xff\x86\x14>\xc6\xe0\xd9\x0f\x9e\x00\xd28\x13I\x06\xef\xf09A`\x12\x1eo9K\xa1\xf3\xe8b\x12\x9e\x98g\xe0N\xc5=\x8e\xa6\xf1\x11\xd1\x13f\xd8\x04tY\xb0;A9\xa3\xf0\xbc\xc1\x0b\xaf=\x01~'\x04\xc7gF!g\x06p\xec\xfd5\x8b{\xcb\xc9&\xe6_Qo\xd7o\xb9\x808g\xcb\xf2\x0dP\xad\x95\xfa\x90\x1b76\xb9\x8b\xf9\x8aCr\xcc\x95)\xb5u\xc0\xdb\xb6\xecv\xf9\x16N\x8e\xc1BdL\"\x97\xb7\x88v\xf6\xdc\xf5\xcau\xd1\x8a\xa0\xce\xc8\x04\xb2\xc9\xc2];\x17\xbb\x0bJ[]\xe4\xd8Am\xd7\xd0RA\xbf\xa4\xfa\x08J\x12x\xb0,\x9f\xcc\x06\xcd\x14\xd7\x87\x0b\x1d\xa80\xd6\xbb\n\x87J#\xb7\xfb\x81\x1b\xbfZ;\xea\xb7\xd6J\xady\x030\xef\x1199}3\x1f\xcf$Y\x0e?9EW\x9b\xb4]$\x80\x1b\x08\x14C\xa9\xf6{\xb2\xa7\xf6\x1f\x10\x03\xb5M\xad\x92\xe8\xeb\xe7)Z$\xa6\xe4\x92\xe472[no\x9f\xc0\xb9\x947O\x97\xe6\xdaH\x1b\x9fE\xff\x05\xa0\xb8M\xe1\xd1+\xb9W2\xd7\xb2[\x05\x83\x83\xde\x98\x89\x01\xed\xf4\xcd\xecz<\x9c]\x9bq[\xb7\xb3\xdf\xe7\x9f\x01H\xeb\xd2\x81Y \xbek\x92 {se=S\xdf{\x18b\x0b\xce\xbe\xb8\xbf\xdd\x89\xde\x80\xcc\x9c5\x9f\x15\xaa\xeb\x05l\x839MB\xaf\xed\x06\xb7\xea\xdc\x18w\x0c\x05tq\xdc\xdb\x81\xb9o\xc1\x14D\x14\xeb\x9d\xed\xcdB\xca\x85\xfc\x04\xfc\xb3\xf5\x06\x05\x04\x1a\x91\xc4\x8c\xc3Ia\xd2Z\xeb\x8e\xdb-_:\x8a\x0b@\xe8\x0f\x98)\xec>\xc4L\xa1+\x1c\x8ao\x1c\x80C\xc1\x00\x8b\xf6\x97\x84\x83\xff\x92@4/\xfe\xae\xe0\xed\x9a\xc0\xa3\x81\xbf\x8df$\x99\xa7.\xc0>\x02\xec\x1d!<\xacw(\xd0\xb2\x8f\x00\xe9/\xa3W\x10\xbb\x87\x1e@|\xc0R\xe4\x0fm\xf3\x88n\xa9U\xf6\x8b\xb7\xa2d\xc6\x03\xcbh\x0f4\x05\x8f\x0b\x1fDW\x8c\xa0r\x8e\xdb+}\xfb\xa7Efy\xf4\xc88)\xcfiz\xe0\xa6\xe9p\x83\xbd\xd1\xaa\xa6;Q?4^\xa4\x0b\xdd!\x87F\x83|0q!\x058\x1a\x8909DdHW@7F\xa0\xc9\xc3\xf3+Q\x0f\xc4\x15\x95\\e\xe2p\xabrD\x9a\xf2\xc0{Y\x8a\xa8$\x91Y1\xc5j7\x8f\x19\x97F\xb2F\x8a\xa4\xad!\x8a\xca!\x8aE\xda\xa8\x16\xe9\xb8\xf8Hi\x12\x9b\xd689\xb4\xce\x89\x83\x8a\x11\xd8\xa2to\xbe\x99\x90\x91n\xcd\x97W{\xe9\xcdn\xad\x8e E\xbf8\xc1\x03!\xea\xc1\xad\xec\xd0\xfcj\x8f\x7f\x82QI\xed\xf3a\xea\x13\x9b\xdce\x03\\\xb0\xe2\xea|r\xedw\xd8\x06\xc7j\xd3\xe7\x1b\x13z{M\xdf}\x18d\xees\xe8\xbd\x1c7\xc5b\x14\xc7#\xd7\xe9\x8f\xce\x12\x95\xda\x89*\xe3F~\x91}\xb6\xb5\xd6o\x15\xd0\xfb,\xf7\x08\x06\x96\x85\x8f\x1e\xd9\x89x\xe9t\x9d\xb7)\xee\xc3\x8d\xaep\x03\x05\x87\xc3\xcd\xc1m\xbc\x9d\xb3\xcdQ{w\xdf0\xc6\x8d1\x81lm\x03\xd0\xf9h\x9b,m\xa7\\4\xfb\xeb\xbc\xd2\xd6\xc1\x01\xb9\"\xf8\x90\xbdJ\x866\xe9J<\xa8\xf8\xafc\xb3\xb6K2\xf0\xe9^\xdb\x0dn\xb5\xd1\xed\xa1\x1e\x91B\xaf\x1a-\xedIA$\xceF$\xfb\x10\xb6{\x04@\xdd\xb8]A\x03\xac`3\xd8Z\xf4\x8d2m>J$\x1d\x8f\x13I\xb7!\xf8\x98\xfcs\xddlKK\x0e\x11t\x82\xfc\xd3\x89'$_\x9d\x07A!\x05pZe2\x92\x8f\x8f\"k\xf3\x8d\x1b\xf9m\xd6C\xa8B\xf4x\xe1\xb5\x1b}\x9d`\x0d/\x86\x86\x8d\xf4\x89^a\xa6\xf7\xc5#>\xba\x1c\x81\xd2\xa0j)W4\xd9gE\x1f\x89E\xfb\x03\xd8\x12\x14\x13\x14M/\xdd\xc5\x18\x91\xf6\xab\x08\xb9\xb7b\xa7\x91\x1bu\xdfF\xd8\x82\x81\xd1\xbd\xb9\x8d\xb0\x05\xb0\xf4\xf15=x\x1b\xa1\x08\xee\xbe\x08`X\x83oW\x1d\x8adT\x1e\x8du7d%%\x0ciCX\xd2\x05i\x89\xd9F\xa0\x18\xb2\xb1\xfdW\x02\xfb\xcb\xfc\x02^\xd3\xb1\xe2\x01\xb6s\xb0\xac\x83\xf9\xb4\\\xf8\x03\x1a]_x\xb5\x14\xe4\xa5/\xdb\xee\x0f\xfa\xda-\xf0\xa6\xc8j\xb3f\xb7T\xa5\x8e\xd6<\xe3\xb4\x95\x82\x8d'\xd0\xc9\xc1a\x90J\x17@\x1e=\"t8\xcc/\x88t\x01\xadn\xec\xd3\x06\x9a\xef\xbe\xfdP\xca\xfc!\x92\xf8:x\xb8\x80\x1ch\x94,H\xc6\x9b\x11\xb9\xff\xc7\xfd\x04\xe7\xfd\x04\xef\xa3\x1d\xba6\x8a\xcb-\xdb\x87\xe2\xfd\x04\xb7\x91\x9a\x0f\x1e\xb6.\x8d,\xaf\x8f\xc5\x07\x95s\xf1\xd4\x11=\xceZ\xf37\xde\x14\xcc}\xce\x0fP\x13\x12\xd5\xaaE\x9dH#\x19*\xe8\x90R\x971\\\xdb\x0d(\xeb\\O\xc9\x7f>^\xba\x82%o\xd51>\xb9$\xf4\x82\xf8m^]\x88\xa1Is\x1f._\xa5]._\x99_\xdc\xc1\xbb\x0b9\xe8\xe1\x858i\xa9\xf9\xe9\xcdM\xd7\xfb\\\x9aN\xe0j*\xda\x0c\xa4\xcd\xd2b\xbe\xd0\xd3\x11\xe1f\xf1\x15\x97\xca\x01rSYzu\xa2\x03K\xc9\x1d\xf5\xa8\x8b\x19DY\x8c\xaaQ\xac\x8eP\x1eV\x96\xf3CMw\xb4\xc1\xfb\x85\xec\xef\xf2an\"\xeem\xe3\xdc6\x86\x1f\x8d\x88\x1d\x8e\xb0r\xfe\xf4\xb9#\xc0J\xd4?\xff\xb4\x92L\x1b\xe2\xae\x08vgbc<\x9d\xba#wD\xec\x16\xa7\x1as\x9d\xbbs\xb1\xd4\xa3\x89\xcd\xf4\xd4\x9diE\xbd\x1b\xe1{7&\x8a\xcb\xd3\x86`!k\x16\x98\x1c\xcf\xdd9\xfc\xc8\xd6\xf1\xc2\x9d#\xa4\xdc\xc4\x1ay\xda\x10Q\x86\x85\xc9\x8e\xa6\xbe\xad\xe93w\xb64[\x99\x1c\x9f7\xe5Ht\x8egg\xee\x1c\x81\x1f\xd9^?k\x18h{\x95\xc4\xac-\xcc\xdd0\xe0\xc5\x8b'&k\xc3\xb0S\x1d\x1e\xc8dk \xd1\"\xa8 \xe4\xf2\xaca\\Y$|qo2}\xd6%0J\xf6Q\x02\xa3\xe4^\x90\x9c\x81Q\xa8 \x8cB10JE\x11\x0c\xd9\xf7\x18\x81\x99}\xebG7\x8a@\x17\x16i\x1d\xea\xb4n\xe9\xb3\xb7\x81t\x91\xd8\xb7E\xcc\xd5\xbc\xc3\x1c\xc6\xabb\xbe9z\xf9J\x8d\xa1\xafXI\xf1\xf8f\xd63\xf1hU\x89\xb9\x0d\xa6\xdb\x1b\x15\xe3\xed\xf6\xc0H\x0bM\x9c\xd6T\xd0\xde\xd2\xd6 \xcc\x11\xce\xac7\x98\x9f-]\xe6:Y\xc5\xe7\xf5kE*[=\x86C\x9fG\xc6KLa\xd4KQ]j\x88\x02\x8ez\x8d\x8e\xac\xf6\x15u\xafI\x9c:4y([y\xd4\xdb\xb1\x7ff\xa2\xef\xc3\xe5\x97\xb3\x01\xe6W\xe8R\xd1o\xb9MP1l\x03b\x8f \x97$\xbe \xa2Mx\xe2s\x01\"\xcbI\xc1g\x08\x04\xe2\xd2\xa0\xfc\xa0@\x19!\x10\xce3\x86$N\xf1\xdeb={)w>\x17\xefG\xa5\xe90\x1b\xfd\x8e\xfe\xdb\x0fNIy\n\xf2!G\xf7\xf40\x98\x97\xc4o\xd6\nF8x\x91q1s\x02\xc3\xc9\xe7\x11\x8e\xd3t0\xc0}\x84{W\xd6\x18\xe8\x187z\xaa\xf5\x97`\xef\xd4z\xbb\x9dM\x12\x16\xad\xfdh\x8b7\x04S\xee\xcd\xf5H/\x1b\x06\x95\xe0d\xe8R\xa0\xf7P\xe4\xe1;L\xe8\x0f\x9aF\xff\xd8\x802\xcdaO\x1ct\xc7\xeap\xfcF\xa7\xdc\xd9\xaf\xc8\xb1bB\x9dd\xf1:\xc2\xa4\xb7\xbe\xf0v\xc4mw\xed\xd1\x94\x91\xe9\xd9\xcc\xfd\xe1\xf3\xf3\xa6\x0f/\x1a>m\x1a\xad\xa7\x9f65\xdf4(\xd3\xf3\xc6\x91o\x82\xebE\xd38>w\x8c\n)\x98\xd29vbk\xb6\xa1Y \xda\xcb5\xf9S\xeap\x94\xd5H\xec\"\xcb.\x80\x1c\x192\x06T\x89\xd7]7G\x83\xc1\xc5@\xd1&'G\x8e\xf4e\nE\x82\xd4\xb6L\xe8\xbb\xe2UJ\xa3\xad\xf4!\xa3Z\x87\x83Q\xce\x82\xca\xf6\xe2\x1f \xe2w\x1e\x8b\xaa2\xc8\xc9;\xa7\x0d\x17E\xe2v[?=\xbc\xd8\xff\x82\xf1\x81\xd1#\xe1h\x8f\xc8\x89p;\x9a\x85\xd3\xcb\xb3\xd2\xf5TSYyV\x9c\x88ck\x98\x1e\xacA\xbb(9\xa0\xc6\xb0\xf4\x19U^>\x9eS\x12\x7f<>\xac\xb9\xb0~\xd4\x1c\xcd\xfb\x9d\xd4\x189\"\x15\xab\xc9\xedE\xce\x14+\x1e\x92iC\xe8\xd9\xe2\xefC4\x1d\xec\x90\xfe\x9d\xe4[\xe1\x1d\xe5kh\xabE O\xdaw\xbd\xc5\xdf{\xf70\xd7Xzi|\n1SG\x87\x81\xd7\x80\xa7\xf1F\x1c\x02\xbc\x03\xd0N\xa3\x11\x0d\xeb\xc1\x13\xb7C0\x1ch\xdfiv\x17\x0f\x87\xe8\x19\x9a\x93\x96;\xdf\xb1\xa2rq\xe3\xfd\x1b$U\xf1\xc7RF\xd8\xa5\xc5\xb59\xb8\x0e\x9c\xa2\xc0<\x7f\xfe\x02\xfdP\x13\xbd\x19;+\xf4\xaa\xb7X\x9c,z\xbf\xfe\xe4\x9f\x1e=\xee\x0f\x9e\x0cG\x93\xd3\xd9\xc5\xe5\xd5\xcb\xeb\xdf\xcc\x97o\xde\xfe\xf9g\xf9\xfe?\x8f{f\xe3\xd2\x1bt\xbboQ6\xb4Z\x92\xabb$\xa9\xca\xe5\x8b.d\xd5\xd2\xd4\x96\xad\x8a\x92\x9bk\xa4\xf3\xf3\x06\xbf\x8b\x07(\xeep\x18\xe3\xc5\xdf:j\xf9\x8d\x8e1\xf1\xb6\xf0\xf9\xf3\x17\n)\xcc]\xb0(\xbf\x88\xd0\xc4\xc8\x8c\x8fg\x85\x10\xc3+r>r2w\xcd?\xb4\xc3J7\xca\xebM\x15\xf8\xf4\xea\xb6B\xbb\x90\x96N+\x14\xa2\xf2 \xb6\xf9\xc7/\n\xf3k]\x1c\xb6\xb1_5\xbf5\x0fuo\xb1\xe8\x99aV\x1b\xc1\x8f\xb3\xea\x8eE\xe4\xd29F\xb3\xa0\xa0c\x89\x1c\xe3*\xc8\xee \xb3\x11\x01\x0f=\xbc\xb4\xa1\xcc\x0c\xb5\xfa\xfcE\x93+\xa1\x8b\x81*\xe8\"w\xa4,rE\xe8\x12\xc3\xd7\xc1_\xb3\x0b\xb0\x84\xac\xdc\xa7)D \x81\x93\xbf\xe6\x8d,\x85sx\xb8\xceH\x0fAIU=\xd4\x85>>\\\xc0\x19+\xa8\xae\xf2\x00\xb6\xe5\xc5\xd7\x85_4\x84\xed!\xa4\xd9i\x85_\x08\x93?'\x8bh9\x04\x93]\xd2k7Q1\x91|\x9a,S\x0e1\xa6\\\xde\xa5\xb5u\xd2uU\xc4E\xca\x93G\xfd\xfd;Z\x1cJ\xb2\xadu>m\x91\xb1\xcf\x1b\xd6N\xdaN\xf2\xdb\xed\xd7R\xf4^\x06w\x91[\xb257\xfe\xcb9\"\xf3u \xce\x94\xbc$g\x18\\\xa0\xda6\xd8.\xcf\xc0)\x96\xd3\xa7\xb9\x82\xee|0\x02\x03\xca\xab\x83\xd7\xdcL\xaef\x9f\xe7~\xee\xed\x8c*\x9c\xd3|\xab\xb9\x00\xd0\x01\xaeC`\x9ec\xdc0\xb8\x99n\xda\xaa\x81\xcc\x15!\xa8\x05\x0d\xf3\xd1\xa74T\x93\xc7O\xb2\x08\xce\xc9\x98\xa4\xa3FF\xacWt:\"\x1c\x0f\x89\x1c@\x9a%\x97\xe2A~\x8c\x8e\xe4u\x0b\x10>.k\xf4v\xdd\xd8\x19TC\xb6\xf6\xd7\xb6\x80\xceH\x9c\xf7\x161\x0f\xda\x0dY[Xj\x96\n\\\xd2T\xc3\xea@\x11\x9b\x01\xd1\xc4\x82b\xef?\x9a\x8d\x17\xbc\xd8P\xa8\xd7$\x1e\x8f\xc9\xcc:\xc1/|\x84\xe7\x18\x1d6]\x82\xa7\xe7&\xa1%\xfa\xc0\x18J\x04wSxjou\xe6}\xd6\xc1\xd4;\"\xd7zF1\x06\xaa\xd6%T\xe6\xd8\xa2K\xbb\x15\nk6 m3\x8c{\xef\xf6\x98\xd6\xb6\xcb*\xb4\xf8@\xc3\x97\x02\xef\xb0\xdd\xd7\xd6qv02P\xa2\x90Y\x01\xe7A\xad\xfco\x963h\xdf\xfd\xff*\x8c\xa1\xb1\xed\x7f\x13|\xe1\xd9\xd3\x0elAg\xfa[p\x85g\x0d\xee0\xdb\x98\xc2\xc9\x95\xae\xe7\xef\x8e-4\xf5&\xe7\n\xad9\x8e`\n\x1a\x0b\x1f\xce\x13t\x05\xff` \x9dX\x82\x1f\xa5\x7fc\x96\xa0Z\xfc\x07K\xa8\xfcZX\xc2\x8b\x06w\xc3\x7f\x0b\x96\xd0\xd8\xf6\xbf \x96\xa0\xdd\x9e\xb5\xb3\x04\x9d\xe9o\xc1\x12tS\xffNXBSor\x96\xd0\x9a\xe3\x08\x96\xf0b\xfa\x81,AW\xf0\x0f\x96\xd0\x89%\x84\x94\xdf\xfc\x8dy\x024\xf9o\x8c)\xd8\xe46\xd3 \xb3f\x89\x0d\x00\xc50\x00\x14\xa8\xfaT\xea\x8b\xe76\xf5\xf33\x9b\x8a\x9e\xe9X\xd53\xdd\xd1Q\xb9\n\xfeR\xeb\x03\x9b\xa1-}-=mH\x0fZY\x98\xe7Z\xc6\xc2u4\x85\x97\x0c\x1a\xc8\xbb\xc8\xc9;\xeaZ\x03\x18\x89j6\x8a\xa1\x95=\x97\xaaU\x0f:\xdc\x16\x81\xd2`5\x0f\xf7\x9a\xfa\xa8\x10\x1e\xeb\xab\xa7\xcf\xc85\x8c\x02\xf4x\xaa\xf0\xe3i!\x9a\x1f\xb6\xee\x80\x91\x16U\x10H%bt;o\xda\xd1\xd5D\x85\x1c\x91u\xe1\x0c9>G\xa7\xb0\x1e\xc0\xc7\xfb\xda[\xad\xad\x80\xf7\xe3\xdc\x15\xf3\xc9t\xa0\xd0\xbc\xbe|<\x1a\xc1J\x9d\x91\xcc1!4\xc25\xe5t\x07\xbff\x81\x1f\xa63\xe27\x10\x97\x07\xd8Z\xe4RO\xf5\xdap+\xe2l\x9a\x0f\xce\x12\x17Nm\x06uF\xa9C*&\xb0\x01\xc0\xb1O>@\\\xfb\xbb\xdcW>z\x84\xfd\xd3s\xa4\xbax]7\xb7\xb0\x01\x05\x90\xad\xa3C\xea\xd3\xfe\x1b9\x7f\xb3X,\x07\xfd\xc5b\xb1\x18\x00\x83>9\xcc\xf9U\xb6(?K\xd5\xb1\xf8\x80\xcc\x18s\x08\xe3\xdc\xd4\xde\x07}p\xfc\xe1\xc0O\x9du\xe0\x87+2_\x0e\xcc\xee\xac\xfe\xbd\xe0V\xd4E\x0e\xe2\xc3\xe8Xv\x0cR\xa7\xcb\xeb\x87\x84\x8d\xac\xac\x1b\xdc=\xd6\x1c\xa1\xba\x17S\xbd\x93s\x7f\xa9\x06\xaf\xde\x03\xa8p\x96W\x9d&\xb8\x9d\xa9H\xfe\x95%ZXCqm\x07\x90\xd9\x08x\x1fc1\x1d\xbbhJa/\x9b\x17M\xcbU\x1d\xc5\xba\x9e\x92\x97\x07\x8c\\N\x1c\xf8ZM\x83 \xd6\xad\xb54EGo\xb9\x16\xd4\xa60\xc8~9K#k\xa7\x93\xe5v:\xf4\x82\xf0\xe3\xa3\xa3\xf3\xc3\x81\xd7\xa6\x0d\x02}\x87\xa2M\x81\xd5y\xf7\xc0\xeahG\x04\xfd\xd4\xe4\x8e\xab\xe1B\xd7\x8a}\xae\x96cT\x11k2\xe3\x05\x10\x05#-\x12\xe1\x1c5\xc65\x8f\x96\xcd\xe4\xaf\x1bMk\xaf\xfc\x12D9\xad\xaah%|\x0e\x82\x11\xbb \x86\x8e\x98\x1e\xb9\xb4\x08Y$f\xe4\xacN8\xda`\x84\xa8\xcd3\xe2\x82\xb1\x94\xb1\x99~\xcf\xe3\xe5\x04\xdan\xec\x08~\xd6\xd2\xc7\x87R\xf2\xd8\xc1\x80\xb3\xd57\x0f\xa0\xf1\x05\"\xcaK\x04\x94~\xc4\xc0\xe4\x05Y\xe4\xecY\xd5u\x99\xd1\x99|\xe6\xd0\x99\x14\xe2\x8a\x9e\x8d?\x9f\x9c\x80\xf2\xf4\xc9pqzum\x15\xa6\xc3\xdf\xe49\x96\xfd\xebY\xfe6^\xfe|6z1}_\xf8>\xb8\xee_\xcf\x16\x93\xa3J\x0c\x9e\x0c^\x9e\xd6\xf56\x05\xd8&\x8b\xf1\xf2\xe7\xe9\xe8\xfc\xf9\xfb\xc1\xac?\x7fs\xf9rqwv6^\xdc\x9d\x9f-U\xd9\x87\xf3\x91\x92n\xa7U\xc2z\xd1\xa8}\xd0\xd4\xa3_\xa5\x16\x9b\xa2\x13\xaa\x97\xbd\x82(\x04\xaa\x90H\xab\x0f)\xb8\xab?\xe9s\x9b9\xab\xc5\xa1,\x94U\xbb\xa1l~\xb6\xd4\x8dL\xf5\xd5~\x0f\xac\x08\x02\xb5\xe7:\xb1\x02C\xd1/W?(\x8ba\x1dd\xef\xd6\xfd\xc3\xc1]Be\x1d\x1c^\x96\x02|\xe69(\x8e\xd6[\xba\xc2S\xb2\xaa\xe3\xc3\xa3[\xed\xb2\xcb8\xb0\xb2\x87zF\xf2[\x98\x03E\xedN04i\x94\x874\xb5\x13\x986M`/\xa4~ b \x87m\x93\xe9\xfdc2K\xbf\x8f:\x99iu2?\x0e\x91.\xd2\xa6y\xcf\x8b1N\xe7:\xf6\xeb\x8e\xe8(\xa5\xfa\x0fD\xe6\xa4\xab\x18CwR\x0f\x0b\x99?>\x04\xd6\xf48\xfe\x05\xb7u\xf0\x17#\x94\xfa\x18\xffs\x0d>\x1d\xads\xbb\x8d\x80\xb2[\x16\xc3\x1f\xfdo\xb2\xd3\xd1E\x9f\x9ec\x04R\x81\xd9\xd4_(\xee\xd3;\xf8\xa3\x9b\xf6C\xfcW\xbfE\x1b\xa8\xc7O\xf0\x95\xfb\xa9\xf9;Y1f\x13'w\x89W|\xces\x05\xb7\xef\xd4s\xb0\xc6\nq\x19\xc0\x13\xf6-Lyb\xfeB\xa9P\xfc\x84 Y\xa2V\x85z\x8c\xd8-|\x8a6\xf8\xc7\xc7\x7f!\x16i\x14a\x7f\xe2\x84\xfe\x94\xb1 \xf6n`+\xa4\x92\x92\xd8DD\x85b\\\xa4\xf0\x9e2\xbe\xf7=\x86\x8fij\xe2\xa1\x9a\x81I}\xb6\xc7\x8f\xbe~G\xb8\xd2\x10\xffD!&\xc74\xb1C`_ \x0b\xfa\x84\xec p\xca\xa9\xfeD\x188V\xe8\x19\x12;?\x0dY\x9a\x82\x06\x8a\xf4D\xf4\xf4\xfc\xd33x\xc2\x16\x05\xccr\xc6\x01\xae=\x0bC\xe8/\x0e\xc1-\x86t\xbd\xf3\x10j\xf5w\x9c\xa5L#\xca]\x18\xf0\xc4\xb3`\x15^\xb1T\x88\xd3\xf8\xee\xe9\xe7\x93\xe7g<\x7fDd\\\xfbYx'8b\xe8&\xc1?\xf8 \xb1\x82j$\x16\x82z\xbb\x90E\xf8v\xab\xfe]\xb1tG1\xf4\xec\xca\x17^\xeccX\xde8\x80\xb9\xf6h\xa0g\xdd\xdb\xf1\x18\x83\xda\xe2\xd3\x98\xdd \x16\xa566o8f{\x16\x89\x15\xf7\x05\x1bS!X\xb4f\x98\x1d \x0c<\xee\x01\xa8u\x10\xd1q\x12\xd0\xfb\xd4\x8f\xb6\xda\xbf\xa3IR\xb9\xa9\x1f!\xea\xaf\x05T\xbe\xde\xaf\xd4\x1f\xb6>\xbfQ\x7f7\xd4c\xc2GX6\xcc\x84\xf9\x8d\xb6:\x84\xaf\x9f\x02zma*\xb7\xbe\xc0?\xef\xc28\xe1\xb1 \xc0\xbb\x154\x80\xbav\x1e\xae\x04=+~\x82\x7f\xb8^\x13\xde\x0b\xfd\x17\x97\x85@L\xfa\x91BK?\xe2\xdb\x0d\xbbO(\x16\x08h*60\xe0j\xd5\xe0\xa2\xa0[\x8dD\xa1M\xe17:%G\xa5\x10\xeb\n\xd3\xf1\x8e\x05zYE8wa\x16\xea8\xbf\xe1\x1e\xa0\x03\x19[=\xc4\x88; \x0dB\xfc\x9bPN\xdf\xbd\x03\xa4K\x02*L4\xe3\x84\xc7w\x10\x1f8I\xef\x01\xce\x9f2\xc6!\xc1,0\x96\xc6\x19\xc7\x95\xc5\x11iyz\x1fA^.\xf4\xb2a^\x1c\xad\x03\x7f\x83KL\xaf\x88t\x8bk\xf0\xe6>\xc1\xf4\x10\xa6*\x8d\x835\xc5\xc0\xc5I,\xfc\x0d4\x96\xe2\xc4\xa4\x82Q\x00+\xc5\xee\xa8\xd74\x01\xc7)\xb0\xc2\xa2-\xc0\x94\xad\xa1\x81,\xe2\x8c\xc2r\xcc\xc4\xf9\xd9\x19DaVx\xc6}D\xd0\xbd\xcfn\xc79\xf4\xb7l\xe5a\xf6[Aq\xf5\xdd{\xfe\xed= \xc3\xdd\xc6GD\xbf\xe3\xf0\xe9>L\xb7\xbc\xb7|8\xff( \xf9\x9f\x0e&\xbf\x7f\xfd\xea\xdb\xb7\xaf\xbf\xf8\xe7\xb7\xdf\x7f\xf5p\x01\xb8\xa2Eq+\x17+A\xf8I~CE+^\xc8Ic0}\n\xc7\x1aE3\x05\x14\x97\x9f\xea;\x8dN\x97\x0e\x06\x17\xa7\x15\x8d\\\x8a\xe5@u\x04\x98\xac3?\x9d\xbeW\x99\x1f\xce*\x8b\x97v\x1c\x04\xab\xc0\x0f\xeb\xfa\xf8\xa7\x9f\xb9\xb9\xa3w(Z8\xde8\xdd\xb8/\xa9<}\xee\xd6Iy\x9a}\xbai\xa6\xbf1f(9\x93\xf1\x0c'+\x1cI\xa0rA\xf1\xe7\xde\x1dF\xaa \xe6\xd3\xa5b %\xdd\x14\xb9&\xa0\xa1\xf8&\x12}\x95\xc1\xe85\x06#2}\x01\x01\xd6\x8b_Gd\x8aa\xb6\n\x97\x81\xfc~\xa4j\xa1}\xa0\xcc\xb4\xff\xe2\xf9\xf3\xa7OK;\xf2\xa0\xcc\xb6\xea\xc4\x1am6\xc0p\xa8\xb1k)2\xe9X\xf1\x01\x05J\xb5\xa7%\x98\xf8\\eY\xb6\x00\xe1\x14\x95\\\x0e\xec\x1e\xfd\xc2\xfe\xeb\xca\xb3\xac\x05\xb5\x99c\xf2\x95\xe0\xe1\xf6[v\xa7>\xfd1k\x88\xca\x01\x07*iC\xc4\x0e\x1am\xbf\xe3l\xe3\xdf\xcd\xd4\x8e$\xdaft\xcb\xc6.\xed\x8b\x1f\xdd\xf8\x9b\xfb\xc6\xf8*7\xaf)\xdf21sJ\x03\xe2>\x89!\xa8\x08\xe3\xee\n\x809\xa63\xd2\xfb\xeb_\xfe\xcf\xbf\xfe\xe5\xff\xfa\xeb_\xfe\x8f\xbf\xfe\xe5\xbf\xb8\xd4]\xfev\x17`\xfc\x91(\x0b\x1cJ\xa8\xfc\x8clF\xce\xab\xa7\x1c\xa5W/\x0e\x938b\x91p\x8e\xb5\x17s\xe6JW?\x9e\x05\x10\x8a\xa5\x07\x9e\xe4z\xa3<\xea\x8b\xda\x1c\x19+\x19|\x03\xc9E1\"x\xd7\x83\x88{\x1f\xca\x05v\xbb^\x8e\xaeV\xfc\\=\xd8\xa3\x0eA\xfd\xa0\xe7\x08\x83\xe8\x98mto\xd7\x05th\xbe72\xce\xf7\xd4\x06\xd9@`\x1aV\xcf;F\xd7\xc8 {;T2\x890\xb0}\x0f\n\x9fu\x90\xbeB\xd0\xa6\x91\x8e\xa5\xdb\x0dv\x1c\xc7\x83\xc0\x17\x02w\x94b\xa7\xe8\x00)\xc5\x00&y\\\x8e<\x14K5FH!\xc2\x87\x0dHR\x08\xef\x82\xbaP\x07\xfc\xbfr\xbf\xfd\x83,\x14?\xfe\xbb$\x0b-\xcb\xae\x0d\xab\xff\xce0\xc6q\x1d\xbe\x801\x8e\xaf\xff\xc0\x18\xf8=\x04cj\xe9\xe4(F\x82\x0c\xa1\x13\x0d\xfd8\xf4\xffCh~'0?\x94\xd4\x1f\xa2\xf1\xff\n4\x1d\xb6]\xf9\xd2\xe4\xc5}IU\x98w\xaffS\x0b\x83#&jf\x1e\xfez<\x8e\xeeQ?\xbf^s\x86\x07\x04\x943\xcc\xc5\x85\xef\xa1\xde\x97\xa6>N&\xcd\xd6>h=A\xc9\xbaZ\xfb\xf8\x07\x93|\x18\x99\x95\x1d\xda\x12:\xac\xe25\x8c&\xb6\xbc\xca\x84\xd0z{\x1a\xed\xf1D\xcb\xa3\x890\xca|\x16 T\xa6{~\x19\x9b\xbc8\xd0\x7f\xb6<\xce\xf0\xc4+W\xef\xe7\xa7]\x82\x1a\x1cZ\xe39\x18\xf3bNE\x8cZ}d\xe9k\xa6$ d\xf2\x1b\xd4\xf3\xfb\xf8\xdd\xc7\xc32\xcc\x05\xb5\xb0\x80\x99S\x0b\x06\x03\xb6\xf1Y\xb0N\x99\x8e\x11\xb5-\x00\xbf\xf1\xb7\x19\xd72\x01\x96P\xb2\x81>\x1b\xd0\n\xf1\xdd\x14\xfe\x05yl\x87\x87k\xa0X\xde=\x87\x7fA\xe9\xaf\xd6\x83\xf9\xab\x0f\xe2l\x9f\xf3\xf5\xa3\xfe\xc2,\xf8!\x0c\xbf\x1f%x.\x88a\xdbz7+\xa8\x04\xacw\xe0\x81mY\x84IP,\xa4x\xde\x12\x9aC6\x08\xe5\xa6\xfe\xfe\x94\xe1\xf1I\xc8\xa2\xcc\xfc\xf5\x05\xf6>d\xbaC\x11\x9e+F1\xce+\xceN\x9c\x08\x0bil\xc7%\xce\x84\x06\xcd\x9c\xad\xe1\x9fxk0\xef'\xf5\x0f\x9e\xe9q\xc8\xc8\xb3\x15\n\xb6\xf0\x0f\xb5\xe7\x00\xa6\xca\x94\x05\xfa<%\xdd\xd1u\x0c\xc7IiH\x03\x80\"\xd7\xc9\xa7 \xf5\x10\xdc4\xa1XPp\xff\x86\xe9\xa7\x18\x89N*\xee\x11\xdb1\x08]/\xcd\xc2\x90\xe2)\x05\x06\x9d\xd3R\xa7z0\xd8,`$\x05\x0b\x93@\x1f8*\"`V\x90P\x13\x0f\x0f(\xb4\x9a\x195gG\x82\xe3\xbf\x14)\xa0\x80\xbc0\xd6\x19\xf4`\x8f\xc7<{\x7f\x8d\x07\xb3\xb7+\xdes\x04\x8a\x03\xa3\xb0^\xba\x87^\xe0\xd2\x0d\xc46\xb8GQ\xd9<\xafQ.5\xaff&i\xe4\x87T0/\x0epm\xe8\xf706c\xac\x13\x04\xa7Qj\xd0\xd7\x92\x81\xc2\xea\xf5\xb9&\x16^\xe0' \xc5.\xaf\xd9F\x0b\xd1)\x9c\xe5\xb0 \xf0\x93\x14\x17\x87\x1f\xd8E\x81\xcb\x04\xcf\xcb\x0c\xdc\xf0`\x84\xe9\x1b\x86G\x9a\xda\xf6\x1e\xe8\xaf\xfdK\xf9\x96\xd3\xb5\xaf\x97'\x9cnq|J\x11\x97\x99\xa0\x862\x84\x06\xb2\xc2_\xa1+O\xe2\xe0~\x1b\xdbG\xcb5\xe9\xda\xa7A\xb1 n\x90N\xe01q\x8e9\x10\x01\n\x9e\xee\xc3U\xac\x0fq\xef\x84\xf9k\x1a\x05\xabzx\xd0\x1d\x14\x061\xed\\\xef}\x06\xe8\xbc\x87\xae;f=\x82Y\xdf\xb0\xdf\x06z=o\xd8\x97j\x12_Q\xc1\xfd;\x93\xa0\xc5\x88\xd70{z\xb819\xd5\x94U\xbdF\xfb8\xd8\xb3b\xc9\xdf\xf9\x9bM\x96\xb2o\x958\xa3\x99\xb2JL\xed\xde\xf3\x15\xd2\x0bH\x144\x12\x90\x13S\xbe\x0e\xe2XC\xf4u\x16y_\xe4\x8f\xbf\xcd\x1f\xff9\x7f\xfc\x1e\x1f\xff\x99fi\xea\xd3\xe8\xb7A\xa6\xe1|\xc5\xf8\x96\x15\x1e\xff`E\x8aW1Ovq\x10o\xef\xf1\xfd\x8f\x9b\x8d\xa1\xc5\xa87,\x80\xf3C\xc2\xbc,\xa0\xbc\xdc\x97\x1f\x92\xb8\x98\xe9\xb5\xb1\x84`\xaf3\xbe\xca\x02%\xb4\xb8F\x1d\"r\xf4B=\x8f!\x8b\xb4e\x89z\xe6\x1c\x97P\x08\"\x0f\x9a(l8\x05\xc4\x0f-^\xe3\xe9f\x08\x04\x99\xad\x91\x04\x84a\x16\xf8h\xea\x81\xa7\xb0H\x92\xd1\xd8!\xdektN\xe8z\xad\xabMv4\x121\x92b\xae\x89L\xc8\x91\x00\xea\x83\xdc\x04\xa8\x1e&\xfc\x84\xe44\xbc\xb7\x98\x1aj\"\x17j\xd2\xa6\xde\xcd\xa3%s!\x92\xb7\xd0\xa0p\xa8\xa1\xcd\"\xcd\x90\xf0 \x00t\x8cU\x0cc\xf5k\x14\x8b\x1c\xd2\x1a\n$\x9e\xc7\xb4m\x80%\xeb4\xf0\xb7\xfa\x01\xbfd\"V\x12q\xc0\xb4,A\xbd\x1b\xc5`\x10\xefW[K\xbcV1\xd7\x90y,\x08\xd4x\xe9\xf9V\xafj<\xcc\xeb\x8ey78\x94V\xc0\x08(2!/`Hvm\xad^\x8cB\x82\xfa\xab\x97\xa9\x17\xc7|\x8d\x89\x9a:A3\x8a!\x8cW4e\x86g\xd2\xd436>\xe6L\xcf \x84M00\xd3w~\x98!`\xaa\x8a\x8d\x9a \x16y\xf7&A\xd59Nw\xfe\x06\xea[1\xbd\xd2V>\n\x1e(!\x16\x96/ZB\xa9\xbfc\xc3o\xe1E\xed\xffz\x95u\x1d\xf3\xb1Z <\x89\x03j7\x1f\xf5\xe41\n+i\xfe9\xe1\xb11\x9e\xc3\x04\xce\x14)4\xf4\x05f\x07\xbb\x80\x8b\x1d\x12Pf\\#k\xf5\xe2\x08\x18'&\xf1\\\xa8]\x03\x97\xd5Y\xf7~\xaa\xf7,\xc8\x14\xd9z\xcbB\xcd\x06Y\xc0\xf6\x16j#\x04\xf8(\xfc\xaa\xbf\xe3XQ<\\\xf9\xf0nF\xa0 z)V=\xb6#\x82\xaf\xc5bq$\xc6\x1b\x1a\xfaA\xfejP\xdb\xbe\x8c\xe9\xfa\xc7,\x15y\x9a\xe0L\x8bA\xfa]c1\xbc\xed)\xf7i\x94\xe7\xbe\xb5h\xb6A\xd9\x03Z\xda\xc2\x06i\x0b\x1b$`\x9dc\x83?E\xb9\xd0\x08eY\xe4#\xe34 %i\xb5@8u9M\x1a\x950Y\x9e8D-?\x82va\x99\xdf\x00 7\x98\x00;\xb5\x1b\xd8\xa9)\xb1L\x17\xbaa\xf7\x89\x929R\xfd\x92&\x10X]\xbf)n\x00\xcf\x96\xd4\x02%\xcd\xc7,`\x8a\xd6\x8d\x0b\xecI\xd5\xcd\x82\xd0\x8ac\xf8\xae:\x99S\xe1@K3\xf9\xe4\x05\xb16P\x1c\xb3\x84\xef\xbc\x1d\x8d\"\x16\xa0\x00\x84=\xbdw\xa4Asw\xd0\x8f;\xe8\x07\xca\x1f*7\xfc\x03_\xee\xe1\x0b\x18|\xbf\x8b\xe3\x90Fk%09d\x94\xac \xa3\xf4P8\x81U\xaa\x97\xb4\x15{Vl\xcf\x02-k\xdbM\x9a\x17\x07Y\x18\xa56\x13\xbe[r\xad?kQm\xcd\xa28\xb4Y\xd7,\xd1:\x0d+\xcb\xe7l\x1a\x1es>\x07\xbbG\xf5\xc05ykbA\x81\xc2\x1f-q\x17H{\xc4\xc4\xce\xf7n\"\xad\x17\x0b\xecV.\xb0\xfaT\xb5\x05-\xef\x83T\x8a]g\xea\xc50j\xf5\\\xe0\xba!\xbd\xb3_\xfc\xc8>\xc6{\xb55\x81U\x03\x8dFqNL\xa3,\x1f\x07#\xad\xf3\xf8\xd6\xa6\xf1\xf8\xd6\x8e!\n\xcc\x06w\n\xe23\xb7\xbd\xe0\xb6\x17\xb8\xe7\x05\x03\xc5\xfc\xb5\x00\x95\xde\x13\xfb\xef\x98\xde[\xf8Z\x8f\x07\xe8e\xb5\x80 \xb5L\xc2\xbeh\xe2\x03\xa2\x88V\xe2\xe9 \xffV\x96L\xb3\xa4\x9ar\x1f\x86Lp\x1f\xe4\xf1}N}\x0e\x8b\xcex\x83\xe3.\xf0\xa3\x9b\x99\x99\xe3\xbb0\x98i\xebzH\xb7\xe2\xba\xfa`G\x03\xaa\x9cA\x8e\xde\xb2`?I\x8a&\x8f\x81\xd3\n\x89T#7\x9b\xab\x9d\x17$\x1a\x8f/\x06\xa8\xe8\x8c\xb6=ru\x05\xa6\xa6\xf1\x86\x88\xb9\xb9}:\x87[\x98\xeaO\xe5f\xd9\x88\xb0\xb9J^6x\xdf2\xa6\x9b\x95\x83\x0d7\xe4^\xbb-\xae\xebp\x93h\xf5\x16^\xa6\xad\xb7\xaf\xbdc\xfb\x11a\x03\xf2\xc7\xd5\x8f\xcc\x13\x85\xf0\xf2;\x9a\xfe\xf16\xfa\x8e+\xd1A\xdcO<\x1a\xc0\xe0i\xcf\xd1\xba\xd7l\x1e-\x1d\x9eT\x8c\xc9N\xc3\x91\x0d\xd1\x80o\xc0\xbb\xdc\xcf\x8b\x9f\xe7\x8bt\xf1\xc3\xf2\x89\xd4\x7f\x17\xef\x17\xefO\xb7a\xbdG\x89*p\xf9O\x95\xec\xff\xf4\xd2\x99y\x0d\xd6jk*\xe8x\xbe\x18/n'\x8b\xec\xec\xec\xb7\x9f\x8e\x17\xd9\xd7_\x7f\xfd\xf5\xf2\xd4q\xf2\x08%\xd4\x12\xc7\x12\xcb\xe1'\x8e\\{\xc8\xd5\xbf\x9e\xe1\xff\x1b\xb9\x13\x03\x91\xa4\xd7\x12o\xd6H\xc1\x02\x89\xd7-\xa4\xe7\xaf\xe5]\x98$\x83\x99\x9c\xbf\xa1\xe3wK9\xa7\xe3w\xc3\xc9b\xbc\x1c\xf6\xafg\x90\xa6\xdefK\xf9\xc9`P5\xb7#\xda\xb3\x154\xb6\xb8\x1d\xe2\"\x93`\x829se\xde\xaa\xccs\xd5\xcd\xb3\xb3\xb1\xfas~\xa6\xfe\xfd\xe2l\x91M_|\xa6\xfe\xfd\xec\xec\xabEv\x8e\x9f\xcf\xcf\xce?W\xff>\xdf,\xb2\xa7ggg\xcb\xd3m\xbd\xca{rEz\x06 \x8b\xf8\xff\x03hf\x15.\x18%m\xed\xe3D\xc9\x0f\x8a\x86\x90\xeb\x03\x16\xe5\xa4\x803XC\xdd\xa9\xee{2\xeb^\x0b\x03\xc0\xda\xe1f\x13\x10\xd1x\xa6\x18,\x18\xe1\x15\xbe\x81M\xa1\xee\x86]\x13\xe4:\xef\xec\xac\x05\xd2&\xea\xb3r\xc3\xedoH\xff\x0b%\xb5M\xfc\x14\xfe\xf6Y\xa3\x85\xa1%Sj\xd1\x9f\xe1=z]\xc6\x98\xb0_\x10\x01\x11\xe7\x0d \x13\xc3\xe1\x80Ds\x81\xebU,\xeb\xcb\x95\x14\xdc\xf5\xd5{\xd3\xb4\xba\x11\xe4\x0d\x8f\xc3vG\x80\n\xda\xb7m\x07\xae\x85:{J\x00\xd9\xf8\x11[\x17\xe7\xec\xd6\x8f\xd6\xf1-\xb9\x06{\x002\xd3\xef\xe5&\x9d6\x83v\xe4o\x9d\x8d*\xc8\xbe\"W\x84\xf2m\x06\x86`&\x92\xfcK\x8c\x0d_\xf0B`\xb3\xcc\xcf\x96\xe4\xba\xfc:#o\x9b\x02\x9a\xde\x95\x0c`\x9b&\x95\xe4\x10\xdfV\xc7\xd2\xfc\xde\xbb\xbd5\xdcM\xf6\x8c\xa7\xaa\x8bW\xa47\x9d\x9cM\xd4\xae\xfan\xc2Y\x18\xef\xd9Z\xc7\xbd>\xf9\n\x9ck|5Y\xc7\x1e\x80\xad^?\x87~\xe5i\x93(^\xb3\xd7\xf7 \xb3\xb6\x9bw\x13?\xfd!K\x92\x98\x0b\xa8\xead:\"wu0\xd4(\xfe@\x8aU\xb9\xc7\xe2\xcb\x06\xbf~\xeaw\xd3\xf2\xed\x8b\x0eu\xff\x11\xf2\xfcN\xe7\xf9\x9a\xd3ms\xde\xef \xef\xef_\xbf\xfa\xf6\xb5>p\xfc\nO\xa5\xdd\xd9_C\xf6?\xd4,\xad\xcd\xef\x95\xfd\xfe5\xe8\x83\xdc\xb9\xbe\xc1\\4dk\x95\xf5\x15M\xdc\xf9~\xb4\xfc\x1a(\xd27\xe4\xbaRLM\xddW\x93W\xf1;H\xfcB\x08\xae\x12g\xe4\x1bw}\x7f\x80v_\xb3\xbb\x86\xde}\x0f\xdf\xbfD\x8b|w\x96\xdf\xe1\xd8\xfe\xf1\xd5wp[\xda\x9d\xe9[\xc8\xf4?\xbf\xfa\xf6\xf7B$\xdf\xb3\x9f2\x966T\xf7\xa7r\x0f\xbf\x85\x1e\x96\x0b\x92\x19\xf9\xd6]\xf8'h\x86Ej\xff\xf6\xa7\xef\x1b\xfa\xfcu\xb9\x85\x9f\xa0\x05[\x86\xcc\xc8O\xee\xb5\xe4\xe4\x17\xdf5-Z\x85\xf6\xef\x14\xf5\xfd\xff\xd9\xfb\xda\xae\xb8m%\xe0\xef\xf7W\x0c~zR\xfb\xe05\x90\xa4\xb7\xed\x06\xc2!\xb0ii\x03\xe4\x02i\xdaK\xf3p\xcc\xaev\xd7\xc1k\xed\xe3\x17^z\xcb\x7f\x7f\x8eF\x92-\xdb\x92\xec%iz?\\\x7fHXk$K\xa3\x91\xe6E\xa3\x99`\x9c\x92\x8a\x88\xdc\xea\x18\xdb\x10\xc4\xff\x8f@\x98D\xd8\x16S\xfe\x08\xe8mBRI\xc1(c1\xc27\x94\xdb.\xd5\xc8\x87u\xf0\x15\xeb\xa0\x1eK\xbf\xc0\x0e\xbc\n\xa2\xc5\x92\xf7\x1b\x95\x14=\xe4\x8f\x08\xc9G\xc9\xa8\xf0P\xb0u=\xf4{\x84\x9e\x91\\ ${u\x7f\x1e\xce\x18\xb5\xea\xe1\x7fRZ\xef\xb7\x80\x7f\x83\x1d8c=\xa7in^\x97?\xa3T\xdc\x9e\x82\xe6\xae\xf6Kc\xa7\xffE\xf4\x85m\x10\xeat\xf0\xfdr\xaf\xdc\x88\x8e\xe8Ds\xf7\x8d!\xfd\x07\x8c\x8c\xa6\xed\xd4W\xb0\x03\x86\x95\xffo\xd8\x81\x89\xbe\xe8W\xd8\x81\xb9\xbe\xe8_\x18wM[D\x08\xec\x80F\xa4cON0(\xa0\xb6,aez\xcf;@F\x05;\x10\xbb\xffy\xf0\xe1\xe2\x03\xa3\xceq\x98\xbbW\x188\xeb\xca\xcd\xf1\xdf\x04\xffM\xf1_\xeay\x06\xdeH\xed\xdf\x89\xf4\xdf\x89\xb0\xd5\x10\xff-\xf0\xdf\xcc\xf8\x85\xd0\xfe\x85\xc2^\x9c\x11Cb\"\xc0[\x81\x96\xc21\xb1\xb0\xb3\xa9\xadpi+\x9c\xd8\n\xe7\xb6\xc2\x1b[\xe1\xc2V8\xb3\x15\xde\xdb\n\xafl\x18\xba\xb4\x15\xde\x12\x8bB;R\xc8\xa2r\xa0\x91.A\xd2\xa3\xa0\x8a\xf7PZ\x93T\xef\"\xe1\xe4\xc3\xbdD>\x98d7\xed\x97J\xcf\x12\xe1(V\xb9Gq\xa7\x1aSkg\xb5\xd6\xb8a\xb99}uh\xf8\x98R\xc6*\xb1\x97\x85ZI\xfb)\xa5LVB\xfaw\xde\x9d\x8d.\xdf\x9e\x9e\xbc>|3\x92\x9fz\xf2\x04\xa6\x81\xfa\xde\x17\x9b\x14\x0f\x82'\xfa}\xb9wz\xb8\x87\x0d\xfab\x9b\xaa\x17\x1f\xec\x9d\xcbb\xdc\xa8\xe4\xfbw\xc7?\x1f\x9f\xbc?f\x8d\x9f\x9f\xec\x9f\xbc9C\xa5a\xcb\xe7;\xd648\xdb{=\xba|}rz\xf9\xd3\xbf\xde\x8dN\x7f\x93\xa5\xcbF\xe9\xf9\xe8\xe8\xed\x9b\xbd\xf3QY}\xc2\x01\xde\xffx\xf2ftyp\xb2\xff\xeeht|.\x0b\x17\xbc\xf0tt\xfe\xee\xf4\xf8\xf2\xe0\xe4H\x16\xcc\x9a\x05\x97\xafO\xf7~P\xab\xde\xb7 \x0e\x8f\xde\x9e\x9c\x96\xe57\xbc\xfc\xf5\xc9\xe9\xfe\xe8\xf2\xd5\xc9A\xd9\xe3\xab\x1aR\xce\xf6\x8e\x0f\xcf\x0f\xff\xcd\xbav\xe4\x8b\x8dI\x96\xfd<\x1a\xbd\xbd\xdc?9>\x1f\x1d\x9f\xfb\x9ciV\xc4\xf1\xee\xf4\xf0\xf2t\xf4\xc3\xe8\xd7\xb7\xac\xe1\x9c *0\x0c\x11\x91i\xd5f\xfc\x05\xdfa7=\x9cZ\x0c\xecI\xb4\xbc\x0dy%\xa7OT\xdb\xf8Z\xb8%Uh\x80\xd8M\x88\x0f\x8c\xd7\xc6.%>D<\xb3\x97\x84\xcbnf\nX^\x82\x85\xe5_Y\xab\x02\xd7Z2\xa5^\xd2]\x8f\xed\xb3Gj\x97\xd2\x12\xb2P\xebx\xb8\x9a\x0e\xf8\xa2(\x87\xbe\xb3\xc3\xa4\x88\x12\x11c7!\x1e\xd6b-U\xf0UmF\xad\x08Oy\xed\x88\x94\xbf`\xecRQ\x9b\x12\x15\xbe\xaa\xcd&\n\xc9S6\x13\xbbgD[\xe8!\x01\xf0\x8e\x95.Wr\xee\xb8\x85\x94\x1b\x96RB\xfe \xb8*\xab\xb7\xc2\x82\xca\xcb\xdc\xa9\xe7\xf3\xadu\xaa\xdd\xfd\x0c\xdc\xed\x84\xf46\x18\x94J\xbe)&\x82\xfa\x08\xbf\xeb\xa1\xc6Z%\x9f\x07K\xce\xb1<\xbd\xb7\xf4\x04dv\x08\x92\xa0<.:\xb6?\x8f\xe2\x89\xc9\x9c\x01h\xd1\x1b\x87\xf9x\x8ey8\xbaZ\xa7ENR&\x92c\xe8rs\x93\xab \xfb-\xe9\xba\x9e\xac>\xdd8XiF\xd8S\xfa\xf0\x0c!g\x1a\xd3\x9e\xfc\xcd\xb0\xc8$\xea\xce\x16\xa6)]\x0c\x1bv\xf6\xe6\xf3\xd0c\x06\xac\x94\x06\x9f86\xb3p\xa1>\x9f:\x14\xf3\xc4\x89\xae\x97\xd85\x9a\xd8\xf4\x9d<\xef\xbf&\xa5a\x96K2\xf61\xdbNf\xe4\x13M\xc1\xbd\xe1\x1b\x12\xca\x04\xdb|$/\xb77\xc4\x1f\x0e\xac#7\xb8\xee\x9a\xbfn\xeae\x0f\xfb\xc8k\xdb\x92\x85&\xd1\x98\xd1\x0ej\xb4\x03r\x0b\xef\xcc\xc3dO\x1a\xa4$[\xd2$C\x1b$\x1b\xacT\xb4\x1d\x1f\xd2\x80.I\xe2:?\x8c\xce\x1dq/e\xc86\xe7\x0d\xc6\x18_\x8c\xe7a\x9a\x91|\xa7\xc8\xa7\x83\xef|D\x89/\xd2\x9a\x06\x19I&.#@\x8fGE\xa9>\xf3\x08Jb\xd3\xb1\xef\xf5\xc0%\xfb\x92\xcb\x06}\xe0\xf1\x18\x83\xafS\xba8\xc33D\xb6\xcf8e\xdf\x9d\x9ek\xd3\xdc\xa7\xf2v\xfc\x93'\x90\x97\xc6 !\xa8\xe3\x95y\x9e^\x94uIg\xdap\x1d\xc7\xf3\x82+:\xb9\xf7L[x\xa2\x16L\xa34\x93\xcdc1\x13\xc4k\xdb3\xa3\xc7\xf7\xfc\xbc0G\xe9oW\\\xb1\x81\xa1\xb8\xbf\xe4]l\xb6\xefw\x81\xde\xc8]7\xd70 \xd8v\x8c\x00\xca-\xads\xe2~\xbd\x9d\xdd\xcc^n\xcf\x80\xa2\x8f\xf0\x0e\x06~k\x0f\xd3\xf5\x9c\x97\xdb\x1b\xb3\x97\xdb\x1b\x0c\xfck\x03#$\x01\x86\xdb:\x13.\x19.j\x91\x18\x82\xc9\xbd\xe62\x82\xbe\x9e\x9d\\\xdczW\x97/\xb7Qo{\xb9\x1d-f\x90\xa5\xe3\x1dg{\xa3\xf1\xe6\x0eh\x82^\xf2;aL\xd2\xdc\xdd\xf266\x9c\x97_{\x9e\xa6\x83\xc0\xd4T\xae7\xed\xf3N\xea\x11o'\xb6\x07W36\x86\xe7\xa3\xfe{\xa3 \xd4\x1f\xc5Ir\xc3\xde\xf9\xe7\x9fl\xd1\x12\x1f\x8e\x82\xb3\x1fO\xde_\x8e\xde\x8c\xb8\xac/_\xec\x9f\x1c\xd5_\x9c\x8f~=\xf7\xbb\xa9\xa1\xf1\xf9\xa3\xe0\xf5\xe1\x9b\xf3\xd1\xe9\xe5\xde\xfe\xfe\xe8\xed\xb9y\xf5\xd5s.\xd5\x8b\xb4\xaf\x0fWFE\xa9\xfd\xee4\xb4\xdfs\x8d\xf6{\x8e\xb1l D\xe8U6&t\n\xe70\x14\x07\x9d\xa6\x86\x88\xa6!\xc2\xd5h')\x16W$UM\xdd\xa4<\x02\xe2\xc7\xba-\x9f\x07\x0ep\x1c.\x0c)O\xf5\x88\xf9\xd8\x12\xb3\x1a\x973\x9b\xcf\xcf\x17\x04]+\xd8\xff\xc1\x94\xa6\xa3pN<\x95\x0c\x8eQ\xfdT\xdf\x9cb\xe8/\x8d\xcfJ9\x7f\x86 \xce\x03\xc6\x99\xf6\xab\xe3 \xed\x91H\xaer\x07\xcewJi/S\xfb\xf1\xb1\xb3\x89R&\xb3@f\x8a`\\\x05\x969\xe1\xb9\x1al\xf9\x7f\xa5\xf4Q\x91m\xddA\xa7{J\x8a%M\x1a\x13\xc2\xe7\xa3\x83\xfd\xf3\xf3\x8e!\x18\x8eH\xe4\x13\xc61\xbd%\x93\xf3p\x96\x0d!\xb1\xa9f>\xac%\xe4\"\xfd\x80\x01\xff\xd8\x1f]\x8b\x80\x8d\x80\xab\xb2k#\xach\xc2/ \xa2$#i\xbe7\xf9\x18\x8eI\x923&\xdeG\xc4\x01\\i\xed\xba\xae\xb37\xcdI:Bg:\x06\x90p\xc1\xe0\xb3\xc9\x94\xcd\xf97c\xadk\xff]\x9b\x12\x1eT\xb0%\xd3\xf0\xd7\xca1]\xf9C\x0f\xbb\xb6\xb1\xbd1\x0br\x92\xe5.Q\x97\x10\x97\x0eV\xd2\x9d*M=\x18\xc74\xe1\xaa\xa0m\x03\xaba\x99'9\xa9:P\x06\xe8c\x1d\xf4\xc1y\x12\xe7/\x1c\xcf\x93\xa6*\x99\xeaA\xdd\xf7\xb9\xb8X\xfeS\x1fO\xd9\xde\x0f>8\xc0$G\xf9\xe2+\xfe\xc2\xafW\xa8\x82J~\x01,\xa8\xdf\xdd\x81\x84\x0d\x93-\xe2\x90\xd1\xa3}[\xddZ\x85\x0b\x9c\xae\xc8\x05V\xd6\x07\xedpiO8\xda\x13.\xea \x17\xf6\x84+\x1e\xcd\xf2\xca]\xbe>;<\x82j\xc5a\xba\xb6>\x86\xf4v\xcc\x15\xdd\xc3\xda\xe4\x1b\xb5.\xa0\x89\x0e\xfa\x970.z\x82_\x13\xb2d#\xd2\xc7ki>\x82\x15T(\x18\x0253\x04\xd0\xebJ\xea\x83\x8ebl.\xc2\xd2\x11\xac@_\xd6n\xb4\xc8\xec\x92(k\x84\x17\xc5\x07/H\xc2\x05\xf1\x91\xf4\xf2\x00\x0f\x98\x82<\x8d\x16\xae\xe7\xf3\xa0\x85u\xbe\xeaC\x16H\xd4\xf2\x04P\xfc7\"\x8f'\xeb\xc8\x02\x89\x1e\x91J\xb3\xc9m\xf7\x94\x18\x96hJ\xe6_W\x1a\x92\x07d\xb8\x85Q\xe4o\x87G?8\xca\x8e&\x05\x9d0\x88&\x1e\xd29\xfb\x8b\x13\x14w^\xab\xbc]1\xa0]\x10.\x97\xf1=\x1e.\xbf%.?\x8e#\xfcG\xc2\xff\n\xcbL\x12\x91\x07/\xa1\xe0\xbcA\x95PD\xb5\x88\xa3\xc9\"c\xc8\xc7\x90\x12Q\xf7\xa0\x93\xca\xe1\xf1\xdbw\xe7\xbaa\xf2\xbb\x0e\n:\xf0f\x1d\xb7\xb6\x0bs\xf9\x05E b\xad`\x7fy\x1eF\xc5\x8d\x92B\xe3\xc7\xa0{\xd8\xc8\xb0\xb9D3\xec\xc4\x07\xc7Qp\xd5\xd9\xa2\x9d\xcb\x83\x18\xaeB(\x18)\xf8\nY6\xf6d\xad\x1c(\xa7\x03\xfe\x9b\x0d\xcfM!J`\x8f\xfd\x8d\x7f]\x13\xcf\xe8P\xd9|\xd8G\x05#d\x04\x87\xff\xa4\x9dl\xcf\xc3\xa3\xb6'O\xe0\xdf\\\n\xa0^\x8f\x99\x079\xfb8P\xac\xfe\xebc\xaa\xf7\x1b\x18\x88\xc1\xad\x95d\xc0\xa9`E\"\x00\xd1\xcc\x19V\xee_\xa7\x1chN\xf8\x18+\xa4\x12\x82\xb4\xd3w\xcc\xa0\xb6\x86\x97~\x15RPn\x0eT\x04\xc1\x1d{\xaa,0\xdc\x80\xc8m7kw\xe4\xc2\xa4 |\xe8\xa6b\xf5\xc1\xb0\xa2\\\xe6\xfe\xd7g\x18#\xa8\xe3L\xaby\xea\xd5@\xf7\xea\x82N\xd3T\xf3i\xaf\xf8\xd4\xf3\xd5\x93\x01\xba\xb4\xc8h\xea\xb3\x82\xb8\x0f\x9d\x83\xb1\x97\xb6$@\xad\x94alb\xa5\x03\xa5\x03U2\x04b?\xd7\x92wM\xfa\xc8Tl\x13:b\xed\x99\xa9\x07\xf9}[\xa6:\xc3\x80>\x07'G\x0e7\x87\xb0\xc1\xbe\xc0\xef\xa6AB\xeer.X\xbf\xf0Z\x0c\x98W\x14\xa1B\x92R\x18;&n\xc2\xb5\x9a\xa4\xd4\x8f\x14\x8d\xff\x049CU\xe6\xf9p\xcajX:\xde\x9a ]\x97\xf5\xb3`\xbcxr\x17d\xa2\xb1\xbe'|}g\xa3\x8f\xf4\xddG\xf2\xee#u\x87\x1d\x924f#\xe4Qqa\x07\x9c\xdf\xef\x9e\x8d\xd7\x06\x83\xdf\xef\x9e\x11\xc6\x88K\xf3\xceZ\xa5\xeb\xe3\xdetH,\xf7\x0b\xa0\xed\x0b\xab\xd4\x0fr\xcaO1<\xc8\xe7)\xbd\xc5\x83\x1d\xa68\x8e\xd2\x94\xa6\xae#\x8b!\xca \xa19\x84%\xf2M\xce\xb0\xe5\xf7Z\xbd\xc5AU_t\x19\x0b\xd7~t\x12\xa5\xf9}\xf5E\xde\x90\x0f\xe1\x15M1N\x8d\x81x\x8c(]\xab\x1d9t\"J\xb5\xbd\xde\xbb#\xecp\x98GcnHa\xc2\x8a\xce\xec\xd2\x84\xeb\xb6\xe6\xe8\xec\xb1\xa55\xac\xde\x9c\xdb%w\xb2\xf6\x04\x19\x18\x1a\xa8NtV\xdd\x1b\xc1t\xb3M>f\xcc\xcf\x91\x9a\xf7\x08\xba\x916/1\xd4M\xdf\x1e\xf0,\xbb\\HK\xf8\x19J} x\xf5#\x06\xc5a\x98\xed\x04k\x9b\x9eW\xb7w\xbf:9\xf8M\x88\xcb\x95\\\xbd\xcb\xf7J\x18B\xc2\xb4\x03\x92L\xf8\x99Xj:$\xb2\x0bdH_\\\\_\x9b\xe0\x7f\x03\x99-\xb8\x14N\xb6\x1d%\x7f\xb7}\xd5\xac\xc9\x91\xa3\x80+\xea\xf0^\xf3\x9b2\x06W \xfd\x14\xf0\x93\xe6\x13\xb6}\xa3\x95\x8b\x1f\xef\xe9{P\xdeC*8kJ\xbc\x17\xb8\xef\x15u\xae\xc2\x0dL\xb4\x86h\xca]x\xd8T\x1f\x13\x97rnB\x8d\xdc\xe4\x80T\x85\x9c\x9dP\x91\x8c\x98\x1a\xfa\xc60\xb3\xb0\xdae\x18\xc4\xacCG\xc1\x11\xb2-\xf8'~\x9e\x904<\xf0_\x80\x8a\xa6\x17\x1e\x845\x02\xe9\x81C\x90\xf4\x82A\xfb\xcd0b^\xef\xb9V\xc2\x80\x7f\xe3]:\xf3e\xaaK\x1f\xc2\x15&Z4\x88G\xb3\xea\xd9-#\xf2\xd2\x94\xd8\xaa\xf9\xc0\xd6dF\xf2}\x9aL\xa3Y/\x1b\xd8\x1e7\xd2r\xdfdMly\xd6\"\x06\x8aj\xb7ij\xb2rW\x95.\xcf\xfaf\xc3\xc9\xe4GJ\xaf\xfb\xf2\x7f\xfd\xd9\x03\"\x1c\x8f\xa3v\xf8\xa9\xd4\x9f\x7f\xe2^\x84'Sh\xc6\xcc=\xcdU\x8cj\xf3ju\xc1\xf4\xfd\xda\x99\x97^\x90n4\x9b\xad\xd4\xae\x1c\xc5\x85F\xa7Q\x1a\xde\x8b\xe3V\xdb\xc6\xa6\xd1\x0fW\xdbZ\xed\xe5\x832\x16\x9e\xce\xb6\x0c\x8b\x9c\x8a\xa2G\xc5W\x16\xfev\xfcpS\xdeSvs\x1f\x9c\xcbK\x92\x1d\xd1 \x0f\xd3S\xef\xfc\x0d7\xe0\xa9\xa9\x02\x94\xd5)O\x8cb7q\x9f7o\x15PQ\xf0\xb4Y\x10\x89\x82g\xcd\x82P\x14|\xd3,(D\xc1?\x9b\x05\x99(\xd8T%f\xf6b\x8b\xbd(\xdf\x94:F\xdc\x9ey\xf5\x06, *T\xe0\xe9\xb1.\xa8\xaf\x88\xaf\xd6\xf4\x0dlF\xd8\x05\x81\x9f\xb1\x95\xee\xca\x9e\xe5\xb6k\x9e\xee\xa6\x0f4\x10\x1f\xf6\xdc|\x1ee\xdc]\x95\x15\x84\xcd\x027\x0f./\xd1Twy\x89\xccb\xd3\x87T\x01\xf2;\xd3\x88P\xd0%\xbb>\xba\xaf\xab\xe0\xc5\x82\x93\xb4\xb4\x88\x99 \"[/\xaa\x8554]\xc3\xe4`lM\x0dM7<\x01\x0f\x0e3z6\xa7\xb7f\x92[Zmh\xe6\x01,;\x87\x18\xf7Et\x94Li\xba\xe01 ;\x88\xc2\xd2\xa1\xb1\xeds\x0bz\x15\xc5d\x08[OWm\x96\x8aqz\x96\x91N:q1\xed\x84\x98wB\xc4rg\xf8D\x0cXx\x08\xc9\xaes\xba|\x0c\x9a\xc2\x1eh\xfa\xaf\x1e@Q\x0e@\xa7\xb3\xd5\xde<|\xf0|\xe5*\xc2\x83[\xb5Y\nS\n\xa3\xcbe)\xec\xc0\x18\xdf\xfe\xbd\n\x8d\x0fy\xf0SF\x13\x14\x15\xc2Kn\xa1D&\xad\xbc\xbd\xa24&a\xd2|\x8d\xe1\x03\x9b/\xb9\xe9\xb1\xf1\xf65M\x17\x1a.-u\xa8{\xa6*\xb5T\"*KZ:Q$JZzW(\xab\xe8\xb4\xa8{\x9d\xde\x95\x89\x82\xd67bQ\xd0\xd2\xbb\xb8\x94\xd7\x14\x88\xa6\x08>n\xbc]\x8aF\xb6\x9a\x8dp\x01\xed\xdb\xc6\xdb\xb9\x04\xdfj\xf5\xf3F\x16\xb5\x86\xb6\x90%\x9b\xdf\xb4\x061\x13\x89\x8a\xb5\n\xe1\xfd\x97U\x08\x97\xe5\xba`=\x08\xa2\xecT\x84\x85\xf6\x95\xa20\xb9\xf7\x1b\x90\x96bN\xad\x86\xa6x\xa1\x0f7\xe5\x9b8\xcar\x15\x82\x91\xb5\xedw\x98\xdc\xd7i\xf5\xaa\xe5*t\xa3w\xf2\xa1\xc9\xfe\xf9\x86\xb6]\xcd:\xff\x1c:\x7fK\xb5\x97:\x7f\xd6,\xd0\xe9\xfc\xaaF\xfe\xa9:\x7f\xac\xb4U\xe9\xfcuK\x80Q\xe7/\xd3J\x1dD\x93#\x1eG\xb6\x05\xf9\xd7\xa9\xff\x93([\x86\xf9x~\xc8t\x860\xe6\xceP\xc6:\xdc\npc\x07\xe2^\xd2\x92\xc0\xf5\x1a\x17\x1aCS7\xe9\xe4\x9d:\x16\xff\xf7\xd9J\x90\x84\xbb\xd0\xc3\x97Z\x17~:\x90\x18\xd5\x90h\x91\xd8W\xb0\xcb\x14\x08;5\x1c\x0e\xe4AN\x7f\xe2\xd7\xaa9{g?]\xd3a\xbb\xf4\x8b\xb4|.F\x17\xbb\xfc~i\xe9\xfe\x18a\xb8\x9a\xbf\xe0\xa6\x80>*\xa9\x0f\xb4=\xe3\x06\xc6\xd3\x06\xac\x9di6c\x02\xfa\xb88x\xa8\xc5\xc2\xe3\xf9\xaa7_\xc0\x18\xb6\xa1x\x01\xe3\xf5u\x0f\xe2\x8b\xf1\x07\xb5\xe6\xc5X\x13kQ\xc6Y\xc4S\xe5\x1d\x03\xf3\xc3=\xae\x93\x01\x8e\xc38\x16\\\x90\xf8p\xc1\xea\x96\xc1$\xb8\x9e\x96\x96\xdbQ\xaf\xc3\"\xe9\xae\xaez\x8er\x92\x17\xfbh \xa2`\x92\x80G\xec\x0e\x18\xa0\x88\x81X\xbeC\xba4,<\xd1\x9a\xec\x15\xe3\xb2\xf2\x9d\x90\x90\xb4\xc7Sl\x1c\xa3\xa4X\xac0\x16\x81\xe7\xd6\x17\xf5\x1f@\x9bvK\x14a\xf4\xf4%\xe4\x89\xbf\x81/\xf6c?+\x08\x0f]\x8c\x96\xf6b\xb4\x9c\x87J\x99\xb8\x8b\x87N\x08\x8f\xf3d\x8c\\\x07\x82\x85\xa6\x01I\x8a\x85\xd92\xcd:G93\xdd\x15\x7f\xb8\x1e\x0c\xf1\xac\xb7\xe82U#Ou\x1d~\"c\xf3s\xea`;V\xbe\x02u\x8b\x1a\x95\x91Jw\xc1\x89\x12\xcc\x07\x84\xd7\xab;\xee%`\x90\xa8Zm\xda\xa3\x96\xb8\x9b\x80\x82ff\xe5]P\xd1\xaceF@\xb69Z,\xf3{q\xa5b\xcd\xc2\xa2\xa0\xc6\xcb\x90\xc8\xd5\xfd\xc0X\xcft\xbb\xd3\xb8\x86b\xdc\xfch\xba8\x08\xf3Pn\x80\x11\xba\xbb\xaf\xb9\xce\xeb\xb2 JD\x0c\xda\x8e\x83\xa3\xdcu\x0e1\x91\xa4]\x10\xa9\xed\xb7b\x8b5Q\x89\xd5\x82\xc6\xea\x0eEs\x96\x9e}\x12\x1d\xadNC\xad\xa9\xeb\x92\x90e~\xaf!\xc4\xfa dk\xd3\x84\xa0\x85|\xdf\x03Q\xcb0\xcbni:\x91\xb8\xe7R-CFU2\x94\xb9\x07\xffk\xf0\xd9\xbd\xc2\x16Q\xf2\x06[\x1b\xda\xfcK'\xe4\x8a\x16\xc9\x98\x9cG\x0bB\x8b|\x08\xcf\xbe\xb1@+\xa1\xe7\xacb\xe9_0\xdb\xad\xd7\x9fU\x02\x95\x16\xcf^\x02(1\xdc]\xef-dJ\xf3\xe8c\xad\x1e<\xae\x06Bc_\xcc\xd1\xf7\xf5\xc2\xdf\xaa\xf2R\x1ady\x98\x0b!\xc0(\x9c\x1d\xe6D'\x9cY\x1c\xae\xd2 #\xf9\x19k\xba\xba\xdao\x8d\n :hg\x91ri\x88Kj\x19\xc9\xb98f\xacd\xf2\xefW\xb0g\x184w\x98b\x03\xef'\x8fj\xc6k\xbd\x1f\xb0\xcax\xe5\xa5<\x11\xce\xe4/\x19o8\x994\x07\xbb\xcaX\xfb\x04\xc4\x10T\x06;p\xe9J\x8a\xeb\x12\x8a\x04\x06\x048w\xcaslau\x1e\x8d\x80\xd5U\x10\x0d\x1az`\xa1\xdfx\xff\x82\x01\xe2B7^\x9c\x15\x1f\xaefF\xdbH\xed\xe5_\xa3-\x95\xd6\xd7\xf7Q\x1c\x9f\x921\x89n\xf0\xb4,\xeb\xa1@\x19\xe7J\x92\xde\xda\x8e\xd0\xa2\x94]\x8f\x89\x7f\xfc\x9d\x9cN\x9bB\xa0\x92\xa3~*:\xf9\xd9\x17\xb2\xa0\xdau\xc4>\xba$?=\xec\xa7KR\x84\xedV\xed\"\x84\xebR'C\x84\xeaR'\x0b\x842\x99OC\xbc\x11,\xb4\xbeP\xd5\xfa\xec\x06\xd4\"\x88\x92)I\xb9\xf8\xe0FA\x94\x93E\xd6\xedhV?Q\xe9\xe1s\xf6\x8ag\xf7\xef\xf0\x1f\xcbP\xb7\xb5\x88W\xd0\xa6h\xb3&\xbc\xec\xd2v\xe7\xd2\xd3\xed\x13\xb5\xddy\xd7\xc6\xaeH\xd5\xe1\xeaR5T\x92\xb5R;\xecQKf\xdf\xed\xbe\xb7/\xd6\x9c\x85\x96\xa1\xad=\x1b\xa2\xbf\xd7\xa0kz1\xfd\x9b\xf5\xe2\x8ey\x14\x0eW\xdc\xedc\x8dGC\x99\x04\x98]\x91\xfd-\xfet=\xd8\x86\xad\xea^\xca$X\x84KE\x10\xf2\x81v\x11^$\x84\xe6\xb4n\x96\xcf:.\x96\xc9\xd9\xb75\x0f\xe2\x13K\xdc\x10xZ\xd7\x9e\x92\x8b|J \x06\xaf\xf1\xf0[/\xd6J\xb6p\xab\x80'\xeb\x82j\xe5\x9d\x8f\x8b\xe5\xc5\xe6\x07\xbe\xe3\xc1:P\xcb\xdd\xe4\xce{Y\x1dsi\x1f-2\xa2\x0e\xa2T}\xbf>f4\x19\xf0\xed|\xc0\xf4\xeb\x01\xdb.\xad\x0e\x81\xa6\xeeY\xdd\xcd\xa0\xfbd\x05Z\xa7+\x1dF*)]\xf7]\x81\xfd\x04{\xf9\x94$\xa3\xaaO|)\xd8)\xc7\xde\x1dy\x9e\x13Y\x96\xbf\x19\xc7V\xf3\x124\xa6\xf6*O\xe0*O\x06\xd9\x02\xb4\xb3<\xe0\xfaH\xc7\x86K\x93\xfd8\x1a_\xf7\x10^\xd4\xa7\xc4^\xa5\x87\xb9]\x88\xb3\x11\x9d\x03\x03pL\x9e\xa8^\x90S~\xf4\xf3X\xd4\xad\x84\xb6p2\x01\x07\xd6\xab\xcd\xab\xc1\xf8\xb8\x1b\xa1\xf1[%B\x91#\x08\xbdM?06\xee\xbd\xc9\x04\xd8g\xb5\xc3\xef\xb4\xb4\xbc-R\xb2\x8a\xb5\xa5r;\xebeo\xf9\xdf\x81\xdf\xca\x07~\xabj\xa9\xff;(\xd3?\x7f\xd1AY\x97\xceB{\x1d\xa7\xd5\x0f\xca\x0c\xa7\x0bx\xf2%\xf4\x9b\xb4\x9f~\x13\xf69\xcc\xea\x10#\xc2\x9e\x1ba\xba\xbaX/Dz\xa5f\xda\xcfX.\x82\x08$\xb6\xdbFuA\x9d\xbb\xc6MS\xba\xf8\xe9\xccs)jYx\xff\xd3\xc9S\x9e`e\x1a\xc6\x999\xe1\x0b\xe8\xa5\xf9\xb2\x1d\xdb\x81\xd7\xaaB}\xb7I\xe1\xd3L\xe4\xa5\x07\xf1\xa3\xf7\xec\xde{\xb2\\\xa1\x9fl\x1f\xb7X\xc6\xd9\xc2\xc9H\x8esrN\xcf\xc2\xc52\xeee#\xaf\xbc\xbb\\\xf6\xe5\x19\xdb\x1cxm\x8e'\xcf%5w \xfd\xdd`\xa2\xb5\xcb\x1bEF\xd2\xf2\x990\xb4:\x0f\x93ILNVi\xfb\xa6\xccw\xdc\xed\xbb\xa1\x0c^\xe7\x03\xe8\x1b\xbd\x85\xe132\x80\xcf\xe9y\xb9V1\x81\x86\x9dO\x9d\xc3\xf2e\x9bdtw\xb4\xeb8\xf8B\x86\xbc\xffbN\x96\xbb\xce9\xb9\xcb\xf7R\x12>\x92\x9b\xd4\x0c\x0c& \xda\x93\xe50R\x9b+\x06\x04c\x1d\xf6\x08\x9e\xc4\xd8M\x16\xfda\x0d\xcfkF\xbddX\xac\x05d\xc3\x1fi\x94\xb8\x8c}x\xfd8\x97EGm\xb0\x89\xfa\x06\xa0\xad\xf5(w\xbe.\x11\x1f\x81\x1fu\xe3E\x1e\x86\xe2E\x87\x7fz\xc1\x818\x91F\xa7\x89\n,\xad\x17\xf0\x10\x92\xb58\x02\x8f\xef\xc2g\xbdt\xd3\xec\xa6\xe9n\x8c\xf8h\x98e\xd1,a\x8c\xcc.\xa6\xd7\x92>o\xf1\xfc\xceMuE\xe4y\xb6\xef\xf3\x95\xa6bJ\x03]~\n\x03'&=\xf3\xc2c(8\xb4Ta\xac\xe9\x1dH.R]\xa0\x89\xd6\x1b\xc9\x90\xeb$X\xa7x\xda\xc5\x9aK\xd1\x83XO\x9ck\x19\xfe7_@\x02\xdbj\xa2\x7f3\xf6@\x99\xb9\xfc\"1`\x0e\x90P\x99tG\xd2\xf0\n\x05\x8a\xdaO\x91|,e\n\xdb4\x9a\x15\x12hm\xb3L\xda\xc7P\xce\xe3\\\xa6\xc1m\x1a\xe5%D\x99}\xaaI\xa7\x845xM\xee\x19\xfe\xf5\x0b\xbe\xff$\xa8\xd6X>\xa1V\x85\x91\x07\x01u\x15\xd2\xe0\x99\xc3R\xf1\x9eG\x07l{\x157\xb6\x9b\xe6\xc5r\xa6\xd8\x14<\x02F\xbd \x14\x05[\x9b\xdf|\xab\x0f\x86Q|\x91\xbbOn{\x99\xf7\x92\x8a\xb5+{\xad\x9f\xb3\x04\x8f\xf5T\x8b\x80\x95\x9b\xc2\xa1\xed\x87IBs`\xeb\x12B\xce\xfb \xccj\xa1\xd8\xdas\xd2!\x90'}\xbd:\xb0\xa3D\xed\xd9)\x99\x92\x94$\xe32D\xdc<\xca`\x1ef\xc9\xd79\\\x11\x92@\xc4\xaf\xb1D\x19\x99\xc0\x00\xb2bIR\xd7\xabA\xb0\xa1\x90I\x87\xf8\xb0\x86\xc7\x0dJB\xc9Z\x10\x1fm8\xbb\\P\x81\x86F\x0d\xfa\x86X\x843\xc2\x98\x1f'\xfa\x93i\xcb-\xc7\xa2y$\xab9d\x93`I\xd2,\xcarSX\x05\xc9\x14\x92\xee\xd3\xbdd\xa5\xe3kU\x1f\xd0o,=s\xaf\xb0\x1e\xd2~=dO\xe9\x06\xf7\x92U\xe1\x82x\xe9\xcd\x86\xe1\xaa\x12\x9aGS\xbc\xe68,\xb7oxYU|\xf2\xa4\x02J\xf1\x88\xa8G\xbe\x066\xd8!\x08p1\xf8\xaeZP\xe1\xcb\x92\x91\x0e\xf4\xeayUd29\xb7\x89\x12\x13-%?\x93\xfb\x03zk7\xa0\xca\xa7\"\x0f\xa9C\x8a\xda\xfa pFI\xceS\xc20\xf1\xfe\x9a\xdcsdNi:&\xc7\x12\xed\xbe\xc85e0\x10\xb2.\xbe\x8a\x8b\xf4\x91\xfdcUM\xf4\xbbb?\xb8\x86\x80\xf0\x11\xe9\xd7\x1f\x1eQs\x1b6\xbd\x92\x86\xba\x84\x0f\xf9\xc8\x05^\xc4\x06/F\x83V-\x03\xfc\x8a\x84=\xb5\x0f'\xc1\x84\xf2\xf1Z*\xdb\x97^.L)\x8a\xed\xa5\x1b\x0d\xf2I\x82(\x13\xbc\x8e\xdf\xd1a\x02L\xd5)\xab\x9f\x19\xdb\x07\xcd\xcb\\\x87\xddGtg\xd3\xd7\xcf\xbf|\x90\x0e\xa6q\x91\xcd\xfbN#TS\x99\xf3\x9a\xb6\xb4\x13Hf\x8c!\xc7\xab\xb4\xafEk.\x1a\xb2}NOXz\xea\x97\x93\xd4\xa7cI\xc3\xc4$\xce\x18D|Z\xe5r\xad\xfeS\xca\xba\xec5\x9f\x98_\xa0\x86\x03\x1b\xc6J\x0c\xe3^$\x91d&--K\xec8\x81\x04\x0d\xb31\x7f!Wx\x14E\x9e\xa4\xac\x08\x0c\xa2X\xfe\xfeR\x0c\xe8\xf1i3{\x07\xdf\xc1\xa9\xee\xe5\"(\xdd\xe6\x98<\xd6f\x8c\xd8\x8en_\xa9Aj\xcd\x87\x9d\"\xa81r1\xb2\n\xf4=A\x07?\x83\xe8|\xc6\x84O w\xcb\x94d\x19\x93\xda\x17E\x96\x03\x89\xf29I\xe1\x8a\xf0\x06h\xaa\xc8\xd2>\x06\x1dv`\xbd\xfc\x90\x862I\xa5\"U\xba?\xe7N\xae\xc8\xdb\xa8\xe8Pz\xd4\x8ei\x92\xe5i1\xcei\xaaS[\xe4#g\xc0L\xef\x95F\xda\x8e8\xa0>R\xff\xb4\xbbA\xa9\xba\xec\xd0\x94\x8cICK\x92{\xbb\x02\x1bYM\xa2\x86]\xd0\xbe\x17\xf3>DUN\x8a\xe5l:\xeb\xa4\xc3t\xcf\xf2T\xa0a\xbd\xf2\x81\xf630\xbf\x8f\xe2\xf8S-\xcch\x95\xab\x8b!\xaeb`n\xdc\xbf\xe8\xb2\x97X\xac\xc9\x7f\x89K\xac\xdcH;\xb7\xd0D\\\xc6\xab\x8dF\xbf}\xe2\xe8k\x8b\xff\xcf?\xcb\x8c\x85\xb84+g[\xc5\x01\xb7Q\xd2[\x8f1\xddi\xf6!\xa9<}\xb5\x93Q~\xac1}I\xb7\x01\xb5\xe74\xbdK\x16\x9f\x83\xbc\xb8t#{k\x92Xzw\xf1o8\x97\x10\xb9\xbe\xec\xf4\xe5*\x91\x15J\x8a\x04R\xb1k\xbfM\x82\xec\x95\"\x9b\xbc\xbaG\xf5\xc6\xe68\xc3\xa3-TUNP\x1f\xb1\x9c\xef\x8a\x90\x0fB\xab2\x03\x16\x02\xd0\xde\\\x86PQ\xb2,\xf2S25\xc3\xc5}\xcd1\xf2\x916\x9c\xff\xf4I\x1aUZ\x7f\x89\x07y\x19\x96<\xf5\x98\xb8\xb3\xa9XA\xec&aR\x9a\x84\x13n\x12\xc6\xac\x85\xf6\xcfK\x1d\xca\x08\xf4\x80~/\x8e\xa0\x18\xc7\x07G\x12\x85S\x1aQ}pJ\xa2\xc0d\xd1u\xa2\xc0\x83\xfb\x16Q4\xde\xf2y\xe7\xed\x8b\xb9\xe5?\xe4k9G\xd6\xd3\xffqG\x0cKt\xf3\x86]\xcb\xdc\x95_/\x1d\x01\xc4o\xfd\xbe\x06C\x08\xfb\xb6g\x88\x17\x0eC#\x910\xba\x98v\x0c\x89\x95\xd3\x8e.0\x1c\x96\xe3a?\x8c=)z\xb5T\xadB\x99\xba\xb4(r\xaeueb\xe8\xba\"\xf3=\xd8\xd6\xdd\xd7\xad\xcd\x06D{\x93h\x8b\xc2\xad-\xa3\x0d\"w\n\xd9\xc1\n\x97\xf8W\xc7\x99\xa5\xe5\xae\xa0\xdc\xd3\x9d\xd1\xdd\x92\x8cs2QM\xfcmBIa\x07\x8e\xc3\xe3v\x01cz\xce\x85\xf0\xf09\xbb_\\\xd1\xf8\x83\xa6~\x04;\xb0\xf1\x7f\x7f\xcf\xd6\xff\xfc=[\xffjc\xd6\x86\x08\x11\xe2b\xb0\xfea\xf3\xeebs\xf0}8\x98~X\xffjC\xe3\xe6T \xe4\xe6\xd5\xc5\xe6\x96\x01\"\xe3\x10\xf4bs\xf0\xad\x01\x841A\xcc\xad\x7f\xa8\x93\x1d\xd8\xde\xaa\xa4f\xa9\xe9\x81B\xe7:\x11NM;R'\xc3\xd7\xed\xa6\xa6\xfa\xa62\x12OY\x0d\xf5\x7f}\x9b\xac\xa4\xdd,\xdb\x80\xc6x\xf6\xcb\xfey-\xe7\xd9\x91\xd6\xa7y\x949\x9e.\xec\xf2\xa4R\"+\x16,\xd3\xe4\xb4\xc1\xe7\xb0\x03Ga>\x0f\x16\xe1\x9dF\xac+K#\x8d\xf8\xd2\xef\xb6'\xef\xf028`\xdbNBou\xf2\xa7r^\x07\xea\xb9\xd8L\xaf\x7fH\xddC&\xba1\x1e\xa8\xac\xad\xf1\xac\x18\xb5 \xd2d\xddiz\xa7\xea{\xa3\x89\x9e\x08\xd2\xac\xa0\xc9\x97nK\xd3\xc2\xeat\xebX\xa2\xbe\x93\xe1\xba\xab5\xde\xed\x16\xd0hD\xa0BC\xaa\x066\xc0Z}\xf2\x04&B`\xf3@{i\xe5AM\x13\xa4\xb1\xcdc.\x15KF\xa9\x9b2\xa8PmBdF)\xdc\xbdQ\xe5/\xffF'U\x93\x17\x1a\xec\xc0\x8cm\x86\xbb\x90\xc3:\x8f)\xd6u\xc6\x0c\xcd\x0cJk\x9a)\xac\x12\xe6\x13\x18\xc2\xba\xe6\xf3D\xb8\xdc\xf2\x84~\x11\xe6\xf33\x1f\x97\x16\"\x1d\xb4\xe5,\x90\xcdp&\xc1`\x17bW\xe4!u\x9f\xa2\x86\xba\x0bOa\x08\xdf1l\x84\nX\x8a\xfdk\xd0\xb3\xfaK\xf5\x8ci0\x17\xed\xa1>\x1e\xd1\xf9\x10a6\x99\xc2\x87\x0c\x85\x13\xf4w\xd7\x0b\x1cSn\xb2\xd3\x96--e\x13\xb4\xd9\xebIH\x9fpLo\xa8K\xbc\xc6v\x02\xea\"\xbe\xea\xf6w\xb4\\_b|2\xb2Jv\x8ca*\xe9\xdbx\xa0\x17_\xa8x\xdcr\x9e26\xae\xa1Js\xa75\x91;\xe5#;M`\x00\xb1\xb5gJ\xc0\xbd\x98\x11W\xc2T\xb6\x9c\xff\xb5\xcdu\xb7%zB\xc0\x00\xc6\xac\xac\xad\x04\xd8\xfax\xdb\xa9\xf4/l\xe1\xff/k\xf9\xc6\x8c9\xca\x18\xd5f$\x17\x82\x99{\xeb\xf7\xdc\x05K_V\x18\x80\x8b\xb8\xea\xbe\x9c\xba\x84]\xb8q\x13\x1fBYi\xec\xa1\x05\xdf\xb8a\xae6\xab\xa3\xce\x9d?S\x08i\x02\x98\x1dk\x17\xae\xf89\x82\xdb\xa4\xb4b\xb5\xaf\xdf\xf5\x99/\xf3JHx\x1c\x06\xcb\x8cR\xd5\xa5\x8c\xe7\xe4\xe2.\x10L63EJQ\x1bP\x086\xf3\xdaV\xfe.\xb3\x86\xa80\xe6_k\x13N\xee\xf90\xad\xf0\xa9W\x14\x01g\xd6F,\xe2^\xb42c\xed\xcf\\\xb9\xa6\x00\xfb=\x17l\x86b\x8c\xaeq\xcf\xd7\xf4\xdc\xe8\xc5\x95c\xe4\xe8\x1ccbn\xfa0s\x85\x15\x06\xf7\xec\xb54\x88 \xe6f\xe0Y\xb0]\xb6[;\x8b\xf0\xee}\x18\xe5\xdc\xfd\x8cq\x98\xb9{\xef\xa6\x81x-[B\xc3{\xe8\xe3&\xee\xe4i\x18\xc5\xc8K\xd1em\x17\x9b\x96/a\x08\x13L\xe0\xd7\xffhT\xb1\x00#\"0)\x98\xc4B&o_\xf1\xebG\xb1X\x15\xd5\xd2ic\x87}\xbd\xf7\xb9\xafn2v\xa1\x80!\x8c\xdc\x85kH\xf0U{\xa9\xb8\x87IW \x1f\x12\xf7\xd9\x96\xa8\xdc\xa1\xe5I\xe7\xc2z\xf7\x9c`#\x8c\xe3\xe0c\xe6\x0c\xe1\xf9\xf3\xe7~\xab\xb0\xc8\xe7\x1b!6\x9aq\xa8\xa7\xcf\x9e\xea\xa1\xd0\x88\xc7a\x9e}\xffL\x0f\x93\x92I1&i&\xc1\x0c\x1f\xccd\xe2! \xf7\x8d\x01nI\xc6\x83\xdb4\\\x0ej]|\xf6\xfd?[\xf0\xfc\x10)k\x8e\xa5\xdd\x01 8'\xf1\xb2\xec\xe9\xd3g\xed\x01I\xc0\xda\xb8\xbf7\x82\xd5\x87\xfe|\xb3\x8dE \xd9\x18\xfd\xf3\xcd-3(C@mH\xcf\x9b&\x06'\xd8\x98\x10\xb2\x1c\xc4Qr\x1d%\xb3\xfa\xb8\x9eo\xb61[\x83V\x06\xf7|\xb3\x8d\x83\x1al\x1c\xde\xd3\"\x97\xc0m\xcc\xd6\x80\xcb|K\x83<\x9c\xe1\x1c.I\x1a|\xcc\xee\xb0\xf2\xb7}+7+\xb6'~Bo\x93\x98\x86\x93A\x91\xc6r\x96\xbekA\x914\xad\x93\xc6\xd6\xd3v\x1f\x18\x10\xdeG\x18\xe4i\x98dS\x9a.H\x9am\xcc)\xbd\x16-?mO\x95\xa1R\xedGB\xf3\x01\x9d\x0eP\xc9\x16\x0d\xb5\xc9\xa3OC\xcb0\x0d\x17$'\xe9\x80&\x84Nec\xed\x89\xeb\xd3\x18\xd3d\x96\x03\xe9\x0e*\xdbj\xcf+kK]\x04[\xedE\xc0@\x1ak\xffi\x9bN\x19Ts\xe9?m\x13(\x8f\x9dP'\xcd\xf6\x8c\n(\xba\xccxV* \xd9\xee\x1c\xa7\xdb\xc6\xce\xa0YF\x02N\x1d\xea\xd36\xbd \xa8\xe6h\xdb\xd4$\x00[\x03n\x0f%\xa6\x8dm\xe6\xbb6Rh\x98=knn\xed\xceq\xa8\"\x9f\x0f\xc8]N\x92\x8cAo\xe0\x06\xda\xdct44\x83\x95\xcb\xe3\xc5l\x83\xf1\xa0\xabp|\x9d\xc9\xd5\xa7\xc1F\xb3\xce<\xcf\x97\x03\xd6\x01YG\xc3M\x9au\xd4\x89\xd6\x90C\x13\xbc\xda\x1c\xd8vQ\xf6\xad\x8dVs\xc5\x8c\xa7X+\xfb\xd8\x8d\x8b\x94\xfc\xbf\x82d\xf9\xe0\x8aN\xee\x07d\x12\xe5\xb4\xdc\x93\x9e\xb5\xf7\x04[\xed\xb2\xc3m\x8aiV\x13\xdd\xac\xb2\x1d\x95\x9fl\x13\xaf\xa1n\xf9\xb5\xf6\xb2\xc0\x1a5n\xf1\xcc\x80\xfc\xda\x04\x19F\xdb`\x7f\xcf\x0d(m\x92\xe1s\x03y \xe3Sh\xb8E\xbe\xedmJ[OO\xfb\x86\x8f\"\xb0\x82C\\HQN\x16%\xde\x0d\x0b\xa0YQE\x98F\x04\xd1\xd6Q\xa38p\x1b\x93D\x91\x01\xe3\xcd\x06\x16az\xcd\x98\xa1\xfc\xaea2[\xd5\xe8\x84\xc4r\x80\xcf\x0d\x84\xd5\xacD\x938J\xc8\x00\xaf\xb6\x859M\x07W\xe1dF\xe4\x97\x0d\xb4\xd6l\xa4df\xd5B4\xac\x89f\xcd\x1b\x9e\x02r\x90\xe5\xe1bYV\xd6\xec\x00 \xd6\x8aINjs\xb2\xd5\x1ef\x86\xb71\xb3\x8d\xa9\xc0\xdf\xd6\xf7m\"\x910\xb5\xad\xba=\xbd\x8c\x06\x9b\xdcF\xd3\x18\x83R[\xd2\xec\x94\x08\xd3\xe04\x9a\xcd\n\xc1\x1aD\xfeT#U\"\x9cF\x9c~\xde&k\x99\xd5\xeecc\xb4m\xc8\"\x8f\xe2\xba\x8c\xdc\x9e\xc4\x9b\x88\xdc\xd6`\x9e\x1b`RJ\xf3A\x94|$\xe3\xbc\xec\xdcw%\xa46]\x0d5^\xd8I\xdc\xa8fly\xd0\xd4\x8e\xda\xb5\xa5\xad9\xbd \x8d[Z\xfc\x06M\x0e\xeb\xb0U\xbb8S\xbf43\x8d\x92 ,\xf8\x0d\xa1\xaf\x1dX\x07\x02\xeb\xe0|\x1d4\x0d\xbdR\xd7V\xfa'\xff\xa2\xc15\xb9\xb7\xe6O\x16\x95\xc5\x11\x0e\x83v\x95\xcb[\x0f>\xd0 %\x19\x8do\x08St\xeb\x17\x1d)+\x8d\x98\n\xbe\xb5\xf9\x0d\xc7\xee\xc3\x07\xef\x1f\x0f\xde\x8b\x7fll\xfc\x1f\xc8h\x91\x8e\xc9Q\xb8\\F\xc9\xec\xdd\xe9\x9b\x9d*\xc3\xe1\xe0\xaaH&1[\xe7\xc1\"\\\xfe\xff\x00\x00\x00\xff\xffPK\x07\x08-\xe3\xb5\x97=9\x05\x00\xf7\x0c\x1b\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00 \x00swagger-ui-standalone-preset.jsUT\x05\x00\x01\x80Cm8\xec\xbdys\xdc6\x9a0\xfe\xff|\x8aG|w\x152M\xd1\xdd\xad\xc3:,k\x1d\xc7\x9e\xf5\xbb\xf1Q\x963\xf3\x9b\xb7\xa3UQl\xb4\x9a1\x9b\xec\xe1!Y\x13i?\xfb\xaf\xf0\x00 \x01\x10 \xd9\xb2\xb33\xbb5\xacT\xac\x06A\xdcx\xeec\x0b\x16U\x1a\x95q\x96\xba\xa5\x0f\xc4\x83\xdf\xfe\x00\x00\xe0dW\xbf\x92\xa8t\xe0\xf4\x14\xca\xbb5\xc9\x16@\xbe\xac\xb3\xbc,`{\xdb\xf4v\x95\xcd\xab\x84\xc0\x19\xff#\x10\xb5O\x81\xb8\x1e\x1c\x83#\xba\x91?\x9a\x93E\x9c\x12\xda\"\xfb+\x08Ws8\xe3?\xdc\xd9\x05\x0e\xe8\xb8k0g\xe2\xaf\xe0\xfc6\xbc\xbe&\xf9\xcfo\xce\xcb0\x9d\x87I\x96\x92\x0f9)HY\x0f\xa1\xec\xab\xf3\x87\x07\xb7\\\xc6\x85\xdf,\x89X\x8e\x9c\x94U\x9eJK%^\xd0\xe7&\xcc\x81\xc0)\xfc\xf6p\xf2\x87\xbaPT\x85\xd4\xcd\xe5\xca\xf4\x89\x17\xe0\x92Y~\xe1\x89v\xe9\x0f\xb1b'JU\xdavLG7\xcb/h\x17\xcaKl\xeb\x18r\xbfU\x9a\x1c\xc3\xd6\xa4]\xcc\xbb8\x86\xdf\x1e\x94w\x0fj\xa7|T%\x1dU\x14&\x89\x1b\x8b\xc1\xf9\x10\xfb \xfdJ=\xfa3\x81S\xd8\x1aK/\xea\xd6\x9anx\x9bi\xb0\x82S(}H\x83\x88N\x8b\xfe1\x87S\xf5\x10\xfa\xd0Z\xb24\xc8\xf8\xf9\xbc\xbf\x87\xf7x\x1c\x02vL>\xe4\xd9\x9a\xe4\xe5\x1d\xff\xb2\xbdBQ\x96.\xe2\xeb*\x0f\xaf\x12bY\x96\xb4Z\x11\xf1~\xdc~\x7fM\xcac\xc8\xd5\x15\xf3\x9a9\xd29\xa4\xca\x1c\xf4\xd1\x8b\x13R\xd2\xa3^\x06\x97\x97\xa4x+\xeeK\xeb\xac\xc9\x8f\xd8 :\xd7\xb0JJu\x0cp<\xec\xeb\x01{\x9d\x06s\x97\xf8\xe0\x84\x0e]d\x1f\x88:\xbdL\xdf\"\xbd;\xde\x0c\xdf\x99u\x9e\x95\x19\xbd\xa9\xc12,\xde\xdf\xa6b\x8f\xd8i\xc2\xef\xd5\xf6\xd7p\n\xce\x93y\\\x94\x8e\x0f\xa9\x9b\x06\x14pL\xc7\x07\xac\xda\x83;\xd3\xceG*\xf7\xefT\x05\x81\xa2\xcc\xe3\xa8tN\x94[\x99\xc3)\xa4\xee\xfe\xd4S\xf7\x94^\xa8\x99\xf39N\xe7\x8e\x0fNN\x8a,\xb9!\xf4\xcf(K\x8b2\xaf\":\n'N\x8b2L#\xf2~A\x7f\xads2\x8f\xa3\xb0$\xec\x935\x05\x1b)\xd6\xe3[s^\xde%\xf8\xb2\xa0\x7f\xbcH\xe2\xb0 \x85s\xa1\xf6\x9ca\xcfE\x14&a\x8eu\xc9_+\x92F\xf8\xdd*\\\xaf\xe3\xf4\xda\xb9h\xe6PJ`\xb4s\xf9\xe9dS\x1f\xaa\x936\x9c\xa1\xb7\x8c^\x9a\xdf\x1e|\xb1=\x9f\xc9]\xe1\x12/Xd\xf9\xab0Z\xbau\xd3\xadvE+;\x138==\x858\x88\xd39\xf9\xf2~\xe1\x12\xcf\x83r\x99g\xb7\x90\x92[\xc8\xdd\xef~N?\xa7\xd9m\n\xd9\x1a\xa1\x9e\xf3\x1d\x8c\x80\xc0\x08\xbes .`EJ\x88S\x06\xd8c\xac\x90-X\x9d\x92\xd5\xf9\xcb\x8b\xb7?!l\x0f\xbe\xf3\xb4\x8b\xe6\x03\x05\xcaA\x19^3\xc8\x81\xbf\xe8\xe6\xd1\x99\xb1?\xee\xef!\xad\x92\x84\xbf\xe3\x1b\x8a\xaf\xc5\xdf\xf7\xf7\x83\xae\xca\xd6X\xed\x9c\xb7X\x9f\x0bl\xb3\xf9%\xb7\xda\xba\xf4`\xbd\x81\xbc\xd5\xe6\x80a\xb3\xd2Ou>\xf5\xd1\xc3j\xcd/}\xd6\xfcL\xf2y\x8b_j-\xf9\xb0bE\xa5@\xad+\x1fd8\x057\xc5\x0f\x94\xd2\xfa\x83\n\xf1\x9f\x8f\xbf`\xeb\xf4\x14R\n\xea\xe4\xf3\x96\x1a\xce\x9bq\xcd\xd2Yy1\xf0h\xd2\xa7\x9a\x9d\x97y\x9c^\xbb\xc4\xa3\x18\xb2lUzh\x1f\xa8\xca\xf3\x81\x1f\xe9\xac>\xd2\xf5\xb9\xb2\x1dm\xd0F%\x1e:\xba\xc8\x87\x85\x0f\x89\x0fk\x1f\x96\x8c\x06\x81\"x\xdd\xa6r\xe83\xaf+\xfc\xd1\\\xe1\xa6\xaepn\xaepWW\xf8`\xaep]W\xf8\xc1\\\x81\x12\x88\x94\x0b\xc8\xe1\x18n\xe8\xbf3\"N\x17A\x1a\xf8\x81\x12\xf3\xae(\xfe\xed\xc1k\xe8\x0ds\x8b\x97\xbc\xc5\x98\x9eB\xd1Z\\\xb7f\xfe\xe8\nN\xe1\xb2i\x19\xbf\x91\x7f\xe3\xa7'\xadO\xe9\xf5w#Dvx\x98\x10hz\xb8?\x94Lv]\n\xec\xb7\x96\xf4\xdd\x8a\xfe\xef&\x8b\xe70F\x90\xb9\x9aE\x17\x1e\xe5\xa0\xe0\x18Ro\x16]\xf8@\xe9\xa2kZm\x01g\x10\xba R\xc6\xc7p\x87L\x98\xe9\x0e'X\xef5\x7f\x83\xf4\x96\x0f \xfd&\xf1Y\x87\x95\xbb\xf2\xe9\xa1\xa0P\x1e\xb7\xe1g\xcf\x87\xcbYt\x01[\xa7\x90\xe0\xcdu/\xb1\xc6\xda\xf3YOW\xf2[\x17\x7f\x9dB\xa2\x81\xd5f)\xf2 bw9\xf6\xe9I\x83S\x98\xd0?\xfeHI:\xfa\xc79\x9c\xc2\x1e\xfd\xe3\x03\x9c\xc2!\xfd\xe3\x07Z\xe7\x80\xfe\xf5g8\x85]\xac\xf53\x9c\xc2\x01V\xfbH\xdfN\x0f}\xe5\xc6\x17\x9b\xdd\xce]\xe3\xed\xdc\xd3\x8b\xf9\xed\xd4\xef\x1b\xbd\x9dO\x9c'\xd7\xed\xcb\xa9\xf7n`]@b\xe38\xaa\xca\xdc\xd2\xb3\x1c;\xda\xa8\xf3\x8c\x02H\xd2>\\\x1c\xde:N\x83b\xdd\x10F\xa7\xe0\x00\xfd\"\xa5\x18\xe7\x14\x91\x0f\xef(\xf7(%\x90\x84\x11q+\x1f\x9c\xed\xbfVYy\xe2x\x88\x99\xbe\xf3|\x08a\x04\xces\xfamL\xffz\xf6\xc4\xe1d\x9b\xf3\xdc\xb1m\xeffD)\xe7\x8b\xe5\xf2\x94a \xe2\x86\x9e\x0f\xb9\x9b\x07\x1f`\x04y\xf0\x1a\xbe\x87\xd8\xed\xa4\xd2\x04\x1f\xe580+/\\:\x07\xeb\"\x11\\#\x12\x94\xd9O\xd9-\xc9_\x86\x05q\x91{$A\xb1N\xe2\x12\xbf\x0e\x12\x92^\x97Kx\x0e\xbb\xeat=\x1f\x1c\xb6\x86\x94!\xe9C\xdc}\xe8\xc9\xa9R\xc6\xac\xce\xe9\xce\x89\xbbz\x1b\xa7\xf3\xec\x96n\"\xfb+x\x1b\x96Kz\x97\xf1\xdf3\xf1\xfe\xd8\xf2yA\x92\x05\xfd\x98\xfe\xab\x7f\x8a\xef\x8eA\xc0\x01\xd7\x11\x84\xe82.\x1c\xcf\xf5z\xf0\xe05\xc7\x83\xd7\x8f\xc0\x83G\x9d\xa4\xca\xbe\x8e&\xd9\x8d;\xfa\xdfC\xaa\xd8\x89\xb8\x03\x9d\x16\xa0Kb\x90m\xc9\x1b[o0#\xa5\x91d\xe5\x7f\xf27\xed\xe5\xcc\xe9\\b\xfa\xbf\x01\xfb/\xaf^6\xf8p\xbf\xc8\xf3\xf0.\x88\x0b\xfc\xd7\xdcX:\xb8\xb1\xff\xe57E\x9e\xf2\xb0\xb3J9nN\x17\xd0\xbe\x04;\xf2\xe9nM^\xe5y\x96\xbb\xce\xcb0\xfd\xae\x04\x8a\xdd)k\xbd\xcc\xe6\x90\xa5\x00\xec\xac\x9aey\x9bB\xb0\xa6\x15E\xb4e\xb9Vt\xb5\x9a\x1e\x94\xf3\x95\xdfi\x9f\xd0\xf6\xd2\xce\xd3\x89wq\xec\x03\xb9 \x13\xcfuXq\xd3\xfee\xd9\xc7\xbf\xcc\xfb\xf8\x97\x9b>\xfe\xe5\xae\x8f\x7fi\x18\x9c?\xdb\x19\x9c\xe5\xa6\xec\x08\xe5aV}\x8c\xce\x15o\x99\xb2Ns\xc1:\xd9x\xa5.\xdee\xa9\xf1.\x8ckY#3\xa0q-W\xc8\xb5loC\x88\x8c\x05\xbb\xbc\x94\xd5\xa1,\x0b\xf2\n\xc7\x90\"3\xb3b\x8c\xc3Rc^\x9a\xd3\x8f\xb5\xcf\xb0\xb6`rh#Y\xcd\xf7\\\xd7\xdc\xc8\xe9)\xb2:\xdd\x92$\x90H\xc6F\x90d\xa7\xd2\xc5C\xaf'\x05: Dr\xecf\xda?\xa0Oq\x1b#T\n\xf3\xebjE\xd2\xb2\xe0\xb4e\xdfw\xf4\x89\xc2\x82\xc0\xf8\xb8\xb7\x1eH\x02{r\x0be{\x0b\xf5\x07[\x9el\xde\xb2K\x0c\x94\xb5\xfe`\xe3\xd3\xc74\xae\xd0\xd4\xa6\xe7\xa1\xf3m\xab1\xba\xa1\xd6/\xecm\xd5\xea\x95p\xbdN\xee\xb8\xf2\xaf\xde@s\x8b\x0f\xe6u\x11\\\x87\"!\x904!\xb2J\xa5n\xcaE\xce\xfc\xa6\x93\x9b\xcfl\xdc<~\xe6\xba\xab\xe0&\xce\xcb*L\xf0\xe25\xbf\x10\x96x\x9cW\x17\xbc\xfeG\xfa\xcd%\xfd\xdf\x16\xb2\xfc(\x0f`\xdc~\xe2yV\x8e\xfe\x1f\x85\x8b\x9f\xeab3.dk\x953\x1cu\xa8#4\x8a\xa2\x8c\xca\xc3f\xaa$X\xb06\xf7=83W\x96\xd5n\x16\xccE!H\xee\x96\x9e\x8f\xb0'\xa3gtk\x8c\xdc.jL=\x03Y\x04\xcd!\xaa\xeaf\xd5\x0d\x91 \x9f\x87V\x7f\xce5)\x1d\n\xbc\x91\xb8r\n\xf1\xcb@>\xbe\x88\"R\x14Y\xce\x08\x8a\xa2Z\xd3\xfd \xf3-\x0bA\xe1\xdc\x84IEx\xdb\xf4\xd0\x95\x0cY\xa5\x01\xbe\xf0\xfcMI\x0e\xf9\x08l\xa5\xee\xf4\xc8\xb3\xf3\xfd|\x0cO)\x9e0+~\x7f{\xe0\x8a\xcb\xf6\x82\xa2\xe6\xb6S\xa4 w\xd1\xbe\xa0\xea\xfa{A\xd8\xcc\xb3\x9f\xd8o\xe4\x1f\x9a\x1a\xb4\x8f\\\xb4\xebWS\xa3\x06u\xc8\x92K\x82j\xcb%\xda\xdd\xb3\xb0\x85\xa9\xbb7\xf5\x14dk>\xf4\x82\xc5\x0e\x16\xbcF\xecNh5\x99t\xef\xbf:\xb5\xf1\x01;b\x1b\x9f-I\xe67\xb1L\xa8\x9b0\xdf\xa2\x17\xb7}iT\x1a<\x05\xc6k\xd8\xaeL\xdf\xa0\xfb\xf8`uX\xff\x8d\n\x8dne\xba\xb2rCd\x82\x88\x9bc\x1f2\x1f*\x1fB\x1f\n3\xa8\xa4@d\xcbHc!\x03\xd0\xc6\xb9\n\x8fL\xc9T\x88\xe8\x1c\xc9-p\x18\xf76N\x99B\x8e|\x89\x08SJgQT\xe59\x99\x9f\x00\x9dd\xb9$\x90f\xe9\xceJT\x9c\x93\x1b \xe9M\x9cg)\xc5\xffH\x0e\xd3J\x8b*I\x80\xd0VaE\x8a\"\xbc&\x10\xa6s\x08\xe7sTe\x87 ,I\xb2^T \xdc\x86y\x1a\xa7\xd7E\xa0\x9f\n\xfa\x90\xa4 \x1dD*E;3}\xb1.\xcct>}(\x86\x1f\x9bi\x11W]\nR\xcb\x80\x9f\xfck\xf1\xe4\xda`\xdedz\xf8A^\xcc\x92\xd1\xe8\xc2X\xeb\xc1\xf3\xbc \x0dW(\x91}\x93\xde\x84y\x1c\xa6%\xfc)\xce\x92\x10)\x99\xd6WmJ\x8c\xdd\xb2(X\xe4\xe1\x8a\x14\x9f\xb2\x0f\xd9\x9aQ\x1a\xd1\x1f\xcc\x1f\x0e\x82\x01}\x16!OM\x9c\xae\xa4\xac\xeeW\xec\x0b\xb6bvaa\xa3\xd8\xa5\x8eS\xca8\x90`]\x15K7\xed\x10V\xab\xb35_\xacD\x9d\nW\xf2\xca@.\x0b\xe2tI\xf2\x98\x83\xed\xdd}O\xfd\x84\xb1\xe8\x93C\x1d\x03p\x1e}\xf2\xd4\xd8\x16e\xbf*\xe9M=?\xdaK\xec\x86\x0d\x91\xeb\xf9x\x0b\xc7'\x10\xc13\x10\x1c\xd0 D\xa3\x91\xbe\x88\xe2\xc8\x17\xb3H[\xc2\xa4io\xb6`\xcc\xb1Vt\n\xa1R \xa3\xc2f\x94|\xff \xb1\x80\xf9\x16\x8b\x97x\x9e\xccY\xd0\xef\xd4\x91U\x1c\xfb\"\x9b@\x89\xbbP/@\xa9\xec\x16\xb3,(\x83\x9c\x84\xf3\xf0*a@\x98\x1bi\xf0\x92S\xd8\x9a\xb4\xea\xdf\xe6q\xa9\xd6\xafKD}Z\x18&Iv\xfb\xefa\xb2x\xbf&)7\xbdS\x1bRk\xd4\xad\xb5>\xac\x9b\xcc\xd2\x88\xb8\x0eA\x83\xa8u\xf7r\xae[P\xc3\xd0\xf6\xfd=+\xbd\x14\x138/\xc3\x92\x04$\x9d\x13\xb4\xd6\xc9\x83\x94|)?\xc5\xd1gw\xc9\x86\xd0\xdd\xe9\xb2\xbd\x87%m\xcd5\x89\xf2\xccTb\"\xf3b\x8e\x18\xd7\xbf\xc7\xd7\xcb?\x87%\xc9\xdf\x86\xf9\xe7\x16 \xa9\x18\x06j\x86\x83\xfd\xa4\xa5$\xd5\xd4\x17b)w\xab\xde\xfdfB\x9e?h*sR\x94yvG\xe6\xad\xe1\x0f\x1e\xa2$\xcea\xa3\x15\xe7\x14G\xab |\x0c\xf3i\x8e\x98\xfaeP\x8f\x8d\xd60-D]Acu4a\xa12\x113@\xfe\xfd\xa7\xd0X\x9f\xd9&A\xabx\x1d\xdb)m\\p\xc9\xbf\xea\xa3\xfc\xb1C\x86?\xaa$\x11\x17\x16\xcf\xbe/\xdf#\xe2\xcb}\x7f\x13499\xda\xb3\xea\x8a\xec\xbb!\x8e=\xaetN\xd7\xb56\n\xeb\xa3\x8a7\x1c\xdf\xde\xc1\x9e\x01\x8f\xbf\x0d\xcbe\xb0\n\xbfv\xeds7\xde|\x02\xd2\x80\xcc\xe3\xd9\xb73\x88LZ2\x90\xb5\xfb\x87a\x10\xa7\x87\x1b/\xf0\xdf\x85A\x1c64!\xaci+\xc1J8\x93\xee\xa0\xcd\x19\xe3\xdb\x8f\xa8S\xc8\xb5\xb5U\xba\x1d\xf2-\xebg\x9a\x85\xeec\xf7\xdeb\xaeg\x16$\xee\xeb\x06\x96\x8c\x90>:\xf4\\\xa7\xc8#\xdd\xd4\x81\x92\xd3\xb5\xd0\xb6\xcc\x98\x1dI[\xfd\xe5:\x0e\x8c \xf4\xb8=\x8a#j\xca'\x06-\x08\x838-\xd6$*\xcf\xb3*\x8f\xc8\x90C \x08S\xe9f\xf96K \xc1\xa5\x87&\x12=\xb2Y`\xa4\xea\xa9\x8e\x10\x7ffn\xea\x83CYB\x07\xf5@q\xf3\x9b\x1e \x8a\xbc\xe8\xadm\x8c\x97\xa4\xcf\xaa\xe6\x8b\x8a\xd7;\x03\\\xa1\x92i\xb1\x8a\xe0\xd7,N\xdd\xda\xda\xd7\xc3\xf6\x90\xe2\xcd\xe1\xac\x86\x07p\x0c\xa1\xf8\xa9\x94\xc6\xcd\x818\x06wN\x12R\x12|\xefK\xaf\x14K\x8fF\xf2.\xd3[\xf56u0\xd2\xe2.\x1a\xef\x19e;894\xab\x90\xc1\x91\xf8\x08\xb9\xffot\x0d\x7fo\xc0\xb01\xd66_\xbd\x03\x93\xa2\xd9M\xdd\x83\x03\xcf\xc7\xf7\xe3\x86 \xb69\x98\x18\xaf\xe9\xe4@7\xf3\x0b\x8d\xaeT\x9f\xc9\x9d\xd9\xff''\x0b\xf3\x8b\xcb\xcb\x82$\xf6wx]\x8f[ \xcb\xe4%VX\xb7M&[\x83\x9c,\xa4\xcdh7\x13\x0dk\xe63\xb9\xd3\xf6\x14$\x96\xbc\x0d\x1ar!\x962\xc2\x88\xb6\xbc\x92>\xff\xf2/\xec\xf8\x1cC\xd5^\x1c\xfa\xea\x18\xca\xf6\x0b\xdc\x03\x83v\x1b\xb7 m\x97\xaf\xf3l]\x1cChX\xff\xec6%\xf917j\x12\x8f\xd9\xfbI\xb2]\x91\xc4\x1cA\x94\x93\xb0$\xaf\x12\xb2bn\x15}\x94 \x9e\xf1\xda\x17\xa25\xa2\x84\x9e\xc6*I\x0c\xb3\xe0o\xd4\xc1QZ\x83\xdfNY\xdc/\x1e\x14\xc3\xe4\x10\xd3\xc3CP\x03\xef\xae\xb9\xef\xc7\xc2\xf3!\x12\x85 3\x98\x1c\x01\xa1\xfb\xee\xf9 \x8bM\x03v\x84\x05\x1c8\xaeK\xda\xd5\x18\xf2Q+b\x19\x02\xa5\x8c\x810\xe6\xbb\xb7\xbd\x0d[\xa1v5]V\xeeV\xcc\x93\x11\xfd\x1fOZ\xcb\xb7\x84S\xd05\xe8\xb0\x03\xd3\xf6\xca0Y\xc7\xd2\x83*\x88\x96q2\xcfQ\xa4\xa1\xa1%\x94\xb9\xd2\xdaKx\x0e\x13\x13YQ\x0b\xb3\xe6\xc2\xac\xcd]\xd25bb\xac\x1bx\x06\xcb\x13\xb8\x19\x8d<\x98\xcfn.\xe4\xd1\xcdn`\x04S\x83\xfco\xec\xabc\x9a\xab'\xb05\x13\xee\x15\xc8=q\xe8z\xb5\x84\xe4\xc0\x97\x07\x8dO\x94\x9a\x16\xf1#\x9e\x8b;O\xdeD\\xi\x07\xee\xe8\x0et\x0cM\x08\x80\xe9ig\xee\x03c\xfc/\x0eP\x8a\x9e\x96\x14g7\x17\xc7\xaf/\xcc\xeb0*\xb3\xfcn\x90G\xa4v\xc9\x82\xab8\x9d\xbb\xdc\x07\xc9L8\x93@(\xd75/\xc5E\x10%YJ^\xa4\xf3\x8fL\xdc\xfd\x1f\xa4\x97\xb9n\xe6\x18p%\xbd\xcf\xa0,\xfd\x87\xdf\x03\xfa\x07?\xe7e\xc0\xa0\x8a\xcf4\xfb\xebB\x9f?\x1d\xc0f\xf0\xa2\xaa\x0d\x9brTd\x8a\x86\xdb@\x02m\x9b\xe8\x15n\xbfB\xc1\x03\x0e\xbb}j(\x12\xed\x9a\x8b\xb79\xd0\xa9\x14\xa03\x17@\x87\xdd\x9a\xfax\xc80h\xa9\xc3 \xb6\xde\xec\xe0#\x1e\x97\xcft\x0d\xb6\x0c\xef<\x0d\xdaT\x16h\xc3\xca\x15\x15\x11%\xb6T9P\x02g\xb0\xa6\xc5\xa7\x90\xd0\x7f\x8e\xc5/Z\xd7\x00\x9d\xee6\x84Nw\x1e\xac\x87@\xa7\xbb^\xe8t]C'\xbaz+\x06\x9dV\xf0\x0c\xeeN`E\xa1\xd3\xf5l\xa5B\xa7\x95\x05:)\x03\xba\x1et\xff\xf9\xddX\xfa0\x17@\xe0F\x95\x13\xd3\xc3\x1f\x17\x7f\n\x93xn:\xfe\x9bP\xa4\x8a\xbc\x88\x1d\x10AJ00&\xf7\xaa\x10\xc0\x7f\x80~\xe2T\xd2\x0e\x1f\x98Y\xc0\xdd\x83~\xa9@\x87\xb3\x03c%\xcc\xa0+wS\x8f\"P8\xe6\x87\xb0\x99\x8aq\xec\xfa\xc09%\xa6\xab\x8a\x8d\x04ef\x10\xd3\x0b\xc3R\xae!-H\xf9)^\x91\xac*a\x192\xb1\xc5\x15!\xdcK\x97\xcc\x9dn\x91|\xd5\xdfA\x94\x900\xff\x8a.B\xb3\xfc%\xc5s\xd0\x8c\xbe\xd6\xda4Et\xf9\xc6\x06\xc8\xc6\xbf\xcd(\xd3\xb5\x95\"\x880\xb4C\xf7\xb1)\xf6{\xda\xed\x94r\xa4\xec\x0b\xf5\x9a 9\x87\xd1\xa7\xd5\xdc\x1c\xb4l@8\x92l\xb5\x0e\xbd=\xb4\xdb\xe2\n,s[\x16\x10\xf1\xb0eg\x7f\xcdsHm\xb2\x04\xe9 \x9e\xc9?Z\xc4{\xa7\x80(\xad=\x18\xea\xfa\x03\x06\x95\xdb\x06\xa5\x1c\xde3\xf5\xe7\xb1\x04\x85\xa0w`\xb4\x8b\xca\xb6\x8a\xae\xa6\xa2-\x98\nu\xa6i\xfe\xd1\xfeV\xd3@Q\x0c\xb931]\xfe\xb6\x8e\x8e\xf9? J\xe4M\xd5\xeaY:9z\xe0\x83(K\xa3\xb0t#\xb4/\xc4\xb6}\x88D\xa5\xedmX\xba^\x9f\x96\xcet]\xb7\x166j\x96\"\x89\xd0]\x1b\xd4\xe28F\x83uC\x8d\x0f)\x01\x18\xd5\xfaerb;\xe7\xf8\x01\x85\x92\x91X\xd7\x13\x18\x8d\x12x\x86\xdf\xe0\x82\x14\xb3\xe4\"\xc8\xab\xd4\xb5X\xbc\x8a\xa5\x90\xbb\xec\xb9%\xc0%|\xec\x8e\x9a\xf6N\x865\xbc\x92\x0b[Jk\xbd\x1d\xdeP\x85 \x90\xf1d\xc6F\xe9\xa9\x95_\xf8\xc3\xbb\xb1\x830\xf1\xe4n\xd9\x864\xe2\xe9\x87^\xe2\xe9\xef\x08d\xb5\x83\x0c7\xed\xdd\xc3FC\x80V\x07\xc2\x1a\xa0\xbb\x03\xfb\xec\x8do\x1e\xf4\x05{\xe8\xbc\x89s\xbb*qQ\xa5\x92&3\xa44%%x;\x9b\xbbq\x15\x8b\xd3\xb8\xd6:\x0e\xe2\xf1(E\xc0hW\x03\xed<1`\xe9V5J\x1d\xdba\x01\x9d\xcf\xe4\x04Rx\xd6\"\xceO \xa5\xc41\x99\xa5\xb4+\x95@N5\xe28\xe2ZVr+\x96\xcf\xf3a\x82th\x0d\x05\xef\xef\x01\xa3s\x84\xeeR\xa1~\xe7\x92D2\xaf:=\xa6\xc4&p\x9bs)\xde\x06\xee\x85\xd2l\x1c\x94q\x89\xd6\x1f\xceU\x9e\xdd\x16$wh!\xff\xbb\x89\xba\x94\xde\xf0\xf0\x1bq\x10\xe6\xd77\x0c\x7f@\x1cp\xbbAd\xbe\xa4\xdfE]\x1b\xdf\xdd\xe0w\xf3\xf9OqQ\x92\x14\xdb\xbda/Q\xd9\xc0\xfe^,\xc4\x9f9Ye7D\xaf\xccJ_$\x89xQ\x887d\x15\x97\xe2\xefuN\xd6$m\xf5\xc4\x8b\xdf\xa7Q\xab\xddDj\xae\x97\xa1\x98]\xa8\xabw\x15\xa7\xf38\xbd\xeeVR\xe9T\xeb:\xcf\"R\x14\xf5\xc7\xb1f%\xedh[\x14\xdd\xce\x07x\xc89O\x1c\xed\xb3\xe5\x0f\x18\xd9&\\\x88\x91R\xe22y&\xc8\x81\xb3\xe1\xbd\xf9\xd3\xab\xcb7\xef^\xbfy\xf7\xe6\xd3_\xb0\xc6\x04\x9e\xd8V\x9a|)I\xda\x8a\x8bh[\x02\xa6\x9dk\xd3Q6\xf9-.\x0d[:7S-\x9f]\xe2y\x0d\xed\x04\xcf o\xd6\xae\x9c\xc5\x94\xc5\x9e\xa5\x17LD\x1a_|\xfb+$J%9\x9d\xd9]\xa5\x15\xd4\x8fYj\x8c=\xd35\xac:5v\x063n1\x95 N\xa3\xa4\x9a\x93\xa1\xa1\xcb(\xa7_\xf7\xa5\xbc~\xe0\xc6\x0fC[2D@3\x8c_<\x84\x85\xc7C\xe5.\xfdk{[\x84\xc6ce\xf8\xe7\xf66\xe4\xc2\x12\xbd\xd5\n\x1d_\xca\xde\xea\x9c\x06\xbeY\xc4IIr\xb7\xf3-IN(\x11\x17\xa2\x17\n\xfb\x06\xc11z\x0d, \xd4\xe3\xa740d\x0b\x08\xa1\x88\x96d\x15\x06\xf0F\xbcb\xf1\x0d)>\xc8\x16PT\xd1\x12[(Z\xc4a\xe0\x18\x8e\xe3\x12C\x1b\xae\xd6qB\xe6o\x9a\x95\xab8\x0b\xeb\x88\x018>\xcc.\xf4\x0f^}i\x7f \xd6\xd3\xf8\x01E\xcco\xc3u\x17E\nB0\xc4n\x90\xd1\xae\x80>l\xb1\x8e\x8dZv|\xcf\xc3j\xdak\xf0`\x9b\xf6\n\x8b0I\xae\xc2\xe8s+V.}d\x89{\xfdA\x07\xce\x17O:cW\xf1b\x86\xd7\x94\xf9P\x8a\x9e\x9a2C\x0c\xc3vw\x14\x90\x97\x0c\x90\x13\x83Z\xea\x04J\x86\xf9J\x0e\xbd\x1b\xc6W\n\xaf\xa8k\xff@\x12\x0d\xab\xe7\xc55\x9e\x16\xcb\x99\x90/\xb7\xf8+\x0c~|\xf5\xfa\xc5\xcf?}\xaa\xe5b\xa1`\x19:N\x848\x0d\xea07\xf1\xb5\xef\xf2\x80G\x01\xa4\x18\x97\xb6\x8e\xb3\xb1AyF\x9f\xab\x9c\x84\x9f\xdb\xaf\xba\x9c\xe1K\xada\xbd\xab\xc9f]q}\xa8\xa5/\x19\xc8\xfc9\xcf\xd2k`\x9e\x81\x08AD\x97x~\xce\x194\xe1\xbbP\xb3v]F\x01\xcc^\x81\x02vN\x0c\xd6N\xceM \xf3\xe5\x0b\xc8\x0d\xc9\xefz\x80\xa7\xc0\xb3\xb2\x1bN\xa8\x01*\x0dn\x9e\xd7\x916\x05XDn\x88\x83\xc6\x02\xdc,\xa7\x802N\xaf\x13\xc2g\xc8Mq=\xca\xa0\x95a\x9c\n\x98\xab\xbcm\xf9\xec!wA\x1e=\x8dl\xd3i\xd4\x81B\xb59P\xb8i\x9b\x81\xf4\xae5~q\x8f\xc9-\x84\xae\x01o1\xf4id\x89\x05\x1c?\xd6\x1d\xd3\x14\x11\x83\xcc\xa4\xb1M\x1bj\xab\xf8\xdb \xcaP2Ho\x05\xc6\xe4\x81Om\x16\xe9\x83}\xf9j\xcdl\xe9C\xac\x83\xad^},s\xee\x16\x06\xa1\x9b\xb2\xaf\x9a\x0e\xce\x0b\x8a$\x8e\x88{\xe8\xc3\xce\xa4o(\xdd\x0e\xf5{\xbb\xff+\x1d\xea\x87-\xeb?\x80\xd5\xf9\xb7:\xf7\xfb&?U\xe6\xdf\x12\xa7\x8f\xa3\xec\xb3\x9eC:@/+\xb7=\\7+\xf5\xf1\xa3&F\x1d4z\xfaQ\xcf\xd8\x91\x86\xda\xb8a\xfcJj\x19\xc3\xc1\xc8\xb21\xac`\xeaO8\xdc\x0e\xeeR\x81\x9e]G\xe6C\x1e\xaf\xe22\xbe\x19\xbcL*\xa1i\x04\x1d\xf8\xc2p\xbdX\xfc\xc5\xf6\x05a\xe5\xed#\xaeS\xb2FPW-\x16x\xe9\xcb\xfaG]\xed\xc1\xab\xddaR\xf7\xe0\xd0\x0b\xd8{\xb3@es\x0b\x06\x03\xe9\x8e\x1b(9-s=\x80\x08\x06\xf6\x97\x17o\x7fz%\xc2\xae9u\x82\xaa\xb0\xc8d\xdb\xc3U\x98\x7f\xe6\xa6?\xf8\x93\xc7V;mb%\xd1\xfat\xcd\xdc\x8a\xa7`be\x1ef\xb0p\x9bF\xcex\x02\x8c\xba\xa4\xc6b,\xf7\xa4\xe3\xf9\xf5\x90\xd7e\x95\x93\xf32\x8c>\x7f\xcaCth\xb4\xbc\x11\x86\x9cK9\x01X\x86q\x88\xb1\xac\xa05\xd1EYXhy\xbc\x8c\x0eY\xb2\xf6\xaa\xff\xca;,\x9c\xd8 \xe4HZ\xb9\xd5\xf2&W_\x8a\xb9\x0e\xa3U\xea}\x1a\x81s\x0c\x8e\x91f!h%\xd1\xb7 >l1\x07\x9dz\x1f(\x85C\x9a|$\xa6\xed\xd0s\x0b\xca\x94\xd6\xa0\x84\n\xbd\xf6\x026\xf7\x1d\x96\xcdK]\x95Z\x08>K\xdd\xe9x\xeaiV\xf7B\x01\x8a\xef\xf7w'\xe8\x88\xbe\xbf\xdb\xaa\xd7\xc8\xcb\xb1\xde.\xaf\xb7\xc7\xff\xdd\xe7\xff\x1ex\x92\xc5\xcbc\xc5\x9dv/\xc66(S\xcc\xda\xdc lCip,\xd4\xcc\xd6\xdc\xa9\xa5\x9ed\x00\xe7\xeeY\xeap3;Mm\xa0\xdd\x85!ru\xcd\xc4.\x17\x82\xcf\xb8\xa3Q\n#\xc8\xbd\xe6\x00\xef\x1e<>\xae\xce\xe3\x03\xfapV\xea\x11a\x89$%\x8a\x1e\xc4\x84\x87\xf7oE\x1f\xcax\xb9\xce\xb0n\x10=\x99\x05\x8c\xfdg\xf4\xe4\xea\x9bDO6\xdd\x8f\xbfOPa\xd3H\xf0ZF$N,7v\x91dY\xde7:\xcb\xd0\xe2\xe2]\xf8\x0e\x15\xce#\x14#\x8c\xe1\x18\\\xa1\xc1\xc81OZ\xbfD\xc1.\xaa\xe9\x0f\x10\xdcw@\xd5\x10\xb4|\xd4\x9a @X+\x18\xad\xb7\xba\xcc\x13xs\xf5h\xac\xe6_R\xe5\xb2!\x05\xdb\xf27\xfa\x18D\xd7]\xa6\x0b\xad1\xf4\xe4Nh\x0f\xc3\x1a\x9b\xdf6\x92\xdd\xe1#Ah\xb0\xe1`\x14E\xaf\xfc\x0c\x90N\xd6\x9dw0\x0e\"\x9b\x00\xb1\xa6\x12\xd8\x04\x1f\x0e\xbb.qoB\x99\xded2\x8f\x0dTf\x8f\xaefQ\xdaO\xc6\xbd\xb7\xce\x02\x0d\x1e\x15\xd6\xae\x8f^l\x85\xfc\xe2\xf2Z}\xf0\x0c+\xb62\x06VbNm\x19m\xea>\x16\xbe\xdc\xf0\xa8:\xa1k\xa4\xd7\xb0\xed\xca\x87\xc2\xe7\x99\xf0\x0c\x95(\x1e\x8efcC\x00\xe9\x04\xdf\xe8&G\xd9\xb0\xcc{\x1d\x9a/2+.\xba4\x9fZu\x83q\x80\xcf\x8c\x12xv\xbf\x96\xc5(\"\xcf\x98\x07\x00S\x1c\x17|X y\xc0\xe41\xf2\xab\xc2\x87)\x93\xb5\x9eu\xe3BhF\x96\xd4\xf8\x90q\x80\xfa@\xa0/\x16\xa9\xb1\x1d}6}\xc7Xn\x98\x91U\xbf=\x18\x15\xd0\x8f\xbf\x04\xc3.\x9f\xa2\xeb5y\xf01\xedo\x13p\xfd# \xa3\x92\x07L\xff?\x0e\xcf\x84\xec\x9c\xc0M\\\xc4%,\xcbr}\xfc\xe4\xc9\"\x8c\xc8U\x96}\x0e\xae\xe3rY]\x05q\xf6$\xa7\xdf=\x99gQ\xf1\x04?\xde\x99\x93(\x9b\x93>\x81\x9c\x999\xe6\xa3\x91\xc7,\xd5\x9d\xed0\xbf.f\x17X\x8f\xa4\xb4\x89\x9f?\xbey\x99\xad\xd6YJRY\xaf\x96\xc3\x08&\xba\xf2\x8c\xb5\xa1\x06\x7f\x17\xa2\x89,\x1f\x1e9\xbe\x89\x1a_\xf4\x87\x8b?i]\xff\x18\xe4\x10\xee\xba\xaa\x8e\xc1\xf4\xb83\xfa\xba\x0fq;\xacz\xdcs\xea\x06\x9d\x1b\x89\x82\xb2q4\x8f`\xe5\xebb\xf1I\x87\xf7\xcc <\xac^\xb8?\xb4\xff\x12\xeb,\xb7&\xc1\xb78(\x97a\xf9\x11[+\x98\xd8E)z\x1d&\x05Z>\xba\x18H[y\xf7)\xaf\xf8\xab\xb1\xfe\x8a+\x17r\x11\xcfW\xfdn\x19w\x9a\x8f\x88\xb9)\xf9\xf6\xb46^\xf0\x03>\x04\xa5\x9a\xfdO\xe0\x94\x1f\x94\x8d6P\x94v(\xa5\x9e|\xbf\xa5n\xd7\xf7\xf0iI\xe0\x8a 7W\xd9\xbcJ\x08,\xf2l\x05i6'\xc1\xaf\x85__D\xee\xf4\x1ah\xdf\xeb\xcd\xfd[X\x95\xcb,\x07\x80\xd7$\xcf\x8a\x02^\\e\xd5\xe7e8\x8f\x7f%Kx\xb6\xc0\xc2\x7fc\xff\x04Y~\xfd\x1c\x9e \x88\xd4\x94\xb5\x1a\x15\xf6H\x8aA\x12{\xf9\xa4uu\xb9\x1c\xaa\xc5?CC\\\xb4\xb2\xe4A\x93X\x0f\xef\x94\xf2\xb2\xbe\x10\xed\x98+\xd0le\x11|\xfa\xcb\x87W?^\xbe\xf8\xf8\xf1\xc5_.\xcf\x7f\xfe\xf0\xe1\xfd\xc7Op\x06\xd3\xc9\xde\xd3\xbd\xc3\xdd\x83\xbd\xa7p\x0c\x93\xf1\xd3\xdd\xa7{\x93\xc3\xa9\x96\xef\xd6\xd2ah\xc5\x95\x94\xe2\xa4\xc3yF_7\x86\x17\x1f\xc3\xf4Z\xf0\xc9\x14(%\xf1\x1cI\xd190Os\x865:\xcc+l\xb3p\x85\xbd\xd3\xcfqZ\x1e\nCc/\xb8\xbcDl\x7fy\x89!,\x1a\xf9\xea\xb1b*\x82l7o\x00}\x9c\xe8a\xe7\x18\x8c\xe5\xb8\xd3\xa1\x85y=\n\x1b\xc5\x06\xc2\x88\xcb5O\x80\x07\xc4\x97\x95 \x85\x9an\xa0i\xba\xbd6H\xde\x1b\x14\x0d6\x12\x0b\xeb\xb7\x15\x10\xcaN\x89MZ0\x1c\xc9=\x9d\x8b\xda,\xb9\\\x12\xe6\x86\xb2\x88\xf3\xa2\xac\x11?\xac\xaa\x02\xedgB(Z\xd1j\xe5G\x10A\xf6x\x08\x0f\xb63\x105\x01i\x0cr\x1c\xcb\xd6Db\xfd,\x0c\xaae\x0d\x89\xd9l\xe8;!\xb5Q\xe7\xcdm\x87BnR\xdf\x91~\xda\x9c\x89\x16\xcf-W\xe5lo\x03\x91\xcf\x83\xfc\xae\x1dK\xbb\x83\xedFW\xbf\xe0\xea\xae$?\xe1\x89\xf6\xd1\x0co\x0c\x98\xeb\xba)\x86g\x8d4K\xbf\xaa\xdfe\x8bEA\xca\xef\xe8\x11\xc8*4G\xbf\xca\xaat^\xd8vW\xef\x936\x0e#p1\xf7\xf0\xd8\xb3\xf6\xc3\xee\xdc\xf0~0\x00A#cI\xa5\x00n\xa7<\xf0o\x0b(\xd4F.\xd6*x\x81\x8fM\xc5t\x99\xcd#\xe9\x04L\xa4\x0b\x10\xd1\nk\x06H;\xaf\x8a\xc1\xd0O\xd9\xfdc\x93R\xb1\xc5\xd8tx \x1a>\xc7\x05\xad\xf3\xc9\xdf\xdf3\xe7P\xa7*\x17\x87][\xbfU\x04q\xf1\x8a\xc3\x0d7\xb58`\x7f\xe7\x08\xd0\xe2H`\x83!\x056\x94\x1a\xf6\x98n\x12H\xf8t\x0c\xf70g\x1bg\xf6\xd7\x02\x8e\\]\x16T\xa8d\x86\x8e\xb7y\\\x12\xd7\x02U\xd9'u\x96\x02\x97\xf9\x042#\xfc\xb1\x0f\xb1\xf7\xe8\xed\xf2\xfaL\x1f\xc5C\xd7\xb2\xa8\x15\xba\x141uH\xb3j\xd5\x08\xdc\xc3\xd2%\xc2\xe7\xc9\x166c\x08\x906\x9a]Iu\x82\xb8\xf8SLX\xda\xfdv\xb1\xc9\"L\xaa%\x8f\xb4!0\xdb\xa3\xad\xa9\x99-\xd5R\x0e\x11\x1dK\x1caX\xe2\x9b:\xd9f\xd7*pj\xb3\x1eIW(\xc2\x1c\xc3\xfb\x9d\x9cx\xb5\xa2\xcf\x8a Q\xbd\xe5\x84E\x14\xc7\x8eY\xc9\xc5j$a\x19\xa7\x93\xce*Wq\x1a\xe6w\x96* )w\xcd\xe8\x845\x82d^W/U\xb9\xd8\xe9\xac\xc1\x08\xed\xdeQ\xfc\xec\x96\x9eu\xc1\xa1\xe9.*\xa6\xdd\xe3\x89\x8a\x9d\x9e\x1a\xe5br\x90\x90\xbe:;\x1d\x95\xa0\x19\xf7\x14\xbe\xef^\xc1%\xf9\xd2\xdfJ\n\xcf\x9f?\x07\x83?\x114\xdb\x19\x16\xe4`\xaf\xbf\xa9\x1f\xfa\x16\xb2\xd37\x1c\xa0v\x0c\x19\xba1\xc0\x990\x96\xac\x86Ph\xf6SvK\xf2\x97aA0\x03\x19F\xa1k}\xaa\xebR\xcd\xe0\xeb\xa6\x8bc\x11w\xab\x9c\x11\x03\xec\xe7F\x14\x14\xfd\xf9\x02 \xe6\x83:\xbd\x93\x98*\x8b\xfe\xb8\x01\x01eM1\xf2\x05\xdb1l\xa3E\xdc\x92R\xee\x10\x85\x81\xdc?\x0eyNx.K\xe4\xce\xf0\x8d\"\xa2\xa3\xd8}\xa7.9D\x90F+Ie\x1ekp\x94\xfa\xdcB\x82\x852\xc6j1G\xce\xa5\x1ccQ\x88\x04D\xa5\xfa\xe5\x08i\xfd\x94\"\xc0\xb2#\x88\x82\x98e\xdc\xb9\x0e\xc0C\xe0\xc8]\xb7OF\x13\xf6h\\\x99\xc2J\x91\x86}\xda\x99\xc01\\k'\xcarB\x8c\xc2'\xde0\x81m\xa4u|\x8b\x9c\xc1\x86t\x1b\xf1\x85d\x10\xcac\xee\xc0\x19\x1e\x86\xae*\x8d\xe5\x0f\xe7Z\x8d\x95\x93\xb0(\xdfX>\xc0\xb9c\x12%\xfb\xec\x8d\xbc\xcbM\x98\xd4\x84\xbd`WD\xa0\x8a\x9c\x93W\xadP\x14\xe6\x1b\xad\xaf\xbf\x05\x98d,5\x8b%\xbc_(\x1d\\s\x8dB\xa2\x82\xcd[,\xa5\x16`\"\x05\x86\xd1\x18\xffM!\x01'\x04s\x0d\x8c\"=\xc4\x91\x1b\x17Za\x01\xc7ej\xd1\x8eTf\x95\x17\xc4,*\x91\xa0\xd8\xa7L\x18\xd8\xfc\xee\xbdWt\xa5\xa6>\x84\xf0\x04\xff-\xf8\xbf)\xfek\xb8o\xad\"M0k\x1b(\x1f\x06\x0b\x17U\x89\x8c]\xc7<{\xee\xcfo\xd2rr\xf0\xc3+\x97\xc0\xf7r\xb6\x11\xf1\x98\xef\xb9\xd5&H85\xda&\x8d4\x1d\xaaaN \x83g\x10\x9e@6\x1a\x99\x992\xe0\x9d\xe1\xf42\x0f\xc7\x1fQ\xf0\xc1C_-8\x1c\xce`\x07\x16\x9dr\x1d\xd1R\xfd\xa1\x88\xd2\x9dy>\xfb\x1cF|\x81\x8az\xdf\x16tA\xacMr \xbb\xc3\xc2\xd7\xb2\x163\xd89\xe5\xa3\xf1\xf9*X\x80\xb3}mR\x18A\x01\xcf!\xac1I\x08;P\xe08\xf9\xaa=Gf.\xdb\xd9\xe9\x9arM<'<\x88\xed\x9a\xf1\x80kx\x06\xc5 \xac\xbb\x16\x1d\x94\x85\x87\x11\xac=\x16\xa4\x97.\xfe\xbaw\xa5\x81\x9b\xc0\x98\xfc\xbb\xf5\x07\xe3\xeft\xd62\xcbq\x80\x0f1\xa9\xb7+3\xd6\xb3j@vt7k3\xe0[\xf5h\x07\xe8\x061o1J!\xdc\xdf\x9b\xf8\x18\xa1\x04\x97\x90\xb6\x81\xe2\xcd\x05-\xc3\x9b\xa3\x90\xe79\xc4x\x0chqLq\x01\xfea\xee!\xeb\x85\x9d\x19\xfc+L)/7\xb68r\x0bu\xe2\x92|\xe9P=\xe5\xf0\x1c2x\x02\xd3zh\xf8\xabK\xfeP\xb1\xb3W\xb1h\x87\xa3Q\xd5\x05>(\x9aX\x87yA\xde\xa4\xa5K\x82\xa2\xba*\xca\xdc\xa5|B\xe5\xc3\xd4\xf3ar\xd0!7g\xd4\x9a$(\xac\xccu\xcb\x19\xbdi\x98\x8a&\x1c\x00\xf4Dc\x83\x0e\xcde\xcf\xa1\xe1\x8d\xfd\xd5\xfd\x19s\nK\xc7\xc2C\x95\\\xdb\xa0\xd3\xd6\xd3\xd5\xd0\x9e\xec\x06\x03u\x9b\xb2\x11\xd2\xecB 8Q\xb3\xf2L\"\xc6\xb3\xed3\xc1Q\x19D<\xe4\xc4\x8b\xd2M{$\xfam\xc0\xf7\xc0dy\x9bL\xfav\xd8\xa4\x95\xb5\x19\xd4\xf0\x97a\x0d\xff\xd5\xfda\xf3A\x9f\x0fm{\x90VC\x0e\xec\xc0\x83\x93\xf2]\x93\xaeZ}\xb0\xb6\xb7a\xcbu \xc5NS\x0f9\x02~ \x19+!\xed_\xc5\xf9M\xcaO\xc3!\xcb\x84\x93R\xb0\xb1\x7f\xe0C\xc6\xb6=\xf6\xea?m\x9a<+H~\xf8\xda\x03\xff\xaa\x8b\x9fUY\x08\xf4\xe9TXL\xf4\xd5\xa7<\xc8\x0fw%\x91<\xa2[\x85\\E\x85\xfd\x0c\x1b\xd7\x8b\xaeq\xa5RL\xa1\x9af\x1c \xb2\xc5\x10\xf3\x18\x83\x1ab\x14\xddv\x81\xcd\x8c\x85\xf8\xf0E~\x93r\x16\x1bLS\xc5\x83N$\xc6L\x89\xe2A#V\xcaJ\xef\x1e\xc1\x19\xec\xc11\xfb5\xdd\x853\xd8\xe5\xbf&G\x138\x83)\x1c\xdbD/\x08\x91a\x04 \xad\x87[|\x83\xe1Z\x8c\xf8\xc5#\x8f\x8f\x81\x05\xf6kz\xe1kS\xc9p\xf4jY%\xcdh\xb2_\xcfh2\x85{p\xc5\x9c\xe4)Vt\x8a\xd3\xf1\xdeS\xfe\xdd3\xd8\xdf\x9f\x1e\x1dP\x92\x88\x92\xb3\xfbOw\xf7v\xbdo:\xff\xbd\xc7\xcf?\xac\x7f\xedn\xb0\x1ajYhY\xa1Cm\x85\xa4%\xab\xd4%\x0b\xe9\x92\x1d\xec\xef\xef\xee\x03\x06\xf4x\x06\x93\xc9do2\x99J\xcbd\x9c\xa2\x99$\xae\x8d\xb1(_\x84\x9f\xd3\xb6w}\xbc\xc9\x18tl!\xf7\xe7.(>\xa0?\x0f|\x11\xb5x\xc1\xc4\xa8c\xd8\x86\xc9x\xba\x0b\xf7l\x1397\xb3\x7f\xb0;\x1d\xc3={\xb5\xcd\x0c\xc2\xf9w\x1e\x05T\xa3SH\xda\x10\xdf\x06\xa5\xfb)\x12A\x8c\xd8\x15 \x14\xe3\x14\xbc\xbc\xafI>C8,\xee1\xc2\x13\x85\x1b\xf5\x16 \xe9.\x1c\xc7\x0e\x18s\xb32\x10\x04\xf4\x16\x06\xd3\xdcXz\xc0`8\xba\xc9}\xa6\x9a{\xdfCD\xa5\xedEv[\xe8S\xfeE\x82\xda\xb7\xbd\xf0\x81\x04\xe7Iv[\x97t\xef\xc3\xa8l\"\xab`,\xdc.\xbbBT\xdd\xb9#S\xa0\x837\xef\xce?\xbcz\xf9\xe9\xf2\xed\x8b\xff\xef\xf2\x87\xbf|zuN\xcf\xd3\xd8&\x8b;U\x93)\x9b\xcd\x82\xcc\xe5=\xb1\x13\xed\xf9\x8cn\xa4\x88o\x92\xc9\x92\x9e=G<\xb5\x02M\xb6J\xb2\xe3\xb4\xba\x96Y\x00\xd8\x81\xa8\xb3l@8H\xf1\xf0Q\xed\xb5\xe5G\xe21\xc3\x8e\x07\x1f\xf6\xa6\x9cVZd\x99\xebY\xc5\xa1%e\xc8\x98\xa5\xe9\xf6\xb6p\xeb\xad\xcb\xdc\x89\x0f\x13OR*\xb6\x8fjg\x0c4h\xe6\xb0e\x90\x9d\xa8\xe7\xca\xf5\xe8\xc9\xfa\xfc6\xfc\xc2-\xe4P\xc5L\xcf\xd4:\xcb\x92\xf3\xf8o\x14x\x1cN\x8e\xa6\xb4\xe82\xac\xae{M\xb6\xc1\xb6\xb1\x85\xe2\x0c\xa3\x1fo&\xd8\x1e\xe0u$\xb5\x1f5\xe9\x05\x0d\x16\x98\x1dBjW\x1a\x8b2F\xe3\xb9\xa237\xd6\xf1-\xf6\x93<\x9c\xcc\xf66\xff+@{U\xc2\xf3\xb8\xa9e\x17LbF_\x99\xc3\x9c\x16\xbe\xd6\x8a)\xe0)wh7S\xa3\x9d _\x1e\x98\x1a\x01\xc1\xcef\xab\xbf\x81\xed\xa7\xf8\x02Y>D4ca\xd6$\x1bB2\xf3\xbe3\x93\x05`\xde\xd4\x0f\x161\x0b\xea\x86\xc6\x86j\xa1Tb\x00\xf0}\xa7\x05\x17\xe1\xe7\xb4\x08\x17\x83\xe3\xafX2\xb5\xe9\xcdQl\xf1-\x9a\x94\"\xac\x0cjk\xcbmb\xa1\xdd\xdf\xc3V\x19\\\x8a&\x0c\xadG\xd9j\x1d\xe6\xa4\xcf!\x1bd\xf3\xca\xdar\x03\xdb\xd7\xf4QF \xd9\x8b:\xba\xb7P\xac\xb0/\x8c\xb6&\xcc\xf0Eu\\\xee2s\x90\x15{\x8c\x0d'\xf5\xaf\x98\xc5\xa1\xcfdN\x92\x99\xd2\"k\x98Q\x86\xde\xe2t\x8b\xc3\x98\xc5\x17xD\xc9,\xbe\xe8B\"\xa9\xe0\x1cY\xff\xad\x0c$\xf2c\x97\xddZ\x89>\xccw\"\x94zh\x8e\x04g0Q\xe2\xe1Bs^\x84\xf9k\xef\x89\x11l%W\xfe\x94-\xe5\x8fy\xc2}\x06\x06\xdf\xca\x84\xe3\xbf\xc1\x1ee\x80\x8d\xc3?\xa8\x01\x88) )\x0c1\xb3\x18L'\xf8u\xe6\xd5\xc1\xd0!\xb3\xa6\xbc\xfa\xceI\xe2\xa24\x99N\xf2\xe0{\x90-\x04P\xb0YQZ\x0c\x1f\x04\x01m\xa2\xb1\x11>\x98[S\x02$\x18W\x0b!\x0ca\x10\xa4C\xaa\x8b!\x89f\xe9\x85\x95\xdd\x12r)\x05=P\xbch\x86;f>IO\x1d\xa5\x8d\xc2N\x9cW\xdc\x18\xc5\xce\x06\xca \xbc\xfa\x9d\xf6\x8f>\x153\xe6FM8g|E\xf4\xd6\x9e\xb3\x08\xcd\xb9mEg+dg\x8fS\x98\xfb\xa0Pz\x12\xfa\xdc\x1a\xab\xef\x8a\xdbp=9\xe8\xf3\x0c\x17\x0c\x0e\xc6\x8c\xea\xd2\x13\x95F=\x91l\xae\xc9GRP\x12\xbb1\x1d^UI\x19\xaf\x13BWpr\xb0s\x15\x97F\xb4\xa8(\x1a\xc6'h\xbe[\x9e\xb0\xe37\xf5\xe0\x86\xbb&\x11Jm\x8dZ\xd9KA\"\xd1e\x17M\x10\x8b\xa8.\xcb\xee\xf4\x9b.\xcb\xdeW.\xcb\xee\xf4Q\xcb\xb2\xd7Z\x96]\xcfo\x8a\xe82\xb1\x7fLZ\xb8\x0dV\xeb`\xef\x9b\xae\xd6\xe1W\xae\xd6\xc1\xde\xa3V\xeb\xb0\xb5ZO\xcd\xabu\xa0\x15O\xd9?\xfbZ\xf1.\xfbg\xef\xf1kk\x8a\x1f\xd7\xb5\xbah\x9e\xdc\xb5\xc2\x8a\xa6\xa3\x8e\xaa\xc5~\xb6\x02\x08\x9c\xc1\x0b>\x9b1\xa5\xcc\x07\x84\x87\x92\xc7\x93wh\xf2\xe9F+\xf8\x07\x8d`\x98\xcd\x99\xb0\xfa\x1a#\xdb\xf4\\\x9eO\xe3Q\xe2\x0ck\x17\xfd\xa6R\xbd\x91\xda\xd4N*D3<\x8a7\xcda\xb69Y\xc1\x10j\x15\x06Q\xac\xe2\xe1\x9d\xbf\xd8\xa4\xf3.:W<\xbc\xdd_7i\xb7\x93:\x86a\x14\xb2xx\xff\x9f7\xe9\xbf\xd7v\x18\x9a\x86_m\xd2p\x075\x0e\x83(r\x18H\x95\xc3&\x9494\xb3y;l6\xbd\xc4:4v\xd1F\xc6\xfag\x1e\xf9Rx+\x1e\x83\xcd\xbd@~J\xe6\x8e8\x02\xc7\x19j6\x0dF\x9a\xec\x81\x8b\xe4\xd9dmA\xa5T\xa0N\xfeZ\x85Iw`\x170J\x1bzd\x0b\x122\x146\x9a\x9d\x88\x87\xe3\x80\xfb{\x0e,kY\x88\xd9/\\\x9bE\x9c\x16k-xr\x17f\xb2)F\x98\xffRK\xca\xdf9p\x81\x9f\x9es\xb3\xe9\x9a\xae\xa8\xddy\x10Fr\x7f\xc9`\x15\x96\xd1\xd2}\x12\xfc6}xr-2l\x80#\"\xe3\xd6\x8d\xf1\x10\x80,\xc8L\x10\x04\xe0x\x9e\x0f\xce3No\xd4\xe1r\x9e;]\xebb\x91'\xf5\x1a\xb5\x7f\xfb\xad\xd6y<\x05\xb3\xea\x9e\xdb\x0c!\xa2v\x84/\xc8\xb1^/\xaf\xed\xb6\xb4\x17\xcc\xd6,naT\"|\xdd\x11\x03\x8bv\xef\xefQ\x80\x83/b\x1d5\x9b)>\xee\x8f\x9e\xd3\"@\xfbh\xdb|sx\xce\xc7C\xe8_\x9dnBM\xfd^\x17\x02\xad1{-\xa4\x03|H\xeb\xbf\xf2\xfa\xaf\xb8\xfe\xab\xb9|\x83\xc4{\x19\xba\x0e\xec\xd0\xd3\x83!\xcd`\x87\x1e\xa7P\x96\xe8e>T\x1e7\xdf\xc0\x00\xc8B/\x18s\x15\xacb\x99\xc24\xbb\xe3\x13H\x98!\xedh\x94\xd8%\x80\xd1,a\x12\xc0\xc5,\xe9\x94\x00f\x18\xbc,\xe1:sZ\xdb\x0e\x83\x1f!\x01\xcc\xe0\x19\x1a!\xa3\x04\xb0\x82g\x90\xd9%\x802\x94\xc2(\xc2C\"\xbbI}q\xe3\\\\J\x91%\xd7.Ao[\xf7o\xd4\xd9\x9d\x1aR\x03\x03\xaavu\"\x99\xfc\x7fmG\x93\xce\x8e\xd0C\xdf\x0c\xc7l@L\x8b\xb9Y\x93\xb8L|$\xddt\x9f\xf3_\xadVj\x0f\x14\x1d@\x99\x83\xa6\xe4,J\xf9F\xad\x9b\x8f0\xc2\xe0\xb8x\x1d\xa7\x18\x97\xc03\x04d\xe1\xae\x92,r\x81p\x8c\x10\x84\x87\x0f,P\xc7\xcc\xe7\x91t.<\x16\xc9\x11\x92,\xbd\xa6\xfc\xaa\x88Fk\x0f\xa8q\xcf\x00\x85\x18D\xea\xc1\x19\x05\xcc\xac\xd8\x08\x899\x07Ay3\xd9\x9f\x89\xd5\x1db\x94_\xdb\x18K\xa8pGO\xea\n]\xacU,98\xc9\xc1{\x9e\xd7NM\"\xe2 \xe3\xef\xf0\xafA`_r\xeeeg1\xab\xca\"\x9e\xd7A\xa9\xec\xf1I\xf2:\xae\x805^\x86\x02^U'Q\xabJo\x08\xff\xc5/\xdbJ\x0b\x94c\xde\xf2^\xd6k\x18\xdb\xc5\xfb\xbc\xdc\xa0\xcf>\x8e\x8b7y\xb5A\x93_\xab\x8a\x80\xa6\xdb\xdb\x0d\xba\xed\xe5\xb1x\x9b_6h\xf3\x1fN\xd9q>h\xf0\xbd\xdc\x14Z\xf3o\xc4I\xd9,u\x01\x98A\x13s>\xd5\xbd\xa6\x98\xc2\xb1\xdf\xf9T\x97v\xfd\xdf\xf3\xf7\xef\xfa8\n\xbe\"\xe6\x1bJ\xdb9\x06\x11\x0c\xc4\xccr\xcc\xc32<\x06\xdd\x93\x0e\xe9\xa3&oFp\x19\xe6\xb9\x88\x0d\xe6\xf7\xc3R-\xf8*\x05,\xef\xe1\x14\xf6\xc6G\x07\xb6\x90q\xbfv\xe1l!A3I\x92\x1ec\x16\xac\x98\x03\xa3\xce\x97\xd9\x8c\x992@\xa2\xc1)js\xed\x0c\xe40\x87\xde\xcf\xff\xa8S\xfc\x16\x93{3drv\x1bDw\xcb&\xf5t\xb78r\x95\xd8\xa7\xbc\xc1\xb2\xa6+\xa9,\x82\xe3\xb0\xfbG\x98\xab\x1c.F\xe61}\xd3k\xb7\x9ce\x1dS\x8f\x07M\xfdm\xd7\xd4\x15St\x8d\xf1\x90\x877f\xc3\xcbk=^\xc659\xb1m\xd7\xf2Yv\x01#\x98\xee\x1f\xc0\xf7\x90\xcf2S\x90X\xd8t.\x9f\xba\xe6\"4\x12\x13\xd4H\xb0\xd8\x18\xf6H6\x0e#\x01E\x04\xef*NK\xbb}\xc7\x08\xc9 k\xdc\xb7O\xf9]\x9c^c`\x13Lj\x00W\xe4.K\xe7\x82\xf6ak6\xd0\x0b\xf7\xa5*\x82@\xa7\xc8\xc7K!\xbes\xd8\x18\x8ca\x80\xb8\xb0D\xc4\x0f\xb1i\xb2 \xba\xa8\xf1\xe3\x9fY\x03\x03\xe9\x91\xfe\xf4\xd8t\xb6\xe615\x88$t\xb0\xc7\xc1\x9c\x93/ \x8b\x17\x06\xae\xe8\x87\x1ef\x88\xd4>\xfd\x84\xdbS\xef\xe3\x86\x9b\xf5\x92\xca\xed\xd5\xadud\xaf\x17\x1f\xa6\xaa\xe1\x0ewG\x8b/\x00\xf5\x10\xdb\x18\x94\xe7\xd938\x84\xef)\xfd{\x061\x1c\xc3\x04v \xf6<\xb4\xd16\xbc\x184\xe1\x8f\x1bMxoz\xb4wt\xf0tz\xf4\x8df\xbdg\x9f5iOk\x17\xa7\xc5\x16c\xd0\xe4\xde\x0d\xbe\x1f_s\xb0lG\xb5\x03\x9e<\xfa|\xfe\xa4\xcc\xc88\x9dZ\xaer\x7f\xcf\x16`\xec\xb3\xa5\xf6!\xe6<\xae\xdc\xc6t\x97\xbd\xa3+\xb07h\x0c?>z\x0c\x87\x961\xecO\xd9;:\x86Cm\x0c\xf2\xafB\xa7\xeb\x86\xd8\xef\x08\xaf\xb8aJ\xeaS\xf8\xaf\xff*}=\x08&\xe1\xb9O\xfe\xeb\xbf\x88\xcf0\x05\x0bC9\xa2X\xbb\xbe!\xa5\x888RR\xc4^\x17\xe5^\x13\x92\x8c\xe5\xea\x92\xbe!\xe2\x1bR\x7fC\xa4o\xca\xba\x04\x93\x1d\x1b\x03\x985:\xcf\xda\xea\x1a\xd7\xc2\x1a s#\xf9IM\x81\xc1\x8e\x9eeE3\x86\x11\xec\xec\x101\xef\x13<\xda\xe3\x9e\xe9\xd2\x0f\xbe~\xc2\x87C\x00\x02o\x90\xd4s\x9c\xf8\x9a\x82\x83o\xdc\x90\x1e'\x07\xedc5\xa8\xd3\xa9\xa5Sn\xe9\x81\x8b2\xb9@\x9c?l\x1c\xed\xcd\xfe\xbaq \xb5\xa1\x0cf\xc88v\xa7\x8f\\\x8f=}\x1c\xae}A\xe4\xa2)\x16\xb18\x7f\x93\x83\xa7O\x9fN'\x94\x8b\xa8\xdf\xef\x0e\x1c\xf6#\x97\xaf5\xec\xd6\x18.D\xe2Li\x06\x93\x83\xf6\x14\x94Y\xed^t\x8a\xf0\xe9\xb0\xff\xd7A4x~\xca?\x9fL\x0f=.\n\xdf\xe1\xb4\xe3:\xbbu)\x95\x00\xdf\x03\x06\xf3\xec\x05\x07\x7f\x0f\xf0G\x94\x85\x91`[~q\x82\xe4e\x1b\nf\x1a\x14\xcc\xbb\x17)3,Rf]\xa4l\xc0\"}#\x90\x89\xbe\xd7\xf5\x89Gu\xde\xf7\x80\x11!v\xa4{0\x11\xa9\\\x07@\xd7\x0d\x80\xab\x15\x9a\xb5\xd7\xf1F\xf8UX\x81\x8bu\xedw\xa7O\x0f\xe8$S8c\x8c\xd0x\xf2\xf4`\x0c\xf7\x90\xc2q?\x05\xb2\x01\x8c~\xf4t\xd8$\xee\x15\x10\xfe\xfbM\xe7\xdb\x81\xfa\xcd \xbd\n'i\xd9to\xd0p\x87\xad\xfe\xf0\xe1b\xcf\xedA\x0f\x00\xee}\xc3}\x9dd\xa1\x01\xba?n\xb816\xd9(\x1a\xb6\xc6\x82\xeb\x1b4\x8co\xb5j\xadaL\x86\x0e\xe3\xc7\xac\xbaJ\xc8#\x97\xe3\xb0w\x1cc\xc1\x80\x0e\x1b\xc7#\xd7\xa3\x7f\x1c\x93!\xe3@\xe6\xd9\xca\xcdX\x848<\x9d\xa7\x82\xe0\x98\x15\x0b\xaam_\xea\x06\x04:2I=\x96t\xcc\xe6\x88\x12\xdbc\xfce\x1dN\x1fx!H\x13r\xba\x14\x94D\xdaB\x93\xac*#\"N\xa1\x84'\x1039\x90\x15\xbc\xd1\xca\x9dP\xac^I#\x99\xf0w\\\xc9\x14\xabXW\xd3`\xa4$\xad\xa6\x10\x9f\xd5+\xba\xb3\x13c\x808N*\x18\x964\x16K\x9a}\xb3%m\x11\x15\xdd\x16,\x86E\xd5\xd7\x92\x02\x8b\xfd}\x1f\xf5(\xd6|?\xb8;M\x06\\\xb7\xf4\x04\xb4\x96O\x197\xf9\x1f4\x11\x13\x05\xf2\xd5s\x99\xfaLr\xdc5\x9b3\xc3\xf5\xf0\x9b=\x9b\xb0=C\x11)\xa5\xa9>(\x1dl1\x1b\xfb\x91\x166\xd2>\xc9\xc1\x94\xf2\xef8I>\x1b}\x92|\xee\x86IN6\x9a\xa4\x89Z\xf9\xeaI\xee\xf9\x92H|\xd0L\x19\xcd\"f;\xdd\x93\xa6;m\xca'\x07\x96\xbd6\x1cg\xba2\x1f\xcd\xdb\xdfI\x16I+\xf3;l\xff\xe6+cY\x95\x89eU\xa6\xe63\xb3\xdb\xbd2\x93\xc1+\xb3!\x8a\x15\xd2cyY\xb6\xac\x06G\x02\xd4\xb7\xd0\x03\x86\x8e6\xcbN[\xb8%f\xa8d\xc7\xe0\xe6m\xb6\x07C\\lF,=Qz\x1f\x89\xc1+\x19\xdd\x08\x917wJb\x7f\nsL\x86\xdb\xe9\x84.\xf0\xcb\x10C\x14\xf9\x1a\xdew)\x96\xaa\xe0\xf9s\x18S<\x1a~\x13|\xb5!\x05\xf0?e\xa3;\xa8\x88\xaf\xdal\xb1\x17\x12\x81\x915\x04\xc6\xc6;>\xfa\xfb\xec\xf8\xefB\xa0L\xa6O}\xd8\x99L\x0f7\xa7Q\x14\x1d\x12]Z\xe6\x930\xf9\x1a\xfa\xe5w$_v\xa7O\x0f\xe8\\Q\x860\x0c\xb4\xff\x8e4\xcc\xefH\xc2\x04_K{0`\xca\xdd{;\x80\xc4QH\xa2\xaf\"h~Gz\xc6\xbeD\xea\xf5U\x8c$\xc4-\x1e\xb0\x8a\xff@\xc4\x8fE\xfe\xd4\xbd\x8a?i{\xd6\xe7U\xd1\xf4\xb4\xe9~i=M\x06\xf5d\x93\"uw\xf5\xe3c&e\x13\x14m\xd4U\xef\xac\xa2l}\xb7\x19\xdd\xd2\xa4\x9b\x1c\xa3Cd\xed\"\xd8\xd8\xd5\x97\x9a\xa7\x97\x94\xa5\xa41E\x90+\xd0\x0fI\xdd\"Wq\xe45 \x88\xce\x0b\xcc\xfb\xb2/\xbdS\xdc\x8a\x84\xd2\x0cP\x1eVO\x13\xa4\xcb\xf0\xa6\x0c\xf3kR\x9e\x97a^\xf6gC\xad\xcdx\x80\x19kj\xc30\xf7PdU\x1e\x91\x0dz\xc8\xbb\xc6\xcbZ{\x95\xce\xfb\xdb\xcaU\xe7\x8bz\xf5\xd5\x1d\x95\xec\xaf\x08\xc6^\xda\x916Jy92Z\xe5\"A\xcb\xf4[\xb99n=\x12\xc8\x8d\x1b*\x06]\xe6\xcaA\xec\xb1#$M\x0c,]\xc2\xe4\x04b\x9e\xd5`g\x07\xcd\xc2b\x18\x01\x03\x92\x14\xd6\xd1_\xa6\xb8/\xb5\x93\x11eA&d\x17X\x18\xaf\xcd\xb2\xfe\xb105\x9aY\xda\x06\xfd\x1b\xf3\xb9\x14\xa4\xac\xf3\xb8\x94\x8a\xa9N\xca\xcc\x9e2\xcf\x9c\x0bS\xe8\xfd\xba\x00\xc1\"\xc6\xf4\xf6\x1b\x00\x02\x83\xd3\xd5\xc6\x99\xadEz\x02\x0c\xa9\xc1\xd1\xa6vC\x8c\xe9s%\xb8\xd0\xfe\xc4\xe7Y7\xfa2#\x81\xec\xe2$\x07,\xb7Y\x1e\xd1\x87n\xe9t\xff\xa0F\xd4\x96\xf8h\xf6|\xabz\xb2\x19C><\x9b?{\x9d\xf1{h2o\xcb\xb2c\xbfj.\xe0\xdc\xe6Ul\xf3\xfch\xf5\xc7s\x97\x98\xf2\x9d\xf3\xc5b\xa9\x92\xacF\xbf\x1cF\xca\xe0\xe7\x19\xc3\x0dj\x91\xd5*\xfa\xfd`O`\x0c\xe7\xd1\xc4\xcf\xa3\xed\x9b\xa1Tf\x1bl\xe3\xcc\xab%\xba>SF{\xcc\x93\xc8\x8d}h\"{P,gL\x0bo\x87'\x06\x8b}\x04\"L\x93a\x01\"viB\x85\xb6|r\xacB\x96Q\xf8g7\x15)\xeds)\x01\xa6\xd7\x91\xbc\x99\xb2\xdc\"N\x95\xf9\x10\xd6\x13\xe0\xb6z\xe8\xa3\xacLB\xc0\xc5j\x96\xc1\xbfB\xb8\x81\xcd^\xd9\x8a\x91\xa3\x8e\x81N\xf6op\nOf\xff9\xfa\xe5\xc9x\xe7\xe8\xc5\xce\xff\x0bw\xfe\xb6sy\xf1\xe4\xda\xe6z\xf3\xba;\x84+\xa0r\xf6\x0c\x9c1:\xfd\xabiB\x8f\xb5\x02ul\x96\x0e\x7f\xb6*\x00o\xcc\x01\xda\x08\xf0\xa88\x13x\xd2\x9b\xe3\xb2q\x90\x89Ex~S^\x87\xee\x14*1\x0bl\xd3J\xec\xe0\xc1s\x8c\xe6\xbd/P\xf4\xfe\xd3\xdd\xbd\xbd.\x80\x1b\xf3\xfcp\xf6\x1aP_\xd2\xe7\xb0\x7f\xb0;9\xea\xabL\x1f\x96\x88b\x97\x8eggB\x07\xc3\x93ILw\x8f|\x98\x1cM|\x98\x1c\x1eu\x80u\xf1DYZ\xc6ie\xce\xa5$\x1e{\xf6 \xe0c\xaf@\xa4~\xb2J\xf5\xe4\xe7\x1fi\xf4\x98\x10\xaa\xb3Jo/\xdd\xd9\x95\xf0\x98\x1c\xecN\xad)\x04\xc53lU\xfc\xdfy\xc8)\xf7\xd18\x80\x11\xa5\xebvx\n\x82g\xcf`\xc2\x0c]v\xf8l\x8c-\x88\xb4\x89\x9c\xef\x190\x1f;&o\xeeo\xca\x12U\xf4\xdd3\xd6\xe1\x84eg\xe9K\x7f\xc0\x07\x93v\xcf\x83\xef\xdft\xbc7\xb0\xf7\xe9f\xbd\xc3\xf3\xe7\x98\xcb\x00\x03lcB\x83\x94\xfe\x9a\x1e\x0e\x1a\x16\xee\xd3\xb0q\xedn>.L\xba0\x9d\xee\xb1\x10\x1ep\x00\xdbt\x848\xba\x0d\xc6\xda\x03\x1aq\x1e(\x14!\x92\xb4&V\xd2\xdar\xf6\x99p\x86\x19X(i+\x93\xab\xfbu\xd6\x7fy\x8cw\xa6\xe3t'\x13>\xb5\x07\xbfS\xb8&h\xa8\xd4}\xea\x05,\xe8|\xd3q\x19\x90/\xeb,/\x8b:\x85\xf1\xe0\xd6\xf6\x0e5\x8a:f\xc5GZ1\xa5\xd3\x9cY\x86a\xf0y\xd0\xfb\x0b\xc7<\x02\xfb\x89\x15'\xa7\xc0\xefU\xc6\x8c\xae6\xfdb{\x1b\x90\x0d8=\x95\xee\xdd\xc3f\x93\xda\xdd\xf5\\\x16\xb1\xdf\x07'\xcaIX*~m_\xb1\\\xbbOw\x8d\xeb\xb5\xfbt\xcf\xb0`\xb4|_+\xafx\xf9\x81V\x1e\xf2\xf2\xa7\x9e\xc4\x0d\xd4\x07\xbbh/\xe6\x0d\x8f\x0e\xbac\xd0}\xa6\x1c?\x03\x0f\x9f)\xa7sV\xcfk\xad\n\x0d\xa2\x84\x84\xb9\x8b\x87\x9cX\xb3q\xddt\xa7\xd4FQ\x10)\xdd|6\xbe\xf0!\x9fMt\xbb\xff?\xb4\xffRd\xc0t\x0ctWT\x89\xd0\x9c$\x04c\xfc\xc4j\xf95\xa1\x102S\x0b\x97!\xdd\xd7J-,\xb0f\xe8+{_l\xb6\xf7O\xf7,gH\xf9\\_5c\xf8\xfb\x13HwvN\xda\xf0\x17\x05\xa8n9K/p\x01\xa5\xbc\xd1\x1aU\xc9K\xa5,\x9f\xe6+\"\x8ff\xf0\x90\x1b5\x92\x88y\xdad\xc9!\xf4/\xf2\xe8\x8b\xf9\xf4\xe81k\xd8,\xdf\xe5\xe5<,\xc3\xcbK\xe3j\xe4.\xf1\xe0\x0c\xd2\x99E\xbeW\x17\x1f\x83\xb3\x0c\x8b\xa5s\x01\xc7\x90\x06\xabp\xfd\xd8\xf9\xec\x8d-\xe0s\xa2_{\x06\x0e\xf0v\x8b\xa2\x8d`f\xc6D#9\xcb\xe8G!\xe5c\xc7<\xb1\x80\xb0\xc9d\xf7\xb1\x83CP#NH\xec6\xd2N\x8aY\xf3\xaf\x18\xeb\xd3\xb1a\xa8\x9a\xa8a\xd8Hmbbz\xbaY\x0c\x01q\xea\xdbb\x1bT\x12a\x14N\xe3\xb1s\xc6\xd8\"\xaa\x04\xe8\xd8\xe8\xbd\x81\x9d\x98\x1e\xb8\x9d1=l\x1b^\x17\xa7*XB\xf3\xa8\x94:lh\xc6\xd6\xf5\xd8\"\xc1\x0d\xc9\x0b\x8a'j\x0dS]TG\x86sn\xc6\x81\xe3u\xd7\x98\xd0\x1a\xb5]\x8b\xb9\xc6!\xads\xa6,{\x1bO\xa4\xe4K\xf9)\x8e>\xab\xb1\x98;bK\x82\xd8#Q_\x96B\x97\xb6\x08\x0f\x94\x8e\xba\n\xa3\xcf\xc6\x18\x0f\xa2%[\x98\xfb\x9b&\xab$\xb4\xc3J\x9b\xbf\x11\xb1\xb7\xc2.b\x1c\xa3&\x8d{\x02\xd5\xf6$\x80\x14\x16@\x81XI\xb7+X,\xb6\xd8\x93\xdf\xb1\xddb\xbd5}\xe2\x0f\xc0k\x86D+\xe7\xfa\xcd\xac\x83x\x1e\xfa\x86\xda\x93\xdb\xf1\x9b\x0e\xb5\x95{U\x7fzG\xdb\x93\x89\xf1[\x8f\xd6\xb7ir\xc4\xd35\xe0\xde\xd8Z \xcb\xc1\xe9}b\x1ci\x88\x16|\x8a\x1c6\x137\xc1\x83lV\x8dF\x17\xf2-\x99U\x1dq3\xe1[\xac\n\x8bX\xcc\xa5\xc4}\x0bb|\xdd\xc7\xe2? U\xdc\x801 N\xcb,\xda\xee\xde\xa6,\xda\x81\x89*\xc8y\x96B\x13y\x9f\xf5\x91\x8eqJ\x81 \x99q\xae3m\x14\x13\x0f\x86\xe6*\x9by\x86\xe0L\xeb\xf7R3\xe2\xaf\x98e{\xa3\x98\x9c\xa7\x1ek\xfe\xe4 \xb8\xf4\x02L\xa1\xa5\xa2\x84\x1c\x8e\xc1\xcd\xdc\x9cN\xcb\x9734V\x9e\x0f\x99\x1b\xb3H\xb0\xd5\xd0\xccr\x88\x1aL\x8a\xaa!\x01\x88\xd3\x8cc\x04\xde\x80gD\xe3\xa6E\xa1#\x1c\x9a~M\x19b/\xee2\xc5H6\x0fO\x1c\xab\xb8\x85\x01\xf8\xc0%5.1ghKYf\xe8\x98\x9fh\x9e\x13\x1a\x7fJ\x7f\x8f\x15?\xe4f\xee\x03\xb2\xae\xfd^so\xb6\xc6\xb4)\x03\xf3\xb7\xfd\xce\x83\xcb\xa5|\xa3\x1b\x93\xbafZO\xbeH\xa9\xbbwp\xe4\xb9\xce\"\xcb_\x85\x91\x08\xa5\xf5\xa8f%\x1e\xe0H\x17?p\x1e\xe0H\xe7\x0d2\xce\x1b\xe8\x10\x8d\x891\xf6\x9e\x1eJ\x8b\xe2n\xc6\xd0\xf9\x94\xfa\xe2 \xbd\x8d+\xdb\xca\xf4\xf1\x0c\xa6\x94~5\xd8)\x94p\xc6r\x15s\xf3\x8d\xd2g\xc9N\xab$\xa1'\xbcPP\xd7\xf4\xc2W\xa4#\xa8N\x0cy\xe2!\x16g\x15#\xd5\xa6\xa8P\x16v.N\xe4\xf0\x80\x91R\x19\xa1e\xa1Zv\x8b\x01\xd9##]\xcc\x93A\x1a\x12\xa2\xaa\x99 \xd3v\x05\x92V+\xc2_g\xed\xd7\xb7y\\\xb2\x97\xa1\xf2\xee\xc1\x87\x02\x19\xc7\xd8-\xe8\xb0\xe8\xcc\xa2\xe6\x90z\xc1\xf5\x90\xa8\xd3t\xc3\xf8V\xf9\xb00\xb3A\x96]\x89\x1a\xd3\x18\xf3\xe6D\xca\xe6\xecJ\x9bC\xc1\x99\x14\xba\xe8\x182\xce\xe1\xf3\xf7\x14\xae\xa5\xea\xfb\x149\x1c\xb9S\x1e\xc1\x87nh\xd4\x8cAz\xa3\x1d\x06q\x10\x8a\xe6 \x84\x86\x83P\xb4\x0e\x02\x8fa\xde\xde\xf4kR\x1a\xb7\xbc\xa0\xe5\x86\x9dV\x8fB\xd8}\x14Z\x89y\"\xbe\xdb\x11\x1d\x0ff\xc3\xf9\x16 I\x92\xe1\x1c\xdaD\xa9\xc1\x8f\xaf^\xbf\xf8\xf9\xa7O\x9c\xb0\xcc]\x0d\x0e\xb3 \xe7\xc70K\xdd\xfd]O\xcb\xdeO\xbe\xac\x938\x8aK\xfe\xfa)\xdd\x16w\x7f\xf7\x90\xff{\xe4I$\xcf \x18hgP\x05\x8d\x0c\xa9;m p./I\xf16\x9bWZ>\xd6AKG\xdb\x93\x05\\\x8a\xf5C\xea\xd6\x1abwz\xc0AI\xea\xee\x1eq\xaa;u\x0f<\xd7\x11&\x1b\x9f\xc2k\x01Z\x9c\x97\xe7\xe7\x1f\xab\x84\xfc\x14\x17\xa5\xff\xf2\xfc\xfc\xbc\xbcK\xc8\x8f$J\xc2<\xa4#\xa1e\x7f\xa2p\x85UHb\x92\x96\x1fIT\xe2\xcf\x1f\xdf\xbf\x95\xfff\x8d\x8b_\x9f\xb2\xcf$e?\xc22\xfc\x94\x87i\xb1 \xf9\x9b\x92\xac\xb0\xf0u\xcc;\xfd\xf7Oo\x7fz\x91$/\xb3$!8y,\xd1~\xbe\xce\xf2\xd5\xab\x84\xd0[\x8c\xbf\xcf }+J\xde\x92y\x1cbco\xe3\x15\xa1\xe8\x96\xa5\xe9}\x17\xae\xc8\xfc]6'o\xc3\xb5O\xff\xc5:\x1f\xc2\x98\xce\xe1\xaf\x15)\xd8\xd0?$\xd5u\x9c\xf2\x7f\xd8\x97\xe7\x7f\xfa#K&\x87\x15\xce\xff\xf4\xc7w\x88\xa5\xc5\xaf\x0fa\xb9<'\xd7\xf5\xcf,NK\xf1CZ\x85\xf3?\xfd\x91\xcd;\xcb\xd9\xa4\xcf\xd1D\x95\xa1sV@\x97\xfb|I\x08\xfb\xfc\x13eg\xf20\xfa\xfc\x92/x]\xc0~eU\x84#r\x82b\x9d\xc4\xa5\xeb\xf8\x02Z\x8cO0 ~X\xcb\x80\x8b\xd1\xc8\x04g\x11\x1e\xce\x8a\x8b\xf6\xbd\xa7\xe0%\x9fE\x867h0I\xe9\xf2E#\xf4V\xa14\xe6<\xdeJf\xd5\x05\x13\xd2%(\xf9\xa0@\"\x9bE\x94\xab\xc8\x02\\\xd7\x9e\x13\xaf3<\x14\x8e\xfe\xf6P[\x1am*\x96\x13\x02D\x0eH=\x1e\x86\xf5\xd0\x87\x9dI\x1f)e\xbb\xec\xdd\x94`m\"\xd7\x10\x80\x12\xf1\xf72L\xbf+\x81\x0e\x06V\xa4\\fs\xc8R0\xe6\xeaii+7\x1b$\x07-\x83Y\xca\xa9\x0d\xeav\xd2Y\xa8\xc7\xef\x13o\xa6\xbe\x1e\xa1\x87\x19\x16ZR\xa4s\xe3+\xb1\xe3B\xc8\x8b\x80Mlc\xd3\x9f\xa1\xe5\x8eF\x91\xbe\xff\xf4\xde1h\x1aeY\xcc\x83\xfa\xba\xd0^\xb7`\x0d\x1dl\xc9\xa9(w2=\xf4\\'^\xe4\xe1\x8a\xe8\x1d\x89'G\xe8b\x13\xab\"\x92$AA\xc1l0\x8f\x8bu\x12\xdeQ\xac\x97f)q|\x9c\xfb\xa1\x17\x84\xeb5I\xe7/\x97q2g\x99\xca\x83\"\xa7\x80\xd2\xf95\xbc \x8b(\x8f\xd7\xe5\xb1\xe33\xabV\x12DYZ\x92\xb4\xfcs\x9c\xce\xb3\xdb`\x9eEH\\zA\xb6&\xa9\x8bn\x03,j\xa7\xf3\x8c}\xfa\\T ^\x9f2\xc5\xf1\xb3_\x9e\xf0W\x98\x81)\x88\x92\x8cE\x8c/\xf08\xbd>\x81|g\xe7\xc4\x03\xae\x9a\x94t\x8d\xb3l\x96_\xd8\xad\x02\nWS\x89\x9a\xaf5O8\xcf\x94\xd7\x94\xa4\xed\xe7\xa7\x8c\xf0\x89\xabf\x04m\xdb\x0c\x93\xa2\x12\xb7\xf4\xfc:\xdce\xe8\x83\xfa\x9aK$)\xc68e\x0eX\xb4j\xe1\xaaY\x95\x08\xd2\xe0\xc7\x10\xbb\xa9/'\xe8\xed\x07\x87\x02}\xa0\xf7hDb-=~\xae8\x96\xf6\x01?\x9b\xa4\xabx\x17\xbe\xe3\x0e\xce\x1eW\x84\xbb%\xfa\xf5\xb0\x10\xa8\xa9\xb71\xcf.\x11t\xbb\x9e\xeb|&w\x85~\xf2\xd9\xa5U,\xcc7\x1av\x8e\xe1\xa3\xee\xc1\xc5?\x98\xec\xe7\xf1\xa34 #g\xce\xe5e\x94\xe5d\xe7\xd7\xe2\xb2X\x869\x99_^:\xa2O\xf3;\x8a\xe8\x1f;\xa1XL(f\x13\xfa\xed\xa1o:6\xc4\xe9DYZ\x94y\x15\x95Y\xee/\xc3\xe2\xfdm\xfa!\xcf\xd6$/\xef\xfc\xb8\xf8 \xce\xef\xfb\x85\xbf\xe6\xc5o\x8aW5\xbf\xe4\x97\xd9OY\x14&\x84a\x03_\xa0\x05\x9fc\x1e\x99j\xdbl\x95'{^\xb00\xcaTtQKf&\xf6\xfbV\xd6\xcc\x98\xa3\xcau+\xc6#\x9er\xdb\xf9\xb2\xb9\xc6\x18\xd0\x98\x99\xd4\xa0\xb8\xa5\x0d\xcdUfs\xcb\x10PA\xc8,\x94\x17\xbd\xfb\xb7!W9\x9d\x1cy\xee\x96\xec\xeeBq\xcb\xbe\xc7s\xde\xfb\xe0\xb0?\x1c\xbf\xe3\xb0\xa1\xfd\xc9%]\x8a:S>\xf7O\xbaD\x83\xaff\xc8\xbe\x1d\xc5I\xe8\x8d\xb7g\xb6\xaf\xe1\xed\x9a\xa1\xaebHvf\x17\x041@\xda\xee`\x9e\xa5*\xffI\x9f\x07\x06\xbc(\xe0\xc6\xe5m\xe66\x92\x8d\xeb\xad\x9d\x19&\xc2\xfb\x99X\xf7v\xc3[\xb071\xcb\x15[\x9cm\xebF\xd4r\xd7\x02\x89\xb7\xbc[]\xa4K\x08\xd5\xf1\xbb^\xefm2\xed:A\xfd[\xd5%d\xaf\xf3\x11\xff\x9c\xce\xc9\"N\xc9\xdc\xa1H\x84\xc9\x8f\xf8\xabwU\x928Fg1\xa4E;\x119\x0e8\xbf3\x94Jc)g\xc4\xe0\x98\x02QX\xa7\xe6\xd5\xf4\\\xe8\xd1\xca(\n\xbc\x12\xb1\xe7q\xac\x9d\xa1\xb0\x08\xb5\x00\x0e\xab\x80\xc3u+v\xca<\xcfFV\x03KBCP\xe3 m\xdd1T=\x80\xc1D\x02\x8c-\xa8?\x0f\xd3y\xb6r7\xdeM!\x92d\x86\x8a\xaeC \xc2(,]}\x17\xe9xK\x1f\x1c\xef\x92\xd2\x8e\xa3Q*\x92\x04q\xf8\xb1{\xf0x\xb4\xbbk\xbe\n\xfb^M\x8f\xb6/A\xee\xc6\x1c\\\xc7\x9c\xf4\xe3\xf2\x93\xc7\xae\x00\xdd_\xad)fA\xf4\x9bn\x8a7x^\x93\xddn\xaa\xe7\xa8\x9fS\xfd\xef\xa0z\xf6\x9fZ\xf0\xf1\xbe.\xf1\xcb\xcc \xaao\x12\xff\xbb\xf1\xf1\xc1\xc4\xb4\x00\xc1b\xc8>Rn\xc2^ $h\xdb\xe6\x92\x10\xa3\xad\xf3l\x15\x17\x843&\xa5+O\xc4\xea\xc5\xa4y\xb4\"\xd3$\xfdN\x0d\xd2\x9e\x1f\xc29|\xe0}Id\xa5=\xf3!\xea.\xd2\xdalX~\x1e\x04:\xceI\x91%7\x84\x03\xd0\xba\xf0W\x96\x858\xd7\xddZ\x1e\xbe\x82\xff\x98\xec\x99\xa5\x05\x93\xf1#O/\xb3?m\xb2JJk\xc5n\xc6\xffq\xd0L~\x04\x0e\xcc3R\xa4\xdf\x95\x98\xf7g]BN\xae\xc9\x97-\x8b\x8e\x94\x83\xd3\xaf\xba\xd0\xf4\x82b\x8e\xe4\xfe\xabiD\xeep\nO\x82'\x9a|\xc7\x88j\x9d'\xc1\x13\x07f\xe5\x85K\xb4\xbd\x128\xb6\xb5p0\x04o\x93Y~\x81J%\x1f\xb6\xac}@\x0f.7-\xef\xa6z\n\xf3\xe5'A\xa3\xfb@ e\x1b.Tn\xeaN\x0f\x0ft/\xdc\xb8~u\xa8\xbfB\xd2\xceD?\xc4\x01W\xc3 \x85\xd1\xf6\x08\xc8\xeb\xf7g=\xc0DPE\\\xe7\xa8\xed\xd8\xf1\xc0\xaf\xad\x84\x8e2\xd02\x90\xe0\x04\xcb*\xad\xbcFPS\x17I\xe2\x94\xb3f\x8e\xc7\x96\xa1\x9a\x0c\x83*+\x90\xe5\xc3\x91\xb6\x8c!\x9b\xf6\x0ckuWi9I\x0f\xd2\x11\x10\x93\xd9p\xd7N!s\xeb\x1d\xf3:\xb7\xccBPW2A\x9d)@\xb1s\x0f\xff\x1e\xfb\xb7\xc1\xd8\x87\\G\x82h5u\x0f6d\xb6L\x82\x9d\xd4\x9d\x1a\xc9\x9bC\xb3\x01\xc7dl\xf6CAi\xc6c\xc1l\xcc\x1d\x94\x98\xc0G\xfc8Eb\xf4\xb7\x0748j*\xfc\xa6[3:\x97l\xf7\xd0\xbd\x1bC`0\x0f\x84\x98\x87\x9f\x0e)\xf3[v\xb0\xb9U\xb0p\xb5\x08\x06\xbd\xd4Q{;\xb8\x00\xf6\x9a\x94\x92\x84\x89\x0d{C\xbf\x91\xdd\x03}K\x84\xcf\x90\x99\x12\xdd=\xd4\xad\xde\xb9\xcf\xd0\xa1\xceQp\x9f\xa1\xc3\xe9?}\x86\xfeA}\x86(\xaf\x94\xbaO=\x1f\x9c\xb7\xe1\xfa[9\xa1\x1d\xea\xde%\xdc\xebdj\xf6:\xd9\xdb\xd5\x0f ;P\xfa\xf1\x0by\xedG\xfb\x81\x18\xe1o\xc9\x11\x93|\xb628\x06'k\xe4\x0dR\xd5\x8a9\xba\xc4n\x89\xe7\xa1\xa4\xe7\x81\x82\x0c\xc6\xb6\x86\xfd\xc0U_3z\xae\x8f\xc6\xe3\xa7\x93\xa3\xa3\xe9\xfe\xde\xd3\xbd\xf1\xd1\xd1\xa4-nx\xf2\x9f\xee\xd9\xf1\xf8~6\xd99\xba\xf8e\xfe\xbd\xf7/O\xfa\xd6\xc0\xa2\x86\xc1\x10>|:FZxk\xcb%\xd2U\x13\xfa\x13\xc2\xb2\x9f\xc8F\xae13v\xe3hg\xeb\x94\xf9\xee\xe7AI\x8a\x12u\xba\x88\xb1\x84\x0b?\xcb\xffy\xcaC\x97\x96\xf0\xac\xd7\xefd\xc8J\xf5\xad\x82\xed$Xb\xeft\x0c\xf7T\nu:\x08m6\x17\xc2\xec\x84\xd5r\x1e\xa2\xb7\xe1\xc9/\xc1\xfd/3\xf7\xecx\xf6\x9f\xb3_..\xbe\xbfwg\xcew\x17\x9e{v\xec\x9em\xfd2\xf1f\xff\xf9\xcb/\x17\xf7\xbf\xfc\x12x\xdf\x9f\xfd2\xf1~\xb9x\xd2\xbe9O\xfe\xf3\x97\xdb\xef\x1fu@\xb8\x7f_\xa3o\xde\xd2\xc2\xdf\x8bm\xe8>A\x8a9k\xaa\x90bu\xc1U\x96%$L\x9b\x12\xc5Ik\x0bY1z\xbe*q\x9c0\xbaX&\xff\x12_\x10\xb6Cq*d\x88\x1b\xa9\xf9j|\xd4\x96\xe42\xf15\xb9!).\x9d\xf2\x13I\x03!\xe1^\x85_~\x8a\x8b\x92\xa4$o**\x855\xb3/\x8d\xac=\x84|C\xd0\xd5\xd9Xlo\xcc\x04\xda\x9a-8\xedi8\x1bD4k[\x00\xda9L}H\x83Wt-_\xad\xe2\xb2D\xdb{,k\x10\\\xb3\xf2\\\x0d\xa1\xbe\xd5\x16\xbd\xa9\xc3\xa9\xe3\xb7\xea\xfb\x89\xf6}A\xf4\x1av\xa8a3\xd1\x06\x91\xc9\x18\xdd\xc3\x99.\xd7$\x9cH%c\xeduV0K\x8cN\xabm\xf3\xb9\xf2\xd50N\x0f\xea\x8c\xc8*\xee\x8e\xc8 )\x11,\x96\xcd1\x8f&(\x1fsW\xbb\x06\xbf=Pr\x81\xd0\x999M\xd4AwK\xae\x16\xe0k\xee4\xdf*gF.\xedr\xe1\x97i\xa2\xd2x|\x0e\xd9\x14\x97b^\x91!9[\xb0\xb0\x1fb\xf1\x0dY7\xe9\xec\x17\\f\xc7\x1d\xf4~N\xa3\xb0\xba^\x96>Ti\xb1&Q\xbc\x88\xc9\xbc\x9e\x1b\x0e-\x00\xf7;\x9e}\xd7\xf1L\x927\xd6\xdf\x82\xd9t|)\x99 \xefB\xa9\xf6\xd0Z\xe3\xac\xc9\"\xcaW`V^\xd8\xc1.\x83\xcb\xa9\xe75\x0e~\x9a\xed\xb9i\xc9\xba\xfc\xf8\xd2&G\xbfE\x9ah \x7f\xd2\xe5\xca'5\xea\xab\xfb\xb4y\x17\x16\x17r\x82\xde\xb8\xaa}\x92\xb7,\"\xdcD4\xdb\xf6\x91\xed\x84\x92=\xa0J\x813)\xb9\xadG\xbf\xcd2\xe8!\xdct\x1d\xe9\x8d\x83\x0c|\xee\x92@\x0c\x89\x92\xfc\xcd/$\x87}\xfd\xfa2\xae@\xbb\xd2\"\xcaaS\xc4\xc2\x06\x11\x91\x9aOn\xe0\x14fZ\x91\x0f\xe4\xc2X\x91\xf8\xa6\xcet\xb0J\xbb\xbb\x0d\xf3\x94\xcc\x81\xa5\x0b8\xa5\xc8\xbb\x85ZP\xdbjD\x9b\xc7\x06D\x84\xddT\"\xf6\xb0\xde\x1d\xb7)x\x0e\x15vi\x19\x0dsa\x88\xb2\xb4\xc8\x12\xc2\x80\xbf\xeb\xb8i6'\x1e\xd0*\x18>s\x9d\x15E|\x95\x10P\xc8\x84\x15Ye\xf9\x1d$$\xfc\x0csR\x92\xa8$\xf3\x00\xfeu\x0eI=\xeap>\xa7e?\x17\x04\x08\xfbJ\xc7\xf6\xae\x07e\x06q\x1a\xe5\x84\x02\x9b$^\xc5e\xe0\xb4\xb6\xb4\x89\x93j\xa4\xbf\xc4\xf8\xcb<\x8c\x90\x08U\n\\\x91\x0e\xc9v\x932\x14i\x98\xaf\x96^\xb3?\xf9\xf67\xbaY\x82\xc2\xa7(Hy!\xd1\x95&dS25\xd2*\xbb!b\x0et\x98\xb1\xc7\xe3\xbb#\xc2\xa3\x9bNT\xf0#\xa0Y+\x82\x92\xfcKXi57\x10o\x00\xf6\xc9\x96#\xeeYkud}kyS\xfb\x7fQB\xe9w\x81`\xd8\x8c\x0e\xbf\xf4\xcb\xdb\x11w5^\xb0\xfbl$$j\x0c\x901a\x1a\xddQ\xa1s\xcc\xddT\x02k\x94\xea\x97V\xf5\x14\x83\xbdr\xd9T\x0b\x16)\x90T[Q\x15\x98\xaa/\x19<\xd5\xe3-\xab\xb8\xd0p\xa4jlX\x9d@\xb8\xb3C!\x8e!&\x0d\xf0\xc5Hg\xe1E3K\xfa\xab\x99\x17\x9d\xa5R\xc0'\xda\xeeS\xf5\xdf\xc4\xfe\xab\xf6\"I\x86\xf1Vf]{\xebz\xf4\\\x85\xad\x8e97!\xecYf\x1c\xddm\xf3Lg\xf4Q \xa0\xe3\xdc\xed\xed\xce{\xd1\x1e\x92\xb97\xebA'\xe8D\xaf\xccX\xdf\x1en8 \xb6\xb0\xbd\xd0nGLs\xdb'z'\xda\xf9\xc1\xe5\xd0`+\x18y\x9a\xdc\xc2\xd3X0\x83\x1e\xee\xbe Oi\xa1\x8bO\xea\xbbqbotV\xdf\x99\x1dh\xf1\x1d|%\xba\xb6\xd1v\xa8\x93Ag\xd9D\x96\xb6i$\x16'I\xbf\xc6g-\xe2\xcf@\xf9 \x1a\x1f\x8eav\xd17\xd6\x97Y\x95v\x0b\x04tv\xdf\xa6\x1e!\xed\x8dm\x9f\xb3\xc68\x83/\x83!u&z\xee\xd4\x15\x84\x05j?\xbc\xd1\xb8\x11\xfb\x0c;\xc2\x85\xa9_\xf5\x0b 5q.\xcf\xc5!{\xbeO\x0e\x9fz^p^\xe6$\\q\xd7\xdd\xe0# \xe7\xe1\x15Z(\xe0\xef?s\xbfg\xf6\xc1\xe4)\xfa\x86\xfcX\xad\x13\xf2\x85\xa9C1MLP;\xf9\xb1zGS,\xfd\x10\x16\xc5\xa7e\x9eU\xd7K\xa6\xfb\xd8?\x1c\xa4\x83\xed\x0d\xd1d\x0ett#\x92\x99\xb9\x18\x07MyW\x93\x7f\x06\x95?h\xc7\xc4$$\x89\x0b\x8c\xb4\x02\xc2o\x83!\xa1\xb4\xcc\xef\xd4\xa2E\x9c\xc6\xc5\xb2\xcf\xc7\x87>[\x9dK\xa0?\xb5\x96\x8fujG\xed\xa52*{=\x0e\x93r\xa3NQ~\x84\xd6%\x0fD8({\xa3\x80\xfa\xdd5I\xe7qz\x1d]\xed\xecP6\x8f't\x81\x1cW\xd0\xfam\x9b\xf2\x10\x0f \xa2,\xffL\xe6\xdcc\xb5x\x9d\xa3]\xac\xa9XlRIy\\\xd3g\xa7\x86\x00\xa8\xf4y@\xb5\xb7\xc1V\xa8\xe3r\xcb\xb7i\xd5fCB\xee\xe4N\x82\xab<\xbb-\x18\xf12sn\xc6\xc1d\xec\xf8@\xff8\n\x9c\x8b:\xfaW\x13\x0f\x8cA\xc9\xb1\x0f\xfb\x1e\x8f!\xcd\xbci\xb2:\xda\x8f\xda\xdb\xaa\xbe\xa6\xe7e\x88Z\xd9\xeb\xf6pP\xc8\xe2\xee\xeby\x04\xa3 N\x97$\x8f9L\xd8\xd5\xd36\x08\xb1\xa3\xf9\x90\xcc\xc9:'QX\x92c\xbc\xdeO\x0d\x0b\xd8V\x85'\x1c\xfa\xe8z%\xfa\xac\x99\xc6i\xec\xf1\x906\xed\x1aK4\x81h\xf2\xa6(\xde[\x1e\xfcfH\x0c0\xf7\xe1\x86\xf7i\x07\x0cw\xf8\xb1\xe5\xe5\xb5\x114\x03\x97\xaf\x85H\xb23X\xc8N\x1f\xaaW\xda\xf7D\xdcb\"\x0b~\x0dt:\x82\x12\xa6\xe5x\x9b\xcd\xd1\\l\xab\x94\n|\x16V\xd7m\xd7\xd3K(W\xb6\xc5\xfc\xf1\xe8\xf9x_\xbf1PZ\xb5~5X\xc6\xd7\xcb?\x87%\xc9\xdf\x86\xf9\xe7\xf6\x16\xd0'\xc2\x8a\xa2\xdd\x7f\xef\xff`a\x18\xdd\x19L\x0e\xe0\x18&\x07\xbb\x87{\x96UP\x86\x02\\k\xcbh\xd3\x18\xce \x86c\xbe\x16Q\xf3\"\xa2\xe4H\x04\xc7\xb0\xf0\xcd\x8d\xc8\x19\x15[\xef\xbd\x06\x94\x87\xc9\xcb0I\x98\xc0g\xe2\x0b4@\xe6?\xe6a\x9c\xca\x85\x0c\xe2i%\xeaw\x0c3\xa8esR\x94yv\xc7\x0b\xcd;\x92\xe0;\x9e\xe7fN\xa2l\xce\xbd\xablxJ\xa9C?N\xea\xdePB&R\xc1\x00kP-\xbb\xbf\x07\xa7*\x17\x87B\x98$spX@w\\\x9b*\x03\xb3R\x9d\xe2.\x8d\xb8\xb8\x04\x7f_\xe1U\xfe\x90g\x11)\n\xed\xe3,E_\xd1N:O<[\xdd\x94\x92\xfc\xdc41Moe\xd8h>\x9b\xe2\xc9\x99 \xfa.\x8d\xba\xeb1\xf7f\x1cxteG\x87\x94\\\xec\x9f\x95xJ}mE\x07\x0d\x85Q3\x07\xe2\xee\x91\x84\xa4\xbe\xf4\xb7\xe2\x86\xa5?\x0f\x88\x8a\x89g =\xba#G\x8aggGB\xee>\x1a\xe0\xbb\x0dNrc\x1fr\xcf\x97\xb0\x94\xfb\x8as\xe4~k\x1f\x98\xd0\x94 E\x85<\xb5\xe4\\=\xd3_\xd1\xc60f\xbfO\xc5\x1b\xcf\xf3!\x91T\xc5\x83\xf6\xf4R\x05\x8aL\x8en\xdae\"\x1f{\n>\xa4\xbbQ\x89\x9f\x1c\x9e\xa3\xe6@\xc2\x8b\xe8\xbc$V\x8aBN\"0!K*\xc1\xde\xb8\xac\xf7\xe6\x9d\xdc\xcad\xd0l\xae\xa4\xd9\x98&\x91B_\xf4\x03\xf1\x88\xb8\xc6\x1c\x07moc\xf4QA\x0ca\xda\x9b6q\xc4!\xf2\x9c\x969\x06(\xfc\xe0\x96\"\x86\xa5\xc26\xe6n\x03\xbb\x07\xcd\xf3\xd6:vb\xa4?\x0c\xd9\xb4\x04\xcd@t\xd0a\x16\x04\xd5\xdb\x87\xf2y\xa6\x8a\xa0\x98\xcf\xb6~5\xf1o\x84Lv\x82#\x069\x92ln\x89\x02\x02\\\xeao\xe2z\xcd\x98(k$\x05\xe6\nu|\xad\x90\x81\xcd\x82\xad\x1b\xda!\xc7\xa8\xae`&O\x98^\x0e\x95d\x05\x0b\xea\xc6\xa3^\xe0j\xf8\x10\xc2\xe8\xd4$L\xa3\x0f\xc69e\x88\x00\xcd\x7f\xfd\xfa\xf6\xb1\x1bSg4\xf3\xc1q(i\xc1\x10\x80z^F#\xac\xda\x81R\x18IB\xc9\x15\x8bP \xe3c\xcdd)\x8fg\x17\"0<\xc1\xce\xad\x0d\xcf\xb4\xcfz\x17\x05!d\xc4\x9d\xf2\x98\x9a\x8f\x0f\xa2e\x95Z\x18-\xf1\xa0\xb1P \xd29v\xd7M@\xc4\xeb\xe9\x16\xf0\xd0s_\xef\xd0\x04!\x93\xc2\xcd\xc11D\xf5\xa6E>e\xc0\x12\xed8\x98\x17\x8c\xde\xf9\x1a`z\x1b)\xa8\xe8S\xbb\x88\x0b@d?\x0d}2\x1e\x90@\x86\xf2\xado\x81$\xc3\xe0\xf0\x97n\xff(\xc1Abtx%\xab\xb10ld\x85\xfa\xb8\xd0d\xa2\xe1-\xd9O\xbe\x8c\x83\xc6un\x85\x9b%G\xa7\x0d\x0bc\x95Pj\xc0\x1b7A'\xc6SviU\x1aN\"\xda\xeb7\x8e\x05\xf2\xd3\xe7a\x182xe\x9d\x94\x80\xf1_\xbatM\xec\x10\x0d\xe46\xd59\xdd\xdf\x03Q$\x07\x14,Z\x88\x17N\xad T\xd2\x80\x99&{\x18+\\\xd59\xe7\xaa\x90;\x1a\xb8\xa4]\xa8W \xf6\x86\xe6fw\xc8\xd2j\xd3\xa4/\xd9\x94C\xeb\"5\x92EJ\xf2R0p\xad:\x8a\xd4A\xab;e\xe55\x16*\x85\x00I\xbb\x03,\x98\xc8\xec\xe2\x04\xca\x13\x8fN\xa3*\x96,4 \x12\x82t\xd9\xac;\xadyy\xb7\x81d\xaf\x18\xdf\xee\x96J\x1f\xee\xe6\xc4\xfc\xd7\x84\x9b\x93{-{\xac;l:\x8e\xc9\xe5J~0\xcc\xe9\"\xa8%\xae\x9b\x05|\x97U{\xf5\xd2\xbbv\xde\x10\x18\xc7\xe7hL7\x1b+\xc4E#\xf9\xe5\x96JZ\xc5f{)wC\xc2y\xe0\xf8\xe0\xfc\xf8\xea\xc3x<\xde\xb5\xa4F\x83\xf6\x05\xaf\x8b\xed.\xbb\xf8\xda\xb5\xb1\x08\xdc\x13n{\x9b\xff\x15,\xc3\xe2\x0d\xe7\xb7\xc0\xe6\xd3\xf8\x9a\x97IQ\xc7\xda__\xd0\x8bK\xef\xc6\xb0\xda\xbe\xe5,\xac|\xc3\xc8:\xdc\xef\xfa\xe5I\xb5#\xcc\\66-\x1b~\x93\xde\xf6\x15\xf0T\xcd\xdb-\xc9\x8a\xcc\x8f^\xf7a\xcb\x07\x84B\xf3^\xf1]\xedG*5^\xb6\x94\xf2>\xac$\x10\xb1\x8e\xd7\xa4\x0f:0 \x80\x8ah\x9a\x1c\x8a/\xc34\xcdJ\xa0\x0d\xf9\x18\xa7>\xe7\xeaM\x9d\x15\xd1zn\x8b$\xed\x1a:$\xebY\xe4Y\x03cn&\xbb*\xc6\x1e\x19\xdfa\x80\xe4X\xa6\xab\xea\x84\xfb>\xac\x9b\\\xce9nh./\xe8\xd2\x8e\xd2B$\x0d\xd6J*h\x91\xd9|\xf0\x91Zc>\x01\xdd\xfb\x13\x80\xe7\x10\xb4\\A6\x81T\n\x0eM\xa90\xca\x17\xb0\xf0\xd3\x02\x00Rj\x1b\xd1%sr\xd5$\xd3j\xeb[R\xf0}\xd1\xfa\x9d\xe7C\xcc\xe5\xeeg\xc3p\xb7\xa0\x06\xa4#\xc3\xb6>\\\x94$\x07\x92\xcem\xc1*L\xd4\x8d\x84\xa2\xf1\xb0\x98V \xefb\xca\xc3^\xeb\x9c\xb7\x9dK\x07I=c\nZ\"\x9e\xca\xa2H\x00\x89\xb8iH\xe53\xe6\xa9\xa8\x06\xe8\x7f\x1b\xde\xe1Ua\x0b\x81\xb5\x11\xf4\x14PfP\xa0\xb1\x80cM\xd6\xdf\x04\x05a= 9\xa4\xaa\xa3\\C\x9f\"\xd7i\x9a\xa5;\xac\xd9'\x1c\xd3 \x9f\x83\xc1\xbf\xb9A\xae\xb6\xee\x95\xba\xee9+\x89\x05\x1f\x1a[\xf7 f2S\xe6\xe6\xe7\xc6*\x01V\x19\xee~-\x0d\xb2\xed\x0f\xdaq\xf5*\xf1MM\xf7!\xf0R\xd7\xe8\x19\xd5A`\x8e\xdd\xdf\xdc)~}\xb1\xc7\x1e\xe9\xb4\x91<\x92\x9f\x87\xda\x08\xc3\xdeP\x8e\x06_U}A)\x11\x19K\x17\x9e\x99\x05T\x16\x8co\xbd\x03!J9Z|g\xde\x99Y\xaa\x16[\x8d\xac\x86\x91\xb4\xed\x02$ \xd73 \xaaf\xd0\xfc\x1d3\xdd\xd7d_c\xcb\xba\xa0\x05Q-\x18\xc4\xeb\xc1\x04\x0c}\xe7&b#k\xb3\xb5\x1d\xfa\n\x0b\x17\xdc}\xd8\xf0\xc6\x1d\x83A\xf3.?B\xacp\x0cq\x8f\xaa\x8c\"\x1cc\x1c~\xf9\x11\x92\x07c\xee\x05\xf9\xa17\x9d9;\xdb\x8f&\x0b\xd2\x1f Q\x8ey\x19\x8e\x8dL\xbe\xb1\xaeU\xc83:\x85\x89\xf9\xf02I\x8f,) \x1b\xf8\xd1 \x9e\x8b.\x88\x152\xce\x0f/\xb0/\x85\x82\x836 CO\xd5 \xe2I#\xdc\xd9i\x1c\x8d\xba\xda\xae\xd2!\xad+<\x9b\xda\x8bA\xa7!4a\x0c\xc8\xb3\x1f;;\xbe\xa4\x15\xa5\xe4\xab\xa4/\x93\xa4\x1e\xf8\xcb\xa8=k\x0bL\x98\xf6\x8c\x93\xc4\x9dD`A\xca\x1f[\x1a\xf3nZ)\xb6\xa5A\x14\xa4V\x19\x94\xd9O\xd9-\xc9_\x86\x05\xf3\xb0\xd8rg\xce\x92|\xa1\xdc\x11\xd7\xbb\xd3\x7fw\xf0\x8f\xb0\x88\xe2\x98\xfeq\x15\xa7a~\x87\x7f\x85\x059\xd8\xc3ZQ1\xe5\xff\xeeL\xf9g\x93\x83\x84\x88\x16\xc4\xdfyx+\x19\x19\xb9,\xd3\xa2\xa7\x8d\x03\xad\x8cp0\xb59\xe2\x90\xbbm\x8d[\xc1,\xae\x9bt5\x12{@ \xccM\x98 )\x10\xf7\xf6\xb6\x1c\x98\x8e\xb1\xb8\xb5\x8eZ\xc8\xbcr\x19\xde\xe4\x8d \x8bP\x1e3\x10\x8774\x17\xb2Y\xcan)@g\xc8J\x01\"\xe2\xc6>h\\\x0b7\xfdZX]\xb7y&\xd3\xb2)\xd3\x04fiDj\xa1[\x07\xe9F\x1a\x93\xa3\xb1/\x99f\xb5E\xd4 !\x95\xbc\xc5\xa8\x0c\xbc\x82\xb5\xe9\x92\xf1\xdamt\xad\xe4\xdd2\xa8\xb6k\x0bt\x1d\xa0\xf0\x01\xb4\xe7\xd6\xbe\xe6\x852\x1e+\x9fk\xe9\xde\xed\xec\x9f\x9e\xe1~1\x89z\xd3\x1a%\xf7\x8d\xf8[\xbb\xa6U*\xd7\xa9\x7fi\xb5\x9a:\xbd\xfc.\x93\x94\xa4s\xd7\xf3\x81\xb4\"8\xfd\xa1\x19\xa9\x9a\x9b\x11\xb3\xe8\x1f\x8d=\x8a\x0e\xdf\xacVd\x1e\x87%\xd9$\xb5~\x7f\x0e6\xfb\xbe\xf0\x03\xd2\x1b=\xe2\x9b\x0c#u\xf7\x0e\xf7<\xd7\x833\xee\xbf\x8c\xc9\x13\xd1\xb0\xf5p\xff+\xa6z\xd3\x84o>2\x87R\x99\x9a\xd3\xc2\xed\xea\xc1\xc3*\x83k5G\xec\xedPC\xfc\x1275\xb5h\xee\xca\x07\x850\x8a\x0c\xaf\n\xf5M\xf4Uy\x02n\xea\x90\x0d\x0b\x1f4k\xf4\xb8\x95=\xa5\xb2\xf8V\xaa\xdf\xa1B \xc5\x00\xb6\xcc\x1b\xd8k\xfc\\\x17Z\x84\x05\x86#h)\x0bo\xb1\x10Y\n\x16\xf0\xfc\x14\xb3\x14D\xee\x82\xa7\xfc^\xc6\x8d\x93\xd3\x0eDn\xe1.<\xef\x04X\xe4-\x18\x8d\x0c\xea(\xb4\xf3\x91\xa5\xac<\xccP\xc2Q\xe3\x8c\\\xf8\x90\xbb\x89\x94\x02E\xc3\x8f\xbc\xb47\xd3\xfc\xa0\x93\xa6xH\xb4\xb0\x91\x10Tj\x03\x18F\xd4\x9aDo\x96\x14\x8fHa\n\xc2\xc4\xeeA\n\x12]\xa5\xbcx`R\x82\xeeA5\x07\x8b\xd6\xad\xf3\x8b\xb0P\xcc\x9f\xc8\x97\xf2]6'\xaec\xcb\x99\x92ah\x01\xdbx\xb4\xb0\xb8]\x029\x0b\xfb\xcd\x1d\x858\x82g\xcau\x16#\x9bX\xf1w\xb7u\xa1\x90.\xb1!v0\xfdp\xaai\xe5\xc4c\x96\xa8\xa0\xcb\x9aJNY\xe4\xb8i\xe3\xc3\x08u\xfa?V\x1f1x\xe9Zf\x86\x176\x0e\xe6a\x19b\x98\xc2S\x18\x8d2\xf8W\x982s\x07l-(\x96\xf1\xa2t1\x04\x05\x17\xbf\x08\xafkN\xe1\x95\x06m\xd5\x83\x17dW\x05\xc9o\xd0R\xca\xbcx\xd12\xcc\xc3\xa8$\xf9\x8fa\x19\xb6\x82\xfe\xb3V,\x16\xeb\xbd\xf4\x02}X\x9a\x17\x0cai&X\x99\x94{F|(/P\xec\xc0\x15\x94\xa8\xbde\x04\xb0iq\x86\x88\xc5\x1e|3\x1c\xb6^\xe3v\xe4$$p\xec\xaa\xb0&\xc1\xb4\xe4\xf6f\xf6B\xe9\xe8D\xdcO\xdaM\x9d.\xa8C\x8cj\x1c\xca\xdb\xaa\xc4\x84|\xef\xd9\x8e7~\xb1\xb1\xdbze\xbf\x95\xc6\xa6\xffL\xae\xfe#.;:\xb0Th\x1f%\x1bH1\xdf\xa8\xde\xe0\xbb\x80\x8c_\xee\xea\xa2\n\x00\x16\xb8\xd5\xd8lA\xcaO\xf1\x8ad\x15J;\x0c\xdb!U\x182\x80\xa6\xba\xcb\x0e\xfb\xd8<\x98\x96T\xeeA\xba\xb2\x83\xe8\xcaoBeY3h\x9a\xb2f\xaay1\xa7l\\\xfb\xd3}\xfe\xef\xc1\xc6y1;F'\xd2S\x1e\x9a\x92\x8d\xa1\x86\x8f\xa7'P\xc3\x0e\xe7\xdda\x87\xd5X\xe9\x96|WV\xc8 \x84t\xed\x0e\x92,\xc2\xc3~\xdcJaF\x9fe\\\x94Y~g~\x99\xadI\xaa\xb2\x7f\x86J\x98\xf2\xab\xb7\xd6\xeb8\xd1+\xd9\xe6\x0b\xe2\x86K\xf1\x82\x9b3\x7f\x8b\xc9\xcal\x89\xfa\xccV\x1cta\xd8wmxr\xc3\x1dFm\xda\xb8\xb4C\xc5\x9b\xd7\xf1\xde\x0c\x82P\xab=Im\x08\x13\xf3\xb0Ih\x15$\x82B\xbb3\x87\xae\x95\xe3\x83\xf3C\x92]\xd1\x7f_g\xf9\x8a\"=\xe7\xc2;\x01\x16\x16\x13\x13\xf3U\x08\xc0]\xcf\x0b\xe6YJ\x90\xc4E\x8dE\x07\x92\x13z\x97\x98\xe5\x10\xb4\x93\x1f!\xc4)_3\xc693;QV2\x0b/\x86`5,\x91\x0d>\xec\x0b\x93;\x8c\xee\xe0P`\xe0\xd0k\xcb\x0b]=\xc9@\xaf;\xbb$\x1eW\xcf\\\x9f\xb8@h\xd6\xe7>\xdc\xf8p\xe7\xc3\xb5\xde|\x81y\x0f}\x98\x1b\xdc\x92W>\\\xfap\xe5\xc3m/\xbb\x08\x82\x83Z\x83\x08\xb6\xfa\xa2\xc6\x05/\x8c\xf1 \xe8#\xc2\x15v2\x00\x18\xef\x8fe\xec1\x87\xe0k*1C\x8a\x8ej\xd0\xacf/\xfbi\xf8\x86R8i\xad\xdd\xea\xfc\xca\xe2\xfce,\xdddD\xc3Gb\x00vmt\xf9\x05\xbd\xa5G\xe0\xc0\x1bq\xa0\xdb\x95\xce\xe1\xb4^[\n&n\xdaU^Y\xd0\xf1\x0bT\xca5\x82\xedV\x85\xf7p\n/f fNz1s\xfe\xed\xdf\xea\x8b\x85E\xe8\xfc\xf1bvcH\x1a\xfd+\x05\x86L\xdfxc\xe00?S\"\x00\xce\xe0\x1c\xce\xe0\xd6uHZ\xe61)\x10\xa2\xfd\n\xf6\xd4uoX2\xb7<\xbc\xc3\xa9\"\xa2z\x11\xf0\xafio\xef\xdb\x14\xd1\x1bD\xc5W\xf4\x96\xb8o\x18\x19\x8e\"\x0e\xcf\xf3P\xea\xae\x8b\ni\xf5+\xa6>G\xcfj\xf7\xca\x87/>%\x11(\xba\xa5<\x85\x89\xed\xb8\xe2\xabT\xd1\xea\x89\x0fK\xcf\xf3\xe1\x9c\xb6\xf0\x1e\xe1\x8c\xd8 \xec1H\xc3\x15\x93\xad\xbf\xe2x\xfc\xd7\x81P\xe6\xbd\xd5\x9f\xcb\xe3n\xf1[L\xf7\x8bW}\xeb\x15\xdb 1\xb4\x178\xb4_=\x1f\xc2\x19\xa1\x94\xc9\xaf\xf4\xaf/\xf4\xaf\xa5\x0f7f\x11\xdf\xcaj4\xc1\xe6t\x8c\x9bHw\xed\xd6\x15\xd3\xb4\xc8\x14(\x988\x86\xbb\xa6\xba)\xd3\x97x\xf8\xae\x1e\x83A\xb1\xe8\x9bl3A\x90\x89\x97\x14\xc2\xad<\xc0\x7f_\xd0\xa9gt\xea\x97>\xacf\x97\xa6\xf0\xa2,|\x91\x1b\x07\x1f`\x04q\xf0\x1a\xbe\x07wM\xbf{\xe5!\xfc]\x99c\x11\xad\xea\xc2A8\xf7FJH9\xb5\xd0\x0f]\xdfC\x1d\xa7\xa7\xd4\xd2\xe4\xda\x08{\x01\xc1\x8d\xba\xb9\xae\x08\xb3:\xcc\xeb4\xd2\x12}7,\xae\x05\xe4\xb5\x17\xbe+ mk\x0c\x1d\xd6\x81`\x1c\x06\xfd`\xa3\x91X\xe2\xd6\x9aF\xd2\xe30n\x1c\x8c\xd5\x1f\xb9+\xce\xca\x10\xf4S\xf7\xc64\x08DV\x1fX\x9a\x1etb\xe5\x93\xb9\x95\xba\x93}\x16\xa54u\xa7G\x9e]B\xccG\xf3\x14\xb6N-\xcaT\x91\xda{\x1e\xdf8\x9e\x0fN\xf8\xf5j\xd4\xa7m \xa1\xce\xdc\x0b\xc2f\xf2\x1b\x92\xfbS35|\xf4?3\xdd\xa2\xaa\xf6\x9bn\x9a\x19\xa8\x95s\x98\xab\xf1\xcc\xf9A\xa6\x93}\xcf\xdd\xd2)uc&\xf9\xbeu\xb1\xc7\xfa\x0cyB\xc76\")\xda @\x813\x163\x8d\xec\xe5\x9a\xb58\x85\xd0\x83\x94\x1e\xde\x8a\xed_\x88K\xb1\xbd\x0d\x11\x13^\xeb\xc1\x0d\xb8\xf3\"i\xc2\xe7\x16'\x1e\xff\x8e\x12p\xb3b4b\xf1}\xdd\xff\xca\xdc\x08[\xbb\xbfoZ3#\x97h\xb3M\xed\xdd\x9f}s\xaa\xe8\xcel\xfe\x95A\x93\xda\xc5\xf7\x06\xd7\xa4\x94\xb2d\xabV\"\x96c]\x8a\xbd\xe3y+\x91\xc5\x9de\x176\xf9\xae\x9ae\x8b\xf33\x8dW\x85\xf2\xf6L\xfd-\xd1x\xc7\xeag\x9c!?\x83J\x97\xe4n\xb8\xf8\x87\xe6\xc5o%\xe4no\xc5?s\x14\xd7\x03\xee\xcbu\xf8?;G\xb1\xf5\xec\x98\x12/\xfd\xcf\xcd\xa5\xdf\xb9\xcd\xbc\xb7\xf6.+\x16\x8b\xee\x04\xb6\xc1\x04\xd5\xb5<\xb6\xee\xd4RO\xd8,\xd1:{\x96:\xe6\x8c\xb7\x9b\xeda\x9f4m\xb2{\xd0N@\xbf\xfb\xf4\x9f \xe8\xa5\xe7\x7f@\x02\xfa}sR\xc4\x01\x19q-\xe7\xbf\xae`\xb3\x9f\xa4}\xf3@\xe6\xcd\xbe\xc7\x14.\x99y\xe6\x82g\x016\xbf\xa5TOhu\x14\xe1c*DJ\x9c\x82ns\x84 \xd6x6s\x8e\x03\x8e\xc1\xc5\x08\xdb\x98D\xf1e6'/J\xb7\xf0\xe4\xee\x9d\xe7\xc3\xdd\x1f\xa4\xa2e\xe7t\xa5\xdd\x91?r\xf8\x15\xc0!\xa4\xee\xde\xc4s\x13\x0f-i\xbb\x1aK\x1a\xd7\xcb\n\x83\xf4\xfa0\x91\xcc\xae\x1f(eI\xf7\xe1&H\xb3\xdb\xde\xd6\xb0\x96\xb5\xa19\x86\xce\x16\x06\x99\x94\xa2\x9c{\x01\x05zS\x1fb\xfcc\x12d\xe9\x8a]68\xa5\xd4\x07\xc6\xcap\xb3`\x9d\x15%\xbf\x85\x08h&\x18\x81i\x11\x84\xf39&\x1a\x94Se\x197Cj\x00\xc9\xbcE\x10\xafh\x8f\xe7Q\x1e\xaf\xcb\x82\x8e\xac{j\x0by\x0c\xdc\xa1\xdc\x07\xe7{)\xac\x17\x85\x94\xad\x11\xb9\x0e\x9f\x90\x83\xe4\xd4\x16\x1b9\xed\xcb\xc9\xd2\x9c\x84\xf3\xbb\xa2\x0cK\x12-\xc3\xf4\x9a [\x1d\xb9N\x81\xa3r\xbcNK\xf5\"\x08\xd7k\x92\xce_.\xe3d\xeeJ_yA\xbb\xe5\xbe3,\x123\xb1\xc6J\x16MY\xdcS\xab2\xb9\xd3\x94Q\xb2\xa0oN\x84bG\x8f\x99>%\xc4\xd7\xfa\xfe\x18\xd6\x1af\xa0\xb0\xfa\x18\x9a\xecC\x9b\xd1)\xf6\xc1\x9a\x95\x0fVy5},\xce\xf5\xf4\xb996{\xee\xa8\xeb\xd8i\xd7\xda\xdb\xb5\xc5\x04\x9bv\xdd\xd7q\xcf\xeamJ\xe9\xb4\x0c29\xa53\x1ed\xed\xa2O\xbe1u\x89]\xe6YH\x14\xe5\x1e\xea\x9bl\x9e\x857<\xb6U\x16,ZQ\xc4\x05!\x8c9\xc5sRd\xc9\x0d\xf10\x9c-F\xb1[\xc5\x05y\xec\xc2\xb4V\x80-\xcc\x9e\x9d\x04\\\xd1\xad\xef'\x00M\xd4\x9f\xd9\x99\xb2\x0en&9\x963O+N\xdemmQ\x02\xcf\xf9H\xae_}Y#h\x8c\x15\x0f\x9bAS\xb6\xdf\xd6\xda5#u\xa7\x87:A\xd7\xb8v(\xf2\xffA]\xca\x12V\xe3*\xeb\x9dq\x03\x84\xa3\xde\xc5\xb5Q\xd7\x88\xa1\x02\xae\x1b\xc6\xa46\x1eW\x8f\xb12J\x16\xb5\xaeX\x85\x84\x9d\xba5\x15\xcf\xfb\xcb\xb2A\xb9yp\x0e#\xc8\x91Y\xce\xba\xf5\xbc\xf4\x90(\x85\x98\xbf\x9dk*}9|\xd4\xa054\xcb\xae\x89\xecr#\xc2\xb5\xf3}\xec[(\x14\x8e\xba\x8a2\x9d\xd8B\xa9\xf0\x80\x84\x14\x97@\x08Q\x12\x16\x05\x84\x85\xe2%\xfb\xbbLG\x93\xd2\x0bO\xa4\xc9\xbe\xe9\xc4|{W$\xe3Z\xb6\xc8\n\xfe\x02J\xab^\xbc&oS\x96\x1a<\xc5\x18]\\\x9d\x03\xe9h\xd4E\xe8\xe7h\x89\x92Z\x08\xfd\"\xd2\x84\xac\xa0s\x01\x0f\xad\xaeB\xf6\x89\xe4\x95\xbd\x95\x07\x0b\xce\x97\xb1\x80J\xe5\x8c\\l\xb8_\x8f\x03%8WJY\x1d\xea\x1a\xdf\x98\xbf\xda\x1dO\xf5W\x19\x7fE\xe1\x8f\x9c\x86\xb0F|\x86\xdc\xa4\xb5\x89 \x0b\xd4,\x83\xa5\xb2\x1b,iA5\xfe\xd0\xfek#\xf8d\xb9\xea\";\xc1\x163\xc27\x12=\xe7\x14:\x01\xf9\xb2\xceIQ`\xd6\xa4\xaa(\x81\xc4\xe5\x92\xe4p\xc5c\xccf\xb9D\x05\xb1`\xcd\x0e\x8c6\x86J\x1a\xb8\x935s\xccc6\x96\xaa3\x8eJ\xc2\x8d\xed\xe5\x94\xd8-\xd3jC\xa7\xf5\x0d\x0c\x08@\x07\xaa\x91\x96\x85\x95\xd5\xcc\xbd\x0c1,\xd4\xdd\xc6\xfb\xc8\xa8\x11\xb1\xc7g8\xfd\\\xa1CD\xb2\xa1K\\\x83\xcbKJ!}\x93\xfb\xa3\x1aX\xef\x8e\xbfM\xfc\xa4\x03\x93}`\xea\xee\x99\xedz'-\xc5\x12zMS\xe09f\xe1\x07\x0e&\x9eb\x906e\xe5\xbb\xe3\x03\xe3\xf5\x0cMc\x06a\x97\xb6\xce\xb3u\xd1\x845\xa4\x98\xaa\xe4\x01HyIN\x16\x05K\x0d\xc5B\xcc\xad\xe7a\x89\xf9\x0f0Nr&\xad{\xbb\xef\xe2\xef\xd8w\xa4\xba\xdd\x87r\xf4\xa9\xe2# \xa3\xf2e\xb6Zg)\xc1\xbc7\xbf=\xf8J\x95\x82\x94\"EY'\x90\x91\x88\x11%n\xa69\xf4\x90\x04x\xd8\x8f\xdcu\x0e\xf7\xeb\xec\xef|~\x01I\xffZ\x91\x8a\x9c\xf31\xd4V\x15\xbe\x94\x87^\xab\xfb\x92\x87\xa2\x15\x11\x9d|p\xc4\x14T\x01\xa7<\xc9E\x96G\xe4gl\xa8[\xb6f\xe8\xf0u\xf3\xad\x906\x96\x03\x07W\xfa\xe0H]\xab\xe3\x8b\x14\xd8\x17\xcap\xaeP^Qp\x1d)\x85\xaa\x94 \n\x1fb\xb7\x90\x1b\x90Z\xf3\xd4/\xe3\xe2C\x95\x93\xd6\xa9\xe0 D,\x8cB]\xf3\x18B\xf5\xca\xd2\xc6\xa4\xb7\xc5\xb7\x00N\xa9{ ;\xaf\x0b\xf8\xa2\xe1\xbc\xe2mV\xa5%\x99\xf7\xc5\x0d\x14\x14\xb5fc\xa9NC\xdb\xbe6ae\xae/\x1d\x0dm\x18\xe6\xfa\x1f\xc9: #\x16\xa0ph\x1f\xe2n\x18\xea7\x8bm\x86\xec\xf9\xe3\xf7@,\xba\x1c\xac\xfe\x1b7\xfd\xdb\xb7\x1f\xb5\xfd\x04GU\x9e\xe3 \xdd\xdcu\xa2{\x16\xc3\xb2\x9a,\x98#H\xf3\xcburz\x05\x03\xc2\xd4\xf8\x0e\xfa\xdb\x1c\x8c'\xe3\xdd\xdfuQ\x9c\xf3W/?\xbe\xfat\xf9\xe3\xfb\xcbw\xef?]~xq~~\xf9\xe9\xdf\xdf\x9c_\xbe\xffx\xf9\x97\xf7?_\xfe\xf9\xcdO?]\xfe\xf0\xea\xf2\xf5\x9b\x8f\xaf~t\x86\xf4\xa9Q\x12\xd3\x897L*\xd1\x17!\xafu\x97\xcd~z\x14\xfc7T\xb7\xd1I\x8f\xd3\x7f\xba17\xa6\xbb\xba&\x14\n\xae\xb2\xf4\xd5\x97\x92\xa4\x94\xf8-0\xca\xf85)\xb5\x12RD\xe1\x9a\xfcH\xc8\xfa\xa78\xfd\xfc!\xc4\xa4\xcb\x84;\xbb\xb5\x8a\x8be\x98$\xd9\xed\xab\xbfVa\xf2\x1f\xe4\xae\xe0i\x05\xe3d.\x82\xbe\xb0jY^\xb2\xccz$\xb8*3^H\xf28L\xe2\xbf\x91s\x12\xe6\x11ko\x1d\xe6\x85\xfc\xfb\x9a\x94\xe7\xe1j\x9d\x90\xf3hIV\xec;L\xd1\x10\x96\xe4C\x98\x87+\xad\xa4,I\x9e*eo\xe3\xf4'\x91;Z*\x0d\xbf\x18J\xffX\xc5s\xa5\xe0\xc7\xb0$\x9f\xe2\x15Q\n\x99%\x8cR\xf4C\x96%$T;~\x1d'\xeawo\xd2\x92\\#\xad\xd3\x94\xbd\xabVWZ\xd1\xdb8\x8dW\xd5J\x1fn]Fi\xac\x97K\x12}\xe6\xdf\xad\xc8*\x8b\xff\xc6\xba\x8a\x8b7\xabU%\x84~\xa6\xd0>\xe2:_Q\xd6p\xfa\xd4d\xbd\x1e\xd7\xaf\x8fL\xaf3\xfe\xfap\xcf\xf4\xb6\x12\x1f\xef\xee\x9a^\x87\xf5kc\xd7\x05\x7f\xcd9S\xf9\x15\x9d\xdc\xff=\x7f\xff\x8e\xeb\x00\xfa\xec\x19\xec\x9eK\xc2*\x816\xc6\xce\x9b1\xb9-p~\x93\x85\xa4kb\x97\x0d\x11P\x15*+X+\xc6Z\x9d\xf4\xa4\x93\xb2\xa1\xf4:\xedD\xbc\xb8\xeb] \xde\xc8+\x17C\xd6|qy\xe4\x9a2\xfb\xbf\xe7.\xb2]\xaa\xdfj\xdd\xc3\xff\xcf\xde\x9fw\xb7\x8d#\x0f\xa3\xf0\xff\xcf\xa7(\xeb\xc9/C\xb6i\xc5r\x96N\x9c(\x9et\xe2\xa4\xdd\xd9z\xb2\xf42\x8a\xc6\x87\x96 \x8b\x1d\x89TH\xd0\xb62\xf2\xfb\xd9\xdf\x83\x02@\x82$\x00\x82\x8e\xbbg~\xf7^\x9e\xd3\x1d\x8b\x0b\x96B\xa1P{\x85i\x1a\xae;t@E\xb3\xe8\xd8\xaa\xfe\x8d\xbd\xbc\xf70@v4nv4K\x93\xe5O\xef\xdf\xa6S\x92\x125\xef7PO\xab|g\xabr\xe1\x11c*S(VN\xb1\x84,\xe5\x92\xf4\xd9\xbe\xb4}Z\xc0\x8b\x94\x19x\xa3\x8c\xcf\x04oM\x8a\xa6\xde\x93/\x1e\xf1\xfb\xcbp\xe5Q\xccd\x1fe\x14g[\xbe\"\xa6\xf5:\\\x95oB#\xc6 +;D\xf1\xf4C\xe2$\xa2\x80b\x16\xab\x1b\xb8\xa0jV\x0d\x159\xdb\xef\xcf\xa2\x05%J<\xa3\xb1 \x91hA\xefD\xa3\x8d\xf9\xf3\xd9i\x7f\x18N\xe6e\xeb\xc6\x1c\x01\xd2*0J\xc7h\x0dM\xc78{O\xe4^\xd7X#\x9a%\xfe\x18\xc8\xe2$]\xe2 \xc2qn\x08\xef\x03\xa4\x13\xcfcW\xa4m\xc9\xe8\\\xf4\x14e\x05\xdd9\x14}\xe4X\xfd\xf8\x9a{\x91\x13qj\xb6\x8a\x9bu\x97\x10A%^\x87+\x17t2\xa2LJ\xa6\xf9D)\xf2g\xcb\xfdP]W\xe2\xb1\x95\xe5\xa6\x9df&\xd8\xcb\xa0\x12\xd1\x08\xca\x90\xdfa\x97\x7f\xd9\xa8\xcfD=\xabr\xbc\x06\xcb\x9cP\xf7Z\x0f\x84\xa8\xed@\x88D\xa5\xa7\xdd\x00\xf2\xf2n\x1c@\xd4 L\xd9:\xa3d\xf9a\x9e\xc7\x9f_G\xd3\xe9\x82\x9c\x87\xa9]\xe4\x07\x9d\xe5\xce\x04\x13\xd2\x9fJ\xf7I\xc1\x85\xe9K*@\x97Fu/7\xf4H\x86\x0f\x8cyKc\x8fz\xe8\xbfE\x9c$\x8b\xe9\xc3\x1e/_\x8f\xff\xa9\xaf\xe2\xbd\xf1h\x05\x07\xb8v\xb7\xe1\x00\xf6`\x1f!|\x0f\x0e\xe0\x8e\xf8\x9b\xdd\xbf\x0d\xfb\xb0}\xeb_^\xe8\x9dd4\x0d't\xb3\x88\xc2l\x13O7\xd2y{\xc3\xf6\xec&\xf3\x96\x9b\x8c\xa4\xd4?\xd8\xe44\xf17'^\x98\x91\x0d9\x8d\xe2M\x92,<\x12\xc6\xfe\xc1&%\xe1\xe7\xcd\x9a\x12\x7f3\xc1\xc7\xec\xc0\xd9\xcc\xc3t\x83\xf2\xedt\xb3\x08\xb3l\xb3Hb\xb2I\x96\xab\xc5&\x893\xbaIb\x1a\xc59\xf17S\xe2\x9d\xe4\xa7\xa7$\xddL\xa2e\xb8\xd8L\x16aJ63\x8f\xed\xf1\x0dI\xfd\x83M\x14Gt\xb3\xf0\xc8iH\xc9\x86P\xe2\x1f\xf8\x9bi\xb2\x99&\xf9\xc9\x82l\x887\x99'\x9bEv\x10\xcd6\x8b\x8cx\xd1\xcc?`\xf3\x88\xb3<%\x9b8_n\xceHL7\x17\xde\x84\xac\xe8\x86L6+\x0fS4o\x92\x94\xfa\x1bJ\xbcx\x9amPs\xb2Ic\xdf\xf7Y\xd7\x8b\x05\x9d\xa7I~:\xdf\x84\x8b\x8cl\xb0l\xf9b\xcd\x86r\xc1\xa6\x93\x84\xeck\x8f\x84\x939\x9b}D\x18\xd8\x92\xe5&\x8f'\x1e\xdb\xbdl\x80\xa7\x8b\xe4$\\lN\x13\x9alN\xf30\x9dn\"o\xb6Y\xae<\x8e\x03\xd9F\x19D\xecEt3Y\xe4S\xe2\x1d'\xf1\x84\xf8\x07\x9bE\xc4\xa0\x95\xd3\x8d\x14}6\xd4#\xe9,\x9c\x90\x0dI\xe3p\xe1\x1f\xf8\x07\x9b\xcc\xdf,\xbcpy2\x0d7\x84n\x92\xc9\xe7M\x12\x9f\xfa\x9b\xa5\x17M\xd2\x04I\xe0\x06\xf5L\x1b\xaeK\xf07o\xc27\x9b\xd8\x0b\x97$[\xb1\x96B\x1a\x9d\x91\x0d\xb9\xa0\x1br\xbe\x89\x16\x9b\x84n\xf2\xc5\xc2\xdf$\x1e\xb2E\x9b\x15\x8f\xaf\xdc\xa4\x9b\x9cn\xceH\x9aFS\xe2oV^8\xf9\x1c\x9e\x92M\x98\x86\xcbl\x93Fgl]\xd2\x84\x92 %\x0c\x104\x99$\x8bM~\xb2\x88&\xfe&\xf5\xc2\x88a\x8c\x17N\x93x\xb1f\x0b7\xdb\x9cF\x19%\xe9fEB\xba\xf9\x92Gi9\xefl\x92\x93\x0d\xd7\xb3mh\xba\xde0\xaa\xe8\xfb\x9b\xcc;Y\xb3\xc5\x0f\x17d\xba!\x8b\xd9f\x9e\xa4t\x13\x9d\xc6d\xba\x89\xbe\"xB\x1aM6\xa8\xd3\xd9\xa0\xa9a\x93\x9fp\x97\x84M\xbe\"\xe9f\x1dO\xe6i\x12G_\xc9t\x83\xb1\xc4>\x83\xe8r\xb5`\x83\x9f\x93x3\x8f\xb2\xcd\xf7|L\xd1\xce\x06\x87\x11^\xf3z\x8a\xf6\xcc)E\xfb\x14\xab\xfc\xa2AB\xefGR\xbc\xdc\xf4\x86\x99\x06Pw\x06\xae_X\x8b\x8c1\xa6\xd6\xb7N\xf1\xadA\xcb[K\xc6\xd3z\xa7\x01\xc4\"\x83\xc9\x00K\xede\x84za\x00k[\x81\xe2&*H\xa1c\xc9\x84\x8e\\: .1\x19\n\x0fq[\xea\xb9A\x0d\xb1hMU\xdb(\x9a([0\x11\xa7\xc2\x9b\x8d{\x87\x95\x84\xbe$U\xa3\x81\x86\xb8H%\\\xa3\x08J\x80\xf6\xb5l\x12.\x9e\x86\x19\x1b\xd6\x93\xea\x9d\xe7b\x90\xad\xa0\x91\xeaG\x8f\xf6Sn\xe8\xf7n}\xea\x8f\xfe\xd5\xbf5\xfe\xee\xc6-&J4K\x7f\x92~\x16\xc6\x11\x8d\xbe\x92\x8f\xe9\xa2\xb5\x87H\xad_\xabz\xdb0a\xadW\x8b7\xd2\xc9\xd6\x8abp\xa6\xf6\xeck\x8f\xe0SB\x9fL\x18\x97\xcf\xb0%M\x16\x8b(>}G\xb2U\x12g\xed\xd0\xa8\x9dd\xa5\xc2\xbf\x1fe\x8a\xf6_Q\x87\xb0\xa51i\x0c\xaa\xc7\x9e\xfe\xcdR\xbf4\x8b\xe2\xa9\xd7\xaa\xac\x91Wq\xc2e4Li\xf6kD\xe7^o\xafW\xe8#U\x15*\x83\x89\xd7\x9b\xf0\xdd\xc3\xad\xf6\xff\xbe\xf4K,lz\xfe\x01\x98+X\x15\xaa\x1d\xaf'\xba\xe8\x89\xc4\x9b\x1a;\x89\xa1\x8d\x14\x9d\xe64\xe3\xd27\xe2\x17\xca7a\xea*\xb3\xa4\xc5\"O\xa2Y+\xc7\x9aM\x9bx2%d\xb5X\xbf\xa7i\xb4zI\xd65~\xcd\x927\xecZX\xaab\x99[\x94\x81:\xa7L=\xb6ut\xbb\xafZ51\x99N]K\xb7\xd9\xa8\xe4\x8f\xf1q\xb1\xcd\xd4&5\xef5e\xf8\xbf\x19\xb05d\xb1\x86\xa3\x91\xc6\xe4dVh\xe3\x98b\xee\xa1\x17a=D\xd4*\x8a\xc8mv\x87 5<\xa1\x0c\x15o\xe8\xd3V_\x9aU\x90\x91\x86\xec!\x15s\xb1\xa3F\x86\xa2\xdd\xa6\x94\xe2\x80^)\x0c\xb9A-\xeb\xcdp\xddp\xa6\x18\xad\x16\xb4m\xc1)\xb7Z\x94\xd5\x8dMn\xf5P%\xbeU7_n\xdf\xd3T\x94+\x98\x9d6\x83d\x91o\xb1\xd9\x84iM\x18L\xc4g\x1a\xd2\x1f\xa3\x03\xc6\x87\xa4p\xeapX#\xfe\x8da\x8d\x94\xde\x8chR3\xfdU\xdfc\x9bb\"\xfd \xee5\xfc\xfa\xa1\xc8\xbaq\xfbN=<\x05D\xee\x0d\xf4\xb0\xb83\xd0}\xba\x92-\x7f\xbf\xab{\xaa\x0f\x89\xaf\x16_e\x0f\xcf*\x07\x89\n-\xa3\x05\x19\xb3\x16\xf4\xa3\x18\xf5\xe3\x99\x17\x97\x0c\xb8N\xb7\x02\xaa'\x809:\xd7m\xa3\xc1\x01(\"A\x84A\x13\x11\x16Z5\xf2\\.hm\x8d\x95t\xf1<\xc0C\x9c\xe2\xa7Q\x93\x18p\xfe\xad\x9f%K\xd5s\xa2\x8d\xddd\xbd\xac\x95a\x8eb\xc6[\x8db\x8d\xdd\xeb\xb2\xbe%\x9a'\xdf[\x83\xdfc\xeb\xfe\x80\"\x10\xf01\x94\x02T\xef\x97p\x91\x13\x1e\xe8uB`A\xb2\x0c\xe8<\x8cA\xb4\xdck\x8e\xb1\xb9;\xfe0\xf8gv\x18\xd3#\xf3\x98NQ\xe5\x9e\x8aa\xf1\xc6\x9d\x86\xf5Y\xefI\xda~Z\xa0\xa4y\xeb_;\x07\x9f\xa6\xdb\xde\xa7>\xfb\xc7?\x90\xb6\x01EN\xad\x0d4\x04\xc1\xf8\xb8\x0c\xee\xc8\xe0\xfa\xdamt\x0e\x83\x8a!\xe2\x8d;\x0d\xeb\xb5\xceE\xd7mLx*\xd5\xf2+\xd4\xbc\n\xcd\x90\x9bE\x0b\xe24\xc0\x0f\x06\xbfb\xb71\xf6h\x9a\x13N\x1aD\xccR\xb8\xc8\xd4\x1b[\xbb\xca\xdf\x03\xc9\xca\x9bF}\xc2\xbbw\x1a\xf8S\xbd\x8f\xb4\xdb\xb8\xf9`5\n\x1f\xf3\xd8\xc4\xcb.C\xfb\xd9\xe4\xd3\xed68^\xb1\x9f}V\xb8\x0b[VZ6\xef4\xb2w:\xf7s\xb7QIqO\n\x1b}\x9a\xbcJ\xceI\xfa4\xcc\x88\xe7\x07\xb0u\xeb_\xa3\x7f{\xe3\x83\xd1\xee\xce\x83pg6\xfe\xf7\xfd\xcb\x9d\xe2\xef;\x0e\x7f\x0f\xf6.G\xfe\xe5\xd8\x890\xb0\x91;M\xf8\x8d\xd1\x0b\xdf\x9d\x98\x96\xbc\x89\x1b\x9d\xe7]8\x0d\xef\x951t\xa0\xfb\xf0:\x90\xfc\x0e#|f\x08xp\x1e\xdf\x16O\xebpzx\x81\x1e\xc9\xb6\xa5\x9d%\x8bEr\x0e+\xd1I\x0f\xb6u.\xec\xd53\xbc\x19\x9e\xd1:\xb2\xabr\xb67oV~\x9b\xb9Z\x13\xc7\x8b\xac\x1eR\x9e\x93d\xba\x16je\xae`\x8c\xe2\x1ew\x93\xc7_h\xc8:\xbeX.z\xc7\xd0\xf9LyS\xb0\x1e\x867\x17\xe5\x9b<\xc9\x85\xfe\xb5U\xf9\xda,I\x97!5\xbd8\xaf\x8cQ\xec\x00\xc3\xbb\xd3\xca(\xed\xef\x9e\x95\xef\n\xc4\xad\xa7\x1e\x01\x01G\xeet\x950\xa67\xb2f\xe6\\3\x91\xbdT\xcc\x0d\x01\xbf\x8c\xf4\xfd\x83Pe\xf4B\x99\xe0[\xbc_\x15\x9ay\x82\x97H\x16\xd306u\xackJot\x94MN\x92<\xa6&-:\xbbN0\x9c\x8fq$\xcal\xccl\x8d\xb9!\xd4eH&\xa1l\xcb\x8bx\xa6\".\x96X\x06r\xc1\xbe/\xb5i\x95\xcfw[\xbf\xc6\x94\xf1\x92\xf9\xeb\xfe\xf9\xa1\xc1\xc8\x0e\xd2\x00\xd7\xd0B,\xcc\x9e|V\xed\xaa\x9bdvhp\x08\x90\x17O\xef\xad\xd7\x11G6u\xac\xbc\x94\x80\xa7\xc8\x0fD\x7f\xc6/\xda\xed\xcf\xf2\x92\xb4\x88\x1b\xb8{H\xf7 ;\xde\xf88y\\bq\xf6\xe1\xf1\x80c\xe9\xf9\x81\xa1\xfc8h\xf5\xb9 \xb6\xe3\x13F\xd2\xd7\x01\x9c\x16\xb5#0\xb5\xfd\xfb\x00\x0e\xc75\xe1\xd5:\xf6R\xdf\xa4}E\xa7\xe6\x07\xb1\xd4 \xf2\xcfe\xf9 9\xf7w\x82\xd6\xc3,\"\x8b)D\x19\xe6\x0fY\xa5\xc9Y4\xc5\x13@G\xb1e\xa3g\xb6\xc1\xb2\x89\x7f\x85!<\xf3\xa2\x00\xce,N _\xd1\xc4\xc1\xc7\xf3\xd5\xd5\xd9\x00\xc4\x10\xe6\xe5\xd6\x99\xb7\x8d\xe69\x0c\xe1\x0d\x1b\xcd\xdc2\x9a\xe7\xcah\x9ew\x1d\xcd\xb4m\x08\x1fa\x08\xaf\xd8\x10\xea\xa5E\xd4\xeb\xa32\x84\x8f]\x87\x10\x96\x00 \xdbF\xf3\x03\x0c\xe1-\x1bMh\x19\xcd\x0f\xcah~\xe8:\x9aY9\x9aY\xdbh\xbe\xc0\x10\xfe`\xa3\x99YF\xf3E\x19\xcd\x97\xae\xa3\xa9\x1e\x89m\xe3\xf9\xdd\xe2\xb7$/\xe4n\xbc\xdfQC\x1eR\xb2C\x99\x1c\x85\xcd\xaf\xe0\x00~\xf6P\x85\xd6\xcb\x99\xb0Q\xdc}\xc7\xef>\xe5D\xd4\xcc\x17\xc9K\xcc\xf6w\x93\x1bKIf\xab\x07[\xdb\xfc~\x85!|\xf0\"\x0b\xb0qv\xbfv\x18\xe3\xaf\xedc\xac\x1c\x9emC\xfc\x05\x86\xf0\xb9}\x88\xbft\x18\xe2/\xedC\xac\x9e\xd0mc| C8j\x1f\xe3\xcb\x0ec|\xd9>F\x95\xc1j\x1b\xe1\x8b\x96\xa1\x1d#\xf3S\xb0a.\x03}!y\xd6\xa3\xd8\x1b\xf5\"J\x96Y/\x00\xceg\x8f\xfd\x00\xa2\xa6\xa1\xbb\xcd\xd7\x03\x14\xc1\xaam\xdb\xb1\xab\x82I/\xd0I\x82!\x0b\x06\xabV\x97P><\x12\x0fU*\xf0\x02\x190\xf6\xf4)\x13*\x03ap\xe7\xeb`\x1f,\xbb\xa2xJ.\xf6\xa1\xc5g\x90]$M\x93t_\x13/\xa7^\x97\x96x\xb0v\x9cP\x18\xe46\x94\xb8\x01Cx\xdd\x8e\xb47\\pA\x00\xeb\x86+56\xda\xbd5\xfe+\xcdl\nvNI:\x1a}\xbb\xbb\xb1\xc6\xd2 \xc2/\xa8\xab\xd8\xdf0h\xe9\"\xa0\x19\xbco],\x17BwE\x8c\xf2]\xc4\xbd\xae.\x96\x0b\xdc\xb6\xf8\x17\x166\xb2\xad9\xd7\xf3\xb0o\x98\x94/\xbe\xfd\xf7e\xc0\xbe\xbfq#%3\xd5\x1d`\xbdBO\x18\xda\xc7}\xcd\xff\x14%WD\xb9'\xda\x0f\xa7S\xf4M\x0c\x17?\x97O\x0e\xe0o\x8f\x0eX\xe3g$\xcd\xa2$\x1e\xf6\x06\xfd\xdd\x1e\x90x\x92L\xa3\xf8t\xd8\xfb\xf8\xe1\xf9\xce\xfd\xde\xc1\xe3O\xb1pl\x87\xdf^\xbf\x02r\x81K\x0c\x13\x9e\xe2\xf7\x84\xc0)\x89I\x1aR2\x05\x1e\xa4\xf47\xa3\xff\x93\xbc\xa4!LL\xa7\x8f\xa9\xb1\xbd[\x9f\xde\x7f\xf7\xe9\x96\xf7\xe9\xfd\xb6\x7f\xe3\x96\x05\xd9K \xc2\x10\xa2\xd1\xa0\x19\x8c\x08F\xc6B1\x16\x9eJK\xed\xf4)\xea\xcb~{\xfd\xea\x90\xcf\x8d;\x93\xb8\xf8\x80\xb0\x89$\xc2\xc3\xa8l\x8fo\x82\xe7i\xb2\xe4\x1bA\xb4\xd7\x9c\x91T\x8a\x99$\xbb\xa4M\xb2K\xb0\xbcm\xcd\x13&)=a`_\xc9y\x06Pxi\xaaYP\xac\x8e_g\xa2\x0eI=\xa9\x92\xbc\xd8\x12\x94\xe2\xfc\"\x99\x84\xac\xa9~\x86\x8d\x1b\xf4K\xa5\xde\xd2\xb4\xb5z\xa8\xa47\xee\x11y\xf0\x90~\x96\x9fd4\xf5\x06\xbe\xac\x17tS\xa7\x8d\x01\xd5C=\x85(\x86\xd8\x87\xb8^>%\xe5\x8e\x8a\x18g8J\xc7\xb2\xc5!&[\x1bM\xc9$\x99\x92\x8f\xef\x8e\x8a,]^:\xda\x1d\xfbc,\xdd;@u\xa1\xf6\x9d\xc1\x98\xdbU{.\xf8$\xb7us\xcd\x9a\xd9l\xec\xb4\xd5h\x15_\x86+\x07\x7f6\xf19\x12\x83\xea\x8c\x88\x0f\xdb\xd0\x1b\xa2\xb6\xb6\xf9\xb4\x9a\x99T^\x97~\xff\x8f$\x8aqy\x9aS\x13\x19{\xec\x83\x92\xf3\xa9d\xdd\xa0\"n\x17K\xd5yD1W\x04\xd0\xcb\xe9l\xe7~\xcf\xf7\xcb\xbb\xbd\x930#\xf7\xee\xe8\xc6Pf\x10jv\x9d`\xb8Y\x94\xc4\xd9{|\xcb\xe4\xb5\x13.V\xf3\xb0%\x97\xacz\x154\\j\x13\xe7=\x1f\xb7\xd0\x02S\xc1\x85)\xf1\x88\xfa\xccpd\xeb7\xe6\x92\xd0y2\xbd\xf2h\xf8\xe7\xa6\xf1\xc8\xa7\xceLDs\x8c4<\xfd\xb3\xc0Y\x1b\xb2\xf3 5\x98Y\xcb4\xe5\xc6\xce\xe8\x9cT\x94\x8c\xeeQ\x0cF\xbd\x91\xf4\xe6\xa5F\x0f\x11\x85m\xe1\xa5oz\xe5\xdf\xa2\xcc\xd1(\x0e\xd8\x06\x0dt\xfb3\xf5K\x9f\xfa\xff\xd9\xdb\xbdu\x1a@o\xbb\xe7\x8f\xc5\xfe\xd4-\xa9\x91J\x11\xdb\xa6\xd6d\xee\xaa\xac\xa4\xc1\xb1\xa6P\x9a1\xc25- W\xac8\xe5\xb4\xb9\x8ct\xf2\x18\xa9\x8e\xbc\ns\xa9\x143\xa4's\"\xc0:\x8f[d\xcaT:&\xcc\xd9\x98\xd4(\x8d\x96\x9e\xb2H\x9f2\\\xa3c\xb4\xd8\xf4z\xb6\xe1\x1a\x92\xab9\x0d\x93\xc1\xec\xb8\x84\xd9\xd7\xa6{Y\xa0I\xe7\xe6\xd44m\xe6\x9b\xb0\xecd\xf1\xd1\xad\x7f]\xec\x14\xccu\xeb\xb2\x05\xc6\x14t\x7f\xe6\x08\x85\xfdgS\xd8\x976\x85\xf5h#\xecb\x1ba\xf5r\x9f\xca\xff)\x1f\xf0\x94\xdfl\xa7x\xf7\xee\xfb\xfd\x1f\xf2\xd9\x8c\x08\x7fq[\xf5\xa3\xb3\"sSq\xf2\x95x\xa2\xa6\x19\xacX\x8c\xc0%S|o\xc49U\xfe\xe9\x18\x91:nT\x8cr\xca\x06\x89\x94\xae\x1cWjcD\xf59\x0eAaO\xf9T\x94d\xbc\x8bhBL^\x97\xc4\xb8\xbc<\xa4\xaa\x9aL[\xe4K\xe4\x14@-1\xe1c)+S.\xd9zZr\xfdP\xecx\x99\x97\xbe\xaf/\x9b%\xb9\xf4-\xa6\xd6\x16\xc3\xb2\xc5\x17\xae-F\xd6\x16\xb3\xb2\xc5\x1b\xae-&\xed\xb3\xbey\x13\xb6&e\xd3?\xba6\xadI-\xaf4\xbd\xe5mQ.\x87\x8f\x16c\xb7\x06C\xd7\x06\xeb\x898L\x0df\xae\x0d\xce\x1d\x1b\x9c\xb4\xaf\xf8f\x83\xdd:57s\x1d\xdf\xb41>\xf5\x17\xf1R^\x83\x85x\x91\xfc#\xe1\x7f\xc4\x8a3+\xcf\xd5\xcd\xee\xbc$kL\xcf\x17\x8a\x17\xe2)\xb9\xc0\x1b\x19\xbf\xf1$\xcb\x92I\x84\x99!\x00s\xb8\xc4e\x00\x1c`x~\xdc\x97m\xb0\xae\xfbe\x0bl\x00\xfd\xf7\x04k84\xe9\x07\xa6\x19\xf8\xfb\xdf\x8f\x8f\x8f^\xbf\xfe\xf8\xe1\xc9\x0f\xaf\x0e\x8f\x8f>\x1c\xbe\xc3?\x8e\xff\xfew\x8dji\xd5\xfc\xe2\xe5\xe1\xef\x87\xcf\x0c\xaf\xcf5\x1d\xbcyv\xf8\x9b\xf1\x83i\xf3\x83\xb7\xef\x9e\x1d\xbe3~p\x06C\xb8\xdb\xbc\xbd\x86!\x0c\xe0\xd1#]\xb5\xf3S\x18\xc2\x1av@\x93\xaa\x7fi\x90\xf7\x8f\xed5\xae\xf7\xeb\x89$A\xcf\xf9\x9f\\\xa5\x19\x13-?o9\xd8\xb9q\x18\x0b\xbb;\x92\xe4\x0b}\x8bT\x1c\x0dE\x83\xbbn\xdb\xe9=O*\xaf\x7fxh9\x89D\x84\x9bF\xaf^\xa9\x0e%\x0bH{\x98x\\\xa88w\xb0JH*r\x9e\xcb\x94\x05<\xd3\xc6\xeeCLw\x11?\x84h{\xdb\x87t\x14\xf1$\x89\x11\x13\xe8\xcd\xee\xf5\xa9\xd3l\xed\x01\x0d\xaa;:\x06\xa2\n\x98f<\\\x82\xf6\x8f\x8fy\xe9|\xe2\xfd\xc1OW\xf6\xc4\xa9\xe3\xb7\xd6Tb\x85\xf5A)\xe9a\x13\xc1P\xb9\x04\x8f\x1f?6\x995\x84\x92j\x1bb\x11C\xbd\xd9\xc0\x9d\xbd\x07w\x1e\xdc\xfb~\xef\xc1]\x9ca\x19\x99\xf8&|\xa3o\x85MZ\x93\x92\xcf\x04>\"\xcax#\x90\xb7Q\xf1\xe1\x06\x9c?l\xc5\xf2\xeb\xf9\x9c\x0dm|v\x90\xda<\x19jP\x16\x9d\xde\x92Q\x91\x14\x1e\x0da'\xae\x14,\x1cJ\xd0\xd5_&\xf0xXW\xc0\x9a\x06v\xd4\x96\xbd\xf1\x83\x18\xb9\xe3\x86}\xed\xda^\xbd\xaa\x8f\xa1\xbd\x0f\x0e\x80\xab\xc5i\xc4\x986\x97/\xb6\xba\xbf l\x03\x1a\xc5j\xb1\xb4\x8cC\x92\xe5\xe2\x99\xbc`\xac\xde\n\x02\xbf\x9f6\xabT\x83pd\xd6\x9c\x07\xef`\x08{\xcd\xdbo\x9c\xb3\xb6\xf3M\x9d\xa4\xcd6^\xf1\x93N\xbe\xa09\xda\x9e\xc1\x10\xde0\x1cye:\x02\xbe\x1a\x08\xf6<\xca0\xbb\x8833\xfe\\\xae\x94!\x99\xa7\xb4Z\x94\x0b\xc5\xb6\xe0\xa0\xb2l#\xf6\xbd\x85\x8a\xc2\x01\xa4\xc5\x19\x12\x89\xb2\xc0\xd6\xd3\xd0\xe0\x078Mb\xd3\x89\xebH\xab?\xda\xa8\x82uH\x1c\xfd\xac\xe3j\xad\xdcc\x18\xd4\x0fv\xees\xebWW6\xf6\x8b\x9d1\x00S\xd5h\x8a8\xe3\xd4\xc5\xefv5\xe0\xaf\xda\xf4\x1d\x05-\xe7Un\xb5\xc5\x96\xf5\xdd\xfdj\xef\x8e3(o\x90\xd6\x8e\xde`\xedR:ze\xcaM\xa4\x9d\xbb\x92\xb7\xdaiD\xbf8\xc0X\x13\xcc,\xb8\x14\xa7.^Z\xbb(\x92\x01\xa8G\x8e\xdc\x8e \xcf\x95-\x85\xe8>M0]\x83\xb5\x80\xb5\xbc$P\xd1y\xbd\x12\x167\xac\xd5\xe6!\xe7@\xa85\xc3\xfb\x96\xa9^\xd8\xe1\xc5\n3\xd3q\x06\x0d\x92\x14\")\x15 5K2\xe3[.\x0b\xd8\xd3\xcf(\xdd\xf0G\xfb\xe8.o\xeaV\xbb\x8a\xecj\xa6\x083\xc0\xfd\xc5\xb7\xc1\xbdO\x13\x94\xc5$\xc4\xc5\"\x84\xcd\xb5\xa0\x98\x9f\xfd0\xa6\xe9\xbax\x99\xba\x8e\xf2\xc6\xb7\x8dR30\xa2\x0e\x84\x8dSH\x91\xf2V\xe8<\xb6\x1f\xadc\xf3\xbe}pr4h\xe0\"\x14\xef\xd7F\xa6\xfe\xfa\xaa\xa8\xaa\xa8&\x1f\x81e\xb0\xbd\xd1\x918\xa0\xc75\x05t\x00_\xfb/\x0f\x7f\x7f\x0fCx\xca\xfe\xfe\xe5\xc9\xab\x8f\x87\xec\xd7\xcf\xec\xd7\xe1\x9b\x0f\xef\x8e\xf0\xe7\xbb\xa0\xd2\x7f\x14g+\x9e\xed\xbc6\xaa$O\xab\x99\xb9m\xf4\x85\x1d\xf0\xe6\xdc\x0bJ\xcb\xa3g\xe3\x0em\xd6\x1b\"\xdeK\xae\xb7x\xd9Of\x8e\xed\xbc\xf4\n'\x92\xc6\xc0^V\xa7L\xbe8\xb6\xa9\x1b\xdb\xcb\xab/*\x82\xef\xf8\xb84\x8e\xb2\x91\xfc\xbb\x17@\xef\xb2i\xcfQ\xfb\x99\x84\x939yG\xb2\x962\xc7JW[\xbc/\xfc\x10d\xc5\xafB\xd6\xfb\x18\xe3\x83)\x17\x06\x957\x87\xfc\xc5\x12\xeb\xcb\x8a\x0f\xa2\xfc\x99\x14\x1c\xcb\x8f\xc4\xd9\"^\xb0M\xa3\xe8\xdf%\x86HLdB\xcb\x82d\xbc\x02\xa8K\x0f\x89S\x00\xbe\xe8b\xd6\xda\x05\xf1^\x04\xf0\xd2\x0f\xe0Ee\xf1%\xbdu\\\x13=\xa6\xdf\xe0-\xdfp\xc7\xf4\x1b\x16L\xbfQ\x19`II\x1d\x9b\xd6\x0d\xf1\xc65#\xfc\x88!\xfc\xb8\x89\xf07\xae\x19S\xea\xb5\xdd\xf5=|\x13\xa64\xbb \xde\x8f|=\x7ft_\xcf\x1f-\xeb\xf9c\x8dr\xd1o[\xcb\x97\xfd(\xe3-D\x94\xfd\x92\xda[\x86\xdeB]\xcb\xc6\xaf(ro4\xb5\xb7?\x05\xf0\xcf\x00~\x0b\xe0\x1fM\xa5\xe9\xfb\xc3\x7f\xa0\xc2\xd4$9Rj\x11\x1d\x8fCQ+\x83\xd6\x88M\x17\xf6\x95\x18z\x90\xfc\xa50.}&\xebL\xcbC\xf2\x91$\xb26\x88\x1c\xca\xf1gQ\x0b\xab:4\xd2eh\xb1u\xf2Q\xa9\x9f7\xcc\x9f{\x16:+\xe8\xd2\xf6\xee\x84\xe1,\xa8\xdd{*\x0e\x83zm\x1fCG\x91\xa1#y\x16\x95\x06\x8c\x7f8\x1aX\x90\x1b36\xf8\x13k\xcd\xfbI\xe8Z)\xf5F\xe3Ff\x16}\xbby\x0brh\xd2\xe0\x88.\xa8\xdf\xe4\x9a\xbf\x94o\xa4\xfa7~(\xdf\x88\xf5oh\xa5\x9c\x83R\xc8)TOf\xcf\xbe\xabK:\xa3\xcf\x01\x9c\x8dAd\x8a\xed \xf1t\x92Y\xc3\x16\xa0gza\xee\xdb\xa7\xc7\x05\xb9k\x9aEfG\xf2_j\xd8\xa2A\x0f\x0d>\x14\xab\xeb4\x04v\xc29\xa9\xcb\xa8`\xcd\xf4@\x8dL\"xa\xe5H\xd8\x01QZ6\x06\x01\x864\xef>\x84\x1c\x1e\x0d!y\x08\xf9\xf6\xb6\xa9\x11\x10\xe3\x08\xd1S8f\xa2\x15\xec@\xced+\x83\x7f\x15\xc8\xc5\xe6z=\xe2\x85\xa3\xc18@\xc5]8\xda\x1d\xb3/\x03P\x02\xdas\xd8\x86\xa6\x12\x0e\x1a\xe2\x97\xbc\xe4g\x8d\x87\x96\x04s\x0dV\x99g\x83tZ\xa6\xd9\x9f\xbcL\xda\x152B\x96\xaf\x9c\x0d0\x0c\x1b\xbfzV\x96B^\xd2\xf9\xc3}a%\xf0\xb7\xb7\xe11:W\x9b\x1b\x077u\xa7\xbc\x8cjOy]\xc2>\xc7\xcc\xb9P\x1f\xa9i8s\xfbp\xa4E\xbe\xe2w5\x94r}\x8e\xf4z\xa8\xe9\x93j\xbe,\x03\xb8\x05\xbb\x85?\x8b\xf0{\xf1\x03\x89\xce\xf2C\xdb\xc1\xf6\xcfbh\xff\xd4#\xce?\x85\xcd\xa0e\xab\x99\xa0u\xda\x02-\xaa\xaa \xb8\x8a\xc0\xd1WhIm\xceB\xfa\xa5X\xd6\x96BiC\xbf\x1a\xa7\xd4\x13\xaeV\x01\xf4\x9e\xf2(\xde\x8c\x92\x15\x84\xf0.\x8cO \x9c\xaca\x17\x83\x1eAX'w\x83\xea*\xc9\xba#\xb8V~\xa0$\x01\xe0\x9eo\xa2\x1a#.ax\x92\xa1\xeb!\x81G\x82cco\xef\xc4\xd2\x84s\x8c\xc5\"T\xbd\x1f\x89\xa7\x8aj\xf3\x18\x87\x86\x83U\xb1FE\x0f\xfc{B\xa2\x85\xe7\x11\xd8a\x04\xf8\x16\xc4L\xb4\xf2\x99l\xde\x0dw~+`\xf9\x9b\x1ew~\xfb6\xdc9\xd6\xeb\x129\xbe(*\xa5'\xa2\xfaa\xdd2ah\xf6\x84\xda\xdcL\xcf\xadO/\xc4S\xf5\xa1b\xc6\x1a\xfdc,\n\x01\x11\x8f\xd2\x00n\xb0\x95S\xe3\x1eN\x89SIW\xc9\xb5\xb3U`\xe4\x91\xdb\xb4KM\xfb\xe8\xad4g\xf8c]\x05\xf3J\x9f\x9dL2\x15\x7fY\xa5G\xe1![Q-\x95\x1e\xb2CH\xb9\x8b\xac\x11W\x84\x8a\x88z\xf1\x88Q\xae\x14v\xd0\xa3+\x1a\xa3\xf0\xc7:*wf\xc4P\xd1H\xb5\x1bu\x1d\xb4\x93u\xb3\x0e\xe9&\xaa\x9dBc\xf2\xfa\x89\xea56\xdd\xb45\x05\x10\x1e\xa3\xfa\xc3\xc6\x819i\\\xac\xda\x16\xaei\xa1\\\x02/Wf{\x9b\xad\xcd\xf6\xb6C\x14 CuB\x03x\xc1\xe8\xd6\xd5Q\xbd\xee\xe5\xaaC}\xae\x1f\x1eQ-\xcaW\xfa\x9e\x87\xee\xf1lJ\xd3\xf5(wM}\xa2\xeb\xdcX\xbcS\xbe\xb3JSU \xd8ju\xa7%|\xa7%l\xa7E\x0f!1+q\xcfDY\xbc\x14\x173\x82\x1dH`\x1f\x12\x83\x9e\xaf\xb63\xf31V!\xae\xee\xc6D\xab\xb45\n\xa3\xcd\x14\n\xd7\xb5=\x05\xb8\x8c\xfbS\x01\xa1qw\xa6\xad{8\xb9\x8e=\xdcm\x15$\xe4P\xd3\x1a\xfdu{>g{>w\xdb\xe3\xca\"\x8e\xa6\xe5!\x17\x8bC.\xd6\xee\x8b\xc2[\xc5a\xad\x19*\x96\x121\xaeeEhR\x84\x0c\x03\xf7,\xb1\xe5w\xafj\x96\xb5\xd4\xb02\xe8$\xbex\xb1A\x06-vq\xf4\x10\xb6\xbc\x08O\x05\xb5*#(\xb9\xbc\xbdHT]\x84t{[\xec*]\xfdR1\xe5F\x8e -LK}\xf5\xb5\x025I;C\xd5\xa0\xce\xf9\xa2j\x89\xf9v\xf9hh\xd6\xb0\x02\xdd\xb7\x1aQ\xd6\xa1E\xcb\x81\x8b\xc4\x9d\xd1q\x0f\xe0\xd2\x08\x15\x9e\xd3F\xf0R\x81\xf2\xe9\x7f\x01\xcaW\xea\xc8\x17$\xb0\x08!\xe0\xb6\xaa\xa6\x83\x80z\xa0\x14\xc6\xa8\x87\x0e\xcc[4J\xc6\x01#T\x8dC\xc206\xb6KbEK\xc4w\x89\xb1\xf2\xbc\xa4\x9b\xb1M\x9b\x84&\xb6Q2\xe6\xe1\x90\xc5\xd8\xf2\xea\xc0NR\x12~n.\xa8 \xdb\x1a\xc7\x96vy\xffc\xbb\xaf\xb6\xb0F\x82\xa6[l=\x10\xafc\xef\xe1J\xc0\xe3\xf2XmS\x18\xb6oT\x90p\xe3En\x8b\x8dkQ,\xf2\xa0<\xb1\x87\xb5\xafY\xad\xcb\x92\xfdMG\xee\x0c\xefZ\xd0\x805\xbd\xba\x8b]M\xd0\x86\x03\xe8\xbd#+\x12R\x18\x8d{\xb0_\xfe\xe2^\x10\x8aZh\x1bz\xe5=\xfc\x96\xdd\xa1\xd1\x92d\xd0t:^_\x9d)\xd71\xe1|\x08\x1a\x06\xbc\xd2\x8f\xac\xf4\xe3\xca\x85O\xa9\xaa\xf8jFe\xd5\x9a\xc7\x94\x05.\x13\xa9\xec\x1f\x06*#\xca+1{|\xaa\"U\xd2\xba6\xb2\xd7\xa2\xba\xe4\x0e\x0f\xa6\xab3\n\xf5\x91\xa6\xe4\x8c\xa4Y\x177\xed\x16\xb8N\xc9\xc5\xdb\xd9\xd5\xc1\n\x07\xa81\xdc\x19X\xbbY\x84\x19=\xba\x86\xaeJ\x0cm\xed\xf2\xea\xc2\xd4\xeeC\x88\xe1\x91\xb2\xc4\x10;i\"*\xc3\x8d\xeb'ZlUB\xc4Ns\xe9.\xe5tbU\xbb\x11k\xc9f\xc2#\x88%\xc5)Y\xa0X@\xc27\xd6\xd9\x83\xeb\x12?\x1c(l\x05\x9a\xc2H\xe9\x88\x87\xb4\xaaz\x87\x83&f*S=k\xda\xfb\x19}_\n\xfa\xbe\xbcf\xfa\x8e*cI\xde\xf9\x0f\x85\xbas\xed\xee6\xf4\xfa\xfd~y\x97\xc4S\xd8\x06O\x08\x15\xf3B\xcd{\x00=8YW>'+\xcc{\x84I\xe74'\xc1\xf2zO\x029\xdcR\x17 \xdfU\x87\xd28#\x96W:#$\xe7\xe0Q\xd8Q\xfb\xf6\xe1\x96\xd2\x9fq\x7f`\x80\xf4.7\xc8+d\x82\xdf`k\x84:\xf1\xd9\"\xd1\xd8\x1ejCv>wj\x87J\xd1\xa9r\xb8\xa0K\x01\x9e!\xe5\xd3\x80\xdb\n\xf0\x8c)\xef\xfa\xf0hX\xf8\x96.\xa9\xb7\x1b\xc0\xae/\x8e\xa7\xa5@\xeeSB=\xd5* M\x06\xec>\xd1\xdcG\x905\xcf\xae\xe5U\x0e\x9b\xb3\"\xaa\xb2\xb2B\x0d\x85/\x18\x031.\xc3\x1c\xd4r\x07V\x87\x03\xe1Z\x89N\x96\xece\xeeSa\x19((x\xba\x0b\x1b\x93s\x14\x1e\xa1qY\x8d\xd3\x8b\xe1_C5G\xd1w@\xfd\x87\x0c1\x94\x9b\x0f}\xc0\xd7(\xdcR\xdf\xb5\x12\xdcC\xea9\xa5J\x8f\xea%]\x145b\x99\x9a\xffg\xaax\x99\xeb1\x0d\x94UxEG\xd4\x9e(\xb7\xea\xb1\xf2\x96ao\x00o8\xac\xdf\x89\x9c\x19\x14\xd3\xe1\xc0+\x9e\xe8\x1c\x9f3*\x8e\x8d\xb3\x83\xef*Y\x16`\x9fw\xd6 \xc7\xe7a6\x7f\x9aLU\xc8\xc8[:\xe5bT\xaf\nV~\xe8\x08B3\xe3\xf9\x9a\xd6\\M\x11~G\xdccM\xadPji\xa3\xfe5\x1d=\xa5c\xa7/\xb7>\x1b\xc7\x0d\xa6\xc6\xfb\xa2\xea\xc1\xfa(;\x8c\xf3\xa5\x08\xc0Bw8\xdd\x13\xa7\xb1\x98:k\x07\xaf\xfa\xb5p\x98\x8c\x93)\xf9\xb0^\x11@\xd2\x9e\x9dG\xbc\xfeYq\xbf\xad)vM\xc2\x8c\xc0`\xbf\xf5=Ph\x7f?\x8f\xa3/99zf\x9e\xa3\xbc\xb0\xf9\x07\x1d\x9b\x9f&\x13\x0c\x18>\\\x10\xf6\x0f\x9fl\xedf1\x06k\xd3z\xa56\x88-\xa5\xac\x96\xf6=\xfd\xd7l\xb9\xb6\xb7?\xd0@=\xfan\xc2\x07\xbe\xf7?\xe0\xde\xb7\x84\x88\xbc\xa6>\xc3\xfa\x8c\x18=\x1c\xc1\xc1\xd1\xb5\x8aB\x7f\xc8\xfa\xc8C\xfc\x81.\xcfu\x8f\xc1\xde\x9b$\xde!<\x95q\x19H\x98A\x98\x12,\xfa\x86\xd9\xb5\xc9\x14\xc2\x0c>\x93u\xd67\xd5=\x90\xdd\xb3\x0d%\xa2\x8dy9\x89\xd2#$\x80\xa7\xd4\x14W\"/R\xec\x9b}\xd8\xb2\x04x\xb1k\x92\xc4\xb3\xe84w|\xfb<\x8d\xa8\xdb\x9b\x82O\xd7/>\x80\xb9\xa4\x1e\xa8\xe5\x0d+N\xf5\xddH\x86`\x93\x95H\x12\x85\x83\xd7}\xe0\x1b\x1b\xb2\xab\xdb\xd4K\x95\xb5\xdd{\xee\x87\xab\xd5b-\xd8xCD\xbfz]\x06\x162\xc9\xce\xc0\x16\xc8\xb6\x13\xc1\x8aSzI\xf2\x1ax\xff1F\x08\xd1\x042B!\x84\x98\xed\x83\x12rr\x8c\x90\xc4bOXQ\x9f]T\xce\xc1<\xfb\x0e\xf4\xc4z\xeaw:\xed\xa5\xf2\xb5 k\x8caP2\xdah\xf3\x01\xd4\xa0\xc5\xcb)\xb3&y\xfddT\x93\x96\xa5y\x18\xf7@\xa6}G/\xd2\xb7\x06\xde\xbeP\xc7\x10\xce(\xa9\x16\niiG\x03\x05\xbep{\x00\xdf\xf1T\x85\xfd\xc9\x829\xf3Ld\x15\x16\xd6\x97)\xdc\xbdu\x9d\x11\xfcW6_r\x85\xa7\x92\x01\xeau\xb82\xa6<\xfb\xfa\x8d\x96\xc5\xe34IJ\xcd,\xfb\x81\xa2s\x11K\xc3\xf36\xf9:\x93b\xa5\xeb\xacS\xd7\xffP\x93B\xd9\xe7\x94\x11z\x14wh\x1a'\x92\xaf\xa6!%G\xf8\xf22h?c\xcd\xdc\x92}p)Y&g\xed\x92\xb6f\xd6K{\xc3S\xb2 l\x02\xaeM7f\xed:\xe5e\xd7)\xf3N\xea\x0bbO\x1c\xcdE\xc8F\x89\xcb\x03\xe1\n\xe2K\xe3L1\x81\x11\x1d\x8bF\x1d\xc6\xd2D\x0f\xc3h0\xd8\x15\x9d\"E,&Gq\x8b\x8flA\xa2]\x12I\x9c\x898P.\x80-\xcd:\xd1\xbc\xd5\x17\x8f\x91\xbb\\\xf8\xe1\x99\x89\xe2\x99H\x19\x93`\xf0Hk\xc5\xd8\x0c\x86\x10y\xb6\xb2\xdcb\xb92\xbe\\\xc2Y\xb7\x19C\x06F\xa9\xe3\x94z \x03\xb2\xc8\x1b\x9c\x11\x1a@/\x8ay\xb5\xfb\xcfd\xfd3V\x883Cf\x82%\x80-\x1e\xa8\xec\xa5\x99\x98\xf2\x92M\x19\xa9\xd5\x84\xed'\xf3\x07X\xa0\xd4\x9b\x95\x0bhU\x94r\xd6e&f\xcf\x7f-\xd9/\xb1\xdb\xbd \xc3W/)y\x19\xe2\xe3\xd91 `\xa1\xe1\x01\xc4\x9e\x8fc\xd4\xe9\x1a\"\x1eE\xdfi\xd1\x9b\xe0\x9a\xea\x96\xd9\xfa\x0e\x98,Hh-J\xa44\xdet\x8b\xa1\xdc\x1fB\x1c8\xc9yL\xd2\xa3gp BaE\x0c\xe3n\xa0\x9e\x14CQ\xb4S|\x83\xc1\xfb\xc3\xf2\xac\xe0w\xc3\x05\x15\xf5N\xb6\xc4M_pw\xd6\xc9,Iz\xda\xaat\x90\x90\"\x02\xae\xb2ks>\xc0f\x1f\xbfF\xd5\x92c\xb6\xf3\xa4\xe8\x08\xfd\x97\xea|\xd2\xa0\xe9\xc8\xd1\xec\xaeJ\xa0\xec\x86pM\x0fFl\xa9\xd2L\x12 \x84\x03\x07\xad\xaf\xf8\xde \xf0\xf3e8\x90\x7fI\x1d\x0d\x12\xd5}\x88Gj4^\xb3\xa8m\xcb\xf1\x81M>#\x18,\xdbi\x9d#\xd2m\x8dY\x1fN\xeb|%\xd0\x17\xc3J\x88\x87b\x85\xe3\x88\xfe7\xa2\x02\xae\xd6\x81\xfa\xebzQ\"KR\xea\xca\xe7\x1c\x11\xef\x17R\x98\xfd\xdb\xdb\xfda\xdd\x81uT\x1b'\xed\xedWd\xa0\xd6 \x14\xb2\x16[\xa90{\xcdu\x11:\x06@.)\"\x16\xe9\x9f\x87\xd9\x13NO=\x1f\x8f\xa1\xe3c\x12gyJ\xde2z\xedU\x89\xb7d\xa5\xac\x03/zw\xdc\x83\x8d\xf3\xa1zn\xa8\xa3a\xa2\xd8{;\xd8\xc2\xecHjb\xba\xf5\xaf\xf6\xd3\xb22\x05\xc8\xba\xf5 \xce-k\xdb\xdd\x1c\x9c\xa4F\x84\x9c\xc3\x0dw\x99\xa7\x93\x17\xda\xb7:1+\x87{\xe1m\x83r`3\xb3H\x0b\x11\xe1\xc1v\x1e\xc1\x043\x043\xca\xe8l\xee\x01/\xfb\xd4\x02\x01e\xb5[\xf7\x96\x9cI\xc9\xe0\xe8\xb0\x15\x0e\xe0\x9f\xb4dmT\xb6&(\xf3: K\x83\x1c^\xad!%\xf7\x83\xca\xe0\x0c\x04\x83\xa3\x99N\x941\xc9}\x08\xcf5\x9eC\x1fi\x00?\xd0f2\xe0\xd7O~6TO\xfb\xc2\xdeV\x81dR\x0f\xfenN\xfc\x81\xc3oNH$*j\x18\x1f\x8c5>\xac @\x0c\x9d\x9cDt\x89\xe0\x90\x90\x8f\x13\xee\x82\x1c;\xf5\xf9\xcbU\xfa\x9c$yL\xaf\xdc\xe5\xcb\xabt\xf9\x99\xac\x7f\xe4L1i@\xd7\xad\xdb\x17\xd7\xd7\xed\xda\xb9\xd3\x1b\xed\x9d\x1eS^j\xb4\xdc9E\x84M\\\xfa6\x87\x93\xcf\xc8\xbc\x14\x14\xe5'\xea\x89_n\xda\xd0\x1f[S<\xf2\nH\xa6}\xac\x0b\x025!\x0f\xad\xa9,$fGAA}\x10u\xa9FM\xd1\xd4Q\xf8X\xe4\x0c9\x84\x08w\x9bN_a\xc0G\x11%^\xe8\x97\xf8\x82\x06\x10Zy\x15&Qq\x89\xcd\xd3~\xba\xcf\x10Q\xac'e\xfc\xc8\x85\x17\xfa\x01\\x\x0cU\x18\xc4_\xc8\x1c\xae#\xf6\x99k:wB\xec;\xbeVy6\xf74\x9eEF\xf2\x92K\xa0En@\x8e\xac@.v=zm\x95j\x95\x9b7\x01\xb3\xb0V\xd4+<'c\x91\xd8\x97o\x7f7\xce<\xb1\xef\xeeR\x9433\x15\x002\\\x0cu\xf8Ue\x1a\x8e\xb7\x92\x8c\xba\xf2\x9c\xab\x84\xcc\x9ax<\xb9\x8a\xce\xadjx\x9e\x8d2\xf2\x85\x1e>jY9\x13@r\x97e\xe1\xdb\x1c-Cq\x7f\x16\xb1\x93\xc1\x01\xfd\x8a\x8f\xcb\xc4\xb9\xcdA\xfa\xbeb\xedb\x07\xb2\x9af\x17\xe9jy\x8am\x18\xa9\xc0\x94\x87\xca7W7\xb5\xa7\"\x1a\xaa\xf8\xc4\xb6\xe2\x80&pq\x1e\xa5U\xabi\xab\xf7pE\xfe^\x8a\x1a\xa3\x08x\xec\xd2\xf8\xad\xc6e\x02o\xabA0\xa6\xa5\x93\x17\x95n\x19\x86\xf4\xb1\x97\xd5z\xd2\x05A\xc3\xb2\xd2\xf1(\x1a\x17\x0e!\x9a\x81bf\xf2\xca\xd1\xe7\xc5\xa3]G\x89#l9iA\x84\x86x\xf7\xef\xde\x7f\xf0\xe0\xf6\x9d\xbb\x0fx,\xcf\xce\x10\x03ax\x1c\xcc\x9d\xdb\x83{w\xef~\x7f\xef\xae\xef3f\x0f\x1f\xec\xc1M(\xbeQ\xee\xdfa'\xd3\xde\xdd\xbd{w\xee\x0en\xdf\x0d\x80\xc2\xb6h\xea~\x00\x83\xbd\xefy\xf3\xf2\xde\xe0\x9e\xdb42\xe2(\x85\xa4\x02\xc5\x0fm\x15E\xa3\x11\x19\x0b\x01\xa3\xd6\xbb\xfa\xeb\x0b\xba\xba\x08\xde\xec\x0b\x15\xe6p\x18\xb2\xbf\xb9\x15.(\xffD\x9dz\xf1\xd2Q\x1c\xc0\xef-N\x11\xe6\xb9T\x0eCUz\x17\xc7\"g.\xa2\xf2X\x84G\x90\xf3\xd3\xd1HH\xa7\x88\x9e\xd1(\x193\xd4)s-\xb2\x1b\x03\xe7R\xe6\xb5Y\x19\xcd\xf0*\x1fi\x9d!\x16\x1b\xe1;6\xc0\xd3\xb9:\xdd \x9f\xee\x0c\xcfc9\xdd <\x02\x8cm\xda\x9abB\xe0l4\xc1I=\x84\xc9\xf6\xb6\x81![\xc0\x90\x7f\xa7\x17\xc8\x16p\xc0\x9b\x19\x8cq0\x11\xec3\xeeWQN\xea\xbf\xe3|\xb0\x17\xa2g\xd4\x02]\xc9.\xbc\x84IQaIH\xb3\x96\xec8\x18\xc4\x81\x0e~[!\xfb\x7f\xe1\x9a\xf0x\x08\x13]\x98\x8a\x15y\xe4\xc5\xa5Z\xe9\xb1\xf8\xdebp\xaf\xa0\x9b\xe0\xfah\x00\xe8\x88\x1a\xc0\x88u4\xf6+\x1c\x19q\xe1\xc8\xe4%\x9d\x0d\xc8\xc8\x94\x00O^\x11b\xb5 \xff\xb4\"\xa2\xe6\xa8h\xc9\x8d\xd5?@\xcbE\xc9K\"\xbb\x9e6\xb3\xae2\xabQ\x9eMa\x05\":LQ\xf0J9\xd3\xd81\x93\xf7V\x0c\xb7\x90\"em6\xff\x03\xe4\xaf'\xc2\xf6\xbf\x03\x038\x80y\x7f\x95\xf0J\x10\xf3\xd1\x84Q\xa3\xc6\x8d\x11\x1b9\xe3\xc7\xe7\x9c\xc1\xe4\xbf\xfd\x00{\xf6j\xda\xbfyi\n\x97\x02s\x00\xf36\x96\xf42\x80_\xafL\xce\xb4\xd1e\x88]\x86\xcd\x8aB=\x13W<\xafZ?\x9cG~R\x94}\x0c\x9a\x91D\xd2\x10\xae\xe95\x126\xd60\x93snr\xee\xae\x08\xcdF\xe5\xec($\xfc\x11fF\x1e\xf38..#\x11\x1d;Q\x07\xcf\x95\xe9b%3\xb4L\x00\xfd\x84z\xa9 T\x8a\x80H\x04\xcb\x13#\x90\x88E\xaa\xcc$|C\xfd\xf3I\x15\x86\xfa\x97f\x18S\xb95\x04o\x027A\x87\xdaH\xd7\x90PGue\x8e\x96\xa0J:\x1d\x12\xde$\x02_\xdf\xf9J\x8e\x10\x97K\xff\x0e\x1a\xdd\xe1\x00V\xa3\xc5\x18Z\n\xb1sE\xd9\x9c\x9b\xc5\xf8BW\xd7J?;\x1e%>w8(8\x1c0\x94|\xa5\x90\xf7\x99\x95\xbc[\xdc\xbc*\x15\xbf\x04C\xc0\xf63\xaf7\xb3\xf6\x03\xc4\x8c\xdd\x87\x82\xd5\x8f\x1fB\x88i~\x18n\x0ca\xe0C>\n\xc7\x88\x067Q\xb3@F\xc9\xf6\xf6\xd8R\xb3\x0e\x14\xa1t\x94\x8e\xb9\x8a\x8b\xf5\xc8M\"\x98\xe3A\x1f\xcc\xcf\x1e\xaf\x02\x98\x04\x10\x0605@R\x9c\xe7\xec\xffj\xb9z\xb5H\x7f\x93*\x11\xb4x\xb2\x04\xb6\"\x12\x0df\x81c\\\xeaWxS^q\x0eRQp.W\x88?{k\xe03V4\x1fc\x9ck\x0e\xdb\xc6\xd4\xb8\xd0~xs\xa8iA\xd6\xc2!\x15\x1c\xb6\x84\x9a1M \x14\nu\x84\xda\xb6@\xaa\xa8\x84\\!P\xb8\x80.\xa9\x80\x8e\xab\xd6\x10tb\xcf\x86\xf0\x08\"\xdc\xb1>\xbb%h\xbb\x97\xf0-\x1b\xf3\xd7w\x06\xa8\x9d\xe5\xf7\xe8(\x84m\x97rn\x86\xc2\x1f*\xee\x19\x8f\xcc\xe3\x82\x9d(\xac\xa8'5\x93\xe6y\x95\xbb\xe0&\xda\x93\x00\xce\x1b\xe7\xe5/\x7f-;aa$Z\xf8\x08\xce\x10Df\x11)\x81\x03Ht,\x82\xceo\xf2\x97\xffel\x82\x94\xcd\xb4/L\x1cNa\xc6&LF\xa1\x81Lg<\xf8\xc6\x911\xa0\xc4\x9bu=\xa2\x85#\xadC\x0f\x05O\x81\xf6z\xc3\xb1\xd2.\xc3\xed\xec\xac\xe0\x11,\xae,\xb7U\x08\xecn\xa0?\xe0cy\xc0s\xa1y\xc0%\xe5R,c\x14d\"\xce\xfc\x0c\x1e=\xc2#\xbf]L\x9b\xa1\x98\xa6[\xac\xca\x9beT0\x1e\xb3!\xfe\x89\xb4\xd1\x8b`3d\xc2T\xce\xf9 \x06yc[\xad\xf2ZIB\"-k\x01\x92\xbd\x98 \x87\x11\x1a\xcd\x8c\xab\xedm\xfd\x9a\xcf\xbb\x9e\xf2\x8cS\xcc\x88\xc7\x99\x99\x05\x93\x9c\x8cta^\x90K\xe9\x00\xb2\xaaQ\xcbi\x95ZrNj\xc5\x98\xa4:\xd9xyej\xf9\xdf\xacKz\xf9\x9f#\x86\x82\xae\xe9wy\\\xe6Z\x14\x86\xbab\x8e\xa1\x92\xc0\x8f+\x7f\xb8\xbe'&\x8a_\x1d\x0eZH\xe1\x9a1\x14K\xf2\xff }WXr\xee\xb3\x8a\xd5\xf4E\x99\x97P\xc0\x92M\x80\xb1\xee\x13\x93\xf1\xb4\xb3\xa6\xa5]\xcb\xf2\x1f\xd4\xb0\xbc\xd4\x00`\xde\xd8\xe0/\xae\xbc\xc1\xa5\x18\xc3\xa3B\x0b\x9f+\x86 2\xa2\x8e\xdf\x18\x8cu\x0c\xc9\x8b\xeb\xd9\x835U\xaev\x99\x90\xe4!\x06W\x87i\\./\xc3\xea\x19\x05\x12(\xf3\x08\xfd\xc6F\x0ce\xc0\n\xc3H\xd8\x87\x0c-\x01Z4\xaa\xac\x1a\xb68,\xca\x10\x89e\xd3\xe1\xadXv\xde\xa5f\xd7#\xd1)w~c\x91+\xba\xf3\xd2\xb9\xf6\xa5\xfeve\x0d\xac\xa4=n\xd0\x91\x94\xd3\x91\xa8V\xb6\xe8!\xa4\xa2\x84L\xea\x94\"9.\xea\x97\xa0\xe7\xc1X\xadwY\x9f\xdc\xaf\xfaY\xfcrm\x93\xe3L\xa6\xdb\xd4\x0c\xbcN!|\xd5\xe6\xa5\xe7w\x18(\x12(\xb3\xcf$\xfdJ9\x06\x13,@\xa7=}qE0H\x8a\xac\xa0k\x03\xad\x88w\x83\x06\xf0\xd5\x0f\xe0\x86\xdaKL.ZS;\x14P\xa6\x12\xca\xe8_\x19\x94A\x02\xdc\x99\xf2!\xd8\x8b6\x88\xfa\x13\x04\x17\xc9\xac\x0e\xc7\xd4\x98<\x0b\xaa\x8e#\x03)f\x8b\x89Z8\xd6\xa8\xa8\xadZ\n\xe1\xdcg3\xd5AI^\x97en\x9bT\xee\x96\xb6n\xb0\xbe\x99\xa8b!>Q\xf0\xce\xd7v\x1f\x91l\xc4\xc1'\xddS\x0f\xb0\xcc\x1e\xafy\xd6:6\xb5KD\xfbj\x87v\x95FR~f\x19\x83]\xd1\x91\xb4I\x0b\xf8\x92\\\xa6\n\x00\xe4]\xbb\x0cQ\xc3/\x18\xc2O\xd4K\x8c\xf6s\xb0\x8a\x0b\x93$\xa6Q\xdc\xa9\xf8C\xb3\x7f\xe5W\x9f\xfb\xcc\xb6\xecj(\xb7\xa7ic\xb4\xe6J5\xe6I\xad\x11\x90*0\xd9*c\x1e\xea5\xdc\x82;\xcd\x96g\xf2\xd9^\xf3\xd9\xa2\xf8\xce\xe4\xb9\xbf2x\x0c\x9c\x89\xd8\xa1\x0bc~=\x87<\x96\x9a\x88Z\xf6\xe5\x9cxJ\xcaI\x8d\xf0-O\x82\xc8\xa3\x96\x0c\xa3\xb1\xbd\xc6\x03\x1fL*t@\xde3~\\\xa7\xf0\x98g\x8dN\xe1\x11\xac\xe1\x00\xce\x89\xb7\x8b\x0c\xcfY \xe2L\xb1\x10\x04\xf1\xe2>M\xb8\xfc\xedcYZ\xd2\xd9-\x06\xfdD\xdeG_ \xf6\xacI\x03\xd2\xa6\xe9-4\xb5-\xfe&:/\x127O\x8b\xb9\xddaD\xc9\x032%-y@\xd8ArN\x19\x9bL\x1c\xf2\x80(\xc2\x87g\x8e\xb1\xe49\xbc\xc4\x11\xf7\xad9-^E\x19\x85Q/\x80\xde\xb8\x99\xd4\xa2\xd2\x93cR\x8bH\xd6\x8a/\x93\xe2\xfbEVrZ\xcdJn9M\x99\x00[\xb0\x96\xe8+\x83#O\xd2\xe842y\xb6I\x99\x8b\xf5\x14\xf7y\x99P\n7\xe1T\x13\ni\x02P#\xbbF\x05\x06\xdd\xb2k\xb8\xda/\x10d\x84\x83\x8c\xb3U\x95\xaa\xf9&\xbfo\xf4\x0d|\xac:\xb1\x11x\xa4d\x83\xed\xee\xb2\x06x,<\x82]8\x80\xb7\x82\xc7\xc3m\xb6+\"L\xdfJ\xa7\x04\xb4\x00\xf0gD\x1b]\x06`N\xb0Gp=\xe5b\xea\xdf)\xed9\xc74\x8c\x16v\x86J\xba\xf7\x1b_J\xac\x81\x02\x08\xc5\xcf\x18%0 W\xe1$\xa2kn\x10\x1f\xc2{t\xc2\xabG\x0dpy\x10E\xac\x88\xbf\x14\xd5^\xa2\xfd\xe3\x059#\x8b\xf2]\xf3\"n%\x8e\xe1\x06Q\xfa\xd0Z\xee\x00\xf8\xd8\xd6\xba\xd0\x13\x8e\xc6\xec$\xd3w\x13 \xbf\x0b\xae\x8a\xd4\xf7\"\xaa^\x98)y\x0e\xea(F6\x03\x16\x16\xa9\xcf\x19\xdd\xca+`F\xd8\xc2\x0e\xea8}\x1fG\x83o%\x15P5\xa9\xb2v\xc0\xdcJ\x169@9\x84!\x1c\x96\xb9\xb3\xf4\xf3\xdfJ\xf4*\x95\x8a\xe3\xc4\xeeC\xc8\xb8\x8bi\x86~\x92\x02\x16\xd9\xb8\x10\xbf\x8c\x049B7\x91\xb0\x80\x1e\xa3\xf1~\x00a\x9d\x82ip\xf4\xc9\x8c\x92\xc6\xf1\xde\x8a\xa2^\x15G1\xc8\xf8\x1b0UX?Q\xa8oA\xd8\xc8\x8e\xb0\xfaN\x9cp0\xa9\xe2\xa0\xc9\xa2\x848\x98b\xb2L\x86]*\x185(\x88/Ez\xc8\xa0\xf1\xab#r\xca\xcdbE9\xd1d.z\x13\xca\x8a\x08\x95|\x81\xf0k\xcb\x8bi2&\xca\x0f \xaf\"K\xf3x;%\x01,I\xc0\x98\x06[\x1a\xf5\x13\xf3iU\xf2\xea\xf2\x10\xd7BX(\n\x8b\x93]\xbf\x0c\x80J\xbe\xd4\x165\xc3\x0f}3|*\x89D\x04\xe3\xb0\xeb\xd7&\x06\x95\xb8g6\xb70\x00\xa3\x8d\xb5\xa2\xc7 +\xe5\xac\x0c\x9e&\xf2\x92\xc4$\x17\xfeK\x07\x12\xc1\xf8\xf1\xbe/\xa3\xdc\xf1\xa7\x99G\x05\xe1\x97\x92\x8b\xca\x87\xbb\xe8\x19\xbb\x03\xb9\xfd\x93 F\x9a\xee@n\xe0\x1b\xf1\x95\xc7\xb0F\xdca/\xdb\xec\xa1\x02\x08\xad<\xbc\xbc\"t\x9ce\xd3\x9e\x14\xfb\xe1\xd8Rt\x04\x14\xb5\x04V{\xdc\x99\xc0>\xa3\x9a\xf6OD\xcb\xe8\xd9\x15\x8e\xa8>W\nh\xb7\x1d\x80\x0c\xab\xab\xbb\xe5G\xa89nYV\x11 \xea\xbc\x80\x13$/\xd5\x05L\xe0\xf1c\x88\xec\xdf\xcd0\x00f\x9b\x1d\xeb\xf2\x03\xcb2\xcd\x8a\x05\x9d]\xf3\x82\xe2\xb9\xf6\xd0\xe8`\xa1^l\xed\xb5\x19]tW\xa1\x8b2 }\xf5+\x12E\xf6\x98\xa8\xd3\xa6\x90\xaf_\xa1P\x85\xb6\xbel\xb6\xe3\xcb\x8b\x0dcR\xf3%lCpP\x08&G\xf2\x19\xec\xc3\xa4\x0d\xc9A\x8c<\xe7\xae\xe8\x19f\xde\x8f\xf8\xa1\x940\xd4\x88\xd9\xa9\x1d\xf9f\xb7\x04\xb0N\xc9\xb27\x90.6\x1e\xbb%\x948\xd7&\xfb1\x1d\"a#;\xd7\x99E\xa3\x10J59;\x9b\xd98UU9\xfeTT\xe5\x04oH=y\x8c\xbf\xca\xacGa\xa1$\x8f\xf0\x87\"5&\xfc\x86\xd0\x97\xe7\xfcW5\xb9W\xe8\x04\x8a\x0bb\xd3\xa8\x9d\xa2i\xd0C\xc5\"\xb7\xeb3\xf1\xcd\xd1\x14\xfe\xbe e\x13\x88s\xee\x8f/\x92\xf3\xd8c*(w\x9a\x7f$\x89\x9bT\xcc6>@^\x18\xf1R\xf1\xa5\x88l\x1b\x93\xb3\x9c-\x9c\xdb\xa4F\\G\xa1%c\xce\x8c\x9b\xf8&\x1c\x0e|cHXX5I3~B\xc9\xbcQ\x9ed\xc3\xd0\xc6[t\xccXi}\xd8\xa0iE\xb3\xea\xc8\x8b\xe3\x9f\x96n\x99jWA\x05v\x1c\xf2(\xec4xK8(nJ\x13Y\xae\x8e\xb3\x19\x83`\xc2\x9bC3OW\xa8\xd9\xd0\x1f\xa0\x88\xc1\xa3\x8ag*\x15\x1e\xa8k\xe2\xf1\xfc\\\x82-E\xae\x94\x8d\x8a\x89\x97\x8d\x02P\xfa\x91<1\x8f\xa4\xb0\xa0\xd7l\xbf\xaaeU\xcf\x0f\xf2/\x1fq\x81F\xb2\x82\xb0\x0dg&\xa4\xab\xfarJ&R\xf0\xad\xf8\xf5C\xee\xb7\x80\xae8XXuX\xf80\xf0P\xad\x14=\x19\xd8G;C8\xb3\"^[\x99wcE/k\x92\x1e%\xe8EF\x9d\xf1r\xc7\xea\x13\x19\x7f`(o\xac\x98\xf5\xd5t;\x98\x9f\xc1\xcc\xb6\xb7\xb0\xff\x89\x0b\xfb\x8f1\x1e\xb0m*\xce\x10\x1623bc\x8c\xdc\xf4>\x9a\x8dv\xf1\xefm\x0c\x19c-h<\x16\x18>\xe4\xf5\xfd\x95\xb4\x91\xa9\x9c\xe1\x9e\x12s\xc0\x0d\xbf:N\xa5\x1a/Q\x88\x1e\x13\x15\x99f2\xe8t\x1bfl\xd4\x0f}|.\xf6\xd1\x84\x8dkR\xdd\xf1\x070\x92\xc6\xa3\xc9X\xec*&\xd8\xcd`[f\x1f\xc8\xd8\x9fg\xba\x11q\x99\x90=\x9e\x05\xbc\x8c\xfa\x8c\x1d\x00\xfc\xdf\x04\xff\xb5Md\xc1\xa5\xb1\x04#\x08\xf0\xcf\xd0\x7f\x08+\x06\x11\xec9c\xbb\xc9i\n\x95\xa1\xf3\xf1\xea\xf1n\xde\xe6N2\xc5 \x8aG\x18#\xc1\xc9F\xc8%\xee}60\xbc\xad\xa8\xb70\xba\xd1pda\x905\xff\xe6\xe6M\x8c\x03F\xd1l^SA\xb4\xd0\x8a5F\xb0 !\x9f\xf0\xe9-a\x08\xd9CX\xc2c8c\xff0J\xd0&K\x1c\xc3\x10\x16HA\x96z%\x89\xbcXwkAr\x8e\xc7\xbc\xdf\xf2\xb71\x81\x94\x9e\xbf\x93\x1f\xf2\x9e\xcf\x90v\xc1\x10\xe6-\x94 $\x83/A\xe6\xb1E\xc1(\xf6iEq\x92\"\x1b\x13\xfax\xd6=\x1e\xc2\xca\x87\x9c\x81c\x85\x8b\x86\xfff\xdcmaR8(4\x9a\x12z@\xde\x96.|\xb2pGf\xc2q\xc4(\x15\xe2\x87u\xe5\xc4>\x9cX\x85\x19\xb60'\\\xe8~\xfc\x98\x1d\xe8\xb6\x85a\x038A\xea\xba*_\xf7\xe1$%\xe1g\xf3W'BP\xdb\x1e\x82\xc7\xb7\x94\x0f\xdf\xc1 n\x92\x9d\x022b?\x8dN\xf4\xc2\xad~q'\x1c\xab\x1f\x0b5\"o\xa7\x0e\xd2\x8c\xad\xcc\x0e\xcc\xd8\x12M\xf8~x\xc4\xf7C\xe5\x83b93F \xc4\xfb\x92\xba\xec\x08\xaa\xb2\xa3\x8d\xa2\xec\x9c\x924D\xb5Fy\x9cp\xb6\x9bV\xd8\xf9\xb0\xd4\xed\x00\xc6q\x96\xeeU\x13\xd5\xbdj\xea\xea^\xc5\xc8\xc49\xf1r.\xee`\xa4f=\xba\xd1p\x1c\xff\xe1\x96/2U\xf3EV\"\xe8\xcb,k\xa1=\"\x04\x93b[\x99\xe0 Z\x01M\xe9{&\x1c\xc2\x8f\xc5\x9eMp}E\xa5\xbf\xdc\xcbxJI\xbe\xea\xd7\x9dR2\xe5\xf1h\x93\x0e\xe8\x91\xc0c\xe94y\xf3&O\x10Uz%'HR$\xe4\xebYn\x0c+\xf5\xb9-\xc5\x1cw\xab\xdeE\xa5\x9c\xd4Y\x9f\xb1My\xe6\xd4\xfe\x91\xbd}k\xa1\xc7\xa7\x9ce~M\xca\xfa\x8e\xecVg\xbf\x9b\xb3\xff\xf5\xf5\x1d_\xdb\xa1X\x94\xc2\x9c\xd5\x11\xce\xd4\xe0\x07\xd7\x94|U\xd5\xc3\x91bT1+!\xca\x14\xe1(\x02\xe1\x8f}\xb4\xdb\xf7\x8fy\xea \x9e;|\xc1\xed\xcb\x0e\xb9\xc3\x9d\xe6\xf4\xd4\xaaLXre\xc2\x92\x8d\xeb\x03\xf1xu\x9b\x0b\xe25B\xfd\x0c\xad\xffl\x970\x84i'\x90,\xbd1\xf5R.\xf8\xe0(3x\xfdb=6LIA\x0c\n\xff\xac\xe4\xf8\xd9\xd1\x1a\x9aT C\x9e\xb7I\x8f\xb7\\?\xd1\xa6(\xcc\x05y\x1cr\xedi\xf9s\x0f\xbe\x83D:n\xa2\x8d\x88\x1b+\x9b\xc9O\x0d\"\xac\xbcD\xff\xca|\x84\x8a\x05\xa55\xc3>\xf2\xfb4yI\xd6d\xfa\x9e|\xf1\xfc\xee\x94\x99\x8ev\x0d\\\x83\xdf\x9f-\xa2\x95\xc7:x\x1d\xf2|:\nn2\xa2\x9bVp\xb5\x8a\xb9\xaa\x933:\\\xa0\xf1L\x96}c\xd4%\xc2\xc3\x9c+1\x14\xe7\xde\\Q[0\"\x12J\xd1T\xa3\xbcTb\xcd\x8c\xb6\x99\x12\x01rD\xa5\xd0\x1f\x0d\xc6m\x8b\x9dr\xd5\x1e_G1\n\x9ej\xdd8\x08>?\xe1L\x9fK\x12Z\xb6\x90\x8bB)\xa2\x19#\xc90\xf1=\xa9,\xb4\")\x07\xf7\x0d\x17\x94#\xd2s2\x0c\x8c\x1f\x90\x93s\xcc\xbc\xfc\xae\xc5\xeb\x04\xdd\x95\x14\xaf\x93\xe3<#/\xc9:SJYH\x8a\xd7L\xe2k\xea\xf4\x8d\x81\xa6k{\xec\xde\xfc\xab?\xb7\xf9g\x7fn\xf3_[\xe2\xd8\xfeAl)b\x89:\x02R\xed\x9e\xdd`[\xbc\xcd\xabSi\x8e6\xb1?\xc0b\x8e\xb2xIkCgE\x99d\xf1\x91\xac\x7f\x86\xdeg\xb6\xbe\xdd\x07\x0b\xean\x12\xddx\x06F$\xd0U\x14as\x9a\x87Y\xab\x1b*\xa8\x1dE\xf1d\x91OIV\xafj_\xb4(_\xe8\xd6\xec<4\xb78 's\xf2\x8ed\xf9\x02\xf9\xdf8\x00\xc5\xa3\xf0c\x8c\x8f+e\xbbl\x11L\x85ZO\xebL\x01U\n\xd5\xa8g\xe5\xc8\x18\n\xafC\xf4\xb5\xa7fu\x84\xb1\xd8\x95\xe2\x9d\xdau~\\\xdf\xcb\x0e\x82wmR\xbd\xd4n\xca\xaex\xbbf1]\xb2\xf0nN\xac\xf2\x92v\xcd\xd4Z\xbeV^\xc8\xa5\xd0\xd6:\xb6\xf2*\xf7\x19\xba\xb9\x8ev[\xb2!\x01\x86u\xcaw\x95\x0f\x07\xe3@\xf9\xbb\xe1^X\xbf\xecfQ#\x19\x91\x97)\x8b\xb9\x1b>\xb2\x95\xc2\x15\xfe\x99\xc9L\xb0\x0f?\x1b\x11\xa9r\xd3D{\x9f\xb7s\xba\xad\x148\xad\x13\xdd\xb4;i1\xd3\x80\xb4\x1e\xd2\xe9RT\x99\x97%O\xcd\x85~\x0b\x19{(r\xd0G\x18&\x8c\xbe\xf6\xbc\xc4N\xaa\x15\xedp@V\x02\xe44\xbc\xab\x12\xa0\xa8\xc5\xd9\xa6J\x83R\xaf\x9c\x91\xfcXX\x04MD)j\x99\xb2\x9e(9\xcdY\xc5\xe1w\xe6\x14\xce\xdd)\x8d\x14_\x93V*\x83\x8ev\x82\xc0H\xf9\xd5\xfc\xf6\x99\xf0I\x8b8m\xb0\xbb\xa8\xa0o\x82\x95\x06I\xf9\x9dA+\x0c\x14d\xcb\x91\x02\x85\x0c\xdf\xb4\x0b\x00\x06uB\xa3*\xa2a\x8f\x7fl\xf7\\\xb3o\xf0Xe\xb1\xe2\xfan\x8f\xbb0G6.\x8br\xf6\x07-s\xce\x9c\x90<\x05\xbe\xeag\x00*w\xd5a\x9c\xa0\xeeE.%\x9a\xb6\x8c\xae\x8c\x07\x83J\x8dl\xd9\xd2 \x16=\xa1&@\xe4}\xdc\x19\xc0\x8e&\x855\x08\xee\xa1Nc\x8d\\A\x95\xc6V\x1a7\xb4|56\xae\x85;\x8c5\xbc\\\xac\x8f\x0e\xf9\x8f\xf3p-\xc5H.\x03\xd82\xc1N\x1f[d\x9b\x91\xf6\x8c7\xf7\xe0\xb4\xe5\x7fpU\xf9\xb5\x9c\xec\xb8\x19\xa3:\xaa\x19\xf1\xf8\xacH\xd4\xebv\xfcFxL-Y/[[%A\x8c,\xa7o\xf4\xe7\xb2\x03\xc5x\x9a\xbc\x80\xb0\xb5kJ\x0b\xf9\\\x87ia\nl\xde\x94gJ\x9c\x80\xf9\x8c \xf5Uy\xa1\x1d\xe1\x13\x8b[/H\xa9A\xe5\x13\xf0\x832\x91\xe2\xf6v\x00\x91\x87~ \x1c\x02hn6\xe7\xf9dS\xad\xfb\x84\x81\\<;\x1f\xe1\x04\xa6\x1a\x1f\x91X*/\xb6\x03\xad\x03\x9b\xe1\xe8\xfc)q.o\xe5F@\x06eT9\x92\xc4\xfe\x854\x84%.\\ \x08\x9bX6\xda\xb5X\xcd\xe4\x85\xd9,\xb5\x89A\xd5\xab\x8a/34\x15*9\x81\x9ecED\x91[\x1d\x91gfd8\xc1(\xf8\xe8\xf9\x1d7\xdb\xc0\x17W\xe2G\x0d\x11\xa7l\x86\x9d\xdc\x88\x98\x101\x80[\xe8\x83\x83\x81\x88\xe8\x93#\xde\xff,*\x98E\xady\x93\x18\xda\x1c\xf1:ff{\xc2k\xa4\x90\x86\x80\x1cF\xc0 \x81\xcd\x06r\xf6W^\xf4\xc8`\xd2\xa7 W\xa1+\x07\xb1\xe7\x97\x90\xd2\x0fJ8y\xe7\xb0\xa3\xc3\xcc\x0c\x86C\xee\xe9\xe7\xb1\xcd\x96 G\xa4]\xd8\xd7V\x9a8\x13^\x8d\xf6cg\"Y\xcc2\xdc \xc4\xcaZ\xd2\x18\x1a\x96\x06\xc4\x00\xb6\xf0\x94\x8a\xa4Y,,\xd2\xf8x\x93\xfaY\xe1p\x0c\xcb\x0c7\"\xdc\xb4L\nDDQE\xc9\xa4m3:\x89\xe9f4~l~\x00\x93o\xd3SEV\x1e'*\xb2\xea\x95\x8eY\x06B\x87\xd6\x81J8Nu\xfd\x95S\xc3\xa2\x03\x92\xd4\xd7\x12E\x9cqW\x02\xe3\xf3I+1\xbe\x12\xcb&|o7\x1b\xd8\xc2r\x90\xf9\xf66<\x82\xa4\xdcl\x13F\x83\n\xad\x9c8\xc7b,\xf8\x80\xe7X\x84h3\xe1\xe65\x031\n`\xa2\xa3G\x93oT\xd6 \x9b\x1e\xeb\xdfi\x89\xecz:\x896J\xabM\x15\x9fy}\x1c\x96\xf7\x9a\xcfR\xb9V\x0f}\x88ZOK\x06\xaf\xed\xed\x0c\x1e+(\xdfv\x12;E\xbfC[\x04<\xbb.\xedj\x024P\xb5N\xa1\xe0\xaa1 \x96\xd4\xe2Q\x0c\xb0'\x01\xaf\xa3\x13\x88'Oe\x92\\\xf4\xc6P5\x95]\x14\x04U\xac5\x1d\x98\xbf\xbb\x1e\x98v\xb2}M<\xb0\x99\x8c%.{\x84x\x16\x97\xf73\x11da\xa3S\xed\x88n\xe1\xb4'\xad\xa4\x8a\xa7\xe4\xc6\xd3\xb2\xceuO\xfc\x92je\x0d\xb6;\xb3\xb3\xdd~\x00\x9a@\xcbk\xe2\xb9\xbf}Y\x92\xd4e]\xba0\xf7\xdf~\xdet X\xb8\xc9q\x914\x89\xda\xe55MZ(R$\xb3\x0e\x86\x82V\xf8U\xd6\x1f)CT\xa3\x0cQ\xc0\x8f\xb0\xa8\x8d.\xb4\xcb\x0d\x8b\xd2\xeaa\x7f\x99q\xa2\x0b\xac\xe47\xc3\xbfX\x07\x9c\xcb\xcb*x;\x13\xf1L\x16\xf6\x1e\xce\xe7\xd1\x82\x80\xd1)\x0fTu\x00\xda\xae\xd4\x99'\xd8G'\x9a\xe7&$\xfcz-\x86\x8fo\xb6\x04X\xf0\x17\xe9\x94\xa1\xce\x91\x18@1\x1b\xeae-\xb4\xe7LT\x0d1oeve:\xca\x16\xb5(\x10@\xe1\x9e\xb7\xd0\xf3j\x02\x8f\xb0`\xcdM\xc8=\xac\xda\x87e\xf2'\x18\xa8\x0d\xfb2M7R\x84X\x94\x03HPR\xf4\x0bIbk\x17\x8bs\x9a\xf1\xca\xac*g\x0b\xcb\xben\x96P\xfa3L\x19\xa9Y\\\x03\xb1\x8a\xa3\x96B\xe7\xd7F\xa5\x04[\x958))\xa8\x93\xc9\x04\xe4\xb9%R\xcdw2\xcfN\\\xe9\x0d\x88^RA\x01\n\xf7\xeb\xd1`\xcc$T\xd4\x10z\xa1\x8c\xa7@\xecb\xc7h\xeeM\xca#3.\x08G\x1a\xf0\xf3s\xd2N\x16\xd9\x15r\xe7\xdcD\x94F\x9b4\x96\xd7\xda\x82\xf0\x8eJ\x90\xac\xa3g\x97\x19i\xdb(`\xdb\xaa]#C\xdb\x81\xa2\xba\x99\x99~\xb1RT\xee\x91\x89\xd1\xaa:\xf9E\x12\xdc\xd0\x986:2SK\xbe'\xa5v\xa3\xe2 HZ\x8a8 \xb8\x8fR\x1cy\xc4K/\x1e\x00\xffP\xb8\x97\x11\xa3\xfb`\x91e\xdaxD$\xfd,I\xa9\x9b4+>!\x1e\x1d\xdd\x1e\x07\x10\x8fn\x8f\x11\xcb\xe9ho\x0c;\x10\x8f\xf64\x19\x82\xfd\xb2 y-+\x83q\x97\x96;i\x08{\xcd6\xeb\x15\xfal\x0d1\xd0\x8f\x06\xba\x81q\xce\xf5\x85\xa8\xf1\xc1\xdd\xbao\xf0_?z5\x85\xa0 \xa7^Zq\x8a\xfb\xbb(x\xe5b7\xfa6\xed\x82,u\xe0\xdcRG\xe0\xcaK\x02\x99\xad\x0f;\x99\xe0w\x0fC\xd8K\x9fK\x86\xef\x96\x03\xff\xea\xfa6\x07\xf6\xbf\x03g\x88\xab\xd9*\x80\xa1n\x02\x973\xb9\"\xa0\x04\x16\xd8\x00\xc2\x13\x90\xf4\xb3dI\xae\xd2\x01C/K\xf3\xa2\xbe\xd4_\xc8H\xc9\xfc\x989\xe6\xc7\x14\xce\xbe\xa2\x1c\xc5U\xa1\x88\x03\xb4\xcd\xf2\xfa\x05\xe2\x1f[s!p\x13\x0b\xaf\xc9A\xfb\x93$\xceh\x9aOP\xb3\xecF\xdf\x7f28zGE6\x1b\x1e\x81\x84%F\xe8(6j\x0d\x810\x01\xc9\xcd\x818mI\x9c\xcc9\x88\x82\x04Zs\x8aq\x0bv\x14g4\x8c'$\x99)\x15\xcf-N\x11\x089D\x8f\xea\xa7\x95d\x9f\xa9gR=\x17MX9tv\xc5\xa8\x96j\xd7\xb2\xe6e(\xe5g\xb2\xce\x8c~\x89\xf2\xdar\xe3\xca\xd4\x8b\xa6k\x87\xb7\xd8E\xb4\x11\xaeN\x9d\xc8K\xcceJfQL~N\x93\x15I\xe9Zp\xbe\xee\xad\xb0\xeb\x94PE\xb4\xec2\x06y\xa9$\x88\x87Mvj\xe2\xb2\xdd F\xbd\xb2\xcax[\x8fo\xdduJk\x89\x98\x03\xe8=\x0d\xe38\xa1\xacuHb\x08c\x88\x8a\xf4\xbc)\x99$\xe9\xb4\xdf+H&\x8f\xb6\xb3\xb0\x98\xba\xab=s\x9b\xbc\x0c\xd1\x08\xf5\xeb\xb2\x7f\x12\xc5S\xaf\x8c\xbak\xff\xec\x12&!\x9d\xcc\x01\xc1f\x1f\xd0\xa5']\xd3\xe5\x11\x91\x0b\xfd\x04r\xfdq\x88\x81\xbcK\x93\xe5aL\xd35\xd7\x95*\xca\x9fv\\\xe9V(\x81\x0b\x7f\xc3F\x95\x04\x87\xfc\xda\xa4B\x14*\xdd\x1a\xcd\x08%!\x11KT\xfd\xc8\xbc\xacp\x00\x1f\x88p\xe5\xecPmA\x1e-D\xdd\xd9<\xef\x85F\xa2AHF\x99BH\x87\xf0\x9aT\xe1;\x9a\xca\xea\x06\x15\xa8\x17u\x0e4\xfb6\x00\xe2\xbd#\x01\xbc\xf0\x03xw\x05\n\xdc\x14\xfc\x90\x02\xeb0\xa1\xd2|-n\xa0\xb5\\\x1ao\x9b\x17M\xb36\x8c\xfa\x91\xf7\xe4K'\x9a\x81\x8d\xcb/\x9bt\xe1]\x15nN\xa1BgJEf=\xbe\xb1&>Jr\xb8\xa5K6X\x19\xa3L6\x80F\x0d\xe7i\xaa\xcd\x88yJ+\x8798\xfc\xd2o\x04\x89\xd6\x80\xc01\xb7\x15;T\xb2\xa8\x07\x02\xa3\x02\xcf+\x87M\x070\xa4W\x01C\\\x03\xc32\\i\xf0\x15\x04\x18\x1a\x85_\xde}\xdb\x19\x11XB\x94\x9a(Y\x1e\x13\xd5\xc9+\xe6<\x07\xc7e\xea\x11S\xcc\xd2%#P2\xdf\xf2?y7>\xcf\xd2S\xf4`T\x9d\x17\xcdG\x81\xc8\xd7\x1c\xc3>/\x06\xa4\xeb\xcao%\n\xdd\x8e&<\x1eT\xb0\xf8\x16\x08\xca\xe3I\x7f\\\xc4U\xddS\xc3\xa0aD\xdd:\xd8\x8c\x8b\xea\xa8\x90\x97\x96\xa1\xd8\xea}Q\x88 hP\xe1JCT4\xf3U\xc0\x82\xf8\xe8\x17V\x98Wt\xcba[\x8a\xf2$!\xde\x1b\x12\xc0\x0d?\x807\xeaR\xe9\x02\x01\x1d\x89x\x11\x0d\xd8\xa4\xe4o\xbems\xb5R\x1a\xf3\xfah7\x9d3o\x86;\x0cA\xee\xca\x92ig\xea\x86\xf7\xdf\x84\xb0\xd7\x82\xa1\xc4\x15C\x89\xc4P\"14\xe5\xa6\x10\x81\x97N5\xc3\x88\xf7\x8a\x04\xf0\xa3\x1f\xc0\xabo\xe7 ,\xc8\xf7\xeaZ\x90\xef\xcf\xc40\xe2\x8e_\xda\xc9\\\x1b~\xfd\x87\x91\xa8\xc4\x9f\x8e\x88\xf4Lp\xba\xcfT\xe8\x10!\xcc\xb4\xf1\x10\xcdu\x14,D\xbd\x9fg\xff\x95\x88\x84.1\xa6\x87\xec\xfa\x89x\xc6\"z\x8a\x93En}\xab@W,\xd1\x8f\xc2\x00:vr\xb1\xb5\xbc\xb9\xcbo\x1a\xa4Xv5\xf5rZD\xd7\x02\xfb\xbf\x06\xd1\x1d\"C\xdd\xf6\x02\x14\xe1\x95\x15\xb7p\x8b\xf3\xa4\\/\xd2\xe6e\x89\xde\x95\xb6\x11\x02G\x0e]\x18\xa0zI\xde%o}S\x0c\x1e\xf7r\x04\x07<\x91\x0bG\x89\x14Q\xa2\xbc9\xe07\x07\xcd|\xf9\xeaepYt\xa0 \x95s\xb8\x9a\x86\xe0\x9d\xf9\xd1+\xf3\xa3g\xe6G\x98\xa3\xcaK\xe3\x00N(\x13-b\xe5\xcdoT\xb0\x86\xb1\xe0A\xb7\xa1g\xd4\xb0V:\xec||V4\xea\xec\xf3\xb7\xe7qi\xf2\xb1w\xe6\xa8L\xe0i\x9e\xe6Eut\x1b\x9aW7oep#\xaa\x89S\xae\xcc\x85\x89\xaf\x07\xe5\xdfRg\xa1\x89\xd9\xac\xcf\xc4I\xf9[J&Z\x95\x15\xef\xff\xe6Me\x00\x15}\xae~\xb2R\x99\xa0\xda\x06\xcc\xd3\xec\x1f\x93\xe5\x8a\xaeQL.~\x0c!\x8f\x85\xa8\xfd\x1bm\xa6<\xadM\xd5Qc\xdc\\\xb4\xd2J\xcd-\xd4\x7fS\xacZy\xfc9N\xcec\xf8L\xd6\xd0\xfb\x1bl\x03\x85m\xf8[\x0f\x92\x18\xd8/\x89\xc7\x06#y\x05z[%\xf8D1\xfd\xb2\x16\x87\x16)\x1c\xf4\x86\x15cBu\x892\xa9\xd7j\xc1\xadJY\x08e4%\xce\xc1~\xb9\x0e\xcd:\xcc\x955pT\xae\x1b7\x8ey\xa6\xc48\xfb({\x8f\x9a\xf8I\xdcT\x01\xcd\xe2\x00\x16\x0c\xc7z\x7f\xff\xfb\xf1\xf1\xd1\xeb\xd7\x1f?<\xf9\xe1\xd5\xe1\xf1\xfb\xc3\x0f\xc7\xc7\x7f\xff{\xaf\xe9\x08\xb2bog\x0eJ\xa3y;\"\x18\xaa5\x91z\xb5& \x05Y([j\x88\x91\xcd\xe5\x87\xa6\xf4\x8eg\xa0^\xae\xe8\x9a\x87O\x17`tSDL\xdb\xf7bU\xc9\xb5\xb2\x04a\x94\xd9\xeck\xe5\xebb9-\xca\xb3z\x97kJ\\\x93p\x9fY\xe9\xd2\x0c\xf3\x0ex36\xdei\xec\xe9L5\x86v\xd7\xdf\xa0\xd2:\xe7*\xad\xd3\xb8\xd4d\x9d\xff\xbfM\x93uj\x87_\xa1\xee\xd3\x14XT\x7f\xad\xe2\xd1\"\x96\x0et+E\xa9\xb5*\x95Z\xab\xaa\x82I\xfe\xac>\x10\xac\xc1*VuV+\x17\x85\xcf\xca\xa6\xf0Y\xb5)|V\xb1\xdc\x870\x84\xb3X\xdc`[\x11Q2\x00\xe2\xadcF\x9c\xfc\x00\xd6\xd7\xa7\x11Z\xff)\x1a\xa1\xf5uj\x84\x84\xff\xbdM1\xb4\x8eK?}N\xb9O5\x94{\x19\x07p\xcc\xf6\xc9\xda\x81\x16\x9ft%l\xc7\xff!\xc2vn\x85\xe6\x92\x13\xb6%\x1b\xefI\xec=u/\xbby\xf1\x0d\x84\xed3'l\xef\x15\xc2\xc6n\xf5\xf38\x9bG3\xfad\xb1p\x8d\xe6\x7f\xef\xac\xe8~bWt\x1f\xc7\xa5\x83\xed\xb1\xba\xd7\xcecqC\xec\xb5\x13\xdck\x17q\x00\xe7\xd4\x0f\xe0\xe2\xfa\xf6\xda\xc5u\xee\x8a\xf74\x9c|\x86\x11\xdb\x10\xe3\xe6\x86\xb8\xb8\x82+H\xd5\x18?'\xe1\xb4\x89\xcf\xa8\xb7\xa2JRn\xea?\xe4\x89\xd7\xe9\xce\xceC\x1f\xbf\xe7^U\xe6\xbd\x00\x07 \x92\xd0\xe8\xe2\xfe*#_\x11\xf2\xb9\x13\x80\xd8\xa8K\xc3!\xfb\xa5\xc9\xde\xd1\xe8%\xcf\xe6m\xbd(9\xbe\xe5\xfa\xbai\x1d\nM_\xe1L\x82\xbb\x7f\xbb\xd1N\xa00\xc0l\xe0\x01\x02\xb3\xfe\x16\xec\xc0\x80A\xfc1W\x1b\xee\xec\xf8\xf8\x99\x89/\xc0\xcc*E\x1b\xa3\xd8\x90\xfb\x90-X}-\xd8\xa5I\xb4\\\xc5GC0e\xc1i\xe3z(\xf1V\x8d\x8a\xa1\xfcn\xad\xfc\xb9p\xed\xff#\xd6\x8b'\x8d\xc5{\xc2H\x91\x83`\"\xd4\xc9\x98\x1f\xda\xa3\xbe\xcf9\"\xfb\xfa\x959HZ\xa4\x16d\xc0\xf5\xd0m\xd9T\x05o_\x84\x07u\xe0\xd0\x08\xcf\x92gB\x01(\xd1\xc0P\xf5\x18\x8a\xf5o\xa6\xce\x87\x06\x19\xc5;E`\xaci\xfdIm\xfd\xe3\xab\xae\x7f\xd3\xfd\xba\xb1\xfeIke*\x15e\xb3E4!\xde\xc0\xde\xa68\xa6\xba\xb4\xcb\xd0\xd0Q\x1d\xa5\xeb\xca\x05\x83\xeb\xdd\xe9N\xd1Z\xeb\xdd\xa7\x91\xac\xae2\x8b.V\xa6o\x8d\xcf\x16(U\xc3\xa0.x\xc5X\x11;\xd8\x18\x92\xb8\x1c\x99\x8c\xa8|\x16\x8e\x1e\xc5`]\\\xc1b,.\xa2V\xe95h\xb8_{\x95\xa6\xab\x16\xaa\xa2\xa3sZ\x1f}\x99\xa6\xc7\x18\xe3W\x9cLi\xe5d\xc22gQ\x95d\xb1\x83\xe6\xa1\x8fw#\xfb\xe9n_\xc4\xb4\xb6\x88\xd1\x95\xd6\xef\x8fXWa\xba\xb6\x86\xdd\xd4V\x85.\xa9\xa9\xb9R\x10\x14\x0e\xf0L*\xa8\xbd2\x99\x8ea\xc8\xea\xcc\x06\x06=\xd4\xc5\x95\xb5\xa0\"\xee@]\x92\xf2hQ<\xbflH\x11\xf3=\x97\xd6\x10!\xad$\x13Le0H\xac$\x13\xc4o\xd2\x16&\xd0i\xb2n:R\xa7\xd9&z\x1db9S\xed\xd9\x97\xba\x9d\xdc\x8e\x91 \xad^\xff\x92\x9fH\xdb\xe2\x07D\xbf%\xa0\x03\xee\xd9\x8f\xcb`\xb2\xfa\xeag\xc8[je\x1e\xda\xb2\xf3Y3\xf3\xb9D\x05\\\xa0\xd6\x15\x85\x9a!\xbc\xd7H\xef\x87q\x00Otz\xd7\x0fO\x9e\xbe4h^\xdf\xb2\xf7/\x1c\xa4\xfd?\nw\xbd\x96\xfc\xa15\x8f=kF\x99\x92\x19\x8eTN8\xaa;\xeaE%\xfdK\xf9\xaf*upK\x19\xf8\xd9z\xea\x1er=\xc0!\x03\xc8\x1f\xb1\xd7pO14z\xd4..\x16ho4K*\x87\xd3\x08ut\xec\x9f&J\x18!\xa9\xa6\xef\"%o\x1c\xfb\x01\x94.\x93Jh\xc4\xfb\xf5\xf2$Y`\x85\x04\xdb\xf3z[\xb4\x06\x11\xf5\xd7\xdbx\xf4\xa4P/\xbeu\xd1\x06\xbe\xb5i\x03\xdf\xb6i\x03Y\x17\xaam\xed\x8b\x9aE%\x80\xb8\x7fT\x12\xc8\xaf\x01[\xa6X\x97\xfeK\xa4\xc4vH\xf3\xf5\x8cz6V\x04\xc4\x82S\x91\x1b\x97g\xda.\x8f\xf6\xcdFk\xa3\x87\x1acP\xe6{0\x98\xde\xac\xa6m*\xb0GOc\x1a+\x88w\x9b4\x81&G\xf1\x94\\\x90\xe9{\xf2\xc5\x010\n\x89\x7f#\xa2\xce\xddz\xf9\xe9\xbd{\xeb\x08\x1cm*l\x17\xcd\"W\x87pa\x84p\xefn\x1d{!\xa7,\xd2\x94]\xd2I!\x17;\xf6\xde\xa9\xdb\xec:\xbb\xed\xbcI^u\"\xa6\x9d\x9a\xcf\xaa\xb3R >\xce,\xac?/WY\xaa!\xe4\x9c\\ \x052\xae\xee#\xbc\xb86\xd0\xbf\x8a\xb2\x0eK\xbe\"\xd7\xd5/7C\xb8\xf7\xdc\x1b!\xc7r\xb2 \xe3\x9eK\x0f\xa5\xa9\xc3\xb1\xfc\x85Y\xbb\x04\xdb&\xc6\xf2\xba\x9f\xbe\xf2\x12\xc3\xcc\xb91\x8f\x97\xd9e\x94?\xc5\xb0\xc7}\xce\x14\xc2\x01\xe4\x98\x92|\x1fB\xea!\x7f\xd8\x8f2\xc1'J#\xe0\x88\x8e\xb5\x94[\xbd.}wOo\xf5*\x10\xc0\xe2\xf5\xad^\xa6\x8a\x1dP1\x16D\x0d+\x8f\xfd\xabA\xed+\xfb\xb8\xcfD%\x84h\xb4\xebP\xe79)\xed\xad\xb8\x08\xa1\x97\xa0\xc7\xae\x0c\xc4\xcd<\xa5\xd0j\xb3\xde\x96\xbc\xcc\xd9W\xcfD\x95(Q\xfdBW\xd7X^\x92\x92ci\xe9!L\xeaT\x14\xc7\xc4$N\xf9T\xd2S?\x90\xf7f\x8b\x90R\x12{[\xbb\xc2\x12\x83\xdaEM\xd1\x13\xebV\x00\x01\x1c%\xcd\xa8\x13\xba\xc8-\xc4\xfd\xa0\xec\xc0\x87f\x1fJ\x85X\xd86XN\xe4e\x06\xf8%\xaf\x8d\xd6,g\x8b\x0f\xa5\xfaV\xe3\x0e\xed\xc6\x8eH\x8f^\x97\xb4\xc9*\xbbV\xf5 v\x897\x98\xda\x12#k\x0b!4n\x91\x98\xa6Qe\xac.CU\xf4{\xef\xdc\xba9#\xe9\xda\xf1Lq\xe4\x82cK*\xf2\x16.8\x0d\xc0V\xf2\x13\x8a@s\x8e\x03\xbc\xd6\x11~\xa1\x14Z\xe3Z\xa2\xad\x81\x01\xf8uG\x12\xd0\x03\x86\x13]G\xc8\xd4O\xae\x1f\xd4|\x82\x9a\xf0'0\xf5\x19Ok=\xbaT\x8db\xc0d\x9fbNT\xcf`\xde\x00UOz\x80 M\xf4\xe5\xc15\xc3\xe2Z\xa1n\xb0\xa8 KP_q\xeei\x89y\xbb\x89\xaf/S\xa3\x19\x08\xe3@\\6o\xbd\xef\xc2\x92\xc2\xe9!\x1c@\x0f\x19\x1f\xd8\x87^\xd03c2#\xc1=\x8d\x1eU^\xdf\x82\xe96\x1c\x8fE\xa9\xfe\xad\x01\xba\xacn\xa3\xd2\x14\xffE7\xa3-YBJ\x99\x14\xaei\xe1E\x83gN\xaf\xc9Y\x82\xd8\x01N|\xdbg\xb2\xfe\x06\xf2\xf3\xd4iE\x97\x159\xd4\x01\xad\x8a-VM\xd9\xe9\xd4\x19?K;n\xb0\x00\"\xeb\x02\xd7p\xad\xe1\xa0\xf2\x08\xf60?\"\xc3\x14\xd8\xe7\xf9\x90\x1a\xdbAU\x03`\xcdZ\x1b\x01\x84\x03\xf0\"A\xe5\xb09_\xb4K\x8b\xd2\xb7\xbcb`b-\xc8\x9c\xba\x83\xec]t:\xa7\x1d\xe1& \x93\xca\x08\x95\x86(;}\x12\\\x8f0\xbd\xa7F\xbb;\x98\x06\x8d\xbd\xb8\xe3n\x81Tj2\\\xa7\xae\xd0\xb8|E\x0c\xfer\xb5C\x82q#\xddz\xe4yYx\xac\xdc\xbb\x18K\x85\xe9\xb2`\xe8\xbaJ\x9djL\xd4gf\x0c\xc8\x01}?(u\x7f\x03\xad\xf9\xd9\xa9\x97\x93\x9c\xbe\n\xbb\xa8\x07\xf8\xbeF\x0f\x99\xdd\x00v\x06N\xbdD\xd9\xe1rE]l\x0c\xa2\x17\xf5dR\xe4\xf4\xba\xe4\xbe/\x96\xb1\xca\x8c:\xf0\xa2&#\xa4\xd3l&I\x1e\xd7w~\xcb|\x9ex\xb4T%\xf1m/\x04X\xfeq\x07\xbd\n\xf6\xfe\x83+{*\xfaw\xa5R\xa0P\xaa\xaf\xd4\xf3K\x83\x94-\x03\x9eD\x0d\x1d\xf1nc]\xf1{\x917\xc1+\xeb\x94\xf3J\xe2lW\xaa9\x8f\x9d\xa46E\xe6\xd2\xb3\xbb\xf2\xb2\x94R\xc1\xb3@5\xb7\x19*\xe4]\xaa\xe7\xad\xcb\xea\x91/y\xb8\xe8\"l\x9d\xd1\x82l8\xb5/\xb2f:l5\xd5\xe1T\xbf\xb6\x18\xa8\xd5?\xc6ty\x95\xe2L\x94\x96\xf7\xed\x9cb\xb5z\xeb\xcf\xb1_S\xb5Z\xcf$\x0e\xc6A\x0b\x1d3\xc3@\xa2\xa0\x1b\x05\x8e\xaa\x94\xb7\xd5\xfc\xa4P\xb0\x00\x12OG\"\xe5e\x18\x7fgQc\x1ev\x913\x90\x0e\x89\x84\xcbK\x1eC\xb0t\xec\xe5\xa8\x0b\x0d\x97\xfdp\xaf\xd1.=E\xd9\xfb\xfc\xc4\xb1\xc0g!\x03\x0eM>aE\xa5\x14nu\xe6<\xba\xa2\x13r[\xda\xe2<.\x12\xe3t\xc8\xa7\xa5\x9f\xe2\x8a\xf1B]&\xe9\xd9f)`\xa6\xcc\xd2/n\xba\x9fj\x9f\xc9\xfa\xed\xac\xc3\x90\x8aC\x8d1s\x9d y\x0dFB\x1eq\xee~\xc4W\xb42lW?mH\xa9.\xdd.\xba\xab\xd1\x1a%\xbf\xfa\xc8\xcf\xba\xf7\xf7\xf2*\xebb\xe0\xbdq\x8d\xb5\xb9\xac\x9a}/\xc3\x8b\x0e\xbd\xbe$\x9dT\x18\xcb\xf0\xa2\xeb\x99\xfa\xb2\x92\x8f\xc8\xa9\x137\xa3Yc\x06p\x00ob\xee\xc2\xf2\xd5MPZF\xf1\xd5\xa7\xc3\xbb#\xbc;\xd7\xb9\xa5\xa43&jC\x1eA\xdf|\xf69Zu\x80\x9d\xd2\xfe\xeb\x90\xce\xfb\xcb\xf0\xc23T$6tV\x17\xbe]\xa5\x04\xc3\x1ecMzT\xb9\xe3<\x90_\xe7\xd1\xa2\xa3\x99\xa1\x18\xcc\xefW4l|\x8eV\x1fc\x1a-\xbau\xcb\x81.\x87\xdcM\x05\xc5\x13\x82u\xeb\xafi\xe5\xd0d\x06\x03}\x7f4\xfcL:,/\xad\x18 \xae\x80R\xac\xbfkF)\xd6dw\x94b_}\x0bJ]E\x92\xf8\x87\x13w\xab\x940\xfa\x18\xa3\x9a\xb7\x92\xbc\x0d#+[\x18^\xc9NS\xa3vY^L\xa4\x8b\xaa\xb1yJ\x81\x96J\x18\x08vlo\xedL\xd4\xf3o)\xfb_0n\x1a\xc1\x87\xa2J$l\x9b\xa1\xd2L)\xfd\x14\xdf\xde\xbc \xdb\xdb9\n\xa9\xa2AC\xa1ry]\xfa\x01\xe4\xc67.\x03P\xcb \xfd\x17\xadJ\x92vY\x16Z\xf1\xc6b\xdf\xd9\xe5Zv\x85\x16\x8f\x12y\x89q:FY\xaa\x17\xfaN\x85\xc5L\xdb?\x00\xf7\x88G\xf5\xb2F?\xaa\x97!VB\xbd\xa4\xe9&o-N%/\xae\xc3\xaf\x14\xa9\xb2x\xa9\xcaKF4R\x11\xc3\xdb\xfa\x01\xbb2\xe1\xac\xea\xf6\xf6\x04\xdf\x1e\xb4\xb8\xb6\x82n\xafM\x02\xc8P\xe3y\xc0H\xdbp\x08\xef\x84\x98\xf3\x9cad\x86/\xf04\x7f\xa1\xf0\x0c\xf9/X\xdc6\"`\xa5\x00\xda\x87\xdd5\xaf\xec\xe0\xb9*SQ\x1cZ\xdd\x98\n\x19C\xd0\x91/\xed.\x86\xcd\xc3l\xfe4\x99vpt\xa1\xf32\xbb\x00\xd6e\x9a\xab\xd9\x06\xday\x04(\xb6\x17wP\x1e\x0ea\x00\xb7`\xb7\xd8h\x16\xd2%\xcd\xa4\xb3V\x05\x9f\x9b+\x7f*\x8a\xdf\x0e\xf4Uo\x8b\xd7\xf8\xc0\x9c\x16\xbf\xf6\x0d\x1b\xed{\x14\xd2o\xdf\xb9\xbd\xf7`p\xff\xf6\xdd\xdb~P\xdc\x86G\x8f`p\x176@\xe0\xf1\xe3\xc7\xb03\xb8\x1b\xc0\x9d{\x83\xfbw\xee>\xd8\xfd\xbe\xfe\xdem\xe5\xbd\xdb\x01\xdc-\x9fc:w\x8f\xc06\xdc\xbe\x7f\xef\xce\xde\x83\xbd\xc1\x83{\xb0a0\xfd\x17\xdb\xd2\xff\x12\x9f\x0d\xee\x05\xb0\xb7w\xe7\xde\xfd\xbd\xbd\xbbE\xf3\x87\xe2s\xec\xa6x\xf3v\x00\xb7\xf7\xee\xdd\xbbs\xff\xc1\x83\xdd\x07\xbe\xda\x84e\xcby*\x7f\x10c\xad\xcb\x83\x8eP\x83!\xdc\x1e\xc0w\x90\xc26<\x8f\xbd'\x147\xcd\x13\xea\x11\xdfg32w\x0e\x8e\xbbS^\\+~\x85^\xaa\x93r\xe9\xa6\x98\x11v\xd4\xdaA\xb7\xc6\x1d\xdb\xf5\xb5\xe5\xac\xa1 \x88:RX\xb9SW\x06\xb3\xbd\xf8\x9a''Sr\x01\xa8o\xbc\x8eG\x0b\x19\xe0\xfd:\x1e=c\x7f\xbf\x16&\x8b\x8c\xdd\x12\xa1\xa3\xfc\xb6\x08\xac.\xee\xab\x81C0\x84W1>\x89\xe2l\xc5s\xe3\xe3'\xef\x93<\xad\xe6\x95\xd1\x81\xac\xa6D\x12\xee\xad\xd5\xd9a\xeb\x93y\x18\xc5\xbcma\xcb\xe4\xb7\x93\x98\x86\x11F\xa5\xe3\x10\xb8\xee\x12c\xc4S\xdd)9[D\x1dB#\x0b\x01\xe5+1\xae\x84N\xed\xb3:l\xb8\xf7\xbbZ\xff\xcdT15\xcb\x02V\xe1\xae\x93a\xb5\x90&\xa4\x93\xc4( \x1a\x9b\x8bO\x03p\xa3\xaab\x93t\x14\x1a\x97\xe1\xeae\xd5\x07\xd9\x15FW\x00\x02[\xf7:,\xda\xc4\x8c\x06,x4\x82\x05\x08\xd8\xc9Uv\xeb\x87\x18\x93\x9b\xb4f\xeexj\x06\x92<\xd5\xaa}\x19\xda\xf9\xb9\xb5\x9d\x11 \x80\x8e\x9d\x1a{g \x87\xf5\xb3\xb9e\xb3mQ\x97d\\\xd0\x84\xa7aXo\xaegX;\xd7<\xacW\xf6a\xf52\xa4\x81\x15\xe3\x07\x1c\xc0O\xef\xdf\xbe\xe9\xf3G\xd1l\xcd\xd5\xb6\x82Z:\xe6\x16}f%\xc0\x87\xc6L\x9e\x86\xe6\xbe\xb6b\x10\x85G\x05\x07G\xe11\xfe\xbd\x83\xec\x9cS\x07\xcf\x1d:`\xac\xcf6\xec\xdd\xbb{\xe7\xce\xed\xbb\xdf\xdf{\x00\xdb\xe0Q\xc6\x90\xdd\xf3\xf9\x9f\x8f\x1f\xc3^\xf3\xf4\xad.\x94h\xedCT\xaf\xc2h`\x95\xcb\xe5\x95|\xb3\xad\xaeu@J\x1b\xdeV\x82\xa5\x00\xf8\xba\xf2\xd0R&\xa2G\xbe\xaf$-\xc5f\xc5}k\xcb\x97\xac\xf7\xc0\x96GC\x85\xa8\xdel\xe7\x0c\xd2\x80[\xee*1~\xd8\x7f\xeb\xe4\xdd\xed\xa1W\xb0\x9f\x15\x90\x8d\x18ds\xf8\x1f&;\xb0\xad\xc7p \xa9\xb8\x00c\xcc\xef>\x7f\x07\x0e\xe09\x9b{\xce\xd3\x91\xa2\xd5F\xfe\x8cd\xca\xd86\xf0[\xad%\x86T\xe5%\x95p\xde\xc6\x0b\x12\x9e\xb9p^\xd2,7b]\x8c5\x87\xb2oY,\xb6/op\x02 \xf5/\x01\xdc\xe8'3t\xa65~\xc6\xf3\x93(\xde\xf9\xd6s\x96\x14\x1b\xdf+\x88\x81\xb8\xc7\xe8\x80\xc8H\x13\x94\x94\xc8\xcd\xc7\xa9\xab\xcb\xdd\x92z\xbbj\xcaj\x97>\xae\xe0_\xc7\x0e|\xc7\x08\xd5\xebv\xefq<\xf9\xbf^I\xafzC\xfe\xf1,\x0el\xc8\xe6<\x86_#:w9\xa7\xa4\xcc\xa3\xf6b\xc77\xc6\xd3\xc9\x00\x81\xe6\xf8M&\xcb\xca\x9dK\x9fQ\x842=\xec\\\xea\x1b\xd4\x9bE\xdd\x96#t\\o\x0e\xbf3\x8f\x85\x18\xc4kA\x0b\xb3\xb2\x93\x9cv\xd5|:\x9a\xaa\xd3p=\x9b\x0d\x9b/s\xb89@;Q\xf2l\xf3\x12\xda\x15+\x81\xfaX\xb1$\xa8\xb7+&\x85\x17\x81\xaa\xa4\xf5\xf1\xde\x8d\xca\xf2\xf1{?V\x9a\xe6\xf7N\xa8\xe6\xe3s\xaa\xf9\xfa\x82\xd6?oBE\xe6\x97\xdb\x87\xb8 W\x04\xea\xcb\xe6\xfd\xa7\xc9bA\x10\xd2\xfbp\xac)\x90\x81\x01b_5\x0f\xd4\xb4\x92G\x1a\xe7 \x9e\x97o\xa5y\"R\x05^hGI\xf7!\xd3\xe5{\xbb\xbb\xd3O\x9f\xf2\xe9\xfd\xdd\xdd\x1d\xf6\xefl6\xfb\xf4)\xdf\xbd\xcd\x7f\xee\xde\xbe\xc7~\xce\xc8\x1e\xfe\x9c\x91\xbd\x19~3\xc5\x9f{\xbb3\xfet\x97\xf0\x7ffc\xd3\xe0\xcc\x14\xad\x100(\xc9\xa8J\xc7.\xbb\xc1i\xb0\xfb\xa0\xc6\xeb0.\xb2wx\xb1\"\x13J\xa6\x10\x16\xed\xf4\x14c\x8f\xbc\x07\x89\x96\xb0G3\xf0\x94\xf8\x88-\xc5D\xb0\xd9\xc8\xecA\x1cE\xb4\xaf\x11\x1f\xe8\x9e\x864<>\x16\xd9F\x9bX\xa9h\xf1\x84\x14[\x83\x0c\xbb&\x9a\x1aTQP\xb9]\x14\x82M\xaa\xf7yQ\xc4\xbcz\x933\xc4a\xf5f\x86ofUB4\xe9\xb6:\xb7\x1f\xe8\x97\xe7\xce\x83\x96\xe3\x18\xa8\xc8\xcb\xc1Co\x1b\x8e\xeb\xca\xe6\x15\xc6\x0eOT\xe6\x04R\x9c\x80\xf2\xd1V\xc4\xb8\xab\x9b7\xd9\x1f\xb1\x8fJay8\xc6\xec\xaf\x98\x1dA\x95\xfe(\xeb\xf2\xca'\xfe\xed\x07\xb7\xb5\xb3\x1e|_G>\x81\x94\x0f\xeei\x90r\xd0\xc4\xc7\xbd6\xd2!k\xb9pG\xe1\x99\x0e\x15\x17\x98\xb5\xf8&\xe4\xcd\x03\x17\x0b\xb2\xca\xb2\x8c\x8d\xa7s\xc4H\x9dY\x8a\x11\xa8\x15\x03\xe4\x1c\x81\xec-\xd8?sx\x0c+;]F\x9d!\x0f\xd0\xf5\x9b-bAK\xfeX\xa9-6\xc5%n\xb6u\x06C\xd8\x194G\xbd\xe62t\xe3\xfe\xa9\x00C\x08\x07|'\x82\xf4\x8e\xae\xb6\x8dy\x01fx\xfc#\xa9\x0f\x80\xff \xbc\x06\xe8\xf6\xf6\x19<\x82\x956\x11\x00\x1b\xd6\x92\x81ttf\xe0n\x8e\xb1(\xcc\x99\xc6Q\x9c\x01 \xf3\xb1\x89\x13\x18\xc2\x02\x0e \xf3\x8e\x03X\x06p\xc6\x03\x91py\xf7!\xf3\x96\x01\x1c\xe3]\xbe\xfa3\x0d?SK\xe2{b\x92\xae\xd9{'>0\x018\x8aM)\x0b\x10\xa2\x03\xfd\xb3\x93\x94\x84\x9f\x1bO\x9a\xe7\n\xeb\xe8\xd46\n\xb6e;\xd8\x0c\xf0\x93\xc4;\xc5\xd7n\xde\x04oY\xe6\x8c\x9e0\x08Q\xb9-f~\x89K\xa7<\x16\xdf\x18\xdel\xeb\xd1\x06\x050B\x02\xb4\xd0\xb8\x04\xb2\xc8\x08Nb\x89\x0bt\x8c\xfbh\"\x96\xb6\x18\xb8a8\xdf\xba \xda\x13y&N\x10t\xba-~0\xfc_\xff\x9f\xea\x876n\xc8H\xa5\xeas\xa9\xd4_\xdb\x11 /%\x11\xa7\x98&o\xbf\xa0Ml\xdb\xc5\xf0\x08\xd2\x87\xcd\x95C\xd3\xb8GG\xf1\x18\x01\xa7r\x86\xbbZ\xfeOI\xef\xd4\x91\xcc\xdf\x19\xd4y\x83\xe2pkRyQ\x91\xa98^\x9b\xf4\x1e%\x19\xa5\\S\x93\xfc\xa3*\x08\x9f\x1de\x87q\xbe\xe4\x8a\x9f&{\x92\xda\xad\x1db\xe2\x85\xb8VE\x06\xcf\xf7\x85 \xde\xae\xec\x13\xad0\xe6\x9bak.X\xcc\x00z\xec\x0fBz\xfc\xc4\x0d\x9b\xf7\xab\xfd\xe9\x8f\xb4\xcce),\x99\xf2\x15\x06Qch\x10\xeb4\x18h\x9e%m*\x97-\xd2\x8f\x93)aB3\xdek6\x81\xab\x89\xa2w\xb3\x1d\xca\x8d\xd4\xac\x1dZiG\xa3sbk\x9es\xe0\x16\x90A\xc1\xe4\x00\xd2\xfe\x0f\xf9lF\xcaS\xab\xf95\x03\xa3\xc7\x8e\xb7\xb0\x1fe\xb5\xb7Q\x8a\x8d\xccJ\"E\xe2\xa9(\x89\xee\x0f\xfc\xc2X\xdc}\xdf\x1b\x988\xda?''\xabp\xf2\xf9\xe7d\xb1\x9eE\x8b\x05\x0fY\xe9O\xc9*%\x93Z\xedG&O0\x96t\x15\xd29k}4\xc6L\xf1\xf3h1MI,\xbe,~\xb2\xe7e\xb9\xb4)\x99E1\x91\xfb\x0bqr\x91\x84S2\xed\xe9\x14\xab\xa4\xd8a\xfbz\x0e\xa2K\xd1\x19\xda_4\x1e7\x95\xd4\xe6qF\x7f\xc9\x18#\x8716Wk\x08\x83J\x02\x9b\xced\xd4 #\x0c\xea\\t\"\xee\xdf\xd1p\xcb\xb8\xdf\x92~\x94\xb1\xfd4\xe5Q\n\x95\x97\xf8f:\x80\xc8\xcbQ\xe5\xa4\xa7;a\xb7\xb1\xdf\xdd\xbd\xaaZ\x91\xf2\x83\x8d\xd1\x81\xb4]\xb9\xd8\xbe\xb74g\xaa<\xc9\xe5;Z\x87\x17\xa9!\x10\xfa\x05\x91E\x90\x8e\x85;_\xcd\xdf\x84p\x8f\x92H\x16'\xf4\xe2\x9a\xa9\xeb\xf2\xaaX0\xb8_\x97\x818\x16|\x7f\xbf\x15\xc2m\xec\xc4.\xf72\xf0\xb8\x1a\x88\x07\xf1\x17\x9cD\xa1X\xe1\xd2\xe0#H\x1e\xfa<\x85\xe8(\xf2\xc8(\xde\xde\x1e\xfbc\xbdv\x8f\x7f!\x082-h\xebU!\xa0\xd7\xd9\x0d\x1a\xd8.v\xc1^\xfd`\xe3\x8a\x8c;\xdf_\x05^bJii\x18\x8c\xc4{\x07\xc0\x90a\x1f\x12/\xaf\xb8 9M\xae\x97g\x042\x9aF\x13\xaa\xa8\xf6*^X\x0d?\x11\xe9j\x13{\xdf?\xa8\xebF\x94\xe9\x1c7E@&\xbas\x98\xdd\xfb\xbe\xf6\xe5q\xff\x1d \xa7\x8cN\xbe\xa7\xfc@YV_`\x80\xbe\xeb\xf7\x0f\xcfHL\x0f\x97\x11\xa5$mv\x10\xb6\x81Q^%\xd1\x8f2Jb\x92b\xd1M\x8er\x8d\x0ft\x96{\xb1%\xea(\x01\"\xb88\xf6\xee\xef\xfa\x82\x03h\xbe1CA\xfdc\x14\xd3\xfbH\x07\xd9\x9e\xad\x9c\x9f\xcd\x99-85\x1b\xd4\xc0\xb6\xe8G\xf1\x9c\xa4\x11\x15J\xaf\xbb\x1a\xf3\xc0\x8a\xa3\xdd\xdd:\xb1\x06\xa12\xd0 \xd5\xec\xfe\x8am\x9fU\x7fJN\xf2\xd3Er\n\x07\xca\x0f\xaf\x97\xd1\x94\x84\xcb\x9e\x0f\xfbmC\x9f\x06(\xfb\xb3!\xd4w\n\x08\xe1\x88\x81\xb2\x8eK\xe5\xd4\x98X]7\xf9\xb3\x86O\x19\xf7\xd0#i\x9a\xa4=\xc6\xbd.\x92\x8c\xb0?\xa6$\xa3i\xb2f\x7f\xae\xc2\x9c\xdfKI\x96/Iol\x8a\xd6Y\x1a\xd1%\x01\xa1i\x8e\xbd\xbd\x81\xa8a\x81b\xab\xae\xbe\xa0$\x16\x04\xa28\xa3a\x94w\x86\xe5S\xdf\x0f \x13j\x85F\xb6?\x13 OJ\xe5\xb8)\xdaS\xe1!h\x0d\"M\xb0 \xdd\x147i{ym\x8f9q \xa8\xaa\xe2{X\xae\x93^\x89\xc7_\x14xfSJ\x9e\x15\xc5\xdd\xc4\xcb\xacu[*\x15\xce\xc3J\xaa\xc4\xa0N\x04\xdd\xe2\xaa\xd1\xd8\x0f\n\x9d?l\xb3\x86\xab\xd4\x17\xf6\x8b\xaf\x0dJT\xed]RR\xae\xdd\x00\x0e\xb5\x86I\x06\xba\x1c\xeb,zH\xb3\x11\xdf\x9d\xe0\x8aP\xd0\xcf9\xe5Uy&\x85F\xc4KQ\x15\x92\xaa\xdbf\x86\x94\xa6\x19}I\x94\xb8\x83a!\x0c\xd5NK\xcc\x12\\u\xaa\xe8\x1d\xc5g\xe1\"\x9aB\x9c\xc4;\xbc\xd9[\xe2p\x98\xcc\xf3\xf8s\xcf\xb7\xc5\xd3\x18&\"\xb6\xb5\x06n9: \x06\\*A\x02\xee\x15\\L\xc2\xe0\x99\xd7\x86,\x1c\x89\xc4*?\xc6\xc8\x1f\xcf4\xff\xfa\xc7e\xa5\xf9\x9f\xa5j\xf3\xed\xcc#<]\xb1bND\xd8\x10\xa7\xe4#bn\x13\x0c%\xd7\xe3\x06N0e\xa7\xb4z\xe45\xe7\xcb\x16B,\x02\xe7(\xfby\x9c\xcd\xa3\x19\xf5|\x08g\x94\xa4@\xe2)\x10\xc6\xf5\xf7\x10\xd7\xce\x11\xedd:;\x04\x16GU\x97\xb6q\xcb\xc8\x86\x0f\xdf>\xe7M6\x88C^\x1c\x19L\xfa\x8f\x19\xb4 &>\x92\x9b\xf6<\x8d\x84\xae\xbd\x0em!\x85\xcb\xb5:\xa8\x8cw\xc0z{[\xee\x9b\xea3\x9fW\x8fb\xcbP\x1d\x90\x0e\xfb\xea\xaa\x83\xb6\xb5\xda\xa2\x02LH\xb8\xab\xdc\x04n\x92\xa2HV\x8d9,\x99.j\xa4#\x97^\xeeF\xe3\xcf\x15\x1a\xaf\x1b0)\xb8\xa8\x9b7\xe5\x1eVh\xdf\x16\xe1l\xd1\x01\x9b\x02_\xebiHC\xb6\xd4\xa8\xf7b@\xf3v\xf9\x9a:\x12E\x8e\xa4\x05M\x95\xc8\x17\xb36t\x94\xb6\x02\xb8\xff?{\xff\xbe\xdc6\x924\n\xe2\xff\x7fO\x91\xc2o\xc6\x03|\x84h\x92\xba\xd8\xa6M\xeb\x93e\xb9\xc7\xd3\xed\xcbH\xb6\xbb{\xd8\xfa\xa9!\xb2H\xa2\x05\x02l\\(\xab\xc7:\xd1gw\xcf^#\xf6\x01\xf6\x9f=o\xb0O\xb0\xb1\x11\xe7MN\xef\x03\xec+lTV\x15P(T\x01\xa0,\xf7\xec9\xdf\x87\x88nS\xa8B]\xb2\xb2\xb22\xb3\xf2r\xef\x1e\x92F\xc7e\x8bJL\x9a\x16\xfa\xe85\x87\xe7\xd2}C.\xb8\x18\xd4\x9d\x1b\xa9\nU\x17$\x85\x7f\xb8wO\xf7\xba\xe0\xfc\xaaK\xac\x91\x81\xdb\x05\x0c6to\xd7\xf6OO\xf86F\xc3\xe7%\x83\n\xc1\x88\\\x8b\xdf\xe5\n\xe7Y(\xd7\xc9\xffRj\x15u\x1a\x0f3&\x0d vdA@\x11D\xe3\x06.7N\xeb\xb6ix]\x8es\xdf\xc8\xec\x08\xf5P\x19\xd1C\x91\xebN\x1b\xa9\x80.\x02\xd25f\xf1\xa6r\xf3,Hv\\f\xb8\xa9\xc0#\xc8>\xbbl'\x98\x99\xd1qyg\x8eK\x19\xb9\x92SB\xc5\x9fC\x81 \xdfs\x8d'\x0f\x9f\xa3\xd4<\x93 (\x87\xa2z\xc4+]\xf8\xc9[/K\xca.P5]l\xf5\x8b\x94_\n\x86r\xfaT\xd7YBd)\xa9\xd5\x9c\xda\xc91\x95\xcd\xa2\x885\x86z\xb2p\xc3j\x94G_U\xac|\x84\x11<\xdcy\xf8p\xbf\xf7\xd0\xa4/95\xa2n\xae>\x7f2b\xfe\x8dU:N\xf2#\xbb\x87d\xb6B\x9dS\xa6\xf0=(\x1f\x08\xd2\xa9\x9a\x93\xe6\x05\xf1\xa6]z\x08\x88\xb2aQm\x88a%\x80(\x07\x1ac\xa2U\x8dA3!\xcb'\xf6t\x04\x1fQ K\xff\xa5\x9dloSY\xeb\x13\x1d2F\xf7*\xfd5(\xfd\xb5[\xfa\xeba\xf9\xbb}\x17\xd2NG\x9bk\xe0\x86\x9d3\x08U \x0e\xe8!\x92CS\x9e9\xa9h\x0cz\x98\x9f\xb9\xd59}\xac\x87Bn(\xd7H\x8f\xaa\xbd\xf7\xe9\xe9\xa9*+(\xd6/l\x8b\xbe\x16\xef,\xb7XtG\xf7\x0d\x9bI\xce \xb0|\x1f\xef\xfc\xc9\xa5}\xc8#/\x1eV\xdceM\xf3<\xd4\xcf\x93\x0f \xc4$-\xe4.\x18\xc3!\xbf{\xd56\xa0\xcb\x1b\xe3n!%}\x08\xb2\xe0\xaa\x86\x04\x9d\x8e\xf2I\xfe\xa4u`2u\xfc\x93\xb1\xe3\xd2\x05Ln5FY,\xc1z2\x86K\xda\x7f[\xa4\xe0!I\xc10\xea\xf6\xd7\xc2\xb6\x96\xde\xf5\x05\xa1\xab\x86\xf3@\xf5B\xcf\x92\xd94\x17m\xfb\x8a\xce\x9d\xc7Ny0\x0d\xc0\x1a\xa9\x89\xbfL@\xb84\xaer\xae/\xa1\xe0M\xfd\xc9\xa5n\x9c\xad\xfax\xd9\xbc\xc2\x02\xdb\x99\xe6M\xd7\x13\xe2\xbb^1G\xaa\xca\xb4\x1c!Q\xb3\xcd\xd1\xd1\x05u\xc9\xa4\xe5\xdclJ\xaf>\x97\x08 \x8a-l\x8b\x8e\xa7\xb4\xad\x1f\x97\x07\x99\xa7R\xe6\xe3s\x1e+\x02\x8fi\x84\xef\x9a\x0e!\xe5\xe89`]!u\xac0J\xf9\x91\"\xc4\xcf!l\xa5\xec6\xf5i\xa9\x0d\xbb\xa4\xc0\x91\x0f\xa3\x9f\"?\xb4-\xbc\x13\xe9\xf3\x9eyI\xcd\xc1%\x0b\x1a\xdc\x9f\x92\x14>\xb1EQ@\xbc\xd8F\xd9&\xd4X\x94\xd6\xa9Z\x0c\x1a\x8a\x94\xed]\xf5\x00=\x00Lu$\x97H\x91B\\\xb9@[-u\xf2,\xc8\x1c\x06\x9a.\x88\x04\xe5p\x93\xf0\x96\x05\xc5\xa2\xad\xea/\"\xc4\x13Wmt\xd5\x07\xef1qlf\x15\\\n\xdb#\xf0\x8dDI<\x88\xed\x8f\x81\xc5r\xa4\xf4\xa46\xf7\x14\x08uf>\x80\xfa\x81\x82\xb8\x91\x81\xa7\x10\x15p\x8c\x8a\x13\xbf!\xb2\xb2?\x03;c\xd6I\xc5\xe7>\x95\x8e#\x18\xf2\x1f\xe5\x85f\x9b\xc7\xc6\xe9g\xb5\xa6\x96\xe2\xa9\xb4ow:\xb1\xcb\xc1\x81\xab\xbe`Zf\xfefX\xbc!\xdd\xd4\xf3\x03\xae\xe7\xe7\x02\xbc\xa8\xecr\x08A1\xc4\xcc\xa4\x91\x93\x1f\xb3\x85\xa7xn:\x1d}xc0jFA\xb2m\x17\x13\xddFw\xa0\xaam\x0e\x085)q6\x89\xab*p|\xd2\xf5\x82 \x9a\xbc\x0f\x13oF\xdaE\xe1m\xb1+(\xca\xd7\x98\xc5\xc6l\xa7N\xa2\xd55\xaa\xde\x04\xe7c\x97\x83\xe4\x8b\xe0\xbc\x1eSaS\x9c\xf7k\xc2]\xb8M\xc1\x974\xb9\xee\xf0+~\xde\xb9\xc5 K\x19E\xc3ev\xb9{\x13\x9bp\xf4\xb9\x8c\x0c\xbb\xde\xe1\x13\x7f\n=\xd95\x93)\x98\xffd\x910\x17Ql\xc7\x024\xa5\x9dB\x14\xe2\x9d\x02Y\xae\xd2k`J\xe8?i\xe6Bd%9\x13\x02\xe4\xfb\x17\x89\xfd\x7f\xabMrb\x8c\x1dj\xd6\\)=rU\xa1\x98$\xb3\xd2,_V\xf7\\\xce\xcbVD:\x9b\xce\xdej9\xa6\x93v\"I\x8fk\xbfr\xc9\x84\xd9\x93C\xd8\xe9\xe8/\xb20\x1a\xfa8\xe4vq\xc5\xbd\xaaQY\xb6\xadJ\x0f\xf2_\xb2B'f{\xb2^C\xc0\xa5 \x8b\x9d\x9d)\x8c`\xe5\xc5 y\x19\xa2[J_\x17\"e]\xf2;+\xe1\xa0\x9e\x12b\xa43=z\xf2\xf5\xe3\xca\x0d\x9dQ@N\xdd\x98\xffyE\x93-a\xf8\xa8\"\xd3}\xfa$\xd4\x0c\xc5\x8d5\x9f\xf1\x10*\xe2;k\xc7\xcd?qku@G\xec\x92\x18\x86pl\xf3\xcblJ\x10M\xf3\xe4\x04z$TP\x8e\xd4\x9ac`\xfc\xef\xdd\x13\xbd\x98\xdaF>\x99\xa5\x13-\x83\xc6\x88>\x0b\xdb\xa2\xf5\n%\x01\xe6\x15\x11#$\xd2N\"\xd2IS\x95\x97q\xfc\x0b\xdb\xe2u\x02\x92$\x90.\xbc\x10\xaeh\x8d\xa5\x17_Zl\\\xa8\\\x15`\xc3f\x85hw \xd6\x82\xfe\x11\xe1\x95\x19\xde!\xf8l\xe1\x91\xbf\xe3R\xf94\xc2\x01[\x8e+}_R\xa9pMQ\x05\x80:\x8dRI\xe3\xa8*\xd5\x1c\xb9\xc9\xbe\xab\x08\xc2l\x05C\\A\xbe*lic~\xc4\xf7\xe0 \x17\xf0\x86\xfc\x88<0\xe8\xb5\xd0\x0e\xc7\x91u\x7f\xdb\xa8\xec\xd4\xce\"\x07\xa0aFa\xb1\x95$\x85\x07\xc7\x1f1T\xd4\x8d\xe7\xd7(\xa5\xbb\xa8\xb8\x92w\\Q\x10\x9f\xb7\"(R\xc3\x9a\x0bM\x06q\x07\xfc\x04\xc2(\x05\x7f\xb9\n\xc8\x92\x84)\xa9\xd2a\xe5\x06\xc2_\x91\xd67\x10\xb5\x01\xd5\xa2\xb6\x97\x13\xc9\x95\x8f\xae\xc6\x91d8eb\xad&^B\xa07\xd4\x96\x01:\xe0\x0b{\xac\x1af\x0f\x99 }1\xb6\xdfo\xd3\xfe\x98\xfft!\xad\xc9\x13S\xd3\x15\xbfOi\xec\x8b] 5^wI_0\xd3\xb3\x0e\x95n\xe9\xce\xc7%\xc5 \xa0\xa3?N!Z\xa5\xc9\xe8\x8f?Yn\xa9\xb6\x9e\x1f\xa3\x8b\x8c^([\xcc\x90\xb0\xcf\x15r$\x9c\"YJ\xf9\x1dP\x92N\xa3,U\xde\x908\xa6\x92;\x0c\xe1\\\xb9%\x80\xb2\xc3\xb5\xce\x88X<\x0b\xdb\x8a\xc2,\xa4\x03\xb5\xd8m\x92\x08\x88\xca.\xdf\x99\x1e%\xee.\xbc\xe4=\xd6b7\xd8\xa5\x17\x8c\x06,lk\x12\x10/\xccVB\xa7\xb6\x8c\xd6\xdc\xf6\x8d\xc4vn\x1e:\xd7\x96\xce\xfc\xd0O\x16\x96\x0bKm\xf14\xf6\xfc\xd0r!\xd0\x96\x8a\xfdy\xad-\xe5\xb3saB\x89G\xf5\xe3\x90\x92\xeaYM\xd9\xb9\xb6\x8cS\x9b\xb5\xe3\xa2\x85/\xde\x82E\xb2\x96\x10\xaf\xf5\xcf\xafb?-]\xbcn\xa9/\x91\x08\xe6\x9f\x04\xfa\xa8\xf8\xe6\xf5\x9d\x19\xaf\xa2qm\x913d\x86{\xd3\xc68P\x808^2\x18\x91x_\xe4\x11\xc2n\x14N\x88\x00\x0dZ\xbeu\xa3\xb0\x04e=\x9e\x07\x8d\x14\x174v\x15Mrz;\x01B<|\xb3\xbe \x9fs|\x92\xd5\xba\x8e\xa2\xe5\xc5\xf3\xa7\xf8{{\xbb8\xcf\xca\xb58\xfc\x8c+\x8cQ1m\x886~(h\xc1\x7fc\xeb\x84-\x06\xe3b\x17\xe8A\x8cx\xa8\xd1-\xac\xb9+9-3#\xd2\xda\x9c\xab\x171\x89M\xd0\x05\xa1\x12\xe7\xd4*\xcd\xadq(\xfa\xb2\x83\xdd\xees\xa9\\\"\x97\xe8}\xc4\x89\xbb\xf0<.Ux\n}Z\x89\x87_=\xb1\x0b\xfa\xcf\xe3t\xae\x04\x135\xf3\x82\x84\x00v\x0b1IVQ\x98\x10\x17\x84\xady\xa8^\xc0\x96\x96\xb8\xa6\xb4\xd3\xe1\x93C.\xa4\x8b\xedm\xba\x1b\xaf\x1b\x80(H\x15q\\8\xb7\x1b\xa9\x19C8\x86`\xec=;\x17\x14\xc6D\x17L\xb1f\x90s\xe3\xb6j \xcc\xe7Z\nb\xeehYO\x9bx\xdb\x8d\xc7\xc5\xa6\xdd\x9e\xd7u[\x1cva\x97\xfdnw\xf6\x0by\x96\xed\xc4\x9c\xf8k\xbbi{;\x00P T%\x1b\xfb\xaeb\xb2\"\xe1T\x00\xa5\x08P\xae\x96\xb0h\xcd5*\xf4\xee9\x9a\xf0%\x0cy\xf8\x1fcr\x06\x07\x90\xd9\xf2\x0b\xf4n\x92\xfe.[d\x95>\x1d\xc18tK\xaf\xce\xb0\x8a\x08\x1e\xad'x\x12*\x8b\x03\x9b\x1d(e\xfe\x80\xbdS\xb8\x02\x86\xf4\xfc\x9c 1f\xa1 \xb4\xfcn\x0fY\xb1\xe2F.\xe4\xb7y\xb6S\xb9\xd4\xaf\x18\xc1T\x18\xf3Z\x9d\xd5&*\x03\xf3\xda\x17L\xd4P\xbdL\x15\x8f\xc6\xc9\xa5\x90\xc3I\x89\xa3\x17\xd8\xa1\x0d_O?\xea\xd7|T0\x97\xbc\x9c\x07\xccfV\x1cBb\xe4exT\x96\x1d3H\xc5+\xa3t\n\xf6\xb95\xbcX\xc4\x9c]Hy\xc4YnH\xaf\x1f\xf8Vmp\xd2\xb8\x18\x98Y\x83\xedCy\xe6\xfa\xcd\xb2\xe9\xac\xf4\xad\xe4\x8a4\x16\xe7\x1a\"x\x02\xfec\x88:\x1d\x07\xe2qtf\x82A\xad\xc2\xb6b8\x04Z2\xb5\xe61\xdcNlR\x9c\x9f5:8D\x89LZl\xfeY\x97eg\xb03\x17\x9d\x97K\x80\xd8F\xc9\xa7\x8aM\x9c\xf9\x11 \xe4\xbf\xc6\xbd3i\xf7\x9a\x16\xbensF\x95\x1b\xd7:\x899)}Y\xb8Ap\xc3\x0d=\x861\x8a\xce8\x13'gm\xcc\x06h\xb9\xeaA\x10\x18\x8dRY\x84,)lVD\xfb\xf5\xb8\xdcJ\xa8\x07\xbc+*+\x91c\x8d\xcb\x11\xdd\xb9\xba\xf7\xecB\xa4\xa2\xc9\x89\x0d\x0eM\xb1\xa4\xec\x8a%}\xceq\xae<\x94\x04\x85K\xbe\xa6\x9b\x1c\xabu\xeb\xefM\xf3\x93\x0eF\nf\xb8\x8a\xaa\x18m;Z\xc4cL\xdb\x02:?s\x95\xa3\xa68eR\x85\xddo\xc4T\xe0f)eC\x13a|T1?)\xdf@\xbc4GP.\xa2\x9c\xeb\xec\x0c\x15=\x14\xe5n\x9b\x00U\xa8Z\xe9.b\x1c6\xf0\xc92\x1dG\xcd\x16q\xdc\x96\xfb\x08\x0fnd\xde\x0d\x16\x94\xca9R(\xe6\xf8W-\xa6{\x15{\xab\x8dN\xf7\x9a\x1b\x80\xb6g\x7fl8\"\xf2\xe3\xc1\x07?\xe4\xa2\x1d\xd7B4\x89\xbd\x94\x9c,l\x8b\xcefE\xa6\xc0\x85\xfb\xb0\xec/!t\xf1\xf5\x92s\xca,\x1f\xda\xb9A\xf1\xb3[\xbe>0i\xcd\xc0x\x8dI$S\xed*\xf2\xe6\x9a\x04\xce[\xe7\xb00&\x1e\x94!!\x84\xd3\x12(l\xbf4G&\xa7\xfa\x14]\xb6B\xc5o$W*\xa3\xa6^\xb2\xde\xf7\x99Ho\xab\x1f`=a\x95\"\xc4~\x9c\x9f\xef0\xa2+t\xe3\xb9 \xa9\xdb\xb2\x0e\xdaLJ>S\x14\xbb\xc6\xfe\x19\x94\xe3\xd2JR\x01/\xb4EE \xa9\x9b\xdc\xed\x1b\xd1K\xaa\x9bR\xe6\x9f\x87\x81\xadM\xe5\x07\x065\x86\xaf\xbb.\xd7qF\xf3\xfc\x8a\x11\x19$D\x82\xf98:\x93vz\xf7\xc2\x0f\xa7\x9c\xba\xd1\xa2\x1a\x8f\x9cT\xf6\xa6l\x86\x8c\x84B\xe7\xfc\xfe\x908\xc2\xfb;\x16\x14\xa7\x10#\xaa\x13\xd5\xd3\x9e6\xee&\x82\x84\x94|\xbb\x9b\xa3\xd8hL\xaa6rM\xd1Q\xd8\xd2\xc5Qu\x8e\xe5\xd9\xa1\xdf\xc7\xf9,\x8e\x96\xf4T\x86\x11\xbc\xfb\xa7\xa2\xac\x1c1\xdb\xc50\xd8\xed\x02g\x97bpW\xa3M\xb4iB\x1fNc]\x84\xbaz\xa4\x8dI\xeakO\xea\x1a%\xcb\x8dv\xd0\xe5\xcf\xb9\x1bK\x0b\xbb\xa3[_\xf5@\x93\x1bQMd\x01\xfc\xac\xa2\x9c\xd6\xbc.Z3\xee9t\xb2\xce\x98\x9b\xde\x01\xfa\xe0\x14\xc6\x9b\xed\xfbA8\x97\xb8\xd9\x9c\xe7\xf1\x85\xb8 |,\xd0Z\xc7\x00\x91F\xcf&\xe9\xde\xb420\xbb\x16\x02\xe5\x8f\xf9k;\x8f(\xee\xb6Ppo\xf1$\\\x07\x94-\x97'\x18\xb2\xd9\x85\xbaA\xa9/\xcb\xb0\xc2A\xe1\xed+\x9e\xccZu\x96A\xcc*\xfd\x99;d5\xd0\x92[\xc3\xbd\xafg\xef\xe2j\xf4\x85\x8a\x0b\xcd\xb4\xb6\x05%\xaa\xc3\xe7,o_\xfb\xadf\x04\x95ru\n\xe5\nL\x95U\xdf\x86\xb2\xa8\xaaO\x95B~>?\xf6\x9f\xec\xa4\xc8\xb0\x12#H\x84\xec\xd4\x9a\xca\xe1\xf0\x13\x12\xcch\x15\xfc\xf7\xd3'\xb8\xf2\xc3itU\xa5/\xbe>\xb272\x12&_&}\x00\x7f\xc81\xcd\x9f\x16\xaeS\xdds4\xc4~\x816\xc8\x06\xf0\x00\xf2\x9a I\xdf\xf9K\x12eiK)'$W\x10\xd9>;\xc0\x8a\xaf1\x1cB\xc1\xff\xb8\x80\x03\xe0\x85\x15\xb5\x05\xf6\xfb2LI\xbc\xf6\x82[v,>\xd7\xf7,J5]\xcb#C\xfdK\xe9\x83F\xf1\x873\xf9\xa8\x88\xad&\x96\x8fJ\xda\xd2\x98\xcc\x94\xec/\xec\x8d<_\xe5#l\xb7 $\xa55f\x10\x89\xdd\x1c\x0f4s&a\x1c\x05A\x1b\xfd\x90\x0c\x1d;\xa5\xcd\x05\x84\xff\xf9r\x8a\xd2\x87\xfc\xaa\x8a_\xb4\xb7,\xd4\xf4w'\x9d\xa9\xd6p\xb4\xb7s\x84\xf3\xe1$\xf5\xd7\xe8'\xda\xf5\xc4\xcf\xcf\xe9\\\x7f?\xc8/R\xa5\xaa\x1a\x8dV\x91bQm\x15FPl\x99\xe6\\ri\xf7<\n\xc5\xe4\xd9\x9dD\xfe\xb7\xee\xb2G\xe3q\xe5bD\xab}G\xec\xb9\xe5\x92L}\x16\x9b\xa5\x99\x84\x95\xbfP\xb2e\xb2\x01\xa95(\x0e\xe6\xac\x8b\\\x98\xef\xbc\x0d\x87\xa0|\xa3\x1dD\xb5Ni\x18\xe5\xe2\xe2|\xb8M\xde\x9a&\xde\xd9\x14P\xcdGU\xa2\x9f\xc8Q\x88\xea\xd1S\xd8#\xe1\x8d\x82eA\x07R~\xab\x99F\xdfDW,W\x8em\xb4\xfeF\x13\"kA>Zz\xd3\x1eV\x8eq\x90\x1a*l\xd7\xd7\xf0\x92\x89\xef\xd7\xd6\xb8\xf0C/\xbe\xae\xaf\xe2%d\x7f\xb7~$\x93d\xd0Ta\xbb\xa1F:\xeb\xef\x07\xa4\xa9\xcevc\xa5\xd8\xbb2\x94\x83\xe4\x9fm\xc8+\xd9hq\x95\xfbwWwxys\x1b\xf2\xfc\xe8\x18\x19Ee+\x90\x0b\xf7\x07i\xeb\x07.(`3\xff.\xae\xa3\xf8T\x18\x9e5\\\x03\x91\xc7\x8f\x9db`u\xca\x97F\xdc\x85V\xf8+\x9e\x16\x83\x846h\x08\xadP\x11Z\xa2#\xb4EI\xf1H\xd3\xc0\xdaM3 \xbc\xd4\x0f\xfb\x8d\xbd\xd7\xee^\xf1\x88\xbey\x9bM]\xd7nwhEZ\xa0\x05\x8d\x13\x8fP\xe9\x98\x87\xd5\xb8'A8X\xd4\x87\xd8\x12\x0f\xa5\xd96'\xdaez\xcdbQl\xf5\xb4\x9f\xeb4\x84\xba{I\xbc/\x13\xd12\xb6\xca\xc1\xc5\xed\xd213\x1a\xf1X\x85,\xbdQ\xd5'\xc4z\x1f^\x86\xd1U\x08\x82\n\x0c\x81\x0d\xdb\xa8\xc7`\x07l\x99\x12\x15a\x1d\xf2\xb8t:\x8e\xab\x05\xdac#)\xf9(\x92\xc6\xb06)\xe74a\xa0\xd3Dh\x04\xb3\x89k#\xa9\xc0\x0ef~\x10|\xe3\xa1\x96\xce\xbb}/\xb5X-\xcfkV\x9aW\xc0z\xdc\xd9\xa8\xc7Z\x84\x95U\x98\xcc\xfek\x04+\x96f\xdc\x96:^\x98$g\x10\xe3\x0d\xbc$}MP\xce\x16\x81\x11\xe9\xabwQ\x8a\x82\x92\xfc\xeeh\xe11\x8f:\xd9\x1b\xb0\xa4\x0c\xcc\x7f\xe6gUV\x13\xd6\xfa\xc9\x08\xfa\x83\x07\"c\x03<}\n{0\x1a\xc1>\x1c\xc0@\xbc\xd9\xa5o\xfa\xbbp\x00;\xe2\xd5\x0e}\xb5\xd3\x83\x03\xd8\x15\xaf\xf6\xe9\xab\x01\x1c\xc0v\x1f\x86\xb0=\xa8\x1d\x92g8>\x852\xb0\x98\xfev\x19DU!\x7f\x13\x07h\xb4;\x19<\xa4{\xd9\xee?\x1a\xc0=L\x0f\xebH\xb6L\xe5\xa5\xb0\xfe\x9f\xff\xeb\xff4PY\xf40*\xaas{A\xc91\xac_w\xb4\xea\x06\xd27\x0d\xa4_;\x10\xd0\x0df\xa0\x0c\x06\xffV;\x1c\x98:\x1c\xf0\x0e\xdb\x13O\xae\x0f}\xacC2I\x90\x08\xd1\xbd~\xa8`\xfd\x13\xc9\xd7\x0c\xa3y\xa1Wf \xe5qY\xe5}@?t\x94}\x91\xa7l+\xf3[nuS\xb1\xa8`\xb5\x1d\x89\xcb4y?\xe7#\xde\x96\x02\xa0\xd5\xef\xbdD\xab\x01\xa0\xebe\xa7\x85'\x10q0!\xf9\x08\x1dWjt\xf2\xc5\x0cs\xf2n\xb6\"\xa9\x0f\x03\x80\x97\x91\x93\x85\x17\x1fESr\x98\xda\x92\x07\xac\x1aWZ<\xb4\xd1\x98J\xdd{{\x83G\xfb\x80f\xf9OF\xb0\xb7\xbf\xd3\x7fT2\xf8Rp\xa9B\xd0v\x95\x85\xe3)\x9a\xc7\x12D\x06gj\x9d~\xa5N\xff\xcc\x85\xb0pS\xd7\xe6\xd9\xae\xbc\xd1\x9bxh\x89\xa32\x93\xbef&\x83\xe6\x99\xf41\xe5\x85v\xe1\n4C\xa8\xd7\"R]\xaa:\x90\xef\xc3\x0f\xa4\x03\x89]~X\n\xe5@jQ\xdaH\x0d\xf7@fr\\\xc3\xbdtL\x9bS\x82@\xaf\x1a\x0eL\xb7\x12\xa4\x1623\xed\x16\x13\xe3\xafl\xb3\x1d-\x91\xeaq_\x93\x83\xd2ZqV\x83\xbb\x9d\xd9*F\xec\xc06\xde\x94\xa8X\xb1#\xec\xd1B\xb1\x1a\xb5\xf8Qj\xfa\xb3\xf6\x83\xe3\x1a\x86_\xc2\xb4\xb0\x81f\x05w\x87j\xda\xadtP\x8b\x1d\xf9\xa0{.\x02X\xc1\xd4a\x036\xac\xcc\xcc\x8e\xe1|\xa8\x07\xc6\xa2\x86yj\x82\x85\xd4\xb0\xf8E\xca\xd1\xdcX\xc6\xc7\xa8d\x1b\xe4\xa7\xf5\xc2\x7faq\x9b\x9fA\xb9`\xa8\x80\x1f\x97\xcdU\xdd\x9e[\xed\x7f\xbfHB\x87\x9e\x989k&\x98x&\xe7\x18:\x06\xd9\xba\xf12u\xbd\x84\x02>\x1e}\xae\x9a\xdeJ4\xb2\xbd\x8d\x83\xa1\xab\xb7=`bv\xdd\xc0\x90\xb1\x92F\xe6\xb4\x1e\xc3\xe0\xf7\x1f\x03o\x0bC\xef\x8cD\xca\xbc\xf2\xa8v\xf4\xa3\x12\x9d\x97\xb7\x8f\xd9\xb0\x98\xe9 \xcb[\xbeJ\x15E\xb8~\xf5\xeb\xca\xf9\x16V\xa9\x8c\x1c\x9e\x01\xb6\xc1\x0e+\x94[\xbf1\xb4,x\x8f\xf9M\xeb\x86FKL\x1bFR/\xd4S\xcf\xf2v|\xa2!\xa4\xfaq\xd5\xf3Bw*\xa0(+p\xeb\xe1\x14bLy\xd2\x92\x04\xa3\x9cR\xb7\xba\x99)e?/^\x17\x176\x035y\x1f\xcfq\xae\xcf\xcb\xac\xd1\xae#\n#\x04J\xd9T\xca9\x13\xa2j\xda\xf0\x92\xc9}n\x8b\x91\xc6^\x98\xcc\xa2x\xc9\x8c1tn1\x18\x17\xfc\x9d\xa8\xd7\xc2r\nT\xaeY\xe9E/T\x85\xdd\xbcV\xbd\x1fG!\xb5\xe1y3\xb90\x0bi[qY\x1c3\x06\x0e`\xcc\x06\x85\xd0\x857\xb9\x14qj\x96Y\x90\xfa\xab\x80@\xea/Ib\x8cw/\x06\xb2\xc8\xc2\xcb\xdcG%\x1f]\xf1\x86\xa7\xec*L\xadx\x1aWW\x93O[<\xe2\x80apl\xe1}\xe0+\x86;\xb6_ k.\xecc\xe1 \xf8\x9a\xa8\x1bEW\xb6Z\\\xe9\xf1\xa6\xb0\x01\xd58\xdd\xd1\x8e%\xc4\xd1\xd9H\xcak\xae\xaf\xc1\xc1\xc8\x82]\x98\x8a)\xe8kk\x14\xdafZ\xa9|\\\xe8\xad\x97t\x0154\xd5\xa4P\x1e\xb5\x89E\xf2\x89J\x06O\xc5\xbb\x91\\\xc3\x9cgd\x16d\xc9Bj\x80\xfd=\x12%\xc2\xe4\x1e\x0d\xb6W1\xc9\x1d\xf5\xb2&\xbd\xa8\x8e\x9d\x12\xbe\x18e<\xd3\x8fL\x1a\xcd\x81\xfcW)g\x9a\x96\x19\xf3r\xdaZ^\x14\xcaDz\x9c\\\x15\xfb\xa7~\x1e\x9e\x89\xeb+\xdd\xa4hLH\xabLB)\xb1`Z\xc4\xba\xaf\x84 \x10\xe7e\xe5\x9e\xe3\xc8\x0b\x02\xba\x0d\x8bE\x9eF!\x81\xab\x05 \xe1*\xcf\xa8\xb45\x82\x9e\xa5\xe9?U\x89f\x89:n\xd8]\x92\xfaAP\xdajj\x979d4\xbe\x00\x85\xcc\xe6W\xf2\xaa\xb9\xd2;;b\xdcJ\xb4adw\x99@\xab\x93.Q\x90\xdc\xe9\xa9\xdc~\xc5\x97\xac\x18yy0\xa5\xfd\xd6$(T\x00\\|m\x080c\xec\xb6*\xc9\xea\xbb,{\x9a\xd5\x9d\x99(\x9b\xc8\x07\x0c\x85J\xe9\x10J\xf37\xd2m;qa+V\x10I/\x1e\xb5>r\xecXY#<_\xbe\xd0\x89sc\x04\xb1\xeaYP\x7f\xa9R\x0b\xdb\xdc\xe7\x84\xc8\x10\xc5[\x04\x01p\x16B\xb8\xc4\xae`\x0c&\x95\x81\xe9U\xb8,[n\xd4\x15M\x16\xfc/\xe9\x96\xb9-f@\\\xdd\x06=#$Z\xe6i\x90\xf93\x95Q\xac\xb6\xa6l\xb1z{\x0c\x96{=\xe4D\x969\x90\xab\xc4]!.\xb7b\xb5%\x9eZ\x97\x89\x17sH\xcaBQ\x14\x1f{\x93E\xb9\xa2\x94\xe2|\x12\x93\x12.\xb4K\x8b+\xf0*bDSKU\xb9\x0din3\xda\x04@Lgz\xef\xde\x06\x8c\xb6\x9e\x15DK\x97\x10\xbd\xd9\x1c \x18\x04\x10\xd2qxV\xa9|c\xf3\xb4\xb8\x18\xc9X]+\xb7\xa4h\x84\xdb.\x97\x16\x9e\x0e\xfc\xfd3\x9a\x940`\xc7iZ93\xcd\xf5\xf5\xab\x96\xbc\xf6^\xdb\x98X\x16\x95\x18\x84\xa9/\xf0\xe2\xee\xde=\xae\xad\xd8\xc6\xc4\x0c>\x86\xb6\x1e\xe6\x8e\x95x#\xd4\x9c\x1d\xb9\xd5\x1c\xcb\xfe7\xbb\x0f\x06\x8eM\x87\xc4\x91\xd6K\x12\x7f\x1e\xc2\x10\x8bv>\xd7\xa2\xd0\x05\xdf\xc5Tr.x.\xcf\xe6:P\x13\xa4N\x9aH\x0b\xe8\xee+\xe8#\xe7\xcc\x8f\xaf\x95\xaf\xf4\xaeY\x13\x17x\x08@\xad\x07\xd6$\ng\xfe<\xab\xc9$.\x985\xbdl\xd1\xe4\xc1\xb5\xf6\x82\x8c\x0cA1\x02\x96\xd6\x15&^n>V\x9cN\xec\xcec\"]\xe5\xc6\x15\xc9\xba~\xe8\xe6a\x97\x87\\\x8c\x84\xc55\xd4B\xd1\xdd8\xa12\xa5h J\xa6\xb9*k\xc4s\x06\xa60\xa4\x87>B\x86\xb1\x14\xe8\xa7U\xacR,_\xaa\xe0m\x11\xcfn\xfc\xe8\xa1\xe3b:\xd4\xf1\x19\xcbl\xdd@U]\x9d\x02\x9cr>\xde8=\xcb\x99y\xfaG\xb9\n\x92=\x82\xfd<\x86t{\xfb\xb1#|\\-\xcf\x82\x0e\xd8\x9dN\xe8\x14\x1a\xa8\x9d}U\xae\x97\xf4(\xc2i\xc2\xb6f!K\x98\x8bE\xb9\xc4a\xd3\x06 \x0fq\xef\x82\xe5@\x87\xfe\xef\xef\xa2\x8dY(\xbc5\xf1\xec,\xdc\x06\x1e\xc3\xcd\xe32\xcb\xd8z\x8d4\x14\x1f\xe5\x1b\xc3\x9a\x15b\x8f\xc2\xe7\xe0\xa9E\x9c\x8a\xea\xa1\xba7\xe9\x93\xd9\xe8\nU\xde z\xf4\x07\xdd\xed\xf2\xcd\xe7\x12'&r\xe8\xb2\xad\xeb\x91\xbeTM:\xe7\xe7$}s\x15\x8aj\xcfI2\x89\xfdU\x1a)\xf6\xd3\x99\xe9\x83\xd7\xdeR\x0dh\xe2\x99\xea\x9e^//\xa2 iq2i\xd7\x98\x91`~4\xc76Q\xf1\x14\xe5D\xb9\x06\x86\x18\xc8\xec\xc4\x11\xccN!~kC\x0d\xeaW\x1a\x9b\xb6\x99\x87M\xc4\xc2\x14j\x14?\xf2\xd2k\x9b@\xee\xb2\xfa]\x19\x81L\xaa\x0e\x0f0\x82\xdb\x7fY3\x91\xed{r ]/g\xffS\xb9\x95\xcf\xdc\x15}\x1d\xff\x1b\xda\x0fUUs\xa4w\x03\xa3\xdc\xe9mq\x94\x9ek\x9a,xt\xfb\xe4\xc4n<8\xd3B!Fj\x85\x0b$w\xc4\xd8\x10O\xb7\x1a\xe18>C\x07'\xe1H\x91\xa1<\"\xbe\xa8\xacH\xd8\x00g\xb9\x8fv\xfc>\x1f\xfa\xd6\x16W\xf6\xb1\xf0\x03\xe5\x14r\x9f>\x19\xb4d\xc8\xd5\x9b\xf4\x83\x0b\xd24\xdaVX\xa1\xe7\xa3\x88\x0b\xd6\xf99I^E\xd3\x0c\x0dN\xd4\xa5D>G\x16+Yt!/N\xc8\xf7\xde28BnE\x93\x16\x7f]D\x88\x0e\xed\xbdAO\x83q\xc8\xfc\xb0\x80\x0dq\xb7\x18\x04\x1c@\x0cC\xcd\"\x0bSS5\\p\xd1\xa9n`\xb5\xa8\xaa'\x0f|-#\x91\xe3\xaf\x9bx3\xf2M\xe4M+ \xacjID\xce3\xb1\xd0\xc8q|\x88\x03I\xba!\xb9zG\x89@x\x1c\xc7v\xa1IB*\xad\x1c\x97\x1bz\x916\x11\x84\x9d\x87\x06q\x88\x8e\"\xb6\xcbs\xf0\xc3I\x90M\xc9\x10\xc6\xa1=\xe8\xed8g\x12\x12\xfcC\x07\xd3\x1f\x0c\x9c3\x85\xb0-W\x81?\xf1S,\xdf\x1b<\xc0P\x06{\x83\x87\xfc\xdfG\xec\xdf\x9d\xde\x1dM\xe2N7S\x10y\xcc[\x99t\xdf\xbd\xf9\xea\xabo\x8e\xcf\x8f\xde\xbc~\xf1\xf2\xabS|\xf5\xfe\xed\xf3\xc3w\xf2\xab\xda\x9d6\xe8\xed\xfdN;-[M\xbd\xaa\xf6\xd2@\x165\x07\xf3\xf5\x8a\x0c!\xab\x9e\x10+\xef\x9a\x02d\x08v\xcf-\xb6\xa0c\xff\xfdF\xd5\xe2\x02(\x9a?\xd2M\xa3\xf9<\xa87\x0ej\x18\x91&\xabJ>\xa2\xd4\xd4uy12\xfd\xbaYL\xb2K\xce\x19\xe4\xac*\xaf\xa8Y\xff\xfc#63K^\x81\x1cod\xad\x89n\xaeU\xad\n|\x1eA!2\x12\x8dJ\x0ef%l\xec\xef\xa9\x0c\xc8\x97\xc2F^\xa7\x85b'\xa7\xca~\xc8\xe2:\x94\xd1\x8c}U\x1d\x04\xdf\xbca\x83\xae@\xa3i\xd8H\x17\xa1\x18\xac\xa0\xa9\x16\x8b\xde\x19\xba\x9br\x87\x94\x1a\x10\xf9\x1c\x18\xdeQy\xa1\x8f\xb7\">\xdd\xd1\xd6%\xb9N\x90\x91&\xdc\xa3\xc2\xc2\x1d\\\xbc\xc3\xe47C\x16\x14w\x1c\x9e\x9d\x95t.\xa22\xdeZ\x1e\ny\x05%\x0c\x0e\xe9\xd8f]\xa0\x91\x86T\x1d\xc3\xd0\xa7\xb1O\xff\xd2\xe2O\xa3haT}7~\xb9\xd1\x01\xcc \x9a&\x18\xde4\n))\xda2\x1ew\xb7\x1c\x9d:4\xbf\x1cJyK\x96\x87\x98\x90\xfc\xeezE8o\x0c\x1d\xb0\xc4\xed\xaa\x977\xbae\xba\xafn\x18\xec\x86\x9b\xf8\x91~\x0f\xef\xedj\xb7\xf0#\x95\x05\xcbP\x18.\x1a\x0e\xed\xc1\xbecg\x94\xf2\xec;\xb6\xe5\xa7$\xf6\xd2(\xa6\xe8\xd3t\x94\xa7r\xf0\xb2\x1b\xa7F;\xa8\xbb\xba.h&\x8c \xa6#\xa8\xe2EH>\xa6t\x13i\x12\x91\xd3\xdd\x80m\xe3b\xbc\xcc\x87\xbd\x19\xb0%\xf5\x84\n?N\x1a\x1fh\xc1\xba\xdb3\x93\xc0=\xe9\xea\xa3\xc4\x94\xfb$i\xca%\xe8W\x14\x9dEf-\x17\xd7.B}\x04\xe5\xd02N\x81\x98\x06\xae\xf7\x18\x85\xbd\x07;\xbb;\xbc\x7fV\x1f;\xa2\xc8\x82\xce\xdf\xf4-\xf3\xc2L\\\xecd@\xcb2\xd8\xe6\xcdt\xe88\xb7\xf9\xa0\x9e<\x81~\xcf\x81\x0e\xec\xef\xed\xed\xec\xdf\xcd\xa6\xaf\x1c\xa9\xfc\xe0\x18\xf4\x8dg\xea\xc0\xe9\xceI*\x0e\xf9\xe6[Y\xa4\xf3\xeaIjd\xf1H\x03\x8b\x87<\xd1E@L\x0c^l\x13n{\xe4\xdcz'\xf6w\xf4\xd7#\nOV\xa10(\xa4\xb5\x03\xdb+\x92.\xa2z\x034\xc9\x8dl\x0b\xa3\xcd\x0b\x9a:\xf6\xcf0\xc0\xc5\xd8\xfa\x97\x7f\xc9\x87\x83\xaf\xa21\xa5Ng\x9b\xcd\x9b\xae\xf6\x0eJ\xbb\xfd\x1d&\xf5\x0evv\xf9\xbfLM:\xd8ej\xd2\xc1^\xaf\"\x0e\xf7\x1f9B\x14o\xd3Y#C\xad\xc3G\x99E\xf6\xc7\xa1\xddwlK\xdc\xc6\xbf\xf3\xe6\x96s\x06#\xb0~\xc1L\x8d\x1d\xba\xcf\xb7F`\x8d\xd9E\x0b\xfcrf1\x1d\xc1N\xcf\xe1VK\xa5\xe8\xbd\xa2\xa1\xba\xb0\xdd\x1c\xf2y\x9b\x16t\xe89\x80\x01L;`\x9d\x95\x9c\xe3\xb6\xda\xe9\x07d0n\x85\xf6\xee\x80%G\n\xed\xdd\x1d\xc7\x1cx\x8d\x8f\xe4\x01\x9d\xa2^\xd7\x1c\xda\x8f\x1e9\xb65\xf5\xd7Tl\xb0<\xad\x19\xccF\x81\x86\x1fT\n\xd5\x9b\xcc\xaeW\x00\xa0\xd5\xe4%]\xbf\x89\xd0\xd4\xb3\xe6\xe8\xaa\x81'\xb1\xdeV\x813\xe9~\x95\xea\x10\xd3\x95\x9a]\x8e\x13\xc0\x96#\xe6\xb1\xc7\x05I)|\xd1j\xe9\x99\xda(\xca\xd4of\x9b\xb7\xb9\xf5e\x86\xab\x92X\xeb\xc8\x0b\xff\x94\xc2$\n\xd7$N\x81\xa3y\x1a\xc1*\xf6\x97>\x06+\xc4)l*\xd25m\xf7\x81\xe1\xfc\xe9\xef\xe8%\xe8~O\xe5_\xaa\"t\xff\x01\x17\xa1\xfb\xff\xaaE\xe8\x87\x86\x83]}\xcf\x01\xbb\xab\x03,\x05x\xcf\xb1\xad\x97\xc7\xe7oO\xde\xbc{\xa3\x1ez\x9e\xaa\x9e*\x17\xab\xda\xab\n\x15U\xba/F\x8c>?\xf9\xe1>/b9FxXV&\x1e\xa7\xdd\x17\x8f!F\x8b\xb3) HJ\xe4\xac7\xe3h\x1c\x9fir\xa6\n.W\x8d\xed\xaa\xa7\xa3%c\xe5rP\xc7v\xa6b\xbc\xbb\xdc\xca\x1d\xefF<\x05\xdd\xd1\x80\x1b\xd8\x0d\xad\xe7B\xb9\x98{\xe3\x8c3\xb4'\xc6\xec\x93hzVX\xc0\x8c$}\xac\xcf\xb2\x19\xdf\x16\xf1\xf7\x0c\x14\xc5\x80\xf75\x1c\x1b=\x92\xff5(\x8f\xf6\xf4\xa4b_wEG\x99\xc2\xbeco\xb5\xa3\x16\xb78\xd99\x80<.5T\xe9\x00\x82\xa8\xfaz\xc2\xcc7\xab\x10Gsv\xcfaJ\xa2\x8c\x19Z{\x08\x8b{\xf7`\"\xfc\xb44\x1f>\x96\xa3@\xe1j\xe0w\x94,\xe0Z\xb0d!\xff.\xb2'\xd8\xda\xa7OEk\xfa\x05\x9a\xdcv\x81vM<\x12\xb7\xe3\xb3~\xb1\x1c\xba\xe1\x90\x01|\x99\x1c\xe7\xf7\x8ev\xaf\xc0\xe0\x12\xc2\x9a\x18\\\xce\nS.#f\x96\xec)&\x10Km\xcb\xa2\xfb6\xb7\xfa\xbf\xedT*H\xc5pmWg\x9c@ \xb6I\xb5\xdb8\x95\x92^\xe2\xdf\xf4\x94\xff\x15\xe9)\x0d\xe4j\xb0\xa3\xfa\x1dD-8\x18\xc9j7?\xb1j\xcf\xd19I\xdf\x8a\x8aof\xf5A\x92s\x90pZF\xf7\x94\x0b\x11n\xabqt\x06C\x93i\xdf$\n\x934\xce&i\xc4r\xe3\x83\xe4\xb7_.=(\xff-\x1d\xbb\xc3\xf2g\x9c\x08\x1c@\x06\x8aG\xf3\x86\xe0\xef\xdfzK\xcaV\xc7\x9b\xf5\x9e\x1f\x9d\xc2w\x07\xfdH\xf3\x03\xdc\x15\xda\x97\x9e\xe3\xf2\x93h\x8f\x1f\xad(\x0e\x08\xcf\x94\xdd]\xc7\xc5\xfdLe\x03\x177\xed\xa4,\"\x04\xecUI\xb9\xc0\xf2\x82'\xe2~wQq\xcc8:==\xc9XN\xbe\xaa\x19\xc7\xd1\xe9\xe9)eH\x9f\x93I\xe0\xc5\x1e\x9da\xd5E\xe3\xe8\xf4\xf4\x03\x15\xafx\x13ji\xe0\x930=!\x93T_\xfe\xfc\xcd\xab\xdaB6\x17c\xf1\xbb\xe8\x92\x84\xfa\xc1?\xf7R\x8fy\x11\x92\xf8eJ\x96\xfa6^\xf8\x81a\xe4\x7f~\xf7\xea\x9b\xc3 8\x8a\x82\x80L\xf4S\xa7U\x9a\xca_D\xf1\x92k\xbb\xf5\x15N \xfd\xdeX\xe5\x15\x99\xfa\x9e~\x86\xaf\xfc%\xa1b0.n\xf5\xcb\xd7\xde\x92L_GS\xf2\xca[iJ\xa3\xa9a\xd5\xdfz>]\xb1\x9f3\x92\x18\xd6\xe5m\x90\xcd}\xcd|\xd9{\xc3pN?|\xf5\x0d\x1eC\xfa6O?|\xf5:[^\x90\xd8X\xfc\xd6K\x17\xa7\xc4\x80\x0b\xb4<\xf2C\xc3\x80O?|U\x87H\xa7\x1f\xbe\xca\xfdM\x0d5\xa2,\x9e\x10\x16z\xdeP\x83n\x94\xd3\x05!\xa9\x1e\xaa\xef\xc8\xc7\xf4]\xecM.\x8fL[%\xafa(\x8e\xb2I\x0e\xbb\xbc\xe4\x86\xa5\x0b\xf7m\x0cY\xc98\xf05<\x81\xa9\x904a\xdd\xe9\xe8\xf8\xd4k\x17\xe60\x82\xe9x\xad\x18\x9d\xd2g #X\x8c\xe7\x9a\x92sd\xe7u%\x170\x82sJ\xf1\xcfu\xa7\x11\xf0c\x18\xdd\x89\xed\x0bz\xf6~\xfa\x04\x9e}\xe1\xc2\xcc\x85\x95\xe3\xc2\xc58(\xde\x05,\x07s2\x9e\x9f\xb1\xe8\xbaK\x8d/\x03R\xd6kz\xa2\xc7\x0e\\\x8c\xaf\x99\x1a\x99~~\xedB<\xbe>+\xf4\x99\xd0\x96Z7*}\xb4>9\xf4\xbd\xe1~_\xd5\x05e\x82\x954In\xfd\x9d\x07\xfff\xf9\xf4_\x8e\xe5\x93\x99\xd7pl+\x0b\x93I\xb4\xa2\xd2L\xa22o\x1a\xa7m \xdf\x84f\x01\xfcq|\xc6\xae\x00\xfa\x0f\x1c\xdbG\xef\x8f\xbf\x9b\xf5{\x15I~\x1c\x9f\x8d\xd33\xc5\x89^;\x11\x93~\xbf\x16\xf5\xf8\xa2\xea\xc4\x93\xbb5\xc4j\xbfMe\xb7^\xbe\xa1T\xa6;\x11lV\xe9-c\xae\xf6U\xab\xa8\x19\xbe\xae\xdc\xed\x04\x8ckS\xde\xae\xd8[U\xc3\xb0`M\xab\xaf\xa7\x9ct\xa8\xd6\x91k\xf6~W\x1d\xca5\x17,\xd5^\xe7\xfc\xfd\xae\xd3M\x88\xb2e\x97\xbc\xad=\xc7V\xbe:\xe7,\xb1*\xd5^\xf0\xd6T\xf8\\\xf1\xf7*\x01\xfc\x88\x1cf\xae\x8fW\x8eE\x91\x0c{B\x12\xc5\x91\xf0\x18\x8b\xf8\xfd[\xb9\xe8\x10F`\xf1\x8fp\x87\xcf\xecS\xa5\xd77\xf5\xea\xdb\x9f0\x92\xde\x08\xce\xbb\xb3r\x01\xa5\x84[[\xf5\xaa]\xb3\x7f\x9d\xa0\x8e\xc7\xdd\x98$Q\xb0&\xb6\xba\xa6\xf2CX ZY\xe6\x19\xd1\xdd\xcb\xaf\x01\x93\x15\x99 a9\xab\xdd\xc3\xea\x93\xdao\\xc\x96v5\xd9\xfaA\xb2\x0394zl\xf1\xa58!?1\x86\x163_\x8a\xac8\x0b\x12\xdao\x1cY*\xab\x8a\xe55\x1e\xb27*\xf6\xbdl\x9c\xf3\xba\x9aX\x05\xa4s\xc4\xde\xc2\x98\xaf\xe5\xc9\xe4w\xf1,p)\x0e\xdb\xc1)\xa8\x89\xb4J\x7f\xbej\xa2s \xae\xb4\xd2\xee\xb9Q B\xcb\x14\xc7\x01\xf9Y\xe7\xe1\xbc\xcf'\xfa\x1a\xcb\xe6\xa4U\xa0J\x94i\xf7|\xcd\xe4\xc9>.e\xf7\x1c\x00\xe9F\x97\x18\x94e\xe6\xf9\x9ahc\xea\x93\xe0\xc5\x03\xdf\x1b\xcd\xd5'\xbc:E\xb8\xe6\xda3\xac=\x8d\x96\x9e\xdf\x94 \xc4\xb8\x81\xe5\xc7c\xc1.>}b19)\xec0\xdc\xd8[\xc6E\xd1\xbfF\x18\xa4t\x8b)\xf9=d=Fh\xedoc\x0e\xadY\x97\x84)\x89m~\x81\xe0\xd91\x8a\xe6\x94\xc5\x9du\xc9G?\xb5\xb9P\xbf\xd5sX\x1d\x8c\xb4\xb3\xe2\xe6\xff\x070\xb1?\xda\x16\xdfw\xdb\x93\x85\xe7\x870\xb9\x9e\x04\xc4b\xa1\xea\xe9:\xbe\xb4)\x06\x1f\x087\xd0\xd0\x85\xc4\x85 -N\xb0d\x08\x13;6S\x03P\xf7e#Xp\xfc[\x19\x9f\x1f\x9f\xc4\xc4\x94f[<75\xf4\x08\xc2B\x19\x1d=v \xb3\xc3q\xd4\xe9\xe8\"\xc8\x8a\x87n\x12\x1e\xe1&p\xd4p\xad\x9a\xde\xde6\xf6\xb6)\xfe\xea\xb1QF\xac\x1c\xe8\x7ff\xaba \x9c\"\x1c\xa7\xf2\n|\xb9\xd8)\\\x83Rm\xd0I\xa0\x12\xddS\xad\xb7~\xedJ\x9d4\xc2n-\x05S\xab\xc2\x85t\xcf1S\xb4\x8d?X\x184\x84\x01\xe9\x9e_\xd1\x02\xe2t\xcf\xd7,F\x1d\xe9\x9e',{\x04\xe1+l\x13\x86y\xa4{>\xe1\xc6\x94\xf4\xa0xe\x13\xd4]\xd4\x8e\xfcu\xbb\x91\xbb\x86\xc8g X\x9a\xb0{\xae\x0d\x05\x0f\x18\xec5\x9f\x14\xde\x90\xf39\x19\x8e\xdf\xfac\x17\x03M\xb2\x00\xf6bc\x15\x87\x1fL\xd0\x88\xe7\x82\xeefd\x1e\xa6\xe0\xa7 f\xaa\xa9\xa4\xfc \x9c_\xa2%\xd5A[\xe6 $!\xbd\xf9,<\xbf\xd2zGV\xaaM\x87\xba\x84\x82\xf2c\xe0\xca\xc5\xd3\x8ec\x11\xe6\xa1\xf4<~\x8d\x07L\x1f\xcf\xe6\x13\xfe\xfb.\xd9\x80\x93\"\xf3\xed\xadO~g\x88y\xc39\xfa\x87\x0c\xfd\xfb\x14\xbfC\x17\xb6L\xe3m7N>\xbe\xfa\x89\xb4X\xbf\x86\xb5\xbb1\xce\xbf:o\x85\xc9(V\xfc\x12\xf7\xfaq\xed\x86\x9d\xf2\xa8I\xc7.\x88Ma\xb9`\x9d/,\xc7\xc5t\x14\xae\x1c\xd5\xbaU\x14\xa3\xd4F4a\xed\xe6\x98\"\xfeT\x88K-\xd0O\xca\xf1\xb4\xcb_\xe6\x7f\xdd\xb8\xec\x107O\x92\xa9\xf9r\xce\x0e\xff\x92O^\xf6&\x91U\x97\xe5l\xe5\xebJ\xe5\x85\\\x991\x8a\xc5\x80\x9c\xb2-\x8f=\xd8\xddw\xecc\xd9\x86V\x1d\x1f [\xc4\xfc\x16\xa2\xdcO\xb6\x88uu\xac\x0b\x97-\xac\x8f\xa8\x0c5\xd2\x8a\xa9\xec\xca\x19\xf7\x06\x15\xb0\xca\xb5F\xe5\xd4\x83\x94\x92s\xe9\x07\xd9\x18z\x16\xf3?\x87\nL&R\x08_\x0e\xe3<\xf0\xa8\xa7\x96a*\xdfW|\x1e\x98\xb8>\x14\x12Jy\x9d\xcb\xfb\x08\xd1\xa5\xce.\x03\xca\xd6\x89L\x85\x90\x8f\xd3\x88C\x8e\x12.\xcd\xa4\xa0\xc6x\x1a\x8f\xab\xd8%\xb8\xc2\"];?Q\xf0z\xf45\xc6[\xc8\xb3\xf33&\x05KNx\x89\x8c\xcd\xe7]*s\xfe\xd4\xe6\x828\xc5\x93\xed\x18\x97\x13\x7ff\x94\x83\xe6\xc1\xe9Q\x8d-\x1b\x9e8.\x04v\xd0\xfd\n:\x10t\xbf\xc5\xff\xbf\x80\x7f\x86\xadK\x15!\xdf\n\xa6\xe8\xb8\xf41\xb3&\xb5eZ\xc1\xad\xdd\x1f8\xb6\xfcJD\xa3\xcb\x0d\xddY\xc7\xa7\xa5.%z\xa3\xce\x8d\x82\xa7i\x91\x05\x83\xf4\x93\x8e2\x81\xa4z\xea\xb9\xb9\xb4\xef\xb0\xe8\x9bzD\xab\xc0\xa9\x18\xae\x8dl\xd3\xd6\xa5S;j\\\xef\xa6a\xf3Q]\xd9\xf9\xe6\xc8\xd7\xed\x98'\x93i\xc0S\x05\x92\xf6%\xd3\xd4\x0fv\x1fJV\xf0\x95\xbe\x8f\xbb\xcc\xc0\xb9\x8b;\xc8~#\xa3E\xdd\xb4\xbc h\x9a\x92\xcc\xaa\xeaO=F\xb5L\xf6BxsQ\xaf\xbe\xf1y\x15\xb3\xca&j/\xa9\n::\xd6\xdc'\xcaO\xa4\xb7\x9b\x93\x1f\x8a\xe8\x86\x14\n\xf4YSZN\x8f\x91\xf6zV\xb4\xb0\x82\x11D\x9dN3\x07\x98\xd4\xa4p\x10O\xc8(/#\x81tov:n\xa1-\xa3\x18\x81$\xb2\xfd\x08\x01;\xa6\xacE\"\x98\xf4\xb1w\xc6(\xdf\xf6vFKb;l\xe2\n\x8dB3p4\x97\x9a\xd2\xd6\xbb1o\xf9\xa8\x8bG\x97oG\xddu\xdb\x83%\xf6&\x8d{\xf7\xae\x10\xdd\x8c\xc5\xfe\x06X\xbc9nUW\xbd\xd8vP\xa3\xcd\xd3\x88\xb7P\xbf\x02>[\x81\xd8\xf6\xebV@\"A\xf8\xf3V\x97\x83L\xe9\xa5N\x9dgp)\xdd\x1c\xa0\xda^\n \xc84<S l\xc4\xe5\xb6\xa6m\xef\x97m\xe2\x81\x8d\x9fIN\xb38Z\xdaQ\x83\xad\x0c;7\x07F\x90\xe8ma[[\xd6\x17\x01T\xb6\x8a\xb4\xe3\xaa\x86Y\xe8\xcf\xd5\xf7z~A\x02\x9c\x9e\xd8\xa0g\xbf\x06\xa6\x90\x1f\xb9MP\x85:\x9f\x00\xf10\x0f\x80\xb0\xba\x00\xe2\xd1\x9cj.\x0el\x83\xee3]\x1b\xa9\x1d\xd5\xdczk\xe9\xfa\x9d\xa4\xa9\x90\xc8\xa5\x9e\xcbV=\x00\"-u\xe2\xf4\xa6\xa2.\xe4~\x0e\xbb\xfb\xd2\xba\xc5v\xdc}\x0b\x1d\x88\xbb'5wJ3?\xf4\x82\xe0\xba\xad\xba=\xe3\xb7\xc4~\x1e\xc1\x9aJ\xc2\xe2\x0f\x83\xae=4\xddjk\x98\xdd\xca}q(\xab&\x8d\x96\xd7\xfc3\x8fRGT\x84\x95/R\xea\xf8\xab\xca2\xcb\x8f\xce\x9a\x8c\x8al\x94\xad\xf8\xc2\xe3\xe2 u6\x1a\x96\xf9\xae\xf2\x0b\xa2n\xc5\x7fD\x84?\xd8S\xb0\xf1\xb4\x06\x0f\xd3\xb85\x0e\xd2C0\xd5g\xe0\x86<\xd1\x97\xce\x9eV\xdcB\x87]\x82\x86\xed\xfc\xee\x7fX\\\xc68v\x88\x97$\xcd\xd7\xd2m\xe0\x19\xda\x83\xbd\x01\x8f=\xb7\xc3\xff\xdd-\xc7\xaa\xdb{\xc0\xff\xe5\xb1\xea\xf6x\xac\xba\xfd\x1e\xff\x97\x7f\xbf\xcf\xbf\xdf\xe7\xb1\xed\xf6\xf9\xf7\xfb\xfb\xfc_\xde\xce>og\x9f\xb7\xf3\x80\xb7\xf3\xa0\xcf\xff\xe5\xed=\xe0\xed=\xe0\xed=\xe0\xed=\xe0\xed=\xe0\xed=\xe0\xed=x\xa4\x8d\x9d\xc7|j\xdb\xc0\xa2\x11\x8b*\xbeNQ\x1ep\x13\x8f\xe3#\x1e\xae\xb2J\x10\xe5J\xd1\x94\xa0\x17\xb0\x82xH\x06\xd1z`\x8b\xd9\xb5\xf71\x9eJ\x1e\x16#\x8f\x1dR!\x8fr\xa3M\x08\x9a3\xb4\xdc\xe4r|\xe6\xe2\x9c\xf3\xccPy\xa4\x9c\x8c\xf9\xe9\xc6\xf0\x142\xb3v\x80g\xb9\xeb\x14\x99\xa52\x8c\xa2\xe3Sj\xd2\xef\xf7w\xfb\xfd\xbe\xc3r\xf7\x8a;\x91\x13/\x9c\xf3K\x11R\x8e-\xbe\xf6\x02\x7f\n\x93hJ`E'c2\xab\xe4w\xd4\x04\x9e\xb0H\x9dp\x80\xb1~0B,\x8b\xe4\xd9\x01\xdb&\xb0=b\xe5\x0e<}\n\xfd\x1e\xca\x14\x7f\x84~o\xb0\x0b\x1d\x16\xffS\x97|\xcc\xb4'C\x9eSP\xcd\x9c\xbb\xe1\x8ek\xc22CT -\xa52`D\xec]\xb5\xc7\x03\x16;\xa3\x1b{W\\\x10\x8d\num\x1dnP\xcc\xf1\x18\x8e\x84\xf0\x14\xbc\xc7\x0edl]x\x08Z2\xf6:\x9d3\x07\xe3D\xdc\x87\x9eF\x8a\xb0\x8e\xa2,L\x0b\xe7\xac\x90\xcc\xbd\xd4_\x13U|\xe0\xc1\xf8\"x\xaa\x1ar\xf1\xc7\x8e\xe0\xe9\xd3\xa7#\xe8;\xdc\x9b\xb53B\xc3#zb2\x07\xd7\x90\xbdz\xac\xac\xd3\xef\xa7\x84\xdb\x948\x17 \xda\x9a6aQ\xb3n\x1b\x16\xb5\x9a6\xa2\x8eD\x97\xfa\xd0\xad\x00\xe2\x88o\xe7\x84r\x93\x1d\xea\xe6\xe1DM\x99/\xe2[\x10\xd6\x18\x97\xad \xac!\x15\x92(\xec\x84E\x0b%\xac\xf1g\x11\x07\x93dBW\xc5\x0b'\x8b(\xdeH2\xa9\xe5\x06\xf9b`\xd4z+\xf4\x96\xc4\xaaK\xec\xf9\xd9\xc3\xbf\xf0\xe7\x1b\x8d\xbd\xcd\xd0Y\x9b\x16\xfe\xf7\x05G\x1e\xf8\xe1\xe5\xdd\x8f\x9d\xb7\xfa\xc5G\x1f\x05\xd3\xbb\x1f\xfc\xef0\xf0\x99\xff\x91\xdc\xfd\xc8\xd3\xf4\xf7\x18z\x14\xa6\x93(\xf8\x12\xbb\x956MG/\x9a\xff\x82;\x96v\x95\xf8\xbf\x90/7 \xde\xfa\x17\x9c\x83\x9fz\x81?I6\x9aB\x9b\x19\xf8\xbf\x03\x16mLvZ\xc1\x1e\xc9\xfd\"&\xb3/\x0b\xf8d\xe9\x05\xc1F\xa3o3x\xd1\xea\x97\x06=}}\xb9\x19\xe2\xb7\x1a\xbeh\xf6\x8b\x8f?\xbb\xb8\xfb\xc1g\xbf\x07\xd5O\xb2\xd5\x17\x18\xf9\xea\x8eF\x1e\xda\xfb;\x8em-\xbdt\xb2\xb0\\\xe8\xd7\xd7\x96\xc62\xce\xebi\x15\x9dz\x88\x88GH\x02i\xddE\xa2/+\x1aP\xcf\x90\xe7_\x0b\xc7\xc4\x9c\xdaB2\x9b\xf7\xe1@\xd8\xd81\xcf\xa8!\x9a\xb7q}n\xe8\x8c\xc9\x99P\xd8\xc7\x95X\x1f\x10n\x9a\xd5\x9f\x03\x93\xeb\x14-\x17\x06\xb7\x00g\xecV\xdd.\xa0\x15D\xa3&\x88f%\x88\xc62D\xe3\x96\x10\x95\x04\x88\x18C\x95\xf9\x08T\xf6\x86\x832rX\xe8\xa5;\x03hB\xbc\xf8\xdf\xd0\xf3\xce\xa0\xb9\n\xfcT\x8b\x9c\x15\xcbI3\x98\xc4EFh\xf7wUc=\x10z\x8f\xeakv\xb9\x867eU\x8d\x885A\xe3\x14\xcb\xbb\xb8\x98X\x92\x89mYt\x8e\x1a\xa4is\x1d\x02\x92%\x9a\xd0\x01\xe8\x03\x01@\xd9\xd7f$\\\x8bx\x12\x9d\xdc\xceMM\x86\"\x7f\xbb\xe5\xcb\xa9\xd3\x8a\xa8x8:\xfdgkf\xc2\x9f\xb80\xc1p\xd3\x01\x0b\x8b_\xe7u\xbe`\xa1;\xfdy\x18\xc5\xe4\xc8\xc3`}\x96o\xc1\x90\x1ey\xd0\xa1e\xcb,H\xfd\xc0\x0f\xb1hY*\xcaB\x1f\xaf\xda\x0f\xc0\xcaJ\x05I\xeaO.\xaf\xe9\xfbk\xfe\xde<\x84i\xbd\xd3\xfb\xba\xbc\x9a\xb4\xb3\xdd\xc1\xa3\xddG\xfb\x0f\x06\x8f\xf6\xd0\x8e\xff\xe9\xd3\xa7u\x0d`4\xd9b\xbf\xa7\xdd\x04\x83\x9c\xbb\xb0\x80\x0eXs\x93\x85\x00\xaa\xfaX\xf0\xaa\xb8\xdc\x02\xbb\xcb\xbc\xe6\xed\xd0F\xfe`\x1fl\xfd\xf0C\xe2X.,t\xd7\xd0\xf9\x83\x0e\xec\xd7\x0c\x17y\xc0\xce-\xdb\x9e`(1\xd4*C\x07\x92q\xef,\xc7\xf0\xa70E\xad\xe1\x8aG3\xe1*\xa4\xa9+>p\x1c\x17\xb6\xd0h\xbf\xa4\xe0\xc2\xc4\x1f\xbd\xb3\xfc\xe2-v\xebY\x9f\xd2\x83S\x0f0\xd0\x00\x04\xf0\xa4\xaa\xe4\xde\x86\xc1c\x08:\x1dG^\x99B\xa3\x16\xa0\x15\xaf\x8d?FZ\xe5w\xe9\xb9q\xdc\xea\xe098\x9e\x141\x15\xf1\xf2\x9f9\x00\xad\xe8\x07\x0c\x12}\x87g\x89\x90\xc0\xc6b\xc5O\\X\xe5\xad\x8e`\xed8\x8f\x1d\xb8\xee\x06^\x92\xbe\xc4\xb6\xf1>\x83\xf7s\xef\x9e\\\xa4\xc6\xf4\x16\x0f\xdf\x8cSv%S\x84\xf5\xde\x9a\xb1\x06(\xc9\xc4,<\x9f>\x01_1\x96\x93G]>:\xe8bp\xb0\x86\x03X\xf1\xb2\x9e\x0bk\xfc\xa42\x02\xc5,\x99\xb9*X=A\x1a\x85\n\xb3\xe7H\x10\xb3[Q\xb6\xf2\x99\xa9\x92+8\x80\xf1\x19\x0c\x05\x0d\xcau\xb1\xaa\x14\xa8\xd7iK,\x82\x81\xe5\xba\x05Su+>@b\xaa\xc2\x82\xa9\x8a+LU\xa8c\xaa\xe2M\xd9\x80z\xe5|f\x87\xf6\xe0a_U3\xfb\xbchg0P\x8b\"^\xb4\xd7\x7fHIL^&\xc6\x80A\xf1\xf5\\\x1a.f\xda=?'\xc9\xabh\x9a\x05\x18G\x1e\x86\x9a\xa5\x98\x92\x99\x97\x05\xe9P\xbd\x9f\xff\xa7\xea/q\xd2\x8e\xfd.\xff\xca\x85\xa8\xf8i\xa46|L\xd5\xbe'\xd1r\x15\x85\x94\x80\xe8F\x06\x98{B\xf8.}\xe3]GYJ\x17\x8fw\xd8\xb4Y\x8a H\xa8\"_Ny\xb7_S}\x8eW\xe2\x82U@\xbcr\x0b\xc2\x03\xc7\xcb\xe1\xea\x9d*\x9aLl\xca\xf9=\xd4\xa1 \x16\xed\xf5th\xc2\x8a*\xc8\x95\xe5E;j\x91\x97\x17\xed\xabEI^\xf4@>\xda\xf0\xd5\xfe\x9e\x1e\x15'\xbf?*\xcej/\x18\xf3\x91\x91:\xc1\x9f\xd2\xde\x1c\x9b\x1dN\xe8\x88\xe3bA\xa6\x16\xd8\xa4{~\x8e\xce\xe7\xe7\xe7\xc8&\xf4\xdc\x02\x1f\x1d\x9b8\x0e?\xadX\xf5\xfcxTE\x0c\x1d\x98h[\x9e\xd4\x96\x0b)\x1fFTz;\xae\xce\xe5\x92\\\x0f\xc1\x8aI8%\xb1\xe6\xa6\x94\xe3]#3\xb0\x96\xf3c\xac\xe2he\x88?\x03\"UFwN\xd2#\xb1\x85\xcduYd\xf0dE&,!P\x14\xd74\x1c\xb3\xd0\x1fq\xdc\xa2.\xdd\x13\xc4\xb6\x8e\xa20\xf5\xfc\x90T\x1cn\xe4'buO\xa2\xab\xbaZ\x99h1\xa8\xab\xe5\xb1Z\x18\xb57\xb10\x9c\xa9\xb9\xf2\x84U~\x17\xad.\xbc\xb8\xa9\xf2\x8cU~\xe6%\x9c\xde5}\x10\xb0\x0f\xa2\x90r\xeb\x1f\xbc\xc0\x9fzi\x14?\xf3\xa6s\xd2\xf4)&t\xe8\x06\x917\xf5\xc3\xf9i\xea\xa5Y\xa2F\xb2\x97\x9f\x05z/S~\x89\xdd\x9f7\xb0\xf7\x94GZP\x04\xb1\xad%I\x12oN\x90+\xb24J\x01(6A\"P\x9d;T\xf2\xdcQ\xb6o\xf2\x94\xa4\xcf$\xf0\x92\xe4\xb5\xb7$C\xb0\x92+o>'\xf1v\xe6[\xda\xfa7.L\xe0\xc0\xd8\xcf\xc4\xc5$l\x0eO\xc6\xe6\x82\xc5\xe1c!_\xb4b|\xaa\xfe[\xcc\xed\xddv\x9c~8\x8b\x8c#\xbc\x93\x1e\xf8\xc0\xb7'\xf9\xee\xf8=\xba3t\xe2`\xf8\xb7\x99\xe7\x07d\xfa\xaf\x12\x94\x8b\xdd\xd6\xbd\xa5~\x1a\x10c\x0f\xd6\x0b\x04\"\xa4\x11\xd0a\xc1\xe1\xdb\x97\x80l\x88Oi{\xd7r\xcc\x83\xf08rKkq\x84\xae\x95_dE\xcc\xe4\x013A\x9b\x18>\xf1,\xbd\x8f\xdf\xfa\xd3t1\x04\xeb\xe1\xc3\xde\xeacM{\xacz<\xf7\xc3o\xc8,\x1d\x82\xe5ei]\xffE\xfd\x13\x7f\xbeh\xf9AJ>\xa6\x87\x81?\x0f\x87`M\xd0\xdf_\xbfDP9\xdf\xf3\xb7\xff\n\xb01&\xcb(%\x85\xc7n#NZ+\xcb\xe5\xa4v\x8a\x88\xb9\xb5B\xe5_\x92MD,\x8c\x06\xcc\x9cq\xac6\xf7\x11\x89\x1eL\x15\xb2\xa6\nA\xbes\xaa:\x0dE\xea8+\x85H\xba\xb1\x8b&sNIb\xa9\x89(m\x1bl\x8a\x8a\x90;\x15\x8f\xa5\x81\xd3\xd5\xe6Am\xd3\xa2d\xdc\xa7\xcf\xff\xd6\xdf\x91\xad\x96\xa9p\xf2\xc8\xb1\xadrGV\xb3\xf4g\xe6\xd4\xa5J\xbe\x92\x86\x14\xe06\x17o\x83\x87{\x1a\xc1J\x02\x93^\x1ely\x01\x12\xabb\x9f\xa8^\x8c\xb3\xcd0\x8ba\xf5U\xeb\xce\xc2\xabk\x8b\na\x94\\\xb3qWvmy$C\\\x1d\xa7;\xdb\x10b2\x10*\xed3\x89\x8c\x02U\xbd\x8d($\xbaas\x0e\xb6\xca\"=b\x0ey\x0f\xf7\xaa\xfew\xbd}\xa7;\x93\xfd\xe8\xdb\xb4\xd8r\x12\xaa\x01\xeb\xe7Mb\xf0\x88\xbb!>\xe2n\x86|V\x83G\x0ft\x9b\xf4\xf4zy\x11\x05m\x9an\xb2\xf34\xd8\xe1\xaa;\x98\xdby\x1a\xbc\xad\x0d\xce\xd6\x03\xb5q>\xfeG}\xa7\xfb\xf5\xf1\xf7\xe5\xb2 /S>\xe1\xa9\xe5\xd4\x1eXj\xb9G\xeaxXn\xb9=\xf55\xcf-\xa7\xbc\x9d\xe6HR~\xbf\xe6\xefU4\xbd\xe6#T=\xe4\xe6\xfc\xbd:F\x9eV\xae\x82\xed\xec\xb5\x1a\xfe\x92\xa5\x94\x1b\xe83\xcaU\xb0\xed#\x9b\xa8\x1a\xfb\xee\x94\x81E\x95\xd6\x8e\xf9\x08\xd5\xea\x87|U\xd5N\xdf\xb0\xf7j\xf5\x9f\xf0u\xc5\x0d\xf5\x12Fp\xa8\xe6\x90{ #x\xa3\xbe|\x85i\xe1\x94\x97\xefP\x1ed\x18].9\xc2\x92\xbf\x9c\xbey]~\xff\x16FpD\x8f\xf2\xa3n\x82\xaaW\x7fv]\xaeqB\x05G\xdb:_\xf8\xd3) U\x11\xfc5+M\xa3\xb7\xb1\xbf\xf4\x99\xadv\xb9\xc67\xe8\x00\xa6\xcd\xb9_\xae\xf8\x9c\x92{\xdbJp\xf4\xdb1\x99\xfbI\x1a_\xab\xcd\xfd\"\xd7\xaa\xa4\xb9|\xc1J\xa3\xd5\xb6\xa1\xc2{M\x12\xf3r\x8dg\xa6\xf8\x01\xef\xca\xf5~F\x88\xfe\x955V.\xfa\x1eF\xb0\xf53F\x0e\xffY\xca\x08\xa0\xfc\xdd\x9d\xf9\xe1\xf4h\xe1\x07\xd3\xf2\xd7\xdf\x02\x8f\xf18\xa9w\x8d\xe3G\xdf\x03\xd8\x1a\xc1\xa9\xfd\xd2\xfe\xfb\x0d7\x0f\xd33\x91\xed\xe2\xb1@\xd1\xf0K\xd9\xe4\xac^0\xe0\xda\xac\x07\xc6J7N\xd7\xd3\x16V\xd9\xf2\x1bG\xad{\xe3\xc8\xd1\x0f\x0c\x8c\x00H\xa4\xf8\xd2~\xaf\xbf\x9dE\xd7\xd5) HJ\xe0\xfd\x98\x9c\xb9t\x92\xbc=\x1e8,\xc5;\x8a\xf7\xf4\xe7Kl\xa6\x12 \xf9\x06\x86\xf0\xb2\xbcd\x1fj\xb5\x9e \xd9\xd0\xff\xc2|\x0dO\xedw\x05\"\x98\x0d\xd8 K\xa5\x9bV\"|\x96\xbb\xff\x1aF\xf0\x8c\x8e\x98o\x8b\x12\xd6v\xc5\x91]\x02b\x0dBi\x1aI+\x00h\xd5R)\n\xf3\xbb\xba\x19|\xd5\x82\xd5+5<\x12\x8b\xf4\x95\xfd\"_\xc0%\x8b\xf2\x0f#\xb8\xe2\x19\x8d\xe8;Z\xe2\xdb\xbf\xe0\x9d\xdb\x01\xc6c\xc8 \x10f\xe4\xa3\xfd\x9d\xb0\xbc\x93\xe3\x93\xb31a\xb7\xa6\xe2\xf7\x88\xe7\xa8\xc0E\x0bM\x1b\xa1hr\x08\x1f\xed\x1e&\xb6\xd0a6\x0c\x8b\x0e?}b\xd8w\xe2\xc2G\xbb\x8fyv)\x7fR\xf4K\x87\xffm\x0e\x0d\xfa\xed\xcb*_\x0bU`\xfe\xa1\xcd]\xe3R\xeb8\x91;\x93\x87\xcca\xfc\x9a'\x82#th>K}\xc2\xa21\x8a|\xdf\x11<\x05\xff\xb1\x03_\xd9)\x83R<\xf61n\x00\x19\x87\xba\x10\x96b\x05\xeb&\xf0\xe7\xd6\xdb\xe9\x9b\xd2](.|\xcaRY\x19{\xde\xc2\xda\x05\x02!j\xb0\xbc\xa3[>E\xa6\x94\x19\x04\xd8[6#\xd9\x85\x0b'\xff\xf3\x17\xf1[\x94p\xecY\xf8 ]\xbc\xf4\x0c\x0b\xd5k\xd9\xf2\x14\xff\xd2f\x8d\xfc\x19s\xdc\xbd\xd0\xe0\xb5\xa0S\xf9\x90\x08\x1f\xd2\x0b\x16bY\x8f\xa7\xc2n\xe6\xd2\xae\xb1_\x11\x80\n\xab\x8dW\xb6\xca\xa7O\xca\x8e\xe2x[\x8d$sS\x07\x8e\xbf5\xae\xb8\x1a\xee\xe2\x95}\xc1\x9c\xa0c\x1e\xc1 \xe2\x11\x0c\xba\xa5\xdc\x8fl\xf4\x94\xd9b) qe(e;\xc9\x7f%,T#\x0bDa\xc6\x9b\xb8n\xfc\xdfm<~N\xc2\xd8\xf8_a\xe0\xa1\x170\x04>\xa9\x88OJ\x84\xee(&\x95=v\xc4\x9a\xe0f\xcb\xc4\xacB\x8e\xc1\xef\xc5jElJ\xbf\x8cI\xcd>\x8c\xca\xb3*\xea=\xc3\xa5\xf5l\xfb]]\x14,\xc4P\xba\x9ddB_\x0d\x99n1\x96\xb4\x88\x0f\"\xe5(\xaeDN\x17W^+\x9d\xcfX\xaf\xe43\xd6\x93\xbc:\xdd\xca\x14\x89\x94\xd3\x01\xc9\x19\xa9\xac4\xca=\x04\x9b\xf4E)K\xc4\xffOr\xd3\x87\x98\xb4\xe8/.\x15Q`\x04_a\xc4\xa1\xbd]\x07\xff:\xc6\xff\xff\x8d\xbe\xdb\xe7\xaf\xfe\x8c\x15z\x0f\xd9_\xdf\xf1\xf4\x97[\xa1\xfd\xf0!\x02\xd5\xa3\xb3\xb7t\xe2\x82\xe5\xd2\x8f\x91\xbcL\xbb\xf5\x17\xcd|\xbc\x1f\xecEIuE\xc7\x9b\xd9\x19&B\xca0\x11R\xc6T:\xcfTh3\x84\x1dJ\\\x8bl\x17\x90o\xe6\xbfRaa\xe1%/9\xfa\xbb~r\x14\x85\x13/=]\xc5\xc4\x9b\xa2\x90#\xf8/\x17\xcd\xce]n\n\xe623_\x97\x87rt\xd1x\xc8\x95\xe4(W\xac\xcb;o\xee\xca\x99\xfd\xb9\x9d\x91\xe5Z\xf4\x18H\x19\x85\xf8k\xb1E\xd2\xf4\xb1\x03\x0b\xfb\xaf\xe34-'\xbd-HP\x8a\xd9J\x16\xdd$\x8dbB\xa95o\x85\xa4E3!mfm\x93t\x1c*\xedP\x08\x9e\x96`\xc7\xf7w5\xa0Q\x14\xb7d\x15}\xfb9=\xd3:#4^<\x80\xe7tO\x0d\xd9?\xa3j\xea]\x85\xfc^\x92\xeb\x17\xcd]\xa19\xe7\xd7h\xceY\x9b\xd3\xc1\x03\xc6\x01W(\x13\x94\xc3\xed\xf8!<\xd7\xdb\xd3\xd1\x9e\x9e#\x177\x92\xe3\xbb\xd72\xf1YBNI\x9a\x92\xb8AJ\xfb^\x17I\xb2\xd2\x92\xbf\\\x05M\xf6\x05\xdf\x97\xb3\xd7\x01\x94\xf5\xba\xaen\xa1\x0d:O\xa6\x9ao\x91\xca\xaej\xe2F\x99\xf0S\x1b\x93\x96\xfd\xc1>e\x9cN\xedb\xab\xfa\xd5\xafj\x8a}\x92\x0c\xe1\x0f\xe5\ns\x92\xbe\xb9\n\xc5\xf7\xcfI2\x89\xfdUJ\xd1\xe7/u\x15_{K\xda\xd8\xdf\xea\xea\xb0m\x90\x0c\xe1\xbb\x12\x1cQ\xc1R\x06\xa6\xbd\x85\x07l\x8d\x88/\x8e\xc1wjxL!\xa6\x8d\xc3,\x08\xce0\xfe\xcd[[p\x9d\xd6\xdfo\xf8\x9b*\xec\xbd\x8a\x11\x8f\xf2 [\\\x85b:.X\x7f9}\xf3Z\xe3@\xce\xf5EM\xfb\xae\xc4\xfap\x86-=\xe3Y\xe4\x1f\xebb7P\x81\x82sd\xc5a\xef\xebSx\xf3<\xaf\x9c\x1d\xea\x9f\xb9`\x9f\xdb\x95\x94?\x9c\xc1\xffZ6\xe6\x9e\xf3j6i\xc3\x8c\x8b\xbe\xb4\xba!\x16\x1a\x08\xf9\xcc\x8au\xa6\xe3\xd2~\x89c \x03\xc0\x91\x84\x8e\x9dN\xc3\x85\xb7\xdc`\xe9\xa8\xaaz(\xa1\x95\xa4B\x18\xbfFV<\xb4\x07\xfb\x8e\xacZp\xe1u\xa9\x1eK\xc2\xf2f\x86\xd9\xe4\xde\x15\x84\x1b\xff~\xe5\xa5\x0b\x17,\xfa\x0f\xb7S\x81\xc0\xe6J\xc3\x1c\x07\xb6z\xad4\xff\xd2\x0d\xd6\x9ec[K\x92z\xba\xd0\xbb\x1a\xe5m\xa4\xd7\x9a\x8b`\xa4\x8e\xaa\xf3\xf4\xaav\xebI\xa1\xe4\xf3\x93\xe3\x8f) \x13\x9f\xca&\x9f>\xd5\x13D!\xf8\xd4R\xd7 \xa5\x9a\xa8]o\xa5\x9eK\xec\\\xddH\xd6$L\xf9p\xa20\xb1\xa9\xc0\xaf\xec\xc7rW\xf5<\x0e\xe0Q\x9c\xa2\xf7\x91I\xdaC\xb5\x9c\xbe\x90>\xfe\x10\xac7\x16t\xa0\xd3\xf1\xaa\xbc\xa4x\xae\x86j\xb0Z\xf1\xe8\xb4wu\xb0\x0b\x94\x1cR\xd5\x91}}\xfc\xbd68\xf9\xeb\xe3\xe3\xe7C\xd8\xeaWKf^\x92~M\xae[\x9c=\xa0u\xe9\xd0\xa9\xbb\xb85$s$e\x86Fr\x99u\x8a\xde\x14o\xd1\xcd\xc2\x90C\x81e\x01\xc0\xe51J\xe3y\xbd\xa44\xa0\x17\x06{\xac\xbcz\xe1\xb9b\x1d\xd7\xd4\x9d\xa9\\\x93x\xf4\x8b)x\xfcq|\xd6\xad\xe6\xce\xd7\x84p\x9b\x93\xf4[\xe2]n\x02\xf9[\x01dK\x1f\xe3\xa5\xa8M\x8c\x11\xab\xe5\xe73\xc0q\xd5\x06\x1cQ\xf8\"&\xe4\x97\xc6d\x82P4>\xa1\xc7F\xd0\xa5\xc8\x8d\xe6\x146?\xa68\x98\xe8\xef\x19rD\xed\x0c\xab[\xd3\xe4\xca\xbd\x93\x08\x19\xa4'\xc6\xfb\xa6\xe4G\xe6\x89\n\x05]\xac\xcd\xd4\x16\xb2\xc0\xba\xe5\xb5\xc2\x83\xbc\xbaB9\xf7\x90\xb9\xfc2\x94\x02\x84\xf6\x1eug,\xa1J\xef1x\x05\xf30y\xec@\x92g.\xa7\xe7\x867\x9e\xa0\x96\x04\xe5{\xe4*2=O%\x19\x89l\x06\xd0\x87\xfb\x06\x08\xb1\x08\xef~\xc2RY\xc9\x07\x90If\xb5\xb0*\x92\x9c\xd8\xbe}\xa6\xab\xca\xed'_\xe2\xbd\xea \x1a\xb1\x1b:!oV\xcf]+b\\\xbfD\x06\xaf\xfcp\x1a]Q\x88\x16\xbf\ns\x17\x95m\x86\x83\x9aB\x9b\xb5@\x05\x80\xb1\xce+\xa0\x9d\xa8\x8f\x81v\xad1\x1b)|\x8bM\x9e\xe1\x88\xf3Di\x8d\x17 \xe6\xbc7\xb9\x94\xaa!!\xcd\xf9\xe3\xc5\x10\xb9kQ\xa3\xbd\x92\xcdS8\x97\xedn\xf4\x08\xe0\xc0\xdf\x1b-\"\xfa\xbd\x07\x8emy\xc9u8y\xb9\x91\xfd\x86\xf8\x94%GA\x1dL\xab\xef\xda\xd9}<\xba[\xbb\x8f\x9d^\xaf\xc6\x08+\xf9\x0c#\xac\xaa1\x90Y\x12.\xf73\xc4q\xf51\xa7U1\x9fV0\x94\xb6\xb2J\x95}\xbd5D\xd4F\x8c\xa1T\xd6G\x12\xba\x15S\xf9\xe7\xde=4\xa3+\x07v.\x14#\x84eCe\x11\xd9\x12\x92\x82\x97@.Ml\xa9\xe1\x18\xf44\xb0\x02\xa0!h\x17\x05e1+w\xe6\xb0\xc0\x0f\xe1\xef7\xd5\xbb_m\xca\x1b\xf3\xde\xb5\xf9\"R\xd1\xe8\x05o I\x82\xcb\x0d6\xba3\xbbb\x12\x00\xd28XF2\x188\x0e\x1d\xc0\xf8\x8c\xdf\xc5(Yf\x91l\xdf\x86:\x10}f\x8a*W\xc2\xc9\x88\x0c\x0d\xa3V[(\x95Y%\x96\x0f5\x95\x1ceF\x10\xc2\x90\xe5\xc0 \xdb\xf0\x17h]\xb0\xd5wL\xfa\xf6\xc9\x82L.\x87\xd2uB\xabM\xdb\x8aN\xecT\"\xe2}.\x9d\xd8\xfdlKD\xc3!\x14s\x1bUVg\xb3\x81\xdd\x8e\xdc\x08\xc5\x1bZ*\x15\x1d\xb6\xa20M\xf6l\xbb\x06\xdb\xd3==\x97\xb8S\xb1\xf2b2\xfbN_\xb5\xf2bl\xdc\x8e\xfa:\xe1\xd5u\xe9\x89\xe9{\xb5\xf9\x19\x7f\xaf\x0e'\xe0\xcd\xab8\xba\xc2Li%+\xe2r\x85\x85T\xe1\x857I\xa3X\xb1\x85\x9a\xb2\nA\x14\xea\x1bXW\xe3@\\7\xca\xf0mn\xc4\xe7Za\x19\x8d\x87b\x12\x9aD\xfc\xa5\xb7\x1aB\xd4]z+\xbdp?\x8b\xe2co\xb2\xa0u\xf8O}\xbdI\x94\x85):\x1e\xd3\x1f\xfa:i\x84\x04\x90\xd6\xe2?\xf5\xf5\xa20\xb8\x1e\x82&\xe7Y\xb5zn\x9c=\x04\xbf[\xe3\xd3\xf66\x8bI\xa9n\xe9E\xb5~ \x03\x86\xa0\x01\x8e\xbc\xc2C\x98V+\xf8 \xfau\xe5U\xbcn\xf9\x8df\x90q\xb4\xa2\xc7j2\x04\x8d\xf7\x1c\x1b\xd2Q\xe0%\xc9\x10f\xa6r\x8e\x93C\xd0\xac\x13\xab\xf1\xca\xff\xe8\x87C\xd0\xc0\xfe\xf9\x9bWC\xc8\xaa\xef\xd7$N\xfc(\x1c\xc2\xa4Zv~\x9e\xe05\xd6\x10\xd6e\xe4\xd4S\xc8V\xa99\xea\x89\x8e\xacQ3\xf4\x12\x7f~/\x94V\xe9y\xaa\nM\xe2\x02\xb0\x81\xb2\xf5T\x0e\x96\xa5\x13M\xaf\xa2C\xae\xb6~\x1bE\x81\x9a\x8e\x14g\xd1\x9dEY\\W\x8bR\xbd\xfb?\xdc\xef\xdc\x9f\xeb\\{gFA\xc8\xb6,\xe8@\xea\x94\x82\xbd\xff\xe1\xde}K>\x8f\xaa\x0d\x06\xdas\x0d/|i\x1df\x85\x86\x7fN\xa20e\xb9\xb9H\xfe&c7\x88\xb5=\xact\x0b\x05\xd2\xb2\xa4\xd8\x93f\xb3a\x19\xefV\x91\xdb\x99l\xe7c\xc3)\x1b\x88\x9c?]7\x8e\x85\x18\x87\x86\x93\xc4\xe9\xc4$a\xde\x1fb\xc6\x97\xe4\xfamLf\xfeGi\xce\x1c(a\x05(\xf1F@\x996\x03\x85\x0d\xa7\n\x96\x0cK\xf3\xb1U+x50Md\x98j\xa8 ;\xe8(l\x13\x05\xb6\xe5\x05(\xe97\xec \x95\xb1\xd7\x14\xe3b\x84o\xd4M\x17^z\x82\x88\x99\x08d\x17\x8e\x9c\xb05b\n0\xdbW\xa8'm\x87\xbe\x9f\xa0\x9a\x08\x89\xf1a8=a\xf8\xfc5\xb9\xa6\x1dd\xd0\x01{kB\xe7\xcf,yP\xb9C\xff\xc2\xe4\xf2\xf8\xeb\x00,\x0b\x860\xb3\xf1O\x87\x8a2\xf7Qg\x1b\xa2\xe1\x10S\x05M\x9cztYK\xe8\xe2V#g\xacy\xd4\x0c\xd5\x89V\xcc\x90\xdd\x0c\xa1hf\x87b\x08U\x83\x17\xbaV\xe8\x9a\x8b\xa4`j\x13\x8c\x8c\x81\x1d\x96+\xa3\xc6\x7f\xea\x82\xe7\xb8\xb0\xe8\xc6$ ^Bl\xaf~\x0e\xd7&,\xe34\x83\x0eVj@\xfc\n\xa4\x8b\xa3)\x11\x06;u\xf6@\xa5\xad\x81\xee[\xca\xee(\xbd\xacl\x10\xba(\xdetJa\xe0\x87\xf3w\x91\x1d\x88\x89\xdej \xf9F\x96z\x95\xf7\xb2\xf4\xfa\x0e\xc7\xbcp!Q\x04\x8c*\xfb\x96\xb3^u\xa7\x98xP3J\xf1\xa9dM\xa0\xb9x\x10D#(c\x92.\xc9:\xe2\xd1\nS\x17@\x90\xe3\x91z\xdfX\xa6\x0c\xc8O~\x91\x01\xeb\"p S\x01\x9b]q\xb1U\x10\xa6\xda\x0d\xc3|\x19\xa6\xd1\xb7~\xba\xf8Z\xac\xf6\xcb0%q\xe8\x05CX+\xc7,\xe3m\x1b\xf5&B\x87G+\\s\xd7\xc3\xbaA\xe4\xfcp=\xf3/\xf4\xe4M\x00 \x02\x00z\x92Z1\x10/\xf0\xf3\x8b\xf1j\xa1\xbd\xaf\xd31\xdb\xa1M%\xaf\x86y\x0b\xc3\xc1\xae\xd0\xa0Pl\xad (\x07\x12\xac\xaa\xdf\xad\xa2\x95)\xf3\xb5\xc0=\xdc\xbd<\x12|\x15^P\xa7p \xc9\x15~_1B\xaa\xd5\xbfi\x95T\xb2\xc2\x08\x0d\x0f?}\x82\xd8\xb6\x06{h\xcb%\xd16\xdbq5\xf3\xe4w\x1cOx8\x90(\nN\xfd_\x880>V`B\x0f\xb7z\xb3\xa9\x0c\x934\x97^yZAS\xa6o-\xf6\nH\x96\xc6\x86\xebQ\x01\xda\xd2\x98\xb9\xd1kXP/\xb4\xeb\xf8\xf4 2\xfa6\x9f/3:\xce\xff\x1c\xb1\x8cp\xa1\xa0b0\xa2g\xa7\xc6\x02\xb9\xca\xe7P\xce\xa2\xc4\x83\x0fU\x80\xd0\xa7\xc2\xcf\xb7\x84\xc1m\x90\x1cd\xd8m\x82\xe8\xa0Cv\x11\xa8P\x07\x0e\xd0\xe2<\xe8\xf0\xbeb\x92\x05zp\xa6\x8b\x98T\x00\xda\xe6\xc0\x80\xcf\x84V|'\xd0\x8a\x19\xb4tG\x8cx\xda\x03\xac\xe2\xa5\x01z\x98U\xe5\xc0*\xc8\x0c:o\xf8L\xa8\xf9w\x025?\x87\x1a\xe3&\xaa\xb6\x03\xb0)\xe0*\x86O\xd5\x16\x0c\xe7\xdag\xc4\x0fk>\xd7\xfa\x05\x1f\x15?f${\x1f^\xd7\n\xb3\xe5\x05\x89\xe57\x05Ty\x17\xa4\xfb\x87?\xf0\x91\xd1wE\xfe\xf4\x99\xcd8V\xcb\xca\x93\x87y\xd0\x81 \x9dp\x0f\xc5`\xc7\x05\x8d\xc5\n\x9dqM8\xd65\x8a\x9bR\x93CLd\x93\xe8\xa1R\x96\xd0\x89\xc6\x1f\x01d+\x8bkfOq\x0dO\xf2$<\x8f\xe1\xba\xd3q`\n\x9d\x11\xa4\xf6\x8a\x9e\xc9\xe3\xeb3\x17\xd68\x97\x95\x0b\xd7\x0e_\xbd\xea\x0808\xa6\x99C\x98\xb3,\xa5\x06rC\x87?o\"bK\x17\xdd\xc0\xe7\x9c\xbb\xab\xa1\\\xd8\x1c\xbb\xe8\xec\x920\x8d}\x92\xe8\x81!\x9e\x1c(\x17\x0c([\xf6\x12Fp\x8e\xa9\xe9m\xc7\xe9N\xa3\x90<.\x01f\xc9\x0c,%\xd8\\t:f\xe8\x88\x87B\xa9y$\xc6\x01\x98\x01$\x1e:\x89\xabb|\xe6\x91\x88\x07\x0d:lifWhZ\xbbF\x03fN.\xae\xc6\xbd3\x87\"\x9e\x98kO\xcc\xb4\x1e\xac\x06[B\x86+\xb8\x91K[\xac \x01>\x1a\x92\x91\xc9\xcfi\x11+\xba\x0eCb\xdb\xda\xe9[naG\xc2n\xdd\xce\xd8HN\xe1@\xec~\xb8\xf2\xd3\x05\\\x92\xeb\x04\xfenAG\xdcg\xd3\x176qx\x9a[\x17P\xd9d\xddX0\x84S\x17>\xb65?3J\"\xd3R\xc1\x0d\xa5\xb8\x96\xa5\xf2\x1a\xadn\x1b\xeb\x8f@\xad\x8d3\xf7\xe1\xbaw\x8f\xff\xca\x1d\x8b\xabg\xa5\xf5/\xff\x92\x07\n\xd1\x9f\xd3f9)\x97\xf2\x80\xc5\xcdEg\xc3\x18\xcd\x9b\xd3\xb1\xafZ\x80\x1b-\xb2\x89\xc6\xdc\xfa\x0e S\x1e+\xdb\x08me|=\x1a[#k\x08\xd6\xa8g\xc0`k\x88\xc5\x83j\xb8\xa7\x1b\xa3\xc6\xc0\xfa\x03\xc5\xc9\xcaE\xc0\xfd\xf1hxv\x7f\xde$\x9aK\x0d\x91qzV\xed\xb7^\xa6\x0c\xef\x06(=\x9c\xb6 (\xa3\x01-\x1en\x02\x14\x06\x0e\xdb\xea\xb2\xcd\x9c\x8e{\xe8\xe8Ma\xc5\xfe\xee\x9f\xa1\x8dD\x92]0.\xc0\x1e\xd0#Z~\xd1w\x1c \x9a\xf6\xa8\xf7i4p\xee\x1e\xa0\x05\xbe\xea\xf7\xce\xdd\xdc\x80\x0d\x9c\xba\x9bn_\xaf\x07\x18R\x12Y\xb1\xe4\xc7\xa2\x8b\x8b\x98\x95^\\h\x83~z\xd3iL\x92\x84\xd5a\xbf\xb5\xd5b\xc2{\x89\x89\xbe\xa38\xf5'\x01\xe1u\xf0\xb7\xb6Z\xe2Oy%\xfaK[%\x9b\xfa\x11\xabB\x7f\xe9\xaa\\`\xf1\x85\xb6\xc8KX\xfb\xf4\x87\xb6\xc2\xd4g\xe5S__\x1c\xf1b}\xcf\xfe\x9c\x15\xfbsmq\x10M.\x7f\xce\xa2\x94\x8f!\xffS[9\x9a^\xb3j\xd1\xb4\x12P\x05+\xb0\xa5\xd3/\xdcE\x96\xa6Q\xc8*\xe0O]\xa5\x89\x17\xae=\xb6\xb8\xec\xa7\xbe\xd2*\xf5yS\xfc\xb7\xb6\x9a\xcfgE\x7fh+D|i\xe9\x0f}\x85\x80\x97kc\xc6N\xa2`\x1eG\xd9J\xd4\xc1?t\x15\xa7^\xca\x90\x91\xfe0U\x08\xfc$\xcd+\xd1?\xb4\x15\xa7\xac\xcaT[H\xd8p\xa7D;\xdc)I=?Hx\x15\xfc\xad\xad6c\x90\x9d\xce\xb4P\x9d\xfa^\x101\x9cb?\xf5\x95\xd6\xbc\xc6Z[\xcc\xc7\xa9\x1f&\x87\x82v\xfed\x89\x85d\xa9/\xbc S^~A\xb4 \x9a\xf9$\x98\xa2\xe9`l[\xe2\x0f}\xc5\xb9\x8cf\xc5\x9f\x86\xcaYLD\xc5,\xd6\"\xd3,\x8a\xd0+\x93V\xc2\x9f\xfaJ\xf1\x92W\x89\xb5s\\\xf4\xb1x\xd1\xd7\x16\x0eX\xe1@[\xb8\xc3\nw\xb4\x85\xbb\xacpW[\xb8\xc7\n\xf7\xb4\x85\xfb\xacp_[\x88V\x1f\xb4\x98x\xda\xf5\xa0\xef9P\xd8Om\xa5b\x97-\x8c{l\xc1[\xd1\xb7\x90.\x19\xca\xd1\x1f\xba\n\x8c\xc4j \xac?\x8b1\\&-\xc7\x9f\xdaJK\xb6%\xfc\xa5v?\xf8\xe1*c8\x87\xbf\xf4U\x12^A\xbb+//\x18 //\xb4p\xbc$\xd7s\xc2P\x95\xfd\xd4U\n\xbc\x0bN!\xf0\x97\xb6\n\x99\x93\x90\xf5\xc4~j+1h\x05Zp\x05~x\xc9\x8b\xc3K]\x85\xa5\xe7\xb3\x81\xd2\x1f\xfa\n+^\xae]\xe8\xa5\x17_\xf2\xf2X\xdf\x01 3V\x81\x84\x99\xa9\x82\x9frR\"\xfe\xd0W\xe4t[\xe7w\xc8+p\xec\xc5_\xba*\xa1\xc7Ha\xe8iIa\x181\xbfaV\x87\xff\xa1\xab\xc8\x04F\xac\xc6\xc5Z]%\xb6\xbc\xfa\xe3*Z\xa5\xc5F\x12\x7f\x18*\n\xba\x17\x19i^\x94\xa5\x02\xa7\xd9O]%\xd6\x97\xb6\x93\x95\x17{l\x05\xf0\x97\xb6\x8a?I\x05]\xe5\xbf\xb5\xd5D\x15Sq4\xcf9F\xf1\x87\xae\xe2\xcfX\xe3g]Q\xcc&\x12kg\x123(\xc4Z\x08\xc4\xd9\x05\xe3\x99\xe8\x0f]\x056.\xed\x80\x12o\xc9\xfa\xa5?\xb4\x15\n\xd41#NB&\xf9r\xf2\xdf\xfaj\x81\xc0/\xf6S[i\xe9\x05\x0c\xc5X\nN]\x15L\xa3\xc4\xea\xe0Om\xa5\x95\xc7\x07\xb4\xf2\xf4\xa3I\xe3(d$\x95\xfd\xd4W\xba\xe6\x0c<\xfe\xd2V\xc9\x18\xeb\x9ddZ\xe6;\xc9\x96K/\xbe\xe6U\xf0\xb7\xbe\x1a_\x07\xfd~IY\x1c\x95\xd8\xb6R\xe6\xdb\xa2\xa9\x92\xf3\xce\xa9\x89yN\x19\xd9M\xb5$7%\x1f\xd3\\\xa4\x11\x7fh+R\xde\x82\xd5\xa2\xbf\xb4U\x16\xac\\\x9br=\xcd\x8f\xec\xd4tf\xa7>?\x0e\xe9\x0f}\x85T\xc0\x03#L\xeb\xaa0\xaa\x99jIf\x1a{\x93K^\xeeM\xb44\x9e\x11x-u\xcf\x18\x82fZ\xec\\{\xac\xe3\xb5\xa7\xedy\xedO \x13\xa7\xf0\x97\xae\xca\x15\x17r\xae\xf4R\xce\xc4\x8f\x85T\xc9~j+\x05\xfe\xea\xad\xc7\xd7A\xfc\xa1\xab8%3\xc1\xaf\xcf\xb4$\x82\x04\x81\xbf\xe2\x02$\xff\xad\xab\xc6v\x92\x9e5Yzs\xce\xdd,1\x93C\xb5J\xe0\x87\xac\x06\xfda\xaa\xe0\xc5_\xc5\xde\xd4G3f^\xb5x\xa5\xfbh\xe9%\xe2\x1cO\xb4k\xbc\x12\x10Z\x19\xa0\xb3\xf2\xd2\x94\xc4\xa1\xa8C\x7fk\xabE\xc1\xf5\x9c\x13@\xfe\xdbT-\x9f\xa9\xf8CW\x91\xce\xc9\x0bJ\xb3-\xbf\xd2~$\x88kl\"\xadi\xc4\x89L\x1a\xe9\x89\xfd\x9a\xd3\xc3\xb5v\x1d)Q\xc8\xa9\x83\xb6BNtSFuK5\x0c:\"v {\x07:\xa2:\xbbvn3\xdd7\xb9\x07\xfb\xc2\x9e\xecs\xc7\xd1\xdf\xdb\xd8\x01Yx\xe4\xd0\xfe\xe4`\x8cw\xa0\x03\xd6\xd8\x83s\x8f<\xf5\xf6\x97[\x8f\xebcYT\xdckx\xa8\xe7}5V\xb0\xf0\x8b1\xf9\x18\xd7\xda\xa2\x08[\x92\xcfQ\xe9\x03\xb7\x08\xd6\xab\xf5E/3Z\xe3\xc9\x13/\x8c\xc2\xebe\x94%O\x9fj\xb4\xb7\x81Q\xe5\xeb1s\xb9\xb5m\xe1/\xddN\x00\xd4eQ^ym\xe7\xf7\xba\x86zt\xbaX/\x9f\xb7\xa1\"\xbb\xe0\xc5\xaa\xfc\xae\xd7PQ0\xf2\xeb:F\x1e\xf2\xc08X\x91\xdf'\x9b*\xf2 ck\x11\xcf\xd8T\xd1\x0b\xaf\x870\xb5c\xd9\xf6\xef5^`\x9bA\xf9f\xd6\xa4\x82\x17\x8f\xb8\\*\xe2\x99\x14\xe6\xce.DM\xf7\x8b\xca\x15\xccVal\xe0\xc8\xf6\x1d\x0b\xdb\x12n\xdf\xf0\xa3\x05\x1d\x88\xa0\x03\xd6\x8f\x10\xcd\x8a\x94s\xac f\x05\x0b/\x01?\\S\xea\x93{\xcf@\x18\xa5\x98\xc0\x82\x8a\xdd\xfe\x94\x88\xa9vM\xe9C\xc5C\x11\x14\x13I\x8dCC\xb2W\xf1`D\x89\xf2\xa5yV\x1b\xb0B<\xb4\x0b4\xad\xacD\x17\xd0=e\xc8\xbc\xe4\xf3\xa4\xd3\xf71\x16\x99\x02\"\x0c \x8d\xef\x12\xf6.\xc9V\xab\xc0gi>$\xa8\xb9@>\xae\xc8$%S\xf0B\x06\x9d\xaeu\x9b\xebX\xf1\xe4w\xe0<\xd0\xc2\x04\x9e@\x96\x1b\x06L:\x9d\xb6\xa0\x99aj\xc9\x0c\x93\xe2r\xcc\xa2#\x1e\xd3\xb1O\xe8\xaf3\xcb\x05\xaf\x05\xe4\xe8\x02\xcddCJ\xf4T.\x8c.>c\xb2:sx\xf5\xb91\xdc\xe2\xea\xb7\"\x11\x1eb\xf9\xde\xfa\x82;qC$O7@l\xef\xcb#\xb6\xd7\x1a\xb1!\xf1\xc3y@\xe0\x84x\x93\x94s&\x9f\x87\xe5\x9f\xb3\xf0\xa6\xack\x02C\x7fWB\xbce\xd3\xc5/\x99\x19\xb7^c\xe6P\x14zK\x16)K?+\xf5\xf1\x1a\x8d\x9eM\x0f\xc3\xc1\xae\x14\n\x16\xe3\x0d\x97\xde\xe0h\x8a\xad\xdd\x8c}\xe2\x11vp\x95\xc6Z\xb5pc\x1b\xa2W\xab\xcf\x97Gv\xb1\x92\xf4s\xac\x91a\x8d\x7f\x1c\xba\x1b\xb8(\xbc\x92\xbb%\x91\xabu\xb0R\x1fD\x9bk;\x1d\x933Ge0\xe4\x05\x88\x8b\x05\xf0\x0d\xc0\x0e\xab\x94\x05I\xca\xebhJ\x1a9\x8a\xcf\x81\xa1\x89d0\xbe\xf2w%\x18\xff0\xceM\xcc\xb5\x11\xd0\xf2\xa9\xd6L\x93\xdaq`%+\xb3\xad\xd1\x08\x92:T\xbaC\x8e\x8c\xf5\xd98g\x89\xeb\xf2C\xc8\xea\xf7:\xf0 e\xdd\x85\x97H\xd1\x95\xecI+\xd2\x0f\xf5\x0cZ\x17\x19\xb4v\xac\x19|.{\x06\xff\x00\xd2\x15\x85\x1b\x1c\xd1\x1a\xe9@\x8aTW\x11\xd0jL\x0d?o\xeb\x16Q\xd1\xc4\xce`\x810\x1f\x83\x07O \xcd\x19tO\xf6\x866=tR+\xba\xf2\xe9\xd8\x93\x89j\xed\x04@\x12y\xfer\xfa\xe6u\x91?H\x9bYB~6\xdcih\xb2*\x1f~-\xb6Z\x14\xe2\x89\x99o\xcf\xba\xf3\xf2\x16\xe8B)\xda\xef\x8e2R\xe8i\x16\xad\xbb\xb4\xd2\xa4Y\x14\x13\xba\xa0T\x9b\xa9_~\x8c'C\x98\x0f<\xb2\xb7\xfa.\xe4\xab'\xe2\xf4\x96\xd6&\x87U\x17\x8eU\xb1\x14\x8f\x8f\x05\x99\\\xe6`L\\\xb8\xc8R\x88\xc9\x84\xf8k2\x85?&\xe0\xa5\xe0\x87S\xf2\x11\xfe\x98t-\x17\xce1\x99\x0bA\xe7m\x05l\xe6\xd5\xfd]\xb6`\xef1d\xa5\xe5\xc8\x9a\x97\x03\xa4\x1d\x94\x8e\xb3\x86%\x01(\xfb\xd5&\xe5\xd1R\x02\xed\xb4\xa2\x8e\xd0\x9a\xc6\xb6\xd9\x9f\x86\xadxw\xfb-Y\xb4\xb0&\x15\xcfg.\xe9\x7f=\xac\xc6\x8f\xac\xc7\x1f7\xe44Z p9\xb30\x9e\xb4\xc4\xd9Y\x9bf\x817\x1d`\xac\x84;\xe1C\x82\x1c\xd4\xf5\xdb\x01\x1a\xb7D\xbb\x0dswL \xf9\xe8M\xd2\xdf\x11\xeb\x93\xd6X?A\xacO6\xc5\xfa\xc9g`\xfd\xe4\xce\xb1^\xa0p\x86q\xed\x18\xff\xd4\xc4\xb5\xe4;%\xa0;\xa5\x15J\xd3\xda+\xdc)A\xcb\x9d\xb2\xb5\xda\x0cN\x97\x84\xcbdA=9\xfe!|\xe6M\xf3+\x0cZ\xa0\xf0l\x0c\x06,\xc6\x80\x05\xdcs\xe5\x87\x10/\xff\xd0\xd1E\xfb\x95\xec\xf7\x92:\xa5\xef[l\xd35\xf7s[\xd9\x89\x0bAu\xb7\x07\xedv;\x85\xdb4\x07\xdb\xf4\x1f\xb4\x8f+oo$\xafM\xa8\x06B\xd2\xe1\x8f\xd0Z\xe5\x891x\xf2\x02\xf8\xf4 \xfap\x1f\x0b\xf0\x07\x81!f\x00c^2\x84\xfeR\x03@\xe8\xfb^\x18\x02\x13,\xfc\xa4\xbb$I\xe2\xcd\x89\x14\xf8(I\xbd\xc9%\xbaW\xb5j|j\xc8\xff \xcaC\x9b\x11\xa5\xc8\x85\xcc\x85\x04)\xbc\xd6\xe5\x93>6=\x883\xa6\x89D\xa23\xc1\xa4V.\xb0X\xa5\x9e\xc3S.`b&dE\x8f\xbc \xf0\xc3y\x11j\x0dp\xe7xi\x14'0\xf5c2I\x83k\x91\xe4\x85n\x94(\xa6D\xe3\xe2\x1a\xd2\x05\x81\x1fWq\xb4\xda\xa6D'\xf9\x11V\xde\xe4\xd2\x9b\x93.\xbcO\x08\xfc\x987\xd8E\x865\xff\xd3v~\xa4\xfbl\xe2\x05\x01mb\xd9\x85\x13\xe2Ma\x19\xc5\x84r\xae\x8b4]\x0d\xef\xdf\x9f]t\x97\xe4~\x96\x90m\xfcz\xbb\xe8\xc7\xb8I$<\xc48\xd0\xe3\xe8\x0c\x0e\xd0\xd93\xf7W\x15\xef\x18\x91x\xb7 \x85\xacS\"\x9a~\x82\x86\x97\x94\xf1N &?g~\x8cZEY\x9eb|\xb7\x9f&\\\xd4\xf2\x13\xf8\x91vD\xe9(\x0c\xbf\\\x1f\xb9\xbf\xae\xe8\x88Nn\x08\xa9]\xc2\x91&Op\x90\xaf\xe6\xbb\x17~8\xb5\x19\x19\xda\xeak\xc0\x9b\x8b]~r\"F\xaa~\xd7\xabF\x981`\xfc\xba6\xa4\xa3\xe9@v!3a\xbd\xb8k1_\xe1\xf0\xb6\xe7\xb6\xe7p\xe2p\xd0\xee\xa8(\x1d\xa9K\xfay\xdbS\x95\xbeM\x05[\xcf\xd7\xa9\xba(\xaa\x17\x93\x1eb\xd7\xb6\x96\xf2%W>\x8b\x92\x9b{\xef\xe9\xe13\xf1\x12\x92;e\x0fk\xaa\xf0\x9b\xf7\xba*\x85\xbb\xb8\xbe\x16\x14\xd06\xa5 `\x0d S\x84\xe6f\x0c\x9e\xb7\xac\x19\xce.\x99[\xd1\xbas\x8b\xb6I\x97\xacI|m_7x@\x97=\xdeS\xb9\x89\xbaD\x0bk5Bc\xa3\xa8\xb0.9r\x86\xcc\x913\xe4\x8e\x9c\x93\xa6\xdb\x95\x8d\x1c;\xd5\xe7\xa6\xd1\x0f|+n\x953\x82\xce\xc1\x17)O[9\x98\xc7\x8a\x83y\x1b%\xc2c\xd8\xb2}LhPv\xec\xae\xfd\x12\x8a\xbb\x10\x9fyuK\x0b\xd97\x83f\x03gs\xdd\x98Zr\xbd\x18Z\xa8\xad\xb39*\xaf1\xf1\xc5\xb5\x9d\x8d\xfbg\xad&\x02mt;&\x8c\x16\xe1\xa5\x1b\xbf\xaf\xf6\x7f\xd3\x8a\xcc\xcd\xeb\xbd^\xc5=\x8b\xf1|R\xf5\x85p\x00\xdc.\n9?I\xbd~B\xe6\xc7\x1fW\x85k\xba\x05-\xa3\x13\xf1\x9e\xa4\xfc7\x9c\xd3\x14I\xa1\x18\x95\x18[\xff\xf2/R*B\x0b7p\x835\x19\x91\x07\xc8^W\xe1\xc8\"q\xd1\x81\x8b\x11T2W\x1a\x80\xbb4\xc7\x14\x93\x12\xcb\xe1\\rjW\\i1\xb7\xe8*\xe4\xc5\xda\xcc\xb5\xfa\xebJ\\\x82\xfa\xa8O2\x00\x9e{\xa9\x94\xb1g\xea\xa5\xc4\x90\xb4\xa7\xf2%[\xdb\xe2\xdb\x98\xcc\xc9\xc7\x95\xc6\xeb\xd9\x84F\xed\xe0y^\x8f\xac\xfaT\xd1\xe2\xc4n8\xaa\x19\xd2\xd6\x1d\xc3\x8d\xc7\x9e\x98\xbd\x17\"gS{\x86\xd6\x1f\xc5\xac\x0e\xae@]\x05\x0e\xe6\x16#\xaa\x1bP[\x1a\xd3\x14\x89\xae\xfc\x17\xffH\x8a\x88 #v\xc5&g/\x08\x14I\x05F\x94\x95\x0e\xba\xf2\x8b\xc0\x055\xe8\xe7\xad\xccb\xebb\x01\xe5W\xfaw\xd4\xbe\xd5\xdf\xeb\xeewy0\x84[\xb5\xb6.\xc2\xec\xef=tLa\xc5\xfdV\xf6\xcf>\x7fu\xf8\xfa{C\xbc\x87$\xf5R\x7f\xd2\xae\xee\xaa\x08\xb4\xde\xa26\x8f\xf2\xba\xc1\x07\x0b?\x98\x1em\xfa\xd5\x9c\xa4\xcf\x199\xa0;P\xf9\xe6\xfc\xd5\xf1\xc9W\xc7\xcf\xcd\x9f\xbe\x0c\xfd\xd4\xf7\x82\xd3\x14S=l\xf4\xe9\x914\xdcM>\x8dI\x88\xfe\xbd\xe2\x8b7\xaf\x8f\x8e\x8d \xe4[\xe8[?\x08^\xb1p\xaa-@\x92\x7f\xf6\xdc\x9f\xde\xe2+\xda\xd9 \xbb)\xd4\x80\xd4\x84G\x8b(\xa3\xe0\xe0m\xbc_MK\x10m;I\xf5\xbb6\xe3}\xeeOo\xf3\x19v\x17.[\xc3\xe7\xfd\xeb\xd3\xc3\x17\xc7\xe7\xb7\\\x13\xdd\xd7\x1b\x03Y\xd7\xc8\x06S\xcf\xb0\xaa\x94\xcf\xc1z\xf3\xe1\xf8\xe4\xe4\xe5\xf3\xe3\xf3g\x87\xa7\xc7\x1a\xe6\xa7\xda\xce\xc4Htp#\xc6\xfe\x9aLq7\xbd\x88\xa3e\xcd\x8el\xd3\xd7\xcc\xd8\xd7\xd4OV\x81\x87I\xceZ\xb2\xe4\x80\x84W\xfa\x0eT\xbd\xaex\x0c\xd7F\x82\xa6\xb6\xee\x8d\xb2\x9c\x9a\xd8\x9e\xf2\x93\xdf{\x84\xec\x9e;,\x85\x86\x0b;\x1d\x87k\xb4\xc7\xe1\xd9Fw\\\x1aR\xdaz\xdci\xb7\xf25f\x1b\xfc\xfb\x8d\xab+\xd3\x060\x85\x9a\xa1\xddzT\x86\x01}\xc6X*g\xc7\x06\xc3Q\xbe\xc5\x00G\xea\xbb\x11L\xed\xca[ly\xa8\xad\xbd\x11BJ\xa7\xf1\x06\xc3^Il\xaa\x00a\xfenS\xf8\xe5\xccC\xeb\x01l\xb5\xaf\n\xed\xf6\x10\x94\xf7\x91\x1f6\xb7*\x1e\xc1\xe85\x1b\xf5\x8b\x07\xc7\xa3\xda\x02\x86\xadm\x01A\xe8\xbd(\xbb\x88W\x9d\xed\xba\xa5Odo\xf9.\xfc \xadhy6\x9b\xef\xa3\x0c<\xbc\x10I\xc9r\x95\xfa\xe1\x1c\xd2\x88gi\x07\x0fb\x92\x90xM\xa6\x88)t\xa4.\xfc\xf8\xc7\xe4G\x17\xd2\x85\x97\xf2\x03;\xfc\xe1O)\\\x10\x88B\xbc\xa9\xb1\xf8\x8aZpI\xae\xbb\xf0\x9c5\xe5cn:/,,\xa6E\x8b\xf8\x86x\xd3\xc7\xb4\xce\x95\x1f\x04\x90\xa4\xf4\xff\x17\x04\xbc\xc9\x84$,94o\\\xb6\x17\xff\x93>t\xbe\xe9\x11z/\x04\x9a!\xee\xb5\xeeA\xf5\xd7&\xab\x03\x12\xcf=\xa9.4\x1c\xc0d\x1c\x9eqE}\xfbq@!^F\xb6\xee8D\xbd\x87\xe7\x82\xd5z}\xe9RR\xc8^GY,\x19\x0b\xe3\x0dY\xba\xf0B\x88\xc2 \xe9\xc2\xbb\x85\x9fP\xc8\xcf\x02\x7f\x92\xc2\xd2\xbb\xa6k3\xcd\x08m\xc9c\x87Z\xd7ba\x99\xd7\x91?\xb5Q\x8f\x8ct\x0bo\xad\xe3\x86\x80\x93\xf2S\x7f\x01,?\xbc\x13}\x1ch\xf5in\xd6\\\xe3\x86Q\x99Mh\x9a\x97\xa5\xd1\x85\x1fN\xcb&\xf7\x1b\xdcA\xeb\xd3\xfd\x80d$\x98\xa8\x88E(b%cbF\xacs\xcd'\xf7\xeeQd*\xb3p,tm \x8f0?\xc3\xcc\x9b\x10\x13BEk\x12\xc7\xfe\x94\xa3\xd4,\x8e\x96\x1c\xa9\xe8\xd7\x90\xac\xc8\xc4\x9f\xf9\x13\xb40\xef\xc2q\x98d\x0c\xc3RVkI\xd2E4\x85\x10\x93\xd1N#\xbc\x01\xa6-\x06\xde\x8a\x85\xf2\xc4\x91\xf0jhjH\x1c\x97\xdd\\\x94\xb7\x82\x08\xbb\xfb\xe9\x93\x96a\xbc\xcd\xcc\xbe\xc8V!\xedn\xe3\x90q3\xa7\xf00\x11\xa5\xc8`\x1cZ%\x0d\x7f\xaaL7K(\xd9/&\xc8\x160\x8a\x8bAQ2\xceg\x02/\x19\xe9v\xe1\xa7,I\xf9\xb71\x99g\x81\x17\x17\xb6\xf4.=w\x08\xda\x86n\xde\xff\xc6\xbd\xe9 \xea:\xcf\xd7T\xa8\xe1\x8c;\xde\xc7\xfb\xa4\xf3\xf3\x98\x0e\xf60K\xa3g~8}\xeb\xf9\xb1&\x863\xc8\xac\x83G\x8f\x96P\xddf\x19\xcb\x14\xdee\xdc?.)\xff\xedh\xa3\xd0\x8b\x07\xd7Xm\x8c\x19Vxx\x8d\xd5x*\xad\xb9ch8\xf6Z\x98\x8e\xadp\xda\x95\xfe\x9a/\x02\x03{\xc5\x12\x01\xcd\xaa_;0\x1b{gt\xd2\x93\x86\x96jbQ\xcb\x0f\x9d\xd3BG\x00\x9bF\nu\x86\xd3h\xbd\x82\x01\xc4W\xe8\xe6\xd6g\xa4\xa2+(y\xbb\x13\x0c-\xf5\x9b\x16E~\xd6<\xa4w2\xf6Zr\x8f\x80\xfb\x1b\x03\x9b\x9b\x99\x80k\x95\x00\xf2\xd7\xea\x0e|\x1f\xe6V\x04\x94D\xc3*\n\xfc\xc95\xfc1A\x94\xbe$\xf8\xf3jAB\xb6\x03\xe7\x14\xbd\x8b\xadI?Ab|\xcdV\xbff8\x07\x10\x8f=\xc6\x13\xd0\x1f\x14\x19`\xa8\x1b!\x8b*\xcc\xea\xae\xf3\xba\xed\xa0\xcfCT\xf3\xaf'\xcd\xf0d\x11\xadY*\x16\x8f\xf6\xe3\xe6\x1f\xd7~[\xc3+T\x8f\xf8V\x84~a<\xef\xcbbIds\x8b\xb2\x9a\xfc\x01\x9a\xf7\xc4\x05kI\xe29\x11\x89\x97^G\xcf\xb3U@\x0fd\xf25\xb9Nlg\x08G^H\x8f]\xac\x06a\x14n\xb3f\x12$\xe0\xc4\x01\x8d\xc8\xc2r\xa7\x95.\xf5\x90\xe1k\xec\xeb]\xcc-ZXo\xe9U\xc4\xe9w\xc2\x8e{\xca\xe9'\xde\x92P\x14\x1c\xe2\xd1\xdb\xead}LA\xb4\xc2\xa8\xb3\xf4L`Vr\xa2\xea\xc4\xcb\x12nNv\x15\xa9j[\xdb\xa1G\x9c\"L\xdb\x8e\xe088\xdfMw@i\x9c\xf4p\\\xd0\xb7\x97\xe4:\x11,0gL\x0d.\xaa\xc2\x86\xb0\x15ZL\x9bL\x11e\xf6\xd2x\xee\xa1OI\xd7[\xad\x82k\xccE\xe2\xe6\xde \x89\xc1\xd1\x91>(\xd4\x1a\xbe2\xdf\x8f\n\x9b\xb8\xc2\x11%n\xae\\\x18{\x84\xe6\xd3\x1bC\x1ek\xe2G\x83t\xebf\xfbl \xf0\x87>\xd9I\xbb\xfd\xb8\xfel\xc0\x1b\x01n\x04\xea-\x87z\xdd(*\x10f=\xa7\xbb%\x16`WzR[\xd1\xe77\x06\xfd5A#h@X\xb4\x9e\x9f\xfb ~\x84F~\x9a$\xeb\xa0'\xa9U\xa4]6\x0f\xb0\xa4\xaa\xbf\xf5\x18\xf5\x06/\xad\xc6xn\x1c#\x8fY\xce/\x90Z+\xb7p|L\x1f\x1fwI\xf8sF2r\"5\xc51lc\xe95\x9fpK8 c\x9c-\x15`\xb7\x87\xd5\x859\xd90HV\xa2\xf6\x85|\xab.\xf3\xf6p\xae!m\x05d\xeb\xc8%Q\xaeT\xe3\x1a{P(\xd0\xa4*,\x88|p\x94\xf9o\xecY<%/\xc2T\xdb\xaekP\xf5Cg\x04\x83\xa6\xf6A\xd1Y6\x8b\x05\xc0%\"2\x0e\xa1\x03\xfd\x16|*&\x84\x181\xca\xe4\xdf6\x10\xc2\x0d\xa2\xaf\xc8\xb3\xb7\xe2\xda\xedj\x96c\x91\xd07&3\x0cj\xe6\x96\xf6\x850R\x0f\x0b\x93\xf9T\xe4\x172ODh\xef\xf0\x13\x85U\x80\x03\xedk\xdbiT\xe8E\xb6\x865\xf3\xd0\xb0\xaelO\x86\xcc\xf4\x1f5]\x0caI%_\x8e\xfe\xb9\xbf:\xe5]h\xd7\x16=\\\xe4\xeb)*\x050~\x9fR\xc1\xc4\x97.\xee,G\x81\x88\xa7\xdf\xad\x0d\x12o\x8c\xca\xf2\x92\xb5KH\xae\xe0\xc2\x95_\x96\x82\x88`\x8ef\xb9P\x87\xe2<\xd5\xa0'\x12\xdf\xdb+\xd9\x02\x9c8\x8e\x0b+\x9b\xb80\x17?R\xf1c\x89'\xacz-\x82\xbe\x08\xdd\xa9rS\xa2V\xb3\x1d\xd4U\xc8\x83c\x17\xed.XR\nx\xbb\xdb\xedR\x86\xb9\xaa\xdab\xcb\xe3/W\xcc\x1c\x05<\xf8\x915\xf0#\xe7$\x91\x99N\x1cy\xfe\xd3E\xa64'\x13\x8fJ\xb4\xfc\x83A\x14\x92\xffJ\xcb~ \xca\xad\x8d`p5\x80e\xd1\n5\xa9\xd3Y\x80BM\xc1\x0c#\x12j\nD\x04BM\x91p\xd8\xd3\x14\x89(\x83\xba\"\x1eWPS\x84\x91\x04u\xefE\xc8@\x8d\xd62\x8fa\xa6\xf9N\x0er\xa5\xf9\x94\x85\x052N\xcc\xf0\x15\x8f\xc8a*a\xc1\x174\xa5\xdcU\\7\x05\xe6N\xab\x98\xc3jy\xbe\xb0j:\x19\xbb\x10\x96L'C9\x9f\xeag\x10\x0e\xee>\xc9n\x00\x8a[\x13\x17\xac\xf3s\x92\xbc\x8a\xa6Y@,WA?4\xaa\x1f\xca\xd2\xcc\x0d\x1eI\xfc\xf0\xa9\xa3\x1e|\x8aUt\xce\x85\x98dh`\xef\xdeE\xab\x0b/\x1eB$\xfa\xa9\xd42Y\xad\xde(\x84\xd2\xcd\x89\xfc\x8e\x86*\xda\x94\x90\xfa\xa8\xf9\x89\xbb\x05\x14\xe0\x00b\xd0\x8dMX\xd9V\x1c\xb6\xe0\x1f\xbe(\xd5\x03be\x87v\x7f\xf7\xa1\x9a\x03\xd4\x17E{=]^QVT\xc9\x1c\x9a\xe5E\x95l\xa4^^\xb4\xaf\x16%\xdcfU=\xa8&\xcc\x0fWy;\xa3+\x82-\xed\xef1\x9e\x88\xae\xdb\xae\xa3\xb6\x1a\xf0\xf3l\xdf\xd1\xa5*]\x19\xcfg\xd4'\xa6\xe5uN\xeb\xd7\xd9D\xcdoJ\xd0^\xd4r\x07\xd2\xb9a\xba\xff\xb2{.\xf8\x02\xd7\x1d.\xe9\xea\x9c\x7fho\x88\xb8=\x172\xf5\x03\x9br\x9f\xc8v\x9d\x9f#\x13\xd6s!.*\x11\xc7a^E\xb9 \x1d\xea\\B\xc5\xa5|7\n\xdf\xc7\xc1\xd1\xc2\x0b\xe7\xa4\x95+V!\xe6\xa5^<'i\x9dCN\xd4MH\xca\xc4\x00\xb3\x80\x97\xc5\x81JE\xc5\xa3\xf1\x8b\xbeq!\xea\x06\x917=]\x91I\xab\x01GL\x0e\xebR\xa6\xf7\x10\xeb\nA\xeb}\x1c\xa0\x87\xb9\xae\xc64\xba\ni7j\xba\xf3|\x0c\x08\xb7S\xcc\x8e\xd0j\x18z\xb8\xa1\xe7\x9ax\xb3\x88\x89\xc1.\xa6\x98\xb2Mp\xc0\x14\xae\xd87\x99\xd2Y\xe0\xcdrw\x15\x935 \x85t`\x1b\x06.f\xf6>\x0eZ\x0d\\\xea;b\x82W7\x8b\x83\x0d:\xc4\xb1z\xf1\xa4~\xff\x88G\xc0\x89\xa2u\xd0]yqB\xd8\xd7\x8e)\x834\x19[Y\x1cPq\xdb_z1\n\x91\xd6Y\x1ew\xd2\xac\x9c\xa5\\\xd8\x95\x1fN\xa3\xabn\x10\xf1k~\xdcW\x93\x08#\x1f\xdc\xbfoA\xa7Rc\x11%\xa9\xe6\xf5\xcaK\x17\xe6\xeeXmJ\x98\xf8w\x0b?I\xa3\xf8\xba\xfa\x06/v\x98\xcc^-\x93un\\\xac\xb4,\x97\xc5\x1c<\xa0\x83e@KH\xec{\x81\xffK\x0e8]\x86\xde\x9b*\x1am\xb4>b\xd3\xccIz\x14\x853\x7f\x9e\xd8\x0eE\x8c\x84\xa2\xf4\xd8\xa0p\xc1I\x11I\xc7\xc4n\x86r\x899\xef^\xe7\x12Pj\x88v\xc5]\xb2\xf0B\xa7\x0d\xa5\x81<\xb5 \x99\xbe\x0c\xa7\xe4\xe3\xd0\x90\xc2\x1e8\x03$\xe1\xae1\xcb\xb1\x89FE\xe1\x0b?HI\xfc\xc5H+\x03\x7f\xe0]GYZ\xa6k\xacc\x9d\xfd [t\xae<\xd1\x0f\x02\xc9q\x8a\xb4\x90\xa1F\x14'\x14\xd8\xa6\xf8\x92\n@\xab\xfap\xdag\xe9\xa5\xd6\xf9\x88b\xae'\x9dbL;B\xdfF\xa5\xb7\xe3\xea\xa8\xf1\xbe\xcd2\x1a\x98kl\xc29g\xd5\xbc\"L\xd9\xd4\x8cYf\xa0\xb5\xc6\x992\x88T^\x10\xf4\xf3D\x9du\x8b \xd6a\\\xcau\x86f\xa5*\x11Z\xc5\xea\x8e7\x7f\xc4.q\x9a\x08\x02\xde\xa8\xd1\x1d\x1cr\xa2P\xb7\xe9\x0b\x15\xb0\x86\xe0\x9bU\x981k\x7fc\x1a\x03Hg0v1F\xc7`|e\x0bl\x10OkZ\x03z\x9ch(j\xbc\xb7o\x81D\xe2\x06\xec\x8ep\xe86g\x02\xe7\xd7\xa53\x816\x94\xf3\x1c\xe9\xb8\xd0\xf8vK\x10=C>\xe4\xf6@`Z\xce;\x9dy\xc3\x1eb\x80\xd1z\x07\xca\x0f\xbb\xfb.\x11\x13s\xe5\xb8h\x18!n\xae\x89\xf7!\xb6\xf5\xcc\x98pU<\x11\xab\xf8\x8d!i\x9fx\xd0\xc9\x8f\xae\x93\x1f\xce\xb9\x95b\x97\xffIwHVK\x1e\xbc\x9a\x9bqk\xe6\xf9\x01\x99\x1a\xda\xc4\xf3\xde\xebN\xa2\x00\x15\xf3V\x8c\xd9=!S\xdf\xff\xff<\xcf\xab\xb3\xac\x0b\xd0\x11\x80\xe1\xa7y\x9c+\x83\x0f\xa2x\x16\xb5\xf72<`\\=I\x9bb\x17f\xfa\x15TIW\xd3-+}\xa6\xccFh\"\x8eO\x9e\x9aYh\xadE:?\xdd\xfeP\x1f\xdc/5\xb6\x87\xe2\xe1\x1b'\xa50\xad'v.\xe7\xcek\xac\xa4(\x03\xb6j\x98\x03\xcb]\xd94\x054\x07e.S<\x9f\xdd6\xff\xb0\xf6\xb3E\xba\x0c^Dq\xfeQ\xd5uK<7.\x18\x87\x88\xf9\x95\xf2(f\\`\xf4\xf0\n\x86\xa2\xad\xf9;\xd6g\xd3\xdc\xfci1\xbe\xfa\xe9L\xfd\xc4\xbb\x08\xc8t\x08Y}\xc5(d<\xeb\x90\x116I\xd0\xad\xff\x8e\xaf~PO\xb0\xeb\x808uLL63{[\x08b+\xc9\xb0\xcdH\xc2\xd2\xac\xd6\x01RF\x10\xd1\xf4v\x16\x07\xdb\xfcS\xe3\x87)\xaa\x8dY\x9a\xad\x1az\xaa\x01({c\xfeFl\xa5\x02\x94Y\x1c\x98\xab\xb7Z\\\x9e#\xd1pi\xea4\xef7\xffV@\xe4\x19\xbek\xe1\x13\xf8\x93\xcbaem\xf5\x03u\xc1:\xfe\xb8\n\xa2\x984\x05;3\xa2\xc4\xd4_\xb7F\x88\x14\xb5\xd4\xfa\xcd_\xb7\xf17\xe9\xe3*\xf6V+\xf2\x85;a\x13\xd9\xbem_\x91 b\xe6\x8d\xb6\x9c\xd7\x0efA\xfc\xf9\"\x1d\x82\xb5\xd3\xab\xc1\x86+\x7f\x9a.\x9a*%\xf1d\x0831\x90\x1a6#\xa0\xfd\x9d^y\xf39\x89\xe1\xfdK\xc3\xack q\x89\x80'\xac)\xcb\xa9\xfb\x04\x13v\xb7]\x96\xd2^\x11\x8bS\xb7YN\xb3\x8b\xa5\x9f\x0eaaZ\xc1Uw\xe9\xad\xda3\x0b\x92\x04\x9et'A\x14\x8a\x898\xf4\xd3\xfa\xe3\x87q\x06f\x9an\x92\x7f\x1d\x1d\xa5W8\xf73\xc7\x95\x9a\xbe\x91\xa8R\xceCK\xdb_\xbe\xacb\x90Qojd\x18\x94\x02\x80`J~\xccxy\x7f\x15\xce\x1f_x \xd9\xdfu\xfd\x0f\xcf\xde\x9c\\\xf5\xbe\xfej\x1e\x1d\x1e\x1e\x1e\xbe>}\xbf8~??<<|\xb6K\xff&G\x87\xaf\xe8\xbf\xaf\x1e\x04\xfb\x7f\xa5?\xbe\x7f\xf1\xec\xd5\x87\xe3\xf7\xb4\xc2\xfb\xd9\xd5\xad\xfe\xeb\x05\xbf<\xbb\x1f\xf6\x9e\xcd\x16\x1f\x9f\xad~\xba>\xea}\xdc\xbd\x7f\xff\xfe\xfd\xce\xcf\xeb\xdd\xa3\xbf\xac\xfa\xcf{\x8f:\x9dY\xbast\xff\x97\xbd\xfb_\xf7\xf7\xef\xbf\xdfy\xf0\xe8\xfd\xec\xea\xf9l\xef\xe1\xfd\x9f\x1f<\xea\xbc\x8f\x07\xcf\x07'G\x97\x8f\xe8x\xfe\xfc\xdd\xc9\xe9\xbb\xe0\xd5\xe1\xf1\xf1\xe1U\xf8\xe8\xfe\xfd_v\x0e\xe7\xeb\xdd\xfb\xeb\xef_>\xbf\xaf>\xef_\x91\x9f\xfc\xfe\xe5\xe1\xe1\xe1\xf3\x87\xa7\xefO\x9e}\xf8\xf3\xfcY\xf0\xb7W/\x0e\xa3\xbf^=?|w\xf2\xf1\xe2\xbbg\x0ff\x9d\xf5\xdb\xaf\xc3\xe0\xbb\xc3\xbf\x85\xfb\x97\x83\xc9l\xe7\xf0\xd1/\xf7\xdf\xce\xde\x1c=|\xf9\xf2\xfb\xd0\xdf{\xb1\\\x1e>{\xf5\xf0\xc5\xab\xc5\xd5\xbb\xfe\x83\xc9\xa3E\xb8\xf0\xff\xf6M\xff\xe8j}\xfcM?]\xbe}\xde\xfb\xf9\xf4\xeb\x9f\xf7\xe7\xdei\xfa\xed\xfd\xcbW\xdfy\xe1\x87\xe5\xe1\x87\x93\xe7\xef\x83?\xf7\xdf\xac\xb3\xec\xdd\xcb\xd7\xd1\xfe\xe5\xa3\xde\xe9\xc7\xd9\xc3\x9f\x937\xe9\x8b\xfd\xf9\xeel\xd6\x8f\x92\xb7;o\xc2W\x93\x0f\x0f\xa6\xbb\xab_\xa6/\xdf\xa7Y?:\xdc\xfd\xd0{\xfe\xb7\xe8\xeb\xe5\xc7ep\xfc\xfd:}\xfe\xfe\xa7\x9fNw\xd2\xe5\xd7\xcb\x9f\x9fuV\xdf_?\\=\xef\x7fx;{\xf0\xd3\xdb\xe3\xde\xcb\xdd\xde\x9f\xff<\xf1\x9e]\x85\x19\xd9\x9f}\xf5\xcb\xfc\xfat/\xfd\xee\xe5\xfbG\xfbo?<\x88/\x9f\x7f\xfb\xe7\xd7\xdf|\xe8=\xffz\xf7\xc5e\xf4\xf5\xf2\xc5\xea\xf5^\xf4>\\\xfb\x0f\xbf\x8e\xc8\xe1\xe0\xfe_\xbeK\x96\xdf\xfd5\x8b.?\xf6\x12\xff\xa4\xff\xd5\xc3\xf4\x9b\xcb\xd7\xfb\xe4\xd9\xa3\xe4\x9b\xab\xbf\xac\xee__/'\xd7\xde\xdb\xfb\xef\xe2\xb7\x9d\x93\xb7\xcb\x8bW\xaf\xfc\x8f\x93\xbf|\x98\xbf;\xe9{\xef\xff\xf6h'\xfa\xea\xbbd\xfe\xdd_\x0f\xbd\xaf\xf6\x8f\xaf\xe8\xb2\x1c\x9e\xbe\xff\xf0\xe6\xe4\xeb\xbd\xa3\xef_\xbe\x1c}F\xd0\x19\xd2\xbd\xb8N\xc97Lj\xae\xd3.\n\xad\xe2\xc4N5\xf2\x18\xaai\xc6=\x8d\x84\xc34-\xaa\xe9\x1c'\x16;\xf0\xcf`\x87\xd0\x81\xd8\x81\xfb\xb0\x0b\xdb\xd2]\xe9\x8d\x0b\xa4\x9bF\xcf\xaeS\x82\xa6a\xf5\xd7f\xb9\xe9 \xb3\x10\xc4Q2\xcb\x17:*\xe6\xfc:\xee\xf3\\\x14!\xb9\x82\xa8\x92\xe4\xa7\xc6N\x03\xc7I\xa0C+\xb1q*f\xc3x{\xe6BF\xe99%\x06=\x97\x05q\x86\xa7\xd0\xc3\x0b\xe2m\xd8\x85!\xad\x120\xfb\xc5\x00\x9e\xc0\x8c\xfe\xd3\x19\xc1\xae\x83\x90\xf5\xc7iw\xb2\xf0\xe2\xa3hJ\x0eS;p\xce\xe0\xc9\x13\xe8?\x84O\x95\"\xe8@\x9f\x17\x0f\xf4\xc5\x03V\xbc\xaf/\xddq($\xc6I\xa7\x83\xe6\xfa\xf0\xf4)\xf4\xf7\xe1\x1e\x0c\xf6\xf6\xd4\xf7\x0f+\xaf\x07{{pO\x0d-5@)\x9bI\xcf\xe6\xc9\x18\x06K\xe7\xf2\xf4)\xecV;Q\x18\xb3~\xab^\xfa\xbdZ\x90\xed\x9a!\xf6\xf4)\x0cZ\x03\xc0\xd1\xa2\xb4WF\xe0Y\x1c-o\x87\xc2B\x97\xc5\x8d\x12\xe0\x8f\xb0\xc3\xc2=\x8e9>\xf782\xc36\xf8,\xc7\x83G\xff\xe9\x8c\xa0\xbf\xbf\xf3p\xc7\x81\x88\xb1\xe13\x8a\xe0\x99\x8b\xd1n\xb1\x04\x9e\x82\x07\x07\xe0\xc1\xb0x\xa7\xb2\xc0\x0c\xd2>\x1c0@\xa7c\xda\x0d\xdd?\xbc\xd1x\x8c\xc0\x19\x9c\xd1\xcd;&\x0c\xae\xf7`\x7f\x87\xbe\xb0F#\xcbq`\xc8\xb1\xc2\xcf\xd7\xcbf\xed\x0cp\x1d\x1e:\xd016\xdc\xef\x89\x96)b\xe4-\xf3\xae\x06RW\x15\xee=\xbf\x93\xfe)\xf2C\xdb\x92\xec\xb4$E\x91d\xc5\xc9 \xea\xf3\x7f)\x84\xa5\xf8\xab\x92\x9f\xdc{?L\x1f\xb2u<\x90\xff\x18\xb2\x90\x88lQ\xac\xc3gG\xcf\x8f_|\xf5\xe7\x97\x7f\xf9\xfa\x9bW\xaf\xdf\xbc\xfd\xeb\xc9\xe9\xbb\xf7\x1f\xbe\xfd\xee\xfb\xbfy\x17\x93)\x99\xcd\x17\xfeO\x97\xc12\x8cV?\xc7I\x9a\xad\xaf\xfe_\xea\xde\xb4\xc9\x91d9\x0c\xb4\xdd/k\xf6\xfe\xc2~q\xa4\x86\xdd\x99\x83\x04\n@\xdd\xa8F\xd7\xeb\xd7\xd3#55\xd3\xfdl\xaa\x1f\x9fH\x00S\xcaJ\x04\n9\x0dd\x82yTW\xcdT\xafQ\xd2R\xa2H]\xdc\x95(R\x07\x0f\x1d\xe4.IQ\xa4\xb4\x07wy\x99\xed\x9b\xf9#\xfa\x03\xfb\x17\xd6\xc2#\"32#\"\x13\xa8\xaay\xd4\xc2\xac\xbb\x00\xcf\xc88=\xdc=\xdc=\xdc\xafo\xbe\xec\xf5\x07\xbb{\xfb\x07\x87G\xc7\xed\x1d\x8b\xa7\xcbat\xa4\xc8g\xe9\xc1\x13HN\xa0\xdd\xf6\x1cqS+\xc3+b\xc18\x93Q\xd9s\xe8#O\xe7\xec\xe0\x9b\xa9z\x9e\x1d\xa4\xf4\x14\xc35\xc0O\xc0\x1e%c\x0e\xa4\x8b8z\x87\xc4\x13\xa3\xba\x15Q}\x99\xc3W\x178\x1bAO\xd0\x0b\x02\x1e\xac\xb2e\x1a\xac\x97\x98\xf0f\xaf\xaaE\xbb\xca\xef\xe7`\"\x95\xd7s\x9b.\xa6v-;\xfcN\"\xb0x\xad#\xbc\x03=\x0eq\xa3\xe4\xf1\xc8\x87\x8c0\xd3\xfeN\x8b%\xd7\xcc\xc3\xdcD\xf1s\xa4\xe0\xa1\x90\x85+.m\x90\xad@H\xff\xb4G\xb0\xeb \xc2\xd8)] Jr(\xf5\xec\x1f\x1c\xf6\xfb\x07G=\x8a\xd7\xf4 \xba\x8c#\xa6St\xdd\x1f\xf0'\x8c|\xb0\xe7\x03*\x9df\x02\xf3\xed\x88y\x18Q\xfc?\x92p>B\xc8\xa0\n9\x90\x00\x07\xbb\xf0\x08\xa2\xea\xad+>}\x99f+\xe4\xdf\x82\xb1\xd5\xb1d\x0c\xea!\x06\x1d\x0c(jY\xe7\xbaG\xbbZyC\x9eM\xd2\x8d\x897\xab\x0b\xbb\xa7\xa0\x02\x0b\xabM\xe7\xfa\x08>\x84\x80\xca\x02\x942\xa8\x12\x05\xdd\x17v\x9f\xce\xab\xe7\xe8K\xf80\x82\x04\xe7L}F\xd9r\xe7P\x85\xa3\x9f\x10\x9cb\xc3}\x18BO-\xb2\xe6E:\xf4\xb9\xa6\xea\x05K`\x04m\xa8\xe6T@\xc4B^\xbff\x14f\x01\x8f\xf8\x18:s6\x08X\xc0\xd3\xa7#\xe8\xcc\xa9\xe4\xd0\xa6;\x18\xe6t\xdb\x9d`\xf9\xc1\xfe\x01|\x88\xe1\xb2E\x03.\x88\xfa\xe6\xd0\x19\xc1\x91\xa3i\x91\"p\xa4\xb6\x14\x95[\x8a\xf3\x96\xb2\xbc\xa5l\xf3\x96(\x91`7 #\x07\xfb\xda\x87N\xf5\x06\xaa\xe1~3}5\xc2W\x8b\xcc3\x19\x9c\xc2+\xef\x15\x9da\xd8\x81\x1e\x15\xbc\x16\xf9\x9ck\xf44\xc8\xf0>\xf5\xd2Ew\x1d\xbd\xb3\x07\xec\xee[D;Z\xbe\xc8\xaa7\x17KU\xe3\xa8?,U\x15Q$\x94\xf6\x0ce\xe8\xef\xe2 \xad^\x93\xa9\xcdiBq\x9b\"6\x0b\x19\xcf\xd1\x9b\xd6\x1c\xe8\x91w\x9e\xa3\xb7o@o\xf4\xb00\xa07\xc5\xd1\xc1n\xce\xbc\xe5\xd1t\x06{\xb4\xc2\x12\xe8\xf0\xd0\xd1\xe3:\xc5\xe5\x98\x93\xd5H\xdf\x8d\x19/B\xa7\xaf\xa3y~\x85\x12\xd4\x13\xe8\xc1\xed-\xbf#\x8b\x8e\x1b,K\xc4\x13\x14\x8cq\xa7i0\x97\xce0v\xd4\xbbH\xd0-)H^y\xafl\x82>\xf2\xcc\x90\xca\xd0\xe3\x14lJ2\xf2\xc7\xbcJF\xbc\xe7tp\xb8\x0b\xb0\xae\xf92\x8ab\x1b\xbf.\xa3KZz\x87=\xf8\xe4\xd5\xc0q\x81P\\K\xa0\x8cM\x9d\xccq\xe0 \xf4\x91\xf3d\x9d\x0ee\xcb\x1f\x8e\x80\x96\xa7\x07\x82\x11\xee\x94%<\xa5\xfd9\x855\xec@\x02CXW\x10\x89n\x89\xa5CQ,\xa1E\x07\xac\xb6v\x9b\xd6\xb6\xc3j\xcb\xeb\x99\x8b1\xc9\x83(\xb5\x82Om\x82\xb5u\x18\xe6\xca\x8d\x05\xac\xb6\x11,q\xf8\xc8\xbd*E\x96\xe6\xf7F\xd0s\x9c\x13\x08hcG'(\x9f\xb5aQ\x88\xbd\x1e\xa5T\xed\x11\xcc(\xad\xdeAzA\x85\xa7:\x12\x94Qd\x0e\xe0\x96\xbe\xeb\xd3w\x83\x13\xf0\x19\xc5Q\xaa\xcf\x8a\xea\xb3\xbcz_W=\x7f\x15:0\x9b\xc2\xed\x08\xfa\x03\xba\xb1\xae*\x1c\xae\xe1P,+p\xca\xdb6\xf7\xea\x0c\xed\xdd\xc1Q\xe5\xc8[x\x85\x96\x1dk7i\xb2\xb8\x921\xd08\xdb\xc6\xdd\x9f<{\xfd\n\x1d2\xf9W\x9d\x87M\x9e\xe6fXI{S&yMW8\xccwS\xf2\n\xf9\x85\xdd@{[w\xa3\xf1\x9a\xf4\x0e\x92g\xed\xa8\x14\x0d]LPd\x87\xf6\xee\xae\xe2w\x1c\xf0GG{\x8e\xd6\xa57\xfa\xf1\xba\xf4n\xe3\xdd\xde\xa8KU\xd3(H\xf9\x185q\xbbh\xf9\x8a\xe3.\xf3\x11\xa7\xef9\x1b7\x0b\x924^g\xa5\x8eq\xa5j\x94\xcaxM\xd8\xfc\x9c\x12\x03\x161\xc1\xe0\xc3\x11\xdf\xd4(\x8a\x8bP3\xeclT\xf5\x83vN\xa0\x85>\xfaH\xf2\x92Rv\x00f\xee\x0fy\xbc\x0b\x9e\x94\xc0\x85\x16z\xce\n\xa7!\x96\x1f\xc19\xe1\xe34\x18\x85\xde\x83\xef\xb1\x84 u\xda\xf0\x88M\x15\xcb\\n\xa8g\x1e\x84\xderY7\xe4\xfa \xa1\x9f\x16\xfa\x13%]\xbe\xd4\xd2w\x83\xd3\x18l\xd84\x08\xf9L\x9c\xfb2su\xfa\xf1i\xa1\xda[\xf7X\x9ca\xa7:\xe7\xc5\xa9\xf3\xcd\xcd\x9aTN\x9e<\x80\x12\x0bV\xc5\xeeYf1\x8b\xe1\x11\xa4$\xf6.\x96E\xc0\x7f\xe5\xc2V\xd14{\xf2 \xbcb\xb7\x1a\xdb\xfa>\xbc\"\xb4\x8f\xf6\x1d\x17B\xfb\xf8\x00=\xa5\x8b\x0e\xd0\x96\x06\x1bu\xbb\xe07\xfd]\x1d\xc7 \xed\x03\xc7\xb6p\xb6\xd2(\xaez\xea\xb0\xeb\x80\xbb\xa6x\xe1\x94\x89u\x83\xe4\xa5\x98\xebM4\xc89\x85\xd2\x9eUyD\x15\xdc\x8a\xe3\x80\xa5t\xf8\xeew\xf3\xee\xe1\x9d[L\xb7U\x8d\xc9\x12\x97|k7\x9a\xde\x0dWt\xefAWtww_Y\xcb\x81\xd3\xe5w{\xbc$ .\xc3Mj\x92\xd7U\x9a\xca\xd8\x8e\xbbg\xd0\x86\xb8\xfb\xb1\x0b\x16\xabU1\"\xb2V\xd8\xe8\x0e\xa4I\xdb\x08\xa1\x9an\x9a\xeeU\xaf\x94\xf2\xa8\xef\xbd\xaa\x14\xc5p\xeb\xa0:\xbd,F\xfd~5v\xbc\xc7j\x19T\x8b'9J\xf1\xc9\xd3cj\x0b\xbd\x07C{p\xec\xd8F>-\\\xf1\xbe\xd2\xc4e \x068e\x9a,\x91\x88\xceQ\x0d}\xc8t\x9a?K\x8b\xfd<\x80\xce!e\xe9\xc9z\x19\xa4\xb6e9\x1a\xc7-\x1d\xeb!\xe3t\xaap\x9b\xf7\x8e\x0b\x87\xd0\x1aA\xc2\x82\xd5:<\xcf\x91\x9c\x1e\x91=\"\x8e\x93\xab\x89\xe8\x0b\x92%\x86\x1e\xabj\x85\x88R \xe6\x0cm/t\xces\x911We\xd3\xf3o\x9f\xd9F\x82\xee\x9cYC\xa2\xee\xfc\x84\x9e\x8b\xc0\xd7\xe4\x15\xcak^\xbbx&\xf5\xec\xbc\xd2\xb1\xdfnO\x1d\x17\xcf\xa1\xf4\xd0\x14\xdb\x0b\xa7\xebG\xa1\xef\xa5\xf6\xdc^\xa0\x02\x9a\xc2\\<\x89\xce\xf2>\xdc0\x0b\xcc\x15<\x85\x9b\x13\x07\x96\xec\x9e\xd3\xc2\xc5\xb3\xf3l|Cke\xe2\xc2xM't1^\x1b\xf4j\xd2MK\x18B\xb2\xc9\xe6\xd9\x90\xe4<\xe4\x81\x83\xd6w\\Cr(\x0elRO\xb1\xc3\x95\xbd\x19\x88\x8d\x7f\"\xb5\xda\xdf;vl\x8b\xd6n\xb9[\x88\xc65f\xb8\xc0\x8e\xa9`[Fp M7\x19E=\xf5\xda\xf9\xdc\xfe\x89A\xefv\x928\x1f\xda_xW^\xe2\xc7\xc1:\xbd\x9dy\xa9\xe7\xec\x04+u\xd4;\xe3\xcf'\xd7\x83^gr}\xf8b\xbasY-\x12\xb1:\xc7\x9f\x0f\xa7mg\xb8s\xb9RI\xdd\xd8\xeaZ.X;\xb2\xef\xb9\x19K\x12/\x0c\xd2\xe0K\xf2\x83x\xd9t\xf3@\xd8\x92\x98R5\x15\xd7~\xe8Y\xce\xd2y\xb4n\xb4\x12 k\x95\x85\xde>\x1d\xf7\xa6\x0e<\x85\x8e&'\x95\xed9\xdc\xd6\x84\x8a{\xaf\xbb\xa2\xd2\xb3\x1d9\x8e\xb0-1\x0bm\xdcMI\x922\x15\x8e\xe5]DY:\xbcXz\xe1[\x0b\x86\xe0a\xc4<\x19hB\x81M0\xa0\xc0\xe3\xdd=\xbd@\xb4\xbb\xbf\xeblc\x1e\xc6`\xf8\xdd4\xfa$zG\xe2\xe7^Bl\x0c\xd1\xda\xa6C\xa6t \x03\x96W\xe3\x9e\x1a$\xaa`\xbb!\xec\xe9\xc3:\xf4\x0f\xef\x1e\x98\x027Yy4[\xcaUE\xf7\x0e\xaa h\xf8\x04\xefU\xb98\x93\x05\xaad\x8f\x89\x02\x87U\x81\xc2\x03\xae\xfeS%\x81\x98N\xb8\x14\x93e\xc8\x05\xcarIf 8\x85\xa4+\xf2\x87\xe5\x05\xebg\x0d\xb3\x12V\xe6\x0d\x03k\xf2\xa4\x8e\xfal\x80\xaa\xc2<\x92\x93\x1b\x06<\xdfX\x1b,K-\x9a\xc9E}8\x05_\xa4\xfb\xa3\x9b\xa2\xf2\x82\xe0\xc1DS\x19\xaf\xc2\xeaa/\xc3B\x15;\x1aA\xc7\xa3\xdb\xae\xd3\xa3\xbb\xad)~\x80\x89\x9dm.!t\xfa\xdc7\x83\x07\xc1K\xb9\xa2\xb9l\xf2f\n\x90\xd89\x81v;\x84'\x10\x9f8\x10\xf0\x00\x83<\xbcv\xa8\xe6\xc6\x16s\xfa\xa0\x18\xcb9\xa5!~.Z\xed*\xc7\x11\x15\x8f\x83\x1c\xd7TdfX+\xe5\xb2\xdb\x10\x1d\xcd\x87\xac\x88\xdf\xde\xc6\xf0\xa4\xa5\x12 \xae\x86(qW\xf5\xda\x86\x94G$5\xe8m\xc4\xccUB\xd8\x95\xb4$\xef\x95.\x06h\xdbf]\xd4/`\xcc\x9d\x06NE\x07B\x18\xc2\x8c,IJ\x10R\x8ap\xd8\x8c\xa8\x02\xf5\xaa+\x99O\xfa\xb6\x13-D@1\x88\xbb\xe2\xdb\xee^\x95\xe8 \n\xaeO\x92\xb5\xbb\xaf\xcb\x92\x85\x8c\xe0\x8eC\xc8\x0bhu\x83\x04%zSx\x01:\xa5\x01c\xda\x11\xa3H:r+>\xcc]\xe5\x149>\xe5\x88hZF\xb3\xb2\xbe|\xc2\xcb\xc7v\xe8B_:\x9e\xd0w\x93e\xe0\x13\xbb&\x91\xb27N\xa76\xa5\xaaI\x193\xef\xbeR&-H\x93\xa8 0^\xefe!0)\xdfd\xdc\xd7\xe1\x14\x02J\x8dQK\xf9\xe8\x11\x84\xf0\x94\xd9\xf4R<\xd7\x88\xa6\xb6\xd8\x03\xdbv9f\xa4Z\x99_\xf3P\x98YOx\xfbt\x08<\xc5\x1eS\xda\x1e@\x1b\xbd6P\n\x0c\xf9\x03\x1c\xa0\x93\xbf\x84a\xfc\x02\x87\x91\x7f\xfar\xc8_\x0e\xa1\x83\xceXO\xa1\xe7\xb2/#\xad\xd9\xf0\x8aG\xbc`\xac#@\xd6\x11\xc3\x13\x08N\x1c\x88Xh\xb1t\x1c\xd3\x9e\xe8\xfd\x11\xa3;\xe3\xc6~u\xb76\xed\xe2A#.\x19\xe5\xb3\x94m\xb7\x94\x1dp\x1bIO3\n\x18ZJ\x0b\x15\xc4\x16M\x08\xb2`\x8d'\x93lv\xd4\xebu\xe8\xdf\xf9|>\xad\xb8\xa3\xc7\xa2Po\x97\x15\xea\xed\x1e\xcc'\x93lN\x06\xf8sN\x06\xf4\xe7\xa07\xc3\x9f\x83\x9eZ\x05\x9dd\x0b\x9b\xd9\xf5\xc7\xac\x99\x0bSs\xe8\xd85\xfe\xbc\xa1S\xe8\xc3e\x9f\x0e\xe5Jg\xe4\x00\x8b\xcf\xe6\xf3\xa9\xf3\xd5\xe0\xbd\xa52\xf0\xf2`/\xe6\xf3)\x02|sC o(\xcfk~\x9b\xe7Fw,\x16\x89A\x95Y\xb1\x999\xe9\x11\xf6g>=\x15i\xefm\xde\xe9A\xaf7\xe3\xb5\x8e\xb9G\xcd\x94\xd3\xcd[\x0bEL\xc7X\x87\xe5|XU\xff\xce\xa5^\x8e#\xd1\xd5S+\x0f\xed\xe6BX\xad\xbf\xd2\xef%\x8cx\xb6X\x1bGg\x9f\x8e\x8a\x91\xe2\xa0\xe7\xd0\x06\xdf\x05\xeb\xd2\xba\xeb\x9eH\xf9\xa9r\xe9\xb0+\xc2w\xdf\xc6\xd5s\x898\x10V\xa3\x01\x8am\xac;\xb1\xf0\xd1Z\xe3\xc7\xff\xe5\xe7~mj\xddkd\xf5\xccY\xc8JvdS.\x9c\x1f\xf13<\xe2;\x18\xb7\xc72\xdb=\x1a\xf7rC\x02U\x13\x9f\xd31\x8d\xa8F\xde\xd7Pr\x14\xff\xa2\xdc\xdf/\x1d\xb7\xdb\xc1\x14\xe9y\x00O :q\xd81\x87\n\x06\xe98\x98\xa2\xeb\x8dA\x92l:\xcf\xd4`\x83A\xcfU=s\xa3\x96g<\xb9\xf6{\x9d\xc9\xf5\xec`r=;\xeaL\xae\xe7\x07\x93\xeb9~\x99O\xb2^\x9f\x92\x82\xac\xd7?\x9cOw.kpf[zx\x1f\xe4\xb2S\x14\xdfR\xc7a\x96q\x81>\x11]\xdb\n2\xdd}\x12\x0f\x9dJ\x90\x03\xebG?g\x0d\xc1zV!\x14\xd6\x8f\xfe\x96\x1e\xfc\xb7\xf5\xe0\xbf\xa3\x07\xff\x8fz\xf0\xcf\xeb\xc1\xbfI\xc1\x9e\x02\xfe-=\xf8\xdf\xe8\xc1\xffV\x0f\xfewz\xf0\xbf\xd7\x83\xff\x1e\x05?W\xc0\xbfC\xc1\xbe\x02\xfe'\x14\\M\x91j\xfd\xe8\x0f)x\xa6\x80\x7f\x81\x82\xab D\xad\x1f\xfd}=\xf8\x17\xf5\xe0_\xd2\x83\xff\x17\n&\n\xf8\x7f\xd5\x83\x7fW\x0f\xfe==\xf8\x1fP\xf0K\x05\xfc\x0f\xf5\xe0\x7f\xa4\x07\xffc=\xf8\xf7)8P\xc0\xffA\x0f\xfe\x03=\xf8?\xea\xc1\xbfL\xc1\xaf\x14\xf0\x1fQp\xf5\n\xab\xf5\xa3\xff\x89\x82_+\xe0\xffY\x0f\xfe\xa7z\xf0?\xd3\x83\x7fE\x0f\xfeU=\xf8?Qp\xa4\x80\xff\xb3\x1e\xfc\xbf\xe9\xc1\xff\xbb\x1e\xfc\x7f\xe8\xc1\x7f\xac\x07\xff\x1a\x05\xff@\x01\xff\x0b=\xf8_\xea\xc1\xffJ\x0f\xfe\xbf(8S\xc0\xff\xb7\x1e\xfc'z\xf0\x9f\xea\xc1\xff\x9a\x82\xab d\xad\x1f\xfd\x19\x05\xdf(\xe0\xbf\xd0\x83\xff.\x05?S\xb7\xc3oS\xb8\xa7\xc2\x7f\x9d\xc2\xdf,\x14\xf8\x9fSx\xaa\xc2\x7f\x83\xc2\x93jH#\xebk=Y\xfeZO\x7f\xbf\xd6\x13\xda\xaf\x91\x88+\xe4\xed\xeb\xbf\xa3\x07\xff\xbc\x1e\x8c3\xa0\x10\xc3\xaf\x7fA\x0f\xfeE=\xf8\x1f\xe8\xc1Hh\x15\x8a\xfa\xf5\xdf\xd7\x83\x7fI\x0f\xfe\x87z0\x92 \x85,\x7f\xad\xa7\xd6_#eR\xa8\xf5\xd7\xbf\xac\x07#\x99P\xe8\xef\xd7\xffT\x0f\xfe\x15=\xf8W\xf5\xe0\x7f\xa1\x07# R\xf0\xed\xeb\x7f\xa6\x07\xffs=\xf8\xd7\xf4\xe0\x7f\xa9\x07\xe3\x9e\xfd\xab\n\xf8\xd7\xf5\xe0\xdf\xd4\x83\xff\x8d\x1e\x8c\x9b\xf3R\x01\xff\x86\x1e\xfc[z\xf0\xbf\xd5\x83\x91\xd9\xff5\x05\xfc\xdbz0\xca\x00\xca\xc6\xfc\xfaw\xf4`d\xb1\n\x07\xfb\xfaw\xf5\xe0\xdf\xd7\x83\xff@\x0f\xfeC=\x18\xd9\xb7\xc2\xd8\xbe\xfe==X\xcf4\xbf\xd6s\xc7\xaf\xffH\x0fFv\xf2\x93\n\x18\xd9\xc9\x17\n\x18\xd9\xc9_W\xc0\xff'\x05\xbfU\xc0\x7f\xac\x07#'\xf8D\x01\xff\x89\x1e\xfcgz\xf0_h\xc1\xdf\xfc-}i\xe42\xd5\x981\xd6\xd7\x7f\xaa\x07\xff\xb9\x16\xfc\xcd\xcf\xe9\xc1\x7f[\x0fF\xd2\xabH#\xdf\xfc\xbc\x1e\xfc\xf7\xf4\xe0_\xd4\x83\x91 (\"\xcd7\x7fW\x0f\xfe\x05=\xf8\x97\xf4`\xa4\xdf\x8a\x90\xf2\xcd?\xd2\x83\xff\x89\x1e\x8c\x84Z\x91/\xbe\xf9\xc7z\xf0/\xeb\xc1Hc?S\xc0\xbf\xa2\x07\xff\xaa\x1e\x8cT\xb3\x1a\x93\xc1\xfa\xe6\x9f\xeb\xc1\xbf\xa6\x07#\xa1>S\xc0\xffJ\x0f\xfeu=\xf87\xf5`\xa4\xc8\x8aT\xf0\xcd\xbf\xd6\x83\x7fC\x0f\xfe-=\x18)\xf2\x1b\x05\xfc\xef\xf4\xe0\xdf\xd6\x83\x91\xf4VC\xe4X\xdf\xfc{=\xf8w\xf4`$\xa6\x8aP\xf8\xcd\xef\xea\xc1\xbf\xaf\x07\xff\x81\x1e\xfc\x87z\xf0\x7f\xd2\x83\x91\xc6*\"\xe47\xbf\xa7\x07\xff\x07=\xf8?\xea\xc1\x7f\xa4\x07\xffg=\x18I\xef\x0f\x150\x92\xdew\n\x18I\xaf\"\xe3~\x83\xa4W\x11f\xbf\xf9c}i$\xbd?\xa3\x80\xffD\x0f\xfe3=\x18\x89\xe9\x97\n\xf8O\xf5\xe0?\xd7\x82\xbf\xc6\xd5y\xa92\x1e\x9c\xab@\xe1<\xdf\xb0\xe3\x9a\"\xb9|\x83\xc2R\xa4\xc2Q\xb0|\xac\x927\xe4\x1bI\xe1\xcab\xf2\x08a\x8ex\xdb\xab\xe9\xee\xa3Q\x945u\xdc(5\x84tL\xa6\xa5\x17\x9aT\x895J!\x83_\xc8\x81>\x1d\x89\xa2q\xcbx\xf1~\xa3\xeaKo\xde\x12zc\xbcK\x92\xf2\xe4\xdd\xdc\xf2\xc6\x9c\x92\xe4\x81\xa3}\x93\xdb]\xb2\xc2\xee\x82\x1aL\xa6x&\x9b)\x9euv\x12\xf4 \xeb\xf5:\x93\xeb\xc1|r\xbd\xebu&\xd7{\xbd\xc9\xf5\xfeEgr}\xd0\x9b\\\x1f\xd2/\x87\xf3i{\xe7\xae6j\xd1\xc9\xf0>\x9d\xf4:_N\xc7\xcf:?3\xbd\xc5\xff\xbf\x1a\xb8\xef\x11v;\xeeu\x8e\xa7\xf4+{\xc8\xbf \xf4v\xfc9\xfb\xd9\xeb\x1c\xc3t\xe7\x8e\xdd\x0f\x99g\xd8Vv\xae\xdc\x085\x99\\{\xfedr}\xd1\x9fL\xaeg\x87\x93\xc9\xf5\x9c\xfe\x87\nV:\xe1l\xc6q\xca\xd9\x9c\xe3\xa4\xb3Y\x9f\\_0\x85k\x8f+\\\x0f\xe60\x99\xa4\xf4\xf5\x8b\xc9\x84\xbe\xeb\xf5P/;\x9fO&\xe1d\x12c\xa1\xc1\x11\xfbs<\x99d\xfd\x83#Z\xa2\x7f\x84\xd6\x16Z\x11\xfb\xd3g\x7f\x06\xec\xcf.\xfb\xb3\xc7\xfe\xec\xb3?\x07\xec\xcf!\xfb\xc3\xea\xec\x1d\xb3?\x1ek\x81un\x9f\xfe\xd9\xed\xf5\xaaq\xae\x98y\xcd\x826\x0b\xecm0\x9d\xcd\xda\x96\xba\xe1P\x0b=8\xe4\xc3>\xbc\xd0[\xc9\xe8R\xd3I\x9d\xd3\x99\x9a\x1fL\x98\xb6{r\xad\xda\xba<\xad\xe9Mt\x0d-A\x95\x06\x8dU?\xeb\xfc\xcc\x84)\xdaQ\xd3\xceT\xed\x93\xeb\x191\xd9\xd7\xb60\xe4\xf9w2\xe4\xa1\x89l\xbcq\xbf\x96\x92E-\xcb\xed~\x9e\xcer\xb6\x96\x8a\xce\xeb\x8b.x\xd1-\xcd\x07\xb7&\xdb\xa9S\xb5>\xce\x8c\xd6\xc7\x85\xc1\xfa\xa8\xb5\xb5\xe2\x1d\xe8\x8d\x0c\x92\x0b\xbdA\xf2\xaad\x90\xd4\xd7G\x9f\xcd\xca\xaf\xdd\x14&\x96\xf1<\x8fs\x8f\xf3\xdf\xa6\xd3\x86\x96:\xfbt8\xbb].oW\xb71\xb9Mn\xd3\xdb+\xe28\xa7\xdc^9\x8e]\x98\xbb`}`\xa9\xf6NX+\x15}t\xfb\xc9'\xb7\x9f\xde~\xf6\xe2\xf6\xec\xf6\xcd\xedO\xbd\xa8T\x04mX\x9a*+\xfa\xb7\xdc\xa4\x7f\xe2\x8d\xa6\xe6-\x17\xf7\xfb\x87\xf6\xe9\xb0\x7f\xf6\xe6v\xf0\xea\xa3\xdb\xdd\xcf>\xba\xb5O[\xe3\xfe`w\xeaL&\xb37\x7f\xcd\xb1OG\x93\xc9\x05\x92\xf1\xf3\xa9#\xbf\x93\xa4\xb7\x83pv\xbb\x1b\xcfJ\xef\xa4\x8b\xfc\x9dg\x9d\x9fa\xef\x04.\\I\x03\xbb\x97\x8dJ0\xaf\x9b\xcd\x98\x97Y\xe48\xa8\xe6\xf4a\"\xc7a\xd5\x05\x98'@\xeb7:\xd0V;\xcc\x82l\x06_\x12vw\x9b\xe7\xc6\x9cy\xa9w\xae\xcf\x7f\xba\xf0\x92\xc5\x10o\xb6\xc5\xae\xf2p\xe5\xad\xf1\x99\x1d\xd1q\x07\x1a\x0f)\x91f\x0b+(=\xbd\xbb\\\xa6\\\xc6\x11rYU^\xe3\xf6o\xc55\x97\x0bf\x8a\xdb\x8b\xc7\xe1\x03\xed\x9d\xdd\xc4\xec\xc8\xa8\xb3%\x87\xdb\xd9\x92Y\xd6\xcc%\xf1b\x1b-\xc8\x04\x03\xb9\xe8\xa4_1\x13T\xd2U\xfd\xcaD\x18\x7f;f\x1e\xeb\xe3\xfe\xb4\xde\xb4N?\x89\x9c\x0b\x92\xf6\x81e\xed\x92\xc1\xdc\xab\x11\x13x\xca\xf0K\x82\xf2i\x19\xb8\xf0(\x12fe`\x82%\xbd\xf2\x1d\x8f-/u\x1c6\xca\xd2Z\x84\x970\xb5\x9d\xf1d\xfa\xd5\xfb\xdb\xe9\xce%\xd2\xf1\x0f\x1eYR\xb1r3\xb7\xf9}\x07\xa7\xfb\xe1)R\xf4\x89\xed\xdc\xe2\x06\xea\xb69`\xea`M\x1f\xf4\xbb\x1f\x9e2~\xf5\xc1\x9d\xe9z\xcbn\xa1\x0b\x1b%n\xc2\x03\x01o\x1e`\x18\x8d!x\x0e\x13\xfb\xb3\xd2\x8d\x9f\xcdQ'\xcf\xe5\xa6$\xbe\xccs\xb9\xed\x8c?\xefN\xdb\x1f\xect\xc95\xf1m\x8cR\x16\xe0m\xa8\xe2[\xf7\xe5\x8b\xf3\xef\x7f\xf6\xfa\xcdk\xbc\x87j\xe1\xa5\x15\x8b\xdf\xf6Kb\xdf9\xefw\x99\x03W\xd9\x15\x7f\xbb\x99hE\xcc\xd9%\x08\xb7M\xfa)\xed^gl\x9d\x9f\xfbQL:_$\xe7\xc9\xc2\x8b\xc9\xec\xfc\xdct\xa7\xe8\xae*\x05\x8dc\xff\xc6\n\x83\xe6C\xdbf\xb3&\x18\x03\xd2\x96\x85\x87\xac\xe3\xd1\xa3\xdc5\\\xa6I\xe3T\xef\xe6Y\x90\xa5\x0e\x0b\x1e\xc6c\xc6\x90;\xcf\xbe\xce\xfb\xd3:?_F3/Y\x9cSF\x7f\x9e\xc7\x94;?\xd7\x1c\xb9\x14\xbf\xf4\xf2\xf6\xdc\x16\xb5J\x93$\xa6\xa3<\x17\xc1\x1cl\xc5\x83\x0b\xa4\xb33Q\xa6\x0fJ\xde\xca<\xc4P\xbe\xdau\x99\xf4\x85\x7f-\xbf\xba\x82\xd7]N\xd9\x8dU\xe12\xfe\xa0s\xff\xe3\x9f\xce\xfc\xda\xc2i\xf9\n;\x8e0\x90\xc6\xfd\xa0\xe3\xac\xc1\xb1\xa61j\xf6\xb2X\xf9\xe6a\x16;\xa8]\xde\x89L\x18\xeb\xbb\x10\xb2\xdb\xc8\xe8\xc7')\xd7\x08\xf7\xfa&L8\xb8/uh\x12I\xc6\xd3\x07\x12B\xb42\x08\x0b\xd5\"\x89a\xebe\xe0\x93\xa6\x89\xdf\x08\xb9\xf4Bo\xccPH\xbb$-;\x14\xc1\xb6l\xba;\x8b\x04i\x1d\x8c\x1aE\xba\xebh\x8d\xa9\xda\x0bl\xc4k\x15.t:\xf9\x1c\xb9\xd0\xbb\x13\xbb\x15\x93\xf4\x974\xf8\x90\xc7\x13+T\xb6\xe3p:\xee7q\x9f\x87\x1cI\xee\x8b[\x1e\n\xa5t\xa5\x9b\xb1\x0f\xdf\x93Mw\xb2:\xad\x18q\xca\xae\xb9E\xc7\xa7\xd5n\xb7%\x0c\xe1at\xc6\xb4\xe1)^\xb3\x0f\xc7\x01\x9dm\x96\xe0~\x83}m\x1e\xed~\xe3hM\x18\x14\x8bT\xa5\x0e?P\x99n\x96\xdd\x95\xfb7\x12#3r\xb3\x1b\xa1\xa9\xb6;\xf2\xd5Q\x8clb\xb1\xac\xdb\x12\x80e\xcd\x96\x00\x17Q\xb4$^\xc8!\xa7\x94\x0d\xf0T\xae\x16\xb2\x9d\x94\xae \x93\xc8F\xf7\x90)\xb7_\x8c\xd2&\xc0\xb5\xb8$\x1b\xa8\xee\xbf\xdd.0\xd6\xf4-v\xa1f\x03\x16\xdd\xd0\xef\xbe\x101QO\xd3P\xd7\x80\x95\xbbe\x86\x1brv6\xcaoW\xf5\xef\xb7\xedv\x8f\xf6\x1c;\xb4\xf7v\x0f\x9c\xad\x8c\x90\xe63{_\x7f\x1f\xeaPw\x18\x0b\xed\xc3\x83\xc696,s^\x80q\xb3\xcc$\xd0zE\xe0!\xdd]F*\x0c\xb7\x02\xbci\xad\xbe/\xeaH\x04\xb5\xdc\xd5\xd4\x00\xfc\xaed\x84\xe1*\xc3\xda\xbe\xcb\x1f>\x8e\xc4\xf6\xc6\xe9\x14/lx\x86l\x17\nT\x85\xd0^\xfa\x94\xe0\xe4\xd3a\x14\xe0}\xe4Jp\n\xde8AQ\xdc\xa7\x82\xaa\xaf\x91\xc7\x01\xee\xa3Q<2\xdc\xa1P\xe2\xf8p\xbd\xeb\xd1\xde\xd6\xa8 \xc8l`\xa2\xf8\xfd\x928\xf4\xe8\x11\xa6*\x18\x0f\xa6\xec\xd6*\xfd\xde\x9b\xba\x0c\xd8\x9fR~\x96\xb7\xa5\x18\x8e\xa1z\x04J)Af<\xd4Ub<\xdcu\xd6\xfa\x87\xd5\xfbF\xe2:\xa1N\xe5\xd5W\xd5]\x83\xa69\x14wx<\xddd&H\x98\xf8]|e\xf8\x18\xba+`i3b=\xe5\xa3\x0d{\x0e\x96\xbc\xc1(M\x0b\x17f.\xac\xd9\xaep\xe1\xca@1\x91\xee\xca]\xbeAO\x8b\x99\x0b\x0b\x17\"\xb8\xe5w\x0c\xaf\xe8\xa6\xbc\xa9\x1fA\xcd\n\x8a\xb7\xee~\xfak\xbc\xad[]\x91\xeaA\x94Yy\xb6:\x8b\xdeC\xdel>L\x91\x8d\x85dZ\x96\xcb\xfd\x0f\xdea\xb91\xd1\xdf\xcd$\xc6\x07j\xeb\x9e\xa2\xa1>|P\xbf\xaf\xf7b\xea\xf7\xaaV4$\xd5\xbd\xc6 \x1f\x9b\x1e\xf04\xc4\x17D\xf4\xcbh\xae\xde\xd7\x04I8\n\x0d\xb5@.\x1dQF\xe7 &\xfa\x042\x16C\x9aO\xabW:\x13\x96\x11\xbd\xdd\x0e9\x06Q\xa8Z\xbd2\x0e\x10)z<\x13?\x85F1YH\xc9\xf7\x13\x8c\xcd\x8cX/\xc8\xee\x1e\xeb=\xd5\xf6zz\x83\xe8^\xbf\x8a\x12\xc8{\x95@H>\x17\x8e\xaa\x885\xe7\xf0*\".U\xb1\x00\xbdI\x84\xad\xeb\x99\x08\xa2WuOY\x94K\xc5\xdeM\xb5\xc4L.\xc18v\xb5\xc8\xd5\xfd5\xb0B>\xb9q\xe1\xd2\x85\x95\x0e\xfd)\x9a$\xdalT\x17\xf8\x84h\x9e\xbc\x83\x11\x9c\xc3),`\x08\x9e\xf6\xddk\x18\xc1E^BW\xc7\x19e\xf4\xb4\xa2wT\xacY\xc3)\xcc`\x08\xef\x1c\xfak\xa6\x16\x7fA\x8b\xd3Z\xaf\xe5\xe2\xd7\xa6\xe2\xcfD\xc5\xd7\xean~F\xf9\xb9\x8f\xd62u#\xe3&\xf5\xe5`Q\xad\xbe\xba\xd7\xcey\\\xe23\x0c\xd5\\\xb3\xbb\xf2\xf6Zgy\x85+T.\xae\x04;s\\8\xa7\x909S\xfc\x06\x9aU\x1bB\xc4\xa1\xefJ\x0f\xd4\xb1\xb5\xec\x10\x1ea\x90|=\x8dz\x0d#8Cer\x1e\xd9\xc8:?g\x89\x0eg\xe7\xe7\xa6\x0c\xd3_\xc0\x08^H\xaf\x91\xeakzj\x87\xf6\xbe/\xea\x0e\x83o)\x8e\xc3)\xa4,\x984*Vk2H\xbe\x84\x11|\x81Z\xd8\xa28\xd1\xcbD\xc6\xc9\xbe\xb4\xdf\xba\xf0R\xcc\xe3J=&n\"\x03\xb5pQm\xb5\xf6L]\xbe;3F\x95\xd3qc\xec\xb1\xfe\xd4\xb7{\xbc\xaf\xf5\x0b\xc9\xbe}\xbf\x90\xaa\x8c&;\x88`\x01o6\xb3\xd31\x99V'\x83~2\x89\xbey\xb3\x19\x06\xb5* \x94#2\xaf\x8eLq\xe0\x88\xca\xbe\x1a\x99v~\xab\x93\x1b\xde\xcf\xe2\xb3\x91D\xc4\x99i\xe8l\xc48\x7f\x9cbXs[f\xf3t\x8aM\x90\xa6&\x8c\x08m\x8acx\xac\x8fi\xac\xb8\x9ad\x06\xa9\x81\xbbE\x1d\xeb\xa5\x80\xbd^\x95\xdf\xfb*_\xa7\"\xc0@\xe5\xfe9\x8b\xfe\x1e\xd3\x15WytI\x1c\xf8\xc8K\x15G\xd5\x92$\x80a\xd7k%\x81O\xbd\xb5N\x0c\xc8\x9f\xbfB\xa5v\xb5\xc8\x8d\\\x849\xb6T\x8b\\\xcaE\xce\x88\"l\xacJ\xcfQ\x97^-r^*\x82\xca\xf4j\x91\x0bE\xee\xf9^6\x9f\xab\x1d~W\x996\xef\xa7\x02\xf2\xaeZ\xe8z\xe3@\x94g(\x17\x9c\xc25c\x0b\xaf\xe7\x1b\x07\xfe\x13\xb4:v\xe1\xda\x85\x17.<\xab\xa2~\xf2.\xc0\x08|Z\x1d\x96\xef%\x04\xde\x0d\x158p\x06\x98\xcayA[\xa3r\x9e\xd0\xdb[`\xcf_\xcf\xe7 I\x8b\xe7\xecw\xad\x00B?)\x06\x10\xbb\xc0 vy\xf4T\xf6K-\x8f\x1d\xbd\xd0w4\xb7|6\xf5\xb6\xf5\xc2\xa6\xc4=\xc0\xab\x1e\xec\x1bqtY\xbf\xb1\xb5\xa5\xda\x1a\xc2\xd7\x06\xf8Um\xef\"\xbb\x9d\xba\xd0\xd6i\x9d\xf1\xedE\xed\xdbi7\xf4V\x84\xe9/\xf1\x1b\x06jY\x91$\xf1.9\x98\xff0T\x7fc\xe8\xf4\xaa\xbeYfYR\x83\x88\xe6\xef\xcf\xf4\xef\x0bQ\xcd3\xbcvi~\xed\x0b\xe6.P\xcd\x1d&>\xb9Xf\xd3\xfa\x13\x0ch\x8d'\xbd\x96\xd0P\xa0\xb4\xfaE#\xf6 \xe9\xed\x19\xd74\x98\x9b{\x9b\xd7\xf5\x16\xe7\xc3 \xaf\xc1\xed\x08\xe6.<+\x0e\xa2\xe6\x86_b8\xc5\xd7\x88\x88\xaf\xd1T m\xe0Zy\xf0Y\xa1\xb1q\xe1\xa5az\xcf\xcd;\xba\x10\xe3\xcfD\xccJ:\xa83\x11M\xb6\xf4\xa2^v\xbc\xbb\x11\xdb\xe9\x16 3\xf5\x94\xed\xae.i\xdb\xca\x87<\xad\x0e\"\x8cA\xf5\xa5\x89\xb7\xaf v\x85\x15\x8e\xdbm2\x85\x11:\xf5\xa7\x95\xcbq\xce\xb7\xa11\xfbv\x86W;65\xa1@\xd3\xb0\x8cx\xb0\xd7\xd3i\xcc\xfa\xaa\x08\xf5@\xda\x03\x9ewO7\x89\xa8Q\x81G\x10\xa8\xf38gv[\xcd\x89\x123\xef\x19S\xa5.1m\x82M\x1c\xc9\xd2\xd4\xf2\x8d\xf4\xa8Hm\x00#X\x9e\xc0\xba\xc6\xe4\x81\xb9\xb9\xc7k\x83]\xa0e\xfb\xa8\xb1\xc0\xdc(C\xc9\xcbn\xe1lh\xe3\xa0m\xcc\xd03YG\x13i\x1b3\x96[\x88>\x96T\x0c3\x0d]\x14\xe6\x82V%Bg\"+\xea\xd8\x0f\x8dCO>+T4\xf4\xe9il\x0dO`i\x9c\x99K\xb4\xa7\x88\xf91\x98UV\xe8\xce\xb80L_\xe6\xe4\xfa$\x1fox\xae\xf0\xfc\xbb@,J\x11\x7f\x86\x90\xd9\xf4H\x8cP\x86^\x89\xc9\x8c,\x9b3\xce\xe1\x94\xf6p4b\xc7y\x8fW\xc2P\x13\xeb=7\x9b\x9cQE\xa3\xe7 \x171\xf1\xde*OT\x83\xf0\x0d2L\x94\xb2\xfd\xc2\xb7\x1d\xfdF\x16u\x14\x1f\x0dI\x88\xbf7\xa6\x89\xbf@!N\xaaU?\xf5\xefP\xba\x93\x8a\xa9\x03\xba\xa0\xfb\xe6\x1dm\xad\xdc\xc9\x80\xa7lS\xa0\x8c\xd3\xdb\x96\xd8\xf0r\xd8\xf5\x0b\xfa\xecBV{#D[\x16\xdb|'\x97}\xc7\xfc\xd0\xd9\xd4o\xc0\x12\x13\x99)\xe7?(\x82o\x99\x88P\xa6\x91\xfa\xeb\x0e{=}\x0c\xca\xbb\xfbN`\x10\xe1\xc8\x85\xe0\xce\xc7\xe2\xbd\x9e\xfe\xbe\xd0Qc\x97\xd4ZE\xcd\x11\x8b\xefnpHc\xaa\xc6\x08o`G.\x84\x1b\xdc\x0ehf\xb2\x1a\xbd\x816^=)\xc5\xa7\xcf5KR|\xfat\x1c@\x1bX\x8c\xfaqh\xf0>\xbf\xfbl\x9b\xf2\xae\xe8\x8c\x11\n\x0b]s\xe6\xf92y\x11f+\x96\xb0K\xd5R\xf0\xd7.I*\xf1[vfNT\xddEV\xca\x0c\xa4#\x15\xc2J#\xa9\xe5\xc6S\x18V\x0c\xfe.\xc46\xcb\x1b\x94\xd7\xa6\x0dO \xd5XD\xb8'\x1aMh5K\x0c\x0c!\xd0\xe3\xa4\xf7-#M}\x92\x83\x9e\xc8\xe9/c\x91\x9e\xe0f,\x0f\xbf\x86\x89a\x8cN\xf4\xe2D\xea\x15\x8d\x83v\x1b\x13\xc4o@\xc1\x9aB^7N\x84\x81\xb8\xdc\xfd\xa6\xe6\x9eAy\xdc?\xd4_B\xd4'\x0dQme<\x81X\xbf*\x82&\x06\x1b\x9a\xee.\xd7\xf6r\xa8\x8e\xc4\x85\"\xec\x84\xb2\x92\xe8D\x83\xa99\x02\xa3\x00\xca\x9e\xb7\xd0\x19$\xd3\x96ZWJ\xb5\x96(\xbci\xcb.P\x0e\xbe\xbd\x859\xfdoI\xff[\xab\xa5f\x98\xb3\xfc\x94\xb2\x8c\x1c}\x99\xae\x8d\xca0\xba\x9c\xa1r\xce-\xa3\x84\x87~)<\xbe}\xcb\xcf74\xbb\xeb\x8b\xf2\xb3m\xb1*\x90m\xdf\xb0.\"8BUS\x01\xb6\xd6^LB\x0e\xc0\xf7\xd7\xac S,I\x05\x0b\xd5P\x05\xf8Z\xaa\xd2a\xe2\xda\x8d\x0bW\x0e~\x9f1\x03\xf7\x8d\x9e/\xcd\xee\xbb\x8b6&'\"-\xac\xa0\x17\xe9\x89\x03\xb1\xc8\x8a\x12\xea{\x17\xdfy+\xeasS\xec\xe96\xa2\xce\xb6\xdc\xb4?\x0c\xb4#\xe0w\xbab\xae\xa3\xf8\xb6h\xd4\xdd\x15\x1a\xa6\xa4\x1d\xfd\xaa\xec\x16\xe9',\xc3d\x82\xc5\xf4d\xe3|\xfa>^F^\xba;\xe0\xb6w$\xe3\x95\x87\x07{\xfa\x87/\x85\x86E\xf7\xa4\x7f`|dj\xacP\xd9\xe8\x1f=_z\xab5\x99\x99K\x98\xda\xa4\xcfJ\x8db\xa6\xdc\xb1\x0e\x83*o\xea\xeb+\xe9\xeb+\xcfr\xf3G\x05^\xe8\xee\xd5\x07D\x01r\xfbGu58\xae(\x0f\xd0\x18R\x81 \x03H\x05,<(*`a\x0b\xa9\x80\xd1\xfeQ\x85q\x9bG\x05\xfcC\xe2\xbd\xcd\xfb\xd1\xea\xbb\xdbm\xc1\x88o\xc1 '\xf8\xf8\xb3\xd5\xca\xc6tW61\xf7\xc6\x1d\xd9\xec\xcf]#L\xa6fu\xe5F\xfb\xb8F\xf3Ul\xf1\xbeb\xf3\x03\xbe\xcf-6\xc3\xa5d_tr\x18\x1b#\xdd0\x9a\x9177k\x06S\xab\xc0tQx&U\xeba)\xca\xb1\x9e\xb4T\x8f\xc6\xb5\x80\xd2\x10vs\xb8\x98\xe0\x11\xaf\x1a-O>I4~\xba^\x1da\x14\x9f\xfa\xc4\xd3W\xb6+\\Q\x95\xfe\xb1\x98S\\\x8b\xb3\xfbG}'?Zn\xce\x15\xfa\x86\x03Z\x7f\xa3\x03\xdav\xb2eu\xe9P\xf7\x14\xcb \xe3U\x7fx\xa1=\x1eO\x0d\"YHE\xb2\"\x85\xbct\xc8\nq\xff\x97U1-\x9eF\x8e\xb9:\x98\xa4\x8fm\xeeU]\x19\xd2tm;\x19b\xa0<\xe5\xbfQ\xfd$\x99\xbbF\xa0W(\x11>\xc2\xdc\x92{{\xdb\x9cv\xa9\x06E\x8eD\x8e~\x0c0\xe0\xf2\xa1nu\xed\xa6\x99\xba\x9a=!\xf22uW\x1bR\x9b\xca\x92\xf7\xa2\xb1\xd2\x90\x07\x86\x84\xd0\x067\xd9\xbdA\xd5W\x92\xfbP\x0e\xaa'4\xeeC9\xa8\n]\x89^F\xe3N\x94\x8as\x06=t\xf9v\\\x81b0\x0e\xbb\x1axg\x8d\xd0\xa8\x02] 4\xab@g\x08\xad\xe6\xdf\xa3\x07#\x89 \xb2L'\x1a\xb1\x84\xee\xae+4[\xc7\xf8\xbf$\xe4\xd8}\x87\x1dJ\x82\xd2\xbb\xc8\xed\x8b\xd7\x02,\x12\x95\x8a|?\x8eVABD1J\xae\x93hyElV_V*\x8c\xc2FQ_\xc6\xceD\xa5\"\xb9\x90Q\x14\xf3\x9cB\x87\xda\xbcA\xf5\x87\xd2P\xe7c*.;\x96\xb6sM\xc69\xc4>8\x05\x9f\xa2\xba\x9a*\x93\xc7?\x10^\x12Z\xfb\x1e\xdaT\xe7\xb5\x96r\xcd\xca\xa9\xdc\xce\xe4V\xa0\xab\x07\xa7\xd3P\x85\xc6\x03AWE\xbe\xca\x86j\xea]\x0e\xca\xebo\xa8\xc2`\xfe\xafV\x91\xe3\x87\x81\x94\x80\x96MT\x92U_mGovw\x1d;\xb4\x0f\x1d\x17,\xb1&\xa6(5[\xdej\x94j\xe6S\xfc\xf0\x15\x9f\x91\xf4\xe1+\xe5\xcb\xf0@\x15\xf7\x8f\x0c\xa1\xd4\xb6\xb7D\xe4\x82\x87\xb8\xbf\xe7\xf2\xdb)B\xb5\x1e\xd6\x18E#\xaeeW\xb7>p\xa6\x91\x8e#\x9d\xba\x94\xa9Kx~\xb4\xd8\xce\x1cSX[\xd8\\\x8a\xa9\xb9B`\xba\x01\xa9\x0f_\xb57\xd0)\x0b(\xbb\xd4\xc5\xaf\xd2\xad\x86PhV\xcb3\xfewXe\x8bs\xd5\x04\xbf\xdc\xf0\n\xa1A\xc6\xc8\xf8\xe1\xd1c\x99A\x13\xdb\xc7\x95%\xcdW+\x85\x9e;\xd0\x05%\x90Z\x90L\xac\xec\xd4\x90\x07\x17\x89\xd8\x9bh \"\xb8\xc0s\xb8\x85\xe5\x03\xc92\xfd\xa3\x8dn\x83\x1bL[\xb8\xf0\xba@I,\x9d\xa7^|\x96\x86\x1a\xc0)\xa6\xc1mJ|k\xe8\xfe\xce\xf8\xf3\xeex2\x9d\xb6o'c\xfbthwN'\xb3\xb6}:\x9ct'\xb3\xb6s\xea\xdc\xdac\xeb\xf1\xd4\xb1\xe9\xb3\xd3\xd6d\xe0\x8c?\x9fL\xa6\xb7\x93I\xd7\xf9\xf0\xd4\x99\x0c\x9c\xc9\xf4\xd6>\x1d\xe1\x1b\xb7\x93\xf1d\xea\x14_o?p\x9cj^3:\xdc\x9d\xc9\xc4\x9eL\x9c\xd3\xea3\x81\xebGN\x83\x1b\x8a\xe9\xc8\x02\xc5\x0c\xed\x1d\xb0\x9b\xb8\x98N\xf6y4#\x98RV:\x98X\x16r\x14\x11\xfa,.O\x17s\xa2\x8cLGa^GLq\xab\x94C\xff\x83>f\xa2E\xe5y\xaa3A\xc9!%\x18D\x8f:\xd16\x8bH \x8a\xce\x89f\xbf\xf9\x1a\x99I\x06C\xec\xab_\x05\x90,y\"\xf8\x00W5\x84\"\xb4\xa2[\xf1\x14\x026 \n\x8c\x11x\xdf\xf3\x17\xfa\xb8\x07w\xa6\xb4{\xbb\xfa\x83\xc6\xdench\xc3\x1ab\x86\x1b\xb6\xc5\x8f\x92\xe2\x8eK\xdct\x00\xbc\xcf\x11\xad\xd4\")\x9d\xc8\xef:5}\xc35\xfc-mj\x8a\xedL\xd8\xd4\xf4,\xe8\xf0\xae~\x00\xb9X\xe0s\xcb\x07\xe5Q6)\x82\x009\xb9\x15j\xc9\xbcd\xa0\xdd\xf6\xe1 \xcck\xafg'6\x19\xfbS\xa3\xdf\xceR\x90g1\xf7\xd8\xbf5=k\xa1\xbf\x8d\xfa^\xca/s\x97\x1eh\xc5\x074\xac\xd1>\xb6F0\x87SX\xc2\x10Z-{\x0ef\x031g\xa1s\xfc\x9b\xd9k\x17\xe6\xdc\xbekKq\x13\xef\x8d\x87\x06$\xbc\xbb\x97\xc2\xae\xde'doW\xef\xbf\xa2\xca5\xd9\xa6\xc8c\xe8z\xc4\x9cD\x98G\x01\x06\xbcj\xde9w\x9e\xa7\xbc@\x9d\xc2Z,1)\x87\xa8\xaaz\x8c\xdeu\xca7\x91J\xee\xd3\xfd\xb8\x12\xb9\x0e\xee\xd3\xd9\xbd\xdd\xaa2T\xa8\x83\xf4\xa9\xb2\xf7vu\xc4\xe8S/]tW\xdeu\xd3\xb0\xcd\xc2\x98W\xb3\xf5TMA\xcb\xcb\xd5\xaa\x9d\x8aO\xde\x95\x88\x98\xc1+\x13I\xcb#\x93B4\xc9\x13\x9e'\xe8\x0d\xeeA\x1b\x12\x0c\xbc\xe62^\x1c\xd0\xf9\xdeu\\H\xee\x8f\xb6\xc2\x15V\xd1o\xe44V\xf6eb\xde(!\xb4\x01\x05\x9e>\x0c\xa1\xd3wN\xf06K\xd4\xe9\xc0\x10\xda\xed\x88%TW\x90\x85N\x13\xb1\xe9\x91\x0b\xbd\xca$Et\xa4\x9d\x86\xbb\xc7D\xdb\xdbm\xce\xc4_#\xec\x98d\x12\xf8 \xe8\xeb%\x12\xb1w\xe9\xd2\x12\xe8\xa0\x10N`\xd8\x18\xc2\xc1<\x82=\x9d\xa8\xd2\x87\x9d\xaa\"\x0b\xe3\xbbt\x0f\x8f\x0f\x0f\x8ew\xfb\xbb{G\x07\x83\xdd\xfe\xfe!\xd9\xed\x1dm;\x01\xb9\xaa\xfb\x94\xf9^1S\x01\x13\xe3\xa8\x04\x8b_;\x01{\xcc\xc2\xbeu\xe8\xfa\xf7\x1d\xf8\x10\x1d\xeeR\xb1SR:r\xfc7\x92!w\x9d\x0b%^3\xd7&\xe8\xb4\xc3\xaf\xbcW*-\xd8\xf9|\x92\xb4o'I\xfb\x83\xea)\x83Ex\x1ew\xda\xd3\xde\xf5\xb8\xd79\xf6:\xf3i\xfb\x83\x9d@\x15Vv>\xef]\x8c{}\xcdS\x9f=\x8d\xc6\xbd\xce\xa1\xe61\xe5\xe0k/N\xc8\xcb0\xddvI\xe8\x8e\x91\xa3\xbd #`\xbeqR\x95\x10\x05\xb6yc\xa1J\xd3p=\\\xe0\xbf\xd6\xc6\x91\xe6\xd7\xcfN\x8b\xef\xecJ\xb3^\xe8\x89\xd9\xc9\x9e\xdd\x10\xa2\x9b\xa1T\xea\xbd:J\x11\xe4\xae\xa5\x19e\x19\x8f\xda\x95&\xd9e\xb1r2j\x95\x00\x87,\xac6K\x14\xa3\xdd\xc4xN\xf3E\x118\x85\xb9\x9dv\x93e\xe0\x13{\x80j\xa7S\x18\xc0\x10\x8e\xe8\xa8=\xa9X\x84}\xba+r\xf7\x15uK\x03\xb7\xdb\xab\x8a\xd8\x99V \xe7\xa6\x8f\xbdf!\xc9\xcc\x01\x19\xf7a\xb2\x12\xe5W\x86iC)4\xaf\x86\xb2-\x8aGL\x8c\xa1VE\xf1\xfcc\xd3\x172.\xdaf\xf0\x04\"\xe6\xe8\xd4\xc7\xb8q\x81\xed\x8d\xb3)\xbbH\xe6\x9c\x98\xf5\xd1\xa6\xd8\xe7\xdb\xae\x84\x9eN\x18\x82\x0d\xa9\xea\x98L\x08T\x1b\xac\xa7\x86)\xe0\nd\xf2\nT\xef\x1f\x89\x83\x93\xf0\x8d\xd0\xd2\xdeV\xab$\xd5x\x18\x1b\x86\xb1\x8e\x08\xf7e\xae\xe0\x18\x96\xa2\xdfz\xb9\xbe+\xe4\xee\x9f\xe1\x98L\xb7\x8f\x99ne \xc1\xec8~*\x99/\xb9\xd3\x05\x0b\x97!\x9clx<\x18\x92|\x1a\xcd\xb2%\xb1\\\x85\xc1,32,E\x8es\\\xbcs\xbd\x8a\x82/\xc9\xec\xcc[\xad\x97\xe4\xe38Z\x9d\xf9\x0b\xb2\xf2`$=|\x1e\x13/%\x7f\xe3\xd3O^\\c1\x16J\x0d\xbf\xfe\x8d\xd5\xb2\xf2R\x10\xceI,\xfdN\xd4\x9a\xb9\xa1\x1bH\xd7Wk^\x9eh\xf0\xa9\xaf\xa4H \x90\xe7\x87\xf6\xde>=n*H\x85\x8f\x0ev\x9dM\xa3\xb1\xc8|\"\xed\x16\x13\xc9e9\x95\x1a\xcc\xc8\xdc\xcb\x96\xe9\xb0z\xab\xf4;\xea7\x81kj%\"\xf3Q\x8e\x04&\xaa\xcc\xbb'\x90L)\xf3^= \xb2\xa2\xe7d\xe5\x05\xcb-Z\xc8\x12\x12\x7f\x97\xb0\xd5\xe8\xfa\xd1j\xa3\xb6x\xbf\xceg^J:i\xb0\"\xd6\xe6-\xa2\xaf\xc5G^J\x9cn\x1a\xbd<{\xcd\xbc@m\x8d\x1dBs\xda\xc5\xcd\xb9y[\xbd\xcd+=\x9f/#/}\xe0\xaa\x830%\x97\x0f\xdea\x1eD{X#T\x88\x8fX\xe5<\xee\xb6t\x8c\xe9r\x94fQ1\xf8\x0f\xb5\xfd2\xba\xab\x07\xd0\xfaN\\\xe5\xfel#\xb0{.\xc4]\xe6`\x11\xcco\x1c\xadB\x03rC\x8b\x9a\x82H|\x02|>\x8f\xe2\x95g\x88\\EI\x827\xc6\xfc\x91\xe7\x16\xb4!\x98\xa2\x0b\x90\xf6\x12\x92\xc0K\xec]\x90|\x9c\x85\xbecGx\x82\xb2\xd1\x1ek\xfd |\x1bF\xefBxs\xb3&C\xa0\xf5\xa5\xd8\xbb\xba\xa9\xf1M\xc40\xa7J\xa9^u)\x0e\x85\x9e\xf0%\x17\x97\xb2\x9fB\x1f\x8a\x9c\x14\x94\xc9\xe7E\xc6\xfd)\x15\xde\xe4\x9f\x98\xc7\xca8{\xcaR\xe8\xe2\xc5\x81\xf0\xf9\xadY\n\xb4yw9\xfd\xd0\x17\xf1\xb0\x08\xbf\xc4\x17\x10\x8dg/\xf0\xf9\n\xba\xdel\x16\xd0\xc9\xf1\x96\xdfo(?\xc7\xf2AJV\x86\x02h\x14\xe9\x06\xa1\xbf\xccf\xe43\xe2\xcd^\x87\xcb\x1b}\xd1\xb5\\\xf4\x87q\x90\x12ZV/\xe8I\xd3\x9f9e\xdc\x99\x11\xb2^\xdePz\xb6\xfe\xeb\xe4\xc6\xc1#\xff\x07\x1f\xc4dnma\xa5\x94\xe5\x8a\x92ou7\x08g\xe4\xfa\xf5\xdc\xb6\xfe\x8aU\xc9\xcc >\xefM\x16\xa2H\xef\x7f\x1c\xb0\xe0\xb7\x91\xe4\x1a\xae\x176kb\xec\x82hc.f\xc3 \xaf\x8a\xdb6^\x1c{7*\x97\x01\xedy\x01U0\x85\xb7\xf9\xc8l\xed\xbe\xe2\xc1\x06\x14\xcc\xae\xba1\xca\x9fY\xe56\x8b\xfc\xc9E\xf5+*\xd8-\x1cX\x8c\xaf\xa6t%\xe8\xdf\xee\x8c\xacc\xe2{)\x99\xe1\x8d/\xf9Q\xccq\x0d\xd8\x05\xb6\xea\xe3w\x02\xbf\xf0\xf9\x1a\xef\xb9\xcfh\x81\x11\xa46-A\x85B\x83\xd0\x8f\x13\xcd\xb4N\xbe\x03\xb3\xcav\xe9\xd7\x8c\x06W\x90\xbe\xee\xebQ\x01\xaa\x11\x0c\x94y\xf4\x1d\x97\xc5,\xb0o\\\x8c\xb2\xb6\x82\x11\xf4O`\x05O`\xef\x04V\xed\xb6\x03\xb3\xb1U\xee\x12\xa5\x95+:\xb4K}\xb78\xd2\xcfTT6\x91i\x8e?\x0c\x19\xe0\x94\xa7\xb2 \x12v\xbdl\xde\xf5\xc2\x9b\xd7s\xd4\x92\xb1\xaf\xdd\x95\xb7.<5\x9a\xee\xe6\xb2\xf8\xf3:\x9f\x08\x18*ME!\x11M\xe1\xd7\x07lj\x9c\xdas\xfa\x94\xd2q\xd2%a\xb6\xc2\x10\x8c\x82c\xcb\xdf\x87|\xa9B\xca\x0e\x97\xc1\x97\x04\xbb\xe7\xd8\xec5g\xdc\xa3uX\xf3`IX\x8a\x8d\x08\x1d\x9b\xd0\xa5I\x17/_U\x12\xdbU\x19\xbf\x9e\x96\x89\xe1u\x13V\xfe\xd1#\xa6\xb6\x17\x00\xf4h)\xb8\x01{\x8e\x1cF\"C\x8aO\xc6{\xd7x\x04\xd9\x88\xa1\xb2K\xcb\xdf\x1aO\x8d\xb6\xe1\xa9x\xff\xa5\x86\xa7z\xf8|\x13\x86\x19m\xc90\xa3&\x86\x19\xd5\xb3\xf25c\xba\x9b\xf0\xd4\x85\\4\xe7\xa9\xfa\xb23l\x99#\xb4\xbe\xc8\x15\xd26\xfd\xb3\x9b\x9ag\x97(\x86]\xaf\x96\xfa\xc7\x94\x86]b|2\xfd\xf3s|\xbe\x8e\xc9<\xb8\xd6\x97\xb8\xc8kH\xd6\x9eo\xa8\xe6\x1d\x9b\xda0[\xe9\x9f_\xe7\x87d\x03\x03\xcfj\x188\x9a\x07\x1c\x96\xda\xfc\xc7\xc1\xc5\xb3&.\x8e\xd1Y1l\x8c\x15F\xa9wI'\xc7b\xfe\xb1\xf69\x9c\xc29\x15\xcb\x87\x16\xba\xb6;\x94A\xb8p\xc1\xf4\xf37c\xfa\xdc\xba^-\xc3\x043e\x9f\xd3B\xf8\x13o\x03^\x18\x04\x1c\x99)\xa0[\xe5\xdcD|i\xe99\xc5\x07J8\xf0\xef\xed-\\\xd2\xff\xbez\xef2\x08\x0f\\'\xff\xa0e\x18\x96\xc0e\x97\xc7\xe0\xcd\x85\xbf+\xee\x95;u+\x1cbIy\xc3R\x8dZe\xe4\x0c\xf43\x17;\x90\xe5\xa4\xa2\x953?>\xe4\x08U\xfd\xbe\xf8h\xf8\xd3\x8c\xb6>\xdb\xbau\xc1V\xb6n]L\x03/9u\x01%\x9c\xa2\ns\xab\xe7^\x9a\xc6C\xb81T\xee\xc2\x95\x1e\x1b)e?3\xb8XB\xc1\x8a4\xabb\xdfsY\xce6\x9a\x15\x17\xce\x0c\xebb\xdfsa\xb6j\x9f\x97R\nm nk\xd3\x12\x01\x9f\xfa\x17zq\xbbA\x9c~F\xc5ii\xcf\xd0\x9d\xb8\x14\x1b\xf0\x85Y:\xa5}{Q\xb9jh?ct\xa3\xf5b\xfcL\x12\xbcooa-?(Dn*\x8c\x1b\xa6\xab\xd4\x0e}\x8b\x11\x89\xfc\xab\xe8!\xff\xdd\xa58\x1b\\di\xed\xb2\x89\xcf\x15\x8f.YF\x05\xac\x0b\xa54\xda\xd9\xfc\x971\x05K\xf5\xf3\x85\xe8_-\xd3\xae~\xde\x8a\xb78F\x99)\xbd\xf8\xdc\x8c\xf3Q\x0br\xf8l\x9a\xb3,\x14\x9b\xbe\xa0#\xf8\x82>\x91\x80\xcb\xf13<\xf7\xe0\xdf\xf2\xa3\xb7\x14\xfe\x96\x0214f\x82sQ\xbf0\xb5\xa9^\xe4O\xb9\xb3#P;\xef\xca\xce\xe9\xf2\x0cV\x84A1\x00\xbbT\x86\xc1Mv\x19\xe9s\xc5\xe3f\xa6lt\xcd/\x94\xd1\xe3%\xa5\x14|\xa7 \x19\xf5\xa3\xd0\xf7R\n\x1fJt\xf5e\xc3\xb4\xd5\x91Fq\x98\xe4\x0d5\x11\xea\xb2\xb49\x04\xebYx\x93.\x82\xf0\x12|/\x84\x0b\x02\x0b\x12\x13\x83T@;\xedo\xca\x11\xaa\x0d%\xa6s+%r\x0f\xc8g6\xa0\x91|\xe6\xae\xcb\xf8\xbf\xe4\xae\xb1\x12h\xc63&\x94\x17\xf5\x1d]\xd4w\xecT\x96\xb0\x80kl\x85o\xe0\x14\xc6\xfa\xbe\x1b\xfb\xfd\xde\x85kZ\xd1u\xb5\xeb\xef\xb5v\x90\xa5\xd9\x17\x81\xca;\xeci\x19K\xd1\x08Z\xd2s\x05\x82n8vX\xb5:\x01\x1aJ\xfc\xa5\x17{\xb4\xc1!\xb44\xd7\x1b\x83pF\xc2t\x08\xd6$\xad\xdc\xae\xab\x9a\xcb\x00o1\xd4X\xa5h\x7f\xa2\xa2?\xcb&\x13W\xa5<\xc7\xa9\x06\xab\\\x0d\x87\x96<\x05\xf6\xabn1PxK\xec\x0f\x9c\xeeY\x1a\x13O#\xfe\xa3N\x8c~\xb1\xa4\x15\x83\x8a\xf5Jo\xf5\x04\x919\x80\xd24\xcd\xc9\x01=\x05\xd0\xa5\x11\xc7\x1e0\xd1!\xbf\x92k\xb3\xf7\x9c\xee\x17Q\x10\xda\xe8KgYU\xdb\x9a\xf8$\x94\x8c\x19\x84oC4\x08\x1b\xbdD\xd3\xb1\x142\xe0-\xb9I\xec\xd4\x19\xf7\xa6SdyI\xf7\x9c,\xc9\xaa0\xdbr\x80\xa0\xdc\x91\x9bC\x02?\xcaB*\xfd\x84\x12\x0c1\x89\x0d\xab\x0c\xa3-{20%q\x9c\xadS\xcc\x00'\xc0\xfa\x19\xf3\x99\xd3\xbe.4\x14\xf0S2\x957\x95\x87\xf9z\xad\xcd:\xde\xf24l-\x02\"y\xab\xf5m\xa8~r3g\x1b\x1e\x8f\xac\xc7\xd0f\x0epmxl=6\xbe\xf8\x1e\xbd\xa6\xc7dj\x14,7 \x93\xe2z2\xc7\x08%\x94\xad\xf8\xe0\xa5\\\x81B\xfa\xbb\xb9Pv\xc6\x18\xd1\xca\x0c\xf7\x1a\xc4'\xe9\"\xcd\xa48\xb6\xb6\xf9\x0f\x0cty\xee\xcf\xbc\x14\x95RK6\x9d\xb6\xf5\xa45~\xfe\xd1\xb37\xcf\xc6\xf4\xc0)J8\xb9\xe3\xde\xced:\x99>\xdd\xb9t\xc1\x9aN\xa7\xd3\xa7y\xf1\xa7xx\xb5\xa6\xd3\xa7\x16V\xcdW\x13Q\xdf\xe7\xa1k\x96\xd2=\xaed\xc3\xf8\xc5\xf2G\xbb\xb7N\xc1\xc2\x01!T\xd9YpJ1\x90\x0f\x19\x86\xa2\x0b9\x15\x816\xf4\xf1r\x81\xbdd\x89\xb5]T%\xb5zyo\xd1\x13\xd3,T\xbc\xc77no\xa5\xc1\xd5\x8865\x0b%L\xea\xc6w\xf3\xfe$\x9a\xee\x189\xb3~F)E\x19B\xa4\xdf\xd49}\x18\xd2U\xd3\x16\xc9\xc5\xfdd\x08s\x83F.\nS\xe4l\x06e\x13#aC\x08M\x9d@\xca5\x04\xaf\xeey\xd5e\x15\x94\xa9xo\xe0#^\x1d\x1f)\x11\xf2\xc2HL$\x97&\x8a\xcf\xba\x08\xf1\x82 \x12\x89\xcc2\x0f|\x0c\x9fK\xa7$\xbf\x9d`\xa6\x9a\x81\xd14\xce\xd3X*\x95\xd5\xed\x1d\xe1$W\xbc\x94,\x82yZ\x0d\xa8#\x7f*\xc6=\xadKX\xb5|d\x07N\xb3\xc2\x8c~p\xf25gp\xf1\xd1K\xe9z([\n;F\xed\xf5)\xce;\xe3yB\xa1f\xf3\x94\x0b\xa7`=\xd9\xa1T\x8d\xffn\x83\xf5\xd4\x92Kq\x06\xfa\xe8\x11\xb4BZz\x12\xf2\xc7\xe8W\x8c\x17\xc9t\x1b\xcf\xbc\x8aQ\xa3\xd9\xa3\xd5\x92\xf1\x04\x9dr\x8b\xdf]o\xbd&\xe1\x8c\x8a\x0d\xae\x8cO]\x06\x0cJ@\x11\x1d\xccn\xf5\x1c\x17Z\xbdMH\x04]4\x8e\xc9\xf9\xac\x95\xe7K\x9a.i\xa2\x8a\xdd/,\x07\xa7`\x01++=CI\xca\x02\xcb)\xde\x8dq\x85D\xf5|\xfaqo\x08\xd8\x8eiM\xc4\x02\x97\x96\xa5\x15W\xb7\xa4xC.\xa8\"#\xae\x0c\xde\xbd3]\x87\x82\x1a\xa7;-\xcd\xd0\xd0\x0bD\x1a\xf4H6\xa8_9\x0d\x0b\xd5\xb52Q\x16\xf41\xc5\x08\x00\xdd\x04eh8e\x99Px\xaax\xb3\xb5\xc3\xb2\xcc\"\x9c\x89\xcc\x0bW\x00>\xa3\xfc|,A\"\xda\xac\xf894\xb6\xb1\xe0q\xe4\xcd[ef\xe6\xfe\x0b\x863\xe4:}\x13\xf8o\x99\x13J\xba\xe5N\xbc\xaa\x95\x0f+\xc4\x0e\xf5\x1e\xf6\x1c\xda#\x96\x8c\x12\xf2\xd8\xab(\xc9 \xb7\xc79\xe7\xd7V{\xa2\xd0\xb2\x89\x08\xe3\xc1\xd2L\x1agv\xa3g\x94\xf8\xf8]\xb2\nR\xdb\xa2\xd2\x99\xa5\xb5\x9c\x8a\x0f\x15P\xd8\xfaoHT\xeb\xe6\xf1\xa6v\x1e=\xfb\x8a'\xa0[\xbb\x98\"\x91\xb2\xbd\x9e\xa3\x0f\xed\\\xd3\xca\xa5q\xf8\xccf\xdf0\xcb\xe9\xb75\xcb)\x95\xf58\x88\x843\x0b\x7f\xc6\xc4\x9by\x17x\x00\xa7\x04H<\xf7\x97QB\x0c\x91\xee@\x7fl\x00\xc3rT!\xc2M\xa0y\x1c\x0b5=$p\x94\x08\xbb\x92j\x02q\x1b\x8f\xee2\xd4\xc5s\xae\xbe\xe6+\x12'\xa8\xd3\xb0\xfa\xdd\x9ea\xd7\x93\xd0\x8ff\xe8\xe1\x19w\xc5wFr)\xbd\xfa^\x8a\xd9\xd4%K\xb2b*\x85\x02\xf6\"\x87\xd5b\x9f\xd8\x87\xfa\xe1\xa2\xc2a\x08\x99\xcd\xb4\x81E\xecD\xbc\xc8\xc5\x82\x15\xe6\xbe\x06&%\x0c=\x0dm\xe2\xf5 \xc2\x9a\xcb\xf2@\xa2L\xe5@\xba\x88\xa3wH\xc61(\xacm\x85Q\n^\x92\x04\x97!\x99A\x1a\x81\x07,\x14uK'?\x88\xcf\x95\x94\xaa\xbb\xde\xdePdG\x96\x143\xe6\x8a=[\xea-'\xaa\xa1[\xaa\x81\xa9\x80\xdaT\xc0\x10\x94V\x0e\xbc\xdfD\xdb\x08\xaf\xdc\xd6\xc9\x8a\xe2c\xa2R\x86#\x1f\xa5y\x9b.\x89\xc4p\xd9\xee\xa1Ccv<\x91\x01\x9a\xca\xb9\xe2 \xed\xe9\xc6$S\x9dW!$\x96\x91=\xffU\x8a\x1a\xba\xbbg\x88\x18*\x0fG\xb0\xf3\xf2\x00\xadG\xd6\x10\xacG\xdej}R!\x8a\x8f\xad\xc7\xf4\xc9\xcffQZ}d=f/\xad\xa3Dy\xf4\x04\x1f-\xd5w\x9e\xe2\x83\xcb\xf4\xa4\xa0\xa3\xd2\xb0\xb7\xbal\xc5\x89\x17\xa7lH\xbcru\x8f=~d=y\xfax\xea\xec\\\xd6LF\xa5\xc2pL\xaaI\xb4`\xb8m(\x8a\xd2%\xba\x93\xd2\xbc\xf3[\x11\xfd}\xa7\xfb\xe2\x8a\x84\xe9\x8bU\x90\xa6$\xd6)\xf9\xd5\x83t\xccc\xa1.\x02\xe5Z>\xfd\x84\xf6\xee\xbec\x07.&\xd3\x0d\xba\x9f\x15\x14\x93\xb6x\x80\xc0\x1f\xc6A\x9a\x03\xf7\xf6\x8f\x11\xf8Q\xb6^\x92k\x06:\xe8!\xe8M\xec\x85\xc9<\x8aW\x1c\xdaG\xe8\xf7\xbd$y\xb3\x88\xa3\xecr\xc1\xe1\x03\x843\x9d8;\xd8\x05r\xc2\x8f\x00\x9d\xc1j'\xffJ\xca#o\xd2\x9c\x07\xfa\xd3h\x8a\x06a\x1c\x0e\xbb0\xc5X\x0dZ\x89\xe9\x1b\x18\x1bh\xede \x91\xbe*\xc7&}\x93\x91\x96\n\x85\x05\x1f\xc2\x1ac\x92d\xab\xd2\xf7\xdaSY\xd8\x8d\xc2\\$\x0b\xd0\x81\x0e\x01\xb1\x17\x84\x96\x0b\x11B\xce\x83\xe4,\x9d\x05\x11\x957\xe4\x81\x11$*\xb7\xb7`\xb3j\xa8\x18\xe7\x82\x87\x02\x11\xfd\xcd\xc46\x17\x92\xaa\x16\xef\x8a\x874k\xf5M\xf3\xebi\x07\x9bac\x19\xe7\xb8)\xa3c\x9b\xcd^\xb2A\x85\x86{\xe03\x92\xa4qt\xc366\xff\xb1i\xb3\xbe\x9en\xa3\xaf\x90\xed\xb8\xdcN\x1cw\x97A\x92\x92\x90\xc4\xcf)\x1f\xc2\xfd\xe4\x82E(3\xb5\x1c\xc1_\xab\xf4V\xdf\xe2\xdc\x88&\xab\xe8\x8a|\xc2\xdb\xa9\xac\xb9\xf2PZ\x7f\xf5Uy\x9d\xab\xcf\x8a5\xd7\xbe\x89#\xa2\xc2\x92\xaeU\xf9\xa9\xa9\xd5ym\xabsm\xbd\xc5\xd3\x9a\x9d \xc8-\xc3\xe4R?\xab\x10\x19\xdb\xe7\n\xb6\xcf\xf3w\xca\x10v\x94\xa1\x04\xc8b^\xceM4\xdca\x8ec5d]\x7f\xab\xaf\xa0\xeaG=\xa7\xcb\xc2\xe3\x96\x19\x9e0\x1e6\x86\xc8\xa9\xa2R\x8ee\xa9\x16\xcbZ\xcd\\\x0d\x84\x00i\xa7 %\x19#\x8e,E\xbe\xb9Y\x13.I>\xf7B*LR6\x03\x1e\xf8K/I\xc0K\xc0\xcb[\xd2\x1c\x0b\xdf\xf3\x0d\x94\xcb>\x0b\xe2\xcd\x80E\xa3\xe1\x90\xd4\x0b\x96e\x08?\x0e\x8c\xaa^\xcb:$I\xd5\x8c\xe6\xf5r\x9a\x10m\xf5\xf3A\xb7\xa21S~H\xaeS\xa6\x8eR\xc7\xa9\x8af\xf2P\x9eb\xc0\x92|\xb8\xa8\xf5\xc1\xdb\xc0\xc3\xd2\xac\x90\xf2\x94\x10\x17\xdam\xa9\x9a\xf2l\xb8\xa5\xb1g!\xea\xbe\xbf\xfd\xe1\xe7\xfd\xddd\x0ex\xec\x0ci&\xd0\x11\\\x1ec\x051\xb6\x19\xb32b\x13}\xe7\xe2xQk\xddy5\x15'\x1a\xda\xa3.\x9d\x91Z\xbf\xc3\xbe2\xc4\xd3\xd2\x80\xaa8^Y\xf2\xa2%:\xbd.t:RU\xda\x98\x85u3\x82\xb1\x0e\x9bf\xa4\xaew\x0d;\xb0\xdc\xda\x17Q\x106\"\x1c\x9b\xffQu\xfe\xc5E\x0f\x8d\x17s)\xean\xdeY\xe6Zl1m<\xae\nO\xcdM\xe7\xed\xc4\x81\x10\xda#4\x81\x13\xc3\x9a \xaeR;\x7f\xe8{u\xcf1\xc5]o\xb9\x8c|\xbbg\xf0cV0\xa6\xd0\xf57\xa0]13xj\x0eXl\x08\xde\xde\x0f\xc2\xc4\x9b\x13;\x85\xa7O\x9f\xa2v2+O\x9fG\x97\xf3\x04\xb2\x13\x07'.\xc36\xd8\xacF\xfc\xe2\x04^\xde\x8e\xd67,\xb0\x01}\xa5-\n\x96\xa2\x18dl\xd2MS\x1c)S\x9c\x03\xdeSI\x0b\x03s\x06\xdd L\xd6\xc4OK?\xba~\x96\xa4\xd1\x8a\x91\x89\\9\x93/\xd0\xb8ZpZ\x87\xecb7\xe7/i\xd4jlXC0\x92\x1c}\xb8\x1e,.\x05z\xcfMo\xec\xe2h1^\xe3\x89{c\x7f$\x1d\xfb.sw\xbd\xddF+\x90\x88\x0fS\x1cu\x13\x92\xbe\\\xad\xc8,\xf0\xcc\x1e\xae\xdc>\xc3|\x8cx\xcab5&\xb3\xfc\xf1k\xaej\x007\xdb\x98L3\xc0M7iw\x16\xf9\xa8(3\x97[\x97\x12B~_ \xc9k\xcc*\xa7}`\xcc\xa7N\xab\xc2\x8clk:'o\x82\x15\x89\xb2\x14NaM\xc9\xb5[D\x8c\xe7yk\xa6\xccq\xfa\xab\xf7\xdd4bW\xdb\xf9\xe9[$\xb6aQ\x8b\x9a\xe8\x88\xf8Hf\xa0Z\xca-\x7ff\xb6&\xaa\xaf\xf8\x98\xf4[0\x94Q\xa7\xae \xb4\xa1v\xd7Q\x92~\xca\xb3\xf9\xb3\xac?\xc1\x8an\xc93?\x0e\xd6\xa9\xd1\xddG|\x04\x11\xd79\x08V?x\xcc\xefF\xe1\x8a5Woh\xcf\x85\xbf\xbc|\x13\xd3\xab~\x88\xde\x84 \x7f\x18o(f\xc0\xb6,\x17\xac\x0f-~\xa8(\x1a\x0e\xab\xa1\x94K\xb5\xe8W\xc2vP!\xc5\xab~\xbe\xf0\xc2\x90,\xe1\x14l\x1b\xa3\xa7\x90wP~\xe4t\xe9\xbc\xf7\xf5\x03\xaeE\xae\x99\x9d\"\x057\xa9<\xb7\xc0\xd3\x08;1(M\x8a\x01\x0bQ5\x86\xc6E+\nc\xe2\xcdn\x92\xd4K\x89\xbf\xf0\xc2K\x82i\x92\x97\xa3\xddvD\xbe\x8b\xe2\x0e.Z\x06\x0d\x97\xbd@r\xfb\xaa\xdf\x85\x94\x1f_x\xfe[\xe3qV|\xbc\xf82\xd1\xf9\xdb\x89\x8f\xe1\xae=\x14l\xc8\x1f'S\xa6\xdf\x8e\xed\xc4q!i\xb7M\x08\xb7fG4y\xed\x16J\xd9:\x1f\x82\x85y\x89Yzw\xf0\xab\x81\x9b\xa1\xa1\xca\x1a\x1f\x15T\x8e::\"\xa1\x9f\x94\x86\xbb;\x02[h\x17\xeb}\xf4\x1a}\x9e\xe7\xdc\xf5\xa6\xaeL}\x9a@\xf1im\xb8{\xe4O~:\xed\n4k\x16p\xc4'\xc6\xf7(\xd6\xd5\xf7^|\xf2\x14P\x0d\xba\x0b\xdd\x07\xfd\xae{f\xdf[\xdd\x87\xd4\xf9O\xea>\x0d^\xda\xd5\x0f\xf6\xa9\xbfm\x9f\xe2qo\x93\xbbU\xf2\xe7.\xfd\x1a\xdc\xa5_.\xc4\xe3\xfe\x8f\xa3w\xbbw\xef\x1d\xfd\x7f\xf0-\xf7\xb1\xd1\xd5[\xf7A{\xfd\x12U\x0e\x1aw\x0f\xddG/Q\x97J\x98\x84\xa3\xbc\x00\xcc\x83\xd0[.7\xa1\x0f\xccp?\xdf\xe0\xbc`|\xba\xa9\xdfoE\xb7g[Y\xc8\x02\x02\xcedY(!\xcby\x11\xa9?\x0fN\xbc\x08\x12\x0c\x83=\xc4\x02\x92\x0d\xb8\x949\x14y\xb1\xd9\x15`\xf3[Q9\xfb0\x90M3\xf1E\xdd\x03\xe9.#\xdf[\x9e\xa5Q\xec]\x12)\xa2\xa3:)r\xfeTm\x855\xef*\x10aQ.\xb7\xaf\xe5GBa\xc8sn\xa07\x99\x95\xc6\x19a\x87\x7f\x1e\xd2.t\xbai\xf4I\xf4\x8e\xc4\xcf=\x8d\x01Y\xfe\xb5q\xf0R\x10wal+\x8c>\xe2A\x88\xd0\xc0b\x8a\xbd\x0d\x92\xb1\xa9\x1a\x15\x13\x8a\xb14\x9eapm\xb4ai\xe5\x12\xa1m\xa1\x85\xa8\xd2\xb5\xaa\xef\x91\xee\x1e\x81\xf8\xd0*b\xcf'\xa5*\xe0\x14\xfc(L\xa2%\xe9\xe2C\x16\xc0F\x80\xdeyq\x88g%\x1c\xa4\x1aD\x0f\x8c;-W\x170R\x93\xa2I\xaap\xc4j\xda\x87\xc6\xad\xb4\xd1\x1e\xd2+\xe2J\x19\x96\n\xb0\xe4\x06r\xac\xcb\xa3\x14\xda\xfb}\xed\xad\xcfH\xdd\x1e\xdc\xb6G\xe9\x82d\xde\x8b\n\x1c\xa2+\x15\xa9\x01\xc9\x0bG\x12MpS\xac\xb8\x1b\x84\x0b\x12\x07\xd8yt,q%\x98\x1d1'\x93H\xd2\xab\x9f\xa7\x92\xcbH\xddd\x01\xa2\x06\xb7DT\xdb\xde\xc2\xb3\x86.\xcf\xe1F\xcbS~k\xd0\xbf\xc3K\xfd\xfe\x81S8\xc5\xdc\xf1}\xc9}f\x93\x1a\x9a\xec\xcd\xfdc}\x16\xc4\xfe\xb1>\xcf\xcd\xdeAs\xac\xf6\xeaBqK\x04\x0bH-\xc7P\xd2\xeb\xcc\xb3\"zU\x8c\x97R\xd1*g\x13)\x8a5\xe6\xd6\xcb\n\xebWau\xe8z\xc9M\xe8\xf3\xe4\xadYw\x1d\x07\xab \x0d\xae\x08\x9c\xe6.0pZn\x02\x87u\xbc\xef`6\x0c\x1e\x03\xca\xd6\x948pl\x82w\xe5*\xcf\xa4zi\xb1C\x07S\x0e\xc8\xc0\xfd^\x9f\x01\xe9\xd7\x01V\x93w\x15\xfd~\xec\xfd\xde.\x82\xd6,!\xa7\x00\xee!p\x16$\xeb(\x07\xf6\xd1f\xd3]y\xd7\xcf.sX_\xc0\x04\x80\xbd\x19\x939\xba\xa7\x90X\xc0\x0f\xe8\x8e\xa3\x88\x92m\xb9k\x9a\x10i\xef@\x17\xb9\x1du>\xdeE\xa2\xa2\x12>\x99/#9\x97\xf5f\xe8\xc4\xd1$H^y\xafl\x8c\xfb\xcf\xd2x \x96\xa40\x82W\x18\xc3\x153H\x0d\xd8\x9e\x92\x07\xc6\xcb\xc9l\xfd\xe4\xe8\x02\xd9]\xb1 v\x89\x0b~y\x81\x03L\x9dBe\x1f\xbb\xc8?_&\xb9\x8eDv\x04\xb9\xd1\xb8\x83\xbf^\xd3\xc6\x13x\x8c\xa5\x1f\x83\x17\xce\xe01/\xfe\x18|\xe6\xe2sA K\xd0]\xfc\x92\xa4\x0b\x12W\xb5\xe5|\x19\xcbazr\xd1\xc8:?\x17\xd1\x19\xce\xcf-\x16\xaf>\xec\xce\xa3\x18\x9dp \x0cYf)\xcf.B\xe3\x93\xfc[X\x0c#\xe24\x9f]\x0c\xcbh\xd5 s\xd7\n\xa8\x8c\xd1(A\x87c\x82q]R\x1e\xa8\xddW\xee\x13\xb1T\xce\xe7\xe7\xeb8\x9a\x07K\x12\x9f\x9f\x03\x8f\x14^@0$\xa6\xdf\xcd\xd63/%/\xc2+\xbcJ\x9d\x87\x9fx\x90\xbd\xd3\x88\x93\xbb\xba\\\xbcBU+\x89Y\x17A8S\xb1TS\x90.\x95\x8a\xb6r\xe2\xff\xd2\xc3\xa4x(y[\xf1u\x7f\x99\xbc\x08\xb3\x15\x89\xbd\x8b%i\xa2\x07\x9b%j\xd0\xde\x84\xa2\x934g7\xd3\n\xbc\x1f\x18\xe27\xacK\xa5vk\x0ew\xc5n\n\xec\x90\xa58\xf3\xf9q\xdf\xb3)\xae\xa1Ux\xdeM\xa28\xb5\xb5\x04v\x8d\xa9W\x11\xf9\xd7\xb8\xdc\xc3\"\xfbL\x83\xc6}>N\xa7\xc8\xcf\x99\xc4\xed\xd2\x01\xca\x93e<\x88\xf1\xde'\xecE\x96R\xf8T\xd4\xe3\xbb\xb0t!\x1c\xa7S\x17R\x91gD{\xa3\xdctX}\x10\\\xde;\xacRR!\x81\xea\xf3E\x1c\xe9\xd3E\xec\x1d\xf5\x9d\xee\x8a\xa4\x8bh\x96\xe8(\xed\x9e\xf2\x1eg\xd6\xc7\xba\x04\xd3\x9a\xbd\x80g\xc2r\xc9\xf9\xa6\xbbfYl\x0cff,?\x96\x1c\x14J\x89\x1d\x94\xf0\x9d\x0b\x94\x81\xa3J\xcc\x80\x19B\xc9*hL\xdd\xa5?H\xa1o\xb7\x0bW.\xdc\xb8p\xe9\xc2\xca\x85s\x17.\\x\xe7\xc2\xb5\x0bg.\xbcp\xe1\x99\x0b\xaf]\xf8\xc2\x85\xb7.\x86\xb1Z\xe2\xe9KO\xf0\xaf\x98T\xdc\xe2\x020%\xe5\x9cw\xe7\xbai\xc6\xabS\x89\x9eK25\xc5\xfb3\xcct*\x831\xb8\xd3\x08\xce\xba\x97$e\xd1\x87\xcf\xba \xfd\xba\xc2\xaf\xcc\xac\xe1b\x94\xce3f>q\xdcB+\xd3\x8dI\x12-\xafH\xcc\x82\xcc\xbe\xe5\x9c%\x87\xd2=\xfd\x05\x8f\xbc\x144\x04a\xe1\xfc\x97\xfbU\xe5\x04D\xa5\x1e\x94\x1fcp3\xb4\xd6\xbf\xb5#\xa7\xe8\xd2\x88\xf1\xe8\x1b\n\xa4Et\\\xf2%]\xad\xfc\x1c\xfe\x82\x16\xcb\xb8W\xf2%I-\xdc\xb4\x11\xf3\xc5s\\x\xa9\x8dhO\xfb\xc0\xd2\xf2a\x94\xe4\xc2\xfbp\x9e\x93\x13v\x86\x8f\xc6\xbd)\xeaQ\xaap\xd1\xe7\x11\xcb}c\xd6\x08iF&D\x8b\xd8\xb6\x9e\x07\xb1\x9f-\xbd\x18\x82\xf0*\xe2\xaa\x1c\x17\xac\xe7/?{\xfe\x83O\x9e}v\xfe\xf2\xd5O\xbd~\xfe\xec\xcd\xcb\xd7\xafLVwZ\xeb\xa5\xad\x89_\xfe\xbe\x08i]3\x8d\x0f\xd4\x13\xbe\x1a/\x99=2p\xe1\x99\xbc.\x89X\x17n\xc1\xa7bH\x99|\xbap\xe5\xe4y\x07\xe9\xfe\xa8\xd5\xb6\xe1\xe1Y\xbf\xaa\x86\xa1\xb2{\x02\xb5h#\xae\x12\xe4\xa8[\xe0\x90\xc1\xa5\x10\x8dm\xba\xa0\xc9\xa7\n\xbe\x14\n3\x18V\x90\xccqMh\x9ew\xfa\x81\x17\x89\xf9\x03\xa0\xbf\xb0f\x99\xf2\xfb\xe3\xb8VD\xcdu.\xa7\xfa\x7fXR \xdf\xefD\x8e\xc7\xf5\xc4\xb8\x0b\x8d\xd3\x14\xd4.kP\xa6\x06\xba\xcc]\xb8M\xefK\x0dj:\xf7\xc0\xcb7\x0e\xe8\x1e\x0b\xb5\x8b\x17\x88u\xa3\xe2\x97\xe2\xae\x9bi-\xffQ\x1c\\\x06\xa1\xb7\xd4Z\xfb\x85\xb0>\x84/\xd4\x87\\\xd2\x7f\x85\x91\x83\x90\xdb\x8b\x9fj\xd9K\x92nr\x0d\x94\x0f\xf2m.\xe7\xbd\xb5S\x07\xb9\xdc)\xdc\xb0@\x0f\x1c)R\xba\x18*\xd5S[^x\xc9\x16-\x1b\xd6Q\xe3\xda\xa3i\x8a\xf1\xdbMZ3\x900`\xfd\xd5\xf7\x00\xe7\x04\xfd{W\xccM\nF\xf0\x12EU\xee\xbe\xc0~\xbc\x96\xd1\x82=\xb1P\x9a%\xba Q\xea PL\xd8 #\x8fP\xac\xbc\xd4\x0f\x03\xcf\x83\xe7\xf4\xc8'\x89Fn\xde1l\xc5\xdatb\xa3R2\x9f\x9aK9B\x9dC7\x7f\xae\x0ey\x81F\x0f\xccI&\x83\x9f\xe5`>K\x85\x1b\x95\xfdZD\xf1X\x94T\xfa\xfa\xb8\x15j\x7f\xe9\x18\x870S\x1f\xe4g\xe1\x0d&8e\x92-\xdf\x9ej\xb3\xd5\xed}\xa1\x8aj\xe6{,n9\x87\x8e\xba\x86l\x0b\x86\xb8\x05\xc3\xb2\x8cFP\x92 \x99\x8c\x96q)\xb3j7\xde\x92\xa7\xe7\x8an^\x1bg~\xe5*\xa1iki\xc8G\xc1T\x18\x17\xc9[\xa8\xa6=w1\n}P\xefF\x8cH\xdf8w\xbc\x1b\xc5\xd09\xcf\x1d\n~'Mk\xcaW\x8dNhA\xddB\xd6Y\xba\xa3U\xbd\xcb\xf5\xb7\xd6\xcf\xac\xbb\xf0\x121\xf7\xda\xee\x16XP\xd3q\x8e\x18\xb4\xaeT\x93pum\x7f\xa1\x0b\x8c*\xeb\xbe\x86\x10a\xd8*#\x89\x8d\xec\x0b\xcdSN\xbb\";\x13\xa7\x1d\xb5\x15\xe4D\x91\xfdN\xf7\x0cyEd_\xab}\xcer\xc8\x83\x9c\xf0\xfb\xc7\xba\xfc}\xf4\xe4\xaf?\xe1\x0ft'|\xd4Kv}o\x9df19K=\xff\xed\x9b\xd8\xf3%\xb6B\xe48\x1d\x8d\xf6\xa8\x90;#2u\xa7.\xf7\x98\x07\xe5\xfc\x1fj\x89\xa4\xa2c\xd2\x9e\x85#;\xe1\xa1\xb6<\xc6\xd4x4R\x91\xb8\x1f\xed1\x89\xc8\x14\xc9n\xe1F\xa2l\xd8\xf5\xa3\x19\x8a\xddxO\x87\"\x1a-CJ\x02\xcf=\xd6hs\xa3\x02\xe3\xc0\\I\xc1\xe2\x84ln[`\xb1l\x88\xad\x8f\x882\x8f\xa2!X\xb1\xf7\xa5U\xa5Qj\xd9\x0b\x8a\xf1\xd6\xec\x9d\xb7A\xd94\xfe\xf2f\x08\x16\xfdS\x0d-\xecb\x80\x9a\x08s\xb7]x1\xcb\xe1\x16\x7fy\x83\xb4\x81ve\xf6\xce\xc3\xf7\x1eXo\xbbgH\x8d\xaaU\xdc\xa2\x11g\xe5]o\xa0\xd41\x18\x08\x8a[8\x91\xe2o\xeb\xc2\xa0\"w\xa3\xa3n*+:Q\x1a-yhk5\x8df\x17\x9et\x1cS\xf9\x9d\x8cc\x8d\xabi\xa3\xbfN\xc8\x02\x15\xd0}\xdd\xe8{\xc1\x04\xfe\xfe d\xf0\x04\x92\x13h\xb73v\x7f\xad\xd8\xa0\xd9\xd4\xc5\x80\xb7yh\xa2jv\x82J\x1c\xb407\x8bh1\xfd\xdb0\x1c\x1e\xee3\xc3\xa1\xa4ag\xa6\xc3\xc3\x83o\xdbt\xa8_D>V9\xae\xac\x95\xdb\xd4-\x8c\xb4X^\x87\xdaE\xd5;`=\xb0>Y\xe1\x1eA\xd9d\xd1\xb4\x9d\xaa\x1d\x17\xe6f\x8c\x84\x9b\xaf\x0d;\x9em\xebzr\xa7\xbek(&oB\x1fR\x9d]A\x1b*Ks\xc7\x81\xe3\xb0\x1f=\x82`,\xec\x12\x98\xbe\xa1\xf5 f\xd6*\xfe\x1f3\xfc\xe7w\xe5J\x17nS/\x08\xf9n8\xea\xddc7\x88\xd9\x96\xc9\xfc\x96{\xa5\x8e\xd7\xc5E_1\xe7\x88\x08\x17\"\xa06r/\x91\x9d\xbb\xfal\x1eE\xd6\xc3\x18\xda\xc50\x95\xa9\xe4wa\xee\x8a\x0d\x95#b\xc9\xb6\\NDy\xdf\xceW\xee\x92\xba\"\x18\xbb\xc6\x04\xb4\xd4[E\xd7\x1b[r\x16\x9bZrf\xf5\x96\x9c+\x83%\xa7\xd2\xdc\xcd\xa6\x06\x9fK\x9dE\xb5\xac4)\xbf\xb0\xd2\x12\x0c?\n\xe7\xc1e\x86\xb6W=\xd1 \xb9mV\x1f\xf5Z\x04I\xaa#+j\x9akJ\xa2\xe2&a\x05\x84\xc0b<\xb3-\xd1\xa5\xe1RF=\xeb\xfc\x9c\x10t\x1b8\x95b\xcb!\x8c\x1e\xe5(h\xd5\xc5\xbc\xe70\x82\x99P\xc8\\U\xdeva\xe5\xb8RA^,\x1c\xa7S8\xd5\xc5[\xe7O\xe8\x1f\x16\xac\x0d=O\x11:\x821\xb3\xa5\x92i\x01\xe2\x91:\xca3V\x11\xf5B\x9f\x0c\x91\xd0o6K\xae\x1c\x0eL|J\x13\x15\x88\x88|\xcan\x0d7\xb9\x9f\xc8\x8d\xd4\x01{\x03\xaf\x91 \x97\x8df\x8fX\x8c\xadCg\xf7u\xe8\xe7\xf1|\xce\xcf7\x9c\x8a\xf9|\x88\xa2\xef\xa63\xc1i\x84^\xcd\xcd&\xa3\xa5G\x9bR,\x05\xfd\xfb-\xbb\x82X\xce8\x9dn\xf0\x9e\x8a6,\xb6(}[\x9d1\x10\x92w\xc4n\xbe\xd1\xc5\x8b\xc7\xd1\x94\x8a\xb0\x91\x03A\x11\x927\xd0\xcd+{J\xe5\xe4\x81\x88K%4\xfa\x1c\x05\xe3q\xc4]\xe40ie\xdcM\xd6x\xeb1r\xa1\xaf\xbb\xb7\x87\x96\xb4\xb8h6\xaem\x96kc\xc3:\xcf\xf8\xa6eg\n\xc4\xac\xf1~\xe2U\x1e\xd1\xa2v\xdd\x0dt\x82r\xe3\xa0\xbc\xa0\xe6\x15\xd1\xafc}\x1cx\\\xc5Pc#c\xb6!9\xd5\n\xbb\xebH\xd8\x89\x85\xc0\x13\x08\xe9r\x13\x07\xa21\xa1\x0f\xcb\x17\x1dI\xcd%8l4\xc0\xe0\x15\xec2+\xaf\xb7w\x82\x847\xa0/\xb3\xaa\xf9.\x8e\x0bC\x8e\xb6RnJ\x15\xb7\xc9\xaac\xa9\x9b\x80Mnl-\n\xe2\xb2\x08\x92\x86{F\x0d\xf7\x8a6\xb9\x89Un\xaf\"\xaf\xdc\xbf\xf5\x86\x9bVu\xad\xbb%\xdd\xd1\xfd\xfa\xb2\xd1\x8d\xaa\xbf\x14\xfc\xa4\x9fue\x16L\x98\xf7\x1d\xfd\xaf\xf7\xba@\xcch$\xb1\xab:O\xc6K\xe7vP\x85S\xc62\xb7#GGx\xe6\xb6\xec\x0b\xcd\xbc\x08o\xec\xaf\xde3]\x9c,\x1d\xd7_\xa1\x16\xaeb\xccU\x02\xad.3\xdbgq\x88\xf3C#\xadTn\x8c\x08\x9f%:\xa3\xdf\x81\xfb\n\xcc\xdc\xd5\xa9\xea\xd3_\xa3W\xd5\x88\xcd^\x9e\x9b\xb0\x12\x99\xb8h\xaf>p\x80D\xf7+i\xb05\xdeG\xd2\x0b\xe8,d\xa7\xe3\x10-\xcf\xf4o\x19%\x1c\x91\xf4\xce+\x19\xa5\xd5\xeb\xfb\xef\xdd\xedN5\xa8\xf6B}\xd7\x86iy\"~(\xce\x14\xcb\x8aC\xa5\xae\x8b ,\xc5]\xb9\xefQ\x88\xadS\xffX\xa3\x1d(%\x94\xbb\xe3\xa1.`\x9a\x8d\x94\x8a\x07\x0f\xd4\xed\x8d\xce\xd1B\xb3\xcc\x04S6\x92y\x1cUrq\xd5\x9d\xb6Y\xe8v\x14\xddq\x0d\xc7\xa8Gv\x99\x8ax\xea\xb8\xf0\xbd(Z\x12/\xb4Q\x94!E\xb8e,\xc0LA\xe8\x15\xfd\x10c\x96\xf4\xbcG\x07N7HI\xec\xa5\x91>\x90\xe3\xb1\xde}|O\xb9\xcd\xc5\xf6\xe8\xa0\xba\xa3=\xfd\xd6M\xf4\xead_\xbf\xff\xe7\xbc\xcdj\xe5\xcb*^mt\xacV\x0f\xcb\x8b\x878\x8cj\x9e\xcb\x87Q\xf5)\x1e\xe64\xf1\x17\xdf\x1bO\xf2\xe5\xa3\xfa\xb6\x9b\xa8\x10K\x8d\x1e\x94\x8d\xa6\xa4\x17\xb5\xa6$\x0c\xb2T(\xe6\x13\xa6\x98\xf7\xed3\xa4A\x9e}\xc6\x83#\x02\x8f\x16\x8eh\x8e\x0bG!\x11\x0b\xf6\xec\xe4q\xf2\xca\x95\x1bb1\xe0 \xe8\xcc$\xee\xa1S!\xde\xa0\xe1\xbb\x93y{\xda\x97P\xc4\xe9\xa7$\x85a\x11\xbf\xb9\xcdo\xeb\xd1\xf3\xb9}S\x928\xfa\x0e&+\x1bA\x8a\x17\xd1o\x0c\xd2\x10;\xd5\xd1V\x1b\xa4\xf0r\xed\xa5N\x95B\x8c\\R\xb1&t\xe0\x86\xf9\xf2\xa5Z\x07J\xf1\xe1#5$\x0cU\xa0*\xe4\x06\xb3\x05~\xc7\\\x08\xe7|\xa9\x98\x91A\xb5M\xd8\xef\xb0\xbb\xf1\xd48\x178\x0f\xe7\xe8\xe5\xfa\x8e_Ge~4\x94`\x8a\xf9\xa1\x07\xe4\x0b\x18\xc19\x06\x16\xb3\x8b\xc9i]tgQHN\x1c\xb4\xbf\x9f\xc1\xa9\x10\xe2\x983\xf0\x05\xd3\x98p7\xf6\xfc\x17\xe5\xdf\xf6\"\xd7\xa6\\\xbb0\xb3opg,\xf0\xae\x15\x9f\xe6\xebj\xa3\xed\xb6!a\x16]9Mv\xa0\xc2\xdbs^\x83\x0d8\x03\xf2\xda\xebF\x8f\xe3uQoW\xc1\x89k\x8e\x10\xbfz7\xa4\x82]#\x05\xbb*\xc7\x92\x1c\xa9\xb6\xc0\xa2\xd8vx0\xdb:\x9bt\xd5\xd8\x0c| f\x8c\x07\xd8\xb3\xa2\xfbn\x8d\xccW\x89\xb0\x1b3\n8\x1b\xa7,\xcb\x1f\xcb\x9e<=q\xa0\xdd\x8e\xb5\xd4\x0b\x8b\x8e\x80\x17\x9d\x8a\x9c\xab\xf6\x9a\xa9]\xac\xef~\x17\x03\xab\xb9\xe0u/\x13.:\xd5\x1fI\x0bo V\x13\xd3\xb5\x10\x17<&.\xe2\x93~\xf5\xb4Zry\x97\x83\xd8F\xb52/J\xa4J\xc4\x08}y\xfa\xf9\xf9\x8c\xb00\x94A\x14\x9e\x9f\x0f\xc1\xc3\xd0\xa2D\xe7\xccw\x1ez+R\x94\xb9\xb2\xab\x0e\xd0\xef\xcb\xea\x91\xb9\x1dT\x9b\x9cG1}\xbd\x1e\xcb\xf8\xa0\x17\xcc\x0e\x86\x7f\x86\xec\xcf\x08\x02;'\xe8\x8aR\xa4\xf4\xfb-\xb9\xf9x\x93\xc6\x0c\x8e\xe3\xb8\xf9\x08\x04!$(\xd3.\xcc:\xfc\xc5\x98L\x99\xa7s\xce\xc1Hm\xd7\x16^\xf2\x92c\x89\x98\xcb\x98YA\xa4'\xcc\x9f\xcf\x92 J\xaa\xf4 y\x8e\xaa\xaa\xb3\xb5H\xf6R\xa9N-\xc0kU\x1f\xa8\x95s6V\xad\x92\x83EE\xfc\xa7\xf2\xfa\x8a\x92\xc3\xca\xbb\x08\xe3/\xe2w\xe5-\x9e\x13\xa9\xf2\x9e\xc8\x9a\xc4\xde\xe4\xbf\x94w\x13\xe2\xc5J\x93\x0c\xc8\xdfd?\xd4\x17\xd7\xc4\x0fHR}\x93A\xc5\xab\xec\x97\xe6\xdde\x90*o.\x834\x7fo\x19\xa4\xca[\x92\x08PyWz\xc2k\x90 \x9azrAA\xa9'\x7f\x92\xd7\x93C\x94z\xb20\xf1\xa35E\x83\xea,HOx=\x12\xa4\xe4E\x82$F\xa2J\xd5\x9d/\x119\xdaFU{.\xba'\xda\xaf\xb5 \xcb\xba_A\x95*;\xae\xd2\xb1\xc0\xdc1\xb9\xe5MZ\x15\xe4\xdb\xc6\xec\xedL\xef\xd1\xad\x90Qh\x83\xe5(\x0e\xa1\xa5\xdfx\xa4x=\xdf\xb4\xd5\xa4\x92M\x0b\xd4Q.\xcb\xa3\x0cddr\x9b\xa6U\\>\xe1\xed\xe8\xb5\xa3\\\xee\xae\xe4\x86\xc7\xe0\x189\xc6\xd9r\xa7\xf4\xbd\xca\x11\x11{\xe5[\xae\x98S\x8b\xbd\x105\xbf\x10\x94\xe2\xf0\x97\x04f}\x15\xe5\x99\xd0UQH\xe5\xf7\x89\xa5%\xe9g\x8f{[G1b!\xcfP\xdf\xa0\x93\x1cR\x8c\xea\x9f\xcb\x0d\xfac\x90\xd8\x1c\xc52\xdc}4\x9b\xf5:?\n\xb1\xab>Z4\xb9\xbd\xa5\xcf\xe54\x05\xac\xecY^\x16#\x98V\xb3\x18\x9e\xf2\x8b{\xb4\x1d~'\x8ecj\x87\x87\xfe\xb0\xa3b\xd1=\\\xf4\x80\xa2=\xf3\x93\xc5X&\xe3\x1e\xf7q\xc7\x07\xf4E\x17\xbcq\x9f\x03\xbf\xc5\xae\xe7}\xefO\xc7\x11\xe2xvr\xaf~;\xae\xa8\x8c-\xe0\x1d\xf0\x97k8\xb5\x99\x16\xd5\xa1n\x17\x1b\x83\x07\x8f\xa9\xc1\xe4\xac\x1e\x93=\xee^^\x8f\xebyn>c)\x1f\xd9\xc1\x06{\x81\x0b[\x19\xc5.\xf3f\xa0\xaf`\x1a\xc0q\xb2 =\x8d$,\xdd\x9c\x9eJ\xd2\x7f\x86\xe8\xe0\x8d#\x89\x9e\xd6\x93R\x9f!J\xc6\xe24\xb1\xbe\xf6\xa7\xe3\x00\x91.\xba\x03a}\x90\x9e\xe5\x17q\xf3\xce\xd0\xf7\x85\xdf~\xe0\"B\xd3g%\xd0 \xb4\xb0\x18\xb7\x7f?z\x04\xbe n\x0e2\\\xbf\xbb\x8e\xd6\xb6\xe3\xb2E\xe1\xbf\x9c\x0dj\xdeb\xbbH\xd7\x016\xd9'\x9b\x86_\xe1r\x8a,\x97\xa8\xd5\x7fG\xff\xeb\x1eRY\xc5\xf0\x7f\xcco'\xb2\x90\xb4]\x0ci\xc7\x83:\xdf\xe7B\xe2VB\x9c\xdc\xf66G9\xb4w\xa7\xf6W\xef\x91P\xa6\xf6+\xef\x15\xbb\x83\x98\x16I\x1e\xe0\xe1fk\x03\xa9\xbf5z\x18=XYt\xbe\xe3\xb4n)\x1bW\x89\xe4C\x88\xc5\x12\xb9 .:\xc2\x19\xbc\xe0\xca\xc2[PHi\xe18\xd8h\xd7\x95\x85\xac\xa6\xe0\xa1,_6K\xac\xe3B\xc8~\xb5\xdb\xa9\xf3\xed\xf0BIc\x85\xf9\xa3\x90\xf1\xb7p\xa0\xec\x0c_&Va\xe9\xb7\x86*<\x0c\xd1\xd1\xc8+\xdf\x02\xbdy\xc8S\xa0^\xc9\xa0G\xf5\xd0(\x8a\x9a\xe48\xcd|hJF\xf7\n\xc7\x15\xcd\xe09\x82\xb8\x10\xa1\x7f\x01ECM\xd8\xe4\x0dh\xe1F\x18\xce\x8e\xb9L\xcag\x83\xa5d\xc9G5\x00\xe1\xc7\xbb;\xe3<;C\xf9x\x86j\x16M\x136#\x9e\xcb\xf3~\xf3S\x1aC\xfel\x0b\xe4\xe7\xbdi\xd5\xf6\xa6\xe1\xc8@\xe4\xe6=U\x90\xf54\"\xb2W\x16\x91\x93\xb2\x88\x9c\xe4\"\xb2W\xfc\xd2\x88\xc8j\xcd\xc6\x9er\x89\x98\xae\xd4\x86\xd3s\x0f\x96e&\xe4p\xc7\xed\xe5\xcaD\\\xed\xeaw\xf4\xbf\x1e\x86\x07j\xef;\x85v\xff\xb8\n\x8f8\xfcH\x7f\xbfM $..\xcfT\xef\xe0$\xa6\x8bo\xe5b\xdb\x05\x0870mL\x15\xc1\x93\x184\\x\xe7J\xd3\xa5\x0bk\x17\xfd+\xe7\xdcAQ\xa5/u\x0f\xaf\xd0\xba!\xc2\xce\xa9\xcfo\xf0\xb9\x08\xc1X\xc6\xe8\xe2=\xf4\x08\xaf\x97\xe5\x84\xa4QD\x17\xd6\xe2V\x8c\x91\xa1DJ\x07\xbcVj\xd4\xd4\xebC\xad\x80\x88\xd7\x1737\xbb$\x17\x9f{.t\xfa\x945\\\xf1\xcb'\xcb<&\xc2\x9a6\xab\xda\x9c6rX\x8eli\x02\xe1\xaa\xc6o\xf9}e\xfa\xa2P\x04\xe9m\x9e\xbb\xda\xdb\xed\xda\xfb\x93\x90\xbb\xbbI\x11\n\xb4s&;\xee\x8d`\xbc\xc0\x88\x15\xa1p\xe2c\xd4=t\x98\x0d\x0e\xa7V#\xbd\x89O\xcc\x18\x12\xdd\x95KF'\xd6LZ^b\x96|\xe1\x92\xdf\xe0D#>(\x7f\x98\xe9\xa8.R\xec\x8c'4@~=c\xc17\x8a\x80\xc8\xb8\xb7X4\xd8\x88\xf1+\x1e\xcb8\xc6T\nQ\x98\x92\xeb\x14\xf30\xc5\x97\x89\x93\xfbo\xc6,yD\xc00%*P\x88\xae\x89)Et#id\x99\xbe\xf9\xdej\x8a\xc2q\xc5\xeeEr\x9fp\xe3\xa6\x08\xe9\xd0\xd3rV-\x1e\xfeCT\x0f\xa9\x19a\x84\xfc\xccD\x8a\xb4\x1b\xcc\xcc\x9a?\x1e \x13jS\xf9\xd3\x82\x9c\xdd\xd1\xdaXO\x16\xe3\xa4\x08\xda\xcb~\x04\x85MF\xe9>\xbf3\x86X\xa1\xf4\x8a\xffX\xe2\x8f\x9cq\xc5\xdb\xf5e\x81\x0eZZ\x94\xc6\x1b 6-\xc0\x88\x8e\xc3\xa9\x0es*^8\x90u\xe9\xcf\x0dD\xa1\xc4\x9esa\x85\x8b\x14Z \xa5qJ\x12{\xad\xe3\x0fj\xefs\x1a\xc2\xa8\xa2\xe8\xaf\xf9x\xa6\xbd`\x9b\xe1M\xfb\x0d6\xc5g$\x8d\x03rE\n\x8a3\x8b\x08#D\xc1j\xbd$T(\x12h(\x90\xf8\xb1\x96*\x89\x0fk\xda\x9e\xbb\xa0\x1bqe|9\xb5\xff\xafq\x9c\xe5\xcdj\x1aoM\xdf\xf8\xfb\x0f\xd6\xbd\xbc?\xdb\xf5P\xac\x08\xe6n\xe0oh\xd1\xb1\x04)\x04\xaf\xaa\x8a\x81\x85\xca3q\x1a\x93\x8a\x01\xf9`\xbb\xad\x0f\xeaW\xe3\xe7D\x19\xc0R\xfb\x12\x88\x03\xfe\xa64I\x7f\x8e\xc7\xc1\xe8\xe9\x8e\xbeM\xcf\x8e\x1c\x93\x8c\x1f\xe1\\cVF\x9ct\x84x\xb3\x03I\x1elH\xf2\x7f\xd5\xefa\xe9\"\x1asj*\xee\x84y\xccO\xb1\xd5\xe9x\xe2\xe4R:\xac\xb4z\x98\x9fP{]L\xc3\xbf.I\xfa\x19G\xd0\x1f\xd38z\xc5 <\x16LV\xb3\xfd\xef\xa7\xd4\x92\xd2\x0f\xe96X\xe8B%DsXD\xecm\xf1\x88\xbd\x04\x86\"\xa5b#s@\xaf\xb2\xee\xf3\xb33\xba\x1c\xf8\xa5K\x12\xdf[\x17\xfaT\x19\xa8N\x95`,\xcd,H\xc4dP2z\x19\xbc\xd8\xfef\xd1\xec\xdf\x84\x98\xfcl\x16\xc4$\x01\xaf\x08}g\xf4X*\xc5\xbb\x96\x82L\xf1\x10La\x9ea\x81\x12\xcfN\x9f\x1d\x83)ya\xa2t)[\xc2 \xb4\xdb\x01<\x81\xf8\xc4\xc1\x19\xe6\xf9{\xe4B\x01\xde{\x8c\xa0Mg\xff\xe9\x08\xfa(\x05S\x01d\xb7\x8ftgp\x08\"\x03!N@\xc0\n<\x1d\xc1\xdeQ^v\xff\x10\xcb\xd6=\x7f\xf4\x08\xf6\xf6i\x81\x8c\x12\xc6\xc9\x04\x83F\x15\x96\x89\xfe\x01Zr\x80\x12K\x1b\xfb\x1a\xb0*[\xfdJ\xd8\x01\x82uup\xc4\x1f\x88\x0e\x1e\x17_\xf5=D\xe8\xc1~\x0e=\xee\xe5\xd0\xe3\xc3\x1c\xda\x1f\x0c\xf02(\xce\x13\xce\x11\xa5\xe0\xac\xcbe \xce\x9b\xf5\xff\xfe\xc5\x9fY\xb5\xfbPuz\xd78Q\xc8\x18\x8b\x1a\x18\xf6\x0dO\xdan \x91Y\x8a\xcfJt\xe5r\xec\xeeX\xd6\x1b\xbew\xf2\xdb:\xa1\xdd\xef\xdf'\xb0\xa76p=\xad\xd8:?'\xc9\xa7\xd1,[\x12\xabJ\xb5y\x9a 9\x8d\x82\xc3T=\x98K\xaf\xceQ\xc5x}9I\xbd\x94|\x7f\x99]\x06a24l\xdadM|\xd33\xfa\xf1\xb0\xcdd\x08\x99Y\xc8O\xc8\x92\xf8i\x14'C0\x04c\xd2\xbf\xcbR/\x19\xbb\x068\xb6Y\xe6\x13Zs\"\xa6\xc2\xdc\x8f\xbc\xaf\xd1F}\xf5\xf4}U\xf1\xf0;\xfa_\xefU\xf9mn\x87\xf6~\xffX\x89\x90\xcd\xed\x0c:\xbb\x84o\xd3'{J\xa0e\xfeh\x7f\xaf_}\xe4\xe5\x8f\x06J\x90i\xd1\x87\xbd]\xc79\xf9N\xfeL\xe0\x0e\xf8z\xc5O\xca\x98C\x81\x9f\x05s8\xa9\xa0)\xe3\x06_U6\xa7|+G\xa3\x10\x93b\xe6\x05!=\xb65\x1c\xac\x0bC\x1d\xa7eEF$\x93\x19\xbc\xd8(i\xd9\x8fC\x9d\x84\xb9\xd1\xbdB\x99\x07\x1e\xb4X'a\xb1\x1c\x97\xd5 \x93\xdfQ\xbf\xd1q/\x95[B\x97$\xfd$\xf2\xbd\xe5s\xdc\x04\x9b\xc5\xfa\xb3{\x18\x8c\xd8\x8b\x13\xf2\xd3\xde\x8a\xbf\xea\xd8\xb1\x18\xfcv^\x0erC2]|\xdc\xe9t&a\x16/\x87`-\xd2t\x9d\x0cwv\xd6$M\xd2(&\xdd\xe4\x9dwyI\xe2n\x10\xed\\\x0dv\xc4\xaf/\x92(\xb4&\xe1,Z\x9d\x07\xb3!X\x7f\x85?\xe8d\x815 \xd11\xddK\xa3\xf8\x07\xa5:\xa3p\x19\x84\xe5\x1aEAk\x12F^\x96.\x06\x9f\x91Y\x10\x13?-\xde\x1c\xee\xec,\xe9\xbc-\xa2$\x1d\xee\x0ez\xbd\x1dV\xb2\x13\xf3\xa2\xddE\xbaZZ\x93\xf0\xb1v\xd0\x1bQp\xc9\xb5c\xd07hR\xe3\x87\xa9^\x7f\xdc\xdb\xdf\xebi\xb7od\xc4\xdcZ\xf4Q\xbcH\x85\xb5\x120\xfe\xa6\x88\x15=#\xeb\x98\xf8^Jf\xe0\x853\xc9\x91&K\xc8\xac\xdb\xe0C\x03\xf2\xfct\xa9\x98\x87#\xe9\xc9IK\xbbg\xfe\x82\xac\x98uu\xf7\xa8\xf4\xe4\xe3g/?9{\xf6\xf1\x8b\xf3\xb3\xe7\x7f\xed\xc5\xa7\xcf\xb8\xc1vP*\xf3\x93g\xaf_\xc9\xcf\x07\xbd\xdd\xd2\xf3\xe7\xaf?{Q~^~\xff\xa3\x17\x1f?\xfb\xc1'o\xce\xab\xed\xec\xefj\x8b}\xfc\x83O>\x91\x8b\x1d\x95\x8b-#o\x86\xa1\x02\xe8\x97\xea\x83g\xf4P\xc1\x9f=c\x17\xce\xc4\xe3\xc4\x9b\x93O\xc4\xbb\xe2\x87\xae\x80\xa8C\xfa-\x17\x9be\xab5\xc6\x0c\xa4_\xaa\xef\x7f$\x1e\x8a\x1fr\x81\x9f~\xf6\xe9'/\xae}\x82!\xe89\x1e\x96\x86\xf6\xe9\xcbW/?}\xf6I\xddZl8\x87\xe6\xe9K|/D\xd5\x81E\xbfY\xa5gH\xe1\xd8C\xfcZ~\xeaG+\xee{\x12\xd9\x16\xffQ.\xe1\xcdf\xcf\xa5\xf0\xe1X\xb0\x0c\xb3\xee!\xdfI\xfe}\xd5\xab\xfcA>\x9b%0\xbfD\xa5h\xa0\xb3|\xeaJ`/\x9f\xaf\x128iVH\x97_\xf0U\x85\xf2\x1cF0(\x83(\x92\xed\x96A\x14u\xf6\xca\xa0\x85Z\xd7L\xad\xebJ\xad\xeb\x86\xb9\xc2]\xf7z\x9d\xc9u\xefhr\xdd\xfb\xde\xe4\xba\xf7|r\xdd{\xd1\x99\\\xf7?\x9e\\\x1f~\xdc\x99\\\x1f\xedM\xae\x8f\x0e:\x93\xeb\xe3\x8f'\xd9\xc7\x1f\x7f\xfc\x02\xff\xffxz;\x9ed\x1f\x1d\xd1\x97\xb3\x8f\xbe\xf7\xf1\xc7S\xfb\xb4E!\xcf\x19\x84\x96pn\xed\xd3\xe1\xf8\xf3r\xb1\xdb\xcf\x9dJ\xb1\x9dr\xb7.y\xb7\x8e\xf6\xcb\x1ez\xe5R+,\xe5N\xc6\x93\xe9\xe4\xab\xc9\xfb\xea\xe3s\xfa\xf8s\xfbt\xd8\xbam\xb5n[c\xaf\xf3\xe5\xa43m\xb7\x9c\x0fv\x82r\xc9\x8b\xa2\xe4\xf8\xf3\xa2>\xc7>\x1d\xfe\xc4\xb8\xd79\xf6:\xf3\xe9W\x83\xf7\xb7\xec\xfb\x97\x93\xce_9\x99\xecLN\x87\xdf}4\x9a\xb4'\x1f\xb8\xe7\x93n\xeb\x7f\x98|\xf8xbO\x1c\xfa\xf6\xd4\xf9\xf0\x83\x9d@\xc7\"\xde\x19YD\x9f_B\xc33\xe3.\xfb.\x11q\xb5\xaakcU\xc7EM\xbb\x83\x0dj:\xdb\xa6&\xec\xdf\xb6}}alao\xaf\xa8\xea\xb8/}\xdf\x95\x9a\x18\x94~\xeco\xd0\xe03\x83yG+\x9e\xee\x1d\xa1\xb9\x02\xa5K~\xd2>\xc5 9{G0\xa4\xc7\xea'\\\xef\xb0;\x80[`\xc9\x9c\xd91\xbb7@}O\x87\x16j\xd3i\x19B\xa7_\xdb\xb1\xd7\xe6\x998\xca\x15]\xd6\xa4g\xb1\x96s\xc8\x7f\x87\x00\xb9\xc8\x05\x85\xf4\xfb\x07\x12(\xc5BU@?_.\n\n\x19H\xae\xe9\nA\xbd\x81\x04\x9a\xb3R{\x12(f\xa5\xfa\x05\xe8\xbf\xa7\x90]\xe95\xd4}\xec\x16/=\xb6\x1e\xc3\x10\xf6\xa4a\xec`\x0f\xe5\x96&\x14r(u\xe7\xff\xf9y,\xb3/A~\x13\xcb\xc8#E\xaa@\xa1G\xbd\n\xf4\x98)\xabk\x17\xe1\x8b\x9a#\xc6\x93\x11\x1c\xec\xef\xef\xee\xc3)W\\a\x96\xe9\xe7\\\xdfd\xa7\x85\x03j\xf9\x01K\xe9\xd9\xa6\xa7\xb5\x0e\xd6p\x00O\x9fB\x9fJX\xfb\x07\xbb\x83^\xf9\xd1#:\xdf\xbb\x8a\x11\x15\xe4\xd3\xd8[\x90\x13\xd3\x0e\xf6\x0f\x1c\x17^j`\x9f\xb2\x84r\x9f\xc2\x13\x18\xec\x1f\x9c\xc0\xa7\xed\xb6\x03o\xc7\x9f\xd23\xd9k\xfbS\x87\xc7\x19\xe8\xb9\xf0\xb2\x00\xea\x88\xd3\x1b\xad\x1e_hb\xc9;\x08P\x01C\xdeQI\xb7;\x0f\x96$\xf4V\x84\xb2\xf6 \\g)\xde\xdb\x8f\x92 \xc5;\x96i\x97\x9e\x1fd\x18t8\xf0,\xf5\xe2\xb2\x9b\xbc\xda\x97\xe7\xda\xbe0Q\x99\xf7\xb3\xf6\xfd\xef\xeb\xdf\xefF\xe1\x0f\xbd8\x0c\xc2Kv\x96\xcc\x7f\xf2\xeb\xea\xe8y\xca\xeb\xd7-\x0e]\x97\xcf\x94\xd3\"\x15\xd9\x86\x8d\x16\x1a\xf1\xbe1d\x0b?\xa2\x8f \xed^\x918\xa1\xc3x\xf4\x88\xcd\x845\xcb\xd6\xcb\xc0\xf7R~3\xf5'h\x93\xc0\x8eT\x98Q\xca\xe5\x91\x0fC)`\x15{\xb3\\\x12<\x9f\x8a\x96 \x90k\xcfO\xf1b*\xc9U\xba\xb4\x9a\\\xe3n\xc7\x8c+R\xa67m;\x93\xae\xf8\xf6\xc1N\x97\\\x13\xdf\x0e\xc7=\x1e\x03\x8d5\x14,\x97\x9dy\x14\xafdw\xffh\x0e\xe9\x82\x80\xda[*\x8b\xa1\xf4\xf82L\xedx\xdc\x9f\xbal\xafDe\xf8@\xc0\xa5\xb8\x8e\xac\xb5,d#\xc1lhX\xbf\x983\xde\xe6,\xf2\xf3A\x15\x13:\x82\x90E-\xef\xfa\x0b\xe2\xbf\xfd$\x08\xc9\xf7b\xe2\xbd\xa5\xe2[Dw\x90h\n\xef\xdc\x0e\x8a\xaf\xdf\xe7\xad&\xd9\x9a\x8a\xb1d\xd6\xd0hiu+*\xb67\xcf\xfe\xeav\xe8\xa2\xe2\xca\xc0\xb0\xdao\x9e\xfd\xd5\x9a\xc5N\xdfE\x85\xfe\xdf\x12\ny\x16\xd1\x0e\xbf\xd1u8\xef\xa6$I\xed\x18\x03@(K\x9bz\x97\xb0\xf0\xc2\xd9\x92\x80=\x0f\xe2$\xcd+t\xc4$\x94\xfa@[\xc9C*\xa4\xde\xe5\xa7\xde\xda\x85\xb8@\x9b\xc7\xe9\x82\xc4\x84\x1ep=X\xc7\xe4*\x88\xb2dy\x033\xe2/\xbd\x98\xcc \xc9\xe6\xf3\xe0\x1a\xa9\xa2\xf5\x18\xda\x10C\x1b\x1e[R7\x1e;.\\\xb0.\x07\xe6.\xafcB\xab\xb1\x13\xe2G\xe1l\x83>\x8b\xce2\xbf\x87r\xe0\xfc\x92\x96Q\xa5=\xaf\xc4\x92\xe2@U)\xa4\xc8\xdf\xaa\xaa\xe9\x08<\xd1\xa3\x02\xbac\xb0\xd8;\x94\xd8\xf2+\x1e\x888\xb4\x19\xa5<\x08V\x120sz$E\xf5f\xf9\x08\"\xfa\xa7=\x82\xbe\xc3e\x06t\x0e\xf0\xaa\xb6\x15&\xfb=\x19AF\xd7,C\xb9\xa7\xdf\xdf\xeb\xf7\xfb\xc5d\x93\xeb5\xbb\x83\xcf\xa2\x1c\xfc\xe4\xd9\xebW@\xab\xf1\xfc\x94(\xb90A\xdc4\xbca\xab\xe6I4\x84.E\x92\xc6\xc4[\xa1\xc3\x81\x17\x84 \x84Q\xd8Y\xc7A\xc8\xb6z^m\xa2\xab7\xed\xc6$\xc9\x96\x98/\xd53\xad\x99f\xc9>)\x96Lqo\xb9\xe2 \x04\xd0-\xac\xe2,\x833\x1cw\x83\x84\xa7\xdb\x0f%\x0c\xe4\x1a\x9a\x15\x89/ \xac\xbc\xf5:\x08/\x93\x13\xc4\xb6u\x1c]\x053\x8a\xddQ\x16\xfb\x84\xe7o\xa6\x9b@&k\x96\x93\x87\xd8\xa4\x87E[\xf2*xKn\x12;t\x9c|A=x\x02>\xfd\xc3\x164\xc3\x80\x8f\xde\xd4\x95\xe2\x9ce\xd87\x9b\xb0\x90\x94!\xfa\xdb\x04\xecG\xabW\xcfM?\x920Z\xce?\xac\x9b*\xdf\x85\xb9\x8a\xd7Aa\x08\x0cd.\xc3S\xf2\x08#\x91\x95z\x97\xc3\x1bo\xb5\xecF\xf1\xa5;\xe8\xf5\x06C\x9c?\xe6q\xabAsZ7\xbb\xeb\x18$L(2E>\xc0\xa5\xe2\xae0\xf4\xa0\x1d\xe5s\xe7\xc3\x13\x98\xd3?l\xee\x04.Dc\x1fS\x90\x1b\xb07/\xa6\x96\xc1\xe7)\xea]\xe9\x94'y\x8cb\x9e\xde\xa9X\x13\x06\xb0\x99\\\x04t\x8f\xdd\xde\xeaD\xa7\x11x\xecI!`\x95\xe5\x022\x13(\x06o\xc9\x0d&\xe0#\xe3`\xcaB$\xe5\x97~\x83\xe6D>\xea\xe2\x7f\xb9\xd1Y\x8a\x1f2p)\x05\x8d\x92(I\xd1s\x87\xdd\xe8\x12?\xdbmz\xac\xd8\xe5\xc8p\n\xb6\xfc\xc8\xcd\x8f\x9a\xb552Y\xaex\x8d\xca\xe8lz<\xc0\x89\xbd\xa0,\x9en/A\xa8\x18\x85\xc7gmt3\x92$S\x1c\x80\xa8\xacvf>6\xf1\xee\\\x86\x97s\x0e\xd5\x0e\xe1\x84;\x10\x04\xda\xb8\xac\xdc+\xeb\xda\x0e\x1c\x1e}TS[\xbb-\xd7\xa7\xdd)\xb8\xdbv\xd9\xd1\xca\xe0!7\x8bj\x0c~\x9b\xb4\xac}\xf9=\xbc[\x04Td\xe8\xf7\nA\xae\xbf[|\xe7`C\xbf[\xef\x90\x15\xe12\xaa%pv\xbeD\x07\x83\xe6\x89v!\xa6x\xc5\xd6\xfbe8\xa3R*\x9e\x9f\xf8A\x96.\x80\xfc\x90\x16\xdez\xd8\xefu\xbb\x8c\x87\xb0\x0d\x8b\xe1\xc6\x0cq\xa5\x9e\xcd\x0c\x99\x06\x8f{\xc16\x08\xe3\xbe?\xc5\x89\xfb\xd2\x85V\x1f\xbd\xe3\\\xd1\x94@\x0e\xa7\xdc\xbfM\x1aw\x0bf\x8f\xb4 g\xf7|HO\xb9\x83\x10\x9f`\x87\xf3\xb1\x0bo&\x13\x01zj\xf1 !?\x9b\x91\xd0'@\xc24\xbe1\x8a\xd9\xcc\xc7\xacDd\x88\x96\x96\n\x12\xd0\xf28\x8e\xd0\x83\x13Kd$p\x07\xc5\x89\xb4\xfb6\x08g0\x02K\xf4\xc0r\x8b\xcd\x841\xc6\x9a\x04\xca\x9f6\xd3\xa8\\\xc4D\x8c\xd6\xef\x80*\xa6\xd3!\xee\xee\x16\x11\xc2\x1b\x04\x90\xdc\x7fBW\x8f\xb4a\xe8\xf8M\x1a\x18\x8f\x1f+\x99i\x87R\xe5\x03.\x01m\xc2-0\x12m\xc41~\xb3\x17\x86\xb0\xcb\xa4\xa4@D\xb1\xc58\\t\x19Z-k\xf3Z\xd8\x1b\x16\x0b6 \x0b\x94\x91N\xf20\x8a\x03\x9b4\xa7\xbc\x98\x8b\x01\x92\x14p00\xb2~\x89r<\xc9\xb3\xf8\xd1\xd1\xc7\xba\x83pi\x97m\xd2\xbdBL\xcc\xc2\xfc\x04K\xc2\x99\xd0 \xf0\x83\xe8\xbb ]\x04!xpE\xe2\x0b/\x0dVt\xe5\xab\n\x1eS\xa8#.\xb9I\xe3m\x9d1)._M\x96D\xe0T\x9c\x80\xbdK\xa1\xf3\xe0\x07H~\x10\x06r\xed/\xbd\x15C\xc0\x95\x17\xbfM\xac<\x0eqe.X\x16\x85\n\xdd\xcd\x15;\xf2\x195\xf4*:\x9dJ\x9bI\xe6/JGn\xe6\xa5I1\xaf\x8c>\x8c\xb4o6\xef\xeaB7\xaf\xe7*WJ\x15\xba\x02\xe3L\xcd\x97\xd1;J.\xe9v\x8d\xe2R\xff\xcb\xab\xa6#\x7f\xc8\xc8Z\x17\xfa\xf60\x99u\xfd\x1c\x0d\xd1m#F]\xe6)\x08\"\x1a\xc3PU\x83\x85\x8eT\"W8\x85STs\x0d\xe9.\xe5\\\xa2(Ea\xe2\xa9\xee\xb1z~\x16\xe5\x99\xb6-\x0bs\xcd\x9a\xb4\xea\xa8Y\x0bQ\xb3\xf6\x18=\xc1k\x89\xf7\x0f\xcd\xc4[C\x96\x8f\x18Y\x0e\xefA\x96\xcd\x82\x8c\x9e4\x87\xc0K\xc8\xe4\xd9\xd0\x81\x12fV\xb1Zl\xdc\x90o\\v\xd4l\xbd\xb0C\x07\x93\xc76\xd7\xa8\xe5\xb0\xd2\xb6\xc9u \xc5~,\x0f!\x8cf\x04VYR\xe0\x9b\x97\xc2\x92xI\x8a\xaa{I\xcbVb\xd3\xf5\xbb\xa9a\x81\x7fJ\xd2\x86i\xf8\xc2U~I\xf2\xc6\x85K\x17V.\x9c\xbbp\xe1\xc2kf\x8c\xd20\xed7\x06f\xfe}\x033\x97\x16{\x19$) I~Vb\xbfl+Zc\xd4\xd9T\xe8j\xa1\x88\x1e\x9d\xcf\x82\x00pyE\xfc\xcc%\x15\x06@\xb5'\x8c\xd0\x19b]\xc8eLA\x85A\xeb\x1f=R\x04Q\xfbM.\xaf\x96\xc578e\x93\x00\xc3\xca!\x93\x9f:\xd0\\W}\xf8\x84+\xc2>E\x97x\x07\x0d\x1e\xf4\x85O\x0d\xde\x9a'L\x82\xba\xbd\xc5\xcdx\xe2\x94\xbbwZ\xf4\xee\x86\xc9c\xdfJ'a\x88\xd5\xeb\xd6\x8f\x07j\x80\x11\xbc\xa1\x9d\x8cr\x0b\xce\xa7\xf4\xc1\x9ao*z\xea\xbb\x80\x11\xf8\xc5\xa4\xcfs\x92F\xf0<\xd6\xa6\x9c\xecu\x99\xd5\x94\xec\x88\xf9L\xc1)\xbf:\x8eg\xaf\xd789\xdb\xd8X\xdcB\xc9\x9b\x98Og\xc0=w\xcc'4\xe0^;_\xd5\x8475=\xcb\x91T\xfb\xf4\xaa\xf6\xe9M\xed\xd3K\xc3\x06\x04\xeeG\xa3\x0b\"|\x87\xf3\xe3\x92\xab\xac7;?z\xc6$D\x18\x84\xa8\xa9\x1e.\xd6D\xd2\xa1-\xab\xc8\xb4\x07\xecP\x80\x07\x9a\xfd#\xfe\xfd\xf6\x96\xd2\xf2\xb8\xf9\n%\xd2\xc1\xd0\xc5[\xaf\xec\x08h\xd4A\xc9\xefI\x07<\xadL-\x7fX\xaa\xdf\xa6\x91:'pm{t\x9f\x1b\x8a6\xc8W\xf2\x87\xf6p\x9f\xf9[x\x0e\x9c\x99\x1a\xafH\xca\xb9\xc4\xe8Q\x11\xfe\xffc\xee[\xbb\xdb\xb6\x95E\xbf\xf7W\x8cx{\x1c2\x92\x15I~$Qlk\xa5i\xd2z7ur\x9a\xa4\xfbt\xcbj\x16-A6\x1b\x89T\xf9\x88\xed\xbd\xdd\xf3\xed\xfe\xb1\xfb\xcb\xee\xc2\x0c\x00\x82$@\xd2N\xd2\xd6k\xb5\xa1@\x10\xcf\xc1`\xde\x93\xb2d\xe3\xcf\xb5\xdbG\x97\xad\x82\xbf\xe4%\x9c\x82\xfe\xc0\xae\xb7\xd1w\x02\x12\xb6\xf1c\xa4\xc6\x149}\xb6\x8a\xe6\x1f\xa4\xd4\x9a__\xc8l\xb9\xa8kX\xf5\xf2\xa88Z\xc4\x9b\x8f\x02K\x8b\xa2\xb5@r\x02\xb8\x91\xf8\xe4\xff.\xd4\xf9\xc5/$\xc2\xaf_\x97\x86\x9c\xcc\xf2\x0f\x01c\xad\xb9g\xd1\xd5\x93\x14\xee\x9d9\x07\x96\xfa\xee\xf8\x9f\xd2\x13aD\xd8\x98\xf9\x0b~\xf1\x07kN\xcd\x04\xa9\x12\xe8o\xfc ~\x02>\xcc\xa3U\x14\xf2\x95^\x07IR \x9bW\xfe3\xbbKC\x1d\xb3\xa2\xff}\xaey\x9a\xe6X\xdcz\x12_\xf0 \xae\xb3U\x1a\xe0\xd9\xf9\xc0\xaea\xed_\x830q\xd6W\x05\xd5\x1b\xf6\xb9\x19\xdf\x88\x19\xef\x13\xcb\xe5\xf3\x0b\xf2\xd3\x80Mp\xed\xe42yN\xedi08\xc8Y\xcb \x9cG\xeb\x0d\xea_\xd8\x95ec\xf9l\x91\xceS{\xfb\x04\xa2\x18\x96\xd1j\x15]\xb2\x05\x9c]\x83\x8fj\xd0\xd4?\xcbV\xa8\xeca\xebMz\x8d\xca\x0d\"\xfcr\x9c\xa8\xbc\xa6c\xf3\xc6P(\x11\x0dEYeP\xae\xa4\x037DZ\x04T\xca\xa7\xab\x1f+A\x06hB\xb1s\xbc\xd9+k{-b\xd9\x1b\x97\xb7(Hk\xc6\x88\x9e\x81\xa8Qr3\xbfVnV\x80;\x9b\x17c\x93\xe8\xac\xf2Q\x15\xf2\xc4\xd1AH\xb3\x01\xda\xba j\xab\x9c\xae\\\xd4&\xf1d\x81~\xc5\x16\n\xfd\xfe\x81\xc4O\x0f\xce\xbc*\x01d\xa3~\xcaZ]\xccY\xb3\xd4\x93\x88u,\xf9\xc6\x17\xf5\x84\xd2\xc7FB\xe9\xda\xe0\xad\x04\x02H\x859\xa8\xbbi\x86\x05\xd2\x89=\xde\xe9 98IbM\xe9\xc9k0\x1f\xefs8\"\x82ac\xe5EUmN>\x8f\xf6D\x8f\x03\xea\xf1?M\xfeip7\xb2*\xf6(\xc3T\xd3=- \xabM-a\xa5\x8e\x1a\xf3z\xad\x96W\xe8\x0b\xab\xec+i\xd2\x08v\x17\x05\xd8\xfd\xa8\xc1.\xc7\xb7\n~al\x13\x1b\xc7\xf6\xcb\xe4\"\xa7?\x08?\xc2>9\xc5\x9f\x04\xe1\xf9\x8a\xc1\xefY\xc4\xab\x8a\xbdGZ\xa2n\x96\x86\x83t\x1b6\xc3\xdc\xe9\xe78):\x83a95\xbb\x04\x1e-\xc4t\x9f\xff\xd4`\xe2m\xf3\xa9i1\x9eZ\xc9\x88\xf0]\xf5\xd5\xa0\x8d\x18m\xe0\x95\x87d\x03|\x14c\x8dd\x9b-\xce\xa2\xa9\xab\xcbv*\x1aO\x87~\xfb9TrM\x9f\xfcE9\xd0\x7f\x98\xfa3\xafp\xc1\x1c\xa3\xef\x88>\xc9\x16-Rp\xd1\x910\x83\xe3\x1c\x8b\xcf\xcf\xd2\x08]\x89\x1f*Vf\x17\xc6\xf0hO\xfd\xe4l\xc3\xc0\x83#\xfe\xbf\x16\xba\xb2\x80\x14\xda\x11\x19m\x07\xfc\xbb'\x10lo{\xd8\xfb\xd3\xb6k\xc5\x99\x14\x0c\x1b\x87~5\x07\x07\xb0\xebA\x172\xc5R\xa9\x13x\xc1\xae\xfc\x05\x9b\x07k\x7fU\xef\xd2\xa4\xff\xe9K\xf9\x9b\x1b\x95\xe0\xc5N\xb7\xd0ZJ,\xf0!\x8c.C\x10\x11\xd3\x94\xcc\xac\xa6\xeb\xea\xc9\xa8\xc7\xa4~\x8eI\xe9\xe8\xdb0i\xb5\xe1/\x84I\x17Qv\xd6\x06\x93\x96\x06\xd3\x82\x96\xb8\x0dj5\x8f\xc2\x88Z51NGC\xb26\x0c+\x0c\\\xcdXu\x97d\x18\xcd\x8a\xef6X\xd5\xd2H+s'2\x81{#\xac\xdf:\xcf\xdd\x98\xa3\xcd6-V\x07s+\x93\xa7U\xe0'\xb7\xb2x2\x18?\xf6\x8a\xa6N\x9aH\xbd\x14\x8eE7\x84\xbc\x97\x85J\x0c\xb0\x10\xe3(\x19\xc5iw\x92.\xa6\x0fge\xddU\x95\\\xe5`rWS\x14\x94\xba.\xa5\xbc\x95\xdf\x94v\xe1\x9c]\xd1\xcd\xc1\xeb\x8d\xbbl\x06,\xbe\"\xcf\xdd%\xb9}\x12\x92F\xa6w\xe7Q\xfe\xbc;\xd2\xcaw\xf2g)\xe8\xc3\x1f\xfbz\xa5\xc7\xda\xb3Vg\xe7\xa1V_+\x7fL\xa1\x1e\x96\xb5P\x8e7\xce\xbe\xd6\xbd\x10\x9b-IF\xff\xa6\xf9\x18 \xee\xec\xe6\x86\xec\xfb8\x98\xb78X\xcd\xe4J\x80\xbe\xe4ErWX\xad\x8b\x03\xb6\xac\xa5B\x84u\xc6\xb2\x89b\xb8\xe3\x14k\x98g-\x8f\xef\xce^\xdbA\xd4\x0f\x00}eZ\xf4\xd9$\x95h\xbcj\xf29.\x9b\xa5\x8f\xbc\xcdK\xac\xd8l\x05\xe1+1\x8bT\xd3h\xc6gsU@\"\x13\xed\xe6DdP\x14\xdc\x1c\xda\xb3t\xe9\x7f\x99\xc6\xbf\xdfYZ%\xfej\xe3\xb6\xcb?\xbb\xc0\x04\x8af\xf8\xc2\xff\x83\x8c\x078~\xd2wB\xe8\xaf\x0b27Kr\x01\xf9w\x179\x8e\xb9\x14\x15`D\xcb\x10\xfe\xec\x0c%-#\xc6\xbb\x0d\xbeWw8\xbd\x1e\\ \xcc\xe7\x16k\x08C3\xcbv4\xb8<\xd8n\xc4\xf2P;\x1d\x85F\xc8%X\xa0\x99\xa2\xc5\xea\xa6*Q!R\xa4'\xad( \xfd\xbd\x16 \x94\x07\xd0\x96\xde,\xca\xd8\xc0\x998(\x9b\xaa\xa9\xab\x95\x08\xcdnn\x07\x96\xdf\xd5\xc9E\x94\xad\x16h\xabs\xe1\x7fd\xe0\x87\xd7\xd2\xf2\x1a\x95\xb0\xd2\xdf\xbb\xb5\xba[\xe9\x15s\xd1\xd9\x8fjVh\xe4)l\xe1h\xf5\x91\xb9\xda\xd4\xeb\xf1\x84\x06\x13\xef\xfbs\x19;OwM\x93\xfb\xfc\x9e4\xccw\xdc\x82\xcf{~\x05\xb2\xcf=!\xae7\x8c\xbaFh\xbf\xb9\x01g\xe9\xafVg\xfe\xfc\x833\xeb\xc9\xed\x99\x80X\xb7\xda\xeaS\xac=+\xccT\xac\xd1\xd6\x16\xbc\xa7O\xa8\x18\x1f\xcd\xa1d\x10\xa2\xf1=\xdf\xfe\xce\x01\xc6\xe0\xc4\x95\xec\xc2\xbd#H\xfds\xd4< \x98?\x13\xbe\x13\xa2uN+\xf6\xf0 `i\x9a\x97\xdeC\xff\x9b\xca.\x93\xc3{\xd3N\xdeq\xebr#4\xa1'\x13\xdd\xa31\xd9\x82!\xbfS\x9a\xa1s\x94+\xe1\xd0\xcbI\xf7\x91\"~\x94W,\x7fdI(\xd5\xc2\x8a\x7f\xbe\x8a\x12&\xcc\xf8K'\x99_\xe8\x95\x89\xdf\xdc\xc0\xeb\xafr\xf8R\x8f\xcaw\xe1\x87v\x9e\x85\x1a\xfa\xaf\x00\xa9\xc9\xc3P\x90~Z\x18!\xe1KP\x0d#\x94\xf6W\xec\xdc\x9f_\xf7\x94K\x8f\xc8l\xa6m\x18\x99=I\xb1U\x0b\x97E\xdc\xf1\"\x9f\xd1\xfcU\x0f:nIs4\x10tw\x07-z\xcc\xd20\x9ck\x06\xed\x9d\x13m|d\xc1\xdf\xadMC5\xbc\xect\xd63\xfa\xba\x15\xd8=\x19\x0f\x05\x0e\xc8\x8d[\xb8\x07\xa9xH\xc8k\"kiR\x1b\xeb\xe6\xcc!PKNCd\x06\xf8L\xd1\x19\xa0\xa8\xa1\xad\xcd\xb1\xd4\xa8\xa3m3\x04;\xd26\xf8hR\xfc\x05\xfbUPC\xdd[gZ\x1b\xd2\x01\xe4\xb2~1\xc0\xe2\x7f\xb1t\xe7\xae\x81\xa8\x16\x04\x9d6&\xd2;\x8b\xeb\xed'\xe1\xe1\xf7\xd34\x9cI\x19\x1b\xc7\xa7\xaf\x85\xc4\x81\xf0\xa9\x12\x82\xe5`Z\x90<|e\xef\xbc\x88\x0f\x06\x1ak$\xce{\xee\x9e_\x8f(\xdaV\xa4x\x0e\xed+\x8f\xbcbD\x17\x11\xe1A\x1f7_\x90\xccpV\x13\x14\xd0\xad\xfd\xb8\x12\xb7\xe5\xe7\x9c\xa6\x17\xd3D;\x8d\x8df\x9cV\\\x98*\x92\xde\xda\x82sr\xf0,\xee}T\xdc{P\xa18\xc2(\xdc~\xfa\xe6\xd9\xf1\xb1\x16O&\x01?f\x10\x84)\x8b71C\xc7\x87\x04\xd9-\x15tNnmR \x1b\xd0\x82\x9f\x9d\xc0\xee~\xf3\"{\x82\x14hXa\xad\x82\xe6I\xbd\xadc\xc9\xaa<4\x8aQ\x16*\xc03\xf7\xe0(\xecG\xede\xfc\x9dk\x8c\xc2XL\n\xc3d\x86(~G\x0e$\xbd\xa0\xe2\xda\xc9\x901\xa5\x05\xc8\xa7\x80K b\xc9\xd4Wrs\xf3\x82\x1e\xec\xef\x8d\x1e\x8aX\xa9\xfaG\x03Y\x93\x97\x8b<\xfa^\x19\xf7Q\xb2\x04\n\xc5\xd9\xa8YK/\x82\x84\xb6\x100\xfd\x01\xfe\x96\xd131!\x92\xfa!H\x1eQ'\x91\xf1\xd8\x99|\xbc\xb9A\x9e\x9b\xbf\xcc\x03Y\x1eb\xda*\xf9\xab\xd8\x04Q\"XE<\xde\xdc\x90\xd5\x02\x7f\x8b\x01\xaa\xf8;\x19\xa9J\xbdQ\xe4\x1a~)\x7f\x14\xdb.01|j\xf9\x981\nx\xb0b\x8bcQG|\"\xe8wK\xe5\xb7\xf4V\x0d\x1d\xf7.\x07\x06Q\xae\xc9\"\x06j\xb4(\x8e\xd0\x7fJ\x89\x84^\xa6\x1b\x02a\xa1:\x9fH_\x14\x11-m\xa7\x81\x08\x0c\xc5^\"$\x0d\x1c\x158(\xac\x1e\xd3P\xbb\x80<\x08\xf5A\x90\x9bFX8\xb7&\x92\xf3\x89^\xe7 \x0f\xf8\xb8\x0d\xc3'\x1e\xfc\xe0Z<\x8c\xc3|n\xb5\x07\xf4k\x9b8Z\x13E\xc3!\x9d\xe3rW\xc8G\xcb\x96\x1c\xcc-B\xf9\x88\xf3\xfc$\x91aFZH\xac<\x04[\x0c\x07\x10\xf0\x7f(\x04\x1bs\xa3i<\xab\xc7-\xdf\x1b\x0f\x9c<\x99\xdf\x99\xf6/XJ\xaa&T\xc9\xaf\xaa\xe7\x95\xd7\x1a\x8a-\x95\xb5\xe4\xb2N\x07\x06\x9f\x82<\x81C\xe0\xe6\x8aC\xa5\xa1W\x184\x085\xec\xda\x83\xb3,\x85e\x94\xf1[.\x8a\xd9\xad\x128\xe4I\x0c\xbe\xeeU\x93\x1e|\xdf\xb3\xe6+h\xd2B\xb4\xd8S\x04\x99\xb8\xcf\xaeR\x16.\xdc\xea\xf2\xd1\xa1\x1eCV\x9c\x0f\xef\xac\xb4\x1d\x12\xf8\xee\xd8\xd8W\xdaOc\x02\x87Z\xcc,f\xf3\xfd]gS\x8d\x0f\xfc\xe9\xe9\nL\xc1D\x03\xb7\x10z\xb1r\x97r<&.\x12\x89e\xcf\xb2\xe5\x92Pw\x15e\x86E\x94\x19\x8b\x9f\xf3h\x95\xad\xc3B\xa0\xd3\x1c\xee\x02-\xa3\xc19K\xdf\x84\xc1f\xc3\xd2\xa6\x05\xae\x98\xabW\xcfbG\x1b\xae\xa7\x0b\x0dL\xbc7\x88\x00\xf0\xbb\x1a\xc5\xf0pOD\xc0\x91\xf1o\xf4\xd9\n\xeb\x00~\x9do\xd3yvN\x07\xa7\xf1i\xf8\xff\xfe\xaf\x9eU\xc0\xe9\x07\xe1\x82]\xbdZ\xba\xdah\x10\x8b?M\xdd\x80\xf4\x17\x96\x90U\x01lS\xf0\xc0\xc2\"oc\xbf\x0c\x1e\xc0\x88(\x0f3\xb3\x86\xe3\x86~\xbf\x0f8\xf8\xee!\xec\x99\xb9\x946\xeef\xb8Dz\x1e\xbd\xd2Jd\x9c\xec\xd3\xa6\x97\x93Ww^\x9a\xcc\xba,n&\xd0\xf8vieZ\xacJ\xa4\xafJ\xc6\xd7\xf7\x13VE@\x94/\xd7CL\x80\xa8\xba\x80\\\x11sSJ@1\x94\xe0\xbc|4\x00\xefR\xc0\xfcn\xb9\x16t\x0d{\xde\xd5\xee\x8b.8\xbf::\x82\xd2\xcf\x90L\x19\xd86\x1b\xb5\xe3\x18\xef\xf8\xfc\xe8s\x82\x15)\x88{A($\x8f\xea\x1dFK\xbe\x87\xaarN\xb1\xf8)q0\x0e\xc6\xa3W\x98\x00\xf9\xba.\x9f\x9b\xc0\x04\xf9{Q@*\x10\xd2M0\xb9\xa096p\x85\x88\x8az\x19\xd3\xaa1\xde\xad\x11M+L\xf3\x89Hs\xa0])z\xe3\xfc2\x8e]C4\x9c$\x8d+\xd9\xfd>\x04\xe1b\x9c\xabs\x0b\xef\x94\xf7\xd7lu\xdb\xc6\xcd#\xaf\xdb\x17\x91\xe7\xf1Mz\xbdbcp\xd4z9\x7f\xf5q?\x8b\xa2?\xf5\xb8\x1bL\xa7Z\x1f\xf7\xc2\xb1N\xe3\x8c\xe9\xc7\xf8m\xf9\xf7O\xef\x9e\xcbc\xcd\x0b\xf6\xf4\x8f\x97\xfe*)\xd4~Q)x\xfa\xf2\xcd\xf3\xbb\xa2\x85\xbas|\x9b\x81\x7fN\xfc\xe1LE&\x81o\xa2h\xc5\xfcpF}T\xf2\xd2I\nT\xa8\xe1k\xe7^\x8bmL8\xc1\x9a\x82\\\xd2\xad0\x91\x0b4\x06\xb1KmN\xb1 E\xb4\xea\x8b\x16{,\xf7\xbbM_&\x8c\xd1\xae/9\xaf\x17\x96y\xfd\x1d\x10\x88%3\xe2m\xb3\x9aV\xf2\xa6\xed\xe5\xe344\x94\xb5o\xe8\xa1\xd6\x90|*c\xba\xc0\x84\xe9\x820\xfd; :\x12\xd7\xe8\xb2k#\xe0\x04v\x87zS\xc3\xca\"\x17\xee\xe4FU\xe8\x1a_\xe7\xbfD3\xeed\\\xbc\xc7\xf3\x1e\xa8\xf2\xe9i\xdf\x9d\x8c\x83pys\xcc\xff;y\xe1\xddPQ\xe8\x877'\xfe\xc9\xcd\xc9\xd3\x13\xcf\xfbZ7\xb9\xc7\x80\xfc\x98\xadW\xeb\x9c=\xb0K \x8d\xbc\xf3r\x15\xf9_\x84{\xd6\x85\xdb\xa4\x15\xe1\x88\xd6\xedD\x82\x80\xf1t\xda'\x9d\xeaf{\xb3\xcfN\xd2\x18#\xc1\xc8\x11\xc2!H2BX\x1eW\xa8\x91~\x1a\xbd\x8c.\xe5\x89\xe6\xa4\x04L\xf8=>\x06\x11\xfcw:\xeb\x81\xd3\xdd\xceu\xe7\x0c\xe9\x95#q\xc1\xb8d\xf2\xa7h\x91\x1e\xf0\x9a\xcb\x9c\xf4\x10\xa6G0\x11wY\xff\xf5\xab7\xc7o\x8f\x7f~\xfe\xfe\xf8\xe4\xc5\xf1\xc9\xf1\xdb_`,_\x9d<\xff\xeei\xf9\x95\xd3\x0f\xfd0o\xee\xc4?\x811\xb0\"\x85!0\x9b\xcb\xeeFf\x04E2\xe3\x05\x07\x9cZBCX\xe7\xc5Dh\x04\xb7\xe8\x8aIB#\xe6\x9f\xdb \x8d\x10\xees\xb2y\x8c\x0f\xda\xa8\xd8\xdf\x89\xd4p\x89\xd6\xe8\x1c\x92\x1b\x86\x81\xd4hKk\x14\xf0\xa4\x0d\xe2C\xb3l(HN\xfc\x13\xde\x17$\x97A:\xbf\x00\xd7*;\x98\xfb \xd3\xe5\x90cc-\xd0\x16\x07\x81\xcf\xcc\x1dQcJ\x8a\xdb\xa6\xb1\x93\xa7'\xb5\x8d)1m\xab\xc6\xfc\x13\x83<6\xf7x\xb6\x1e7!\xf4\xfb\x12\xab\xc5O\xfeg[\xad\xe3\x93\x17\x9fo\xb5\x8e\xc3e\x9b\xd5\xaab\xa0/\xb7Z\xdb\x9fu\xb9\xb6?\xebzm7.\x98\xe9\xb4\xe7\x9f\x0f\xfa\x03\xc3X\xb4{\xa9H\xf6\xf6 S\xc9\xbc&\x10\xaak\xcaa\x0e\xbfP(\x02fX\x87L\xfe,]C\x99\xfc\n*\xe4\x97\xa2\x8e\xb4\xffy\xdb\xae\xed\xc7\xd7N#A\xd7\xd8\xe2\xa4\xf4\x8b\x93no\xd3\xd9\xcd\x14NO\xd3Y\xd7+\xbc\x1c\xeb\xbd\x17~\x10}H%\xf7=\"\x10\xb1\x85\xfb\xee\xbfn\\N\x8by\xe5n\n\xdf{\x13\xcf\x9b\x14(\xb9V\xea\xdc4X\xb3$\xf5\xd7V+\x96\xcfN\xac\xe5\xe1\xca\x83>\xbbbsA\xb3\xa9\xd2H\x96~\x01r\xcd\x10\x07\xc5\xa23\xd9\x08\xb7L\xf3\xb5\xa7\xf47H\x81\xa9yx\x8a(\xcb'\xa1\xe7'\xf74\xf3\xee\xe7q\x1c\xc5\xae\xf3\xad\x9f2\xe5K\xcbx\x99)(S \xf2\x89v\xd9t8#\xda\xa7\xcb\xa6\xa3\x19y+e\xf4sg\xd6\x83\x0e\x9b\xee\xcer\xf3Wv \xbc\x03\x97\xff\xaf\xff\xee\xed3W,\x83\xc9\xff.\x10\xe1)\xba\xbc \x8aN\xd1e\xd3\xbd\x19\xc5\xa5\xe8\xb2\xe9\xfe\xac\x07l\xfapfC\xc2(p\xc5\x80\xb7\xd3\x873A\x94\x0ez\xb0\xe3=\x81U\xeeK\xb9\xf3\xc4\x83\x15\x1a\xf6\x99\x90\x14\x88\xa8\xd1\xddU\x15\xfd\xd9\xc0\x8bM\x1f\xcfp\xe1\xf9\x9e\xed\xb3]\xb8\x0f\xee\xfe\x00\xee\xe3j\x0df\xd0\x85\xae\xcb\xa6\xc3\xe1\x8c\x83\xd9@\x8a\x00qC\xf4/\xb77\x9e\x88\xcb`]6\x0dzV\x1eFS\xdf\xda\x82e?a\xe9\xdb`\xcd\xdce\xff\\\x93?\n\x0d\xda\xa5\x0b\xce\xd3o\x9e}\xfb\xfc\xc5w\xdf\x1f\xff\xe3\x87\x97?\x9e\xbcz\xfd\xdf?\xbdy\xfb\xee\xe7\x7f\xfe\xcf/\xff\xf2\xcf\xe6\x0b\xb6<\xbf\x08~\xfb\xb0Z\x87\xd1\xe6\xf78I\xb3\x8f\x97W\xd7\xff\x1e\x0cG;\xbb{\xfb\x0f\x1f=\xee>8<\x0dOc\xe7\x96\xec; x\xbe\xc4\x86\xddY\xfbm\xc1\xd3A\xa3b\x9cc\xc7\xc8\xa2\x1e\n)\xf2_H\x1eCa\x9d\x8e\xa8\xe3\"b\xcfr3vi\xbcN1\x00a\x7f\xb7Qk\xc4\xe0\x00\x06\xad4?(\x13\xdf7\xbe\xb6\xe2\xc1\x18\xfe\x0b\x1e\xa1\xf0\xb9\x08\xf6\x9f|q\x06E\xe9\xc5\xf44>\x0d\x0fgB\x86a_\xf4\xa0v[|\x8c\xffc|\x95\xd8\xb7{n\xd1\x07)\xff\xee\xc1\x13\xe0\xab\x9c=\x01\xd6\xedz\xc0\xe0\xbf\xd0\n\x8c\xe4%\xa4\xce\x99\x8b\xfc\x10pt\x04\xc3}\xd8\x82\xd1\xde\x9e\xd7\x03\xbd\xf8Q\xb9t\xb4\xb7\x07[\x90p\xa4\x9f`\x12\x90\x83\x03\xd8\x87\x1b\xf0\x158\x04\x12\x1c\x98\xe9r\x15[4\x00\x19\x087\xc3\x81\xdd\x87}T\xd1|\xd2\x90`\x0c\xc3GJ\xd0Slk`lk$J\xf1S\xe1q\xc8\x97F\xaf\xb3\xab\xbe\x8c1\xe9\xc62\x8e\xd6\xea\xc1\x9d#O\x80\xe8\x1e\x1f\xe7u w[\xa9\x08\x06\xf6\xe0,\x0e!\xd0\xf6Z\x93\xb6\x00\x1d\x93s\x8b\x15\xa1X\x80/k\xc45~\x0d\xae\xb1@\xe7N :\xf1\xe4\xfb\xd3\x00\xb7\x8fo\xfa\xfe\x0eR|Z\xe9\xc8T\xba_*\xdc\xdf\x81-@s\x1c>#7\xe0\x10\xfb\xc8\x83.\xa4SfW\xa8\x16\x01t\x87\xf4\x87\x9fyD0\x86Q\x0e\xae\x85v\x06\xa6vv+\x85\x07\x07P\xeeq\x7f\x17\x1b\x1e\xe6\xc0\\h\xb9:\xc0\x83\x83J\xc3\xfb\xbb\xc5\xf6z\x10\x17\x01O\xfd\xfad\x02\xc2\xca\xceVd\x7f\xc58\x93U\x02\xc1*,\xbc%\x89\x16\xd5x2X\x9c9>\xf1\xca\xb7\x19\xf2\x97\x985\x12\x83[o\x03C\x80\xca\xfc\xb8\x91>z\xae\\\x83\xf9\xe1\x0b\x9f\x90 \xd8\xea6\x16\x88|\xa1\xf3)\x9b\xe5I\xc0\x94\xa8\x96\x16|\xe6\x08f\x15E\xb2q\xb3=\x87\x08\x84\x13\x84\x10\xd7\x1b\xf0\x04\xa2Id\xd3j\x08\nY\xdfo\xecZ\xfe\xdd\xc9P\x07i\x9f\xe6>x5a\x81\x90\xa8;1k^\x16\x11\xce\xa2U\xd2\x0e\x058\xc5SyG\xfa\xa6*\x9c\xf8\x93<\x8cZ\x1c\xfa;\x9e\xe1\x8d\x1f\xc4\xc9\xdf\xeb\x10\x0b\x7f\xdd\x9a\x83\x9a\x89\x19=\x8dc\xff\xda\xf5\xa5\xdb\xa3R\xf4\xf0\x13\xec\xdf\xed\x04\xfbx\x82\xcd'7h}r\x03\xf4\xe1G\x93!\x0d\xe1~`\xd7 \xff\xba\xec\xd6ok%\x9b\xb2\x19Ge\xd1t\xc0o\x19\xfcw6\xfb\xd3\xa1\xde\xb2\x8f&\x9a\xfac9\xd4\x99\xf0\x06\xb6\xeccT\xd8\xc7\xcc\xb8\x8f\x99m\x1f\xf9ne\xb8[Ae\x89{\x10\x89\xb5\x0b\xc4\xda\x05\xb8vV\"&\xfa\xeb\x0fp\xf1\xd6\xbe\xe51N\x98Uun\xf6)\xfcrg\xb8\xf6\x82\x0dB\xb0\xc4\xfe\xd2\xee\xb1\xb0'L\x10\x15\xa2\x0d\xa7lV{\\>/\xc4\xdb\xf0\xfc\xdf\xcd\x8f\xf2\xb7\xe4A\x16.\xd82\x08\xd9\xe2\x13%/5\xcbp\xfbE\xf5*\x19\xe6o\xcb\xcf}\x8c\x82\x85\x8c(V\xd7\xbb\x89\x93\xab\x13\xfa\xfd\xcd\xbc\xa1\x7fK\x1e\xc4\xec\x9c]}\x11U\xca-\xe4f\x01F\xa6\xc1zm.'\xe5Mg\xa6\xb19\nxp\xfa\xc0\x9d\x9e\x07\xeb\xd9}\xef\xeb\x07R\xb3a\xae\x1e\x1bb\x0c\x80\x18\x94\xf3@\x8a\xdd\x07V%\x02i:\xa4\x05o8\x1d\"\x1b&\xd5\x07G\x9c%mq]\xf3\x9e\xd0\x9aw\xcar\x03\xa0\xb8`\x0b\x947Si\xe5K\xdf\xc1\x7f\xce\x8a\xcbS\xa2-:\xa9\xdf\xca\xab[0\"\xea\x81e\xc5P\x93\x95kFY\xaf\xcc\xc7|\"\x92PT\x1au\xd0\xd6\x14\xe6\xb6\xf8\xa4vC\xf8Zu!\xed'Q\x16\xcf\x19ty\x81ua\xd3\xfe\xf9*:\xf3WB\xe7\xd7=\x04\xe7\x9cB\xf5\xe5\xa9\xe7\xf3Wkz\x15\x9c\x87Q\xcc\x9e\xf9\x89\xfe.\xe0\xef\xd8\x97BfO\xb4J\xea~\xd1\xa21]\x06\xe1\"\xbaT@A?\xfb,\xd9\xc4\xc1\xda/\x19\x06\x06\x8d\x98\xd1\xa8N\xf8-y \x07\xff\x17\xe3\xc6\xaa\xbaF\xfe)\x18p\x11\x06\xf8\xe6{\x16\x11!\xc8\xf48}4\x0e\xe3g\xa1\x9eM\x8f\xfd\xf0\x9c\x8dkyo[TQq8^\xc7\xd1y\xec\xaf\xe9P\x84\x18\xfb\x8e\xef\x98\x0c-v\x16-\xae\xb58<\xce\xf3+\x0e\xf9I\x10\x85oR?ek\x16\xa6\x8eVu:\x98\xa9&\\\xe7i\x1cG\x97/\xc4\n\xe7_\x96?`\xea\x0d}\x8bN\xcf\xb7\xfd\xca\xc0\xe6\xebZ\xb1\xba5hD\xd4\x9f\x84\x8eEt\x9c\xe6\xcd\x0f\xb4\x8d\x0f\xeb6\xbe~\xd3\xff\xb0`s\x9b\xc3\x0b\xdej\n\n\x88\x81\x95\xdb0\x14\xbfu(\xe0\xbbc\x84\x82\xbc\xaa\x82\x02^\xd7\n\x04\xc5\xfae \xe0\xc0v\xeb\xaf\x0cf\x10/\xfc`\xc5\x16\x90F\xca\x16B!\x0c\xbb6\xc5\xd8\xc1\xc6\x8f\xfdur\x0b\xab\xd0H\x06T\x0d\xfd\xb5 >\xc5\x0di\xec\x0cW\x1c7\xba\x07\xce7\xabh\xfe\xa1t\xde\xec_\xe1\xf2Mp\x0d\xe4\x02\xbaQ\x0fB\x199x\x8a\x96\x0b\xfc>\x9e\x0egt\x01\x0b\x95\x8b^\xdd\x91\x08\x02#F\xe5\x9f\xd2g\xf5&4w\xbe\xa1\xe5\x00\xfe\xd4;Z\xdd\xba\xcat\xed\xcb\xda8X<\x00\xf6F&\x8b1\xf7\xd1N\xa98\xa3\xda\xe5b\xbfN\xdaW\xac\x9a4\xcb\x15J\x08\x0f\x0e\xe1q\xb1h \x870,i\xb3Vp\x08;\xa3\x12(\xf0\xb2\x9db\xd9\x05/\xdb-\x96-x\xd9^\xb1\xec#/{X,\xbb\xe6e\x8f\x8ae\xe7\xbc\xac4\xbe5\x1c\xc2ni,\xefyY\xa9\xdf3^V\xea\xf7\x12\x0ea\xaf\xd4\xc7\x15\x1c\xc2~\xa9\xbd7\xbc\xac4\xb7\xe7\xbc\xac\xd4\xc7S\xbe|%7\xc4W\xbc\xac\xf4\xedo\xbcl\xbfX\xf6\x01\x93\x15\x96*\x1eca\xa9\x97\x1f\xb1\xb04\x95\xb7ph\x80\xf8\xc1\x18\x9c\xd3\xd3\x81\xe1\x1ez\x88o|\xc3\x9bG\xf8\xe6\xcc\xf0\xe61\xbeI\x0do\x86\xd4Qhz5\xc4W\x1fM\xafF\xf8jiz\xb5\x83\xaf\xca\xd4\x1c\xff\x1b\xd1\xd0\xcbBh\xfe\xb7\xb3;\x86{\xa7\xa7\xce=\xc3\xd8\xa9\xaf\xd3Scg\xd4\xdb\x89\xe9\xdd>M\xed\xbdi\xa5F;\xd4\xeaK\xf3Kj\xf5uI\xc6P\xac\xfa\x8c_\xd6\xce\xb5\xd3\x03\xe7\x17\xfe\xbfk\x96\xe0\xb3\xf8\xe7\xf9\x1b\xfe\x0f\xd2\xbc\xce+\xfa\xff \xff?>\xd2S\x84\x8f\xf4\xffWX{\xb9\xc4\x8a\xe2\x9f\x17/\x9c\x99)\x90\xc6\xeb*\x92\xcc\xc5\xb5%\x0d4Y\x9e\x1c\xd6z\x93\xf5(X\xc6ho\xcf#B\xe8\xca\xa1h\xbd\xa3b[\xca\x02\x19\xab\xef\xef\xed\xed\xc8\x0f2\xf1\xc1\xae\xe1\x033\xc9\xde\xa1FvG\x8fw\x1f\xef?\x1c=\xde\xf3\xbcb\xf8\xdby\xb4`\xb0\x89\x82Bz\\\x8av\xb8\xf6\xafe\xda\x85\xf3\x98\xf9)\x8b)\xf3\xc2\xe0\xea\x85\xf83\xd1\x0d8\xd0wb\xa0\x8f\x8a;[\xf8%o\xbc\xd3SG\xc4p\xcc\x836\x0e\xf0\xfbm\xc5'{\xd0\xd5\x987S\xb0\x92\x9f\xaa\x9b\xa5\x85\xac\xc6\x9d\xc9crG2\"\xb6\x0c0\xfd\xa3\x9f^\xf4\xd7\xfe\x95\x8b\xf9\xc1E\xf1\xcd\x0d\x8c<\x19\xda\xfbC\xb09\x0e?\xfa\xab`Ami\xbf\xf58\xdc\xcbUt\xf9\x92}d+\xa4`\x83\xe4$\xe2kz\xee\xa6\xf9\x1bO\xfa\x1fie\xb2\x97\xf4z%\xe2m\x17\xaeU\x1bE]\xcd\xffkH\xdfU\xe0\xdcrw\xfe\xff\xfca\x919\x87\"\xfb \x19iP\xc6\xd5\xb8\xa40`J'C\xce\xff\xd1\x13\x8a\x88:\xa4\x8c\xe4\xf14\x10Z]q\x16\xd84C\x0f\xeeN\x87\xc8\x99,7]\x1d\x91A/\xff\xcc\xc0\xd5r\xd0\xc8\x94\xff\xb6\xd7\x03\x97\x12\xb8\x95B\x90\xf7eV!\xde\x0foOdt\x98\xf7u7\xcb\x1e\xf8\xd4\x99\x8f\nk\xfd\xd5\xd4\xe7\xe3\x0b\xa7\xd9\x0c\x0e\xcb\x91oA\x13p\x17\xe1\xd9\xd5@\x8c\x03\x0e\xb6\x98H\xf3H\x05;Q\x9c\xfe\xc0\xae)\xd5\x8c\xfaQ\x8c\xde\x1e\xb2\x7f\x06\x0b\x19=]\xfd\xba\xb9\x81G2\xf6y\x18\xfd\xc4\x96\xd4\x86x\xd4[\x08\xa3g\xd1z\xe3\xa7?\xf2\xe3Lu\xb4\x02\xbd\xe6<\xe2\xd0\x8d\xeeV\x97b)\xb5\x02\xbd\xe6\x1d\xe2\xc5\xcb\\Du\x9f<\xbf*\x86\x98\xc7\x9cWa\x1e\xa6\xbe\x98I\x9a\x97,2\xfe\x85\x9f2a\xa7@\xa5Y\xc2\x16\xdf\xeao\n\xc1\xfdL8\xe2\xc4x\x98\x10\xe8\xc5i\n\xe0\xb0\x14:\x96y\"w1)\xe6\xb6\x87\x04\xd7|l\x89f\xaa\xf4\x04\"8\x80\xe4\x89\x879\x1a\xd0j]\xa6\xe6\x17n|\x98\xf8?\xf2\xd0\xda\x87\xfcCD\n\x0b\xd1A\x82\xa9\xdd\nox\x97\x14\xc65Bc!z\x0eu!\xc4\xa9\xe0\x03C\x01\xd7\xddC\x08<>\xc4\xeea\xd9\x9dL\x80\xb0_\xbbD/\xebbo\x9bc\xebJty\x1f4\xce\xce\xd4\xf6\xb7U\x14-\x19\x0e\\\xb1\x15\x87>z\x9c\xd76\xf4okC;\xa3b`\xaa\xe1h\x1f\x99\xf7\xfda9\xf2\xd5\xe8\xf1\x1e\xff\xc5)\x94\xdcm\x82\x93$\xe2\xd7\xcd\x0d\xec=\xdc\xd9\xdd-~\xc7/\xe3\x1d\xfe\x8b\x92Q\xa8\xaa\xbc|\xbf\xd4\xf5p\xb8;\x1c\x0ek'\xf2\xc2:\x11\x9cb\xa9\x1fl\x99?\xbe\xcf\x1f\x9f\xe6\x8f\xaf\xf2\xc7\x0f\xf9\xe3\x8f\xf9\xe3e\xfe\xb8\xa8\x1d\xd6;\xeb\xb0\x1e\xfcz\x1a\xde\x07\x19\xc8D\xdfn\xf9\xc4\x0f\xd27\xd5X#\xbfs2\xa7X\xf4\x0b\xe7U\x8aE\xff\xe4\xb4M\xb1\xe8g\xc0\x88\xd2\xd5A\xfeP\x1fg\x9d\x8f#\xd2\xed\x9b:\x86\xe8'sK\xf9\nO:\x85\xfa\xa8\xbe}Kx\xa0R\xce)\xd5\x7f\x8b\xec\xa3\x85\x04%\xa5\x9d\xc4x<\x9do]\xba\x8c|,;\xcb\x1f\xdf\xe4\x8f\x97\xf9\xe3\xfb\xfc\xf1i\xfe\xf8*\x7f\xfc\x90?\xfe\x98?.\xf2\xc7\xeb\xfcq\x9d?n\xf2\xc7\xe3\xfc\xf1*\x7f<\xcf\x1f/\xf2\xc7\x8f\xf9\xe3\xf3\xfc\xf1713{V\x17C\x82\x07\x839\x8a\x97\xbf\xed\x10\x0bb\xf2\x06\x0e[\xff\x13a\x05c\xdd\xef\xd7\x9a\xcdS\xff\xe3m'@\x91\xdd\x9a'\x02\xe2\xe6\x8a\xa7\xa3\x861\x83\xca\xffB\xb3\x9c\xa3\xfa'\xe2'=\x81.\xe7\xf50\x9b=_\x07Q\x01&\xfcqL\xc9\xeb\xa0\x0b\xffp\xe7\xc4L\xa2\xd2\xa2\xb63{\x98K\xc8A1\xb2V\xfa\x83\x83g\xe65A\xfb\xcf\x8d\xd0~\x0f3\x934+\xf7\xe4\x9fb\xa4s\xaa\\p\xcaV\x1aI\xc8LK\x84\xd0\x111h\xfb\x80\x0e;\x9c]\xdb\xdf\x19\"\x11P\x8dO\x1a!WL\xdf\xec\xef\x8c\x06\x90\x07+\xdd\xd9\xdd\xe1\xcc6\n\xa6^\xbb\xc3\xc1\x08\xbd\x96\x19lS\xeb\x949f[|\xd6%\x1e\x8e/\x1b\xa7\xdd\xc6$\xf3z+\xcce\xbb\x87\xd0AJ\xe6\xdf\xfc\xe2\x99@:\x8df0\xa6[\xee\xb5\xd9\x1bM\xff\x93\xba\xd4\xba=\xf3(}\xa8\xb9!\x11\xfc\xc1\xbee\x05\x99n\xb0\xdeDI\x12\x9c\xad\x84\xb7\xfb\x18\x02!\xaa$\x0b\x10\x8a=\xe64\x11v\x7f\xb8\xf5\xfc\xfc\xd7\xf64Rp(\xe95)\x00\xc4\x90k\x06-@\\D&\x85XRF\xf9E\xc8\xcf\x1b%\xd46\x7f7\"|\xa4\xde\xf1Q8]\x07\xb7K\x1e\xcam\xbalNC\xa7v\x86\xdf[\x19a\xdb\x909l\xe4(u{\x88\xb9/\xa9\xf4\x85a,\x8a\xf8\x99\xb2\xf1/E6\xfe{G\x98\xa2_\xd0\xfe1\xf8\xf39\xdb\xa4 \xaa\xde\xf0\x06^QN0\\\x81{M7MqZ\xd3\xd5\x8cff\xbfy\xecW\x8ad\x87cc\x95\xda\x90\xd3\x06\x83,#\x9b\xdf\xa9\x97\x8f\xfeOA\xc6G\x87\xbe\xcc\xb3\x17\xf4\x07r\xc8a\x8f\x8er\xd8\x83\xce\x10C\xdf\xa8\x9f\x03Cj\xe0\x04\x14\x94P\x13\xe5$\xad\n\xf9\xe9,\xed\x01E\x85+r\xb9\xe5\x14\xa6\xbc\xf9y\x0fV=\xb4\xff\xa8\xbaIq\x00Ea\x87z\x85\xbe=\xf2MU\\\x86\x02;W\x93P\n\x8dX\xae$Q\xbbM\"@-al~\x13\x18\xda\xd1\x8a\x1aZ\xd4?.\xa0:\xa5\xee\\g Z\x12\xf8pF\xa9n([y\x9d\x05\"\x14D\xacDB,\n\xfa\xb6\xec \xf1`C\x0fE\xf6\x9c\xd5\x10\x1b\xceW&\xe2@\xedb\x1c$\xa1\xd6\x12\x91%\xc2)'p\x16\xd3h6\xeb \x1cCf\x80>\xe5`\xa7\xff\x08\xee\xf1t\xb58A\x02\xf8\xf1l\xf0\xa7\xdc\x9b\x823\x1e2\xeb\xbb\xac\xb3\x14[\x875\x8b\xc9\xcc'\"r\xd3\x84\x13\xaa\xe2\x11\x1c\xe5\xf1MS-\x1d{?\xf1\x97\xec\xdb\x92\xb5B\x8d\xe5\x1eM1\xee\xb3\xab\x94\x85\x0b\xb7z\x8e\xc8Fs\x0cYq\xb7\xf0\xc6/\x8d\xeeN>?\x02\x90\xc85V\xba\xd6\xf0\x83\xed\xbc\x7f\xcf\x92\x1f\xa3E\xb6\xaa\xc6.\xfd\xe8\xaf\xb2\xa2w\x1f:\x8a\xf5\xcfY\xfa,\n\x97\xc1\xf97\xd7\xefb\x0c\x86\xdb_D\x97\xe1*\xf2\x17T\x0e\x87\"\x1eB>\x80\xdc\xe9h4\x18j;h\xf8\xd4\xae\xf1*\xdb\x16\x18\x15\xbd\xa2\x92;\xe0C]\x86\xfd%K\xe7\x17^\xc5E+\x9f\x93qJmvU\xd51\x92-\xca\x97\xb8\x9fl\xd8\xfc)\xd6L\xccH2\xf7\xe7\x0dJ\xcb\xe1\xa6^?\xbd`\xe8\x07\x17\xe9\xe9F\xe5\x9f:E\x91y\x14\x80\x9aSM\xbe\x8c\xce\x88\xa8.\xed'\xa9\x9ff \x1c\x1d\xc2\xee\x00\xd3[\x04\xfdl\xb3\xf0S\xf62\xf2\x17Ax\xfe\x06\xdf\xbb\xce\x12\x1d\x17i@\x9c\xb3\xb8e\xb5w\xf1\xcaux\xc1<\n\x93h\xc5\xfa\xa8\x14se\xffo\xd9U\xaa\x91'Y\xbc\xe2@\x86\x17\x07R\x89\xcc\xe5[)\xdcQ\x7f\xf1\xd7+\xea\xc1s\xc3~\xca\xae\xca!\xb4\xa1\xaaF\xfb[\x9d\x1f\x1d\xf2\xcfY\xda\x12\xd2R^\xf78t\xcbw\x15L\x80\xc1\x18\xa6l\xf6\xf7\xc2\x12\xa5s\xaf\x08w~\xfa\xf7\x0c^\x84H\x91\xcb\x1b<\xef\x0b&\x10\x83)9\x93\xd4\xc7\x96\x83\x17\x16[F5\x9a;\xdc\x7fT\xea1\x11#\xd9-\xe2!j\x93\x02I\x92\x0b\x06\x07\xbcL\xbe\xf0\xdc\xa0\x07I\xff\xdd\xebo\x9f\xbe}\xfe\xfe\xd9\xab\x93\x17\xc7\xdf\xbd\xe9\xb5\xdc>\x0c\x0e\x8d\x80\xeccp\xd1\x7f\xbc\xf1\\\xd6\xdf\xf8\xd7\xfc\xa8\xeb(\xde3\xf7\xfa\xf6\xd5w\xdf\xbdl\xdb\xab\xbc9U\x07f\xb5/\x02UEt\xa2\x86\x9c\xf0\x97=\xe8\xc4\xc5\xd1\x05\xc2\xf3t\xe6}\xc5\xf7\xf9\xc1\x83\xff\x03\x14J\xe2G\n\xdb\xf4\xee\xa7\x97\x87\xc9\xa5\x7f~\xce\xe2\xed,\xd8\xe6xg\xe1\xaf\xa2\x90m\xa3N$\xed\xff\x96\xf4\xd7\xfe\xe6\xff\x07\x00\x00\xff\xffPK\x07\x08v\xf2\x8aA\x86\xba\x01\x00\xc5\x87\x08\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x00 \x00swagger-ui.cssUT\x05\x00\x01\x80Cm8\xec\xfd{s\xdb8\xb27\x8e\xff\xff\xbc\n=\xbb\x95\x9a\x99\x1dS!EQ\x17\xabf\xeb\xc8\xb1\x93q6r\xc6\xcem\x92\xad\xad)\x8a\x84$\xda\xe0\xe5\x90\xd4\xcdz\xf6\xbd\xff\x8aw\\\x1a $;s\xf6\xf7\xad\xb3\xd9dl\xe2\xd3\x8dFw\x03h4\x00\xb2\x9bl\xed\xe5\x12\xc5\xda\xda;\xfc\x9fN\xe7\xe5\xdf\xfeo'\x08c\xdf\xc6\xde#\xea:I\xd2\xd9\x0c\xbbzW\xef\xfc\xbf\xce\xec\xfac\xe7\x9d\xe7\xa0 A\x9d\xff\xd7Yz\xe9j=\xef:\xa1\xff2@N\x88\xed\xe4%M\xf7\xb7\x97\x8b0H\xb5\x85\xed{x\x7f\x9e\xd8A\xa2%(\xf6\x16\x13'\xc4a|\xfeWs\xde7,\xe3\xdfD\xfd\x9dU\xea\xe3\x03\xf6\x02\xa4\xad\x90\xb7\\\xa5\xe7F\xd7\xb0&\x9a\x9fh)\xda\xa5Z\xe2=\"\xcdv\xef\xd7Izn\xe8\xfa\x8b\x89\xb6E\xf3\x07/\x85K)\xce\xf3\xd0\xdd\x1f|;^z\xc1\xb9N\x95\xd8q\xea9\x18\x9dQ\xcf\x12\xcf\xa5\x9f,\xc20E1\xf5h\x85l\x97y\x14\xd8\x1b\xea\xf7\x049\xa9\x17\x06\x07\xd7K\"l\xef\xcf\xe78t\x1e\xe8\x16\x1b\x87\\K\x99\xf0\xe7=\xe4OJ\x19\xbb\x83!\xf2;\xb4\xa4\x0bo\xe9\xd8Q\xc6\xf0\x8cy\xbc\x8eii}\xdb\x93UZPT\xea0\x90\xdf\xe9\xeb\xd1\x8e\x96+>T\xca\x9d\x87\xbbL\xe4\xdd2\x1f:\x16a\xec\xf3\xca\xfbg\xba\x8f\xd0/1JP\xfa\xaf3\xbe Y\xcf}\x8f)\x01*\xcbf\xb5\x92\xa2(\xfdW=\xb6\xdaQ\x84\xec\xd8\x0e\x1ct^\x14\x01\xd5\x974\xe7\xe7\x9a\x1f>j\x8b\xd0Y'\x9a\x17\x04\xcc\xd4C\x8a\xaa\x04-\x85o\xc1\x16\x95\xf3 \xde\xeb&\x91\xed\xba\xd9l\xa0K\xda\xd0\xb0\x89\xbd`)n@+\xae\x92^\x02,E\xa7\x11\x87p\x9df\xbevnD\xbbr\xec\xed\\\xe4\xc0\x8fh\x972\xb3$\xc2n\x82\xd2C\xd5\xb0\xaei!\xbf\xd3\x1d\xe6\xff\x0e\xb8a\x01\xa3%\n\\h\xda\xac\xe7\x14j\xd6$\x9e\x16\x83a5\xacW\xdd>\xb5\xe7\x18M|{\xa7m=7]\x15\x1d\xa5\xd6\xf2d\xbb\xf2R\xa4\xe5\x83\xf4y\x11y1Sl\xb8\x8cQ\x92\x80\x83\x8f\xd2(Xw\xe1\xbaw\xd9\xeb4\x04\xac\xeb\xac\x90\xf30\x0fwP\x1f\x89m\xd7\x0b\xffu\x92Vd\x0e\x15\xac\xfd9\x8a3\xef-\x19\xe7^\xa9%\x91\x17h@\x17\x14\x10\x85\xeb\x94&:\x94C\x90\xa0\xa1 \xb2cg\x05v\xdfLY\xb9\xc7LJ\x0f\xd3\xc2\xc5\"A\xe9\xb9\xd6cB+\x8aU#K\xf1@s2nX\xdc\x06\x11]\x13\\@\xd2q#[C\xbf\xf00\xd2\xd6\x11\x0em\xb7R\x82pt\xcaG\xed\xcaO\xe9X\x00\xa5\xb6\x87\x13:\nE\xc1Z\x12\x85&k\xdf\xb7\xe3}\x8d\xc0^\x92j^\xca\xf4*\xc7\x0e66\xec\xc4\xb4V\x8b \xed_\xcc$\xe4G\xd8N\x115\x93Rd]\x17\xcd\xd7\xcb\xce\xdf\xa8q! \xb1\xe7v\x96!v\x01\xac\x96\xf7;\x90\xe2\xaf\x8b\xc5\x02\xa2\x98c\xdby\x80)\xd8\xf8\xa7\xa4X\xc6\x9eK\x04Ndx\xdbY\xc7\xf8G\xd7N\xeds\xcf\xb7\x97\xe8e\x14,'Y\xf7\x1d\xf4\xcf\xbc\xcf\x17\xef\xef\xb6\xfa?\xde,\xc3\xe9t:\xbd\xf9\xf0iu\xf5i\x99\xfd\x98\xffs\xfdj\xfau:\x9d^^]\x0e\x07\xef\xb2\x07o~\xbf{\xfd\xe5\xd7\xbb\x8f\xf3\xde7\xdd\xed\xbd\xde\x7f\xbb\xbd\xb8\xf8\xf6f\xec}\xfbp\xf1v\xfe\xe5u\xf0\xed\xf3[\xfc\xf5\xcb\x9d\xe58\x18\xff\x96\x11\xecW\xd1\xe7\xd7+\xfd\xcb\x951{\xef\xdfl\xe6\x1f\xacU\x81\xb7\xfa\xf3\xdf\xa7\xc5\xff.\xb7/\xd1\xaf\x17\xab\xaf\xbd\x14\xbb\xaf.\xbco_\xdch~\xaf{\xc3\xe1\xfa\xe5\xb5w\x11}\xbb\xd4\xbd\xcf\x8f\x9fofW\xc6\xf6\xb6\xf79\xb4?\xad\x06\x8e\xff\xf9#z\xb0>}5\xa3\xf8\xeb#~\xb8\xbe\x1f\xfd|}\xb9\xeb\xbf\x0fV\xa9\xf3\xc6\xc0\xee\x9b\xab%zc$\xf3`6@\x97\xba\xf7\xf5\xcb\xdd\xe6\xab\xffi\x90\xfd>\xff\xf2Y\xff\xfaa\xe4]\xff\xba\x1c\xa07\xc6\xd6}\x93\x8c\xaf\x1f^?\xcc{o\xf1\xf5\xeb\xd5\xcd\xa7W\x17\x97s\xf3-\xbe\xbe\xfc\xb4\xbe\xf1\x8c\xfb\xd9\xc7\xab\xdd\xf5\xa5c\xbd\xbb\xbf2\xde_\xce\xf67\x1f\xb6\xcb\xd9\xfdtw\xf3a\xb4}\xffa\xb4\x9b\xbd\xd2\xb7\xb3\x8f\xe1nv\x19\xeeg\xaf\xa6\xcb\xeb\xea\xef}\x7f\xf9\xdb\xafo\x1f\xbe\xddG\x1f\xee\xae\xbe\xd6\xf28\xfe\x9d\xff\xdb\x87\xb7\xa1\xfb\xeb\xdd\xf6\xbd7\xda\xb8\xa6k\xbe\x0b\x9c\xc7w\xfex\xffm?\xda\xbd\xff\xf8`\xbd{\x9c\xee\xdf=^\xef\xdf\xfd\xfe\xf6\xe1\x9bg<\xa2/\x96\xfe\xf5\xf7e:\x0ff\xf7\x04\xdf\xabo\xbf\xdf\xdc;>\xde\xbao\xf0f\xee]\xec\xbf\xbd\xf9:\xf8\xfa\xe5\xed\xc6\xfd\xfdv|\xed]7:xcl?~\xd2\xc7\xd7\xfeJw\x7f\x9d\x0e\xde\xed\xc7kg_\xdb\xe2~\xde\xd37\xe8\xcd\xeb\xed\xbb\xc7\xab\xf5\xec\xd58\x9d\xe7\xfaY\xa5\xf37\xd6\xe3\xfb\xe0F\xff\xe4\x7f\xa6d\x9e\x07\xb3u\xa9\xd3\xf5\xd7\xde8}g\xaeV\xce\xab\xd1\xee\xdd\xfdt\xe3\x18w\x96\xf3\xe6\xd3\xe6\x93\xff\xf9qn~\xde\x7f\xed}\xfe\xf0\xed\xcb\xd7\xfbk\xef\xa2?\xff\xb2[;\x8fQf{EY\n9\x9c+\xe3\xe6\xfd\xc3\xdd\xe6\xab\xf99\xfd\xf6\xc5\xd2?|\xba\x1d_g\xb6~e=\xd8_n\x07\xb3\x8fw\x97\xef?~\xed\xdf\xe8\x9fz7\xfa\xe7\xd7\xb3\x8f\xaf_\xdf\xdc/{\xb3\xc7o\x97\xb7\xf7\x0f\xdb\x9b\x87\xdb\xfe\xec~\xb9\x9d]]\x13\xfc\xf0\xda1\xefVs\xff\x06\x13\xfc\"\x9a\xdf\xad\x1a\xbf\xcb\xe8\xd2\xf1?\xaf\xdc7\xe3\xfd\xe77\xe3\xcd\xfcR\xf7n\x0b\xfd,?\xbdYm\xdc7\xe3G\xfb\xcdx{}usy}y\xbd\x9d}\xfc\xb4\xfc\xc7\x95\xb1\xfa\xda\xc3\xeb\xbc\xec\xd5\x83\xf7\x9b7\x1d\x95v\x1a\xdc\xbd\xf9\xbc\xb7\x7f\xff\x86\xbf]}\xdb\xcf{\xfa\xd21\xef2\x1d\x0e\xec/\xd6\xa3\xfb\xe6\xf5\xfak\xef\xf3\xdb\xbbK\xdd\xcb\xf0\xef|\x1c}\xbb\x0c\xcd\x9b{g\x7f\xfbpk\xde\xdc\x7f5o\x1f?\xedf\x9f>\xf5n\xef\xdf\xbe\xba\xd5?\xedo.\xa7\xfd\xd9\xc7\xe9vv\x7fe\xce>\\\xd7\xfc\xbe\xbd\x19\xdf\xbb_\x0c<\x0f\xee\x08~w4\xbf\xc7V~\x9bL\xf6w&\xe0\x93\x99\xaf\xbe\x1a\xe7~\xf9\xe9\xe1\xeeM\x81+\xfa]\xde\x0f?\xf6\x97\xbf]\x8e\xfb\xce\x9b\xd7\xf7v\xef\xb3~\xfd\xe6\xf3:\xeb\xef\x8ew\xfd\xf2\xb7\xe4\xe2\xc3\xcfof\xd9\x08q\xff\xe1\xd3\xdd\xc5\xe7_\xef\xed\xaf\x9b\xc7\x97/\x1fG\x97\xef\x92\xcb\xfe\xd2y\xf3\xbb\xf7\xf5j\xfa\xe6\xe2\xfa\x1fo.\x02\xf4\xf2\xe5\xe2u\xb4\x9d.\xb7\xd3\x8b\xf1hj\xbf\xeeE\xf7\xf8\xd3mF~\xf1\xf6\xee\x93u\x15?\xbc].\x97\xbf\xfc\xf2S'F\x11\xb2\xd3\x8e\xde\x11\x8e\xa4\x9a1x\xc6\xc1\xf4\"\x1f\xe6n\x8b\xc1t\xba\x18\xbd\x1c\xaf\xfew0\xfd\xdf\xc1\xf4?u0}\x7f\xf9u\x7fw\xbf\xba\xba\xbb\xcc\x06\xd3\xaf\xfb\xd6\xc1\xafe0m\xf8\xdd\xaa\xf1\xfb\x0f\x1aLo?\xb6\x0e~G\x0d\xa6\xb7\xed\x83\xf3\xf7\x19L7\xaf>\xe8\xc6u6\x18\xcd\xea\xc1\xd4\xbf\xeb\xbf\xb4~\xbex\xfd\xdb\xc5b:{\xed\xbf\x9c],w\xa3\xbb\xe9\x9b/\xaf\x02c:\xf5?,\xcd\xfe\xed\xe0\xe1\xe2\xf2\x1f\xb37\xb3\xcbW\xdb\xebWhv\x8d\xfc\xd7/\xad[{{\xe5E\xd3/\xdbO\xab\xed\xd5\xfd\xecr3\x9f~\xc1_\x1e6\x9f/\xb6\xeb\xd1\xe6\xf6zz1\xbd\xda^\xbc\x8aV\xa3O\x03G\xcf\xc7\xa5+\xfc\xfa\xe3\xc3\x87\xf5\xad\xff\xea\x95\xd2\x00<\xd2\xf2x\x97\x1c\x85\xb3`\x99\x1d~\xef#T\x8f\xbf/\xc7\xf7/\xfb\xb7\xd3\xafw\xbf\xaf\xa2o\xcb\xe9\xf4\xc3\xa7\x87\xff.\x03\xd9\xe6\x7f\xbf\xbdL\xa6\x17\xaf\xaf\xdc/71\xba\xcdF\xe6\xdbj\xe0|\xd9\xbf\x9d\xed\xec_\xeft\xe72\xdc\xbc\xebY\x8f\xef\xfcb\x1c{\x97\x8f\xb5\xe3\xfe\xd7\xdf\xa7\x9b\xd9\x87\xfe\xf6\xddv:\xfa\xcd\\m\xbf~\xb9\x89\xbf\xfd~\xbb\xfc\xea\x7f\x0e\xec/\xfd\xf1\xf5\xfa\xe7\xe1f\x7f\xbd\xb4\xbf\xdc\x8e\xaf\xb1c|\xfcxq\xe3\\\xdd`\xfb\x0d\xbeF\xc1[\xfc\xc9\x8c\xde\x7f~s3\xb0{3\xeb\xdb\xab\xeb\x97\xb9\x8f^f\xfd\xf7\"\xfd\xf6\xfb\xdd\xaa\x19#\x96\xe3\xeb\xb2\xee\xf7\xbe\xf5\xf8\xde\xcf\xc7\xe0M\xd6\xe7\xf31\xf9\xd7\xbb\xf8\xb7\x0fo\xab\xb9\xe2\xeb\xc7\xcf\xd3\xe5mo\xbc\xff\xf6aj\xbc\xbb\xff\x9a~}\xbc\xda\xcd>L\xcd\xf7\x1f\xfa\xbb\x9b\x8f\xcb\xc7\xd9\xfd\xa7\xa4\xec'\x9b\xd9\xe5\xc3f\xf6q\x9a\xce.\xaf\x06\xb3\x8f\xd3\xc1\xec\x9e\x18c_]g\xe3~\xed_\x8d<\x99/\xea^\xad\x1b\xd35\xdd\xbde\xce\xf6\xd6\xc6\xf1\x9d\xcd\xec\xe3\x83\xf5\xfe\xc3h;\xf3F\xfb\x99gd\xf4\xa9cf}\xf1u\xff\xdd\x17\xeb\xf1z\xdf\xf0\xbd{\xf3\xf9\xf1\xab\xf96r~\xbd\x8b\xe6\xbd\xfe2\x1b\xbf\xdf\xfb\xaf\xbd\xb9\xf9Y\xff\xed\xc351Nf\xe3\x00Q\xa7\xcc\x1e\xfb\xff\xc0\xb1\xf9\xf7\xe9\xe0\xd6|\x8b\xbf\xfe~\xb7q\xf0\xddf\xde\xdb\x12\xf3\xe2E87\xef6No\xb5q^]\\\xde\xee\xa7\xfb\xd9\xe5\x95q\xfdju\xf3\xf5\xcbM4\x0f\xb2\xb2eT\xf0\xb9\xb8\xf9\xf81z;\x0fn\xf4\xaf_\xac\xfbo\x9f\xf0\xd5o\x1f\xdef\xfc\xd7\xf6\x17\xfc\xf0\xfe\xe1z7\xbb\xbf\xd6\xdf\x7ft\x1eo\xee\xddW\xb3\xc7\xab\xdd\xdd\xc7o\xaff\x0fo/\xef>^\xeb\xb3\xcb\xe5nv9\xdd\xcf>:;\x82\xdf\xd5\xbcwc\xcc\xbf|^\xbbW\x0d\xbfoo(~z+\xbf|\xee\xac\xe7\x13\xec\xf8\xb8\xf7\xed\xcb\xdd\x1b\xc7\x1f\xa7\xd7\xbf\x16\xba|\xef\x8b\xe7\x85\xdb\xfb\xab\xfd\xec\xfe\xd6\xbay\xbc\xea\xdd\xe8\xd7\x8f\xf9\xbc\xf0p\xbd\xbf}\xb8y=\xbb\xbf\xdd\xbe\xbf\xbc\xda\xce.\xafw7\x8fW^\xc3O\xde\xfa7\x97\xa3\xf0\x1f\x97\xe3_\x7f{\xfc\xf4\xb2\x8d\xa6\xfd\xef\xe2\xe5v:\xbd{5\x9d^O\xa7\xcb\xcb\xe9\x87\xeb\xe9tuu1\xdd]]\xbc\x1c\xddN\xbfd\xe3\xe6\xed\x14\xf8\xdf\xd7\x8b\xe9\xed\x15\xf0\xfc\xfa\xeajzu1\x9d\xce.\x98\x82\x8b\xe9\xe5\xd5\xab\xa9~u7\x9d^]^\xf0<\xef\xae?\xbe\xbe\xf8\xf4\xe5\xea\xc3\xf5\xe6\xa5=\x9dn/\xa7\xb7\xd3WW\xb7\xb3\xbb\xe9\xe5h\x1a\xbe\x0f>~6n?^\x0e\xdf\xbeMV\xbf\x99\x9b\x0f3\xf3\xb7\x97/\xbf)\xcd/\xc6@m\x829*\xbe\xcf\xe6\xd7W\xb7\x0f_\x96\xbd\xe9\xff\xc6\xf7\xff\x7f\x1d\xdf\xab\xce\x01t\x1c\x9e\x8d\xad\x8asV\xcfH\xc9y\xab\x8c!U\xe7\xad\xc7\xcf\xbf\xe2\xed\xb7\x0f\xe3\x0f\xdf~\xbf\xd9\xb8\xbf\xbf\xbd\xcf|\xe9\x9b7{\xb6\xf8Y%\xae\xbfy\xfcj\xce\x1e\xde^\x15I\x97\x99!\x1f\xbf\xdb\xd7\x1d\x0d\xbf\xaf\xad\xfc\x9e-\xbeoOn\x1c\x15\xdf\xdf]\xb6\xf2\xfbN\xf1=\x1a\xbc5\x1f\xb2\x11\xe2\x91M\x96\xe8\x9f.\x93\xd9vv\xff\xe1.\xfc\xfa\x9b\xf5\xe6\xbf\xfb\x1f~\xbb\x99\xdf\xdd\x7f\x9e]\xdd\x1a\x8bWw\x97\xcb\x9f\xbd\xe0\xe5\xe0\xe7\xb7\xc6\xf4\xed\xa7]\xb2\x9c^\xbd\x99NM\xe3b\xfav\xf6A\x7f\xf3\xb5\x18\xcf?|\xfa\xfc\xfe\xee\x1f\xd6\xab\xaf\xd7\xd7\x92\x04J\xb3\x15C\x1f\x8e\xa1\x7f\x03\x8e\xcf\xccCwO=\xe0N\"\xb8\xf4A\x04\xd7\xa3\xcf\xcd\xb8\x98\xfe\x95\xdeZ\xae6\xe6\xe8\x87\xfc\x01\x9dE\x18\xfb\xf4F\xacA\xff\xda\xa3\x7f5\xe9_\xfb\xf4\xaf\x16\xfd\xeb\x80\xfe\x95?\x0b\xb4J}\xba\x15\xf9Nu\xb1\x89\x83|\xdb\xc3\xff\x12\x95\x96\xdbT\xa2\xe2\xc8N\x92m\x18\xbbB@\x8a\xc4\xbcS\xb4K\x85\x85\xeb\x98!,\xb64\xe9G\x1e\xbd\xc7c{\xf4.UH7\x9a>'\x101\xe7\x94\xca\xf3Q\xd4\xb3|\xd7\x93~BKPmK\xd2\x0fW\xf4\xaf\xb4-\xd6\xf8\x94\x0dH\xba7\xd8I\x84\x9cT\xcb\xf7\xd8\x0e\xe2\xf3%b\"M3\x06\xbbq\xb5\x9b\\\x9d0\xb2\x06\xdd\x9e\xf5BF5\xde\x19\x03\x96\xca\x18\x0e\xbb\xc3\xa1\x94\xac\xbf3Y\xaa\xa1\xbc\"s\xd7\xe7\xea1\xcd\xaeiJ\xa9\x06<\xd5`\xd0\x1d\xb4\xc8\xc6\xb7\xc8\xd2\xa5$\xa3\x9d\xc5U\xd3\xeb\xca\x1bd\xedF\\5\x03y5C\xbe\x9a\xa1\xd1\xed\xf7Z\xea\x19r\xf5\xf4\xe5\xf5\x18;\x83#a\xcf,2$\xc5\xc9\xb5C\xedq\xf6< \xf1:E\x934\x8c\xce\xf5I\\zd\xc9M\x9f`\xb4\xc8~'\xce\x0eT\xe7k\xb2\x9f\x1f5/p\xd1.\xfb\xe5\xdf\xff\xe5#\xd7\xb3;\x89\x13#\x14t\xec\xc0\xed\xfc\xe8{Ay\xea\xc0\xd4\x91\xff\xd3A,W\x90<\xa17d\xd4'u\x08\x80P\xadO\x00\x84\xed\xdd\x02\xaaM\xa9g\x00\x84*\x9d\x03\xaa\xaf\xbd\x7f@\x95)t\x11\xa8\xb2\xf6^\x02\xe9Q\xa5\xa3@\xb5\xb5\xf7\x15\x88J\xa9\xbb\xe4\x84\xcf\xdfc\x14\xbaL\xf9\xb0>\xbd3h\xe9G\xfeS\xba\x91\x7fb/\xe2\xe8\x14;\x11G\xa7\xd0\x87\xf8\xba\xd4\xba\x10G\xa7\xd4\x83\xf8\xda\x14:\x10_\x95J\xff\xe1\xabR\xe8>\xbc\x06\x95z\x0f_\x97B\xe7\xe1\x89\xd4\xfa\x8e\xff\xe7w\x9d\xb6^\x82\x9f\xd2K\xf0\x89\xbd\x84\xa3S\xec%\x1c\x9dB/\xe1\xebR\xeb%\x1c\x9dR/\xe1kS\xe8%|U*\xbd\x84\xafJ\xa1\x97\xf0\x1aT\xea%|]\n\xbd\x84'R\xeb%\xf8\xbb\xf4\x12\xb2^\xcf_\x1e\xe8c\xa0\xb4XN\xb8A1y\xce>?W\x9d?\xfd\xbf\x9e\x1f\x85qj\x07)K\x12\xa4\xb6\x17\x00D\xf9s\x82\xac}\xa6;\xf0\xc2d\xd3\xee)\xf2\xc0t\xacH\n2)\xcc\xbe\x85\xa0\xfeirBd\xc7\x89)\x94\x08\x9f&\x11D\xc6IDQ\xce\x97\x9a\x83\x82\x94v\x9d\"\x19t\x1e\x84\xe5O\x13\xa2\xac\xf6sn\x90\x98/\xb54\x8c\x8e\xe6\x93\x86\x11\xc7'\xef4Gs\xe2;\xc5\xbc\xea\xc7G\xf3*\xc88nY\xe7=\x9a\xd7\xf1\x8b\xab\xda*L_P\xaaN`\x98SX ms\n3\x89yNa'\xb1\xd0)\xec\xda\x82\x12\xd5\x11\xa51\xdd\xf1N'\xb2\xdc\xf1\x9c\xc4\x86;\x9e\x97\xccn\xc7s\x93\x99\xedxnmV\x93\x1a\x08\x1f]\x9d\xc8@\xc7s\x12\x1b\xe8x^2\x03\x1d\xcfMf\xa0\xe3\xb91QL\xb7<\xfe\xce\x1f\x83\x07a\x1aqL\x1389O\x94\xc2\xe4zMt\xfc\x18\\\xf1\x08\x92\x13\x84\x05\xa9\x14\xe4%\xe9\xda|[uD\xaa\x98\xfb\xa7\xb4\x03 Ri\x86\xaf\xdc\n\x89\xc0\xf8\x14\x81\x01\"\x15\x811)0\xed\xfb6}\xcf-g9)\x1f\x95\xd18s\xbb\xa7;O+\x9alt\x00\xe8\xb2\xc7\"\xda\xfa^]1\x1e\x00\xd4E\x81\x88~N\xdf_\x86\x18\x94%\"\x0e\xb8\xe2\x90wz\x80>\x7f.\xa2\x0e\x80{\x81\x94\xba\x8e\xef\x8bs;\x9f\xd2\x8f7\x03Av\x8a%\x08\xf2S\x8dA\xb08\xdd\x1e\x04\x93\xd3L\xc2\xa9\x0f\xb2\x8a\x82Y\x14\x86\x9b\xb9\x9d\xcd\xe3'\x98\xca\x7f\x92\xa5\xfc'\x1b\xca\x7f\x06;\xf9O4\x93\xffT+\xc1\x06\xc1'\x19\x04?\xc9 \xf8\xc9\x06\xc1\xcf`\x90'\x0ee\xac\xe6@\x83\xd04Zq\xd5\xaf\xa2\x13\xbc\xe3 \xc3\x05\xc8\x8eA\xb0a\x18\x1c\xd8\xb5\xe3\x07m\x19\xdb{\x06k\x9a&\x87\xf5=\x17\x82Z\x96\xc5A\x01\xd8p8\xe4`\x89\x877\xcd\x85\xef\x128\x1e\x8f9 .\x8c\x0d\xc1m\xdb\xe6%\x0d\xc3\x00\x92\xc1q\x1c\x01k\x00\x8c\x10\x82u\x9b\xdf\xd2d\xc0\x8b~\xf6\x87\xc3\x83P\xf6&g\x85\xd3\xc6:\x0d]%\xd8\xfeQ?\xd3_\x9ce\xb1\xf8Yw\xfc\x93\x80p\xd4B8\x12\x11\x0e[\x08\x87\"\xc2A\x0b\xe1@Dh\xb5\x10Z\"\xc2~\x0ba_Dh\xb6\x10\x9a\"\xc2^\x0baODh\xb4\x10\x1a\"B\xdd\x92\x13\xeaB\xed\xe8\xbd6\xd2\x9e\x98\xd6h%6 \xea|\x8c\xe1\x9c6^\xces\xda3\x1dt\xd8\x82\x88uX\x92\x08p\xd6\x82\x88uV\x92\x08p\xd4\x82\x88uT\x92\x08p\xd2\x82\x88uR\x92H\xa8\x08\xd6AI\"\xc09\x0b\"\xd69I\"\xc01\x0b\"\xd61I\"\xc0)\x0b\"\xd6)I\"\xc0!\x0b\"\xd6!I\"\xc8\x19K*\xd6\x9f(2\xb1+\xf1\x8eH\x11\x82N\x98O`1r\xd9\xc1{\xa8\xf7u~\x9c\xe5\x81\x8bE\xdf0\x07\x82Y\x01\x82\x0f{\x16?\x89\x84\xb1\x1d,\xf9\x81~`\x02\xf3\xf32\xc4<\xd7\xf9\x10@\xee\x11\xc6\xe1\x96\xc6\xf2\xaf\x0e\xa8\xa5\x85\xe0\x7f]\xcc\x17\x86\xcdO\xa8\xd1:\x8e0+\xb0\x85z\x8e\xcdO\xe6\x05w\x90\xc2\xee\x0f\xccE\x0f6J\xe4\x05l\x04\xe2Z\xba>\xe2\xad\xb2\nS\x08\x9d\x99f\xce\xcf\xa9 r\xa4\x0b\xa7v\x10o\x9b.\x1f\x8e\x94\xc1\x10B\x01\x837\xcc\xe1\xd0\xe2\x9b B\xc7\xf6x\xc8\x0b]E\x19<\xc1\x18\xa1\xb9\xc3\xeb$\xb07l@\xa2\xeb\xc6\xbc\xcf\xb3\xce\xa5\x9e\xe35k\x1b]\xef\xf7\xc7|\x08\x03 Mk\x88\\\x91W\x01\xf8\xf1\xc0q\x80 &\xc7\xa3\x04$q\\\x04\x91l\xedd\x85\\\x88`1X,\x16\xbc\xf4%\x01\xa4H4Z\xb8\x0b\xde{K\n\xb8s,\x16\x0e\x9a\x8bH\xa0\xde\xef.\\\xbe\x15d:\x91\"\x10f\x88\xe6\x9aV\xbe\xea\x84&\x80\xde\x7f\xd2\x9d\xc7\xf5\xd0\x1d\xdb\xae\xb7N\xce\xd9\xa1\"6\x18@\xd7\xe8Y1b\xd3\xadq\x8f\x85\x81(\x93EA\xa0>\x032\x00\x8cf\xe8\xac\xe4@R9\xd6\"\x0fc\x067\x1e\x8f\xc7\xc0\xea\xaf\xdew+\xc0y\x92<[iUz!\xd7\x90\xc5:P\xa41\xad\xd8U,\xe0UV\x1bbU\x96\xb5q+\xf7\x16[\xe4\x82*\xe2y\x15\xdb\x81\xa2\x96\xc8\x05kO\xb6\x1cX\xe7\"\xd3Q\"\xff\xe21\"\x17\x03\x90\xb0\x97\x01@\xd0\xd1x\x9c\xc8\xd7\x00\xa4\xc8\xddx\xa8\xdc\xe3\x98\x8c\xdfS\x9c\x8eO\xdd=\xd9\xefT\xa4Sw=\x86\xdb1\xde\xa7\xe0~*\xb9\xbeX'\x12oB\x97d!B\x8f\xe4\x80\x02\x87\xe4p\xb0?\xb20\xa1;r@\xa17\xb2\xc8\x16g|\xb6\x01\x90\xcbN>\xdd\x15\xdbe;\xc2\x13\xfd\xef\xe3\x88\x02\x9fc'!\xc0\xe7X\x88\xd0\xe78\xa0\xc0\xe78\x1c\xecs,L\xe8s\x1cP\xe8s\xc7M\xb9,\xbc6oc \xa2\xa0<\x9e\x06\xfb\x1c\x9b\x80}\xba\xcf\xe1\xe7\xf49|\xb2\xcf\xd1\xfc4\xadx d\xc5\xaeH\xf5\x02/\xe5-\x82\xf8,\xe4d\xa0\xf93\x0eZ\xdeF&\x91\xc0&f\xb6\x84\x08\x03D\xe3\xf2w\xd4\xb5\x0f\xd1\x07\xb8!\xdcn\x8f\xb4-\xd8\x92a\xb5\xc8(\x1cDd\x17\x1e\x08\x9b\x86\xc7\x81\xd6\xe1`\xa0\x818\x14l#&\xee\x15\x9a\x89\xdb\xbe\x17Z\x8a\x0f\xf5\x85\xc6b\xf7\xe2\xebm\xc0v\x83\xa9\x0cl[\"\x1a\x15\x1a\xd1W\xb4!\x8b\x13\x98\x90\x85\xc1\x16\xf4U\x0c\xe8+\xd9\xcfW3\x9f\xafj=68\x16\x1b\xcf?\xc1v\x023\xe1V3aE3\xb18\x81\x99X\x18l&\xacb&\xacd&\xacf&\xacj&6\x9e\x14\x9b \xc3f\xa2\x80\xc9\xcav\xc3\xadf\xd0\xd7\xba\xf3\x87\xe7zG\xef\xf4\xa3]\xa7\x17\xed:\xf4\xa6\xcbD \x05\xd6\xd4\x13\xd54R\xaa F\x815\x99PM\xbd\x92\xbe\xbd]r$Xc_Vc&\xb9\xaeP\x1f\x84\x03k\xb3\xa0\xda\xfa\xa5\xc4m\xb5\xc9p\n\x83\xf0\x01t\xa2lT\xff\xd3\xfcHR\xd9\xf3\xbb\x92\xa0\xb2\xef\xebM-\x95\xb6\x99\xf8x\x87\x12T\xf8,>\xa5\xe0T\n3{\xedi\xfe\x9f\xe8h\xc2\xba\xbe\x83\x9f\x81u}g7\x93\xd6\xd9f\xf4\x13\xbc\x0c\xac\xefOp2\x99?\xe1?\xd1\x9f\x84u}\x07\x7f\x02\xeb\xfa\xce\xfe$\xad\xb3\xcd\xbe'\xf8\x13X\xdf\xf3\xf8\x13Ua\x14\xa3\xfa\x0b\x1e\xda.\xff\xb4E\xfdq.m_~\x08\xa8\xf9\\W\xe2\xc4!\xa6?%\xd2\xcdb@=\xff\xe6\x11\x13\xb0\x15Q\x9f~\x80S\x89E\xa4\xa7W\x9fRb\x8a\xf3\xf0N?\x14\xe9I\xbe>#\xaf\x8f\x0fa\x8b*\x8d\xb2J \xc4-j5\xaaZyD^\xb1QT\xcc\x97fu\xf7\xf2\xba\xf9\xc8\xb8\xa8\xbbW\xd6\x0dD\xceE\xdd\xbd\xaan\x1e\x91\xd7\xdd+\xea\xe6K\xb3\xba\xcb\x86k\xa2\x96\xd7M\x07\x10e\xfdM\xe3\x01L.A\xd5|\xa0<\x97\xa1P\x80&\xd2@\xad\x02\x00Q\xc9P+\x01\xc0\x142\x94j\x00\xca\xab{\xd4\x9a\xb6\xf00>HoS+\xcc\xd0\x07\xde\x99\xb3\x98\x01\xf0\xe7\xc2'\xb3B\xc8-Ko\xcf\x8a\xa5\x0e_\xa4 \x9f\xcf\x1d\xbb\xaa[\xe4\x99u\xf5B\xe7o$\x10\xfb?!\x84\xc0\xc9+9D^Z\xcb!\xec\x08\x8d\x1c\xe2\xbe@\xc8!r\xf8J\x10\x89\xcf75\xc9\xdc\x9e\xa8K\xec\xf9u\xb3\x84\xce_\xcb#\xf6\x7fB\x1eI\x17 \xe5\x11\xf6\x82F\x9e\xb6\x8eP;\xad\xb0/(t\x06\x85p\xb5\xe8!\xbe\xa4\x83\xf8\xd2\xfe\xe1\xb7t\x0f_\xda;|y\xe7\xf0\xdb\xfa\x86\xdf\xde5\xfc\xb6\x9e\xe1\xcb;\x86\xdf\xd6/\xfc\xf6n\xe1\xb7\xf6\n\xbf\xb5S\xf8*}\xc2W\xe8\x12~[\x8f\xf0[;\x84\xaf\xd2\x1f|\x85\xee\xe0\xab\xf6\x06\xffI\x9dA\xe8\xf7X\xe2\xf7X\xea\xf7\xb8\xc5\xef\xb1\xd4\xef\xb1\xdc\xefq\x9b\xdf\xe3v\xbf\xc7m~\x8f\xe5~\x8f\xdb\xfc\x1e\xb7\xfb=n\xf5{\xdc\xea\xf7X\xc5\xef\xb1\x82\xdf\xe36\xbf\xc7\xad~\x8fU\xfc\x1e+\xf8=V\xf5\xfb\xb6\x80\x88&v\x16\xe7\xf6\x82}5j\xf6t\x8e\x16a\x8c\x0e\xe5\xc7{\xcf\xff\xd2\xf9\x0b\xfd\xe5A\x98\xcd\xc1\xc1\xc8\x8e\xcf\xe7a\xbab\x01\x87\xbf=\x86\x99o1\xcfqI\x92I\xc7\x14U\xdc\xf2\x960esqMAYt\xd2N\xb9\x93O\xa3b\x91\x9aRP\xaa\xa6\x18\x12\xac)U\xd8 V\x9d\x8e\x9dl\xa8\x93\x08\xecK\xe5\xf5e\xe2\xfa\xea\xd2\xc2\x82\xc9\x8c[\x17\xc2\x82a\x99`\x98\x12\x8c*u\x03\xd9\xe7\xfc<\xe6S\x81L\xf1\\\xf2A\xc2\xae\xeb\xcd\xdb?4\xd8u\xbd\x94E\x01\xfd\xc5m@`\xa9C\x17k\x0eb\x17\xddn\xaa\xc5\xe1\x96\x81\xc5\xe1\x16Bi\xcb8\\G<\xb6x\xceQ8!^\xfb\x01+A\xfeP\x80\x05+ \x8b8:m\xe1\xed\x90{(\x90\xd8\xde\x87\xeb\xf4<\x7fD\xbc\xfeJ\xa1\x7f\x1c\x18\xdbg=Lf~\xb2\x1c\xf6\x00\x12\x01;\x01\xcfC\xe0\x07\x00\x1046\x89\x83\xbd\x81C\x08\x1d\x82GJ}\x02\x84K\xdd\x02\x10\xa5\xdd3DDR\xe7\xc8\xd73R\xffPp\x10\x85\x01\xd4\xcd\x06:\xa9\xd3\xf8m>\xe3\xb7\xb9\x0c\xcbA\xe41\x1c\x0ev\x18\xbf\xcd_|Uwa\x81ro\x01\xd0rg\xe1\xe4P\xf0\x15\x98F\xee*\xfe\x93<\x05v\n,w\n\xdc\xe6\x14\xb8\xcd)X\x0e\"\xa7\xe0p\xb0S\xe06\xa7\xc0\xaaN\xc1\x02\xe5N\x01\xa0\xe5N\xc1\xc9\xa1\xe0\x140\x8d\xdc)p\x9bSPt\x0b\x8cvu%D\xee\xbd\x0e{5?\xd12\x10\xf9,\xfb\x9dfS\x9a\x08\xe4V\x99\x99aJ\x90\x90E\xc4c^R\xcd^\xa7!\xb5E\x90==7&\x95\x94\xe7F\xc7\xe8\xe4\xd9|\xfa\xb7\xc6\xeb\xf5\xfc\xe7\xea\x85\xa9@\x15\xf9\xe1S\xae\n\xbd\xa9\"\x7f\xe7A\xfd\x13\xc0\xa1\x8c$H\x1ea\xece\xeb\x89\xea\x0b\xe3\x13\xb2\xcc\xf5\xe2\xe2\x95\xff\xe5\x17\xcb\xeb\x9a\x88\x92\x82\xe5\x04|\nH\x90\xc5H@\xf5\xab0\xf6\x1e\xc3 =A\x808\xdc\xb2\xb5s\xfd#/\xdf\xc6vt\xa8\x19d\xbf\x9dg\xffL\xe8_A\xbd\x03\xa4\xc5\xc3 \xfb@P\xaf\x16\xa3\x0d\x8a\x13\x04\xd4_\x15M\xe0\xc7B+6,\x8f\xb6fU\xa3\xd0\x9c\xb4L\xa2R\xd8\xbc2\xb9Z\xcd,\x91\x8c`\x0d\xd8\x1b\x96\xc9K\x91\x9fhIj\xc7)%N\xf1\x19\xfd\xfcyS\x15\xf90\xff9\xff\xbcy\x92\x8f)\x05\x0f\x889\n\\\x805\n\\\x96q\xf6\x88c\x8b\x02\x17bZ\xbe\xe8\x93\xe7[\x14\xb0\xac\xcb\xa7$\xf7\xe2\x11\xc4{n'(\x1b\xc8\x00\xeeU\x11\xcb\xbf~N\xd6P=\x845\x1e\xa3\xd4Y\x81:\xcfKx\xad\x17\x8f\xc9\n\xcag4\xff\x04\xe1Ee\xd0\x8aE\x06\x07\xac\x97A\x85\xc6\xcb\xf9\xe4\xb6\x03\xb84\xa6jxp\x96\xca9T\x86\x02\x98PF\xc9\xf9@6\xc9\xb94&\x01\xf80\xca\xcf9\xc1\xba/uS\xaa\x1e\xd4\x0e\xa9\xe5\x9c\x13\xa8\xe4\xfbu\x92z\x8b=\xd0q\"\xdby`\xfb\x0d\xf1\xac\"\xac\xb2T\"\xedW8\xb6\xf3\xe4\xac\xa8\xbeS?\x01YsF\xa9Q|\x07\xca9\xb1\xfd\x87|\xc8\xd6\x00\x99\xab\xc2\xccQ\xbaE(\xe0+(\x01L\x0d\xd5S\xb6\x8a$\xb2\x1dT1\x83k\xb2\xf3\xd74\x1eh~\xae\x97\xa4\xb17_\xa7H\xc0\xb2\xa0\xa29\x96\x08\xb6\xf7\xe4A\x0da\xc3\xc29\xda,X1\xa3\xbaP\xc3\xaa\xe9Ar{Ul\xd8~\xd4p\xa2\xba\x91\xcc4\x15\xab\xda4<\xaf\xca\x0c43\x89\x11*\x9e\xac\x11\x1a\x96\x84% \xaer;0=\x95\xb4\x04\xd9Qk\x96P_-\x0e\xdf\xea\xccl\xebz\x81\x8d\x8bh\x9c\x88A\xb5\x1c|\xaeO\xca\xffB\x9c\x0c \xa7\x1e\xcb\xc9(9\x19\x10\xa7\x9e\x84\x93\xc9r\xea\x95\x9cz\x10'S\xc2\xa9\xcfr2KN&\xc4\xa9/\xe1d\xb1\x9c\xfa%\xa7>\xc4\xc9\x92p\x1a\xb0\x9c\xac\x92\x93\x05q\x1aH8\x0dYN\x83\x92\xd3\x00\xe24\x94p\x1a\xb1\x9c\x86%\xa7!\xc4i$\xe14f9\x8dJN#\x88\x13\xb6\x93T\xe6\x9cz\xf6?\x96\xe38\xfb\xdf\x84\xf8\x19\x085\x97Y\xd4\xa7\xcb\xd6C\xe5\xbbm7\xe8\\\x9f\xd4$\xe0\xca*\xe7e\xc8\x96o\x0d/\x83\xe0e\x00\xbc\x92U\xec\x05\x0f\x99d\x15i\x80\x966)F\x81\x00\x05)\x89\x0d\x80\xd8\xa0\x88\x0d\x85\\\xdb\x81\xe7O\xe4\xfd\x88\xc6\x9e\xbe\xa4\x86\x18>\xf7\xaaZc\x0e\x0c/\xbe\xcb\xc2\x1a\xac\xe5\xf8\xb55\xcbFmA\xf6\x9c\xcbk\x81\x04\xadK\xafgZa\xe7\xd5W<\x8e^d\xf3\xd4\xa7\xad\xb3a)\x9e\xba\xd4>\xcd\xb8\x7f\xcaj\xfbT\xab\x7f\xbf\x057+\xd1\xf3\xae\xb9a\xee\xcf\xb2\xec\x86Y?\xe3\xca\x1b\xae\xe0\xb9\x17\xdf\"\xfd?\xd7\xfa\x9b\xeabOY\x82\x8b\x18\x1d\xbb\n\x17\xf19a!.bu\xdaZ\\\xac\xa9\x13\x96\xe3\xacY\x9f\x7fE\x0e\xd6\xf0|\x8br\x90\xfd3\xaf\xcb\xc1:\xbe\xd3\xd2\x9c\xb2\xee3\xad\xce)\x9eO^\xa0\x0b\xb8\x9d\xb6F\x170;u\x99.`\xf7\xc4\x95\xba\x80\xeb\xd3\x17\xebB\xc3\x1c\xbb^\xe7\xe7\xeb',\xd9\xe5\xcc\x8e\\\xb5\xcb\x99\x1d\xb9p\x973;r\xed.gv\xe4\xf2]\xce\xec\xc8\x15\xbc\x9c\xd9\x91\x8bx9\xb3#\xd7\xf1rf\xc7/\xe5[\xfc\xf6\x89\xaby\x96\xfb\xe2i\x0bz\x90\xddS\xd6\xf4T\xf7?aY\x0f\xd3\xb3+{\x85\xa5\xbd\xc21\x9a\x9c\xa7\xff\xcc\xcb}\x9e\xdf\xb3\xaf\xf6\xfd?c\xb1\x0fTr\xc2Z\xdf?a5\xf8\xacK}P\x80\xd65\xdfs\xad\xf4\xfd\xa7,\xf4Y\xe2\x13\xd7\xf9\x90\x0cO^\xe6\x9fb\xd7?g\x95\x7f\x9a\xc1\xbf\xe3\"\xdf\xff\x9ek|\x88\xf9\xf3,\xf1!\xce\xcf\xb9\xc2\x87\xf8?\xfb\x02\x1f\xd6\xfd\xb3\xad\xef\xfdgZ\xde\xc3|\x8e^\xdd\xc3lNY\xdc\xc3\x9cN\\\xdb\x8b\xb4t\xca\xd2\xde\xff\xde+{\xa0\x82g\\\xd8\x03\xdc\x9f{]\x0fT\xf1\xbd\x96\xf5\xfe\xf3\xaf\xea\xfd\xe7\\\xd4\x83\xccN\\\xd3\x83\xbcN^\xd2\x83\xdc\x9e\xba\xa2\x07\x99>\xc3\x82^`\x93\xa3\xd7\xf3\xec\xcc\xfc\x94\xe5\xbc\x8c\xd7\xb1\xaby\x19\xafc\x17\xf32^\xc7\xae\xe5e\xbc\x8e]\xca\xcbx\x1d\xbb\x92\x97\xf1:v!/\xe3u\xec:^\xc6\xeb\x84e\xbc\xd4]\x9f\xba\x8a\x97\xae\xae\x8e^\xc4K\x17\x84'\xac\xe1\xfd\xa7-\xe1!\xf2\xe3V\xf0\xa2\xc5:~\xe6\xc5:\xcf\xef\xd9\x17\xeb\xf8\xcfX\xac\x03\x95\x9c\xb0X\xc7',\xea\x9eu\xb1\x0e\n\xd0\xbav{\xae\xc5:~\xcab\x9d%>q\xb1\x0e\xc9\xf0\xe4\xc5\xfa)v\xfds\x16\xeb\xa7\x19\xfc;.\xd6\xf1\xf7\\\xacC\xcc\x9fg\xb1\x0eq~\xce\xc5:\xc4\xff\xd9\x17\xeb\xb0\xee\x9fm\xb1\x8e\x9fi\xb1\x0e\xf39z\xb1\x0e\xb39e\xb1\x0es:q\xb1.\xd2\xd2)\x8bu\xfc\xbd\x17\xeb@\x05\xcf\xb8X\x07\xb8?\xf7b\x1d\xa8\xe2{-\xd6\xf1\xf3/\xd6\xf1s.\xd6Af'.\xd6A^'/\xd6AnO]\xac\x83L\x9fa\xb1.\xb0\xc9\xd1\x8buvf~\xcab]\xc6\xeb\xd8\xc5\xba\x8c\xd7\xb1\x8bu\x19\xafc\x17\xeb2^\xc7.\xd6e\xbc\x8e]\xac\xcbx\x1d\xbbX\x97\xf1:v\xb1.\xe3u\xc2b]\xea\xaeO]\xacKWWG/\xd6\xa5\x0b\xc2\x13\x16\xeb\xf8i\x8bu\x88\x9c[\xac3\xf4\x87\x05\x0e\xed4\x7fG\xce\xe4\x0fz-\xcc@\xe3\x12\x9a\xbf1\xa7\x05\x1b\x94\xd8\x93\xde\x82\xb4\xc8\xdf\x82\xa4.W\x83V\x12\xad\x81+\xbcYH\xfd\xfc\x81\xe6\x1f#\xb2\x7f\x94\xc4\xbe\xba\xc0\xb0l\xc7\x98\xb9\x06\xab\xc9\x86)\xd9\xa8\xd2\xc4\x0e\x12-A\xb1\xb78,\xc2 \xd5\x16\xb6\xef\xe1\xfd\xb9fG\x11FZ\xb2OR\xe4\x9f]`/x\x98\xd9\xce\x87\xfc\xd7\xd7a\x90\x9e\xd9\x1b\x14xq'@\xbb\xea\xe7\xb3\x15\xc2\x1b\x94-r\x9b\x9f:\x01Z\xa3\xb3\xf5|\x1d\xa4\xeb\xb38\x9c\x87ix\x16d\xff$h\x19\xa2\xce\xda;\xb3c\xcf\xc6g\x8d\x14\x8ct\x9c`K\x14\xc6K\xcf>\x83\xc0\xb9t\x9a\xa0E\xc2*J*\x9e\x80\xc7:\xa1\x8b\xa8\xf7\xa0e\x0f(\xa2Wa\x90\x84\xd8N\xce\xfc0\xb0\x9d0\xfbO\x98G\x13,\xa3u\xec\xa1\x98!\xcd\x9fun2\x95\x96\x00\x11}\xad`\x8a\x03\xa3\xf6\xc6\x1e\xa2\xb6\x17\x86\xa3x\x00v\x15R\xa7+\x84\xed\x84&/\x9e\x9dI\xccT\x16\xa9Z5\xf5|D\xd7\x91?\x81\xa0\xf3\xd0\x0d\x03\x8f\xc2^\xe4\x8f:\xb3\x8f\x10\xde\xb1\xb1\x97\xa4!m\x85\xe2\x99\x80bi\xc7\xb6\x1f\x06.-|\xf9\x10\x14\xc9N\x1eP\xbc\xf10\xa6\xfd\x84x\x0e\x91\x95\x8d(>\xa1\xe5\xa56\xf6\x98\x0f_/\x12\xad\xc8\xc3\x91\xc0\xe2\x89\xc2`I\x8f=\xf9;\xafT\xebc\xb0e\x95\nu*\x0c\xd0^6\x88\xaa\xca\xe1\x1f-\x06X#V\xaf\x11\xd25\x8d%M\xb2-r\xc8}\xee\x93\xefT1\xf7E\xf8\xc5\xd6\xa0\x00\x06\x0f\xe8Q\x80\x1e\x0f0)\x00\xf7y\xfa\xc5\xb6/\x17q\xb1\xb5(\x80\xc5\x03\x06\x14`\xc0\x03\x86m\xcd\x1cQ\x80\x11\x0f\x18S\x80\xb1~\xfc\x9b\xba\x19\x8f\x15Z\x84E@Fa1\x90]X\x0cd\x1a\x16\x03Y\xa7U\xe2E\xf1\xb9\xb36\x1b\xb1\x18\xc8L\nm\x1f\xb1\x18\xc8X,&\xb3\x97\x82\xc1\x14F\x05\xba\xbf\x8b\x8d\xe8\xb7\xb5\xc3` \xa0 \xfdv\x0b\xfa\xed\x06l\x11v\x91\x7f\xed\xac\xd5|~\xbb\xf5Z\x1b=b \xa0\xed\xfc#M'\xb6R\xdb\xe0\xc7\x00@+\xe1v+\xe1v+\xe1v+\xb5\x08\xbb\xc8?v\xd6j%\xdcn\xa5\xd6F\x8f\x18\x08h%\xcc[\x89\xc2xA\xb4N\xb5\x18%\xa8\xb9\xdfnG\x11\xb2c;p\x8a/qN4?|d\x1f2&Z\xa7i\x18\x14l\xce\xcfs\xfc\"t\xd6\x89\xe6\x05\x01\xfb\x16`\xa2F\x1eZ~\x86\xed\\\x9fD\xb6\xebz\xc1\x92]\x18\xaf\x8cC\xb9\xd1\xca\xbf>y\xd5\xab\xca\xf8\xd7\x19\xaf\xcc\xaa\xac\xcf\x97\xf5\xab\xb2\x11_f\xd5\xf5\x0d\xf8B\xadW\x17\xf7\xac\x17l\xa1\xa5W\x85\x16\xfb\xa9\xe5\x956\xac)\x87<\xa5\xa1\xd7\xa4\xfcg\x9a\xf3\xcd\xe6\x1cBl;\xf3\xb0\x0d-\xddf\xc5\x15\x93\xf2\x01\xc5\xa4\x84@1-#\x0b\xc8D\xdb@R\xb2\xc0U\xf1\xce\xb9\x12\x90\xfd\xcc\x96{\xc1\n\xc5^ZA\xca_\x15\xe6\x89\x03\xe39\xd9t#q\x1e\xa2\x18\xf2\x1f\xa2\x18r!\xa2\x18\xf2\"\xb2n\xd8\x91\xc8\xea!_\"\xcaAw\"\xcaa\x8f\"E\x10;U\x86j\xf7+JX\xd0\xb5(qA\xef\xa2\x04\x86\x1d\x8c\x16Y\xecc\xbc\xd0\xb0\x9b\x11\xfc$\x9eF\xa0*gS\xf06\x85\xa8d\x95E\x132\x0f\xf4\xa5\x0e\xe8K\xfd\xcf\x97\xba\x9f\xdf\xe6}\xbe\xdc\xf9|\xb9\xef\xf9-\xae\xe7\xabx\x9e\xaf\xe2x~\x9b\xdf\xf9mn\xe7\xb7z\x9d\xaf\xe6t\xac\xbc\x02\x9f\xf3U\\\xce?\xce\xe3`\xe7\xc2R\xe7\xc2R\xe7\xc2R\xe7\xc2R\xe7\xc2m\xce\x85\xe5\xce\x85\xe5\xce\x85[\x9c\x0b\xab8\x17Vq.\xdc\xe6\\\xb8\xcd\xb9p\xabsa5\xe7b\xe5\x158\x17Vq.\xcc9\x17\x05Lc\xdby@\xee\x01\xa34E\xb1\x96D\xb6\x93E^]\x83\xfb>E\x01\xd4\xd2\x8c\x19\x0b\xd7\xba\xba%\"\xf0\xd1\xd2\xe6\xd8\xf72x\xfb\xb8z\x009\xe6\xdf/:F\\\x80\xa2Mb\xa8\x92\\h\x05\xa9\x15f\x83\xba\xaac[\xc2\x11\xb46\x84\xafB\xa1\x1d\x12\x91\xf1\xb1\"s\x04\xad\"\xf3U\x14\"S\x14x\xa5%!\xf6\xdcC\xbe\x8f^u\x16\x0e\x93z)F4\xa6\xdb\xb38\x98\x13F{\x06e)\x98\xfa\x00\x8a\x94;O\xbbT\x1cL$\x18\x0f\xb4\x9e\xc9\x0fk\x89}%\x81}EyY\\\x9b\xb82\xc9\xb0\x92dXQ2\x16g\xb1^\xe5\x05\x0f\x87\x14\xedR\xcdEN\x18\xdb\xe5 Vv\xd1\x9b\xc1\xce\xb8'\xe7\xb6\x93z\x1b\x04\x14\xe4\xcb\\\xe0\xf9*\xdc\xb0k\xe4\xfc\xb9\x80\xff\xc6K\xbc\x145o\x1cMc;H\xbc\xea\\g\x18w\xba\x86\x95t\x90\x9d \xcd\x0b&\xd2R\xbe=\x85\x90\x87p\x9df*:7\xa2]\xc7\x0d\xd3\x14\xb9\x1dg\x1d\xc7(H_eLX\xba$=d\xff\x14Yn-\xddGP\x8e\xc0\xdf\x16\xab\xc1\xda\x15\x81\xd9zk\x90\xe5\\,\xe1o{D9\x1f\xc6\xf8[\x93(\xe7\x03\x19\x7f\xdb'\xca\xf9P\xc6\xdfZd\xfd|0\xe3o\x07\x04\xc0\x84$\x18\x92\x12@U\x8c\x08\xc0\x00\x92qL\x00\xc6\x90\x0c\xc5+\xd4\x1b\xd0I\x9b\xf1\x859\xf2\x85\x93\xdc\"\x0c\x042\n\x0d\x01\xedBC@\xd3\xd0\x10\xd0:\x8c,\xa0\x81h\x0cl#F\x1a\xd0L4\x06\xb6\x14\x8d\x11\x1b\x8b\xc6)\xec\xf6\xab\x8e\xdd\xa5\x15\xfdV#\xfa\xad6\xf4[M\xe8\xb7Z\xd0o5\xa0\xdfn?\xbf\xdd|~\xbb\xf5\xfcv\xe3\xf9j\xb6\xf3\x8f3\x9d\xd8J\xb8\xd5J\xb8\xd5J\xb8\xd5J\xb8\xd5J\xb8\xd5J\xb8\xddJ\xb8\xddJ\xb8\xddJ\xb8\xddJX\xcdJ\x98\xb3\x12\x05\xdb\x1a\x07\x91Z\xb7\xbd\x83H\x9f[\xf3 R\xe4\xb6\x7f\x10ipk\x1d\x84\xaa\xcb<\xa1*e=`\xab\xf5\xaa\xb2\x1ePVq\xe5\xd6\xd0[\xcd\xac\xe8L\x9e\xce\xac\xda`\x9a|Y\xd5\x08\xb3\xcf\x95\xf5+\x9e}\x9e\xa7U\x95q\x0b\xf6\xad6\xa8\xca\x06|\xd9\xb0*\x1b\x02eU\xfb\xb8U\xfeV\x1bUt#\x9en\\\x95\x8d\xf9\xb2,\xe0\x10\xf5\xb7\xad\x96\xae\xbc\xd8\xad\x95\xd35\xb3\xff\xf1\xa0mX\x00\x93\xaaY\x83\xee`0\x18\x0c9d\x9e\xc7.0\xf9b\xbc}\x80?0.\x9aM\x13b/mJ!GmJ!_mJ!w%\xea\x85=\x96\x00@NKH\x06\xf9-Q\x0c\xb9nS\x0cz/Q\x0c90Q\x0c\xf90\xa1\x16\xc8\x8d\x9bb\xd0\x93\x9bb\xd0\x99\x9bb\xd0\x9f\x89b\xc8\xa5 \x9b@^\xdd\x14\xc3\x8eM\xdaD\xe0\xdb\xa4\xeaZ\xdd\x9bh\xab\xcc\xc3\x1bX\xee\xe4\n^\xae\x10\xc6\xe4\x01\x8a\xc4\xf3}\x99\xe3\xfb2\xbf\xf7en\xef\xb7x\xbd/uz_\xea\xf3\xbe\xd4\xe5}\xa9\xc7\xfbR\x87\xf7\xa5\xfe\xeeK\xdd\xdd\x97z\xbb/uv_\xea\xeb\xbe\xd4\xd5}\xa9\xa7\xfbrG\xf7[\xfd\xdc?\xc2\xcd}%/\xf7\xd5\x9d\x1c\xf6g,\xf3g,\xf3g,\xf3g,\xf3g\xdc\xe2\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xee\xcf\xb8\xd5\x9f\xf1\x11\xfe\x8c\x95\xfc\x19S\xfeL!\xc2\x0d\x8a\x178\xdcj\x1b/\xf1\xe6\x18\x1d\xaa\x07\xe7\xe5\x03\x01|\xe5\xb9.\n\x1at\xf1\xbb\x00\x9c8q\x88q\x03.~\x17\x80\xf3H\xaa\x86\xf2;\x1b5p\xc7\xc9\xac\xedZ\xa4\xde\xb1rk;\xb9\xe4;Vvm'\x97~G\xcb\xaf\xedd-\xd8\xf3-\xd8\xb7\xb4`\xcf\xb5`/o\xc1\x9ek\xc1^\xde\x82=\xd3\x82\xfdi\x01-\xebXY\xe8p\x94oQ\x04\n\xeeE\xe1[=\x8cB\xab8\x19I\xa0\xecg\x0c\x91\x92\xab14\n\xde\xc6P\xa88\x1cE\xa2\xeas\x0c\x91\x92\xdb14\n\x9e\xc7P(\xcc\xc1\xaa\x81&\xe7\x92\xfe\x91\x1e\xe9\x1f\xe7\x90\xfe1\xfe\xe8\x1f\xe9\x8e\xfe \xde\xe8\x1f\xef\x8c\xfe\xb1\xbe\xe8\x1f\xed\x8a\xfe \x9e\xe8\x1f\xef\x88\xfe\xb1~\xe8\x1f\xe9\x86*\x1e\x87\x8f\xf48|\x9c\xc7\x1d3\xc7\x92`%\x8f\xc3'x\x1c>\xde\xe3\x8e\x9dki\x02%\x8f\xc3'x\x1c>\xde\xe3\x8e\x9dsi\x02 XKR;\xf5\x9cCq\x055\xcc\xdf\x8d\x91\xb2\xb7Ob\x84\xf3;\xa2\x0d\xaazB\xe3\xecy\x12\xe2uJ\xe0\xaa'4\xae\xf8\xa8~\x0d\xca\x7fU\x18\x8e\x0f\x80\xe0\xd9\xc8\xae$;\x05\x94\x8bOA%-\xa0pE#\x14Z\xa10\xa9\x94M\xf3\x15[\xe6+7\xccWk\x97\x7f\\\xb3\xc4-\xc0\x8a-\xc0\xca-\xc0j-\xc0\\\x0b\xe8N\x92'r\xc3\xc8v\xbct\xcf\xbdu@\x1b7e\xdd1[8\"\n\xd9\xbb\xe9\xda\x90(d/\xc1k\x03\xa2\x90\xbdm\xafYD!{\xad_\xeb\x13\x85\xec\xfb\x034\x93(d_T\xa0\xf5\x88B\xf6\x8d\x08\x9aA\x14rJ\xd0\xad\xa6P\xe7$\xd2{d1{0\"\xd4\x1a\xce\xccy\xfb8L\xed\x14i}\x8b>o\xb0\x08c\xff\xbc(\xfb\xb1o\xb9h\xf9\xd3D\xf0\x1cd7\xd6\xc5\xec\xc6:\xcc\xaex\x0e\xb23L\x89x\x86)\x90\xaf,\x809\x8e$\x12\x1a#\x81\x88e\x01\xc8\xb1\xd7\x93\xc8\xd8\xeb d,\x0b`\x8eC\x89\x8c\xbd\xa1@\xc6\xb2\x00\xe4h\x1a\x12\x19MC cY\xa00\x96\x1e`\xd7\xd2\x88\x0f\x1c<\x8fwI9\x9e\xe6`R\x96\xa7\xfa\x98\x9c\xe9\x89n&ez\xaa\xa7\xc9\x99\x9e\xe8lR\xa6\xad\xfe\xa6\xe0p\n\x93w\xe3\x85\xfes;\xa1\x84\xe1\x89>(\xe1x\xb2\x0b\xcax\x9e\xea\x81\x12\x9e';\xa0\x8c\xe7\xa9\xfe'\xe1\xf9D\xf7\x93z\x1a~nO\x930<\xd1\xd3$\x1cO\xf64\x19\xcfS=M\xc2\xf3dO\x93\xf1<\xd5\xd3$<\xdb=\x8db:\xc7\xb6\xf3\x90EP\xf9y\xce\xf3x9\xb7\x7f\xd4\xcf\xb2?\xdd\xf1O\x10t\x04AG t\x08A\x87 t\x00A\x07 \xd4\x82\xa0\x16\x08\xedC\xd0>\x085!\xa8 B{\x10\xb4\x07B\x0d\x08j\x80P\xdd\x02\xa0:\xdb\xae\xed\xca+\x02\xde\x02\xbbJp\x8e}qf\xe8\xfa\x0b\xded\x05|$\x82\xb3f+\xe0C\x11\x9c5]\x01\x1f\x88\xe0\xac\xf9\n\xb8%\x82\xc3M\xed\x8b\xe0\xac\x19\x0b\xb8)\x82\xb3\xa6,\xe0=\x11\x9c5g\x017Dp\xd0\xa4%\xf6\xaf:{\x93:@v\xacQ\x10\xc3`V`\xae\x1d?h\xcb\xd8\xdeW\x08\xd3dVw\xbe\xe7R\x00\xcbb\x96ad\xe1p\xc8\xacG\x13\x0foP\\\x15s\xefB\xc3\xf95\x0b\x1ad\xdb6#A\x18\x06\x94\x08\x8e\xe3@lH\x08B\x08\xd0E\xae\xdd\n\xb2\xe8g\x7f\x00\xf5\xd7\x80\xc5\x02PV\x8c\xdc\xba\x92\xa1\xde\xd7\x19\x0cQ\xbcX\xf4\x0ds\x00IJ\x81\x86=\x8biN\x18\xdb\xc1\x92\x10c\xc0]\xe9_\x86\x98\xe00\xe7\xae\xd9\xef\x11\xc6\xe1\xb6Dd`H\n\n\xf4\xd7\xc5|a\xd8\x8cy\xa2u\x1c\xe1Z\x10\x0b\xf5\x1c\x9b\xbd\x9c\x90s\xa2qv\x7f`.z\x80\xea\"/\xa8=\xd1\xb5t}\xc4\xe8n\x15\xa6\x14&S\xe0\x9c\xb1\x10]>\xd2aW\xa0Q\xb6\xe9\x0eA\xb7G(\xa8{\x869\x1cZ=\xd6\xb3I\xc0\xd8\x1e\x0f\xfb\xb0\xdf\x11\xb01Bs\x87iW`o\xf6M'5\xe6\xfd> \xcd\x1c\xafQ\x03\xea\xf7\xc7\xec\xcb\n\x88r\xd3\x1a\"\x17\xb4)\x89\x1a\x0f\x1c\x87u\xe1\x1c\x85\x12\x1a\xe8\xb8\x88\x03n\xedd\x85\\\n\xb6\x18,\x16\x0b\x04\xc2(\x15\xa0\xd1\xc2]X \x8eq\xb9\xc5\xc2As\x10H\xf5\x10w\xe1ro'\xc3a\\_\xb1/\x80\xd5-AZkK\xad\x8e<\xe6\xb6\xf3\xb0,\xde\x91ZPH\x83\x90\x8ap\xd4B\xc8\x85$\x15\xe1\xb0\x85\x90\x0bP*\xc2A\x0b!\x17\xaeT\x84V\x0b!\x17\xbcT\x84\xfd\x16B.\x94\xa9\x08\xcd\x16B.\xb0\xa9\x08{-\x84\\\x98S\x11\x1a-\x84\xdc\x0cY\x11\xea\x96\x9c\x90\x0b\x81\xe6K\xad\x8e\x828\xca\xb6\x80\xa8&\x86\xdc\xa7-<\xaa\x89!\x17j\x0b\x96jb\xc8\x8d\xdaB\xa7\x9a\x18r\xa5\xb6@\xaa&\x86\xdc\xa9-\xac\xaa\x89!\x97j\x0b\xb2jb\xc8\xad\xdaB\xae\x9a\x18r\xad\xd6\x00\xact/\x9e\x92\x0f\xc7\xe6K\x8d\x88\xc8x\x02.8\x9b/\xb5&>\xe3\xf1\\\xa86_ju\xb4\xc6\xc3\xb9\xc0m\xbe\x14A\xb90n\xbe\xac\x824\x1e\xcc\x05u\xf3\xa5F\xc5u< \x17\xe2e\x92\xd7Q\x1e\x8f\xe7\x02\xbe\xba\n\x01\x01\x17\xfeU\xba/\x02<\x9e\x00\n\x06+\xc7\x80\xe0\xect9_\x16+\xe4\xc8\x8eQ\x90\xf2\x14D!l\xe3l\xc2\x03\xda\x01D\x98\xf3\xa5\x00\x0c\xc5\x9b\xb5\xa2D$|\xf49_je\x00\n\xe1\xf9X4s\xa3,\x1c\x85\xd0|d:_VA\x00\x87\xe7\xe3\xd4Zz\x11 \x18\xb5\xce\x97U@\nt\x02 \x86\xadk\x11RA\x11me\xb8<\xd4\xe4I\xa0\xf8v\xbe\xd4\xea\x10\x176\x1f\x1b\xedfM\x11\xa1\xf9\xd8\xb7i\x88\x88\x86\x8f\x84\x9b1&\x8b\xe0\x80A \x88\x8b\xf3\x81C\x00\x07\xa2d\xa2\xb3\xc2DP\xcc\x9cu\xd8,l\x86\xc6U>\x82\xaeZ\x91\x87\xab\x10 \x10O/Eh(\xba\xae\xdb \xa0\x81b\xed\x8a\xa6\x0e\xb7\x81\x81\x0d\x88\xbc\xb3a\x87\x08\xbe\x013\x02qxC$R2\x14\x957T\xe2\x0e\x06\xc4\xe8\x0d\x99hT\xe1#\xf6\xf9\xb2\x0e\xd79\x020r\xcf\xef\x97\x17s%t\x07\x9d,\xce\x7fn\xd6N\xec\xbb\xd7rd3\xf3\x8a\xb9\x11\x18\x8a%71\x17\xf0zn\x16sl \x14Cn\xe6.\xd0\xd5\xe4-\xe6W#(v\xdc\xcc^\x80\xe5\xacx6\xdc\xac_\x00\x8bY\\\xcc\xa8,\xa7Xq1A\x01%\xc3\x021C\nE\xb1\xe5\xe2\x86R+U\xe8 Q\\\x0d\xa1\x18r\x81\x05)\x81\x9c#\x81\xa1Xr\xa1\x07\xe1[y8\xd1\xe2\x7f\x05\x86b \x05'\x05E\x0bC\x88\x17;\xdc\x10\x1dI\x1b\xeb-]-C\x90\xecd+h\x92l\xd4\xcax$f\xcc.\x8fH\xb2a+\xe3\xa1\x981\xbbt\"\xc9\x06\xad\x8c\x07b\xc6\xec\xb2\x8a$\xb3Z\x19[b\xc6\xec\x92\x8b$\xeb\xb72\xee\x8b\x19\xb3\xcb1\x92\xcclel\x8a\x19\xb3K5\x92\xac\xd7\xca\xb8'f\xcc.\xe3H2\xa3\x95\xb1!f\xcc.\xf1\x88\xae$\xed 5\x82d\xdc\x96' Ie\x9d\xa4F\xc8\x98\xc3\x1d\xa5J%\xb41\x1f\xca\x99\xc3\x9d\xa5J5\xb41\x1f\xc8\x99\xc3\x1d\xa6JE\xb41\xb7\xe4\xcc\xe1NS\xa5*\xda\x98\xf7\xe5\xcc\xe1\x8eS\xa52\xda\x98\x9br\xe6p\xe7\xa9R\x1dm\xcc{r\xe6p\x07\xaaR!m\xcc\x0d9s\xb8\x13\x95\x81\x9e\x98w\x05 Y\xcb\xa2\xc3e[HW#\n\x8e\xd0\xd2\x00\x0c\x17\xa9\\\x8d\x94=\x174\x02\x8b\"8~$\xd3;\xd2*\xd8(\x12X\xb2\xc0\x01%\x91\x10\x92V\xc0\x84\x95\xc0\xb2\x19\x8e0\xcb\x0c\x92\x94\xb7\x94\xaf \xe4\xac\xd3MR\xceT\x84\x08,\xc9\xe0\x18\x94\xc9NIk\x00\"Q 9\x00\x07\xa5dJK\xae|&4\x05V\x89p\x94J%\xc1\x14\xda!\xadC\x10\xb6Ry\xb3\xf6~@\x06\x9c\xc0\xbaP\x18\xc7V\xa96i\x0d-\xcc\x05\x81-\x95\x98\x93\xf2'q\x82Z\x84i\xbc\x9a\x89B \xbddci\xae\x1a\x85\xb0z\xa9\x12Y/\xd9\xe0ZZ\x93 \xce^\xaa\x84\xdaK6\xda\x96\xd6$\x08\xbc\x97*\xb1\xf7\x92\x0d\xbf\xa55 \"\xf1\xa5J0\xbed\xe3qiM\x82\xd0|\xa9\x12\x9d/\xd9\x00]Z\x93 V_\xaa\x84\xebK6b\x97\xd6$\x08\xde\x97*\xf1\xfb\x92\x0d\xe1\xa55 \xa2\xf9\xa5J@\xbfdcziMpdBl\xf6\xb5\x8fA\x92\x9e\xab\x16\xef\x13\xbb\x83\n\xb5\x89{\xaf\xda\x02\x80\xd8NT\xa8M\xdc\x83\xd5V\x04\xc4\xfe\xa3Bm\xe2^\xac\xb6D 6,\x15j\x13\xf7d\xb55\x03\xb1\xc3\xa9P\x9b\xb87\xab-\"\x88-Q\x85\xda\xc4=ZmUA\xec\xa1*\xd4&\xee\xd5j\xcb\x0cb\xd3U\xa16q\xcfV[wT;l\xe2\xaajDQO\x15\x14\x01\xdbo\x05^\xca\x8c\xe3\x03\xed\xcc\x15\xd0zsN\xcc\xad\x810<\xf9\xad\xbb\x82\xa0\xd8\xbd\x133,\xcb\x19n\xfc\xc6^\x81^\x86X\"\\^\xcap\xe27\xfd\nl\xb1\xc7 \xe6U\x96\x93\xdc\xf8-AR'm\x0c)\x14-$\xb0mX\xd0\x14{\x80b\x9ee9\xc5\x0d\xdaT$%h\xe3I\xa1(\xce\xd0\xc6#\xe1\xb0\x91\xe0\x05\xbd,\x84\xe2 \x9f\xbc\xcb\x08\xaa\xcdI1\xcb\x1a\xc1\xb97\xbbsYjK\xca\x0d\xe2\xc4\xefjR:\x92\xf2#0\x0cW~\xdf\x93PQ\xbec\xd6\xa2\xc6\x02Cq\x85vF\xcbN!g\x08\xf1\x02\xb6M\xc96\xb5p$A\x14_hg\xb5 \xec\x8dd\xcd\x98\x97R\x9c\xa0]WB?s\xbc\x968x\x03ax\xf2\xdb\xb2\x05\x81\x9c\x1d\xcf \xda\xb2%U#\xe7G`h\xed\x01\x9b\xba\x04E\xb5\xaf\xdb\xc2\xb8\x86Q\xbc\xa1\x9d\xdf\x82\x88\xd8\xfc\x15s&A\xb4\xaf\x03\x9b\xc3\x14I\x8b+Q(\x8a3\xb4\x81L\xd1\xb4\x0d\xc74\x8c\x96\x1a\xd8e\xa6\x88\xa43$\x81a\xb8\xf2\xfb\xd0\xa5\x07-\x15b\x02\x12T\xf0\x05\xd2&\xc2\x08\xa18\xa6#\xe5.c,\x0e\x19\xc8#=R\xf6l\xe0\x00U\"\x8a!\xeaC@\xd2\x1a\xa8H\x02b/\n*\xca3CR\xe6Dh\x01\xb1\x16E\x19\xf5\x01#)s\xca 9\xf6\xa2\xb0\x839\x8f\xa4\xa0}y=\x928\xa4>\xc4$\xad\x84\x8a\x19x\xf6\xe2\xc0\x849\xf3\xa4\xd0\x92\x96\xaa\xc4\x91\nyP\xaa\xbd\xb3\x11\xb37_\x898t!\x8eVI\xeb`\x02\x18\xb8\xdf\xc1\xb1Ly\x16Kn\x0f9kQpC\x1d\xdcR\xb1\x85\xbc\x1aQ\xb4C\x9d\xf5j7\x059\x07\xf0\xd5\x88\xc3\x9f\xeax\x98\xbcw\xcb\x99\x0b\xe3!\xfa0\x99\x82\xae\xe4\x15\x89\x03\xa4\xf2\x00\x9a\xb4\x06\"L\xe2Y\x8b#&\xf2\xb4Z\xbb\x19\x889\x1e\xaaD\x18B-\xdb\xf9KY\x8bc*\xea0\x9c\x82 \xa4\xd5\x88\x83,\xf6\xfc\\{ML\xa8\xc5W&\x8e\xba\xe8Sw\xd2\xaa\xf8\xd8\x0b\xe8\x84\xc20\x8c9\xa9\xa7R\x93\xdc\x85\xc5q\x19{\xbcO\xa5\xae\xb6 K\x18\xa8Q\x87\x02Uj\x92\x07&\x92\xc8\xadu\x17\x99\xc0\x08*\x00\xf7\x94#[?\x08\xbe\xdf\x1a\xd9F]\xd4\xedY\xdc{j#\xbb\xd7\x94C\xc5f]\xcc\xbfY7\xb2\xfbu)\xffj\xdd\xc8\xb6\xeaR\xfe\xdd\xba\x91=\xa8K\xf9\x97\xebF\xf6\xb0\xa9\x97\x7f\xbbn\x84\xeb\x06k\x18-R\xae\xd5\xd8\xa0\xcb\xc1\xa6\xe3\x1e\x03\x820&\x8d\x01\x94\x80\xfb4\x04\xd0\x04\xb6h\x08\xa0\x0e<\xa0!\x80N\xf0\x90\x91\x05PL\xdc(&\xce\x06\x16N3\xb1\xc1\x00@\xd5\xc4=\x16\x05\x81L\x06\x04('\xee3\x18@;\xb1\xc5`\x00\xf5\xc4\x03\x06\x03\xe8'\x1e\xb2\xf2\x00\n\x9a7\n\x9a\x87i\x1a\xfa\x9c\x86\xe6\x06\x8b\x00U4\xefq0\x08e\xb2(@I\xf3>\x0b\x02\xb44\xb7X\x10\xa0\xa6\xf9\x80\x05\x01z\x9a\x0f9\x99\x00E\xa5\x8d\xa2\xd20\xe2\xb4\x94\x1aT1\xa8\xa2\xb4Gc \x88IA\x00\xe5\xa4}\n\x01h&\xb5(\x04\xa0\x96t@!\x00\x9d\xa4CZ\x0e@!\x1bF!\x93\x16?\xda@\x1ab\x89@\xbdm\x00\xbdq\x84\x10\x1d\xafL\x96\x0cP\xf0\x86W0K\x05(}\xc3+\x9d\xa5\x02\x0c\xb1\xe1\x0d\xc1R\x01\xc6\xd9\x00\xc6\xe1\x1a\x06Xl\xc5\xce\x125\x11<6\xae\xc0Y\x83!\x02-\xb6\x82\xa6\x12\x96\x10\xa2\x03\xa6\x17\x86\x0c\xb0\xd8\n\x98q\x18*\xc0b+`\x12b\xa8\x00\x8b\xad\x80y\x89\xa1\x02,\xb6\x82\xa6*\xb6a\xc0\xc7\x85l\xfd\xe0\xdb\xf1\xd2\x0bX\xdb\xf8\xb6Q\x95@\x06\xf0\xed^]\x0c\x95\x9aU)\xf0\x95'\xbb_\x15\x02\x9fU\xb2\xad\xaa\x10\xf8Z\x92=\xa8\n\x81\xaf-\xd9\xc3\xbaN\xa0\xa1\xb8j(\x18\xbf\xf8\xd8\xa0\x8a\xc1&\xe3\x1e\x8d\x81 &\x05\x01\x1a\x8f\xfb\x14\x02\xd0\x00\xb6(\x04\xa0\x06<\xa0\x10\x80.\xf0\x90\x96\x03PH\\+\x04\xec\x9b~l\xd0\xe5\xa0J\xe2\x1e\x03\x820&\x8d\x01\x94\x12\xf7i\x08\xa0\x95\xd8\xa2!\x80Z\xe2\x01\x0d\x01\xf4\x12\x0f\x19Y\x00\xc5\xcck\xc5\xc0\xf3\x8c?7\x18\x00\xa8\x9ay\x8fEA \x93\x01\x01\xca\x99\xf7\x19\x0c\xa0\x9d\xb9\xc5`\x00\xf5\xcc\x07\x0c\x06\xd0\xcf|\xc8\xca\x03((\xad\x15\x04\xc4)~j\x90\xa5\xa0j\xd2\x1e\x05\x81\x10&\x89\x00\x94\x92\xf6I\x00\xa0\x91\xd4\"\x01\x80:\xd2\x01 \x00t\x91\x0e)\x19\x00ElhEL\xe4n\xb3\x01\x143Qp\xa4\x0d\xaf-\x96\x0c\xa2\xe248i\xf5\xb4\x0d\xa7\xd4I\xab\xe7m8=OZ=q\xc3\xa9~\xd2\xea\x99\x1b\xde\x1al\x83\x00\x0b\xad\x98Q\xbf\"\x81\x87\xbc\x154 \xd0$\xa0\x85V\xc0\xc4\xc0\x90AT\xfc\\A\x13\x01\x16Z\xf1\xb3\x07M\x03Xh\xc5\xcf'4\x0d`\xa1\x15?\xc3\xd04\x80\x85V\xc0\x9c\xc34(\xb7P\xfb[-\xe9\xd7\nFv\xfer\xce2\x96\x01\xf2-d\xa9 \xe5BA \x84I\"\xc0\xc4\x0b \x00s/$\x00L\xbf\x90\x000\x03C\xc9\x00&a\x08\x84(\x0f\xc3A\x04\xa9\x18\x1e\x07\xc1L\x0e\x06&d8\x14\x98\x93\xe1P`Z\x86C\x81\x99\x19^.09C\xc2D\xf9\x19\x1e#H\xd1\x00@\x08g\xf280Q\xc3\xc3\xc0\\\x0d\x0f\x03\xd35<\x0c\xcc\xd8\x00\xb2\x81I\x1b\x12'\xcc\xdb\x00 A\xea\x06BB@\x13\x00\x82 \x1c\x00\x07\xe6p\x00\x1c\x98\xc6\x01p`&\x07\x92\x0fL\xe6\x90@8\x9f\xc3\"\x04)\x1d\x0e\x06\xa1L\x16\x05&vX\x10\x98\xdbaA`z\x87\x05\x81\x19\x1eN&0\xc9\xc3)\xaa=\xcf\x03kN1\xd5\x03\xeaS-\xdb\x03)Y)\xe1\x03)^)\xe7\x03\x19C)\xed\x03\x19H)\xf3\x03\x1aM-\xf9C\x92*\xe6\x7f8\x92cR@<1D\x0b\x91\xc2\xd3\x9aJ\"\x88#T\xcd\x05q\x84\xaa\xe9 \x8eP5#\xc4\xb7Q9)\xa4\xe5\xdfs\x8f\xe1\xbc\x10Q(H\x0d\x91\x08\x08`\x12\x000AD\x94\x839\"\xa2\x1cL\x13\x11\xe5`\xa6\x88\xac\x1fL\x165\x00Q\xbe\x88E\x08RF\x1c\x0cB\x99,\nL\x1c\xb1 0w\xc4\x82\xc0\xf4\x11\x0b\x023H\x9cL`\x12\x89@\x89\xf2H\x1cD\x90J\xe2q\x10\xcc\xe4``B\x89C\x819%\x0e\x05\xa6\x958\x14\x98Y\xe2\xe5\x02\x93K\x04L\x98_\xe21\x82\x14\x13\x00\x84p&\x8f\x03\x13M<\x0c\xcc5\xf100\xdd\xc4\xc3\xc0\x8c\x13 \x1b\x98t\"pp\xde\x89\x01\x08RO,\n\x02\x99\x0c\x08L@1\x180\x07\xc5`\xc04\x14\x83\x013Q\xac<`2\x8aUPk>\nT\x98ZJ\n\xd2\xa2RV\n\xd0\xacJb\nP\xb6Jn\n\xd0\xbfJz\n0\x89J\x86\n\xb2\x92R\x92\x8a T\xcbS\xb1\x04G\xa4\xaa8R\x80\x12\"\x04\xe7(\x85\x84\x15K\xa6\x98\xb3b\xc9\x14\xd3V,\x99b\xe6\x8ak\x9b(y\xa5\x90\xbdR\xf8&Kd\xeb\x9a_\xc5fPF\xab)\x14%\xb4\x08\x04\x040 \x00\x9c\xcej\xca\xe1lVS\x0e'\xb3\x9ar8\x97E\xd4\x0f\xa7\xb2|f\xad\xc0\"\x0c\x16!Jd\xb10\x08e\xb2(8\x8d\xe5\xf3\xb1=\x0b\xb2X\x10\x9c\xc4\xf2\xf9\x98\x9d\x05\x0d9\x99\xe0\x14V\x83\x12f\xb0X\x88(\x81\xc5\xe1 \x98\xc9\xc1\xe0\xf4\x15\x8b\x82\xb3W,\nN^\xb1(8w\xc5\xc9\x05\xa7\xae\x1a\x988s\xc5aD\x89+\x1e\x08\xe1L\x1e\x07\xa7\xad8\x18\x9c\xb5\xe2`p\xd2\x8a\x83\xc19+^68e\xd5\xe0\x04\x19+\x1a JX1(\x08d2 8]Ec\xe0l\x15\x8d\x81\x93U4\x06\xceU1\xf2\xc0\xa9*FA\n\x99*Hc\xaa\x89*@\x8f\x8ay*^\xb9ji*^\xe1jY*\xde\x08jI*\xde0j9*\xc0X\x8a)\xaa\x86R5C\xc5P\x1c\x95\xa0bi!R\x88\x12\x9c\xae\x94\xd2S\x0c\x9drv\x8a\xa1SNN1t\xca\xb9)\xb6}\xea\xa9)\xbf\x8c\xd4\xa0\xccT]&JL5\x00\xa8\xdcl\xca\xe1\xb4T]\x0cg\xa5\xeab8)U\x17\xc39\xa9\xa6n8%\xe5\xd3k\x04\x16`0\x00QB\xca\xe7\xc3\x7f\x16d2 8\x1d\xe5sq=\x8b\xb1\x18\x0c\x9c\x8c\xf2\xb9\x88\x9d\xc5\x0cYy\xe0TT\x0d\x12f\xa2\x18\x84(\x11\xc5\xc2 \x94\xc9\xa2\xe04\x14\x03\x82\xb3P\x0c\x08NB1 8\x07\xc5\xca\x04\xa7\xa0j\x948\x03\xc5BD (\x0e\x07\xc1L\x0e\x06\xa7\x9fX\x14\x9c}bQp\xf2\x89E\xc1\xb9'N.8\xf5T\xc3\x04\x99'\xaa\\\x94x\xa2A\x10\xc6\xa41p\xda\x89\x82\xc0Y'\n\x02'\x9d(\x08\x9cs\xa2e\x81SN\xb4b\xda3N\x80\xa2\x14\x13N\xbc\xf6\xd4\xf2M\x9cF\x95\xd2M\x9c\x92\x95\xb2M\x9c\xde\x95\x92M\x9c)\x94rM\xbcu\xd4RM5\x9db\xa6\x89\xc6\x1f\x93hb(\x01B\x88\x0e\x9a{T\xd2L4\x95j\x96\x89\xa6RM2\xd1T\xaa9&\xa6]\xa7\xa5\x98\x04\xd9$\\\x85SP6\xa9)\x14e\x93\x08\x04\x040 \x00\x9cMj\xca\xe1lRS\x0eg\x93\x9ar8\x9bD\xd4\x0fg\x930\x13\xd7\xb3\x08\x83E\x88\xb2I,\x0cB\x99,\n\xce&a>\x16gA\x16\x0b\x82\xb3I\x98\x8f\xb2Y\xd0\x90\x93 \xce&5(a6\x89\x85\x88\xb2I\x1c\x0e\x82\x99\x1c\x0c\xce&\xb1(8\x9b\xc4\xa2\xe0l\x12\x8b\x82\xb3I\x9c\\p6\xa9\x81\x89\xb3I\x1cF\x94M\xe2\x81\x10\xce\xe4qp6\x89\x83\xc1\xd9$\x0e\x06g\x938\x18\x9cM\xe2e\x83\xb3I\x0dN\x90M\xa2\x01\xa2l\x12\x83\x82@&\x03\x82\xb3I4\x06\xce&\xd1\x188\x9bDc\xe0l\x12#\x0f\x9cMb\x14\xa4\x90M\x824\xa6\x9aM\x02\xf4\xa8\x98M\xe2\x95\xab\x96M\xe2\x15\xae\x96M\xe2\x8d\xa0\x96M\xe2\x0d\xa3\x96M\x02\x8c\xa5\x98Mj(U\xb3I\x0c\xc5Q\xd9$\x96\x16\"\x85(\xc1\xe9J)\x9b\xc4\xd0)g\x93\x18:\xe5l\x12C\xa7\x9cMb\xdb\xa7\x9eM\xc2eP\x06e\x93\xea2Q6\xa9\x01@\xe5fS\x0eg\x93\xeab8\x9bT\x17\xc3\xd9\xa4\xba\x18\xce&5u\xc3\xd9$L\xaf\x03X\x80\xc1\x00D\xd9$\xcc\x07\xf9,\xc8d@p6 s\xf1;\x8b\xb1\x18\x0c\x9cM\xc2\\l\xceb\x86\xac{U\x1fl?w\x15\x1fV\x00w\x17\x1f\xd4\x00w\x19\x1fR\x01w\x1b\x1f\xd2\x01w\x1d\x1fR\x02w\x1f\x1f\xd2\x02w!\x1fT\x03}\xe7\x1e\xd6\x01}\xe9\x1eT\x00}\xeb\x1ej=}\xed\x1ej:}\xef\x1ej7}\xf1\x1ej4}\xf3\xbelq\xfb\xc1\xcb\x033f\x90\x17UD\xa3\x1d\x05\x01\x07<\x12\x01\x8ey$\x00\x1c\xf6H\x008\xf2\x91\x00p\xf0\xa3d\x00\xc7?\xf6\x00\xabh\x08\xe4q\xe0(\xc8\xc1\xc0\x81\x90C\x81c!\x87\x02\x87C\x0e\x05\x8e\x88\xbc\\\xe0\xa0H\xc0\xe4\xe3\"\x00\x04\x87F\x1e\x07\x8e\x8e<\x0c\x1c y\x188F\xf20p\x98\x04d\x03GJ\x02\xd72XBHp\xbc\x04\x80\xe0\x90 \xe0\xc0Q\x13\xc0\x81\x03'\x80\x03\xc7NH>p\xf8$\x80\xb2\x11\x94\x83\x81\x83(\x8b\x02\xc7Q\x16\x04\x0e\xa5,\x08\x1cMY\x108\xa0r2)l5\xaa\x9ef\x0f\xc8\x83W\xc2\x81\x96@\xc0\xe3l\x03\x80\x87\xd9\xa6\x1c\x1ee\x9brx\x90m\xca\xe11\x96\xa8\x1f\x1eb\xe9\xfd[\xe1\x08\xcb\xc2\xe0\x01\x96A\xc1\xe3+\x03\x82\x87W\x06\x04\x8f\xae\x0c\x08\x1e\\Y\x99\xe0\xb1\xd5gF\x1b\xd1\xd0\xca\xe1\xe0\x91\x95\x85\xc1\x03+\x8b\x82\xc7U\x16\x05\x0f\xab,\n\x1eU9\xb9\xe0A\xd5g\x07\x18\xd1\x98\xca\x03\xe1!\x95\xc3\xc1#*\x07\x83\x07T\x0e\x06\x8f\xa7\x1c\x0c\x1eNy\xd9\xe0\xd1\xd4\xa7\xc6\x1a\xd1`\xca\xa0\xe0\xb1\x94\x06\xc1C)\x8d\x81GR\x1a\x03\x0f\xa44\x06\x1eG\x19y\x14\x86Q\xc1\x88\x89\xeb\xe1F4b\x12\x08x\xc4l\x00\xf0\x88\xd9\x94\xc3#fS\x0e\x8f\x98M9\x96\xdc\xca\x05\xfajr\xc1\xa8\x10\xa6\x95C\xdb7\x12Kf\xae\x1d?\xb4\xf2\x92}I5\xe3\xf3\x80\x0e)\xda\xa5\x9a\x8b\x9c0\xb6S/\x0c\xce\xb1\x17 -]\xc5\xe1z\xb9\xa2 \xd6\x81\x8b\xe2\xac\x98\xa3\xa9K\x18\xc7\x0b51M\x10\x06Ha\xe9s\x00d\xce\xd6Q'\x88\x0d\x91)H\x0e\x91\xe5\xc2+H\xaf\xb0p+\x9b\xe4\x9f\xd4\"\x9eJ\xa5A<\x95B{\xc4\xa2\xe3\x93D\xe7\xa9TD\xe7\xa9\n\xd1)\x8a\xb4D\xd9\xd8[\x06\xe7YT\xc0\x94\xc7dy>Q2\x00\x87\x048(HQ\xac`\xed\x03#E\xed9bA\x18\x08(\x0b\x83)\xc5Q\x90G\xc1\xfbR\\y\x83DF\xbf]D\xffh aaZ-G#`a0$\x0c\x0d\xaa,\x9c\x7f!~\x11\xc6\xfe\xb9cG^jc\xef\x11\xb1P\xccBq\xb8E\xb1c'\x1cr\xcd\"\xd7Q\x04#\x03\x16y\xd2p\x98\x12\xce\xa1\xd4\x12\x00-n\x0c\x00\x16\xb7\x07\x00+\x0c*\xcan\xda\xb8\x98Z;9\xb0\xa4\x99\x1cV\xd2J\x0e\xab\xd0HA{8\xb7\x92\xb5\xe7\x08\x1f\xe4\xb1\x92\xf6pX`8]h\x833\xe6\xc1\n\xd9n>\xab/\xc2 \x8b\xf5\x1e\xd19\x1fR/4\x8b\xa5K\xd6s\x80\x94\x0f\xa1\x17\x06Ql\xf2\xc5=\xa2\xb8\x07\x05\xea\x0b\x93@\x18@\x90\xbe\xe8S\x00\x88\x85E\"\xf8\xe2\x01Q\xdc\x1d\x0d\x01\x06C\x12Q\x00\xda{\xc3\x81\xd5\xbd\x16$\"\xf5g\x9d\xae\xc5\x02\x005a\x04\x9a\x01d\x07\x1a\x01\x99\x82F\x08\xacA\x83`\x83\xb0\x18\xd0&\x0c\x080\x0b\x8d\x10X\x86\x01\x15\x18\x05\xeb(\x8cU\x99\xc9|\xa1\xc5\xfcV\x83q\xb4\xa4\xbd\xfc6s\xf9m\xd6\xf2\x15\x8c\xe5\xb7\xdb\xcaW0\x95\xdff)_\xc1P\xfe\xb1v\x12\x98\x04\x0bM\x82[M\xc2\xd1\x92&\xc1m&\xc1m&\xc1\n&\xc1\xed&\xc1\n&\xc1m&\xc1\n&\xc1\x80I(\x8c\x8f\xecd\x1d\xa3C\xd3O\xb2\xce\x03b\xb2r\n\xd8\x17\x01\x03;\x8e\xc3-\x01\xedq<\xbd\xc0EAZLi\xc5\xcf\xe7Fs\"+m?\xcf\x98\xf86\xc6\x9acG\xe5\xe8\xb0\xb1c\xcf\x0e\xd2\xf3\xe69\x8dO\xe3u\xe0\xd8):\xe4\xc9\x81<5\x82\xce\x83p\x1b\xdb\xd1$\xdc\xa0x\x91\x7f\x9c\xcfs]\x14Lr\xa9\xea\x87\x08c/J\xbcDa\xcc9\xc0\xeaH\x94\xd5\xcb`[4L\xa3EJ\xae\xe3\xbd'\xea\xb9\x1e\x88UU\x9d\x11\x9c\xaem\x05u+\x0c\xf1\x95\xc2|u\x13\xf8\xc7X\xc0W1\x80\xff<\xfa\xf7\x8fT\xbf\xff\xdd\xb4/Q4VW4>F\xd1XE\xd1\xf8y\x14\x8d\x8fT4~\x8a\xa2)\x96U\xb9\xe6\x84Aj{\x01\x8a\x0f\xf5\xa3\xfdy\xe2\xc4!\xc64E\xb1h\xa6\xb7\x12\xecu\x1aN\xc8\x9d\x96\xec\x01\xa3\xddX\xcb\x1e\xf2t\x0c\x0cS\xb0\x86Y{\xe7<\x00bj\xec\xd9\x1buIARPX\x8d9\xf4\x94\x03\x15\x04V\x18M\xcaV\xf8'7\x02\xa0\x84\xdb\xe0\x1f\xdb\x04\xb1\xb4\xf8di\x01JXZ\x0cHK\x8b\x82\xbd\xe8\x10\x85\x89\x97'\x02\x17\xde\x0e\xb9\xff\xd7\xf3\xa30N\xed \x9d\xfcQ\x97\xd8\xf3$\xc4\xeb\x14\x11\x85\x19\xe9y\x8c\x9c\xf4G#\xdau\x88\xbf?\xd1Eg\xc4\xdf\x9f\x14\xcc}\xe0\x04\xcc\x1c\xe7\xcf\x94QAH\x15\x9f\xcc$\xf7\xff\x83\x04\x17\xc9\x88\xff\\\x19)\x01\xb6\x89\x16\x84\xb1o\xb3#u\xf6\x88F\x16\xa370\xa0\xd3\xb0(\xa6#\xc9(>>'X\x0b\xc5\x07J\"\xb9\xe0\x90\x8a\x13\x8d\x85e\xd2)\x88\xa7\xe0m\x8d\xcclt!\x14\x19\nCx\x89\xfd#\x05\x96\xca\xa6jfp\xe6\xe6e\xc3\xbcl\x14f\xa3\xcd\xed\x04\x1d6(N=\xc7\xc6e:;{\xc6\xef\x91l4\xdfsY\xa8\xef\xb9.\xe6\x80i\x18\xb1\xc04\x8c\xb8\xaaS\x9f\xab9\x0fp\x14\x0c~\x00\x9a\x91\xf9\x8ezK\x00\xb4\xb01\x00\x16n\x0f$B\xd1$\x856)8q\xd9P^o\x92vr`q39\xa8\xa0\x95\"\xbb\x1d\xed\xf8e{\xf01\xed\xe1\xc0\xe2\xf6pPA{\xf8\xfa\xcb\xf6PX\xd7\xf3\x0fad;^\xba?7\xb8\xa23\xf6\x01\xf41\xfa\xecq\xf1\xfdym\x8b\xe6\x0f^\x99\x15/f\x90\x92w\xa7kXI\x07ez\xf1\x82IK9'\x86\xbc\xd6J\xfc\xae\xc5\x13\xdaN\xeamP\x03\x19M\x94d\x0c\xd7\xa9\\\xc8p\xcd\xec\x9e-q\xb8=\xe3\x9e@\x82\xe7\xcf\xbf\xa3\xbe\x14\xea\x15\x18|\x95-\x03\xf3S\x11\x9dn\xfe\x9f\x1a\xa8\xab\xa9\xedXQ\x9b\nKC\x95\xf5\x9e\x89Py\xb3\xda@y\x1b\xd9\x16\x18\xdf\xa7\x05\xcd\x06{^+\xa4w\x16R\x98 _\x7f\xb6\xef\xe1/\xe3p{\xd0\xfc\xf0Q\x0b\x93\x9dVd\x0f\xfd0LW^\xb0<_\xc6\xf6>ql\x8c\xea\xb6\xcdm\xe7aa;H\xdbx\x897\xf7p\xd6\xf2r\xc1+)\xa24\x93of\xe5?a;E\xdf~\xd4\x7f\x9a\x88\x9e\x03\x1a\xe5Xu\xba=A\xa7:\x02z:\xe4\xac\xa5\x16^\xdb`\xd7\x89\xe1.\x9b\xeb$\xb7\xc0\x8fFW\xb7HM\x11O\x81:\xcaaI\xc4\xac;\xe6Yu\xc7\x00#\x0d\xdb\xf1\x12\xfd\x7f\xc5A\xbc\xe0\x18\x1f\xe1\xd1OEI\x9d\xa5\x80\x88L \xf2\x9a\xb2\xb4\xcdwz\x90\xeb\xf4\x84\x06o\xf7\x1f\xc0\x17\xb3\x87L0\x1dzAZ\x8fH\xce:N\xc2\xf8\xbc|H#\x93\x95\xed\x86[\x0d\x02N\xea\xc5b\x8c\xb0\x9d\x89\x05\x99\xdd\xc6\xb8\xd3\xb5\x92\x8e\xb3\x9e{\x8e6G\x8f\x1e\x8a\x7f\xec\x1a\x03\xeb\xac;\xea\x9fu\xfb\xfd3\xe3\xa7\xc9\x91x\xb1\x88\xe7\xf6\"\xcd\x04\x0d\x83\x14\x05\xe9\xf9_\xfe\xd2\xf8\x7f\xb8\xd3\n\xe4\xb9\xde\xd1;\xc6 \xdauz\xd1\xaeC\x9e\xf7\xeb\xfd4Q\x86\xe5\x07;c\xdb\xf5\xd6\xc9\xb9\x17\xacP\xec\xa5\x93f\xd2\xe4\xd6\xd1\x93\"\xf3\x99\xe7e\xf4I\x11A\x1a\xba\xfeb\xb2ByN'\xff\xf91\xcf\x98\xee\xce5\xf9\x9cu\x846Ui$\x1a\xcd\xfd\xbb\xd0\xeb\x99\x18Ej_\x10d\xcc\x97\x9a\x1dx\xbe\x9d\xa23\xc1s\xa8/\x11\xa5\xc2\xd0\x89=\xc4IM\xdb\xec(\xd0\n\xa6\xa5~\xd4\xf4Ce\x17\x9d-2\xea\"\x83-\xea\xd5E=\xb6\xc8\xac\x8bL\xb6\xa8_\x17\xf5\xd9\"\xab.\xb2\xd8\xa2\xf1x\\\x17\x8e\xc7c\xa0\x98*\xe7\x00\xbe\xbdk\xa45\xfa\xc3\xfe\xc8\x1c\xf4\x87,\xaa\xf4\xf2\x1aY\xfe\xce\xc3\xbc\xd4\xb3q\x0d\xe3\xb3\x95\x8f\xda:HP\xc3(\xff\x8d\x86\x04(IQf\xa0h\xaf\x15\x11T\xdeM:!\xb3\xaf,\xc2Ej\xb05>\x10\xbf\x9e\x1b\xecB\xa2\xa4k6\xae \xda\x95\x01\xd6\x01c{G`\xcd#\xb0\xfd#\xb0\xd6\x11\xd8\x01\xa3\x17\xe8`\x7fA\x8f\xbd$\xd5b\x94 \xa1q\x08\xc4\x9a{\xf1\x1c\x99\xaf\xd6'94I\xf7\x18i\xe9>B\xc5\xd1*\xa1%\x8b\xed\xa5N\xf4sDm7u\x8f\xdbo\"9&(B\xb1\x9d\x86q\xce\x94\xe0at-A\xfb=\x7f\xd9\xf1\xfc\xe5\x81\x18\xd2\x9b\x9cG\xfe\xab\xeb%\x11\xb6\xf7\xe7s\x1c:\x0f\x02\x1d\x06\x0fI\xc7>\x94\xe7\xe1Mk\x88\\\x17\x9a\x02\xf8\x01k\"-\x95\xd5\x06\x0d\xb6\x0c\xa2\x9c\xf5\x0b\xa9\xc6\x03\xc7Y,\x9e_\xaamlG\x11\x8a\x05\n\xec\x0f\xf4hW\x1a\xf0\\\xef\xe4\x9b&\xa5\x0b\x9d\xeb\x9d^VH\xcd\xf0\xdecVRN\xcf\xf3p7\x01\x9f\xd2\x12\x84Qn\x1a-\xb5\x97Z\x82\x9cL\xeaCe4\x82ymH\xcdO\xb4\x05F;\xf2Y\xf6;%I\x18{\x993V\x99\x18\xaa\xcc\xf5\xe2\xa2\x9a2%:\xa98\x12%N\x88\xd7~0\x01\x9f\n\xc5\x7f\xba\xd8\xe4 \xe0F,\xeai\xfe\x8b\xe6\xa5\xc8O\xaaG\x95E\x0c=\x0b\x97\xb2\x7f\x8c\xea\x9f \x134\x8aB\xc4^\xc2E\x81\xbddR\x9b,\xef\xb9F\xb4\xeb$!\xf6\xdc\"\x1c\xb3\xc6g\x03\xebld\x9cu\xcd\x9f\x84*)\x9d\xb8\x99\xf5\xa9\x1b\x1e:\x1bj\x93\xca$\x8e\x18\xf5I'\xd4;V\xb4\x9b\xe4\xa5\x0b\xdb\xf7\xf0\xfe<\xb1\x83DKP\xec-&U\x1f\x9e\xf7\x0d\xcb\x10\xf2\xee\x06\xa1\xe6\xa2\xc4\xe9$\x91\x1d\x1cH\x03d\xfa>7j\xd5\x9f\x1b\x93\xe2?BV\x9dd\xb3\x84\x82\xa2\\\x85}^\xab\xfdD\xc2\xca\xb71u\xde\xa9_5t[\xcc\x04}]\x9f\xa8HK\xf4\xd1\xdc \x8eWVd\xc7\xb6\x8fR\x14\xff\xf1G6\x15\x90B\xf5\xa2]\xcd\xdf\x8av\x1d\x9db\xef\x87A\x98o\x10P\x82\x0ft]V\xdb\xc6C[\xad\x9a\x06\x1f\x0e\xfc\xca&\x9b\x04\xcch7\xa9\x0e>\x90\xfe`\xa9{\xb9\xc5\xdb\xc3\x82\xedq \xdc\xcd\xc8j(\xba\x02\xd1\x07\xfe\xaa\xeb:\xb3\x10\xe9\xb3\xc3a\xb3\x921\x99E\x8c1\xe6\x16;\x00\x04\x14\xad\xd3M\xedy\x1e8\xa0\xf8\xe9#\xceQ\x0eOV]\xfc\x9c\x8dC\x87\xc6\xdb\xfa\xfc\x90s\x04\xa3\xf3\x85\x17'\xa9\x16.\xf2\xf0\x83a\xdb\xd1;\xfa\x11\xbc\xbaebs\xd5/:9\xe7S\xa7\xf3*\xd7Y\xfc\"\xb3\xbe\xad\x999L\x1eSY\xfa\x8bj\xb5\xd9kV\x9b\x99\x9f\x00kd \x9b\xf3\xfb\x8f\x9a\xa5\xbf\x00\x13=U\x111\xb4.c{\x0f6\xab\xeb%Z\x18\xa1\xa0\x19n\x92\xb5\xef\xdb\xf1\xfe \x1a\xe13\xef\x16h\xa8fQL\x8a\x95'V\xd6\x1a\x95s\xd0\xc4\xf7\x82*\x82\xb5\xb2\xdf A\xd9\x1b\x83\xa3\x9f\xe0~c\x00\xcb\x7f\x83\xe980\xe6(\xd9\xcf\x8e\x01w\xb0=G\xf8\xe9\x1d\xef\xa4\xa9\xfe\xa8f\x95\x922C79,\x0fu\xbd\x1eG\xb9\xc30'\xcc\x1aJ\x02\x95\xfd\x91\x9a\xa1$\x9d[\xc0j\xd5g'J\x95Q\xadi\xeds4\xae\xe8C\x9a\x8f\xd2U\xe8\xca\xe6\xed\\\xcf\xf5\xd6\xe5H'f\xd0A\x16\xa8e\xe3\x05w\x03\x8c\x99\\L\xba\x0b\xe5\xd3ONC\xf5\x04\x9d\xed+\xf2v.\x16\x0b\xc5F\x86\xf9\xd2,3\x80\xe7\xb6\xf5\x97\x92$\xb2\xd3\xd5\x11\xd0?\xfepQ\x14#\xc7N\x11\xa5\xccAD\xf4\xacS{[n~\xbdq\x08\xbdc\x16\xab\x19\xfa\xb7'w\xd0\xc96\x8c]m\x1e#\xfb\xe1<\xffW\xb31\x96\x85c\xaa\xf1R\xb9\x19N\xec\xe8\x0f\x07\xa3h\xc7l\x81\xff\x07\x9a\xaf\x17\xed\xd8\xd3\x9d\xcal\xd8\xcd:,\xbc\xa6\xab\xd4p\xa6\x8b*r\xc8\x16\n\xb1\x17\xe5\xebR\x82\x81\xa9:\xe4<\xdfH\xf3?4\xe9\x90\xd1\xbeZp\xc7\xc8\xad\x18\xe0\xf7\xea\x00\x9f\x98\x95\x9e=\xb2\xe7\xa4\xab\xf6\xad\x19\x19\xcb\xb0m\xc4,5\xe0\xf8\xaab\x19\x85IJ\xbc\x8f\"3p\x7f\xec8c}\xc2\xae\x80\x87\xe6YO\xef\x9f\x19\xfd\xbe0\\\xa1\xb8\n\xa7\x1drN(\xea:\x81\x19(\xb3\n\x1f\xf5p\xf9h9\xd7\xac&\x17\x8em\x98\xbc&{V\xef\xcc\x18\x18g\xfd\x91\x82&\xd7j\x8a,\xaa:\x9e\x17(\xb1\x02\x9b\xd3\xd4\xa8\xc2\xdeE\x18\xa5\x88\x95kl\"\x13\xf1\x9a\xec\x8f\xcf\x06\xbd\xec\xff\xad\x8a,\xd8\xaa\xe92\xaf\xec$v\xa0\xd8j\x9cN\xd4\xa8B\x0dK\xc4:\xe6\xc0\xb0\x17\x0b^\x9d\xe3\xe1\x991\xb4\xcez\x96B\x17_\"5\xc7,\xaa:\x9e\x17(\xb1\x02\x9b\xd3\xd4\xa8\xc2>\xb2Sg\xc5\x88e\xe9\xc8tz\x9c\"G\xfaY\xaf7<3\xc6\n\x8a\xcc\xd9*\xa9\xb2\xa8\xec\x14n\xa0\xd4J\x8cNS\xa7J\x05\x19WF\xae\xb1n\xf4\x00\xb7\xcc\xa6\x1cc\xa4\xe6\x96\x19W%e\x16u\x9d\xc0\x0c\x94Y\x85\xcfi\xaaT\xe1\x1f\xe6\xb1^\xc2H\xa6\xbb\x96m\x0fym\x9agc\xfd\xcc\x18\x0c\xdb\x95Y\xf2U\xd2gQ\xdbi\xfc@\xc1\x15Y\x9d\xa6U\x95*\x88\xb0\xbe>\x15:\x98\xd0\xa2\xa2y\xf6\x07\xce\x14\x8d{\xc0\xab\xa5\xc4\x95(i\xb9\xa8\xefd\x96\x07Hzun\xa7\xe9ZR\x0b!\xa0\xb3B>J\xb8\xa4\x9c\x1aY\xa7[\xfe\xa0\xa5^\x8aQk\xaef\xe1\xe14kD\xb3\xd6*\x9eh^\x90Eq\xd4\xd6b\x1eI\xe7{T:\xb5oU%\xd8{M\n\xd2\x1d\xb9.b\xbc*\xb5\xe7\xa7\xad\x82\xa8\x9a\x8bex\xdd,b\xe3\x1b\xd8\xf3N\xedy\x07{l\x1a\x8d<\x89N\xf1b\x16,\xc7\xaf\xfe\x8a\xfa\xd8\\8\xb7bbv\xf2\x99\xcf\x96\xf5X[C\\\x85\x89\xecb\xdf\xbe`5\xa8WeF\xb4\xa3\xceK\x11)l\xc1\xfe\x1e\xbb\xbdW\x08Q\xfa\xf8\x81\xc9\x90\x81\xbeI\xae\xbe\xb5r\xaf\x1aLJhh\x97\xa28\xb0\xb1\xe6\x86N\"\x87\xe6^\xfdGy\x13\x8a\xb5+\xbd\xcdX\xbb\xa8U\xa5\xb5\x8f7\xa8\xa4)\xdc\x11\x12ik\x84h\xb2ALf\x14h\xd3\xf3\xb6 :\xa6\x01\x020%\x7f\xc4fR\x9f\x9e\xb3\x15\xaa\x939\x0fC\x13\xa3\x1dr\xd6)\xaa\xe0\xf50\x98\xbb\x81\xfc\x9d^\x0ci\xa7;O\x03r\x1c$\xc7\xe5>7.\xcfCw\xaf\xe5;\xb0u,r\xd2\x98\xf7?s \x82\x97\x9ez\x86\\/=P'\x16\xf4V\xfab#\x83T\x9a\"M'A\x189i\xb5\x9bkB\xb3W\x8c\x92(\x0c\x12\x94h^\x100f\x96\"\xb9\xee\xc8\x95[\x82\x9eXN\xa3\xa7u\xc6\xaa\x96,\xec\xf8#I\xedt\x9d\x80{\x0fOeJ<\\\x07n\xe8\xac}\x140\xb9]\xe3\xd8d\xf6X\xcf\xfeH\xaa\xce\xcf>1\x9f\x0f\xcd\xcf\x93UY\xef\xbe\x8e\xfc\xc9\xf36\xb78o\xf5?\xd1Zb<\xfd\xe3\x8f\xc2g\\o\xd3\xf5\xed\xf8\xc1\x0d\xb7\x01\xec]2\xca\x18\x05.\x8a\x91;+9\x80\x9b\x7fE\xa0\x93\xbf\xb9\xcd\xa1\x8f\xc75C-\x10\x9a\x91\xa7\x1c\xa8d\x9e\xd1\xef\xf7\xd1q\x9a\xe1\xf6\x9dT\x1aW\xa9\x85\x9dEThY\xc5t\xa2\x038\xad|g\xc9\xedg\x90\xdc>\x1c%\xf0h<_\xe8\xfd\x89\xe2\xbd'\x15\x89\x9a\xd6\x14\xa9\xf3\xe7h\x13}\xd8qd\xcc\x0d\xddy\x82d\xec\xce\x95\n1'T\xba:N\xd3\x8b\xc5BxbN\xb8\xd3\xaaeSW\xf3\x1b\x0e\xed|\xe4+\x0e\xdd\x93G!\xa9\x0ej6gl\x9b\xfd\xfa\x96\xb7TP\x15F1w\xa6\x0b\xee\xfb\xcc\x95\xef<\xa2)69\xb3\x9f\xca=\xce\xecwx\xe7\x93{\x98C\xab\xe0c\xb5\x8fV(H\n\xf1\xb3\xa0\x83z@\xfd\xa24\x06\xd5/\x89ae;\xd6\x8er\xcd\x15'\x18\x1at\xf3\x96\x86\x16\xban\xb1\xdc\xcf\xba\xddAr.y\xe5-W\xc5{\xc0\x9d\xd0\x05\xd6~2\xf4\xdf\xbb\xbe\xe7\xc4a\xfe\x80|iN\xe9!\xbb\xeaHN_g\xce\xe8\x0c\xd8\x13\xd6Y\x1f\xc8\xdcQ+\xd7y\x89\xf8\xc4S\xee)\xe5\xca\x138tJZj\xe8\x8ezc\x138\xed@n2\xf2\xc6&\x0d\xf8\xd1K=\x8c\xbd\xb5\xdf\xf9\x82\xe6g\xc4\x84/\xe9\x97L\xc4P\xb6\xd9\xd4\xeb\xc5\xed\x90\xdb\xdb+r \xc4+\x88\x88eT\x8f\\\xf3\x9bE6\x83\xdaG \x8ej\x83\xa7\x95\x98s\x1a\x96\xe0P\x13\x07\x93\x8bX'n\x9e\xbe^8i\xa7XQ\xba\xbf+\x1dLzr\x13\xbe\xe7\x92\xa7\x1a-\xb5\xe2\xb8\xb5U,,N\x88D[\x94T/`\xeat\x93a\xd6\xcb\xcf\xe6T\xa0\xe0\x85\xb9\xd5l\xd2\xf8p\xe5\xb3\xe5\x89J\xe2x\x7fq\xd1\"\x9bW\x9a1\xc1x\x8e\xa37\x91\xed\xbc_'\xa9\xb7\xd8W\xe3L\x8d}\xaa7\xfei\xce\xd0\xa2\xf4\xfaQ\xdbH.\xa6,3uD\x8f\xd1\x81\x1e\x03'\xf2,\xfdEs\x18\xb5\xce\xd9\x95\x8c\xa5\xa7O\xf3\x13\xa6g\xc2\x13\xa8T\xb1\xc0\x1fO\xe8\x11\x12-\xcc\xd1\"\x8c\x91 aI\xb5\x93\x8e\x9a\x88Dm5\xdb\x11G\xc8\xb5\xbcG\x01\x07r\xeb \xec<\x0e\xd3\xfc\x87\x8e\x91t\xbc`\xe1\x05^\x8a:\xd94n\xc7g\xc4%\xcf\xc9\xf1\x14\xcd{\x12\xb8\x04x\xb1\xf7i\x9d\x15\xff/\x0e\xbe\xe6\xf3b\x1aF\xe5\x9e\x039;\x0c\xd8{\xb1y\xa6\xa9\xf6\xf3S.\xa0\xff\xfb\xbf*\xf2\x07\xb4_\xc4\xb6\x8f\x92N\xd5\xb0C\x1a\x02\xf7\xa0\xf3R\xf4\xa3\x91\xae\xe3\x80t\x1a\xea\xf9\xbf\xff\xfd_\xcf\xccO\x14\xec\xe7&\xa5N\x93W\xc3\x9c\x02I7\xfb%\x0eq\xa2\xd9\x8e\x83\xa2\xb4\xda\xac)\x87dj\xf3g\x19#\x14<\x85g~\xf5\x83\xe0ED,\xdd!\xf2!K\xcc\xb1\x17<\xa0\xf8`\xe9/\x9a\x17\x86P\xba\x15 H1\xcbc\xb5\x9d\x95y8\xba\xab\xda\xdd \xcc\x93 u\xb8\xe1\x05\xdc\x92\xb2\x06\x9d\x81O\xcf3\xa7\x83\xce\xfaU\xb7\xba\x8b\xea\xeb\xdf$\xc7\xcf6(N\xbc0\xd0\xa2\xd8^\xfa\xf6\x81\xdc\xaa\xa8\x83K\xe4\xb3\xe9?\x9a\xea\x8f?|\x94$\xf6\x12==\x82:u\xde#\xe5&\x06\xfcn\x0f\xf9@\xd8\xcc\\\xa0E>q\xd8\xb4\xcb\xc5\xf4\x82\xc6\xfe\xdd\xf56\xc4\x8bE-\xcbY)\x9dmTb\xde\xc9\x171Mt\\m\x97\xba(\xfbS\x8b\xdb\x8fv\x9d~\x11\xf6\xb2\x8bN\xba\x9ay\x1a\xb4\x9d\xb5&\xaf'\xf5\xc8\x83\x9a\xec\x19A\x93?6h&\xfcH\xbc\x8c\xed\xbd|\x05\x9as\x89\xec\x18\x05\xe9s_e8a\n\x9d\xa7A\xf6WK|\xd1\xc5\xad~\xa9\x19\x8e\xee\x9f\xae\x97\xd8s\x8c\xdc\x7fU\xef\x9b\x08\xc2\xcc\xe5p\xb8En=[uM\x8e\x90y?\x00s\xb9\xc9b\x9aer\xd7\x9fx\x04\xdf&\xc7\x0e\x1c\x84\xd9Sa\x8b\x81> \x97_e\x01i\x12\xb9\n\x0b\x0e|u\xf6:]\x85\xb1\xf7\x88\xe8\xeb\xd8\x13z\xb4\xab\xb8T\x07=\xe5\xa7?y\xe1$\xf5\x16\x89\x86\x05\x0e\xed4\xff\xb6\x0cm>p/\x9e\xa1\xdf,\x0f\x0b\x0fc\xf8\xc8e\x86-w\xaa\x80\xfe\xd9\x1f\x8fu\xd4\x03\x92[T9\xc7Q\xcb\xb8D\xa7\x0d\x9f\xe4\x8aZ\xc0\xb8\xe8\xff\xc7\x0fN4\x83r\x1f\xbcxU\x15\xd7\xb13\xadv\xb8\x03\xe2\x0c\x07l\x0b\x18\xe4\xa4\xf9_F\xdd\x95Y\xec\"\xf3\x98\xb5\x83\xb9\x18P\x0e\x0e\xca\xa2\xd3\\3\x0f\x95s\xce}\x98\xb8\xf7Y\xf6B~w\x8ef\xcc\xa8V\x06-\x0f\x80\x13}E\xcf\xfe\xb4\x89-\xbc\xf5\x0bO*\x05\xeb\xa1\x9e\xfd\xa1X\xcf\xd7i\x1a\x06\xec\xdb}\xc2u\x9a\x0d.\xbc\x02\x0bx\xd7\x0b66\xf6\xdc\x03\xbfVIV\xf6\x03\xeat\xfbI\xc7\x98\xc0O\xdb\x0e\x03\xffu\x81\xb83Fe\xd0{\xc4\xc4\x9b\xa7\x18\xac\xea\x1e:\x7f\xbc\xa7\xcc\xd9\xca\x13\xbb\x8ba\xf6\xa7\xb3\x8e\xf1\x8f\xae\x9d\xda\xe7\x9eo/\xd1\xcbd\xb3\xfcy\xe7\xe3\xc9\xdcN\xd0\xa0\x7f\xf6\xdb\xaf7\xbdo\xfb\x8b\xfe\xfc\xcbn\xed<\xea\x9e\xfd\xeb\x9d\xee\\\x86\x9bw\xa6k\xba{\xcb\x9c\xed\xad\x8d\xe3;\x9b\xd9\xfdt;{5~t}\xc7\xbb\xfe\xf5[\xf4\xedw\xf7\xd5\xdc\\\x8e\xaf\xef\xa7\xcb\xd9\xab\xe9\xbe\xf8{\xfd\xf3\xf5\xab\xe9\xf2\xfar\xb7\xfd\xfa\xfb]x\xfd\xe6v|\xfd\xa0\xeff\xfb\xbe>\xfb\xb8\\\xde\xec\xfb\xfd\x9b\x8f\xf8\xfe\xdd\xfd\xb59\xfb\xa0\xafg\xf7_\xfb\xef\xee\x9d\xed\xfb\xfa\xe7\x07\xf3\xfd\xab\xe9\xf6\xfaU\x7f\x7f\xb3\xef\xefo\xee\x97\xeb\xd9\xbd\xb3\xcf0\xb3\x0f\xf9s\xeb\xe6\x1e'\xef>\xce\xd6\xef?N\xfb\xd7\x97\xb3\xf5\xfb\xcb\x9b\xfbw\x1fj|\x9aa\x9b\x9f\x1f\xcc\xf7\x1f\xa6\xdb\xf9+\xfd\xf1\xdd\xfd\xc3\xf6}\xfe\xdf\xe5\xe3\xd7}V\x9f\x93\xbe\xbb\xbf\xee\xdd\xd4?\x17u\xbc\xfb\x90\xd5\xf1\x90=\xdb\xe5|\xef\x97\xeb\x9b\xc7\xa9U\xfd\xfc\xfe\xa3\xd3\xbf\xbe\xbc\x98\xcd>N\x97\xb3\x8f\xaf\x93\xb2m\xe9l\xdf\xdf\xdd\\\xbe\x1e\\{\xa3\x9f\x7f+\xf4\xf4\xf3O\x9d<\xaf[\x9c\xfc*b\xceN\x10j1\x8a\x90\x9d\x92\xf3ZqS\x9f{#\x84<\xa3\xd9SK|f0\x95(\xa8Y\xb9G\x11\xb2\xe3,Z(F\xa4\xfcEm\xecC\xe6w\xc0\xdd\xff\xe9\xafq\xeaE\x18\xfd\xabJ\xfeZ\xd4\xc15\x0b\xf4V\x80\xd1\x9f\xde]\xe9\xbd\x07.\x89\xd8\xcbg\xd8\xa3\xee\x94 8\x19#\x9d\xbd\xe0\xa5\x94\xdd}\xea\x99\xa4\xfch\xe1?\xb3%\xf5/\xc8\xb7=\xfc\xaf3A\xe9\xc2\xc3HX\x18\xd9I\xb2\x0dcW\x08H\x90\x1d;+aq\xb6\x1e\xa3\x0b\xb3'v\x8clRE:\x91l\xa2\x1dh\xc4\x0c\x8f\xc4\x86\xa1;\xce\xfe\xb4\x0d\x8f\x8b\x85\x9a\x15\xff\xf3\xd5\xd5\xbct&\xdf\x8a\x91\x1b\xbb\xeaO\xd2V\xb4\x81\xea\xd6\xb4\x01\xcbV\xb5\xc1\xf2\xd6\x81\xa0\xaa\x95\x7f\xca0\x00d\x8ar6\x07C\x7fq6\xd6_\x00Y\xb6:\xa5k\xba?jF\xb4\xcbF]0\xe5K\x96\xff\xbb\xa7\xbf8\x1b\xb5\xf2\xeb\xc9\xd9U\xc5\xff6\xf5\x17g\x96\xfe\xe2l\xd8\xcaQ\xeb\xb7HX\x95\xff\xbb\xaf\xbf8\x1b\xb4\xf2kaWs#3k\xff\xab\xd1g\xd1(8\x1403\x07y|\xbc\xd9\x9a\xeaQ\xb7\xe8\xf9\xd5\x137l\x92\x01u\xcb\xbb(\x8e:-\x00\xccMUK\x8aw|\x1d\xf8\xd0\x17\xb8\x1fU\x0f\x11\xce:\xe6\x0f%\x13[r\xe4d\xc2\x9c\xd5\x88QN\"P\xc0\xb3\x9f\xd9rV\xc8y\x98\x87\xbb\x03\x19\xf5\x97+Y`mD\xeez\x08\x1eW*\xd5\xb3?peOx\xfd\x86\x80aD\x1dD\xef\xeb:\xf1\xd1\x8d\xc2\x0e\xe4y\xb9J\xf3,HU\x8bP\xba\xae\x16\x85\x98L\xaag\xff\xaa\x9b\xca/\xa5\xa5t?\xe7\x8a\xfa{\xb7xC\x8f\xf0\x8dJt.K#\xf7\xcb\xf27/Tn7 \xcf\x91\x8f\xca\xedn2\x0ef\xcf|\xd0[Q\x8c\xff\xa1Q\xf6G\xf4\xb2$=_\x02T i!\x97\x08\"\xde\xf1\x90\xf7\x83\xfa\xa7\x13U\xd7\xfe\xca_\x85WFKk;\xcf\x7fB.e0^Y\xf9\x1a\xf8/\xc0\"\xd8Y\xd9q\x82\xd2_\xd6\xe9B\x1b\x9d\xbd0_%\x9be'\xb7\xe0/?\x18\xfa\x0f\x9d\xc2\x82\xbf\xfc0\xfa\xa1\xb3\xf1\xd0\xf6\"\xdc\xfd\xf2\x83\xd9\x19v\x0c\xbd3\xfa\xa1\xb3\xf3q\x90\xfc\xf2\xc3*M\xa3\xf3\x97/\xb7\xdbmwkv\xc3x\xf9\xb2\xa7\xebzV\xc7\x0f/\xcc\xab\x17\xe6\xab\xc8NW\x9d\x85\x87\xf1/?\xbc\xe8\x99}\xa3?\xec_\xfd\x90?\xd0\xe25F\xbf\xfc\x806(\x08]\xf7\x87\x8e\xfb\xcb\x0f\xb3A\xd74\xcd\x8ea\xbd3;\x86\xd1\x1d\x0c\x86\xd8\xc8\x9eh\xd9\xbf\xfdN\xaf\xd3{W<\xce\xc40;\xa3\xac\xec\xf1\x87\x97EMY\xa5/\xcc\xab\xbf\xfc\xd4\xb1\xf4\x17\xcdZ\x93\xd6\xa8\xeb\xd98\\j\xeb\x1d\xf35\x9d \xf9\xa2U\xea\x1e\x8b^\x1dV\xaa^\x03,`\xd8\xe9f\xbaw\xe30\x02\xb8K\x19\x8an\xc1\x8c~\x12V\xe5\x87\xae\x8d\xa9z\xea-m\xae!\xd4\xfe63)\x16\xbf\x9a\xe5\xdcP\x7f\xf3\xc3\xe2\x86\xe2\x937\xf8\xf9\x05JuY\xafm\x81\"\xc8\x07\xe8\xd1\xaeS\x9c\x9c\x92\xbe\x04Z\x8ckUj\xb5\xb1&;\x06g\xf5\xc90\x82O*J\xd8\xd2\x17U\x80{6U\x9e\x9c\x9fk\x95V\xb8\xd2\xba\xe9K>#f\x81=h\x16\xd8O8\x9a\x04\xd5\xff\x94\xd7\xce\xd5\xb1J\xaf8/':*[:\x16\xe96'\x9d\xffQmM\xa7\xeb\xe00AZ\xfe\xf8\x88\x94\xfc\xf3e\x9bd\xc2\xad\xc8\x0f\x83\xf7\xd8c?\x03\xf2\x0d^\x8d\xe8\\\x1eN\xb4Ir\x82[\xf8\xa1+O\xef\x98\xfa\x91g\xea\x85\xb5t\xba\xc4}\xd9$\xb2\x99\x1b\x11<&u\xabc\xb9\xb6\x9e\xfd\x11\x9d\xcc\xe5(\xff\x9e\xba\xcc\x8dK\xf5w\x0f\xe5\xcc\xb44\\.1b\x8fh\xc1\x81\xd7@\x14x\x95\xa6\xccF\xa9N\xd7D\xbe\xc2\xebo\xb8\xe1]\xf8*`u\xe4\xa9\x08\xe8C\x0e$\x03~**\xcf\xf1\x8cu\x17-\x81\xf3=\xe5s\x8eN\x0bc/\xcf\xa6\xe9/\xb2(a\"*\x10\x1b\xaa\xeb\x84\x18\xdbQ\x82\\\xf1\xa9#\x81P\xf9c1\xe7\xf2\xac\x1et\x02\x8d\xdd\xc0\x12\\\xa1=*\xd2k\x0f\xe0\xaa`\xb0\xd7o\x82\xc1\xec\xe7:\x1a\xcc\x83\xea~\xa7\xd7'c\xbd,\x8c3\xf4\xce\xe0\xdd\xa8k\x8d;\xc3n\xdf\xe8\x18f\xd7\x18v\x8c\x1e\xd6\xfa]k\xd4\xe9w\xad\xf1;C\xef\x18#<\xd0\x06m\xf1\x1b\xb7W\x90\x05/\x90\x16\xef\xd7~\xa4\xa5a\xfe60`\xe1\";\x01\xc43\x10\xbfz\x8a:;\xa8u\xfb\\g\x03-\\\xdc\x87\x97\x1f\xe3$\xa0\xd5\xbb\xa5\x8aG+/H\x0f\xc4!\xbb\xfcG\xf6cc\x04T \xab\xd1\x1d!\x7f\xc2\x9f\xe3\xab\x86\xff\xae\x81\xfcN~\x14\x08\xf8\x1eo9<\xaa\x04od\xb85\x84\x1c\x9e\xb8D\x95\xad\xfb\x99\xc3F\xe5\xc9\xb2\x02\x9a\xd4W0ub\xf2\x97\xbdR\x9a\x97M\xc2\xbdz\xc1)1{\xeb\xfc\x0b\x0f`\x9a,\x96b\"7Qh\"\x7f\xef5\xcd\x9e \xd1\x9e\xe5-\x86'\x85Ap\xb2\xe8Y\xdf\x13.\x0f\"\x06:w\xbc\x86S\xd5\x13_\xa3\x0d\xf0;\xe9\xcd\xde\x1c\x9f\xe3\xde_\xce\x92[\xac\x07\x90\xddEo\xdd\xf6\x02\x0e\x0b05\xa8\x0d\x99\xf9\xeaQ\xda\x17*F\xc0e\x97\xfa\x82\xc3Q\x1f\x1c\x02\xde\xc6\xa7>\xd8\xb0\xdf\xeej\x91\xb5\xc5F\xc3\xe3\x98\xd1Q \xf1\xda\x90\xa3\xb8\xe4\xa7\x83\x18&\xad#\x12\xc7\xa6|\x90\x08\x0cLM\x0b\xa3\xfa\nVf\xab\xe6\x15;\x96B\x85\xf3pw\x90\x1e\xdai`T\xc2\x19\x8ca\x95\xcd\xcc\xbe\xcc\xa7\xae\xe4\x08\xb7\xe6Ni\xd5L\xba\xd0\x0b\x87,\xf1\xa4\xce\xf4Ty\xcf\xb4\xf4\xec\x0f\xc4\xac\xa9U\xdb\xdaq\xe0\x05K\x903\xb7|\xab^\xdcR\xddn\x17\x1fV\xe4_Q\x97\x8du\x7f\xcf\xfe)\xa7\xe5\xee<\xb6\x1d\xa4\xe5\xabZjF\x84\xceBEq\x18i\x81\xed\xb3\x87\xb8\xa9\x15I#\x1d@\x9c\xfbx\xa5\x18\xcb\x06\x10(X\xfb\xb2\x0b\x8f9(\x0b\xb1\xed\xf4 \x9e4\xba \x8a7(\x16\\\x1f{\xb6\x0bYd%\xa2\xebW\xf47f@\x06\x9dU\xbf[\x9d%\xaf\xee\x1e\x94\x01E\x8fUcE\x92\xdas\x8c:i\xf55\x16So\x01\xba\"\x9b\xd5\xd2eQ \xf8\x85\xdb u\x1f\x82H\x82i\xc4\x9dNy\xe5\xf0\xeb\xfaKWik\xa3\xdb\xe1^\x0eE\x1c|\x87I\xbbN\xe8G\xeb\xack\xadc\\\x0f\xcd\xfc\x91~\x10_\x1cC\x07\xf5E\x9c\xaa\x9d\x88&l\xce\xf5\x978\x9c\xdbX+\xea\xfa\x8f\xbe%*\x90\xb4\xd6S9\x00\x92g\x9c{\xd50$~=S\xf5\xaa/\xc0\xdd\xcb1C\xe0\xed\xb9\x03@/\xc3\xa12nZ\xb5>?\xaf~\xe0\x99\x94\xc3]\x9a\x9fLJ\xe3\xac?\xd4\xbcX\xafg?\xd6,`\xc0\xf8tu\"\xa5O\xbe\xe2\xab\xd8\x84\x82ZU\xde\xefN2IZ\x12dp\xa7|j\xda\xac\xec\\\x80B\xaa7\xb7)\xe9E\xa2\x91fl\xe9Q{\x0f\x03\xe2\xe6 \xf0V\x9f\x92m\xfe\xea\xc6\x9c\xed\x99\xact\xd5vz\x8cI%\x13\xd7b\xf2c\xf2\x8a\xeb\xb7\x9e\xda\xa9Bf\xae\xaa\xbe\x8c\x93\xb0/\x93\xe0\xce\x02\xc1\x1f\xd52\xf9\x17>Ix\xd2\x97\xcdJ\x86B\xfa?\xfe\xc8grI\xc4\xd1\xd7O\x99\x14\x99\n\xba1\xfa\xef\xb5\x17W\xaf\xc7\x11\x0d\x12\"*\xf86+\x1c\xe0i\x03\xfasCM\xca\xac\xe2\xf6\x97R\xf0\xf2e\xd0V1\n\x0e\xd8o\xae6\xb2\xa0]\x8a\x82\xc4\x0b\x99l2\x81\xf0\x14^\x9csLW\xe5?\xccBT&|m\xfe\x13+\x8d\x91+V\x81\x1f\xa5\xfb?66^\xa3?\xf8\xc4\xb5ID\x03\xe5\xda\x91\x8b\x0e\xb8\x17\x0cJ\xb9\x97\x93=\x15L\x0e\x8f\xe2\xd0\xad\xee%5\xc1<\xffjH\x8c\x80\xab\xee\xfc\xa6^\x1aFs\x9b\xfeb\x0dpE\xa7|s\x0eDZ\xfd\x17~\xcd`\x89\xb1O\xdb%{r\xbe\x07\x14\x98:U\x95\xe7\x06\xd9!U%WB\x8eb\xf9^3\xbbIR\x1c\xb9\x90\xaf_\xd8cD\x95\x84E\xca\x06\xd8\xcc\xe2#\xd1\xca\n\xf5+J\xd61\xae_\xd3\xf7d\xad\xe7m5\x9b\xd6\x9b\x93\xea \x01\xca/r\xa2\xc0e\xaevfO\xd8{\x9dy)\n\\\xf56\xb4\xcc$\xa5\x86\xf8seV\x7f\xb8\x80\xbeJV]h\x12\xdf*\x91\x8b\xd3-f!\xed\xf4\xb3WOw\xeb 8\x99\x0e\xa8\xe3p\xa76\xa9\xbcgG\xcf\x9aJ\x1d\x82\xf6\xd2<\xc0\x92\xbf\x19\xf2\x18\xa1\x8a\xa9\x9f\x93\xa3\xd7\xc8\xd1\x9b\x94\xff!\x94#t\x0b\xea\x04$\xb0\xee(\xcf\x0dR\xbf\x1f#<\xf5\xb4\xbc\xd5$\x89D\xc88\xae_\x1e\xf2\x90\x9c\xe1$\xae\xd5Q\x8b\xa8\xb2qG\x0e:^\xb0\x08\xeb;\x1d\xc0K(\xb3\xf2\xce*\xbf\xee\xd7\xf5m/`\x97urt\x87=\xc4\n\xc0\xb1w\xc6?\x8c\x80g\xc5z\x89\xe0w\xda+\x0f\x0b\x19\x0d\xa0\x02\xf6\xf3\xc8\xc5C\x13z\xd8\x87\x1eZ\xc7\xbf9\xa0\xa0,\xdenU\xad\x8f\x8b\xdbb\xea\xe9C\xdd:\xf2\xa4.\xf4\xee\xf7\\\x0e\x9b\xd5\xeeQ\x1b\x11-\xb6\x80\xae\xc9\x16\xb5\xd2\xef\xbc3\x16\x83\xb1\x03xay7\x9f\xdc\x9f\x02\x98u\xe7v\x824\xe0\xe80\xa9\x0b\x93:\xdbZ\xcf#G)Qh\xcc.\x9bF5\x07O{w/\xc1\x95\xff2\xaad\xc1`\xb5\x1c\xae(\xd6\xef\xe4\xcb\x9d{\xc5\xc0\xc2.\x8d\x93u\xc4\x1dd\xb5\x86\xcc\x01\xb7\xa1;\xea\x8f!\xf3\x92\x92\xe7\xaf\xdbST\x057T\xd9\xebt\xa5\xcd\xd3\xe0i\x01\x0e\xbd6\x7f\x8e\x17U\xc8\xa5,\xeeK\xbba\x80\x0e\xf2\x14rN\xf8\xa4\xa6)M\xd4\xcf\x1a\xbb\x912w\x88\xd7\x040)\xd0&4\xd1\x9a\x97\xe3\x01\x9c\xc0\xe4\xa1\xc1\xdeo(\xd2\x89-\xa7\xe6d\xdc\xe1M)a\x1dl8E3#v\xcd\xcbc\xffV\xb4\x13\x1d\xb7bH\xeb\x8f\x8e\xf3\xc1\xbe\x94\xae\xf5&\x9a\x84\xa0\x08\xa3\xd9\x1b\x90R)Q\x1c\x87q\xc2\x0e\xa8\xd4\x06\x18?Y=y0M\x9c0BIg\xd5{\xfa\x94\x9f\xb3\xd2\\\xb4\x90\x1f\x8b(\x1b\xaa1V\xe9\xc1\x0eXu$\xe2\x92\x9acc\xf4)b^\x80E>\xe5C\xd2\xea\xfaZ\xebd/\xf9&\x15-v\xf9;\xdb\nx\xd3\x0b$e\x8fl\x08\xdf=\x7f\x92]\x05U&\xc4\x8b\x9f\xc0M/\x86\xae\x882\x9f>P\x9e\xb4\x06S\x90\x8c\xd6a\x8f\xba\xac\xa44P+\xb99t\xc7\xb1\xf0\xb7\x03x9\xad\xbc\x971\x02\xeej\x8c~\x9a4\xaf\xc6\x02\xdfAV\x00\x0d\x9e\xd6hH\x0d\xfav\xe0\xff\xb4,\x94\x9d\xee\xf2kaq\xb7\no\x9aTZ\xe5\x1d\xf9J\xef\xff\xbc\xfc\xdb_;I\xb8\x8e\x1d4\xb3\xa3\xc8\x0b\x96\x9f\xee\xde\xfd\xd20\xea:I\xd2\xf5\xed\xe8o/\xff\x7f\x01\x00\x00\xff\xffPK\x07\x08_;\x94/\xe8Y\x00\x00\xa8X\x02\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00 \x00swagger.yamlUT\x05\x00\x01\x80Cm8\xec\xbd]w\xdc6\x927~\xefOQ\xab\x8b\x91<\xa3\xb4bgf\xf6<\xda\xf5\x9eu\xec8\xd1\xacck\xfd\xb2\xfb\x99\xe3\x1a=9CYF\x9a\xb2\xe6\x0f\x00\xacp-\xfe\x01@\x9b\xcd\x06U\xbbsx.\x9f\x80\n\xd7MUR@E\x01\xf5\x1a\x03\xfe\x9c\xd3:/W\xa0x\xc87{b\x1f\xbf\xcf\xcb\x0c\x9f\x83h\xfb+\xba\xb8\x81\xafg\x7f\xfc\xe6X>K\xb6\xb8\xe2\x82_,\xf6-\xc9\xdf*L\xb7\xa4\xa4\x98*\x91\x00\x8e\x9f~\xfd\xf5\xf1\xfe\x7f\x07m=\x07\xdad\x19\xa6t\xd9\x14\xed\xdb\xb3\xce\xd34[\xe3\x0d\xea\xbe\x0fP\xef\xb6\xf8\x1c\xc8\xfc\x7fpV\xf7~\xd8VL\xb8:\xef\xb6/\xa8\xaf\xb3. f\xa8\xaa\xd0\xee\xe0\xb7\xbc\xc6\x1b\xcd+\x16 \x04\x99\xe5\xd8\xbf~\xd5T\x85\xfeW\xc5\x9e\xd6U^\xae\x0c\x8f\xf4\xb4\xf8o_\x19\x9e\x02x\x0e\x1f\xdf\xbd>\xab0%M\x95a(\xd1\x06C\xbdF54e\xfes\x83\x8b\x1d\xe4\x0b\\\xd6\xf92\xc7\x94\x9b\x08k\x1b\xc8\xd2\xc8\x90=Cq\x95\xa3\"\xff\x1b^<2>\xb7\xadHM2R\xc0\xbcY.q\x05\x1bL)Z\xe1\x19|X\xe7T\xf6\x0d6\x0d\xad!#e\xcd\x06\x06\xd2\xa9RP\x81\x11\xad\xcdm\x91\x12\xc3\xd1\xd9\x11dkT\xa1\xac\xc6\x15k\x05C\x81h\x0d\x14\xaf6\xb8\xac\x81,\xb9\xe8\x1f\xdf\xbd>\xa6\xc0\x06\x98\x91\x1b\x17\xaa\xc2\xdb\nS\\ZZe\xec\x96MQ\xec\xe0\xe7\x06\x15L\x83\x0b\xa1_\xd9\x14\xd7\xe4 \xa2\x90\x97f&\xd7L\x94\xb3\x15!\xab\x02\xcf\xb8\xce\xe6\xcdr\xf6\xb2\x11C\xec\xfa\xb1\xe8 gK\xd7\xa4)\x160\xc7\xc0]\x8d\x9e\x10d\xa8$e\x9e\xa1\x02\x96\xa4\xda\x98[>\xc1\xb3\xd5\xec\x94\xa9v\xc1>\xc5\xd1\xec\x08r\n%\xa9\xd9`\xc1\xdb\x1a/\x1e\xcf\x1e\x99_\xbf(a\xcb\x94\x9dg\xf8\x14j\x8c6\x14\x1a\xda \xa6\x8em\x853\xb2\xd9\xe6\x05\x93\xb4&\\\x19\xf3\xbcD\xd5\xe1\x08S\xc4\x1d\xd4n\xcbm\x10\xd5\xec\x8d\x9d\xb9i\xfcy\x8b\xb3\x1a\xf2\x1aj\x02\x0de\xad\xf06\x98!\xe1\xcf\xfcS?/w3\xf8\x81|\xc2\xb7\xb8:e\x8a02\xfb\xf8\xee5\x85O\xeb<[sV\xf5\x1a\x9b\x1b\xe6\xce\x08\xc3\xf5\xba\xae\xb7\xd7\xa7\xe2\xbf\xf4\xfa\x14H\x05%\x91\xbf\x9erk\xccP \x84\x8fN\xa6\x113C\\C\xb3\x05\xc4\xfbni\x17W\xb7\xb8\x12\xaa\xd9\xa0-\x15\xa6\xc5%\xaf\x89\x1aY\xb0\xc0\xcb\xbc\xccY\x9b\x14\x1052[\x92\xa2 \x9f\xe8\xb9\xe5\xdb\xfe\x1e.\x96\xfb\x1e1\xb3\xd8V\xe46_\xe0E\xdbi\xf6GDi\xb3\xc1\x8b\x99\x8d\xd1\xf3\x12~\xf8\xf0\xe1\x12\xbe\xff\xee\x03\x90R\x0dA1\xc6v9.\x16\x80\x8co\xffu8,>\xec\xb6\xf8\xa7\xbf\xfed|\x01\xe0\x16\x15\x0d\xb7\x07ao|\x08\xa0\x9a\x7f\xa1mE\x16M\x86\x01\x95\x80\xab\x8aT3\x9b\xd4\xfb\xe9\x99\x02\xaa0\xb3O\xf2 /\x98\xba3\x941\xdfB\xc8M\xb3eSVS\xd4\x14\xe6\x88\xe2\x85\xc5?q\xbb2\xfd\xcc\x8d\x90\xcb\xb8F\xb7\xdc\x047\x9d1\xb4\x10\x83\x08\xa9.\xb1\x7f\xdf\x92|\x01\xa84\x1b\x16H\x01\xb9\xfb\xa8\xf0\x92T\xf8T1`|Q\x9d\xcf\xf3\"\xafwPb\xbc\xe0f4\xc7\xc0]^uk\xe9 \xefK\xb6F\xe5\n\xf3\x97\xf8\x98\x9d\xc1\xc9G\x8aU\x14\xc3\xb4\xc4\xcc\x93\xf9,a\x9f\xa8D+[\xef\xe7\x15F7\xcc\x07I\xc6\xb3\xc7f\x8bzCj|\x0e5\x9bC\x96M\x99\x89\x11\xc6\xfa!}W\xd6T\x15.\xebb\x07\xe8\x16\xe5\x05\x9a\x17Vw\xc9\xec\x91,\x97y\x96\xa3\xc21\x97\xcd\x9b%T\x98\xcdD\xf8\x14P\xb9`\xfeG6\xdaP\xbc`\xa6\xb6\x1f\x97FVs\xbc\xca\xcb\x92u\xf6S^\xaf-\x93\xcbn\x8bg\xc2\xfe\xd16\xa7\xb3\x8cll\xde\xf8=\x1f\xa9\x14H\xbd\x16\x8e\xa2\x1cz)8a\xf2\xb1\x18p\xb3\xadwrh?6O\x82\xf9j]\xc3\xdc\xe2\x94x\xa7Y' \xdfl\x0b\xcc&Y>`\x80nq\x96/\xf3\x0c(\xde\xa0\xb2\xce3\xaa\x1fj|\xac\x8e\x08\x81\xc4\xd8>\x87\xf9\xae6Y\x97o\x94\xf4#sGs\x0c\x88 \x95/:\x01\xceA\x1c#'w4'\xb7f\x9b\x96*\x90CA\xd7}\x1f\xc9\xae\x9f\x97\xbbk\x15\x1eQ\xe6\xb8P5\xcf\xeb\x8a\x0db\xb3\x84ZVj\x8e@\x05\x91\xa6\x07H\xffi\x99w\xe6\x13\x8d\x90p\xde\x0f\x0b\x07\xe1_\x1b\xd5\x19L\xf3R\x0d\x9c\"\x9fs\xb1\xe5\xec\x89\x97\xffd\x9fP\x81\x9a\xef\xa4\xdd+\xe3P\xe3@8\xf0\xa5\xcc\xa7\xf1W\xce\x9e\xeb\x07\xe3\xbb\xcb\x172\x16<\xcc \xe8a\xd6\xf6!\x19\xd0\x9a\xa1\xd3\x12\x9aR@!x!R\xdaw\x89\xa0\xf2\x06L\xf0\xa9\xd6\xb62\xb2\xd0\xa4\xf7\xc4\x0byY\xe3\x95&W\xa5,1/\xebo\x9e\x0e~\x95\xbe?H\x86\x05\xaeQ^$\xd87\xc1\xbe \xf6\x15\x94`_N \xf6=\xa4\x04\xfb&\xd8\xd7D \xf6M\xb0/\xa7\x04\xfb&\xd87\xc1\xbe \xf6\x15\x94`\xdf\x04\xfb&\xd87\xc1\xbe&J\xb0o\x82}\x13\xec\x9b`\xdf\x0eM\x01\xc1%\xd8\x97S\x82}\x7f-\xb0\xef\x16Uh\x83k\\u\xa0\x83\xaf\xb8\xe7\xed\xe2\xb4\xb3\x1b\xdc\x9d\x05m\x10\xa7\xc44\x91t\xa1b# O*I\x98M\x02E-\x00\xcaSA\xabA\xce\x84#\x9al\xd8\xbb@\xcd\xb7l\xc2#%_+\x92\xe5\x92\xe2\x9a-\xbf\xfa\xe2B'\x95Mq\xddu\x8ayy.\xda\xea\xfc\xad\xc2?7y\x85\x17\xe7\xb0DE\x0f\xc43$ \xb4\x89\x01\x8d\x12\x85|&=\x0e\x16\xe5\xb23\\\x95e\xb3\xc1U\x9e\xa9\xbf\xf1\xd1\x96\xa1\x92\xf5GdE\xd6\xb8T\x8ao\xca6\x115\x08?/8\xb7\x02S\xbaW\xa1H\xdd4\x94\xa9\xfa\x06\x07\xea\xb3\xcf\xfe\x8e\x95;\x80\x885\xea-\xf2M\xee\xab]\xfe\xac\x82WM\xc8\xb1HRv-X\x82\xb1M1\x00/EJ\xa2\xfb\xa7\x8b%\x14xY+\xa4]B\xef*h\xe4\xf9U1@D#L\xcf\xf3\x1d`\x94\xad\x01m\xb7\xf7\xa8\xc5.\xfe\xbd\x7f\xdf\xa6\xcb\xce\x1bL\xa3\xdcB \xd4U\x83\x81\xfd#/\x17y\x86j\xdc\"-R\x83\xfcAiH]vy\x99\x15\xcdb\x10\x12\"\xd1J\x0bu\x0d\xbe\x18\x07N;\x19X\xe6\xba{\xe5$=f\x1f/\xe8\xe0k\x0d\xba\xc0\xa3\xe8\nS q\xf3\xe1\xb5\x1f\x8fl\xc8\xcd\xe4h\xcaW%\xa9\x06\xf9k5\x1a\xfbM\x08\xcd\x8c\xfd\xb0sB\n\x8cJ\xdb\x07\xac\xf0-\xaez\xaf\xda>\x9e|z\xf8\xe1\xf2N\xfdD\x85\xf5#\xa1\xc7\x87\xb5\x81K\x8e\xec\x91j\x81\xaba\x02\xcbQs0\x856j\xb4\xeaMb\xff)\xb9Y\xf7\xb2\x9f\xfd\x82\x16\x8b\nS\xfaw\xe7\xae\xf6\xfd\xa6v\xf9\xff\x12\xe3\x17`\x0c\x10\x1e\x820V\xea#\xeb6\xac?R={\xd8\xfb\xd5Mu\x0bQ\x15W\xb5\xb5\xfc\xc0\x99y\xf7I]O^x\xe0Wv\x10St`/.\x88*-\xe0M\x18\x18:\x0b\x0b&(+\x88,*0B\xb1~%\x05\xa3\n\n\xa2\xca \x00\x15\x85I\x8b~\xc5\x041\xa5\x046\x80\xcf\xab\x90`\xe22\x02\xaf\"\x82 K\x08\x9c\x05\x04\x13\x95\x0f\x8c)\x1e\x08.\x1d\x98\xa0p`\xe2\xb2\x01G\xd1\xc0\xe4%\x03wS00y\xb9\x80\x7f\xb1@\\\xa9\x80E\xe9\xaeB\x81\xc9\xca\x04\xfc\x8a\x044Y\n\xb3\x7f\x9d\xb8@\xc0U\x1e0\xb28\xc0R\x1a\xe0\x0cO\x9ce\x01~\xf1\xcb\xb4%\x01\xae\x82\x00\xb7Lq\xc5\x00\xca\xb3k\x18\xbaJ\x01&,\x04\x18Q\x06\xa0/\xde\xb1\x15\x01L[\x02`/\x00\x98\x02\xfe\xf7\xc2\xaf\x1d\xd0\xbf7\xf0o\xc6\xe8\xc2A\x7f3/m>|\x12\xb8?DY\xbeP\xbf['\xde0\x7f\x04\xc8\xaf\xc7\x0e&\x02\xf8\xbd\xe0}7\xb8\xef\x03\xed[\xb5\x18\n\xeb\xfb\x82\xfa&H\x7f\x02@?\x00\xce\x8f\x07\xf3-\x90\xb9/\x90?1\x8co\x91Hk\xa9Q\x00\xbe\xca\xbbj\xf8\x19\xe0\xfb\x89\xc1{3t\x1f\x0b\xdc\xf3\x8c\x80Np=l?-hoZ\xf89\x01{\x13\xa2h\x02\xeb\xa7\x85\xea\xe3\x81z\x03(\x1f\x05\xc9;\xe1\xf70\xf0\xdd\x1bz\x0f\x04\xdeC`w#\xe8n\x96\xc6\x17\xfc\xf4\x03\xdc\x03\xe1\xf6\x00\xb0]\xdb\xb5i\x81v\xd3\xa0\x18\x01\xb2k\xf3\x14F\x88=\x0e`\xb7\x81\xe9\xd3C\xe9\xe3-\xc9\x1bF\xf7\x05\xd1\xfbS\xa4\xff\xf6\xce\x88\xdd\x9d\x03n\xdd\xcd\x9d\xfb\xf6\xd3\xae\xcd\x1e\xa5]\x9b.\xa3\xdc\xd3\xc4\xe0\x89/|\x12\x07\xa0\x18\x99\xa5]\x9bi\xd7\xe6\x9eb\xa0\x16#\xb3\xb4k\xf3\x90&\x82]\xc6\x01/\x11\xd0\xcb$\xe0\xcb\xe4\xf0\x8b\x13\x80\xb9\x03\x08\xe6\xae@\x98;\x80aB\x80\x98X(\xc6\xea\xc3]`\xcc\x84p\x8c/ \x13\x08\xc9L\x0e\xca\xb8a\x99\xd1\xc0L\xda\xb5\xe9\x94,\x0e\xa8\xd1\xb2J\xbb6c \x1b\x17h3\x0dl\xe3\x89E8\xa1\x9b\x00\xf0\xc6\xb9{.\x10\xc0I\xbb6\xd3\xaeM\x1fh\xc7\xa9\xd5Px\xc7\x1f\xe0I\xbb6\x0741\xdc\x93vmv)\x16\xfc\xd12K\xbb6\x03\xa0\xa01`\x90\x96]\xda\xb5\xa9}\xc1\x0b>J\xbb6\xa7\x03\x93\xd2\xae\xcd\xd1P\xd346\xe7\x0d7\xf9\x03N~\xbb6\xe5&\x94\x0e\x8f\xde*R\xfe\xdc;yW\xfd\xad&\xf2(\xd9e?\xf1\x95\xf3C{{\x9eo\xbf5\xa7\xae\x1a\xc7\x06\xb4\xb0\x8d9B\x96\xab\xf9\xee*_\x9c\xfd\x92/\xdc\x1bs\x9e\x8bW\xbe\xdd]\xbc<\xd8\xa3\xa3\xba\xb6\xdf\xa3#\x7f\x10\x9b\xc7T/=\xee\xa1\xfc\xf3\xec\xa9\xed&\xca\x8e\x10\x8f\x94\x8a\x1e\xf6\x1e\x9f+\xa9\x9b\x00\x84,LM\x92\x99\xe1\x00\xdf.$\xdaQ\x9e\x13\x1d\x1d\xb0\xd1\xd9\xc06\x93\xa1U\xfblBG\x07\xbf&t\xd4/\xbb\x06 \x1dM\xe8\xa8\xf1\xc9\x84\x8erJ\xe8\xe8!%t4\xa1\xa3&J\xe8hBG9%t4\xa1\xa3 \x1dM\xe8\xa8\xa0\x84\x8e&t4\xa1\xa3 \x1d5QBG\x13:\x9a\xd0\xd1\x84\x8evh\n\xa4*\xa1\xa3\x9c\x12:\xfa[@G\xf3\xae\xc3\xb6\x9dc\x9b/\x14\x02\xd5G\x0c\xdb\xc5\xeb\x1e3\x9dc\x0e\x9b\xe6x!3\xf3\xcb\x83\x89A\xe6\x9dynj\x8e13Vy\x16'\x9c\x14\xf9\x0dO\x8e\x0d\x1a\xa2\x8fE\x8aD\xda\\\x8f]\xb3]\xf0\xd5WM\x14\x17f,\xb0l\xea\xa6j\x93H\xad\xa4M\xbd\x16\xb8\xee\x84\x98.\xf4\xf1\xa5\xf6L\xd1 \xacw\x8e\xb3\xf57O\xcd\xf8\xee\xb7\xfc\xf7\xcb\n/\xf3\xcfR\xc5\x14\xe6\x9d?\xca\x17|`I-v\xfb\xed!\xaf\x07\x8b\xda\x8a~_m\xb9\xb0\x01\xb8\x9d=K\xd2\xd5\x80\x13z\xed\x7f\x90j\x9b\x0d\x98\x05]8\xfa\xe7\xf6\xa1\x04\xce\x1e\xe81\x81\xb3>\xc9=H\xe0l\x02g\x8dO&p\x96S\x02g\x0f)\x81\xb3 \x9c5Q\x02g\x138\xcb)\x81\xb3 \x9cM\xe0l\x02g\x05%p6\x81\xb3 \x9cM\xe0\xac\x89\x128\x9b\xc0\xd9\x04\xce&p\xb6CS\x00e \x9c\xe5\x94\xc0\xd9_\x0b8\x1b\x01\x10\xb6w\xb4]\xb1\x95\xb0\xf5\xa66\xb5\x0b\xb0\xc6\xf4\x03y/\x06rF\xca[\\\xd5\xb4\xbd\xc7\xed\xb9\xda\x13\xca\x1ec_\xaf\xb7\n\x8f\x06\x13u\x8d\xcb\xe7\x1e,\xa8\xa8\x14+4\x10\x008\xd9\x97\xf7:U8\xd1E=\x0f\xf9\x11\xf7{:\x13\xbc\xd8}!\xc1\x8b\x86\xdf\x13\xbc\xd8\xa1\x04/&xqO ^\xac\x13\xbc\xa8\xa7\x04/*J\xf0b\x82\x17\x13\xbc\xe8\x19%%x\xb1\xa5\x04/v)\xc1\x8b ^\xd4P\x82\x17\xb5\xcf$x1\xc1\x8b\x06J\xf0b\x82\x17\x13\xbc\x98\xe0\xc5\x0eM\x01\xf5$x\x91S\x82\x17\x7f-\xf0\xa2\xc7\xc9\xb8\x02E\xecp\x9ap+dg-=\n\xe8\x14\x0d\xb8\x91N\x81\x8e} \x1ci\xeb \x9d\x12\xe1\x94\xbe\xa6&\xd0\xed\xf3X\x84\xb3\xd7\xa8|\xee\xc1#\x9c\\\x01A\x90\x97%C\xe2\x85~\xf6\xd4\xe4D?{\x98\xe9\x80a\x02?\xf5/$\xf0\xd3\xf0{\x02?;\x94\xc0\xcf\x04~\xee)\x81\x9fu\x02?\xf5\x94\xc0OE \xfcL\xe0g\x02?=\xa3\xa4\x04~\xb6\x94\xc0\xcf.%\xf03\x81\x9f\x1aJ\xe0\xa7\xf6\x99\x04~&\xf0\xd3@ \xfcL\xe0g\x02?\x13\xf8\xd9\xa1)\x80\xa8\x04~rJ\xe0\xe7o \xfc\xc3\xa1\x143/m\x96a\x12\x10%DY\xbe\x00\x8a['\xde\xe0I\x04t\xa2\xcf\xc8L\x04\x9bx\x81&n\xc8\xc4\x070\xb1j1\x14,\xf1\x85JL@\xc9\x040I\x00H\x12\x0f\x91X\x80\x08_xdbp\xc4\"\x91\xd6R\xa3`\x11\x05\x81h\xf8\x19@\x91\x89!\x113 \x12\x0b\x87\xf0\x8c\x80Np=\x182-\x14bZ\xf89a\x10S\x9e\xd6\x04\x81L\x0b\x80\xc4\xc3\x1f\x06\xa8#\n\xe8p\x82\x1aa\x90\x867\xa0\x11\x08g\x84\x80\x19F(\xc3,\x8doJ\xd9\x0f\xc6\x08\x041\x02 \x0cm\xd7\xa6\x85/L\x83b\x04t\xa1\xcdS\x18\x81\x8b8\xd8\xc2\x06QL\x0fP\x8c\xb7$op\xc2\x17\x9a\x18\xb7\x81F\xc0\x01\x13\xed\xa2\x91\x88Ew+\xcd^\xae\xb4G\xa6Gi\x8f\x8c\xcbX\xf741\xa8\xe2\x0b\xab\xc4\x01+Ffi\x8fL\xda#\xb3\xa7\x18\x08\xc6\xc8,\xed\x919\xa4\x89\xe0\x98q\x80L\x04$3 (39,\xe3\x04f\xee\x00\x9a\xb9+p\xe6\x0e\xe0\x99\x10\x80&\x16\xa2\xb1\xfap\x17H3!L\xe3\x0b\xd4\x04B5\x93\x835n\xb8f4`\x93\xf6\xc88%\x8b\x03p\xb4\xac\xd2\x1e\x99\x18(\xc7\x05\xe6L\x03\xe7xb\x14NH'\x00\xd4q\xeeU\x08\x04v\xd2\x1e\x99\xb4G\xc6\x07\xf2qj5\x14\xf6\xf1\x07~\xd2\x1e\x99\x01M\x0c\x03\xa5=2]\x8a\x05\x85\xb4\xcc\xd2\x1e\x99\x00\x88h\x0cH\xa4e\x97\xf6\xc8h_\xf0\x82\x95\xd2\x1e\x99\xe9@\xa6\xb4Gf4\x045\x8d\xcdy\xc3P\xfe@\x94\xdf%C\x9dM*\xf0\x85\xaf\x16\xe2bYn\x14\xba\xe4\xbf\xc3\xcf\x0d\xaer,n\x12\xda\xf7Dy\xbd\xde\xce\x9a\xe7M\xbd\x16o=R\xb2?\xd0\x0d5\xdd\xbew\xa9'\x8cxH\xe4`\xe5$\xb5W\x80\x9a\x83\xc4f\xa3\xc3I\xc0(\x148\xc1\xa4\x0d\xfa|\xb5\xc1\x1br\xd5b\x1f\x16\xcc\xc9\xab\n\xb6\xc9\xcb\xfa\xcf\x7f\xd4\x9e|z\xf8\xe1\xf2N\x18Ya\xfdH\xe8\xf1am\xe0\x92\xd7\x93\x91j\x81\xab\xe1\x82P{}\xf97\x93jcd\x02\xe5l\xbe\xbb\xea\xac\xcdu\x99\x14\x19^\x1a\xb3(*o\xc2V\x89\xfe\x99\x14\xc9\xf5\x91\xea\xf3\xc3\xce\xa2\x98B\xbd\xa8%\xa9%\x17\xe2\x08\xb7ly\x10\xeb\xab\xee\x1c\xc8\x94\x19\x90\x89\xf3\x1f\xe6\xecGX\xee\xc3cI&\xad\xd2k9&\x17`}CV\x94Nb\x93\x94\xd6^i\xed\xe5\x0c\xd5\x94|\xdc\xd1\x98\xa4\xe3?*\xd92\xe1\xae\xd8_\xbc\xc4\x0b\x9dd{\x02\x06\xcd\xb1\\\xa8+\xf2\xa9\xc4\x15=\xfb\x85\xff\x9f\x05\xa6\xe8\xb8\xa1\x97\xec\xd1\xb7\xfc\xbdv\xae\xe5\xd3iQ\xb4\xf7N\xc9O\xa2\xea\xc69\x94\xc6\xbex\x9dg\x1c n;\xc1\xdc\xf7\xdecv\x1d\xb8\xd2LO\xb7\xc7\xdaH\xe5\xcf\xc7\xf2\xd9\xde\xcc\xdd\x91S\xfe\xfc`g\xef\xee\xb7x\x18\x1eC~\xc0\x11C\xde=\x95\x0bR\xa3\xb7\x9bsoG\xb44\x1e\xaa\xb7\x9e!\xe9\xcc\xa7O\xc60I\x90Ci\xe0\xa18p\x81H\xe0\xa7>\x17\x98\x04~l|\xbf\xc2\x94a\x95\xa0\xa8\xe0\xca\xc8M\x82\xd86\x80 \x82\x03-A>*\xda\xfb\x92VI\xb4\xae\x9a\x8c5\xb5\x07\xf4\xf9\x81\xc6e\xeb\x04\x99\xf5j\xb9q\x8b&\x95\xc4\xe8\x0d\x05\xbf{{\xdf\x7f\x00\x0e\xc0\xdc\xe0\x92/p{\x95,\xb2M\xdbX\x16\x9fN>g\x1b\x1d\xfb\xd2\x9ca\xb3\x86\xcf\xadw\xca\x83G\x13\x0e\xc7)\xe1p\xfb\x9f|\x95\x99p8\x1e\xc9u\x02\x9av\xe1\xd7\x1d!l-\xd7\xae\x00y\xc6\xe30\x04R\xc4\x9e\xe5vq8\xa6\x1d\xa39\xad\x0e\x07\xbf\xa6\xd5\xe1\x17^\x1dZW_\x83\xa1#\x96^\xddQ\xb2_\x91\xa9\xe9\xa4]\x98uW0ln\x1e\x0e\x9b\xbbZN&(\xcf\xbd\xb6\x85\x04\xe5I\xbac\xe5\xbaA\xa8\x04\xe5M\xa1\xc5\x04\xe5%(\xef7\x00\xe5\xf1\x99\x96^mp\x8d\x16\xa8F\xe6\x0c\xe3\xff\x0e2\x8c\xf4G\xf9J\x0f\xd0\xcb\n\xeeM\x15\xbb6\xf1X\xe1UNk\xcc\xd6\xfbl\x82oYu'z\xfd ]\xfd\xc6\xe4\x13\x0f6S\xa8:\xfe@B\xc7\xae\x0e\xb4\x0fx\xc4\x7f\"\xf9\xd9\x94y\xedH7\xea\xbb&\xc8\xd8AA\x1e\x89=wg\x059\x93{\x1e]V\xe4\x93z\xea>\xcdb\xd96\xdb$\x06\x84h\xa5w\xc0\xcd*\xbf\xc5\xe6\xa3\x15\xba\xbc\x98\xd2\xf9\x813\xd0\xa0\x9al\x1e\xeb\x93\xa6\x82\xf0\xe7-)\xb1=!\xe9ZFu\xa9\xb3\xa42\xac\xed\x15\x85iI\xc9\xd9U\xd4\x96|\x12\xf3\xd7\x93\xaf\xf7\xbf\x8b\xe4ri\xce9\n\xda4\xb6#\x8e\x04U(\x97{ \xe7\x88\xe2\xab\x16\xef\xc9K\xe1\xa4\xd9\xbf\xf1\xcf\x0d*\xac9NA\xfc\xeb \xaf\xf4\xb1\xcc\xebc*\xd7;\x8e\xd7\x9e\xc8O\xfa\x0c\x9e|\xfd\xff\xb5}\xdc\x8b\xe3z\x9f\x1f;\xa42\xbe\x9d^\x90\xa5\xb0\x8d\xfd\xf99Y\x85Y\x94a>\x1fFP\xdb\x03\xc6\xe2\x98\xb18v\x9c\xad!\xa8\x95\xfd\x19\xfc\xf9\x14\xeauC\xcf\xe1 \xb0\xf7E\xdf\xfe\xeca\xab\xa8\xc8\x11\xb5\x0fc\x1f\xa7\"\xc8\xe1Z\x04y\x0fyW\xc2J\x91\xec\x82X\x97\x149\xe5j\x94\x83]\xfd\xa6\x00~\xef\x01o|\xc6/+ \xbd\xcf\xda\x19_Hf\xc3\x87'T \xa7h\xbd\x85x#\xadE\x0e\xa4\x93Q\xfeM\x1d;G\xd7\xe4S \xa4\x04\xfcY\x1e$e\xe4\xc6{\xf7\xfc\xc3\xdb\x1f\x1f\xcb\xf3\x083\xd3.o\x10\x89\x10n\x19|\xa7\xbe\x10@~n\xeb\x91L\xae\x05\xd2\x9e\x9a*\xff\x02*\xfc\xf8\xeeB\xe4)\x16$k\xf8\x99\x88'\x84\xc5\x0dl%\xfcU\xb6Fy\xf9Xf\xa2$\xe0g\xe4\xd4\xd9\xfa\x9e\x97\"\xbeb\x0bUx\xbb\x15\x7f\x0dV\xcb\x10\xc3\x13\xd4T\xf9\xd5\x1a\xd1\xf5\x97\xd1\xcd\x0f\x88\xae\xc5,H\xd7\xe8\xe9\x9f\xfe\x0c\xaci\x01o\xb4\n\xdb\x12\x16qr\xa8\xf7\xe3\xbb\x0bsdp\xc1\xbc|#\xf13qH\xad@i\x8dop\xa3R\xcd,\xf2Ey\\\xcb\xe3\xd0&V\xab\x8fwlW\xc4\xee\xa9W\xfb>\xb2\xcf\xaa\xee\x8f\xd2.\xbb\xdb\xf3\xa2:k\xf2\x8e\xc9\xb5\xcbr}\xb8\xdbY\xacsQ\xd2\x9e\xcd\x84\x15\xf3\x87\x13V<)V\xdcf\xb5\xbc\xea\x84ul\xce\x06\xa9\xb8\xb4s3\xe1\xc3\xda\xdf\x1f\x12>\x9c\xe0\xd40\xac*\xc1\xa9w\xa8\\7\x10\x98\xe0\xd4)\xb4\x98\xe0\xd4\x04\xa7\xfe\xf6\xe0T\xf7\xc6\x8d\x00,\x95\xaf\xa9\xf7YNm9\xfd!t\xfa\x8f\x86\x9c\x9ab\xaa\xa8\x15\xa0\x13\xfftD7N\xec\xd3\x05RX\xc1 G\xdc\x07\xce\xee r\"\x9e\x1e!\x1c8\x97-\xc3g\x03\xb0N\x07\xb8\x01\xfcPP_\xa4\xd3\x07\xe7\xb4/\x06\xf6\xe4\x8bq\x86hfZ|\xd3\x8dn\x06a\x9bN\xbc\x07B\x91\xcdq\xb8\xe6\xc4\xa8f\x1c\xa69\x1e\xd1\xf4\xc03]\x8eB\x90\x07\x96\xe99\x98]\xc9\x14A\xd3\xa2\x98\xb6a\xee\x97+\x9b\x18\xbf\x8cG/]\xea\x8bA.\xad\xc2\x1apK3j\xe9\xb4\x03?\xa75-^\xe9\x87VZ\xb1\xca\xb0~\x19-iB\x94\xd2\x17\xa34#\x94a}\nB'\xa7\xc6&m\xc8dX7\x8c&\x17\x85Ir\xe9\x0d\x0c=\x11\xc9\x18<\xd2\xb9\xbePd\xc4\"'R\xdaT(d<\x06\xe9\x0d\x95\xd9\xf1\xc7\xe9\xf41\x1d\xf2\x18\x8a;\x8eC\x1d=\x15\xe9\xf6s\xe3\xf0F\x0b\xda\xe8\x0b`L\x84_$\xf8\"\xc1\x17\xff8\xf0\xc50\xca\xed\x99\x9f\x08+,\x87\x8b\xb0\xbfw\xab\xe3\x87\x99\xbb\x11\x1b\xd6\x82\x12U\x81Wi\xd7\x077I\x7f\xe6\xfc\x06\x97I\x0f\x8e\xe6*o\xfe\xb1\xef\xd6\x1e\x91y\xa2\xb8\\\\\xe1\x12\xcd\x0b\xbc\xb0M\x84\xbf\x86\xd4\x91\xb5\x9b\x82t\x89\xd5!\xf9M\xfc\x00\xefq\xb9\xf8N4)\xae\xf5\xec\x8f3\xd4\xd3=\xd0\x1a\xd5\x8d\xa5\xa4\xed\xd3\x1a\xf3\xcb\xffP;v\xcd\xd9\x02\xc6\x98q5\xd5`zu\xe0%\x9b\xac\xd9\x92dq\x0e\x1f\xc5N\xf0n\x8f\xf2R\xdd\xe2\x9eSX\xb4\xcf\x1a/\xa3zE*~7\x1b\xcd\xe9i{eN\x89?\x15;\x16\xeb1\x05t\xb5!\x0f\xf9\xb0]\xac)\x99I\xe32\xb6\xfb\xbe&\x15\xbf\x01F\xdc\x98)\xeev\xdc\xa02\xdf6\x85Xp\xf3\xc5GN{\x85G\xb9\xe9K\x94\xe4\x93B\xc2n0\xde\x1ef\xfa\xf7\xf4\x9c\xfb\x9f~\xf8\xf4\xcf\xa7\xa2-\x0e\xb1\xe0\xcf9\xad\xc5\xa2{\x8e\xb2\x9bO\xa8Z\x98\x9a\xed_\xeaI\x96m\xef\x97y\x81\xb5\xab<\x19\x80\\\xf9\x0ep\x93\xcd\xf7\x8c\xe5\xd2zo\xbf\xca\xc0h\x1c\xae\x86\x97>^\x1b\\\xb4\xdem\xe90Zkar\xe1\xe4u\xde\x92K\x96\xc2\xb2\x14\x96}\xc9\xb0,(\xc29\x1c\xa0\xba8\xa7\xebz\xbb\xa7\xa5u\xff\x8e\xcb\x9a\xfd]\xd9\xa9i\xb4\xf1\xfc\x83\x88\xf2$\xd2[7UI\xfb{\x1c\xc5\xba\x8c_X\xdc^\xf8\xdai\xabeFq]\xe7\xe5\xaa\x8b(?/w\x83\x83\x11\xf8\x12\x8f`q\x9b.\xe7\x89\xba\xd7\xc8r\x0e\xa2B@\xdd\xd1\xadx\xc9\xf1\xbag.\xe6\x9c\x99\xce\xbb \xd7\xce\xd9\xb0v\xba\x88\xed|'\xdc\xee\xc1Q%\xda5\xee?\xcb\x9f{Q\xe2a\xe7\x1fl\x98hw\xf9\xf71H\xad\xf1\x9bs\x8c9\xe26W\xcc\xe6\x13\xeeL\x16\xaby\xc7i\xc6\x18-\x15-sr\xa7\x95 \x15-KJE\xcb\x8a\xf8L\xdb\x19\xcc\x9e\x07\\\xed\xdf\x18\xf0\x0b9\xdb\xea\x9f\xdb\x87R\x949\xf85E\x99w\x10e:\x93\x7f\xc6\x83\x8f\x07\xc3F<\xac\\h\x1b\x98\xc9?\xefH\x03\x9fPY\xf3\x0544\xdb\x19\xbc\xc6,\x84\x13\xce\xaf&,\\\xed\xb1CE1\x0cE!\xb2\xc2m\xf8\x915\x9f\xd7\xa0\xbb\x8c\x14\x05\xe6\x17\xc4\xbf\x92\x9a\xdb4E\x9d\x1f(*\x15y\x87U\xd0\xa6\"\xef;T\xae\xbb<9\x15yO\xa1\xc5T\xe4\x9d\x8a\xbc\x7f\x03E\xdet+\xd7\x98W!7 w\xe6\xba\xf7\x8a\x81\xf6ja\xc6\x9e[\xa2\xf3\x8e\xe1\x96\xe1\xe0\x86\x1c\x8fr\"\xfd\x99\xfc\x07\x82\xc9\x87\x1elJ&\xddN,\xc9'\x193\xed!\xf2Q\x07\xc8?\x90\xdb\x89\xdb\x11\x9c\xee)\xeeSJ\x1f\x0d\x1fN\xe9\xa3\xc9\xd2G\xc3\xc9E\x9bDZ\xf5\xb2H\xed-\x0e\x03\x86]\x94r\xd8\x91\xfd\x15\x0f\xc7T3\xd2=\xb3N\xe9D\xf5\x94uz(Y\xa7\x91\xf7mif\xbbi+\xcfR\xda'vM\x9d\xd2>w\xa8\\w\xc2\"\xa5}\xa6\xd0bJ\xfb\xa4\xb4\xcfo!\xed\xd3l\xb7\xc5\xce\x9c\xe0\xf9\xc0l\xe1=\x7f\xa8\x97\xcf\x116\"\xde\xee\xe5r\xb4U\xd3\x1d.\x8fT\x97\x1eh\xf2\xa5\xab\x90.\xddGH\x97R/\x0f'\xf5\"\x17\xb5\xd2\xe2U\xca\xa5\xb5\xff6\xc52x\xd1;\xc3\xa2M;D\xa4]4\\\x9c>GPJ\xd0t)%h\xfe\x01\x124\xa6\x8e\xf0)\xaf3\xe9\xc4\xef\xe5\xeb\xce\x7f\xc6\x9d|\xed\x1fSV\xe5@?)\xab\xf2E\xb3*)W\x11\xb6\x10L\xb9\x8a;T\xae{\x95\x9dr\x15Sh1\xe5*R\xae\xe27\x93\xab8\x9b\xef\xae:\x0bc\xed\xfe'\xfe\xe0\xdbe\xbf\x02e\x9f\xab\x90\x95&|\xc1\xa6\xcdW(\x06\x8fT\x9f\x1eh\xb2\xc2\xb4\xc4\x1f\xb1\x94\xb3\xe4\x1c\x1c\xd1\x8a-\xdf`}\xd5\x9dk\x982\xd30q\x9e\xc1\x9ce\x08\xcb1\xf8`\xcd\xd2*\xbdV3r\xfd2\xb0dE\xef._\xa4SH -^\x1e\xd6\xe2e\xdc)$6\x1c8t\x96\xea\xf5\xca=IQ|V\xe3r\x81\xabM^\xd6\xed|\x85\xe6Y~\xc5[6OU\x9d\x91\xfe\xfc\xdb\x17\x17\x9cu\xc7\xd3\x89\x9e\xadQ\xb9(p%Ovk\xb6[R\xd5\x94?\xdf\xcep\x8b\xbc\xc2Y]\xf0\x84V\xcb\x91\x03\xe7\xdbm\xc1b\xb9\x9c\x94\xa70\xdfm\x11\xe5\x0b\x87\x0f\xad\xb8\xfc\xb8\x80\x02\xd7\x98-\xcd\x98[l\xf9\xee\x06'u\xcaS\xb8D\x18\x9c/\xb8\xb3\x95\xd2\xe0\x05\x87\xdaOe$\xc8\x8fZ\xdcnO\xa5\xdb<\x85\xedSq\x98B\xcb\x8b\xd6\xa4\xc2\xa3K;[\x95\xc9\x1f\x1f\xecD=\xd25\x1d\xe4\xf1\n\xa298\xce2 \xf3rI\x02_X\xe0\xcfAo\xd8\x05\xd6&\x87\xbd\xb8i\x92\xc2\x06\xb7\x14\xcbn[\x11\xb2\xbc\"[\xa3\xd7\x8e\n\xa4\xb4\xfc\xc01\x13\x80m6\x00\x97@\x82\\\xb3\x02(6\xc6_\xbd|\xbb\xe1\x9b\xee\xc9\x8b\x87G\xf2\x9f\x91\xfe\x10\xed=M\xd7\x96;\x18\x15t\xc9\x8c\xe6\xedv\xef\xab\xcb\xbdk\x12\x19\x1e\x16\x88e\xa8\xc8\xf8\xd11\xe5\n~\xc4\xd5\xcd\xc1\x9e\xd1=U\x84\xd4\xc2\x01\xf3c\xb4\xb2\xc3lM\x97\xe6\x18P5\xcf\xeb\nU;\xd9\xadS\x107d\xf1\xe3\xaa1\xa58c\xbf\xa93\xb9\x8c\x9c\xf0g\xc4\xfc?\x948_\xad\xe7\xa4\xa9\xf8\xfbd\xb8\x9a\xef\xd2\x1a\xd1\xb5\xed\x02\xb27\xa4\xc6\xe7\xe2\xe8\x08\x1e\x92\xf2\x84\xd8\xa2\x11\x13Q{\x80\xa7\xd2 \x0f\x86\xf9\x83\xe6\xcf/Q\x80\xdcr3\xdf~Fs\xd4Mk?\xaa\x14\x86\xd7\x9b\x89\x0f%\xdcB\xdb\xf4\\\x80A\xea \\\xf5\xbca\x8d\x11\xa2\x00j\xd7\x80\xbd\xef\xe6^\xaf\xd9\xf74\xae\x0d#\\8\x9b\xc3\xe8\x16e!\x9e\xd7\xae\xf8v\xfa\xb6\x1f\xe1\xd3\xd6\xcb\xb6k\x9b\xe1\xbc\xafh\xa5\x81hx$s\xf8\x99\xfc>\x91\x12L\xc4e\xc6\xefd\xfeF\xba\xef\x93\x16Z\x83_\xd3B\xcb5R\xf6\xf4\x1c>\xbe{}VaJ\x9a*\x93'\"\xf3uAS\xe6?7\xb8\xd8A\xbe\xc0e\x9d/\xdbJ\x1df\xdd\xc4\x04\xd3\x8aE\x02\xc5U\x8e\x8a\xfco\xd82\xe3p\xe3\xcfH\x01\xf3f\xb9\xc4\x95\xfah\xf2\x88b\xd17\xbe`\xd8\xaf\x13L\x11\n@\x81\x91\xed\x0e\x00Rb8:;\x82l\x8d*\x94\xd5\xb8\x12\x13c\x81h\x0d\x14\xaf\xf8\x11\xb5r\x84~|\xf7\xfa\x98\x0e\xeb|\xfb\xc4\x85j\x8f\x935\xb7\xca\xd8-\x9b\x82W:\xa1\x82ip\xd1?q\x9ai\xf2\x04Q\xeb4t\xcdD9[\x11\xb2*\xf0\x8c\xebl\xde,g/\x1b\x11\x19\\?\x16=\xe1l\xf7\x08\x97\xe1zg\x10YtT\x922\xcfP\xc1\xc7\x90\xb9e~\xef\xc0)S-\x0f\x01\x8efG\xcc\xa9\x95\xa4\x06\x94ex[\xe3\xc5c\xdb\xa4}Q\xc2\x96);\xcf\xf0)\xd4\x18mh{r\xf5\xb6\xc2l\x91\x98\x17LR\xe6\x01\xd7\x18\xe6y\x89\x0e\xfc\xef\x9e\xf8\xb6\xa3\xdd\x16\xd3\x16B\xd8\x99\x9b\x16\xbe\x0er\x9e\xcbn(V\xb0\x0d3$\xfc\x99\x7f\xea\xe7\xe5n\x06?\x90O\xf8\x16W\xa7\xd6x\xe6\xe3\xbb\xd7T\xe6\xf0\xd4\x01Q\xc6g\xb9\x07\xc5p\xbd\xae\xeb\xed\xf5\xa9\xf8/\xbd>\x05RAI\xe4\xaf\xfb\xeb\x1a\x08\x1f\x9dL#f\x86\xb8\x86f\x0bHL\x12\x96\xc7\xaa[\xb5\x9e\xe7'\x08q\xd3\xe2\x92\xd7D\x8d,1\xab\xf0\x83\xad) \xf3i\x8fKR\x14\xe4\x13=\xb7|\xdb\xdf\xc3\xc5r\xdf#f\x16\xf22\xd5E\xdbi>\x01R\xdal,\xc722F\xcfK\xf8\xe1\xc3\x87K\xf8\xfe\xbb\x0f@J5\x04\xc5\x18\xdb\xf1L\xaa\xf9:\x8b\xbf\x0e\x87\xc5\x87\xdd\x16\xff\xf4\xd7\x9f\x8c/\x80*\x05)\xa5\xbd\xb5\xa1.\xa9X\x17\x16M\x86Y\xe4\xcd\xa70]!\x8d\xa0\xdf\xc3\xf3}\x16D\xa0#\x88\xe9L\x94\x04e(c\xbe\x85\x9f\xf8\xd8\"(sD\x07\x10Q\x97\x88\xed\xacI\x10F\xc8e\xe4\xe7\x97\xd5k\xbc\xe9\x8c\xa1\x85\x18DHu\x89\xfd\xfb\x96\xf0|\x8a\xd9\xb0@\n\xc8\xddG\x85\x97\xa4\xc2\xa7\x8aA\xff\xbc\xc7\x12\xe3\x85\xc2A\xb9\xcb\xabn-=\xe1}Q\xc7\xd1\xcb\xe0\x86\xce\xe0\xe4#\xc5p\x8b+\x9a\x13\x16\xd7p\xf3d>K\xd8'*\xd1\xca\xd6\xfby\x85\xd1\x0d\xf3A\x92\xf1\xec\xb1k\xad\xc0\x0f\\[6e&F\x18\xeb\x87\xf4]YSU\xbcn\xa0[tdv\x97\xcc\x1e G\xca\xcd\xb5Fr.\x9b7K\xa80\x9b\x89\xb08\x0dN\xa0\xcb\xac\xd1v\xfd\xd6\x8eK#+^\x07Q\x8a3\xe9l\x97\xb20N3a\xffh\x9b\xd3YF6\xd6;\x9c\xf9H\xa5\xa2\xeeI \xfe\x03/\x05'2\x18\x16p\xb5\x18\xda\x8f\xcd\x93 [\x0d\xc0\xdc\xe2\x94DYB^w\xb0\x0f\xb1\x9a\xed\x9c\xbe\xb7Ae\x9dg\x86\xdb\xec\xef [<$\xdf(\xe9G\xe6\x8e\xd8\x1aY\xa6*\xf7\x01\xceA\x1c#'w4'\xb7f\x9b\x96*\x90CA\xd7}\x1f\xc9\xae\x9f\x97\xbb\xeb\xf62\x03\x0eT\xb5kx\xb3\x84ZVj\x8e@\x05\x91\xa6\x07H\xffi\x99w\x1e\\1\xd3 \x0b\x07\xe1_\x1b\xd5\x19L\xf3R\x0d\x9c\"\x9fs\xb1\xdbK\xb9e\"\x98\xf9\x87-\xcan\xce\x9a\x92\xfd\x87\x9f\xef\xc8\xedB?\x82\xe4Do\x0el\xc8\x12\x9aZ86\xe5\x1e(s\xac\x9d+\x1fV\xb8\xc4\x15\xaa\xb9\xf0\xf5\x9a,\xa8\xec\x96\x96\x1f\x93G|B}{\xdf\xc9l\xc8\x93s\xb8d\xf23\xbf \xbb\x82Z\xa5\xe7%\xbc\xf8\xc3\x1f,\xd3\xe4+B`I\x08<\x83\xd9l\xf6/\xc6\xc7\x980\xa8\xdc\x99\x1f@\xe5n\xc6\xc4xU\x91\xcd\xc9\x92\x90\xc7\xe6Gg3\xf3\xfc\x97/\xe1\x84\xb1\xfa\xc8;\xf2\x81\x9c\xfc\x8e\xf1z\x0c\xbfX|\xb8\x8d\xdf\xdf\xed\xba{\xea\xd0\xdd_\xd0-\x9aLy\xf0\x8c\xc7\x86\xac\x95 4\x94\xd3\x93W\x84\xcc\xb2\x02Q\xeaP\x90\x10\x91\xbd$\xfa\xd8y\xd1,\x83As\xad\xea\xbeq\xa8\xeerW\xafIiQ\x9e\x90\xea\x15!'\xb3\xd9\xcc<\x1b\xb4\x8a;\xb1>\xc3\x8d\x8f\xab5V\xab\x8c\xc9\x85P\xea\xcb\xef\xde\xbfxwq\xf9\xe1\xed\xbb\xc7\xb6T\xee\xdeP\xed\x0d\x8b\xa6\xed\xea\xfc\xa3C\x9d\xdf\x13\xb3&\xb9*\xcf\x9f\xc1\xef\xb6\xf3\xd9+B~\x99\xcdf\x7f7?\x8c\xca\xdd)\x0bC\xd9\x1b[\x11D\xfd\x88*\xbaF\x05S\xb2\xbd#6\x15\x0e\xa5\xb0\x88\x90/\x07\x02|,7{\x11\xb8\x80|\x80\xf0\xa7\xfe\xe9\x19\x94ya5p\xbb\\\x06K\xfe\xc0\xb7'd7\xad/V\x0b\x0d\x98\xef\xf6a\x97\x9a=D\xed\xbc>\xeaUuw\x0d5\xc4,\xc7\x9a\x90\xea\x8c\xad\xdfg\xfc\x07\x16\xae\x1e\xab;\x91T\x1c\xc7-\xc147\x08\x0b\xd17\xd6N-e\xb1kO\xa4\x1f&\x0b\xda0\x19\xd0\xb2\xc6\xba\xa2rA<\x8fq|v\xacoJ\xce\x89Jd\xbe\xdam\xb3\xf4GKBfsT\xf1\xce~>\xdb\xcd\xfev$\xb4\xc8\xd7^Z~\xe6\xa5(\x17\xf5\x88\xf1`\xd3\xa1\xf6\x91\xbf\xbc\x7f\xfbF\xff\xcb\xb3g\xcf\x9e\x99m\x80\xbd\xb7\xcf\xb9\x888\x920w \x83 \xb1\xaekh\x9b\xeb]5\x05\xaa\xf4\xfc\x0e\xd9\xb0W\x16x\x1f\xb6\x9c\x02\xde\xcc1\xbf\x19@\x8e\xeeS\x11\x8e\xeb\xd8\x99.\xd3\xea\x84\x14\xa2$\xe8\xfa\xdf\x99\xea\xaee2\xa1\x0d\xdb\xba\x1fG?@\xa4\xfb9\xb7,@Pv\xc3|\xd0~A\xbc\xcc\x0bl\x9e7\x94\xcf\xba\xc4\x15%\xa5u\xd8\xcaL\xdc2\xafh}\xc5\xbf\xf03xb\xe6\xdc\xbe\xc0\x8cR=\xff4|\x06\x03\xb0Ju\xc4uyt\x0eG\xbaQ\xdbW\xc3L\xf4\xf2\xe8\xd4\xc6\x8f\xf7\xef\x0d\xda0\x9e\xff*\xba\xf0o\xd6\x17X\xff\x06\xcf\x87v\xf2b)\x17\\}[k\x01\x84O\xb8(\xbe\xba)\xc9'Q\x88\xb6F\x14\x90m\x87\x9ayp\xf5M\xfeT\x04\xf0\x83q\xb0\xdfx$\xc5a\x06l\xda\x0b(LZ\xdf\xd85\x1f\x8c\xca\xce\xd7\xa4Xtk\xde\xc4P\xce\xcbv|\x80\xc8\x00\xeaY\x89!\xa3o\x87\x8b0k'\xe7\x13\xe6\xd7\x94\n\x0fRC*c\xfa\xd3_\x7fzl\x19HS\xd8\\\xbfA\xbb\xd9qU1\x96OfO\x9f<\xa5G\x16\x13\x12\xff\xb5\xd6;\xed\xaf\xb0\x86)\n\x95\xc0\xbd\xb1\xa1\xe7\x13'hPq\x16h\xe3\xb4\xbcMpd\xdb\x9b\xaa\xbfd\x8fi\xd2^\x8e\xfc\x1eW\xb7y\x86=j\xbd\xe6\x05\xc9n\xe8Y\x81jL%\xb2\xa7+\xf7\xfa\x1e\xd7\xaf\xf9#\xdf\xb2\xe7\xdb\xdb\x148\xb2\xcc\xff\x0e\x9c\x91\xb6(\xb9\xff\xee#\xd5\xbf\x07Z\xf1\xc4\xfbq\x95\x1b\xef\x14\x88\xaa\xa9\x19q\x03\xa3#\xb9\xb4EU}Eq}\xb5\xc6h\x815p(\xb8$\x07\xa7\xf4\x8c,;;\xc1\x89\xa1*\xb2\xa1\xf4\x8a\xcc\xaa\x02\x1fu\x81[e\xed\xf6\xcbKT\xd5\x14\xd7?p\xcd\x1d~n\xf1\x107\xda\x8b\x97:+\xd1\x98\x88\xbc\x00\xb6{\xad\xd4\x96gjy\xec}M\x177W\xfc\xd5k\xc8KZc\xb48\xbc\xf6u\x8c\x99\xdd\xad\x0d\xc8\xbc\xba\xe5\xeb\x88\xee\x8b\xab,y?y\x01\x9f\xe3kZ\x8b\xc2|\xe4\x02\xf3\x07\xe9\x92\x97\xed\x80\xdfNdAh\xbb\xfd\xb2M\xfa$k\x05\xbd`\xee\xb1\xa4\x0d\x85\x0cmE1\xbfD&\xe5\x9f\xab\xa6\x90\xb7\xebl+\xc2\xfc\xaa]D\xd4~O\x81\xa2\xb2\xff\xe17\xdd\x9eZ2\x11\xdd\xaaZ\x16\xf3\xb5/\x89\xea\xae\xb6>\x86\xaa\xe5\xad\x90\xca\xc2P%\xbd\xf7\xb0\xd8\xb1\xe5\x8a8\xe0\x97\x98`\xa8+TR\x11\x03nP\xb6\xceKm&\x9c\x11\x97N\xeb\xfd\x15y|RS\x05\x93\"\x0f\x16~\xbe\xb2\xceM\x97\\Ch3\x0bT\xe3\xaf\x18?\xc3\x93|\x95e\x9e\x1b\x15M8\xa2\xed\x13\x01\xf8v\x10|&\x04A^s\xa9\"\xaf\x9e\x82wo\xc1=\xc7\xb6\x8fy\xcd\xb5\x8a|\xecH\x91[\xe5\x10\xa2v\xf0W\xbd\xe7\x9c\x96\x15\xbf\xe6\x9f\xfbo M\xbdm\xea\xfd\xdf\xb6\x15\xbe\x15\xea2p\xe3\xbb\xf8\xbfx\x1f\xda\x19\xf3\x0b\xb5\x87\xb6\xdb/\xd4\x12\x1f\x1f\xb2n\xe4\x0b5\x89o\xf3\x05.3\xfc\x85\x9ak\xedo\x1f\xf6X\xe2Q\xe6\xa8 \xc5\xd5\x95<\xb3\xf3\xae\xe5\xeb\x05s\xc2\xe1\xf5\xea\x88\xf7\xe5\xc3|\xef\xaf\xf0$bj\xd2\x02\xf9\xc6\xad\x06\xce\xa9\xca=E\xd5\x9f\x9d\xea0o\x0c\x01\xd7\xe6\x10\xf0\xd5\xa9\x87V!(L\xfe\xf0Y\x16\xfa\xa9\xa4$\x8f,\x05\xea#b\xc7\x7f\x97\x99\x8d\x1fxP\xf7\x87'\x16\x0cS\xed\xd1\xe5\xa5\x8bE\xc1\x94\x06\xed\xe9I\xdcq\xcd\x00\xfe\x1b\x1fW\x18\xfe\xa7\xa15\xa0U\x85\xb1\xbd\xbb\xb2R\x8dos\x17\xa9qk\xfb\xbc\xa4u\x83\x91\xba\xdaR\x88\xfe|\xbb\xfd\x01\xd1\xf5\xfevJy\xec\x01cMm\xb3r\xfd\xd9P1\xe3:\x88\xe9\xa5\xd8 \xd2\x01\x1e\xf8\xe1\x1eK\x11\x89#Y\x0e!\xc5p\\\x81l\x9a\x12\x94/\xb93\x9b\xb77\x00\xd3\x1a\xbe3\x90t\xcb+\xa8\xdd\npuKj|\xe5\xee\x84 O) @\x12F\\\x06\xeb\x0e(E\x01\x02@\xa0\x10\xa0\xd8{=\xe9\xed\x8a\xba\x84\xcb\xc6zu{\x9f\xbe\x82\xf7\x17\xdf\xbf\xf9\xee\xe5\xd5\x8f\xef\xbf\xbf\xfa\xf0\xff.\xbf\xbb\xfa\xf8\xe6?\xde\xbc\xfd\xef7#8\\\xbe\xfb\xee\xbf\xde~\xf8n\x1c\x87\x17o\x7f\xfc\xf1\xe2\xc3(\x1eo/\xdf\xbe\x7f\xfe\xda\x93\x85\xdaQ2R\x1f\xfe\xfe\xbeO\xef\xf3U\x89\x17?\xd2\xd5\x87v'M-\xcb\xcb(\xff\xc9\x9bS\xa76\xa3\x97f\xb1z\xeb\x01\x19\xbf\xe99\xfc\x17\xa9\xadi\x91\x01\x99\xbf\xcb9\\\xf2(\x07\x15~\xec\\\xa9\x8c>E\x0c\x9c\x90\xe5\xa9\xa0\x8a4\xa5%\x03\xd1\xa7\xb0\xb5\xb2 \xdb\x8e\x1f=\xb9\xf3\"}\n\xf4u\x10\xe1\xef\xc0{9\xbf\xa7\x88\xcf\x07\xbe!\xd9\x90\x82r-}\x8a\xd0\x1eDj\x90\x91gV\xa6O1v\xa7(|H(\n\xfd\xe0\x10\xff\xd1!\xf6\xc3\x07fz\xfa\xe4\x95\xf7\xe9S\x9do0\xad\xd1\xc6\x91\xa9\xdfS\x84B|\x93\xa8}jS\x19\xee\x05g\x9fFH\xe8\xfd\xa9\xf6\xc2\x19NT\xd0S\x8c\xdd\x87\xfb\xdb\xf6\x84\xa20\xb1\xeeRc1!\x08\x9b\xd5\xf7\xc51,\xfa\xd8V\x98E\xcc\xa7r\xd7\xcd&\xe7;\x86\xbc\x98\x89\xc7y\xc0-rj\xfbL\x19\xeb\x8b_\x1c\xd2\x89[\\\x8f\xf2\xc8~\xee\xf3\x01\x02\xfdu\xa8\x9fN\x91\xfd\x80Rd\x9f\"{7\xa5\xc8\xde\xf54\xa4\xc8>l\x0e\x14\x94\"{#\x85\x0f E\xa1\x1f\x1c\xe2?:\xc4~\xf8\x14\xd9+J\x91\xbd\xa0p\x7f\x9b\"\xfbC\xfa\xd2\x91=w\x8bW\xb7\xa4\xce\xcb\xd5\xd5\x96|\xf2\xf3\xe1\x81\x1f\"\xcc\x15\xeem\xf6a\xc8\x13\xe4z\"%\xf1u9\xa1\xf6\xf9R\x01D\xccH\xbf\x93\xf0\xd0\x1e\xacS\x80\x11\x07\x9d\x9d\xcc\xda\x0f#\xc3j\xa8?\x11\xc6kY\xe4\x19?<\x8eY\xad\xc3\xe6\n\x16\x88^eE\x8e\xcb\xfa\n\xd55\xcan\xee\x1b\xb6\xea\xf4\xe0\xca\xa3\xb2TP\x80,\x10(\x0fH\xd7\x88\x17\x81QU\xa0L\x10!\x178\n\x8f\xf5\x14!\x18D\n\x07>\xa5\xcbz\n-h\xd6Sd_aD\x7f\xc1\xaf$ZO\x81\x0ekH\xca\x819\xcb\xa7\xf5\xe4,\xaa\xd6\xd3}\n\x1d\xea\x82\x87\xe4W\xac\x1d\xcc\xb6_\xdc=(\xe1\x0e\xe6\xe6Y\xf2\xad'\xdfB\xf0`\xc6\xbd\xc2\xf1\xe0\xf2p=\x85\x16\x8d\xeb\xc9]J\xae\xa7hC\x0e\xcb\xe8(\x8an.4f\xea\x92\xbdp]O\x13\x08\xea\x1bR\xf5\xc9\xb3\xf4]O\xf7\xe4\xfbc\xf2\x050N\xc9\x10\xbe\xb4\xea\xd3\x88\xc4\x91\xa2\x11\xda\x86\x91\x1a\x87\xd8\x84\x92\xa2\x98\x05\xf6\x90\xe2G\xa4\xa2X\xc3\x81\xf1\xc6\x03c\x0dhT\x02JQD\"J\x91\xff\x86\x03=\x8d\xd0\xdf\x08\xbd\x85oY\xd0\x93\xc7F\x06=\xddG\xb7\xbd\xb7\x11\xe8\xe9>DvW\xdd\x9a\xc9w\xffE0c\xdb~\x0d=\x85\xed\xe2\xd0\xd3}\xa8\xdfw\x1f\x88\x9e\xeeCb\xf7N\x12=\xdd\x87\xac\x01{Q\xf4t\x1fB{\xeef\xd1\xd3}\x08\x1c\xb6\x1fFO\xfe\xbbd\xf4\xf4\xe5\xfb=fu\xee\xb9-'\x88\xa7y\x0b\x8f\x9eDD\x11\xa2\xe7\xc8086\xfc\xfd\x07Zx\x06\x95\x18(\x1a\x13\x99\x87C`\x8a\xd2\x8a\xd3\x87\"}\x82\xa0\xb4\xe2\x8c\xb6kE\xf1CQQ\xac\xe1\xc0x\xe3\x81\xb1\x06t\xdf+\xce\xfdU\x9d\xa1\x1a\x14\x9a\xb3o]\xd3\x93sC\x9b\x9eF\x0d\x94q\xc3Dy\xd2\xabe\x814\xd7\xcf\xf9\xd0hC\x0b+#\xed\xd3W\xf0\xed\xeb\xb7/\xfe\xe3\xea\xe2\xe5\xd5\xab\xd7\xcf\xbf\x0f,\xa1\x1c\xd2\x90\xdb\xf3o\xdf\x7f\xf7\xc6\xbf2\xb4OCf\x81e\xa6}\x1a2{s\xe1[m\xda\xa7\xb6\xf6t:\xb5\xc5/\xbd\x05\x89\xc1\xbdxU\xa0U{I\xb9\xba\xed\xe3\xdb\"#7\x17/\xa3@\x19A\xad\x1b\x80\\\x94\x84\xb8^8\xa4\xe8\x92\xa5>\x8d\x1e'\xa3\xddq@a\xc6!M&~\x1c\xd2 (\xb8\x06\xaaO\x93\xf5!\xea\x13\x8cYl z\xc1\x97;\xef\xf3\x95(\xdbf1\x9a\xc2\xf5xY\x95\xda5\x1e\xc1\x9a\xdf\x01+\xf8\xfb/\xbf\xc6\xf5I\xb4\xd6\xdf\x0b\xdf\x96\xd8\xf0=\xfaaYV\x91\x9c\xfd\x84\xa8\\\x16\xd6\xe2\xac\x02$7\xd8\x07\xf1\xdag\xe1\xfc\xb4\xb1\xf7\x11\x14{/\xf7\"\xe6\xfd\x98\xd9~\xdf\x17\xffwb\xa3\xa0\x88\x08(B\x0b\x82bt!(\xda\x8f\x8fr #\x9c\xc7\xb6\x99_9\xaef\xd5S\xb4ra\x94\x82\x19\xe1\xc5\xd3?\xfd\xe9\xc9\xff\x89yu\xa4\xa2a\x9c\xb2\x81\xdf\xe6\x95m\x9f\xfe\xe9\xcf7O\xfe\x11\xc5\x1f\x13\x91]6\xf3\"\xcf\xfe\x03\xefz\x89\xbd\x1b\xbc\xa3\x9d\xcb\x9a\xe2\xe2\xa8\x86bq\xab\xcd\x7f\xb5\x0e)\x90Kh\xe1m\x9fF}\x941\x8b\xf96/\xbc\xadrR\xe5u\xf48\xfe\xa2\xb2+\xa9C\x84\x8dt7\xb1\x8e&\xd2\x8f\x8fPf\xf4\xb8\x8c\xf4\xe0\x91\n\x85\x11J\x85q\xbe{\x84ra\x8c\x82a\xac\xd7\xbe?\xc1\xe3\xfd\xf5\x9dy\xeb\xb1\xbez\x8c\xa7\x1e\xf1!\xe2<\x1dL\xe1\xa3\xbf\xb8\xd4q{Q\x14E\x8a\x1b&*[\x87\x91\xf2\xca\x1f\x04\x0b\x94*L\x9a\xf9\xeeo\xa8\xac\xf3\x12_\x85\xad\x88\xc2VB\x01+\xa0`\xe7\x1e\xee\xd2\x83g\xc8\xc0/ (\xc2\xf7\x05\xcf\x87\xc1\xca\x82(\x85A\xec\xec\x17\xa58\x88S\x1e\xc4\xcfu_V\xcc\x98\x99\xed\x0e\xe6\xb4\xf8\xd9,\xce\xbdF)9\xcc\x99 \x1a1k}\x01\x19\xe3f\xa8@\xc1\x02E\nI\x82GJ\xe2\x9b\xe0\x0e\xcd\x9d\xbef\xb3\xe8\x0b\xbe\x17\xf09\xdf\n8v\x87\xa2\xfe_\x8f\x05\xa1{\xaf\xec\xbeg\xe96;N^c\xc8\xdf\x90\xd3mv\xb6\x18'\xddf\x97n\xb3;$_I \xddfg\xa0t\xe7\x85\xa4t\xe7E\x87\xd2\x9d\x17^\xef\x04\x1dH\x11\x96y\x10\xe4\x83\xc1\xf7\xc9\x9de\xeaS\xa0\xaf\x83\x08\x7f\x07\xde\xc9\x91=E|>\xf0\x0d\xc9\x86\x14\x94\xb9\xeaS\x84\xf6 R\x83\x8c0o\xd6'\xaf,Z\x9f\xbc\x01QE\x11\n\xf1MI\xf7)\x18/V4BB\xefO\x95\xee\xbc\x08\xd3XL\x08\xf2\x0f}\xe7E\xba\xcdNG)\xb2\x97\x94\"\xfb\x0e\xa5\xc8\xde\xeb\x9d\x14\xd9\xbb\x9eU\x14\x1a\xe8E|>\x08\x9f\x03\x05\xa5\xc8\xdeH\xe1CBQ\xe8\x07\x87\xf8\x8f\x0e\xb1\x1f>E\xf6\x8aRd/(\xdc\xdf\xa6\xc8\xfe\x90\xbetd\xff\x00\xf7g\xa5\xdb\xec\xcc\x14j\x9f\xe96;\x17\xd3t\x9b]\x88\\\x90n\xb3sPd_aD\x7f\xc1\xaf\xc0\\O\x81\x0ekH\xca\x819\x8b\xd1\xf5\xe4,Q\xd7\xd3}\n\x1d\xea\x82\x87\xe4W\xfa\x1e\xcc6\xddf\xe7*\xb6\xd7Sh \xbe\x9e\xdc\x85\xf9z\x8a6\xe4\xb0\x8c\x8e\xa2\xe8\xe6Bc\xa6.\xa5\xdb\xec\x84\xf6\xdc\x1b\xa4\xa7\xfb\x108lw\x91\x9e\xfc\xf7\x1c\xe9\xe9\xcb\xf7{\xcc\xea\xdc\xbdC'\xdc\x03\xa6\xdb\xec8M`\x08\xe1anP\x89\x81\xa21\x91y8\x04\xa6(\xad8}(\xd2'\x08J+\xceh\xbbV\x14?\x14\x15\xc5\x1a\x0e\x8c7\x1e\x18k@\xf7\xbd\xe2\xf49\\MOBs\xbe\xa7\x17w\xc9\xb9\xa1MO\xa3\x06\xca\xb8a\x12t\x94\x9b\x9eF\x1bZX\x19i\x9fb\x0f\x83\xd3S\xe4\x11qz\x8a<8NO\xe1\xc7\xc9\xe9i\xd4!sz\x8a_z\x0b\x9a\xea@:=\x05\x1dS\xa7\xa7\xe8\x92\xa5>\x8d\x1e'\xa3\xddq@a\xc6!M&~\x1c\xd2 (\xb8\x06\xaaO\x93\xf5!\xea\x13\x8cYl \xf2=\x98/\x82u\xba\xcd\xaeG\xe96\xbb\xb8((\"\x02\x8a\xd0\x82\xa0\x18]\x08\x8a\xf6\xe3\xa3\x1c\xc8\x08\xe7\x11|\xf7\x83\xa2h\xe5\xc2(\x05C\xec\x9d\x10\x8aF)\x1a\xc6)\x1b\xe2\xef\x8aPt\xbf\xe2\x8f\x89\xc8\xee\xe0. E\xf1wJ(\n-\xbc\xed\xd3\xa8\x8f2f1\xbf\x8d\xbfsB\xd1=\xc8\xbeM\xb7\xd9\x1dR\xf4\xb8\x8c\xf4\xe0\x91\n\x85\x11J\x85q\xbe{\x84ra\x8c\x82a\xac\xd7\xbe?\xc1\xe3\xfd\xf5\x9dy\xeb\xb1\xbez\x8c\xa7\x1e\xf1!\xe2<\x1dL\xe1\xa3\xbf\xb8\xd4q{Q\x14E\x8a\x1b&j\xba\xcd\xceJ\xc1\xce=\xdc\xa5\x07\xcf\x90\x81_@P\x84\xef\x0b\x9e\x0f\x83\x95\x05Q\n\x83\xd8\xd9/Jq\x10\xa7<\x88\x9f\xeb\xbe\xac\x9813\xdb\x1d\xcci\xf1\xb3Y\x9c{\x8dRr\x983\x134b\xd6\xfa\x022\xc6\xcdP\x81\x82\x05\x8a\x14\x92\x04\x8f\x94\xc47\xc1\x1d\x9a;M\xb7\xd9Y=\xb9+\xca\xf0\xfa\x9a>\xd6\x94n\xb3s\x0c\x07\xcf\xa9\"\xa8\xc4\xc4\xab\xa7\xe0\xdd[\x00\xef\x02\x11\xbf\xef\xa9\xc8\xc7\x80\x14\xb9U\x0e!j\x07\x7f\xd5\x07\x16gx\x95a\xf8\x14\\\xf8\x84\xd2\xce\x00\xda\xd3\x14|\x0d!\xa8\x04\"\xe0c\xf8\x955\xc4\x160D\x96*D\x16%\x84\x97\x1f\x8c*4\xf0\x0f\x1b\xa7*\x1e\x08*\x13\x08.\x08\x08\xb0\x9a\x80\x01\xec\x19\xc9D4\xee\x17\xc1x\x83\xf1\x11\x128\xba\x1f\x12:\xf9\x82\xe6\xbf\xd6\xdb\xec|d\xfbV\xec~\xa6P\xe3\xf6R\x05\xf6\xd5\xc4\x0f\xa7b\xf1\xc4\x84\x95E\xdf[\xf3\xed\x15rH\xe8\xb6\x16/s\\,\xd4\x15\x12x\xc1B\xccy\xff.\x8b\xee\xd3v\xa9\xbf\xc7\xf5k6\xd6k.\xe1;L\xb7\xa4\xa4X]\xb6Q\xa9\xff\xe7\x9dX\x92J\xe3\x04\xfe\xb3\xc1\xd5\xee\xac\xcf\x07\xde]\xbe\x18J\xbe\xc1\xf5\x9a,\xf6\xb2)\xcf\xd6y\xac'\xea\xf3\x12\x9a\x12\x7f\xde\xe2\x8c\xf5\x11W\x15\xa9Zy\xba=\xa4\xd9\x1ao\x06\xe7\xbf\x1b\xa76\xf3d\xc6\x1b8\x1c\x81\x961\x97\x91\x85f\xc8\xda\xc3\x1c[\xb8*\x8f\x01\x0c\x92a\x81k\x94\x17\x1a\xc7i\x8b\x10\x8c\x91\x81#\"pE\x02\xec\xf5\xab\xa62\xc6\x82\x1e\xfe\xcb=\xc4\x04=\x87\x8f\xef^\x9fU\x98\x92\xa6\xca0\x94h#\xc7}S\xe6?7\xb8\xd8\x01s\x06u\xbe\xcce\xde\xa3\x16G3\x1a\x19\x8a\x0b$\xaa\x1c\x15\xf9\xdf\xf0\xc2\xbc\xa1\x7f[\x91\x9ad\xa4\x80y\xb3\\\xe2J}\xb4\x99\xb8\x17C\xf4\x0d6\x0dm\x9d\x13 spU`Dks[\xa4\xc4ptv\x04\xd9\x1aU(\xabq\xc5Z\xc1|\x11\x08\x14\xaf6\xb8l=\xf0\xc7w\xaf\x8f)lQ\xbd6r\xe3B\xb5\x07F\x99[e\xec\x96MQ\xec\xe0\xe7\x06\x15L\x83\x0b\xa1_\xd9\x14\xd7\xe4 \xa2\x90\x97f&\xd7L\x94\xb3\x15!\xab\x02\xcf\xb8\xce\xe6\xcdr\xf6\xb2\xa9\xf8\x89 \xd7\x8fEO8[\xba&M\xb1\x809\x9bA\x8c\xfc\x10d\xa8$e\x9e\xa1\x82\x8f!s\xcb'x\xb6\x9a\x9d2\xd5\xf2\xb3 \x8efG\xcc\x99\xf1\xfbR\xb2\x0cok\xbcx<{d~\xfd\xa2\x84-Sv\x9e\xe1S\xa81\xdaPhh\x83\x98:\xc4\xb1Z\xdb\xbc`\x92\xd6\x84+c\x9e\x97\xa82\xc7\xe0\xfc\x8a\x96\xdd\x16\xcb\xbbR\xea5\xde\x99\x9b\x16\xbeN^ \xd4\xd0\xeey\xa05\xfe\xcc?\xf5\xf3r7\x83\x1f\xc8'|\x8b\xabSk|\xf5\xf1\xddk\x15\xbf1V\xccm\x1b\x9f\xe5\x1e\x14\xc3\xf5\xba\xae\xb7\xd7\xa7\xe2\xbf\xf4\xfa\x14H\x05%\x91\xbf\x9erk\xccP \x84\x8fN\xa6\x113C\\C\xb3\x95\x07\xa2Z\xda\xc5\xd5-\xae\x84j6h+\xefT\xe2\x92\xd7\xa4=\x15\x95g/sq\x9d\x0b2\xe7\x1b\x97\xa4(\xc8'zn\xf9\xb6\xbf\x87\x8b\xe5\xbeG\xcc,\xb6\x15aQ\xc3\xa2\xed4\x8fm(m6xa9}\xf5\xf7lr\xfa\xe1\xc3\x87K\xf8\xfe\xbb\x0f\xea\x02\x9d\x8f\xef^\x8b1\xb6\xe3\xd3\xb39\x04\xfa\xebpX|\xd8m\xf1O\x7f\xfd\xc9\xf8\x02\x8f\x94\x1bn\x0f\xc2\xde\xe44\xc2\xbf\xd0\xb6\"\x8b&\xc3\x80J1\x85\x99\xeb\xec~\x0f\xcf\xf7\x87\x96P~c\x10b:\x13\x11D\x862\xe6[\x08\xb9i\xb6 \xb7I\xc2\x1cQK\x15$q\x9d\xf2\xf2\xf1\xddk.\xe3\x1a\xddr\x13\xdct\xc6\xd0B\x0c\"\xa4\xba\xc4\xfe}K\xf2\x05\xa0\xd2\x06\x0f \x01\xb9\xfb\xa8\xf0\x92T\xf8T1`|Q\x9d\xcf\xf3\"\xafwPb\xbc\xa0\"2\x02\xee\xf2\xaa[k=')\x99\x9b-W\x98\xbf\xc4\xc7\xec\x0cN>R\xac\xceubZb\xe6\xc9|\x96\xb0OT\xa2\x95\xad\xf7\xf3\n\xa3\x1b\xe6\x83$\xe3\xd9c\xb3E\xbd!5>\x17\x17\x8b-\x9b2\x13#\x8c\xf5C\xfa\xae\xac\xa9*\\\xd6\xc5\xae\x93\xbb\xb7\xb8K~\xa1\xd3r\x99g9*\x1cs\xd9\xbcYB\x85\xd9L\x84O\xf9Q7y\xad\x1am(^\x88\xa0O\x8dK#\xab9^\xe5e\xc9:\xcbB\\\xcb\xe4\xb2\xdb\xe2\x99\xb0\x7f\xb4\xcd\xe9,#\x1b\x9b7~\xcfG*\x05R\xaf\x85\xa3(\x87^\nNDP\nx\xb3\xadwrh?6O\x82\xf9j]\xc3\xdc\xe2\x94x\xa7y\x9c\x9eo\xb6\x05f\x93,\x1f0@\xb78\xcb\x97y\x06\x14oPY\xe7\x99\xa1\xa4\x95\x8f\xd5\x11!\x90\xc7\xd2\xcd7J\xfa\x91\xb9\xa39\x06$\x965\x9d\x00\xe7 \x8eQ\xc7\x1a\xcd\xc9\xad\xd9\xa6\xa5\n\xe4P\xd0\xde\x10\xe7!\xd9\xf5\xf3rw\xbd_\xbb\xa1\x12P5\xcf\xeb\x8a\x0db\xb3\x84ZVj\x8e@\x05\x91\xa6\x07H\xffi\x99w\xe6\x13\x8d\x90p\xde\x0f\x0b\x07\xe1_\x1b\xd5\x19L\xf3R\x0d\x9c\"\x9fs\xb1\xe5\xc6\x84A\xe5\xce\xfc\x00*w3&\xc6\xab\x8alN\x96\x84<6?:\x9b\x99\xe7\xbf| '\x8c\xd5G\xde\x91\x0f\xe4\xe4w\x8c\xd7c\xf8\xc5\xe2\xc3m\xfc\xfen\xd7\xddS\x87\xee\xfe\x82n\xd1d\xca\x83g<6d\xadL\xa0\xa1\x9c\x9e\xbc\"d\x96\x15\x88R\x87\x82\x84\x88\xec%\xd1\xc7\xce\x8bf\x19\x0c\x9akU\xf7\x8dCu\x97\xbbzMJ\x8b\xf2\x84T\xaf\x089\x99\xcdf\xe6\xd9\xa0U\xdc\x89\xf5\x19n|\\\xad\xb1ZeL.\x84R_~\xf7\xfe\xc5\xbb\x8b\xcb\x0fo\xdf=\xb6\xe5\xfb\xf6\x86joX4mW\xe7\x1f\x1d\xea\xfc\x9eX\x0e\xb0c\xaa<\x7f\x06\xbf\xdb\xceg\xaf\x08\xf9e6\x9b\xfd\xdd\xfc0*w\xa7,\x0ceolE\x10\xf5#\xaa\xe8\x1a\x15L\xc9\xf6\x8e\xd8T8\x94\xc2\"B\xbe\x1c\x08\xf0\xb1\xdc\xecE\xe0\x02\xf2\x01\xc2\x9f\xfa\xa7gP\xe6\x85\xd5\xc0\xedr\x19,\x99-n\xb9\x9e\x95/V\x0b\x0d\x98\xef\xf6a\x97\x9a=\xc4\xc5\xa0\xfa\xa8Wf\xc9XX\xa2o\xeaX\x13R\x9d\xb1\xf5\xfb\x8c\xff\xc0\xc2\xd5c@\x9d\xd9\x8e\xcd\x84\xf2HC-Ca!\xfa\xc6\xda\xa9\xa5,vj]y\x90,h\xc3d@\xcb\x1a\xebR\x86\x82x\x1e\xe3\xf8\xecX\xdf\x94\x9c\x13\x95\xc8|\xb5\x0bXZ\xf4\xd1\x92\x90\xd9\x1cU\xbc\xb3\x9f\xcfv\xb3\xbf\x1d -\xf2\xb5\x97\x96\x9fy)\xcaE=b<\xd8t\xa8}\xe4/\xef\xdf\xbe\xd1\xff\xf2\xec\xd9\xb3gf\x1b`\xef\xeds.\"\x8e$\xcc\x1d\xc8 H\xac\xeb\x1a\x8aU\xbau\xd5\x14\xc8p\xdc\xf6!\x1b\xf6\xca\x02\xef\xc3\x96S\xc0\x9b9^,\xf6\x01\x8c\xc88k\xd9!C\xf6\xa6\x13R\x88<\xf3\xf5\xbf3\xd5]\xcbdB/\xe5\xae>\x8e~\x80H\xf7snY\x80\xa0\xec\x86\xf9\xa0\xfd\x82x\x99\x17\xd8\x95\xdc\xcf\xac\xf9e\xdbYCk\xb2 \x1c\\}\x93?\x15\x01\xfc`\x1c\xa8[\x95[q\x98\x01\x1b\x16WH\x98\xb4\xbe\xb1k>\x18\x95\x9d\xafI\xb1\x90G\xe4r\xc9\xc5P\xce\xcbv|\x80\xc8\x00\xeaY\x89!\xa3o\x87\x8b0k'\xe7\x13\xe6\xd7\x94\n\x0fRC*c\xfa\xd3_\x7fzl\x19HS\xd8\\\xbfA\xbb\xd9qU1\x96OfO\x9f<\xa5G\x16\x13\x12\xff\xad\xd1\xaa\x03\x1a|\x05\xefqu\x9bgL{g\x19\xa1\x1bB\xcf\xe6\x88\xe2\xb3=lvv\xfbd\x8ek\xf4\xe4\x8c\xc3x\xf4\xec\x17Q\x96\xf4w\xc1d\xb5\xdf\x1cJ\x9b\xcd\x06U\xbbs\xf8\x1e\x0b\xec\xe9\xdb\x9d\xb8G\x1b~np\x95c*\x81@\xa6\xe6U~\x8bKY\xe0\xa4|\x16\xd9b\xd1\xe3\x8b\xc5!\x0f\xf9\x8c\x82\x9d:]8~\xfa\xf5\xd7\xc7f\xec\nh\x93e\x98\xd2eS\xdc%he\xael22\x03'\x90c.\xa7qf/\x1c\xb9\x0b\xafJ%\xab\xe4\xe0\x94\x1e\xdc\x15I\xb5W%\x92O\x05\x92\xbd\xf2\xc8\xa9.p\xab\xcc\xb3\xc2\xc8ZYd8\xa5]\xbes\xfc\x929\xd4\x0c\xd5xq\x0e[\x9e\x08\xe4\xa1\xdd5]\xdc\x883\x89\xaf!/i\x8d\xd1\xe2xR3\xbb[\x1bp\x1e\xc7\x1fz\xf0\xbeS&\xf0\x92\x0b\xfc\x8e\xcd\xf7\xb2\x1d\xe8\xd8\x8f\xf3Ty\xe7\xa1\xf7S7\xe9\x93\x0b\x14\xe4w8=\xf4\x0f\x9b\xb7u\xb5w\x0c\xbd\xef\xb1\xf2\xbe\x07\xc8\xf7\x0f\x84\xb70\x0c=*>\xf4Px\xf7\xf1\xef\x1e\x9f\xf4\x8b\x95\xfb\xda\x0fd\x0fj\xc6UW\xe5y\x9c\xfa\x84#\xda]\x82\xea\xd5A\xf0\x99\x10\x04y\xcd\xa5\x8a\xbcz\n\xde\xbd\x05\xf7\x1c\xdb>\xe65\xd7*\xf2\xb1#En\x95C\x88\xda\xc1_\xf5\x9es\xf2\xe0a{\xd5\xaf\xff\xc1\xde^=\xf2\xeaI\xf8\xb1\xdc\x1e\x07pO%\x9e\xf7\xf9\xcdS58\xd4\x87\xf3$k\xeb\xb9\xacagPO\xd5\x07\xdf\x13\xa4\xa7j\xcf}\xfe\xf3T-\x05\x9c\xde\xaf\x98\xdc`T\xca^ \xd1\x9fo\xb7? \xba\x86\x05\xc1\xa2\nE\xd6\x953\xd6\xd46+\xd7\x9f\x0d\x05\x19\xae]\x10/Yx\xdf\xcbk\xcbZp\x1e\x89#\x89\xb6w\xcb\xdb\xcdUO\xa6)\xc1~\xd9\xe0\x046\xef\xbe\xcdpB\xc3w\x06\x92ny\x05-\xd4E\x91W\xfc\xae\x7fw'\x04yJ\x01\x01\x92\x80\xd8\xa4\x8c\xaf\x0cn\xa9O\x01\x02@\xa0\x10\xa0\xd8{=\xe9\xed\x8a\xba\xe4\xb7\xa3J\xd1\xe1}\xf0~\x9b\x8f\xf6d\xbc\x9b~\x1c\x07\xcf=W\x8a\xcc\xf7\xda{\xb2h\xb7b\x8d\xd3\x87\xbf\xbf\xef\xd3{~9\xe7\x8ft\xf5A\xe2,\xa2\xbc\x969*qo\xa77\xa7\x0e\xf4\xdfK\xb3X\xbd\xf5\x80\x8c\xdf\xf4\x9c\xef\x06\xf2=\x17\xc0\xfa]\xce\xe1\x92G9\xa8\xf0c\xe7Je\xf4)b\xe0\x84,O\x05\x05]\x06\x10\xb6V\x16d\xdbP\xa2'w^\xa4O\x81\xbe\x0e\"\xfc\x1dx/\xe7\xf7\x14\xf1\xf9\xc07$\x1bRP\xae\xa5O\x11\xda\x83H\x0d2\xf2\xcc\xca\xf4)\xc6\xee\x14\x85\x0f E\xa1\x1f\x1c\xe2?:\xc4~\xf8\xc0LO\x9f\xbc\xf2>}\xf2\xde\x8c\xaa(B!\xbeI\xd4>\x05\xef\xd5U4BB\xefO\xb5\x17./\x17\xf8s\x98hav\x1f\xeeo\xbd\xb7\xf7*\xba{\x8d\xc5\x84 |\x8fo[{\xc1w\x00W\x98E\xcc\xa7rS\xc7&\xe7\x1bR\xbc\x98\x89\xc7y\xc0-rj\x9d\xb3S\x96\xc4P\x005\xa4N\xdc\xe2z\x94G\xf6s\x9f\x0f\x10\xe8\xafC\xfdt\x8a\xec\x07\x94\"\xfb\x14\xd9\xbb)E\xf6\xae\xa7!E\xf6as\xa0\xa0\x14\xd9\x1b)|H(\n\xfd\xe0\x10\xff\xd1!\xf6\xc3\xa7\xc8^Q\x8a\xec\x05\x85\xfb\xdb\x14\xd9\x1f\xd2\x97\x8e\xec\x1f\xe0\xd9\x98{\x9b}\x18\xf2\x04\xb9\x9eHI|]N\xa8}\xbeT\x00\x113\xd2\xb1\xe7t\xb6\x1fF\x86\xd5P\x7f\"\x8c\xd7\xb2\xc83~V'\xb3Z\x87\xcd\xf1\x13<\xaf\xc4 \x9dW\x88\x1f\x1fz\xdf\xb0U\xa7\x07W\x1e\x95\xa5\x82\x02d\x81@y@\xbaF\xbc\x08\x8c\xaa\x02e\x82\x08\xb9\xc0Qx\xac\xa7\x08\xc1 R8\xf0)]\xd6ShA\xb3\x9e\"\xfb\n#\xfa\x0b~%\xd1z\ntXCR\x0e\xccY>\xad'gQ\xb5\x9e\xeeS\xe8P\x17<$\xbfb\xed`\xb6\xfd\xe2\xeeA w07\xcf\x92o=\xf9\x16\x82\x073\xee\x15\x8e\x07\x97\x87\xeb)\xb4h\\O\xeeRr=E\x1brXFGQts\xa11S\x97\xec\x85\xebz\x9a@P\xdf\x90\xaaO\x9e\xa5\xefz\xba'\xdf\x1f\x93/\x80qJ\x86\xf0\xa5U\x9fF$\x8e\x14\x8d\xd06\x8c\xd48\xc4&\x94\x14\xc5,\xb0\x87\x14?\"\x15\xc5\x1a\x0e\x8c7\x1e\x18k@\xa3\x12P\x8a\"\x12Q\x8a\xfc7\x1c\xe8i\x84\xfeF\xe8-|\xcb\x82\x9e<62\xe8\xe9>\xba\xed\xbd\x8d@O\xf7!\xb2\xbb\xea\xd6L\xbe\xfb/\x82\x19\xdb\xf6k\xe8)l\x17\x87\x9e\xeeC\xfd\xbe\xfb@\xf4t\x1f\x12\xbbw\x92\xe8\xe9>d\x0d\xd8\x8b\xa2\xa7\xfb\x10\xdas7\x8b\x9e\xeeC\xe0\xb0\xfd0z\xf2\xdf%\xa3\xa7/\xdf\xef1\xabs\xcfm9A<\xcd[x\xf4d\xbb\x9cHO\x91apl\xf8\xfb\x0f\xb4\xf0\x0c*1P4&2\x0f\x87\xc0\x14\xa5\x15\xa7\x0fE\xfa\x04Ai\xc5\x19m\xd7\x8a\xe2\x87\xa2\xa2X\xc3\x81\xf1\xc6\x03c\x0d\xe8\xbeW\x9c>\x17[\xe9Ih\xce\xf7\xe6\xd8.97\xb4\xe9i\xd4@\x197L\x82\xae\xd1\xd2\xd3hC\x0b+#\xedS\xecE\\z\x8a\xbc\x9eKO\x91\x97v\xe9)\xfc*/=\x8d\xba\xe0KO\xf1KoAS]\x06\xa6\xa7\xa0+\xc2\xf4\x14]\xb2\xd4\xa7\xd1\xe3d\xb4;\x0e(\xcc8\xa4\xc9\xc4\x8fC\x1a\x04\x05\xd7@\xf5i\xb2>D}\x821\x8b-A\xbe\x97\xa2E\xb0\xceK@\xd6\xab\xd2\xf44\xa6O\x1e\xd7\xaa\x05\xf1\xd3_\xc1\xd6^\xb6\x16\xc4\xcbv1\x9b\x8e\xf6>\x82b\xef\xe5^\xc4\xbc\x1f3\xdb\x87\xdd\x9b\xaf(.\n\x8a\x88\x80\"\xb4 (F\x17\x82\xa2\xfd\xf8(\x072\xc2y\x04\xdf\xbb\xaf(Z\xb90J\xc1\x10{\x1f\xbf\xa2Q\x8a\x86q\xca\x86\xf8{\xfa\x15\xdd\xaf\xf8c\"\xb2;\xb8\xc7_Q\xfc}\xfe\x8aB\x0bo\xfb4\xea\xa3\x8cY\xcco\xe3\xef\xfbWt\x0f\xb2+\xa9C\x84\x8dt7\xb1\x8e&\xd2\x8f\x8fPf\xf4\xb8\x8c\xf4\xe0\x91\n\x85\x11J\x85q\xbe{\x84ra\x8c\x82a\xac\xd7\xbe?\xc1\xe3\xfd\xf5\x9dy\xeb\xb1\xbez\x8c\xa7\x1e\xf1!\xe2<\x1dL\xe1\xa3\xbf\xb8\xd4q{Q\x14E\x8a\x1b&*[\x87\x91\xf2\xca\x1f\x04\x0b\x94*L\x9a\xf9\xeeo\xa8\xac\xf3\x12_\x85\xad\x88\xc2VB\x01+\xa0`\xe7\x1e\xee\xd2\x83g\xc8\xc0/ (\xc2\xf7\x05\xcf\x87\xc1\xca\x82(\x85A\xec\xec\x17\xa58\x88S\x1e\xc4\xcfu_V\xcc\x98\x99\xed\x0e\xe6\xb4\xf8\xd9,\xce\xbdF)9\xcc\x99 \x1a1k}\x01\x19\xe3f\xa8@\xc1\x02E\nI\x82GJ\xe2\x9b\xe0\x0e\xcd\x9d\xbef\xb3\xe8\x0b\xbe\x17\xf09\xdf\n8v\x87\xa2DvW\xdd\x9a\xc9w7K0\xe3\xf0\xbb\x9c\xc2\xf6\xc4\xe8\xe9>\xd4\xef\xbb\xabFO\xf7!\xb1{_\x8e\x9e\xeeC\xd6\x80\x9d=z\xba\x0f\xa1=\xf7\x06\xe9\xe9>\x04\x0e\xdb]\xa4'\xff=Gz\xfa\xf2\xfd\x1e\xb3:w\xef\xd0 \xf7\x80\xe96;N\x13\x18Bx\x98\x1bTb\xa0hLd\x1e\x0e\x81)J+N\x1f\x8a\xf4 \x82\xd2\x8a3\xda\xae\x15\xc5\x0fEE\xb1\x86\x03\xe3\x8d\x07\xc6\x1a\xd0}\xaf8}\x0eW\xd3\x93\xd0\x9c\xef\xe9\xc5]rnh\xd3\xd3\xa8\x812n\x98\x04\x1d\xe5\xa6\xa7\xd1\x86\x16VF\xda\xa7\xd8\xc3\xe0\xf4\x14yD\x9c\x9e\"\x0f\x8e\xd3S\xf8qrz\x1au\xc8\x9c\x9e\xe2\x97\xde\x82\xa6:\x90NOA\xc7\xd4\xe9)\xbad\xa9O\xa3\xc7\xc9hw\x1cP\x98qH\x93\x89\x1f\x874\x08\n\xae\x81\xea\xd3d}\x88\xfa\x04c\x16[\x82|\x0f\xe6\x8b`\x9dn\xb3\xebQ\xba\xcd..\n\x8a\x88\x80\"\xb4 (F\x17\x82\xa2\xfd\xf8(\x072\xc2y\x04\xdf\xfd\xa0(Z\xb90J\xc1\x10{'\x84\xa2Q\x8a\x86q\xca\x86\xf8\xbb\"\x14\xdd\xaf\xf8c\"\xb2;\xb8KBQ\xfc\x9d\x12\x8aB\x0bo\xfb4\xea\xa3\x8cY\xcco\xe3\xef\x9cPt\x0f\xb2o\xd3mv\x87\x14=.#=x\xa4Ba\x84Ra\x9c\xef\x1e\xa1\\\x18\xa3`\x18\xeb\xb5\xefO\xf0x\x7f}g\xdez\xac\xaf\x1e\xe3\xa9G|\x888O\x07S\xf8\xe8/.u\xdc^\x14E\x91\xe2\x86\x89\x9an\xb3\xb3R\xb0s\x0fw\xe9\xc13d\xe0\x17\x10\x14\xe1\xfb\x82\xe7\xc3`eA\x94\xc2 v\xf6\x8bR\x1c\xc4)\x0f\xe2\xe7\xba/+f\xcc\xccv\x07sZ\xfcl\x16\xe7^\xa3\x94\x1c\xe6\xcc\x04\x8d\x98\xb5\xbe\x80\x8cq3T\xa0`\x81\"\x85$\xc1#%\xf1Mp\x87\xe6N\xd3mvVO\xee\x8a2\xbc\xbe\xa6\x8f5\xa5\xdb\xec\x1c\xc3\xc1s\xaa\x08*1\xf1\xea)x\xf7\x16\xc0\xbb@\xc4\xef{*\xf21 En\x95C\x88\xda\xc1_\xf5\x81\xc5\x19^e\x18>\x05\x17>\xa1\xb43\x80\xf64\x05_C\x08*\x81\x08\xf8\x18~e\x0d\xb1\x05\x0c\x91\xa5\n\x91E \xe1\xe5\x07\xa3\n\x0d\xfc\xc3\xc6\xa9\x8a\x07\x82\xca\x04\x82\x0b\x02\x02\xac&`\x00{F2\x11\x8d\xfbE0\xde`|\x84\x04\x8e\xee\x87\x84N\xbe\xa0\xf9\xaf\xf56;\x1f\xd9\xbe\x15\xbb\x9f)\xd4\xb8\xbdT\x81}5\xf1\xc3\xa9X<1ae\xd1\xf7\xd6|{\x85\x1c\x12\xba\xad\xc5\xcb\x1c\x17\x0bu\x85\x04^\xb0\x10s\xde\xbf\xcb\xa2\xfb\xb4]\xea\xefq\xcde\xfbv'n\x1fx\x87\xe9\x96\x94\x14\xab\xeb6*\xf5\xff\xbc\x1bKRi\xdc\xc0\x7f6\xb8\xda\x9d\x0d9\x0d%\x7fw\xf9\x026\xb8^\x93\xc5^>\xe5\xdd:\x8f\xf6\xc4}^BS\xe2\xcf[\x9c\xb1~\xe2\xaa\"U+Q\xb7\x974[\xe3\xcd\xe0\x0cx\xe3\xf4f\x9e\xd0x\x03\x87\xa3\xd02\xee2\xb2\xd0\x0c[{\xa8c\x0bY\xe5Q\x80A2,p\x8d\xf2B\xe3\x05RAI\xe4\xaf\xa7\xdc\x1a3T\x02\xe1\xa3\x93i\xc4\xcc\x10\xd7\xd0l\xe5\xa1\xa8\x96vqu\x8b+\xa1\x9a\x0d\xda\xca{\x95\xb8\xe45iOF\xe5\x19\xcc\\\\\xe9\x82\xcc9\xc7%)\n\xf2\x89\x9e[\xbe\xed\xef\xe1b\xb9\xef\x113\x8bmEX\xe4\xb0h;\xcd\xe3\x1bJ\x9b\x0d^XN`\xfd=\x9b\x9c~\xf8\xf0\xe1\x12\xbe\xff\xee\x83\xbaD\xe7\xe3\xbb\xd7b\x8c\xed\xf8\x14m\x0e\x83\xfe:\x1c\x16\x1fv[\xfc\xd3_\x7f2\xbe\xc0\xa3\xe5\x86\xdb\x83\xb079\x8d\xf0/\xb4\xad\xc8\xa2\xc90\xa0RLa\xe6Z\xbb\xdf\xc3\xf3\xfd\xc1%\x94\xdf\x1a\x84\x98\xceD\x14\x91\xa1\x8c\xf9\x16Bn\x9a-\xc8\xad\x920G\xd4R I\\'\xbd||\xf7\x9a\xcb\xb8F\xb7\xdc\x047\x9d1\xb4\x10\x83\x08\xa9.\xb1\x7f\xdf\x92|\x01\xa8\xb4ADB@\xee>*\xbc$\x15>U\x0c\x18_T\xe7\xf3\xbc\xc8\xeb\x1d\x94\x18/\xa8\x88\x8e\x80\xbb\xbc\xea\xd6Z\xd3IJ\xe6f\xcb\x15\xe6/\xf11;\x83\x93\x8f\x14\xab\xb3\x9d\x98\x96\x98y2\x9f%\xec\x13\x95he\xeb\xfd\xbc\xc2\xe8\x86\xf9 \xc9x\xf6\xd8lQoH\x8d\xcf\xc5\xe5b\xcb\xa6\xcc\xc4\x08c\xfd\x90\xbe+k\xaa\n\x97u\xb1\xeb\xe4\xef-\xee\x92_\xea\xb4\\\xe6Y\x8e\n\xc7\\6o\x96Pa6\x13\xe1S~\xdcM^\xabF\x1b\x8a\x17\"\xecS\xe3\xd2\xc8j\x8eWyY\xb2\xce\xb20\xd72\xb9\xec\xb6x&\xec\x1fms:\xcb\xc8\xc6\xe6\x8d\xdf\xf3\x91J\x81\xd4k\xe1(\xca\xa1\x97\x82\x13\x11\x96\x02\xdel\xeb\x9d\x1c\xda\x8f\xcd\x93 \x8bNanqJ\xbc\xd3\xae\xd6X\xad2&\x17B\xa9/\xbf{\xff\xe2\xdd\xc5\xe5\x87\xb7\xef\x1e\xdbr~{C\xb57,\x9a\xb6\xab\xf3\x8f\x0eu~O,\x87\xd81U\x9e?\x83\xdfm\xe7\xb3W\x84\xfc2\x9b\xcd\xfen~\x18\x95\xbbS\x16\x86\xb27\xb6\"\x88\xfa\x11Ut\x8d\n\xa6d{Gl*\x1cJa\x11!_\x0e\x04\xf8Xn\xf6\"p\x01\xf9\x00\xe1O\xfd\xd33(\xf3\xc2j\xe0v\xb9\x0c\x96\xcc\x16\xb7\\\xcf\xca\x17\xab\x85\x06\xccw\xfb\xb0K\xcd\x1e\xe2rP}\xd4+\xb3d,,\xd17u\xac \xa9\xce\xd8\xfa}\xc6\x7f`\xe1\xea1\xa0\xcel\xc7fBy\xac\xa1\x96\xa1\xb0\x10}c\xed\xd4R\x16;\xb5\xae\xf2\x97\xf7o\xdf\xe8\x7fy\xf6\xec\xd93\xb3\x0d\xb0\xf7\xf69\x17\x11G\x12\xe6\x0ed\x10$\xd6u\x0d\xc5*\xe1\xbaj\nd8r\xfb\x90\x0d{e\x81\xf7a\xcb)\xe0\xcd\x1c/\x16\xfb\x00Fd\x9d\xb5\xec\x90!{\xd3 )D\xae\xf9\xfa\xdf\x99\xea\xaee2\xa1\x97vW\x1fG?@\xa4\xfb9\xb7,@Pv\xc3|\xd0~A\xbc\xcc\x0bl\x9e7\x94\xcf\xba\xc4\x15%\xa5u\xd8\xcaL\x1c\xbf\xd3\xf6\x8a\x7f\xe1g\xf0\xc4\xcc\xb9}\x81WY\xc8\xe7\x9f\x86\xcf`\x00V\xa9\x8e\xb8.\x8f\xce\xe1H7j\xfbj\x98\x89^\x1e\xd9n\x93>\xe2\xfd{\x836\x8c\xe7\xbf\x8a.\xfc\x9b\xf5\x05\xd6\xbf\xc1\xf3\xa1\x9d\xbcX\xca\x05W\xdf\xd6\x845\xe4\x14>\xe1\xa2\xf8\xea\xa6$\x9fJ\xeeg\xd6\xfc\xc2\xed\xac\xa15\xd9\x04\x0e\xae\xbe\xc9\x9f\x8a\x00~0\x0e\xd4\xcd\xca\xad8\xcc\x80\x0d\x8b+$LZ\xdf\xd85\x1f\x8c\xca\xce\xd7\xa4X\xc8cr\xb9\xe4b(\xe7e;>@d\x00\xf5\xac\xc4\x90\xd1\xb7\xc3E\x98\xb5\x93\xf3 \xf3kJ\x85\x07\xa9!\x951\xfd\xe9\xaf?=\xb6\x0c\xa4)l\xae\xdf\xa0\xdd\xec\xb8\xaa\x18\xcb'\xb3\xa7O\x9e\xd2#\x8b \x89\xffnQ\x856\xb8\xc6\xddj\xe1\xaf\xb8\xe7=\x97EG\x1d\x16yy>LeW\xf8\xe7&\xaf\xf0\xe2\x1c\xea\xaa\xe9*\xdd\xb0\xa0\xd6\x95\x90\xd4h\xd5k\xfd=\xaen\xf3\x8c1;\xcb\x08\xdd\x10z6G\x14\x9f\xed\xe1\xbb\xb3\xdb's\\\xa3'g%Y\xe0\xab\xbc\\\x12\xf1\xfaj\xbf=\x956\x9b\x0d\xaav\xe7\xf0=\xae\xdf\x90\x05\xbe(\x97\x04~np\xa5p\x07\x99\xb8\x01\xc6\x82\x9f\x86\xa5|%\xd9b\xa1\xe9\x8bE\xef\xedG\xaa\xc3\x02\xe9\xeaH|\xfc\xf4\xeb\xaf\x8f\xcdp\x19\xd0&\xcb0\xa5\xcb\xa6\xb8K\x9cL\x06$W\x03\x9dt\xc9\xc8\x15\x9c \x92Z\xf4_YOT\xb76\x00\xceF\xf8\x13O-\xa0\xbfG\x96fob\xd6#\xbd\x1d\x87\xa4O\xd7\x90\xf5X\xf3i\x9a\xe9\x7fyCE\x9d\xa3\xa9\"\xa75.y\xcdG\xd4\xfb%\xae?\x91\xca\xa0Q\xc7\xbb\x1e&e|7[\xa3\xb2\xc4:\xa0\xd5\xe3egNoC\xca\xfc\xc6T\xbd\xe7`\xceS\xa3w6L\xea\xcf\xaek|\x9c}\x07\xa8\xb6\x99\xbb\xca\xc7\xc2\xa7s\xde\xba\xd9/\x8cp:|\x1a\x8a\xd1=\xdan\xaf\xa2_\x1ec\x8e\xab\xdc\xa7\x14\xd8\xf8\xfa\xbc\xc9\x8b\xc5U\x7f>\x0cx}E|\xdc\xb3\xa3\xf5\x05\xdeZ[7\x178Z\x8b\x1b\x9d6\xef2\x06\xf9\x0c\xaa\xade\xa5\x1eV\xcf\x1f\x13Ex\x1b\xb2h\nl\x87\xe7=\xae\x10\x89jT\xf25>O\xed\x15\x96amfk\x9c\xdd\xd0F\x1f\xe7\xb7O\xfd($\xcb;\x8bH\x16\x04\xff\x97\x90\xf4B\x7fd\xa8\x08\xd1\xae\xe8\xe2f\x94\xf1\xb5B\x1c\xbf\xcf\xcb\x8c\x9fU\xca\xf8~E\x177\xf0\xf5\xec\x8f\xdf\x1c\x1f\xbc\xd3\x8b\xb2:2\x1e\xc8\xcf\xfe\xa7\x13\xc8\xb5\xd5T-\x98`\xe4\xaa\xab\xcc:`c+\xca\xda\x97a\x0d\xc2HE\xef._\x0cW\x0f\xa9\x1e+\xd5c9\xc7\xb6\x0f\x9e\x07\xa9\x1e+\xd5c\x19\x9fL\xf5X\x9cR=\xd6!\xa5z\xacT\x8fe\xa2T\x8f\x95\xea\xb18\xa5z\xacT\x8f\x95\xea\xb1R=\x96\xa0T\x8f\x95\xea\xb1R=V\xaa\xc72Q\xaa\xc7J\xf5X\xa9\x1e+\xd5cuh\x8a\xda\x98T\x8f\xc5)\xd5c\xfdZ\xea\xb1\xe2k\xa1\xe8\xae\xcc\xf2R\x1e\xf2b\xa8\x84z/\x9ei\x0b\xa1x\xf1\x93|\xd1T\xff$\xdf\x91\xbf>\xd8\xf2\xa7^\xf7\xbb$x\xcd )0\xea'\x82\x9cP\x9f\xecz \xd2\xd7W\x98\xa2t\xd2\x82\xa4\x84\xec%doO \xd9K\xc8\xde\x9e\x12\xb2W'dOO \xd9S\x94\x90\xbd\x84\xec%d\xcf3JJ\xc8^K \xd9\xebRB\xf6\x12\xb2\xa7\xa1\x84\xeci\x9fI\xc8^B\xf6\x0c\x94\x90\xbd\x84\xec%d/!{\x1d\x9a\x02eI\xc8\x1e\xa7\x84\xec%do\x7f\xfc9\xae\xe9Y\x81jLk+\xcc\xf7\x9a?\xd2\xde\x07\xf5\x1e\xd7-\xe2'\xde\xde\x9f\xa8\xfe\x15\xc5\xb5 \xf9;d#\x1f|\xb0 \xa0\xb8\xee\xc2tY\x8e5\xf3`\xbb\xdb\xc4v\xa5^}\x0f(\x93c\xcf\xb63\xc3\xe2\xb8\x9f\xce!\x1dxH\x08\x1eX\x18\xf8\x88*\xc8'\xa7\xa2(\x14\x17\xb32\xd3'G,k\x85\xa9\xf11pcd\x10\x81\x93\xd9;\x80\xea\xb57V\x06S\xe1e\x10\x89\x99Y\x192\xe5z\xe3f0\x1e;\x83`\xfc\xcc\xcaJ\xe6\xf5\x8304\x98\x1aG\x83@,\x0dB\xf14\xbbe\xb7X\x9b/\xa6\x06S\xe3j\xe0\x87\xad\xc1\x94\xf8\x1a\x8c\xc6\xd8 \x0eg\x83\xa9\xb06\x88\xc2\xdb\xec\xc3\x01Q\xbcpcnp7\xb8\x1b\xdc!\xf6\x06w\x83\xbfA \x06\x07q8\x9c\xcb\x05\xfbaq0-\x1e\x07\x01\x98\x1c\x84\xe3r\x10\x81\xcdy\xb8\xcc\xc7\x1e\xf8\x1cL\x81\xd1\x81\x0b\xa7\x03\xff\xf0\xcc\x03\xaf\x83\xc0(.\x18\xb7\xb3r\xe3\x98\x9e\x07v\x07\x01RN\x88\xe1A\x10\x8e\x07Scy\x10\x89\xe7\xd9\xed\x8a\xba1=\x88\xc7\xf5\x8c\xfcX\x8b.l\x0f&\xc3\xf7\xc0\x1f\xa6\x02\x1f\x9c\x0f\xc2\xb0>p%\xe7#1?\xf0\xe0k\xc9\xffM\x84\xffA\x94r\xfdq@\xf0\xe8e\x04\x1e\x08\xb1\x98 \xd8\xb5:\x1d6\x08\xfe\xf8 xb\x84\xe0\x8d\x13\x82\x9f\xd6\xc3\xf1B\x08\xc2\x0c\xc1\x8a\x1b\xc2T\xd8!\x84\xe2\x870\x12C\x04\x0f\xf5\x06`\x89p\x17x\"\xf8\xc8h\x19 \xd3a\x8b\xe0\x83/\xc2\x08\x8c\xd1\xc8\x90=h\xc3\x19aj\xac\x11\x9cx#\xc4b\x8eFnb\x8dj_\xae{`\x8f`\x85H\xc0\x8aAB\x14\x0eide\xc5'!\x16\xa34r\x13q\xa0%k6\x1dV ^x%D`\x96\x10\x86[B\x0cv \xc1\xf8%8f[\x07\xa6\x04\x01\xb8\x92/\x96 1x&\x84b\x9a`\xefx\x0c\xb6id\xd6A\x0e}\x87\x8c\x1f\xc6i\x1d\x10\xe5\xca\x8es\xc2\xb4X'\xb8\xf0N\xb0c\x9e\xc6wb\xb1P\x98\xd0v\x030Q\x08\xc2E\xa1\x83\x8d\xf6\xe9\x96\xd4y\xb9\xba\xda\x92O\xa6\x03\x94\xbd2\x136DO\x90\xba\xe9\xf9j[\xe5\xa4\xcak\x07\"6\xaa\xb5\xfei\xa5\nP\xd4\x9eU\xaa\x05g\x15m\xd1*/\xf9\xb78\x14\xb6\xd7\xc6\xfeA\x91\xe7\xc6!\n\x14\xd7\xa7\x90\xd7T!\x12\x14\x9aR\x18\xf3B$]?\xe5\xb4o\x1fv\xbb\xd0\x165xm\xef\x1d0j7\xfbv\x19\xa9K\xd6\xd3^_Ei\xafo\xda\xeb\xbb\xa7\xb4\xd77\xed\xf5\xdd\xd3\xa45\n!\xf5 A\xb5 i\xaf\xef\xd8:\x84\x88\x1a\x84I\xea\x0f\xc2k\x0f\xd2^\xdf1\xb5\x06!u\x06\x115\x06i\xafo\xda\xeb\x9b\xf6\xfa\xfa\xd6\x08LZ\x1f\x10S\x1b\x90\xf6\xfa\x9a\x1es\xd6\x00\x04\xe0\xff>;YCp\xff\xb4\xd77\xed\xf5\xf5\xc1\xf0\xd3^_Ncp\xfa\xb4\xd7W\xc7\xc9\x89\xc5\xc7\xe2\xf0\xc6\xb9!\xed\xf5=\xa4\xb4\xd77\x02?wc\xe7\xa1\xb8y\x00f\x1e\x8c\x97\x87a\xe5i\xafo\x18\x1e\x9e\xf6\xfa\xb6\xf4\x9b\xdc\xebk\xbbU}\x8f\xc0\xcenpw\x16\xb4AW\x12\xc3D\xd2\x85V\xb8n\xaa\x92'\x95$\xac&\x81\xa2\x16\xf0\xe4\xa9\xa0\xd5 g\xc2\x11L6\xec] \xe6[6\xe1\x91\x92\xaf\x15\xc9rIq\xcd\x96_}q\xa1\x93\xca\x1e\xe0\xd4yy.\xda\xea\xfcm\x7fQ\xfc\x12\x15=\xd0\xce\x90$\xd0&\x064J\x14\xf2\x99\xf48X\x94\xcb\xcepU\x96\xcd\x06Wy\xa6\xfe\xc6G[\x86J\xd6\x1f\x91\x15Y\xe3R)\xbe)\xdbD\xd4 \xfc\xbc\xe0\xdc\nL\xe9^\x85\"u\xd3P\xa6\xea\x1b\x1c\xa8\xcf>\xfb;V\xee\x00\x12\xd6\xa8\xb7\xc87\xb9\xafv\xf9\xb3mI\x83\x01)\x16I\xca\xae\x05K\xd0\xb5)\x06\xe0\xa5HIt\xfft\xb1\x84\x02/k\x85\xacK\xa8]\x05\x8d<\xbf*\x06\x88h\x84\xe9y\xbe\x03\x8c\xb25\xa0\xed\xf6\x1e\xb5\xd8\xc5\xbb\xf7\xef\xdbt\xd9y\x83i\x94[(\x81\xbaj0\xb0\x7f\xe4\xe5\"\xcfP\x8d[\xa4Ej\x90?(\x0d\xa9\xcb./\xb3\xa2Y\x0cBB$Zi\xa1\xae\xc1\x17\xe3\xc0i'\x03\xcb\\w\xa7~d\xe0\\>^\xd0\xc1\xd7\x1at\x81G\xd1\x15\xa6\x12\xe2\xe6\xc3k?\x1e\xd9\x90\x9b\xc9\xd1\x94\xafJR\x0d\xf2\xd7j4\xf6\x9b\x10\x9a\x19\xfba\x87\x87\x83k>`\x85oq\xd5{\xd5\xf6\xf1\xe4\xd3\xc3\x0f\x97w\xea%*\xac\x1f =>\xac\x0d\\rd\x8fT\x0b\\\x0d\x13X\xfa\xab\x92'\xd5\xc6T\xc7V\xfc\"Ne\xf8\xbb\xe0e8\xb8B[M\xa1\x8e\xae\xe8\x95E\x01\xaa\x01\xc1*\xbf\xc5%\x08\xce\xa6S,t<\x1f)M\xa4s,\x14\xd5\xf7PA\x91\xce\xb1\xb0Ph\xcd\x87\x95\x99>\xf1o\xc9\x83M]\xfb\x01\xee\xfa\x0f\x88\xa8\x01\xb1w \x9dc\x11[\x17\x02\xc1\xb5!VV\xe9\x1c\x8bt\x8eEl\xfd\x08\xc4\xd5\x90\xc0Tu$\x10UKb\x1f\x0e\xe9\x1c\x8b\xb0\xda\x12\x08\xac/\x81\xb8\x1a\x13\x97\x0b\xf6\xab3\x81ikM \xa0\xde\x04\xc2kN \xa2\xee\xc4\xc3e\xa6s,\x04\x05\xd7\xa4X\xb9\xa5s,\xd29\x16\x03\x9a\xa6v\x05\xfcK0\xc0\xa7\x86\x05\xc2\xeaX\xc0\x052\xa6s,\xa6\xad\xa3\x01g-\x0d\xc4\xd6\xd3\x18\xb9\xa5s,\xfc\xeao\x8c\xdc\xd29\x16\x9eu9\x10\\\x9b\x03\xe9\x1c\x0b-\xc5\xd4\xed\x18\x99\xa5s,\x14\xa5s,4\x94\xce\xb1H\xe7Xh\x1fpf\x94\xd29\x16\xfb\x9f|\x95\x99\xce\xb10\x945\xa4\x93,\xf6d\xb1\xa6t\x92\x85\xe6\xf5t\x92E@5C:\xc9\"\x9dd\xb1\xa7I\xab\x14B*\x14\x82\xaa\x13\xd2I\x16c+\x11\"\xaa\x10&\xa9@\x08\xaf>H'Y\x8c\xa96\x08\xa94\x88\xa82H'Y\xa4\x93,\xd2I\x16\xbeU\x02\x93V\x08\xc4T\x07\xa4\x93,L\x8f9\xab\x00\x02*\x00|\xcei\x08A\xfe\xd3I\x16\xe9$\x0b\x1f\x14?\x9dd\xc1i\x0cR\x9fN\xb2\xd0qr\xa2\xf1\xb1H\xbcqnH'Y\x1cR:\xc9\"\x02Aw\xa3\xe7\xa1\xc8y\x00j\x1e\x8c\x98\x87\xa1\xe5\xe9$\x8b0D<\x9dd\xd1R:\xc9B\x92\xda\x1e\xbd\xee\xee\xa5\x05\xb9\xdbx\x90\xca\xdeo6\xae\xab&`K\xbdsG}:;\x03\xdcZLgg\xdc\xa1r\xdd\xa7>\xa4\xb33\xa6\xd0b:;#\x9d\x9d\xf1k=;c\x91\xb3\x811o\x98&\xda\x8332\xb2\xd94e^\xef\xae\xb6\x84HP^w`\xc6\x0b\xf5\xdc%!E{L\x86@\x1e\xe5/\xc08@F\xf2\x92j\xcf\xc7\xe8\xb1x\xa4\xfa\xf8@O\xc5\xd8k\xa3K\xf5=\x14L,pI6\xd1P\x01\xda\xb0\xc1\x1d\xf9\xbaO\xa2\xfe%\xce^\x90\xbcS/\x075\xb9\xc1\xa5\xcc\xb3\x0b\xe9\x95'b\x91>\xfbS\x96o\x90\xbe\x00^\x88k\xca8\xbfy\xfb\xe1\xbbs\xbef\x16\xcf\xc9\xc5g\xce\xf1\x81\x978\x93ay\x8b\xc9tcs-C\x91\xaa\xd07F\xf3U\x89\xea\xa6\xc2\xb4\x1d\x89l\x92Z\x91\x15\xe1\x81\xf0\xe1z\xb6_J\xc8\x06\x83RJ\x7f\x8c\x1c\xd3\xfe(\xd1\xbc}\xa0l^:\xd5\x1bA\xf1\x05X\xfd\x818x$UaIJUX6\xbfr\x07\x00\xe6p\x06\xfbO9\x1fZ\xe7\xaf\x05.\xf0\x8a\x1f3t\xf6K\xfb\xef+y\xd8\xcf\xdf\xcf*\xfc U\x0bj\x9e\xd7:\xeb\xb7\x97\xe2\xf5\x9c\x94\x1fX(\xf4N\xbc\xda\x9b\xebD\x8c$\x99\x02\xca\xb2\xaa\x11^\x01\xf1\xe0\xb5e\xd5V#k'B}C\xf2\xc9\x07;#\xf6T\xd9\xa5\xfb\xb0\xdfV\xc1Wc\xcfu\x12\xdd\xb2\xbf\xae\xef\x9b c\x0f\x059\xfa)\xc8\xd5[A\xd6@@\x90\xb3\xb7\x82\xecA\x81 /V>\x01\x82\xa0\xe00\xc1\xaa\x08\x1e@8\x82\x05AQ!\x83\x85\x9fL\xf4\xd9\x02\x07A\xe1\xe1\x83\xab\x10[\xd0\xdey\xbcT\xeeN8\x90}\xceS\xf8\xaa\xbdQi\xf9\x90%W\xbbdqL\xd5\xbf\xd9\x07\x10c\xc2\x11\xe0(/\xd8~\xd1\xa2\x90q\x88\xc6;\xb6\x0d\x0d\x99\x1aj\xf4\xef\xc3\xa7\xa4@\xbb\xa5\xa8QsO\x81\xb6\x98\x93\x95Vx\x8dN\xb3\xe1\xe6\xdd7HK\xb4}0\xd4x\xe8\xa1\x9f\xa6\xe3\xc3nC|\x91\x02nI)\xe0\xfe\xc2\x01\xb7\x0do9\x88\xa5M\xa6x\xf0`o(\xb6\xbf\xaa\xf37\xa1&rS\xd8\xb2?\x19\x8c\xc4s\xeep\xf1p\xf6\xcbA\xb4i9Yv?\xca\x03\x17\x10\xfb\xf9\xd7\xb1hH\xeb\x85\xc3\x9f]\xc3/\xcd\xed-\xfd#\xcd\xed\xc3\x18\xd3\x15_v\x06\x8f\x86\x9bk\x9a\x9fp\x86O\x93\xfb\x80\xd2\xe4\x9e&\xf7\xe8\xc9}/\xf9\xc1Ll\x92\xfc\xe0\xc1\x9e\xe4\xed\xafw-\xf9]\x84%\xc3\x93\xd5-Q\x08\xa9\xda\x9d\xd6\xfd8d\xcfc\x90\x08\xb0\xc5\x1e]n\x8f\x94.\x1eh\xf4qG\xc7\xcf\x1bF\xa1{\x8e\xef(\\k\x88\xb4\xfb\x11\xd8\xcc\xa3f4\xed\x98_\x0e\x13)\xfe\xf3\\\xf7#\x8e\x9e\xe9z\xf6\x95\xe6:Ii\xaeKs\xdd\x83\x9a1\xd82bQ\xa1O}\xb0\xc4:o\xfc\xb7|\xe5\xb9\xec\xad\x9a<\x14\xabV\x0d!\xd3\xc7\x80\xe9#\xa5\x9d\x07:\x87\xe8\xd5\xd6%\xffIa\xc8+\xd2\xb8\xc2<\xfd@\xdf\x13\xb8\xfb\xa1Y$\x9f/)\xf9\xfc\xe4\xf3\xbf\xac\xcf\xe7\n\xb0\xb8\xf2K\xfe{\xeb\xb8\xc5\xe3\xed\x8e\xa0\x0eG\xd8\x90ES`\xbd\xeb\xee<'\x18>R\xdd{\xa0N\xbb\xab\x96.\xf5\x8b\xb3\x842\xba\x1f{oOJG}\xb5\xec\xc9:\x98\xecCi_mY\xa3\xcf\xe6\xb1f\x19\x0dsD\xf1U{\x06\x9f\xadx\xc1\xc5\x88\x94\x0d\x9d\x84Soj\xbb\xc2%\x9a\x17\xd8\xcaiX\xc6\x0b\xce\x15\x14\x1f\x10\xc2\xfe\xbc&19m\xc9!\xf0\xee\xf2\xc5\x80_\x9a\xb2\xd2\x94\xf5\xe5\xa7\xac(7\xbf\xcf\x10\xe8p(^\xbf\x9dS\x9a\xab\xa3-u3A\xbbF\x7f\xd1>\xdcN\x0b(\xcb\x9aMS\xf03!\xf6\xbc\xf88B\x8e26\x0d[\xf9\xd8\x83\x9d\x1c\x86\xda\xeaRO\xa0\x8e*\xba\x93\x84\xf8s.\x0fs\xdag\x11+\x9c\xe1\xfc\x16kJfFN\x16&a\xc11\xac\xc0U\x99\xe6\x18^\xe0\x94N\x90\xb3&\xcdc\xa4\xb8\xf05\xf0c\xe3\xce\xc1 \n\xc6\xda,\x9d\xf7\xadC\x8b\xc2\xdc\x8c\xdci\xec\xc9\x8b\x10\xfcJ\x10b\n\x10\xec\x85\x06Qe\x06\xbc \x03Cg\x91\xc1\x04%\x06\x91\x05\x06FX\xd6\xaf\xbc`TqATi\x01\xa0\xa20i\xd1\xaf\xb0 \xa6\xac\xc0\x06\xf6y\x15\x15L\\R\xe0UP0a9\x81\xb3\x98`\xa2R\x821\x85\x04\xc1e\x04\x13\x14\x11L\\B\xe0( \x98\xbc|\xe0n\x8a\x07&/\x1d\xf0/\x1c\x88+\x1b\xb0(\xddU40Y\xc9\x80_\xc1\x80&ca\xf6\xaf\x13\x17\x0b\xb8J\x05F\x16\nX\xca\x04\x9c\xe1\x89\xb3D\xc0/~\x99\xb6<\xc0U\x1c\xe0\x96)\xae0@yv\x0dCWY\xc0\x84E\x01#J\x02\xf4\x85<\xb6\x82\x80i\xcb\x01\xec\xc5\x00S\x94\x02xa\xd9\x8e2\x00\xef\"\x003^\x17^\x00`\xe6\xa5\xcd\x8dO\x02\xfd\x87(\xcb\x17\xf6w\xeb\xc4\x1b\xf2\x8f\x00\xfc\xf58\xc2D`\xbf\x17\xd4\xef\x06\xfa}`~\xab\x16C!~_\x80\xdf\x04\xefO\x00\xee\x07@\xfb\xf1\xc0\xbe\x05>\xf7\x05\xf5'\x86\xf4-\x12i-5\n\xccW9X\x0d?\x03\x94?1\x90o\x86\xf1cA|\x9e\x11\xd0 \xae\x87\xf0\xa7\x05\xf0M\x0b?'xoB\x17M\xc0\xfd\xb4\xb0}\xa9O\xf9\xb9!Uc\x18\xaf\xce\x8f\xe3L\xb2{~=iu[\\e,\"]\x89d2\xdf\xa4Mkt\x839\x0e\xd5NB\xa2Z\xc6\x84\x0c\xca=\xe7\x1c\xb32}\xb6\x8c\x944_`6@xJ_g\x06\xf5\xba\xc2\x94\xd9\xcf\x03\xd1\x0d\xb3\xd8J\xadY\xff\x1f\xa6\\\x13Tl\x80\xef\x8c\xcf-\xa2\x06D\x05\xe0\xa5\xcc\x82H\xab\xfez\xf6'\xdd\x93\xb7\xb8&W\x0f\xac\xf7b\x85O\x96\xf0_X\xda\x00\x1f\xd3\x1f\xb8\x89\x88\xff\xe5\xc1\x9a\x05\xcc\xef*\xc9l\x19\xac\xf3x1\x1b\xaa\xea\xc9\xd97}Uy\x14~\x89\x801\xa4\xecKF\xaa\xef._\x0c\xf8\xa5\xa2\xafT\xf45Y\xb4\x93\x8a\xbeR\xd1\x97\x9eR\xd1\x17\xa7T\xf4uH\xa9\xe8+\x15}\x99(\x15}\xa5\xa2/N\xa9\xe8+\x15}\xa5\xa2\xafT\xf4%(\x15}\xa5\xa2\xafT\xf4\x95\x8a\xbeL\x94\x8a\xbeR\xd1W*\xfaJE_\x1d\x9a\xa2\x00'\x15}qJE_\xbf\x85\xa2\xafN\x05T\x87\x8fm%\xd9y\xa3\xc5\x9b\xc5g\xeb \xce5\x91\xf7\x8a/Iu\xaa\x0e\xa0\x17g\xc5\xf7\x98\x1d\x89:\x80\xa3\xd3\xbez\x8f8L\xcd~`\x0b\xad#\x89\xbc\x1fMXD\x16T-&\x81?\xf9\x82\xb6DL=\xd2\xaf\x12k\xff\xda\x9e\xf9\xbc\xcaoq \xb4FuC\xb5\x85b-\xa7G\xaaS\x0f\xb4Pl\xa0\x95.\xd5\xf7\x80\x7f)q\xaer\x03\xe2\x1c\x94\xff\xb1\xdc)\xcf\x11\x01se\x91\xa3\x1b\xe0\xd1\x15\xf0\x80\xf3\xc0\xaf?\xe0\x99\x16R\x14\n\xedY\x99\xe9\xf3;\x96\xe5\xce\xd4\x10\x1f\xb8a>\x88\x80\xfa\xec\x1dP\x07k\xfb\xc0}0\x15\xe4\x07\x91\xb0\x9f\x95!S\xae7\xf4\x07\xe3\xe1?\x08\x86\x00\xad\xac\xf6\x87o\xfb\xc3\x8005\x14\x08\x81p \x84B\x82v\xcbn\xe1B_X\x10\xa6\x86\x06\xc1\x0f\x1e\x84)!B\x18\x0d\x13B\x1cT\x08S\xc1\x85\x10\x05\x19\xda\x87\x83\nA\\\xe3\xe6N\xa0C\xb8C\xf8\x10\xee\x06B\x84@\x18\x11\xe2\xa0D\x97\x0b\xf6\x83\x13aZH\x11\x02`E\x08\x87\x16!\x02^\xf4p\x99\x8f= F\x98\x02f\x04\x17\xd4\x08\xfe\xe1\x99\x07\xe4\x08\x81Q\\0\xf4h\xe5\xc6aI\x0f\xf8\x11\x02\xa4\x9c\x10\x86\x84 (\x12\xa6\x86#!\x12\x92\xb4\xdb\x15u\xc3\x92\x10\x0fM\x1a\xf9\xb1\x16]\xf0$L\x06Q\x82?\xd2\x06>P%\x84\xc1\x95\xe0\xc2\x17\"aK\xf0\xe0kIaN\x04aB\x94r\xfd\xa1L\xf0\xe8e\x04\xa4 \xb1\xb0&\xd8\xb5:\x1d\xbc \xfe\x10'x\xc2\x9c\xe0\x0du\x82\x9f\xd6\xc3!O\x08\x82=\xc1\n}\xc2T\xf0'\x84B\xa00\x12\x06\x05\x0f\xf5\x06\xc0\xa1p\x17\x90(\xf8\xc8h\x19 \xd3\xc1\xa3\xe0\x03\x91\xc2\x08\x98\xd4\xc8\x90=h\x83Jaj\xb8\x14\xfe\x7f\xf6\xde\xb6;n\x1b\xcb\xf7}\xefO\xb1o\xee]\xc7\xc99\xb24\xe9\x9e\x99\x17>7g]GV\xba5\x93\xd8\x1aKNV\xafY\xb3*T\x15Tb\xbb\x8a\xac&Qz\x98\xcc|\xf7\xbb\xf0D\x82,%<\xeb-\xcc\n~b\x1f\x19\\\x986\xf8@T\xcbp\xa8\x16\xf2\x86k!\x16\xb2\x85p\xd8\xd6{\xce\xd4p.d\xec\xbb a]H\n\xed\xc2\x8e\x90\xbc1\x15Z\xdc#\x04\xc6*_6/\xc8H\xe9\xc5\x87\xf7\x17\xef/\xdf\xfc8\xbb\xbczs\xf5\xf1r\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go\x13\xcez{v\xf1\xfe\xf2\xfcjvq\xf6\xe1\xfc}\xca\x89?\xbf\xbf:\x7f\xf7\xa7\xf4\xf3.\xde\\^&\xd5\xf0\xc3\xd9\xbf\x9c\x9d^%\x9d\xf2\xc3\x9b\xf3\x1f\xbd'\x98\x94\xcb \x0e\xc4\xae\xaa\x98\xd8\xf1\xa5\xec\x03\xf2N\xcao\x7f\xf5p\xea\xb5 \xf9\x1b\x93\x84\xb2\x7f\xe8\xe9\xd3\xdb\xfd]0\xd8\x15\x82\xcd\x1c\xe4\xa9\x9b\x19d\x97^;\x0c\x8e\xa3.<\xecM\xbb\xd7\x1e\xfen)5\x8c.\n\x8b\xad|\x0b\xaazI\xe8\xc0\xef\"\xaft\x81\xb6H\xdf\xdd\xad\xe5\xe0g\\%\x15>\x91\xb3\x8e\xea9\xd9\xad\x9c\xfa{\xa0V\xa2?Y9\xd2\xe25t\x1b\x88\x0bm\x8a\xb6eiU3O\xe4n\xe5\xcc/\xf9\xaaw\xcdX\x05\x0d\xfb\xabL\x80N\xaa\xa5\x1a\x04v\xeb\xa8\xfe\x9e\xaf\x867E\xb9\xf2U\xed\xa6\xac\x8a\xd5LIC\xa8\xd8\x90oD\xc7\x0e-\xbb%\x9a|t\xf9\x8b\xd2\x950\xd2 \x91E\xe5np\x81_nY`z. \"5\x1f\xe9\xdcrW\x16\xb0\xfcpqz\xa4\x83,F\x15\xa5\xaa\x03Oj\xbd\xd9*\x01\x8cm\xc5\xcbU8\x00k\xae\xf4\xb2\x1dj\x94\xc8\xb9\x1a\xab\x16\xfe\xde\xc0\xf3\x90\x1f/\x1fY\xfbr\xef\xb8Bq\xdd\x8ao\x97\xbd\xcbyY\xd5\xfbW\xa6\xaag\xe2[lv\xc7x\xbdWa\xed\xf6z]\xf2\x19/\xd79\x92\xbc\x16\x05g\xafDY\xce\xe3\x8c\xf8\x0c\xab\x16OsA)W\x12\x96g\n\xa3U\xca\x82\x12M\xa8^\x8a\xeb\xa7\x08\xa1&\x94s\x00%\xd6\x84,\n;\x9c%K6E+\x1f\x0ew\xe6\x95sB\x0b:M\x95t\xd2\xaaj-/\x9a'z\xda\xf4\x15\x9f\xe8a\xc3t\x133\x99\x1eLV\xe7u\xc3\xf4\xbd[\x8b\xaf\xe9F\xbf\xb6\x97\xf5\x1dk\xaabw\xc7-e>\xb5\xa8M\xb1\xd4\xddl\xb7\xc1\x83:\xf6\x07\x8e4\x9e\xba?\xeb\xb5G\x17\xf0\xa9,\xf8\xe0\x87\x1f\xf8\x8a=\xf0\xd9'\xf6\xe8\xbe+\xd1{\x12\x8dp\x0f\x9a\xfa_\xbe\xa7\xd6\xd4\xc2L<\xc4\x7fjHD\xce%\xc5?.\x8a%\xfb\xa0\xc4'\x8f\xd5\xef\x9e\xc2\x14\x9d,\x8a\x11\xc5\nG2X\xd7-\x07&Q\x0b\xc9h\x1c\xc39\xb7\xd6N6\xfc\x11J_\xec\x94\xdf\xb2\x86IF\xa7\xaaa-z\x89fr\\\x0f\x98\x1c\xe9\xf7tf\x80P\xe5%_\xb1\xc0\xf0\xa7t\xb1\x84\x17\xe5\x7fT[\xd1\x91E?6\xca\x03V\x9a\xbb\xaf\xbd\xb6\xa3\xe7bD\x9b\xc9\xc2|C\xd1}\xd1B\xcb\xf8\x11\x94\xbc5\x84T\x0b\xdbJu\xe6\x85\x82@\xee\xcbv\xd8?0\x1aI\x86BF\xc9$\xb9J8\xe9\xd9\xed\x0f\x17\xa7\xe3\x06\x90p\x12 'E_9\x98\xd7 L\xa0\xabU\xdf%\xe1$\x04I\x9d\x85\xa2\x9eBP\x93pRFZ:\x85\x94N\xa2\xa4I8i_\"z\x02\x0d\x9d\x85\x84N\xa7\xa0I8i\x1f\xea9\x85x\x9e@;\x93p\x12 '\x91p\x12\x96V\xceJ*O\xa1\x94I8\xc9wX\x94FN \x911\xb2@)\x042 '\x91p\x12\x86&&\xe1$i\xfb\x10\xc3$\x9c\xe4*)J\x05O%\x82\xbd\xef\x06\x12N\xda5\x12N\x9a@\xf2\xc6)\xdeT\x827\x81\xdeM&w\xd3\xa8]\x12NJ#sI8\xa93\x12N\xd2\xd6 '\x19\xbd\x19EoYe\x85\xa2\x99\xa3\xb3\x06\xc1\xdc\x1e\x03\x93\xa1]\x13\x95\x1a\xcf\x93\x9e\x14\xbb\xfc|\xa8\xa5\x13]\xfcLH%\xb2.\x87D'\x9d\xb8\xe4\xd3#\x92!,\xf2iQ\xc8]\xfc\xb1\xac^\xab\xb0\xbe\xf5\xb7^\x12\xec\xa6X\xb5\x11M0p\xd2\xefx\xe2=\xf6\xb0D\x0e\xf6\x93\xed(\x9a\x1dI\xb0#\xa8\xf5$R\xdd\x8c\x87w5\x1f,w\x0dFA\xf9\xe3`\xf8Q\x7f)\x16\x8b\x86\xb5\xad \xcf\xdb\x83^_R\x86\xfbj*\xa9\x07\x9a\xda[\xd1\xee\x80\xd1X\xa9v~\xd3\xd5e-\xdc4\xf5\xfaIj\xdc\x13>\xc7\x9f\xd8\xa3\xaf\xda\xa3\xb7\x8c\x86d\n=So\x18\xdf6\x95\x8c]hnC\xf3\x08\x1dQ##\x0e\xcb\xd1\xd2|\x87\xdf\xf2\x08%\xf3^|W)q?\xa8onZ\xc6\xa1n`X]\xb0\"\xa6-\xe3\x99\xbd\xe5Y\x7fv8Q\xd5\xcf\xe7\xc7\xd1\xda\xafn\x8ct\xa5\xcc\xa5(\xe7\xe6orL\xd2\xba\x86j\xf1\xfd\x96U\xc6\xf1\xdb\xaa\x8bw\x8c\xde\xde\xe7\xb2\xb4\x95\xe8\xf3\x9d\x0bU\x84`\xdb\nW\x7fb\x89\xfe\x1c\x16\x7f`\xe7\x8e\x98#\x87{W\xe5\xba\xc4zW\x1ekp\x1d\x1f\x8a\xa4bav\x0fV\x9f\x9c\xe2\xd7Ai\x1b\xb5\xf2m\xff\xe9\xfc\x06V\xec\x86\x1btK\xb3\\f\xe2#\xc3x\xea\x01Q\x17\x11~\xbe~\x04V\xcco\xa1\xd8l>\xa3\x17m\xa0\xaa??\xe4K\xeb\x0c\xe1Q\xd9Ck)\x83 \xe2?\xcajQ\xce\x0b\xce\xba\x80\xbe!\xf5\xc5\x81\xba#\xd9\xc5\x95\xd5|\xb5]\x8cV\x1e\nu\x95\x8e\xa8\x18\xdd1\xc9\xe7X\x81>\xb9\xaf\xa0\xcd'\x0e\n\xfbx>\x9e\xd8\x8e\x9a \x17k\x1a\xd6j\x92J>^\xfd\xf3(\x1e\xb9c\xfd4\x95\xcb\xaanFaR\xf34\x0e/\xa1<\xb3\xef\x8d\xbd\xae\xeb\x15\xb3\x88`\xc7\x0dl\xd8\x1dk\x06\xa7\x86n\x9e>z|\xe3J\x0b\xc8k\x98\xfbI\x18\x94#\xae\xc1* \x90\xd4\xcd\x825\xe38\xc9eY\xcd\xd9kP\n\xa7\xaf\xda\xc5'\xf8\x87\xe3\x7f\xfccVoL\x92U=\xf9\xad\xfb,*\x17\xa1}\xb8\xcd\x84\xd0h\xacnzDW\x02e\xbd\xc6\x999\xf4\xfc\xad\xb9\xdbN\x91\xd5\x17\xa6\x8d\xcf\\c\xd5G\xcaM\xa2y-g\x1f\x8aA\x0dj\xa4\x06\xab\x0e\xd1\xea\x03\x82\xd9C\xb4\x01\x90q_e\x93\xc8\xbd@yI\xaa\xa8Y\xe9\xbd(\xbf\x97\x9b\xe0\xc33|\x99(\xbei\x1c_\xa0\xb8D\x1d\xd4=Y\xbe\xdc4_\"\xcf\x97\x99\xe8Kc\xfa\x12\xa9\xbeP\x1f\x9e\xa0|\x9a\x95\xecC\xb1}\x19\xe9\xbe}\xf9\xbeI\x84_&\xc6o\n\xe5\x17(\x0c\xadtz\x00\xd2\xefp\xac\xdfAh\xbf4\xde/;\xf1\x87e\xfe\xb2R\x7fx\xee/\x99\xfcKg\xff\xa2C!N\xd3to\xfe/\xaag\x8a\x9aP!(\xc0\x94YW2 \x18z \xa2ULq\xf5\xcb\xc8\x03\xa6\x10\x81\x99\x99\xc0iT`\xa8\x07\xa1\x94K'\x92\x81\x9e\xd28J\xb54\x0f\x1d\x88F\xdc\x10\x84`\x12#\x18\x13\xfd\x9b\xc2 \xc6\xca\xf4\xf2\x02\x99h\xc1tg\xe2\x89\xc1X\xdb&P\x83\x13\xb9\xc1\x10w\x91\x8d\x1dD\xd3\x838~\x10K\x10\"\xbc\x9cN\x11\xa6p\x84a\x1d\xd2,,a\"M\xb8\x1fO\x18sh\x02Sx\x00\xaa0Z;oO\xcf\xc7\x16\"\xe8\xc2\xe9|\xa1\xa78\x1e\xd5\x1b\xcd\xca\x18\xc6(\xc3\x89\x9c\xa1\xa7\xac\xb8\xce(\x825\x0ck\x8c\x86\x14Fs\x13\x87\xd9\x99C?u\x98\x93;\xc4\x90\x87\xe9\xeca\x12}8\x81?L%\x10#\xaa\xa1\xe1\xdaa\x990,\x878\x81DLd\x11\x03\xcd\x9d\xc2#z\x8aB\xe8\x84Na\x12\x03]>\xae\x11\x9a\x91K\x8c\xea\x83\x1e\x82M\xcc\xd5\x17\x13\xf8\xc4\x14B\xd1\xad\xfe\x19\xd2\xfe\x8c~\xbf\x87t?\xf1\x0cT\xe8\x1c\x94\xe6g\n\x17\x15:+\xa8\xf7\x89d\xa5B'\x04\xb4>\x93\xf8\xa9\xe1\x89\x98\x95\x87\\*\x9f\xbd(\x91\xaf\x9b=)j\x1a\xba\xecSA\xa7\xbdE\x943?\x13\x88\xda[r\xfd\x0e \xa7\xf6\x16Q\xf5|z`\xb57\x9c\xa2\xe7\xd3B\xac\xbd\xf9\xd5<\xb1Z\x9e\xb8\xc1#\x9f\x8eg7|\x04U<\x135<{\xadNOyQ\x05Os\x95T\xfdN\xbe?\x95\x10Q\xee\x8c\xbe\x81\x11\xaa\x9d\x882\xc2\x8a\x9d\x88\x02pj\x9d\x91\x82\xa2J\x9d\xd1\x8a\xe0t\xfc0\x1a\x9dY.\x85P\xe7\xe4\x01\xf5*\x88)sF\xfb\x1f\xa6\x07\"49\xa3\xce\x00\x94\x1e'\xa2\x18\xdc\x80\x94\xac\xc4\x89\xd0\xdb\xcc\xab\xb6\x89\xd4\xda\x9c\xa2\xb4\x89\xd4\xd9\x8c:\x1b\xd3\x81Q\n\x9b\x19\xae\x14\xbf\xed\xf9\x945\xfb)\xac\xfd\xd7\x04\xd9@\x94j\xe0H'pT\xde\x87\x8bSR \x04R \xcc6\x1eNb\x0dI%\x10C\x18f\xe1\x0b\xa7\xd0\x85\xa4\x12\x98\x91)L!\n\x93xBR \xdc\x97\"\x9c\xc0\x10f!\x08\xd3\xf9AR \xdc\x87\x1bL\xa1\x0633\x838b0#/\x88\xa5\x05\x1d\x81\x00R \x1c\x1a\x82\x0f\xc4\xce\x92\x92\xd9@R D\x11\x81Sx@R \xf4\x1d\x16e\x00\x13\x08@\x8c\x06^\n\xfdG*\x81\xa4\x12\x88a\xfcH%P\xda>T\x1f\xa9\x04\xbaJ\x8ar|S)>\xef\xbb\x81T\x02w\x8dT\x02'\xd0zqV/\x95\xd4K\xe0\xf4\x92)\xbd4F\x8fT\x02\xd3\xa8\x97@\xe1\xe1\x19\xbc$\x95\xc0\xd2\x1e\xb9\x87[\xbb\xf5\x87\x0c\x02bj\xb5\x1f\xca\x05\x8c\x14\x01\xed\x11\xa9\x94{\xc3\x0d\x86\xc1^\xb0\x837\xdb\xa9\xb24\x19t#\xce\x8e8;\xe2\xec\x88\xb3\xb3,\x07\xf3D\x9c\x9d4\xe2\xec\x88\xb3\xfb=pv]\xe0\xd9W\xff\xee\x80\xd1\xce\x8b*\x06\xa8#{\xac\x85\x9b\xa6^\x0f\xda\xd1flH\x0e\xbcBn@\xe7\xe7)\xae\xc4\xcf\x1f\x14\x1dd@\n\xf9\xa2\x90\x0b\xe8\xc3-\xf7\xeej\xce\x9c\x90\x84U\xc8\x0b\xd3\xcag\nJX\xee\xb0mP\x17\xd5v\xfb\xbe7JDEL\x95\xc4o\xbboOoM \x1a\x85\x0b\xecr\x17Y{\n\xeen\x179\xd7\xbf\xab]\xe4\xc4\xf8nv\xde\x02\x10\xf1k\xab'\xa5\xc4\xb0\xaf\x1c\xc1\x0d\x8a`k\xa3\x086E\xb0{\xa3\x086E\xb0{\xa3\x086\xa7\x08\xb6\xdb(\x82m\x8c\"\xd8\x14\xc1\xa6\x086r\x96D\x11\xec\xce(\x82m\x1bE\xb0)\x82\xed0\x8a`;\x8f\xa1\x086E\xb0=F\x11l\x8a`S\x04\x9b\"\xd8\x96\xe5\x88&R\x04[\x1aE\xb0)\x82\xfd|#\xd89\"\xc2w57\xd1\x14WD\xf8g\xf1s\x17\x0b\x96\x07\xab8\xf0\xb2\xbcc\xd5Nk\x07\x81`y\xee\x0b\xd3\xdeg\x1a\x02\xb6\xdao\x1b\xff\x0c\xd1\xabh\x8a}\xd2\xeaM`\xb7\x11\xd1\xe6\xe9\xfbE\xa9\xe5w\xdf\xe9\x98\xf5\x17P \xd4\x0d\x9b\x17\\<\x02\x17\x0d\xbb\x11\xd34\x15t\xf8U]\xa0\xfd\x15\xca\xaa\xe5\xacX\xe8\xd0\xd6\x8dwf\x05\x9d\xbc\x87\x18\x1fug\xf5\x8fU\xf2sh\xa1\xa6\x90\xe5\x0d\xfc\xbab\xd5\xd7\xfa\x9a\xdf\xc0w\xdf\xc1\xb7\xbf\xea\xe9i\xc1uc\xc5+\xc4[\xdc=\x93Kz\xdf\x1e\xc3y\x05\xc5*\xb0\xdc\xa9\x16\x11\xe7E\xcb\xda#\xbd\xd4*'8#i\x1a\xef\xf9?\xbf\xbf:\x9b\xbd\xbf\xb8:\x7f\xffn\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go}_\x07\xd1; \xc0\xaam@\x93\xe0\x95\xef\x8a\xc83\xferv\x89<\xf2\xcd\xf7\x97Wo\xce\xdf!\x8f~\xf7\x1e}\xe0\xec\x97\xf3\xab?\xcf~>\xbb\xf2\x9db \x80\xa4\xa6\xea\xde\x12~\x84\x9e\xc7\x9ei\xe1\xa7U\x19\xa2\xa3(\x0bw\x17e\xe9\x9d\xc6u^\xa8\xeb\xb8\x8e\x8fu \xd79\x81n\xe4><\xda\x99\x94M\xeaR\xfd\xc9\xb8\xf1S\x99x\xc5\xbeWC\x14\x93\"e\x05\xd7\x13\x13\xb5\xde.Fz\xd3[\xe5\xf7\xab?(\xa8L\xbd\xd6\x97\xf5\x1dk\xaa\xa2\x9a\xdb\xf3\x99\xc8\x99\xfe\x1b\xefu\x84\xa5-R\xd5\xaf\xea\x8d]\xdd\xc0\x92\x87\xebr\x7f9\xbb|=\xfe\x83U\xfc\xa3\x9e\xbcL+\\w\xae\xd7\xae?\x0e\x14@\x14\x82\xb5\xc7\x95\xde\xbd\x7f=\xfa\xf7\xc0G{\x95\xdc\xf7\xde\xf15\xfa_\x86W\x93\xe1\x8c;\xc6\xd1\xd7U\xaf\xc2\x0c\x83\x0d\xfe)\xf8E^\x92-\xac'\xa1o\xc3\xb6*%\xb5 \xab/\xba\xbf\xf8\x8f@a\xedfUF6V\x8c\xeah\xd9\xa6\xb7u{\xe9>\xe9\xa5\xe3,L\xc3ES\xadF\xaa{S\x8999\xfa\xb1}\xa3\n\x99\xd7U[\xb6f7\xd8\x0e\xed<\x7f{\xa4\xc6\x101O<2ku~\xe7\xf9:\xc6\xa01\xea\xdb\xc1\xec\x1e'\xcaS\x1355H\xed\x842i\x9fEi\x8b\x80\xd2go\xb4\xcf\"\xe0\xbe|\xbe\xa4}\x16\xe5\xe7w\n7\xab\xbe\xf5?\\\x9c\x8eJ#n\x96\xb8\xd9\xe8;\x1b\xf3\xe2\x02\xe2f\x89\x9b\xf5\x1eI\xdc\xac4\xe2fw\x8d\xb8Y\xe2f}F\xdc,q\xb3\xd2\x88\x9b%n\x96\xb8Y\xe2f\x95\x117K\xdc,q\xb3\xc4\xcd\xfa\x8c\xb8Y\xe2f\x89\x9b%n\xd6\xb2\x1c\x0c#q\xb3\xd2\x88\x9b%n\xf6\xf9r\xb3\xcem\xbbh\x87E\x88\xbb\x91vX<\xa0s\xe3}\x94vX\xcc\xe1E\xdaa\x91vX\xfcrwX\x94\xb4\xd5\xc9o\x92\xed\nl\xad(\xf90;\xefc\xe1\xd8C\xb1\xee3@\xce\xdf\x1e)^\xcc\xbby\xe2\xcf=>\xf6\xac\xb3A|H\xc6$>,\x9a\xd3\x11\x8d+D\xa9\xa6@6G\xa4\xf0\x10\x1b\x8e\x89\x07L\xce\xe2\x80\xd2\x17\x90\xc2\xe5pd\xcd\xe0\xc0\xe6o\xec\x97\xbd\x91\x94\xbb\x11\xed\x14!\x10?\x15\xc0\xc7\x82\xf7)\xc0=\x12\xb4O\x04\xec'\x80\xf5\xc1L\x0d\x1e\xc9\xd3x\x8amA\xe3\xf9\x19\xd1\xce\xa0,\x9e\x9b\x91\xda1\\g\xc5\xf22R:\x89\xeb\x8cHNFb\x87Q6\xa1\xdb\xf4\xa7bFAe\x99s1&gb#\x10\x9c@pi\x04\x82\x13\x08N 8\x81\xe0\xca\x08\x04'\x10\x9c@p\x02\xc1}F 8\x81\xe0\x04\x82\x13\x08nY\x0e(\x97@pi\x04\x82\x13\x08\xfe{\x00\xc1e\xf8\xcdWw\xf9\xe3\xa0\xd6\xea/z\xe3\xdf.x\xb6\xf9l\xbb\xfe\x9e\xc8\xbb\xd3\x9e\xfc\xa6\xfe\x7f&\n\n\xc0}\x17\xf2\xa8\x0e\xef+V+\xeb\xf6\x9a\x1b\xb1\xac\xef`]/\xb6+\xf76\xbf\x7f\xaa\xef~\xfeV\x15\xf4\xc24\xeb\xf9R}e\xb5\x9c)\xdf\xecN\xd9\xc7\xf7\xba?v\xa4(\xd7y\xa8a+\xf9\x9d\xae\"\xf3e\xb5\xdc}}z\xab \xd10\x9c\xa9\x02k\xcaz*58h\xd3\x8f\xacZ\xf2[s_U\xf1\xa0\x8a\x1fW\\\xefi\x8d\xf3\xd5\xf0`\x84\xb3\xf4 Y\xbd\xb5.\xab\x99.\xf7\xf9R^\x0bV\xd5A:+zC\x85\x15\xebz[=\x15\xe0qZ\x976\xd2\xc1\xebO\xac\xd2\xebs\xaa9\x06=\x173\x84\xa2\xd2\x95\x0b-\x05\xbf{\x7fu\xf6ZN\xaa\xd5\xb1\x1d\x0b*N?\xaf\xb8~ow\x8b\xb6m06\xa1_\xea\xea{\xc6\x7f\xd1\xb6\\V\x05\xdf6\xac\xed\x86]\xf1\x05\xb7\xac\x97\xb5|c\xba'\xbe\x03'\xfdTV\xe5z\xbb\xee\xf6{\x97\xecVOp\xf0\x1aX%^\x07\xc1\x07K\xd8\xbax\x98u\xcfL\xb6\xa7\xdb{\x0f\x7f*\x1ed\xbd\xd5\xa5d\xb5\xdf\x08\x97\x89\x89\x91x0\xfb\x07R\x01-\xae7\xafm\xe7U\xc9\xcbb\xa5\x97\xc7a\x0c?t\xb6\xae+~\xbb\xb3\xb4.\xf7J\xc7\x8d+\xf6\xa1\x88Q%\xff.\xec\x7f\xdb\xd6\x8d\x8f\xa6\xccust\xa7\xda\xb0f.f\xc2K\xb5\x88-\xf33Z^|b2\xfe\xd5\xbdcX\x90\x18\xd4\xe9&2V\xe6\xbb+\x92?Z0\xd1\xffe(\xc1u\x97\xf9m\xc3Z\xd1=\x9e\xa6\xe9\xa2\xbf5\xe6S\xf8/\xdd\xfe\x127*&\xda=]\x9b\xa2\xf5\x04j\x00\xde\xea\xc5\x15\xdd'\xff\xe1\xf8\x9f\\G\xde1^\xcf\x9e\xb6qj]\xa0\xbe\x81\x9f\x0d\xbf'\x1f\xb8+y\x83\xd5?\xe5\\*\x80\x00\xd8>\xf0\xdfW\xd16\xb68\x1e{\xe2\xdb\x93?&cbj6\x97\x02\x8a\xe9\x89$\xa1b\x84\x8a\xb9~\xcf4\x15!T\x8cP1\xb7\x11*&\x8dP\xb1]#T\x8cP1\x9f\x11*F\xa8\x984B\xc5\x08\x15#T\x8cP1e\x84\x8a\x11*F\xa8\x18\xa1b>#T\x8cP1B\xc5\x08\x15\xb3,\x07\xb6C\xa8\x984B\xc5\xbe\x08T\xac\x07\x94\xacrB_\x92\xd6\x19]0X\xdd6+\x1c\xcck\xbdo\xe1M\xdd\x1c\x19\xe5H%\xf28(\xec+\x15\xa4\xff\xeah\xe8\xde\xafd\x0cY\xfc >\xb4\xbe\xd2a\xf1\xaf>\x03\xc7e\x102u\xac\x13\xde2\x87\x0c\xf9\xad\xee\xaf\x9d4\x9bR\x90iy\xc1\xb7m\x00\xe1\xd2'\xbe0mz\xa6\x10\xd7\xc83\xb6\xf1\xcf\x10\xfe:\xf4\x1e\xfdz\x90\x88\x80I\xcfc\x8fq\x1e \x05\xf6GE\x11'@.+\xf5\x96\x1a\x1c\x8c\x14\xe7^#\n|2IK\x0e\x14F\xca+x,\\\xa8,5h\x18kF\xc1o\xd1\xa1CeY\x02\x88\xca\x92\xc3\x88\x91\xf2d\x901!\x98\xa8l\xcf\x90\xa2\xb2\xb4\xc0b\xac\x1d*\xe4\x91\x14^T\x96\x1ad\x8c\x14'&/)\xa1FeI\x01\xc7X\x7f\xef\xc2\x91\xd8\xb0\xa3\xb2\xe4\xe0c\xec\xf9l1!He\xd9\x02\x91\xa6\xb8}\xc2\x91\xca&\x04%\x95e M*K\x0fP\xc6\x1e\x133\xef\x89?Q\x07 V*;T\xc8R\xd9\x01\x02\x97\xcaR\xc2\x97\xca\xd0A\xcc\xd8\xa3d\x858\x91\xa1Le\x19\x03\x9a\xca\xb0aMe\x8e\xef\xab\xf8{!5\xc4\x19\x1b\xd6T\x00\x14\x11\xe8T\xb6w\xb8SY0\xe8\xa9\x0c=\xd9C\x04@\x95\xa5\xcd\n\x93\x83\xa1\xb1^z]\xdf1DHT\x19\xbe\xae\x19\xc3\xa3\xca\xf0AReYC\xa5\xca\xa6\x04Lc\xbd\xad\x8d\x87M\x95M \x9e\x86\x8b\x13W\x8d\x85P\x95\xe5 \xa4*CF\x04\x95E\x83\xaa\xca\x12B\xab\xca\x82\xd1\x10iS\xc2\xac\xca\xe2e\x07\x96]\xb3\x05^\x95Mq6>\x08\xab,\xde\xde \x01Ye\x93\xc2\xb2\xca\x82>\xce\x17\xa2U\x86\x0c\xd4*\xc3\x84k\xbb#\x11A[e\xa8\xbb\x90\x1e\xc0U\x86\x0f\xe3*\xf3\x07s\x95e \xe9*K\n\xec*\xdb'\xbc\xab,\xee\xec\x84P\xaf\xb2\xec\x01_e\x88\x9a\x06\x9f\x94|!`e\xd1@\xb0\xb2)\xe1\xe0@qF|8\x14\x14V6%4\x1c(\x8e\x9b5+o\x80X\xd9\xa40q\xa0<\xf5\xb5\x1c[@@\x84\x8c\x95\xf9c[\xca\xfc\xe1ce\xe9A\xe4@a\xc1\xf0\xb29dB\x909P\x9e\x9am\x06\xd7\xf9\xf2\x05\x9c\x95\xc5\xc3\xce\xcaR\x83\xcf\xca\x12B\xd0\xca\x92\x03\xd1\x83\xd3\x90\xe1he\xe17w$L\xa8\x0c\x1b,\xc4\x06\xa8u\xa9\xa9aj}ZJ\xb0ZY\xd0\x05S\x02\xd7\x81\xe2\xac\xc00\xfe\x91\xc2\x05\xb1#\x8fK\xb5\x0c\x87\xb2\x95e\x0ch\xeb\x02Came\x81\xe0v\xe0\xac\xa9aoe\xf9zuB\x08\\\x17\x8c\x0e\x84+sOfT\xfb\xb0\xae[\x0eLb0\x92\xa0\x91[\xb1\xf7\xabFr\xbb}\x9f\xb8\x0d\xbfe\x0d\x934UU\xc3Z\xf4\x12MO\xb9\xba\x9f|{\xed\xe9\xcc\x00\xc3\xac7c\xf4>f\xddn\xf4\xe3\xcd\xee\xbb\x8d\xd9{6\xc8\xd7^\xdb\xd1\xf6\xc6\xfe\x9e\xc3\xef\x0b\xb9\x0b\xfc\x11\x94\xbc54[\x0b\xdbJu\xe6\x85\x02s\xee\xcbv\xd8?0\xdaY\x06OG\xc9g\xb9J8\xe9\xc1\xfe\x0f\x17\xa7\xe3\x06\x90\xa0\x16 je{\xbb\xa52\xf3\xaa\xef\x92\xa0\x16\x82\x8aw\x05B\x93y\xf8d\x12\x9e\x04\xb5\x92Yw\x12\xd4\xb2\x0dA\xb3g\xe3\xd8\xf7#\xd8'\xb0\xebY\xa8\xf5t^\x9d\x04\xb5\xf6\xe1\xd2S\x88t4\x8bN\x82Z$\xa8\x85\x9e%%3\xe4$\xa8\x85\xa2\xc4\xa7\xf0\xe1$\xa8\xe5;,\xca~'P\xdf\x18\xb9\xa8\x14\xd2\x9b\x04\xb5HP\x0b\xc3f\x93\xa0\x96\xb4}\x88k\x12\xd4r\x95\x14\xe5\xa8\xa7\x10\xd4$\xa8e\x1b\x82\x8e&A\xad |s\x9clNe\x9a\x13h\xe6d\x8e9\x8d`&A\xad4.\x99\x04\xb5:#A-m;{/*J\xcd*+\x14\xcd\x1c\x9d5\x08\xe6\xf6\xb8\x1b\x1fnj8\xac\xe7\x93\xe2\xa5\x9f\x0f)u\"\x9a\x9f \x1dE\xd6\xe5\x90\x88\xa8\x13\x0b}z\x144\x84\x7f>-\xf2\xb9\x8by\x96\xd5k\x15\xd6\xb7\xfe\xd6K\xc5\xdd\x14\xab6\xa2\x15\x07N\xca\x1fO\xf6\xc7\x1e\x96\xc8\xc1~\x82\x1fE\xed#I}\x04\x9d\x9fD\xe4?\xcdN\xae{\xdeWSI=\xd0\xd4\xde\x8av\x07\x8c\xc6J\xb5]\x9f\xae.k\xe1\xa6\xa9\xd7OR\xe3\x9e\xf09\xfe\xc4\x1e}\xd5\x1e\xbde4$S\xe8\x99z\xc3\xf8\xb6\xa9d\xecBs\x1b\x9aG\xe8\x88\x1a\x19qX\x8e\x96\xe6;\xcc\x98G(\x99\xf7\xe2\xbbJ\x89>B}s\xd32\x0eu\x03\xc3\xea\x82\x151m\x19\xcf\xec-\xcf\xfa\xb3\xc3\x89\xaa~>?\x8e\xd6~uc\xa4+e\xceH97\x7f\x93c\x92\xd6\xbbT\x8b\xef\xb7\xac2\x8e\xdfV]\xbcc\xf4\xf6>\x97\xa5\xadD\x9f\xef\\\xa8\"\x04\xdbV\xb8\xfa\x13K\xf4\xe7\xb0\xf8\x03;\xd7\xb3\x89\xb3\xe5\xdeU\xb9.\xb1\xde\x95\xc7\x1a\\\xc7\x87\"\xa9X\x98\xdd\x83\xd5'\xa7\xf8uP\xdaF\xad|\xdb\x7f:\xbf\x81\x15\xbb\xe1\x06\xdd\xd2,\x97\x99\xf8\xc80\x9ez@\xd4E\x84\x9f\xaf\x1f\x81\x15\xf3[(6\x9b\xcf\xe8E\x1b\xa8\xea\xcf\x0f\xf9\xd2:CxT\xf6\xd0Z\xca\xa3\x82\xf8\x8f\xb2Z\x94\xf3\x82\xb3.\xa0o2\x12\xc4\x81\x0eQ\xbf\xb2\x9a\xaf\xb6\x8b\xd1\xcaC\xa1\xae\xd2\x11\x15\xa3;&\xf9\x1c+\xd0'\xb7\x93\xb4\xf9\xc4Aa\x1f\xcf\xc7\x13\xdbQ\x13\xe4bM\xc3ZMR\xc9\xc7\xab\x7f\x1e\xc5#w\xac\x9f\xa6rY\xd5\xcd(Lj\x9e\xc6\xe1%\x94g\xf6\xbd\xb1\xd7u\xbdb\x16\xe5\xec\xb8\x81\x0d\xbbc\xcd\xe0\xd4\xd0\xcd\xd3G\x8fo\\i\x01y\x0ds? \x83r\xc45X%\x01\x92\xbaY\xb0f\x1c'\xb9,\xab9{\x0dJ\xf9\xf6U\xbb\xf8\x04\xffp\xfc\x8f\x7f\xcc\xea\x8dT\xb9\xdd\x93\xdf\xba/\xa2r\x11\xda9\xdd\xcc\x05\x8d\xf6\xee\xa6\xa7s%K\xd6\xcb\xd0\x99C\xcf\xdf\x9a\x1b\xfd\xfb\x17\xdf\xf5\x91r\x93h^\x9f\x84n4\xca\x1bEO\xc3\xe2\xb9<\x92\x8e\xf1\x14\x1b\x82s\x84dn\xd4\x0f\xca0Acc\xa9\xe0_\xb00>A*7+\x00\x08q\x08\x10&\x80\x80\xe1\x06\xa4J\xe4\xba\xd6\xf8\x93\x81@\x98\x08\x05\x06\x0bL\x16\xc7\xdd\x13\x0e\x84d@0X\xd4TY\xdc\xac\xa0 $\xc2\x82\x90\n\x0c\x86{\xf6$9\xdc\xac\xe0 \xe0\xe0A\xc8 \x10\xc2\xde\x10!L\x03 !\x17L\x08\x93\x80\xc2\xf0\xe3\x80\x97\xbf=\x00X\x08\x07\x84\x0b\xe10\x80!$B\x860\x0d4\x8c\x0d\xc1\x1c\x05\x1bB^\xe0\x10\x12\xa0CH\x07\x0fa\x02|\x88\x182\xb1B\xb7{C\x88\x10\x03\x11\x01?=C\x00\x89\x908\x8bK\x06\x13\x83\xa5\xa5H\xdbbk\x99\x11R\x84$P\x11r\xc3\x8a0\x11X\x0c\xf7+\xa4\x9c\xedDp\xd1[\x1eGJ\xd9\xe6\x01\x18\x01\xcf\xe1\x01\x06d\x844\x98\x11b\xf4\xd1D\xa8\x11\x10\xe5\x06\x00\x87L\x80#Lr.\x1et\x04D+'\x00\x8f0\x15z\x84\x88\xde[6\xf8\x11\xf0\x00$ !H@\x83\x90\x80\xf3z:\x10 IP$D\xc5i\xb3\xc0\x91\x90\nH\xc2\x9e\x90$ \xdc\x9b\x00K\xc2!\x80I\xc0\xd41\xf0$\xe4\x83'\x01\x03P\xc2\x1e\x10\xa5\xb7@\x8e\x10\xa1\xcd\nSB\x14\xa8\x84\xa9P\xa5\xb74\x8c\xf8,\x02\xae\x84\xa8\xf0lXv6\x1d\xb4\xf4\x16\x15\x95\x9c\x9d\x04azK\x8b\xca\xcd\xe6\x831\x01\x05d\xc2\x04(\x13\xd2\xc0L\x98\x02gB2\xa0 1u\xd5\xb8\x10'\x16\x9c\xc3\xc2\x9a0\x05\xd8\x84Th\x13\xc2\x0d\x9f\x02oz\x0bCI\xcaN\x818\x83\x0f\x04FN6#\xcc 1\xa0\x13&\n\xc9N\x85=!c\xdfM\x80>! \xfc\x04\x8f|lH<6\xba\x1e\x11\x12\x8e\xc5\xc3e\xa1sP\xa2\xb1)\xc0Y\xe8\xac\xa0`,\x12B\x0b\x9d\x10\x10\x8bM\x02\xd3\x86'b\xd6Or\xc9\xc4\xf6jO\xbe\x8e\xf6\xa4\x0co\xe8\xb2OE\xf3\xf6\x16\x91^\xfdL\x84oo\xc9\xf5;$\xf5\xdb[D\x16\xf6\xe9I\xe0\xdep\x92\xb0OK\x07\xf7\xe6\x97\x83\xc5\x8a\xc1\xe2\x06\x8f|B\xb0\xdd\xf0\x11\x94\x81M\x14\x81\xed\xc5^=\xe5E%`\xcdUR\x05`y\x8c\xdc\x88s\x1b\x08\xe9\xd7\xe8[\x18-\xfb\x8a().\xf9\x8a+\x04-\xf7\x1a).*\xf5\x1a\xad\x0eF\x08\x12'\xf2\x9a\xe5R\x08yW\xfe\x0ch\xa2\xa8\xa8k\xd4\x19\x80\x12tE\x14\x83\x1b\xa4\x92\xa5\\\x11\x82\xady\xe5Z\x91b\xadS\xa4Z\x91B\xadQgc:0J\xa25\xcb\x95\xc2\xe2\xac\xd1K\xe0\xfaM6Y\xd6~j<\xfe%^\x91|\x82\xac\xeeZ$\xa8M\xa2\xc4&G\xf2\x92\xa3\xf2>\\\x9c\x92\xb8$\x90\xb8d\xb6\x91=\x9515\x81yo\x81X\xbe4+[J\xe2\x92$.\xd9[Vf4\x85\x17MbEI\\r_.t\x02\x13\x9a\x85\x07MgAI\\r\x1f\xf63\x85\xfb\x9c\xc0|\x92\xb8$\x89K\x92\xb8$\x96\xd9\xcc\xcakNa5I\\\xd2wX\x94\xc9L\xe011\xd2\x89)\x1c&\x89K\x92\xb8$\x86\xa9$qIi\xfbp\x93$.\xe9*)\xcaFN\xe5\"\xbd\xef\x06\x12\x97\xdc5\x12\x97\x9c\xc03\xc6Y\xc6T\x8e1\x81aL\xe6\x17\xd3\xd8E\x12\x97L\xe3\x13I\\\xb23\x12\x97\xd4\xb6#.Y\xda#\xf7\xe0K\xd2:d\x10\x10S\xab\xfdP.`$$i\x8fH\xa5\xdcRp0\x0c\xf6:/\xbc\xd9\xee\xca\xbc\xe0\xd4\x8c\xf6\x93\x7f9\xd1\x01\x7f]\x84K\x07\xe6\xad>\xa2\xd3\x81)\xa4\xa2\x93\xfe\xa3\x8c\xfc\xb5e\xb5\\\xed6{W\x04\xe6\xed\x80S{\xb6\x1a0C\xa7\xd8\xc6?C@\xcb\xba_\x19\x16t\x02\x9b\x18vJ|\x93/\x13\xe6*B\xceSF\x9b\x03#\xd6\xd3\x92\x89\x92h\xe5\xff\x8e6\x07\xc68Q\x8fB\xbd\x07\x0dsc\x9e\x00u\x1d\xf1\xe7\xb9\xd2_3\xa2\x99\x9e\xbdM\xe5\x91\xbc\xbc\xf3L\xed}\x04\x06mE+-$\xab\xd9\x1bmE\x0b\xb8Q\xfcK\xda\x8a\xd6\xccMR\xe0 s\xce\xa8<\x82\x83\xb4\x11\x1cDpPo\x04\x07\x11\x1c\xd4\x1b\xc1A\x9c\xe0 \xb7\x11\x1cd\x8c\xe0 \x82\x83\x08\x0eB\xce\x92\x08\x0e\xea\x8c\xe0 \xdb\x08\x0e\"8\xc8a\x04\x079\x8f!8\x88\xe0 \x8f\x11\x1cDp\x10\xc1A\x04\x07Y\x96\x03\xd4 8H\x1a\xc1A\x04\x07=_8\x8865\x9c\xbac\x1cmjx@\xe7\xc6\xfb(mj\x98\xc3\x8b\xb4\xa9!mj\xf8%nj\xd8Q\xad'\xbfuLc`\xa7C\xcb\x8d\x06\x0d3\xac\xab&[\xcdn\xc4e\xa5\x1e>\xd1\x11\xd5.D\xe6\xb2\xe7o\xfb\xd9\x88>\xfa\xcdb\xd1\xfc\xbd\xa0\xb0>zc\x12P\x16\x05Z\xa3!\x88(\x06\x15AY#\x17\x08!\x9d<\x02\xb1\x92\x08\x9a\xd3\x12\x91U\x04\x98\x9a\x17KEB\xa9\xe9Hj\xdcA\x99q\xd4 \x8c:Y\x86KWr\x02h7*\x8d8;m\xc4\xd9\xe5\x19Y\x88\xb3#\xce\xcem\xc4\xd9I#\xcen\xd7\x88\xb3#\xce\xceg\xc4\xd9\x11g'\x8d8;\xe2\xec\x88\xb3#\xceN\x19qv\xc4\xd9\x11gG\x9c\x9d\xcf\x88\xb3#\xce\x8e8;\xe2\xec,\xcb\xc1<\x11g'\x8d8;\xe2\xec~\x0f\x9c]\x17x\xf6\xd5\xbf;`\xb4\xad\xa4\x8a\x01\xea\xc8\x1ek\xe1\xa6\xa9\xd7\x83v\xb4\x19\x1b\xb2'^!7\xd6\xf3\xf3\x14W\xe2\xe7\x0f\n\x0c2 \x85|G\xc8\xb5\xf3\xe1V\x82w5g~H\xc2*\xe9\x85i\xe53\x05%,\x9f\xd86\xa8\x8br\x80}\xdf\x1b%\xa2\"\xa6J\xe2\xb7\xdd\xb7\xa7\xb7&\x10\x8d\xc2E\xb6\xf0\x8b\xac?!\xb6\xee\x8b\x94\x10\xde\xb2/~2j\xab>o1\x88\x98\xb6\xd5\xbbR\xe2\xdaW\x8e\x80\x07E\xb5\xb5QT\x9b\xa2\xda\xbdQT\x9b\xa2\xda\xbdQT\x9bST\xdbm\x14\xd56FQm\x8ajST\x1b9K\xa2\xa8vg\x14\xd5\xb6\x8d\xa2\xda\x14\xd5v\x18E\xb5\x9d\xc7PT\x9b\xa2\xda\x1e\xa3\xa86E\xb5)\xaaMQm\xcbrD\x18)\xaa-\x8d\xa2\xda\x14\xd5~\xbeQ\xed=\xa3\xc4w57\x81\x14W\x94\xf8g\xf1s\x17\x1f\x96\x07\xab\xd8\xf0\xb2\xbcc\xd5NCw\x83\xc3\xb2\x80\x17\xa6\xbd\xcf4,l9\xc16\xfe\x19\xa2W\xd1\xb4\xfb\xa4\xd5\x9b\xc0\x0e$\xa2\xcd\xd3\xf7\x90R\xcb\xef\x91\x14\xfa\xe7\xb1\x89\x94\xaaj\xe8\x08D{\x8d\xb1j\x1b\xd9\x90J<\x83?\xbf\xbf:\x9b\xbd\xbf\xb8:\x7f\xffn\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go\x93\xce\xfb\xcb\xd9e\xd2\xf1o\xbe\xbf\xbczs\xfe.\xe9\x9cw\xef\x13\x0f\x9f\xfdr~\xf5\xe7\xd9\xcfgW\xe1\x13MP}\x92#0\x8bw\xbd\x89\xf1\xe5\xbd\xda\xab\xe4\xbe\xf7\x8e\xaf\xd1\xff2\xbc\x9a\\\xcb\xbdc\x1c}\xdd{V.o\x9fv\x9f\xb9_\xe4%\xd9\xc2z\x12\xfa6l\xabR\x86le\xf5E\xf7\x17\xff\x11(\xac\xdd\xacJ\xeen\xe0\x9a\xf1bQ\xf0b\xf2;\x03\xdf(s)\xa5\x13\xf2\x08\xd6\xd2|\xf7\x13\xaf\xa1\xe0\xbc\x98\xdf\xaa\xc0a(\x04h\xe3k\xb6a\xaa#\xbcj\xf9Su\x83JL\x80\xd0#\xc4\x1bU\xc8\xbc\xae\xda\xb25\xbbqvl\xdd\xf9\xdb#5\\\x89\xf7\xf1\x91Y\x13\xf1\xdf'_\x1f\x1c4FM\xd4\xcc\xce]\xa2<5\x85S\xe3\xe1N\xc8\x88\xf6\xb8\x93\xb6\x08\xa8,\xf6F{\xdc\x01n\x86\xf9%\xedq'?sR\xf8D\xf5a\xf5\xe1\xe2tT\x1a\xf1\x89\xc4'f{\x8f\x12\x9fH|\xa2\xdb\x88O\x94F|\xe2\xae\x11\x9fH|\xa2\xcf\x88O$>Q\x1a\xf1\x89\xc4'\x12\x9fH|\xa22\xe2\x13\x89O$>\x91\xf8D\x9f\x11\x9fH|\"\xf1\x89\xc4'Z\x96\x83\x15#>Q\x1a\xf1\x89\xc4'>_>\x91v\xb7\x9b\xbau\x18\xednw@\xe7\xc6\xfb(\xedn\x97\xc3\x8b\xb4\xbb\x1d\xedn\xf7E\xeen'A\xab\x93\xdf$\xd6\x15\xd8\xd6N\xa2a6_\xbfp\xec_W\xf7\xa4\xfd\xf9\xdb#\x85\x8a\x857\xae\xfb\xb9\xc7\xc7\x9e5u\xefC2&\xf1aQv>\x1aW\x88RM\x01j>Rx\x90\x98\xe7\x11^\xfe)\xf6\xab\x8bs\xf2Q\xf7)\x8b3\xf2\xd3\x08\xf94>>\x9d\x8eOb\xe3'\x91\xf1{p\xf1\x98\x90\x91\xb1\xccL\xfcd\"\xfeIy\xf8\x03\xd2\xf0O\xc5\xc2\x1f\x8a\x84\x7fr\x0e>N\xc1#\x86\x12l\x8f\xcf\xc8\xbf{\xe9\xf70\xfb\x1em\x0c\xae)Y\xa9w7\xf3\x1e\xaf\xc8\xde\xbc{N\xda\xdd\xd5\xcf\x900n*\x8bK(.\xa1\xb8\xce\xdf3\x8dR\x84\xe2\x12\x8a\xeb6Bq\xa5\x11\x8a\xbbk\x84\xe2\x12\x8a\xeb3Bq \xc5\x95F(.\xa1\xb8\x84\xe2\x12\x8a\xab\x8cP\\Bq \xc5%\x14\xd7g\x84\xe2\x12\x8aK(.\xa1\xb8\x96\xe5\xc0\" \xc5\x95F(.\xa1\xb8\xbf\x07\x14W\x86\xdf|u\x97?\x0ej\xad\xfe\xa2\xb7\xbd\xec\x82g\x9b\xcf\xb0\xe7\xe5\xba\xac\xf8\xc9\xdd\xb7\xd7\x8c\x17\xdf\x9e\x14U\xb5-V39Ui{\xb8\xc6\x85Y\xbd\x91\x87^tG\x9a\xf5)\x10\x05\x8aaT\x95\x05}Y\xeaU\xe7$\xac\xc6\x85\xbd0\xed|\xa6\xa0\x95\xc7O\xb6\x05\x97y\x82\x0b<\xf1\x05\x94\x9d\xcb\x9b\x98l\xf4\x1e8\n\x1b\xdc\x15ea\xd9.\xd9\x83\xc6w\x0c\x15\x1dv\x15t\xb2\xd3\x91hSIm\x14)\x0e-\x93\x1e`\x915i\xac,\xab\x9b\x95\xa5\xf0\xe7\x1a#\xcf\xcd!\x9a\xccu?\xa4]A\x81\x01\xb2+I\xff\xf8lG\xc6\x91Wl\xcb4\"\xf6\xee\xf2\x0cz\x1e\x7f:\x8ar\xc3.\x9d\xaf\xa7\x8fi\xfd\x8d\xffpq:\x9e\xb3\xd1\xd8Fc\xdb3\x1f\xdb\xe4\\=0\xf9\xbb\x90\xbf\x0fF5\x95\x9b!\xd3\x91n\xbaG\xb1\x9f\xf3;G\xb5\x9f\xca\x8a\xab\xa2\xf4\xaf\xcfvX\xb3\x1db\xdb\xf0\x13Eye\xa8\xe3j\x1c`>O\xd6\xf5b\xbb\xca\xab\xe2*\xbc=[\xb0\xaa\xf6@\xe2\xd1\x0e\xa3uE\xb9\x8e\x84\xcd\xebR~\xdb\x8ar\x1d\xc7w\xe3\xeb\xac)8\x9b\xa9\xd0\xf6~W^\x17\x0f\xe5z\xbb6\xf3UU\xa4\xf8\xd4\xee\xc7rq\xad`e\xd6\xc5C\x9eJ\xa4\\\xb3\xf4\xe0\xfd\xe8k\x96\x15\xee\x9a\xcb\xbaX\xcd\xae\xebj\xc1\xa6fb\xe8+\x8a\x82\xc4M\xde\xb0f.\xde\x9a\xaaL(x\xbdv}\x1d\\\xaf\xea\xf9\xa7v\xb6a\xcd\xec\x91\x15\xd3\x125\x10Y ]\xf5\xba\xf7\x9c\xba\xb0\xa8&\x88\x0b\x0f\xceA\xbc\xc4\xd5\xb0\x82z\x83\xebw\xb6\x1e\xd3\x88Z\xa5\xf7\xb5\xeb\xf7\xe7\xf6\xbeV/\x1b\xf4\x1b\xdb\xfa\x8a\xd7\x1d\xdd\xa4\xc8\x15=\xd6\xd2\xbd\xad\x14c\xae^UG:]\xa5\xe4-\xb4\xdb\xebvSH\xd4\xac_\xa8\xfb\xc4\x1e\x9do\xf7\xdf\xd1\x9b\x1d\xf3b\x1f\xbc\xd7\x8d\xf8{\xe7\xb1\xac/t\xe3\xe6I\xa3\xedT9\xf7@\x1f\xf6\x9e9i \xa6A\x18h\x10v\x9f\xfe\xdc\x06\xe1P\xcc\xc2<\xa4\xbe\x1e\xd8\x8d\x95\xf6\xb8\xa1\x86T1\xb9\xee\xf7)\xe8G\xdd\x9b!\xbb;%\xe3z\xd4BS\xd9\x80<\xc8'\xf68\xa8\xa2\xf8\xb7 \xa5t5\xd3\xa1x\xd3\xa6\xac\xb5L|\xd3\x99:\x04^v\xd6Hti\x8e\xee\xdew2=s%\xde)\xcb\xb2\xe5\xaca\x8b\xaeY\xad\x8cV\x8a\x1f?\xb1\xc7q\"\xe7\xb8\xed\x03'\xbet\xa6\xcf\xff\xf3K}\xec\xe0\xbd\xd8UI\xff\xf8l_\x8d#O\xdb\xf69\x06\x88\xf0[\x11\xf1\x88\x8b\x9b\x1a>y\xef\xfd\xd5\xbcW\x8f\x07u\xfa\xbeje\x0b\xf6O`7\x9c(\xacF\xf7S\xfd\xc0\xba\x99R\x19+g\x0fe\xcbe\x9e\x88\xe7\x18\xfb\xa9v\x1f\xe3\xee\xdb\x83C\x11\x13\x81\xae\xdbws\x01{\xd4\x19L\n\xd4\xa3\xd7I\x0c\xed&\xb9\x14\xab\x1d\xa6\x1d\xf98\x07\x1a\x1bi&\xcd8F\xbf\xd2\x8c\xe3\x003\x8e\xd8\xcb\xf0o\xdb\xa2)*^V\xac\x0f\xda\xcfyy\xc7N~\xe3\xf5L\x03\x05\x01u\x94\xf3\xf6\xdf\xba\x12\x160\xbfe\xf3O\xad\xc2S\xa1\x98+ \x9f\xdb\xa2\x85z\xc3MzN\x7fEwd\xca.P\x1f\xf0l\xdfhe;\xeb\x9b\xe3XHSE\x8e5|\x8c\xc5\xc7\xf0a\xf9r\xd5I\x8b\xf5\xa8%rs\x83F>v\x94\xb4\xebue\x88\x81vpG\x9c\x83\xed\x87\x8b\xd3~\xc0\x950\xe2\xa8\x9ca/\x91\x031}z\xd1@\xf8\x94\x03a\xe8\xd3\xab\x7f\x90|}\xd0z\xd4\xf4\xd2\xaf\xf9'\xaf\xd5\xa8\xf7\x84\x88\x95k\xcc\xde\xf2\x1a9b\xbf\xd9\xf2\xda<\xc5\xad8B\xb7g\xcb\xebW\xddC\xdc2\xce\xcbji&9\xf6 \xa4\x87u\xe7g\x8b5\x80\\\x0d\x07(\xb9N\xa3\\p\x0c\xe77P\xc0MS\xaf\xed\x9f;\x9e]\x92\xe0\xa6J/z\x07\xea\xaa\xa9\x05\x9e\x82\x0f\x0b\xd0\xcc\xe6\x0b\xebx\xa5]v\xac3t}\x97;\x92\x13:\x7f\xeb\xbb\x02E\x8d\xd4\xca\xa5\xd5,\x83\x8avW\xd3\x87\x0fi4\xdb\xe3/\x86\xcdyv\xaf4\xe1\x89\x99\xa3v\xc6>\xcbx\xd29|\x8f1!\xf2<7l\xce\xca; \xb9\xa9\x1fvW`\x85\xd9\xdd(We\xc6]S~Cim\xbd`e\xccm\xf2U$>\xc1P\xd6\x8c\xc2Z\xce\xa7\xc1\xac\xac\x8ao\xaa{\xdfn\x99`*\xbc\xbb\x85\xa91\x84w\xc2\xfad\xaf\xe0\xcd\xc7\xab\xf7\xb3\x0fg\x97\x17\xef\xdf]\x9e\xa1\xe4\xb9\xc6\xe7\xbc9==\xbb\xb8B\x1f\xfe\xf6\xec\xf4\xc7\xf3wg^7k\xd1\xb0\x94za\xee\x8d=p\x9cU\xbc\x19.\xac\x89\xbbd}\xe7\xd6RNa\xf7=\xd6\x9b\xe8gPT2\xf3y\xf7\xee\xc4+4\x1c\x1a\x94N\xe4Noa\x15W\xcbb\xe2b\x1aB\x96\x03\xad\xa3\xc0\xd1DPY\xc6\xadnwi \xd7\xc0\xa9,8D\x85\x07(\xda\xf5\x96v\xbd\x1d\xd9s\xd9\xf5v0\xf5\xc0}\xbb\x8d\x8a\x19N\x17\xe9\xd3\x8d>\xdd~\xf7\x9fn\x8e\xaf\x1918.\x19\x97\xca\xbe0\x14\xb4\xdb\xf3c\xae\xaf\xaa=\xcd\xf3Uv<\x15\xb4\xc4\x91\xe4\x94\xd0J\xf2\xe1\xb5\x165w\x8c\xa4{\xc7\xd0\x9cB\xd3\xb4'\x00\xf8\xfb0\xed \x00\xb4'\x00\xed @{\x02(\xa3=\x01\x9e\xe7\x9e\x00\x98\xb5\xd3\x93\xdf\xec\xd70-\xa5>\xd7\xa5T3\xf9\xa6\xb5T\xcb\xa2\x13|ZKu\x96Ck\xa9\xf15K\xf79\xb4\x96\xbasD\xbcB\xb4\x96Jk\xa9\xb4\x96Jk\xa9\xb4\x96Jk\xa9\xb4\x96\xfa\xdc\xd7R\xb3\xd4\x99VR\xd3\x96\xa9h%\xf5\x80\xce\x8d\xaf\x01\xd2Jj\x0e/\xd2J*\xad\xa4~1+\xa97\xdbj\xd1\xfa\x97K-_Y8\xf8\x0f\xe2$\xb5xj\xef\xabZ\\\xd7[\x0e\xb2D\xd5\xd5\xe5\x8e\x1f\xd7\x8c\xf5w\xcb\x9a{\xc4\x96P\xcfo\xe0\xba\xe6\xb7P\xd8S\x98\xa2Z\x0c' \xe2\xdeX\x8b\x99\xd5#\xb4\xdb\xf9\xad}\x9d\xae@U\xb1\xf1\x9a%4lY4\x0b\xf9R\xa8o\xfa[v\x7f\xcb\xf4v\x13\xec\xf1\xa5n\x06,\xd8|U\x9aeU\xf9\x8c\x14\xa3 V_\x17\xbb\x7fl+\xb3\xed\x90\x96\xdf6\x05\x99J\x15\xa5\\c\x12N\xb4\x17q\xcd\xa2\xaf\\L\x08\xac\xbb\xcaU^V\xca\n\x0fjTYK\xb8\xe15\xe0\xaa\xae^\x99Z\xbdp\xdd/]U\xb9$^=\x82\xbf.Wr\x80\x93\x1f\x7fP\xf6S\xbd\xb2R\xdbO\x94\x9d\xe7|\x15r.#\x8f\xbb\xdf\x8b\xa1\x8f\x9e\xddB\xf2\xdfF\xf5}&\xdf7\xd9\x97\x92\x03\xeb\xaa\xbb\x9f\x1e\xe2\x9bRj\xcd4l^nJk\xeb\xb2y\xad\xe4\xa4\x03\xfb\xa4u\xa3\x89k\x14\x19Z\xff\xbc\xcd\xecN\xe6\xf3J\xf8^(\xdb/\xf7\x13\x12\xdc\xe6\xad|\xb7\xe4\xa8>\x85\xecA\xb6\xaa\xfd~\x93.\xdb\x14\x0d\xd7\xa2\xe3\xaatxd\xdcZ\xd3\x96\xfew;S\xfet`\xc7y;\xb4\xb2X\xb7V\x16\xd0\xbf2\x86\xb8M\xc2\x8a\xb5\x98\x0ee(\n{\xcf\x01N\xeb\xd2\xdec\x95\xd7\x9fX\xa5\xf7\xb2Q\x0d3S9\x99\xd0\xea\xdf\xf4\xc9T>\xb4\xa1\x12\xc0\xbb\xf7Wg\xaf\xe5H\xad\x8e\xd6*\xef\xea\x93\xfb\xbc\xe2Z\xff\xba\xdb\xfc\xa8\xdd\x99\xee\x0cM\xcbc+\x89\x8e\xd0\x85\xdbrY\x15|\xdb\xb0>\"*\xa6\xfd\xcbzYK\xf5i_\xd8\x04\xebH5\x8e\x98@\x8ej[\xbfmVY\x0d\xdfhZxd\x8f\x80\x8eye\x86\x9f\x0f_:\xa12l\xdb\xbaI\xc30\xa9PL\x10\xd4,\x82\xc9\xc9\x10\xbb+\xebm\x1b\xd8\x98\xaf\x9b\xc58\x8e\xc0\xd4eg&h\xbam\xcb\x9b\xed\\\xdc\xdc\x91F{\xabn\x8b\xb3\xb0\xe1D1<\xb4\x0f*7~\xc1\xca\x8f\x91\xea\xa6\xd6\xd3P\xd5\x11\xda\x92kAPo:%\x85\\v\x8dB.\xfdOXgR\xc8E~n\x8e\x07\x87IQ\x97\x9d\x11\x86\x02/\x14x\xf9\x9d\x05^F\x8f\xc7\xb4\x8f!\xc7\x12\n\xb8\x97Q`\xe2\n\xd2\x1e\xd1\x9aQ\x0b}\x1cO\xbf\xaf\xa4\xfa\xc8\x80\xf3\x1b{\xed\xc1\xedJ\xbdSu\xb1j\xf5\xe6\xad\xc3\xa5\x01\xc8\xdbZ\x8a\xf3`\xbcEq\x1ee\x07vn\x14\xf4y\x9eA\x9fg\x9f>@Q\x9f\x89\x1f:\xde\xe2\x90K\x83@Q\x9f\xa1Q\xd4\xa77\xc4m\x02\x8a\xfaP\xd4\xa77\x8a\xfa\xec\x18E}(\xea\x03\x14\xf5\xd1FQ\x1fc\x14\xf5\x19\x1aE}z\x8b\xcd\xe0(\xea\x93)\xea\x93%\xdb\x85b>\xd2(\xe6C1\x1f\x8a\xf9\xf4F1\x1f\x8a\xf9\xf4F1\x9f\xdfq\xcc\x07-\x93D! \n\x01=\xcf\x10\x90y\xaa(\x044\xb0\xe8\x97\x16\x85\x80\x9c\x96)\x92\x91\xc5m\x14\x02\xda\xb1X\xb7VF! i\x14\x02\xa2\x10\x10\x85\x80(\x04\x14\x8fZP\x08\xc8\x1cL! \n\x01i\x9b0\xd7\xa7\x10Pt\x1e\x17\x9b\xc1Q\x08\x88B@vq\xa8\x10P\x96\xb6R\x00(mu\x9d\x02@\x07tn\x03@\xed\xaaho\xcbj\xd9\x85\x7f\xe4,F\x9f\xe2\x8a\xf1\\\xc8\xdfe\xad\xca\xee\x83\xd6\xfe\x8a5%\xc2\xba^lW\xa6~\x83\xd5\xf9K}\x88*\xeb\x85i\xd73]\x9a\xb7=b\xdb\x1e\x1f\xe4m\xb9\xac\xd8bv\xbd\xaa\xe7\x9f\xda\xd9}Y-\xea\xfb=\xbf'}\x9f\x93\xeb\xb2\x9a\xe9\xcbmX\x93\xe7Z\x9e\x85\x80E}_\xf1r\xcdf\x7f-\xca\xd5l\xb1m<\x8b$\x10\xbf\x96\xecD\xb3\x9b\xa6\x98\x8b\"f\x8bz{\xbdb\xb2\x1d\x93\x8a\x8bV}\xe7z\xaa%\x87\xb8X|\xc9L?b\xd6z\xd8\xe8)\x93\xf3\x1b1\x9c_\xab%\x10\xf3\xc8\xb9n\xbf|\x08\x87\x8b\x18\xbe\xf5\x0596\xa8\x8bw\x9f\xe1\xddF\x1f\xfa\xdf\xa2\xed\xddB\xa8<\xe1DW\xf7\xc3\xc5\xe9\xa8<\xbd\xbck\xfeI_\xe1;\xfe\xa1\xaf\xf0\xec_\xe1\xc9/<1\xa8\x94\xd5rVV7u\xe0\xbdw\xa9\x0e;\x17Guo?}\xaeV@\xbf\x91\xa1q\x19\xb7.x\xdd\x98\x17\xdb\xf0\xd5g\x15\xa3\x7f\x7f\xb6/>\xd1\xaa\xe7\xd1\xd1\xf6\x0dB\xb7\xbch\xf8\xec\x96\x95\xcb[o\x98.ZH\xfc]\x0b\x81\xc1\xb5\xb7?\xcbj@a\xa2f]\x87\x91\xab\xac7e\xd3r1\xb5/\xaa\x85\xf83\x83\xf7\x1f\xc4\x0f\xde\xe2\xb6\x95x\xdd:\xb7\x8a\x11\xb7p\xc1\x1efj\x9a~\xe0\x86\xc7\xdfk\xca\xceE\x95L\xc0\xb0\x15_6\x8d\x8c\x19\x8a1_|\xe9\x89\xf7\xae|\xbb\x0c\xfd2^\xf3\xed\xed\xba\xae\x16,\x10E,+(@N\xb5d0t]<\xaae25+\x82\x026\x0d\x9b\xd7k\xf1\xed[7P\xd5\xfc\x18\xaenK\xbf\xc3\xcb\n\xe6u\xf5\xd7m%\xe7\n*\xe8*f\xfe\xde\x13~\xbd\x94W\xfa^\xce\xf6~\x91\x13\xb0_\xd5\xeb\\\x0c\xe7\xacYw\x0b\xdd\xf2v\xb9\xbe$\x06\xc5\xfdT\xb6\xad)\xee\xfb\x92\xbf\x11\x8f\xe2\xaf\xeex\xa3\xea\x1a\xb3m\xc5\xcb\xe9\xa3t\x7f\xffE\x7f|%n\xd0\x9e}\xe0\xaa\\\xb3\x96\x17\xeb\x0d\xc8\x9a\xe9\xde0\xbc\xe9e\xabk\x0f\x0b\xb9\"\xe0-lU\xde\xb1\x8a\xb5m7\xfft\xbb\x82\xd7\xeb\xeb\x96\xd7O\x14|\xfdE\x03a\xaaG\xa9\x85\x0d\xdd\xb0\xdb\xa2U\xc1\xcb\xbeF\xf0\xf5\xa7r\xe5{\x86\x85\xd5[\xf9\x99\xdf\x17\xd22\xfe\x8d\xf9\xden\x19\xf7w\xbe\xba\x9a\x8f\x1f'\xd5\xd9e\xec^|K\xde\xd5s\xb5\"P7\x86\xd7\xf2\x97&\x1b5\xaf\xab\x9br\xb9m\xd8\x02\xd6e{\xcdn\xcb\xe2\xaev\xec\x8e\x05\xf2\xfbCtV\xf3\xa9#\xd7\x14\x98c\xda\xa5,\xa1+\xe6\x18\x8a\xde\x80\xae\x0f|b\x1b\xb5\x00uW\x97\x0b\xd8V\x15\x13\xef\xd7\xa2yT/:hX\xb1\x18\xaf\x8f\xd8\xf6\xae6k9\xbf^n\xd7_\xbb\x9e\xd0o~\x85bu_<\xb6\xc2\xe9\xc5\xca?\xbe\x0c\x9e\xefSUA\xe7\xe3\x8di\xe6\xcf\xe6\xae[\x13\x0f\x8b\x1b\xe9:\xc5\xcb\xd1d\xc6\xde\xc5\xd1\xb6u]\x95\xbcn\xf4*t\xd9\xb8]\xd2=\x92\xe2{\xea\xae\xe4;\xfb\x95u\xefIy1\xb3\xfe\x8f\x99M\x19\x0bE\xe1\xf7\xf82\xa7P9\x85\xcaG\xf6$\xa1r@=\xcfv\xb0H\xb5J\xdd\xafk\xb6X\xa8%\xc8\xe5 V\xae\xbf0[\xb8\x17\xf7\xccu{\xdc\xf3\x96y\xdd\xa82\xe4\xda\xa5\xc1sui\xf2\x05&\x97 l\xcf8\xdda\xce\xb8\xac\xd7}\xbd\x7f\xf3\x8e|\xf2ch\xc3\n1\x17\xfc\xbeh\xba\x9b\xf4\x1d|\xfb\xbfC'\x0d\xdc\"\xfb\xf7w\xf0\x07\xe7\x19\xff=\xf8cp!\xc4\xfeRC-\x87\xb8\n9\x19|6~\xb88\x1d\xbb\x89\xd6Hh\x8d\xe4\xc9\xd7HB\xa4\x02\xc5\xb7\xd3\x82\x87\x14\xdf>\xa0s\xe3\x91Y\x8ao\xe7\xf0\"\xc5\xb7)\xbe\xfd\x85\xc4\xb7\x07\xcb\xfd'\xbf\xcd\xeb\xaaEd6\xda_\xcfv\xe8{\xfc\xc9\xba\x14\x1f\xbe \n\x1dm*\xee\x0b\x02\xbc0\x8d~\xa61\x80\xbbb5\xb3]\x96\xf5c;\xb8\xac\x1f\x99\xda\xc4\x97\xf4\xa3s\xa3\xf8RR\xec\xf32\xebR~`!?\xbe\x8c\x9f\xa1\xb1\xf1\xcfO\xc8\xbf|\x1f^\xbc\x9f\xb8t?\x1e\xfb{KY\xb8\xcf\xbal\x8f_\xb4\x8f/\xd9\xa3\xefux\xb9\x1ew\xbf3.\xd5\xa3\x16\xeac\xcb\xf4\xf1Ez\\\xbb\xa6-\xd0C\xbd\xf5\xa5\x1dNY\x9e\xcf\xb98\x9f\xba4\x9f\xb00\x8f\xeep\xfb\x0e.\xb9\x16\xe4\xf3-\xc7#\x17\xe3\xe3\xcd\xcb\xbb\x10\x8fY\x86\xc7/\xc2;+<~\xf3\xfbV\xe9\xf5\xea [\x883\xe4\xd4\xc7Q\x98\x8b\xd9\xc7\xae\xbeeY|\xa3\xb57Z{s\xfe\xfe\x9c\xd6\xde\xec\x8f\x11_/\xb4\x8f1O\x84\xf9'\xafu\xb0g\xf4\x8cZe\xed\x99\x07\x13\xfd\xdc\xe2\xc5'\xfbkk\xc1Vl)_`\xed\xc9o\xfa\x1fu#\xeb\x8f\xd3\x91yk\xcey\xdb\x97\xd4}\x81\x15ru\xa5\xff{}\x03\x85\xfe\x04\xeb\xae\xd5\x95\xa4\x9dd\x9e\xd4\xc1\x07\x99\xeb*\xfa\xb8g\xfbe\xd67|\xe6\xa8\xa3\xb1\xcf\xf1\xd8\xf55\x0b?:A\x15\x87\xd8E\xa0\xbf\x90\xeeP\x01@\x0cp\x8f+\xa0\xde\xe4\xf6\xb1\xa3\xeb\x9b\x07\xf2\x9a\xcdo\xff\xf8\x87W\xac\x12C\xf2\xa2{>k_\x88Q\x998\xb3+\xd2MS\x80\x1a\x94\xd4T\xe13\xb5z\xe7\xfa\xfb\xb7\xba+\xd2\xdf\xea\xf6\xb6h\xc2z\x1eS\x9a\xaaJ\xd5\xf30\xfb\x06\x88)\xb7\xfe\xb1asV\xde\xf9\xb4c\xf0\xbe\xeb\xc7\x961\xda->\x82\xf5\xe7h\xfd\x89U-\xdc\xb2\x95\xd4\xb9\x08\x08w\x14s9U\xd6\x1f\x19\x01\xfe\xe7\xbeR\x9a\x19ue\xf5\xae#\xf9=]\xb6P\xb4m=/e\xc4\xb5\xfb\x1e\xf6\x15uWKq\x84M}\xaf\x16`\xeb*\x00\xbdEn\xe9u\xb1*\xaay\xe4\xdd\x9aa\x80\x88H\xbc\xa0\xfaL\\\xde\x05Q\x0c\xb6\x97$\n\xbb \xe4[\xf2\x8a\xb7 \xa5[\xa6\x08\xb7`\\\xd4?D\xf6g\x81\xfcR.V2\xb6U\xdb\x0f\x1a{\x90\xe2E^\xa1\xa8\x92\x8b \x15/\xca\xaa\xb5\xb5\xd4l\xd3=U\xaeE-\x16\xa5,\x96\xd7fp\xe8\x16\xc2$\x08\xd3nKnb\x11\xce\xc2\xe6+\x19\x80\xeb^\xd8S\xbe$]/\xfe\xbe\xc7\xacV\xa3a\xac}\xd9\x03U\xfe\xd2v\x9f\xd3\x8c2'}\x10\x8d\xb4M\x08\xd8\xfa\xfb\x00\xb6\xc2\xfdB~\x17\xb9\xbe*\xecQ\x0b\xbf\x90\xe1\xfc\n\xfapq\xaa\x87\xe1\xfe>\xd2\x1a\xc6\xe8WZ\xc3\xc0\xbcR\x94\xbd\x81\x8f\x1f~C\xfe+\x7f\xcd\x8e\x97\xc7G\xc2\xb52\xd8\xff\xd5\xf1Wb\xfc\x92q\x13\xad=\xf9Mh\x06z^\xc1F\xa6\xd6\xce\xd9\x11pV\xac[\xd8\xb6\xdbB\xb8C\x05\xf06\xe5J\n\xdc\xd4\xeas\xa8\xac\x8a\xc6\x9f\x83 \xa78\x8f\x1b\xd6vp\xc9\xa3\xff\xd2j\xac\x13\xf3<^\xc3\xb6ef.\":\x92x\xb9\xd67\xf0\xa6z<\x86?\xd7\xf7\xec\x8e5G\xde\x99\x9b\xb0\x8f\x1f~43>QT0\xe9G\x8e\xa0\x0c~\xbd\xe5|\xf3\xeb\x91\xfa\xff\xf6\xd7#\x15o\xd2\xbf\x1e\xc9\xde8/*\xa8\xe5\xd3)<\xe2/\x90q\xd8n\xc4'\xc1\xe3&t]\xd6\xdcI!\xe2\x82\xc3\xba\xd8\xb4\xaak\xc9\x9a\xf3\xba\x03r\xe5\xbb\xadT\xef\x91@n\xd9M\xbdZ\xd5\xf7\xed\xeb\xc0\xbd\xfd\x9fRM\xd8\xb4\x08\x06J\xc1\xba\xd1\xfa;s\xbb\x16\xdf\xd0\x81\x82\xdeT\xf0\xe7\xab\xab\x0b\xf8\xd3\xd9\x15\xd4\x95y\x04\xd53\xf6(\xbfY\xfcI`\xff>~,\xae\x1e7\xec?\xfe\xfd?\xbc'\x80y\xd5W\xba\xbf\xe9\xd7\x88\xbcC\x9b\xa6^l\xe7L\x06\xe1\xc4+\xcc\xbf,\xf1?\xe1\xcdf\xb3*\xe7\xfa\x9d,&Y\x85\xf0\x99\x9a\xf2\xcd\x8b\xb9\x18[\xea\xfa\xd3v\xd3\xcd`\xae\x8b6\x94\xe9\x13N\xfe\x92\x9dP\xd6Q\x06\xc2\xf9-[[\xcf\xd0B=D\x85iR\x17@\x0b\xe5\xf4\x80\xae\xa0\x1c>\x1avS7\xec\xc8\x14 \xca-xy]\xaeJ\xfe\x08\x15c\x0bC\xc8\xc9!\xaf\xb9\x0b\xb4D\xb6e~[TK&O\x92\xcf\xec1|\xfd\xb1ep\xc7\x9a\xb6\x94\x81U\xd9=\xc5\x98\xa5\xfagQ\x15\xcbP\xeb\xaf\x1b&W\x98M\xc1\xc7\xdf\x04>|k\xce^\x03\x17\xef\x90\x1b\x1d\xf4/d;\xf4\xd8\xd5\x0b}Z\x93J\xffp)\xfac-g\xe0\xfe\xb9\xa4~\x97]o\xc5\x84U\xbc\x89\x98^i\xe1\xe6\xa2]\xee~\xf7\\z\x8b\x92\x84\xac\\\xc7\x17\xdf\xff\x81\x97\xcb\xe3\x86\x1d\xab\xfe_l\xca\xf6x^\xafC\xa3\xf1\xa5|R[\x1d0\x96,\xe8h\x94\x82\xafu\x82\xbf\xfa\xb0P\x8f\xf67\xfe\x97\xa0\x84`\xae\x03\x83\x92\x02VKn\xad2\xe8%\xb6\x0d\x9b\x977\xe5\x1cZ\xb6.*^\xce=\xba\xa9\x07\x08\xc4\x8c\x0d;K\xfaI\x0cG\xd7\xcc\xc4l\xad \xce\xce\xea\x16\xba\xafw\xf6P\x88\xce\x0f\xdf\xbe\x86\x8bB\x13M\xba)E\xe7\xf4\xb2\x82\xd3\xff\xf5\xbf\x02\xaf\xc9\x1f\xea\x1an\xea\x1a\xbe\x83\xe3\xe3c\x7fV\x8c\xa8LQ=\xfa\x0f(\xaa\xc7cQ\x8d\x1f\x9az\xfd\xf5M]\x7f\xe3?\xf4\xf8\xd8\xff\xfe+o\xe0kQ\xd4G\xd9\x90\xab\xfa\xeb\xff!\xca\xfa&\x98\xe4\x13*\xef\xbf\xc3\xbe\xfbC\xc4w\xffR\xdc\x15\xd9\x9c\x07\xdf\xc9\xb9\xa1\xb8J\x06\x0f\x95\xed\xd7?\xd4\xf5\xf1|U\xb4m\xc4A\xaa\x8a\xe2$\xd5F\xebD\x7f\x1d<\x9e\xeb\\\xf7\xc7\x88\xeb.\x1e\xf9m]\x05\x9c\xa7j\xf5C]\x7f}||\xec\x7f\x1bt\x8e\xfb:x\x8c\xec|\xd2\xadS\xbd*\n9WN}{vy\xfa\xe1\xfc\xe2\xea\xfd\x87oB\xcb\xf4}G\x0d_X]:\xec\xce\x7f\x8c\xb8\xf3O\xb5\xdf\x93\xd2\x95\xaf\xbf\x83\xff\xb1\xb9>\xfe\xa1\xae\x7f;>>\xfeo\xff\xc1E\xf5x$\xa6\xa1\xe2\x8c\x8d\x9aD\xfdT4\xedm\xb1\x12N\x0e7$\xe4\xc2q-\x02U(oF\x15\xf8X\xad\xfb*\xc8\n\xca\x07D\x1e\xf5\x7f}\x07U\xb9\n\xa7\xf9\x05\xeb\xe5\xe9\xc9WrQy\xfe\xa9\x1b\x8b\xcd\x87\x06\\?\xf6\xd3.\xf3\xf6Pk\xa3\xeeY\xaf\xc9\xc8\xd8\xb6\x9e9\xcbK\xc7\x94\xeaD|\xbf\x1f\xcb\x1f\xc4t\xf5%\x14\xd6\xdbN\xbc EO\xf0\xbd\x1bT\x0fq_\xac{\xb5T\xabG\xf3]\xb9\xb3X\xd0M\x93\xa1\xb8\xe1\xcc\xb5R\xa8L\xaec\xbcR\xd3qWq\x85g\xf5\xc6\x9aR\xa8\xe0\xdb\xaf\xff\x9fp\xdd\xafz1\xa1\x9b\xb6\xd97\xc7\xfd\x80\xe8\xe1\xe7u\xe0\x03\xa4\x98\x7f\x12cP\xffA|S\xae\x98\xff\xbda\xc6\xac\x0b\xd6\xb4u\x15|l\xf5J\x9c\xe4\xdag\xf2\x0eG2s\xf5 \xa2S\x9a\xe3\xddy\xb9\xd2|o0\x80`\xad\xbe\x92\xbe\xfc\xea5|\xe5zj\x87n8V\xad\xfc\xea(T\x9el\xdf\xbbb-\xca\xfc\x7fU\x13\xfeO\xf0\x04\xd1\xbe\xd1\xf1\xa9\x8d<\xbf\xd1\x1f\\\xc3\xbe\xa6zC\xd9\xc2=[\xad^}\xaa\xea{\x15\xf8\xbd-Z(t,6\xf1\xe1\x1av\xf9\xa3\xd1\xde\x0b\xea9\xe8\x03K\xba:\xa2\x03{>\xae\n\xd5\xa5\xdd\x17\xfbU>\x8c\xa6\x9f\xdf\xd6\xab\x85\xea\xe4:\x8a,\x1f\xe5Q`\xd57\xb2\xe9G\xc6}\x1dY\x85\xe3\xee\xe5\xfc\xb5\x18\xd7\x8c\x0bw\x96\x86\xcc\x8a\xe9\x7f\xfc\xfb\x7f|\x13x\x90r\xf4\xb9\xe1\x05\xc3\xddN\xbaJ\x14\xf9\xed\xf1\x1f\xbe\xfdC\xfbU\xa0\x0b\xa9\xff\x0f\xa1\x84C4\xc9*j\xf019\xa3\x80{n\x95a\x9e^e\xf3\x86\xa9a,\xacE\xdc\x1b\xf2F*\x8b\xa7\xe1\xda\x96r\xf3\x95\x8dj\x0f\x83\x0fF\xfd\xb7.?\x1cQ\x9e\xddW\x80\xd7\xf5'\xd8\xac\x8a\xb9G\xbf\xb5\xb7y->\xf2eE\xfc\"\xfd\xb6MrbL\xeb\xb6\xb7 \x8e\x1c\xb6`\xe0\xc7mU>(\x15\x85\x10\x8a\xd4\xdb\xc0\x89}\xc11'J\xfc\xa7X\xcd\"\x89\x18\xbd%91\xdd%\xa3\xfa\x0c\\\xa2\x7f3(>\xa249'\x1exF\xea\x85\xf8\x93x\x8c)\xac_\x0cq\x9f\xdd#}U`\xb8Am\xe4\xc5\xaa\xcc\x1a^_Y\xba\x04*kA>\xc82p\x82(\xc9vc\xd8}im\xb4\xe7\xa0g\x15o\x1e\xad\xb4\x97\xc1\xadC\x8c\xc0\xa08\x85\x86\xad\xd8]QqX3^,\n^\x84\xea;\xa8\xad~\xaft{f\x0f*\xa0\x7f\xf4\x15\x86m\xf6\x87\xe1\x93j\xad\xf9\xaf\xcaVm\xb7-7\xde.\xe72`\xe1+\xa6\x9b4\xbd\xb4\xa7\xfe\xd5R\xa6\x91\x052\xc1n\x9az=\xb8\x82\x99\x87\xf4\xddC\xae\x13\xa0\xaa\xd0\xbf\xbb#\x89^\x91\x17v\xfce\xfdt\x1b\x82\x0f\xbe3D\xbd=I%\xc6P\x97\x06\xf4\xe5\x81\xe6\x07#\xa3\xf9\x01\xcd\x0f\x8c\xd1\xfc`l4?8\xec\xfc\x00\xd5\xf3Q\xf7\x18\xdf\xee\x9d6\xfb\xb3\\\xfd,\xbc\xcbuV\",\x94\x81D\x15\xb0\x18\xd2\x94\xd4\xd7@\x81vR\xacN\x80\x0d]?\x90\x1b\x8b\xf3\xa4\xdd\xf8\x80\xfb\x86\xd31\xe5\x1fgy\xdag\xad\x99\xca\xb8+\xdfe&\xed\xed5\xb4\xbf\xbc\x9e\xa2\xd4]i\xe1\x14Mc\x94\xba\x0b_r\xea\xeeNsd\x18g\x10\x1f\x99\x96\xb3;\x8c\xd5x\xe5\xc7\xfa\x1bI\xb9\xbb;\x0e\xa2\xdc]\xcc\x0b\x0f(w\x97rw\xbdGR\xee\xae4\xca\xdd\xdd5\xca\xdd\xa5\xdc]\x9fQ\xee.\xe5\xeeJ\xa3\xdc]\xca\xdd\xa5\xdc]\xca\xddUF\xb9\xbb\x94\xbbK\xb9\xbb\x94\xbb\xeb3\xca\xdd\xa5\xdc]\xca\xddu? \x94\xbb\xbbc\xd8\x1bn\x0c\xe0\xab\xf7\xee\x91\x83\xba\xf7,\x8aU\xf7\x0e\xf7`\x92b\x1c\xb7 5\x8f\xcb\xd3\x86E\xcb\x91m\xd8=2\xa9\x0dC\xf9\xf3\x8c-\xa0\x0cj\x8c\xb7(\x83Z\xd9\x81\x9d\x1b\xcf\xfd\xa5\x0c\xea\x1c^\xa4\x0cj\xca\xa0\xa6\x0c\xeamu]\xcb\xd6\xcc,\xecF\x15\x8e\xddb\xec\xa3)\xc2\xb7\xd7Xw\x8d\x9d]\xc7\xba\xc2d\xeau\xef\xc8\x9d\x99\x98\xe9N\xee\xed\xc7\\5\xd0'<\xdb\xec\xec\xde\xf1\xcf,5{\xd8C\x02 \xb3\x88\x18\x14&\x8c\x03\xaekFs\xa4\x83\x11\xe3\xae8od\x0d\xb7\x13X\xc6\x16\xa6\xef\xfe\x15l\xe1\xdfO\xf6PR\xea\x0e\xe2\x86(\xc3\xa7\xec`o\xa0\xb2q\xaaN\xe9N\xd2\xe9\x9f\xeeHy\xb8\xec\x9c\xa4\xcc\x9cd\x1f\xe12r\x12\xfd4\xca\xc4)\x1dI8h'\xe1\xb2o\x922o\xd0NJkv(\xdbF\xefQ\xa7\x0f PO\xca\xc4kf\xb1])\xa8F\xef\xa5\x07\xe2s\x08\xe5\x8c\xcf\xe9\x84@\xe3\x07M\xc9p\xd7\xf1\x15sL\x11F\xc91\x955O\x89\xa6\xc6\xa4\xa5\xc5\x0c\xaa9N\x99u\xcd\x8eB\xa9\xb3\x986;Z\x0b-\xaf\x1b=!\x93)\xb3\xe2Sx\xc5\xec\xb4XgQ}\xf5\x02y\xb2r\x8buS\xa2\xb5\xc1}%\xdc*\x9e\xf7Wr\xae\xcc\x162e\x97\xf2.\x9c\x07P\xdeE\xff\x13\xd6\x99\x94w!?\xfe\xc6\xcf;~\xef\xb4Qi\x0e\xbeW\xa5e\x04\xaf@{\xaa\x19\xa3\xbc\x8c<\x9fK\x94\x97Ay\x19n\xa3\xbc\x0ci\x94\x97\xb1k\x94\x97Ay\x19>\xa3\xbc\x0c\xca\xcb\x90Fy\x19\x94\x97Ay\x19\x94\x97\xa1\x8c\xf22(/\x83\xf22(/\xc3g\x94\x97Ay\x19\x94\x97Ay\x19\x96\xe5`\xe4)/C\x1a\xe5eP^\xc6\xf3\xcc\xcb\xa0\x8c\x804\xdc\x9a2\x02\x0e\xe8\xdc8\xcbN\x19\x019\xbcH\x19\x01\x94\x11@\x19\x01\x1d\xbe\x15H\x03\xf8/G\x1a\xc0\xcf\xddy\x03\xf8\xbf/\x0e\xca\xea\xa6\x96\xfdSm\xb4\xd6]\xb8++\x04\xfb_\xaa&8.\xa7\x8f~\xb6\xa4\xff\xd8\xa1\xb6\xf1\xcf\x80q\x98]\xa3\x9e\x90~\x1f_r0\xbd\x1b\"\xef\xbd\xbb<@\xa2]\xde\xff\x96\xf8<\x18x\xbe\xac\xe44\xde\xfd\xb9:\x17\xb7\xb7j\xb7\xedl\xb3\xbd\xf6b|Q\xef\x02\xc2\xc3\x80\x80e\x00\xe7aH\xf02L\x00g\x82\x85\xb9\xa3'\x81\xc5\xc4\xdc\x00\x0d\xc4!\x1a\x98\x00\xd2\x84\x1bP\xf0[4L\x03\xb9\x80\x1a\x98\x08\xd5\x04\x0b\x94\xba\xeaX\xb0\x06\xf6\x87k \x19\xb0 \x16\xa5\x03\xffI\x90\x0d\xe4\x06m \x11\xb6\x81T\xe0&\xdc\xb3;\x18\x07\x0b\xdd@n\xf0\x06p\xf0\x0d\xe4\x04p`o\x08\x07\xa6\x818\x90\x0b\xc6\x81I@N\xf8q(\xc4\x07o\x14\xca\x81\xc3\x809p@8\x07\x0e\x03\xe8@\"\xa4\x03\xd3@\x9d\xd8\x10\x8c\x83u /\xb0\x03 \xd0\x0e\xa4\x83;0\x01\xdeA\x0c\x99\xdf \x00\x1e\xc8\x01\xf1@\x0c\xe4\x01\xfc\xf4\x0c\x01\xf4@\xe2,.\x19\xec \x96&\xa1\x1f\x04\xdc\x03 \xb5\xcc\x08\xf9@\x12\xe8\x03\xb9a\x1f\x98\x08\xfc\x84\xfbU\x1b\x87~`:\xf8\xe3-O\\1\x06\xff@6\x00\x08\xf0\x1c\x0b`@ H\x83\x81 \x16\xbd\x9f\x08\x05\x01\xa2\xdc@\x800\x13 \x04\x93\x9c\x8b\x07\x85\x00\xd1\xca \xc0\x10L\x85\x86 \xec\xd5|\xf0\x10\xe0\x01\"@BD\x80\x06\x89\x00\xe7\xf5t\xa0\x08\x92\xa0\"\x08\x82E\x90\x0b.\x82T\xc0\x08\xf6\x84\x8c\x00\xe1\xde\x04\xd8\x08\x0e\x01\x1c\x01\xa6\x8e\x81'!\x1f|\x04\x18\x00 \xf6\x80\x90\xbc\x05r\x99\xf8\xec\x07\x91 7\x8c\x04Q \xa6BI\xde\xd2\xd47j\xf8s\x1d\x01'A\x90\xa1\x80 \xa4\x04\x93@%oQA\x80 \xa6BL\xde\xd2\xd4<0\xb0j\x96\x0ff\x02\x14\xd0\x04\x13\xa0&H\x03\x9b`\n\xdc\x04\xc9\x80\x13D\xde\xb6\x11\xe8\x04\x12\xc0\x13,\xec\x04S\x80'H\x85\x9e \xdc\xf0)\xf0\x93\xb70\x0b-\xc2>28\x08*\xf8@T\xcb0\x08\x05ya(\x88\x01Q\x10\x86\xa2\xbc\xe7L\x85\xa5 c\xdfM\x80\xa6 \x9c\x02\x0b\x9e\x1a\xda_\x8br\xc5\x16\xe1\xe8\xd48\x16>4\xec7\xbc\xba\x12\x18\xf5\x81\xfb[\xa6Wrl\x0d\x0f\xd1\xc3\xaf\x19\xab\xf4\xd1\xfe;\xdc\xd4k)\x11\xc2\x16\xd0\xf2\x82o[\xb5\xdc\xbd\xa3\xf6\xa1L\x1d\xe2k%\xb6\x05\xfaB\xe5X?V\xfd\xdd{\xda\xd7\xaa\x9e\xbd\xf8\x9d\xfe/\x19\xdep\x9f\x82X\x0bb\xd5v\xed\x9f\xa1\xbf\x82\xef\xdf\xbf{;\xbb\xbczs\xf5\xf1r\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go\xd1g\x88\x7f%\x1e~\xfe\xeeO\xc8\xe3\x83\x85\x1b)\x87\xa4&(\xc9\x9f'\x08.km!\xd5\x8d\xc1\x02\x06\xe5:\xbb\xfc\xed\xeb\xb2\x9a\xaf\xfc/\xfe\x96\xadn^\xf5\xea;\x9eN\xd0\x83\x12jO\xe2'h\xda\xf8\x92}\xdc\\\xf2:\xfa\x8fe\xdbnUL\xc1\xff*\xb2\xa2\xea}\xa9\x9e\xc5Q\xbbv{7\xa0;n\x84t\xf6\x7f\xe7\xacY\xb7\xe0\xde\x13\xb6\xb7\x88\xe2]\xb6\xb8\xfd\xba\xae\xcaO\xcc\xa1\x14\xd2\x1b\xe2\x06C\x82\x8f\xa0\xbf\xaa\xb5U\xfb\xedv]T\xaf\x1aV,$\xd6%gt1\x1f\x01\xc6O\xa0 \x00\xee% \xe00m4\x97\xb5%\xb7L|\xb3\xff\xb1-\x97U\xc1\xb7\x0d\x83\xaf\xd9C\xf8#\xf9\xe3E\xddHF\xf3_\xd9\xe3u\xd12\xef\xe0\x0dp\xcf\xae\xdb\x92\xe7X\xed\x1f\xb4X\x17\xebl\x91\xf9mUV\x9fBC\xcf|\xdb\x94\xfcq&\xbfU\xe6A\xfd\xc3)5\x8c\xdc\x93\xf1\xe5\x9d-a\xeb\xa2\\E\x83\xe4\xa6(\xd0E\xf9\xdb\xec\x15\xb5\xe9mJSu\xb1\xe6E\xa0\xc2R]#\xf4\xaf\xeeZ\xf5b\xaca\x15JD\xb50\xca\x93\xd8;4\xae\x96\xb9;GP\xde\xf4?\x1e\xc9\x11U\x1f\x11\x80i\x8c:e\xd9\xeeL\xef\x96[K\xfd.\xe6\xa2\x90\x04e\x82\x83b\xb2\x93\xe9N\x92\xc2\x92\x01\x17\xad\xcb\xaa\x13\x9f\xf4\x167\x9cH\xf2\xda\xe8\x10\xb2\x98\x83\xe6\xf5z]\xb6-\xf6\xa5\xd9\x1f>x1Z\x7f\xees*\x0e\xfc\xca\xeb\xaf9k\n\x1e\x96k\xc5\xde\x15p\x94;h\xa8\xd6\xc1\xb4\x0e\n\x96\xa5\nPHA\x17\x06Wj\xac\xf2{\x17\xf1\xdaC\xf9\x0b\x90>\x03]\xa7\xd8\x92<\xe2\x810\x96\xe2Z\xd0\x977\x9f>V\xb7\x91\x7f\x9e\xdf\x16\xcdR\xce \xa3\xc5\xf4\xb3\xc1#\x90\xa9\\7\x12\xdf\n\xeb\x8b\x02\xac\x8b\x87\xd9gv\x80\xa9\xc2\xa0_\xad\x8b\x87r\xbd]\x8f=\x12-L\x8d\x8e\xfd\x93?/*`w\xac\xd1\xaeL\xf6\x8d\xe2M\x9e\x83\x8b\xac\x9a8=\xb5(\xca\xa8\x1a\xad\xccMhX\xd1\xb2\x1dL\xd7\xf2\xb4rR\xb4\xa8\xb8\x13\xb7\x1b\xf1v\x88\x8a\x1d#\x1d\x87}\xe3@\xa2\x83\xadZ\x9a\xe7P\x86\x18\xe4\x1f\\O\xe5}\x04\xb3Swj\xe1\xf6\xcb\xba\xacf\xe2C\xd5\x12\xea\xdf\xe3-\x8cm\xa7\xe3\xaa;\xcb-/[\xf9\x05\x0d\x0b6_\x15\xe3\x94\x90Qa\xb2\xc7\xe9\xa3M\x81A\x85 W\xf2\xc4?;\x0e\xc74\xa8\xcb\x19\xb0\xbe\xb3\xbaV\x1c\x01\xaf\x97j\x05L\xc6\x1d\xb8I\xb6q\x16U\xac\xad\xa4\x1cw\xf5\x7f\xb6\xfc#f\x0e\xe6s]'\xe7\x97\x0d\xb0\x07u\xc7U\xef\x90s\x8d\xb2\xf2\xbc\xed/WE{+\xdeu&9\xc5G\x13\x17\xe2>\xa8GU\x87\xb3\x06\x979R\x0c\xa2D\xe2\xea\xa6\xf1\xbd \xe7\xc5j\xbe]uQ\x9c\x9b\xad\xf8$s_p[\xd9\xdb:\x08\xdf\xd5[\x0e%\x97\xc9\x1b\xd5\x12\xea;\xf9a\xdb\xad9\xc0/\xb7\xacRMu7\xa0\x19\xae\xe0\xb8\xaf:\x9c\xc7\x1e\x8d\xc6\xa4\xb2\x15\x93\x83E\xc9\x0d'VX\xfd\xcdY\xde\xfdm\xdd\xb2>\xaf\xca}Q\xfb6\x96\xed\x80\xc8\xb4z\x84lZ\xdf\x04gI\x8b\xb2\x0b\xd9\xaauw\x89\x15\xba\xaf:\xb8\x7f\xc7\xf0s-\xdd\xba\xa9\xefYcr!\xcd\xedb\x0b\x19\x86\xf5v[\xb3@+\x9b\xe0\xbe\xdaz\xbb\xe2\xe5fU\xaa\xca\x0d\xaf\xbds\xc2\xe0\xa9\xb3R}\x9c\xdbz\xb5/U\n\x90\x94\x9f\xf6\xee\xd1@j\xd0\xd2\x06M%5h\x943\xbf85\xe8\x9d~!\x13\xff\x1c9rA\x0dh\xc7\x9a\xa2\x12}v\xe5\xf6\x91\xd4\xb36\x92z\xce3\xc3L\xcdXS\xdd\x96\xa4\x9e\x11\xd9i\xf9M\x01\x81\x01}\xb7?wg\x9cW7u'\xe8&Z\xd9\x176VuS\xa5\x9av\x0e\xb4\xdb\x86\xe5\xbd0M~\xa6\xbam\xa2\x89\xbb\x13\xf9AU\xc4!\x83\x9b?v\x8b\x16\x80ty\xa67o\xdd \x1a\x9a\xbbe\xc5\xc2\x07\x96\x07\x8b\x85h\xd1\xc2\xf4\ni\x80\xe1Q{i^\x17m9\x87\xebU=\xff$\xdb\xed?>V'@\xd5K\x98\xbcZ&\xe0\n\xb1k\xa8\xb2b\xb3y\xdaKb\x96\xdd\x94\x9d\x1a\x8d<\x98\x17\x1b\xbem:\x80\xd4\xfc\xb9\xd9\xae\x98\xca\x85\xd84\xb5x~\xc2U,\xba\xfb\xa9\xe2a\xe2\x1f\xf3\xdb\xa2\xac\x8e\x02\xdf\x94Z\xccT\xf2\x98\xe2\xed\xdd\x9d\x04\x8b\x82\x17\xc2/\xdb\xb9\xaa\x9b\xfePQ\xb5\n\x14h\x96/\xfb\x00\xc7K\xcfn\xc5\xcaZ.I\x9d\xa6\xa8Z\xf56_\x17\xf3\xdb\xb2\xf2H\xb2Hz\xab\xacf\xa5'\xb9\x0dp\xb74\xc4\x82\x03\xae\x08\x0c\x13\x0e\xf0\x84D\x9d\x9c/\xcb\x1b\x18\xf6\x8e\x1a\x016\x0d\xbb{\xe2\x01\xe0\xb6ho3?\x8cAy!9\xd7\xe1\xb3\x96\xf1Yh\xd85\x86j)\xa0[+,\xb01\xf2\xe0\xb0 \xa826L\xb73\x16w9\xa4\xb8\x1d\xf0\xae\xef:\xdaE\xd1\xf0\x96\xf1?\xcb;\x10\xea\xba\x12\xe2\xe4\xb3p\x95QUEUQWO\\\x8e\xc9\x15z\xf50\x88a\xcfs\x8e\xf8\xe9\x89\xaa\xd7\xab\xfb>\xd1\x05\xc7\xfe\xb8i\xea\xb5\x19\xc7\xa1\xde\xf2\xcd\x96\xf7\x7f\xeb\xc7\x0eOiR:\xff\xc9\xdb\xd0\x8b\xce>\xcd\xf5\x8a\xcd\xe6\x89\xae$\x9f\x0fM\x02<\xd1%\xd9]\xb9`\xd5\x9c=\xd1\xe5\xba\xfe\xd7O\x7f\x02\xaf%1\x02\xd7-\x8bh)C\xb6\xfa\x0d&uj$\x1b|Et\xd3$\xb9\xa4\xa8G\x12\xf5\xceqMc\xee\x8aU\xcb\x82\x99hnZ\x10B\xc4 \xe0^a\x98\x97\x17N\xaaZ\x19\xca\xc1)\xd3\xe2$\xf1\xea`96A\x9f.a\xad\x0c'd\xad\x0c\xe1}@\xde\x01\xd0\xc5\x85\xa5\xad\xfb\xe3\x10w\x00\x12\xef\x02L`;\xa3\x05rg\x90?\xf4y\xa0\x0c\xcdzFK\xeaY\xd0\x18\xf3i,\x95\xfd\x8c\x16\xb8)\xf8-\x9a\x015\xe6\n\xef$\xb3\xa0\xc6\xf0Lh\xb4(\x9b\x19M`C\x8d\xed\xc9\x88\x1aKcE\xa3\xc5i\x8e-\x89\x195\x96\xca\x8eF\x0b\xbc\xa9\x9b$\x86\xd4X\x12K\x1a-m\x8a\x8c\xb62\x14[\x1a-e\xc8\x9eb\x18Sc\xd9X\xd3\xbe\xc0}\x98Sc\x13\xd8ScY\x18Tcx\x165Z\xd4\x80U\x8d3\xa9\xc6\x0e\xc0\xa6\x1a;\x14\xa3j\xec\x00\xac\xaa\xb1\x14f\xd5\x18\x9a]\x8d\x96d\xb3\xad\xb2\x7f\xc7\x19VcI,k\xb449N`\x99Vc<\x8dm5\x96\xca\xb8F\x0bL\x11\xeeV\xb67\xf3j,\"\xe2\xad,a\xea\x18\xfdF\xea-u\x96\x99\xc4\xc6FK\xe3\x86\x9dE0\xb2\xc6Rj\x9c\xc8\xcc\x06\xcb\x1a\xcef\x11\xec\xac\xb1$\x866XRT\x16\\\xd9\x14\xce6\xde?Q\x12\xe1\xca\xa6p\xb7\xb1\x029J.\\Y\x1e\x0e\xd7\x18\x12)5\x16\xe5r\x8d%\xf0\xb9\xc6\":\xbe\xd2\xa6\xf0\xba\xc60\xe5\x07\xa5@\xb3q\xbc\xc6\xa69\x1f\xcf\xf5\x1a\xc3\xb4|\x02\xe7kl\x12\xefk,\xe2\xf1|\xfc\xaf1$\x07l\x0c\xc3\x03[\xc7\"\xb8`c\xc8\xbb\x92\xce \x1b\xc3\xf3\xc2\xc6B\xc2\xe5\xca\xb2\xf0\xc3\xc6\x928bc\xfb\xf0\xc4\xc60\xaeO\xe0\x8b\x8de\xe7\x8c\x8d\xa1\xea\x1by\x92\xd2\xf9\xe3`q\xd7\x8fq\x0e\xd9\xd8\x14\x1e9X\xa0A\x00\xc2\x02\xe8\xca\xa6\xf0\xc9\xc1\x02\xb9Ys\x0b\x88\xa1+K\xe5\x95\x83\x85\xf5,3b\xb9\x03\xc1/\x1b\x0bi4+\x0bI\xa5+K\xe7\x9a\x83\xc5E\xc4\xd4\xcdAx\xf69\xd2A,.: \xac\xae,\x95\x85\x0e\x16\xf6\xf1\xc3\x8f\xc7\x08&\xdaX*\x1bm,\x81\x916\x96\xccJ\x8fND2\xd3\xc6b\xb3\x80\xa8\xf8\xb52,\xd7\x8ae\xa9\xbbrS\x99\xea\xee\xc4\x14\xb6\xdaX\xc4\x19SX\xeb`\x81\x08\xb1veS\xd8\xeb\xe8\xc3\x14\x17nW\x96\xcebGG\xf1\x88\x88\xbb\xb2\x00\x9b\x1d\x11\x8d6E\xc8\x91h\x96\x92`\x86N,\xa3M\x11hS\x04\xf4,))\xf1K}.\xd1\xa6\x08\xb4)B\xaed,d\x1eP4\xf9*!\xe9\n#\xf9\x9f\x92dE\x9b\"\xd0\xa6\x08\x98\xe4'\xda\x14A\xda>IL\xb4)\x82\xab\xa4h2\xd2\x94$$\xda\x14\xc16DR\x11m\x8a@\x9b\"\x0c\x8c6EHK\xd4\xa1M\x11:\xa3M\x11\xb4\x99\x0d\x06vX\xc1\xc1G\xe4\x905\xec\xa9A\xfd\xf7n+\x01\xbe+6o\x0fK{n-\x00\x1e\xa62u\xcb\x01\xe9\x07}\x86k\x83\x81\x8b\xceO\x83\xcd\x05t1\x0e\xc0n\xb0\x9d\xc0\xa5:L\x16b\xbe4\x9f\xedn\x02\xb6+l\x1bTF\x1d\xa4\x9fF\xb9\x9a.gV\x9d\x93\xe4[\xb0la]/\xb6+\xc7\x8a\x84\xb7^\x10\x8dga\xd0\xd2\xe8r\xce\xa01#\x06T\x83\x1e\x8a\x07\xd5\x8f\x9d\xfc\xd2\x0f\xd1\x9b\xeb\xe2\xc1\x12\xfe\x0d\xd5*$w\x1d\xc7\x83\x07\x15\x1f^\xd4T\xdc\x10Q]\x84\xdeRU\xf6U\x9dU\xbc \xc6\x0f\xb3\xd6\xdb\xbb4fU\xc5j\x0d\x98?\xc9\xa9f)\xd7\x1c\xbb\x9b\xe1)\xc9\xe2\x15d|\xda\xfa\xf7\xd7\x1b\xd6\xc0\xa6(\x9b\x13\xde\x94\xb53\x9d\xc0\xda\x81\xe4\x99xf\xb7F\xc6A\xfdm\xb6\x86Ys\x8c\x97\xa2\xd9\xb0\xa6-['\x9e/\x1c;[\xb0\xaa\xf6\xe4\xd8\xa5=\\}i\x03lO\xfcY\xae\x96\xcf\xeb\xb2\x02\xf9{Yi&j\xb7\xc4uY\xcdF\xbc\xef\xc4\xbai\xb5e\x7f\x0f\xdc\xbdRG\xba\xde\x16e\xf5\xea\xbe\\\xb0\x0e\xe7\x8a\xe2\xc5\ne\x12\xd3\xa3bDr*\x88\x13\x14\xfa\xd4\xf3?\x83r\x10\x8c\x88z\xa7D\xd9\x10M\x83\xa8\xa3%\x052,\x8b \x10\x82@\xa2\x11\x10\xdcHE\x10\x08A \xbe# \x02\x91F\x10\xc8\xae\x11\x04B\x10\x88\xcf\x08\x02!\x08D\x1aA \x04\x81\x10\x04B\x10\x882\x82@\x08\x02!\x08\x84 \x10\x9f\x11\x04B\x10\x08A \x04\x81X\x96# O\x10\x884\x82@\xfe^ \x90dX\xa2\xaeW\x01T\xa2\xaeW\x03HB\x1c>\xe0>\x06l\x848\\\xff\xfd\xf9\"\x11]\x83m\x1b\x02\x11\xa2\x91v\x80s\xa7\xd5\xbdyk\x00\xd18NU\xf3\x99\xcaD\x9f\x85\xd4=#+\x19\xfb\x940h\xb5\nA\xd6\xf5\n\x1d\x80\x14^\xf9pqJ\x01G\xa0\x80ct\xb5\x0d\xb3`\x05\x14p\xa4\x80\xa3\xf7H\n8J\xa3\x80\xe3\xaeQ\xc0\x91\x02\x8e>\xa3\x80#\x05\x1c\xa5Q\xc0\x91\x02\x8e\x14p\xa4\x80\xa32\n8R\xc0\x91\x02\x8e\x14p\xf4\x19\x05\x1c)\xe0H\x01G\n8Z\x96#\xf8C\x01Gi\x14p\xfcR\x03\x8e\xe3\xc4ZW\xd8\xf1\xe7>\x0f\xd6\x04\x1f\x8b\xd5\xcaJ}5+\x8b|\xaeT\xcd\x97\xe5\x1d\xab\xf4^\x86\xce\xc8d_\xa2\xfe\xf5\xd9\xc6'C\x89\xc7\xfc3\x84~\x94\x1b\xebfV,\x16\x0dk=G\xa1\xd6?0K\x08\xe0\xb8\xe4 \x16k\xfe6\xde\xf0\xe1\xa5\x7f \xcb\x94\xf7\xbf\xe1\x9a\xcdo\x81U\xf3z!W)\xe5\xa3\xef~\xc5\xcd\xc5\xed\xad\xdam;\xdbl\xaf?1\xefNl\x11\xef\x02\xc2\xc3\x80\x08\xb0\x01\xce\xc3\x90\xe0e\x98\x10l\x0b\x16\xe6^q |\x80\xe4\x0e\xbaA<\xf0\x06\x13\x82o\xe1\x06\x14\xfc\x16\x1d\x80\x83\\A8\x98\x18\x88\x0b\x16(\x9c\x8b\x0e\xc6\xc1\xfe\x019H\x0e\xca\x05\x8b\xd2\xc1\x82\xa4\xc0\x1c\xe4\x0e\xceAb\x80\x0eR\x83t\xe1\x9e\xdd\x05\xf0\xb0\x81:\xc8\x1d\xac\x03\\\xc0\x0er\x06\xed`\xef\xc0\x1dL\x0b\xdeA\xae\x00\x1eL\n\xe2\x85\x1f\x07k\x87\x8eH\x13\x0e\x10\xcc\x83\x03\x06\xf4\xe00A=H\x0c\xec\xc1\xb4\xe0^l\x08\xc6\x05\xf8 o\x90\x0f\x12\x02}\x90\x1e\xec\x83 \x01?\xc4\x90\xf9\x0d\"\xe8\x079\x02\x7f\x10\x0b\xfe\x01~z\x86\x08\x02B\xe2,.9\x18\x18,M\x06\n\x11\x01AH\xa8e\xc6\xc0 $\x05\x07!w\x80\x10&\x06 \xc3\xfd\xaa\x8d\x07\naz\xb0\xd0[\x9e\xb8b,`\x08\xd9\x82\x86\x80\x8f}\x01&x\x08i\x01D\x88\xad\xf8O\x0c$\x02\xa2\xdc\xc0\xa2b\xa6\xa0\"Lr.>\xb8\x08\x88VN\x082\xc2\xd4@#\x84\xbd\x9a/\xe0\x08\xf8\xa0# \x03\x8f\x80\x0e>\x02\xce\xeb\xe9AHH\nDB0\x18 \xb9\x02\x92\x90\x1a\x94\x84=\x03\x93\x80poB\x80\x12\x0e\x11\xa4\x04L\x1d\x03OB\xbe\x80%`\x82\x96\xb0G\xe0\xd2[\xa080\x14\xbc\x84\xdc\x01L\x88\x061aj \xd3[\x9a\xfaF\x0d\x7f\xae#\x02\x9a\x10\x8c\xbb@0\xb0 \x93\x82\x9b\xde\xa2\x82AO\x98\x1a\xf8\xf4\x96\xa6\xe6\x81\xa1}C\xb3\x05@\x01\x15\x04\x85 \x81PH\x0b\x86\xc2\x94\x80($\x07E!\xf2\xb6\x8d\x04\xaa !X\x85\x0d\x90\xc2\x94 )\xa4\x06J!\xdc\xf0)\x01SoaV8\x12\xfb\xc8\xe0\x02\xa7\xc1\x07B\xee\x87\x1f\x08\x9eB\xde\x00*\xc4\x82\xa8\x10\x0e\xa4z\xcf\x99\x1a`\x85\x8c}7!\xd0\nI\xc1V\xb0\x02\xaeC\xfbkQ\xae\xd8\"\x1c\x9d\xba\xae\xeb\x15\xf3.\x1dc\xbf\xe1\xd5\x95t,n\x01\xf7\xb7L\xaf\xe4\xd8\xbb\x10\x8b\x1e~\xcdX\xa5\x8f\xf6\xdf\xe1\xa6^w\xdb\xf0\xca\xb0\xadZ\xeev\x8a\xd8\x82>\xc4\xd7Jl\x0b\xf4\x85\xc6\x9b\x7f\xeb\xbf{O\xfbZ\xd5\xf3\xa4\x93)\xd6\xff%\xc3\x1b\xeeS\x10kA\xac\xdaz4yA\xc6\xd1\xbf\x7f\xff\xee\xed\xec\xf2\xea\xcd\xd5\xc7\xcb\xd9\xc7w\x97\x17g\xa7\xe7?\x9c\x9f\xbdE\x9f!\xfe\x95x\xf8\xf9\xbb?!\x8f\x0f\x16n\xd2?\x93\x9a\x10\xca_E\xf9\x13\xdb \xd4\x85t7\xd6\xf3\x8d~\xf7m\xf9\xdb\xd7e5_\xf9_\xfc-[\xdd\xbc\xea5\xa8=\x9d\xa0\x93\x01\x9e\xa9m\xa6\x9f\xa0i\xe3K\xf6q\xf3\x9a\x17\xab~\xf7\xeev\xabb\n\xfeW\x91\xbd1\xbe\xb5\x9f\xb9\xa7\xa1}\xed\xf6n@w\xdc \xe6o\xff\x9d\xb3f\xdd\x82{\x9b\xec\xde\xba\x06\x84\x9f\xd0\xbd\xe3\xf6\xeb\xba*?1Gvqo\x88\x1b\x0c >\x82\xfe\xaa\xd6\x9e\xff\xb7\xdbuQ\xbdjX\xa1\x84\xb8\xe5\x8c.\xe6#\xc0\xf8 4\x01\xc0\xbd\x04\x04\x1c\xa6\x8d\xe6\xb2}#\xfb\x04\xc5\xfe\xc7\xb6\\V\x05\xdf6\x0c\xbef\x0f\xe1\x8f\xe4\x8f\x17u\xc3\xc5[\xe6_\xd9\xe3u\xd12\xef\xe0\x0dp\xcf\xae\xdb\xd2'K\xaelJ\x8bu\xb1\xce\x16\x99\xdfVe\xf5)4\xf4\xcc\xb7M\xc9\x1fg\xf2[e\xces\xd70rO\xc6\x97w\xb6\x84\xad\x8br\x15\x0d\x92\x9b\xa2@\x17\xe5o\xb37\x11\xbe\xb7)M\xd5\xc5\x9a\x17\x81\nKu\x8d\xd0\xbf\xbak\xd5\xef1\xa16H\xd9ch\x8fo)\x80\xbfC\xe3j\x99\xbbs\x04\xa5\xb5\xe1\xc5\x91\x1cQ\xf5\x11\x01\x98F\xcd\xf5ehs<\xbd[n\xab\xf0\x06\x1a\xb8\x8d=\x92\x1c\xb4(8{%\xca\xca\xe6$\xb5'\x88\xdfE\xeb\xb2R\xfb\x86\x84\xba\xf2p\"\xc9k\x19\xda^1\xceb\x0e\xeaw\x1b@\xbd4\xfb\xc3\x07/F\xeb\xcf\xbb\xdb\xd6\x8c-\xd3+o\xb4\xa3B\xf0\xc1\xc4\xde\x15p\x94;h\xa8DO\x8aU|\x93\x06e\xaa\x00\x85\x14ta\xf0y\xc3\n\xae\xbew\x11\xaf=\x94\xbf\x00\xe93\xd0u\x8a-\xc9#\x1e\x08c)\xae\x05\xb3{E\xb9\xd3m\xe4\x9f\xd5\xfe\x15\x0b\xff\x0e#\xbd\xf5\xb3\xc1#\x90\xf8\xf7\x8d\xc4\xb7\xdc[}\xf4\xb6.\x1e\x02;}\xf4v@\x07\x98*\x0c\xfa\x95\xd9_g\xe4\x91hajt\x1c\xee\x02\xc2\xeeX\xa3]\x99\xec\x1b\xc5\x9b<\x07\x17Y5qzjQ\x94\x01}\x08ce%\x9e\xb6\x96\xed`\xba\x96\xa7\x95\x93\xa2E\xc5\x9d\xb8\xdd\x88\xb7C\xf0M\x03x\xc7a\xdf8\x90\xe8`\xab\x96\xe69\x94!\x06\xf9\x07\xd7Sy\x1f\xc1\xec\xd4\x9dZ\xb8\xfd\xb2.\xab\x99\xf8P\x9d\xf5\x1f\xaa{\xbc\x85\xb1\xedt\\ug\xb9\xe5e+\xbf\xa0a\xc1\xe6\xab\xa2 \xac\x11\x99\x8dy\xf4\xd1\xa6\xc0\xa0\xaa@Y\xcd\x99x[\xb6\xeb\xba}\xd5.>\xc1?\x1c\xff\xe3?;\x0e\xc74\xa8\xcb\x19\xb0\xbe\xb3\xbaV\x1c\x01\xaf\x97j\x05L\xc6\x1dd\xcc@|f;\x8b*\xd6\xf5\xb6\xa3\x8a\xdd\xd5\xff\xd9\xf2\x8f\x989\x98\xcfu\x9d\xd0W6\xc0\x1e\xd4\x1d\xd7\x1b\x11\xd5r\xbb%\xcf\xdb\xferU\xb4\xb7\xe2]g\xf4>|4q!\xee\x83zTu8kp\x99#\xc5 J$\xaen\x1a\xdf\x9bp^\xac\xe6\xdbU\x17\xc5\xb9\xd9\x8aO2\xf7\x05\xb7U\x7f+[\xe9\xbbz\xcb\xa1\xe42Y\xa3ZB}\xc7\xec=\x94\x8e\xe1\x97[V\xa9\xa6\xba\x1b\xd0\x0cWp\xdcW\x1d\xcec\x8fFcR\xd9\x8a\xc9\xc1\xa2\xe4\x86\x13+\xac\xfe\xe6,\xef\xfe\xb6n\xad\xed\xba\xdc\x17\xb5oc\xd9\x0e\x88L\xabG\xc8\xa6\xf5Mp\x96\xb4(\xbb\x90\xadZw\x97X\xa1\xfb\xaa\x83\xfbw\x0c?\xd7\xd2\xad\x9b\xfa\x9e\xa9\xd7\xd45\xebn\x17[\xc80\xac\xb7\xdb\x9a\x05Z\xd9\x04\xf7\xd5\xd6\xdb\x15/7\xabRUnx\xed\x9d\x13\x06O\x9d\x95\xcd\xd3\x83az\xf7A\x95\xf5\xb3\x00\xfffw\x9bb\xa9\xf7\x18\xdb\x1d\xd6\x06\x97\xe9\x0f\x1cJ\xfa\xf5\x7f\xd6\xfd\xde\x95\xd3\xa3,8\x11\x8ch\xfc\xb1\x07>\xf3\xa6\x8fDG\xde(,8h\xea\x7f\xf9\x06fS\x0b3\x16\x8b\xff\xd4\xbcm\xd1\xb6j1\xf0\xa2X\xb2\x0f\xeco[\xd6\xf2c\xf5\xbb\xa7\xb0~+PQ\xacp$\x83u\xddr`\x92Z\x95\xb8\xeb1\x9cs+\x0c\xb5\xe1\x8fP\xfa041\x862\xf9\x18W5\xac\xeb\x86\x991\xcb5\xb2\xc9\xbe\xba\xa73\xb7\xfe\x8f\xed\xd8\x8erj!\xb54+\xaa\xfdv}f\x98\xb54||\xed\xb5\x1d=\x17\x83\xc0L=\x80\x9e\xc3\xef\x0b\xf1\xbe\xe4GP\xf2\xd6\xc0\xe6\xad\x1cEU\x1cF.\\\xdc\x97\xed\xb0\x7f\xf8\x1a\"\xb3\xf3\xfad8\xac\xd4\xe3N\xfa\x9c\xb1^\xfe\xb1\xfb\x81\xd4\x1fG\xbf\x92\xfa#n\xbe\x05\x13\x12\xd2Tg%\xf5GD\xf2\x19\xcf\x91x6%\xe9\x8c\xd4\x1f3&\x98\xa5$\x97%%\x96\x91\xfa\xe3\xbeId\x13\x12\xc8\xb2$\x8f\xa5'\x8e\x91\xfa\xe3>\x89b)Ib\x13\x12\xc4H\xfd\x91\xd4\x1fI\xfd\x11\x9b\xe0\x955\xb9kJb\x17\xa9?\xfa\x0e\x8b&p%$oa\xb4\x0dS\x92\xb6H\xfd\x91\xd4\x1f1 X\xa4\xfe(m\x9f$+R\x7ft\x95\x14M\xa4\x9a\x9aD\xe5}7\x90\xfa\xe3\xae\x91\xfa\xe3\x84\xe4\xa7x\xe2Sj\xd2SB\xc2Sr\xb2SZ\xa2\x13\xa9?\xa6%3\x91\xfacg_\xa4\xfacO\x1d\xf6\x93\x9eWr\xe4}\xbd\x9bV3\xf8\x88\xd4\xc98\xac*\xaeWj\xe1E\x05\x16\x85\xdb\xac\xd0\xb0\xd4xT\xd0\x9eK\xe4\x11\xe4\x1b\xe5\xb5:\xd7\xfa[\xc3\xfe\xb6-\x1b\xb6x\x0d7\xc5j\x10\x1bs~\xa9\x9b*\xf7Q\xe1\xe3O\xec\xd1W\xf5Q\x9cU\x07V\x0b=\xea7\x8co\x9bJ\xe9\x0b\xaaX\x9f\x8emuQX\xb9z\xb5\x1c-\xf3\xc8\x16\x88\x86\xc6\"\xab\xef\xc5;\xba\xae\xe4\xe7m}s\xd32 \xb5\x0f\xab\x0b\xd6\xea{\xcbxfoy\xd62\x1cNT\xf5\xf3\xf9q\xb4\x8e\xa0\x1b#]Ym\xd7\xac)\xe7\xe6or\x80\xd0\xf0\x82Z\xc8\xb9e\x95q\xfc\xb6\xea\xd6\xceF3\xe6sY\xda\x8a\xb5m\xefB\xb5\xda\xb4m\x85\xab?\xb1D\x7f\x0e\x8b?\xb0sGqj\x87{W\xe5\xba\xc4zW\x1ek\x00\x00_\xf8Z\xad\xab\xda=X\x93\x11\xdb\xd5(\xde\xaaVQ\xec?\x9d\xdf\xc0\x8a\xddp\x13\xee\xd7\xf1\x7f3\xcf\x95K\xc2\xea\x01Q\x17\x11~\xbe~\x04V\xcco\xa1\xd8l>\xa3\x17\xed |\x7f~\xc8\x97\xd6\x19\xc2\xa3\xb2\x87\xd6\xc0\x9b-\x03\xf1\x1fe\xb5(\xe7\x92\xd1\xd2\xc1!\xedAy\xa0\xeeHvqe5_m\x17\xa3Yl\xa1\xae\xd2E\xe7FwL\xc6z\xadEc1l\x0e\x98\x96Aa\x1f\xcf\xdb\xd1\xdd\x1a5AN\xfc\x1b\xd6\xea\xa8\xbc|\xbc\xfa\xe7Q\x00\xd9r8\xb6\xe5 tK\x1a\xdf\x92\x9dp\xc12.Y)\x17<\xe7\x92L\xba\xa4\xb3.\xd1\xa1\x10'{\xbc7\xef\x12\x95\x04\x8b\x93\xab/&\xf08)D\x8e[ 8$\x0f\xcc\x9d\xf1U\xdbp\xdf\xbdS\x84\x81\xa5\x00\xb0\xa7<\xac,pH\x14\x18W\xf3I\x82\xc0\xc9r\xc0\xd1u\x92\x90\x14p\xaa\x10p\x92\x0cp\x9a\x080Z\x02x\x82\x00pH\xfe7\xea?\xdc\xcd\xdeW\xf8\x17#\xfb\x8b\x13\xfd\xcd\xd4\xa0\\r\xbfx\xb1_\xbb^{U\xbc;j/\x99\xdf\x88\x8a\x1f\xdf?\xaa\x1c\x95\xf7\x8d\xdeJ@{\x052\n\xfbF\xf5\x0d\xe3\xa2\xbe\x99[\x96Y\xce\x17-\xe6\x1b\x95\xf2Mo\xe7\xbe2\xbex\x11\xdf\xf4\xba\x05\xefA6\xf9^\xacxoT\xba7\xbd\x81\x93e{q\xa2\xbd\xd1\n\xc5\x05{q\xf7#\xa7X\xef>R\xbd\x18\xa1^\xb4S\xc2\x92\x89\xa9\x8eI\x11\xe8\xc5\xbc%\x00-\xcf\x1b\x13\xe7\x1d\xb4d\x7fi\xde\x0c/*\xbc(/\xee.@\xba \xaf\x12\xdd\x0d\x94\xb7\x97\x1co\xd4G\x80\xf2\x13\xa0\x84x\xa3\x1d\xde\x18\xde\x99\x80\x96\xe0\xb5%v#\x05\xa2Efq\xf2\xbb\x07jv\x8a\xf0\xae\x1a\xcb\"\x05\xe6\x90\xddM\x12\xdd=\xa0cPr\xbb\x9d\x9cn\xa4\xc0\xa8\xd8n\xd45()]\x94;p\xef\x04HrZf \xdd\x80\x80.Z>7\xea\x0b\\\xeb2\n\xe7&\xcb\xe6\"Es\xe3\x0d\x99&\x98\xab\xa5P\x1d\xe5\xf9\xe5rs\x8a\xe5\"\xa5r\x93\x85rmQ\\w\xe3\xfc2\xb9yEr1\x12\xb9y\x05r\x11\xf2\xb8\x93\xc4q\x8d\x10\xae\xab\xbc\xa84\xee4a\\\xbd\x1c\xe9(\xcf/\x8b\x8b\x16\xc5\xc5\xc9t&\xabt\x8eJ#\x91Ne$\xd2I\"\x9d\xbd\x91H'\x89t\xf6\x965\xc5!%\xc1!)\xbd\x81D:\xf7Mj\x98\x90\xd2\x90%\xa1!=\x9d\x81D:\xf7IcHIb\xc8\x9c\xc2\xc0Q \x0c\x19\xd3\x17\xb0\xc9\x0b<-u!5q\x81D:\x07\x96\x9c\xaa@\"\x9d\xa8\x04\x85)\xe9 $\xd2\xe9;,\x9a\x92\x90\x90\x90\x80\x91\xa0LIF \x91N\x12\xe9\xc4\xa4\x1c\x90H\xa7\xb4}\x92\x0cH\xa4\xd3UR4\xad`jR\x81\xf7\xdd@\"\x9d\xbbF\"\x9d\x13\x92\x07\xe2\xa9\x03\xa9\x89\x03 i\x03\xc9I\x03i)\x03$\xd2\x99\x96$@\"\x9d\x9d\x1d\"1 G\x9fKH\n\xc0\xa7\x04`D:\x872`VQ\x83\x8f\xc9\xe1Q\x03PaG\xf3k \xe5i\x0fN\xa5\xdc\x8dq0\"\xf6rg\xbc\xd9FD\xfd2\x8a\x9d\x9dX\xd1UUdP\xf8\xec\xad\x15\x8b5\x1ah&$\xe9\x95@3-wK\x9fYE\xbe0\xaex\xa6*h\xbd\xaff\x8e:\x1a\xe3\x9f!\xe4\x15c3\xa2\x17\x00\xc4E`@\xda\x075\xdb\x94!V\x99\x00\xb9X\xd3\x1f;\xba\xbeaC\xae\xd9\xfc\xf6\x8f\x7fxe\x84\xd8zA\xb7`q\xbc\xcf}\x08-Y\x0f\x1f\x9a\xa7o\xf5\xce\xf5\xf7o5\x024\x0c%n(\x9b\xd2\xd4A\x86\x86}\x03\xe4\xe2\xa6\xfa\xb1asV\xde\xf96\xf4\xc6\xfb\xae\x1f[\xfa\xd7\xb5v\\]\xe9\xe5U\x9d\xf0r+\xe6\x98\xd7\x8f\x10\x10\xce*\xe6R*T\xcb\x7f\xfa\xdf\x82\xf5}\xa5\xbe\xb0\xea\xca\xea]zU[\xc6u\xeayYt\x00I(vqg\x93\x19\xf5\x8d(\xd1\x7f\xdd\xc8-\xbd.VE5\x8f, g\x18 \xaa\xda\x9b\xc2\x05\xd8>\xa3\xb0\x97=\x8b\xc1\xf6\x92\xd3\xba\xac,NKv\x88\x9e\xed\xa9\xea\xb5\x91\x92\x157\xb0\xa8t\xe5B\xf1\x82w\xef\xaf\xce^\xcb//\xcd\xef\xa8O\x98R\xae2\x9fW\\O\xee\xba\x95\xfd6\xd8 \xf4\xccOs+\xfe\xc7\xd5d\x8c\xb4\xdddBt\xc2e\xbd\xac\xe5\xb4j\xea:y\xff\x10\xd9\xf4\x8d\xb8\xc2]\xb1\x922\xd2\xb5\xfd\xa0\xb1\x879\xdb(\x9djgq%\xb7\xd6\xdc\xdd\xad\xd1=u<\xcd\xd5\x83\x83\xf6]\xabvHn\xb7%7\xb2\xbf\xce\xc2\xe6+\xa9u\xdd\xbd\xb0\xc7n\xa0\xed\xb3\xa5\x0d\x9aJ\xdbg\xa3\x9c\xf9\x05m\x9f\xbd\xd3#\x86\\\x9e5\x89\x8f\"z\xae\x82N\x9c_\x18D\xeb)#Z/\xcf\x8b\x9eh=\xa2\xf5\xdcF\xb4\x9e4\xa2\xf5v\x8dh=\xa2\xf5|F\xb4\x1e\xd1z\xd2\x88\xd6#Z\x8fh=\xa2\xf5\x94\x11\xadG\xb4\x1e\xd1zD\xeb\xf9\x8ch=\xa2\xf5\x88\xd6#Z\xcf\xb2\x1c\xe4\x14\xd1z\xd2\x88\xd6#Z\xef9\xd1z\xb4\xa7\xf6\xd4\x0d\x8biO\xed\x03:7\xbe\x1b4\xed\xa9\x9d\xc3\x8b\xb4\xa76\xed\xa9\xfd\xc5\xef\xa9mc\xe6'\xbf\x0d!\xde\xc0\x86\xdb\x16V\x86\xa6\xcd{\xe2\x126E\xe9\x86\xcf\xdf\x8e\x15\xbb~O\xc8\xb9\x0f\xdb\x98\x84\x95\xc5\xc0\xf1`\xd1\x10-\x1e\xd2\x90qD\xa0\x03\x17-0G\xa6\xc2\xe2\x91\xd0d\x14\x15O\x00\xc53\xb75\x1d\x11\x8f\xb45\n\x88\xc7\xf0\xf0\xf4\x06\xee\x8f\x86\xe3\xfc\x95\x13\x0b\xc7A\xe1\xe9H\xb8F\xbf=\xe5a\x80\xf0\xe0\x0d\x0c\xc2\xe0Y\x1e\xfa \x06\x8e\xe8\x1b1\x04O|u\x88S\xf8\xea<X\x1a\xaf\xebO\xb0Y\x15s\xe72\xa82\xbd\xad\xbc\xb8fx\xeb\xe4d\xbf\xc4\xb7ON\xf4\xcd\xb0\xa6\xc67\xdb\xaa|\xe87\xd3\xc79\xa6/*\xb0\"\xa2\xb6\x89\x9fEd8\x01\xef\x98\x94\xc6\x8e\xae>x-k\xd4M\x1f\x12\x08q\x82\x1e\xe2\x17\xdb\x95\x8a\x9fi\x18\x0f\n\x8er\xc1\x81\x9a\x1ehSj\x1d\xb1.u\xbcT\xcf*\xde<\xf6$Ye\xbd\xc6#{\xf5\xcb%\xfc\x86\xad\xd8]QqX3^,\n^ \x00G=H*\xa2\xdc~\x8amnR\x1f4\x05\x03sMRZ^\xcb\xed\xa5W+\xf9Q\x0fmY-W\xd6\xd4\xee\xa5k\xb5\xbf\xaf\x98\xf8\x7f'%)\x1e\xb6\xae\xb4~\xa2#>>*\xf98\xbe\x92\x18<[\xc0\xaal\xf9!\xb9.\xd7\xe9'\xaeY\xd4\xe8@\xe2\xbd\xb4\x11\xefE\xbcWo\xc4{\x11\xef\xd5\x1b\xf1^\x9cx/\xb7\x11\xefe\x8cx/\xe2\xbd\x88\xf7B\xce\x92\x88\xf7\xea\x8cx/\xdb\x88\xf7\"\xde\xcba\xc4{9\x8f!\xde\x8bx/\x8f\x11\xefE\xbc\x17\xf1^\xc4{Y\x96\x83\xbd!\xdeK\x1a\xf1^\xc4{\x11\xef\xb5_\x9ds\xf2^.\xa4\xab\xf53]\xd6\xf7\x7f\xb7\x87\x99#X\xd8:\xe8.\xab|\xf9\xc2\xec\n\xda!c\xdc;'\xbb.\xa3Ox\xe6h\x97\xf0\xee\xf3\xdcA9\x06R\xa1V\xb70\x0bD\x90\x1b\x13\x8b\x80bhT,k\x0b\xb3\x02cQM\xaa 4\x16\xc7\xc6\"\xe0X\xb4\x8b)\x8bu4e \xf8\x18\xea\x86(\xc3\"d\xf8\x1b\xa8,/F\x86\x03\xc9\x92P\xb2 >\xc2\xe0d\xc9~\xca\x87\x94\xe1\xa0\xb2$\xac,\xc1Ii\xcd\xce\x06\x97\xed\x87\x97\xa1\x00\xb3\x839\x01K\xa1e\xb8\xeb\xf8\x8ae\xe5\xd4\xd2H\xb5\xac\xac\x1a\xae\xcd\xd9x5\x14\xb1\xb6\x1f\xb3F\x1bOk\x1b4\x956\x9eF9\xf3K\xd8x\x1a\x01u\x06\xbf\x84\x82\x9c\xe7\xa84\x0794\xda\x96\xda\xf9IG\xc4\xa76\">\xf3|.\x11\xf1I\xc4\xa7\xdb\x88\xf8\x94F\xc4\xe7\xae\x11\xf1I\xc4\xa7\xcf\x88\xf8$\xe2S\x1a\x11\x9fD|\x12\xf1I\xc4\xa72\">\x89\xf8$\xe2\x93\x88O\x9f\x11\xf1I\xc4'\x11\x9fD|Z\x96\x83\xbe#\xe2S\x1a\x11\x9fD|>O\xe2\x936\xa8N\xdb\xfd\x976\xa8>\xa0s\xe3[+\xd3\x06\xd59\xbcH\x1bT\xd3\x06\xd5\x7f\x9f\x1bT\xf3\x87\x8e\xf8o\xcb\xf5vUp\xbd\x82\xbd\xa9\xdb]\x92\xffR\x1f\x02\xe6\xd8\x16\xd8\x03\x9bo\xb9hb\x01\xbc)\xaa\xb6\x90\x8b\x94\xea\xa3\xad\xe5\xe5\xba\x90?.\x0b\xd1G\xe4\x90\xa0\xca\x1c\xf0\xfa\xa6\xdc\x17\xa6\x89\xcf\x14\xcd_\x16\xed\xac\xacn\xea\x08\x8df\x0e3c\xa9\xf8o1\xd4\xc8=R\xaf\xeb-\xd7\xee\xe8\xc7O\xedO'\xd2\xe8\xad'D\xc9\x0cQ\x91\xfb\xa2\xe2\xcc\xa1\x14\x0b\x98\xa0\x04\x82\xa6\xc2,\xfc\x03\xfc\xa9h\x7f\x91\x151>Y\x17\x0f\xe5z\xbb\x86mUr\xb9b}_7\x9f\xe0^G&U@\x8c?\xf8\x01\xb5\x0dkD\xe5\\\x1f\xa0\xa2\xd5\xc2\xb9O\xd4\xe6?\x15\xed\xc7\xb6o\x98\xde\xd3\xb6\xbe\x917\xb9\x98s\xc5\x10\xcc\xebJ\x07\x97\x87E\xa9\x11%\xd2\xa1\xf4\xcb\xa1l\xedW\x85 ^\x1c\xa6\xeb,\n^\xec\xe9@\x1c\xcf\xe8\xed2o\x0b^\xc8\xa9^\xf5(k\xd3\x0f\xb57\x8d\xdc\xf2W}9\xc9(s\xb5Xy\x02E`F\xa8\xba\x92\xef\xa7\x9f>^^\x05\xc2\x80+V-\xf9-l\x1avS>\xa8\xe7S\x0e\xddb\xb4o\x99\xf8\x98\xe1L\xd5FUb\xbb\xe2\xe5f\xe5\x0b\x9c\x99:vU\x18\xbfc{{+>n\xc5\x94`\xa1\x89\xa2nS\xe4\x96\x8bY\xd2\xa6\xde\xc8!rq\x04\xd7[.+\xe8m\xf1\xba\xeds\x87\xa0\xacZ\xce\n/\xd8t\xcd\xe6\x85DN8\x14\xab\xb6\x1e.\xf3\xfc\xd4.\x87`\xa0g\xc9gU/'\xf6\x15\\W\xf8\xb1^\x0e+\xb6\xaa\x97\x83Quj\x8fp\x1c\xc0\xeeX\xc5\x9f\xb1\xaa\xb2,\xc6\xfb+\xc2\xe5\xc2\n\xce\x9b\xf2z\xcb\xc3\x198\xb1\xe6*\x8bd\x04\x01\xae\xe9\xca0\x0eP\xe6\xc5\xadmC\xf9\xc2Xt\xd8\xea-\x18\xe9\xef\xedP\x97/\xab\x05{\xc0^~<;v\x19\xee)4v&\x9e\x907\xa6\x07\xa9\xafqM\xf8\x7fb\x8f\xaf\xd4'\xdc\xa6(\x9b\xd0J\x92\xb0\xf1\x9e\xfeE\xa5\x9e>T\xb6D\xa0\x9a\xb2\x82j\"\xd1\x8a/G\x83>\xc1\x82\xdd\xb1\x95\xe8a\xf2;\xb6\xe0\\~Zv\xeb\xde\xde\x02\xed\xa1\x86\x07bff!\xe7{\xb6,\xab\xefW\xf5\xfc\xd3Q\xf7\xb7\xb3j1\xfa\xcb\xe9-\x9b\x7f\xbaz\xf0?\xa4\xd5\xa2;\xf6-[\x95w\xac\xb9z\x08\xc4>\x7f,8k\x8e\xecYx\x0b\xeb\xe2Q|\xa5\xa8\xcc\xda\x85^\xd4\xe0\xb7\xacez\xa0s\xfb\x1a\xe7i\xe9\xe7\xd6\x02:\xa0]\x95s\xb9L\xa2n\x81z\xe25\x03y\xcf\x1a\x06l]r\xee\xe5\xb1\x16[E\xd1\xaa\x81\xdc\xd7\xd2~|\x0f\x8f\xe4\xf6k\xf0\x99\x0f\xe8!x\x1a\xf0# \xee\xb6)K\x05\xa9\xa3\x03\xfc.M\x13\x08.\xe7\x06\xaa!\x0eU\xc3\x04\xb0:\xdc\x80\x82\xdf\xa2\xe1j\x80L\x805L\x84\xac\x83\x05\n\xe7\xa2Ak\xd8\x1f\xb6\x86d\xe0:X\x94\x06A\x93\xa0k\xc8\x0d^C\"|\x0d\xa9\x00v\xb8gwp6\x16\xc2\x86\xdc 6\xe0`l\xc8 d\xc3\xdeP6L\x03\xb3!\x17\x9c\x0d\x93\x00\xed\xf0\xe3P\xb4l\x11\x87\xb4\xe10\xa06\x1c\x10\xd6\x86\xc3\x00\xdb\x90\x08m\xc34p;6\x04s\x14\xbc\x0dy\x01nH\x80\xb8!\x1d\xe4\x86 07b\xc8\xfc\x06\x01tC\x0e\xa8\x1b0\x9f{\xc8\xe9\x19\xf2\x13/e\x16\x97\x0cz\x07K\x93\x108\x02\xf6\x86\x84Zf\x84\xbe! \xfc\x86\xdc\xf07L\x04\xc0\xc3\xfd\xaa\x8dC\xe00\x1d\x04\xf7\x96'\xae\x18\x83\xc1!\x1b\x10\x0ex\xae\x190`8\xa4\xc1\xe1\x10\xa39'B\xe2\x80(7\x00\x8ce\x02\xc6a\x92s\xf1\xe08 Z9\x01 \x87\xa9\x109\x84\xbd\x9a\x0f&\x0728(>\xf8@Hh+\x00\xc6C^8\x1eb\x80<\x84!y\xef9S\xe1y\xc8\xd8w\x13 zH\x02\xe9\xc1\x82\xe9\x87\x86\xfb\x02\x1fD\xc1v\xf1\x0e\x13I\xeb\x0f\x91\xaf!wYbDSP\xcc\x9b\xea\xb1\xf5\x7f6:\xc1\xc6\x7f\x1e\x1c\x1c\xd643@\xa0\xadP\xc5-\xf96\xf5\x94\xb9w#\xbdd\xcd]9g\xc7]\x19$A\xa5\x8c$\xa8H\x82\xaa7\x92\xa0\" \xaa\xde\xb2FBS\xa2\xa0I\x11P\x92\xa0\xda7\xda9!\xd2\x99%\xca\x99\x1e\xe1$ \xaa}\"\x9a)\xd1\xcc \x91L\x92\xa0\" *\x92\xa0\xc2F\"\xb3F!\xa7D I\x82\xcawX4\xd2\x98\x10e\xc4\x08,\xa5D\x17I\x82\x8a$\xa80\x91B\x92\xa0\x92\xb6O4\x90$\xa8\\%E#~S\xa3}\xdew\x03IP\xed\x1aIPM\x88\xd2\xc5#t\xa9\xd1\xb9\x84\xc8\\rT.-\"G\x12TiQ7\x92\xa0\xea\x8c$\xa8\xb4\x19\x8d\x90\xebza\xbf\xfb\xcaj\xe7O^\x99(W\xec\xe7\xffi\xd8\xcdkx\xf9\x7f\x9fX\x0b\x87Zj\xe3\x98?\x1ck\xa9\x8d>4\xa5v\x88y\xa9\xcb\x18\x8bu\xe8H\x96[\xae\x83?\xe8c][n\xfe\x89\xf1\xab\x87V%\xe1\xdd0>\xbf\x15\x83\xfcC+\xe5t\xec\x0c\xcb\x81\n\x87u\x92\xfe\xf9i\x848\x90N\xb3\xaag\xc2\x82/_\xf4\xb5\xa0\x80\xde\xc0(\xa0\x87[\x10\x02\n\xe8Q@\xcf{$\x05\xf4\xa4Q@o\xd7(\xa0G\x01=\x9fQ@\x8f\x02z\xd2(\xa0G\x01=\n\xe8Q@O\x19\x05\xf4(\xa0G\x01=\n\xe8\xf9\x8c\x02z\x14\xd0\xa3\x80\x1e\x05\xf4,\xcb\x11\\\xa1\x80\x9e4\n\xe8} \x01=\xa5ji\x151\xf8\x88T\xbf\x9al\xb2U\xd9\xaa5oK\xb7^\x1e\xb1\xf3E:E\x88\x7f\x1c.q\x04J<\x1f\xf0\xf3z\xb5b\xb2:?\xe8\xcfw\xa93\xbd\xd3V\xda\x8b&m\xa3\x0f\xda\x8b\xe6\x80\xce\x8d\xef\xa2B{\xd1\xe4\xf0\"\xedEC{\xd1\xfc>\xf7\xa2\xe9\xbd!k0\xbb\xf6\xbf\xb2\xfe0Z\xec}\x05\xef?\xbc=\xfb0\xfb\xfe/\xb3\x8f\xef./\xceN\xcf\x7f8?{\xfb\xda\xf9\xd7naY\xae\x06o+5yl\xeb\x86\xf7\x8d\x87\xf7\xe2\xff\xbe\x7f4\x0f\xbc\x1cK\xde\\\x9e*\xcf\x95-\xcc\x8bv\xbc$m\xd5\xe1\xcd\xe5\xe9\xeb\xc1\xbf\xba]\xe9\x8a\xa1\x97\xbd%\xbc=\x1b\x14!\xfe\xd9\x951\xbeU{\xde\x84\x9d\xb1\x86U\xdb\xf5p\x1e\xe2v\xaf\xef\x907\x97\xa7\xbe\x9fD;\x067UQ9\xe1\xe2\xadg\x04\xfbT\xc8\xc9\x86~;\xc8\xff\xd6C\x8d\xd9\xfe\xef\x08Z^4\xe2\xe1\xe0\xf0\xed\xb1\x8a\xd4r+@\xbb\xa3\xc6c\x0d\xfc\xf2+H\xbf2\xfa\x03\xb2x>2\xca\xd3\x0b2\xd1u~`\xce\xb3\x81\xd5\xf7M],\xe6E\xcb\xaf\x1e\xe0\xda\xfc\xb7=\xffw\x82q\xd6Y/L\xf5\x9f\x02\x8c\xe3\xe9\xe0\x19\x7f\xe8\xc4>|\x18\xd7\xa4\xed\x80nY\xb9\xbculS\x04\x980\xa4\xc5\xa9y6T\xe2%_\xb1\xd7r\x95\xebzU\xcf?\xe9\xeb9\x8e\xe5\x0f\xb7E{;\xb1\"\x83[\".f\x7f\xf9\x89r]kO\xf3z\xc1\xdaM1\xf7\x84a\xa3\x17\xd5m{W\xacU1F\xb6\x04N\xeb\x85\xeb\x8b\xdfM\x02B\x94\x06\x04\x94\xa7\x07.\xe8\xe4U\xc45\x9d\x11\xd8\xe9\xbb@\x8d/$F\x0d\xf1\x01\xd6\x1e\x99\x18\x86\xe3\xb4\xa6\xb8\x9f\x1dz3!q\xdf\xeb-\xdfl\xbb\xd9\xaa\xb5E\xc8\xcb\x16V\xf5r\xc9\x1a\xf8\xba)\xee\xf5\xc5\xbe9\x86\x9f\xbc[\xe0\xf8\xc3\xffU]\xbdZ0\xce\x9auY\x95-/\xe7\xae\x16\xaf\xea\xe53\xde\x9bb\xdd.g\xd1\xddf\xe2\xddRY\xbcsBh/)e\xd1N\x00\x91=\x9c\x94\xc5\x9c\xab\xec\xf3lm$\x8b\x8c\x1c\x83t\x842\xdcnO\xcap\x8eQ\x86p\x8f2\xb4\x93\x94\xe1]\xa5\x0c\xb5\x17\x94\xb2\x04\xaf)\x8bj\x7f\xdb\x96X:n\xbc\x1aZ\xbf\xefR\xf7\xc9Q\xf57\x18\xee\x9bb\xb3a\x8d\xf8\xc6mB8Yob\x00\xfc\xc4\x1e\xe5\xea\xba\x9a\xd0\x15MDT\xdd\x98jhk\xb6\x98\x933\xcf\xe2^\x8d\xf2\x810gr\xcb/\xe5uT6\x83i5\xab\x06{\x0c%5\\\x82\xb4b\xdc\xef\x9e\x8bX{\x0d~\xfd\x89=\x9e\xf4\xfb[i\x10W|\x80\x8f\\\x11)\x0e\xeb\xa8\x147\xa5o\xc6\x14,No\xd4d\xb6dj\xebu\xa4S\x04\xb7b\x82\x84\xc6\xbc\xf9\xfe\xf4\xfc'\x15\xc2\xf8\xb1^\xf6\xdd\\\xf8x;\xe7\xdb\x86\x99FJ\x01\xc3Jm\x87\x16\xe01\xf9\x83,\xb3\x8b\x8b\xac\xea\xa5\xbb\x8e\xb8\x1ab\xe7\x0fb0X\xa8\xa9\x83\x7f\xfb\x1d\xd4\x1c\xc1\xbd\xe5,`\x06\x9c\xe1GH\x1f\x8d\xb5v435\xc4\xd5%\xdb\x96\xb2\xc8)\xea\x9b\xc1v\xaa\x8dJ\x982$\xe9\xeew\x9bm\x99\xf6\x81\x9dTQ\xb3\xdd\xab\xf8&\x8eT\x93{&W\xd1\x97f\xfc5\xc9\xa3[\x8bE\xbd\x00\xe8\xe7\x02\xa6f\xd2\x04\xcaK\xdaR,k6M4\x9f&wF\x0d>\xa7&SV\xcd\xb4\xbc\x9a@q\x89\x9b\x88\xed\x99[\x93;\xbb&1\xbf&s\x86MZ\x8eMb\x96M\xa8\x0fw\xf97\xd8<\x9b\xcc\x996\xa8\\\x9b\x8c\xd96\xfb\xe6\xdbL\xca\xb8\xc9\x94s3%\xeb&P\x18z\x9b\xb0\x03d\xde\x1c.\xf7\xe6 \xd97i\xf97\xd93p\xb098Y\xb3p\xf0y8j\x1a\x91\x90\x89\x93\x9e\x8b\x13\x1d\nq\x1b\x82\xed\x9d\x8f\x13]\x10@M\xa8\x10Y9)\xb3\xae\xe4\xcc\x9c\xd0K\x10\xbd\x05\x18\xae~\x19\xf3sR2t2\xe7\xe8L\xcb\xd2 \xf5 \xd4\xb6_\x133u<\xa5q\xd4\x96_y\xb2u\xd0)'\x88\x8c\x9d\xa4\x9c\x9d\xd8\x8e9S\xf2vbez\xf9\xddL\xd9;\xe9\xce\xc4g\xf0\xc4\xda6!\x8bgb\x1eO\x88\x83\xce\x96\xcb\x83\xce\xe6\xc1\xe5\xf3`3z\x10^N\xcf\xeaI\xc9\xeb o\xe2\x95%\xb7'1\xbbg\xbf\xfc\x9e\x98C\x13r|\x0e\x90\xe5\x13\xad\x9d\xb7\xa7\xe7\xcb\xf5Ad\xfbL\xcf\xf7\xf1\x14\xc7\xa3\x9bue\xcd\xf9\x89e\xfdL\xcc\xfb\xf1\x94\x15\xdf\xa4\x0b\x91\xfb\x13\xde\xa0+\xb4=W\xee\x0c\xa0\xec9@\xfe,\xa0\x9cy@\x98L\xa0\xf4\\\xa0\xa4l\xa0 \xf9@\xa9\x19A\x91-\xb7\xc2\xb5\xc3\xe6h`\xf3\x82&d\x06%\xe6\x06\x05\x9a;%?\xc8S\x14b\x93\xad)9B\x81.\x1f\xdf`+c\x9ePts\xadC\xe4\n\xe5\xea\x8b \xf9B)\x19C\xee\xad\xb3x\xb9f-/\xd6\x9b\x89\x91!\xdc\x97\xefU\xd9/\xc8o\x1avW\xd6\xdbV\xd1m\xc7\xf0C\xddh\xc4\xad\x85\xff\x03\xdf\x1eA\xc9_\x866T\xbc\x97\xc7\xca\xee\xbf(\x0b1V\xfbn\x89\x1cAM\xfb\x8cl\x83^\x17\xb8\xaby\xff\xdd\xa9j\xf2c\xd1\xf2\xd3z\xbd.\xb9o\xb8\xed\xab\n\xdf}\x07\xdf\x1ey_\xb5\xa2\x05\xe2k\xb4-[Y\x03W\x81!0\x87?\x03\xde\x89G\xd0\x9bh\xd7\x004n\x13k\xae2\x04b\x83h\xba2\x8c\x03\x94\xa1\x80\x1a\x94/\x8c\xa1V\xbc\x94!\x89\x9bC]>\x8a\xbb)S\x97\x1f'8\xb8\x0c7Z\x18\x93\xacF\x0f\xf9\xc8\xf4\xb2\xb6\xac\x96+I\xe9\xbc\xea\xe1\x93\xd8\x0e\x83E\xdb\xd6\xf3R\xae\x0c\xe9\xddQ\x87\xd2\x9fc\xc3VS\xc1$2\xea\xd0\xda\xe4\x03,\xd8\x1d[\x89\x1e&\x97\xd4\x0b\xce%\n\xdeM\xfc\xbc\x05Z(\x02\xf0\xc0\x07\xa6\x81U\xbfg\xcb\xb2\xfa^\x8c^G\xdd\xdf\xce\xaa\xc5\xe8/\xa7\xb7l\xfe\xa9\xe3\xb5wML\x16\xcc\xb1o\xd9\xaa\xbcc\xcd\xd5C`\xe1\xe0\xc7\x82\xb3\xe6\xc8\x8e\xe5\xb7\xb0V\xdc\xc4\xdf\xb6\xac\x11\x9f-*K\x8f\xdf\xb2\x96\xe9\x81n\x9f\x85S\xcd\xf3t\xf8\x8bf\x96t\x06\xab\xc1s\xd4W\xe1\x9c\xb5\xf2\xda\xbe\x99\x8fM \xc8\xd8\x84w\x14\xb7ko2\xbd\x80\xdf\xd6\xe2\x8f\xeeK\xaazy\x8a\xd3\xd3\x8bVkD\xd4\xfe/QS\xfaMS\xafeC\x8b\x8a\xb3c\xf8\xe5\x965\xach\xe1\xc7z9\xda\xbcR\xd5\xd1\xf7\x14\x84\x02\x16\xd6\xc7\xc8\x9a\xf1bQ\xf0\xe2\xa8\xbb\xbe\xfc0\x1d61\xde\xbc\xc4\x9d0\xffp\xfc\xed\xb7G\xe2?\xfe\xf1\xf8\x9f\xe4\xff\xff\xd3\xce\xd9\xf1>r\xf5\xd0\xd1\xdb\x11D\xaaa+vWT\x1c\xf8\x83\x04\xba=\x1f\xf0\xc6\x172$\xe7j\x0f/\x96\xad\x05\xbb\xa9ou-\xfe\x01\xabz)\x06+9a]\xb0y\xbd`\x8ba\xef\x0f\xe5$\x83\x9db\xb1\xcf\x9e\x9fv~\x07\xed\xf9I\x12\xc1\xd1)B\xfc9S6 l\"\x89`\x0c\xce\x94\x05f\x9a\x822\x91DpF\x80)\x05_J\x82\x97H\"x_di\x02\xb0\x94\x05WJ\x87\x95H\"x\x1fH)\x05Q\xca\x0c(\xe1\xf0\xa4\x8cp\x12\x16Mr\xac:\x92D\xf0\xd0\x10k#\xd8YR2\x88D\x12\xc1(\xfch\n|D\x12\xc1\xbe\xc3\xa2\xc0Q\x02n\x84\x11\xc0MA\x8dH\"\x98$\x821@\x11I\x04K\xdb\x07!\"\x89`WIQhh*2\xe4}7\x90D\xf0\xae\x91D\xf0\x044(\x0e\x06\xa5bA PP2\x12\x94\x06\x04\x91Dp\x1a\x02D\x12\xc1\x9d\x1d\x02\xfb\xc9\xd1\xe7\x12\x90\x1f<\xf0\x83\x91\x08\xce\xbc\xe7\xa77\x88\x11T\xe9\x92\xda\x0fI\xa1\x97\xc8\x97\xfa\xe0K\xd8\\\xa0\x8b\xa1\x15\xf7\xa14\xf4u \xb2\xe4\xa9\xcb\xae\x88\xa0\xb2W\xf0\xfd\x87\xf7o\xde\x9e\xbe\xb9\xbc\x9a\xfd\xf4\xfe\xed\x99WP\xd0s\xf8\xf7?\xbe?\xfdW\xcc\x81\x97\x7fyw\x8a9\xee\x8d\xf3\xc0N\x990\xa1\xb6\xf1\xb5\x86.\xfc\xf8S\xbd`\x96\x0e\xa5\\\xb9\xef\xe4\xe6\x84\xb7=qL\x90\x81\xdd\x9dh&|\xb88\xed\xe2\x99\xae\xbe\x1f\xf2\xfak\xf8O\xd6\xd4\x9a\x1c\x91\x0f\xbf\xb8\xbeT\x96\xf4\x8c[\xee\x9b\xb2\xe3+\xf9W+\xf8\xcc-M=\x19\x95\x12\xd7\x91z,j\\[IA\xe3\xfb\xa2\xe4\xad'\x94 \xdf\xf1\x0fz\x15u.\xb14\xaet\x0b\x0b\xcd\xab\xa1\xaa+\xee\xf8Nm\xc5\x1f\xb3V\xb6\x00\xcd\x98\xf4\xd2'}\xacZLXq\x95}\xe3\xac\xed\x9bI\xd5UJ\x8f\xae5\x9fr-\xc9A\xce\xc6\xd5\nw\xeaAX^Jo\xf4Qy\xf5O\x9e\x14\x94\xd7\x85\x8c\xfb\xb0\xdd\xbd\xd5_R\xb7B>\x91\xdd\xe3\xe47E*\xfe\xb7:\xd5\xb33\xb2$\x85~)\xf9\xed\xd5C\xdb\xed\x8e\xac;\x98Z\xd3\xd3\x00\x03\xf0\x87n\xcdu\xe0\xa7\x97N\xac\xe3\x9f\x8e\xff`6$\x1e\xef\xabl_R\x1f\xf24\x12\x92\xf8\xbd\x95\xed*\xd2\xfe\xca\xd2\x08\x9e x\xa27\x82'\x08\x9e\xe8\x8d\xe0 N\xf0\x84\xdb\x08\x9e0F\xf0\x04\xc1\x13\x04O gI\x04OtF\xf0\x84m\x04O\x10<\xe10\x82'\x9c\xc7\x10i\xda\xa3\xe3-\xf2'3\x02\xc8\x95\x1b\xcf4\n\xec\x93\xbd\xe1\x1d\xbd\xd4\xd7-\x08\xd47\xfc^\xeb\x10\x17\x9b\xcdJ}i\xc9E\x90b\x05_\xd5\xd5+]\xa0\xaf\xff\xcf\xeb\xf5\xba\xa8\x16-,\xb6\xd2\x19\x81\xaa\xc9\x81\x1c\xbeg\xcb\xb2\x92{;\xeb\xa9V?\x85\xea\xeed\xe9IV\xedMiD\x17\xabV\x86\x11\xbc\xad\xe55,\x18gs\x0e\xf7\xb7L.\xb0\x15}\x93\x8d+\xe6E\x05\xb7E\xb5X1(`Y\xfe\xff\xec\xbd{w\x1bG\xb2'\xf8\xbf>E\xac\xf7\x9c\x91t\x87\"m\xb7\xdb\xb7\xafv\xbdgi\x89vs\xae,iI\xca\xde\xde9w\xa9\"\x90 jT\xa8\x82\xab\n\x94\xd8\x9a\xfb\xdd\xe7\xe4\xab^\xc8Gd\"!\xc1V\xc4\x1f\xdd\x16Q\x15\x95\x19\xf9\x8e\xdf/\"\xef\x98\xcd\xe9\xd85\x8c\xf0\xb1\xdb\xbe\xa9+!U\xd6\xd2e\xd3vM\xc9\xd7\x8a\x1b\xc6J\x81 \x18\xd2=\xf7\xa2\x0bz\xd4%9\xb7;\xf5\x94C\xbf\xcf\x04\xde\xd52o\xa0\xda\xb4O\xaa\xc5\x93y\xd62\x99B{`k\x8b\xbe\xab|\xc5\xa0\xaa\xe1\xef:\xc8\xd8\xf6\xe1\x9ae\xb3%_\x92\xe4v\xbb\xff\xae(0\xfb\x90\xb7\xa6&l\xf3\xe8\x91\xa5}\x87\xbc6O\xb8\x9e\x1d\xc6\xdfs\xbe\xce\xce\xb2\x96\xcd\x9f\xca\x1a\x0b0\xa0\xa3VH\xa7\xbeh\xacy\xf7\xe4\xb1x\xd2\xa2p\xf4>\x14\xd5m>\xb3\x19\xae\xeb\x075[Uwl\x0e\x8b\xbaZ \x13^>\xffw\xeb\xb9_lL\xf2F\xed[\x95\x13[\xf8\x85\x8f:x\xa4\x9b-\xdae]\xbd7L\x89\xf6\xd8t\x08i\x01s\x8c:L\xad\xff?m\xd6\xbf\xeao\xe4\x18\x05\xack\xf3\xad\x94kw\xcdj\xfeI\xfbd\xf0J\x1d\xd5\xe6\xfcd,\xdaQ\x19f\x92\x16^K^.\xaa\xc8\xba+\x82\x88\xb5G _U\x0fA\xf5\x1e\xf5nj+\x17\x95\xc2lT:~\x1bdS\x95Of\xcb\xcc\x8e@7\x9b\xd9R\xa6\x87\xb8\xcd[1\x0f\xe7\xea\x02\x0b\xe1 \xcf\xda\xaan`&\x80\xe7l\xd3V\xab\xac\xcdg\x0eHS\x17\xb0\xad\x0c\x0f\xe8U\xe5zV\xe4|\xcf\xd2\xb4Y\xeb\x1c\xc0V\x82\x85o\xcd\x05\x04\xc9\x02\xd1N\x80\x9e\x03 \x96j\xe1\xd0\xb7\xe5mw8\x9f\xd2\xd2-\xbc\x84\x8b\xd4\x94\x0b<\xe9\"\x11\xed\"\x8ex\xe1P\xc7\x0d\x8a\xa6^\xecL\xbeHM\xbf\x08$`$\xa6`\x84\x910\x02i\x18\xae>\xdc\x114\xb0D\x8c\xc4T\x0c\x14\x19#!\x1dcWBF\x14%#\x11)#\x86\x96\xe1P&\xf7X^b\xc6^\xa8\x19\xfb#g\xec\x85\x9e\x11F\xd0HN\xd1\xc0\x924\x92\xd24\xf0D\x8d`\xaaF8Y\xc3;\x15>F\xd05\x12\x106<\x94\x0d\xe4\x86\nA\xdb\x08\xd9u\x05S7\\\x8b\xe0Mu\xc7\x10\xe4\x0dl\xf9\x12\x128B(\x1c\x89I\x1cq4\x0eW\x0fj\xfcD\x8eh*\x87E\x1b\xff\x9a\x8f\xcc\x91\x8a\xce\x81\xe6$ (\x1dA\xa4\x0e\x0f\x06\x1bE\xec\xf0\xe9\xb4\x02<\x89\xe8\x1d\xe1\xc6\xc4S<|u\x8b\xa0yD\x12=\\@Y2\xb2\x07\x9a\xee\x81#|`)\x1f\x08+\x87\xd3>B\x88\x1f.\xeaG\"\xf2G \xfdc7\x02\x88\xcf\xa0\x01$\x90=\xd0@\xbc\xa5\xb3\xf6\xf4td\x10\x04\x1d$\x9e\x10bQ'\x9c\x8e\x0eJHbR\x88\x8f\x16\x12I\x0c\xb1\xe8\x92'C\xd7\xe1\x18A\x0eq!\xd8.\x82Hz\x8aHr\x92\x88\x9d&\x92\x92(\x82\xa1\x8a\x84\x93E\x82\xe8\"\x11\x84\x91P\xca\x88\x934\xe2\x86\xf0\xf1 >\x968\x12A\x1d $\x8f8\xaa\x1bC \xb1\xa8\x1a\x903pC\x02G\"qt\xf9\xf2\xd6M#IJ$\xf1PI\xf6C&I\xd5\x17\x03\x08%!\x94\x92\x9eT\"\x05\x91\xa4y@\xf3\xf0\xc7+\xdb\x924\x0f\xc9&\x94\xa4\x99\xc2\x9b\x8d\xbfSx\xf3@(\xbc\x99\xc2\x9b{I\x8a\xad\x85 kA\xb8\x1a\x857\xef\x8a\xa6E`iI\x90\xb4p\x1c\x8d\xc2\x9bw\xc1\xcfB\xd0\xb3\xc4\xd8\x19\x0e9K\x88\x9baQ3\xc3\x86\x98\xc2\x9b\xc7\x82\xc0\xc9\xb0\xbb\xa4`\x8c\x8c\xc2\x9bQ\xc8X\x0c.F\xe1\xcd\xb6\xc7\xbcXX\x00\x12\x86 \xde\x0dA\xc1(\xbc\x99\xc2\x9b1X\x17\x857\x0b\xd9\x05\xdd\xa2\xf0f\x93&/\x9e\x15\x8bfY\xd7\x06\no\xde\x16\no\x8e@\xad\xfc\x98U(b\x15\x80W\x05\xa3UaX\x15\x857\x87\xa1S\x14\xde\xdc\xc9>\x10\xa9\x14}.\x00\x8d\xc2cQ\xb1\xe1\xcd\xabj\xbe)\xd8\xb5\xf2\xbd4\xf6\x08\xe7_\xc4\x83\xbf\xaa\xe7FA\xceE\xde\x08\xa7\xa9\xd4\xa5\xfd8\x8d\x0c\x95\x131Hz\xdeB\xa4\xfa\xfd\x8b1\xfd\xf1\xf8\xeb\xea\x89\x83\x8d\x906\x1au(\xedg\x00\x8d\xeca\xd2(o\x89\n\xa9+\xc7 \xbcUU\x8d\xef\xa8\xea\xef\xf0M\xed\xa1\xd9\xd8c\x18\xbb\x82\xcdx[\x96\xcd\xa6\x99\xc6N;K\x89 \x81\x1c\xf5\xbd\xce5\xc3\xe7Z\xd5\xe1\xa53\xaf\xd9.\x82\xe5\xbc`\xee\xf7[\x8f\xfa]<\x93~&|\xea\xd3\xd1(\xdd\xa8*\xba\x99\xe5u_J\x83B\xadi\xbc\xcf@\xe0\xda\xe3\xf1\x19\x0fmO\xc6\xf9\xe4\x99\x8b\xd7\xcf:t{\xfa\x9b\xc7\xa8\x04\x82O~%\x10\xdc\xd7\xb1{!\x10\x9c@p\xb3\x10\x08.\x84@\xf0m!\x10\x9c@p\x9b\x10\x08N \xb8\x10\x02\xc1 \x04'\x10\x9c@p)\x04\x82\x13\x08N 8\x81\xe06!\x10\x9c@p\x02\xc1 \x04\x1fH\n@\x92@p!\x04\x82\xffY@p\xd7M\xc5\n3+\x1d\x17\x16Op\xc0\xc1\x1b\x12a\x933Uwcq\xd6\x1f\xd6\x0d8\xe36.9\x80\xc5\xe1\x05\xcb\xee\xf8D |1\xd2\xa9\xb0\x95$`\xc1Z\x95r\x95\xaf}\x01h;\xa8\xfb\x93\x7fW\x1c\x00-\xfd\x05\xca\x8b\xach\x86\xc558\x0cB \x05}\x0eR]q\x99\x86\xf4\xe4\xa3\x98\xecd&\xd9\xff\xb4\xf3\x0c\x06\xc7\xf87J\xd53\xad\xe9\x92+\x1a\xe7W\xef\xac+>\"\xc7\xac\x18\xa4\xc2\x07\xd7\xf7a1-\xb4\xf5\xa6\xe1g\xd6w\xac.Y\xd1e\xf2.\xd9\x87v\x8c\x1a\xe7\x0d\x88\xa4\xae\xc7p\xae\xd4\x89=\xc8\xd0\x93\xd3\xb4U\xcd\xc7\xbf\xcc\xe3,v\x17*K\xeeX\xc3\x03_u.^?\x93Yp\xe5a^\xfb\x83\nv\x9b\xcd\xeeUe\x07\x8b\xb4@~\xea\xf5\x8cw\xc5>\xdd1\x94\xd5{Y\xf9\xf3\x1f\x9f\x89I0o\x1b\xe0\x93b\xcd\xd6E6\x13\x9e\xa5^\xc9#\xe1\xcezzrr\x9b\xb7\xcb\xcd\x8d\x18\x9b\xaa=\xf3\x9b\xd9\x93\xdb\xea\xe4\xa6\xa8nN\xbe\x9d\xfd\xedo_g\xdf~\xcb\xfem\xf1o\xb3\xd9\xbf\xfeu\xf1\xfd\xb77\x7f\xfd\xf6_g\xd9\xbf}\x97e\xff\xfa\xd7\x19\xfb\xe6\x9b\xaf\xbf\xff\xfa\xeboN\xc4\x80\xe6\xaf\x9e\xcc\xaa\x9a\x9d\xc8\xf4\xb3'w\xdf\x9c\x88\xae'\xc7\xfb\xff\xfe\xe2\xaf\xdf\xe9\x0d\xf9\x88\xdba\xb6\x8bz\xf2`9\x1e\xb6~\x1e\x04\xa8z\xfco\x8a\xda\xe0!\xcaHA\x80\xf4fC\xc7\x83\xf5\x96\x86\x9b<;\x04\xed\xf5\xdf\x08\x8d\x9f\xfcJh\xbc\xaf\x07\xf7Bh<\xa1\xf1f!4^\x08\xa1\xf1\xdbBh<\xa1\xf16!4\x9e\xd0x!\x84\xc6\x13\x1aOh<\xa1\xf1R\x08\x8d'4\x9e\xd0xB\xe3mBh<\xa1\xf1\x84\xc6\x13\x1a?\x90\x14\xc8(\xa1\xf1B\x08\x8d\xff\x12\xd0\xf8\x01&<\xd0\xe3B\xe3\xb7\x90\xd6\xfe\x86i\x01\xb8v\xf7\x91\xf2n\xc2\x1b\xadf\xbfoX3v\xc4\x8b51o4\xe4\xa5\xd4m\xca9\xabU\x1f\x10\x98\xf0\x14]\x16^\xfe\xaa\x1e9\x93\xf2\xf2\xe9\xd4\xf7\xde\xe3\xebm\xbd\xf1\xc0\xeb\x00\xe6\x9bZ}\xb0{\xb6i\x97\xff\xec@\xf7\xdb:+[G\xf0\xfe\x05k7u\xd9t\xdc\x81\xb7\xa7\x9bvY\xd5\xf9?\xa5K\xfe\x08\x84\x02\xe9\x0c\xe4\x06\x91\xffd|\xc7\xd2\xff\xb3s/\x8e\xd0\xdb\x9f\xc5\xa7\x1f\xe8\x9a\x1f(Z;4\xd0P\xda\xcf\x00\x95eC\xdb\xbb\x9dE\x8e\xfbY\xfd\xdf\x01\x04,\x078\xbf\x14 \xdd;ZB!:\xa72\xb3\x9f\xc6qlI\x0d\xd5\x81\x1f\xae\x83\x08\xc8\xce]\x81\xac]\xa2a;H\x05\xddA$|\xe7T\x18xs\xeb\xce0\x1e\x04CyNU\nb\x08\x82\xf3 5\xa4\x07\x81\xb0\x1e\x84B{\xee\x9e\x1dq\x8fkb\x88\x0fp0\x1f\xa4\x84\xfa`g\xb8\x0f\xe2 ?H\x05\xfbA\x14\xf4\xe7\x1e\x0e\xd8{]\xf7\x02\x01\xc2\x1ea@\xd8\x0f\x14\x08\x81p \xc4A\x82\xbe)\x18\x07\x0bBZh\x10\x02\xe0A\x08\x87\x08!\x02&DL\x99\xb8\xdb^\x13\xc0\x85\xe0\x83\x0c\x01\xbf=C@\x87\x10\xb8\x8b\x0b\x86\x10\x9d\xda\xf0w\xbf\xe2K\x99\x10N\x84 H\x11R\xc3\x8a\x10 -\xba\xfb\x15\xea\x1e\xd8h\x88\xd1\xaa\xafE\xdd\x05\x9b\nj\x04\xd0\xe15K\x07\x9b\x02\n:\x85\x08\xf8\x14\xc2 T\x88\x81Q!\x18J\x05\xdf]\xb4\xbe\x1b@\xf1\x10\x17\x16V\x85\x18h\x15B\xe1UpW<\x06f\xb5*C\xdcL\x1b\x07\xb7:\x07\x84\xffv\xda\xa4\xb0+\xf8\xa0Wp\xc3\xaf\xd6wbaYH\xd8w\x03\xe0Y\x08\x82ha\xeb\x0e[-\xec\xc3:\xaf\x11\x08\x15\x8a\xce<\xcfZ\xf6\xa4\xcdW6+\xab8G\xc7A\x9f\xbf\x0c\xef\x97\xac\xec\xf1H\xd9\x1dE9e\nf\xdd=\xd7\xf5\xa6d\xf3c8\xb7\x1fP\xcbMQ\xf0>>\xd4go\xcay\xc5\x9a\xf2a+\xfd\x98\x99,Ko\x1fx$]O\xb3\xaa\x9c+?\xb6\x8b\x9e\xffv\x04\xff9:\xeb*\xbb\x87l\xbd.\x84o4/\x85\x0bF\x868\xab\x02\x9b6\xa0\x98|\xd6\x02\xb1\x85\xdb\xfc\x8e5\xb0f\xf5*od\x00y[\x01\xfb\xc0f\x1b\x8b\xff\x88\x7fW\xed\xf1\xd4\xa6H\xae\x8c\x03Kp\xcbl/l~g\xce\xc8$\x934\xd6\x12\xb9\xed\x00j>d{t\xda\xa0k\x82UkYg\xb7yi\xe9\xcf\xa3\x02\xf6\x0fJh\x82 \xb7\xd2\xe0\xaf:j\xdc\x84VKi]\xd8\xad\x1b\xb5-\xd9\x87\xf6\xfa\x1d\xbb\xb7\x07Y:\x87\x9c\xd7 \x88\xe9\x1f})4?\x82\xff\xa7\xf2\xa3gM#\x81\x83\xd7\xd9-\xbb\x90\xd4\x8ac\xf9\xbbE\x99L\x92\xd0\xea8\xfb5_\xc7VU\xd3\x02\x13\xdeh\xe1\xc6\xee\xe3\xecot4Gn\x1b\xbd|\xb01\x01c\x94\x15\xac\xaa\x9ai\xd8\xc2\xb4\xa5j\xab6\xb3\x80\xdfhc:\xb2\xcf\xfb&.\xf1yaE\xf1\x1f\xe5fu#\x9d\xa5:\xc8j\x10\xd1c\xab\xef\xd0\xd0\xb3jS\xb6\xd7B\x99m\xe2x\x9f5\xd0\xb0\xf6H$\x00P R#\xa8-\xbc3\xcf\xa5\x9f\xfc}\xde\x8c\xfb\x07\"z\\\x12=\xe2\xa3\xc5O\xc7\x83\x9c\xc2\xc2\x95PX8\x85\x85\xf7Ba\xe1\x14\x16\xdeKR\x0eI\x08\x7f$\x88;Ba\xe1\xbb\xf2D\"8\"I\xf8!\xe1\xdc\x10\n\x0b\xdf\x85\x0b\x12\xc2\x03\x89\xe0\x80PX8\x85\x85SX8\x96\xc3\x91\x94\xbf\x11\xc3\xdd\xa0\xb0p\xdbc^\x8eF\x00?\x03\x13\xf4\x1c\xc2\xcb\xa0\xb0p\n\x0b\xc7p,(,\\\xc8.<\n\n\x0b7i\xf2r%by\x12\xd6\xb5\x81\xc2\xc2\xb7\x85\xc2\xc2#\xf8\x0d~nC(\xaf!\x80\xd3\x10\xccg\x08\xe32PXx\x18_\x81\xc2\xc2;\xa1\xb0p%:,\\\x81\xb8\x03\x1d;\xe71\x9f*g\xfbQ\xbejn\xaf[\x05z\x0c\xdeq\x1d\x82_)\xef\xe9\xd1\xe8\xe5#Iw\x10P\x9e\xe8\xd0\x12G\x15\xcb\xac\xc2\xc4WY;[N;\xf6m~\xc7J\xaei\xeb@\x9e\xb0\x96=\x1c~\xfc\x8e\xdd\xdb\xea9\xc1\x97\x15\xa0\x9c\xa9%\xae\x161\xe9\xc2\xe9\xa70N\x05\xe4u\xe8\xb3p\xd5\xddN|Z\xa2\x062e\xbe\x1bQ~\xc5-U\x95\xe2,_-\x16\x0dk\xf9\xf1x\\\\\x18@\x0d\x0dk\x13[\xcb\xe2\xb81\x18Q\x96\x0f\xd9_Te\x84)\xcb\xcd\x8a\xd5\xf9L\xffM\xcc\x86\xb3\xac\xe4\xf5\x91^+\xde\x87\x94\xe17e\xe7(\x9c\x1c\x0f\xce\x85\xb6\x825MoB\xe9Z\xdb4\xdc\xd4\xefX\xa0=\xc7\xea\xf7l\xdc >o0o\x91\xafr\xacu\xc5\xb3\x1a\xdd\xb6\xc1\xf6\xd2\x89<\xec\xc1\n\x0b\xdf\x14\x13pY\xba\x8c\x86\x7f:_@\xc1\x16\xad\xa69(\xde\x83\xde\xd4\x0b\xff\xb7\x1c \xf2#\xdc\xce7\xf7\xc0\xb2\xd9\x12\xb2\xf5\xfa3ZqH>\xe8\xdfw\xd9r\xf0\x86\xc8\x9d\xc1D\xfd\xdaz\xc3@\x92\x9a\xe6\xf9\xac\xbb\xb5\xa1\xb7\xa0xPu\xa4\xa1\xba\xbc\x9c\x15\x9b\xf9d\xcb\x9e\xc9\xaftP\xe4\xa4\xc5\x04\xb0=\xf0\x90\xf3\xa5u@\xe6\x99L.o\xce\x9bIkM\xaa \xa6\xdf\x9a5\x8a\x82 \x86W?\x1e\xf9\x90;V\xa3)\xbf-'\x99B\xa0\x1b\x8d\xe3OH\xcb\xec\xda\xb07UU\xb0A\x1c\xb7\xa1\x01kv\xc7\xea\xd1\xab\xae\xc6SOO\x1b.\x1f\x90Wjf\x1e #=\xfc\x1b\xac\x14\xc8kU\xcfY=u0z.\xeeOa\x8d\x98d*'j\x9bp\xf2Q\xfd\x87\xe3\xce\x92\x9f\xe5\x13\x92!\xa3\x8c1\xe4\xb0\xbd\x15\xbf\x8cs\xae\xf0A\xad4\xeb\xa6\x1f\xb5\x86\xf9\xd2\x87\xef\xf5\xa5\x0f\xdb9X\xf4\xf7\x1fh\x0bQ*\x16/=E\xed3\xa3\xa1\x19\xd5\x80\xd1\xefS*\x18J\x05C\xa9`\x1c\xb2#u\x07\x82\xe9;NU\x94\n\x86R\xc1\xc4R| \x8e\xe6\x03\xa9\xa8>\x10E\xf7q\x0f\x07J\x05\x13F\xff\x81@\n\x10\xc4\xd1\x80|S0\x8e\n\x04i\xe9@\x10@ \x82pZ\x10DP\x83\x10S&\xa5\x82\x91\x12L\x1brj\xa3T0\x94\nf\"i\xe8E\x80g\xc9\x00\x86f\x04aT#\xf0q\x03\")G\x80\xd0K\xa9`\x1c\x12EI\x02J\x05\xa3$\x8a\xae\x04A\x94%\xa0T0\x18*\x13\xec\x83\xce\x04\x982R*\x98\xb4T'\xf0\xd2\x9d \x96\xf2d\xd5F\xa9`p\x14)\xab6J\x05\x83\xa4NA0}\n(\x15\x8cQb\xa8UVe\x94\nF\x0b\xa5\x821\xc8gN\x05\xe3\xce\xa6\xb0\x8d\xa1\x02\xfb\xd0\xb2r\xde@\xd6e\x84i\x97pS\xb5K\xd1u\xb2\xf9\xbcfMc \xb0Q+\x81\xce%\xc2\xc7N\x97:\xc4\xf8\xc2y\x07\xf1\xf3\x8e\xc8\x0f\xc1M\xde\xc8&\x11o\x0b\x88Z\xfe{\xeb\xfd\x91\x13C\xb1\xb7\\YN\xc6\xd7pP.\x13\xe3\x03\x94\xcb\xa4\xff kL\xcae\xd2\xe72\xd1\x84\x89\xf8\x94&c\xde\x07e4QB\x19M(\xa3I/\x94\xd1\x842\x9a\xf4\x92\x94\n\x11B\x83\x08\xa2@PF\x93]\xe9\x0e\x11T\x87$4\x87p\x8a\x03e4\xd9\x85\xd2\x10Bg\x88\xa02PF\x13\xcahB\x19M\xb0T\x84\xa44\x84\x18\n\x02e4\xb1=\xe6\xa5\x1a\x04\xd0\x0c0\xf9:B\xe8\x05\x94\xd1\x842\x9a`\xa8\x02\x94\xd1D\xc8.t\x00\xcahb\xd2\xe4\x85\xfcc\xe1~\xeb\xda@\x19M\xb6\x852\x9aD\xc0\xf4~\x88>\x14\x9e\x0f\x80\xe6\x83a\xf90H\x9e2\x9a\x84\xc1\xee\x94\xd1\xa4\x13\xcah\xa2\xc4\x9dtd\xe2\xcb\xee\xa3\x9a\xdbz\xe3\x8d\xdd\xa7d\x1cq\x99\x0e(\x19\xc7\x1e\x8d\xebO#A\xc98RX\x91\x92qP2\x8e/.\x19G\xad\x93q\xd4\xded\x1c\xf5$\x19\x87+\x15\xc7Q\xc7\xbb\xearr\xd4\x89rr\xd4\x94\x93c*>\x82\x05\xe5\xe4\xd8~\x06\x11\xf4\x89\x01%\xb4\x84\x12K\x9c\xca\xcc\xe8\x82\xc3\xd9\x96\x9a`\x02~\x92 D\x10M\xdc\x15\xa0\x9c\x1c\xb1\xe4\x13\x08&\xa08UQN\x0e\xca\xc9\x11KR\x818\xa2\n\xa4\"\xab@\x14a\xc5=\x1c('G\x18\x81\x05\x02I,\x10Gd\xf1M\xc182\x0b\xa4%\xb4@\x00\xa9\x05\xc2\x89-\x10AnAL\x99\x94\x93CJ0\xf1\xc5\xa9\x8drrPN\x8e\x89\xa4!\xc8\x00\x9e\xe7\x01\x18\xa2\x0c\x84\x91e\xc0\x87nG\x92f\x00\xa1\x97rr8$\x8aT\x03\x94\x93CI\x14\xe1\x06\x82H7@990d\x1c\xd8\x07!\x070e\xa4\x9c\x1ci\xc9:\xe0%\xec@,i\xc7\xaa\x8drr\xe0H>Vm\x94\x93\x03I\xfe\x81`\x02\x10PN\x0e\xa3\xc4\x90\x83\xac\xca('\x87\x16\xca\xc9a\x10\xca\xc9q 99n\xee\x07\x85\xdbr\xeaRN\x0e!\x94\x93\xa3\xff kL\xca\xc91\xc8\xc9Q\xa7\xc9\xc9QSN\x8e\xb1PN\x0e\xca\xc9\xd1\x0b\xe5\xe4\xa0\x9c\x1c\xbd$\xa5B\x84\xd0 \x82(\x10\x94\x93cW\xbaC\x04\xd5! \xcd!\x9c\xe2@99v\xa14\x84\xd0\x19\"\xa8\x0c\x94\x93\x83rrPN\x0e,\x15!)\x0d!\x86\x82@99l\x8fy\xa9\x06\x014\x03L\xc6\x89\x10z\x01\xe5\xe4\xa0\x9c\x1c\x18\xaa\x00\xe5\xe4\x10\xb2\x0b\x1d\x80rr\x984y!\xffX\xb8\xdf\xba6PN\x8em\xa1\x9c\x1c\x110\xbd\x1f\xa2\x0f\x85\xe7\x03\xa0\xf9`X>\x0c\x92\xa7\x9c\x1ca\xb0;\xe5\xe4\xe8\x84rr(\x19\xe7\xe4\x18\x1e\xf0('\x07\xe5\xe4\xa0\x9c\x1c\x94\x93#\xce\x8a\x94\x93\x83rr\xfc9sr,\x18\x13\x8be\x97\x96C\xe07Y9c}F\x0e\xfd_\xcc\x91\x9b\xe3T\xbf\xd6\xe5\xe5X0f\xb9\xf5\xc8B\xb8\x1a%\xd9\xe8\xf4=\xd0\xb5>\xd0\x04\x1b\x9d\xbd<\xec\xb0\xee9\xb9z\xf5\xff\xd46\xe2\xc3s` \x0b\x1bm'\x8e\x983\x01\x87\x17G\xc08\xe2\xbbo\xe8eD\xd1\x02\xf5\x1c\xb5i\x98\xaa\xa5\xe0\xa9\x96\xbd\x1d,\xea\xe4{y\x0d\x8bM97\xc2#\xce\xac I+\xc5\\\x95\xbaa\xbcF\xba1\xadq\xfd}\xbb\x8bC\xbbD\xa1\xb8\x82\x87\x8d\xbd\x8a\x8e>\x06\xe8:\xf4_V\xbb\xa4\xac\xbc\xe7\x85\xb8\xc9\x9a|v\x04kV\xe7\xd5\x9c\xff\x97Fp\x17\xcc\xd6(\x9d*\xf3)\xdd\xd9C\xc1\xdbK\x01\xc1\xfbA\xb4,\xa0-\x03\xb1\xec\x1f\x87\xbe\xa0\xb4)I\x19@^\x0ePj\x16\x10\x9e\x07\x94\x88 \x14\xc7\x05r\xa8\x0bL\x94\xb2#\x1f(5#(\x90\x13\x94\x98\x15\x14\xc6\x0b\nd\x06\xb9\xfapDj\x94\xa4\xec \x14?(!ChW\x8eP\x14K(\x11O(\x86)\xe4P\x86N\x85\xb2\x07\xb6\xd0\xfe\xf8B{a\x0c\x85q\x86\x92\xb3\x86\xb0\xbc\xa1\xa4\xcc!y\xd4\xf3q\x04\x14\xdf\xce\x18\x94\xa9\xc5t\xf4\x0b\"V\xa2;\xf7\xc6\xc7I\xf4Gq\x8a\x91PB1\x12\x14#\xd1\x0b\xc5HP\x8cD/IOC!g\xa1\xa0\x93\x10\xc5H\xecz\xfe\x898\xfd$9\xfb\x84\x9f|(Fb\x97\x13O\xc8y'\xf1i\x07w\xd6Ix\xd2\xc1\x9es\x02O9\xa1g\x1c\x8a\x91\x18I\xf0\xa9\x86b$(F\x02(F\xa2\x17\x8a\x91\xa0\x18 \x8a\x91\xa0\x18 \x9bP\x8c\x04\xc5HP\x8c\x04\xc5H\x0c$\x05_\x9db$\x84P\x8c\xc4\x97\x19#\xe1:E\xc6\xd2\xfa:\x02\xdfH\xdb\x16\xd3-Yx\x86b\xea\x05\xd5*\x88\xd77\xaa\xdaH\x99\x8f\xcd\xb7c\x1d\xe3\x99\xbcM\x10\x81\xb7\xbfYO\xb8\xd15O\xb7\x11;\x01e!7e\xf7\xe0/\xc5\xeb-s\x18\x08\x9e\x93\x97\x8b\xf2^a\x1c@\xb0\xc30\xb6*\xf4\xf3sw\xbf\xb7/\xb4zA\xe3\xd9\xaa+\x8a\xa9\xeb\xe5\xea\xe2\xeb\x92\x90\xaf\xebe\xecz{0 z1 \xb0h\xc0\xb57\x04\xd8 \"pi\xa72\xb3s\xd2qVO\x8dO\x83\x1f\xa3\x86\x08\x9c\xda]\x01\xba\xf60\x16\xbb\x86`\xfc\xda\xa9\x8a\xae=\x8c\xe2\xf6&\xc6\xb5\x01\x87mCJ|\x1bv\xc6\xb8!\x0e\xe7\x86TX7D\xe1\xdd\xee\xe1\x80\xe5\xfa\xee\x05\xf7\x86=b\xdf\xb0\x1f\xfc\x1b\x021p\x88\xc3\xc1}S0\x0e\x0b\x87\xb4x8\x04`\xe2\x10\x8e\x8bC\x046\x8e\x982q\x0c\xe0\x04\x189\xf8pr\xc0o\xcf\x10x9\x04\xee\xe2\x82qs\xa76\x1c\x1f\xd8\x97\x89=)'\xd8\xcc\n\x06k\xa8\xe8`\xf6\xe4\xff|\xd8\x04\x06\x8b\xd2\xd5\x05B\\\x999z\xa1\xab\x0b\x80\xae.\x18\xc8\x98\x8e\xbf\xc3\xbd\x05\x03\xcf\x1a\x11\xf2\x95\x10!?\x8d\xc3+\xd4\xf1\xa1\x9d\x1bV\x85X\xa7GR\x87\x07\x11\xf2\x89\x90\xdfKRGF\x88\x13#\xc8\x81A\x84\xfc]\x9d\x15\x11\x8e\x8a$N\x8ap\x07\x05\x11\xf2wqH\x848#\"\x1c\x11D\xc8'B>\x11\xf2\x89\x90\xdf\x12!\xbf\x17\x0c\xdd\x9c\x08\xf9\xb6\xdf\x88\x90o|\x86\x08\xf9D\xc8\xb7\x08\x11\xf2\x89\x90O\x84|\"\xe4\x0f$\x059\x9a\x08\xf9B\x88\x90\xff\xe5\x10\xf2\x87\x96\xdc\x911N\x97\x16\xc4f\x84\xa7K\x0b\xf6h\\\x7f\xba}\xba\xb4 \x85\x15\xe9\xd2\x02\xba\xb4\xe0\x0b\xb9\xb4 o\x9a\x0d\x9b\xf77\x16\xc8\x97\xddaN?\xde\xff\xac\x82a,\xf1N\xb7\xf9\x1d+\xf9X\xceJ\x1dI\xa2\xb4\x8d\x9a\xe1\xa1\xd1 \xdf?T\xcfZB\xa4\xba\xaf?\xd0\x06\xa2X)!>r\x05\xc5J%\xad\x1e\xc5J\xd9\x95Q\xac\x94\x07\xd7\xa6X)?\x8d\x08RQ\x89 \x92N\xe4TH\xb1R\xbbS\x8c \x90f\x04\xa1T#w\xcf\xa6X\xa98\xfa\x11\xc4Q\x90 \x15\x0d \xa2\xa8H\xee\xe1@\xb1Ra\xd4$\x08\xa4'A\x1cE\xc97\x05\xe3hJ\x90\x96\xaa\x04\x01t%\x08\xa7,A\x04m 1eR\xac\x94\x94`J\x93S\xdb\x9f\"VJ,fb>\xbba\xac\x04\xe9\x13\xb0\xdc5\xa8\x85\"\xa4\x84P\x84T\xff\x13\xd6\x98\x14!5\x89\x90\xea\\Z)B\xa5z\xef\xdc0fjZ;\xb3\xeb\xad{\x88B\xab&\xbfRh\x95\xafO\xf7\x12\xea'\xd1\xbe\x10\xabB\xac\x8f$\xa9\x7f\x84B\xab(\xb4\xaa\x97\xa4~\x8f\x10\x9fG\x90\xbf\x83B\xabv\xf5mD\xf85\x92\xf84\xc2\xfd\x19\x14Z\xb5\x8b\xff\"\xc4w\x11\xe1\xb7\xa0\xd0*\n\xad\xa2\xd0*\n\xadj)\xb4\xaa\x17L\xe0\x10\x85V\xd9~\xa3\xd0*\xe33\x14ZE\xa1U\x16\xa1\xd0*\n\xad\xa2\xd0*\n\xad\x1aH\x8a0\x17\n\xad\x12B\xa1U_Nh\xd5\xf0\x80G\xa1U\x14ZE\xa1U\x14Z\x15gE\n\xad\xa2\xd0\xaa?gh\xd5m]m\xd6'w\xdf\xc8\xff\xb8\xce\xcbEu\xf2Q\xfd\xf7\xdc\x11W\xf53\x7f\xe4\xbc\\T\xa2|9k@\xbc\x04\\A\xcfKU\x7f\xeb\xb2\xdf\x8e\x82\xa3:\x15\x0ft\xc5\x0e4$\x8a\xd7\xc9C\x17\x13\xd5V3go\x1a\xcd\x11\x13fHJ\x10\xcb\xe7\xfbc3\x8d+6\xd7\xd5\x924\x088\x7f\xae\xe7\x1bK\xad\xf8yo\x95\x1b\xf8u\x80)\xdf\x98\xec\xc7\x15u\x01K39\xdbM\x02\x97D)\x1e6\xf2YSiV\xac\xcd\xe6Y\x9b\xa5(\x90\x15\x18\xd1\x1f\x11[\x93\xf2~\x00?t\xbf\xf0\xe5\xadm\xb3\xd9R\x82\xa3v\x98\xd3jW\x05\x1bFV\x04\xd1\xf2>\x1e\x9b*\x80\x9e\xef\xe5\xc4\x98\xcd\xde\x0dq\xce\xack\x91\x15??\xd5\xcd2_[\xd45m\xbd\x99\xb5\x9bZ\xae\x82\xb6\xa3\xc8{\xb9K\xadY\xf6\x0e\xd8\x87\xbc\x11\xf1w|tTMV4\xc7\xf0\xdb\x92\x95|\xbe\x16vW\xdf\xb4\xa9b\x02\xab\xcb\x1bU\xe0\xf9\x91\xed\xa3\xd5P\x9dhTq\x10\x14|\xb1Uu\xc7\xeb\xbe\xcc\x9b\x81A,z\xf2rV\x0b\xc0O\xc4\xd3\xcd\xc5\x86\xc7\xf6\xcdY\xb6iX_\xb3~\x16\xad\x8a9\xab\xf5\xb7T\xc7\xcf\xf5\x84k%\\.\xb2\xdc\xc4\xb3\x15\xeb\xf9\xb5\xb4DdO\x1a\x0d\x89\xa1>=T\x9b\xcdj4\xd4\xacq<\x802+l3k$\x89fT\x9f\x87\xcd\x94dc\xdf\xa9\xbb\x08\x04Rb\x8a\xe5I\x826f\x19t\x85\xbe\xab\x04'D\xfd*\x165\\6\xd4[\x81\xcc+G\xe8\xd7\xf6\xca\xba)DR\xf6P]\x04\xa9\x08\xc7(\xd2\xea\xb8\xbd\xec\xb5\x14\x14\x17+\xfdB\n\xb2\x968*\x86\x94\x10\x8b\xe8\"\xfaI\x19j\x84\xdaY\x19\x03\x85\xb1\x8e\xd7\xc1B\xd1\xef\xa2\xf4\xc9\xa3\x90\xb0\xd02_\xc3\x0dk\xdf\xb3\x01U$+\xcdG\xaa\xcc\xdaD\x86\xa9HqP\xbbq0&\xc4I\xdf\xad\xcch\xafg\xc8\xa9\xda]r\xe1\xb5\xe2@>\xe0\x12\xabZS.<\xca\x85\xf7\xe5\xe4\xc2\x1b\xee\x14\x1d\xac\xad\xc9\x13\x13MD\xe7\xea\x85\xe8\\D\xe7\xea\x85\xe8\\D\xe7\xea\x85\xe8\\-\xd1\xb9\xccBt.-D\xe7\":\x17\xd1\xb9\x90\xbb$\xa2suBt\xae\xa1\x10\x9d\x8b\xe8\\\x06!:\x97\xf1\x19\xa2s\x11\x9d\xcb\"D\xe7\":\x17\xd1\xb9\x88\xce5\x90\x14\xd4\x1a\xa2s !:\x17\xd1\xb9b\x080\xfb\xa2sQ\x92\xbc\xd8\x0cd\x94$o\x8f\xc6\xf5\xf7QJ\x92\x97\xc2\x8a\x94$\x8f\x92\xe4}\x11I\xf2\xd6U\xc1\xe7\xc0\xe6\xfa\xe6\xfeZ\xa4\x1d;\xf9(\xfe\xcfGGn~\xbc?\x15\x19\xcd\xc6)\xf3\xb4:>\x8ce\xc6\xb3 \xfbr\x9b\x9d\xfcZ\xbd\xa2\x14>\xd0\x95>P\x96\xf2\xd8l\x87\xc1\xc6\xf0\x10k\x11H\x84\x8bPkHV7h\xec{\xf3\x89\xf0\x0f\xc7\x9fv$\xfaC\x95vbAd\xb2?{\xaa??S7\xb4P\x0e\xf4\x08\xc1\xceE\xa7\xfc\x03D\xefpf\xffC\xd5,\xbcs8\xaa\x1f\x94\x0b\xd0\xaa\xa5\x9f\xcd\xeeEn3\\J@\x9d\x14PfV\x83\x0c\xe6\xf9b\xc1j\xbe+U;\x84\xaa\x84\x0c\xea\x8d\xc4\\uJ=\xb3]\xe7l\x96\xf3\x9a\xc8\xf9\xc9B3\xf5N7\x80\x98r\x00A\x02\x03\\SB@KA\x04!\xcc\xa9\xac5\xa2\x82\x0e'yjb\x18\xf8\xc9a\x10A\x10sW k\x97h\x92\x18\xa4\"\x8aA$Y\xcc\xa9\x90\x1b\x17M\x18\x83\xddIc\x10L\x1cs\xaaR\x84\x96 \xf2\x18\xa4&\x90A \x89\x0cB\x89d\xee\x9e\xdd\x91\xcc\xb0d2HM(\x03\x1c\xa9\x0cR\x12\xcb`gr\x19\xc4\x11\xcc \x15\xc9\x0c\xa2\x88f\xee\xe1\xa0\xd3\xc4\xfa\xc6\xcd^\x08g\xb0G\xd2\x19\xec\x87x\x06\x81\xe43\x88#\xa0\xf9\xa6`\x1c \x0d\xd2\x12\xd1 \x80\x8c\x06\xe1\x844\x88 \xa5!\xa6\xcc\xc7\x08b\x1a\xa4 \xa7\x81\x8f\xa0\x06\xf8\xed\x19\x82\xa8\x06\x81\xbb\xb8`\xc2\x9aS\x9b \xb3!Hk\x10P\xca\x84\xe45\x08\"\xb0Aj\x12\x1bD\x12\xd9\xdc\xfd\xaa\xf1\x93\xd9 \x9e\xd0f\xd5\xc7\xbf\xe8#\xb5A2b\x1b\xe0\xf9Y\x80!\xb8A\x18\xc9\x0d|\xac\x94H\xb2\x1b \xf4:\x80\xefD\xc47\x882.\x9e\x00\x07\x88ZF\x10\xe1 \x96\x0c\x07n\xab\xa6#\xc5\x01\x9e\x18\x07Hr\x1c\xa0 r\x80\xb3z8Q\x0e\x82\xc8r\xe0$\xccA*\xd2\x1c\x84\x12\xe7`G\xf2\x1c \xcc\x1b@\xa2\x83}\x10\xe9\x00SF\xc7HHG\xaa\x03\x0c\xb1\x0ev \xd7Y\x15J\x07\xb4\x9d`\x07\xa9Iv\xe0%\xdaA,\xd9\xce\xaaM\x9eQ\xdd\xc7u\x04\xe9\x0e\x9c\xdc p\x92\xef \x8a\x80gU\xe5$\xe6A,9\xcf\xaaM\xee\x03\x1d^\xb3t$=@\x11\xf5 \x82\xac\x07a\x84=\x88!\xedA0q\x0f<\xab\xad\x87L\x05\x01\x84*,\x89\x0fb\x88|\x10J\xe6\x03w\xc5cH}Ve\x03\xca\x1cv\xc8\xe0\xc8}\xce\x01Q\xde\xba ~\x90\x96\xe4\x07>\xa2\x1f\xb8\xc9~\xd6wbI\x80\x90\xb0\xef\x06\x90\x01!\x88\x10\x08\x03R\xe0X|\xd7#\xa1\xfc\x12\xd8\xbc<\xd8\xe3~\xf85I\x12d\xb3O\xedYc\xbe/I\n\xa6\\SHq\x92\x99g\x99\xdf.\x9f\x14\xec\x8e\x15P\x95Of\xcb\xcc\x12'\x9a\x97\xd2X\xbc\x9b\xf3n\x99y Z\x7f\xd1\xc6,\x88.}\xcf\x84\x04\"n\x12\x14+\x9c\xde\xbf\x19T\x19\x11p\xca\xe7#\x84\xf2\xf9\xf4?a\x8dI\xf9|\xfa|>\x13n\xd5$\xaf\x8f\xe9\xb5\x13\xd3{\x94\xd7g \x94\xd7'\x0d\xe7(\x94\xc6\xa1}\xdfV\x85X\nGR\xfa\x06\xe5\xf5\xa1\xbc>\xbd$\xa5e\x84P2\x82\xe8\x18\x94\xd7gW\xeaE\x04\xed\" \xe5\"\x9cnAy}v\xa1W\x84P+\"h\x15\x94\xd7\x87\xf2\xfaP^\x1f,-\")%\"\x86\x0eAy}l\x8fyi\x0f\x01\x94\x07L\xd6\x9a\x10\xaa\x03\xe5\xf5\xa1\xbc>\x18\xda\x02\xe5\xf5\x11\xb2\x0b5\x81\xf2\xfa\x984y\xe9\x07\xb1\xd4\x03\xeb\xda@y}\xb6\x85\xf2\xfaDP\x06\xfct\x81P\xaa@\x00M \x98\"\x10F\x0f\xa0\xbc>a\x14\x00\xca\xeb\xd3 \xe5\xf5Q\xa2\x13/d\x83\xc8}p\x07C\x0f\x93\x02\x8cC\xa1\xb7\xd1\xe8\x9d\x93\xfbP\x0e\x9f\xb8\x04)\x94\xc3g\x8f\xc6\xf5g\x9f\xa1\x1c>)\xacH9|(\x87\xcf\x17\x97\xc3G\xfe\x84\xbeU\xb4'z\x88\x7f:\xb2\xf9\xc8\xbf\xf47\xaf\xb9\x12\xf9\x88\x7f>\xd05\xa7D>\x9d\xf8\xe8\x17\x94\xc8\xa7\xa5D>&\xc1\x802@\x89|(\x91\xcf\x96\xf8\xa6\x1c@\xb0\xbe\x00\xd7\x94\x10\xd0R\x10\xc1\x00s*k)\x91\x0f%\xf2 `\x89A0S\xcc\xa9\x8a\x12\xf9P\"\x9fX6\x19\xc41\xca \x15\xab\x0c\xa2\x98e\xee\xe1@\x89|\xc2\x98f\x10\xc86\x838\xc6\x99o\n\xc6\xb1\xce -\xf3\x0c\x02\xd8g\x10\xce@\x83\x08\x16\x1ab\xca\xa4D>R\x82\x19jNm\x94\xc8\x87\x12\xf9L$\x0d\x93\x0d\xf0\x84,\xc00\xda \x8c\xd5\x06>\x1aJ$\xbb\x0d\x10z)\x91\x8fC\xa2\xd8o@\x89|\x94D1\xe3 \x88\x1d\x07\x94\xc8\x07\xc3\x9a\x83}0\xe7\x00SFJ\xe4\x93\x96U\x07^f\x1d\xc4\xb2\xeb\xac\xda(\x91\x0f\x8e\x8dg\xd5F\x89|\x90,=\x08f\xea\x01%\xf21J\x0c\x8b\xcf\xaa\x8c\x12\xf9h\xa1D>\x06\xa1D>_|\"\x9f\xaci\xaaY.N\xf7b\xb13\x0f\xb2n\x83g\x84\xe8)\xaf\x8f\x10\xca\xeb\xd3\xff\x845&\xe5\xf51\xe5\xf5\x11\xff\x8c\xc8\xeb#\xe9^\x94\xd7\xa7\x17\xca\xeb\x93\x86\x82\x14\xca\xea\xd0\xaep\xabB,\xa3#)\x9b\x83\xf2\xfaP^\x9f^\x92\xb24B\x18\x1aA\xec\x0c\xca\xeb\xb3+\x13#\x82\x85\x91\x84\x81\x11\xce\xbe\xa0\xbc>\xbb\xb0-B\x98\x16\x11,\x0b\xca\xebCy}(\xaf\x0f\x96%\x91\x94!\x11\xc3\x8e\xa0\xbc>\xb6\xc7\xbc,\x88\x00\x06\x04&kM\x08\xf3\x81\xf2\xfaP^\x1f\x0c\x8b\x81\xf2\xfa\x08\xd9\x85\xa9@y}L\x9a\xbcl\x84X&\x82um\xa0\xbc>\xdbBy}\"\x18\x04~\xf6@(s \x805\x10\xcc\x18\x08c\x0bP^\x9f0F\x00\xe5\xf5\xe9\x84\xf2\xfa(\xd1\xc9\x18t\x1c\xf6@ID\x9c\xb6\x82\xa7\x1f6\xdb\x98\xf0\xce\x19~B\x12\x82P\xea\x1f\xf0\x9b\x91R\xff\xec\xd1\xb8\xfe>J\xa9\x7fRX\x91R\xffP\xea\x9f/'\xf5\xcf\xfdu^.\xaa\x93\x8f*/\x89#\xe7\xcf\xc0nSF\x9a!\xf3\xcf\xbd\xe4}u\xb1\xbc\xdb\xf9O:m&\x1a\x9a%C\x90\xf8\x9cz\xe4`\x93\x03\xf1\x8a\xdb\x98\x1bQ\x8c2gf\x1f/\xf4\x908\xab\x8f;\xa7\x8f\xb74\x08FV\xc4.\xd1TPG.\x1fo)S\xe7\xf1qg\xf1 +\x8e\x15\x18J\x99\xbf\xc7\xd7\x0b\x9c\xb9{\xbc\xf5 \xed\x04\xd6*\xa7\xc8\xd9\x13\x97\xb1'Y\xbe\x1eT\xb6\x1e\xe7\xe4\x01\xde \x04\x10,.D\xb3\x01\xba] \x96\xcb\xe5\xd0\x17\x94\x9f')\x9f\xcb\xcb\xe8J\xcd\xe9\xc2\xb3\xba\x12\xf1\xba\xe2\x98]\x0eu\x81\x19yvdw\xa5\xe6w\x052\xbc\x12s\xbc\xc2X^\x81\x9dV\x049\x11\x7f,\xdc\x98x\x0e\x99\xafn\x11<\xb2H&\x99\x0b\x89O\xc6&C\xf3\xc9p\x8c2,\xa7\x0ca\xe5p^Y\x08\xb3\xcc\x9d\x11' \xbb,\x90_\xb6\x1b\xc3\xccg\xd0\x00\x96\xd9\x1exf\xde\xd2Y{z:\xb6\x19\x82o\x16\xcf8\xb3\xa8k\xbd\x99o\x92\xb2\xce|\xbc\xb3H\xe6\x99E\x97?\xe3\x0d\x82}\xe6\xcev\xe3\xcau\x93\x9a\x83\x96\x9c\x85f\xe7\xa1\xa5d\xa2a\xb8h\xe1l\xb4 >Z\x04#-\x94\x93\xe6\xc9_\xe3.\x1d\x96%\x84e\xa6Ep\xd3\x02\xd9i\x8e\xea\xc60\xd4,\xaa\x10\x19kbXj\x8e.\xef\xcfV\x93\x90\xa9\xe6\xcdT\xb3\x0f\xb6Z\xaa\xbe\x18\xc0X\x0b\xe1\xac\x99\xf3\xd0\xf8\xb2\xd0x\xcf\xf0\xb8\x0c4\xb8\x03r\xe2\xec3\xce\xdc3\xfe\x12\x85\xe7\x9d\x19\xe6\x981(\xf4e\x9d \xca`!\xca4I^\xb1\x95\xaeB\x17\\>5Q\xd8R\xde\n\xca[Ay+z\xa1\xbc\x15\x94\xb7\xa2\x97\xa4\x98f\x08\xa2\x19\x84gR\xde\x8a]Q\xcc\x08\x0c3 \x82\x19\x8e_R\xde\x8a]p\xcb\x10\xd421f\x89C,\x13\xe2\x95X\xb4\xd2p\x10\xa1\xbc\x15cA\xe0\x93\xd8]R06Iy+P\x88d\x0c\x1eIy+l\x8fy1\xc8\x00\x04\x12\x93\x95!\x04}\xa4\xbc\x15\x94\xb7\x02\x831R\xde\n!\xbb\xa0\x8a\x94\xb7\xc2\xa4\xc9\x8b#\xc6\xa2\x88\xd6\xb5\x81\xf2Vl\x0b\xe5\xad\x88@\x0b\xfdXa(R\x18\x80\x13\x06\xa3\x84a\x18!\xe5\xad\x08C\x05)oE'\xfb@\x02S\xf4\xb9\x00\x14\x10\x8f\x01b\xf2V\xa8\xc8\xbe\x81\x8e\xc0\x08\xcav\x92\xbbb\x1a\xf2\xbcC\xce\x8a\xb0\x08_\xf5\xa8)\x98W@dM\x17\xb8\x9b\x15\x85,\xb2\xa0\xa26m\xd6v\xc7\xe9Q\xe5\x1f\x1a\xa3\x98\xff\xf5\xf8\x9b\x87\xea\xe9\xed\xb8]m\xc8\x83\x0d\xd7\x1d\x9aj(\xedg\x80\xacla\xb5A\x9e\x1aGT\xe5\xc4\xc41a\xb5\xce\xc0ZT9\xe3\x82k\x1f6\xf6\xf0Z_\x80mx\xb1\x1c^\xac\x94a\xb6\xe0\xb2\xb33\xc6\x16U%T\x8f\xf0]\x80\x11\x18e\x0b+\xbe\xf4\xd5\xcd2_[\x15\xe2Blu\x90\xadp\\\x03\xfb\x907\xed0\x98\xb69\x86\xdf\x96\xacdw\xac\x16\xed\xa0\xbekW\xc6\x84\xb35oT\xb1\xe7G\xf6\x0fWC\x95\xa2\xa1\xc5Z. \xffUu\xc7m\xb0\xcc\x9b\x81a\xac\x9a\xf2rV\x0b\xaf-\xdf\n\x94sI*\xb4>=\xcb\xf8)\xa6\xaba\x1f\x96U\x15sV\xeb\xef\xa9\x81\x91\xeb\x84\x0b\xd6{[\x00\x16Yn\xe60\x8aT\x1f\xd7\xd2&;\xf4\xb0\xd1\xa0\x19\xea\xd4C\xba\xd9\xac\xc6k\xa2j\xa6\x87\xaa=,^k\x1f-\x07U8\x1c5\x07?\xf2\xc3\xe99\xef\x1d\x08a\x8a[\xa1\"x9V\x986\xb3\xcdE\xe3\x1d\xc0[\xb9^Jh\xb2(\xfa\x96m@\x15\xa3\xdfB<\x9c\xe8\xa2\x1b\x9c\x84\x8c\xaaJ78\xa1\x8c\xf9\xc5\xdd\xe0\xb4\xd5/z\xfe[\xe3\xa0\xbd5\xd3{\x99&Zl\x1b\xf8\x07}!\x88\x077\x12\xe2\xc1\xe1\x16$ \x1e\x1c\xf1\xe0\xacO\x12\x0fN\x08\xf1\xe0\xb6\x85xp\xc4\x83\xb3 \xf1\xe0\x88\x07'\x84xp\xc4\x83#\x1e\x1c\xf1\xe0\xa4\x10\x0f\x8exp\xc4\x83#\x1e\x9cM\x88\x07G<8\xe2\xc1\x11\x0fn )8I\xc4\x83\x13B<\xb8/\x81\x07G\x97\x1f\x85\xdd,C\x97\x1f\xed\xd1\xb8\xfek{\xe8\xf2\xa3\x14V\xa4\xcb\x8f\xe8\xf2\xa3/\xe1\xf2\xa3\xe6\xfa\xe6\xfeZ\xf0IO>\x8a\xffs\\|$y\x15?\xde\x9f\n\xaa\xea\xe8\xae\xa3\x86\x0f[IaU\x9cU\xdd\xc4\x06\"\xb4\xd2\xf0@\xd7\x8e\xf8\xd0^\xea\x02\xf1\xa1\x89\x0f\xdd \xf1\xa1\x89\x0fM|\xe8\x1d\nG|\xe8\xf4|h\xb5\x0d\x10\xdb\xa4\x9e -\xee>\x14\xb8'\xffc\xe7e6N\xd8D\x8a\x16B\xa4\xe8\xfe'\xac1\xbf8R\xb4#)\xa8\xde^\xbb\xb8\xd1\x93G&\xba&\xc4\xe9\xbe\x00D\x88\x1e \x11\xa2}\xbd\xb2\x17\"D\x13!\xda,D\x88\x16B\x84\xe8m!B4\x11\xa2mB\x84h\"D\x0b!B4\x11\xa2\x89\x10M\x84h)D\x88&B4\x11\xa2\x89\x10m\x13\"D\x13!\x9a\x08\xd1D\x88\x1eH\nr*\x11\xa2\x85\x10!\xfaK Dg\x03\xf6\x16\x84\xf2v2;kg\xc7\x9c\xa0\xc4\xd8\x8e\xa5\xc3\x12c{\x8f\xc6\xf5s\x8d\x89\xb1\x9d\xc2\x8a\xc4\xd8&\xc6\xf6\x17\xc3\xd8\x96d\xb9\x93\x8fjaE\x90\xb6\x7f\x91\x94\xc5m\xd6\xb6\xe22bh\xdbR\xc7\x03]G\xe2m{\x19\x16\xc4\xdb&\xdev'\xc4\xdb&\xde6\xf1\xb6w(\x1c\xf1\xb6?3o{\xd8\xe2D\xdf6>@\xf4\xed\xfe'\xac1\x89\xbe=\xa2o\xcbm\xb6\x9b\xbf\xad\xb6\xf3\xb5\x99\xc1\xdd\x12q\x9b\x88\xdb\x01\x0b=\x11\xb7\x89\xb8\xad\x84\x88\xdbD\xdc&\xe26\x11\xb7\x89\xb8M\xc4m\"ncwID\xdc\xee\x84\x88\xdbC!\xe26\x11\xb7\x0dB\xc4m\xe33D\xdc&\xe2\xb6E\x88\xb8M\xc4m\"n\x13q{ )H\xb4D\xdc\x16B\xc4\xed/\x83\xb8-h8\x03\x1d\x13\xea\x8ed\xe9(\xc0i\x08\xf6N\xe9a@tm\xa2k\x13][\x08\xd1\xb5\xfb?\xe3\xadHtm\xa2k\xff\xc9\xe9\xda\x9a\xf6w\xf2Q\xff\xd7u>wP\xb5_\xab\xa7:\x92v\xd61\x07{\xe2`\xf7\x97|n\xe7jkM\x0ft\xfd\x0e\x94\xaa\xad+\xe3c\x8cuuVT\xb1\xee\xdf\xe5\xa2J\xca\x0e\xb3\xf1\xb5\xbdh\x02\x82\xca\xe4fj\xe7s=\xe9\xe8\xda\x99\xcez\xa2o]\xaf\xab\"\x9f\xdd_\xab=Yd\x891\x00\x82\xf9\x83\x0ev\xb7x\xdc\xa2J*1\xd5\xcaM\xf6NT\x93\x944oW\x13\xc9\xdfF\xfb\xef\xa1\xb4\x0e\xba\x10\xb8(C\x10l\x8a\xae$\x1d\xbbs\xd2b\xac\x19\xf79V\x1b\x91\xb6fs\xb3\xca\xdb\xeb6_Y\xd06o\xb1p\xc4]\\;\x0eJ\xe3g\xedv3\x85\x9d\xb8+\xf5Y\x88\xbb\xb2\xfb;\x89\xfb\xe8\xcac\xa7\x06\xcfX\xd4\x1cu\xc1\xd8\x97\x03Q\xffi\xc4\xcb\xce\xda\xae\xf6\xae\x9a7\xfcM\xab\x83_p\xad\xa4w*o@\xf0B\xf9\x9eg@?\xce\nXoj\xdey\xe4~\xc6;k\x1d\x941\xc7e\xf2\xd9\xd49\xb1\x0d\x0d\x8e1\xedo\xb2\x87\xce\xd9,\x17\x1fRZ\x06\xe1\x0c\x86\x10 X\xd4\x16\xdf\x0e\x9fx\xd8]^m\x1a\xa5\xc9\xf6\xdd.\xe6@\xf9sf\x15\x1fH\xa5\xc4\xad;\xca\xf7\xdb\xd3\x1f_]\\\x9d=\x7f\x0bM\x9b\xb5\x9b\xe9F\xb6\x974=D~\xc4\xdc'p\xed)5\x98\xb8\xf3 \xb9\xf3\xeb\xaa\xc9\xdb\x01\xbb\xbc\xc8\x17\xb6\xe9}v?+\xd8\xd6r\x0c\xe7e\xde\xe6Y\xd1s~/]S\x07\xa23\xb3r\xb3\xb2M\xf5O\xe0\xf5\xc5\xab\xd7\xaf.O_\\_^\x9d^\xbd\xb9\xbc~\xf3\xf2\xf2\xf5\xd9\xb3\xf3\x9f\xce\xcf\x9e\xa3\xdf\xb9|\xf3\xe3/\xe7WW\x01o\x9c>{v\xf6:\xe4\x85\x8b\xb3\xffv\xf6,\xe4\x05\xd5\xb3\xd0\xcf\xffv~\xf5\xf7\xe7\x17\xa7\xbf\xbd\xb4\xf4\x0eIn\x0e4\xd7\"/\xb3\xe2\xba\xcd\x8a\xe2\xfeZ\x9e@v\xe9|\xdb\xda\xc6\xee\xfbf\xb3\x92\xc9\x0f\x8aB\x85\xc9\xb09\xdcU\xad\x85\xa5\x00\x92\x0b\xb4\xcc\x1b\xdb\xa8\xeb&\x1a\x81\xd5\xf0\xd3<\xd7\xa6\x18\x83\xfa\xd0(}\x02Y;\x98\x8dl\xbe\xc6\xac\x9c\x8b\xb1i\xfd^\xb5\xde\x14\x82\xf3\xa0\x90&^\xd5\xbc\xbc=\xe2\xea\xef*9I\xb1:\xaf\xe6\xc0J\x11We%\xe3vEg\x1f\xd8l\xd3\x8aBY\x1e\x15\x0eb\x11\x0f\xb6\xcc\xd6kV6\x12ep\x8d6+\xa5\xda\xb7\xf3\xe7r\xcf\x9ak\xb1A\xb2\xe3\xc5\xde1\x0d\xd3N\xd3)\xd5\xdb\xe6\xae\x03\xa8P\xaa{\xd6\xc8\xbe`C?\xb3\x9b\x86w\xa5\xf4E\x1b)\xb6\x15O=d\xd9\x1br)\xab\xf4E\xd3:m\xa5*+\xb7\xcd\xca\xea\x9a\xafe\xd7w\xac\xddO\xe9&\xdam\xe5\xe4O\x98\xca(\xc7\xcc\xb5\x1c3\xd7\xac\xdc\xf5\xdc\x99bg\xbdU\xa6\xceq\xd9\xed\xb0o\x04\x13T!7\xf2y\x8b\xb2\x95b\xc4\xcd\xabr\xea\xb3\xec\xe5M)\xdc\xc4\xd9\xc0\xddP\xc0/\xcd\xed\xd9\x076\x13;\xa1\xac(\xd8\\\x7f\xf5Q[\xa9I\xc3\xb6p\x0f7\xfc\xcb\xca\x06\xe4\x83\x9c\xbe\x84/\xaaws\xa8\x8f\x88\xbd\xdftBk\x1e\xdb&N=\x11v\xe8\x18\xaf\xaf\xed\xb3\xc2/\x99\xf3\x0dZ^\xb6G\x9a\x1b\x00o\xb7\x97\x8f\xb7\xfc\xb7\xb7rO\xf3\xd6\xba\xe8\xb0b\xdem\xe3\xac\xdf\x9c\xcd\xaaz\x9e\x97\xb7\xc5=l\xd6s[\x84\xa2\xb4kU'X\x0c'\xaat'\x12\x95\xd4>\xd9\xc9\xde\xca\xa9I\xaeh\xd3\xbd\xd7\xcb\xaa\xbd\xd8X\x82\xc7\xbd\xa3\x06\xb9\xf1:\xfb\x7f\xcf\x9e\xbd\xb9zuq}qv\xf9\xe6\xc5U\xd8\x0el\xfa\xf2\xcbWW\xd7\x17o\xcc\x9b\x18\xe7\x8b\x97o\x9e=;\xbb\xbc\x0c\x7f\xf1\xa7\xd3\xf3\x17o.\xce,M9\xdd6\x85UV\xe1\xa8\xfbsr8\x16r\xccR\xee\x8f\x91\x02LG\x91\x82\xeb\xf7RB\xe3\xa5\x9c\xcaZ#i\xd6\x8eNC\xea\xb8)\xf0\xc7NAD\xfc\x94\xbb\x02Y\xbbD\xc7PqiS\xc4QAd,\x95S!7.:\x9e\nv\x8f\xa9\x82\xe0\xb8*\xa7*\x15\xef\x11\x14[\x05\xa9\xe3\xab 0\xc6\nB\xe3\xac\xdc=\xbb\x8b\xc1\xc2\xc6ZA\xeax+\xc0\xc5\\A\xca\xb8+\xd89\xf6\n\xe2\xe2\xaf U\x0c\x16D\xc5a\xb9\x87\x83\xc6\xe0|\xe3f/\xf1X\xb0\xc7\x98,\xd8O\\\x16\x04\xc6fA\\|\x96o\nnQ1Z\x906N\x0b\x02b\xb5\x00\x82\xe3\xb5 \"f\x0b1e>F\xc4mA\x8a\xd8-\xf0\xc5o\x01~{\x86\x88\xe3\x82\xc0]\\p<\x97S\x9b\x88\xf5B\xc4tA@)\x13\xc6vAP|\x17\xa4\x8e\xf1\x82\xc88/w\xbfj\xfc\xb1^\x10\x1f\xefe\xd5\xc7\xbf\xe8\x8b\xf9\x82dq_\x80\x0f_\x02L\xfc\x17\x84\xc5\x80\x81/h#2\x16\x0c\x10z\x1d\xbc\xf0Dqa\x10e\\||\x18 j\x19\x11'\x06\xb1\xb1b\xe0\xb6j\xba\x981\xc0\xc7\x8d\x012v\x0c\xd0\xf1c\x80\xb3zx\x1c\x19\x04\xc5\x92\x813\x9e\x0cR\xc5\x94Ah\\\x19\xec\x18[\x06\x08\xf3\x06\xc4\x98\xc1>\xe2\xcc\x00SF\xc7HH\x17s\x06\x98\xb83\xd8!\xf6\xcc\xaa\xb0\x15\xcc3{\xfc\x19\xa4\x8eA\x03o\x1c\x1a\xc4\xc6\xa2Y\xb5\xc93\xaa\xfb\xb8\x8e\x88I\x03g\xe8\x0c8c\xd3 *>\xcd\xaa\xca\x19\xb7\x06\xb1\xb1kVmr\x1f\xe8\xf0\x9a\xa5\x8ba\x03T\x1c\x1bD\xc4\xb2AX<\x1b\xc4\xc4\xb4Ap\\\x1bxV[O\xac\x11\x04\xc4\x1bac\xdc &\xce\x0dBc\xdd\xc0]\xf1\x98\x987\xab\xb2AD\x19v\xc8\xe0b\xdf\x9c\x03\xa2\xbcu\xc7\xbfA\xda\x188\xf0\xc5\xc1\x81;\x16\xce\xfaNl\x8c\x1c$\xec\xbb\x01\xb1r\x10\x14/\x07\x83\x98\xb9\xb1\xe0N\xe0\x1a\x00\x93\x1c\xd4\"o\x84[\xfbm3\x7fw\xfcKs\xfbV\xf9\xca\xbb~#a\xeb\xb93\xe9f\x0f^\x8b$\xa0\x13\xcf\xc9\xa8X\"\xe6@\xb3\xfc\xcd\x99\"\xbbh\x02\xba\xce\xbf\x17\xca\nIY!{\xa1\xac\x90\x94\x15\xb2\x97\xa4\xa8e\x08b\x19\x84VRV\xc8]\x91\xc9\x08T2 \"\x19\x8eFRV\xc8]\xd0\xc7\x10\xe41\x02u\xa4\xac\x90\x94\x15\x92\xb2BbQ\xc3\xa4\x88a\x0cZHY!m\x8fyQ\xc1\x00D\x10\x93\xf30\x04 \xa4\xac\x90\x94\x15\x12\x83\xeaQVH!\xbb w\x94\x15\xd2\xa4\xc9\x8b\xce\xc5\"s\xd6\xb5\x81\xb2Bn\x0be\x85\x8c@\xd4\xfchZ(\x92\x16\x80\xa2\x05#ha\xe8\x19e\x85\x0cC\xc8(+d'\x94\x15RI\x97\xd3\xabON5\xd0cL\xc0tm\xb9`\xb6\x8f\xbb\x1cNE;'\x88\xb4\xa4\xfb\x08N\xc0\xd5\x8c3p\x9d\x88HK\xa9\xc1\x94\x87kpn\xbe\xe2O^\xc8\x98E\x99\x96L\xcd\xbc\xc2#\xdd\x073f\xc34\x11\xe3\xd8F\x18F\xf17-\x1f.y9\x0e1\xe5#\x8b\x95\xd2\xfd$/\xf3\x9bU\xab\xf5\xa6ez\x04\x08\xe7\x93\xfc\xe8@U\xd6\xb2A\xe8\xbc\x1c7\xd2\xc1RV\xc2\xef B.\x8f\xe1\x95\xa2\xc0\x0b'\xce2+\xe7G|\x976)\xa3|x\xa0O\x14)o\xa1\xc9WkQ\xd7\xbe\xf6\xa6\x80UY\x1eh\xda\xaa\xee3\xb7u\xca\xfa\x0f\xb5\x0d+\x16\xba\x97lg.\x1b\x18\\=s\xb0\xc9\xcb\x06\xbdh(\xa3\xb2\xc8~2\xbc\xe6\xb2\x96\x17\x0d\xf2}\x1a\xffm{\xe9\xb6\x96\x04\xbc\x10\xa0'\x7f\x81\xd7\xf9\x950o\x01\"gAXq\x12\xe4*p\xe7)\x08+\xce.\xf9 \xb0\xb9 \x82K\x14\x9d\x93`\x9b[0\x18\x87fz\xc1xf$\x86\x81\x16b\x18\x10\xc3\xa0\x17b\x18\x10\xc3\xa0\x17b\x18\xb4\xc400\x0b1\x0c\xb4\x10\xc3\x80\x18\x06\xc40@\xee\x92\x88a\xd0 1\x0c\x86B\x0c\x03b\x18\x18\x84\x18\x06\xc6g\x88a@\x0c\x03\x8b\x10\xc3\x80\x18\x06\xc40 \x86\xc1@R\xa0\xbd\xc40\x10B\x0c\x03b\x18x\x18\x06\xf2b\xa4Cg\x18\\\xdf\xdc_\x0f\xaf\x149\xf9\xa8\xee\xd8q\xdc\xf758=\xeb`\xdd\xe6\xc7{y\x81\x97\xbc\x0cD_\x04\xd6\xdf\xff\xd1\xe5 \xdc\xbe|\xa9S&\xef\x7f\x19_\xb74B\xda\xcd_SO\x1e,\xde\xde\x19\xe10\xb00\xdbUaA. \xc756\x13+G^\x18\x16re\x18\xaa\xe4\x18\xff\x0f\xa4\xbd8\xccuu\x98\xef\xf2\xb0\xa4uJy\x85\x98\xfb\x121\xef5b\xee>/\xc5\x99e;\xdc0]\x89v\xbcN\x0cq\xa1\x18\xaap\xb8\xab\x0f\xf0\xad\x1bu\xb1\x98U\xdb\xfb\xacq_-\x86\xba\\,\xc8\x10\xf8\xc9\xc4;n\x91\x17b\xb9\xa0\xef\x8e\xf2\x85\xb8\x0b+\xd55R!W\x8d}.\xd3&\xb9r,\xf6\xd2\xb1\xc8k\xc7\xac\xda\x16u\xb5\xc2^<\x96\xfc\xea\xb1t\xbd\xc6u\xfd\x18\xbe}S^A\x96\xec\x122T7w\xdd\x87\x11w\x15Y\xcced\x11\xd7\x91E\\H\x16~%Y\xf8\xa5d\x10{-\x19\xfeb2|\xb7\x8c\xb9\x9c\xcc>\x84\xab\x965\xe0\xbb\x9e,\xf0\x822\xfb\x88\xea/.\xf3^Q\x96\xf4\x92\xb2\xa0k\xca\x02/*\xf3\x9e<\x00q\xfa\x00?\xddW\nb\xf4CZ\xea\xaf\x14\x04\x01XJL\x01\x13\x90\x81\xa5\xf8\xaf.\x8b+\xe0.\xf4`)X\x92\xb0\x94\xc82F\x13\x86\xb5 \xaf1C\x150\xf5~>\xe9uf\xc8\x0b\xcd\"\xae4\xb3jR9\xe3\xd0\x97\x9a\xa5\xbc\xd6,\xf0b\xb3\xd4W\x9ba/7C_o\x86\xbc\xe0\x0c\xdf\xb9\xd2]r\x16\x7f\xcd\x19jT\xa1\xb7va\xf7\x7fy_w_w\xb6\xc3\x85g\xd1W\x9e\x996e\xa1\x95\xd6Y\x1f\xf7\xec\x94qn\x0dp\x9b\x03?Y\xbf\x7f\n\xb1r\xe0G\x86\x94P\xfa\xbeG]kdq9H\x0dB\x82\xa9\xfc\x1e}Y\xeb#\xf4K \xa5\xf5\xfb\xaa\x11z!Z\"\x8a\xbf\x94`\xa2\xbfG\x9f\x08\x03\x08\xa0\xfbK\xd9\x91\xf4/%\x8c\xfa\xef\xabG\xe4\xe5h\xe1a\x00\x1eu\xfc\x84\x15\x12\x0c %($\xc0\xd7\xdf\xbb\x80\x01l`\x80\x94\xe0\xf0\x00\xdf\xf8l0A\x02R\x92\x85\nhu\xbb\x04\x0cH\x89\x08\x1b\x90\x92$x@Jx\x08\x81o\x98\xe0/M\xdbK8\x81\x94}\x05\x15H\xd9Ch\x81\x94\x90\x00\x03)\xe80\x03\xdfP\x1a\x04!\x88\xbe\xec\x0f6\x90\x920\xe4@\n6\xf0@J\x1b\x16~ %4\x08\xc17\xad\x05]\xa5\x96 A\x8a\xf7:\xb5\x80\xcd\x1e\"DAJ\xd8\xae08\\\xc1\xd7K\x03.V\x0b)k\xc2\x00\x06)\xf80\x06)I\x83\x19\xa4\xc4\x844\xf8z\x1b\xf2\x92\xb5\xb8\xf0\x06\xb7\xba\x16y\xd1Z\xaaP\x07)H\xce\xbe\x14o\xd8\x83\x94\x80\xe0\x07)\xde\xbb\x8b\xa2\x02!\xa4\xf8u;/-I\x14\x1a!%\xc6\xd8\xf80 )\xfe\xfaF\x84LH\x89\n\x9c\x90\xe2\xbe\x18&Y\x10\x85\x14d(\x85\x14L@E\xf7$\"\xacB\n\xaa\x15\xc2C,\xa4\xe0\x03-\xa4\xb8\xafeK\x14t!%(\xf4B\xca.\x01\x18R\xfc\xc6\x0e\x08\xc6\x90\x92<$C\n\xa2\xa4\xce\x91\x92.HC\x8a7TCJL\xc0\x86C\x9d\xf6\xa5\xfb\xaek\x8b\x0b\xdep\xa8k\xb5\xcf\xcaye[d \x87C\x1f\xe6\xda6TP\x87\x14\xf7\xedO\xbe\xcb\xdbb\xc2<\x1c\xca\xbc\x17\xb8E\x86\x818\xf4y/qK\x19\x12\"\xc5\x1f\x18\"%4\xd6Lt\x84\xb2\x82UU3\x0d\xaa\x98\xc6\x7f[\xb5\x99\x05\xccG\x1b\xd3\xc1co\xf3\xb6`\x8e\x99O|^XQ\xfcG\xb9\xd1S\x88N%5\x80\x0cl\xf5\x1d\x1aZ0\xce\xae\x852\xdb\xea\"b(X{\x04y\xdb\xf4\x94\x98M);\xf3\\\xfa\xeb\xdf\xe7\xcd\xb8\x7f\xb8\xe7\xc9\xd1\xcd\x99\xe3\x00\xb8I\xa2K\xd3\x8b\xdd\xad\x9a\xe38=J\x80\xd9\x0b%\xc0\x0c\x88\xa9\xa2\x04\x98aL\x19J\x80\xb9;\x17&\x8c\x05C 0\xcd\nq<\x97`\x86\x0b%\xc0\xdc\x85\xc3\x12\xce^\xa1\x04\x98\xbb\xb0TB\xf8)hf\n%\xc0\xa4\x04\x98\xe8]R0\xa3\x84\x12`\xa28#1l\x11J\x80i{\xcc\xcb\x04 \xe0\x80`\xd2;\x86\xf0>(\x01&%\xc0\xc405(\x01\xa6\x90]\xf8\x17\x94\x00\xd3\xa4\xc9\xcb\xaa\x88\xe1SP\x02\xcc\xa1 \xb8\x12\x94\x003\x82\xed\xe0\xe79\x842\x1c\x02\xb8\x0d\xc1\xac\x860>\x03%\xc0\x0cc)P\x02\xccN(\x01\xa6\x12\x9d\x00S%H\x1b\xe8p\x9d\"\xfd\xd9\xf2\xda.\x01\xd7Z\x03P2\xf1\xc9\x04\xb9\xec\xa0\xe5\xe1\xf4\xb5s\xd2\xcc.\xadg\x87#\x1f\xbfc\xf7\xb6\xcaM\x90Y\x05\xc5fja\x90\xd7J\xca\x1b#%:\xa8\xe0\xaf\x0e\xb7\x15\x0e\xae\xdb\x89'H\x00\xb1|2\xf3a\xb1\xaf\xf82^\x95\xe2\x04\\-\x16\x82VP\xc3\xb8\xb80p\xd07\xac\x9d\xda\xeaw\x95\xfcSKo\xacEV4^kY\xdc\x1d\x06#\xca\xf2!;\x89\xaa\x8c0e\xb9Y\xb1:\x9f\xe9\xbf\x899d\x96\x95\xbc>\xd2\xd7\xb3d\xa56\xfc\xa6\xec\xdck\x93M\xb5\xcc\xc9#\xb2Wt&\x94\x0e\xa9M\xc3M\xfd\x8e\x05\xdas\xac~\xcf\xc6\x9d \xdb\x06\xf3\x16\xf9*\xc7ZW<\xdb\xe5\x0b\xb1\x00\xde\xd2\xf5:\xec\xc1\x8aK\xd1_^*e-\x1d-\xc3?\x9d/\xa0`\x8bV\x13\x04\x14c@o\x85\x85\xd7X\x0e\x10\xf9\x11n\xe7\x9b{\x99H)[\xaf?\xa3\x15\x87\xb0}\xff\xbe\xcb\x96\x837Dn\x12&\xea\xc7'\x1a\xe0\xff\x91\x97\xf3|\x96\xb5\xac\xc3\x8ft\xfa\x0c\xfe\xa0!\xa2\xd9\xe8f\xf2+\x1d\x807i1\x01\x07\x0f\xfc\xca|A\x1a\xb1`F\xca\xde\x9cOs\xceM\xaa \xce\x065k\x14p/\x86W?\x1e\xf9\x90\xd3\x19\xae\xf2\xdb\xb2\xaa'^y=\x1a\xc7\x9f\x90\x96\xd9\xb5ao\xaa\xaa`\x03*\x97\xa1\x01kv\xc7\xea\xd1\xab\xae\xc6SOO\x1b.\x1f\xd0>jf\x1e #=\xfc\x1b\xac\x14xeU\xcfY=u\xcb]\xe6\xe5\x8c=\x05\x99_\xf9I3\x7f\x07_\x1f\x7f\xf7\x97\xa4\xd6@'u\xbe\xabZv}s\x7f\xadW\xcfk\xfe\x87zr\x87\xf4G\xf1GGv\xe7_\xab\x96\xfd\xd81M\xf8\xbf\xea.\x9fs&\xb3\xa1\xc9\x93\xb2\xa4\xbf Xh.\xfe\xde\x01\\\xa3\xa4\xcd\x06}\x0f\xb4\x19\x0e4c3\xaf\x8c\x87\xa2&\xec\xa0\xe6Y\xf1\xdf\x03\x0e\xdc\xc0\xde\xdb\xb6\xe9\xc5Z0\xf0\x12:\x06_\xd8\x1f\xb1\xcaH\xff\x03\xd35\xea\xad'\x99\xb30@dA\xb7\xac^{\xf6\x97\x16k\xebl\x0f\xe6b\x8c\xbe\"\x1f\x1c\xb6n\xfd\xb0\x81\xd9\xb2\xcagLC\xca\xae\xea\"j\xe5\xcan\xf4\x04~}uuv\xfd\xea\xf5\xd5\xf9\xab\x97\xde\xcc>\xd3\xe7\xffqfK@4~\xee\xf4\xc7\xcb\xab\xd3s[\x9e\xa3\xf1\xb3/_!\x1f\x13\xe9%\xaf\x7f=\xbb2\xbf\xd0\xe51\xc2W\xd0\x9d%\xdbkg\x0c\xe8\x956?6\xef.\xa6N\xe1\xcd\x1d\xed\xad\x0b.\xcf\xdc\xa8\xc6\x93\xd4\xd0\xed(\x89\xdc{yw\xbf\x9e\xbf\xecy\x9f\x11\xc4D\xc3$o\xbe~\xdb\xbe\x1ah!Nb/\xc4I$Nb/\xc4I$Nb/\xc4Il\x89\x93h\x16\xe2$j!N\"q\x12\x89\x93\x88\xdc%\x11'\xb1\x13\xe2$\x0e\x858\x89\xc4I4\x08q\x12\x8d\xcf\x10'\x918\x89\x16!N\"q\x12\x89\x93H\x9c\xc4\x81\xa4\xe0\x87\x11'Q\x08q\x12\xbf\x04N\xe2\x00\xfb\x1e\xe81\x82\xd5\xdb\x97rK\xbc\xfa\xd3^\xca\xdd\x17\xfdn\x02w\x99\xb1\xed\xc1\xbdI\xf2o\x13\xa0;a\x99\x83\xa8%\xcd\x90[2f\x95\xb8\xd9$M\x0f\xf89\x98$V\xf2\xc8\xe0\xf5\x07\xba\x8a\x07L\x1c9\x10t\xcdK\x11 \xf2.\xe1\xef\x91\xdd\x89(\xe2\xa4\x8a\xa0\n\x9c\x8e.\xe2&\x8c$\xa7\x8c\xa0j\xe7\xbb\x14\x0b\xcf\xab0\xbda\xa7\x8e\x84\x91G\xd0\xf4\x91`\x02I\x14\x85\xc4G\"AY\x1e\xe3\xa9\x84\xc4T\x12;\x99\x04A'A\xd5\nG)\xc1\xd7>\x8co\xe2Qc\xb9\x12oT\x16\xbe>\x0c/.V\xcb\x8aL\xeb\x87\xccl'\xaf\x86\xd5Y\xedtb\xc4\xbb\xee\xc2\xd8-R\xdfT\x1f\xe5\xb5\x13\xe2\x8a\x9e\xe8\x85\xf2\xda\x01n]\xfd\x92\xf2\xdaM\xb6yv\xea\xd8p+\xa9\x07\xc9DaK\xb41\xa2\x8d\xa5Y\xcc\x896F\xb41\xb3\x10mL\x08\xd1\xc6\xb6\x85hcD\x1b\xb3 \xd1\xc6\x886&\x84hcD\x1b#\xda\x18\xd1\xc6\xa4\x10m\x8chcD\x1b#\xda\x98M\x886F\xb41\xa2\x8d\x11ml )(F(kbi)\xee2\x88\x0e2h\x85)\x9bgD\xdd\xd1\x850\xe98\x19v\x0d\xe9% \xa6\x0f1}\xac0\xd7\x1e@2\xd7\x11C\x0d\x0d[\x07\xd4G \xd5\xebo\xd8l\xf9\x97o\xa7\x14s\xfdP[\xf1\xb9Q:_\xd4\x847\xd0\xbb\xe3\xd1#v\x06oN>v\x7f\x16\xee\x0b\xd7,\xae\x1fTc\xb6\xe9\x039\xf4\x1f\xaa\x122E\x99\xedg\"\xaeV\xe9\x1a\xcf\xe2S}\x0ft\xbd\x0ft.\xd7\xd5L:\x96,\xddU\xd1@5\x1fyrh\xd5\xc4 A\x90\xe8,\xdd\xc8-\xb8\x98\xe9\x87V\xd7\xb2\x0bay@\xe0\x19\xfes>\xc7>\x1a\xa0\xdd\xfc<\xf4X\x1e\xa2y\x0f\x97\xafz\xa9q\xea\xc7?\x99\xdf\xdc\xcd\xb0\x81\xfd{\xcf\xa7\x07R\xf2\x9e\xefe\xfb?\x15\x9f\x87\x9b\xbc\xe7\xe4='\xef\xb9\x12\xf2\x9e\xa3F:y\xcf\xb7t\x91\xf7\xdc\xd2s\xc8{\x0e_\xb2\xf7\xdc\xc3\xe5F\xf9\xd4M\x1az\x0e7\xb9\xd9\x81\xdc\xec\xe4f\x1f\xfc\xe0t@\x13\x9b\x9c\xfc\xe2\xe4\x17\xdf\xd5\xa3K~\xf1\x14V$\xbf8\xf9\xc5\xbf4\xbfx\x83I\xdea\xf2\x887Q.\xf1a\x86v\xbdm\xdf\xf2\xda\x9a\xfd\xe0\x7f\x94\xd8\xf0\xa0}-\x11\xc8\xc9\x05N.pr\x81{\x1f'\x178\xb9\xc0GB.pr\x81O\x85\\\xe0\xfdOXc\x92\x0b|\xec\x02O\x91\xc7\x84\x12\x98\x08!'89\xc1\xb5\x90\xb79\xdc\xc7A\xdef\xf26\x93\xb7\xb9\x17\xf26\x93\xb7\xf9\x0f\xe9m\x16\xeb\xb2z\xc5\xe4_~-~\xef\x1c\xca\xf2\xf1\xce\xbb\xd93+\xaa\xf9\xa6\xe8\xb6\x83f/\xb1T\xf5@W\xeb@]\xc5C\x83\x0cerf\x15f\x98\x84\x95\xa9\x0d\x8e\xb6\xce\xd8&\xbd\xecpJ]e\x1f\xae\xc5\x94y]\xb0\xf2\xb6]\xba\x0eX\xb6\xad/\x8c\xb7\xbf\xee\x03\xd6*\xfb\x90\xaf6+\x90\x9f\xe35\x13\x0e\">w\x17E\xf5^\\\x9dR:=A\x88\x03\x8e\xec\x18\xa8\xc3\x8d:\xce\xa8^y\xf1\xfa\xd9D\x1f\x1dn\xe8p\xf3\xe9\x0f7\x98Yw\x95\xd5\xefX\xad\x92;\xb3\xa6\x99Ue[W\xc5\xc9\xc7|\xee\x80\xf7\xba\xc3\x0d\xc8\xb7\xa0f\xb3\xaa\x9eK8o\xea\xac\x9bf\xe1g\xcd\xc1\xcf\xb6{I\xda\x1c\xdd\xb7v\xf5V\xafY\xbd\xca\x9b&\xafJ\x8f\x0es\xb5\xa4X+'\xc5[\x08\xf0bA\x02\x94x\xf6\xec\xec\xf2\x12\x01,\x8c\x1e\xff\xc5\x85\xa3\x0c\x9e\xfb\xf1\xcd\x85\x1d\xf9\x19<\xf7\xfc\xec\xf5\xab\xcbs\x94\xca\xdf\xce\xaf\xfe\xfe\xfc\xe2\xf47\xcc\xb3\xcf\xcf^\x9c]\x9da\x9e<}\xfe\xcb9\xaa\xa4W\x17\xa7//\x7f:\xbb\xb0>\xdbC7x\xcb\xba\xd7\xc6\xa1\xc8\xd1<\xdap\xcc\xf3\xc5\x82\xd5\xe2\xfcz\xbf\x96\xd9\xc5\x07\xfdO\x9c4\x1c\n3\x90\x13\x92\xbe\xdb\xb8\x81\xdb:+[\xe1n\xa8\xc4\xd4\xa2/\xe0r(1\xf6#\x93\x05z\xcf>\x94\xd5\x93j-.\xfbR>~\x1b\xe49\xfe\x00\xefyO\x87\xff\xe8\xd8\x87\xeajxq\xca\x9a\xd5,S\xf7W\xf2z\xf1c\xfc\xa2\xab*\xea;\xbc\xe7>\x1d\xfe\xc3\xf0\x9d93~G\xec\xf9\xa4Q\xa53aV\xe5%,Y!\xee\x07\xed\x7f\xc5UX\x0d\x8d\xa7\x93\x7f\x1b\x8a\xc3\xcf,]s\xd6Lt\x8a\x998\xaf\x88\x9b\xe7\xd5\x0f\xea\xe4\xbebm&.\x86if\x15\xef5r\x93\x8a*\x91\x1e\x81O\xa7\x7f0\x94\xa9f\xab\xea\x8em\x15\xaa1\x94jQW\xab\xadbU\xae\xd6j\xeb\xacl\x16\xac\x96\x06\x16\xef\x0fu\x0e\xaet\xc8J\xe1uw\x8d\x03\xf90\xb6M\xf8\xbc\xf2t\xfcOC\xedE\xdd\xf5\xd5vl~\x04\x8b\xbcTw\x90\x8b\x95\xbc\xcd{\xdb\xe4\xa5\xbcr\x10f|\x9bP\x14l\x0eM\x9b\xb5\xec\x18\xae\x96\xb9\xfdj~\xd0\x1b\x82\xach\xd4f\xbc\x19\xa8\x90\xca\xb5\xfbF\xfck>!\xe4Ne\xce\n\xc6\xc7#\xca\x12b\xde|:\xfa\x97\xc1\x0e\xd9|\xae\x8b)f\x97F\xefd\xc4\x9a\x0f\xaa\xe2\x1aPT\x06\x19Lb\xb8V\xd1S\xf3\xd3\xe9\x1f\x8cS\xc4]\xf5\x8e\xb7M\xc3\xcay\xbfaR\x03v0\x82\xe5\xb8\xe0\xaf,\xb2\x19\x7f=k\x19\xb0\x0f\xb3eV\xdeZY\x1a .\x88\xcd\x9bn\xb3\x96\xdf.\xdb\xce\x99\xa2fZ\xde J\xb88\xbb\xbc\xba8\x7fv\xe5\\wU+\x9a>\x87Y:\xe4\xa2\xf13\xb7|\x8f\xf4\x8ak;\xab\xa2`\xe2\xbe\xf9\xe9\xaa\xa1P`\xa3:\xeds\x17\x882+\xd8\xad\xbc\x97~<\xe8\xd4\xb6v\\d\xc4\x19P\x96\x15u\x064\xbd~\xf2\x8b(\x86Z&\xe9\x14H\xa7@\xef.\x193\x82\xb8\x9c\xc2\x9b\x8b\x17'5k\xaaM=\xd31\x0e\xcb\xac\x85M\x99\xff\xbea\xc5=\xe4sV\xb6\xf9\"\x1f\xd3i\xac\n\xc5\xae\xa1\xbb\xde\xd9\xbe\xbf\x12\xb7\xb7\xce\xaa\x02n6|\xa7\xa7\x1bM.\x0c\x9a~\xb8\xda4\xad\xe6 \x82c\xc7W\xb0\xaci\xed\xdf\xaaJ\x06_\x9d|\x05\xb3eVg\xb3\x96\xd5\xc7\x82q#.\xf3n\xd8\xed\x8a\xf5~\xe77\x17/\x1e6Spm,\xa2P\xdd\x8d\xbe\xf6\xaf\xb6\x86{\xc6\x85}\xb5\x8b\x9b[\xf2Q\xd6@n\xb9\xd6\x9a\xcb[^\x14\xeb\x8d\xb7o\x1f\xcb\x9a\x08\xb5=\x04\x96\xdb\x97\xb9\x8c/\xa3U\x99\xcf\xb2B\x8c!\xfb\x97\x1f\xb1\xe3\xdb\xe3#nZ\xe1\xf3\xfd\xea\xf8+>o\x95U+\xe6\xffu\xcb\xe6\x8f\xa7.\xe0\xa1\x9c\x97\xb0\xe6\xc6\xceg\xec\x08Z\x96\xad\x1a\xd84\x9b\x8c\x9bc\xcd\x8f\xf9\xabu^\xb0~\x7fp\x93\x97Ym;4\x02\xdf\x02\xa8\x83\x80\xc6\x18\xee\xed\x9f\x96s\x1d\xe4b\x93\xb4\xe1\xf3\xad\xdc\x1d\xf2\x8e\xc4>\x88\xa6>-\xef\x8f\xe1\xef\xd5{v\xc7\xea#\xe7\xd6\xe1\xcd\xc5\x8bF\xdd\xaf\xac.\x8f\xb7\x7fX\xcc\xa0\x0c\xde.\xdbv\xfd\xf6H\xfe\x7f\xf3\xf6\x88o\x8b\xcaJ\xfdz$z\xe3l@\x02*\xec\xd5\xe6\x9b\xdf\xcdZ1\xa0\x1c\xdfe\xf5\x9d\xb8\xb4^\xa4\xc9^7\xb2k\x89\x92\xf3\xfd\x9a\xba\xa8Y\x9cR\xc4=\xd0\x0dd\xf6\xbd\xd7\xa2\x12\xdb\xad\xa7\x8e\xb6\xfd\x178_\xf45\xe2\xddB\xa7\xe2\xee*-`\xcd\xa6\xd9\xac\xd8\xdcq\xc8\xfa\x17\xbe8\xfd\xfd\xea\xea5\xfc|v\xc57\x0ej\x08\xca1&.\xc6\x073\xb7\x8b\xcb\xd6\xcd\xd3W\xf7k\xf6\x1f\xff\xfd?\xac/t\x97\x17\x96\xaa\xbf\xa9eD\xb4\xd0\xba\xae\xe6\x9b\x19\xe3\xa7C\xb1\x84\xd9\xb7A\xff\x02\xa7\xebu\x91\xcf2e\xcb\x9a\xc9-\xaad0\xcd\xb2\x19\x9f[\xaa\xea\xddf\xddA,7Yc\xbc\xffPJ\xe5\xa6\"\x8aN(\xca(\xee\xdcj\x97l5\x18Cs9\x882]%\xfe\xdfwU>\x1fQ\xde\xb7E\x16PL\x1f5[T5;\xd2\n\xb8\xde\xac\xcd\xd5\xb6\xb2dl\xaew\xdab\xca\xab\xef\x1c5\x11u\x91\xdbH\xb9\x03\xe6c\xf6\x18\x1e\xbdi\x18\xdc\xb1\x9ao\xc3\xb8\x95x\xf7\x14\xc9\xe7D\xff\xcc\xca\xec\xd6U\xfb\x9b\x9ae\xef\xc4\x91S*>~l\xefQ/\xab\x96=\x95\x07\xa6\xc5\xa6\x9c\xc9\x11\xc6\xeb\xa1\xe6\xae\xd9\xa6\xae\x05\xb1`\xc8\x91\xb2O\x97\xbc?V\x02J\xb7S\xa3\xd4Zv\xb3Y@\xcd\xf8J\xc4\x8e\xc4%\xf2\x12~\xe6\x1f\x15\x10\xbe\xd8\xdf\xe9qiU%\x88\x12\x82o\xcf7\xab\x8e\xc5e\xfb^t\xd7l|)Fj#iZ\x92\x120\x99\xa5\xe0\x91\xc2 $\x9e-\x87\xf6c\xfb\"(6\xff7\x8eII\xf2\x16\xf8\x8e;_\xad\x0b\xb6\xean\xbfW\xf7\xac\xce\xa0a\xab\xacl\xf3\x99\xe5$\xb4\x07W\xf6T\xb0\xbb\xa4_\xf8tt\xc3$\xa4\x9f\xcf\x07\x1b\x9c\xad}\x8c\x06\x0fo\xaa;{\x9f\xee\xaf\x9am-\xb4xL\xc9\xde\x9e\x96\xf7o\xf5\xf6H\xf0J\xb3\xfa&ok>\x88\xed%4\xaa\xd2kDVT\xaa\xebAfnZ>;\x8b\x85F\x96\xf0\xc6\xc0\xb2\x1e|[\xef\xea,]\xf3\xb5\x1e8E~#\x8a\xad\xd6\x91F\x1f'\xf9\xfc\xb0\xcef\xefN6%\xff?\xben\x9b \xb9R\xd4Bo\xdf\xd8T\x0b\xd8\xb4rb\xd3\xd3C#\xbc\x16\xf3y.\xe7\n\xb8e%?7\x8b\xc2\xf3\x83\x96F<\x8d\xfaxyd\x13\x9a\xbfw\xf6!\xe3\x9d\x1f\xbey\n\xafy\xf9\xf9\xbc\xa0\xaa\x92uF\xcfKx\xf6_\xff\xabc\x99\xfc\xa9\xaa`QU\xf0\x03\x1c\x1f\x1f\xff\x1f\xd6\xc7xa\xb2\xf2\xde\xfe@V\xde\x1f\xf3b\xfcTW\xabG\x8b\xaazl\x7f\xf4\xf8\xd8\xbe\xfe\xe5\x0bx\xc4U\xbd\x11\x15\xb9\xaa\x1e\xfd\x17\xae\xeb1|t\xcc\xe1.}\xff\xe9\xb6\xdd\xb7\x1e\xdb\xfd\xb7\xec.Kf<\xf8A\xec\x0d\xf9W\x12X(o\x1e\xfdTU\xc7\xb3\"k\x1a\x8f\x81d\x11\xf9K\xb2\x8e\x83\x17\xede\xb0X\xae3\xdd_<\xa6{}\xdf.\xab\xd2a\xbb8\x7f}\xf5\xea\xe2\xb1\x0b\x0c\xea;\xaa\xfb\xc3\xf2\xd3ns~\xe71\xe7\xcf\x95\x03O\xe0\xa6|\xfa\x03\xfc\x97\xf5\xcd\xf1OU\xf5\xf1\xf8\xf8\xf8?\xed\x0fg\xe5\xfd\x11\xdf\x86\xf27\xd6r\x13\xf5KV7\xcb\xac\xe0FvW\xc4e\xc2i)\x1cE\xc8\x17\x93\x02\xbc)W}\x11D\x01\xc5\x00\x11O\xfdo?@\x99\x17\xce\x0e\xee.\x97\xa5'_ \xee\xc9\xec]7\x17ww\xfe\xdc\xdc\xf7\xdb.\xbdzH\xaa\xbfy\xd7\xab\x89y\x9b\xc6\xb2gyh\xd8R\x9d\xf0\xf3\xfb\xb1\xf8\x81oW\x1fB6X\xed\xf8J\xc8{\x82mm\x90=\xc4\xfc\xb1ni)\x8b{}\xae\xdcr\x16t\xdbd\xc8\x16-3y\x07\xa5\x08?\xc6\xc3\x93\x87\xe6O\xa95Q\x17Y\x9cv\x81\xa9\x1e\xfd\xd5\xa2\xaa\x8eo\xb2ZT\xf6\xc3\xc9\xfd\xf1?\xbf\x92V\x14g/\xa3>\xfbQT\x14\xf5+\xae\x83/\x87\xc6GD\xd0\x9c\xf1\x97\x1f~\xf8\xe1\x07{\x1f\xe0\xef\xf5>\x97L;w\xf96Vl\x82\xe4\xb9n\xd30\xedY\xbd\xdd\x14Ym\xd6\xb7\xad\x86\xbf2g\xfd\xb6\xe5\x08\xd8\xea\x86\xcd\xe7\xfd\x06\xe6Hn\xc7M\xea2\x8b\xf7f\xb0\xa5X\x88\x83\xec\xdb\xff\x9b\x9b\xee\xadr&t\xdb\xb6a\xe3\x98\x07\x88\x9a~\x9e:\x0e \xd9\xec\x1d\x9f\x83\xfa\x03\xf1\"/\x98}\xdd\xd0s\xd6kV7U\xe9\x1c\xb6\xca\x13\xb7\xc8\xeb\xa6\x15Wp\xc2\x0f\xf0\x8d]s\xf7\x02\xef\x94\xfa\xf9o\xc3W0\x00g\xa9\xbe\x12\xb6\xfc\xea)|e\x1a\xb5c3\x1c\xcbZ~u\xe4\xd2'\xea\xf72[q\x9d\xff\xa7\xac\xc2\xff\xe5|\x81\xd7o\xf2|h%\xcf\x17\xea\xc05\xeek\xb27\xe4\x0d\xbcgE\xf1\xe4]Y\xbd/\xc5<\xb3\xcc\x04\xba\xb1i\xdaj\x158\xb8\xc6]\xfeHn\xe0'\xe3\xa0\x8f\x93R\xc5\xe1\x1d\xd8r\xb8\xcad\x976\x7f\xec\xad\x18\x8c\xba\x9f\xcb\x18>\xe1~\x13%\x97C9/\xbb\xf1\xa1\x802\xb3*9d\xcc\xdf\x11E8\xee\x16\xe7G|^\xd3&\xdcr\x0di\x8f\xe9\x7f\xfc\xf7\xffx\xec\x18H)\xfa\xdc\xf8\x83\xeen'L\xc5U~s\xfc\xed7\xdf6_9\xba\x90\xfc\x7fW\xa4I>\x9c\xb0\xc7A&:n\xbf\x869+\xabUG8\xdc\xe2\x0e\xec\x18Z\x12\xcc\x15\xab6e+\xa0\xf1\x8f\xa2`X\xb2\x98\x0c\x99\xc9\xdal;\xc8S\xd6P\xbd=\"\x8du(\x1a\x7f\xfby\x1f5z\xb0\xfc1\x8b\x07\xc4\xe9\xfb\xd8\x0e\xc4\xef\x8d<\x8d1esi\xac\xf1\xb2c\x8b>\xd4H\xa6\xb6^<\x9c\xb9\xdd\x04\x84b\x12\x8ai\x10\x8c\x17\x0c\x08\xc5$\x14\xd3\xfa$\xa1\x98B\x08\xc5\xdc\x16B1 \xc5\xb4 \xa1\x98\x84b\n!\x14\x93PLB1 \xc5\x94B(&\xa1\x98\x84b\x12\x8ai\x13B1 \xc5$\x14\x93P\xcc\x81\xa4@\x94\x08\xc5\x14B(\xe6\x97\x80b\x0e\xe1;0\x01Z\xe2\x01\x9d\xf8\xa9\xad\x84\x0f\x086[\x19\xb5>\x1d\x8aY\x14v\xd4\xf2BdTj\x86\x99e\x8b\xa2\x0b`U\xbe\xc2\x9b\xa2\x9a\xbd\x9b-\xb3\xce\x853\xceuQ\x14\x12\xb9<\xf8|\x17\xaaZ\x04?\x11\xfcD\xf0\x93\x10\x82\x9f\x84\x10\xfc\xb4-\x04?\x11\xfcd\x13\x82\x9f\x08~\x12B\xf0\x13\xc1O\x04?\x11\xfc$\x85\xe0'\x82\x9f\x08~\"\xf8\xc9&\x04?\x11\xfcD\xf0\x13\xc1O\x03I\x01\x05\x10\xfc$\x84\xe0\xa7?\x0b\xfc\xa4\x85n\xf1\x1b\xc9\xa8\xcat\x8b\x1f\xca\x98t\x8b\x9f\x0c\x0b\xec0\xca\x1d\xa2\x02;\x1d\x94\xe2\x14(8\xd0\xeb\x9a\xc4x\xf7\x80\xd0YBg\xadO\x12:+\x84\xd0\xd9m!t\x96\xd0Y\x9b\x10:K\xe8\xac\x10Bg \x9d%t\x96\xd0Y)\x84\xce\x12:K\xe8,\xa1\xb36!t\x96\xd0YBg \x9d\x1dH\n\xa4\x8c\xd0Y!\x84\xce\xfeY\xd0YWp`\xd3f\xedfx0ra\x96\xaf4>+\xdf\xe2\xad\xb0\xc8\x8bV\\\xd9\xa9\xd0\xd9qa\x9e\xc0/\xa7\x17\xff~vq}yuz\xf5fr\xef\xab\xf5'x\x02oJ\xd1\x87O\xceKyx\x968\x16\\NKk\xf8\xc6\xeb\x8bW\xaf_]n\x7f@\xff\x1d\x9e\xc0y\x99\xb7yV\xf0\xf9t\x91\xdf*\xa3\xc3\x9a\xd5y5?\x82\xcdz./>\x94\xfe\xb9#h\xabw\xac\xd47\xb7\n\x87P\xcd\xf8a\xef\xd8]\x90\x9f\xce_\x9e\xbe8\xff\xff\xb6K\xd2\xfd\x00O\xe0\xd9\xa8\x08\xdd\xc5\x9fGP\xb3l.\xb3\xb3\xaa\x0f\x8b\x8fn]\xb89\xfd\xe8\xe9\xb3\xab\xf3_\xcf\xa6_\x94\x7f\x85'p)u\xe5\x8d\xae\xc3\x11\xd4\x9b\x82I\x87d.\xd0\xf6\xd9\xd4\xb70\xfd\xc4\xb3\xd3\x97\xcf\xce^\xbc\xd8\xaeW\xf7\x03\x7fE6\x18\x9f\x7fn\x18+\xfb\xbbF\x8f`\xcdJ\x81\x0e\xccY\xd3\xd6\xd5\xbd\xfbc\xcf\xcf.\xaf.^\xfdc\xfbc\xdd\x0f\xfd\xc7\x94\xa1\xc4\x9c'\xe6%VB\xcdf\x99\xfc\xac\xbe@\xb5\xe1\xcd\xde\xe4sV\x8bl\xad\xa2\x0c|\xe6*\xe7PV\xb0\xd8\xd4[W\xc0f\xea\xcc\xaf:\xc44.\xf6w\x15\xcc\xaa\xa5\x0f\x8c]dE\xe3\x89\x8c\x05\xe3\xf5\xdb\x8eq\xe3|N\xf7q\xe7C]\xf7s>%\xbb\x8c\xf3\x91\xae\xbd\x9dOu\x0d5\x9ad\xd4\xed\xd7\xfej\xea\x89\xaa\xa7\x84\x1c\xbfc\xf7\xc8 K\xb1*2\xb5\xd7\xabE\xec\xb0\xf0~+\xa0_!\xda\x1d\x05C\xf8\xaco'\xce]\xd1\xc0\xfa\xc2W\x17\xad\xe2\x15\xdf\x99W\xa5pjU\x8bE\xc3Z\xa8j\x18\x17\x17\x06\x98[\xc3\xda\xe4\x9d\xc9\xe8\xc14\x18Q\x96\xcff\xc7\x89\xf7PUF\x98\xb2\xdc\xacX\x9d\xcf\xf4\xdf\xc4\xb6`\x96\x95\xbc>\xd2}\xbbd\xa56\xfc\xa6\xec<\xe6\x93\xa5\xe1\\h+X\xd3\xf4&\x94>fy\xb7\xee;\x16h\xcf\xb1\xfa=\x1bwBR1\x98\xb7\xc8W9\xd6\xba\xe2YM\xef\xb0qW$\x9a2\xec\xc1\x8a\x0c\xb2)&,\x0b\xe9;\x1d\xfe\xe9|\x01\x05[\xb4\x9a\xeb\xa3\xc8?\xfat+\x80 9@\xe4G\xb8\x9do\xee\x81e\xb3%d\xeb\xad<\x00\x9f\xd0\x8aC\x06N\xff\xbe\xcb\x96\x837\xb8EE\x0f\xadD\x86\x02\x00q\xa1\xf3<\x9fe-\xeb aeA\xf1\xa0\xeaHCuy9+6\xf3\xc9\xd95\x93_\xe90\xf9I\x8b \x86\xc7\x00*\xe2k\xf8\x80\xd06\x99\\\xde\x9cO/\xcd\x9fTA\x1c\xf7k\xd6(.\x8e\x18^\xfdx\xe4C\xeeX\x8d\xa6\xfc\xb6\xac\xea \xd0\xa6G\xe3\xf8\x13\xd22\xbb6\xecMU\x15lp\xfb\xb3\xa1\x01kv\xc7\xea\xd1\xab\xae\xc6SOO\x1b.\x1f0\xb8jf\x1e #=\xfc\x1bj\x93Q\xd5sVO=\xed\x97y9cOaV5\xab\xaay\xd2\xcc\xdf\xc1\xd7\xc7\xdf\xfd%\xa95\xc22^H&\xd1\xc9\xc7|\x8e\xcb\xd7\x0f|\x8e,\xba\xdb\xc7o\xee\xd5-\x04\x12\x95\xa8Y\xa3\xf7\xc8\x86t\xfd\x0ftu\x0e:\xe7\x85\x8dT\x15\xc5\xf3l\x9d\xdc(/,\x88\xc1\xd5\x92\xb3\xa2p\x9c\xa8\x18F\x94\x9b\xf9\x14\xc5{\x12\x9f\xb0(\xf4\xb2\x9e\x12p\x9e\"\x19OV\x9e\x08\x8e\xef\xb4\x13\xdb)\x8a\xeb\xc4\x8f 6+\xe2\x98N1<'\x17\xfb\x00\xc5rJ\xccqB1\x9c\x12\xf2\x9b\xbc\xec\xa6D\xdc\xa6]\x98M\xc1\xbc\xa6\x04\xac\xa6\xc4\x9c&\x0f\xa3)9\x9fi?l\xa6\xe4\\&<\x93)\x8e\xc7\xe40\xba\x8f\xc5\x94\x8c\xc3\x84c0\x19\\\xa8\xf6\xf951{\xc9\xc7]\xda\x91\xb9\xe4\xe0-y\xb7'^\xce\x12n\xff\x92\x96\xaf\xe4c+\xf9\xcb\x14\xc7T\xd23\xbbA\xa1\x8f\xa7\x94\x90\xa5\xb4\x03G\xc9\xcc,t1\x94\xd2\xf2\x93\xdc\xec\xa4\x14\xdc$\x14\xb9\xc6\xc3KB\xb3\x92\xec\x04\x82pF\x92]\x97\x11\xacK\xc2E\n1\x16\x96\x87\xe4\xb7 \x9a\x83\x14\xc1@2\x03\x9b\x89\xd8G(\xee\x91\x9fy\x84\xe1\x1d9\xad\x18\xca9\xc22\x8el|\xa3\x04l\xa3\x00\xaeQ<\xd3\xc8\xc1\xe7\xc1\xb2\x8c\x12s\x8c\x1c%2\xf6\xd4(v\x91\xf6\xb5\x1a\xf4Y\xb8E\x89\x99Ev^Q,\xabHx\x04L\x057s\x8a\xd22\x8al\x07?/\x9b\xc8Fw\xb01\x89\xd2\xf2\x88\xe2YD\x16\xc6P\x14_\xc8\xcb\x0d\nc\x06\xa1yA\x81\xac\xa0\x10N\x90\x95\x11d/\x0d\x96\x99\x81c\x03\x05r\x81\x02\x98@\xc6\xaa\xa5e\x01\xd9\x06\xc5\x0e\x0c \xa3\x9f\xc2\xca\xff\x89c\xff\xb8\x98>\xe9y>\xbb\xf7$4\xc7\x07\xcb\xf0\x19/\x91\x88\xa0r \x00\xa0\x02\xcaU\x08\xf9/\xd3\xeb\x8c\xa1[2(\x98\x9c\x82\xc9)\x98\\ \x05\x93S0y/1 \x8bU\x19\x05\x93oK\"\xc0e7\xc8%\x02tI\x02\xbb$\x07^\xbc\xd0\xcb\x1e\xc0\x97}\xc1/{\x00`B \x98X\x10\xc69\x87\xfb`\x98\x84@\x0c\x16\x8a \x04c\x92\xc31~@fgH\x86\x82\xc9\xbd%\x8b\x83h\x8c\xaa(\x98<\x06\xac\xf1\xc15i\x00\x1b$\n\xe1\x05m\x02`\x1boPo tC\xc1\xe4\x14L\x8e\x01u\xbcV\x0d\x05v\xf0\xd0\x0e\x05\x93O$1\xd0C\xc1\xe4C\x89\x85}\x8c\xca(\x98<\x00\x04\xda\x05\x062\xaa\xa3`r\xe3\x0b(\xe0\x88\x82\xc9\xd3\xc1H\x14L\xbe3\xc8\x94\xa6\xcf\xa1\x81&<\xd4\x84\x0b&\xcf\x87\x13\xf6\xe8\x00)N\xa422\x85\x9fvT\xb4\x8a\xec~\xab)\xc6\xf4I/\x9b\xe5\xa5\xac\xde\xa3Cof\x15\x9f2\xab\x92\xef\xbbd\xf0M6\x13\x01[\xea\x95Q\xc0\xcd\x99\xd0\xfd@W\xe1@\x03n\xa4\x05\x0e\x03x\x12\x1d#\xda\xe5\x92\xadxKD\xbe\x8eqx<\xab\xf2A\xc2z\x95\x18@:+\xc6\xb7(\xf3\xe92+U\x81lg\xf3\x97\xaf\xae\xce\xe4\x0d\xcc\xf29\xb5L\xe7\xc2\x93r^\xb6j\x02\xeb\xbcW\xc3Y\xcc\xa8Pn\xea\xcc\x1fk\xf2\xdb2k75k\xba\xc1\xc4\xb7\xb0\xb7\xd5m%\xa6\x8c\xf1\xca\x8f\x00\x93e\xe7F\x81\xc9\xa6\xd7\x15\xb4,\xb5\x10\xa4\x0c\x04){\xfd\xa9\x98\x11\n\x04)\x13\xa4l}\x92 e!\x04)o\x0bA\xca\x04)\xdb\x84 e\x82\x94\x85\x10\xa4L\x902A\xca\x04)K!H\x99 e\x82\x94 R\xb6 A\xca\x04)\x13\xa4L\x90\xf2@R\xc0{\x04)\x0b!H\xf9\xcb\x86\x94\xb7\xe0d\x1d\xb9\xf8y\xf1\xe4[\xd6\x8a\xe2\xacX\x9b\xcd\xb36;\xf9(\xfe\x89\x02\x973\x01\xf7B\xcdfU=\x97(s\xe9\xc2\x97%\x84\xf6\x9c\xeb\xffE}\xee\x81\xae\xdf\x81\x82\xcd\xda,6P**\xbf\xe3\xb0&\xc6\xde\xe6\xf1\xac\x88\x16\xba\xde\x94y\xeb\x00\xafl\x80\x19\xb8@3\xf0UL\x8a\x0f<\x03\x1f4\x0e\xfeJj\xc1xa\xfag\xf9\xc0\xea&U9\xe7\xa9\xc5p\x08\xfb\xdc\xe6w\xac\x94O;\xf5q\x13\x0b\x10\x066Y[\xad\x1e\xdb7\xcf\xec\xc3\xba*\x99\x1d\xcc\x07/\x9a\xda\xcb\x00W\xb5\xdc,.%\xc42\xba|C\xe3\xac\xab\xf7\xd2Y\xf6\xcd\xd7\xfd\xefbY\xaaJ\x97/X\xc2o\x8ec\x16\x1f\xd0Y\xaev\xd47Y\xc3\xaee\xc3\x88\x84\xc62\xc5-\xffo\xc6\xb7\xd9}{8\xf5\x89I\xe3M\x99\xb7\x0f\x1b\xd5n\xce\xc7\xbfQ]\xe1\x07\xf8\xe6\xeb\xff\xbf\xab[_\x14\xf7\xdb\x02v\xd3<\x89A\xf9\xab\x85\xec\x07=~$o%p\xe0#0,;W\xf0\x90+x\xe8\xf1,\xc3\xb0\xc5~\x80\xef\xf9na\xd3<\x85o\x80\xbf-k\xf5\xbd\xb7OfE\x9e5\xae!\xea\x9f(\xa48\xa7\x0b)\xc8\xc1\xec\xbb\x12_\x8a*\xb8\xcc\xdf^\xe4\x8d0\x9c\x1a\xc6\xfa7\xbdz\xfa\xbb\x8ek\x98\xbb\x92\xf1\x0f\xa5o\xc2\xc1\xf8\xc9x\x996\xb3v\xea\x8b\xcd<\x85\x1a1o6\xaa_\xa8\xa1\x92\xcf$K\xc7\xdc\xaa>\xf3\x0d\x16\x86\xe9,\xa8\xcd8\x1cH27\xb3\xab\xb0\xb3\xca\x08\xcc\xf01\x11\xb5ra'-\xfe\x81i\x0d\xc4\xdf\xe4@|\xd4\xe3\xec\xfc\x97\xaeN\x16mb$\x0f\xc6\xd3\xd7\xc6A3\xcf\x9bu\x91\xdd\xa7\xa8\x97\xb5'\xa9oty\xdd\xd5\n\xb5\xb9\xbdeM+\xee\xf7\x10\xf3$\xefO]\x15\xdd\xaadF\xf1Y\x91s;\x99\xaa%\xf6\xa5 \xea\xf4\xd0\x9c\x85\xfc\xa1\xab\xa3>\x14\x8b\xae&\xa0\xb5\x9a%\xd1%\xa2\x7f\xc7Jx\xc4n\x9f\xc23\xa1\x14N\xf9\x84f\xd2\xd8\xdc\xafn\xaa\xfd\xe6\xc3\x96\x9f\xe8\xaf5\x10w\xe8\xc8\xbfi\xd2D\xb3\xe4\xe7\xc0\xaa\x04\xf6A\xe3\xab\xbc\xf4\x16\x85\xa7W\xaf~y\xac\xb843\x9b\x87\x02t\x1fn\x84\x8fI~\\5\xad#Y\xa8/!\xbc\x96M\x9d\xef\xd5ho.\xce\x05\xd8\x0d\xf3j\xb6\x11\x1c\x9eG\x15_\xe1\xa1Z,\x9e\xcc\x96Y^>V7n(W\x8bE\xcf\xc0Q\x93\x97r\xff\x93W\xe5qw\x83S\xa0)\xbe7\x9b\xe2z\x995\xcb}\xdb\xe3\xefY\xb3\x94+W\xb3\xcc\xbe\xfd\xeb\xf7\xc0?*\x1ce\xbd\x91\xd6\x15\xdf\x05\n\x07\xea\x9b\x8bs\xdb\n~\xce\xe7h\x01\xe1\xb6\x15\xdc\xb1:_\xdc\x0bc\xdaL!\xba\x8e\xfe\xc4<\x9f\x97\x0f[\x05\xd7'4\xa4\x7f\x9e\xd3G;\xc4Rix;\xb3\xaf\x82\xb6\xd5O\x1cpG\xa7\xcax\x96\xa7\xe9pJ\xf4N\xa2w\x1a\x047#\x10\xbd\x93\xe8\x9d\xb6'\x89\xde)\x84\xe8\x9d\xdbB\xf4N\xa2w\xda\x84\xe8\x9dD\xef\x14B\xf4N\xa2w\x12\xbd\x93\xe8\x9dR\x88\xdeI\xf4N\xa2w\x12\xbd\xd3&D\xef$z'\xd1;\x89\xde9\x90\x14T;\xa2w\n!z\xe7\x97@\xef\x9crI>)U\x93\xb7s^\xde\xa2s\xffdE\xa1\xd9\x98\x0d\xa8\x97E7\x91\xf47\x95\x0fHd\x08RJFl\xcd\xbf\xcb7\x1e\xe8j\x1d(C\xf3&+\xb8\x9d\x0e\x04WR,\xdf\x1d|*F\xd2\xb0\xc21;\x0e\xb1\xe6\x0b\x89\xaa\x8b\xb6e\x16o\xaah^wq\\\xf4/\x0f\xf5\xcbc-)>\x9bI\xf1\xf2EQ\xd6\x03oZ%)(U\x18\x0f\x91\x94\xc0DK\xde\xc2\xbb\x1c\x8d\x91\x89\x98\x1c\xfa\xd4\xb2\xe1J\xc7$%,)S/#C\xca\x94dCR\xd0<_,X\xcd\xcaV\xfd&|\xcb\xc3\xcemt_\xba\xc9p?\xaa\xd7\xbbF\xe9\x98\xe9\xdd(\xe2m\xa1\xbf\xb2\xce\xf2Z\xfaS-\xaej>\xad\xe6\x8aw\xb85\xa9f\xdb$~\x10+\xc9\xadj\xf7\xed\xce82I\xff\xe0\xb0\xbc\x1a\xbd\x1a\xfe\xaci\x8f\xdc\xfc\xaci\xb7\xed\xe2\x1c\x91\xee\x91X\xb2\x0f\xed\xf5;\x16\xcb\x80\xf3:\x83\xfd\xd4\x11\x18\x94B\xcfy\xfc?\x156\x925\x8a\x0c\xf3:\xbbe\x17\xca\x02\xf2w\x8b2\xb9\x18r5\\-7$\x83U\xd5\xb4\xc0\x04\xe2 `\x8ac8o\x07[\xb3u{\x0f\xb9\x0d|o\x97\xacf\x02\x8e*+XU5\xd3\xf0\x93\xb1\x83Vm\x16\xcbY\xd3\xc6\xdc\xd8I\xe0>2\xa8\xf8\xbc\xb0\xa2\xf8\x8fr\xb3\xba\x91\xces\x8d\x98\x0d\xe0\x19[}\x87\x86\x16}\xfeZ(\xb3\xcd\x11\xef\xb3\x06\x1a\xd6\x1eA\xde6\x1a\x08l`S\xcaN=\x97\xd8\xc8\xfb\xbc\x19\xf7\x0fD\xf26\xb5\x17\x89\xe7\xf5\xc8\xd0\x93\xbf\x8b\x85\xb2\xa1\xf4m@\xfc\x1e\xef\xfa\x8f]\xfd\x89\xdfC\xfc\x1e\xb3\x10\xbfG\x08\xf1{\xb6\x85\xf8=\xc4\xef\xb1 \xf1{\x88\xdf#\x84\xf8=\xc4\xef!~\x0f\xf1{\xa4\x10\xbf\x87\xf8=\xc4\xef!~\x8fM\x88\xdfC\xfc\x1e\xe2\xf7\x10\xbfg )\xb8\x16\xc4\xef\x11B\xfc\x9e/\x81\xdfs\x187\x82\xf5\xe5\xe9\x91\xdf\xe3w\xec\xdeV\xb6 \x96\xaa\xc0\xd3LM\xe95k7u)\xf3\x84H\xd2K\xb3d\xa56\xfc\xa6\xec\x1cc\x93\xed\xf0\xb9\xd0V\xf0>\xd4\x99P\xba\x926\x0d7\xf5;\x16h\xcf\xb1\xfa=\x1bw\x82E\x1b\xcc[\xe4\xab\x1ck]\xf1l\x9fn\xc5\x0cQK\xa7\xe9\xb0\x07+\xd8wSL\xc0T\xe9\"\x19\xfe\xe9|\x01\x05[\xb4\x1a\xd2W\x18\xbf\xde\xc4\n\x7f\xaf\x1c \xf2#\xdc\xce7\xf7\xc0\xb2\xd9\x12\xb2\xf5\xfa3Zq\x08\xb4\xf7\xef\xbbl9x\x83[T\xf4\xd0JL4 \x93\xae\xc9lC\x1d\xf2\xa3,(\x1eT\x1di\xa8./g\xc5f>\xd9\xa2f\xf2+}\xf2\x9eq\x8b w\xe0\x11\xe6K\xc9\x80\xb72\x99\\\xde\x9c7\x93\xd6\x9aTA\xec\xeak\xd6(\xc8]\x0c\xaf~<\xf2!w\xacFS~[V\xf5\xc4\x9f\xaeG\xe3\xf8\x13\xd22\xbb6\xecMU\x15l@\xe124`\xcd\xeeX=z\xd5\xd5x\xea\xe9i\xc3\xe5\x03\xa2F\xcd\xcc#a\xa4\x87\x7f\x83\x95\x02i\x14)\xf6\xa6\x0e5o\xd2\xa0\xdd\xad\x11\xc6g-Y\x9b5\x0dk\xa57\xd2Ck}\xc9\xdaS\xfe\xf0\xaf\xe2ae\x88\x06J\xd6\x82P\xa2|\x9a\xa2\xdf\x8d\xd6\xe3\x11\xa7u\xac\xe5\x81\xae\xe3\x81R[K\xd6^\x8b\xca]\xcb\xca\x1d\x06\xb5b]\xe73\x0f\xa8p \xc9C\xfdDP\x84\x1a\x0c\x8c\x00\xe1\x14P\x04\xd13-\xcd\x13I\xf2\x8c\xa5x*6\x9a\xe8\x1czU\x9fU\xbch-S\xeb\xac\xc6ux\x8f~\xd8\xc0]UlV\xe6\xf2\xca\x9f\x12\x00W\x0e\xfa\x9c\x9f@\xa7\xcb\xa1\xab\xd3/v\xa2q\x9b\xf1\xf6_.\xae\xefYmo\x82\xf5\xa6\x9e-\xb3\x0e\xc9\\2i.\xe3\xf3\x9b\xf5q\x7f8\xb9\xc9\xcaw\xb0\xaa\xe6\x9b\xa2;F\x1b\xee\x84\x95\x8a\x1e\xe8\xfa\x1c(\x1fch\x8e\xa1Lr\xf9\x08\x9b\x0c\xf3\x1b\x8dm\"\x9aud\x90^\xac\x85\x02/*\xb5\xca>H\xfa\xd45?\x9a\x17\xbbf\xf1\xd9!\xf1\xccs>o\xcd\xf8 \xfd)\xbc\xae\xd9B\xde\xf6\xc97Qoy!e\xf1\xdeB^6-\xcb\xe6\xc7\xf0K\xf6!_mlW4*\xeeC\xb5\x00\xf9\xa2\xf0\x9f\x16E\xf5\xbe\x03\x90\x95\xf3S\xde\xc59\xb7m\x04X\x99\xdd\x14\xec\xfa\xb6\xbac\xb5\xe8\xe7.\x03MI^C\xc1x~`p\xc3_\xbe\x80\xfe\xa3\xd2\xd1,6\x17uU\x88\xfe +\xd1@n\xbd\x1cM\xfa\xaeM{\x8fMY3\xde\x98\xb3\x96\xcd\xe5%\xa5\xd75\xbbe\x1f\"\x1b\xdf\xd7\xb2\x99\xde\xb8\x01\xfb\xc0\xd7\xa6F\xdc`\xa9o(\xcb\x8a|\x9e\xb5l\x84\xc8\xbb\x9cA\x00\x8b\xbaZA\xc9{\\\xa1\xafRU\x89\xad\x1ax\xd4\x1b\xcd\xb6\x1ct\xcff5\x93;\xf5f#\x86\x8e\xf0J\x15Y\xcb;\xb3\xc8)\xa6\x0b\x97W6W\xb2,m_-\xd3\xf9\xad\xef\xbd{\xb2\xefJ\x8e\x84\xe0>oQ\xb75\x12\x10\x94\x089\x13\xa3\x12-)\xf6\x83Z\x04.^?\x9b\xe8#\x1e\x04\xf1 \xbc \x00n6%\x1e\x04\xf1 lO\x12\x0fB\x08\xf1 \xb6\x85x\x10\xc4\x83\xb0 \xf1 \x88\x07!\x84x\x10\xc4\x83 \x1e\x04\xf1 \xa4\x10\x0f\x82x\x10\xc4\x83 \x1e\x84M\x88\x07A<\x08\xe2A\x10\x0fb )0i\xe2A\x08!\x1e\xc4\x9f\x85\x07\x11F4\x900\x17\xfaf3\x85\x8aU\x0b \xeeUe\x8f\x8b\xa9\xbby\xd4\xbb#\xaa\xc1\xa5xK\xfdr\xb0$\x03[\xd2\x02\xab*\xf0\x025\x8el\n\x1e\xf7\x84+\x83\x82\xf3U\xbf[ e\xbe\x84\xa8L \xf6\x19\xca\x9e#!,;\x02\x02n\x95}\x12\x05\xb7\x9a^W\xf7\xdaH-\x04\xb8\x02\x01\xae^o\xa3\x7fdJ!\xc0\x95\x00W\xb3\x10\xe0*\x84\x00\xd7m!\xc0\x95\x00W\x9b\x10\xe0J\x80\xab\x10\x02\\ p%\xc0\x95\x00W)\x04\xb8\x12\xe0J\x80+\x01\xae6!\xc0\x95\x00W\x02\\ p\x1dH\n\xf0\x8b\x00W!\x04\xb8\xfeY\x00\xd7?C\xe09k\xb3y\xd6f'w\xdf\x9c(\x1cW\xfc\xf3\xa3\xfe\xe1\x9a\x17\xd7\x81\x10\x0f.\xc29\x95\xef?\xcf\xda\x8c?*;\x9aR\n\\\x17dMS\xcd\xf2.dXl\xd8\xe4g\xb4U\xfaI\xf7\x99v\x0e\x1d\xa98\xd3Y\xc5G\xe2\\\xfa\xf8\xd4\x91\xb4\x0f\xd1\x1dG\xb8+\xad\x83\x12\xa9\xc7\x0e\x16\x83\xb68X\x9c\xae\x95QA\xafzc\x0b\x83\xea^\xa5\"v\xe5\x11\xdab\xeb-e[N\x8e\x81%Q\xc8\xa9\xc2J\xb7\x1b@\xcb\xc5\xebg\x04\x9e\x02\x81\xa7\x1e\xcf\xe1\x1e\xfc\x8e\xaeY{4\xeb\xd9\xba\xe1\xe4\xee/>\xf0\xa6C\x8b\xaf\xa3EU\xbd\x83\xcdz<\xca\x02g5\xd8}\x15\x00\xb3\x15\x82\x17\x87\xf9\xbc>\xf9\xc8\xff\xb7q\xac\x06?\xb3\xf6\xc7\xfb\xd3\xf9\x9c\x8f\xcb\xb6\xce\xd9\x9d\xcc\xcd/ms\x9b\xdf\xb1R\xb8'\x94\x95\x1e\xb1\xe6\xb1q\xfe\xee\xd4<\xd0\xf5=\xd0Y[4\xdf\x81\x8c5Q\x96\xeb|\x9ev\xb4L\xc5\x97O\x01\xe0\x8d +\xc0\xf9s\xb5\x16\xe4\x8d,\xda1\xc0y\xcf\x06j\xe6\xef\x8eOe7\xb0j\xe2Sf\xbd\xc8frU\xe1'\xf3\xf7KVw\x97\x0229h:VP^\xc23q\xd3\x92\xd9<\n\xe9\x10\x9d\xec\x00\xcc$\x9c\xf3b\xf4\x8fJ\xa6\xee\xb9\x1b\x1eHG\xbf\xbb\xb0\xe2Z\xee\xb2\x98\xb6\xb1\x06B\xf9^Kx\x1etS\x18uT\xef\xcb\xd1\x9c8\x16W\x8f\x96b\xed\xd7R<\xbd[\x8a\xaf\x8fKQ\xed\xefz\x04\xd5\x8e\xeaA\xd9T\xdd\xb6|1\xda\xb7>\x92\x18jn\xccN\xa2\xa5\xae\n\xeb\"%\xc5\xdf\x1f\xa4dBW?rt1\xba&\x1c1'\xdc@5H\x83\xce\xe4P\xd9\xb8@o\x081\x18+7\xce\x8b\xa2@,(\xafO/\xae\xfeq}\xf5\x8f\xd7g\xd7o^^\xbe>{v\xfe\xd3\xf9\xd9\xf3\x90\xd7^]\x9c\xff|\xfe\xf2\xf4\xea\xd5E\xc8[\x97g\x17\xbf\x9e?;\x0bz\xe7\xfc\xe5\xafg\x97\x81\xdfy\xf6\xe6\xf2\xea\xd5\xf3\xf3\xd3\x97!/\xbd\xfa\xedeX\xc9N\x7f\xfa\xe9\xfc\xc5\xf9\xe9\xd5Y\xc8K\xaf~yy\xfe\xe3\x9b\xcb\x90W^_\xbc\xfa\xf5\xec\xe5\xe9\xcbgA\x1fz\xf6\xea\xe5\xd5\xc5\xab\x17/\xc2\xea\xf4\xeb\xe9\x8b\xf3\xe7\xdef\xd5\x87\x81\x98\x8e\x84\x01l{\xb1\xf5\xd5\xa8O\x83\xa2\xc0\xca\xd3\xc9\xac*\xa5c\xc5\xf3\x8e\xad\xe3?5\xffY}C^\xccT\xd5\xb9\xb8\x06\xd1\xc1\x9b2}D\x8f\x93\xa7\xa6?\xf6\xd8\xef\x9c\xdd\xb4\x82\xd3\x94\xcf\x84\xebQ\x03\xb5A\xdf\xd2\xe3\xeb\xa9\xe9\x8f\xa22\x12\xe9\xcdg\x90\x97w\xac \xadK7\x16\x9f\x1a\xff\xaa\x9b\xa4l\xf3\xf6^.\xb0]\xfd\x84#l\x9eg\xa5\xaa\xa4\xba\xe2J\x986\xac\x92bl?\xdd\xfa\xcb -\x99\x98\xd1\xd7Y-\x190Y)\x97\\\xbd\xe2\xf0\xf53\xe8\x83\xdd\xdc\xf0\xd4\xf8WiW\xf99\xe9m)![,\xf2\"\xcfZ\x06\xd9m\xcd\xc46!\xe8\x93jfyj\xf8\x9b\xfc\x9c\xd8\xabdEGA\x90\x9f\xef\xf64\"\x01\x1b\xaf\xf8\xaa\xcco6\x0d\x88T\x85\xe3\xf8\x01\\A\xfa\xf9\xea\xa9\xf9\xcf\xa0\xee,\x85\xf1e\xac]\x03t\x0e\xd7\xc1%kb\x9d\x17\x0c\x04hVY\xad\x8a\x9c\xcdZ\xc8f\xc1\x83\xb8\x9f\x1b\x9f\x9a\xff<\xee\x95=\x10!m\xd43s\xd4(W\xdb\x10x\x943`e\xd5:\xf8@\xa6\xe2t\x93\xeeS\xe3_M\x85\xd1\xd9\xe5\x1a}r\x13c\xa2+\x89\xe3\xf3\x9aM\x89\xd9\xa1\xb9\xf2\xfeuO\xca\xdd\xd3\xfb%S\x94)\xdd\x8c\x0f\x9b>>\x80WA\x7f\xd8\xaa\x0d\xb3\x0f;\x85\xd7\x831\xaa\xf7\x85|\x08\x9d\xe4%\xe8s\xac\xd8\xa7\xf5\x0eM\x87>\xe5\xea\xd4\x9d\xc9\xf2$v\xcd\xbaZ\xb2F\xe4\xb7\xe4\xbb\xe4\xbe\x1bC[\xad\xa1`w\xacP\x1by=\xad\xd4lV\xd5s\xfbT&w\x96\xc7S\xc5\x82\xf4\xc9m+\x0e\xec]\xda?>\x92\xad\xaaV\xd5<_8\xb8\xc0\x02\xda\xe3'\x94\xc1nV\x1f\x0d\xe5\xd7\xc7'\xbb\xbc\x84M\xe9\x1aw\xc2\xb2\xba\xc4E.\xbc\x9c\x8a\xb8\xda\xc8\x9c\x82\x16:\x9b\xf4\xf1\x08\x0f\xc1\x9e\x0f\x9c\xfc\xd5Z\xd4\x08\x90o\x1c\xdf\xd6\xd8;\xf6\xc8w\xd7\x1f\xdeD\xd9D\xdf\xe6SI\xdb\xd6\xf9\xcdF$\xeb\xbc\x17\xce?\xab\xba\x1b\xa6\xd8\xb5\x82Y!`I9/\xeb\x85\x8c\xf7\xf2\x19S\xa4\xd6\xc9\x05\xdb\xbd(\xc7\xc8\xb5\x98)\xaf\xeb\xaa(6kws\xb9\xe7bl{\xfd\xa6\xa6\xe9\xac(\xba\xc19r?(Fn\xd3\x0dR1\xdb\xb8\xcc\xa1'\xb9\x91\x9a\x87\x8d\x9e\xea$\xfaho\x1f\xd9\x00ES\xa9\x94\xb4bk\xc0'H\xbd^\xfc \xee\xff\x96\x85S:\xb3\xd2>\xa7\xabr\xeb\xda\xc5rF/\xc5\xf7\xfa\x80\xbc\xba\xaaZ\x10\xd9{Y\xa9\x9c^|\xd9(\n6\xd3\xec\x08\xd7l\xce\x0b.zLU2\xbe\x8bYU5\xb3\x17qT@\xe9\xc7\x1c\xd2W\xef\xf5\xdf\xba;v\x07H\x12o\xbfE\xb5)\xb7\x12\xe4\xea\x06=\x10\x8f\xa8,\xcd\x9e\x9d}\x9f\xd6\xb1\x88\xe9W \x08O\xc2\x0b\x9b\xcf\xf5>\xa0\xdb\xcb\x1a\xdc\x8d\xef\xb3n\xb3lU\xa8\x92\x05\xcb\xe1'\x0dk\x9evT\x8f\xdb\xf3\xbaJ\x8eD\xd7S\xe4H4;NB\xde\"G\"9\x12\xb1\xb3\xad\x14r$n\xfd\x91\x1c\x89\xe4H4}\x92\x1c\x89\xe8\x12\x92#\x91\x1c\x89Rp\x8eD\x7f\xc9\xbaC\xb9\xe2\x170\xb1\x07\x94\xb9%\xda\\\x9f\xf9\xb8=x\xb7w\xb9R\x9cE\x11\x94*[!\xfd{D\x7f=d\x82\x8c\xaa7\xde\xd0\x8b\xa5\x8e\xe8\xec\x03\x9bm\xc4IGmw\xed\x14\xe0\xf6~\x9d\xcfDR\x04\x11\xea\xc5\xb5\x1b\x9fU\x8av\xa8Z\xc2s\x9e\xde\xc4\x8bIS\xc66\x88tMm%\x98\xff\xb3\"ge\x7f\xe6\x13n?\xab\xaemz\xae\xf3\xa0\x97m\xe6\xb9\xd5\n\xd8\xf2?SW\x08\xdd\xdc\x1f\xc1f=\xef\xfe\xbb\xcdW\xaci\xb3\xd5\xba9\xd2\xc1\xeaPnV7\xac>r\xbafjV\x08\x1dy\xb9\xa8l!N\x88\x13$\xe6\xfc\xa8n\x82\xb9\xe6\x85vMP\x88\x0e\x01\x83N\xc1\xd5=\xe1\xd5w\xa9\x94cC9\xd4\xd9 \x7f\x9c\xcfj\xca=\xc6\xca\xb6\xbe\x17\xa7z\xf7m5}\x1dn,\xf7\xebHA\xd6`P*\xcb!X\xae\xdf\xaa\xc9EQ\xa5C\xcb\xaaTu\x89\x83\xb6\xb1\x08\xf9R\x05\xf5V\xe4S\x1aZ\xe019\xd2\xd2j\x90\xf9Kg#2\xf72\xa04[\xee3\x93\xe2\x9f\xe1A\xc4tu\xab\xf1d&\x90\xb5\xcc\x1b\xc8\xcbY-\xf6\xa0\xf6\xbb\xc8za\xd9l\xa9\x9a\xc3\xfa\x9c\x95x\xddKXS\x05\xd4\xb1\x0b\xff\xdf\xc24\xdc>\x1a1\xac\xf2\xaa<\x91u\x03vg\xdf\x94\xfbKu\xca'\xf7\x9f\xf8z\xd2\xc0,[\xcb}Q)[V\xa4\x88\xbb\xa96\"\xf7\x8f\xec\xfe\xbe\xad\xb7H-\xf2\x8e\xa9.\xd9ek)\xe7zD\xb1{\xe9d^esS51\xcb\xc9\xa5Z\xf2;\x87\xbaa\xf5\x87\xec6\xcbK^\xe0nM4\xea\x1a;I\xf9\x1bY9c\x16\x88\xe1j\xe0L\x13\x91[\"5L6Q\xc2+\xab\xb6Zj\x03fT\x96\x97wUq'2\xf5\x18\x7f\x97\x89\xf7~SV\xab\x99\x00\x9f\xcaJz\xfb/$<\xa0\xbd|\x99\x82\x18\xac\xa8m\x0f6d\xda|G\xa2Q\xb5-\xc5\xbc\xb1\xaa\xeeLw\xe1\x8d\x11\x04\x0d\xe5\x8c1\x04\xfd\xd7 \x14A\x81\x1c\x87\x01\"|\x92]\xecI\x97\xd8\xad\xee]\xb6\xd2\x0c\xc7\x00\xbf\n\x8cs\xa5\xf2\x9eH\xcf\xbeU\x9d\x01[?-\x9a\nT\xec\"\xdf&\xfe\xc4O\xa2\xd6\xed\xed\xa7AM0\x96\xe9\xc1\x0b\xbd\x9b\xd7\xa3l\x8aZ\x0c\xd1 \xab:iOx$\x88\xe4|F]\xe4E\xcbj6\x87ww\xeb\x9a-\xf2\x0f\xbc\x13\xd5Y[\xd5\xe6#\xb1\xf2\x81[\xcd\xe2\xad\x90R\xd0e\xd1\x1bN\xa8\xba&\xd3\\\x7f\xf7\xe08\xd3\xf6\xf3[%\xfc\x0d\xd5b\xa1N\xf7\xc2B}\xfa\x14\xff\x0e \xd1\xa6\x18\x01\xa9 \xba\x0f\xa0\xcc)\x9e\x1a\xef\x81\xb6\x1c.}\xba'W\xd7\x80\xbeq\xac\xcf,\xb3f\x99\xaeZ\xbc\xdc\\\xa3\x8a\x9c\xef\x89\x19\xba\x8f8a\x16\xd7\xa4\x04\xc1e\xf1mNT\xde\x83\xed\xfdHW\xd8G\xfc\x83\"\xc2\xdc\x15a\x0b\xfd\xc1\x9aw\xd6IK\xcd\xaa\xd5\x8ao\xed2g\xaa+\x112\xf8\xc9\xaa.?'\x0f\xd7\xba\xd8\xfd\x9a)2\xbd9\xb7\x11Z\xba\xe8&x$U>\xee\x97ha\x93\x93\xce\x0czjs\xea\xe3\x9b\x84w\x96\xfe\x91\x97\xebM\xfb\x87\x80_}\xbd\x18\xdd\x98\xb8\xfda//yS\xea\xf4\x83\xb3b3\x97So\x91\x97\xef\xe0&\x9b\xbdSa\xf0\x83,\x8d\x1e\x85\xbc\x138\x12\xaa\xa8\x99\xd7\xb1\xa4JAW\x17\xb1\xbcJ\xc1us\xc34\xaa\x16\xcb\xde[\xfcSU\xc3Y\xd3f7E\xde,=\x080\xe8\x8d\xa8\xcb\xb5\xec\x9bO\x03\xcc\x11RK\xf3\xa4\x9b\xb3\x99\x80\x19\x86+2\xaf\xb2G\xe1\xeb\xbaZW|\x85A\xd4\xb7\x9b\"\xd3VZ\\\xe8\xbc\xd6\xe5X\x08\x86G[of\xe2\xc4&\xf6\x13*S\x90CY\xd3f\xed\xc6G\x83@\xda\xf8|x\x0b\xb7\xd8v\x88 I\xec\xd6t\xb7\xd2\x05\xf5\x8e\xab\x0eH\xf9\x1f\x1bqf\x93\x1es\xde\x84\xc2\xc5\xb7\xde\xb8\xc1\x1e\xb4-qL\x84\x8b\xb3g\xaf.\x9e_\x9f\xbf|\xfd\xe6\xea\xfa\xf2\xea\xf4\xea\xcde\x00\x9ck~\xff\xf5\xc5\xab\xd7\xaf.#_\x96\x7f\xf3L\x8c\n\xfd\xde\xa5\xf0a\xb3\xab\xd7P>K{^\x1f\x00\xa1\x1e\xb8G,\x94Y\x91\xcfO6\xa5<\xff\xc8\xbe\xc8\xfb\x85\xe7EOs\x99\xed\xa9\x7f\x9dB\xb5\x83\x110\xcc\x0b\xd9\xcd:\x82\x8c\xdb\x9did\xf7\x8e+\x9f\xfc\x9b\xb9t\xf2o\xe6\xb2\xe5rp\x8ev6\xeb\x9a\xdd\xe5\xd5\xa6)\xee\xb7\x86\xed\x00\xe6\xb4\x96SM\x18Wu6{'\x81&\xb93\xe9N:L\xaf&\x98\xd3\x89w\xf6\x19*\xdf\xda\x9f\xf2\xfa\xcc\x969\x93\x19{\xa1\xda\xb4\xbc\xd2\x8e\xe9\xc7W\"\xa9\xe1\x0f\xb1\xcb\xfa\x0c\xeb\xec\xdf\xd5\x1a\xdb\x11\xfe\x95\xc1\xbb..\xff}\xd2\x9dO=\xfa&.\x91O\xb4\x92]\n]\xba\x1e\xba+\xf5G\xee\xc9\x81\xc8\xa3M\x94_\xd9A\x0d\xc1\xbc\xbc\xd5y\n\x8e\x16Y^lj&\xb3_\xb3\xd2\x9a\xed\xa9S\x87m3\xec\xd2v\xf9\xe6E\xf0\xba\xb0\xfd\xe6\xeb\xd3K?]l\xfc\xca\xe5\xbf\x9f\xbf\x0e|\xe5\xa7\xd3\xf3\x17\xd8U/\xa6^\xe1\xeb\x9d\xe5+>\xc3[_\x1c\xadq\xb0)\x1b\xe6\xa3\xb5\x040\xc4\xb6\x9blj(\xfe\xb7\xd1B\xc1\x06\xfd\x9e\x0f\xe0>\xbdF\xe8\xe7xsO?\xc7\xff6\xf8\\W\x15~*n\xf2\xb9>;\x8b\x0f\xbf\xcb\xd7k6\x87\xf9F\xacR\xab\xbci\xf80R\xb3\xbf\xc8\xa9Ud\xf7l\xde\x977\xb4\x80\xbcsM\x0b\xc8\xfff\xb5GO\xb06\x96\x9a\x8fl\x93\xfb\\\x0bf:\x92\xc7\x8bWr\xf6`\xe5,[7\x9b\xa2+\x8a^\xce\x16b\xd1v{\xb1\xa0_\xcb=\xfc\x1b\x7f\xb9\xe4w\x1f5\x8f\x07\xa9\xa0D\x86\xfdj\xa1\xcdS\xde\x8e&OOr}\xb9\xbd\xd7\x0f\xf7\xd1.:\xec\xc31\xfd\x1f&\x0b\x7fZ*m\xa8\xde\xb3\xad\xce\xd9\xa3\x07\xed]\xc5\xe1\xf6\xd6p\x81\xe1ewK\x9ev\x8e\xf1j!\xf6w\xa29\xb3\xb6\xcdfK\xf9\x95\x8e\x07\xc2\xc7\x17\xcbf\xe6\xa5n\xdc\xebU\x9f\x14\xa7S\x07eidH\x85\xfb\x8c!$\xfd\xc7 \x04I\xe6\xc2\xe1F=\x10\x14\xe9\xd3vO\xd5\xe0]\x0c\xc86\xb64\x86&\x9d3\xc1\xb0\x890\xc3\xe1g\xb1\xa9+\x8chq\x17\x016\xfa\xfe\x9ey:>\x9f\x0b\xc2\xe6\xb0\x9d`J\xf8\x10;{\xb6\xcb\xbc\xbc\xb5\xcf\xf1\x08\x1bBtI\x06\xff\x94\xb3\x8a\xbf<\xef\xd9M\x93\xb7\xce\xd4l\x10Y\x1eq'A\x05\x8b\xbc\x9c\x0b\n\x82\x04\xa6]t,\x80|V\x95\xfb*\x8bt\xf5\xf1/\x98\xbf?\x8af\xdd{\xd8\x12> \xb6\x8f\xf9U+\xc50\xac;d\x1c)\xb2\xc1\xb5&\x16|\xce\x1a\xfa\x8f#\x11\xf1>\xe1\xb1>\xa1q>\xa11>\xc1\xf1=A\xb1=\xc1q=\x811=\xe1\xf1<\xe1\xb1<\x81q<\xb11<\xd8}\x9a\xbd\xdf\xd9>)I\xdd\x0e\x85\x01q;{\x8f\xd9\xf9T\xf1:\xfb\x8c\xd5\xf9\xecq:\x9f4F\xe7\x13\xc7\xe7\x1cDl\xcea\xc7\xe5\x1cPL\xce\xe7\x8a\xc7\xf1{\x04@F\xbc\\\xf1\x8e\x91\xd5\xd2\xd9>\xcf\x17\x02VhE\xa4K\xd3E\x9f\xf0c\x81CQ\xd74\xabL\xdc\xcaa\xdb\xb5x\xcbt*\x93\xa5\xf4\xb4KE\x8eVt:\x9dZB\xdch-7U\x8f\\\x01\x06\xed\x92\xe5\xf5\xd0\xf7+jen/]\x07q\x12\xbd\xceM\x94F)\x9ff\xef\x8589b\x17\xcc\xde\xa8\x96\xbc\x02\"\xa5\xb1\xca?*\x13Y\xd83\x8fr\x11\x972J\xff\xd0\xf4x\x1a\xee\xd2\x10\xac\xd7\xcbQy4)\xb8]\x0e2\xc6\xaa\x0eq\x04\xfa\xce\xdd\xc6L_\xeaV\xf1F\xde&hru4]\xbe\x0e\x8c\xab\xc3X\xf0\x81\xd7\x02\xb6SqL\xf2\xc0\xf6\x0e\x11\x83&\x84\x8bd\xd47\xc9K\xf2 \xbc$\xea{\xcf\x07\xc7\xf5\xa1\x8f\xa4\xfb\xaayD9MA>\x92\xa9\x90\x8f\xc4\xfeX\xb0\x8f\x043yI\x19vny\xdb\xcc\xad\xc1\x1d\xa8\xe3v\x96Y9\xbfw%\x9d\x99Dvf=\xb5\xe9\xe0\x9d9j\xb4\x9f:\xe2\xb3\xaa\xf7e3\x99h\xf2\xd62\xd2\xc9\x8b\xe3~\x83\xbc8\xae\xc7\xc9\x8bc\xfe;yq|\xdf!/\x0eyq\xc8\x8bC^\x9c\xcf\xed\xc5\xc9F^\x9c{U\x8a\x91'g\xb1)\x8aE^\x14L\x06\x15[U5\xf9\xad\xb8\xd4?\x83\xb6\xce\xcaFv\x9a\xa8\xe3\x97v\x1b|\xaa\xa3\xaa\xc3>\xde\x00\x8e\xf15\x93\x8d;\x1e\xce\x99\xd7\xc5E(ET\xd7\x10\x00\xd7\x99\xfc&/\xb3\xfa\x1e\x1e\xf5\x91\x19:\xf4\xda\xe2`+\xb2\xa6q\x06U\xe0\x0b$\xe3\xbb\x14\x97K\xc4d\xb5\xdd=\xfa\xc3n!\x99M\xd9Maj,wC=S:\x02\\S\xce~\xd7\x1c\x85\xb8\xa6\xcc\x16\x8cwW\x8d=Hc\x8f\x95y\x10\xed\xec\xb4RqT\xe4\xb2J\xe1\xb2J3l\x1cs\xd2K5\xa2${Q\xb5\xbd\xba\xd9V'\x81\xe9\x12\xaaX\xb5L\xfc\xca\x8e\xc8\xd8/2\xf2q8{u\xbd\xc0\x17\x1a\xd5\xee'\x16-\xeb\x15\x8b\x90`\x95NK\xb0R\xdb\xaa\x8b\xa0\xedgmg.\\\x8a\x99\xdc\x92\xcf\x10\xcb\xf1\x19c&1E<\xe7=\xdd\xbc\x9e\xca\x90\xed\xa3\xbeO\xba3\x87\x01\xc8Eu\x10\x06\xf5\x88\xe5\"O\xe0$\xb9\xc2c~Z\x91_q{\x0f\xe40t<\xd0\xddE\x1a=\xc7\x9ev\xe9\xfb$\x03~\xb4#n\xb26oT\n\xa8\n\xb2\xf5\xba\xb8w\xcf\xb5\xb2I.\xb7\xf2\xd6(\x9eq\xa6\x1e0\xbe\xef\x9dS\x10]\x13S_\xb1+\xeb\xa6;\xfb=\x16\x9eX\xa1\xd1\xfc$f$\x11z\xd3MT\xe6n)\x19\xee\xd7\xa2*\xd1u\xb8R\xfbJ\xa9l\x1a\xdd4Y\xf0\x1e\xa9\xc6\xb4\xb7\x99\x0c\xeb\xabj\x1d\xf4\xf7\xe2\xfc\xf2\xca6\xa8\x10m\xe0\xf6\xed>\x81\xe7g?\x9d\xbf<\xbf:\x7f\xf5\x12\xef\xc1\xdb~\xcb\x1b\xf7\xba\xfd\x8a'\xda\xd5\xf6\x82\xb0\x87\xe5\xad\xce#\x19^)\xff\xfeX\x8a\xd3`v;;^\x9a\xc6\x06\x89\xc8\xd6\x13\x15\xe9jU(\xd2\x1d\xd8\xa7\"{\x0bm\x1b\xc7\x10\xe6\x9a\xf5!\xe8*\xaf\x82\xf2\xeb\x88\x14U\x8f\xba\xb5Q#?e\xd5BU>\xf1%\xc4\xb7\xb5\xe9v\x99\x0c\xc1\xad:\xc5\x83\x9e\x0d\xb7\x02\\'\xebux1D\xd7\xb2\x95E\xfch.Pvo*\xce\xf8\xa6\x0f\xf1h\xef\xce\x81ev\xe7Z\xd2\xb9\xf6\x86O\x8a\xd6\xbcN\xea\x1a\xe4\xfc\xa6\x90W\xc2\xec\xff\x8e\x06\x02\x91\x08D\"\x10\x89@$\x02\x91\x08D\"\x10\x89@\xa4O\x03\"]\x8d\xba\xe2`\xd7\x83H#\xe1\xae\x96\xe9t\xac\xbf\xfd\xe7\xef\xff|W\x7f\xb7(\x8f\xe4\x0eN}r\xb2\xac\x8f\xf9\x1b\xdd\x9f\xcd\x1f\xae\xd9L~si\xfd\xe6\xfb\xef\xbe\x9d\xff\xfe\xed\xff\x98\xdf\xad\xe6\xd9?7\xef\xff9\xcb\xe6\xf3\xe5\xf2o\xb7\xab\xcd\xefK\xf6\xcf\xef\xbe;\x86\xf3E\xa7/\xefr\xaa\x19\xf2{l\x97\xa5U\xf9\xdcmM\xdf\xed\xa8\xc5\n\xa7\xb8\x1c\xf6\xda\xf2o\xf3\x91\xc8\xe6b,\xf6\x1f\xfc\xf1^/8G\xd6\xf4#\x0d\x9a\x0b#S\xcf\xb7]\x12\xd5A~\xfcK\xd6\xfd\xf9z\xb4\x19i+1\xe6\xe5^]\xfc\xce\x0b\xb2\x02\x95\xb3\\\xfa\xc4u\xbbtys\xcf\xe7O\xcd\xa3F=\xa8W\xc4\xc1P~\xf8\xed\xd7_?\xb4/\xab\x83\x14F\xfb\\OG$\x89\xae\xd4\xdb\x93\xfb\xa8p\xe6\x97\xf4\xce\xe3}\x9d\x89\x14H\xe6\xc6\xd9&\xc6;\x973\xf7b\xe6)4\xf8\xb4\x83\xf7\x0b\x10\xc0\xa1@-~H\xa07)\x93\x02\x19\xbc\x8294\xa1\xa3\x83\x1c:\xcc\x83u*\xde\x86\x03T\xe3AZ:\xc3.\x11D\xc8f\x80\x1d\xca\x13\x11G\x84\x8e$\x8a-UL4\x11.\x9eh\x97\x12\xf9c\x8a|G\xaf\xa1$\x8e+\n\x8f,B\xc7\x16a\xd0\x13/~\x824|\xe2\x18#|\x94\xd1\xa7\xac\xa4\x1f(\x8a\x82\x8ab\xc0\xa2p\xb8(\x1c0\x8a\x80\x8c\x02A\xa3\x08\xd8(\x188\x8a\x81\x8eb\xc0\xa3`\xf8(\x1e@\n\x99\xae\xa2@$\xa7\xbe\xd0\x9b\xa0\xf7\x0e$}:(i\xbf`\xd2\x01\xc0I\x9f\x18P\xfa\xe4\x90\xd2\x81\x80J\x87\x0e+\x1d\x14\xb0\xf4\xf9\xa0%\xdc9)!\xbc\x84\x06\x98p%K\x18\xa9\x942V \x15\xad\x84\xdc\x92\x85\x9c\xb0\x9d\xb6\xf2R\xa8\x83\xa2\x96\xfa4\xaa\xea)\xa3\x970\xf1Ka\xc5J\x12\xc3\xe4o\xbaTqLI#\x99<\xad\x8f\xdb\xbc\x19\x1dn\x9a\xa8\x186\xdc\x14\x8ee:N\x8e\xfc{\xd7\xf9\xfc\x9a\x1fb\xcd=\x00Wl\xa3\xc2\xde_l\xbc\xb8\xd5\xa2*\x9f\x9fL\xee\x14\xc6\xfa\x19\x01\xe3T\xf2;\x94\xa6u\xd9qd\xa0\xe6*\x9c\x95\xc1P\xba\x0e\x0e\xce\xde\x8bOlY\xcd5\xb9\x9b\x00\x11\x9b\xfba\xab\x89\xe5\x95\x95\x87m\x9dk}\xaf\xa64\x92\xfa\xd7\xba\xaa{\x07\x9a+\x16g\xaa\x0em\x9b\xf1\x1f6\x9bC\xefE\x86\x02+\x9b\xa1\x95\x88w\xc6\x96\x8d\xb4\x1f\xef\x88;\x9a+\xd6\x12\xfc\xd3\xba\xb3(PO~\xa9\xbb\xf9{O}&A\x17\x89\xad\xf3\xa0\xb1\x05\xec\nK\xf6A\xd7:\xb8\xb6\x86\x8e\xe4\x88\xa1\xed!\xbf\xed\xba\x7f\x0e\xe6D\xe3\x87\x9b\xbc\xdf\x00\xc4w \x08tB\xb6?r\x92H\x0e=\xf9\xe1\x17d\xf1}\xbb>)i\x82z!(\xb0\x17\xbc\xc1\xbd\x80tI#\x9c\xd2\xa8\x1e&\x05\xd3\xcf\xa4\xf8\x9aH\n\xb2\xa1\xd4\xc31\x81\xbf\xa0\xbe\x82\x08\xfe\x85\xc8\x02y#JA\x1c\x92[D\xa40B\x11.\x96\x18\xf0\xf1\xc4\x10Zm\xe4\xa8\x97\x12b#\xef\xe1\x18\x11l\xcbe\x10\x81\xec\x8f\xb9\x95\xe2\x8f3\x86P3\x85\xd6\x1c\x1ds\x8c\xd0'\x02\xb1\xf1q\xc7\x10P\xdc\x94\xf1\xc7\x10\x18\x83\xecQ\xd5E(\xfb\xe3\x90\x01\x11\x8b\x0ch\xab\x84\xc6$\xbb\x1b\x82Ok\xbb\xc4%\x03v\xcaCvg\xac\x0d\xda4q\xca\x10\x1d\xab\x0c\xb8xe@\xd7)K\xbc\xb3\xab(\x07\x14\xf3\x0c\x80\x89{\x86\xb0\xd8gH\x7f\x92\xf0NW\x98 +\x92\xe4\x12Gs\x89!\xba\xc4P]\xa2\xc8.\xc1t\x97(\xc2K\x04\xe5%\x8e\xf4\x12G{\x89 \xbe\xecB} [\x13\xc2\xe9/\x1eu\n^\x0e!\xc0|\x12\n\xcc\xa7$\xc1\xec\x9b\x06s\x10D\x98ON\x85\xf9\x0cd\x98\x83\xa1\xc3\x1c>!\xe6\xc0(1\x9f\x93\x14\x83=\xa4%%\xc6\x04Pc\x92\xc4_\x03\xaa\x9a\x11q\xd8\x1e];\xc4bK\xc1\xae\x8e[>\xef\x11\xbf \xe82h\x07\xbf`\x04\xf2\xb8\xf9\x05\xf8\xa2\x1bT\xc61\x0cL\x1c\x03S\xcdm\xc8\x1d\xc2=\x8fq\xcc\x8f\xeb\xe3?\x0exw\xf1HG0\xd6\xde\xb0UF+\xd7\x00\xe1BjB\xb8\x06[\x8d\xed\xe3\x1a\x1c\x8e\x8dvd\x1cL\xd5\xa1-\x14\x02'\x1f\x90\xb5bx\x07\x18\xe6A\xa4\x15\x97Y\xb3d\xf3T\x9e\xda\xfd\x9boP^\xdd\xe3\xe4\x9f\xdc\xee\x08. \x0c\xe6&j\xa0\xcd\x14[\xff\x04d\x0d\xfcp\x0b\xa0\xccI \xa9\x95\x99>\x97\x87.kCUb\xc2\x85|\xde;\xbc\xe6}\x883\xae\xca\xa8\x95\x0e\x90\xab\x1d\x041\xeb\xa4 \xfb\x0f\xe0\x87\x1a\x046\x0c\x040\xee\xd0\x8aB\xd7B\x88a\xdfI9L\x0b\xfa\xd6H\xaf\xc2\x10n\x99\x14\x04O\xe9\x0fj\xcb\xb8\x15t[\x95a\x15\x0d\xd4\x10\xd6\x06\xbe\xc5\x03\xc2L\xbe\x9b\x1d\xbdK\x89W_ \xe3Q\xca^;\xe1n\x16\xd9\x89\x15hR\x88\xe2\x06\x02\xb2\xdc\x86\x13\xf8o\"+E\xdd\x1f 3h\xf2\xf2\xb6p\x9eN\x9a-D\xbf\xa9V\x0c\xd8\x87\xb6\xce\x06\xcc8\xe9?\xcc\xdb\xed\xe2\xfa\x0bk\xa4;J\xd7\xcc=\x94\x9b\xd5\x0d\xab\xa1\xaa\xbb\xa4\x1a\xd6\xc2N\x14\x18\xa1\xfc\x91\x81\xfb\x13\xbcA\xdb\xa3|\xd1g'{\xbcM\xd1\x14\xbflw\xc6Qu\xd5S\xd2I8\xab\xd6\xf7\xfd^R\xfe \\\x842N\x9e\x97\xb3]\xb2F'X1,w\xce\xcdF@\x9a\x10\xeb\xc6\xc2;v\xfc\x8d \x86\x8far\x17\x8d\x05\x93\xc9h\x94XH\xb7+\xa6D6\x9a\x8d9\xed\xd0X\xf4w\x1a\\\xf6\xa3c\xdb\xb7\xce[a\x94\xach*\x0d\x04\x1b\x18\x1a\xe3\x12YT\xa5\xc8\x8bdPmJ\x0d\xe4\xea57UU0\x0b\x13\x00\xd7m\x8c\xc9\x88\xc4\xd0Y\x14\xd9\xad\x98`\xde/\x99\xe8E\xe3\xd4D\x16}6\xafU\xb3\x1dm\x85\xea\x1f}\xfe\xa3\xadTDZ\xd8\x07Y\x05\xe7\xe9'\x95\xbd&\x1f\xb3\x9bJ=(Jo\xcd?/T,\xeaj\xe5\xadd\xdfN\x969\x10\x12Vr\xf21L\x7f\xb0\x92\x9a;\x1d%\xdcW\x9bz\x92\xc9J\x8a\xbbT\xc6\xb0:T\xde\xc9\x89\"\x99\x85\xd2\x1c\xa5w\xf1\xfa\x19\xe5\xa0\x04\xcaA\xe9Y\x8b?q\x0e\xca\xe9\xa2n\xeb\x89\x931\x13\xbb\x17H\xb3\x03p\xcc\xeb\xa3\xb5u\xc7u}\xe7\xd5<\xf1\x1a\x1e\x9e\xcfs\xd2St\xa3\x9b\x96dd\xc3G\xaf\xe66\xbcd\x875\xdc\xb1rsS\xfd\xae\x12\x8aj\xe9m\xb5\xc8\x8af\xdbX\xd3UM[k\xb2 #\x0d\x15\xb9\x8c\xf7\x0b\xf6H\xdb\xa7\xa8\xe7dMF\xd63j%\x1f\xac\xd9#e\x96\xf5{\xf7Z&N6{\";\xb2\xfc\x95[\xcf\x91~\xd6\x04\x9a\xf7\x19g\x8dS\xca(\xdf\xac\xc4\xc1\xb59F\x899\x0d\xaa\xf5\x82z\xb0y9Mn\x01\xdb\xd2\xbd\xfb\x99\xd8\xb5\x8b\xdd)X\x1ew\xf2\x06\xdc\x9a\x8dt\x9c&\x8e_L\x97\xfd\xc2\xe9dK\x15\xb7\xd8L\x19\x1c\x8e\xa8E_\xcc\xa2kg\xa8\xc5\xcb2\xf6\xf6\")\xfe\xbe$\xc5\x87\xbd\x02\xb6Q\xd4\xa3qQ\x8a-&`\x07\xa2\x8a\x82p\xc5&\x8aN\xc4\xc6&\xaa\xb9(\xa9\xf7\x195\x92\xa5\xe0\xed\xd2&\x89H\x0c\x8eG\xc4D#\x06\x98&\xac\xbe\xe9\xe2\x10\x83\xa3\x10q\x05M\x1b\x81\x18\x12\x7f\xa8\xbe\xe3\xd4\x87\x8b>\xf4\xc7\x1ebl\x11\x1aw\xe8\x9b\xeaw\x8b:DLa\xa8N\x8b\xaby\x9b*\xda06\xd6\x10\x15i\x88\xa9Kx\x94\xa1\xebv\xd4\xc0\xfbQ\x91m\xe2\x0b\xd7\x89\x8d.\x8c\x8a-\x8c\x88,\x8c\x8b+\xdc)\xaa\x10\xe7\x90\x05\x9f\xf1\\VO\x10O\x18\x1cMx\xa8\xb1\x84\x07\x13I\xf8\x87\x88#l\x11Q\x84A1\x84 w\xf6\xde=\x8do2\xb2Gc\xe1_B\xc6\x0d\x86G\x0d\x86\xc7\x0cFD\x0c\x06\xc6\x0bFD\x0b\x06\xc7\n\xc6D\n\xc6\xc4 \x06G \xc6\xc7\x08\xe2gx{\x8f\xa4\xf4\xd8\x11\x91\x81\xfb\x8d\x0b<\x80\xa8\xc0O\x1c\x13\xf8\xc9#\x02\x0f$\x1e\xf0\xd0\xa3\x01\x0f*\x16\xf0\xf3E\x02b\x0eQI\xa3\x00\xbbF\xf2\xc5\x00&\x89\x00\xf4U/\"\xfa\xcf}P\xdf-\xf6\x0f\xb7\xeamy\x8d\xdb\xc8\xb8?G\xd4\xdf$6e\xd7\x9c\xc2\x06u=\xb93$0b\x97h?\xafs\xdb\xef\xd6\x1e\xd7\xc3\xb7eO\x01\x90\xe0\xec\x0b \xe3\xfb\x8cT\x00\x1b\xcbp\xd2\xb0\xbeH\x86\xcfo\x17_\xbc\x82\x87\x0d\x8d\x8b\xb7\x99|2\x84\x1a~\x00\x16\x8a\x89B\xf0\xc6\x1f\xc4Y\x0e\x15\xc3w\x00&s\xc7\xeeiS8\xf4E\x1b\xe9\x93&X\x9e~\xd8\x19f\x91j0m\x85\x1e\xb8\xa3\xf5\xf0\xb51*\x86\x88H\xbd\x11\xb1g\xb78=\xef\x1a\x05\xa8u\n\x82#\xf4P=\x05\xb0\x03 \x82\x1a\x02\x02\"\xf3|\xfcy-A\xab\x18\xc4F\xe5\x1d\x9a\xd5|\xab\x9bG]\x1b\x18\xf5\x84\x88\n\xfa\x83\xd9/f\xed\xdbV\x14\x1e\x7f\x17ou\x7f\xec\x1d\xda\xc8\xbb\xd8\x0e\xb3\x1c\xec\xb5\xf7%\xecl\xbb\xd8a\xe7X;D\x97\x8c ]K\x13e\xd7l\xe1\xd7A1v\x14\x8b\x86=\xd6\x07\xf0\xcf{I\xc3D\xef\xa5\xb1\xf3\x94{\xa1X\xb4\xa1\xd8O*\x89z\xc9\xf0\x88Q\x0en\xe8\xd2\xd8n%\xee\xea\x977\xf5\x9b5\x9c\x8b\x91\xd5\xbb\xa5\x16\xdb\x9e.\xb5\xff\x92]\xce\xceN\x1b\xed{\x0d\x9b-g\x01\xf2\xdb\xb2\xf2~\xdf\xe9\xac@o\xf1(\xd6MK\xaaJF1\xe4\xad#q\xd7X7\xc3\xda\x16\x1f\xe9fr S\x9c\x9b\x12\x8as\xa38\xb7\xddv\x17\x8e=\x05\xc5\xb9I1\xf6\x14\xdd\xe8\x13R\x91\xab\xa1c\xb7\n\x11\x1b\x04D[[\xb6\x05\xc1\x9b\x01\x07\xb2e\xd8\x02$\xb3;E\xccQ\xc4\xdc\xb8S\x0e#\xe6\x94ZS\xac\xdc\xc0R\x86\xadE\xf3SU\x9bc\xebu<\x9d\x01\xb3\x1b\x95\xa4q\x85\xd6\xd9\xda\xec\xca4\xc8\x10\xeb\x00f\x0d82\xac\x00\xe6\xa2[\xce\x8e\x813\xff\xd1h\xd1q\x99\xaa/\x86\xf9\xc3)\xe6|8\xef\xdd\\y\xeb\x98\xb8\xb6\xcb\xd2\xca\x881\xdb%\xb9=+G8k\xd4m\xd6\xf6\xdajN\x8d\xae\x9f/\xcc\xd2\xda\x15\x1fh\xeb\xfc\x81\xc2/\x0fdK9*\x93{g\xb8s\x0e\xe2\xe9xv9C\x11\x9bQ\xc0{\xdd\x13\x07q\xfa\xe3\x06\x91\xc5\xf7\xb1\x7f\xa4\xa4\n\xe6\x0c\x0b\xe7\xf4\x07t\xba{l/^\xea7\xaa\x87I\xc1\xf43)\xbe&\x92\x82l(\xf5p\\x\xa7:\xb8\xed\xaf@^\x04\x00\xd2\x85y\xe2\x03=\x03B=\x03\xab\x8d\x1c\xf5RBl\xd4& \xf9\x8c\x08\xfa\xc4\x85}\x06\x9a)\xb4\xe6\xe9\x82?#\xc2?\xf1\xc5M\x1b\x02\x1a\x16\x04\xeaQE\x97P\xf6J0S\x1e\xb2;cm\xd0\xa6\n\x0b\x8d\x0f\x0cE\x86\x86b\xeb\x14\x1e\x1e\xeaTG\x97P\xd2%\x94\xbb\x06\x8dF\x84\x8d\xbaZ\xf0\xf3\x06\x8e\xda\xdb\xfb\x93\x87\x8ez\xba\xde\xa1\x04\x8f\xe2\xc2G\x03\x03H\x93\x9f$\xbc\xd3\x15f\xc2\xb2\x07\xee\x85\xbc\x86\x0c&\xb5\x84\xd0\x85\xbc\x83\n(\xb5\x85\xb8\x85\xbc\xe4\x0f*\xb5\x85\x95\x85\xbc\x84 ,\xb5\x86q\x85\xbc\x85\x0c.\xb5EA9_\x8a\x0f0\x0d[\x13\xec}5\xea\xd3t \xa5\xe1[\xc9\x83Mmc\xf1\x93\x86\x9b\x9a\xc6\xf6^\x03Nms\xc3\x1eCN\xcd3\xcbg\x08:\xb5\xceW\x07\x13vj\x9d\x1b?O\xe0\xa9m\xd2\xfd\x14\xa1\xa7\xd8CZ\xd2\xf0\xd3\x80\x00\xd4D!\xa8\x98jF\x84\xa1zt\xed\x18\x88\x8a_\x1d\xb7|\xdemd0*]B\xb9+\x004\xae\x8f\xff8\xe0\xdd\xc5#\x1d\xc1X{C\xc2 \xd5\x00\xf6\xa7\x94Ic\xfb\x83{\x0e\xc5F\xbe\x90\x1eg\xbf\xdcV\x87\xb6PXt\xc5\xc1X+.\x80\xc7\x1b\xbe\x13kET\x00\xeb\x01\x99\x8f.\xa1\xdc-\xa4\x15?\xdc\xb6\xe2|\xe8\x12\xcaN0\xab\x1d\x04\x87\xb8\xa2\xfb\x0f\xe0\x87\x1a\x046\x0c\x04\x84\xba\xa2\x15\x85\xae\x85\x10\x1b\xeez\xa8\x16\xf4\xad\x91^\x85m`\xe8!*L\xef\x0fj\xcb\xb8\x15t[Ux\x10lX\x18lx l\x90\xc9w\xb3\xa3w)\xf1\xea\xa3K(=\n\x91\xa1\xb1\xb8r\xa7 \x8f\xdd9@\x16SX#\xddQ\xbaf\xfaK(\x17\xfb\xbc\x84rZj\xf3S\x96\xee\xe7\xecp\xfe\xda;\xbe5\xea]\xd3Kw|\x06@\xd6\xc9<\xc9\xec\xa7N\xc39\xc4\xbc\xd4\x1bti7D\xd6\xf4\x9chV\xce\xaa9\x9b\xab\x02NkJA\xd9\x8e\xd9l\xfa1\x0cI~,\x18\xca\xbc?l\xaa\x97q\x07\xb0\xba=\xdeB\x90\x03\xb6\x17\x01\xad\xf7\x197\x8f\x1b{\xcdG\x9d\xc8Lg\xe3\x93\x94\x97\xc1\xc9\xf2\x98\xe4\xef~\xf1\xb1\xe4\x92\xa6\x119FQV\xcc\xb3b\xb7\x88o\xd1\xfe\xbb\x0f\xef\xad\x1dB~L\xa1h\xb5\xf1%\xf0&\xf3 \x89c\xa1\x89o.\xce\xbfh\xd3J:\xf1\n\xcf\xfa\xd2\xd2\xdaE@\xbd\xf8\xde\xa1\xaf\x1d\xb7\x8c\xcf4\x0bO\x92iv\xa9\x1bN\xeeG1\x17|\xed\xf6\x93na\x0b \xb7\x81\xbc\xc2\xf1A\xd91>\x93\xda\xa39\x82\xd6W\x83?\xff\xe3\x9aqmMIu!\x0c+6\xed\x0b\\\xc8\x1bCcU\xbc\xf3\x1a^\xdc\xa6\n\x1aT\xa7\xf5C\x05RI\xb8\xf4u\xc9+\xb9\xb2\x1d\x94f\"\xb0\xccy\x8eC\xc8\xa3\x02\xc0\xcc\xf4\xa8\xe0\xd0\xd6\xd1\x12\xd1\xa5pkq\xec\xa4\xd7d\xb4!g]{\xe7\x01s\xa9\xb3\x83hY\x18%pSq\xfe\x88Q\xc6\xf8\xf7@[W\x7f\xfe}\xe3\x0cz\x1e\xfe4\xa1;6{\x9b_$\xdb6\xbfh\x83\xf2\x8b\xb6\xa9&>:\x07\xf9h\x9e=\xd5\xa4\xa6\xd200\x9a\xc7Q\x9f~\x1c\xe0\x8b\x90\x1e\x07\x13\xca\x10\x17C\xcb\x91`\x82sz\x0e\x86\xb0\xab\xb3a\xac\xf6\x84\x85\x89\x02?\xe0b\x19\xe21\xf0\xfb\x05\xfaz\x02\x82\xfcl\x82_3s[\xf6\x85\x85\xbd\xfc\xec\x0e\xe4\xee\xb0s\xbeq\x9ao@\xb3\x9c\xec\x07\x9d\xe5\xad'\xf6g\xe6\xa2i<\xd5\xfd}\xbc\xec{\xa2\xef\x9e\xdb\x1b\xe0\xacg\xf8\xfe\xa7\xf6\xe6Q\xa5\x01\xac{N\x1ft27\xce\xdf\x0d`\xf6\xb3x\xf7\xf4=db\x01\xa2Z\x9e\xab\x81\x937\xe4\x14.wB\x03N\xe8\xdc\x1d\xa8q\xfc\xee?.N\xb7^w\xd5\xb6^\xf7\x0d\xf2\xba7}j[\x87;\xc0\xe1\xbeMj\x18\x1a1\xbeMjX#s\xc3\xe1\xf8\xdb\xa4\x861\xb8\xb8Mj\x80\x1ez\xd16\xa9\xa19\xc6+Mj\xf8\x9b_5y\xee\x89\xb5\xa9[_\x0b\xa7\xb6[\xe1\xc9\x92[\xea\x1c\xdc\x9b\xa2]5\xd2~\x15\xfc\x8b\xa2t\xb3/\x81]\xd6\xe7\xa0\x93\xb1\xe7*7h\x01\xae~\x8d\x1b\xbc\xc4\x85\xe2\x00\xbc\xc0\x85\\\xdfB\x87\xecwu\x1b\xf6\xa0\xacpmk-\x05<\xda\xa5\xed\xff\x85+\xdb\xe1\xdb\xe0_\xfa\xd2\x16\xe8\xbf\x00y.\xda\xbe\ntq\xfe\xa5\x05p\xeb\xb3\xd8\xfa,6\xcbg\xc1\xe5\x82\x01j\xeb\xb5X\x9f\xf1\x17x\xf0\xf3\xec\xf2$I\x94\x9f\x13\x18\x14\xe8\xb0\xf7\x0c@\xbf(\x027\xdb\xe6\xdb\x90\xed\xbb\x0d\xfc\xdb\x06\xfe\x0d\xb2!\xffoX\x91\xff\xd2\xb6\xa0h\xdb\x00\xbeN\x03lz\xc0\x152\x023\x0f\x0d\xf3\xec{\xa0m\x03\xf8 \xb7\xd2\xa8\xd7\x0c\x0d\xb93\xf0\x80\xdb\x06\xf0\x896\xfa<\x0d\xbb}\xf0\x00\xdc\x06\xf0\xb5Z\xdf; \x0f\xa8m\x00\xdf6\x80O\xb7m\x00\x9f\xeb\xaf\x01\x83y\x1b\xc0\xd7i\xdb\x00\xbe\xfaOPfn\x03\xf8\x1a\x9e$\x90\x13\xbc\x05@\xb9\xc4M\xcf\xd66xO\xb6\xad#|\x83\x1c\xe1\xff\xca\xfe\xeam\x94\xdd\xd0\x10\xa6m\x94\xdd\x1a\x99\x1b\x8e\x0f\xdbF\xd9\x8d\xc1\xc5m\x94\x1d\xf4d\x8a\xb6Qv\xcd1^Y\x94\x9d\xb8t\x9a\xd1\xc5\xde\xdf\xf2\x1e\x07X\x91E\xf5\xd3\xd7\xaelI\xf2*:\x8d\xa7F\xf9zOh!\x16\xfd\x0d\xbd'\xfa\xc2\x08\xe1\xfa\xacH(W\xfb\x181\xbc\x98\xb0\x15r\x81cg\xbf\xb1U\xe3\xcb?n\xecm\xad(,TU4\x1e\xd7\xcctXr-\x1a9\xe7\xb3\xa9\x9e\x98\x02\xbde\xa8t\xef\xea:\xb3\xf3\xda/\xde$\x19\x83\x0e\xb4\xdbK; \xee\xdbK;k\x831\x0f\x0d;(x\xa0m/\xed \x9e(\xd4k\x86\x86\x1cA<\xe0\xb6\x97v\xa2\x8d>O\xc3\x0e3\x1e\x80\xdbK\xbbV\xeb{\xc4\xf1\x80\xda^\xdam/\xedt\xdb^\xda\xb9\xfe\x1a0\xb6\xb7\x97v\x9d\xb6\xbd\xb4\xab\xff\x04e\xe6\xf6\xd2N;\x13@\x17v\xea\x8aN{@\xb6Y+\xdb\xcb:\xdb\xdf7\xe9\xb2\xae\x1bF\xbe\xcd[\x01\xb8S\xb7\xf7\x80C/Y\xb6\xf7\x80kdn\xf8\x06k{\x0f8\x06\x17\xb7\xf7\x80\xd0\xc3\xee\xf6\x1e\x105\xc7xe\xf7\x80\xa1\xa7C\xe5\xcb\x80\x0c)j}\xf0\xf2Q\x83\xf3\xbd\x05\xfa\xff\xe4o\xb6O\x81\x8a\xe6\xb1B_\xdb\x85\xdb\xbf\xf4\xa5\x99\x1f+\xbe\xb9z<\xc2)O\x90\xf5k\x9b-x\xdb\xe3\xe3\xf6\xf8\xb8Y\xc7\xc7\x7f\xe53^_U\x99\x93(\xcb\xe3\xbd\xbf\xc5\xff_\xb3\x93\xb5'f\xe6\x82\xff\x8a\x19\x148\x8ff\xf2Q\"\xd1U\xcb_\x17\x0f\xaf\xb8\x00\xd1\xa3\xec0KD:u\xe3\x1d4\xaf\x8a\x92Y\"\x18MH4{\x7f(\x7f\xaa\x8e\xfa;\x88\xbc\xbb1L;\xf1\xd7\x83\xbb\xc3\x1b\xb2\xff\x84\x9f\xca\xea\xe3Q\xf9x\xf4x\x94$\xf7G\x8f\xd1\xe7\xa7\xb2x\xf8p\x18\xdf\x1d\xfe\x8c\xef\xe71~\xaa\x1e\x9e\"\x1c\xc7\xb3\xd9\xa7\x9by\xf5~\x1e=\x91\xf7\xef\x18B\x1a\x1e\x0f)\xd9\xa51?|\xc9\xf8\x9d\x89\n\x01\xaa*\x1a\xb7\x11\xf8|\xf0\xf9\xb7O\x13|\xb8{4}\x7f\xb4\xfb\xe1\xe83\xde\xfd\xf4\x11\xff\xb6;%\x11>\x98\xec\x1f\x1d\x1c\x92}\xc4_l\x120\x9at4\x86=\xb8{rRq\xf7\x98\xdc>\x90\xe4\x1d\xba\xa4s\x9a\xe0=\xb6~US\x93\x96\xb4\\\n\xf5\xadi\x8c\xaa\xa2\xccb\x8aSI\xa8z\x83\x9a1\xb8/\xa1|\xdf\x1fw\xbe\xe8+\xc4B\xc8\xff\x05\xce\xcb\xa5\xc4\x89+m\xa5\xa5\x98\xf6\xed9\xa4\x96\x1b\xc7\xd6\xaf\x82\xbbb@qNN\x11\x9eNiBqI\x10\xbe\xc9 7Cz\x0e*\xa5\xce\xb1\xe5\x9b\x18\x90[=8\x11\x1e\xf4l*\x11\xd0vS\x9e%\x82\xf8yJ'U\x81&8\xbdUZ\xb1'*\xb5,;\xb6\x7fV7\x9e\xad\xab\\=\x0dF\xfdm6\x05F\x91Dq\xd2\x9d\xe3\\\"\x8d\xa3\x12\xe1h\xc0\xa6\xae\xe5\xe6\xb1\xfdss}\x8a\xaa\x8e5\x9f\xb4\x0d\xa9v\xbd4a\xd0[J\x10I\xb3\x92\xf8\x8d\x99.BZ \x1f[\xbf\xda\xd0\xb9\xc7 \x8d\xf9\x12\x96)g|\x7fh\\\xbc\x08\xa8\xfc\xa2\x90e\x11\xbei2~+\xac/\xed\x90\xd6\x13\xfa\xa6@\x05\xbdIqY\xe5\xfc\\\xaa\x06\xf7\xc0\x83Yr'\xe8\xdc\xd8\xb7\xca\xbed\x9bj\x8f\xa6L\x84q\xbe0K\xcf\x0b\xa6[qS-.g7\xb8f\xbb\xe2\xe7l\xc6\x07J\x8azi\xa32[\xa0\x84\xdc\x93DU,\x15\x02\xc7\x03I\x9d\xd5\x85\x8d\xfa\xae\x0d\x9a;\xb2\x19\x9f\x11N\x97\xea\xe8\xee\x13\x97|\xef\xcf\xb3\x98N\xbda\xf3<\xaa\x9c\x9d\x8f\x0c\xdbX\x1d`\x05\x06\xcd\xd3\xa7w\xe5U\xa9\xf0(\x963\x8dwB\xb9\x0b6KM\xb7\xb25L\x975\x86\xc95\xe6\xfe\x97g9V\x05lt\xf8:8\xd1L\x92GJ\x91U\xca8\x86\xabr\x96\xe5\xf4IH\xc4\x9cD\x84\xde\xfb\x16B6\x9d\xee\nq\xc3\xe7\xa5\x9b\x84\xaa]\x0c\x0e \xfc\xda\xeb\x9a\xaf\xbb\xeb\xe0qol>\xa4FubS\xf9\xb0\xd9\x17\xf1K-\x82\xbck\xd3\xf0\xa6\\\x968\x8dq\x1e7\xaa\xea\n\x0dVp\x7f\xe4\x1c\xe7\xb7\x96+\xd2\xba\xa9_{\xf3gr\x82\x8aj\xb1\xc8r\x86\x9f>@r\xcc\xf9\x8e`\xc2\xa8,s:\xa9J\x82\xe6x\xc9\xfd\xf1\x1e\x80\x13\xc2\xe4uz\xc3\x0b3s.H)\xafT#\xdb\x1b\x11\xb3D,\x01?f\x93n\x9fk.s\xaf\xf3,I\xaaEhZC\x92\x1d>\xaf\x7fI\xb1\x8f\x93Dom\xb5\xd2k\x970-\x0b\xbd\xc5=\xc0\xd4\xa5\x9c\x12\x96\x0d@o\n%2\xa7\x94$\xb17\xe5HLGRd\x88\xa4x\x92\x88\xd39\x0fD\x94:\xe8\xdf\xb9OY (\xa0\xfa\xe6\xbevj+\x1a\xed\x93\x01c\xdb%\x1fU\x85\xbc`\x94gY)\xee\x06H*]|L\x15% \xe1&N}\xf7\xe0\xc2Q\x95\xf7\x16\xd1\x96\xf2\xc6\xc2\x83\xa8r\x95^\xd3t\x9a\xd9\x97\n\x8c\x92\x06\xa0\xda\x0fg\xa6\xc8\xe0IV\x89X=\x1a\xef\xd5\xae \x07\xc0Z\xc9X\x7f\x10ty\x85\x9d]\xcf\xe9&n0\xd1\xbcx\xe2\xb7\x93\xf8\x81\xf7\xd6\x8e\xb1\xc6\xbd\xadk\xb3k\x8e/r2\xa5\x9d\xec\xa7\xba\xad\x99\n9\xbe\"F\xfe\x17\x93\x8e:/\x8a\xe8\x1f\x07\x89\x11\xff\xa8\xaa\x17\x98\x16\xafp\xb3 \xa8(6\xbe4\xa9\x06\x80\xf3\xf3\x83\xad\x80\x15\xd9\xd0\x97Bu\xcd\xcd\x8f]\"\x1cB\x8c\x80\xeeI^\x8cH\xdb\x08S\xdc\x976s\xd2\xf8\xbfg\xe4QQ\x07\xa6\xcaX\x00n\x81\xca\x0e\x87\xe3IU\x13Z@\xb4:\xe04\x04\xae\xeb\ne\xcd\x82VR\xb1\xe2\x9c\xafe[K\xd4\xfc\xf2\xd8\x07\xa5q\x13\x05\x92\xdbjN_Hx\xc3\x99\x02\x11\xefPX0\x96\x18\xff5\x82\x90X+oZ\xa865\x82\xfe\xec\x01gU\x93pn\xbd\x80\x82\xd0\xe3\x8e\xa2%\xe0\xa4\x8e\xb0\x14\x06\x91:\x82\xd2p\xac\x966\xd1\xeaT\xd4\xa5\xd2\xe7\xcdXWd\xad\xc4\xc6\xc5\xf2\xa0Z\x08\x8f\x80\xeaQ\xbcz\x018\xbb\xc0\xad\x0e\x8fk\x18w\xdc>\xcb\x8f{\xc9\xee*vPR\x92A;\xbb-Q\x0f\x0f\xd8\x7f'\xa2<\xedQN\xb4\x9f]2\xde\xb5\xf1\x90:4\x86\xd9\xe3w\xb2\x01\xdcl\xa0\xc5$\x1adI\x89\x16tj\xa9\x06\x9cc\xf9\xe31\xe2\x18`\x91\x0cP\x0f\xb8h\xe3F3\x0c\x88g\xe8\xc9HXL\xc3\nQ\x0d\xc3\xe3\x1a\x86F6\x0c\x8dm\x18\x1c\xdd0(\xbeap\x84\xc3\xc0\x18\x87\xe1Q\x0e\xc3\xe3\x1c\x06F:\xac\x1a\xeb\xd0O\xc2\x8b\xe6\x8cw\x00\xf4\xb5\xf7\x1c\x1a\xf1\xf0l1\x0f\xcf\x1d\xf5\xf0\x1cq\x0f\x1b\x13\xf9\xf0\"\xb1\x0f/\x14\xfd\xb0Q\xf1\x0f\xaf#\x02b\x03c ^6\n\x02\x1e\x07\x01\xbd/\xd3\xbf\x1e1\x16\x02n\x0b\x8e\x14\x0f1(\"\x02\x8a\xa5\xbe\x1b\x94\xce\x12\xc2+0\x88b\xd7\xa5H\x8a\xc7\"\x8e\x81\xe7Y{C\xafQ\x18-\x9ex\xe9C\x1af\xb7\xc2h\xe3 4eV\xb3\xcf\xbc\x90\x97\xf7\x86\xe4\x91DUp\xbfJs}\x87\xe1G#\x9c$K\x14%\xb8(\xd8\x08\xce\x8e\xb2\xd3\x08\xe4\xae\xe1L\xab\x0e \"{\x95\x92D\\\x9e3\x0d\xcbTz\x94\xf0\xda1Z\xa6\xc4\xb8\xc4^x\xdd%\x1a<\xd4\xe2*\xf6U\\\xedG\xcf\x17~\x9c\x8e\xd1d\xb9\x83\xaaE\xac\xff]\xd29)J<_\x14;\xda\x1d&\xaa\x8a\xec\xf8\xe9\xe1\x19Z \x16\xe9\x88\xd3\xccM\x06\xf8\xc4\x0c=/\x0b\xcf@|\xcd\x88\x08 B\xe0\x02B\xc6\"b`w\x19[B\xa0\xc5\x1e\x93\xf1Fd\x8fu\x11\x95O\xf8\x06\"i\x99/y\xe1:\x89/\x88\xa6\x89\xa7T\xb5h=(\x82I\x01$O\xd0\x0e?\x8109\xe4\xea \n8\xa4\x03\xbf\xbc?\x93+\xf0\xd5La\x82\x8bR!\x0d\"lC\xe7\x91\x87\xcf\xd1\x11'R\x8a\x0c\x18\xb1\xae\xa2\x0f\xcdf\x94\x80\xf0\xd4\x88\x16\x0d\xce\x19f+K\xdb\xa5%\xe7\x04gh\x81h\x1a\xe5\xdc\x9a\x07\xf8\x8f\xb8\x0c\xe7\xb5\xaa\xc4\x8c{;8\x0bW4\xdbZV\x84I\xb7\xc4\xc3\xf6\x0cD\x10\x0e\x97\x004K\xf7\x04\xbd\x88\xdc\xfb\x8f=0\x0cO\x98\x8a\xfb\xc6\xb4k\x81\"\xbc\x10V\xa65\n\x87\xed@/(\xbd\xce34\xc7\xb7D.u\x955\xc7\xd4\x95\xdc\xd8d\x89\x1eH\x1e\x981\x1c\xbb~\x00U\xba\x97\xd2\x80\x8a\xeb\xc7\xf8\xb5-\xa5\xad\x0b|\x83iZ\x94\xc6\xe9\xc4 \xaf\xe9Jg\xbdp\x1a\xf9\n\x94_\x19nT\x9e\xa2>\xc3\xf7\xc4\x18Ir\x98\xc7\x88\x95\xea\x88I\x89[,\xd0\xf4>K\xee\x9b\xf9\xed\xed\xf6\xfd\x8c\x9d\xa4\xff\x92\x9cn\x95\xb4\xbdhD\x04#,#\xca\x1aY\xfc\xedV\xc7\x97a\xc5R\x91\xb7\xad\xf8\xcbs\xea\xe7\x19\xc7\xcb\x06\xa0\xbe\xb4\xf1\x048\xc0\xa7\xb5\x05nX\x84\x835\xc6\xc1o\x0e\x02l(\x88\xfd\xf4\xfcWX\xed@\xacF\x8d\x03{\x00C\xb3\x0e\x87\xdb\xb24\xe6\"\x14\x99\xb0V\x9a\x02B\xae\x83\xe6\xd0\xf0\x04\xd4\xa8\x9a\x10\xfe\x0d(>mC8\xd3\x0dz2\xbe\xd4\x1c\xf2\x82+\x1b54`\x1c\x92\xff|\x1d<2\x90\xad\x1d\x12\xc67\xc9'/\xbc\xe6&\x03\xf1\xc9\x1f\xb8\x01f\xce\x10\xaaG\x88\xdd\xe8\xb7kFZ\x08Ch])x\xc3\xb9P<$\xab A\x9f^D}\x891\x81\n\xab\xdaf\xce\x89\x88>o\xb4\x91\xa1\xfbu\xe5Y\xc8L\x82t%\x02\xeaK\x84 \xa1\xd7\xa2\x01\x97\x06\x82\xcb \xb4\x9e`l\xd1\xf4L\x85u'z\x1e\xea\x00\xc7\x99\x16\xd2\xc35\xa9 \x0c\xc8'\x986E\x9b\xc7\xab1t+BF\x96\x03\x90g!\xbd\x81\xfa\xb1j\x18\xfd\xa3h\x10\xd4s\xb5\x8c\xbcH\x86Q\xbe\xa2>A\xf6%d'_]l\x00\x82\xc9\xe1\xe4X\x81\x8ew\xe2\xb2G\xa9\xad\xf9\x00\xd6\xa6i\x04[\x03(B\xa0\\G\x16,\x9d\xfa&x\xa1\x85:\xae\x8b\xa0r\xeaL{XAm\x0e\xa7VVLm\x80=\xf8\xd4\xfc\x10\x92A\x1b\xc4\xb3.\xe2\x92\x7f=\xc0XR\x9a\x06\xf32\xa4\xb8\x80\xac\x1b\xce\x13\x88\xd2\xf2\x82[\x85\xfa\x91\x16\xcep\xeaWT\\\x80\xe5ec\x05\x04_\xe9t\xfc\x8bW)\xcckU\x84UiU\xed\xbbJcTds\x82\xc8c\x99\xdbo\x86\xcd\x07\xb3\xa7Y\x8e\xa8%S:\x8c\x93\x1c\xb0\x10A\x14K\xe3E\x08]JQ\xfdBWSD\xbc\x98\xa2\x05\x98Q^\xd1SLQ\xfe\xaa\xbbD\xc4\xc2x\xde\xc8\x7f\x81\x8ck\xb9\x8e\xa4\xb4\x9f=*c\xaf^\x1cu\x98\xb4 \xf5\x1dB\x7f\xf2\xb2\x032\xe9\xdc\x0bKF\xe6[Ja\x9c$E\x86n\xd3\xec!E\x98\xad\xdfo\xcc\x10\xf2\x86k\xbc\x84\xeb\x18\xc6\xb1:\xf1@m?u\xef\xa12\x0eZY\x05\x01\xd1\xa9y\x8d\xde\xf2\x9a\x95\xb4\x9c\xa1)MJ\x92\x93\x18\xdd\xde+\x0d_\x92\x1c\x97Y\xee\x0e\x1b\x931\xe9^v\x81\x08\x94\x80\x94\xbciX\xbe\x8a21\xd5\xde\xd2\x0dZ\xe6,\x9b\xb7Q\x19\x8f\xd3\xcb\xa6S\x19\x11\xd7|=\x02\xca\xac\xe0\xa2\x18\xcd!\x03L\x97\x00.E\x04\x9e\x06\x84:7\xec\x9d\xe0F>\x1dj\xcb\x06\xa1\xc9\x89\xf5\xfen\x86\x8b\xd9\xf8\xa42:\x18dNDj\xd4hQk-\x98F\x11\x12\x8ah\x10^\x80)\x90\x05\xbc-\xb7\xd8\x1a\xf9\xb7l\xe0k\xf63\x7f\x14\x13k:P\x8d\xd7\x80o\xcef\x94\xcd\xe7Y\xca\xc7\xf3G\x87\x8a\xc7;^\x84\x1dbh\x11\xa8\xa6\xc8\xa8oM\xf9;[\xc1\xcbe\xd5t\xe1i\xf4V\x80\xfd\xb5\xbe\xac\xe5|\xda\xd3\xac\xf1\xde\xda\xaa\xc6D/M\xef\xb3[\xcfZ\xa2\xe9\xa2*_m\xea\x16d\x17\xf4\x9ax\x88\xd1\xd7n\xdf\xd9\xb4\xcbgQe\xcdr6\xf1 Mo\xd1\x04G\xb7\xb2v;\x00\x12\x8fV\xe0I\x18|\xd1\xf8}]\xba\xc6z\xd8\xd9\xd5\x93\x05@\xf3@4\xf8V\xb1\x88o\xa9\xe8\xebh\xf0o\xa0\x14\x8a\xafE\x89' -f$Va\x0d\xa1\xf0q\x88\x1c\xef\xc9\xa6\xbe\x94\xdb\x05>%\x11O10\xac\n\x00<\xc6(t\x9eg\x8b\xac\x80\xf3@\x8b\xe5\xf50b\x9ags\xbew9NS\xee\xdb+\xf3*\xe2qE\xdcF\x9a\xe3\xbc\x98\x05\xc2\xd7\x11*J\\V\xc1\xad\xdf\x8f\xff\xa7:\x8b\x85N\x85\xd9\xc4\x05\x1f\x17\x91j\x19*\xa4A\x13\xa0\x13,~V<\x82HD\xcb\xb3)\xe6\xf7e\x8b*,\x9e{\xf1\x18\x9e\x05y\xf1\xf5\xcb\xd9\xc5\xef\xd7\xa7\xdf\xcf\x7f\\]_^\x9d\\\xfd\xb8\xec\x95\x99\xe6\x82q~qv~v\xb9\x02\x00\xf1-\xd8]g\xd6\xadJH\x7fI\x1ed\x1ed\x06\x02 \x8c\x84*@j\x08\x8f\xfb\xc2 \x8d\xf7\xaaT\x9c\x17\xc5\xbaek\x07\xd090\x95v\x1e\xab\xbf\xb6S\xbf\x8c\x1d\x93\"\x9cOh\x99\xe3|YK0^_P\x9f\xf9\xc4V\x18\x8e\xa3\xf8f\xc7P|\xb3\xe3G\xc5\x86nX`\x8b\x9c\xdc\xd3\xac*\xf8\xab\x9a\xcd\xadn\xa4Kyq\x95\xc2\xe6*\xc7\xd1\xad\xf0\x8d \xcbI\x9f\x00\x89\xd2I\xd0S\x19Hz\x99\x83t\xeclF[4\xa3\xe4^\xa0\xdb\xb7\x93\xd3?\x82\xdd\x0c\x9d<\x94\xcea\xda\xd81\x1adR\x9c\x9d\x1b\x1a\x18Ui\xf3MtW\xeb\x99\x1f\xdf\x9d\xd26\xf3\xd8\xb7\x86\n#\xc6nb\x1a\xb4~9j\xc8\x90l9\xb4\x87d\xdf\x8c!5I{Q\x96\x164V\xde\x07>\xf8-\xe5\xf7\x17\xb1xDkN\x0b\xfeF\xbb\xd4GY\x8eb\x92\xe0%\x89\x81)\x8a\x0e$\xd9\xe2k#\xc9\xbe9\xf9R_-Z1g2\xc3\x15\x8a\xae\x1aT\xe8\x89C\xd5\x99\x90O$\x8d\xf0\xa2\xa8\x12\x8d\x92\x94[\xfc\x14\x0b\xf1#\xa2\xda\xf2\x00d\x1b\xc3p\x148\xbc-~E\xf5\xcb\xb7\xfc\xc9\xecl\xaaX\x96\xde4\xc4u`\x96\xd8O\xc5AFu\xa8\xcb\nS\x98\xe9\xf0:j&\xb5\xb1T\x0c\xac\xef2\x00z\xb6\xb0\x96W\xb2\x96P\x92\x97G\x0ep\xe1\xd9>\xd1W\"\xd9\x94[\xae|\xcaqY\xe2h&F\xd3\x19\xadlo\x12\x1c\xb9\x0ba7w\x8c\\\xc7\xfc\xec\x1eL\xdcn\xb0Xb$9\x97\xa5\xd2\xa1!?\xcbl';\xc9\xdaq5J\xa0R\x13Z B\xc9\x88Dr\x02l,\x815G$\x81|xk\xdc(z|g\x90\x91\x9c\xd0`\xe0P=\x0d\x9b\x1c1\xd4\xc6rx\xa8\x90\x86\x04a ,0q\x13\xd82F\xb8j\xbdl\x80\xec\x11\xce\x82\xa0or\x13\xf8c\xa0\xaa\x18$\xbd~\xfc\xd3Z8\xf4\x02\x11Q\xc6\xc8\xa1P\xa81v\xca+\xcc\x86\x00P\x05\xd2\x12\x08\xa8)\xd06\x19B\xb6g\xa0.x:\xd8&C\x0c\xe2\xd5\x18\xda\x05\xa1m2\x04\x9c\xf2\x91\x17\xc90\xcaW\x8c)E}\x92!\xa4\\\x1e3\x15\xc2\x02r\xbcD\x08i_?g\x1aD\x93\x9e\x11,\x0b\xa0\xe8\x80\xf2\x1bup\x0c\x9cN\xfc\xfb\xa0_\x02Dk\xb2\xc3*iSx\xb4\xb2\"j\x82\x03sh-\xf1\xeb\xeb\xe7\xd6\xba\xd2\x1e\x06r\xf1\xb5\x1c\x81,\xf8Z\xceA^H#0,\xa4\xcf\x81l\x1aJ\xff(\x9a\x1cJw'\xa3b\xcc3\x92\x15\xb8\xf3\xac\x04\x02\xc5\x05.\xa2\xb1\xfb\xcc\x14$\x19\xa4\xe9\x10P\xdb\xa1\x9e\x89\x7f\x08\xbe~\x10|\xab\xa1\x9e\x13\x83z$\x02\x82\x01\xf5\xd5\x85hXB \xdaX\x0e\x86td\x10`\xd9+\xb5\x0b\xc1\x12\xa2^)/\x87i\xd0.(\x8b\x16\xed \xa1\xdf\x1c\x84\x94\x07\xea\xc7\xf2\xd5\xf8\x18T%Ax\xbd\xd3-Q\xef\xa4C\xf4\x9c\x1c\x19\xe1\xb0\x08X\xaaC\x93\x10\xc5\xb5\xb0;\x07Q\x1e\xe7\xd6\x91\x82(@{\x92\x0d\xe5\xd8\xf2\x1a\xb8\x9b9\xc8s\n\xbb\xf3\xdc\x1a\x84\xffJ\xc4\xd1E\xd9bY\x9bi\xe2\x0f\xcd\xfc$\xc4\xb3\x19]C\x06\xf4\xb8_{\x07\x9d\xdf\xc1\x15 \x99\xcf\x8e\xab\x1b\xabm\xa8fR(\xc9\x1dD\xde\xdd\xb8\xf6\x94\xf8\xe9\xc1\xdd\xe1\x0d\xd9\x7f\xc2Oe\xf5\xf1\xa8|\x90\xc4\xca\xcc@\x02\xe5X\xec\xac+\xec\xf5f\xe8\xd1\xa7\xfd\xf7\xd3O\x93h\xf7\xe3\xfe\xc7\xdfv?\x90\xc9\xd1\xee\xe7\xa3\x83\xe9\xee\xe1\xc1\xe1\xc1\xc7\xdf\x0e\xa2C\x12\xb5\x18*\x06[\x89\xa5\x02\xc4\xc1\xdd\xa3\x93\xa9\x9f\x8b\xbb$\x9a\xbd/\x1e\x1f\xd2\x0f\x1f~\x1e\xed\xff|\xba)?\xe5\xc5\xec\xfen9\xcd\x7fF\xb9\x8b\x1c\xfe\x9c2cB\x96&\xcb\x9a\x05\x88\xf2\xc4=\xe3\xfa\x00'E\xe6\xc2O\xbeva\x15\xd7\xee\xb3rp2e\xc8\x85yz\x15\xd9[\x0d\x9f\\\x99\xa1$\xcbn\x99t\xb6@\x91\xc9>\xc2!\xe9\xc3\xc3\xf7\x0e\x00lU5\x86\x12Bj\x9a\xe0\x1b\xae6\xf4\xb3\x01\x99\xfa\x19'\xc1\xad&\x05\x10\xa9\xb9d\x84PAj\xed\xa2\x8ej\xc5\"K\x0bk\x04\x87FG&\xb7?\x13\xf1f\xb2}\x88~\xffr/V\"\x9f<\n\x84\xbcG\xf1\xb1\xa8o\x0d\xe6&^\xfe\x90c\xef\xbc\xcc\xe4 x\xb0O\x88H\xc5u\xa7\xd5\x80F$\xb25\x18d\x86\x9d\xf9\xbd\x1aF\x8a\x96Y\x95K\xd3\xa4I\xa2\x1f+\x99Nu!\xb9\x83\xea\xe8:\xf1\xdf\x8cj\x19\x91M\xd0?+\x92/\xf7Tq\xdd\x8b\xf3/-`\"\x93\xb3\x1e^\x85\xd2\x1a?k`s\x92\xa2*%\x8f\x0b\x121\xebJ\xbc\xcdd\x9b\xa7\"\x9a\x919nN\x8b\xd3\xd8r\x1bZ|\x80\xee\xe4z\x04h\x94\xc5\x16i':\xb8j\x8c\xabS)M\xcb\xf7\x87\x1d\x069\xeas{p\x88I\x89i\xb2!E0X\xf7\xeb*w>\x0b\x13TF~\xdf\xafS\xfdB}\xbf~\xf5\x9b\xf1\xfd\xfa\xe9\x97\xdd\x03\xddt\xb1\x92A\xcb\x0bvaU7\xd7*\x1e8/\xdd\xf2\xf1\xda\xc5\xe0\x00\xc2\x83$\xae\xf9\xba\xbb\x0e\x1e\xf7\xc6\xe6C\xbdQ\x9b\xca\x87\xcd\xbe\xa8\xfc\xdd\"\xc8\xbb6\x0do\xcae\x89\xd3\x18\xe7\xb1\xa90\xa4\x06\x13^\xc49\xceo\xbd\x8f\xf6\xab_\xfb\xb6\x03\x9b\xb0\xa2Z,\xb2\xbcQK\x92c\xfeN^e\xe3\xb2\xcc\xe9\xa4* \x9a\xe3%w~z\x00N\x08\x93\xd7\xe9\x0d\x89\xd1d\xc9\xb9 \xa5|]/,K#f\x8909W\x10\x8b/N4\xe9\xf6\xb9\xe62\xf7:\xcf\x92\xa4Z\x84\xa65$\xd9\xe1\xf3\xfa\x97\x14\xfb8I\xf4\xd6V+]^\xed\xa41\xa2ea\xbfLm6u\xf5\xa1\x84e\x03\xd0\x9bB\x89\xcc)%I\xecy8^MGRd\x88\xa4x\x92\x88\xd39\x13\xb5J\x07\xfd;w\x04\x0b\x04\x05T\xdf\xdc\xa7\xfa\x11\"E\xa3}2`l\x13\x17s\xfaY}\x94gYi\x94\xdb\x15\x17uQ\x96$\x84\x9b8\x0cm\xa9\x03\x1c\x00\x19\x01|\x15\xf1\x9b\x89\\\\Ux\x10U\xaeRO\xe8%\x8c\x92\x06\xa0\xda\x0f\x17\xaa\x1a\xe6\xf6\xad\x18\xd7\x03\xd6?\x87\\^ag\xd7s\xba\x89\xbb\xbe\xf6\x95\x8b\xbdh\x8e\x872\x08\xd7LE( \xb0\xa6\xc8\x93F\xa5\x81\x89\x7f\xf83\xa8\xd6D\x90W\xb8Y\x10D\xbe\x9a+!\x0f4\x88\x1f\xeed\x1d\x04eC_\nq(\x81n,\xdaF\x98\xe2\xbe\xb4\xad\x94\ngY\x00n\x81\x1a\xce-\x87\xe1\xde\x85\x16\x10\xad\x0e8\xdd:)\x96+\x945\x0b\xda`\xae8h\xce\xd7\xb2\xad\x03 \xe1\xde\x0b\x1e\xd4\xbeO\x82\xc9mh\xfa\xf7\x8b3\x05\"\xde\xa1\xb0`,1\xfek\x04!\xb1V\xde\xb4Pmj\x04\xfd\xd9\x03\xce\xaa&\xe1\xdcz\x01\x05\x01K\xb3\x1e\x7fa\x8c\xb0\x14\x06\x91:\x82\xd2p\xac\x966\xd1\xee\xfc/\x9f7c]y\x18\x12\x1b\x17\xcb\x83j!<\x02B\xe1~\x08\xc1\x05s\x86\xd9\xca\xd2vi\xc99\xc1\x19^\xf6:\xca\xb95\x0f\xf0\x1fq\x19Np4\x933\xee\xed\xe0,s\xd4lkY\x11&\xdd\x12\x0fK\x04^h\xa3H\x01E\xb3tO\xd0\x8b\xc8\xbd\xff\xd8\x03\xc3\xf0\x84\xa9\xb8oL\xbb\x16(\xc2\x0baeZ\xa3p\xd8\x0e\xf4\x82\xd2\xeb\xc1\xb4)\xda<^\x8d\xa1[\x11\xda\xbe\xbc \xa7|\xe4E2\x8c\xf2\x15\xf5 \xb2/!;\xf9\x9dWW\xc68kY\x81\x8ew\xe2\xb2G\xa9\xad\xf9\x00\xd6\xa6i\x04[\x03(B\xa0\\G=^\x1f\x0b_h\xa1\x8e\xeb\"\xa8\x9c:\xd3\x1eVP\x9b\xc3\xa9\x95\x15S\x1b`\x0f>E\xbd\x1ev\xda \x9eu\x11G\x80\xd7\xc4,\xbdZ\x11\xeaCy\x19R\\@\xd6\x0d\xe7 Diy\xc1\xadB\xfdH\x0bg8\xf5+*.\xc0\xf2\xb2\xb1\x02\x82\xaft:\xba\x9f\x00\xd3\xbe\xab5\xbc\x01f\xc5I\x0e\xe8y\x19\xac\xfeE#\xbd\xf9-\xb5\xad \xb3Ff\xfb/\xdcy\xdb]\x18b9\xee\x07eVpQ\x8c\xe6\x86\x01&I\x00\x97\"\x02O\x03B\x9d{\xf5NH#\x9f\x0e\xb5e\x83\xd0\xe4\xc4z\x7f7\xc3\xc5l|RK\xf9T7'\"5*\xb3\xa8\xb5\x16L\x9e\x08 E4\x08/\xc0\x14`\x11\xaef\xb9\xbb\xd6\xc8\xbfe\x03\xf3g\xc9\xfd\xb1K\xac\xe9\xf04\xb6 Z\xb3\x19e\xf3y\x96\xf2\xf1\xfc1\xa1\xe2\x81\xa7\x17a\x87\x18Z\x84\xa7)2\xea\xbb\xd22\x83\\)\xab\xa6\xabD\xa3\xb7\x02\xec\xaf\xf5\x15-\xe7\xd3\x9ef\x8d\xf7\xaeV5&ziz\x9f\xddz\xd6\x12M\x17U\xf9j\x13\xb6 \xbb\xa0\xd7\xc4CL\xbdv\xfb\xce\xa6]\x94 R\x05\xc6\xf9+.4\xbdE\x13\x1c\xdd\xca\xb2\xec\x00H\x1e\x95\x8fG\x8fGIr\x7f\xf4\x18}~*\x8b\xbb\xc7\xe4\xf6\x81$6\x8c\xc3\x05\xa8\xc6bh\xab\xdcTM~\xb3\x16]\x80T\xf1\xe3\x83\xbbG'\xb1\x9f\x8b\xbb$\x9a\xbd/\x1e\x1f\xd2\x0f\x1f~\x1e\xed\xff|\xba)?\xe5\xc5\xec\xfen9\xcd\x7fF\xb9\x8d\x0b\xc1\xcb\x98\x91\x98\xd0\xbaz\xd1\x1c\xc6w\x87?\xe3\xfby\x8c\x9f\xaa\x87\xa7\x08\xc7\xf1l\xf6\xe9f^\xbd\x9fGO\xe4\xbd\x0d\xb2\xccnQe\xad\x1c&\xb7\xe0\x82\xaf\xe2=\x8c\x0d\xed\xd1\x04/\xa6 \xbe\xe1\xd2R\xd7\xc8\xcf\xd4/=\x9aA\xc3h\xdcM\xe8CI\xb1\xc8\xd2\xc2\x1a\xab\xa0\x90\x90B\xf4y(6E\xfa@\x82\x15\x88\xbe\xf4\x92G\x81\x82\xf7\x949\x16\xbd\xad\xc1\xdc\xf4\xca\x1fr\xec\x9d\xf7t\x1c\x04\x8fc \x11Y\xf3\xd9\xa1\xd3\xd0\x88D\xb6\x06\x83L\xaa3uU\xc3H\xd12\xabr\xa98\x9b$6\xb0\xe2\x85]/$+P\x1d%&\xfe\x9b\x91(#\x8b \xfagE\xf2\xe5\x9e\xa8\x04{q\xfeE&6\xd6\xb0U\x08\xe8/\x8e\xa1NRT\xa5\xe4qA\"\xa6\xd8\xc5KB\xb6I(\xa2\x19\x99\xe3&\xcf\x9dz\xde\xad\xe3\xf9\x00\xdd\x99\xf3\x88\xe0(\x8b-\x9e5\xd1\xc1U\x11[\x9d\xa6hZ\xbe?l\xfd\xd5YM\xda\x83CLJL\x93\x0d)\xde\xc0\xba_W\xb9\xf3\x11\x93\xa0:\xe39\x8f\x83{[\xcf\xaa\x0b\x9c\xe39)In\xe0\xbc+\xd2`k=pA \x96l9#z5\x1b\xd4\xf2\xc3L\xd7\xfc\xe4h\xe1\xa4\xc8\x18n\x06;$f-\x8cj$<\xa8I^\xb4L\xd7\x1av\xd9*\xb4\x85i*\xb2|p\xd9\x0e\x86\xe1\xaf\x8dL\x88s(=\x8a\xba\xc4W\xa38\xb8\xb0c\xf2\x0c7\xf2\xd7\xf5\xa44\x19\xd5`P=z\x9bS!\x8al\x94h`'h\x82c\xd3\xf3\xac~\x84\xe8\xf4\xd8\xa4\xf8\xca1\xe9\x1c \x93\xfa\x07Z\xce\xb2\xaal\xce\xbfm\xb36\x18z\xe2\xe4\xa6\x86\x97.\xd1\x03^r\x0d\xa3J\x81\xd5V\xd1\xdb\xc6\x0e6\xb9\x8e;|7\xf9\xfd\x8b\xd1\xc7\xc0\xed\xd7\x06rW\x0f\x19\x9b\x1a\xfe\xfcK6\xf5\xcchs{\x99SindM\x1a\xfbQ\x9c\xa5oJ.\x02\xf8\x85\xbf,w\x83\n<'-\xb1m\xe7\x17\x87\xfe\x96\x89]\xc5mch^\xfc\xa9\xc3M\x84\xdb\xc2Xu\x13\xdbN\xae\xa68#\x05J\xb3R-+TT\xd1\xac\xcb/\x0fZ-L\xf83:\x93\xac\x9c\x19KxR\x95u\xa4\x83\x06\x14\xd3)\xff\xa4\x96pa.\xd9\x7f,\x95;e\xc7X\x00\xf5X\x85|\xae\xa7\xd4\x05\x85\x0c\x14/IY[\xe6\xaa\xe3^\x96w,W6\x0f\xb9H\xdfl\xd8\xe7\x8d\x9b\x04\xd9W#)\xbe\xeaJT\xa7qm*\xa8G\xc0\x94qgX)o\x0e\xf7\xf7\xdf\xb8]CF*\xeb:}B\x9c\xb2\xc0\x0d\x95\xd5O'mt\xe1\x1e\xd3\xf5:#\xf5(\x12\x9aeI\\\xc8\xcb*\xad\xe6\xfa\xde\xa0\xad~\x9d\xe5sTz\"eB~\xa0\xd0e\x19\x82ys\x80\xb1\x07\xe1dG\x84~\x88\xc2\x99\xa7\xbf\xd7u\x0f\x84\xfc@\xe8t\xbeH\xf8\xe3p\x05*\xe2\xdbw'\x81T>\xc4]{\xf9\x14G\xc2\xd3\xc9+J\x8a\x07\xb1DO\"\xf6\x9a2\xd1\xdbV~\xb3}\xc9\x8ay\xe6\x1a\xac\x00g\xbe>/3k\x01St\x13V\xf5\xfd\xb5\xffV\xbd\xd1S\x1c\x15xe\x0b\xa2\xe6\x02'I\xf6 \x85\xb3\xbch\xf6\x81\x8b\xdc\x97\x99\xfc)qO4\x97\xcfS\xaaZ\xb0\xecHp\xcf\x88\x16\xde9\xa2\xe1u\x95\xc4\xc4\xf67$\xdf\xaa\x14r\x7f\xc5\xaf\xd5o\xf4\xcb]\xafk\xbeR\x82H\x9a\x95\x81\x1a\xcf]\x84\xb4@>\xb6~\xb5\xa1\xc3K)\xf2%,\xca\xdc\x88\xfd\x01\xa9\xc8\x83\xf4\xf3\xcd!\xcb\"\x1c8b\xfcVX_\xfa\xeaAO\xe8\x9b\x02\x15\xf4&\xc5\xe2%\xe6B\x0f\xee\x81\x07\xb3\xe4N\xd0\xb9\xb1o\x95}\xc96\xd5\x1e\xaf3-\xf8\xc2,=/\x98v\xf9\xef`\xe9\x98>\x9a\xed\x8a\x1f\xb4\xe53\xc8\xf5\xd2Fe\xb6@ \xb9'\x89<$\x84\xa3\x81\x95+D\xd8\xa8\xef\xda\xa0\xb9w\x92\xf1\x99\xbb\xe6\xe4\xd1\xdd'.\xeb\xc7\xdb\x97\xee\xb7\x97\x85q\xcb\xcfG\x96\xa7\x1f\x04\x06\xcd\xd3\xa7w\xe5U);\xadq.+\xbc\x13Z\x94\xa2\x90\x94y\xe1\xea\n\x06d\x98\\\xe3\xc8\xff\x18\xc2\x88\xc7\xaa\x80\x8d\x0e_\x07'\x9aI*v\x99\x11\xce9\x86\xabr\x96\xe5\xf4IH\xc4\x9cD\x84\xde\xfb\x16B]p\x99\xcfK\xb7z\xbdv18\x80\xf0X\x97k\xbe\xee\xae\x83\xc7\xbd\xb1\xf9Po\xd4\xa6\xf2a\xb3/\n\x8f\xb7\x08\xf2\xaeM\xc3\x9brY\xe24\xc6yl*\x0c\xa9\xc1\xc4[\xeds\x9c\xdfZ\xe2\xa2\xea\xa6~\xed\xdb\x0el\xc2\x8aj\xb1\xc8\xf2F)K\x8e9\xdf\x11\xa2\x96UN'UI\xd0\x1c/\xf9%\x88\x07\xe0\x840y\x9d\xde\x90\x18M\x84\x0b]J\xf9\xba\\Y\x96F\xcc\x12ar\xae \x96\xc0z\xd1\xa4\xdb\xe7\x9a\xcb\xdc\xeb\x10\x1b\xfaR\x88C\xf9{c\xd16\xc2\x14\xf7\xa5m\xa5L<\xcb\x02p\x0b\xd4pj;\x0c\xf7.\xb4\x80hu\xc0\xe9\x96i\xb1\\\xa1\xacY\xd0\x06S\xd5As\xbe\x96m\x1d\xc8G\xf7^\xf0\xa0\xf6}\x12LnC\xb3\xcf_\x9c)\x10\xf1\x0e\x85\x05c\x89\xf1_#\x08\x89\xb5\xf2\xa6\x85jS#\xe8\xcf\x1epV5 \xe7\xd6\x0b(\x08X\x96\xf7\xf8\x0bc\x84\xa50\x88\xd4\x11\x94\x86c\xb5\xb4\x89v\xe7!\xfa\xbc\x19\xebJ\xa7i\x84\xdcv[P-\x84G@\xe8%\xde\x01\x85\xc75\x8c;n\x9f\xe5\xa7\xdfZ\xad\x0bx;J\x9e\x80\x1e\xe1\xb0\x95\xf0\x96\x8cwm<\xa4\x0e\x8da\xf6l\xe6\xa3)A\xa7\x96j\xc09\x96?\x1e#\x8e\x01\x16\xc9\x00\xf5\x80\x8b6n4\xc3\x80x\x86\x9e\x8c\x84\xc54\xac\x10\xd50<\xaeahd\xc3\xd0\xd8\x86\xc1\xd1\x0d\x83\xe2\x1b\x06G8\x0c\x8cq\x18\x1e\xe50<\xcea`\xa4\xc3\xaa\xb1\x0e\xfd$\xbch\xcex\x07@_{\xcf\xa1\x11\x0f\xcf\x16\xf3\xf0\xdcQ\x0f\xcf\x11\xf7\xb01\x91\x0f/\x12\xfb\xf0B\xd1\x0f\x1b\x15\xff\xf0:\" 60\x06\xe2e\xa3 \xe0q\x10\xd0\xfb2\xfd\xeb\x11c!\xe0\xb6\xe0H\xf1\x10\x83\"\"\xa0X\xea\xbbA\xe9,!\xfc\xdd)\x91B\xc4\xff s\xcdnR\x9e\xba\x15x\xf9>\x88\xd6H%ha\xb4\xf1\xac\x9a2\xab\xd9g^\xc8\xcb{C\xd8\x13c\xd2\\\xdfa\xf8\xd1\x08'\xc9\xb2~\\\xde\xd9Qv\x1a\x81\xdc5\x9ci\xd5\x01D\xe4)S\x92\x88\xcbs\xa6a\x99J\x8f\x12J\xd2\xfa|\xcb#\x1b\xbc\xf0\xbaK4x\xa8\xc5UL\xbd\xdc\xe9C\xcf\x17~\x9c\x8e\xd1d\xb9\x83\xaaE\xac\xff]\xd29)J<_\x14;\xda\x1d&\xea\xd8\xf9\x1f\x7f\x14 S\x89|\x9el\x9a\xb9\xc9\x00\x9f\x98\xa1\xe7e\xe1\x19\x88\xaf\x19\x11!A\x08\\@\xc8XD\x0c\xec.cK\x08\xb4\xd8c2\xde\x88\xec\xb1.L\x82\xca\xbb\x7f\x92\x96\xf9\x92?J&\xf1\x05\xd14Y\x8eH\x11L\n \xd4y\x1c\xde\xf4\x13\x08\x93C\xae\x9e\xa0\x80C:\xf0\xcb\xfb3\xb9\x02_\xcd\x14&\xb8(\x15\xd2 \xc26t\x1ey\xf8\x1c\x1dq\"\xa5\xc8\x80\x11\xeb\xaa\xf4\xd4lF\xdd\xa7\x8f\x1fBp\xc1\x9ca\xb6\xb2\xb4]ZrNp\x86W\xdd\x8ern\xcd\x03\xfcG\\\x86\x13\x1c\xcd\xe4\x8c{;8\xabU5\xdbZV\x84I\xb7\xc4\xc3\x12\x81\x17\xda(R@\xd1,\xdd\x13\xf4\"r\xef?\xf6\xc00K\xee\x9b\x05\x00\xda\xed\xfb\x19;I\xff%9\x9d\x13\x99L-B\xbb.\x1a\x11\xc1\x08\xcb\x88\xb2F\x1d\x89v\xab\xe3\xcb\xb0b\xa9\xc8\xdb\xbe4+M\xcc\xb3{\xd7\xd3\xb3\xf5\xa5\xcd(\xcf\xd1\xb4\xc0\x0d\x8bp\xb0\xc68\xf8\xcdA\x80\x0d\x05\xb1\x9f\x9e\xff\n\xab\x1d\x88\xd5(\x02a\x0f`\x903\x1b\x08Mh\xccE(2a\xad4\x05\x84\\\x07\xcd\xa1\xe1 &(\x10W \xc1K\x1b\xc2\x99n\xd0\x93\xf1\x05\xf8F@\xd9(2\x02\xe3\x90\xfc\xe7\xeb\xe0\x91\x81l\xed\x900\xbeI>y\xe1e\xed\n\xf9\x037\xc0\xcc\x19B\xf5\x08\xb1\x1b\xfdv\xcdH\x0ba\x08\xad+\x05o8\x17\x8a\x87d\x15$8\xe6\x9b6\x0d\xa0h\xecw?!3 \xd2\x95\x08\xa8/\x11\x82\x84^\x8b\x06\\\x1a\x08.'\xd0z\x82\xb1E\xd33\x15\xd6\x9d\xe8y\xa8\x03\x1cgZH\x0f\xd7\xa4&0 \x9f`\xda\x14m\x1e\xaf\xc6\xd0\xad\x08m\x1f\xfe\x84S>\xf2\"\x19F\xf9\x8a\xfa\x04\xd9\x97\x90\x9d\xfc\xce\xa3/c\x9c\xb5\xac@\xc7;q\xd9\xa3\xd4\xd6|\x00k\xd34\x82\xad\x01\x14!P\xae\xa3\x1e\x8f\x9f\x85/\xb4P\xc7u\x11TN\x9di\x0f+\xa8\xcd\xe1\xd4\xca\x8a\xa9\x0d\xb0\x07\x9f\xa2^\xefJm\x10\xcf\xba\x88#\xc0cf\x96^\xad\x08\xf5\xa1\xbc\x0c). \xeb\x86\xf3\x04\xa2\xb4\xbc\xe0V\xa1~\xa4\x853\x9c\xfa\x15\x15\x17`y\xd9X\x01\xc1W:\x1d\xdd/\x90i\xdf\xd5\x1a\x9e \x93\xb0=\xcf\x8d\xa9\xd1\x1d\x8fz\xc9l\xdc\xee\xdc\x8a\x19}\xde\x90}\x81\x8ck\x9d\x8d\xa4m\x9f=\x9cb\xaf\x9e\xd5:\xbeYV:E\xe8O^/@f\x8b{a\xc9\x90zK\x0d\x8b\x93\xa4\xc8\xd0m\x9a=\xa4\xbch,\xfa\xc6,\x18o\x9c\xc5K\xf8|a\x1c\xab3\x06\xd4\xcaU\x17\x16*U\xa0\x95\x0e\x10\x90y\x9a\xd7\xe8-/6I\xcb\x19\x9a\xd2\xa4$9\x89\xd1\xed\xbdR\xcd%\xc9q\x99\xe5\xeex/\x19L\xeee\x17\x88@ H \x8a\x86\xc9\xaa(\x13S\xed\xad\xb9\x80\xea\x9a\xc5\x8dk\xa4\x8c\x07\xd8e\xd3\xa9\x0cek\xbe\xf0\x07eVpQ\x8c\xe6I\x01\xe69\x00\x97\"\x02O\x03B\x9d\xab\xf1NT\"\x9f\x0e\xb5e\x83\xd0\xe4\xc4z\x7f7\xc3\xc5l|RK\xf9\xd87'\"5\x8a\xab\xa8\xb5\x16\xcc\x7f\x08 E4\x08/\xc0\x14`\x11qf\xb9~\xd6\xc8\xbfe\x03\xf3r\xcf\xfe\xf0#\xd6t\x84\x19\x7f6\xa09\x9bQ6\x9fg)\x1f\xcf\x1f\xd6)\x9e\xdaz\x11v\x88\xa1E\x84\x99\"\xa3\xbe\xee,3\xc8\xad\xb0j\xbah4z+\xc0\xfeZ\xdf\xb2r>\xedi\xd6x\xaf[Uc\xa2\x97\xa6\xf7\xd9\xadg-\xd1tQ\x95\xaf6\xe7\n\xb2\x0bzM<\xcc\x82l\xb6\xefl\xdaE\x15!Um\x9cM|B\xd3[4\xc1\xd1\xad\xac\xe7\x0e\x80\xc4\xc3\x0cx\xf6\x04_4~'\x95.\xa4\x1f\xf6R\xf5d\x01\xd0<\x10\x0d\xbeU,\xe2[*\xfa:\x8c\xfb\x1b(\xf7\xe1kQ\xe2IB\x8b\x19\x89UJ\xf7\xf2\xc7\x1f\x83\xb4T\xb7\xf7\xf9\xc9%,\xcb\xbd\xd9\xed\xf2\xbfN\xcf\x07t\xfbvr\xfaG\xb0\x9b\xa1\x93\x87\xd29L\x1b;F\x83L\x8a\xb3sC\x03\xa3*-H\xd8V\xe3\x17\x12}\x12\xdb\xbbS\xdaf\x1e\xfb\xd6Pa\xc4\xd8ML\x83\xd6o>\x0d\x19\x92-\x87\xf6\x90\xec\x9b1\xa4&i/\xca\xd2\x82\xc6\xca\xfb\xc0\x07\xbf\xa5\xfc6\"\x16\xef_\xcdiQ\xb0\xcd)\xf5Q\x96\xa3\x98$xIb`n\xa1\x03I\xb6\xf8\xdaH\xb2oN\xbe\xd4w\x82V\xcc\x99\xccp\xc5\x90\xab\x06\x15z\xe2Pu&\xe4\x13I#\xbc(\xaaD\xa3$\xe5\x16?\xc5B\xfc\x88\xa8\xb6<\x00i\xc20\x1c\x05\x0eo\x8b_Q\xfd0}\x95\x94\\HK\x96\xf1g\x00kq\x1d\x98%\xf6Sq\x90Q\x1d\xeaz\xc0\x14f:\xbc\x8ebGm,\x15\x03\xeb\xbb\x0c\x80\x9e-\xacu\x91\xac\xb5\x8f\xd43yv@\xe1\xd9>\xd1W\"\xd9\x94[\xae|\xcaqY\xe2h&F\xd3\xa9\xa8lo\x12\x1c\xb9+X7w\x8c\\\xc7\xfc\xec\x1e\xcc\xb8n\xb0Xb$9\x97\xa5\xd2\xa1!?\xcb4%;\xc9\xdaq5J\x84Q\x13Z \xb4\xc8\x08!r\x02l,\x815\x87\x12\x81|xk\xdc(z|gt\x90\x9c\xd0`\xc4O=\x0d\x9b\x1c\xea\xd3\xc6rx\x8c\x8f\x86\x04a ,\xa2p\x13\xd82F\x9ci\xbdl\x80\xec\x11\xce\x82\xa0or\x13\xf8c\xa0\xaa\x18$\xbd~\xfc\xd3Z8\xf4\x02\xa1L\xc6\xc8\xa1\x18\xa61v\xca+Lc\x00P\x05\xd2\x12\x08\xa8)\xd06\x8bA\xb6g\xa0.x:\xd8f1\x0c\xe2\xd5\x18\xda\x05\xa1m\x16\x03\x9c\xf2\x91\x17\xc90\xcaW\x0c\x06E}\xb2\x18\xa4\\\x1e3\x87\xc1\x02r\xbc\x0c\x06i_?g\xfeB\x93\x9e\x11,\x0b\xa0\xe8\x80\xf2\x1bup\x0c\x9cN\xfc\xfb\xa0_\xe6Bk\xb2\xc3*iSx\xb4\xb2\"j\x82\x03sh-\x81\xe7\xeb\xe7\xd6\xba\xf2\x15\x06r\xf1\xb5\x1c\x81,\xf8Z\xceA^H#0,\xa4\xcf\x81l\x1aJ\xff(\x9a\x1cJw'\x15b\xcc3\x92\x15\xb8\xf3\xac\x04\x02\xc5\x05.\xa2\xb1\xfb\xcc\x14$\x19\xa4\xe9\x10P\xdb\xa1\x9e\x19{\x08\xbe~\x10|\xab\xa1\x9e\x13\x83zd\xf0\x81\x01\xf5\xd5\x85hX&\x1f\xdaX\x0e\x86td\x10`\xd9+'\x0b\xc12\x99^)/\x87i\xd0.(\x8b\x16\xed \xa1\xdf\x1c\x84\x94\x07\xea\xc7\xf2\xd5\xf8\x18T%Ax\xbd\xf3$Q\xeflA\xf4\x9c\x1c\x19\xe1\xb0\x08X\xaaC\xb3\x07\xc5\xb5\xb0;yP\x1e\xe7\xd6\x91;h\xc5H\x8c\xe7\xc9'T?\x90\xa8je\\\xd8\xd8\xa8\xd3\x13\xdf\xd2\xa9z\xcf\x99\xc4\xbfv\x93\x10\xf9_\xbaK\xa6u\xb7\xc4\x7f%B\xf2\xa2l\xb1\xac->\xf1\x87f\xaa\x93@\xca\x95\xf7\x180 \xfc\x86\x80\xdfo\x1a\\\xd9\xe1Y@\xc6 (\xc2)\"\x94\x17\xe1\x9e\x10\x84\xf9\"\xdeA\xe4\xdd\x8dkK~>\xf8\xfc\xdb\xa7 >\xdc=\x9a\xbe?\xda\xfdp\xf4\x19\xef~\xfa\x88\x7f\xdb\x9d\x92\x08\x1fL\xf6\x8f\x0e\x0e\xc9\xbe\xa8\xc2\xae$D\xe4~\x1eN*u9\xa0\x0f\xd7\x83\xbb\xa7\x1b\xb2\xff\x84\x9f\xca\xea\xe3Q\xf9x\xf4x\x94$\xf7G\x8f\xd1\xe7\xa7\xb2\xb8{Ln\x1fHb\xc38\x94\x8a8\x16;\xeb\"s\xbd\x19z\xf4i\xff\xfd\xf4\xd3$\xda\xfd\xb8\xff\xf1\xb7\xdd\x0fdr\xb4\xfb\xf9\xe8`\xba{xpx\xf0\xf1\xb7\x83\xe8\x90D-\x86\x8a\xc1Vb\xa9\x00qp\xf7\xe8d\xea\xe7\xe2.\x89f\xef\x8b\xc7\x87\xf4\xc3\x87\x9fG\xfb?\x9fn\xcaOy1\xbb\xbf[N\xf3\x9fQ\xee\"\x87\xbf(\xcc\x98\x90\xa5\xc9\xb2f\x01\xa2<\x05\xcep\xc4\xe3\xa4\xc8\\\xf8\xc9\x07\x1f\xac\x82/x\xcf4\xd2\x9c\xb6n\x954\xfb\x95\xd0l\xf0\xd9\x07\xe2\xe0\xee\xd0\xc9\xe5\x87\x0f\x87\xf1\xdd\xe1\xcf\xf8~\x1e\xe3\xa7\xea\xe1)\xc2q<\x9b}\xba\x99W\xef\xe7\xd1\x13y\xefa\x80\xfb\xf4=.\x03\xccS\xb3\xc8\x1ak\xf8\x02\xcb\x0cMi\xca\x05b`er\xbd\x91J[V\xcc\xafL2\xb6t\x90\xd9I\xc2\x83\xea#\xd3\xf7\xe2\x00\x8c\xce\xc6Pb\xaa\xa7 \xbe\xe1\xf8\xea\x07\n2\xf53T\x06\x9e\xbc\x94\xbaK\x863\x15\xc4H\xa3W\x07\xcbb\x91\xa5\x85\x97l\xa9\x08\x9f\x87pS-\x87H\xf7\xae\x15u\xc6\xebI4y\x14xx\xdd\x05c\x11\xdd\x1a\xccM\xb4\xfc!\xc7\xdey\xe1\xcaA\xf0\x80\xa4\x10\x915\xb3\x1d\xe6\x08\x1a\x91\xc8\xd6`\x90\x99u\xe6 k\x18)ZfU.m\x9e&\x89~\xacd\x11\x8b\xe2B\xb2\x07\xd5!\x80\xe2\xbf\x19\xd92l\x9c\xa0\x7fV$_\xee\xa9>\xe8\xe2\xfcK\x0b\x9c\xc87\xad\x11P\x01\xbf\xc6\xcf\x1a\xf8\x9c\xa4\xa8J\xc9\xe3\x82D\xccp\x13O?\xd9f\xaa\x88fd\x8e\x9b\x13\xe3\xb4\xe3\xdc6\x1c\x1f\xa0;\xbd\x1e\xa1\x1ce\xb1E\xc4\x89\x0e\xae\x12\xe6\xea\xecL\xd3\xf2\xfda\x87A\x8e\xf2\xdf\x1e\x1cbRb\x9alH\xa9\x0e\xd6\xfd\xba\xca\x9d\xaf\xce\x04\x15\x1c\xcfp\x1d\xdc\xdb\xea\x99X\xe0\x1c\xcfIIr\x03\xe7]\x91\xd4k\x9a\n\xaeE\xd8\xda\x14\x83\x8d\x8bqM\n\x9a\x1e\xa3\x05.\xcd\x00L\xb6\xddiN\xe2cT\xe6\x95)\xee\xadlS\x1cP\x86\x1d\x90\xfc\xbe\xc7\x8fa\x87\x0e\x9f-<\xe4P\xc1\xb8u\xc7\xa4\x93\x95]S\x9c\x14p~\xe9\x03\x03\x94c\xbdO\x18C\xcf\x15\x9ak\x0dh\x16\x0e\x8e}\x86X\xe1\xe4`;/\x8c8[\x86%\x0c\x9c\xae\xc1\xb6\xb3a%[)\xecZ\xcc#\xd2\xd9\xb0\x84\x81\x94\x0e\xb5\x9e\x0d;\xb9\x01\x0fn>\x0e!\xbcmZ\xb5)\x97vlO\xda\xfb\x18\xd0\x86\xa9\xbc\x01t\xb7\xaca \xdd\x03m\xe8\xdaZnS\xbev:[\x061\x90\xceAf\xb4a07\x809\x8c\xe7\xd5\xa9,\xf1M\xc3&\xf9\xa7\x84\xb6\xc7d\x06Iq\x1a\x91\xbd9)q\x8cK\xbcw\x7f\xb0'\x17\xe0\x1eN\xa4\x81uC\xb4\xf1\\T\xf39\xce\x97\xc7\xaaL\xc3I\x92\xa0\x9c\x949%\xf7\x84 \xdeD-_E\x82\xae\x03s\x1a\x9b\x9d~Q\x84\x88i5\xf0{s\xb8\xbf\xff\xc6m\xab\x1b\x99d\xeb4\xd2\x9d\xe7\xeb\x970w\x052~su\xe58\xaa\x91\x825\xc2\xf9?h[\x99\xae\xd1`\x1c\xdbV\xa6\xdbV\xa6\xb34\xe0RD\xe0i@h[\x99\xaen!\xa1\x88\x06\xe1\x05\x98\x82me\xbaF\xdbV\xa6\x13\xedej\x90@vA\xaf\x89\x0f9\x84mm[\x99\x0e\xb6U\xb6\x95\xe9\xb6\x95\xe9\xb6\x95\xe9\xea\xd6\x8b\xc7}\x8a\xe4\xacV\xd0-T\xcel0\x80me\xbame:8\x8e\xdb\xcath[\x99\xcelp\xab\xf0\x85u\xfd\xb62]\xb0m+\xd3yzo+\xd3\x89\xb6\xadL\xb7\xadL\xb7\xadL\xe7i\xdb\xcatf\xeb#`\xdaX\xa2me\xbame:\xdd\xb6\x95\xe9\xb6\x95\xe9\xc2\x19p\x1a\x12\x84%\xb0*1\x9b\xc0\x961j\x07\x95\xb0\xc2]\xf5\xa0\xaf\xa5,C\xb0\"\xc3z8\x14J\xa5\x05\xf2e\x00\xc1\xc1\xbc\xd9\x91v\x8a\xae;4f\xd5\x85\x06P\xb4\xadLgm\xc0\xcd\x82\xda\xbc7\xc3Z\xadz\xa3\x11\xc8\xec7\xc9\xf5D\x855\x07z\x1e\xea\x82\xa7\x83me\xbaA\xbc\x1aC\xbb \xb4\xadL\x07\xa7|\xe4E2\x8c\xf2\x11\x8a\x0dX\x96\x90\xf7p\x01)\xe3\x03%\xc6\x022p\xccp\x82\xdaV\xa6\x03\xf0\x1bup\x0c\x9cN\xfc\xfb\xa0_5\x9e\xd6d\x87U\xd2\xa6\xf0heE\xd4\x04\x07\xe6P\xbf\"'\x1b\xc3\xadauu\x825u\x86r\xf1\xb5\x1c\x81,\xf8Z\xceA^H#0,\xa4\xcf\x81l\x1aJ\xff(\x9a\x1cJw\xa7\xcc\xce\x98g$+p\xe7Y \x04j[\x99\xce\xd5\xfaL\x0c\xdaV\xa6\xb3\xb4U9\x18\xd2\x91A\x80\xe5\x8a5\xc0z\xebK\xb4\xb9\xbc\x1c\xa6A\xbb\xa0\xb6\x95\xe9\xb6\x95\xe9\xb6\x95\xe9\xc2\x95\xe9\x04\xe8\x02\xe1\\\x04|\xb5j\xcf\xb5{\xbf\xb6\xf2q\xdbb:\xaa\x8dE\xe4\xa0,`\x07,H1\x1d\xd1\x16\xf8\x86\xa6\xdc\xc0\xb0S\x07\xc3\xbd\x86\"\xd2\"\x98\xb1\xc3\xfb\xe0\xc4\xfc[]\xdcD\x95\xe1\xf1\xe3o\x97\x8aAk3lg\xde\x92\xa5[\x82\x82d'Hu\xc3\x98\x87\x04Bb\xc2EjJN\xca*\x97u)\xcf\xf1\x0dQ%\x8d\xde\xa5\xe4\xb1\xbcf?.3\x0f\xb4 \xb9\xa1\xa9\xab\xe8\x1dk<\x13\\\xc5\x9b0\x98l\x96\x08\x9agE\x89\xc8tJ#J\xd22Y\xbeCgi\xb2DYJ\xfc\xd6V6\x9d\x16\xa4DY\xce\xe8\xf0\x8d[\xcc\xb2*\x89\xd1\x84\xa0\x828fWA\x1bi~*\x9a\x96\x1f?\x8c0C\x92F\x91;V\xcdIN#\xf5\x8d\x0b\xdd\x08\xa7\x8c.\x11\xfc;#)g\x85\x1b\x1c-P\x95\xe2{L\x13\xed9\xe6a\xecHo-\xb6\xc2<\xc0\x0c\xedDS\xf4\xe3\xb4\xf0\xceo\x8bt^A\x88\x19\x10\xa2\xe6\x1b\xdf\xf6\xb5\x9c`\xa2\xe0\x1d:\xf5yDh\x81\xe8M\x9a\xe5\xa6\xcc\xf0\xff\xdc\xb3\x1ds\xc2\x0e!\x1e\x87\xe4\xd8\x0bA\x0e\xd8^\x04\xb4\xdeg8'\xad\xbd\xe6\xa3N\xb8\x9d\xd8\xf8\">\x1ceyL\xf2w\xbf\xf8XrI\xd3\x88\x1c\xa3(+\xe6Y\xb1[\xc4\xb7h\xff\xdd\x87\xf7\xd6\x0e\xa1\xc8=\xa1h\xb5\xf1%\xf0&\xf3 \x89c\xa1\x89o.\xce\xbfh\xd3J\xc6\xcc\x15\x9e\xf5\xa5\xa5\xb5\xb3\xfe\xac^|\xef\xd0\xd7\x8e\x93\xc6g\x9a\x85'\xc94\xbbDQ'\xe9E1\x17|\xed5\xcc\xa6.{\xd2m \xafp|Pv\x8c\xcf\xa4\xf6h\x8e\xa0\xf5\xd5\xe0\xcf\xff\xb8f\\[SR]\x08\xc3\x8aM\xfb\x02\x1722\xd4X\x15\xef\xbc\x86\x17\xb7\xa9\x82\x06\xd5\xa9\xd4 |iq%\xe1\xd2\xd7\xcc\xdc'|\x07\xa5\x19\x9ag\xb9\xe7\x1c\x87\x90G\x05\x80\x99\xe9Q\xc1\xa1\xad\xa3%\xa2K\xe1\xd6\xe2\xd8I\xaf\xc9hC\xce\xba\xf6\x0e\x8f{'\xe5\x0e\xa2e\xa1\x12\xba\x99M%\xce\x1f1\xca\x18\xff\x1eh\xab\xa4\xbb\x7f\xdf\xd4\x85\x85\xfa\xd4\x10\xed\x94#\xd2\xe0\xce\xbfl\xab\x88\xa2m\x15\xd1\xc0\xfe{\xe6*\xa2\xdbZl>:\x07ya\x9e\xbd\x16[M\xa5aB4\x0f\x9c>\x0d8\xc0\xdb }\n&\x94!N\x84\x96\xab\xc0\x04\xe7\xf4\x0d\x0caWg\xc3X-\x06\x0b\x13\x05~\xc0\xc52\xc4'\xe0?\xf9\xf7=\xeb\x07\xf9\xd9\x04\xbff\xe6\xb6,\x08\x0b{\xf9\xe9\x1c\xc8\xdda'y\xe3\xbc\xde\x80f9\xbb\x0f:\xad[\xcf\xe4\xcf\xccE\xd3<\xaa\xfb\xfbx\xd9\xf7\xcc\xde=\x997\xc0YO\xe9\xfd\xcf\xe5\xcd\xc3H\x03X\xf7$>\xe8\xecm\x9c\xb0\x1b\xc0\xec\xa7\xed\xee\xf9z\xc8\xc4\x02D\xb5<9\x03'o\xc89\xdbV\xdc7t\xb2\x0e\x9e\xa5W\xe7\xc6\xc0\"\xa2\x0b\x12\xed\xfd]\xb4\xf2\x00\xffW\x00r\x97\x15\xbdl\xc4O\x08\xce\xd4\x15dZ\xe1\x15\xca\xa6\x17)\x95\xf8\xca\xe2\xa0\xb6R\xa3\xcdU\x14H\x17\xf6\x07\x0c\x82\xd0\x0e\x1d\xc5\x91*r\x96M\xe5Z\x95\xd9\xae\xd2\xeb 2]\xa5\xc0\x0cT^l\xd2F\xbd\x95\x0eC\xb5\xe9|G3\xd5\x82\x15H\x82\xabH\xb4\xf0Z\x12-\x14\xbf\x89\xa0\x93\"\x7f*\xa6\x86GY\xea\xf5\x11./UB+}\xf5G\x05\x10\xce\x81\xeb\xf1y-H\x1a\xe1$Y\x8aD\xf92Se\x12\x83`x\xc9\xc3\xebp\xf5G\x9d\x885\"\xb1\xa0\x9d,\x1a\x9c/\xe5(\xe5\xefz\x17\xbf\x83\x94\xc3\xe9\xc1\x9a~\xf4\x8eW\xf4\xaew\xc9;\x18\xa2\xa7l35\xd5\xba\x8a7\x10\x15=w\xea\xd5\xbc\x83p\x1a\xc85\xc8\xaa<\"F\xfd\xa9\xb7\xf2\xbd\x8bV\x95\xdf_\x99m%\xc6\xf1\xc2\xc3\xd2n\xf0\xddW\x18\xbe\x99\x95D\xfc 7\x05\xf9\xac\xf0\"\x1f\\\xc6\xcb:\xd7\xa8\xc0%-\x98\x9e\x12\xd5\x06\x16\x8bd\x19\x12\xf56\x8b \xa7\xb1*\x8c\x80\xe5\x0f\x1c\x10\x00\"\x0c\xb4ha\x943P\xb5\x94\xe5U\x9b\xba\x15n\xc3\xd5/PS\xdeq \xc6\xab\x13i\xc1\xe7Z\xb0\xc2\xec\xbe\xe6$\xadD\xcb\x15\xa3D\x9ffQ\xabpTK\xff\xbe\x0d\x971\x97\xb5\xd6\xb2\\Ub\xfb\xe3\xf4\xf2\xca\xbd\xed@s\x12\xaa\xab\xb4\x8b~\xff\xfa\xed\xf4\xfb\xe9\xd5\xe9\xd9\xf7\xeb\xab\xff>\xff\n\xac4\xd4\xed\x07(Z\xd8\xed\x14,T\xe8\xea\xc2y\xe3\xec\xa7\x8b(\x0d!.|;\xa7\x9a\x97y>\xae{\xbaA\x8b\x16\xca\"\x85{\xb2h\xa1\xf0u\xf8D\x97{\xc6\xbal\xb2\xd4%\xc4u\xbd\xd1\xfa\xbe\x86\xfd\x17\xbf\xe8z\xab5,\x17e\xb4@iV\xeaJ%^\xa5\xe9\x9a\xe1.V\x96Z\x84\xaa\x1a\xb0\x92\x9d\x9dz\x84-\xbd?\x04\x11\xbe\xd4\\\xd8\xf0?\xdaQ\xc2K\x1bBQ\x96$$*\xe5\xad-\xffiQ\x9b%3|\xef7\x0b\x18\xfc\x82 OO\xea\x8f<\x8c\xd2IB\xae\x178`I\x8fh\xd9\x07m\x9a\x900bsp~rq\xf5\xdf\xf0\xcd\xda\xe9tvq\xfa\x1f\xa7\xdfO\xae\xce.\xe0}.\xbf^\xfcy\xfa\xe5k\x8f\x1e\xa7\xdf\xff\xfcz\xd9k\x8c/?.\xaf\xce~?=\xf9\x0e\xefr\xf6\xd7\xf7>8\x9d|\xfbv\xfa\xc7\xe9\xc9\xd5Wx\x97\xb3\xff\xf7\xfd\xf4\x1f?\xfc%\xf0\x1a\x1d\xce/\xce\xfe\xfc\xfa\xfd\xe4\xfb\x97\x1e\x83|9\xfb~uq\xf6\xc7\x1f}h\xf9\xf3\xe4\x8f\xd3\xdf\x03\x93\xa8\x85|\xef%\x03\x97\xf0\xee\x15\xe9\x1a\x16\x05^C\xc0\xa9\xbc\x17\x06V\xb9s,\xeec\xfbg~\x9b\xc1+D\xf2k\x05\xca}\x96\xa1\x93\x8eu/\x1c\xdb>\xd6\xc1(1\x99\x94\xa8 \xf9=\x8dhz\x83\xa6U\xcaeZ\xa02\x9bu\x0f\x1d\xdb>\x8ak\x19\x1e\x0bO#D\xd3{R\xf4\xa3C\xef\xb7c\xebW\xc9(\x92\x96\xb4\\\n\xa5\xa5i\x8b\xaa\xa2\xccb\x8aSI\xa0\x08\x13\x12L\xedC \xdf\xbf\xc7\x9d/\xedb\xbaLD/%>\xd9C*\xfc\xed\xfc\x02\xb6$\xf3\x1e\xc3\xe9\xfd\x7fl\xfd*8*\x06\xe3V6['\xd3)M(?\"\xdc\xe4\x84\xccI\x1a\xa8\xcfh\x93\x1e\xc7\x96ob0n\x01\xe3D\x98\xfc\xd9T\x0e..\xd7\xb2\xb4\xcc\xb3D\x10=O\xe9\xa4*\xd0\x04\xa7\xb7\x08G\xfc\xaa\xa0\x07\x1a\xb5L:\xb6\x7f\xd6\xa6J\xf3\xaeD\xb3>'\x8b\x9c\x14$-ej\x90.S,^>l=\x95\x81\xa3\x9e\x9b\xb6\x96\x7f\xc7\xf6\xcf\xcd\xb5\xf80\xa3\xd1\xcc\xe0\x8f>G\xa8]\xad]\x18\x94 \x92fe\xc0g\xe3\x10\xac\xc7\xd6\xaf6T\xb8}\xc9\x97\xab\xf0\xae\x8b}\x001\xa9 \x87(\x84\xce\xd9$\xf0\xb3\x94\xca\xb6\x89\xe9\x94\xdbL%\xca\xb3\x84\x88i\xa2\xc2L\xb2\xe7\xf7\xa8\xa6'i\x8e\x97l\xca\xddV\x8f\xac1\xddX\x98\x86\xdd\xd4>\xccY\x01\x85\xc8\xb3\x9d\xca\x95\xc3\x83\xdbq\x9d+\x8c\xc0A]\\\xdc1y\x8b\x93${ \xf1\x9e\xba\xbf\x91\x8e\x84=YN\xda\xda\x1f\xa6\xf5:^\xe3\xd2Rr\xb0\xb0\\\xa0\xb4\x9b\xa7,\xa1\xa5\xc8\x87\xdd,\x84\xa1l\x017\xacf\xc8*\x15C\x82\xce\xed\xb0[\xbbIG\xc8d\x1f\xe3\x82\x04\xc6_\xd4\xc1\x0d\x0d\xae\x11R\xf4\xc9\x8a\xb6\x16\xdd\xd8d\xbe\x84r\x9e=k\xaf\x0b\x0c\xc8\x95>\xe9\xa5\x1b\xc0\xa1!\x99\xcc\xc1\x1c\xe6a\x9c\x03\xd5\x01\xd9\x00\x96\xc1\xea z\xe0\x0df\x92?}\x1b\xc4\x9aaT\x07S\xb5\xc7\xdaL=+~\xc0\xa9\x19\xad\xda\xc7\x88\xb5>\x82:\n\x81\xf4\x14\xea]\xe5\x03\xb4R\x10t#\xa1^\x13\x81zT\xf7\xd0?\x0c\xc0\xeb\xa5\xc5\xd0\xd0\xca\x1e\x9b\xc6\xb5\x90v\x0b\x80+{VN\x00T\x16xe\xfc\x1b\xa2\xfb\xba\x80\xfa\xd7\xf0\x18\xce\xf5p\xfd\x0e0\x93W\xe1\x1dD\x1d\xacu\xf5\x8d\xb8\xd8V\xe1\xc3\xca\xf5:\x00K\xb2\xcb\x940\xc6\x96\x93n\xa8l\x87\x05J\xd1\xb9\xbf\xae\xcbz\x00Jx\xbc\xb6\"\x1c\x05(\".\xb8\xae\xc2\xb3\x83l\xcf0D8E2`\x82_S\xb1\xa9\xdfA\xe4\xdd\x8dkS\xc4d\xfaq\x12\xed\xe3\xdd\xe8s\x1c\xef~\xf8\xf4\xdb\x87\xdd\xcf\x1f>Mw\x8f\x0e\xf7?\x92\x8f\xfb\x1f\xf7\xf1\xa7\x0f\xc2a&wh@\x9760r\x05]H\xd5\xeaEL\x8d\xc3\x00\x1e\xdc\xed\xef\xef\xc7\xfbw\x87\xe4\xd3\xc3Q\x81\x97G\xef\xf1\xf4.&\xc5\xe3\xe2\xf0\xe9\xee\xe96\xff0M\x9d)\xc2\xa7\"\xe4\x1f'E\xa6\xae\x12-\xf7\xf8M\x8c\x1c\xa0r\x12 lfNl\x1e>\x1c\xc6w\x87?\xe3\xfby\x8c\x9f\xaa\x87\xa7\x08\xc7\xf1l\xf6\xe9f^\xdd\xcd\xc8\xd3\x87\x0f6j\xdd'\x95\x91V\x89y\xc4He\x18\xa2\xe1\x06)3\x94d\xd9-\xaa\x16>&\xca\x8c\x1a\xe1\x96\x9av=]\xd2\xfe\x12K\xce\x1d\x9d\xd6\xb0{-\xc6\x96\x17\x01\x95\x97\xed\x1d\xdf\xeb\xac\x00\x9bx\xdbZ:\xaa\x8dE\xe4\xa0,.\xe7N\x0c\xd7\xd2\xf1ce\xd1m\xa0\xfc\xd2\x16\x183\xdb\xb4\xe9\x12\xde&\x9a\xca\xb6M4\xdd\xa0D\xd3\xb6\xc8t\xad\xc4\xd6~\x19jg\x8cc]xl\x8a\x86\xde^\xd1fX\xd9R\x18\xd9>\xa0\xe91Z\xe0\xd2|\x88\xaaN\xec)\xf3*\x98\xbe\xa6&\xbd\x15T\xe4\x9b\xe8\xa1\xa6\xc2\x00\x03\x010\xd7\x0e\xb3\xa0\xb71\xe0\xb9\xd9\xb2\x98\x00C2\xaa\x1c\x9c\xdf\xe6u\xfb\xe8\x1cd\x11<{^\xf7\xf0\xf4\xb8b\x0f'R3\x00\x13\xe2\x8a\x93$A9)sJ\xeeI\x810\xff\xaf\xee\n.\xa0YpF\x01\x8cW\x95 \xb7!\xda\xbd\x81\x93_I\xaf\xfc\xa4\x04\xcco \x1a\xc0.@p\x07\xe8\xc8\xf9t\xe1\x14. \xfa\xa1@\x0c\xd1\xc6\xca\xab\xeb\x97Y\x17\xce\xad\xf3\xaf\xd8\xba\x05\xa3pA+L4\xc8:\x13-4E\xa2\x01'J\xfexX\xa6\x9d\xb4\xa1\xd7\x87P\xd0\x19\x8b\xc6\xcb\xb8\x83\xe7\xdc\xf5\xc8\xba\xebI6p\xd7\x8b\xd6\x87G\xe5(\xd9w\x03\xf2\xef`\x19x=\xd9\xd4\x97\xf2\xf1\xf2\xf0\x06d\xe2\xc1\xd1\x1d7\x1b\xaf_>^\x00\x94\xc0\x03\x98\x91\x07\xc9\xc9\x83r\xa5o^\x9e\x7f\"\x98X[-3\x0f(\xf2\x80\xcb\x19\xca\x83r\xac\x0c\xbd\xe19z\xc0,=(M\xfd3\xf5\xbc\xe0&\xa4o\xae\x1ex\x8e )2C\x92\xda\xec=\x019{\xee\xbc\xa8A\x9d\xfcy{h\xb5\xcc\xbd\x90+\xb7\xd9\x06g\xef\x8d\x92\xbf7 \x83\xcf7\x83/\x9b\xc3\xe7\x9e\xefg\xcf\xe2\x0b,\xbdM\xc9\xe3\x83e\xf2\xf5\xcc\xe5\x1b\xfd$\x11\x14W\x10\x81\xe5\xce\xa1\xea\xd3\x0d\x98\xd7\xe7\xc8f\xea\xd3\x07\x94\xdb\xe7\xca6\xea\xd3)\x9c\xdf\xe7\xca\xf0\xe9\xd3 \x92\xe3\xe7\xcc\xa8\xe9\xd3\x0b\x98\xe7\xe7JH\xf1v\x1a\x9e\xeb\xd7O'\xb8\xd7\xea\xa0\xa1\x91\xca\xa7\xe9\x93\xf1\xe7\\\xf8c\xe6\xfc9\xf6\xc9Z\xb2\xfe\x1c\xfbk\xb4\xbc?\xd7^|\xd6\xcc?\xdb\xde^k\xee\x9fK6\xac1\xfb\xcf.Y^ \xff\xcf)\xaf6&\x03\xd0)\x1b_&\x07\xd0%t\x9f#\x0b\x10zH\x1b5\x13\xb0G.\xe0H\xd9\x80\x102\x07d\x04\x06`\xad\x98\x13\x08\xd7\x8e\x1d\x9fw90/\xd0\x9b\x19\xd8#7\x10\x8e\xba\x05d\x1d\x96\xda/\x1dc\x95\x0cA\x90{\x1e\xe2\x98o\xd2\x13>\x0e\x04\xadx\xa0#\x18\xcao4b\xbe`\x8f@<\xd1Z\x93\x1d\xce\xb3\xd8\x14\x1e\x85\xb2+\x82\xd1\xdd\xd0,\xa0\xd6\xb0\xfd\x02\xdd7\x86[\xc3r)\x82\x99\x14C\xb9\x08\xca%\xdc \xf6m\xdf\x14_-\xbb\x10\xbe\xdd:)\x17\xdb7\xc5u\x83h;\xd4;\xdb\x10\xbc~\x10|\xab\xa1\x9e\x13\x83zd\x1d\x82\x01\xf5\xd5\x85hh\xe6\xe1\xa6r0\xa4#\x83\x00\xcb\x9eY`\xa0\x8c\xa9W\xca\xcba\x1a\xb4\x0b\xaa\x7f>b\xbf\x8c\xc4\xfe9\x89\xbdX\xbe\x1a\x1f\x83\xaa$\x08o\xfb\xa6x\x00 0K\x11\x86\xf78\x99\x8a+\xe7*\xa2vRb\xd4\x8dlt<>\xee\x08\xf0T\xed\xb5eAn\xd3\xa7T\x1b\x8b\xc8A\xc1\xd2\x0eX\x90\xf4)\xd1\xb6O\x91w\x1aH\xe4\x824>\x8cyh\xd8\xe3`\x1eh\xdb\xa7\xc8\x91\xe3]\xa7v\x83\xcf\xd0\x90g\xc7<\xe0\xb6O\x91\x8b6\xfa<\x0d{\xc0\xcc\x03\xb0\xdc>E\xdel}\x9f5\xf3\x80\xda>E\xbe}\x8a\\\xb7\xedS\xe4\xae\xbf\x06N\x05V\x8a\xb6O\x91k\xfel\x9f\"\x071s\xfb\x14\xb9#\xc1r\xd4\xba\x11<\x03t[;B\xb6m\xed\x08\xdf\xce|\xe6\xda\x11\xdbdv\x1f\x9d\x83\xfc3\xcf\x9e\xcc\x8e\xb6\x8f\x94\xf7*\xe4\xb0}\xa4\\\xb4537\xfc\xbc\xf6\xf6\x91\xf21\xb8\xb8}\xa4\x1cz*G\xdbG\xca\x9bc\xbc\xb2G\xca\x8b([\x90\xbd\xbf\xf9\xff\xf9\xdf%\xbfd?A\x05\xc1y4S\x99\x01\x88\xf7S\xf3\xe9b\xf1\xd5\x8c\x88\x1f\"\x1a\xef0\xae\xca\x93t\xbc#r\xde\xea\x02Y\xe2W\x96\"Y\x9f\x0f>\xff\xf6i\x82\x0fw\x8f\xa6\xef\x8fv?\x1c}\xc6\xbb\x9f>\xe2\xdfv\xa7$\xc2\x07\x93\xfd\xa3\x83C\xb2\x8fj\x8ct\xf5\xa9\x9a\xff\xbc\xf0\x15\xff\xe3\xc1\xdd\xd3\x0d\xd9\x7f\xc2Oe\xf5\xf1\xa8|]\x04\xf4\x7f\xc8\x9f\x1d\xdc=:Q\xf9\\\xdc%\xd1\xec}\xf1\xf8\x90~\xf8\xf0\xf3h\xff\xe7\xd3M\xf9)/f\xf7w\xcbi\xfe3\xca9\x8e\x1a\xa0\xbcCU\xa8\xdaP\xacQ\x91\xb8\xca\x1bU{\x95Q\xf1\xc7\x83\xbbC'\x82\xee\x1a]\xef\xe7\xd1\x13yo\xae\xfe\x7fc\xba\x80K\x149C2 \xa8F\x93\x0bF\xb9J\n\xbd\xcb\xde9@\x08\xf6\xe9\xf8\x03\x13\x8cZE\xf2B[\xd8O\x0c\xb6\xe8\xa3\xe1\x85G1x\n\x1dD\xb2\xd4\xf0\x00\xb9\xc6\xe0\xae\x08nxHCC\xb1e\xa7A\x1d\xaf=\xd0\xc0\x04\xe7\xc4\xb2\x10\xd9\xaf\xca\x19Y\xa28K\xdf\x94\"z\x8d\x0b2\x95g\xc9\xc1\x1b\xcb\x11\xa3 \x8e\xcd\x9bp\x03Q\xfd\xa3s\x0e\x9f\x87\xd77V6\xe2\x87f\xbdzP\x9c\x11\x91/+L\x8a\xb2\xde\xc5\x99\x1cp\xa0\xea\xddk\x86m\x88\x8f\xae\x9b\xf3\x15|\x9f\x0e\x8cP\x08*\nBF\n\xfa3\xbdC\x14r\x0b\xb2\xf6CT\x9d:\xfd\xbd\xce\xc6\x11\xeb\x1e\xa1\xd3\xf9\"\xe1\xe9k\x05*\xe2\xdbw'B\x9c{`\xd1\xb4$\xf9\x14G\xc2D\xac\n\xc2\xac\xb5\\+M\"6\x88\x91H\xe3\x81\xf5\x85\xdb2.&\x82ku=/3k\xf9\xdd\x0cd\xd2\xb9y<\x10\xca\x7f\xe7\xd6\x8aV\xd2\xb5B\x88\x9a\x0b\x99\x90\xc4\xf3\x0di\xb0\xacVa\x08\x81v\xe3\xa9\x91\x9e\x18a\x9fSN\xb5`\xd2{p\xcf\x88\x16\xde9\xa2\xc9\xb5\xe4\xff\x11p\xde\xe5O\xc5\xc4\xb6\x12\x90d\xc2$z\xabR\xf1\xfc\xa9\x80y\x96\x04\xcbgAV\x90h\x98\xc3\xabw\xa4BFO\xb90\x10\xc8c \x8d\xce]\xe4Y$\xb6\xa0\xb7\xa8\x9a\xec\x00g\x1e\xa4N\xc1\xe0J\x05Ck\x15\x0c\xabV0\xac^\xc1\xc0\x8a\x05\x03j\x16\x0c\xacZ0\xa8n\xc1\xd0\xca\x05Ck\x17\x0c\xaa^\x80V\xaa_\x10\xbal\xea\xb6\x91k\x18\x0c\xacb\xf0Lu\x0c\x9e\xb7\x92\xc1\xfak\x19lH5\x83\x17\xa8g\xf0\"\x15\x0d6\xa8\xa6\xc1k\xa8j\xb0qu\x0d^\xb6\xb2\x81\nN\x0eY\x16\xb0\x88)\xf9[a}\xe9\x8b@=\xa1o\nT\xd0\x9b\x14\x97U\xce\x0f\x99jp\x0f<\x98%w\"*/(\x01,\xedK\xb6\xa9\xf6h\xcaD\x18\xe7\x0b\xb3\xf4\xbc`\xdaE\x02\xb1^\\\xcenp\xcdv\xc53\x10T\xfd\x07\xbd\xb4Q\x99-PB\xeeI\"\x0f \xe1\x1c\x13\xe5\xbc\x106\xea\xbb6h\xee-d|F8]*\xd7\x8cO\\\x8a\"\x91YL\xa7\xde\x98;\x1e\x92\xc6\xceG\x86m\xac\x0e\xb0\x02\x83\xe6\xe9\xd3\xbb\xf2\xaa\x94\x9d\xd68\x97\x15\xde -\x18\xe7\xb3\xb4\xe1|r\xc5\xf81L\xae1\xf7\x9b<\xcb\xb1*`\xa3\xc3\xd7\xc1\x89f\x92 \x89\x98\x93\x88\xd0{\xdfB\xa8\xab\xb3\xbak\\6\xdc\xfb\xed\xc6\xaf\xee\xae\xf9\xba\xbb\x0e\x1e\xf7\xc6\xe6C\xbdQ\x9b\xca\xa7\xd4\x95\xebZ\x04y\xd7\xa6\xe1M\xb9,q\x1a\xe3<6\x15\x86\xd4`\xc2\x898\xc7\xf9\xad\xb7\xd8\xaa\xfa\xb57\xf86'\xa8\xa8\x16\x8b,g\xf8\xe9\x03$\xc7\x9c\xef\x08&\x8c\xca2\xa7\x93\xaa\xe4E\xf8\xb8\xef\xd3\x03pB\x98\xbcNoH\x8c&\"|NJy\xa5\x1a\xd9\xde\x88\x98%b\xb9\x843\x9bt\xfb\xf0r{\xcb\xeb\x16m#Lq_\xdaV\xca\xef\xb6,\x00\xb7@-\x82\x05S`\xb8w\xa1\x05D\xab\x03N\xb7\xf8\x97\xe5\ne\xcd\x826X\x00\x054\xe7k\xd9\xd6\x81*'\xde\x0b\x1e\xd4\xb7\xd0WsN_Hx\xc3\x99\x02\x11\xefPX0\x96\x18\xff5\x82\x90X+oZ\xa865\x82\xfe\xec\x01gU\x93pn\xbd\x80\x82\x80\xd5\x0e\x19\x7fa\x8c\xb0\x14\x06\x91:\x82\xd2p\xac\x966\xd1\xeaT\xd4\xa5\xd2\xe7\xcdXW\xe6\x86\xc4\xc6\xc5\xf2\xa0Z\x08\x8f\x80\xeaQ\x9e\xb1\x18$<\xaea\xdcq\xfb,?T?T\xd6.\xb2c\x8bzx\xc0\xfe;\x11\xe5i\x97/\xb7\x88s\xb4`\xbck\xe3!\xf4\xfc%\xfb\x83\xf1\x0b\xb0%%Z\xd0\xa9\xa5\x1ap\x8e\xe5\x8f\xc7\x88c\x80E2@=\xe0\xa2\x8d\x1b\xcd0 \x9e\xa1'#a1\x0d+D5\x0c\x8fk\x18\x1a\xd904\xb6apt\xc3\xa0\xf8\x86\xc1\x11\x0e\x03c\x1c\x86G9\x0c\x8fs\x18\x18\xe9\xb0j\xacC? /\x9a3\xde\x01\xd0\xd7\xdesh\xc4\xc3\xb3\xc5<\xbcP\xf4\xc3F\xc5?\xbc\x8e\x08\x88\x0d\x8c\x81x\xd9(\x08x\x1c\x04\xf4\xbeL\xffz\xc4X\x08\xb8-8R<\xc4\xa0\x88\x08(\x96\xfanP:K\xe4\xbb\x95\xbc\xf2$\xff\x83H\xf9\xa17)/\xdf\x18x\xd18\x88\xd6H\x85\xcda\xb4\xf1\xaa\xe4eV\xb3\xcf\xbc\x90\x97\xf7\x86\xe4\x91DUp\xbfJs\x9d?e*\xdf\xa1\xe4\xafPz\x8b\x9c\xcbN#\x90\xbb\x863\xad:\x80\x88\xaa\x01\x94$\xe2\xf2\x9ciX\xa6\xd2\xa3\x84\xe7sk\x99\x12\xe3\xd2\xffPJw\x89\x06\x0f\xb5\xb8\x8a}\xe5\xda\xfa\xd1\xf3E\xbe\xbc=Y\xee\xa0j\x11\xeb\x7f\x97tN\x8a\x12\xcf\x17\xc5\x8ev\x87\x89L\xdf\x1d?=<\xcb)\xe1ph:\xcd\xdcd\x80O\xcc\xd0\xf3\xb2|D\xfc\x9a\x11\x11\x12\x84\xc0\x05\x84\x8cE\xc4\xc0\xee2\xb6\x84@\x8b=&\xe3\x8d\xc8\x1e\xebR?l\xce\xa4~\xbe\xe4Uo$\xbe \x9a&\x9e:\x97\xa2\xf5\xa0\x08&\x05\x10\xea\xbc$m\xfa \x84\xc9!WOP\xc0!\x1d\xf8\xe5\xfd\x99\\\x81\xaff\n\x13\\\x94\ni\x10a\x1b:\x8f<|\x8e\x8e8\x91Rd\xc0\x88u\x15\x15j6\xa3\xc4\x90\xa7\xc0\xa4hp\xce0[Y\xda.-9\xa7\x9fa\xa5i\x94sk\x1e\xe0?\xe22\x9c\xd7\x8f\x103\xee\xed\xe0,\x8c\xd4lkY\x11&\xdd\x12\x0fK\x04^h\xa3H\x01E\xb3tO\xd0\x8b\xc8\xbd\xff\xd8\x03\xc3\xf0\x84\xa9\xb8oL\xbb\x16(\xc2\x0baeZ\xa3p\xd8\x0e\xf4\x82\xd2\xebK\xee\x9by\xdb\xed\xf6\xfd\x8c\x9d\xa4\xff\x92\x9cn\xd5\xc3\xbbhD\x04#,#\xca\xd8\xfes\x02\xac\xe3\xcb\xb0b\xa9H\x8bW\xfc\xe5 \xe5\xf3\x8c\xe3e\x03P_\xda\x8c\xf2\xc8Y\x0b\xdc\xb0\x08\x07k\x8c\x83\xdf\x1c\x04\xd8P\x10\xfb\xe9\xf9\xaf\xb0\xda\x81X\x1a\x01w\x00C\xb3\xb2\x85\xdb\xb24\xe6\"\x14\x99\xb0V\x9a\x02B\xae\x83\xe6\xd0\xf0\x04\x13\x14\x88+\x90\xe0\xa5\x0d\xe1L7\xe8\xc9\xf8\x02|y\xc6X<`\x0e\xc9\x7f\xbe\x0e\x1e\x19\xc8\xd6\x0e \xe3\x9b\xe4\x93\x17^s\x93\x81\xf8\xe4\x0f\xdc\x003g\x08\xd5#\xc4n\xf4\xdb5#-\x84!\xb4\xae\x14\xbc\xe1\\(\x1e\x92U\x90\xe0\x98/\xa55\x80\"\xd7\x0bi2\xa2\xcf\x1bm\x84,/\xa3Af\x12\xa4+\x11P_\"\x04 \xbd\x16\x0d\xb84\x10\\N\xa0\xf5\x04c\x8b\xa6g*\xac;\xd1\xf3P\x078\xce\xb4\x90\x1e\xaeIM`@>\xc1\xb4)\xda<^\x8d\xa1[\x112\xb2\x1c\x80<\x0b\xe9\x0d\xd4\x8fU\xc3\xe8\x1fE\x83\xa0\x9e\xabe\xe4E2\x8c\xf2\x15\xf5 \xb2/!;\xf9\x9d\xa7\xc4\xc68kY\x81\x8ew\xe2\xb2G\xa9\xad\xf9\x00\xd6\xa6i\x04[\x03(B\xa0\\G=\x9e\xd4\x0c_h\xa1\x8e\xeb\"\xa8\x9c:\xd3\x1eVP\x9b\xc3\xa9\x95\x15S\x1b`\x0f>E\xbd^+\xdc \x9eu\x11\x97\xfc\xeb\x01\xc6\x92\xd24\x98\x97!\xc5\x05d\xddp\x9e@\x94\x96\x17\xdc*\xd4\x8f\xb4p\x86S\xbf\xa2\xe2\x02,/\x1b+ \xf8J\xa7\xa3\xfb)K\xed\xbbj\xbcTi\x85\xd5\xfb\xf5J+Nr\xc0B\x04Q,\x8d*\xcd\xba.\xa2\xfeE#\xbd\xf9\xad\xf5a\x0f\xb3Df\xfb/\xdcy\xdb]\x18b9E\x0beVpQ\x8c\xe6\x86\x01&I\x00\x97\"\x02O\x03B\x9d{\xf5NH#\x9f\x0e\xb5e\x83\xd0\xe4\xc4z\x7f7\xc3\xc5l|R\x19\x1d\x0c2'\"5*\xb3\xa8\xb5\x16L\x9e\x08 E4\x08/\xc0\x14`\x11\xaef\xb9\xbb\xd6\xc8\xbfe\x03_\xb3\x9f\xf9c\x97X\xd3\xe1il\x13\xb4f3\xca\xe6\xf3,\xe5\xe3\xf9cB\xc5\x93P/\xc2\x0e1\xb4\x08OSd\xd4w\xa5\xfc\xc5\x8b\xe0\x95\xb2j\xbaH4z+\xc0\xfeZ_\xd1r>\xedi\xd6x\xefjUc\xa2\x97\xa6\xf7\xd9\xadg-\xd1tQ\x95\xaf6a\x0b\xb2\x0bzM<\xc4\xd4k\xb7\xefl\xda\xe5Kj\xb2\xbe8\x9b\xf8\x84\xa6\xb7h\x82\xa3[Y\x95\x1d\x00\x89\xc7(\xf0\xd4\x0b\xbeh\xfc\x1e.\xfd\x04@\xd8\xc5\xd5\x93\x05@\xf3@4\xf8V\xb1\x88o\xa9\xe8\xeb\x18\xf0o\xa0\xc4\x89\xafE\x89' -f$V\xc1\x0c\xa1\xa0q\x88\x1c\xef\xc9\xa6\xbe\x94\xdb\x05>%\x11O,0\xac\n\x00<\xc6(t\x9eg\x8b\xac\x80\xf3@\x8b\xe5\xf50\x82?\x0d\xbfP8M\xb9G\xaf\xcc\xab\x88G\x13q\x1bi\x8e\xf3b\x16\x08ZG\xa8(qY\x05\xb7~?\xfe\x9f\xea\xdc\x15:\x15f\x13\x17|\\D\xaae\xa8\x90\x06M\x80N\xab\xf8Y\xf1\xb8!\x11#\xcf\xa6\x98\xdf\x92-\xaa\xb0x\xee\xc5cx\xee\xe3\xc5\xd7/g\x17\xbf_\x9f~?\xffqu}yur\xf5\xe3\xb2W>\x9a\x0b\xc6\xf9\xc5\xd9\xf9\xd9\xe5\n\x00\xc4\xb7`w\x9dO\xb7*!\xfd%y\x90y\x90\x19\x08\x800\xd2\xa8\x00 !<\xda\x0b'4\xde\xabRq^\x14\xeb\x96\xad\x1d@\xe7\xc0T\xday\xac\xfe\xdaN\xf82vL\x8ap>\xa1e\x8e\xf3e-\xc1xUA}\xe6\x13[a8\x8e\xe2\x9b\x1dC\xf1\xcd\x8e\x1f\x15\x1b\xbaa\x81-rrO\xb3\xaa\xe0\xef[5\xb7\xba\x91$\xe5\xc5U\n\x9b\xab\x1cG\xb7\xc2#&,'}\x02$J'AOe \xe9e\x0e\xd2\xb1\xb3\x19m\xd1\x8c\x92{\xf16dV\x95!\xb1\x93\xa5 \xec\x04\xa4Wk\x15\xbe\xb0\xae\xffO\xa9\xe7KU\x01U\xb0\x13VvA4\xd1cO{\x01\xdan\xa8\x17\xd0\xa0\x97\x1c\xa6\xa2K-\xc1\xda\x8dQ\x1f\x08\x01\xc0\xea\xfc&\xc9\x1b\xb9\x95iz\xa3\x9e\xb7\xd9\x99b\x9aT9\xe0\x08\x89\x98\x1a^\x88g\xd8\x82?\xee5\xeb}\x94\xee\xe5\x8f?\x06i\xa9n\xef\xf3\x93KX\x8a|\xb3\xdb\xe5\x7f\x9d\x9e\x0f\xe8\xf6\xed\xe4\xf4\x8f`7C'\x0f\xa5s\x986v\x8c\x06\x99\x14g\xe7\x86\x06FU\xda|\x9d\xd4\xd5zf\xc5w\xa7\xb4\xcd<\xf6\xad\xa1\xc2\x88\xb1\x9b\xf8+\xdd\xfa\x9d\xa7!C\xb2\xe5\xd0\x1e\x92}3\x86\xd4$\xedEYZ\xd0Xy\x1f\xf8\xe0\xb7\x94\xdfZ\xc4\xe2\xb9\xab9-\xf8k\xa9R\x1fe9\x8aI\x82\x97$\x06&&:\x90d\x8b\xaf\x8d$\xfb\xe6\xe4K}\xa1h\xc5\x9c\xc9\x0cW\x00\xbajP\xa1'\x0eUgB>\x914\xc2\x8b\xa2J4JRn\xf1S,\xc4\x8f\x88j\xcb\x03\x90c\x0c\xc3Q\xe0\xf0\xb6\xf8\x15\xd5\x0f\xac\xf3\xc7+\xb3\xa9b\x99|KX\x89\xeb\xc0,\xb1\x9f\x8a\x83\x8c\xeaP\x17\x13\xa60\xd3\xe1uTJjc\xa9\x18X\xdfe\x00\xf4la-\xaad-\x9c$/\x8f\x1c\xe0\xc2\xb3}\xa2\xafD\xb2)\xb7\\\xf9\x94\xe3\xb2\xc4\xd1L\x8cV?\xd7\x97\xe5\xbc5n\x14=\xbe3\xb4HNh0\\\xa8\x9e\x86M\x8e\x13jc9<@HC\x82\xb0\x04\x16\x8e\xb8 l\x19#H\xb5^6@\xf6\x08gA\xd07\xb9 \xfc1PU\x0c\x92^?\xfei-\x1cz\x818(c\xe4P\x00\xd4\x18;\xe5\x15\xe6@\x00\xa8\x02i \x04\xd4\x14h\x9b\x02!\xdb3P\x17<\x1dlS \x06\xf1j\x0c\xed\x82\xd06\x05\x02N\xf9\xc8\x8bd\x18\xe5+F\x92\xa2>)\x10R.\x8f\x99\x00a\x019^\xfa\x83\xb4\xaf\x9f3\xf9\xa1I\xcf\x08\x96\x05Pt@\xf9\x8d:8\x06N'\xfe}\xd0/\xed\xa15\xd9a\x95\xb4)FX\xcb\xdc\xea\n\x81\xe7\"\xb9eQ\x01I\x1eh\x87\xd5\x16Wg\x9e\xd7Mg\xcb\xa8\x02\xd29\xc8\x143\x8c\xae\x060\x87\x01\xb6:\x95%\xbei(\xbf\x7fJh{\x8b<\xbb')N#\xb27'%\x8eq\x89\xf7\xee\x0f\xf6\xf8\x02\xdb\xfb[\xa9\xbb\xff\xdd\x13\x8bq\xefo\xc6\xaa\xff\x15\x90n\x886\xdc\x8aj>\xc7\xf9\xf2X\xbf\x02P\x10\x9cG3\xf9d\xa0\\\xc8\x8a\"\x177\xaf\xea\xbb\x1c&\x0ew\x10\x9d\xaa\xd7\x08\xe3\x1dU\x1b) 9\x7f\xa9\xd9\xb3\xb2\xd8d\x08ix\x9c\x13\xbb\x1d\xc5/6\xa2\xa1\xfcu\x07\xb8\xe6\xb7\xa9\xfc\xc6\xb0\x10m\x8f.\xe9\x9c&8O\x96;5\x0ee\xa3\xaa\xb2\xd5f\xe1\x15R\xfc~\x901\xd4p\x83\x97\xe6\xf5\xae(o\xd2\x08ZYf\xd5\x9b\x9c\xd4\xe33;:\xe7\x0eDDS\xf3}\x8a\x7fC\xa7S\x94\xa5\xc9Rg\xdbk\xfdZ\xaf\x1b\xf9\x84\x9b\xe9F\xe5\x0ff\x18e\xb6rRVy\xca\xdf\xbe\xb0\x81\xd66_\x03.N\x92\xa6\x17\x94\x0d\xc3g\xb2/\xf8z\x82\xde\xb2\xc9\x90\xa3\xed\xd5\xdf\x7f\xb5\x8e\xd6\x9e\x1f5\xaes<\xac\x19\xaf\xa8\xd0\xaf\x95)\nq\x1a\xef\xd5\x0b\xe2\x9a6\xf9\xd7\xda\\\xb6\x01\xf5ON\xd0\x04\xc7\xa6\xebV\xfd\x08\xd1\xe9\xb1\x89\xd8Us\x8dr\xf1\xc9\x17&Nc\x94fV\xee\xbfk\x01\x90O\x91\x94\x0f\x19[\xce\xfc9\x92l\xda\x94%&I\xdc\x8d.\xc1\xf2\xff27\xcc\x12\xc5Y\xfa\xa6\x94\x1c\x9f\n\xd9\xcd7\x12c\x1e\xef\xd6\x18\xfe\xa4\xc3\xd5\x1d4\xa9J\x94f\xa5\x85\xb3\xb8Q\xe5\xbc\x0bF\xbc\xbcV/eF\x96\x9e-\xf6G\xbdg\xe2\x8c\x14\x0c\xcf9.\xa3\xe6+?F\x7fsF\xfe\xb1T\xc7\xed\x1d\xc3l\x12O\xc4H\xe3J\xbc\xe7R\xea\x8a3\x06\x86\x97\xa4\xacM7\xd5\x93Q\xd4\xb1\xe7\x18\xbbr\x91\xe0\xd7\xb0\xe0\x1a\xbe\xe6\xe6B\xd3\xaaA\x17+:\x8d\xb5.y\xff\x8b\"K\xa8\x7fC\x8f\xbd9\xdc\xdf\x7f\xe3v\x1e\x18\xc9\x8e\xeb\xf4\x1ap\xca\x02w\x18VO\x8e\xb4\xe2\x84 \xd4\x15\x1d#\xf5l\x0e\x9aeI\\\xe8\xeb\x0c\xb1\xf9\xfb^\xb1\xac~\xdf\xe1\xf3dyB)B\x8e\x82\xd0m\n\x82\x1d\xf7\x81\x97\xd3\xe1l8\x84~\x88\xca\x8a\xa7\xbf\xd7\x89\xf1b\xbb#t:_$\xfc\xf5\xb0\x02\x15\xf1\xed\xbb\x93@\xae\x97\xd4YS\x1c W\x18/9(\xc4\x94\xe8I\xc4^S6\\\xdb\x0cl\xb6/Y1\xcf\\\x83\x15\xe0\xd4\xc8\xe7ef-a\x8anF\xa3\xbe\xe0\xf4_\xbb6z\nS\x92\x97> j.p\x92d\x0fR\x8d\xc9\x9bH\x1f\xb8\xc8}\xdb\xc5\xdf\x9a\xf6\x84\xfb\xf8\\i\xaa\x05\xebR\x04\xf7\x8ch\xe1\x9d#\x1a^W\xcdDl\x7fd\xf0\xad\xca1\xf6\x97\x84\xca\xb3$X\x0b\n\xb2\x82D\xc3\x1c^\xbd#\x152F\xfd\xd3HV\x06\x05\x06\xda\xc8,d\x02\xa8\x87\xd8\x8by\xb0\xba\x0e\xaeg\xf6\xfbu\xac\x1f\xbf\xef\xd7O\xbdf\xdf\xaf\x97z\x93\xbe_/\xfd\xc8|\xbfn\xfcY\xf8~]\xf4\x83\xee\xfd\xba\xc9'\xd9\xfbu\xaa\xdfM\xef\xd7\xaf~\xc9\xbc_?\xfd\xdex\xa0\x9b.\xa61hy\x85m\x95fs\xad\xe2\x81\xc3#$\x1fS\xe7\x17<=\x8ab86\xc5\xb1\xfd\xb3\x1cE>\x11\x9f\xd3\x1b\x9a\xe2\x12R\x1b\xd0\xba\x87\x8em\x1f\x95\xb1^\xa0\x98LJT\x90\xfc\x9eF4\xbdA\xd3*\xe5/\xe3\x87\n:\xb8\xf6\xde\xb1\xed\xa38-\xf1\xc8\x17\x1a!\x9a\xde\x93\xa2?=z\x9f\x1e[\xbf\xa2\xc6;\xf7\\}k\x1a\xa3\xaa(\xb3\x98\xe2T\x12*\xfd=\xe2\xd9\xfb\x9eh\xf0}\x7f\xdc\xf9\xd2\xae\xc7\xb50\x1e\x95\xe7J[i)\xa6}{\x0e\xa9\xe5\xc6\xb1\xf5\xab\xe0\xae\x18P\x1c\x94S\x84\xa7S\x9a\xf0\xd7\xd4\xf1MN\xb8\x19\xd2sP)u\x8e-\xdf\xc4\x80\xdc\xea\xc1\x89\xb8H\x95/w.k\xbb)\xcf\x12A\xfc<\xa5\x93\xaa@\x13\x9c\xde*\xad\xd8\x13\x95Z\x96\x1d\xdb?3\x84T\xe5 5\x0f\xe64\xe4d\x91\x93\x82\x9bb<\xd2PW=\x93\x8e\xadf\xe5]\x1c\x0d\xd8\xd4\xb5\xdc<\xb6\x7fn\xae\xcf\x87\x19\x8df\x06\x9f\xeaG\xdc\xe5\xae\xd7EA)A$\xcd\xca@\x11\xe0.BZ \x1f[\xbf\xda\xd0\xe1\xb5\xf6\xf8\x12\x16uP\xc4\xfe\x80\x94lA\xfa}\xdf\x90e\x11\x8e,0~+\xac/\xed\x9b\xd6\x13\xfa\xa6@\x05\xbdI\xb1x\xaa\xb7\xd0\x83{\xe0\xc1,\xb9\x13tn\xec[e_\xb2M\xb5\xc7\x0b\x11\x0b\xbe0K\xcf\x0b\xa6\xfb\xce~\xe4\xaf-\xd2G\xb3]\xf1s\xb6|'\xb7^\xda\xa8\xcc\x16(!\xf7$\x91\x87\x84p\xb8\xa8:\xab\x0b\x1b\xf5]\x1b4\xf7d3>\xf3\xd8Jyt\xf7\x89\xcb\xfau\xef\xa5\xfbq^a\xdc\xf2\xf3\x91\xe5m\x00\x81A\xf3\xf4\xe9]yU*\\\x8a\xe5L\xe3\x9dP\xee\x83\xcd\x1a\xaf\xf59\xe3\xfc\x19&\xd78\xf2W\xcb\x1f\xf1X\x15\xb0\xd1\xe1\xeb\xe0D3I\x05\xb72\xc29\xc7pU\xce\xb2\x9c> \x89\x98\x93\x88\xd0{\xdfB\xa8+\xf2\xf2y\xe9\x967\xd7.\x06\x07\x10\x1e\x0cq\xcd\xd7\xddu\xf0\xb876\x1f\xea\x8d\xdaT>l\xf6Ee\xea\x16A\xde\xb5ixS.K\x9c\xc68\x8fM\x85!5\x98x\xcc{\x8e\xf3[\xefS\xf2\xea\xd7\xbe\xed\xc0&\xac\xa8\x16\x8b,o\xd4:\xe4\x98\xf3\x1d!\x8a\x1d\xe5tR\x95\x04\xcd\xf1\x92;\xe4=\x00'\x84\xc9\xeb\xf4\x86\xc4h\xb2\xe4\\\x90R\xbe\xaeg\x95\xa5\x11\xb3D\x98\x9c+\x88%\xf2Z4\xe9\xf6\xb9\xe62\xf7:\xcf\x92\xa4Z\x84\xa65$\xd9\xe1\xf3\xfa\x97\x14\xfb8I\xf4\xd6n\x86q\xb3)\xa0e\x81,7\xfb\xed\xa6n\xe5\x94\xb0l\x00zS(\x919\xa5$\x89=\xcf\x99\xab\xe9H\x8a\x0c\x91\x14O\x12q:g\xa2V\xe9\xa0\x7f\xe7Ne\x81\xa0\x80\xea\x9b\xfb\xda\xab\xadh\xb4O\x06\x8cm\"\x80M?\xf6\x8e\xf2,+\x8dr\xb0\xdc\xe6EQ\x96$\x84\x9b8\xf5\xe5\x83\x0bGF\x00_EYJ\xf4\x95\x85\x07Q\xe5*\xf5\xc4O\xc2(i\x00\x82W\xb5r\xfbVj%c\xfdA\xd0\xe5\x15vv=\xa7\x9b\xb8\xc1D\xf3\xe6\xa9\x1c\\\x8cDs<\x94\xe1\xb6f*BIj5E\x9e4\x1f\x0dL\xfc\xc3\x9f\xe1\xb3&\x82\xbc\xc2\xcd\x82 \xf2\xd5\x04 y\xa0A\xfcp\x07\xef#(\x1b\xfaR\x88C ^c\xd16\xc2\x14\xf7\xa5m\xa5T-\xcb\x02p\x0b\xd4p\xee3\x0c\xf7.\xb4a\x95<\xbau<,W(k\x16\xb4\xc1\\f\xd0\x9c\xafe[\x07\x12\x96\xbd\x17<\xa8}\x9f\x04\x93\xdb\xd0\xf4\xe4\x17g\nD\xbcCa\xc1Xb\xfc\xd7\x08Bb\xad\xbci\xa1\xda\xd4\x08\xfa\xb3\x07\x9cUM\xc2\xb9\xf5\x02\n\x02\x96\x06<\xfe\xc2\x18a)\x0c\"u\x04\xa5\xe1X-m\xa2\xdd\x89j>o\xc6\xba\xf2-$6.\x96\x07\xd5Bx\x04\x84^\xe2\xa1Hx\\\xc3\xb8\xe3\xf6Y~\xfa1\xce\xba\xc2\xb3\xa3&\x06\xe8\x95\x06[\x8dg\xc9x\xd7\xc6C\xea\xd0\x18f\xcff\xbe\xaa\x11tj\xa9\x06\x9cc\xf9\xe31\xe2\x18`\x91\x0cP\x0f\xb8h\xe3F3\x0c\x88g\xe8\xc9HXL\xc3\nQ\x0d\xc3\xe3\x1a\x86F6\x0c\x8dm\x18\x1c\xdd0(\xbeap\x84\xc3\xc0\x18\x87\xe1Q\x0e\xc3\xe3\x1c\x06F:\xac\x1a\xeb\xd0O\xc2\x8b\xe6\x8cw\x00\xf4\xb5\xf7\x1c\x1a\xf1\xf0l1\x0f\xcf\x1d\xf5\xf0\x1cq\x0f\x1b\x13\xf9\xf0\"\xb1\x0f/\x14\xfd\xb0Q\xf1\x0f\xaf#\x02b\x03c ^6\n\x02\x1e\x07\x01\xbd/\xd3\xbf\x1e1\x16\x02n\x0b\x8e\x14\x0f1(\"\x02\x8a\xa5\xbe\x1b\x94\xce\x12\xc2\x1f&\x12\xf5\xa5\xf8\x1fdf\xd0M\xcak.\x05\x9eF\x0f\xa25R\x8dR\x18m<\x83\xa6\xccj\xf6\x99\x17\xf2\xf2\xde\x10\xf6\x06\x954\xd7w\x18~4\xc2I\xb2\xac_\x1fwv\x94\x9dF w\x0dgZu\x00\x11\x89\xac\x94$\xe2\xf2\x9ciX\xa6\xd2\xa3\x84\x92\xb4>\xdf\xf2\xc8\x06/\xbc\xee\x12\x0d\x1ejq\x15S/w\xfa\xd0\xf3\x85\x1f\xa7c4Y\xee\xa0j\x11\xeb\x7f\x97tN\x8a\x12\xcf\x17\xc5\x8ev\x87\x89Bg\xfe\xd7\x01E\x8aV\"\xdf\xaf\x9afn2\xc0'f\xe8yYx\x06\xe2kFDH\x10\x02\x17\x102\x16\x11\x03\xbb\xcb\xd8\x12\x02-\xf6\x98\x8c7\"{\xac\x0b\x93\xa0\xf2\xee\x9f\xa4e\xbe\xe4\xafVI|A4M\x96#R\x04\x93\x02\x08u^\x0f7\xfd\x04\xc2\xe4\x90\xab'(\xe0\x90\x0e\xfc\xf2\xfeL\xae\xc0W3\x85 .J\x854\x88\xb0\x0d\x9dG\x1e>GG\x9cH)2`\xc4\xbaJ\x015\x9bQ\x18\xe8\xe3\x87\x10\\0g\x98\xad,m\x97\x96\x9c\x13\x9c\xe1e\x99\xa3\x9c[\xf3\x00\xff\x11\x97\xe1\x04G39\xe3\xde\x0e\xcerF\xcd\xb6\x96\x15a\xd2-\xf1\xb0D\xe0\x856\x8a\x14P4K\xf7\x04\xbd\x88\xdc\xfb\x8f=0\x0cO\x98\x8a\xfb\xc6\xb4k\x81\"\xbc\x10V\xa65\n\x87\xed@/(\xbd\xce34\xc7\xb7D.u\x955\xc7\xd4\x95\xdc\xd8d\x89\x1eH\x1e\x981\x1c\xbb~\x00U\xba\x97\xd2\x80\xd2\xf1R\x86-\xa5\xad\x0b|\x83i\xca\x1f\xb9W\x96\x84\x13^\xd3\x95\xcez\xe14\"\x9eh\xb2+\xc3\x8d\xcas\xd4g\xf8\x9e\x18#I\x0e\xf3\x18\xb1R\x1d1)q\x8b\x05\x9a\xdeg\xc9}3\xc1\xbd\xdd\xbe\x9f\xb1\x93\xf4_\x92\xd32#=\xcdDh\xd7E#\"\x18a\x19Q\xd6H\xe3o\xb7:\xbe\x0c+\x96\x8a\xc4m\xc5_\x9eT?\xcf\xee]o\x93\xd6\x976\xa3\xbcW\xd2\x027,\xc2\xc1\x1a\xe3\xe07\x07\x016\x14\xc4~z\xfe+\xacv V\xa3\xc8\x81=\x80\xa1Y\x88\xc3mY\x1as\x11\x8aLX+M\x01!\xd7Ashx\x02j\x94M\x08\xff\x06\x14\x9f\xb6!\x9c\xe9\x06=\x19_\x80E\xe4\xcbF\x11\x0d\x18\x87\xe4?_\x07\x8f\x0cdk\x87\x84\xf1M\xf2\xc9\x0b\xaf\xb9\xc9@|\xf2\x07n\x80\x993\x84\xea\x11b7\xfa\xed\x9a\x91\x16\xc2\x10ZW\n\xdep.\x14\x0f\xc9*Hp\xccGO\x1a@\xd1\xd8\x0fCBf\x12\xa4+\x11P_\"\x04 \xbd\x16\x0d\xb84\x10\\N\xa0\xf5\x04c\x8b\xa6g*\xac;\xd1\xf3P\x078\xce\xb4\x90\x1e\xaeIM`@>\xc1\xb4)\xda<^\x8d\xa1[\x11\xda\xbe\x0c \xa7|\xe4E2\x8c\xf2\x15\xf5 \xb2/!;\xf9\x9dWA\xc68kY\x81\x8ew\xe2\xb2G\xa9\xad\xf9\x00\xd6\xa6i\x04[\x03(B\xa0\\G=^\xc7\n_h\xa1\x8e\xeb\"\xa8\x9c:\xd3\x1eVP\x9b\xc3\xa9\x95\x15S\x1b`\x0f>E\xbd\x1e\x1e\xda \x9eu\x11G\x80\xd7\xae,\xbdZ\x11\xeaCy\x19R\\@\xd6\x0d\xe7 Diy\xc1\xadB\xfdH\x0bg8\xf5+*.\xc0\xf2\xb2\xb1\x02\x82\xaft:\xba\x9f\xa8\xd2\xbe\xab\xe7z\xa3J\x0e\xe8y\xa4J\xffBWSD\xbc\x98\xa2\x05\x98Q^\xd1\xfb^Ud\x7f\xb0E,\x8c\xe7\x8d\xfc\x17\xc8\xb8\x96\xebHJ\xfb\xd9\xa32\xf6\xea\xc5Q\x87I\x0bR\xdf!\xf4'/; \x93\xce\xbd\xb0dd\xbe\xa5\x14\xc6IRd\xe86\xcd\x1eR\x84\xd9\xfa\xfd\xc6\x0c!o\xb8\xc6K\xb8\x8ea\x1c\xab\x13\x0f\xd4\xf6S\xf7\x1e*\xe3\xa0\x95U\x10\x10\x9d\x9a\xd7\xe8\xed\xffg\xef\xdb\x9a\xe2\xd6\x95\x85\xdf\xf7\xaf\xd0[\xb2NA\x06H\xc8\x85\xaa\xefavVr6\xb5s\x80\x05d\xadGJck\x18\x07\x8f=\xd820\xec\xda\xff\xfd+]-\xdb\xba\xb4=\x1e.U\xcbO\x89\x19\xb7\xfa\"u\xb7\xa4\xbe\xf0\x9a\x95 ]\xa0y\x92RR\x90\x18\xdd\xdc)\x0bOI\x81i^\xb8\xc3\xc6dL\xba\x97] \x02% \xa5o\x1a\x9e\xaf\xa2L\x88\xda[\xbaA\xeb\x9cu\xf36*\xe7qz\xf9|.#\xe2\x9a\x9d\xe4\xa0\xcc\nN\x8a\xd1\x0ed\x80\xe9\x12\xc0\xa9\x88\xc0b@\xa8s\xc3\xde n\xe4\xe2PK6\x08M\n\xd6\xfb\xbb\x05.\x17\xe3\x93JeSiNDf\xd4hQs-\x98F\x11R\x8ah\x10^\x00\x11\xc8\n\xde\x96[l\x8d\xfc[60o\xa0\xed\x8fbb\x8f\x0eT\xe3E\xe0\x9b\xd2\x8c\xf2\xe52\xcf\xf8x\xfe\xe8P\xd1\xd2\xe9Y\xd8!\x86\x16\x81j\x8a\x8c\xfa\xd6\x94\xe6\x90\xcbe\xf5\xe8\xca\xd3\xe8\xad\x00\xfb[}Y\xcb\xf94\xd1\xac\xf1\xde\xda\xaa\x87\xa9\xde$\xbb\xcboi\xfcg]\xba\xc8z\xf8\xb0\xab'\x0b\x80\xee\x81x\xe0K\xc5\xa2\xbe\xa5\xa1\xaf\xa3\xc1\xbf\x83R(\xbe\x95\x14\xcf\xd2\x847\xe5\x97a\x0d\xa1\xf0q\x88\x1e\xef\xc9\xa6\xbe\x94\xdb\x15~B\"\x9eb`x\x15\x00x\x8cQ\xe8\xac\xc8Wy \xe7\x81V\xcb\xdba\x04oQ\xb8R8\xcd\xf9\xd9\x1e-\xaa\x88\xc7\x15q\x1fi\x89\x8br\x11\x08_G\xa8\xa4\x98V\xc1\xa5\xdf\x8f\xff\xc7:\x8b%\x99\x0b\xb7\x89+>\xae\"\xd54TH\x83\x04\xa0\x13,~U<\x82HD\xcb3\x11\xf3\xfb\xb2U\x15V\xcf\xbdx\x0c\xcf\x82<\xff\xf6\xf5\xf4\xfc\xf7\xab\xe3\x93\xb3\x9f\x97W\x17\x97\xd3\xcb\x9f\x17\xbd2\xd3\\0\xce\xceO\xcfN/6\x00 \xde\x05?\xd7\x99u\x9b\x12\xd2_\x93\x07\x99\x07\x91@\x00\x84\x91P\x05H\x0d\xe1q_8M\xe2I\x95\x89\xfd\xa2\x98\xb7l\xee\x00>\x0e\x88\xd2\xcec\xf5\xd7v\xea\x97\xb1b2\x84\x8bYB\x0b\\\xack\x0d\xc6\xeb\x0b\xea=\x9fX\n\xc3q\x14\xef\xec\x18\x8awv\xfc\x12\xb1\xa0\x1b\x1e\xd8\xaa wI^\x95\xe9\xba\xb3\xd4\x8dt)/\xaeR\xd9\\\x168\xba\x11gc\xc2s\xd2;@\xa2l\x12tW\x06\xd2^\xe6 \x1d?\x9b\xd1\x16-\x12r'\xba\x9b\xe4\x15\x0d\xa9\x9d<\x03a' \xbdZ\xaf\xf0\x99m\xfd\xbf\xa4\x9d\xa7\xaa\x16\xaa`'\xac\x00\x83x\xc4\x17\x93\xba\x9f|\xeb\x18\xea\x19,\xe8\x05\x87\xa9\xe8RS\xb0>\xc6\xa87\x84\x00`u\xa6\x93\xe4\x8d\\\xcaIv\xad\x1a\xe6\xec\xccq\x92V\x05`\x0b\x89\x98\x19^\x91,\x06 \xb2\x8f\xd4\xfb\x18\xdd\x8b\x9f?\x06Y\xa9\xee\xd7g\xd3\x0bX\xb2|\xf3\xb3\x8b\x7f\x1f\x9f\x0d\xf8\xec\xfb\xf4\xf8G\xf03\xc3&\x0f\xa5s\x985v\x8c\x06\x11\x8a\xf3\xe3\x86\x05FUV\x92\xb0\xaf\xc6\xef5\xfa\xe4\xc7wE\xdaf\x1e{\xd70a\xc4XM\xcc\x82\xd6\x9d\xa3\x86\x0c\xc9\xa6C{H\xf6\xce\x18R\x934\x89\xf2\xacLbu\xfa\xc0\x07\xbfI\xf8\xfdE,\xbah-\x93\xb2d\x8bS\xda\xa3\xbc@1I\xf1\x9a\xc4\xc0\x14E\x07\x92l\xf2\xb5\x91d\xef\x9c|\xa9\xaf\x16\xad\x983\x9d\xe1\nEW\x0fT\xe9\x89M\xd5\xa9\xd0O$\x8b\xf0\xaa\xacR\x8d\x92\xd4[|\x17\x0b9GD\xb5\xe7\x01\xc86\x86\xe1(px[\xfe\x86\xea\x06\xe8UJ\xb9\x92\x96,\xcb\xae\x1b\xea: %\xf6S\xb1\x91Q\x1f\xd4e\x85\x13\x98\xeb\xf0:j&\xb5\xb1T\x0c\xac\xef2\x00v\xb6\xb4\x96W\xb2\x96P\x92\x97G\x0epaiO\xf5\x95H>\xe7\x9e+\x179\xa6\x14G\x0b1\x9a\xcehek\x93\xe0\xc8]\x08\xbb\xb9b\xe4<\xe6{\xf7`\xe2v\x83\xc5\x12#\xc9\xb9<\x93\x07\x1a\xf2\xb5\xccv\xb2\x93\xac\x0f\xaeF TjB\x0bD(\x19\x91HN\x80\x8d)\xb0\xe5\x88$\xd0\x19\xde\x16\x17\x8a\x1e\xdf\x19d$\x05\x1a\x0c\x1c\xaa\xc5\xf0\x92#\x86\xdaX\x0e\x0f\x15\xd2\x90 ,\x81\x05&\xbe\x04\xb6\x8c\x11\xaeZO\x1b {\xc4aA\xf0l\xf2%\xf0\xc7@U1H\x9e\xfa\xf1W[\xe1\xd03DD\x19#\x87B\xa1\xc6X)\xaf0\x1b\x02@\x15\xc8J \xa0\xa5@\x7f'C\xc8\xe7 \xa8\x0b\xee\x0e\xfeN\x86\x18\xc4\xab1\xac\x0bB\x7f'C\xc0)\x1fy\x92\x0c\xa3|\xc3\x98R\xd4'\x19B\xea\xe51S!, \xc7K\x84\x90\xfe\xf5S\xa6A4\xe9\x19\xc1\xb3\x00\xaa\x0e(\xbfQ\x07\xc7\xc0\xee\xc4\xbf\x0e\xfa%@\xb4\x84\x1d6I/\x85G\x1b\x1b\xa2&80\x87\xb6\x12\xbf\xbe}nm+\xeda \x17_\xcb\x16\xc8\x82\xafe\x1f\xe4\x854\x02\xc3B\xf6\x1c\xc8\xa6\xa1\xf4\x8fb\xc9\xa1tw2*\xc6\xdc#Y\x81;\xf7J P\\\xe1\xa2$v\xef\x99\x82$\x83,\x1d\x02Z;\xd43\xf1\x0f\xc1\xe7\x0f\x82/5\xd4S0\xa8G\" \x18P_[\x88\x86%\x04\xa2\x17\xcb\xc1\x90\x8d\x0c\x02\xa4\xbdR\xbb\x10,!\xea\x95\xf2r\x98\x05\xed\x82\xb2X\xd1\x9e\x10\xfa\xc9 d\xcf\xf0\xc1\xee\xe1\xfc\xfd\xe1\xee\x87\xc3/x\xf7\xf3G\xfciwN\"\xbc?\xdb;\xdc? {\xa2\x04\xbd\xd2k\x91\xbb7^\x93\xcb>\\\xf7o\x1f\x9d\\\xbe}Ho\xeeIjef \x81r,v\xd6\x15\xf6z3\xf4\xf0\xf3\xde\xfb\xf9\xe7Y\xb4\xfbq\xef\xe3\xa7\xdd\x0fdv\xb8\xfb\xe5p\x7f\xbe{\xb0\x7f\xb0\xff\xf1\xd3~t@\xa2\x16C\xc5`\x1b\xb1T\x80\xd8\xbf}p2\xf5Ky\x9bF\x8b\xf7\xe5\xc3}\xf6\xe1\xc3\xaf\xc3\xbd_\x8f\xd7\xf4sQ.\xeen\xd7\xf3\xe2WT\xb8\xc8\xe1\xed\x94\x19\x13\xf2,]\xd7,@ O\xdc3\xae\x0fpZ\xe6.\xfcd\xb7\x0b\xab\xbav\xef\x95\x83\xc2\x94!\x17\xe6\xeeUdo5\xce\xe4h\x8e\xd2<\xbfa\xda\xd9\x02E&\xfb\x88\x03I\x1f\x1e\xbe>\x00\xb0Y\xd5\x18J(\xa9y\x8a\xaf\xb9\xd9\xd0m\x03r\xf53N\x82\xdbL\n \xd2r\xc9\x08\xa1\x92\xd4\xd6Em\xd5\xcaU\x9e\x95\xd6\x08\x0e\x8d\x8eLn\x7f\"\xe2\xcdd\xfb\x10\xfd\xfe\xe9^nD>y\x10\x08y\xb7\xe2cQ\xdf\x1a\xccM\xbc\xfc!\xc7\xdey\x99\xc9A\xf0`\x9f\x10\x91\x8a\xebN\xaf\x01\x8dHdk0\x88\x84\x9d\xf9\xbd\x1aF\x86\xd6yUH\xd7\xa4I\xa2\x1f+\x99Nu.\xb9\x83\xea\xe8:\xf1\x7fF\xb5\x8c\xc8&\xe8\x8f\x8a\x14\xeb\x89*\xae{~\xf6\xb5\x05Ldr\xd6\xc3\xabPZ\xe3g\x0dl\xa6\x19\xaa2\xf2\xb0\"\x11\xf3\xaeDo&\x9b\x9c\xcahA\x96\xb8)\x16\xa7\xb3\xe5v\xb4\xf8\x00]\xe1z\x14h\x94\xc7\x16m'>p\xd5\x18W\xbb\xd2$\xa3\xef\x0f:\x0cr\xd4\xe7\xf6\xe0\x10\x13\x8a\x93\xf4\x85\x14\xc1`\x9f_U\x85\xb3-L\xd0\x18\xf1\xdc\xd1\xc1_[\xf7\xfc+\\\xe0%\xa1\xa40p\xde\x15\x06S\x9b^\xd7\x0cl\xad\x87\xbe\x0e\xe20\xb7\xd0\xe7\xad\x0cq\xfb\x92\xec\x08\xad05\xc3 \x99bH\n\x12\x1f!ZT\xa6\x81\xb0\xb2Xq\xabu\x9a\xdd\xe0\xd4 \xf7a4\xcc\x8c}\x0bP\x94\x83w:\xe3\xeeo\x18\x07n\x99\xda\xb4\xb2`\x8e\xd3\x12\xcc\x83\xda\xdd\x06\xb2\xa0\xbf\x7f>\xd4+\xd7\xecl@\xb3\xcc\xee\xb1=\xf0\x0d\xfcn\x9b\xb7=\xa2\xb4\x1an,P`\xc3\\_\xcb^s\x88\xc77\x84\xf6\xb67\xd4!^\xba\xa0}\xe9\xef\xe3\xfd\"\xcb \xcf\xcf\x81\x96+\x0bd\xc0@\x07\xb8vu\x1b\xd0\x9e\x82\xce\x967\x0b\xa4s\x90\x0flx\xbb\x0d`\x0e\xcfws*)\xben\xb8\x14\x7fHh\x13\xa6:H\x86\xb3\x88L\x96\x84\xe2\x18S<\xb9\xdb\x9f\xf0u8\xf9\x8fR;\xff\x9d\x8897\xf9\x8f\xb4E\x8cc\xff\x9d\xc8\xe9*\x00_\x13\xed\x1d\x97\xd5r\x89\x8b\xf5\x91*\xfdV\xa2\x92\xe0\"Z\xc8V\x97j\x96+\x12]\xec\xbd4\xa2\xc5Zj_\xa8\x15\x8b\xea\x87\xbb1^\xff\x05\xec\xbb\xa0\x8bd\x99\xa4\xb8H\xd7;\xe6\n\x96\x18kxm\x83\x85j68Q\x18\xc1\xc00\x16j\x80\x86\x1b\xb1\xc3\xac\x8a\xb2\x1a;\xaa*\x1a\xc2\xf5\xe8\x10\x17c\x0c\xf7\xa2\x1e\xf1\x7f\xd0\xf1\\\xd8\xbe\xa6\xb9\xab\xd1\xc4ij\x94\xee\x93\xb9;R\x8c\x85I'\xad\x8a\x8c\xb7\\\xb1\xc2\xae%\xd4\x80\x9e\xd0\x9a\x0f\x86Pp\x167\xcb\xf6\xb4\x8a\x16\xf2\xc5l\x1f\xb05\x1f\xb8f\x10S\x96.\x88\x9e\xcd\x06\xb5|\xcf\xd8\xf5\x0e9Z\xcc\xea3\xdc\x0cvH\xccZ\x18\xd5HxP\x93\xbchy\x965l\xda\xaa\x0b\xa7\xed\x0f\xa6\xf2#\x0d\x8f\xb7\xc9\x99\x11\xe7Pz\x14\xe5v\xabQ\x1c\\\xd81y\x86\x1b\xe5\x16\xb4P\x9a\x8cj0\xa8\x1e\xbd\xcd\xa9\x10E6J4\xb0)\x9a\xe1\xd8\xbceQ?B\xc9\xfc\xc8\xa4\xf8\xd2!t\x8e\x84I\xfd}B\x17yE\x9b\xf2\xb7-\xd6\x06C\xa7Nnjx\xd9\x1a\xdd\xe3579\xaar\x9dv\xad\xd0\xdb\xc6\n6\xb9\x8e;|7\xf9\xfd\x0f\xe3\x1b\x03\xb7\xdf\x1a\xc8]\xde\xe7L4\xbcoQ>\xf7H\xb4\xb9\xbcLQ\x9a\x0bY\x93\xc6~\x14\xe7\xd9\x1b\xcaU\x00\x8fO\x91\xd5\x99P\xc9\xf6yM\xb5m\xe7\x17\x87\xfe\x96\xa9]\xc5mch^\xab\xac\xc3M\x84\xdb\xcaX}&\x96\x9d\x9cMqNJ\x94\xe5TM+TV\xd1\xa2\xcb/\x0fZ-Lx\xff\xa7YN\x17\xc6\x14\x9eU\xb4\x0e\xcc\xd1\x80\xe2d\xce_\xa9)\\\x9aS\xf6\x9fkuj\xb5cL\x80z\xacR\xf6\x99\xa2\xba\xfe\x95\x81\xe2\x05\xa1-\x1f\x1eg\xf1$/\x0c\x7fG\xc0`r(D\xb6q\xc3\x93m8\xf2\xf2[\x8d\xa4x\xab\x0b\xa7\x1d\xc7\xb5\xabp(\xff\xa8\xbc=\xc3mys\xb0\xb7\xf7\xc6}\x02gd^o\xf3\xe8\xcdqo\x10>1\xd5[!\xc6\x1f]h6R\xdd\xbcx\x95\xd9R\xba\xf8\xda\xcc\xbdMl\xc1-\xee:\xb3\x1b]\xdd:HC!\xa8(\x08\x19\x05\xefE\x11\xec\xd0\x0c\x18*\x13\xce\xcdE\xe8\xa7\xa8\xf3z\xfc{]\xa6C\xe8\x0f\x84\x8e\x97\xab\x94w5,Q\x19\xdf\xbc\x9b\x062O\x11?A-\xe68\x12\x07\xcc\xbc\x00\xaa\xe8\xe4&\xbe$b\xad)\x9f\xbd\xed\xf67\x9f\xafy\xb9\xcc]\x83\x95\xe0D\xed\xa7ef\xad`\xcan~\xb5\x0e\xb7\xf0\x07\x814\xbe\x14[\x05^\x88\x85(Y\xe04\xcd\xef\xa5r\x96\x89\xed>p\x9d\xb3\x84\xfa\xe1=\xf0=\xc1\x87\xbe\x03i\xf5\x04\xab\xe4\x04\xd7\x8cx\xc2+G\x99^\x9e\x9e\xf7\xfb\xee\xe2\xdb\xf9\x9f\xc7_\xbf\xf5\xfc\xea\xf8\xe4\xcfo\x17\xbd\xc7\xfa\xfa\xf3\xe2\xf2\xf4\xf7\xe3\xe9I\xbf\xcfN\xff:\xe9\x8b\xdf\xf4\xfb\xf7\xe3\x1f\xc7\xd3\xcbo\xfd>;\xfd\xbf\x93\xe3\x7f\xfe\x0c\xd7\xe8i|tv~\xfa\xe7\xb7\x93\xe9\xc9\xd7\x9e\x83}==\xb9\x85EU&\xb1> \x05\xa4\x90\xee;\x1e\xf2,\xc2!<\xc6o\x85\xf7\xa5\xef\"\xb4@\xdf\x94\xa8L\xae3,Z\x88\x97zp\x0f<\x98'7Eg\xc6\xbaU\xfe%[T\x13^\x16]\xf0\x85yz^0\xedj\xf5\xc1JG},\xdb%\xdfh\xcb\xfe\xdd\xf5\xd4F4_\xa1\x94\xdc\x91Tn\x12\xc2\xc1\xeb\xea(D\xf8\xa8\xef\xda\xa0\xf9\xe9$\xe33?\x9a\x93[w\x9f\xba\xe4k\x9f\xb7b_\xbb\x9b\x86\x0b\xe7\x96\xef\x8f,\x9dJ\x04\x06\xcd\xdd\xa7w\xe6U\x19/!\xc7\xb8\xac\xf0N\x93\x92\x8a\xbag\xe6\xd5\xa4+l\x94ar\x85#\x7f\xef\x8e\x11\xb7U\x01\x1f\x1d>\x0f\xa6\x9aI\xaaV\x1a#\x9cs\x0cWt\x91\x17\xc9\xa3\xd0\x88\x05\x89Hr\xe7\x9b\x08u}p.\x97n\xb3\x05}\xc4\xe0\x00\xc2C\x8a\xae\xf8\xbc\xbb\nn\xf7\xc6\xe6C\xbdP\x9b\xc6\x87I_\xd4\xc9o\x11\xe4\x9d\x9b\xc6i\xca\x05\xc5Y\x8c\x8b\xd84\x18\xd2\x82\x95\xfc[\xa9\x8d\x8c\xf5\x07\xc1#\xaf\xf0a\xd7S\x1e\x137\x98h^:\xd3\xc1\xa5\x914\xc7C\xf9\xb6[\xa6\"\x942[S\xe4I:\xd4\xc0\xc4?\xfc\xf9\x86[\"\xc8\xab\xdc,\x08\"_\x85\xa2\xd0 4\x88\x1f\xd8\x9b\x88\nbC_\nq(\xddt,\xdaF\x10q_\xda6J\x1c\xb5L\x00\xb7B\x0dWb\x80\xe1\xde\x85\x16P\xad\x0e8\xdd\xaaB\x96+\x94-+\xda`e\x05\x90\xcc\xb7\xb2\xac\x03\xe5\x13\xbc\x17<\xa8}\x9f\x04\xd3\xdb\xd0b \xcf\xce\x14\x88z\x87\xc2\x82\xb1\xc4\xf8\xdf\x08Jb\xab\xbci\xa1\xda\xb4\x08\xfa\xb5\x07\x9c\xd5L\xc2\xb9\xf5\x0c\x06\x02V\x94`\xfc\x891\xc2T\x18D\xea\x08F\xc31[\xdaD\xbb\xb3%}\xa7\x19\xdb\xcaZj\x84\xdcv\x9f\xa0Y\x08\x8f\x80P8\xebZ< \xe9\x02\x97:<\xaea\xdcq\xfbL?\xdd\x1a\xb8\xae7\x1f\xd9+\xf4\x80z\xc6\xd8*\xceK\xc6\xbb\x16\x1eR\x9b\xc60{^f\x8f\x9f\xe0\xa1\x96z\x802\x96?\x1e#\x8e\x01\x16\xc9\x00=\x01\x17\xcf\xb8\xd1\x0c\x03\xe2\x19z2\x12\x16\xd3\xb0AT\xc3\xf0\xb8\x86\xa1\x91\x0dCc\x1b\x06G7\x0c\x8ao\x18\x1c\xe100\xc6ax\x94\xc3\xf08\x87\x81\x91\x0e\x9b\xc6:\xf4\xd3\xf0\xe2q\xc6;\x00\xbe\xb5\x7f94\xe2\xe1\xc9b\x1e\x9e:\xea\xe1)\xe2\x1e^L\xe4\xc3\xb3\xc4>\xf4|\xe5\xdb\xe9\x18\xcd\xd6;\xa8Z\xc5\xfa\xdf4Y\x92\x92\xe2\xe5\xaa\xdc\xd1\xc7a\xa2\x16\xa3\xbfW\xa9H\x98Je7\xbdy\xee&\x03\xbcc\x86\xee\x97\xc5\xc9@|\xc5\x88\x08)B\xe0\x04B\xc6$b`w\x19[B\xa0\xc5\x1a\x93\xf1Fd\xc2>a\x1aT\xde\xfd\x93\x8c\x16k\xdeCO\xe2\x0b\xa2i\xb6\x1e\x91\"\x98\x16@r\x07\xed8'\x10.\x87\x9c=A\x05\x87t\xe0\x97\xf7gr\x06\xbe\x1a\x11\xa6\xb8\xa4\ni\x10a/T\x8e<|.\x19Q\x90Re\xc0\x88u\x15\xd4j>Fy\xad\x8f\x1fBp\xc1\x9ca\xbe\xb2\xf4]ZzNp\x86\x17\x89\x8f\n\xee\xcd\x03\xce\x8f\xb8\x0e'8ZH\x89{?p\x16\x05k>[\x99\x11&\xdd\x12\x0fK\x04^h\xa1H\x05\x95\xe4\xd9D\xd0\x8b\xc8\x9d\x7f\xdb\x03\xc3p\xcaL\xdcwf]K\x14\xe1\x95\xf02\xadQ8l\x05zA\xe9y\x9e\xa3%\xbe!r\xaa\xab\xac9f\xae\xe4\xc2&ktO\x8a\x80\xc4p\xec\xfa\x01\xd4\xe8^\xa8E\xbd\xda\xa0\xbd \x9eu\x11G\x80\xde{\x96\xafZ\x11\xeaCy\x192\\@\xd6\x0d\xe7 \xc4hy\xc1mB\xfdH\x13g8\xf5\x1b\x1a.\xc0\xf4\xb2\xb1\x02\x82\xaf\x9e?\xacSt4{\x16v\x88\xa1E\x84\x99\"\xa3\xbe\xee\xa49\xe4VX=\xbah4z+\xc0\xfeV\xdf\xb2r>M4k\xbc\xd7\xad\xeaa\xaa7\xc9\xee\xf2\x1b\xcf\\J\xb2UE_m\xce\x15d\x15\xf4\x12<\xcc\x83l>'L\xec\xa2\x8a\x90\xaa6\xce\x1bm%\xd9\x0d\x9a\xe1\xe8F\xd6s\x07@\xe2a\x06<{\x82O\x1a\xff!\x95.\xa4\x1f>\xa5\xea\xc9\x02\xa0{ \x1e\xf8R\xb1\xa8oi\xe8\xeb0\xee\xef\xa0\xdc\x87o%\xc5\xb34)\x17$V\xf1\x08\xa1\xb8o\x88\x1e\xef\xc9\xa6\xbe\x94\xdb\x15~B\"\x9e\x1b`x\x15\x00x\x8cQ\xe8\xac\xc8Wy \xe7\x81V\xcb\xdba\x04o\xe2\xb9R8\xcd\xf9\xa1\x1c-\xaa\x88\x07\x04q\x1fi\x89\x8br\x11\x88;G\xa8\xa4\x98V\xc1\xa5\xdf\x8f\xff\xc7:\xfd$\x99\x0b\xb7\x89+>\xae\"\xd54TH\x83\x04\xa03#~\xf1\x06\x1d2\xcc\x9d\x89\x98_t\xad\xaa\xb0z\xee\xc5cx\xfa\xe2\xf9\xb7\xaf\xa7\xe7\xbf_\x1d\x9f\x9c\xfd\xbc\xbc\xba\xb8\x9c^\xfe\xbc\xe8\x95R\xe6\x82qv~zvz\xb1\x01\x00\xf1.\xf8\xb9N\x89\xdb\x94\x90\xfe\x9a<\xc8<\x88\x04\x02 \x8cL(@N\x07\x0f\xd8\xc2i\x12O\xaaL\xec\x17\xc5\xbces\x07\xf0q@\x94v\x1e\xab\xbf\xb6s\xb6\x8c\x15\x93!\\\xcc\x12Z\xe0b]k0^\x18P\xef\xf9\xc4R\x18\x8e\xa3xg\xc7P\xbc\xb3\xe3\x97\x88\x05\xdd\xf0\xc0V\x05\xb9K\xf2\xaaL\xd7\x9d\xa5n\xe49yq\x95\xca\xe6\xb2\xc0\xd1\x8d8\xd4\x12\x9e\x93\xde\x01\x12e\x93\xa0\xbb2\x90\xf62\x07\xe9\xf8\xd9\x8c\xb6h\x91\x90;\xd1\x97$\xafhH\xed\xe4\x19\x08;\x01\xe9\xd5z\x85\xcfl\xeb\xff%\xed>\x1b\xf0\xd9\xf7\xe9\xf1\x8f\xe0g\x86M\x1eJ\xe70k\xec\x18\x0d\"\x14\xe7\xc7\x0d\x0b\x8c\xaa\xac$a_\x8d_H\xf4Il\xef\x8a\xb4\xcd<\xf6\xaea\xc2\x88\xb1\x9a\x98\x05\xad{>\x0d\x19\x92M\x87\xf6\x90\xec\x9d1\xa4&i\x12\xe5Y\x99\xc4\xea\xf4\x81\x0f~\x93\xf0\xdb\x88X\xf4\xbfZ&e\xc9\x16\xa7\xb4Gy\x81b\x92\xe25\x89\x81\xb9\x85\x0e$\xd9\xe4k#\xc9\xde9\xf9R\xdf Z1g:\xc3\x15C\xae\x1e\xa8\xd2\x13\x9b\xaaS\xa1\x9fH\x16\xe1UY\xa5\x1a%\xa9\xb7\xf8.\x16r\x8e\x88j\xcf\x03\x90&\x0c\xc3Q\xe0\xf0\xb6\xfcM\xdf\xec\x8b+#\x86\x95d\x99h\xac\xab\xd5u@J\xec\xa7b#\xa3>\xa8\xeb\x01'0\xd7\xe1u\x14;jc\xa9\x18X\xdfe\x00\xecli\xad\x8bd\xad}\xa4\xda\xe4\xd9\x01\x85\xa5=\xd5W\"\xf9\x9c{\xae\\\xe4\x98R\x1c-\xc4h:\x15\x95\xadM\x82#w\x05\xeb\xe6\x8a\x91\xf3\x98\xef\xdd\x83\x19\xd7\x0d\x16K\x8c$\xe7\xf2L\x1eh\xc8\xd72M\xc9N\xb2>\xb8\x1a%\xc2\xa8 -\x10Zd\x84\x109\x016\xa6\xc0\x96C\x89@gx[\\(z|gt\x90\x14h0\xe2\xa7\x16\xc3K\x0e\xf5ic9<\xc6GC\x82\xb0\x04\x16Q\xf8\x12\xd82F\x9ci=m\x80\xec\x11\x87\x05\xc1\xb3\xc9\x97\xc0\x1f\x03U\xc5 y\xea\xc7_m\x85C\xcf\x10\xcad\x8c\x1c\x8aa\x1ac\xa5\xbc\xc24\x06\x00U +\x81\x80\x96\x02\xfd\x9d\xc5 \x9f'\xa0.\xb8;\xf8;\x8ba\x10\xaf\xc6\xb0.\x08\xfd\x9d\xc5\x00\xa7|\xe4I2\x8c\xf2\x0d\x83AQ\x9f,\x06\xa9\x97\xc7\xcca\xb0\x80\x1c/\x83A\xfa\xd7O\x99\xbf\xd0\xa4g\x04\xcf\x02\xa8:\xa0\xfcF\x1d\x1c\x03\xbb\x13\xff:\xe8\x97\xb9\xd0\x12v\xd8$\xbd\x14\x1eml\x88\x9a\xe0\xc0\x1c\xdaJ\xe0\xf9\xf6\xb9\xb5\xad|\x85\x81\\|-[ \x0b\xbe\x96}\x90\x17\xd2\x08\x0c\x0b\xd9s \x9b\x86\xd2?\x8a%\x87\xd2\xddI\x85\x18s\x8fd\x05\xee\xdc+\x81@q\x85\x8b\x92\xd8\xbdg\n\x92\x0c\xb2t\x08h\xedP\xcf\x8c=\x04\x9f?\x08\xbe\xd4PO\xc1\xa0\x1e\x19|`@}m!\x1a\x96\xc9\x87^,\x07C62\x08\x90\xf6\xca\xc9B\xb0L\xa6W\xca\xcba\x16\xb4\x0b\xcabE{B\xe8'\x83\x90\xf1@\xfdX\xbe\x19\x1f\x83\xa6$\x08\xafw\x9e$\xea\x9d-\x88\x9e\x92##l\x16\x01Suh\xf6\xa0\xb8\x16v'\x0f\xca\xed\xdc6r\x07\xad\x18\x89\xf1<\xf9\x84\xea\x07\x12Um\x8cK\x1b\x1buz\xe2\xdbd\xae\xfa9\x93\xf8\xb7n\x12\"\xffKw\xca\xb4\xee\x96\xf8\xafDH^\x94\xaf\xd6\xb5\xc7'\xfe\xd0Lu\x12H\xb9\xf2\x1e\x03.\x81\xdf\x11\xf0\x9f\x9b\x06gvX\n\xc8\x18\x04E8C$\xe1E\xb8g\x04a>\x89w\x10yw\xedZ\x92_\xf6\xbf|\xfa<\xc3\x07\xbb\x87\xf3\xf7\x87\xbb\x1f\x0e\xbf\xe0\xdd\xcf\x1f\xf1\xa7\xdd9\x89\xf0\xfel\xefp\xff\x80\xec\x89*\xecJCD\xee\xf6p\xd2\xa8\xcb\x01}\xb8\xee\xdf>^\x93\xbdG\xfcH\xab\x8f\x87\xf4\xe1\xf0\xe10M\xef\x0e\x1f\xa2/\x8f\xb4\xbc}Ho\xeeIj\xc38\x94\x8a8\x16;\xeb\"s\xbd\x19z\xf8y\xef\xfd\xfc\xf3,\xda\xfd\xb8\xf7\xf1\xd3\xee\x072;\xdc\xfdr\xb8?\xdf=\xd8?\xd8\xff\xf8i?: Q\x8b\xa1b\xb0\x8dX*@\xec\xdf>8\x99\xfa\xa5\xbcM\xa3\xc5\xfb\xf2\xe1>\xfb\xf0\xe1\xd7\xe1\xde\xaf\xc7k\xfa\xb9(\x17w\xb7\xeby\xf1+*\\\xe4\xf0\x8e\xc2\x8c y\x96\xaek\x16\xa0\x84\xa7\xc0\x19\x07\xf18-s\x17~\xb2\xe1\x83U\xf1\x05\xef\x99F\x92i\xebVI\xb3_)\xcd\x06\x9f} \xf6o\x0f\x9c\\\xbe\xffp\x10\xdf\x1e\xfc\x8a\xef\x961~\xac\xee\x1f#\x1c\xc7\x8b\xc5\xe7\xebe\xf5~\x19=\x92\xf7\x1e\x06\xb8w\xdf\xe32\xc0\xdc5\x8b\xac\xb1\xc6Y \xcd\xd1<\xc9\xb8B\x0c\xccLn72\xe9\xcb\n\xf9\xca$c\xcb\x072;I\x9c\xa0\xfa\xc8\xf4u\x1c\x80\xd1\xd9\x18J\x88z\x9e\xe2k\x8e\xafnP\x90\xab\x9f!\x1ahy)m\x97\x0cg*\x89\x91F\xaf6\x96\xe5*\xcfJ/\xd9\xd2\x10>\x0d\xe1\xa6Y\x0e\x91\xee\x9d+j\x8f\xd7\x93h\xf2 \xf0\xf0\x1e\x17\x8cEtk07\xd1\xf2\x87\x1c{\xe7\x85+\x07\xc1\x03\x92BD\xd6\xccv\xb8#hD\"[\x83A$\xeb\xccA\xd602\xb4\xce\xabB\xfap\x950W{\xe7$\xa3\xef\x0f:\x0cr\x94\xff\xf6\xe0\x10\x13\x8a\x93\xf4\x85\x94\xea`\x9f_U\x85\xb3\xebL\xd0\xc0\xf1\x0c\xd7\xc1_[O&V\xb8\xc0KBIa\xe0\xbc+\x92z\xb5[\xe3\x9a\x81\xad\x15\xd1\xd7\xf9\x1e\xe6r\xfb<\xc1!.u\x92\x1d\xa1\x15\xa6f\xb0&S\x0dIA\xe2#D\x8b\xca4\x0dV\x16+n\x19~\x05\x90a\x83=\x11\xc3\xe7h\xaf^\x87\xff1\x1a\x95\xf5\x96\x00Hd\xff=\xc4\xd0\x9d\x83\x9e\x19\x0dh\x96Y2\xf6.a\x83\xbd\x81mG\xc0du\xcb\xac\x85UXs\x9c\x96`i\x19\xce>P\\\x83\xb7\x07\xe3n\nF\xe4A\xc3\x0f\x06ra\xa8\xeflx\xc9\x0dxp\xe7q\x08\xe1m\xc7\xaaM\xb9\xf4b{\xd2\xde\xc7}6\x1c\xe5\x17@w\xcb\x17\x06\xd2=\xd0\x83\xae}\xe56\xe5[\xa7\xb3\xe5\x0e\x03\xe9\x1c\xe4D\x1b\xeer\x03\x98\xc3u\xde\x9cJ\x8a\xaf\x1b\x1e\xc9\x1f\x12\xda\x84iL\x92\xe1,\"\x93%\xa18\xc6\x14O\xee\xf6'|\xf9M\xfe\xa3\xb4\xed\x7f'\x8d\xad\xe65\xd1~tY-\x97\xb8X\x1f\xe9.\x1a%\xc1E\xb4\x90-7\xe5W\x8a\x16\x17\x1f/\xeb\x8bT\xa6\x11w\x98\xaaW\xaa|G\x15&\x0b(\xcf\x7f\xd4\x8c\xd9Xs2\x844<\xce\x83\xdd\x8e\xbd\x15\n\xca\xb0\xb9\xfa\x03\xb8#f\xf3\xc0\x1a\xc3B\x9c/t\x91,\x93\x14\x17\xe9z\xa7\xc6\x816\xaa\x92[]\x05^\x9e\xa8e\xea[\x94\x8ca\xda\x1b\xbc\x0c\xf8f\xeb\xbczS\x90z|\xb6\xad)\xf8y=J2\xb3\xbf\xcb\xff\xa0\xe3\xb9p\x0fp\xdb\xc4\xd6\xf3F\xb6@4\xef0x\xc3\x19\xa3\xc6]AhUd\xbcw\x8c\x0d\xb4\xe9l\xd4pq\x9a\xd6w\x142MJH\xb2/\xf8Z@o\x990\xe4h\x93\xfa\xfdo\xd6\xd1\xda\xf2Q\xe3:\xc7\xc3\x9a\xf1\xda\xa5U\xdd\xfe\x14\x858\x8b'\xf5\x84\xb8J\x9a\xfck-.\xdb\x80\xfa'S4\xc3\xb1yS\xa2~\x84\x92\xf9\x91\x89\xd8es\x8er\xc5\xc9'&\xceb\x94\xe5V\xee\xbfk\x01\x90\xad|\xe8}\xce\xa63o\xe7\x93\xcf\x9b\xba\xc4$\x89\xdfaI\xb0\xfc\x7f\xe6\x82Y\xa38\xcf\xdeP\xc9\xf1\xb9\xd0\xda|!1\xe6\xc9=\x801\xfc\xb4\xc3\xd5\x1d4\xab(\xcarj\xe1,nt \xe8\x82\x11\x9d\x0b\xeb\xa9\xcc\xc8\xd2\xd2\xc2r\xc3\xc2\x7f\x19\xe7\xa4dx.1\x8d\x9a]\xb2\x8c\xefM\x89\xfcs\xadN?v\x0c\xdfJ\xb4X\x92\xae\x84\xe8\x87Du\xb9'\x03\xc3\x0bB[\x0e\x9c\xa4H\xbfT@\x18\xbb\n\x91]\xeb>\x06mN4m\x1at\xa5\xb0\xe3X\xdb\x12ub\xa1\x0c\xbfa\xc1\xde\x1c\xec\xed\xbdq\x9f\xe5\x18\x99\xc6\xdb<\xc4q\x1c;\x87O\xdf\xb4#\xcc\xf8\xa3\xcb\xa4F\xaa\xed\x14Z\xe4i\\\"u{(\x16\xff\xdb\xc4\x16\xcb\xe1\xbe\xd1\xdc\xfcz\xd1w\xfa\xe8\x89c\n\x9d\xdb\x84./\x11\xec\xf4\x05\x18\x19\x12NEE\xe8\xa7(kz\xfc{]\x95B,w\x84\x8e\x97\xab\x94w\xdf+Q\x19\xdf\xbc\x9b\x06\x12-\xa5\xcd\x9a\xe3H\x1cU\xf2z\x9fBM\x89/\x89Xk\xca{k;\x80\xcd\xe7k^.s\xd7`%8/\xf9i\x99Yk\x98\xb2\x9bN\xac\xa3\x0b\xfc1\x0f\x8d/\x85+\xc9\xeb\x8e\x10%\x0b\x9c\xa6\xf9\xbd4c2\x8f\xdb\x07.r_\xc4\xf0^\xed\x9eX;\xdf\xc9\xa6z\x82Ea\x82kF<\xe1\x95#\x1e\xbc\xad\x82\xa5\xd8\xde\xa4\xf3\xadJ\xf0\xf7\xd7c+\xf24X\x88\x0d2\x83\xc4\x839\xbczE*d\x8c\xe2\xc3\x91,\xcb\x0b\x8cr\x93%\x00\x08\xa0\x18i/\xe6\xc1\x8a\xaa4Z\xb4\xf7\xa93\xd2\xec\xd0\x7f~\xfc\xbf\xc7'\xd3\xcb\xd3\xf3~\xdf]|;\xff\xf3\xf8\xeb\xb7\x9e_\x1d\x9f\xfc\xf9\xed\xa2\xf7X_\x7f^\\\x9e\xfe~<=\xe9\xf7\xd9\xe9_'}\xf1\x9b~\xff~\xfc\xe3xz\xf9\xad\xdfg\xa7\xffwr\xfc\xcf\x9f\xe1\x924\x8d\x8f\xce\xceO\xff\xfcv2=\xf9\xdas\xb0\xaf\xa7'\x97\xe7\xa7?~\xf4\xa5M\xf7\xeb\x0f|\xa6+\xd9\x0c\x9a^a_\xa5\xf9\xb8f\xf1\xc0\xe1\x91\x88\xf2\x92\xf7m=*\xd28\x16\xc5\x91\xfd\xb5\x1c\x05\x97\xbc\xa7h\x91\\'\x19\xa6\x90\xc2\x9c\xd65td{\xa9\x9c\xf5\x12\xc5dFQI\x8a\xbb$J\xb2k4\xaf\xb2\x88\x9b\xb1\x9e\xa3\xa9\xb5wd{)vK<\xd0,\x89P\x92\xdd\x91\xb2?=z\x9d\x1eY\xdf*\xd1d4\xa1ka\xbe5\x8dQU\xd2:|\x1eL5\x93Ti0F8\xe7\x18\xae\xe8\"/\x92G\xa1\x11\x0b\x12\x91\xe4\xce7\x11\xear\xd8\\.\xdd\xde\x02\xfa\x88\xc1\x01\x84\xc7\xa6\\\xf1yw\x15\xdc\xee\x8d\xcd\x87z\xa16\x8d\x0f\x93\xbe(\x0b\xdf\"\xc8;7\x8d\xd3\x94\x0b\x8a\xb3\x18\x17\xb1i0\xa4\x05\x13\xcd\xf0\x97\xb8\xb8\xb1\xc41\xd5\x8f\xfa\xb5o90\x81\x95\xd5j\x95\x17\x8dB\xa3\x1c\xf3w2\xbe\x00SZ$\xb3\x8a\x12\xb4\xc4k~ \xef\x018#L_g\xd7$F\xb35\xe7\x82\xd4\xf2u1\xb9<\x8b\x98'\xc2\xf4\\I,i\x0f\xe2\x91\xc7>W\\\xe7^\x15y\x9aV\xab\x90XC\x9a\x1d.\xd7\xbf\xa4\xda\xc7i\xaa\x97\xb6\x9a\xe9\xf5\x99pBK\xbd\xc4=\xc0\xd4\xad\x9cR\x96\x0d@oJ\xa52\xe7 Icg\x849R\xe1\x1e8-sD2\xd9\xd7\xa7\xda\x8aF\xbb0`l\xbb\xe0\xa3\xf2.\x06\x84\x97a\xcesj\xd4b\xe6>/\x8a\xf24%\xdc\xc5\xa9/\x1f\\82\x02\xf8,\xca3\xa2\xaf,<\x88\xaa\xa3RO\xcc+\x8c\x92\x06\xa0\xfa\x1c.TR\xce}\xb6R\x1b\x19\xeb\x0f\x82G^\xe1\xc3\xae\xa7<&n0\xd1\xbcy\xa2\x83+\x01i\x8e\x87\xd2K\xb7LE(C\xb4\xa6\xc8\x93c\xa7\x81\x89\x7f\xf8\xd3\xeb\xb6D\x90W\xb9Y\x10D\xbe\x82<\xa1\x13h\x10?\xfcy\x97 6\xf4\xa50\x98]9\x16m#\x88\xb8/m\x1b\xe5IZ&\x80[\xa1\x86\x0b\x0f\xc0p\xefB\x0b\xa8V\x07\x9cn\x11\x1d\xcb\x15\xca\x96\x15m\xb0\x90\x00H\xe6[Y\xd6\x81j\x01\xde\x0b\x1e\xd4\xbeO\x82\xe9mhm\x80gg\nD\xbdCa\xc1Xb\xfco\x04%\xb1U\xde\xb4PmZ\x04\xfd\xda\x03\xcej&\xe1\xdcz\x06\x03\x01\xcb\xc1\x1f\x7fb\x8c0\x15\x06\x91:\x82\xd1p\xcc\x966\xd1jW\xd4\xa5\xd2w\x9a\xb1\xad\xf4\x17\x89\x8d\x8b\xe5A\xb3\x10\x1e\x01\xa1pj\xb4x@\xd2\x05.ux\\\xc3\xb8\xe3\xf6\x99~\xba\x13n]^\xddQ\x90\x06\xd4\"\xc5V`]2\xde\xb5\xf0\x90\xda4\x86\xd9\xf32[\xda\x04\x0f\xb5\xd4\x03\x94\xb1\xfc\xf1\x18q\x0c\xb0H\x06\xe8 \xb8x\xc6\x8df\x18\x10\xcf\xd0\x93\x91\xb0\x98\x86\x0d\xa2\x1a\x86\xc75\x0c\x8dl\x18\x1a\xdb08\xbaaP|\xc3\xe0\x08\x87\x811\x0e\xc3\xa3\x1c\x86\xc79\x0c\x8ct\xd84\xd6\xa1\x9f\x86\x17\x8f3\xde\x01\xf0\xad\xfd\xcb\xa1\x11\x0fO\x16\xf3\xf0\xd4Q\x0fO\x11\xf7\xf0b\"\x1f\x9e%\xf6\xe1\x99\xa2\x1f^T\xfc\xc3\xeb\x88\x80x\x811\x10\xcf\x1b\x05\x01\x8f\x83\x80\xde\x97\xe9_\x8f\x18\x0b\x01\xf7\x05G\x8a\x87\x18\x14\x11\x01\xc5R\xdf\x0d\xca\xc3\x12\xc2\xbb\x82\x89\xe2n\xfc\x0f23\xe8:\xe3%\xce\xbc\xa1\xd7(\x8c\xd6H\x05\x82a\xb4\xf1\x0c\x1a\x9a\xd7\xec3/\xe4\xe5\xbd!\xac\x01\x9ct\xd7w\x18~I\x84\xd3t]\xb7\xfew~(?\x1a\x81\xdc-\xeci\xd5\x06D\xa4\xb0&$\x15\x97\xe7\xcc\xc22\x93\x1e\xa5 \xc9\xea\xfd-\x8fl\xf0\xc2\xebN\xd1\xe0\xa6\x16Wq\xe2\xe5N\x1fz\xbe\xf2\xedt\x8cf\xeb\x1dT\xadb\xfdo\x9a,II\xf1rU\xee\xe8\xe30Qe\xd0\xdf\x9aS\xa4h\xa5\xb2y\xdc\x97\x8c(H\xa92`\xc4\xba*35\x1f\xa3N\xd3\xc7\x0f!\xb8`\xce0_Y\xfa.-='8\xc3k\xa2G\x05\xf7\xe6\x01\xe7G\\\x87\x13\x1c-\xa4\xc4\xbd\x1f8\xabK5\x9f\xad\xcc\x08\x93n\x89\x87%\x02/\xb4P\xa4\x82J\xf2l\"\xe8E\xe4\xce\xbf\xed\x81a8e&\xee;\xb3\xae%\x8a\xf0Jx\x99\xd6(\x1c\xb6\x02\xbd\xa0\xf4<\xcf\xd1\x12\xdf\x109\xd5U\xd6\x1c3Wra\x935\xba'E@b8v\xfd\x00jte9\xb6:^\xca\xf0\xa5\xb4w\x81\xafq\x92\x95\xd4\xd8\x9d8\xe15\x8f\xd2\xd9W8\x8b\x88'\x9a\xec\xd28F\xe59\xea\x0b|G\x8c\x91$\x87y\x8c\x18U[\xcc\x84\xb8\xd5B\x92\xdd\xe5\xe9]3\xc1\xbd\xfd\x9c\x9c\xb2\x9d\xf4_\x92\xd32#=\xcbEh\xd7y#\"\x18a\x19Q\xd6H\xe3o?u|\x19V,\x15\x89\xdb\x8a\xbf<\xa9~\x99\xdf\xb9\x1a\x03\xd7\x976\xa34\x0bj\x81\x1b\x16\xe1`\x8dq\xf0\xbb\x83\x00\x1f\n\xe2?=\xfd\x15V;\x10\xabQ\xe4\xc0\x1e\xc0\xd0,\xc4\xe1\xf6,\x0dY\x84\"\x13\xb6JS@\xc9u\xd0\x1c\x1a\x9e\x80\x1ae\x13\xc2\xbf\x01\xc5\xa7\xbd\x10\xcet\x83\x9e\x8c7\xc0\x0e\x0e\xb4QD\x03\xc6!\xf9\xcf\xd7\xc1#\x03\xd9\xfa@\xc2x'\xf9\xe4\x85\xd7\\d >\xf9\x037\xc0\xcc\x19B\xf5\x08\xb1\x1b\xfdV\xcdH\x13a\x08\xad\x1b\x05o8'\x8a\x87d\x15$8f\xc7\xa1\x06P4vWV\x88$A\xb6\x12\x01\xed%B\x90\xd0k\xf1\x00\xa7\x06\x82\xeb \xb4\x9d`l\xf1hI\x85m'z\x1a\xea\x00\xdb\x99\x16\xd2\xc3-\xa9 \x0c\xc8'\x985E/\x8fWc\xd8V\x84\xfen\xcb\n\xa7|\xe4I2\x8c\xf2\x0d\xed \xb2O!;\xf9\x9d\x96C\x98\xcd\xdf\xef\xcc\x11\xf2\x86k<\xc7\xd11\x8ccu\xe2\x81Z~\xea\xdeCe\x1c\xb4\xb2\n\x02\xaaS\xf3\x1a\xbd\xe55+\x13\xba@\xf3$\xa5\xa4 1\xba\xb9S\x16\x9e\x92\x02\xd3\xbcp\x87\x8d\xc9\x98t/\xbb@\x04J@J\xdf4<_E\x99\x10\xb5\xb7t\x83\xd69\xeb\xe6mT\xce\xe3\xf4\xf2\xf9\\F\xc45\x1b7B\x99\x15\x9c\x14\xa3\x1d\xc8\x00\xd3%\x80S\x11\x81\xc5\x80P\xe7\x86\xbd\x13\xdc\xc8\xc5\xa1\x96l\x10\x9a\x14\xac\xf7w\x0b\\.\xc6'\x95\xca\x8e\xee\x9c\x88\xcc\xa8\xd1\xa2\xe6Z0\x8d\"\xa4\x14\xd1 \xbc\x00\"\x90\x15\xbc-\xb7\xd8\x1a\xf9\xb7l`\xde\xfd\xc6\x1f\xc5\xc4\x1e\x1d\xa8\xc6\x8b\xc07\xa5\x19\xe5\xcbe\x9e\xf1\xf1\xfc\xd1\xa1\xa2\xc3\xd6\xb3\xb0C\x0c-\x02\xd5\x14\x19\xf5\xad)\xcd!\x97\xcb\xea\xd1\x95\xa7\xd1[\x01\xf6\xb7\xfa\xb2\x96\xf3i\xa2Y\xe3\xbd\xb5U\x0fS\xbdIv\x97\xdfx\xe6R\x92\xad*\xfajS\xb7 \xab\xa0\x97\xe0!N_\xfb9ab\x17\xc5\x88T\xd1r&\xf84\xc9n\xd0\x0cG7\xb2x;\x00\x12\x8fV\xe0I\x18|\xd2\xf8\xcf\xbat\x91\xf5\xf0aWO\x16\x00\xdd\x03\xf1\xc0\x97\x8aE}KC_G\x83\x7f\x07\xa5P|+)\x9e\xa5I\xb9 \xb1\nk\x08\x85\x8fC\xf4xO6\xf5\xa5\xdc\xae\xf0\x13\x12\xf1\x14\x03\xc3\xab\x00\xc0c\x8cBgE\xbe\xcaK8\x0f\xb4Z\xde\x0e#x[\xc9\x95\xc2i\xce\xcf\xf6hQE<\xae\x88\xfbHK\\\x94\x8b@\xf8:B%\xc5\xb4\n.\xfd~\xfc?\xd6Y,\xc9\\\xb8M\\\xf1q\x15\xa9\xa6\xa1B\x1a$\x00\x9d`\xf1\xab\xe2\x11D\"Z\x9e\x89\x98\xdf\x97\xad\xaa\xb0z\xee\xc5cx\x16\xe4\xf9\xb7\xaf\xa7\xe7\xbf_\x1d\x9f\x9c\xfd\xbc\xbc\xba\xb8\x9c^\xfe\xbc\xe8\x95\x99\xe6\x82qv~zvz\xb1\x01\x00\xf1.\xf8\xb9\xce\xac\xdb\x94\x90\xfe\x9a<\xc8<\x88\x04\x02 \x8c\x84*@j\x08\x8f\xfb\xc2i\x12O\xaaL\xec\x17\xc5\xbces\x07\xf0q@\x94v\x1e\xab\xbf\xb6S\xbf\x8c\x15\x93!\\\xcc\x12Z\xe0b]k0^_P\xef\xf9\xc4R\x18\x8e\xa3xg\xc7P\xbc\xb3\xe3\x97\x88\x05\xdd\xf0\xc0V\x05\xb9K\xf2\xaaL\xd7\x9d\xa5n\xa4Kyq\x95\xca\xe6\xb2\xc0\xd1\x8d8\x1b\x13\x9e\x93\xde\x01\x12e\x93\xa0\xbb2\x90\xf62\x07\xe9\xf8\xd9\x8c\xb6h\x91\x90;\xd1\xdd$\xafhH\xed\xe4\x19\x08;\x01\xe9\xd5z\x85\xcfl\xeb\xff%\xed>\x1b\xf0\xd9\xf7\xe9\xf1\x8f\xe0g\x86M\x1eJ\xe70k\xec\x18\x0d\"\x14\xe7\xc7\x0d\x0b\x8c\xaa\xac$a_\x8d\xdfk\xf4\xc9\x8f\xef\x8a\xb4\xcd<\xf6\xaea\xc2\x88\xb1\x9a\x98\x05\xad;G\x0d\x19\x92M\x87\xf6\x90\xec\x9d1\xa4&i\x12\xe5Y\x99\xc4\xea\xf4\x81\x0f~\x93\xf0\xfb\x8bXt\xd1Z&e\xc9\x16\xa7\xb4Gy\x81b\x92\xe25\x89\x81)\x8a\x0e$\xd9\xe4k#\xc9\xde9\xf9R_-Z1g:\xc3\x15\x8a\xae\x1e\xa8\xd2\x13\x9b\xaaS\xa1\x9fH\x16\xe1UY\xa5\x1a%\xa9\xb7\xf8.\x16r\x8e\x88j\xcf\x03\x90m\x0c\xc3Q\xe0\xf0\xb6\xfc\x0d\xd5\x0d\xea\xab\x94r%-Y\x96]7\xd4u@J\xec\xa7b#\xa3>\xa8\xcb\n'0\xd7\xe1u\xd4Ljc\xa9\x18X\xdfe\x00\xecli-\xafd-\xa1$/\x8f\x1c\xe0\xc2\xd2\x9e\xea+\x91|\xce=W.rL)\x8e\x16b4\x9d\xd1\xca\xd6&\xc1\x91\xbb\x10vs\xc5\xc8y\xcc\xf7\xee\xc1\xc4\xed\x06\x8b%F\x92sy&\x0f4\xe4k\x99\xedd'Y\x1f\\\x8d\x12\xa8\xd4\x84\x16\x88P2\"\x91\x9c\x00\x1bS`\xcb\x11I\xa03\xbc-.\x14=\xbe3\xc8H\n4\x188T\x8b\xe1%G\x0c\xb5\xb1\x1c\x1e*\xa4!AX\x02\x0bL| l\x19#\\\xb5\x9e6@\xf6\x88\xc3\x82\xe0\xd9\xe4K\xe0\x8f\x81\xaab\x90<\xf5\xe3\xaf\xb6\xc2\xa1g\x88\x882F\x0e\x85B\x8d\xb1R^a6\x04\x80*\x90\x95@@K\x81\xfeN\x86\x90\xcf\x13P\x17\xdc\x1d\xfc\x9d\x0c1\x88WcX\x17\x84\xfeN\x86\x80S>\xf2$\x19F\xf9\x861\xa5\xa8O2\x84\xd4\xcbc\xa6BX@\x8e\x97\x08!\xfd\xeb\xa7L\x83h\xd23\x82g\x01T\x1dP~\xa3\x0e\x8e\x81\xdd\x89\x7f\x1d\xf4K\x80h ;l\x92^\n\x8f66DMp`\x0em%~}\xfb\xdc\xdaV\xda\xc3@.\xbe\x96-\x90\x05_\xcb>\xc8\x0bi\x04\x86\x85\xec9\x90MC\xe9\x1f\xc5\x92C\xe9\xeedT\x8c\xb9G\xb2\x02w\xee\x95@\xa0\xb8\xc2EI\xec\xde3\x05I\x06Y:\x04\xb4v\xa8g\xe2\x1f\x82\xcf\x1f\x04_j\xa8\xa7`P\x8fD@0\xa0\xbe\xb6\x10\x0dK\x08D/\x96\x83!\x1b\x19\x04H{\xa5v!XB\xd4+\xe5\xe50\x0b\xda\x05e\xb1\xa2=!\xf4\x93A\xc8x\xa0~,\xdf\x8c\x8fAS\x12\x84\xd7;\xdd\x12\xf5N:DO\xc9\x91\x116\x8b\x80\xa9:4 Q\\\x0b\xbbs\x10\xe5vn\x1b)\x88\x02\xb4'\xd9P\x8e-\xaf\x81\xbb\x99\x83<\xa7\xb0+\xe7\xd6 \xfcW\"\x8e.\xcaW\xeb\xdaM\x13\x7fh\xe6'!\x9e\xcd\xe8\x1a2`\xc7\xfd\xd6;x\xf8\x1d\x9c\x91\x10yv\x8e\xba\xb1Z\x86J\x92\xc2H\xee \xf2\xee\xda\xb5\xa6\xc4O\xf7o\x0f\xae\xc9\xde#~\xa4\xd5\xc7C\xfap\xf8p\x98\xa6w\x87\x0f\xd1\x97GZ\xde\x7f8\x88o\x0f~\xc5w\xcb\x18?V\xf7\x8f\x11\x8e\xe3\xc5\xe2\xf3\xf5\xb2z\xbf\x8c\x1e\xc9{\x1bd\xffi\xefH\xd4\xebs\xdc\x08g\x88$\xbc\x02\xf9\x8c \xcc\x97\x9e\x97\xe8/\xfb_>}\x9e\xe1\x83\xdd\xc3\xf9\xfb\xc3\xdd\x0f\x87_\xf0\xee\xe7\x8f\xf8\xd3\xee\x9cDx\x7f\xb6w\xb8\x7f@\xf6D z\xa5\xd7\"wo\xbc&\x97}\xb8\xee\xdf>:\xb9|\xfb\x90\xde\xdc\x93\xd4\xca\xcc@\x02\xe5X\xec\xac+\xec\xf5f\xe8\xe1\xe7\xbd\xf7\xf3\xcf\xb3h\xf7\xe3\xde\xc7O\xbb\x1f\xc8\xecp\xf7\xcb\xe1\xfe|\xf7`\xff`\xff\xe3\xa7\xfd\xe8\x80D-\x86\x8a\xc16b\xa9\x00\xb1\x7f\xfb\xe0d\xea\x97\xf26\x8d\x16\xef\xcb\x87\xfb\xec\xc3\x87_\x87{\xbf\x1e\xaf\xe9\xe7\xa2\\\xdc\xdd\xae\xe7\xc5\xaf\xa8p\x91\xc3\xdb)3&\xe4Y\xba\xaeY\x80\x12\x9e\xb8g\\\x1f\xe0\xb4\xcc]\xf8\xc9n\x17Vu\xed\xde+\x07\x85)C.\xcc\xdd\xab\xc8\xdej\x9c\xc9\xd1\x1c\xa5y~\xc3\xb4\xb3\x05\x8aL\xf6\x11\x07\x92><|}\x00`\xb3\xaa1\x94PR\xf3\x14_s\xb3\xa1\xdb\x06\xe4\xeag\x9c\x04\xb7\x99\x14@\xa4\xe5\x92\x11B%\xa9\xad\x8b\xda\xaa\x95\xab<+\xad\x11\x1c\x1a\x1d\x99\xdc\xfeD\xc4\x9b\xc9\xf6!\xfa\xfd\xd3\xbd\xdc\x88|\xf2 \x10\xf2n\xc5\xc7\xa2\xbe5\x98\x9bx\xf9C\x8e\xbd\xf32\x93\x83\xe0\xc1>!\"\x15\xd7\x9d^\x03\x1a\x91\xc8\xd6`\x10 ;\xf3{5\x8c\x0c\xad\xf3\xaa\x90\xaeI\x93D?V2\x9d\xea\\r\x07\xd5\xd1u\xe2\xff\x8cj\x19\x91M\xd0\x1f\x15)\xd6\x13U\\\xf7\xfc\xeck\x0b\x98\xc8\xe4\xac\x87W\xa1\xb4\xc6\xcf\x1a\xd8L3Te\xe4aE\"\xe6]\x89\xdeL69\x95\xd1\x82,qS,Ng\xcb\xedh\xf1\x01\xba\xc2\xf5(\xd0(\x8f-\xdaN|\xe0\xaa1\xaev\xa5IF\xdf\x1ft\x18\xe4\xa8\xcf\xed\xc1!&\x14'\xe9\x0b)\x82\xc1>\xbf\xaa\ng[\x98\xa01\xe2\xb9\xa3\x83\xbf\xb6\xee\xf9W\xb8\xc0KBIa\xe0\xbc+\x0c\xa66\xbd\xae\x19\xd8Z\x0f}\x1d\xc4an\xa1\xcf[\x19\xe2\xf6%\xd9\x11Zaj\x86A2\xc5\x90\x14$>B\xb4\xa8L\x03ae\xb1\xe2\x96\xb1;\x002l\xf0~b\xdc]\x04\xe3\xc0-SNV\x16\xccqZ\x82yP;\xb5@\x16\xf4\xf7\x82\x87\xfa\xbe\x9a\x9d\x0dh\x9694\xb6\x9f\xbb\x81wk\xf3iG\x94V\xeb\xfe\xa5!'\xb8\xc3\xbb%\xe4\x1a\x9e,p6\x0d\xf3~-\xdb\xcd!N\xdf\x10\xda\xdb\x0eQ\x87x\xe9\x85\xf6\xa5\xbf\x8f\x03\x8c,\x83\x18B\xc1Y\xdc\xac\xd8\xd3\xaaW\xc8\x17\xb1}\xc0\xd6|\xe0\x1aALY\xba z6\x1b\xd4\xf2\xedb\xd7e\xe5h1W\x84\xe1f\xb0Cb\xd6\xc2\xa8F\xc2\x83\x9a\xe4E\xcb\xdd\xada\xd3VI8mw0\x95\x1fix\xbcC\xce\x8c8\x87\xd2\xa3(\xffE\x8d\xe2\xe0\xc2\x8e\xc93\xdc\xa8\xb4\xa0\x85\xd2dT\x83A\xf5\xe8mN\x85(\xb2Q\xa2\x81M\xd1\x0c\xc7\xe6\x05\x8b\xfa\x11J\xe6G&\xc5\x97\x0e\xa1s$L\xea\xef\x13\xba\xc8+\xda\x94\xbfm\xb16\x18:urS\xc3\xcb\xd6\xe8\x1e\xaf\xb9\xa9QE\xeb\xb4K\x85\xde6V\xb0\xc9u\xdc\xe1\xbb\xc9\xef\x7f\x18\xdf\x18\xb8\xfd\xd6@\xee\xf2>g\xa2\xe1-\x8b\xf2\xb9G\xa2\xcd\xe5e\x8a\xd2\\\xc8\x9a4\xf6\xa38\xcf\xdeP\xae\x02xh\x8a,\xcc\x84J\xe607\xd5\xb6\x9d_\x1c\xfa[\xa6v\x15\xb7\x8d\xa1y\x99\xb2\x0e7\x11n+c\xf5\x99Xvr6\xc59)Q\x96S5\xadPYE\x8b.\xbf5W\x1a\x1f\x9e\x9e\x1f\xff\xef\xf1\xc9\xf4\xf2\xf4\xbc\xdfw\x17\xdf\xce\xff<\xfe\xfa\xad\xe7W\xc7'\x7f~\xbb\xe8=\xd6\xd7\x9f\x17\x97\xa7\xbf\x1fOO\xfa}v\xfa\xd7I_\xfc\xa6\xdf\xbf\x1f\xff8\x9e^~\xeb\xf7\xd9\xe9\xff\x9d\x1c\xff\xf3g\xb8\xb2\xbe\xb5\xa1\xc3\x8b~\xf2),\n2\x89\xf5\x01\xa9\x1d\x85t\xcb\xf1\x90g\x11\x8e\xde1~+\xbc/}\x07\xa1\x05\xfa\xa6Der\x9da\xd1=\xbc\xd4\x83{\xe0\xc1<\xb9):3\xd6\xad\xf2/\xd9\xa2\x9a\xf0\x8a\xe8\x82/\xcc\xd3\xf3\x82i\x17\xaa\x0f\x169\xeac\xd9.\xf9F[\xb6\xee\xae\xa76\xa2\xf9\n\xa5\xe4\x8e\xa4r\x93\x10\x8e[WG!\xc2G}\xd7\x06\xcdO'\x19\x9f\xf9\xd1\x9c\xdc\xba\xfb\xd4%_\xfb\xbc\x0b\xfb\xda\xdd/\\8\xb7|\x7fdiR\"0h\xee>\xbd3\xaf\xcax\xf58\xc6e\x85w\x9a\x94T\x94<3\xaf$]\x11\xa3\x0c\x93+\x1c\xf9\xdbv\x8c\xb8\xad\n\xf8\xe8\xf0y0\xd5LRe\xd2\x18\xe1\x9cc\xb8\xa2\x8b\xbcH\x1e\x85F,HD\x92;\xdfD\xa8K\x83s\xb9t\xfb,\xe8#\x06\x07\x10\x1eMt\xc5\xe7\xddUp\xbb76\x1f\xea\x85\xda4>L\xfa\xa2D~\x8b \xef\xdc4NS.(\xceb\\\xc4\xa6\xc1\x90\x16\xac\xe4\xe7\x91K\\\xdcX\"\xcf\xeaG\xfd\xda\xb7\x1c\x98\xc0\xcaj\xb5\xca\x8bF\xd1U\x8e\xf9;\x19\xf3\x81)-\x92YE Z\xe25\xbf\x04\xf1\x00\x9c\x11\xa6\xaf\xb3k\x12\xa3\x998B\x97Z\xbe.\xac\x97g\x11\xf3D\x98\x9e+\x89%\x05D<\xf2\xd8\xe7\x8a\xeb\xdc\xab\"O\xd3j\x15\x12kH\xb3\xc3\xe5\xfa\x97T\xfb8M\xf5\xd2V3\xbd>\x12Nhi\x8f:h>\xea\x86L)\xcb\x06\xa07\xa5R\x99\xf3\x84\xa4\xb13n\x1d\xa9\x10\x1c~eC2\xd9g\xba[\x97\xa2\xd1.\x0c\x18\xdb.\xf8\xa8\xbc\xa3\x03\xe1%\xa9\xf3\xdc8}\x17>/\x8a\xf24%\xdc\xc5ahK\x1b\xe0\x00\xc8\x08\xe0\xb3(\xcf\x88\xbe!\xf1 \xaa\x8eJ=1\xca0J\x1a\x80\xeas\xb8Py=\xf7\xd9Jmd\xac?\x08\x1ey\x85\x0f\xbb\x9e\xf2\x98\xb8\xc1D\xf3\xd2\x99\x0e\xae\x8a\xa49\x1eJ\xb5\xdd2\x15\xa1l\xd9\x9a\"O\xbe\xa1\x06&\xfe\xe1O5\xdc\x12A^\xe5fA\x10\xf9\x8a\x13\x85N\xa0A\xfc\xc0\xde\x1cT\x10\x1b\xfaR\x88C\x99\xa6c\xd16\x82\x88\xfb\xd2\xb6Q\xce\xa8e\x02\xb8\x15j\xb8\x08\x03\x0c\xf7.\xb4\x80ju\xc0\xe9\x16\x14\xb2\\\xa1lY\xd1\x06\x8b*\x80d\xbe\x95e\x1d\xa8\x9c\xe0\xbd\xe0A\xed\xfb$\x98\xde\x86\xd6Ixv\xa6@\xd4;\x14\x16\x8c%\xc6\xffFP\x12[\xe5M\x0b\xd5\xa6E\xd0\xaf=\xe0\xacf\x12\xce\xadg0\x10\xb0z\x04\xe3O\x8c\x11\xa6\xc2 RG0\x1a\x8e\xd9\xd2&Z\xed\x8a\xbaT\xfaN3\xb6\x95\xb0$\xb1q\xb1\xd3Ow\x05\xaeK\xcdG\xf6\xe2<\xa0v1\xb6b\xf3\x92\xf1\xae\x85\x87\xd4\xa61\xcc\x9e\x97\xd9\xde'x\xa8\xa5\x1e\xa0\x8c\xe5\x8f\xc7\x88c\x80E2@O\xc0\xc53n4\xc3\x80x\x86\x9e\x8c\x84\xc54l\x10\xd50<\xaeahd\xc3\xd0\xd8\x86\xc1\xd1\x0d\x83\xe2\x1b\x06G8\x0c\x8cq\x18\x1e\xe50<\xcea`\xa4\xc3\xa6\xb1\x0e\xfd4\xbcx\x9c\xf1\x0e\x80o\xed_\x0e\x8dxx\xb2\x98\x87\xa7\x8ezx\x8a\xb8\x87\x17\x13\xf9\xf0,\xb1\x0f\xcf\x14\xfd\xf0\xa2\xe2\x1f^G\x04\xc4\x0b\x8c\x81x\xde(\x08x\x1c\x04\xf4\xbeL\xffz\xc4X\x08\xb8/8R<\xc4\xa0\x88\x08(\x96\xfanP\x1e\x96\x10\xde!M\xa4\x10\xf1?\xc8\\\xb3\xeb\x8c\xa7nyC\xafQ\x18\xad\x91\x8a%\xc3h\xe3Y54\xaf\xd9g^\xc8\xcb{CX3<\xe9\xae\xef0\xfc\x92\x08\xa7\xe9Z\xb4\xf7\xf7\x16N\x96\x1f\x8d@\xee\x16\xf6\xb4j\x03\"\x12\x96\x13\x92\x8a\xcbsfa\x99I\x8f\xd2\x84d\xf5\xfe\x96G6x\xe1u\xa7hpS\x8b\xab8\xf1r\xa7\x0f=_\xf9v:F\xb3\xf5\x0e\xaaV\xb1\xfe7M\x96\xa4\xa4x\xb9*w\xf4q\x98(\xc3\xe8oS*\x12\xa6R\xd9Ho\x9e\xbb\xc9\x00\xef\x98\xa1\xfbeq2\x10_1\"B\x8a\x108\x81\x901\x89\x18\xd8]\xc6\x96\x10h\xb1\xc6d\xbc\x11\x99\xb0O\x98\x06\x95w\xff$\xa3\xc5\x9a\xb7\xcf\x93\xf8\x82h\x9a\xadG\xa4\x08\xa6\x05\x90\xdcA;\xce \x84\xcb!gOP\xc1!\x1d\xf8\xe5\xfd\x99\x9c\x81\xafF\x84).\xa9B\x1aD\xd8\x0b\x95#\x0f\x9fKF\x14\xa4T\x190b]\xb5\xb4\x9a\x8fQY\xeb\xe3\x87\x10\\0g\x98\xaf,}\x97\x96\x9e\x13\x9c\xe1\xf5\xe1\xa3\x82{\xf3\x80\xf3#\xae\xc3 \x8e\x16R\xe2\xde\x0f\x9c\xf5\xc0\x9a\xcfVf\x84I\xb7\xc4\xc3\x12\x81\x17Z(RA%y6\x11\xf4\"r\xe7\xdf\xf6\xc00\x9c2\x13\xf7\x9dY\xd7\x12Ex%\xbcLk\x14\x0e[\x81^Pz\x9e\xe7h\x89o\x88\x9c\xea*k\x8e\x99+\xb9\xb0\xc9\x1a\xdd\x93\" 1\x1c\xbb~\x005\xba\x17*\x0fZ\xc5K\x19\xbe\x94\xf6.\xf05N\xb2\x92\x1a\xbb\x13'\xbc\xe6Q:\xfb\ng\x11\xf1D\x93]\x1a\xc7\xa8<\x87\x7f\x81\xef\x881\x92\xe40\x8f\x11\xa3j\x8b\x99\x10\xb7ZH\xb2\xbb<\xbdk\x16\x00h?'\xa7l'\xfd\x97\xe4tAd2\xb5\x08\xed:oD\x04#,#\xca\x1au$\xdaO\x1d_\x86\x15KE\xde\xf6\x85Yib\x99\xdf\xb9\x9a$\xd7\x976\xa34Nj\x81\x1b\x16\xe1`\x8dq\xf0\xbb\x83\x00\x1f\n\xe2?=\xfd\x15V;\x10\xabQ\x04\xc2\x1e\xc0 %\x1b\x08Mh\xc8\"\x14\x99\xb0U\x9a\x02J\xae\x83\xe6\xd0\xf0\x04\x13\x14\x88+\x90\xe0\xa5\x17\xc2\x99n\xd0\x93\xf1\x06\xd8\xcd\x826\x8a\x8c\xc08$\xff\xf9:xd [\x1fH\x18\xef$\x9f\xbc\xf0\xf2v\x05\x9e0\x9f\xfc\x81\x1b`\xe6\x0c\xa1z\x84\xd8\x8d~\xabf\xa4\x890\x84\xd6\x8d\x827\x9c\x13\xc5C\xb2\n\x12\x1c\xb3\xfbR\x03(\x1a\xbbC-D\x92 [\x89\x80\xf6\x12!H\xe8\xb5x\x80S\x03\xc1\xf5\x04\xdaN0\xb6x\xb4\xa4\xc2\xb6\x13=\x0du\x80\xedL\x0b\xe9\xe1\x96\xd4\x04\x06\xe4\x13\xcc\x9a\xa2\x97\xc7\xab1l+B\x7f\xb7\xa8\x85S>\xf2$\x19F\xf9\x86\xf6\x04\xd9\xa7\x90\x9d\xfcN{\xa21\xf6ZV\xa0\xe3\xed\xb8\xecQj[\xde\x80\xb5i\x1a\xc1\xd7\x00\xaa\x10(\xd7Q\x8f6}\xe1\x0b-\xd49\xba\x08\x1a\xa7\x8e\xd8\xc3\x06\xea\xe5pjc\xc3\xd4\x06\xd8\x83OQ\xaf\x0eh/\x88g]\xc4\x11\xa0\xed\x9e\xe5\xabV\x84\xfaP^\x86\x0c\x17\x90u\xc3y\x021Z^p\x9bP?\xd2\xc4\x19N\xfd\x86\x86\x0b0\xbdl\xac\x80\xe0+\x0f\x1d\xdd\xbd\xf2\xf4\xd9\xd5\x16\x9a\xe5I\xd8\x9enyjtg\xbb<~\xfe\xda\x95\xad\x90\xe8\xd3\x86\xec\x0bd\\\xf3l$k\xfb\xe4\xe1\x14\x93Z\xaau|\xb3\xact\x8a\xd0\x9f\xbc^\x80\xcc\x16\xf7\xc2\x92!\xf5\x96\x1a\x16\xd3\xb4\xcc\xd1M\x96\xdfg\xbch,\xfa\xce<\x18o\x9c\xc5s\x9c\xf9\xc28Vg\x0c\xa8\x99\xab.,T\xaa@+\x1d \xa0\xf34\xaf\xd1[^l2\xa1\x0b4ORJ\n\x12\xa3\x9b;e\x9a))0\xcd\x0bw\xbc\x97\x0c&\xf7\xb2\x0bD\xa0\x04\xa4\x14E\xc3eU\x94 Q{k.\xa0\xbafq\xe3\x1a)\xe7\x01v\xf9|.C\xd9\x9a\x8d,\xa1\xcc\nN\x8a\xd1NR\x80y\x0e\xc0\xa9\x88\xc0b@\xa8s5\xde\x89J\xe4\xe2PK6\x08M\n\xd6\xfb\xbb\x05.\x17\xe3\x93Je[zNDf\x14WQs-\x98\xff\x10R\x8ah\x10^\x00\x11`\x11qf\xb9~\xd6\xc8\xbfe\x03\xf3r\xcf\xfe\xf0#\xf6\xe8\x083\xde6\xa0)\xcd(_.\xf3\x8c\x8f\xe7\x0f\xeb\x14\xcd\xcc\x9e\x85\x1dbh\x11a\xa6\xc8\xa8\xaf;i\x0e\xb9\x15V\x8f.\x1a\x8d\xde\n\xb0\xbf\xd5\xb7\xac\x9cO\x13\xcd\x1a\xefu\xabz\x98\xeaM\xb2\xbb\xfc\xc63\x97\x92lU\xd1W\x9bs\x05Y\x05\xbd\x04\x0f\xf3 \x9b\xcf \x13\xbb\xa8\"\xa4\xaa\x8d\xf3\x8eEIv\x83f8\xba\x91\xf5\xdc\x01\x90x\x98\x01\xcf\x9e\xe0\x93\xc6\x7fH\xa5\x0b\xe9\x87O\xa9z\xb2\x00\xe8\x1e\x88\x07\xbeT,\xea[\x1a\xfa:\x8c\xfb;(\xf7\xe1[I\xf1,M\xca\x05\x89U\xb1\x14\x86\xe3(\xde\xd91\x14\xef\xec\xf8%bA7<\xb0UA\xee\x92\xbc*\xd3ug\xa9\x1byN^\\\xa5\xb2\xb9,pt#\x0e\xb5\x84\xe7\xa4w\x80D\xd9$\xe8\xae\x0c\xa4\xbd\xccA:~6\xa3-Z$\xe4N\xf4%\xc9+\x1aR;y\x06\xc2N@z\xb5^\xe13\xdb\xfa\x7fI;OU\x11S\xc1NX\xe5\x04\xf1\x88/&\xfa\x14\xa0}\x0c\xf5\x0c\x16\xf4\x82\xc3Tt\xa9)X\x1fc\xd4\x1bB\x00\xb0:EI\xf2F.\xe5$\xbbV\xadnv\xe68I\xab\x02\xb0\x85D\xcc\x0c\xafH\x16\x83\x04\xd9G\xea}\x8c\xee\xc5\xcf\x1f\x83\xacT\xf7\xeb\xb3\xe9\x05,\xcb\xbd\xf9\xd9\xc5\xbf\x8f\xcf\x06|\xf6}z\xfc#\xf8\x99a\x93\x87\xd29\xcc\x1a;F\x83\x08\xc5\xf9q\xc3\x02\xa3*+I\xd8W\xe3\x17\x12}\x12\xdb\xbb\"m3\x8f\xbdk\x980b\xac&fA\xeb\x9eOC\x86d\xd3\xa1=${g\x0c\xa9I\x9aDyV&\xb1:}\xe0\x83\xdf$\xfc6\"\x16\xfd\xaf\x96IY\xb2\xc5)\xedQ^\xa0\x98\xa4xMb`n\xa1\x03I6\xf9\xdaH\xb2wN\xbe\xd4w\x82V\xcc\x99\xcep\xc5\x90\xab\x07\xaa\xf4\xc4\xa6\xeaT\xe8'\x92ExUV\xa9FI\xea-\xbe\x8b\x85\x9c#\xa2\xda\xf3\x00\xa4 \xc3p\x148\xbc-\x7f\xd37\xfb\xe2\xca\x88a%Y&\x1a\xeaju\x1d\x90\x12\xfb\xa9\xd8\xc8\xa8\x0f\xeaz\xc0 \xccux\x1d\xc5\x8e\xdaX*\x06\xd6w\x19\x00;[Z\xeb\"Yk\x1f\xa96yv@aiO\xf5\x95H>\xe7\x9e+\x179\xa6\x14G\x0b1\x9aNEek\x93\xe0\xc8]\xc1\xba\xb9b\xe4<\xe6{\xf7`\xc6u\x83\xc5\x12#\xc9\xb9<\x93\x07\x1a\xf2\xb5LS\xb2\x93\xac\x0f\xaeF\x890jB\x0b\x84\x16\x19!DN\x80\x8d)\xb0\xe5P\"\xd0\x19\xde\x16\x17\x8a\x1e\xdf\x19\x1d$\x05\x1a\x8c\xf8\xa9\xc5\xf0\x92C}\xdaX\x0e\x8f\xf1\xd1\x90 ,\x81E\x14\xbe\x04\xb6\x8c\x11gZO\x1b {\xc4aA\xf0l\xf2%\xf0\xc7@U1H\x9e\xfa\xf1W[\xe1\xd03\x842\x19#\x87b\x98\xc6X)\xaf0\x8d\x01@\x15\xc8J \xa0\xa5@\x7fg1\xc8\xe7 \xa8\x0b\xee\x0e\xfe\xceb\x18\xc4\xab1\xac\x0bB\x7fg1\xc0)\x1fy\x92\x0c\xa3|\xc3`P\xd4'\x8bA\xea\xe51s\x18, \xc7\xcb`\x90\xfe\xf5S\xe6/4\xe9\x19\xc1\xb3\x00\xaa\x0e(\xbfQ\x07\xc7\xc0\xee\xc4\xbf\x0e\xfae.\xb4\x84\x1d6I/\x85G\x1b\x1b\xa2&80\x87\xb6\x12x\xbe}nm+_a \x17_\xcb\x16\xc8\x82\xafe\x1f\xe4\x854\x02\xc3B\xf6\x1c\xc8\xa6\xa1\xf4\x8fb\xc9\xa1twR!\xc6\xdc#Y\x81;\xf7J P\\\xe1\xa2$v\xef\x99\x82$\x83,\x1d\x02Z;\xd43c\x0f\xc1\xe7\x0f\x82/5\xd4S0\xa8G\x06\x1f\x18P_[\x88\x86e\xf2\xa1\x17\xcb\xc1\x90\x8d\x0c\x02\xa4\xbdr\xb2\x10,\x93\xe9\x95\xf2r\x98\x05\xed\x82\xb2X\xd1\x9e\x10\xfa\xc9 d\xa1\xfa\x81DU\x1b\xe3\xd2\xc6F\x9d\x9e\xf86\x99\xab~\xce$\xfe\xad\x9b\x84\xc8\xff\xd2\x9d2\xad\xbb%\xfe+\x11\x92\x17\xe5\xabu\xed\xf1\x89?4S\x9d\x04R\xae\xbc\xc7\x80K\xe0w\x04\xfc\xe7\xa6\xc1\x99\x1d\x96\x022\x06A\x11\xce\x10Ix\x11\xee\x19A\x98O\xe2\x1dD\xde]\xbb\x96\xe4\x97\xfd/\x9f>\xcf\xf0\xc1\xee\xe1\xfc\xfd\xe1\xee\x87\xc3/x\xf7\xf3G\xfciwN\"\xbc?\xdb;\xdc? {\xa2\n\xbb\xd2\x10\x91\xbb=\x9c4\xear@\x1f\xae\xfb\xb7\x8f\xd7d\xef\x11?\xd2\xea\xe3!}8|8L\xd3\xbb\xc3\x87\xe8\xcb#-o\x1f\xd2\x9b{\x92\xda0\x0e\xa5\"\x8e\xc5\xce\xba\xc8\\o\x86\x1e~\xde{?\xff<\x8bv?\xee}\xfc\xb4\xfb\x81\xcc\x0ew\xbf\x1c\xee\xcfw\x0f\xf6\x0f\xf6?~\xda\x8f\x0eH\xd4b\xa8\x18l#\x96\n\x10\xfb\xb7\x0fN\xa6~)o\xd3h\xf1\xbe|\xb8\xcf>|\xf8u\xb8\xf7\xeb\xf1\x9a~.\xca\xc5\xdd\xedz^\xfc\x8a\n\x179\xbc\xa30cB\x9e\xa5\xeb\x9a\x05(\xe1)p\xc6A2}\x1d\x07`t6\x86\x12\xa2\x9e\xa7\xf8\x9a\xe3\xab\x1b\x14\xe4\xeag\x88\x06Z^J\xdb%\xc3\x99Jb\xa4\xd1\xab\x8de\xb9\xca\xb3\xd2K\xb64\x84OC\xb8i\x96C\xa4{\xe7\x8a\xda\xe3\xf5$\x9a<\x08<\xbc\xc7\x05c\x11\xdd\x1a\xccM\xb4\xfc!\xc7\xdey\xe1\xcaA\xf0\x80\xa4\x10\x915\xb3\x1d\xee\x08\x1a\x91\xc8\xd6`\x10\xc9:s\x905\x8c\x0c\xad\xf3\xaa\x90>O\x93D?V\xb2\x88Ey.\xd9\x83\xea\x10@\xf1\x7fF\xb6\x0c\x1b'\xe8\x8f\x8a\x14\xeb\x89\xfa\x06\x9d\x9f}m\x81\x13\xf9\xa65\x02*\xe0\xd7\xf8Y\x03\x9fi\x86\xaa\x8c<\xacH\xc4\x1c7\xd1\xfa\xc9&\xa92Z\x90%n\n\xc6\xe9\xc7\xb9}8>@W\xbc\x1e\xa5\x1c\xe5\xb1E\xc5\x89\x0f\\%\xcc\xd5\xde9\xc9\xe8\xfb\x83\x0e\x83\x1c\xe5\xbf=8\xc4\x84\xe2$}!\xa5:\xd8\xe7WU\xe1\xec:\x134p<\xc3u\xf0\xd7\xd6\x93\x89\x15.\xf0\x92PR\x188\xef\x8a\xa4^\xed\xd6\xb8f`kE\xf4u\xbe\x87\xb9\xdc>Op\x88K\x9ddGh\x85\xa9\x19\xac\xc9TCR\x90\xf8\x08\xd1\xa22M\x83\x95\xc5\x9a[\xdaY\x86\xf2\xab\xb7w=\xd4\xa7\xd61q\x16\xa3,\xb7r\xff]\x0b\x80\xec\xf2C\xefs6\x9dy\xa7\x9f|\xde\xd4%&I\xfczK\x82\xe5\xff3\x17\xcc\x1a\xc5y\xf6\x86J\x8e\xcf\x85B\xe7\x0b\x891O\xba[\xc6\xf0\xd3\x0eWw\xd0\xac\xa2(\xcb\xa9\x85\xb3\xb8\xd1@\xa0\x0bF45\xac\xa72#KK\x0bK\xdf\x90\xff2\xceI\xc9\xf0\\b\x1a5\x1bh\x19\xdf\x9b\x12\xf9\xe7Z\x1d\x8c\xec\x18n\x97\xe8\xbe$\xbd\x0c\xd1*\x89\xeaJP\x06\x86\x17\x84\xb6|;I\x91~\xa9\x800v\x15\"\xf1\xd6}B\xda\x9ch\xda4\xe8\"b\xc7\xb1\xb6%\x87\xffPd \x9f\xc00no\x0e\xf6\xf6\xde\xb8\x8fy\x8c$\xe4m\x9e\xef8N\xa4\xc3\x07s\xdaGf\xfc\xd1\x15T#\xd5\x91\n-\xf24.\x91\xbaX\x14\x8b\xffmb\x0b\xf3p_vn~\xf3\xe8;\x98\xf4\x848\x85\x8etB\xf7\x9a\x08v0\x03\x0c\x1a g\xa9\"\xf4ST<=\xfe\xbd.X!\x96;B\xc7\xcbU\xca\x1b\xf3\x95\xa8\x8co\xdeM\x039\x98\xd2f\xcdq$N1y)P\xa1\xa6\xc4\x97D\xac5\xe5\xd8\xb5}\xc3\xe6\xf35/\x97\xb9k\xb0\x12\x9c\xb2\xfc\xb4\xcc\xac5L\xd9\xcd4\xd6\x81\x07\xfep\x88\xc6\x97\xc2\x95\xe4%I\x88\x92\x05N\xd3\xfc^\x9a1\x99\xe2\xed\x03\x17\xb9\xefhx\x1bwO\x18\x9e\xef\xd0S=\xc1z1\xc15#\x9e\xf0\xca\x11\x0f\xdeV-Sl\xef\xdf\xf9V\xe5\xfe\xfbK\xb5\x15y\x1a\xac\xd1\x06\x99A\xe2\xc1\x1c^\xbd\"\x152F]\xe2HV\xec\x05\x06\xc0\xc9\xea\x00\x04P\xa7\xb4\x17\xf3`\xf5V\x1a\xdd\xdb\xfb\x94 i6\xef??\xfe\xdf\xe3\x93\xe9\xe5\xe9y\xbf\xef.\xbe\x9d\xffy\xfc\xf5[\xcf\xaf\x8eO\xfe\xfcv\xd1{\xac\xaf?/.O\x7f?\x9e\x9e\xf4\xfb\xec\xf4\xaf\x93\xbe\xf8M\xbf\x7f?\xfeq<\xbd\xfc\xd6\xef\xb3\xd3\xff;9\xfe\xe7\xcfp\xb5\x9a\xc6Gg\xe7\xa7\x7f~;\x99\x9e|\xed9\xd8\xd7\xd3\x93\xcb\xf3\xd3\x1f?\xfa\xd2\xa6[\xf9\x07>\xd3En\x06M\xaf\xb0\xaf\xd2|\\\xb3x\xe0\xf0H\x04\x80\xc9\xab\xb8\x1e\xc5j\x1c\x8b\xe2\xc8\xfeZ\x8e\x82K\xden\xb4H\xae\x93\x0cSH\xcdN\xeb\x1a:\xb2\xbdT\xcez\x89b2\xa3\xa8$\xc5]\x12%\xd95\x9aWY\xc4\xcdX\xcf\xd1\xd4\xda;\xb2\xbd\x14\xbb%\x1e\x83\x96D(\xc9\xeeH\xd9\x9f\x1e\xbdN\x8f\xaco\x95h2\x9a\xd0\xb50\xdf\x9a\xc6\xa8*i\x1e'8\x93\x84\xca\xf3\x1e\xce\xe0\xbe\x84\xf2u\x7f\xd4y\xd3\xae\x93\xb7\xc2\x05]K\x9c\xb8\xd1VV\x8aY\xdf\x9eCj\xbdqd}+\xb8+\x06\x14\x1b\xe5\x0c\xe1\xf9\xb2\xbe\xb5\xa1\xc3k`\xf2),\xea\x13\x89\xf5\x01)\xa5\x84t\xeb\xec\x90g\x11\x0e\x141~+\xbc/}`\xad\x05\xfa\xa6Der\x9da\xd1\x05\xbb\xd4\x83{\xe0\xc1<\xb9):3\xd6\xad\xf2/\xd9\xa2\x9a\xf0\x02\xe1\x82/\xcc\xd3\xf3\x82i\xd7m\x0f\xd6\xfc\xe9c\xd9.\xf9>[\xb6\xa0\xae\xa76\xa2\xf9\n\xa5\xe4\x8e\xa4r\x93\x10\x0e\xe3V{u\xe1\xa3\xbek\x83\xe6'\xd9\x8c\xcf<\xe6Yn\xdd}\xea\xb2n\x9c\xbfv\xf7\xbd\x16\xce-\xdf\x1fYzv\x08\x0c\x9a\xbbO\xef\xcc\xab2q\xa4H\x17\x1a\xef4\xe1g\xb0y\xa3\x11\xa63\xff\x86ar\x85#\x7f\x17\x8b\x11\xb7U\x01\x1f\x1d>\x0f\xa6\x9aI\xaaj\x18#\x9cs\x0cWt\x91\x17\xc9\xa3\xd0\x88\x05\x89Hr\xe7\x9b\x08u\xa5l.\x97n\xdb\x01}\xc4\xe0\x00\xc2\xc3V\xae\xf8\xbc\xbb\nn\xf7\xc6\xe6C\xbdP\x9b\xc6\x87I_T\x8co\x11\xe4\x9d\x9b\xc6i\xca\x05\xc5Y\x8c\x8b\xd84\x18\xd2\x82\x89>\xf9K\\\xdcXB\x9c\xeaG\xfd\xda\xb7\x1c\x98\xc0\xcaj\xb5\xca\x8bF\x0dR\x8e\xf9;\x19`\x81)-\x92YE Z\xe25?\x90\xf7\x00\x9c\x11\xa6\xaf\xb3k\x12\xa3\xd9\x9asAj\xf9\xba\xce\\\x9eE\xcc\x13az\xae$\x96\x8c\x08\xf1\xc8c\x9f+\xaes\xaf\x8a[\xa9\x8d\x8c\xf5\x07\xc1#\xaf\xf0a\xd7S\x1e\x137\x98h\xde<\xd1\xc1E\x824\xc7C\x99\xa7[\xa6\"\x94B-p\xc3\"\x1c\xac1\x0e~w\x10\xe0CA\xfc\xa7\xa7\xbf\xc2j\x07b5\x8a\x1c\xd8\x03\x18\x9a\x858\xdc\x9e\xa5!\x8bPd\xc2Vi\n(\xb9\x0e\x9aC\xc3\x13P\xa3lB\xf87\xa0\xf8\xb4\x17\xc2\x99n\xd0\x93\xf1\x06\xd8\xdc\x816\x8ah\xc08$\xff\xf9:xd [\x1fH\x18\xef$\x9f\xbc\xf0\x9a\x8b\x0c\xc4'\x7f\xe0\x06\x989C\xa8\x1e!v\xa3\xdf\xaa\x19i\"\x0c\xa1u\xa3\xe0\x0d\xe7D\xf1\x90\xac\x82\x04\xc7lF\xd4\x00\x8a\xc6n\xd8\n\x91$\xc8V\"\xa0\xbdD\x08\x12z-\x1e\xe0\xd4@p=\x81\xb6\x13\x8c-\x1e-\xa9\xb0\xedDOC\x1d`;\xd3Bz\xb8%5\x81\x01\xf9\x04\xb3\xa6\xe8\xe5\xf1j\x0c\xdb\x8a\xd0\xdf\x1d[\xe1\x94\x8f\x94\x97!\xc3\x05d\xddp\x9e@\x8c\x96\x17\xdc&\xd4\x8f4q\x86S\xbf\xa1\xe1\x02L/\x1b+ \xf8\xcaCGw\xeb8}v\xf5T\xbd\xe3\xe4\x80\x9e\xe6q\xfa\x17\xba\x9a\"r\xb5\x8e3\xca+z;\xc7E\xf6&\x9f\xcb\x88\xb8fOG(\xb3\x82\x93b\xb4\x03\x19`\xba\x04p*\"\xb0\x18\x10\xea\xdc\xb0w\x82\x1b\xb98\xd4\x92\x0dB\x93\x82\xf5\xfen\x81\xcb\xc5\xf8\xa4R\xd9\xec\x9d\x13\x91\x195Z\xd4\\\x0b\xa6Q\x84\x94\"\x1a\x84\x17@\x04\xb2\x82\xb7\xe5\x16[#\xff\x96\x0d\xcc\x1b\x8d\xf8\xa3\x98\xd8\xa3\x03\xd5x\x11\xf8\xa64\xa3|\xb9\xcc3>\x9e?:T4\xdfz\x16v\x88\xa1E\xa0\x9a\"\xa3\xbe5\xa59\xe4rY=\xba\xf24z+\xc0\xfeV_\xd6r>M4k\xbc\xb7\xb6\xeaa\xaa7\xc9\xee\xf2\x1b\xcf\\J\xb2UE_m\xea\x16d\x15\xf4\x12<\xc4\xe9k?'L\xec\xa2\x18\x91*Z\xce\x04\x9f&\xd9\x0d\x9a\xe1\xe8F\x16o\x07@\xe2\xd1\n< \x83O\x1a\xffY\x97.\xb2\x1e>\xec\xea\xc9\x02\xa0{ \x1e\xf8R\xb1\xa8oi\xe8\xebh\xf0\xef\xa0\x14\x8ao%\xc5\xb34)\x17$Va\x0d\xa1\xf0q\x88\x1e\xef\xc9\xa6\xbe\x94\xdb\x15~B\"\x9eb`x\x15\x00x\x8cQ\xe8\xac\xc8Wy \xe7\x81V\xcb\xdba\x04\xef8\xb9R8\xcd\xf9\xd9\x1e-\xaa\x88\xc7\x15q\x1fi\x89\x8br\x11\x08_G\xa8\xa4\x98V\xc1\xa5\xdf\x8f\xff\xc7:\x8b%\x99\x0b\xb7\x89+>\xae\"\xd54TH\x83\x04\xa0\x13,~U<\x82HD\xcb3\x11\xf3\xfb\xb2U\x15V\xcf\xbdx\x0c\xcf\x82<\xff\xf6\xf5\xf4\xfc\xf7\xab\xe3\x93\xb3\x9f\x97W\x17\x97\xd3\xcb\x9f\x17\xbd2\xd3\\0\xce\xceO\xcfN/6\x00 \xde\x05?\xd7\x99u\x9b\x12\xd2_\x93\x07\x99\x07\x91@\x00\x84\x91P\x05H\x0d\xe1q_8M\xe2I\x95\x89\xfd\xa2\x98\xb7l\xee\x00>\x0e\x88\xd2\xcec\xf5\xd7v\xea\x97\xb1b2\x84\x8bYB\x0b\\\xack\x0d\xc6\xeb\x0b\xea=\x9fX\n\xc3q\x14\xef\xec\x18\x8awv\xfc\x12\xb1\xa0\x1b\x1e\xd8\xaa wI^\x95\xe9\xba\xb3\xd4\x8dt)/\xaeR\xd9\\\x168\xba\x11gc\xc2s\xd2;@\xa2l\x12tW\x06\xd2^\xe6 \x1d?\x9b\xd1\x16-\x12r'\xba\x9b\xe4\x15\x0d\xa9\x9d<\x03a' \xbdZ\xaf\xf0\x99m\xfd\xbf\xa4\x9d\xa7\xaa\x16\xaa`'\xac\x00\x83x\xc4\x17\x13}\n\xd0>\x86z\x06\x0bz\xc1a*\xba\xd4\x14\xac\x8f1\xea\x0d!\x00X\x9d\xe9$y#\x97r\x92]\xab\x869;s\x9c\xa4U\x01\xd8B\"f\x86W$\x8bA\x82\xec#\xf5>F\xf7\xe2\xe7\x8fAV\xaa\xfb\xf5\xd9\xf4\x02\x96,\xdf\xfc\xec\xe2\xdf\xc7g\x03>\xfb>=\xfe\x11\xfc\xcc\xb0\xc9C\xe9\x1cf\x8d\x1d\xa3A\x84\xe2\xfc\xb8a\x81Q\x95\x95$\xec\xab\xf1{\x8d>\xf9\xf1]\x91\xb6\x99\xc7\xde5L\x181V\x13\xb3\xa0u\xe7\xa8!C\xb2\xe9\xd0\x1e\x92\xbd3\x86\xd4$M\xa2<+\x93X\x9d>\xf0\xc1o\x12~\x7f\x11\x8b.Z\xcb\xa4,\xd9\xe2\x94\xf6(/PLR\xbc&10E\xd1\x81$\x9b|m$\xd9;'_\xea\xabE+\xe6Lg\xb8B\xd1\xd5\x03UzbSu*\xf4\x13\xc9\"\xbc*\xabT\xa3$\xf5\x16\xdf\xc5B\xce\x11Q\xedy\x00\xb2\x8da8\n\x1c\xde\x96\xbf\xa1\xbaw}\x95R\xae\xa4%\xcb\xb2\xeb\x86\xba\x0eH\x89\xfdTld\xd4\x07uY\xe1\x04\xe6:\xbc\x8e\x9aIm,\x15\x03\xeb\xbb\x0c\x80\x9d-\xad\xe5\x95\xac%\x94\xe4\xe5\x91\x03\\X\xdaS}%\x92\xcf\xb9\xe7\xcaE\x8e)\xc5\xd1B\x8c\xa63Z\xd9\xda$8r\x17\xc2n\xae\x189\x8f\xf9\xde=\x98\xb8\xdd`\xb1\xc4Hr.\xcf\xe4\x81\x86|-\xb3\x9d\xec$\xeb\x83\xabQ\x02\x95\x9a\xd0\x02\x11JF$\x92\x13`c\nl9\" t\x86\xb7\xc5\x85\xa2\xc7w\x06\x19I\x81\x06\x03\x87j1\xbc\xe4\x88\xa16\x96\xc3C\x854$\x08K`\x81\x89/\x81-c\x84\xab\xd6\xd3\x06\xc8\x1eqX\x10<\x9b| \xfc1PU\x0c\x92\xa7~\xfc\xd5V8\xf4\x0c\x11Q\xc6\xc8\xa1P\xa81V\xca+\xcc\x86\x00P\x05\xb2\x12\x08h)\xd0\xdf\xc9\x10\xf2y\x02\xea\x82\xbb\x83\xbf\x93!\x06\xf1j\x0c\xeb\x82\xd0\xdf\xc9\x10p\xcaG\x9e$\xc3(\xdf0\xa6\x14\xf5I\x86\x90zy\xccT\x08\x0b\xc8\xf1\x12!\xa4\x7f\xfd\x94i\x10MzF\xf0,\x80\xaa\x03\xcao\xd4\xc11\xb0;\xf1\xaf\x83~ \x10-a\x87M\xd2K\xe1\xd1\xc6\x86\xa8 \x0e\xcc\xa1\xad\xc4\xafo\x9f[\xdbJ{\x18\xc8\xc5\xd7\xb2\x05\xb2\xe0k\xd9\x07y!\x8d\xc0\xb0\x90=\x07\xb2i(\xfd\xa3Xr(\xdd\x9d\x8c\x8a1\xf7HV\xe0\xce\xbd\x12\x08\x14W\xb8(\x89\xdd{\xa6 \xc9 K\x87\x80\xd6\x0e\xf5L\xfcC\xf0\xf9\x83\xe0K\x0d\xf5\x14\x0c\xea\x91\x08\x08\x06\xd4\xd7\x16\xa2a \x81\xe8\xc5r0d#\x83\x00i\xaf\xd4.\x04K\x88z\xa5\xbc\x1cfA\xbb\xa0,V\xb4'\x84~2\x08\x19\x0f\xd4\x8f\xe5\x9b\xf11hJ\x82\xf0z\xa7[\xa2\xdeI\x87\xe8)92\xc2f\x110U\x87&!\x8akaw\x0e\xa2\xdc\xcem#\x05Q\x80\xf6$\x1b\xca\xb1\xe55p7s\x90\xe7\x14v\xe5\xdc\x1a\x84\xffJ\xc4\xd1E\xf9j]\xbbi\xe2\x0f\xcd\xfc$\xc4\xb3\x19]C\x06\xec\xb8\xdfz\x07\x0f\xbf\x833\x12\"\xcf\xceQ7V\xcbPIR\x18\xc9\x1dD\xde]\xbb\xd6\x94\xf8\xe9\xfe\xed\xc15\xd9{\xc4\x8f\xb4\xfaxH\x1f\x0e\x1f\x0e\xd3\xf4\xee\xf0!\xfa\xf2H\xcb\xfb\x0f\x07\xf1\xed\xc1\xaf\xf8n\x19\xe3\xc7\xea\xfe1\xc2q\xbcX|\xbe^V\xef\x97\xd1#yo\x83\xec?\xed\x1d\x89z}\x8e\x1b\xe1\x0c\x91\x84W \x9f\x11\x84\xf9\xd2\xf3\x12\xfde\xff\xcb\xa7\xcf3|\xb0{8\x7f\x7f\xb8\xfb\xe1\xf0\x0b\xde\xfd\xfc\x11\x7f\xda\x9d\x93\x08\xef\xcf\xf6\x0e\xf7\x0f\xc8\x9e(A\xaf\xf4Z\xe4\xee\x8d\xd7\xe4\xb2\x0f\xd7\xfd\xdbG'\x97o\x1f\xd2\x9b{\x92Z\x99\x19H\xa0\x1c\x8b\x9du\x85\xbd\xde\x0c=\xfc\xbc\xf7~\xfey\x16\xed~\xdc\xfb\xf8i\xf7\x03\x99\x1d\xee~9\xdc\x9f\xef\x1e\xec\x1f\xec\x7f\xfc\xb4\x1f\x1d\x90\xa8\xc5P1\xd8F,\x15 \xf6o\x1f\x9cL\xfdR\xde\xa6\xd1\xe2}\xf9p\x9f}\xf8\xf0\xebp\xef\xd7\xe35\xfd\\\x94\x8b\xbb\xdb\xf5\xbc\xf8\x15\x15.rx;e\xc6\x84\xe2@\xd2\x87\x87\xaf\x0f\x00lV5\x86\x12Jj\x9e\xe2kn6t\xdb\x80\\\xfd\x8c\x93\xe06\x93\x02\x88\xb4\\2B\xa8$\xb5uQ[\xb5r\x95g\xa55\x82C\xa3#\x93\xdb\x9f\x88x3\xd9>D\xbf\x7f\xba\x97\x1b\x91O\x1e\x04B\xde\xad\xf8X\xd4\xb7\x06s\x13/\x7f\xc8\xb1w^fr\x10<\xd8'D\xa4\xe2\xba\xd3k@#\x12\xd9\x1a\x0c\"ag~\xaf\x86\x91\xa1u^\x15\xd25i\x92\xe8\xc7J\xa6S\x9dK\xee\xa0:\xbaN\xfc\x9fQ-#\xb2 \xfa\xa3\"\xc5z\xa2\x8a\xeb\x9e\x9f}m\x01\x13\x99\x9c\xf5\xf0*\x94\xd6\xf8Y\x03\x9bi\x86\xaa\x8c<\xacH\xc4\xbc+\xd1\x9b\xc9&\xa72Z\x90%n\x8a\xc5\xe9l\xb9\x1d->@W\xb8\x1e\x05\x1a\xe5\xb1E\xdb\x89\x0f\\5\xc6\xd5\xae4\xc9\xe8\xfb\x83\x0e\x83\x1c\xf5\xb9=8\xc4\x84\xe2$}!E0\xd8\xe7WU\xe1l\x0b\x134Fo\xea\x12\x93$~\xe3#\xc1\xf2\xff\x99\x0bf\x8d\xe2<{C%\xc7\xe7B\x95\xf3\x85\xc4\x98\xc7?k\x0c?\xedpu\x07\xcd*\x8a\xb2\x9cZ8\x8b\x1b\xa5\xf9\xbb`D\xbb\xc0z*3\xb2\xb4\xb4\xd8\x1f\xf5\x9a\x89sR2<\x97\x98F\xcd\xd6T\xc6\xf7\xa6D\xfe\xb9V'\x1a;\xb5\xe7%\xfb\x1aI\x97E4!\xa2\xba8\x92\x81\xe1\x05\xa1-\x17OR\xd4\xf1{\x18\xbb\n\x91\x8b\xda\xf0t\x1a\x8e^s\xa2i\xd3\xa0\xebj\x1d\xc7\xda\x96\xa8\xdef\xca\x1b0\xcc\xda\x9b\x83\xbd\xbd7\xee\xf3\x19#/w\x9b\x073\x8eS\xe5\xf0y\x9av\x95\x19\x7ft\x19\xd2H\xf5z\xe25H\xcb\x96\x0b\xf86\xb1E>\xb8\x8b\x90nt\xaf\x17\x99^\x9e\x9e\xf7\xfb\xee\xe2\xdb\xf9\x9f\xc7_\xbf\xf5\xfc\xea\xf8\xe4\xcfo\x17\xbd\xc7\xfa\xfa\xf3\xe2\xf2\xf4\xf7\xe3\xe9I\xbf\xcfN\xff:\xe9\x8b\xdf\xf4\xfb\xf7\xe3\x1f\xc7\xd3\xcbo\xfd>;\xfd\xbf\x93\xe3\x7f\xfe\x0c\x17p\xd9\xb57\xfb\xef\xf7]\xdd~\xbf\xdfw\xbaI~\xe03]\xf7e\xd0\xf4\n\xfb*\xcd\xc75\x8b\x07\x0e\x8fD\xa0\x94\xbcC\xebQ\xbf\xc5\xb1(\x8e\xec\xaf\xe5(\xb8\xe4\x8d<\x8b\xe4:\xc90\x85\x94\xb1\xb4\xae\xa1#\xdbK\xe5\xac\x97(&3\x8aJR\xdc%Q\x92]\xa3y\x95E\xb4s\xd2\x17\x1eM\xad\xbd#\xdbK\xb1[\xe2\x11^I\x84\x92\xec\x8e\x94\xfd\xe9\xd1\xeb\xf4\xc8\xfaV\x89&\xa3 ]\x0b\xf3\xadi\x8c\xaa\x92\xe6q\x823I\xa8<\xef\xe1\x0c\xeeK(_\xf7G\x9d7\xed\xd2q+\\\xd0\xb5\xc4\x89\x1bme\xa5\x98\xf5\xed9\xa4\xd6\x1bG\xd6\xb7\x82\xbbb@\xb1Q\xce\x10\x9e\xcf\x934\xc1\x94 |]\x10\xee\x86\xf4\x1cTj\x9d#\xcb;1 \xf7zp*\xee\xaee\xbb\xd9u\xed7\x15y*\x88_f\xc9\xac*\xd1\x0cg7\xca*\xf6D\xa5\xd6eG\xf6\xd7\x0c!U$E\xc9\xc1\x14CAV\x05)\xb9+\xc6DP\x17\xe8\x93\x07[\xcd\"\xd18\x1a\xb0\xa8k\xbdyd\x7f\xdd\x9c\x9f\xf7\x8b$Z\x18|\xd2>\xa4Z\xf5\xba~mB\x10\xc9r\x1a\xa8W\xddEH+\xe4#\xeb[\x1b:\xbc,$\x9f\xc2\xa2d\x8fX\x1f\x90\xeaBH7\xa5\x0ey\x16\xe1\xf8\x0e\xe3\xb7\xc2\xfb\xd2G\xd5Z\xa0oJT&\xd7\x19\x16\xfd\xa5K=\xb8\x07\x1e\xcc\x93\x9b\xa23c\xdd*\xff\x92-\xaa \xaf\x99-\xf8\xc2<=/\x98v)\xf3`\x19\x9c>\x96\xed\x92\xef\xb3es\xe7zj#\x9a\xafPJ\xeeH*7 \xe1\xc8f\xb5W\x17>\xea\xbb6h~\x92\xcd\xf8\xccc\x83\xe5\xd6\xdd\xa7.\xeb\x96\xf4kwGi\xe1\xdc\xf2\xfd\x91\xa5\x8d\x85\xc0\xa0\xb9\xfb\xf4\xce\xbc*\x13G\x8at\xa1\xf1N\x13~\x06\x9b7ZL:SR\x18&W8\xf27v\x18q[\x15\xf0\xd1\xe1\xf3`\xaa\x99\xa4\ni1\xc29\xc7pE\x17y\x91<\n\x8dX\x90\x88$w\xbe\x89P\x17\x8f\xe6r\xe9V\xe2\xd7G\x0c\x0e <\xde\xe4\x8a\xcf\xbb\xab\xe0vol>\xd4\x0b\xb5i|\x98\xf4E\x11\xf5\x16A\xde\xb9i\x9c\xa6\\P\x9c\xc5\xb8\x88M\x83!-\x98\xe8@\xbf\xc4\xc5\x8d%6\xa9~\xd4\xaf}\xcb\x81 \xac\xacV\xab\xbch\x94\xe5\xe4\x98\xbf\x93\x91\x11\x98\xd2\"\x99U\x94\xa0%^\xf3\x03y\x0f\xc0\x19a\xfa:\xbb&1\x9a\xad9\x17\xa4\x96\xafK\xaf\xe5Y\xc4<\x11\xa6\xe7JbI\x12\x10\x8f<\xf6\xb9\xe2:\xf7\xaa\xc8\xd3\xb4Z\x85\xc4\x1a\xd2\xecp\xb9\xfe%\xd5>NS\xbd\xb4\xd5L\xaf\xcf\x84\x13Z\xda/\xa7\x9b\x8f\xba\x95S\xca\xb2\x01\xe8M\xa9T\xe6\x8b\xf2\x8c\xe8+\x0b\x0f\xa2\xea\xa8\xd4\x13\xc5\n\xa3\xa4\x01\xa8>\x87\x0b\x15`s\x9f\xad\xd4F\xc6\xfa\x83\xe0\x91W\xf8\xb0\xeb)\x8f\x89\x1bL4o\x9e\xe8\xe0\xba9\x9a\xe3\xa1d\xcc-S\x11\xca\xa7\xac)\xf2d\xa4i`\xe2\x1f\xfed\xb4-\x11\xe4Un\x16\x04\x91\xaf|M\xe8\x04\x1a\xc4\x0f\x7f\x96\"\x88\x0d})\x0c\xe6\"\x8eE\xdb\x08\"\xeeK\xdbFY\x85\x96 \xe0V\xa8\xe14}\x18\xee]h\x01\xd5\xea\x80\xd3-9c\xb9B\xd9\xb2\xa2\x0d\xa6\xdd\x83d\xbe\x95e\x1d\xc8\xad\xf7^\xf0\xa0\xf6}\x12LoC3\xe9\x9f\x9d)\x10\xf5\x0e\x85\x05c\x89\xf1\xbf\x11\x94\xc4Vy\xd3B\xb5i\x11\xf4k\x0f8\xab\x99\x84s\xeb\x19\x0c\x04,c}\xfc\x891\xc2T\x18D\xea\x08F\xc31[\xdaD\xbbS\xe9|\xa7\x19\xdbJi\x91\xd8\xb8X\x1e4\x0b\xe1\x11\x10\n\xa7\xe4\x8a\x07$]\xe0R\x87\xc75\x8c;n\x9f\xe9\xa7\xfb\xc6\xd6\xc5\xc8\x1d\xe5[@\x0dEl\xe5\xc8%\xe3]\x0b\x0f\xa9Mc\x98=/\xb3\x01L\xf0PK=@\x19\xcb\x1f\x8f\x11\xc7\x00\x8bd\x80\x9e\x80\x8bg\xdch\x86\x01\xf1\x0c=\x19 \x8bi\xd8 \xaaax\\\xc3\xd0\xc8\x86\xa1\xb1\x0d\x83\xa3\x1b\x06\xc57\x0c\x8ep\x18\x18\xe30<\xcaax\x9c\xc3\xc0H\x87Mc\x1d\xfaix\xf18\xe3\x1d\x00\xdf\xda\xbf\x1c\x1a\xf1\xf0d1\x0fO\x1d\xf5\xf0\x14q\x0f/&\xf2\xe1Yb\x1f\x9e)\xfa\xe1E\xc5?\xbc\x8e\x08\x88\x17\x18\x03\xf1\xbcQ\x10\xf08\x08\xe8}\x99\xfe\xf5\x88\xb1\x10p_p\xa4x\x88A\x11\x11P,\xf5\xdd\xa0<,!\xbc\x87\x96(\x85\xc6\xff 3\x83\xae3^[,\xd0\xc5?\x88\xd6H\xe5ta\xb4\xf1\x0c\x1a\x9a\xd7\xec3/\xe4\xe5\xbd!\xac]\x9at\xd7w\x18~I\x84\xd3t]7\xcaw~(?\x1a\x81\xdc-\xeci\xd5\x06D\xe4\xb5&$\x15\x97\xe7\xcc\xc22\x93\x1e\xa5 \xc9\xea\xfd-\x8fl\xf0\xc2\xebN\xd1\xe0\xa6\x16Wq\xe2\xe5N\x1fz\xbe\xf2\xedt\x8cf\xeb\x1dT\xadb\xfdo\x9a,II\xf1rU\xee\xe8\xe30Q\xa8\xcf\xdf\xc8R\xa4h\xa5\xb2\xd5\xda\x97\x8c(H\xa92`\xc4\xba\xaa-5\x1f\xa3\xf6\xd2\xc7\x0f!\xb8`\xce0_Y\xfa.-='8\xc3+\x88G\x05\xf7\xe6\x01\xe7G\\\x87\x13\x1c-\xa4\xc4\xbd\x1f8+F5\x9f\xad\xcc\x08\x93n\x89\x87%\x02/\xb4P\xa4\x82J\xf2l\"\xe8E\xe4\xce\xbf\xed\x81a8e&\xee;\xb3\xae%\x8a\xf0Jx\x99\xd6(\x1c\xb6\x02\xbd\xa0\xf4<\xcf\xd1\x12\xdf\x109\xd5U\xd6\x1c3Wra\x935\xba'E@b8v\xfd\x00jt/\xa4\x03\xa5\xe3\xa5\x0c_J{\x17\xf8\x1a'YI\x8d\xdd\x89\x13^\xf3(\x9d}\x85\xb3\x88x\xa2\xc9.\x8dcT\x9e\xa3\xbe\xc0w\xc4\x18Ir\x98\xc7\x88Q\xb5\xc5L\x88[-$\xd9]\x9e\xde5\x13\xdc\xdb\xcf\xc9)\xdbI\xff%9-3\xd2\xb3\\\x84v\x9d7\"\x82\x11\x96\x11e\x8d4\xfe\xf6S\xc7\x97a\xc5R\x91\xb8\xad\xf8\xcb\x93\xea\x97\xf9\x9d\xab\x8dn}i3Jk\x9d\x16\xb8a\x11\x0e\xd6\x18\x07\xbf;\x08\xf0\xa1 \xfe\xd3\xd3_a\xb5\x03\xb1\x1aE\x0e\xec\x01\x0c\xcdB\x1cn\xcf\xd2\x90E(2a\xab4\x05\x94\\\x07\xcd\xa1\xe1 \xa8Q6!\xfc\x1bP|\xda\x0b\xe1L7\xe8\xc9x\x03\xecw@\x1bE4`\x1c\x92\xff|\x1d<2\x90\xad\x0f$\x8cw\x92O^x\xcdE\x06\xe2\x93?p\x03\xcc\x9c!T\x8f\x10\xbb\xd1o\xd5\x8c4\x11\x86\xd0\xbaQ\xf0\x86s\xa2xHVA\x82c\xf6\xe7i\x00Ec\xf70\x85H\x12d+\x11\xd0^\"\x04 \xbd\x16\x0fpj \xb8\x9e@\xdb \xc6\x16\x8f\x96T\xd8v\xa2\xa7\xa1\x0e\xb0\x9di!=\xdc\x92\x9a\xc0\x80|\x82YS\xf4\xf2x5\x86mE\xe8\xef&\xa6p\xcaG\x9e$\xc3(\xdf\xd0\x9e \xfb\x14\xb2\x93\xdfi`3\xc6^\xcb\nt\xbc\x1d\x97=Jm\xcb\x1b\xb06M#\xf8\x1a@\x15\x02\xe5:\xea\xd1\xc8-|\xa1\x85:G\x17A\xe3\xd4\x11{\xd8@\xbd\x1cNml\x98\xda\x00{\xf0)\xea\xd5#\xeb\x05\xf1\xac\x8b8\x024f\xb3|\xd5\x8aP\x1f\xca\xcb\x90\xe1\x02\xb2n8O F\xcb\x0bn\x13\xeaG\x9a8\xc3\xa9\xdf\xd0p\x01\xa6\x97\x8d\x15\x10|\xe5\xa1\xa3\xbb\x9b\x9a>\xbb\xdaB;5+Nr@O\x935\xfd\x0b]M\x11\xf1b\x8a\x16`FyEO1\xc5F\xf9c\xf3\x11\x13\xe3i#\xff\x052\xae\xe9:\x92\xd1~\xf2\xa8\x8cI=9\xea0iA\xea;\x84\xfe\xe4e\x07d\xd2\xb9\x17\x96\x8c\xcc\xb7\x94\xc2\x98\xa6e\x8en\xb2\xfc>C\x98\xcd\xdf\xef\xcc\x11\xf2\x86k<\xc7\xd11\x8ccu\xe2\x81Z~\xea\xdeCe\x1c\xb4\xb2\n\x02\xaaS\xf3\x1a\xbd\xe55+\x13\xba@\xf3$\xa5\xa4 1\xba\xb9S\x16\x9e\x92\x02\xd3\xbcp\x87\x8d\xc9\x98t/\xbb@\x04J@J\xdf4<_E\x99\x10\xb5\xb7t\x83\xd69\xeb\xe6mT\xce\xe3\xf4\xf2\xf9\\F\xc45;&B\x99\x15\x9c\x14\xa3\x1d\xc8\x00\xd3%\x80S\x11\x81\xc5\x80P\xe7\x86\xbd\x13\xdc\xc8\xc5\xa1\x96l\x10\x9a\x14\xac\xf7w\x0b\\.\xc6'\x95\xca\xfe\xe7\x9c\x88\xcc\xa8\xd1\xa2\xe6Z0\x8d\"\xa4\x14\xd1 \xbc\x00\"\x90\x15\xbc-\xb7\xd8\x1a\xf9\xb7l`\xde\xeb\xdd\x1f\xc5\xc4\x1e\x1d\xa8\xc6\x8b\xc07\xa5\x19\xe5\xcbe\x9e\xf1\xf1\xfc\xd1\xa1\xa2k\xd6\xb3\xb0C\x0c-\x02\xd5\x14\x19\xf5\xad)\xcd!\x97\xcb\xea\xd1\x95\xa7\xd1[\x01\xf6\xb7\xfa\xb2\x96\xf3i\xa2Y\xe3\xbd\xb5U\x0fS\xbdIv\x97\xdfx\xe6R\x92\xad*\xfajS\xb7 \xab\xa0\x97\xe0!N_\xfb9ab\x17\xc5\x88T\xd1r\xde (\xc9n\xd0\x0cG7\xb2x;\x00\x12\x8fV\xe0I\x18|\xd2\xf8\xcf\xbat\x91\xf5\xf0aWO\x16\x00\xdd\x03\xf1\xc0\x97\x8aE}KC_G\x83\x7f\x07\xa5P|+)\x9e\xa5I\xb9 \xb1\nk\x08\x85\x8fC\xf4xO6\xf5\xa5\xdc\xae\xf0\x13\x12\xf1\x14\x03\xc3\xab\x00\xc0c\x8cBgE\xbe\xcaK8\x0f\xb4Z\xde\x0e#x\xa3\xc8\x95\xc2i\xce\xcf\xf6hQE<\xae\x88\xfbHK\\\x94\x8b@\xf8:B%\xc5\xb4\n.\xfd~\xfc?\xd6Y,\xc9\\\xb8M\\\xf1q\x15\xa9\xa6\xa1B\x1a$\x00\x9d`\xf1\xab\xe2\x11D\"Z\x9e\x89\x98\xdf\x97\xad\xaa\xb0z\xee\xc5cx\x16\xe4\xf9\xb7\xaf\xa7\xe7\xbf_\x1d\x9f\x9c\xfd\xbc\xbc\xba\xb8\x9c^\xfe\xbc\xe8\x95\x99\xe6\x82qv~zvz\xb1\x01\x00\xf1.\xf8\xb9\xce\xac\xdb\x94\x90\xfe\x9a<\xc8<\x88\x04\x02 \x8c\x84*@j\x08\x8f\xfb\xc2i\x12O\xaaL\xec\x17\xc5\xbces\x07\xf0q@\x94v\x1e\xab\xbf\xb6S\xbf\x8c\x15\x93!\\\xcc\x12Z\xe0b]k0^_P\xef\xf9\xc4R\x18\x8e\xa3xg\xc7P\xbc\xb3\xe3\x97\x88\x05\xdd\xf0\xc0V\x05\xb9K\xf2\xaaL\xd7\x9d\xa5n\xa4Kyq\x95\xca\xe6\xb2\xc0\xd1\x8d8\x1b\x13\x9e\x93\xde\x01\x12e\x93\xa0\xbb2\x90\xf62\x07\xe9\xf8\xd9\x8c\xb6h\x91\x90;\xd1\xdd$\xafhH\xed\xe4\x19\x08;\x01\xe9\xd5z\x85\xcfl\xeb\xff%\xed>\x1b\xf0\xd9\xf7\xe9\xf1\x8f\xe0g\x86M\x1eJ\xe70k\xec\x18\x0d\"\x14\xe7\xc7\x0d\x0b\x8c\xaa\xac$a_\x8d\xdfk\xf4\xc9\x8f\xef\x8a\xb4\xcd<\xf6\xaea\xc2\x88\xb1\x9a\x98\x05\xad;G\x0d\x19\x92M\x87\xf6\x90\xec\x9d1\xa4&i\x12\xe5Y\x99\xc4\xea\xf4\x81\x0f~\x93\xf0\xfb\x8bXt\xd1Z&e\xc9\x16\xa7\xb4Gy\x81b\x92\xe25\x89\x81)\x8a\x0e$\xd9\xe4k#\xc9\xde9\xf9R_-Z1g:\xc3\x15\x8a\xae\x1e\xa8\xd2\x13\x9b\xaaS\xa1\x9fH\x16\xe1UY\xa5\x1a%\xa9\xb7\xf8.\x16r\x8e\x88j\xcf\x03\x90m\x0c\xc3Q\xe0\xf0\xb6\xfc\x0d\xd5=\xe7\xab\x94r%-Y&\xda\xb7ju\x1d\x90\x12\xfb\xa9\xd8\xc8\xa8\x0f\xea\xb2\xc2 \xccux\x1d5\x93\xdaX*\x06\xd6w\x19\x00;[Z\xcb+YK(\xc9\xcb#\x07\xb8\xb0\xb4\xa7\xfaJ$\x9fs\xcf\x95\x8b\x1cS\x8a\xa3\x85\x18Mg\xb4\xb2\xb5Ip\xe4.\x84\xdd\\1r\x1e\xf3\xbd{0q\xbb\xc1b\x89\x91\xe4\\\x9e\xc9\x03\x0d\xf9Zf;\xd9I\xd6\x07W\xa3\x04*5\xa1\x05\"\x94\x8cH$'\xc0\xc6\x14\xd8rD\x12\xe8\x0co\x8b\x0bE\x8f\xef\x0c2\x92\x02\x0d\x06\x0e\xd5bx\xc9\x11Cm,\x87\x87\niH\x10\x96\xc0\x02\x13_\x02[\xc6\x08W\xad\xa7\x0d\x90=\xe2\xb0 x6\xf9\x12\xf8c\xa0\xaa\x18$O\xfd\xf8\xab\xadp\xe8\x19\"\xa2\x8c\x91C\xa1Pc\xac\x94W\x98\x0d\x01\xa0\nd%\x10\xd0R\xa0\xbf\x93!\xe4\xf3\x04\xd4\x05w\x07\x7f'C\x0c\xe2\xd5\x18\xd6\x05\xa1\xbf\x93!\xe0\x94\x8f\xb7\xb6\x95\xf60\x90\x8b\xafe\x0bd\xc1\xd7\xb2\x0f\xf2B\x1a\x81a!{\x0ed\xd3P\xfaG\xb1\xe4P\xba;\x19\x15c\xee\x91\xac\xc0\x9d{%\x10(\xaepQ\x12\xbb\xf7LA\x92A\x96\x0e\x01\xad\x1d\xea\x99\xf8\x87\xe0\xf3\x07\xc1\x97\x1a\xea)\x18\xd4#\x11\x10\x0c\xa8\xaf-D\xc3\x12\x02\xd1\x8b\xe5`\xc8F\x06\x01\xd2^\xa9]\x08\x96\x10\xf5Jy9\xcc\x82vAY\xachO\x08\xfdd\x102\x1e\xa8\x1f\xcb7\xe3c\xd0\x94\x04\xe1\xf5N\xb7D\xbd\x93\x0e\xd1Srd\x84\xcd\"`\xaa\x0eMB\x14\xd7\xc2\xee\x1cD\xb9\x9d\xdbF\n\xa2\x00\xedI6\x94c\xcbk\xe0n\xe6 \xcf)\xec\xca\xb95\x08\xff\x95\x88\xa3\x8b\xf2\xd5\xbav\xd3\xc4\x1f\x9a\xf9I\x88g3\xba\x86\x0c\xd8q\xbf\xf5\x0e\x1e~\x07g$D\x9e\x9d\xa3n\xac\x96\xa1\x92\xa40\x92;\x88\xbc\xbbv\xad)\xf1\xd3\xfd\xdb\x83k\xb2\xf7\x88\x1fi\xf5\xf1\x90>\x1c>\x1c\xa6\xe9\xdd\xe1C\xf4\xe5\x91\x96\xf7\x1f\x0e\xe2\xdb\x83_\xf1\xdd2\xc6\x8f\xd5\xfdc\x84\xe3x\xb1\xf8|\xbd\xac\xde/\xa3G\xf2\xde\x06\xd9\x7f\xda;\x12\xf5\xfa\x1c7\xc2\x19\" \xaf@>#\x08\xf3\xa5\xe7%\xfa\xcb\xfe\x97O\x9fg\xf8`\xf7p\xfe\xfep\xf7\xc3\xe1\x17\xbc\xfb\xf9#\xfe\xb4;'\x11\xde\x9f\xed\x1d\xee\x1f\x90=Q\x82^\xe9\xb5\xc8\xdd\x1b\xaf\xc9e\x1f\xae\xfb\xb7\x8fN.\xdf>\xa47\xf7$\xb523\x90@9\x16;\xeb\n{\xbd\x19z\xf8y\xef\xfd\xfc\xf3,\xda\xfd\xb8\xf7\xf1\xd3\xee\x072;\xdc\xfdr\xb8?\xdf=\xd8?\xd8\xff\xf8i?: Q\x8b\xa1b\xb0\x8dX*@\xec\xdf>8\x99\xfa\xa5\xbcM\xa3\xc5\xfb\xf2\xe1>\xfb\xf0\xe1\xd7\xe1\xde\xaf\xc7k\xfa\xb9(\x17w\xb7\xeby\xf1+*\\\xe4\xf0v\xca\x8c y\x96\xaek\x16\xa0\x84'\xee\x19\xd7\x078-s\x17~\xb2\xdb\x85U]\xbb\xf7\xcaAa\xca\x90\x0bs\xf7*\xb2\xb7\x1agr4Gi\x9e\xdf0\xedl\x81\"\x93}\xc4\x81\xa4\x0f\x0f_\x1f\x00\xd8\xacj\x0c%\x94\xd4<\xc5\xd7\xdcl\xe8\xb6\x01\xb9\xfa\x19'\xc1m&\x05\x10i\xb9d\x84PIj\xeb\xa2\xb6j\xe5*\xcfJk\x04\x87FG&\xb7?\x11\xf1f\xb2}\x88~\xfft/7\"\x9f<\x08\x84\xbc[\xf1\xb1\xa8o\x0d\xe6&^\xfe\x90c\xef\xbc\xcc\xe4 x\xb0O\x88H\xc5u\xa7\xd7\x80F$\xb25\x18D\xc2\xce\xfc^\x0d#C\xeb\xbc*\xa4k\xd2$\xd1\x8f\x95L\xa7:\x97\xdcAut\x9d\xf8?\xa3ZFd\x13\xf4GE\x8a\xf5D\x15\xd7=?\xfb\xda\x02&29\xeb\xe1U(\xad\xf1\xb3\x066\xd3\x0cU\x19yX\x91\x88yW\xa27\x93MNe\xb4 K\xdc\x14\x8b\xd3\xd9r;Z|\x80\xaep=\n4\xcac\x8b\xb6\x13\x1f\xb8j\x8c\xab]i\x92\xd1\xf7\x07\x1d\x069\xeas{p\x88 \xc5I\xfaB\x8a`\xb0\xcf\xaf\xaa\xc2\xd9\x16&h\x8cx\xee\xe8\xe0\xaf\xad{\xfe\x15.\xf0\x92PR\x188\xef\n\x83\xa9M\xafk\x06\xb6\xd6C_\x07q\x98[\xe8\xf3V\x86\xb8}Iv\x84V\x98\x9aa\x90L1$\x05\x89\x8f\x10-*\xd3@XY\xac\xb9\xa5\x1d:(\xbfz{\x80C\xfd>\xcd\xb3\x064\x0b\xff\xc6\xf6\xf16\xf0\xecl\xfe\xdch\xb22vr@a\x0d\xde\xfb\x8d\xbb\xe3c\x1c\xb8e\x86\xc4\xca\x829NK0\x0fZ\xb7/\x0d\xe2\xe1\xee\xee\x96\x90k\xf8\xb1@\x11\x0d\xf3}-\x9b\xcd!.\xdf\x10\xda\xdb\xeeP\x87x\xe9\x83\xf6\xa5\xbf\x8f\xfb\x8b,\x83UV\xac\x0f\xcf.N\xff\xeb\xf4\xfb\xc9\xd5\xd9E\xbf\xef.\xbf^\xfcu\xfa\xe5k\xcf\xafN\xbf\xff\xf5\xf5\xb2\xf7X_~\\^\x9d\xfdqz\xf2\xbd\xdfgg\x7f\x7f\xef\x8b\xdf\xc9\xb7o\xa7\x7f\x9e\x9e\\}\xed\xf7\xd9\xd9\xff\xfb~\xfa\xcf\x1f\xf1\x82<\xd6G\xe7\x17g\x7f}\xfd~\xf2\xfdK\xcf\xc1\xbe\x9c}\xbf\xba8\xfb\xf3\xcf\xbe\xb4\xfdu\xf2\xe7\xe9\x1f\x80\x89\xd6u|\x06-\xaf\xb8\xb1b?\xbeU\x9a\xed\x8a\x1f\xb4e\xb3\xeefi#Z.PNV$\x97\x87\x84x\xa4\xbar\x85\x08\x1b\xf5M\x1b4\xf7N2>s\xd7\x9c<\xba\x87\xc4%\xdf\xfb\xbc\xef\xfa\xda\xdf!\\\x18\xb7\xfc|\xe4hK\"0\xb0O\x9f\xc1\x95\xb7,x\xbd8\xc6e\x85w\x9e\xd5T\x1493\xaf!}1\xa2\x0c\x93k\x9c\x84\x1bu\x8cx\xac\x8a\xd8\xe8\xf0up\xa2\x99\xa4\n\xa31\xc29\xc7\xf0\x92\xce\xca*{\x10\x12\xb1\" \xc9V\xa1\x85\xd0\x14\x03\xe7\xf3\xd2\xed\xac\xa0]\x0c\x1e <~\xe8\x9a\xaf\xbb\xeb\xe8qol>4\x1b\xd5V>l\xf6EQ\xfc\x16A\xc1\xb5ixS.).R\\\xa5\xa6\xc2\x90\x1a\xac\xe6\xfe\xc89\xaen\x1d\xb1f\xcd\xa3~\x1d\xda\x0el\xc2\xea\xe5bQVV\x99U\x8e\xf9\x1b\x19\xe9\x82)\xad\xb2\xc9\x92\x124\xc7k~ \x12\x008!L^\x177$E\x13\xe1B\x97R\xbe)\xa5W\x16 \xb3D\x98\x9c\xab\x89#\xe9C<\xd2\xeds\xcde\xeeuU\xe6\xf9r\x11\x9b\xd6\x98d\x87\xcf\xeb\xdfR\xec\xe3<\xd7[[\xad\xf4\xc6%\x9c\xd1\xda\x1di`?\xea\x86L K\x0b\xd0\xabZ\x89\xcciF\xf2\xd4\x1b\xa9\x8eT\xe0\x11\xbf\xb2!\x05\x9e\xe4\xe2t\xceD\xad\xd2A\xff\xc9\xbd\xca\x02A\x0154\xf7\x85\xee\xcf\xa5htO\x06\x8cm\x97|T\xde\xc3\x81\xf0\"\xd4eix\xdf\x85\xcd\x8b\x922\xcf 7q\x18\xdaR\x07x\x002\x02\xf8**\x0b\xa2oH\x02\x88*Wi *\x19F\x89\x05\xa8\xf1\xc3\xc5\n\xea\xf9}+\x8d\x92q\xfe \xea\xf2\x8a;\xbb\x1e\xd3Ml1\xd1\xbct\xa6\x83\xeb i\x8e\xc7\x92k\xb7LE,?\xb6\xa1(\x90a\xa8\x81\x89\x7f\x84\x93\x0b\xb7DPP\xb89\x10D\xa1rD1\x0f4\x88\x1f8\x98u\nbC_\nq,\xb7t,\xdaF\x98\xe2\xbe\xb4m\x94%\xeaX\x00~\x81\x1a/\xbb\x00\xc3\xbd\x0b-\"Z=p\xba%\x84\x1cW([\x16\xb4\xd12\n\xa09\xdf\xca\xb6\x8e\xd4J\x08^\xf0\xa0\xf6}\x12LnC+#<9S \xe2\x1d\n\x0b\xc6\x12\xe3\x7f#\x08\x89\xad\xf2\xa6\x85\xaa\xad\x11\xf4\xeb\x008\xa7\x9a\x84s\xeb \x14\x04\xac\x02\xc1\xf8\x0bc\x84\xa50\x88\xd4\x11\x94\x86g\xb5\xb4\x89\xf6\xa7F\x86\xbc\x19\xdbJQ\x92\xd8\xf8X\x1eU\x0b\xf1\x11\x10\x8a\xa7X\x8b\x074\xbb\xc0\xad\x0e\x8fk\x18w\xdc>\xcbO\xf7\x01n\x8a\xcb'\xeer<\xa0\x061\xae\xf2\xf2\x92\xf1\xbe\x8d\x87\xd4\xa11\xce\x9e\xddl\xe8\x13uj\xa9\x078\xc7\xf2\xc7c\xc41\xc0\"\x19\xa0\x1ep\xf1\x8c\x1b\xcd0 \x9e\xa1'#a1\x0d\x1bD5\x0c\x8fk\x18\x1a\xd904\xb6apt\xc3\xa0\xf8\x86\xc1\x11\x0e\x03c\x1c\x86G9\x0c\x8fs\x18\x18\xe9\xb0i\xacC? /\x1eo\xbc\x03\xe0[\xf7\x97C#\x1e\x1e-\xe6\xe1\xb1\xa3\x1e\x1e#\xeeag\"\x1f\x9e$\xf6\xe1\x89\xa2\x1fv*\xfe\xe1yD@\xec`\x0c\xc4\xd3FA\xc0\xe3 \xa0\xf7e\xfa\xd7#\xc6B\xc0m\xc1\x91\xe2!\x06ED@\xb1\xd4w\x83\xd2YBxO4\x91B\xc4\xff s\xcdn\n\x9e\xba\x15\x0c\xbdFq\xb4F*\x8f\x0c\xa3\x8dg\xd5\xd0\xb2a\x9fy!/\xef\x0da\xed\xef\xa4\xb9\xbe\xc7\xf0\xcb\x12\x9c\xe7k\xd1\xd0?X*Y~4\x02\xb9[8\xd3\xaa\x03\x88HR\xceH..\xcf\x99\x86e*=\xc93R4\xe7[\x1e\xd9\x10\x84\xd7]\xa2\xd1C-^\xa6Y\x90;}\xe8\xf9\xc2\x8f\xd3)\x9a\xac\xf7\xd0r\x91\xea\x7f\xd3lNj\x8a\xe7\x8bzO\xbb\xc3D\xe1\xc5pcR\x910\x95\xcb\xd6y\xd3\xd2O\x06\xf8\xc4\x0c=/\x0b\xcf@z\xcd\x88\x88 B\xe0\x02B\xc6\"b`\xf7\x19[b\xa0\xc5\x1e\x93\xf1F\xe4\x80}\xc2$\xa8\xbc\xfb'\x05\xad\xd6\xbca\x9e\xc4\x17D\xd3d=\"E0)\x80\xe4 \xda\xe3'\x10&\x87\\=Q\x01\x87t\xe0W\xf0gr\x05>\x9b)\xccqM\x15\xd2 \xc2vt\x1ey\xf8\\6\xe2DJ\x91\x01#\xd6W=\xcb~\x8cZZ\x1f?\xc4\xe0\x829\xc3lei\xbb\xb4\xe4\x9c\xe0\x0c\xaf\x08\x9fT\xdc\x9a\x07\xf8\x8f\xb8\x0c'8\x99\xc9\x19\x0f~\xe0\xad\x00f?[Y\x11&\xdd\x12\x0fG\x04^l\xa3H\x01\x95\x95\xc5\x81\xa0\x17\x91U\xf8\xd8\x03\xc3\xf0\x84\xa9\xb8oL\xbb\xd6(\xc1\x0bae:\xa3p\xd8\x0e\x0c\x82\xd2\xeb\xbcDs|K\xe4RWYsL]\xc9\x8dM\xd6\xe8\x8eT\x91\x19\xc3\xa9\xef\x07P\xa5{\xa9\xf2\xa0U\xbc\x94aKi\xeb\x02\xdf\xe0\xac\xa8\xa9q:\xf1\xc2\xb3]\xe9\xec+\\$$\x10Mve\xb8Qy\x0e\xff\x0c\xaf\x881\x92\xe40\x8f\x11\xa3\xea\x88\x99\x11\xbfX\xc8\x8aU\x99\xaf\xec\x02\x00\xed\xe7\xfb\x19;I\xff-9]\x11\x99L-B\xbb.\xac\x88`\x84eD\x99UG\xa2\xfd4\xf1eX\xb1T\xe4m_\x9a\x95&\xe6\xe5\xca\xd7\x16\xb9\xb9\xb4\x19\xa5UR\x0b\xdc\xb0\x08\x07g\x8cC\xd8\x1c\x04\xd8P\x10\xfb\xe9\xf1\xaf\xb0\xda\x81XV\x11\x08w\x00\x83\x9c\xd9Hh\x825\x17\xb1\xc8\x84\xad\xd2\x14\x11r\x1d4\x87\x86'\x98\xa0@\\\x81\x04/\xed\x08g\xbaAO\xc6\x1b`\xff\nj\x15\x19\x81qH\xfe\xf3y\xf0\xc8@\xb6qH\x18\xef$\x9f\x82\xf0\xcav\x05\x9e8\x9f\xc2\x81\x1b`\xe6\x0c\xa1z\x84\xd8\x8d~\xbbf\xa4\x850\x84\xd6\x8d\x827\xbc\x0b%@\xb2\n\x12\x1c\xb3\xdf\x92\x05\x14\x8d\xdd\x93\x162\x93 ]\x89\x80\xfa\x12!H\xe8\xb5x\x80K\x03\xc1\xe5\x04\xdaN0\xb6x\xf4L\xc5u'z\x1c\xea\x00\xc7\x99\x16\xd2\xc35\xa9 \x0c\xc8'\x986E\xbb\xc7\xab1t+B/Mi\xe1\x94\x8f\xbcH\x86Q\xbe\xa1>A\xee%\xe4&\xbf\xd3\x90h\x8c\xb3\x96\x13\xe8x'.w\x94\xda\x96\x0f`m\x9aF\xb05\x80\"\x04\xcau\xd4\xa31_\xfcB\x0bu\\\x17Q\xe5\xd4\x99\xf6\xb8\x82\xda\x1dNm\xac\x98\xda\x00{\xf0)\xe9\xd5\xf3l\x87x\xd6E\x1c\x01\x1a\xed9\xbejE\xa8\x0f\xe5eLq\x01Y7\x9c'\x10\xa5\x15\x04\xb7 \xf5#-\x9c\xe1\xd4o\xa8\xb8\x00\xcb\xcb\xc5\n\x08\xbe\xd2\xe9\xe8\xef\x8e\xa7}W[h\x8f'a\x07\xfa\xe3\xa9\xd1\xbd\x0d\xf2\xb8\xff\xb5;\xb7bF\x1f7d_ \xe3[g#i\xdbG\x0f\xa78hf\xb5\x89o\x96\x95N\x11\xfa\x8b\xd7\x0b\x90\xd9\xe2AX2\xa4\xdeQ\xc3\xe2$\xafKt[\x94w\x05/\x1a\x8b\xbe1\x0b&\x18g\xf1\x14>_\x18\xc7\x9a\x8c\x01\xb5r\xd5\x85\x85J\x15h\xa5\x03Dd\x9e\xe65z\xcd\x8bMft\x86\xa6YNIERt\xbbR\xaa\x99\x92\n\xd3\xb2\xf2\xc7{\xc9`\xf2 \xbb@\x04J@JPX&\xab\xa2LLu\xb0\xe6\x02jj\x16[\xd7H%\x0f\xb0+\xa7S\x19\xcaf\xb7\xae\x842+\xba(F\xf3\xa4\x00\xf3\x1c\x80K\x11\x81\xa7\x01\xa1\xce\xd5x'*\x91O\x87\xda\xb2Qhrb\x83\xbf\x9b\xe1z6>\xa9T6\xa2\xe7D\x14Fq\x15\xb5\xd6\xa2\xf9\x0f1\xa1\x88\x06\xe1\x05\x98\x02,\"\xce\x1c\xd7\xcf\x1a\xf9\xd7l`^\xee9\x1c~\xc4\x1e\x1da\xc6\xdb\x06\xd8\xb3\x99\x94\xf3yY\xf0\xf1\xc2a\x9d\xa2}\xd9\x93\xb0C\x0c-\"\xcc\x14\x19\xcdu'-!\xb7\xc2\xea\xd1E\xa3\xd1k\x01\xf6\xb7\xe6\x96\x95\xf3\xe9@\xb3&x\xdd\xaa\x1e&z\xb3bU\xde\x06\xd6RV,\x96\xf4\xd9\xe6\\AvA\xaf\x89\x87Y\x90\xf6\xf3\x9dM\xbb\xa8\"\xa4\xaa\x8d\xf3.EYq\x8b&8\xb9\x95\xf5\xdc\x01\x90x\x98\x01\xcf\x9e\xe0\x8b&\xec\xa4\xd2\x85\xf4\xe3^\xaa\x9e,\x00\x9a\x07\xe2\x81o\x15\x87\xf8\x96\x8a\xbe \xe3\xfe\x06\xca}\xf8ZS<\xc9\xb3zFR\x15\x8f\x10\x8b\xfb\x86\xc8\xf1\x9el\xeaK\xb9[\xe0g$\xe1\xb9\x01\x86U\x01\x80\xc7\x18\x85\xce\xabrQ\xd6p\x1eh\xb1\xbc\x1dF\xf0\x8e\x9d\x0b\x85\xd3\x94;\xe5h\xb5Lx@\x10\xb7\x91\xe6\xb8\xaag\x91\xb8s\x84j\x8a\xe92\xba\xf5\xfb\xf1\xffT\xa7\x9fdSa6q\xc1\xc7E\xa4Z\x86\ni\xd0\x04\xe8\xcc\x88\x9f\xbcA\x87\x0csgS\xcc/\xba\x16\xcb\xb8x\xee\xc5cx\xfa\xe2\xc5\xd7/g\x17\x7f\\\x9f~?\xffqu}yur\xf5\xe3\xb2WJ\x99\x0f\xc6\xf9\xc5\xd9\xf9\xd9\xe5\x06\x00\xc4\xbb\xe8\xe7:%nSB\xfaK\xf2(\xf3 3\x10\x01adB\x01r:x\xc0\x16\xce\xb3\xf4`Y\x88\xf3\xa2X\xb7l\xed\x00>\x8eL\xa5\x9b\xc7\xea\xaf\xed\x9c-c\xc7\x14\x08W\x93\x8cV\xb8Z7\x12\x8c\x17\x06\xd4g>\xb1\x15\x86\xe3(\xde\xb91\x14\xef\xdc\xf8ebC[\x16\xd8\xa2\"\xab\xac\\\xd6\xf9\xba\xb3\xd5\x8d<\xa7 \xaeR\xd8\\U8\xb9\x15N-a9\xe9\x13 Q: z*\x03I/s\x90\x8e\x9d\xcdhKf\x19Y\x89\xbe$\xe5\x92\xc6\xc4NY\x80\xb0\x13\x90\x9e\xadU\xf8\xc4\xba\xfe\xbf\xa5\x9e\xa7\xaa\x88\xa9`'\xacr\x82x\xc4\x17\x07\xda\x0b\xd0vC=\x81\x06\xbd\xe40\x15]j 6n\x8c\xe6@\x08\x00\xd6\xa4(I\xde\xc8\xad\x9c\x157\xaa\xd5\xcd\xde\x14g\xf9\xb2\x02\x1c!\x11S\xc3\x0bR\xa4\xa0\x89\xec3\xeb}\x94\xee\xe5\x8f?\x07i\xa9\xee\xd7\xe7'\x97\xb0,w\xfb\xb3\xcb\xff9=\x1f\xf0\xd9\xb7\x93\xd3?\xa3\x9f\x19:y(\x9d\xc3\xb4\xb1g4\xc8\xa4x?\xb640Z\x165\x89\xdbj\xfcB\xa2Ob{wJ\xdb\xccc\xef,\x15F\x8c\xdd\xc44h\xd3\xf3i\xc8\x90l9\xb4\x87d\xef\x8c!5I\x07IY\xd4Y\xaa\xbc\x0f|\xf0\xdb\x8c\xdfF\xa4\xa2\xff\xd5<\xabk\xb69\xa5>*+\x94\x92\x1c\xafI\n\xcc-\xf4 \xc9\x16_\x1bI\xf6\xce\xcb\x97\xe6N\xd0\x899\x93\x19\xbe\x18r\xf5@\x85\x9e8T\x9d \xf9D\x8a\x04/\xeae\xaeQ\x92r\x8b\x9fb!~D\xd4X\x1e\x804a\x18\x8e\x02\x87\xd7\xf5o\xa8i\xfe\xbf\xcc)\x17\xd2\x92e\xa2\x89\xae\x16\xd7\x91Yb?\x15\x07\x19\xf5AS\x0f8\x83\x99\x0e\xcf\xa3\xd8Q\x1bK\xc5\xc0\xe6.\x03\xa0gkg]$g\xed#\xd5&\xcf\x0d(>\xdb'\xfaJ\xa4\x9cr\xcb\x95O9\xa6\x14'31\x9aNEe{\x93\xe0\xc4_\xc1\xda\xde1r\x1d\xf3\xb3{4\xe3\xdab\xb1\xc4Hr\xae,\xa4CC\xbe\x96iJn\x92\xb5\xe3j\x94\x08#\x1bZ$\xb4\xc8\x08!\xf2\x02\xb4\x96\xc0\x96C\x89@>\xbc-n\x14=\xbe7:HNh4\xe2\xa7\x99\x86]\x0e\xf5ic9<\xc6GC\x82\xb0\x04\x16Q\xb8\x0bl\x19#\xce\xb4Y6@\xf6\x08gA\xd47\xb9\x0b\xfc1PU\x0c\x92^?\xfej+\x1cz\x82P&c\xe4X\x0c\xd3\x18;\xe5\x19\xa61\x00\xa8\x02i \x04\xd4\x14\xe8%\x8bA>\x8f@]\xf4t\xf0\x92\xc50\x88Wch\x17\x84^\xb2\x18\xe0\x94\x8f\xbcH\x86Q\xbea0(\xea\x93\xc5 \xe5\xf2\x989\x0c\x0e\x90\xe3e0H\xfb\xfa1\xf3\x17lzF\xb0,\x80\xa2\x03\xcao\xd4\xc11r: \xef\x83~\x99\x0b\xad\xc9\x8e\xab\xa4]\xe1\xd1\xc6\x8a\xc8\x06\x07\xe6\xd0V\x02\xcf\xb7\xcf\xadm\xe5+\x0c\xe4\xe2s9\x029\xf0u\x9c\x83\x82\x90F`XL\x9f\x03\xd94\x94\xfeQ49\x94\xeeN*\xc4\x98g$'p\xefY \x04\x8a\x0b\\\x94\xa5\xfe3S\x94d\x90\xa6C@m\x87zf\xec!\xf8\xfaA\xf0\xad\x86zN\x0c\xea\x91\xc1\x07\x06\xd4W\x17\xa2a\x99|hg9\x18\xd3\x91Q\x80\xb4WN\x16\x82e2=S^\x0e\xd3\xa0]P\x0e-\xda\x13B\xbf9\x88)\x0f\xd4\x8f\xe5\x9b\xf11\xaaJ\xa2\xf0z\xe7I\xa2\xde\xd9\x82\xe8192\xc2a\x11\xb0T\x87f\x0f\x8aka\x7f\xf2\xa0<\xcem#w\xd0\x89\x91\x18/\x90O\xa8~ Q\xd5\xca\xb8v\xb1Q\xa7'\xbe\xce\xa6\xaa\x9f3I\x7f\xeb&!\xf2\xbft\x97L\xebn\x89\xffJ\x84\xe4%\xe5b\xddX|\xe2\x0fv\xaa\x93@\xca\x97\xf7\x181 \xc2\x86@\xd8o\x1a]\xd9\xf1Y@\xc6 (\xc1\x05\"\x19/\xc2=!\x08\xf3E\xbc\x87\xc8\x9b\x1b\xdf\x96\xfc|\xf8\xf9\xf7O\x13\xfcn\xffh\xfa\xfeh\xff\xc3\xd1g\xbc\xff\xe9#\xfe}\x7fJ\x12|8y{t\xf8\x8e\xbc\x15U\xd8\x95\x84H\xfc\xed\xe1\xa4R\x97\x03\x86p=\xfc\xf5pC\xde>\xe0\x07\xba\xfcxD\xef\x8f\xee\x8f\xf2|ut\x9f|~\xa0\xf5\xaf\xfb\xfc\xf6\x8e\xe4.\x8cc\xa9\x88c\xb1\xb3)2\xd7\x9b\xa1G\x9f\xde\xbe\x9f~\x9a$\xfb\x1f\xdf~\xfc}\xff\x03\x99\x1c\xed\x7f>:\x9c\xee\xbf;|w\xf8\xf1\xf7\xc3\xe4\x1dIZ\x0c\x15\x83m\xc4R\x01\xe2\xf0\xd7\xbd\x97\xa9\x9f\xeb_y2{_\xdf\xdf\x15\x1f>\xfc@wz\x03B9)S\x87\x88\x13\x1f\xf8J\x98\xab\xb3sV\xd0\xf7\xef:\x0c\xf2\x94\xff\x0e\xe0\x90\x12\x8a\xb3|GJu\xb0\xcf\xaf\x97\x95\xb7\xebLT\xc1\xf1\x0c\xd7\xc1_;=\x13\x0b\\\xe19\xa1\xa42p\xde\x17I\xbd\xda\xac\xf1\xad\xc0\xd6\x8e\xe8k|\x0f3\xb9C\x96\xe0\x10\x93:+\x8e\xd1\x02S3X\x93\x89\x86\xac\"\xe91\xa2\xd5\xd2T\x0dN\x16knic\x19\xca\xaf\xde\xd6\xf5P\x9bZ\xf3\xcc\x82\xe6\xe0\xdf\xd8\xf6\xf3\x06V\xb3\xcbVfs\xf5\x8b\xc9Q\xe7dMq^\x83g\xcb0\x83\x81\xd35\xd8p\x1e\xd7\\\x1e\x9f\x07\xad\xcb\"\x00\x0f\xfa\xdb\xce\x86\x95\xec\x9c\xe5\xae\xc5<\"\x9d\x96%\x0c\xa4t\xa8\xf5l\xd8\xc9\x16<\xb8\xf98\x84\xf0\xb6i\xd5\xa6\\\xda\xb1=i\xefc@\x1b\xa6\xf2\x0e\xd0\xdd\xb2\x86\x81t\x0f\xb4\xa1\x1bk\xb9M\xf9\xd6\xe9l\x19\xc4@:\x07\x99\xd1\x86\xc1l\x01\xf3\x18\xcf\x9bSI\xf1\x8de\x93\xfcKB;`2\x83\x14\xb8H\xc8\xc1\x9cP\x9cb\x8a\x0fV\x87\x07|\xfb\xd5\x078\x97\xf6\xd5\x0d\xd1\xb6s\xbd\x9c\xcfq\xb5>\x16\x8d2\xea\x93\xa2\xa4\x9a\xe2D\x1c$y56\xd1\x0fF|\xcb\xd6oE\xf4\xcejo\xce\xf6\xf3\xa5\xac\xe7\xa5\x7f\xc0\xfa\xc92\xc7`\xacm\xb4l\xddM\xfc\xd2\xf7@\xb1\xdb)\xeb[q\xef\xc3s\xc4\x89\x9a\x1b\x9c\xe7\xe5\x9d\xcc\xf6\x979wa\x80\x01\xb7\x19\x12\xbdu\x9fm\"?\xb0\xd4\x1cx=\xc8\x1f\x8b\xe9\xc6/-\xf5\x1d\x9f\xf4a$<=~`w\xf3v\xbf\xe5\x97\x96\xfa\xce\x8f^Z\xea\x9b\xcfKK}\xc7\x86yi\xa9\xdf{\x8c\x97\x96\xfa/-\xf5_Z\xea\xbf\xb4\xd4\xff\xff[K\xfd>\xfa\xef\x8a;\xd8T{}\xbd\xdc\x11-\x17('+\x92\xcb\x03\x08$nO\xf9\xf0\x84\xb5\xfb\xa6\x0d\x9c\x17\\g\xee\xe1-j\xf7\xf7Y\x1b'\x9ae\xaat\x0cc\x02\xe7\x1f^\xd2YYe\x0fBrV$!\xd9*\xbc8\x9a\x82\xa9|\x9e\xba\xd5\xa7\xb5\xa3\xc3\x0b\x86\xdf_^\xf3\xf5x\x0d8Xn\x83#\xcdf\xb6\x15\x16[\x13\xa2\x80p\x8b\xb0\xc8\xaa5\xbc;\x97\x14\x17)\xaeRS\xc9H\xbd'\x1a'\xcfqu\x1bi\xdb\xad~\x1f\xde,l\x02\xeb\xe5bQVVa:\x8e\xff\x1by\xeb\x86)\xad\xb2\xc9\x92\x124\x0f\xaeL\xa4\xef\xe6\x92\x19.nH\x8a&k\xce\x0d\xa9\x1b\x9a\xf2Ce\x910K\x06\xc5\xbc!\xc4\x11D\xab\x1e\xe9\xa8\xba\xe6\x12\xfc\xba*\xf3|\xb9\x88/\x81\xb8\xae\xe8\xb3\x06\xfe\x96\xaa\x04\xe7\xb9\x16\x0ej\x7f\xc8+\xe6\"E\x19\xad\xb5\x90\x08\x82\x93m(\x90\x12\xbc\x16\xa8W\xb5\x12\xbf\xd3\x8c\xe4i\xa0\xcd4R\xd7\xa58\xafKD\n<\xc9\x85\xc7\x80 n\xa5\xdb\xfe\x93VK\xe5\x02\x13p\xc3\xeb\xa4hz\x99HJ}S\x03e\xa0h5\xad\x9bq\xa3\xaa,\xa9Q\xeb\x93\xdb\xd8()\xf3\x9cpS*\xe4%\xd17Fw\x85Xue\xc1k\xb7\xf3\x1e\xd7At\x95\xebw\x94\xccb\x0bX\xe3E\xdc\xb4tQP\x14\x02\x1cu\x10\x17\xdd\xe3\xbb\xc0-\xa6\x9a\x17\xf8t\x83\xfa\x13z\x06\xe2iM[\xa4&\"5ZH\xa2\xc1)\xbe\n\x10\x80\x1f\xe2\x1f\xb1\xcc\x90\x1d\xe0I\x83(\n\xd5\x94\x18\x8d7\xb1\xf4! K\xfa\xd3\x1aM\x15\x1a\x93\xca\x91&\xbe?\x95\x1b\xa6\xff8\x96EH\x8eCrj\xa14t!F$\xba\x17R\xb7J\x84\xe3\xe6\xe9Q\xe4; _\x16\xb8\x12\xb6&\x02\"\xc9\xb1\x91\x1b2\xd4\xbe\x94\x83\xaa\x0cx:\xec\x8e0h$\xe5\x11M/\xb4\x075\xfe7\x92H\xd9:\x9fZ(\xdbZE\xbf\x0e\x02l\x958\xe8\xcf\xb9'S2\xb0\xa4\xd4\xed,\x97\x91\x16\xc8@\xa2GQ<\x9e5\xe4\"\xdfB3\xde\x9421\x0f\x87n\x98]\x03Y\xf8\xab\x18E\xba\xbddbF\x1b\xa9\xe7\xb9%t\xbe\xa4\xb7\xa8g,\"\x07\xc5\xe5y`A\xd2[\xc4\xb3\xc0\xfc\xca\x91\xa1\xb6\x01\xee\x0d\x14\xed\x1cPN\x0b\xf3oM\xba\x81J\x8c \xe3\xef\x96YQ\xf3*n\\\xdd\x92\xb5_\xcc\x81\x84\x1cH\x07\xc2\x98\x87\x04Bb\xc2\x85\x17\xb2\"tY\xc9L\xf1s|CT\x92\xd1\x9b\x82\xdc\xd3k\xf6cZ\x06\xa0M\xc8MV\x84\x9cM<6S\xd5&g0\xd9,\x114/k\x8a\xc8t\x9a%\x19)h\xbe~\x83\xce\x8a\\zfB\xf1.\xe5t*\xee\xaf\x19\x1d\xa1q\xebY\xb9\xccS4!!?\xa1\x806\xd2\xfc,\xb3\x82~\xfc0\xc2\x0cI\x1a\xf9$\x15\xcb9\xbf\xda\x96\xef\x84/\x19\x17\x8c.\xd1(fF\n\xce\n?\xb8\xacF\xcb\x02\xafp\x96\xe3IN\x82\x9e\xc1S>j\xce\xbb}\xa8\xb9ac\x16h\xc9[\x02\xdc\x92a\x13%g#4tx\xa2\xf2l\x9e\xed\xdc\x165\xa6\xf7G\x8b\xfc\xe8\xe3|y\xf7v\xf5yM\xf3\x87\xf7\xbf\x96\xef\x7f\xde\x7f\x9c\x9bK\xe4\x9fk%\x1b\xf78\x87\x9a\xac\x99B\x95\xb8m\xe7V\x8b\xb3+U\xf2\xc2\x8c\x7f\xbd$\xfa\xb5]\x1a\x98\xc7J\x1f\xf0r1f\x19\x12\xf97\xb5\xf8\x8dC\xb8\xb2\xc4L|\x0e\xf8\xb1\xc9\x81\x92bC\xb7\xc6\x83\xb5H\xe4\xafv\xbb\xd8\xc3\xb5EZ\xc4E\xe4\xf8B\xe9V\xeb^:\x16\xe0\xb4\x81\xcb'\x82.\x8aAG\xd1\x11P{\x94`\xdc\x14\xe0l\x05p4\xa1\xc6;\xb2\x14\xa5\x1f\x9a\xaa\xd2Ml\xbe\xcd\xf8HN\x959q\xde1\xad\xd9\xfd/~\xe1\x9f;c\xdctX{df\xd5\x13\x9d\x03\x04\x9a\x07\xf6\xc4Z\xa9\x00\xe7\x00u\xb7\xd9w<7\xd2\xf4\xe9,+\xbc\xe5j\xdb_o\x05\x1f\xe3\xbf\xca\x93\x1a\xc7\xea\x8eL\xea\x8c\x06\xbd\x07\xe2\x19\x86\xd5\x8f\x8b?u-.\xb2\"\x85\xf0!\xb2%\x12B*K\xcab\x9b\x18\x95S\x84\x0b>\x8a\xf7\xfa\xd7L\x10\n-\xb0\x90\xbbG=\xd1\xcc+\x10%\xf6l\xeb\xb4*i\xea\x9a\x19v\xfdv\x9bLs\xb8\xce\x8aU\x99\xafHTX=\x06\xad\x90\xaa\x12\x83\xeaI\x0c\xa9$\xd1\xbf\x86D\xff\xea\x11\x03\xeaF\xf4\xac\x181\xa0VD\xef*\x11C\xeaC\x0c\xa9\x0c\xd1\xbb&\xc4\xf0j\x10\xf1;\xae\xe6\xf1V\x80\xf0\xbc\x8f\xa5\xb1\xf5\xad\xfd\xf0\x08U\x1f\x1e\xaf\xde\xc3v+=\xec@\x8d\x87G\xae\xee\xf0\xe8u\x1dv\xa4\xa2\xc3\xae\xd7r\xd8\xa9*\x0eOW\xbf!v\xb9+\x1e^\x11\xe1\x8a-\x11\x15\xd0\x9cfS\x9e\xf8Iy%\x84Zg\xd3\xb2\xc3G\x10\x94\x9e\xa49^\xb3)\xf7[=\x00\xccNDV\xbb\\\xb7\x19QU\x07Zy\xb9\x0c)i\x9a\xbd\xc6E(\x0c\x85\xceHV\x99y\xe0\x9c:\xdf\xec\xb5\x1b\x1d\xed\x84\xbd\n<\xb7\xc2\x15l\xc3\xe4\xc4\xdd\xc8.K\x9b\xc2y\\\n\x07\x80\x89Y\x98\xe0Z\xd5ch\x1f\x90=a\xbf\x91\xc5\xe0\xf0\xf5\xa9Xd\x15!\xcf\x8b$\xcae\xb2\xe7\x01S\x91\xba\\V \xa9\xf7\x1a\xdd_\xefq/WR\x16u\x96J\xcf\x11*\x97t\xb1\xa4u\x90\xdc`\xb5\x0f\xdbA\xe3r\xcd\x94\x85\xac\xb9\xe0rU\xca\xabs\x17\xb3\xecL\x08\x7f|>l\x01t\xa1\x0d\xcb\xaa\xdb \xa7.\xea\x94\x88;$,*b\x9bt\x0c\xaf\x10\x8c\xb9h\xb4,:\xa7\xf3\xd7w\xf2\xb4\xe74\x96A\xf7\xe4L\xd90s\x0e\x94\x08\x15L\x1f\xdae\xdex2\xa8Z\xaf\x03\xe0\x86\xe4\xca\x19?\ng\xca\x81\xf83\x88\xf4\x11r\xe4\xfa\x92:\xc2R\x18D\xeaF\x99q\xc1\xd5\xd2&\xda\xbe\x8c\xe9\xd2\x1a2b\xb6\x15cU\xc7o\x0e\xa2c \xc08\xa8\xd7\xfd\x01p\xbe\x81\x9b\x7f\xf4[\x04\xb0\xd7;fW\x89\xe7\x0f\xc3\xc3m*}\x8d\x1c\xa0\xb0Y\x8b\xbbQ\xceFK\x19C&\x14\x81.\"\xc0\x93\x896\xbe\x8c\x00O\x0c\xda\x08\xabAW\x12=.%\x86\xe36\xecb\x02z5\xb1\x19^\xf1\xeb\x89\xceg=6\xce\xac\xcc\xd3Z\xa6\xe7\xda\xb7u\xfc\xcc\x9a\xd5h\x86\x8b4\\\xaf\x8b\x96\xcd\xd9T\x15\x15\xaci\xb5L\xe8\xb2\n\x14_\x03\xdf\xaa\xc0\xce\xa9\x80\x93*x\"\xa4\x00:q\x97\x03\xe7\x9c)\xef\x8a\xba%\x033\x1a\x90 \xf0\x8b\x95\xc7'\x17r\xc12\xf0\x8ae\xd8%\xcb\x90k\x96!\x17-\x83\xaeZz_\xb6\x0c\xban\x19p\xe12\xec\xcae\xd8\xa5\xcb\x80k\x97M.^\xfa \xb8\xfe\x97/\x11p\x83Jo?\xc2\x05\xccc^\xc1l\xfb\x12f'\xaea\x1e\xfd\"\xe6 \xaebv\xe62f\xf7\xafcv\xecB\xe6)\xafd\xa0\xa7\xb2Q\xafez\\\xcc@\xf1\xc3\xd6\xe5\xccZbd]\xd0L\x97y>\xcd\xf2\\Fq\x07\xc1\xd5\xd9\x0doA\x8d\x11\xadpQ\x8bE\xb5\x95#\xa8\xba\x05x\n\x0f@\x84\xa7\xdc8nle\xac\"]\xf5\x02\xe7\xecm\xb6g\x04\x18\x84o3\\\xcfF`\x83\xa4\x8f\x11\xc0 Z\xd7I\x93\xac\xc0\xd5\x1a\xbdn\xeaLgEMq\x91\x04\xb6i\x92\xe3\xba\x0e\xb4\x8c\x17O?\xe4\xcc\x86\x96\x1c\xfe\x81\x92\xc4\x16\xab\x10\xb9'\xc9\x92\xe2\x89\xb7\x04||2\xbfHX\x9b\xdfY\x8d|k\x15\xb9\xb7\x82\x9b\x87u\xf0R\xcb}\x95\xe8\x05\x16\xb8\xef\xea^\xc3\x8eRN\xd2 t\xd8\xdd\x97\xeb\xf6\xcbM\xbf\xef\x08\x0fp\x89A\xdcam\x9aF\xd89@\xe9\x06\xe5:r`\xe9\xbd\x14\x8b\x8a.\xd4\xf7f\xcc1\xed\xb1\xeb\xb1]\xe2\xd4\x867e]\x80=\xf8d\xbf\x18\xa9\x96\xe0c\xf0\xac\x8b\xb8\xe4_\x0f0\x8eb\xc7\x83y\xf9\x04\xb5'\xbb\x08\xc4\xae\xd6\x82\xe06\xa1~\xa4\x853\x9c\xfa\x8dn\xdb@\xcb\xcb\xc5\n\x08\xbeN\x93\xc1_\xb22(\x1d[R\xb1HQ]\xce \"\xf7\xb4\xc2\xc6\xf5\x930\x152G\xd5\xa18\xc2\x16\xe1\xa2\x93t\xb16\x92BU\xeaQ\x00O\x0b\xcbv\xa7\x06\x9b\x84\xd7<%\x92\xa7\xe2\x93\xf4\xb76\xbef\x1e\xd9\xcb\xb5\xe6\x08\xfb\x0b(\x98G\xbf\xd6\x1c\xd7\xde\x8f\x08\x86\xef\xf28p!{\xdb\xb3\xa3\x95\xaa\xdf\x93T\x04\xeb\xe4\xe3@1N\xf1tl\xe1`;\xd0\xac`Vz\x9c\xcc\xd1\xae-\xa2w\xad\xb0u&\x9e\xd8\x14\x89\x078Q\xf2\xc7\xc6\xf1L\xaf\x1c\xce\xa5\xc8\xa7l\x94\xe8\x19\xb1\xf9i_\x84\xa2\x0e\x1a\xc4\xdd \x1a\x0b\xf4\x9a\xae\x17Y\x82\xf3|\x8d0c)-\xe5\x993\xea\xb1\xb5N\xbc1\xe7\x95\x14w\xe1\x9d.\x9e^d\x03w\xbdx\xfa\xf0(\xea\xd6x\xfd\x0d\xc4\xa2\xaf5;\x95g\xf5\x8c\xa4r\xd7zcw\xd5\x13so\x88\xa7\x17\x9b\xfaR\xae\xfc!\xb80:m-2\x92p\xe9c\x9c4\x01\xf0\x18\xa3\xd0yU.\xca\x1a\xca\x03(\xba\xa7l\xc3\xb9\xfd\x15\x98/\xe3\xbdf\xa5s\xefC\x04\x9epZ\x18\x1d\x84^\xcb\x0c\xf9\x92\xbb\x91\xcb\xe9T\xb6\x82\x0e\xd7\xbbE\xe2\xba++\x08\xbf\xbd\xe7R!\xf2s]#ic\x15q\xc2\xcb2\xf0Y\xe2\x9e\x15\xcb\xbbYc\x9a\xd5L\xdfq?:^,\xf2\xc8\xed>\x13kb\xca.;\xf6\x99P8\x08\xcb\x1fx\x01\x81D\x1ep9Cy\xc0\xbddZ:\xfb{\xc4Ua\xd4\xd9cIH.\xf1\xd8ZhD\xa5\x7f)\x8b\x82\x18\xd7\x9c\xb4\x8di\xba\x92~?Y\x0bE+\x1dWa\x01\xf4\x9aMx\x10\xdc\x84\xa0\x8b\xaf_\xce.\xfe`\xc4\x88\x7f]\xffyzy\x15\xda\x98\xc09\x8a\xc7\x13\xec\xa3?\xbe~;\xfd~zuz\xf6\xbd\xdful\xf7\xcb\xf3\x8b\xb3\xf3\xb3\xcb\xde\x9f \x92\x07}\xc4\xf9\x14\xf8R\xdft\x0f#2~\x8ei\x9e #\xc3s\x10\xf8\xd0\xb8\xe2\x8c\xf4D]\x16\xb7EyW\x1cd\x05\xbf\\\x12\x15\x8a\xc2\xa2\xce?\x83]\x86\xa9\xbf\x98\x08q\xbb\x8f\xab\x92\xa6\xca\"\xfb\x1f/O\xf9Z\xebi\x15\xc1T\x94T\xbbx\xa3)O\xee\xf9\xee\xe2%w\x8ey\x13\xac\x1a6*I\x8b\x0d-\xc2\x8b7\xb5\xec\x87a\xa8\xf0\xa5\xe7\xc3\x87\xff\xd1\x8d\x14^\xbbP\xb2:\xe3\x89\x9f6\xd7\x81h\x86W1\xd3\x82\x87g3!\xcb\xe4`H\x0c.\xca\xa2\xce&\xb9h\xb5\x18\xb1\xd8G>ID\xc5\x15D`\xbd\x04@y>z \x80z \x80r>/\x01P/\x01P/\x01PpD^\x02\xa0\xa2>\xa4\x97\x00\xa8\x90\xd5$\xf0\xbb\xb2\x96\xa9ay\xb5\x0f\x8c\x1ePq2]\xde\x003H\xc4>\x88\x86\xe3:\xa4\x1b[\xd4\xcc\xe3\x91T\"g\xfb@G\x9a\x08'\xc6\x81\x0c\x13\xf1\x00\x82j\xc7\x8e\xcf\xdb\x8a\xffp\x1d\xa4\xbd\xa0\x82\xd1\x1f\xc6\xdd\xceX\xb1\x1f\x0e\x90\xe3E~\xb8(\xdfr\xdc\x87MO\xfc8\x10\xb5\xe2\x81\x8e`(\xbfQ\x07Go\xcc\x07\xc0\x85T\xf7\x8b\xf8hM\xf6.\xc7{8Q\x1d\x1e\xeda\x83\x03sh+\x17\xf6\xdb\xe7\xd6\xb6\xe2<\x06rq\x86\xeb\x19I\xc7\xf2\xd4n\x9f}\x06\xbej\xc5\x89Waw\x04\xea\xa6\x98\x0fa\xd8\x13\x04\xc5\xb4\x87\x8f\x85\xc4D\x97\x12\x94\xeeN\x08IH\xa5\xa1\x9eT9\x81\xa3\xac\xafZ3Aq\x81\x8b\xb2\xb4qx\x19\xc5\xd8a$\x834\x1d\x02j;\xd43\xd2\x11\xc1\xd7\x0f\x82o5\xd4sbP\x8f\xc8G0\xa0\xbe\xba\x10\x0d\x8b\x80D;\xcb\xc1\x98\x8e\x8c\x02\xec\x17\xcb\x86`\x11`\xcf\x94\x97\xc34h\x17\x94C\x8b\xf6\x84\xd0o\x0eb\xca\x03\xf5c\xf9f|\x8c\xaa\x92(\xbc\xde\xf1\xa5\xa8w\x94%zL\x8el\x18q\xd9\x058j\xd4\xa5\xe3\x04\xee\x8f\xb9\x0c\x9cN\xea\xedG\\Z\xd5\xf2\xbd\xf1\x96\xce\xda\xf8\xee.\xa8\x83\xa3-\x9fW;\xf3\x1a\x14\x1f\x19\xdd\x0f\xf1 B\x8e\xc1 \xad!\xecg`\xa3\x0870\x0b\x1d_\xdc\x8c\xbb\x99\x84\xfd\xf0Ajhk\x89\xee\xf7\xee\x86\x10\xa1\xa9\x18\xaf\xebz\xd2\x0dU\x0e5\xfe\xf2@\xa3\xde\xb4\x9eP\xcd;\xe4o\xd6M\xc1\x1d\xea\x93@t3\xda\x02\xc3:\x92&\xd2'\xcd\xc72\xb7,\n2\x8bC\xf3\x82\xf33\xab\xd5\xc5n\xbb|\x1a\xd82\xcf\xcbu\xd9H\xaf\xc7\x8a\xf0H`4\"\x91\x83\xfa\xe5ygNu\xd1\xf3u\xce\x8ba\xd5\xad\x00\n\xea\xe3\xd9\x82bt\xf5\xb4\x9d\xee\x17\xe7_^\x1az\xa2\x97\x86\x9e\x11\x1b\xe0\x91\x1bz\xb6\x8d \xdfJl\xed\x96\xa16\xc80\xcb#dcX\x96\xc5`\x1b\"+\x8e\xd1\x02\xd3\x99\xf1\xaa\xe9MF++H\xce9 \xed\xc6\xa1\xb6A\x00\xe4\xea@k\xc2\xb2\x1b\xfc\xd3\xd4\xcb\x86\xf0\xe9\x89\xcd\xbb\xb8uye\xda\x02=9\xd5\xdb\x8cp\x1d\xb0\xfap\xa9k\xed9\xe6\xae5\xa4\xb7\x16[a\x01`\x86v\xca\n\xf4\xe3\xb4\x0e\xceo\x8b\xf4\x92m\xba\x8a\x87M\xe9\xba\xda\x8d\x9c`\xa2\xe0\x0d:\x0d9\xd5\xb3\x1ae7EY\x992#\xfc\xf3\xc0v\xac\x08;\x90\x04\xe2>\xc6^\x08r\xc0\xf6\"\xc8\x9a}\xc6-ak\xaf\x85\xa8\x13\xf9\xd7l|R\xf0b/e\x95\x92\xea\xcd?B,\xb9\xcc\x8a\x84\x1c\xa3\xa4\xac\xe7e\xbd_\xa7\xb7\xe8\xed\x9b\x0f\xef\x9d\x1f\xc4\x9c\x89B\xd1j\xe3K\xe0M\xe6\x13\x92\xa6B\x13\xdf\\\x9c\x7f\xd1\xa6\x95\xf4\xa7\xd5\x81\xf5\xa5\xa5\xb5\x8f\x80f\xf1\xbdA_;n\x93\x90i\x16\x9f$\xd3\xecR\x17m\xdc\xd5a.\xf8\xc6\x0f'c$\x1c\x80\xfc\x06\xf2\x06\xc7\x07e\xc7\x84L\xea\x80\xe6\x88Z_\x16\x7f\xfe\xcf7\xe3\xda\x9a\x92\xeaB\x18V\xfcZ\x01\xd7\xf2\xe2\xcaX\x15o\x82\x86\x17\xb7\xa9\xa2\x06\xd5iS\x8e_* \x9f\xbe\xa6\xbc^)\xdbAE)\"\x86\xbc\xe78\x84\x02*\x00\xcc\xcc\x80\n\x8em\x1d-\x11}\n\xb7\x11\xc7^zMF\x1br\xd6\xb7w\xee0\x97:{(\xa3\xb5Q\xe8\xb5\x10\xe7\x8f\x14\x95\x8c\x7fwY\xeb\x06*\xbco\xdc\xe1\xa8c\xe6\xe4\xf0`\xd9\x97\xbc\x1c\xf9\xbc\xe4\xe5\xecP^\xceK\xd4\x7f\x88\xceA\xde\x99G\x8f\xfao\xa84L\x0b\xfb \x1a\xd2\x8c\x03\xbc\x10\xd2\xd7`B\x19\xe2\\h\xb9\x10Lp^\x9f\xc1\x10vu6\x8c\xd3\x92p0Q\xe0\x07\\,C|\x05a\x8f@_\x1f@\x94\x9f6\xf8-3\xb7eY8\xd8\xcbO\xed@\xee\x0e;\xe1\x1b\xe7x\x0b\x9a\xe3L?\xe8\x14\xef<\xab?2\x17M\xb3\xa9\xf9>\xc4\xcb\xbeg\xf9\xee\x89\xdd\x02\xe7<\xbd\xf7?\xaf\xdb\x87\x14\x0bX\xf7\x84>\xe8Ln\x9c\xbc-`\xeeSx\xf7\xdc=db\x01\xa2Z\x9e\xa8\x81\x937\xe4\xfc\xad\x12\nM8\xb1\x13w\xf4\x8c\xbd97z\xa7\xab\x91\xba\xce\xca\xe2\xe0\x7f\xe5?\xf8-\xed\xbfE\x16\x9b\x80\xe3M^C5\xc1U2SA\xa6\xe2vN\xcd\xad\x8f\xddW:\xec$K\xf7\x18\x87\xe5\x99:\xdd\x13\x91hM\"\xb2\xf8\x95#\x19\xf9\xf3\xe1\xe7\xdf?M\xf0\xbb\xfd\xa3\xe9\xfb\xa3\xfd\x0fG\x9f\xf1\xfe\xa7\x8f\xf8\xf7\xfd)I\xf0\xe1\xe4\xed\xd1\xe1;\xf2\x165\x18\xe94\xe3f.\x9a|\xe3\xc3_\x0f7\xe4\xed\x03~\xa0\xcb\x8fG\xf4\xfe\xe8\xfe(\xcfWG\xf7\xc9\xe7\x07Z\xff\xba\xcfo\xefH\xfeF\xe0,\xd8\xc3\x81\xed\x99g\xaf\x16\xfe<\x83Z\xddn\x1b\xdft\x11\xd0\xff\x91?;\xfcu\xefE\xe5s\xfd+Of\xef\xeb\xfb\xbb\xe2\xc3\x87\x9fGo\x7f>\xdc\xd0OU=[\xfdZO\xab\x9fI\xc5q\xd4\x00ef\xadB\xd5\x85b\x83\x8a\xc4U\x16\xe3p\x17{\x11\x7f<\xfc\xf5\xce\x8b\xe0\xdd\x87w\xe9\xafw?\xd3\xd5<\xc5\x0f\xcb\xbb\x87\x04\xa7\xe9l\xf6\xe9f\xbe|?O\x1e\xc8{s'\xfc\x07\xd3\x0b\\\xba\xc8\x19\x92q6\x0d\x9a\\H\xcaUR\xeb\x1d\xf7\xc6\x03\xc2X\xb8m0j\x15\xc9{maK1\xd8\xe2\x1b\x0d/>\x8a\xc1S\xe8 \x92\xa5\x86/\xc87\x06wJp#D\x1a\x1d\x8a-{\x16u\"\x88\xce\xc4\x04W\xc4\xb1\x10eh\xe6\x1a\xa5e\xf1\x8a\x8a\xca\x8c\\\xa8\xa9\x1e\"\x1c\xbc\xb1\x1c1\x9a\xe0\xd4\xbc\x137\x10\xd5?:\xe7\xf0E\x13~se#~\x80\xd6\xab\x07\xa5%\x11\xbd`\x84yA\x9b\xcdS[}\xc1\xc47\xcdX\x9d\xbaR\x86\xcc(kb\xdey2i\xcc\xe7E\x05E\xf3\x8c0=\x13&\xd6\xff\\+{c\xcfBC\x0f/\xfcBTi\\sn.\x89~}m~{PV\xad,\xf6Z\xeb\x0c\xe3\xe0\xa2>i\xd8,>\x95\x9f\xa8\xed\xd5\xcd\xe3U'\xf8\xdd\xce\xdb\x8d\xf8R\xf5\xf6\xed\x06p\xf8.\xd17p\x83z0B1\xa8(\n\x19\xe9(\x9cP\x18\x11\xc0\x8b\x00p\xb6\"\x80\x87\x90=?D\xc2\xee\xe9\x1fF\xa2._\xf8\x08\x9d\xce\x179O\x85\xa8Q\x9d\xde\xbe\x91\x99|\x01XYAI5\xc5\x89\xb0\x17\x975a\xa6[\xa5\xb5&\x11;\xa4j\xaa\xc4\x07`}\xe1\x86\x8d\x8f\x89\xe04\xe7\xc7e&\xf5\x14\x8c\xd0y\x1e< *|\xfd\xd6\x8a[\xd2\x8d\xf0\x88\x9a\x0b\x15\xe2}\x97\xd1Y\x16\xed\x19\xeb\x0f\xba\x929\xa4\x81\x08\xdb\x90\x87N=\xd1\xa0\xf9\xe8\x9e\x11O|\xe7\x88G\xae\xa5\xf0\x8f\x80\xf3.\x7f*&\xb6\x15\xcf,\x93o\xd0k\x95\xd6\x11N+\xa9\xca<\x9e\xdc\x0dXA\xe2\xc1\x1c^\xb3#\x152z\xca\x85\x85@\xee)\xb4\xf4\xec\xa2*\x13\xb1\x05\x83\x1d\x83\xe5\x07p\xe6Ar^\x07g\xbd\x0e\xcd{\x1d\x96\xf9:,\xf7u`\xf6\xeb\x80\xfc\xd7\x81\x19\xb0\x83r`\x87f\xc1\x0e\xcd\x83\x1d\x94 \x8b6\xca\x85\x8d\xdd;u\x9f\x91\xf3a\x07f\xc4>RN\xec\xe3f\xc5n?/vG2c\x9f 7\xf6I\xb2cw(?\xf69d\xc8\xee\\\x8e\xec\xd3f\xc9\xaa8\xe5\x98e\x01\x0b\x9e\x92\xbf\x15\xd6\x97\xbe\x15\xd4\x13\xfa\xaaFuvS`\xba\xac\xf8!S\x0d\x1e\x80\x07\xb3\xe4ND\x16\xaf\x12\xc0\xd2\xbed\x9b\xea +\x98\x08\xe3|a\x96^\x10L\xbb\x036\x8e\xe51\xf6\xd1lW<\x19Ae\xf1\xea\xa5\x8dh\xb9@9Y\x91\xdc\xaa\xd7\x12\x0e\x1b\x14\xde\x0ba\xa3\xbei\x83\xe6\xeeB\xc6g^M\\\xfafB\xe2Rd\x14\x97i6\x0d\x86\xdf\xf1\xe84v>2lcu\x80\x15\x18\xd8\xa7\xcf\xe0\xca[\x16\xec\xb4\xc6\xb9\xac\xf0\xce\xb3\x9a\xaa\x0c\xd9\xc6\x0f\xe3\x0b\xf7c\x98\\c\xee7y\x94cU\xc4F\x87\xaf\x83\xa6L\x8f\xaf\x7fK\xb1\x8f\xf3\\om\xb5\xd2\xe5\xd5N\x91\xf2\xb0\xb5\x8e\xab\xb5\xfb\xb4\xeb\x1cX\x80^\xd5JdN3\x92\xa7\xc1\xd0e1\x1dy]\"R\xe0I.N\xe7\x11\xa9\xc9|\x03\x91\x82Vk^\x00G\xe2\x0b\xa2i\x12(y)\x9e\x1e\x14\xc1\xa4\x00\x92'h\x8f\x9f@\x98\x1cr\xf5D\x05\x1c\xd2\x81_\xc1\x9f\xc9\x15\xf8l\xa60\xc75UH\x83\x08\xdb\xd1y\xe4\xe1s\xd9\x88\x13)E\x06\x8cX_\x85!\xfb1\xea\x0d\x05jM\x8a\x07\xce\x19f+K\xdb\xa5%\xe7\x04g\xb2\x1aeERqk\x1e\xe0?\xe22\x9c\x17\x93\x103\x1e\xfc\xc0[%\xc9~\xb6\xb2\"L\xba%\x1e\x8e\x08\xbc\xd8F\x91\x02*+\x8b\x03A/o\x91\xb8\xb9uu\xc2T\xdc7\xa6]k\x94\xe0\x85\xb02\x9dQ8l\x07\x06A\xe9u^\xa29\xbe%r\xa9\xebj\xdfE\xaa66Y\xa3;REf\x0c\xa7\xbe\x1f@\x95\xee\xa54\xa0t\xbc\x94aKi\xeb\x02\xdf\xe0\xac\xa8\xa9q:\xf1\xc2\xb3]\xe9\xec+\\$\xa1B\xa7W\x86\x1b\x95\xd7F\x99\xe1\x151F\x92\x1c\xe61bf\xeb\x1e/@\xd5d1T\xeb\xf1\xfb\x19;I\xff-9\xdd*\x8dwaE\x04#,#\xca\xd8\xfe\xf3\x02l\xe2\xcb\xb0b\xa9\xc8\x8bW\xfc\xe5\x19\xe5\xf3\x92\xe3\xe5\x02\xd0\\\xda\x8c\xd32\xc5\x067,\xc2\xc1\x19\xe3\x106\x07\x016\x14\xc4~z\xfc+\xacv \x96F\xc0\x1f\xc0`\x97\xb6\xf0[\x96\xc6\\\xc4\"\x13\xb6JSD\xc8u\xd0\x1c\x1a\x9e`\x82\x02q\x05\x12\xbc\xb4#\x9c\xe9\x06=\x19o\x1a\x0e\x05\xc1\x19\x8b\x07\xcc!\xf9\xcf\xe7\xc1#\x03\xd9\xc6!a\xbc\x93|\n\xc2\xb37\x19\x88O\xe1\xc0\x0d0s\x86P=B\xecF\xbf]3\xd2B\x18B\xebF\xc1\x1b\xde\x85\x12 Y\x05 \x86\xf4\"\xeaK\x8c TX\xd5.sND\xf4Ez\x12i\xdd\xafK\xc3Af\x12\xa4+\x11P_\"\x04 \xbd\x16\x0fpi \xb8\x9c@\xdb \xc6\x16\x8f\x9e\xa9\xb8\xeeD\x8fC\x1d\xe08\xd3Bz\xb8&5\x81\x01\xf9\x04\xd3\xa6h\xf7x5\x86nE\xc8\xc8r\x00\xf2,\xa67P?V\x0d\xa3\x7f\x14\x0d\x82z\xae\x96\x91\x17\xc90\xca7\xd4'\xc8\xbd\x84\xdc\xe4\xb7\xbb\xaf\x8er\xd6r\x02\x1d\xef\xc4\xe5\x8eR\xdb\xf2\x01\xacM\xd3\x08\xb6\x06P\x84@\xb9\x8e\x1cXz\xf5M\xf4B\x0bu\\\x17Q\xe5\xd4\x99\xf6\xb8\x82\xda\x1dNm\xac\x98\xda\x00{\xf0\xc9~\x11\x93A;\xc4\xb3.\xe2\x92\x7f=\xc08R\x9a\x06\xf32\xa6\xb8\x80\xac\x1b\xce\x13\x88\xd2\n\x82\xdb\x84\xfa\x91\x16\xcep\xea7T\\\x80\xe5\xe5b\x05\x04_\xe9t\x0c\xb4\xb4T\xbe+\xabe\xa5\x13V\xef6\x96N\x9c\xe4\x80\xb5\x08\xa2X\x1b%\x9bu]D\xfd\x0b+\xbd\xf9\xb5\xb3\xc7\x87Y#\xb3\xfd\x17\xee\xbc\xed.\x0c\xb1\x1c\x1e7\xde_ \xe3[\xa4#\xa9\xeaG\x8f\xc58h\x96D\x13\x1c-H}\x83\xd0_\xbc\xd8\x80L5\x0f\xc2\x92\xf1\xf8\x8e\x02\x18'y]\xa2\xdb\xa2\xbc+\x10f\xab\xf6\x1b3\x7f\x82A\x1aO\xe10\x86q\xacI7P\x9bN\xddv\xa8<\x83V.AD`j^\xa3\xd7\xbcReFgh\x9a\xe5\x94T$E\xb7+\xa5\xd7)\xa90-+\x7f\xb0\x98\x8cD\x0f\xb2\x0bD\xa0\x04\xa4\xa4\x8ce\xef*\xca\xc4T\x07\x0b6hI\xb3\xb6\xef\xa0J\x1e\x9dWN\xa72\x0e\xce\xeeJ\x0beVtQ\x8c\xe6\x86\x01&I\x00\x97\"\x02O\x03B\x9d{\xf5NH#\x9f\x0e\xb5e\xa3\xd0\xe4\xc4\x06\x7f7\xc3\xf5l|R\x19\x1d\x0c2'\xa20*\xb3\xa8\xb5\x16M\x9e\x88 E4\x08/\xc0\x14`\x11\xae\xe6\xb8\xbb\xd6\xc8\xbff\x03_\xb3\x9f\x85c\x97\xd8\xa3\xc3\xd3\xd8&h\xcdfR\xce\xe7e\xc1\xc7\x0b\xc7\x84\x8a\xfePO\xc2\x0e1\xb4\x08OSd4w\xa5\xbc\xfdE\xf4JY=\xbaJ4z-\xc0\xfe\xd6\\\xd1r>\x1dh\xd6\x04\xefj\xd5\xc3DoV\xac\xca\xdb\xc0Z\xca\x8a\xc5\x92>\xdb\x84-\xc8.\xe85\xf1\x10S\xaf\xfd|g\xd3.\x9b\xaa\xc9\x02\xe3l\xe2\xf3\xac\xb8E\x13\x9c\xdc\xca\xb2\xec\x00H\xe0\xb3o'\xa7\x7fF?3t\xf2P:\x87ic\xcfh\x90I\xf1~li`\xb4,\xecV\xa5\xbe\xa7gV|wJ\xdb\xccc\xef,\x15F\x8c\xdd\xc4\x1bv\xeb>OC\x86d\xcb\xa1=${g\x0c\xa9I:H\xca\xa2\xceR\xe5}\xe0\x83\xdff\xfc\xd6\"\x15\xfd\xae\xe6Y\xcd[\xa7J}TV(%9^\x93\x14\x98\x98\xe8A\x92-\xbe6\x92\xec\x9d\x97/\xcd\x85\xa2\x13s&3|\x01\xe8\xea\x81\n=q\xa8:\x13\xf2\x89\x14 ^\xd4\xcb\\\xa3$\xe5\x16?\xc5B\xfc\x88\xa8\xb1<\x009\xc60\x1c\x05\x0e\xaf\xeb\xdfP\xd3l\x9dw\xb2,\xa7\x8ae\xb2\xb1\xb0\x12\xd7\x91Yb?\x15\x07\x19\xf5ASL8\x83\x99\x0e\xcf\xa3RR\x1bK\xc5\xc0\xe6.\x03\xa0gkgQ%g\xe1$yy\xe4\x01\x17\x9f\xed\x13}%RN\xb9\xe5\xca\xa7\x1cS\x8a\x93\x99\x18\xad\xe9\xd7WV\xe3\xfdO\x1f\xf1\xef\xfbS\x92\xe0\xc3\xc9\xdb\xa3\xc3w\xe4\xad(\xda\xaedB\xe2\xef&'\xd5\xb8\x1c0\x84\xeb\xe1\xaf\x87\x1b\xf2\xf6\x01?\xd0\xe5\xc7#z\x7ft\x7f\x94\xe7\xab\xa3\xfb\xe4\xf3\x03\xad\x7f\xdd\xe7\xb7w$wa\x1c/@5\x16C[\xe5\xa6\x1a\xf2\xedZt\x11R\xc5\x8f\x0f\x7f\xdd{\x89\xfd\\\xff\xca\x93\xd9\xfb\xfa\xfe\xae\xf8\xf0\xe1\xe7\xd1\xdb\x9f\x0f7\xf4SU\xcfV\xbf\xd6\xd3\xeagR\xb9\xb8\x10\xbd\x8c\x19\x89 \xad\xab\x17\xcd\x03%Y,\x16\x84@\x1c\xfez\xe7e\xc0\xdd\x87w\xe9\xafw?\xd3\xd5<\xc5\x0f\xcb\xbb\x87\x04\xa7\xe9l\xf6\xe9f\xbe|?O\x1e\xc8{\x17d\x99\xdd\xa2\xcaZyLn\xc1\x85P\xc5{\x18\x1b\xda\xa3 ^Ls|\xc3\xa5\xa5\xae\x91_\xaa_\x064\x83\x86a\xddM\xe8CI\xbd(\x8b\xda\x19\xab\xa0\x90\x90B\xf4q(6E\xfa@\x82\x15\x88\xbe\xf4\x92{\x81B\xf0\x949\x16\xbd\xad\xc1\xfc\xf4\xca\x1fr\xec\xbd\xf7t\x1c\x04\x8fc\x89\x11\xd9\xf0\xd9\xa3\xd3\xd0\x88D\xb6\x06\x83L\xaa7uU\xc3(\xd0\xba\\VRq\xda$ZX\xf1\xc2\xae\x17\x92\x15\xa8\x89\x12\x13\xffg$\xca\xc8b\x82\xfe\xb5$\xd5\xfa@T\x82\xbd8\xff\"\x13\x1b\x1b\xd8*\x04\xf4\x1f\x9e\xa1N\n\xb4,\xc8\xfd\x82$L\xb1\x8bNB\xaeI\xa8\x93\x19\x99c\x9b\xe7^=\xef\xd7\xf1|\x80\xee\xcc\x05DpR\xa6\x0e\xcf\x9a\xf8\xc0W\x11[\x9d\xa6\xb2\x82\xbe\x7f\xd7\xfa\xab\xb7\x9at\x00\x87\x94P\x9c\xe5;R\xbc\x81}~\xbd\xac\xbcML\xa2\xea\x8c\xe7<\x0e\xfe\xdayV]\xe0\n\xcf %\x95\x81\xf3\xbeH\xf3\xb4\x8c\x03\xdf*\xfc?{\x1b\xf6\xb4'\x1c\x9f\x8eeDd\xc51Z`j\x86\xe5\xb1\xdd\x9cU$=F\xb4Z\x9a\x82\xdc\xc9:\xcd\x05is\xfa8\xd0\x12D}M\xd4a\x86i\xc8.\x1bbx2n\xfdb\x02\xc9\xc9\xae)\xcek0\xbf\x0ck\n\xc8\xb2\xc1\xf6\xd7\xb8V\xd7\x88FX\xcb\xdc\xea.\xff\xc7\"\xb9eQ\x01I\x1eh\x875\x16Wg\x9e\xb7Mg\xcb\xa8\x02\xd29\xc8\x143\x8c.\x0b\x98\xc7\x00\xdb\x9cJ\x8ao,\xe5\xf7/ \xed`Q\x95+R\xe0\"!\x07sBq\x8a)>X\x1d\x1e\xc8\xfdv\xf0\xbfM\x89\xa0\x7f\x8b\xefo\x886\xd7\xea\xe5|\x8e\xab\xf5\xb1\xaa\x9cU\xa3\x9a\xe0*\x99\xc9N\x81j\xcf*J|\\\xbc2\xc2nZ\x1aE\xacs\x87V\x81k\x94\xa0*\x01\xab\x11t\x99\xcd\xb3\x1cW\xf9z\xcf\x94G\x12c\x0d\xaf\xad\x0bQ\xc3\x06/\n#\x98\x04\x8c\x85\x1a\xa0\xa1i\xf6P6U\x0d\x1d\xd3=U^\n\xe1ft\x88\x16\x1aC\x035#\xfe\x07:\x9d\xa2\xb2\xc8\xd7jn\xe4\x15T\x83&\xce\xf3V]3L\xd54V&\x9dtY\x15\xbcc\x85\x13v3C\x16\xf4\x8c6|0&\x05\x17\xa9]\xff\xa4U\xf3\x8d\xefY\xf7\x80\xad\xf5\xc0\x05\x80X\xb2tF\xf4j6\xa8\xe5\x87\x98\xae\x01\xc1\xd1\xc2y]2\xdc\x0cvH\xccZ\x185H\x04P\x93\xbch\x19\x1f\x0dl\xda*\xb0\x85\xb3Bd\xf7`\xda\x0e\x82\xe1]F&\xc4;\x94\x1eE]\xde\xabQ<\\\xd83y\x86\xad\xbcu=)6\xa3,\x065\xa3\xb79\x15\xa3\xc8E\x89\x06v\x82&85=\xce\xeaG(\x9b\x1e\x9b\x14_y&\x9d#aR\x7f\x97\xd1Y\xb9\xa4\xf6\xfc\xbb6\xab\xc5\xd0\x13/75\xbcb\x8d\xee\xf0\x9ak\x16U\x02\xac\xb1\x86^[;\xd8\xe4:\xee\xf0\xdd\xe4\xf7?\x8co\x0c\xdc~\xb3\x90\xbb\xba+\xd9\xd4\xf0\xb6/\xe540\xa3\xf6\xf62\xa7\xd2\xdc\xc8\x9a4\xf6\xa3\xb4,^Q.\x02\xf8E\xbf,s\x83j<'-\xb1\xed\xe6\x17\x87\xfe\x9a\x89]\xc5mch^\xf4\xa9\xc3M\x84\xdb\xc2X}&\xb6\x9d\\MiIjT\x94T-+T/\x93Y\x97_\x01\xb4Z\x98\xf0\xf69\x93\x92\xce\x8c%\xbf\xb6\xebQ\xea\xc4\xb3)\x8e\xdd\xaf\xe5(\xb2\xf1\x7f\x95\xddd\x05\xa6\x90\x8a\x8f\xce=t\xecz\xa9\x0c\xf4\x1a\xa5d\xc2N\x04\xd5*K\xd8\xb1r\xba,\x12\xdar~CFS{\xef\xd8\xf5R\x1c&y\x83+oY\xb0\xd3\x1a\xe7\xb2\xc2;\xcfj*\xeaG\x99\xf7\xac\xbe\x18@\x86\xc95N\xc2=\x10F &\xb7\xa1I\xe7O\xce\x14\x88x\x87\xc2\x82\xb1\xc4\xf8\xdf\x08Bb\xab\xbci\xa1jk\x04\xfd:\x00\xce\xa9&\xe1\xdcz\x02\x05\x01K\xee\x1e\x7fa\x8c\xb0\x14\x06\x91:\x82\xd2\xf0\xac\x966\xd1\xeaT\xd4\xa52\xe4\xcd\xd8V\x16\x8d\xc4\xc6\xc7\xf2\xa8Z\x88\x8f\x80\xd0S\xb4\xff\x84\xc75\x8c;n\x9f\xe5\xa7[\xac6u\xbb=\x95N@\xbd7\\\x95\xbb%\xe3}\x1b\x0f\xa9Cc\x9c=\xbb\xd9+%\xea\xd4R\x0fp\x8e\xe5\x8f\xc7\x88c\x80E2@=\xe0\xe2\x197\x9aa@\x8a\xd6H\x95ga\xb4\xf1\xa4\x1aZ6\xec3/\xe4\xe5\xbd!\xac\xb3\x984\xd7\xf7\x18~Y\x82\xf3|\xdd\xf4\x94\xf7~(?\x1a\x81\xdc-\x9ci\xd5\x01D\xa4'g$\x17\x97\xe7L\xc32\x95\x9e\xe4\x19)\x9a\xf3-\x8fl\x08\xc2\xeb.\xd1\xe8\xa1\x16/\xd3,\xc8\x9d>\xf4|\xe1\xc7\xe9\x14M\xd6{h\xb9H\xf5\xbfi6'5\xc5\xf3E\xbd\xa7\xdda\xa2|]\xb8\xe7\xa3\xc8\x97\xcaeW\xb2i\xe9'\x03|b\x86\x9e\x97\x85g \xbdfD\xc4\x04!p\x01!c\x111\xb0\xfb\x8c-1\xd0b\x8f\xc9x#r\xc0>a\x12T\xde\xfd\x93\x82Vk\xde\x8bL\xe2\x0b\xa2i\xb2\x1e\x91\"\x98\x14@\xa8\xd3\x13\xde\xf4\x13\x08\x93C\xae\x9e\xa8\x80C:\xf0+\xf83\xb9\x02\x9f\xcd\x14\xe6\xb8\xa6\ni\x10a;:\x8f<|.\x1bq\"\xa5\xc8\x80\x11\xeb+\xf0d?F\xb9\xa7\x8f\x1fbp\xc1\x9ca\xb6\xb2\xb4]ZrNp\x86\x17\xdbN*n\xcd\x03\xfcG\\\x86\x13\x9c\xcc\xe4\x8c\x07?\xf0\x16\xa9\xb2\x9f\xad\xac\x08\x93n\x89\x87#\x02/\xb6Q\xa4\x80\xca\xca\xe2@\xd0\x8b\xc8*|\xec\x81ax\xc2T\xdc7\xa6]k\x94\xe0\x85\xb02\x9dQ8l\x07\x06A\xe9u^\xa29\xbe%r\xa9\xab\xac9\xa6\xae\xe4\xc6&ktG\xaa\xc8\x8c\xe1\xd4\xf7\x03\xa8\xd2\xbdTi\xd0*^\xca\xb0\xa5\xb4u\x81opV\xd4\xd48\x9dx\xe1\xd9\xaet\xf6\x15.\x12\x12\x88&\xbb2\xdc\xa8<\x85\x7f\x86W\xc4\x18Ir\x98\xc7\x88Qu\xc4\xcc\x88_,d\xc5\xaa\xccWv\xfe\x7f\xfb\xf9~\xc6N\xd2\x7fKNWD\xe6R\x8b\xd0\xae\x0b+\"\x18a\x19Qf\x95\x91h?M|\x19V,\x15i\xdb\x97f\xa1\x89y\xb9\xf2u\x9cm.mF\xe9B\xd3\x027,\xc2\xc1\x19\xe3\x106\x07\x016\x14\xc4~z\xfc+\xacv \x96U\x03\xc2\x1d\xc0 g6\x12\x9a`\xcdE,2a\xab4E\x84\\\x07\xcd\xa1\xe1 &(\x10W \xc1K;\xc2\x99n\xd0\x93\xf1\x06\xd8\x1a\x80Z5F`\x1c\x92\xff|\x1e<2\x90m\x1c\x12\xc6;\xc9\xa7 \xbc\xb2]\x80'\xce\xa7p\xe0\x06\x989C\xa8\x1e!v\xa3\xdf\xae\x19i!\x0c\xa1u\xa3\xe0\x0d\xefB \x90\xac\x82\x04\xc7lec\x01Ec\xb7\xfb\x84\xcc$HW\"\xa0\xbeD\x08\x12z-\x1e\xe0\xd2@p9\x81\xb6\x13\x8c-\x1e=Sq\xdd\x89\x1e\x87:\xc0q\xa6\x85\xf4pMj\x02\x03\xf2 \xa6M\xd1\xee\xf1j\x0c\xdd\x8a\xd0K\xbfO8\xe5#/\x92a\x94o\xa8O\x90{ \xb9\xc9\xef\xf4z\x19\xe3\xac\xe5\x04:\xde\x89\xcb\x1d\xa5\xb6\xe5\x03X\x9b\xa6\x11l\x0d\xa0\x08\x81r\x1d\xf5\xe8y\x16\xbf\xd0B\x1d\xd7ET9u\xa6=\xae\xa0v\x87S\x1b+\xa66\xc0\x1e|Jz\xb5\x93\xda!\x9eu\x11G\x80\x1ef\x8e\xafZ\x11\xeaCy\x19S\\@\xd6\x0d\xe7 Di\x05\xc1mB\xfdH\x0bg8\xf5\x1b*.\xc0\xf2r\xb1\x02\x82\xaft:\xfa\x1b\x8fi\xdf\xd5\x16:\x8fI\xd8\x81.cjtO//\x99\x8d\xdb\x9d[1\xa3\x8f\x1b\xb2/\x90\xf1\xad\xb3\x91\xb4\xed\xa3\x87S\x1c4\xb3\xda\xc47\xcbB\xa7\x08\xfd\xc5\xeb\x05\xc8l\xf1 ,\x19R\xef\xa8aq\x92\xd7%\xba-\xca\xbb\x82\xd7\x8cE\xdf\x98\x05\x13\x8c\xb3x\n\x9f/\x8ccM\xc6\x80Z\xb9\xea\xc2B\xa5\n\xb4\xd2\x01\"2O\xf3\x1a\xbd\xe6\xc5&3:C\xd3,\xa7\xa4\")\xba])\xd5LI\x85iY\xf9\xe3\xbdd0y\x90] \x02% %(,\x93UQ&\xa6:Xs\x015%\x8b\xadk\xa4\x92\x07\xd8\x95\xd3\xa9\x0ce\xb3\x1b\xfbA\x99\x15]\x14\xa3yR\x80y\x0e\xc0\xa5\x88\xc0\xd3\x80P\xe7j\xbc\x13\x95\xc8\xa7Cm\xd9(49\xb1\xc1\xdf\xcdp=\x1b\x9fT*{|s\"\n\xa3\xb8\x8aZk\xd1\xfc\x87\x98PD\x83\xf0\x02L\x01\x16\x11g\x8e\xebg\x8d\xfck60\xaf\xf6\x1c\x0e?b\x8f\x8e0\xe3]\x03\xec\xd9L\xca\xf9\xbc,\xf8x\xe1\xb0N\xd1a\xebI\xd8!\x86\x16\x11f\x8a\x8c\xe6\xba\x93\x96\x90[a\xf5\xe8\x9a\xd1\xe8\xb5\x00\xfb[s\xcb\xca\xf9t\xa0Y\x13\xbcnU\x0f\x13\xbdY\xb1*o\x03k)+\x16K\xfals\xae \xbb\xa0\xd7\xc4\xc3,H\xfb\xf9\xce\xa6]T\x11R\xc5\xc6\xd9\xc4\xe7Yq\x8b&8\xb9\x95\xe5\xdc\x01\x90x\x98\x01\xcf\x9e\xe0\x8b&\xec\xa4\xd2u\xf4\xe3^\xaa\x9e,\x00\x9a\x07\xe2\x81o\x15\x87\xf8\x96\x8a\xbe \xe3\xfe\x06\xca}\xf8ZS<\xc9\xb3zFR\x15\x8f\x10\x8b\xfb\x86\xc8\xf1\x9el\xeaK\xb9[\xe0g$\xe1\xb9\x01\x86U\x01\x80\xc7\x18\x85\xce\xabrQ\xd6p\x1eh\xb1\xbc\x1dF\xf0\x8e\x91\x0b\x85\xd3\x94;\xe5h\xb5Lx@\x10\xb7\x91\xe6\xb8\xaag\x91\xb8s\x84j\x8a\xe92\xba\xf5\xfb\xf1\xffT\xa7\x9fdSa6q\xc1\xc7E\xa4Z\x86\ni\xd0\x04\xe8\xcc\x88\x9f\xbc?\x87\x0csgS\xcc/\xba\x16\xcb\xb8x\xee\xc5cx\xfa\xe2\xc5\xd7/g\x17\x7f\\\x9f~?\xffqu}yur\xf5\xe3\xb2WJ\x99\x0f\xc6\xf9\xc5\xd9\xf9\xd9\xe5\x06\x00\xc4\xbb\xe8\xe7:%nSB\xfaK\xf2(\xf3 3\x10\x01adB\x01r:x\xc0\x16\xce\xb3\xf4`Y\x88\xf3\xa2X\xb7l\xed\x00>\x8eL\xa5\x9b\xc7\xea\xaf\xed\x9c-c\xc7\x14\x08W\x93\x8cV\xb8Z7\x12\x8c\x17\x06\xd4g>\xb1\x15\x86\xe3(\xde\xb91\x14\xef\xdc\xf8ebC[\x16\xd8\xa2\"\xab\xac\\\xd6\xf9\xba\xb3\xd5\x8d<\xa7 \xaeR\xd8\\U8\xb9\x15N-a9\xe9\x13 Q: z*\x03I/s\x90\x8e\x9d\xcdhKf\x19Y\x89\xb6$\xe5\x92\xc6\xc4NY\x80\xb0\x13\x90\x9e\xadU\xf8\xc4\xba\xfe\xbf\xa5\x9e\xa7\xaa\x88\xa9`'\xacr\x82x\xc4\x17\x07M{\xff\x96\x1b\xea 4\xe8%\x87\xa9\xe8RK\xb0qc4\x07B\x00\xb0&EI\xf2Fn\xe5\xac\xb8Q\xadn\xf6\xa68\xcb\x97\x15\xe0\x08\x89\x98\x1a^\x90\"\x05Md\x9fY\xef\xa3t/\x7f\xfc9HKu\xbf>?\xb9\x84e\xb9\xdb\x9f]\xfe\xcf\xe9\xf9\x80\xcf\xbe\x9d\x9c\xfe\x19\xfd\xcc\xd0\xc9C\xe9\x1c\xa6\x8d=\xa3A&\xc5\xfb\xb1\xa5\x81\xd1\xb2\xa8I\xdcV\xe3\x17\x12}\x12\xdb\xbbS\xdaf\x1e{g\xa90b\xec&\xa6A\x9b\x9eOC\x86d\xcb\xa1=${g\x0c\xa9I:H\xca\xa2\xceR\xe5}\xe0\x83\xdff\xfc6\"\x15\xed\xaf\xe6Y]\xb3\xcd)\xf5QY\xa1\x94\xe4xMR`n\xa1\x07I\xb6\xf8\xdaH\xb2w^\xbe4w\x82N\xcc\x99\xcc\xf0\xc5\x90\xab\x07*\xf4\xc4\xa1\xeaL\xc8'R$xQ/s\x8d\x92\x94[\xfc\x14\x0b\xf1#\xa2\xc6\xf2\x00\xa4 \xc3p\x148\xbc\xae\x7fCM?\xfaeN\xb9\x90\x96,\xe3]\x00\x1bq\x1d\x99%\xf6Sq\x90Q\x1f4\xf5\x803\x98\xe9\xf0<\x8a\x1d\xb5\xb1T\x0cl\xee2\x00z\xb6v\xd6Er\xd6>R]\xf2\xdc\x80\xe2\xb3}\xa2\xafD\xca)\xb7\\\xf9\x94cJq2\x13\xa3\xe9TT\xb67 N\xfc\x15\xac\xed\x1d#\xd71?\xbbG3\xae-\x16K\x8c$\xe7\xcaB:4\xe4k\x99\xa6\xe4&Y;\xaeF\x890\xb2\xa1EB\x8b\x8c\x10\"/@k l9\x94\x08\xe4\xc3\xdb\xe2F\xd1\xe3{\xa3\x83\xe4\x84F#~\x9ai\xd8\xe5P\x9f6\x96\xc3c|4$\x08K`\x11\x85\xbb\xc0\x961\xe2L\x9be\x03d\x8fp\x16D}\x93\xbb\xc0\x1f\x03U\xc5 \xe9\xf5\xe3\xaf\xb6\xc2\xa1'\x08e2F\x8e\xc50\x8d\xb1S\x9ea\x1a\x03\x80*\x90\x96@@M\x81^\xb2\x18\xe4\xf3\x08\xd4EO\x07/Y\x0c\x83x5\x86vA\xe8%\x8b\x01N\xf9\xc8\x8bd\x18\xe5\x1b\x06\x83\xa2>Y\x0cR.\x8f\x99\xc3\xe0\x009^\x06\x83\xb4\xaf\x1f3\x7f\xc1\xa6g\x04\xcb\x02(:\xa0\xfcF\x1d\x1c#\xa7\x93\xf0>\xe8\x97\xb9\xd0\x9a\xec\xb8J\xda\x15\x1em\xac\x88lp`\x0em%\xf0|\xfb\xdc\xdaV\xbe\xc2@.>\x97#\x90\x03_\xc79(\x08i\x04\x86\xc5\xf49\x90MC\xe9\x1fE\x93C\xe9\xee\xa4B\x8cyFr\x02\xf7\x9e\x95@\xa0\xb8\xc0EY\xea?3EI\x06i:\x04\xd4v\xa8g\xc6\x1e\x82\xaf\x1f\x04\xdfj\xa8\xe7\xc4\xa0\x1e\x19|`@}u!\x1a\x96\xc9\x87v\x96\x831\x1d\x19\x05H{\xe5d!X&\xd33\xe5\xe50\x0d\xda\x05\xe5\xd0\xa2=!\xf4\x9b\x83\x98\xf2@\xfdX\xbe\x19\x1f\xa3\xaa$\n\xafw\x9e$\xea\x9d-\x88\x1e\x93##\x1c\x16\x01Kuh\xf6\xa0\xb8\x16\xf6'\x0f\xca\xe3\xdc6r\x07\x9d\x18\x89\xf1\x02\xf9\x84\xea\x07\x12U\xad\x8ck\x17\x1buz\xe2\xebl\xaa\xfa9\x93\xf4\xb7n\x12\"\xffKw\xc9\xb4\xee\x96\xf8\xafDH^R.\xd6\x8d\xc5'\xfe`\xa7: \xa4|y\x8f\x11\x93 l\x08\x84\xfd\xa6\xd1\x95\x1d\x9f\x05d\x0c\x82\x12\\ \x92\xf1\"\xdc\x13\x820_\xc4{\x88\xbc\xb9\xf1m\xc9\xcf\x87\x9f\x7f\xff4\xc1\xef\xf6\x8f\xa6\xef\x8f\xf6?\x1c}\xc6\xfb\x9f>\xe2\xdf\xf7\xa7$\xc1\x87\x93\xb7G\x87\xef\xc8[Q\x85]I\x88\xc4\xdf\x1eN*u9`\x08\xd7\xc3_\x0f7\xe4\xed\x03~\xa0\xcb\x8fG\xf4\xfe\xe8\xfe(\xcfWG\xf7\xc9\xe7\x07Z\xff\xba\xcfo\xefH\xee\xc28\x96\x8a8\x16;\x9b\"s\xbd\x19z\xf4\xe9\xed\xfb\xe9\xa7I\xb2\xff\xf1\xed\xc7\xdf\xf7?\x90\xc9\xd1\xfe\xe7\xa3\xc3\xe9\xfe\xbb\xc3w\x87\x1f\x7f?L\xde\x91\xa4\xc5P1\xd8F,\x15 \x0e\x7f\xdd{\x99\xfa\xb9\xfe\x95'\xb3\xf7\xf5\xfd]\xf1\xe1\xc3\xcf\xa3\xb7?\x1fn\xe8\xa7\xaa\x9e\xad~\xad\xa7\xd5\xcf\xa4\xf2\x91\xc3;\n3&\x94E\xbenX\x802\x9e\x02g8\xe2q^\x97>\xfcd\xc3\x07\xa7\xe0\x8b\xde3\x8d4\xa7\xad[%\xcd~%4->\x87@\x1c\xfez\xe7\xe5\xf2\xdd\x87w\xe9\xafw?\xd3\xd5<\xc5\x0f\xcb\xbb\x87\x04\xa7\xe9l\xf6\xe9f\xbe|?O\x1e\xc8\xfb\x00\x03\xfc\xa7\xefq\x19`\x9e\x9aE\xd6\x98\xe5\x0b\xa4%\x9af\x05\x17\x88\x91\x95\xc9\xf5F!mY1\xbf2\xc9\xd8\xf1\x81\xccN\x12\x1e\xd4\x10\x99\xa1\x8e\x030:\xad\xa1\xc4TOs|\xc3\xf1\xd5\x0d\nJ\xf53D#-/\xa5\xee\x92\xe1L51\xd2\xe8\xd5\xc1\xb2^\x94E\x1d$[*\xc2\xc7!\xdcT\xcb1\xd2\x83kE\x9d\xf1z\x12M\xee\x05\x1eAw\xc1XD\xb7\x06\xf3\x13-\x7f\xc8\xb1\xf7^\xb8r\x10< )Fd\xc3l\x8f9\x82F$\xb25\x18df\xbd9\xc8\x1aF\x81\xd6\xe5\xb2\x926\x8fMb\x18+Y\xc4\xa2\xbe\x90\xecAM\x08\xa0\xf8?#[\x86\x8d\x13\xf4\xaf%\xa9\xd6\x07\xea\x1btq\xfe\xa5\x05N\xe4\x9b6\x08\xa8\x80_\xe3g\x16>'\x05Z\x16\xe4~A\x12f\xb8\x89\xd6O\xae\x99\xaa\x93\x19\x99c{b\xbcv\x9c\xdf\x86\xe3\x03t\xa77 \x94\x932u\x888\xf1\x81\xaf\x84\xb9:;g\x05}\xff\xae\xc3 O\xf9\xef\x00\x0e)\xa18\xcbw\xa4T\x07\xfb\xfczYy\xbb\xceD\x15\x1c\xcfp\x1d\xfc\xb5\xd33\xb1\xc0\x15\x9e\x13J*\x03\xe7}\x91\xd4k\x98\x7f\xbe5\xd8\xda\x13\xfd\xed\xc5\xa1V\xa2\xb6S,h]\xdbpt\x8bp\x03;\xd0e\xfde\xc51Z`j\x86\x8a2\xc1\x94U$=F\xb4Z\x9a\x8a\xc99\xc1z\xae\xe4\xd0\xd0\x99\xeayP\x1av<\nY\xedC\x8e?\x8c[\xbf\x98\x1cu\xb2k\x8a\xf3\x1a\xcc/\xc3\x0c\x06\xb2l\xb0\xe1<\xae\xb9<>\x0fZ\x97E\x00\x1e\xf4\xb7\x9d\x0d+\xd9\xb9'\xba\x16\xf3\x88tZ\x960\x90\xd2\xa1\xd6\xb3a'[\xf0\xe0\xe6\xe3\x10\xc2\xdb\xa6U\x9bri\xc7\xf6\xa4\xbd\x8f\x01m\x98\xca;@w\xcb\x1a\x06\xd2=\xd0\x86n\xac\xe56\xe5[\xa7\xb3e\x10\x03\xe9\x1cdF\x1b\x06\xb3\x05\xcccX\x1d\x1e\xc85v\xf0\xbf\x8d\x15\xf2\xef\x03\xb1*\x0f\xfe\x97\xb1\xeb\xdf\x02\xda\x0d\xd16u\xbd\x9c\xcfq\xb5>\xd6\x1d5j\x82\xabd&\xdbo\xca\x15\xad\xa8\xf2q\xf4\xaa\xb9Te:`\x8f\x99\x02J\xac\xed\xa9\"e\x11u\xf1\x8f\x86E\x1b\xeb\n\x86\x90\x86\xc7e\xd2~G\xcf\x0bQe\xe8z\xfd\x01\\\xd1\xbb4\xbc5,D\xb9\xa3\xcbl\x9e\xe5\xb8\xca\xd7{\x0d\x0e\xd4\xaaP\xee4Qx\xa9\xa2\x96)\xd8\xa2d\x0c\xd3\xcf\xe2eD\xeb\xad\xcb\xe5\xab\x8a4\xe3\xb3#N\xc5}\xf7(+\xcc^/\xff\x81N\xa7\xc2|\xc4m\xa3\xa2Y7\xb2\x1d\xa2y\x9f\xc1\x9b\xcf\x18\xf5\xee*B\x97U\xc1\xfb\xc8\xb8@\x9b\xc6h\x03\x17\xe7ys_!S\xa6\xc4L\xf6\x05\xdfL\xd0k6\x19r\xb4\x83\xe6\xfdo\xce\xd1\xda\xf3\xa3\xc6\xf5\x8e\x875\xe3\xb5\xb1\xa0:\xff)\nq\x91\x1e4\x0b\xe2:\xb3\xf9\xd7\xda\\\xae\x01\xf5ON\xd0\x04\xa7\xe6\xad\x89\xfa\x11\xca\xa6\xc7&bW\xf6\x1a\xe5\"\x94/L\\\xa4\xa8(\x9d\xdc\x7f\xd3\x02 \xdb\xfa\xd0\xbb\x92-g\xde\xda\xa7\x9c\xda\xb2\xc4$\x89\xdfgI\xb0\xfc\x7f\xe6\x86Y\xa3\xb4,^Q\xc9\xf1\xa9\x90\xdf|#1\xe6I\xeb\xca\x18\xfe\xa4\xc3\xd5=4YRT\x94\xd4\xc1Ylu\x0c\xe8\x82\x11]\x0c\x9b\xa5\xcc\xc8\xd2\xb3\x85\xa5)\xc8\x7f\x99\x96\xa4fx\xce1M\xec\x8eY\xc6\xf7\xe6\x8c\xfcs\xad\xd3Um\x06-\xaf\xb8\xadb?\xbeUv\xbeu\xa1\xc3\x8b^\xf2%,\n\x12\x89\xfd\x01\xa9\x9d\x84t\xaf\xec\x98e\x11\x8f\x0c1~+\xac/\xed\x9f\xd6\x13\xfa\xaaFuvS`\xd1\xf6\xba\xd6\x83\x07\xe0\xc1,\xb9\x13tn\xec[e_\xb2Mu\xc0+\x82\x0b\xbe0K/\x08\xa6]\xa8=Z\xe4\xa7\x8ff\xbb\xe2\xe7l\xd9s\xbaY\xda\x88\x96\x0b\x94\x93\x15\xc9\xe5!!\x1e\xb7\xad\xce\xea\xc2F}\xd3\x06\xcd=\xd9\x8c\xcf<\xc8Y\x1e\xddC\xe2\xb2\xe9\x94\xbf\xf67\xba\x16\xc6-?\x1f9\x9at\x08\x0c\xec\xd3gp\xe5-\x0b\xe1R\xa43\x8dw\x9eq\x1fliu\xbe\xf4&\xdc0L\xaeq\x12n[1\xe2\xb1*b\xa3\xc3\xd7\xc1\x89f\x92*\x13\xc6\x08\xe7\x1c\xc3K:+\xab\xecAH\xc4\x8a$$[\x85\x16BS\x1a\x9b\xcfK\xb7\xcf\x80v1x\x80\xf08\x95k\xbe\xee\xae\xa3\xc7\xbd\xb1\xf9\xd0lT[\xf9\xb0\xd9\x17%\xe2[\x04\x05\xd7\xa6\xe1M\xb9\xa4\xb8Hq\x95\x9a\nCj0\xd1\x18\x7f\x8e\xab[GLS\xf3\xa8_\x87\xb6\x03\x9b\xb0z\xb9X\x94\x95Ut\x94c\xfeF\xc6\x9f`J\xabl\xb2\xa4\x04\xcd\xf1\x9a;\xe4\x03\x00'\x84\xc9\xeb\xe2\x86\xa4h\xb2\xe6\\\x90R\xbe),W\x16 \xb3D\x98\x9c\xab\x89#\x05B<\xd2\xeds\xcde\xeeuU\xe6\xf9r\x11\x9b\xd6\x98d\x87\xcf\xeb\xdfR\xec\xe3<\xd7[[\xad\xf4\xc6'\x9c\xd1Zo\xf1\x000u+\xa7\x84\xa5\x05\xe8U\xadD\xe64#y\xea\x8d6G*\x1c\x08\xe7u\x89H\x81'\xb98\x9d3Q\xabt\xd0\x7fr\xa7\xb2@P@\x0d\xcd}\xe3\xd5V4\xba'\x03\xc6\xb6K>*\xefh@xI\xe6\xb2\xa4F]fn\xf3\xa2\xa4\xccs\xc2M\x9c\xe6\xf2\xc1\x87##\x80\xaf\xa2\xb2 \xfa\xca\"\x80\xa8r\x95\x06\xe2_a\x94X\x80\x1a?\\\xac\xbc\x9c\xdf\xb7\xd2(\x19\xe7\x0f\xa2.\xaf\xb8\xb3\xeb1\xdd\xc4\x16\x13\xcd\x9b':\xb8*\x90\xe6x,\xd5t\xcbT\xc4\xb2E\x1b\x8a\x02\xf9v\x1a\x98\xf8G8\xd5nK\x04\x05\x85\x9b\x03A\x14*\xce\x13\xf3@\x83\xf8\x11\xce\xc1\x04\xb1\xa1/\x85\xd1L\xcb\xb1h\x1ba\x8a\xfb\xd2\xb6Q\xce\xa4c\x01\xf8\x05j\xbc\x08\x01\x0c\xf7.\xb4\x88h\xf5\xc0\xe9\x16\xd4q\\\xa1lY\xd0F\x8b\n\x80\xe6|+\xdb:R9 x\xc1\x83\xda\xf7I0\xb9\x0d\xad\x13\xf0\xe4L\x81\x88w(,\x18K\x8c\xff\x8d $\xb6\xca\x9b\x16\xaa\xb6F\xd0\xaf\x03\xe0\x9cj\x12\xce\xad'P\x10\xb0|\xfc\xf1\x17\xc6\x08Ka\x10\xa9#(\x0d\xcfji\x13\xadNE]*C\xde\x8cm\xa5\xc2Hl|,\x8f\xaa\x85\xf8\x08\x08\xc5\xd3\xa4\xc5\x03\x9a]\xe0V\x87\xc75\x8c;n\x9f\xe5\xa7\xbb\xe26\xa5\xd6=\xc5i@\xedR\\\xc5\xd6%\xe3}\x1b\x0f\xa9Cc\x9c=\xbb\xd9\xde&\xea\xd4R\x0fp\x8e\xe5\x8f\xc7\x88c\x80E2@=\xe0\xe2\x197\x9aa@mG8\xd3\x0dz2\xde\x00\xbb9P\xab\x88\x06\x8cC\xf2\x9f\xcf\x83G\x06\xb2\x8dC\xc2x'\xf9\x14\x84go2\x10\x9f\xc2\x81\x1b`\xe6\x0c\xa1z\x84\xd8\x8d~\xbbf\xa4\x850\x84\xd6\x8d\x827\xbc\x0b%@\xb2\n\x12\x1c\xb3\xfb\x90\x05\x14\x8d\xdd\xa1\x152\x93 ]\x89\x80\xfa\x12!H\xe8\xb5x\x80K\x03\xc1\xe5\x04\xdaN0\xb6x\xf4L\xc5u'z\x1c\xea\x00\xc7\x99\x16\xd2\xc35\xa9 \x0c\xc8'\x986E\xbb\xc7\xab1t+B/-Z\xe1\x94\x8f\xbcH\x86Q\xbe\xa1>A\xee%\xe4&\xbf\xd3\x9eg\x8c\xb3\x96\x13\xe8x'.w\x94\xda\x96\x0f`m\x9aF\xb05\x80\"\x04\xcau\xd4\xa3M]\xfcB\x0bu\\\x17Q\xe5\xd4\x99\xf6\xb8\x82\xda\x1dNm\xac\x98\xda\x00{\xf0)\xe9\xd5\x01l\x87x\xd6E\x1c\x01\xda\xce9\xbejE\xa8\x0f\xe5eLq\x01Y7\x9c'\x10\xa5\x15\x04\xb7 \xf5#-\x9c\xe1\xd4o\xa8\xb8\x00\xcb\xcb\xc5\n\x08\xbe\xd2\xe9\xe8\xef\x15\xa7}W\x8f\xd5,N\x0e\x18\xe8\x16\xa7\x7f\xa1\xab)\"_\xaf8\xa3\xbcb\xb0U\\\xe2\xee\xba#\x16\xc6\xe3F\xfe\x0bd|\xcbu$\xa5\xfd\xe8Q\x19\x07\xcd\xe2h\xc2\xa4\x05\xa9o\x10\xfa\x8b\x97\x1d\x90I\xe7AX22\xdfQ\n\xe3$\xafKt[\x94w\x05\xc2l\xfd~c\x86P0\\\xe3)\\\xc70\x8e5\x89\x07j\xfb\xa9{\x0f\x95q\xd0\xca*\x88\x88N\xcdk\xf4\x9a\xd7\xac\xcc\xe8\x0cM\xb3\x9c\x92\x8a\xa4\xe8v\xa54<%\x15\xa6e\xe5\x0f\x1b\x931\xe9Av\x81\x08\x94\x80\x94\xbc\xb1,_E\x99\x98\xea`\xe9\x06-s\xd6\xf6mT\xc9\xe3\xf4\xca\xe9TF\xc4\xd9M\x1c\xa1\xcc\x8a.\x8a\xd1\x1c2\xc0t \xe0RD\xe0i@\xa8s\xc3\xde n\xe4\xd3\xa1\xb6l\x14\x9a\x9c\xd8\xe0\xeff\xb8\x9e\x8dO*\x95\xdd\xdd9\x11\x85Q\xa3E\xad\xb5h\x1aEL(\xa2Ax\x01\xa6@V\xf0v\xdcbk\xe4_\xb3\x81y_\x91p\x14\x13{t\xa0\x1a/\x02o\xcffR\xce\xe7e\xc1\xc7\x0bG\x87\x8an[O\xc2\x0e1\xb4\x08TSd4\xb7\xa6\xb4\x84\\.\xabGW\x9eF\xaf\x05\xd8\xdf\x9a\xcbZ\xce\xa7\x03\xcd\x9a\xe0\xad\xadz\x98\xe8\xcd\x8aUy\x1bXKY\xb1X\xd2g\x9b\xba\x05\xd9\x05\xbd&\x1eb\xf4\xb5\x9f\xefl\xdaE1\"U\xb4\x9cM|\x9e\x15\xb7h\x82\x93[Y\xbc\x1d\x00\x89G+\xf0$\x0c\xbeh\xc2\xbe.]d=\xee\xec\xea\xc9\x02\xa0y \x1e\xf8Vq\x88o\xa9\xe8\x9bh\xf0o\xa0\x14\x8a\xaf5\xc5\x93<\xabg$Ua\x0d\xb1\xf0q\x88\x1c\xef\xc9\xa6\xbe\x94\xbb\x05~F\x12\x9eb`X\x15\x00x\x8cQ\xe8\xbc*\x17e\x0d\xe7\x81\x16\xcb\xdba\x04o1\xb9P8M\xb9o\x8fV\xcb\x84\xc7\x15q\x1bi\x8e\xabz\x16 _G\xa8\xa6\x98.\xa3[\xbf\x1f\xffOu\x16K6\x15f\x13\x17|\\D\xaae\xa8\x90\x06M\x80N\xb0\xf8\xb9\xe4\x11D\"Z\x9eM1\xbf/[,\xe3\xe2\xb9\x17\x8f\xe1Y\x90\x17_\xbf\x9c]\xfcq}\xfa\xfd\xfc\xc7\xd5\xf5\xe5\xd5\xc9\xd5\x8f\xcb^\x99i>\x18\xe7\x17g\xe7g\x97\x1b\x00\x10\xef\xa2\x9f\xeb\xcc\xbaM \xe9/\xc9\xa3\xcc\x83\xcc@\x04\x84\x91P\x05H\x0d\xe1q_8\xcf\xd2\x83e!\xce\x8bb\xdd\xb2\xb5\x03\xf882\x95n\x1e\xab\xbf\xb6S\xbf\x8c\x1dS \\M2Z\xe1j\xddH0^_P\x9f\xf9\xc4V\x18\x8e\xa3x\xe7\xc6P\xbcs\xe3\x97\x89\x0dmY`\x8b\x8a\xac\xb2rY\xe7\xeb\xceV7\xd2\xa5\x82\xb8JasU\xe1\xe4V\xf8\xc6\x84\xe5\xa4O\x80D\xe9$\xe8\xa9\x0c$\xbd\xccA:v6\xa3-\x99ed%\xba\x9b\x94K\x1a\x13;e\x01\xc2N@z\xb6V\xe1\x13\xeb\xfa\xff\x96z\x9e\xaaZ\xa8\x82\x9d\xb0\x02\x0c\xe2\x11_\x1ch/@\xdb\x0d\xf5\x04\x1a\xf4\x92\xc3Tt\xa9%\xd8\xb81\x9a\x03!\x00X\x93\xe9$y#\xb7rV\xdc\xa8\x869{S\x9c\xe5\xcb\np\x84DL\x0d/H\x91\x82&\xb2\xcf\xac\xf7Q\xba\x97?\xfe\x1c\xa4\xa5\xba_\x9f\x9f\\\xc2\x92\xe5\xed\xcf.\xff\xe7\xf4|\xc0g\xdfNN\xff\x8c~f\xe8\xe4\xa1t\x0e\xd3\xc6\x9e\xd1 \x93\xe2\xfd\xd8\xd2\xc0hY\xd4$n\xab\xf1{\x8d>\xf9\xf1\xdd)m3\x8f\xbd\xb3T\x181v\x13\xd3\xa0M\xe7\xa8!C\xb2\xe5\xd0\x1e\x92\xbd3\x86\xd4$\x1d$eQg\xa9\xf2>\xf0\xc1o3~\x7f\x91\x8a.Z\xf3\xac\xae\xd9\xe6\x94\xfa\xa8\xacPJr\xbc&)0E\xd1\x83$[|m$\xd9;/_\x9a\xabE'\xe6Lf\xf8B\xd1\xd5\x03\x15z\xe2Pu&\xe4\x13)\x12\xbc\xa8\x97\xb9FI\xca-~\x8a\x85\xf8\x11Qcy\x00\xb2\x8da8\n\x1c^\xd7\xbf\xa1\xa6Y\xfd2\xa7\\HK\x96\x157\x96\xb8\x8e\xcc\x12\xfb\xa98\xc8\xa8\x0f\x9a\xb2\xc2\x19\xcctx\x1e5\x93\xdaX*\x066w\x19\x00=[;\xcb+9K(\xc9\xcb#\x0f\xb8\xf8l\x9f\xe8+\x91r\xca-W>\xe5\x98R\x9c\xcc\xc4h:\xa3\x95\xedM\x82\x13\x7f!l{\xc7\xc8u\xcc\xcf\xee\xd1\xc4m\x8b\xc5\x12#\xc9\xb9\xb2\x90\x0e\x0d\xf9Zf;\xb9I\xd6\x8e\xabQ\x02\x95lh\x91\x08%#\x12\xc9\x0b\xd0Z\x02[\x8eH\x02\xf9\xf0\xb6\xb8Q\xf4\xf8\xde #9\xa1\xd1\xc0\xa1f\x1av9b\xa8\x8d\xe5\xf0P!\x0d \xc2\x12X`\xe2.\xb0e\x8cp\xd5f\xd9\x00\xd9#\x9c\x05Q\xdf\xe4.\xf0\xc7@U1Hz\xfd\xf8\xab\xadp\xe8 \"\xa2\x8c\x91c\xa1Pc\xec\x94g\x98\x0d\x01\xa0\n\xa4%\x10PS\xa0\x97d\x08\xf9<\x02u\xd1\xd3\xc1K2\xc4 ^\x8d\xa1]\x10zI\x86\x80S>\xf2\"\x19F\xf9\x861\xa5\xa8O2\x84\x94\xcbc\xa6B8@\x8e\x97\x08!\xed\xeb\xc7L\x83\xb0\xe9\x19\xc1\xb2\x00\x8a\x0e(\xbfQ\x07\xc7\xc8\xe9$\xbc\x0f\xfa%@\xb4&;\xae\x92v\x85G\x1b+\"\x1b\x1c\x98C[\x89_\xdf>\xb7\xb6\x95\xf60\x90\x8b\xcf\xe5\x08\xe4\xc0\xd7q\x0e\nB\x1a\x81a1}\x0ed\xd3P\xfaG\xd1\xe4P\xba;\x19\x15c\x9e\x91\x9c\xc0\xbdg%\x10(.pQ\x96\xfa\xcfLQ\x92A\x9a\x0e\x01\xb5\x1d\xea\x99\xf8\x87\xe0\xeb\x07\xc1\xb7\x1a\xea91\xa8G\" \x18P_]\x88\x86%\x04\xa2\x9d\xe5`LGF\x01\xd2^\xa9]\x08\x96\x10\xf5Ly9L\x83vA9\xb4hO\x08\xfd\xe6 \xa6;\xaen\xac\xb6\xa1\x9aI\xa1$\xf7\x10ys\xe3\xdbS\xe2\xa7\x87\xbf\xde\xdd\x90\xb7\x0f\xf8\x81.?\x1e\xd1\xfb\xa3\xfb\xa3<_\x1d\xdd'\x9f\x1fh}\xf7\xe1]\xfa\xeb\xdd\xcft5O\xf1\xc3\xf2\xee!\xc1i:\x9b}\xba\x99/\xdf\xcf\x93\x07\xf2\xde\x059\xec\xed\x1d\x89z\xed\xc7Mp\x81H\xc6+\x90O\x08\xc2|\xeb\x05\x89\xfe|\xf8\xf9\xf7O\x13\xfcn\xffh\xfa\xfeh\xff\xc3\xd1g\xbc\xff\xe9#\xfe}\x7fJ\x12|8y{t\xf8\x8e\xbc\x15%\xe8\x95\\K\xfc\xbd\xf1l.\x87p=\xfc\xf5\xe0\xe5\xf2\xaf\xfb\xfc\xf6\x8e\xe4NfF\x12(\xc7bgSa\xaf7C\x8f>\xbd}?\xfd4I\xf6?\xbe\xfd\xf8\xfb\xfe\x0729\xda\xff|t8\xdd\x7fw\xf8\xee\xf0\xe3\xef\x87\xc9;\x92\xb4\x18*\x06\xdb\x88\xa5\x02\xc4\xe1\xaf{/S?\xd7\xbf\xf2d\xf6\xbe\xbe\xbf+>|\xf8y\xf4\xf6\xe7\xc3\x0d\xfdT\xd5\xb3\xd5\xaf\xf5\xb4\xfa\x99T>rx;e\xc6\x84\xb2\xc8\xd7\x0d\x0bP\xc6\x13\xf7\x8c\xeb\x03\x9c\xd7\xa5\x0f?\xd9\xed\xc2)\xae\xfdg\xe5\xe8d\xca\x90\x0b\xf3\xf4*\xb2\xb7,\x9f\x1c-Q^\x96\xb7L:;\xa0\xc8d\x1f\xe1\x90\x0c\xe1\x11\xea\x03\x00[U\xd6PBHMs|\xc3\xd5\x86n\x1bP\xaa\x9fq\x12\xfcjR\x00\x91\x9aKF\x08\xd5\xa4\xd1.\xea\xa8V/\xca\xa2vFphtdr\xfb#\x11o&\xdb\xc7\xe8\x0f/\xf7z#\xf2\xc9\xbd@(x\x14\x1f\x8b\xfa\xd6`~\xe2\xe5\x0f9\xf6\xde\xcbL\x0e\x82\x07\xfb\xc4\x88T\\\xf7Z\x0dhD\"[\x83Af\xd8\x9b\xdf\xaba\x14h].+i\x9a\xd8$\x86\xb1\x92\xe9T\x17\x92;\xa8\x89\xae\x13\xffgT\xcb\x88l\x82\xfe\xb5$\xd5\xfa@\x15\xd7\xbd8\xff\xd2\x02&29\x9b\xe1U(\xad\xf13\x0b\x9b\x93\x02-\x0br\xbf \xb3\xaeDo&\xd7<\xd5\xc9\x8c\xcc\xb1=-^c\xcboh\xf1\x01\xba\x93\x1b\x10\xa0I\x99:\xa4\x9d\xf8\xc0Wc\\\x9dJ\xb3\x82\xbe\x7f\xd7a\x90\xa7>w\x00\x87\x94P\x9c\xe5;R\x04\x83}~\xbd\xac\xbcma\xa2\xca\x88\xe7\x8e\x0e\xfe\xday\xe6_\xe0\n\xcf %\x95\x81\xf3\xbeP\x98\x86\x89\xe2[\x83\xad\x1d\xd1\xdf\xa6\x19j\xc9h\x9b\xc5\x82\xd6\xb5_F\xb7Z6\xb0U\\\x16JV\x1c\xa3\x05\xa6f\x10&\x13KYE\xd2cD\xab\xa5\xa9\x9e\x9c\x13\xac\xe6\xaa\xe5K\xb7fi\x90\xf12\x1af\xc6\xa9 \xb8\x8c\x06\x9f\xb3\xc6=]1\x0e\xfcbB\xdb\xc9\x82)\xcek0\x0f\xd4\xc2\x002\xa0\xefQk\xd8\x01+d\xf7\x0f9@\x8d\xc8/\xcb\x8c\x052m\x98\xe9\xeb8k\x0e\xb1\xf8\x86\xd0\xde\xb6\x86:\xc4K\x13\xb4/\xfd}\xac_\xe4\x18\xe4\xe99\xd02e\x81\x0c\x18h\x007\xa6\xae\x05\xed1\xe8lY\xb3@:\x07\xd9\xc0\x86\xb5k\x01\xf3X\xbe\x9bSI\xf1\x8deR\xfcKB;`j\x90\x14\xb8H\xc8\xc1\x9cP\x9cb\x8a\x0fV\x87\x07r!\x1e\xfcocD\xfc\xfb@\xae;\x01\xe7\x86hc\xb8^\xce\xe7\xb8Z\x1f\xeb^\x155\xc1U2\x93\x8d-\xe5W\x8a\x1e\x1f/\xaf\x9a{F& \xf7\x98\x0eW:zO\xd5\xed\x8ah\x9f\x7f4\xcc\xd9X\xf50\x844<.\x96\xf6;*@\x087C\x0d\xe8\x0f\xe0:\xc0%\xfc\xada!r\x1f]f\xf3,\xc7U\xbe\xdekp\xa0V\xedo\xa7\xf6\xe2\xd5{Z6\\\x8b\x921l6\x8b\x97\x11\xfbg]._U\xa4\x19\x9f\x9dM*^S\x0fe\x85\xd9E\xe5?\xd0\xe9T\xd8}\xb8m\xa34\xebF6\x1a4]\xfc\xbc\xad\x8bQ\x02\xae\"tY\x15\xbcC\x8b\x0b\xb4iE6pq\x9e\xdbb\x98\x0d\xc3g\xb2/\xf8f\x82^\xb3\xc9\x90\xa3\x1d4\xef\x7fs\x8e\xd6\x9e\x1f5\xaew<\xac\x19\xaf\xa8\xd0=\xf5\x14\x85\xb8H\x0f\x9a\x05q\x9d\xd9\xfckm.\xd7\x80\xfa''h\x82S\xf3NB\xfd\x08e\xd3c\x13\xb1+{\x8dr\xe1\xc9\x17&.RT\x94N\xee\xbfi\x01\x90\x0ds\xe8]\xc9\x963o\x9aSNmYb\x92\xc4\xafx$X\xfe?s\xc3\xacQZ\x16\xaf\xa8\xe4\xf8THn\xbe\x91\x18\xf3\xf8g\xd6\xf0'\x1d\xae\xee\xa1\xc9\x92\xa2\xa2\xa4\x0e\xceb\xab\x16\x7f\x17\x8c\xe8\x0f\xd8,eF\x96\x9e-\xf6G\xbdg\xd2\x92\xd4\x0c\xcf9\xa6\x89\xdd\x8b\xca\xf8\xde\x9c\x91\x7f\xae\x95\x0bc\xaf1\xb4d##i\xa1\x88\xaeCTWC20\xbc$\xb4e\xd1I\x8a:f\x0ecW%\x92O-\xc3\xc6\xb2\xeb\xec\x85\xa6U\x83.\xa4u\x9aj]\xf2\xf1\x1f\x8a,\xa1\xfc\x0d-\xf6\xea\xdd\xdb\xb7\xaf\xfc\x0e\x19#\x11w\x9b\x9e\x18\x8f\x1b9\xee@\xd3\x961\xe3\x8f\xae;\x9a\xa8\xe6N\xbc\xe8h\xdd\xb2\xf8^g\xaeP\x07\x7f\xd5\xd1\x8d.\xf2\xa2\x0e\xf2@\x98O\xcc\xf9\x12\xbb%C0\x17\n0p\"\x9e\xa9\x89\xd0\x0fQ\xf5\xf3\xf4\x8f\xa6h\x83\xd8\xee\x08\x9d\xce\x179\xefqW\xa3:\xbd}s\x12\xc9C\x94:k\x8a\x13\xe1n\xe4\xe50\x85\x98\x12_\x12\xb1\xd7\x94\x05\xd76\x02\xed\xe7KY\xcfK\xdf`58m\xf7q\x99\xd9H\x98\xba\x9bm\xab/\xdf\xc3!\x01\xd6\x97\xc2\x94\xe4e9\x88\x9a\x0b\x9c\xe7\xe5\x9dTc2\xcd9\x04\xaes\xb2l\x1e\xde\x11=\x10\x8a\x16rO\xaa'Z3%\xbag\xc4\x13\xdf9\xe2\xc1\xdb\xaa\xe7\x89\xdd\xad0_\xab\xfc\xf7p\xb9\xb2\xaa\xcc\xa3u\xca +H<\x98\xc3kv\xa4B\xc6\xa8\xcd\x9b\xc8\xaa\xb5\xc0 0\x99!O\x00\xb5:{1\x0fVs\xc4j\x84\xde\xa7\x0c\x87\xdd\x07\xff\xe2\xf4\xbfN\xbf\x9f\\\x9d]\xf4\xfb\xee\xf2\xeb\xc5_\xa7_\xbe\xf6\xfc\xea\xf4\xfb__/{\x8f\xf5\xe5\xc7\xe5\xd5\xd9\x1f\xa7'\xdf\xfb}v\xf6\xf7\xf7\xbe\xf8\x9d|\xfbv\xfa\xe7\xe9\xc9\xd5\xd7~\x9f\x9d\xfd\xbf\xef\xa7\xff\xfc\x11\xaf\xd8\xe2i\xfa\xdf\xef\xbb\xa6\xdf~\xbf\xeftW\xfc\xc8g\xba\xd0\xcb\xa0\xe5\x15\xb7U\xec\xc7\xb7\x8a\x07\x0e\x8f\x90l\xf9\xcf/\xcdz\x14l\xf1l\x8ac\xf7k9\n\xaey\xe7\xce*\xbb\xc9\nL!u+\x9d{\xe8\xd8\xf5R\x19\xeb5J\xc9\x84\xa2\x9aT\xab,\xc9\x8a\x1b4]\x16 \xed8\xf6\xe2\xa3\xa9\xbdw\xecz)NK<\xa4+KPV\xacH\xdd\x9f\x1e\xbdO\x8f\x9do\xd5\xd4\x144\xa3k\xa1\xbe5\x8d\xc9\xb2\xa6e\x9a\xe1B\x12*\xfd=\x9c\xc1} \xe5\xfb\xfe\xb8\xf3\xa6]+n\x81+\xba\x968q\xa5\xad\xb4\x14\xd3\xbe=\x87\xd4r\xe3\xd8\xf9VpW\x0c(\x0e\xca\x05\xc2\xd3i\x96\xf3\x9e\xff\xf8\xa6\"\xdc\x0c\xe99\xa8\x94:\xc7\x8ewb@n\xf5\xe0\\\\V\xcb\xfe\xb2\xeb\xc6n\xaa\xca\\\x10?/\xb2\xc9\xb2F\x13\\\xdc*\xad\xd8\x13\x95F\x96\x1d\xbb_3\x84TU\x145\x0f\xe64TdQ\x91\x9a\x9bbl\n\x9a\x8a|\xd2\xb1eW\x85\xc6\xc9\x80M\xdd\xc8\xcdc\xf7k{}\xde\xcd\xb2df\xf0I\xdb\x90j\xd7\xeb\x82\xb5\x19A\xa4(i\xa4@u\x17!-\x90\x8f\x9do]\xe8\xf0:\x90| \x8b\x1a=b\x7f@\xca !\xdd\x85:fY\xc4\x03:\x8c\xdf\n\xebK{\xa6\xf5\x84\xbe\xaaQ\x9d\xdd\x14X4\x94\xae\xf5\xe0\x01x0K\xee\x04\x9d\x1b\xfbV\xd9\x97lS\x1d\xf0\"\xd9\x82/\xcc\xd2\x0b\x82i\xd7.\x8f\xd6\xbd\xe9\xa3\xd9\xae\xf89[vsn\x966\xa2\xe5\x02\xe5dEryH\x88\x872\xab\xb3\xba\xb0Q\xdf\xb4AsO6\xe33\x0f\x06\x96G\xf7\x90\xb8lz\xd0\xaf\xfd-\xa4\x85q\xcb\xcfG\x8e\xbe\x15\x02\x03\xfb\xf4\x19\\y\xcbB\xb8\x14\xe9L\xe3\x9dg\xdc\x07[Z=%\xbd9(\x0c\x93k\x9c\x84;9\x8cx\xac\x8a\xd8\xe8\xf0up\xa2\x99\xa4*g1\xc29\xc7\xf0\x92\xce\xca*{\x10\x12\xb1\" \xc9V\xa1\x85\xd0T\x8b\xe6\xf3\xd2-\xbd\xaf]\x0c\x1e <\xc0\xe4\x9a\xaf\xbb\xeb\xe8qol>4\x1b\xd5V>l\xf6E\xd5\xf4\x16A\xc1\xb5ixS.).R\\\xa5\xa6\xc2\x90\x1aL\xb4\x9c\x9f\xe3\xea\xd6\x11\x8c\xd4<\xea\xd7\xa1\xed\xc0&\xac^.\x16ee\xd5\xe1\xe4\x98\xbf\x91\x81#\x98\xd2*\x9b,)As\xbc\xe6\x0e\xf9\x00\xc0 a\xf2\xba\xb8!)\x9a\xac9\x17\xa4\x94oj\xad\x95E\xc2,\x11&\xe7j\xe2\xc8\n\x10\x8ft\xfb\\s\x99{]\x95y\xbe\\\xc4\xa65&\xd9\xe1\xf3\xfa\xb7\x14\xfb8\xcf\xf5\xd6V+\xbd\xf1 g\xb4v\xdfE\xdb\x8f\xba\x95S\xc2\xd2\x02\xf4\xaaV\"s\x9a\x91<\x0d4\xddW\xd3\x91\xd7%\"\x05\x9e\xe4\xe2t\xceD\xad\xd2A\xff\xc9\x9d\xca\x02A\x0154\xf7\x8dW[\xd1\xe8\x9e\x0c\x18\xdbD\xc3}^\xe4\x9f\xf0*\xc5eI\x8dR\xc5\xdc\xe6EI\x99\xe7\x84\x9b8\xcd\xe5\x83\x0fGF\x00_EeA\xf4\x95E\x00Q\xe5*\x0d\x84\xad\xc2(\xb1\x005~\xb8X\xc55\xbfo\xa5Q2\xce\x1fD]^qg\xd7c\xba\x89-&\x9a7Otp\xa1\x1c\xcd\xf1X\xf6\xe5\x96\xa9\x88%P6\x14\x05R\xd040\xf1\x8fp\xf6\xd9\x96\x08\n\n7\x07\x82(T\xaf&\xe6\x81\x06\xf1#\x9c\x96\x08bC_\n\xa3\xc9\x87c\xd16\xc2\x14\xf7\xa5m\xa34B\xc7\x02\xf0\x0b\xd4x^>\x0c\xf7.\xb4\x88h\xf5\xc0\xe9\xd6\x98q\\\xa1lY\xd0F\xf3\xecAs\xbe\x95m\x1dI\xa6\x0f^\xf0\xa0\xf6}\x12LnCS\xe7\x9f\x9c)\x10\xf1\x0e\x85\x05c\x89\xf1\xbf\x11\x84\xc4Vy\xd3B\xd5\xd6\x08\xfau\x00\x9cSM\xc2\xb9\xf5\x04\n\x02\x96\xa2>\xfe\xc2\x18a)\x0c\"u\x04\xa5\xe1Y-m\xa2\xfd\xb9s!o\xc6\xb6rX$6>\x96G\xd5B|\x04\x84\xe29\xb8\xe2\x01\xcd.p\xab\xc3\xe3\x1a\xc6\x1d\xb7\xcf\xf2\xd3\x8db\x9b\xea\xe3\x9ez-\xa0\x0e\"\xae\xfa\xe3\x92\xf1\xbe\x8d\x87\xd4\xa11\xce\x9e\xdd\xec\xf8\x12uj\xa9\x078\xc7\xf2\xc7c\xc41\xc0\"\x19\xa0\x1ep\xf1\x8c\x1b\xcd0 \x9e\xa1'#a1\x0d\x1bD5\x0c\x8fk\x18\x1a\xd904\xb6apt\xc3\xa0\xf8\x86\xc1\x11\x0e\x03c\x1c\x86G9\x0c\x8fs\x18\x18\xe9\xb0i\xacC? /\x1eo\xbc\x03\xe0[\xf7\x97C#\x1e\x1e-\xe6\xe1\xb1\xa3\x1e\x1e#\xeeag\"\x1f\x9e$\xf6\xe1\x89\xa2\x1fv*\xfe\xe1yD@\xec`\x0c\xc4\xd3FA\xc0\xe3 \xa0\xf7e\xfa\xd7#\xc6B\xc0m\xc1\x91\xe2!\x06ED@\xb1\xd4w\x83\xd2YBx\xd3,Q\xfb\x8c\xffAf\x06\xdd\x14\xbc\x98X\xa4m\x7f\x14\xad\x91\xea\xe7\xc2h\xe3\x194\xb4l\xd8g^\xc8\xcb{CX\x7f4i\xae\xef1\xfc\xb2\x04\xe7\xf9\xba\xe9\x8c\xef\xfdP~4\x02\xb9[8\xd3\xaa\x03\x88Hc\xcdH..\xcf\x99\x86e*=\xc93R4\xe7[\x1e\xd9\x10\x84\xd7]\xa2\xd1C-^\xa6Y\x90;}\xe8\xf9\xc2\x8f\xd3)\x9a\xac\xf7\xd0r\x91\xea\x7f\xd3lNj\x8a\xe7\x8bzO\xbb\xc3De\xbep\xe7J\x91\xa2\x95\xcb\xdej\xd3\xd2O\x06\xf8\xc4\x0c=/\x0b\xcf@z\xcd\x88\x88 B\xe0\x02B\xc6\"b`\xf7\x19[b\xa0\xc5\x1e\x93\xf1F\xe4\x80}\xc2$\xa8\xbc\xfb'\x05\xad\xd6\xbc\xa3\x9a\xc4\x17D\xd3d=\"E0)\x80P\xa7\xb3\xbd\xe9'\x10&\x87\\=Q\x01\x87t\xe0W\xf0gr\x05>\x9b)\xccqM\x15\xd2 \xc2vt\x1ey\xf8\\6\xe2DJ\x91\x01#\xd6W^\xc9~\x8cbK\x1f?\xc4\xe0\x829\xc3lei\xbb\xb4\xe4\x9c\xe0\x0c/\x19\x9eT\xdc\x9a\x07\xf8\x8f\xb8\x0c'8\x99\xc9\x19\x0f~\xe0-\x11e?[Y\x11&\xdd\x12\x0fG\x04^l\xa3H\x01\x95\x95\xc5\x81\xa0\x17\x91U\xf8\xd8\x03\xc3\xf0\x84\xa9\xb8oL\xbb\xd6(\xc1\x0bae:\xa3p\xd8\x0e\x0c\x82\xd2\xeb\xbcDs|K\xe4RWYsL]\xc9\x8dM\xd6\xe8\x8eT\x91\x19\xc3\xa9\xef\x07P\xa5{)\x0d(\x1d/e\xd8R\xda\xba\xc078+jj\x9cN\xbc\xf0lW:\xfb\n\x17 D\x93]\x19nT\x9e\xa3>\xc3+b\x8c$9\xccc\xc4\xa8:bf\xc4/\x16\xb2bU\xe6+;\xc1\xbd\xfd|?c'\xe9\xbf%\xa7eFzQ\x8a\xd0\xae\x0b+\"\x18a\x19Qf\xa5\xf1\xb7\x9f&\xbe\x0c+\x96\x8a\xc4m\xc5_\x9eT?/W\xbe\xbe\xb9\xcd\xa5\xcd(\xbdtZ\xe0\x86E88c\x1c\xc2\xe6 \xc0\x86\x82\xd8O\x8f\x7f\x85\xd5\x0e\xc4\xb2\x8a\x1c\xb8\x03\x18\xecB\x1c~\xcb\xd2\x98\x8bXd\xc2Vi\x8a\x08\xb9\x0e\x9aC\xc3\x13\x90U6!\xfe\x1bP|\xda\x8ep\xa6\x1b\xf4d\xbc\x0168\xa0V\x11\x0d\x18\x87\xe4?\x9f\x07\x8f\x0cd\x1b\x87\x84\xf1N\xf2)\x08\xcf\xded >\x85\x037\xc0\xcc\x19B\xf5\x08\xb1\x1b\xfdv\xcdH\x0ba\x08\xad\x1b\x05ox\x17J\x80d\x15$8fC\x1e\x0b(\x1a\xbbi)d&A\xba\x12\x01\xf5%B\x90\xd0k\xf1\x00\x97\x06\x82\xcb \xb4\x9d`l\xf1\xe8\x99\x8a\xebN\xf48\xd4\x01\x8e3-\xa4\x87kR\x13\x18\x90O0m\x8av\x8fWc\xe8V\x84^\xba\x96\xc2)\x1fy\x91\x0c\xa3|C}\x82\xdcK\xc8M~\xa7c\xcd\x18g-'\xd0\xf1N\\\xee(\xb5-\x1f\xc0\xda4\x8d`k\x00E\x08\x94\xeb\xa8G\xe7\xb6\xf8\x85\x16\xea\xb8.\xa2\xca\xa93\xedq\x05\xb5;\x9c\xdaX1\xb5\x01\xf6\xe0S\xd2\xab)\xd6\x0e\xf1\xac\x8b8\x02tbs|\xd5\x8aP\x1f\xca\xcb\x98\xe2\x02\xb2n8O J+\x08n\x13\xeaGZ8\xc3\xa9\xdfPq\x01\x96\x97\x8b\x15\x10|\xa5\xd3\xd1\xdf>M\xfb\xae\xb6\xd0?\xcd\x89\x93\x1c0\xd0UM\xffBWSD\xbc\x98\xa2\x03\x98Q^1PL\xd1*\x7fl>ba\x1dj\xcbF\xa1\xc9\x89\x0d\xfen\x86\xeb\xd9\xf8\xa4R\xd9\xf0\x9c\x13Q\x185Z\xd4Z\x8b\xa6Q\xc4\x84\"\x1a\x84\x17`\nd\x05o\xc7-\xb6F\xfe5\x1b\x987w\x0fG1\xb1G\x07\xaa\xf1\"\xf0\xf6l&\xe5|^\x16|\xbcpt\xa8h\x93\xf5$\xec\x10C\x8b@5EFskJK\xc8\xe5\xb2zt\xe5i\xf4Z\x80\xfd\xad\xb9\xac\xe5|:\xd0\xac \xde\xda\xaa\x87\x89\xde\xacX\x95\xb7\x81\xb5\x94\x15\x8b%}\xb6\xa9[\x90]\xd0k\xe2!F_\xfb\xf9\xce\xa6]\x14#RE\xcby\xff\xa4\xac\xb8E\x13\x9c\xdc\xca\xe2\xed\x00H\xfbvr\xfag\xf43C'\x0f\xa5s\x986\xf6\x8c\x06\x99\x14\xef\xc7\x96\x06F\xcb\xa2&q[\x8d\xdfk\xf4\xc9\x8f\xefNi\x9by\xec\x9d\xa5\xc2\x88\xb1\x9b\x98\x06m:G\x0d\x19\x92-\x87\xf6\x90\xec\x9d1\xa4&\xe9 )\x8b:K\x95\xf7\x81\x0f~\x9b\xf1\xfb\x8bTt\xd1\x9agu\xcd6\xa7\xd4Ge\x85R\x92\xe35I\x81)\x8a\x1e$\xd9\xe2k#\xc9\xdey\xf9\xd2\\-:1g2\xc3\x17\x8a\xae\x1e\xa8\xd0\x13\x87\xaa3!\x9fH\x91\xe0E\xbd\xcc5JRn\xf1S,\xc4\x8f\x88\x1a\xcb\x03\x90m\x0c\xc3Q\xe0\xf0\xba\xfe\x0d5M\xe6\x979\xe5BZ\xb2Ltk\xd5\xe2:2K\xec\xa7\xe2 \xa3>h\xca\ng0\xd3\xe1y\xd4Ljc\xa9\x18\xd8\xdce\x00\xf4l\xed,\xaf\xe4,\xa1$/\x8f<\xe0\xe2\xb3}\xa2\xafD\xca)\xb7\\\xf9\x94cJq2\x13\xa3\xe9\x8cV\xb67 N\xfc\x85\xb0\xed\x1d#\xd71?\xbbG\x13\xb7-\x16K\x8c$\xe7\xcaB:4\xe4k\x99\xed\xe4&Y;\xaeF T\xb2\xa1E\"\x94\x8cH$/@k l9\" \xe4\xc3\xdb\xe2F\xd1\xe3{\x83\x8c\xe4\x84F\x03\x87\x9ai\xd8\xe5\x88\xa16\x96\xc3C\x854$\x08K`\x81\x89\xbb\xc0\x961\xc2U\x9be\x03d\x8fp\x16D}\x93\xbb\xc0\x1f\x03U\xc5 \xe9\xf5\xe3\xaf\xb6\xc2\xa1'\x88\x882F\x8e\x85B\x8d\xb1S\x9ea6\x04\x80*\x90\x96@@M\x81^\x92!\xe4\xf3\x08\xd4EO\x07/\xc9\x10\x83x5\x86vA\xe8%\x19\x02N\xf9\xc8\x8bd\x18\xe5\x1b\xc6\x94\xa2>\xc9\x10R.\x8f\x99\n\xe1\x009^\"\x84\xb4\xaf\x1f3\x0d\xc2\xa6g\x04\xcb\x02(:\xa0\xfcF\x1d\x1c#\xa7\x93\xf0>\xe8\x97\x00\xd1\x9a\xec\xb8J\xda\x15\x1em\xac\x88lp`\x0em%~}\xfb\xdc\xdaV\xda\xc3@.>\x97#\x90\x03_\xc79(\x08i\x04\x86\xc5\xf49\x90MC\xe9\x1fE\x93C\xe9\xeedT\x8cyFr\x02\xf7\x9e\x95@\xa0\xb8\xc0EY\xea?3EI\x06i:\x04\xd4v\xa8g\xe2\x1f\x82\xaf\x1f\x04\xdfj\xa8\xe7\xc4\xa0\x1e\x89\x80`@}u!\x1a\x96\x10\x88v\x96\x831\x1d\x19\x05H{\xa5v!XB\xd43\xe5\xe50\x0d\xda\x05\xe5\xd0\xa2=!\xf4\x9b\x83\x98\xf2@\xfdX\xbe\x19\x1f\xa3\xaa$\n\xafw\xba%\xea\x9dt\x88\x1e\x93##\x1c\x16\x01Kuh\x12\xa2\xb8\x16\xf6\xe7 \xca\xe3\xdc6R\x10\x05\xe8@\xb2\xa1\x1c[^\x03w3\x07yNaw\x9e[\x83\xf0_\x898\xba\xa4\\\xac\x1b3M\xfc\xc1\xceOB<\x9b\xd17dD\x8f\x87\xb5w\xd4\xf9\x1d]\x91\x90\xf9\xec\xb8\xba\xb1\xda\x86j&\x85\x92\xdcC\xe4\xcd\x8doO\x89\x9f\x1e\xfezwC\xde>\xe0\x07\xba\xfcxD\xef\x8f\xee\x8f\xf2|\xf5\xff\xb1\xf7\xaf]r\xdbF\xc28\xfe>\x9f\xa2~z\xb1\x927\xa3\x96%\xdb\xc9F\xcf\xe3\xe7\xacnvf\xa3\xcb\xac4\xca\xee\x9e=\xf9\xb7\xd8\xdd\xe8\x19f\xd8d\x9bdk4N\xf2\xdd\xff\x07\x00A\x12$.U {,9\xa87\xb6\xa6\x89\x02P(\x14\nu\xc3w\x9f\xd6\x7f\xf8\xb9\xae\xae\xbf}\xb4\xf9\xe9\xd1_7\x1fw\x9b\xe4\xe7\xc3\xf5\xcf\xebd\xb3\xb9\xbc\xfc\xb7\x8b\xdd\xe1\x9b\xdd\xfag\xf6\x8d \xb3\xdb\xda;\xd3\xec[;\xee:\xc9\x81\xa5\xa2\x02\xf9\x8aA\"\xb6\x9es\xd2\x7fx\xf8\x87\xdf\xff\xdb*yt\xff\xbb\xed7\xdf\xdd\xff\xf6\xbb?$\xf7\xff\xedw\xc9\xef\xefo\xd9:y\xb8\xfa\xfa\xbb\x87\x8f\xd8\xd7\xb2\x04\xbd\x92kk\xfb\xdbx:\x95]c}\xf8\xd3\xcfV*\xff\xf4)\xbb\xbaf\x99\x91\x98\x9e\x04\xca\xb9\xc8\xd9U\xd8#\x13\xf4\xbb\x7f\xfb\xfa\x9b\xed\xbf\xad\xd6\xf7\x7f\xf7\xf5\xef~\x7f\xff[\xb6\xfa\xee\xfe\x1f\xbe{\xb8\xbd\xff\xe8\xe1\xa3\x87\xbf\xfb\xfd\xc3\xf5#\xb6\x1e\x10Tv6\x89\xa4\x12\xc5\xc3\x9f>Y\x89\xfa\x87\xea\xa7l}\xf9M\xf5\xe9:\xff\xf6\xdb\xbf~\xf7\xf5_\x7f\xbe\xa8\xff\xad\xac.?\xfet\xb3-\xff\xba.m\xd3\x11\xcf)s\"\x14yv\xd3\x91\x00R\x91\xb8\xd7s\x1f$YU\xd8\xc6\xd7\xbcva\x14\xd7\xf6\xbb\xb2w1\x9b\x90\x8b\xfe\xedUfoi6\xb9\xba\x80\xac(\xae\xb8t6`i\x92}\xa4A\xd25\x0e\xd7;\x008\xae\xd2\xba\x92Bj\x9b%\x17\xe2\xd8h\x9f\x0d(\xd4gb\n\xf6cR\"iN\xae&B\xa8b\xdd\xe9\xa2\xaej\xd5\xbe\xc8+c\x04G;\x9c&\xb9\xfd\x96&\xdfO\xb6\xf7\xcd\xdf\xcd\xee\xd5\xa4\xe9\xb3Or@\xce\xab\xf8\\\xb3\x1ftf\x9f|\xf3\xa1\x18\xbd\xd5\x99)P\x88`\x1f\xdf$\x15\xd5\xadZ\x03\xcc8\xc9Ag\x98\x15\xb6\xe6\xf7\xb68r\xb8)\x0ee\xa3\x9a\xe8St\x8f\xaaI\xa7z\xdbP\x07\xba\xe8:\xf9o>\xeb&\"\x9b\xc1\x7f\x1eXy\xf3@\x15\xd7}{\xf6l\x80Lfrv\xdd\xabP\xda\xdeg\xdah\x9e\xe4p\xc8\xd9\xa7=[s\xedJ\xbe\xcddZ\xa7j}\xc9v\x89\xbe,Ve\xcb\xaeh\x89\x0e\xc6\x8b\xeb\x10\xa0\xebbc\x90v\xb2\x81\xad\xc6\xb8\xba\x95\xa6y\xfd\xcd\xa3\x11\x81,\xf5\xb9\x1dc\xd8\xb0:I\xb3\xcf\xa4\x08\x06o\xbe<\x94\xd6ga\xbc\x87\x91\xc8\x1d\x0dnm\xbc\xf3\xef\x932\xd9\xb1\x9a\x95\xbd1\xdf\x97\x07fOE\xb1\xf1\xe0`G\xd0u\x9aPM\xa6\xd5Y4lc\xfdev\xade\x82\xaeb\xd2P\xd2\xfc1\xec\x93\xba\x1f\x84\xc9\xc5RZ\xb2\xcdc\xa8\xcbC\xffx2.\xb0Z\xab\xde\xdd\x04\xb9X\xc1\xb7\x99y\xef0\x9c\x02?q\xd1h$\xc16\xc9*4\x0d\x14\xf9\x91\x04\xa0^h\xc2\xae1.\xed:\xe4\x9a2#\xbd\x06\xfe\x17\x8dVx\x85\xf7H\x83\xd34Y\xe4\x8a\x86i\xbf\x86\xebf\x88\xd2\x172\xf7\xa1B4\x9a|\xa3\x85R\xe7OQ\x80\xc1\xd0\xc9/O\x81\x816\x8b$@\xa0\x0e\xdci\xbb\x1a\xb6\xdb\x98\xe7@\xa1E\xce3H\x0d\xee)\xbc\x1a2\x8b\xf2;}\x96ur\xa1i\x15\xff\xd9`{\xc0OB\x96'\xf9\x9a=\xd8\xb1:\xd9$u\xf2\xe0\xe3\xc3\x07\x8a\x11\x1f$Y\xa3#]\xb0V\xff\xad\x0e\xbb]R\xde\xdan\x04\x0cKI@V!C\xafq\xf3q|\xb4\xdd\xde\x84BH|\xe6t\xe0\xfb\xd9\xc3\x17}\xe3\xa3\xed\xc6F\xf1\xd1\xf6>\xc4G\xdb\x0d\x1b&>\xdaN\xee#>\xda\x1e\x1fm\x8f\x8f\xb6\xc7G\xdb\xe3\xa3\xed&\x88\x8f\xb6c*\xa2\xac\xe3\xa3\xed\xf1\xd1v+ o\xcc\xd8\xfbr|\xb4\x1d9#\x9c\x14\x00\xf0?\xf6\x1d\x1fm\x8f\x8f\xb6\x1b!>\xda\x1e\x1fm7\x02n\x84\xf1\xd1\xf6\xf8h{|\xb4\xbd\xef\xe1\xb6\xe9Q\x08\x1d\n\xa3?\xdd\xbe\x0bk@\xda^\xf8\x95\xb5\xd6\x8a\x1e>e\xd7,{k\xe1O\xe3;\xe2\x9c\x1fJM>\x98\xf0\x95/\x10u!\xbe\x10\x9a\x8d\x07\x0e\x88\xda+\x86V\xf1\xd1\xf6\x06\xa6\xcc~&\xc6 \x9f\xfd\xc4\x83\x0b\xc1^&R`\xc6\xfb\x8b>\xda\xde\xe0\xae\x84M\x95\xd3f\xf8,\xfb\xb0\xfd\x97V#%\xa6\xa2+\x98k\x92A98\x16\\\x98Tt \xfbD\xc4WZ\xfd\x82\xb8\xb1wXZ\x1fJ\xeb\xc9\xea\xfd\xd6%\x07\xab,v\xf7\xf8\xcdR\xd0\xab\xdd\xf9u\xbb+\xe6\xf0\xf9\xa2d&\xea\xa8\xc5\x11\x0f\xe4\x80\xe4\x82\xcb\xe7|KV\x1f\xca\\\xdaR\xce\x92\x0b\xa6*\x02,r\xf6\xa9^\xf2\x8f\xeb\xc2\x81m\xc5.\xd2\xdc\xee\xf8\x01\x99\x87\xa5\xde\xe8\xe18\xf9*1\xd8\x15U\x0dl\xbbM\xd7)\xcb\xeb\xecf\x01o\xf2\xec\x06\x8a\x9c\xb9\xcf\xb0b\xbb\x95\xc1\xba|\x1e\xae~\xab\xcb\xe2\x90m`%\x82\xb3lg\x9c\xc46\xd3\xfa\x1c\xdc\xaei\xfc\n5s\x14\x8b\x94\x1fv\"\x8e\xb7\xf9\x9b\x0c\xbbHr>/\xf9`\xe2%\xcb\x05)\xec\xe8\xd2\n\x0ey\xf21I\xb3d\x95\xb9\\\x83\x00\xa7\xa2\xd7L\xbcz\xa7\xd6\x86\xf7\x99\xc3A<\x8du\xc5\xc2\x16\xaaY\x0dW\xd7\xee\x85\xca\xd2\x9d+\xe8\xe9\x97Y'1(\xa5\x91\xd4E\x9dd\xbdze\xea\x9d\xaa\xba\xe0S\xeb\xed2\x07\xc2\xba}\xdfJl\x12\xf7Rm!c\xdb\x1a\xd8n_\xdf@\xda8s\x9b\xe8\x7f\xf9Z\x92\xdc\xe0r\x00|-V..\x11Q\x0b\xc9~o[\x01\xe1F_\x8aY\xfa\xd6\xc1\x17^\x8a\xa7p\xafS\x10\xd1\x87bfuy`0\x08:N|\xb5[\x1b\xbar\x14\x8dhh\x0e7\x17\x91\x139\x02\xa5\xfa\x0c\xd7X\xa4\x85A\xbb\xb5\xc0\\CIA\xeftJsx\x7fZ9\xd7w0uQ\xb3\x81+\x10\xb2f\x8a\xd8\xf6\x9d\x9c\xe0\xa2`\x01\xa7\xae\xfbvZAz\x91\x17e_f\xb8?wl\xc7\x92\xf1\x0b\x87#tenFh:\x1c2A\xda\xed\xb3\xa4d\x83\xbd\xe6\x9a\x9d\xf4\x1b\xf0\xfe\xe5\x9b\x9aP\x94\x1bV\xbaB\x18\x00\xde\xa5\xf9\x9a=\x86uQ\xed\x8a\xea~\xb5\xb9\x82\xaf\x17\xdf~cl\xe0\x0bs\x91\x07m\xab|\xc9q\xb3\xdd\x8am6\xf2$\xbex{\xf6\xacU\xad\x9a\x00\x9d\xca\xc1_\xad\xb4\xb6\xd6\x18k\x99o\x01/FF\x13\x97j\xe6_\xa4\xbe\xda\xa5r@\x84\x95\xa3\xcf\xf0\x9dQNl&\xa3>iW\x90'\\\x1f\x94\x1e\xe3R\xa9\x1d'\x87W\xfb\xd2\xe8\xf3w\xdb\x8a\xb7\xdaTs\\H\xc5\x8a/\xfb>\xa9\x9a\x1c\x8a\x1eW,\x9c\x8a\x97\xd0\xa9\xbc\n\xd5is&\x08\xd6\x12\x87\x84\xed\xbc\x1e\xc7\xe4X\xefq\x00\x8e#\x00ML\xc7\x11\xec\xdb:\xadD\xb4\x1d\xb8\x9d8\xb6\xce\xb7O\xe8\x9e\x9c\xb5\xed\x1d\xf1V(\xabO \xad\xab\xe6P\x15:\x95\xbc\x7fl\xa0\xe0\xf4\xbbN+\x9d?\xdc\xfb\xa6\x97\xd3O\xa9\xc15.\x05\xa0\x80\x0b\x8cX\x87+\xd6\xe1\xf2\xec\xc0[\xae\xc3\x15k\xa1\xb8\xe6\x19d\x87\xb9\xf5Z(\xdd,{J\x84~\xe5t\x9d\x81\x01\xf6\x86\xc6\xaa\xd0\xc7\x12bF\x18\x18\x0b\xfa\xe8\xac\xd6\x81\x10r\x8d6\x8cQg0\x10Q\x8e\x0f\xc9,!V\x01\xf7\xdd\x9fz\xdb\xf7\xd2SG\x7fd\xe2\x0et\x08\x03y\xc5\xfd\x1cI\xdd\xb0\xbb|\xef\xc6\xaea3\xdc\xde\x83\xee\xeb\xc6[\xf9-S\xb1\xaf u\xed]\xb4\xa4\xde\xda\xc7ws\x0d\x9d\xf1\x9eN\xbf\x99\xeb\xd7\x11\x0d\xd9\xf8.\x1et\xfb\xee\xdd\xb15d\xe6\xfb\xf6\xf8\x86\x1d\xb2\xb0\x08Q\xdd\xdc\x9d\x91\x8b\x17r\xd3nv\x82\x86\xc7w\xb7\xf6\xde\xa6\xa7S\x83Z\xc4K\xec?Q;\xa0\xbaL\xf7\x0f\xfe\xd6\x84$\xfcC\xe20\x15\xf4\xea\xd1\xee\xcf\xbc\xf1\x1b\xd5\xb8!M/\xacJs\xec \xce\xcf\xd2J\xb2\x7f\x93\xf2=x\xb1;\x91\x8d\xa5P\x10\xa3R\xbc\xa2\x15\x07\xd3\xfbm\xbe\xf8|\xeb\x83\xb5\x01C\xf3*\xd4\x16\x9du0GA\xf1b\xdb.H\x05\xf7\xf8P\xbe2\xa5>\xe9\xab\xf2\xa5\xfbP\x9d\xa5\xa4A\x88>\xc1\xe8\x13\xc4^\x97\xa3O\xb0\xf9K\xc0\xc2\"Du\xf4 \n0\xfb\x049\xb5\x1e||\xf8 +\x8a\xab\x03\xca\x0f\xf8V\x12\xe8\xa5h F\x98\xaa\xa2\xe7Y&\xa8_\xc1\xaa8\xe4\x9b^i7\x93\xd7O\xf3\xeciH\x7f\xa3&\xfb\x99:\xf6\xcc\x15\x8a'h\xa0\x16%O\xbd^\x92K\xac|_\xe3\xc9\xab\x00mS0xt\xfa\x95\x13{?\xab0M\xab\xcf&\x9a \xfa\x10\xcd\x04_\xbc\x99@HNMF\x85\x9b\n\xde\xb2\xaa\xc8>\xb2h\x1f\x80h\x1f\xf8\xdc\xed\x03\x1a\x03\xaa\xda1u\x01\xdb4\xdf\xc8\xda\xf9\xea\xbdI\xdd&>\x9b]!\xde\xb8i\xd7\x99x\xe3>\"q\xfdw\xc5x\xe3\x9e\x83\x8a\xf1\xc6\x1do\xdc\xbf\xfe\x1b\xb78\x89+\xfb=\xfbL\xfc\xde^\xb0\xe5\xe7\x8a\xfb\xc4\xd9\xbb+6\x87\x8c\x19#e_';&\x11\xfcF\xcd\xe33\xbdL\xf7\xc9\xd0\x87\xc1\xddTL^\xddK\xa5W\xbb\x8d,lh\xa2\x93\xa3\x83 \xb7\xd1]\xf2iY\xb1\x8b\x1d\xcb\xebe\xc6\xf2\x8b\xfa\xd2u\x95r=\xee\xd0St\xddW\xa9]\xf2)\xdd\x1dv \xbbSw~hF!\xc4v\x96\x15\xd7\xa6\xc1\xa6\xf9\xad\x0f6\xcdC\x07\x9b|Z\xf2o\x97\x19\xfb\xc8L\n;\xcc;R\xeb\x0dU\xd1\xbb\x93\xe4\xfd)T\xed\x1c\x16\x00/>%\xbb\xbd\xfd%\xd8\x0f\xdb\xa2X\xac\x92r\xb1J~\xfe\x00\xd7J\xdd3\x85\xa6\x08\x8c\xcbC^2~Lr /\x88\xe1$\x83+\x8a\xa7\x99\xe4\x86\xef\x87\x9d\xd8\"\xe9\x16\xfa\xe8\xe5\xa4\xae\xd8\x8d\x14\xa6\xa2\x7f~\x17.!/\xf4M\x81\xb8\x08K\xc1\x82\xba\x017w\xdeF\x96\xbd={6\xc0\x17/\xc1\xf1\x12|\xfb\x97`\xca1]Js\xcd\x83\xbf\xf1?8\xcd\xe2\xd2\xac\xd37\x88\xd7\xbd\xb7\x88\xc6\xaf\x9fI\xabm\xde\xbd\x0f7\xb0\x88\x0b|\xcdO\x9f\xed\xf1mM\xb6p\xae\x8c\xb2l7\xbf\xab*\x82\xea\xb6\xddZ\x1a\x94\xa6\xd3,B56\xb2v\"\xce6\x04\x9b\xdc\xd4\xc8\xf5_M\xac\x81|MU{\xefQi\x80\xe2$\xd8l\xa0:\xac\xee\x0ba\xadk\x1a\x08\xb9\xd9,)Ep\xea\\\xa0 J\xcd(5o_j\xbaL\x87\xb9\xfe\xca\xa5\xc6}y\xf3\xc6f\xb3\x89\xb5\x1d>\xab\xd9\x10#\xd6w\xd5\xc5\x96\xb1\x8aK\xf6$\xcb\xec\xe2\\\xb4\x15\x1e\xcdW\xd5E\xd5\xbc\\+\x9e\x8f\xe2\xcdMIt;\xe3EL\xe0y\x92e\xaf\xaa\x8b\x1f\x18\xfb\xecoc\xbb\xeab\xc9'\xf8y\xec\x02>\x9a\xc9;!\xd9\xc8'\xd5\x93\x8c\xcf\xcc\x8a\xc6\xfbX\x9b\x8eG\x18?\xf7\xc9\x0d\xa49$\xf9\x0d<+\xd2\xfc\x1e\xac\x92\xaay\xfb5\x81\xe7,/\xec\x8fq'\xf9\x06\x9e\xec\x8aC^\x9f4\xffU\xe6\xd4\x9fYY\xd8\xdea\xf6\xd0\x13\x104\x05\xc1Zy\xb1\xb3\xff\x8c *\x87D\x0c{\"\x1a\xf7\xb1\xd9\x01\xa7o\xe7\x97\x86\xba\xb8b\xb9R\xa4\xc4t\x94\xa1\x8d\x136\xc9\x9b\xc1\xf9\xdfi;\xe7\xc2H\xd2_>q+_b>\xcd\xebf\xcf\xa7\xfc\xca\xb7S\x0f{[\xb1\x89w\xe0w\xcd\xc9l\xef\xb4\xd5,zz\xc5\xea\x06.\x8a\x8bb_\x16\xb5\xe5\x0d\xd9\x92\xad\xd3}\xca\xec\xc4\xf6\x12\xba\xc5\xb0\xe4,Z-\xf7E\x9a\xd7V\x0eq\x1f\xbc\x12|7o\xf7\x86\x92\xe2Pi@\xeb\xa2\x14\xd6\xfek\x99\"\\W\xe2\x91a~?\x95\xf6\xee\xee5u3eS\xf1\xb4z\x95V\xb50\x06m\x8bC)\x9e\xf2\xab\xcc\x9f?\\H{Qu!U\xaeC\x99\x9d@\xba`\x0bx \x8d\x83\x8bU\x92_->>\\\xb1:y\xb8xU]\xbcc\xb9eQ\x1f-Z#H' \xc4\x19q\xaf\xd9\xcf\xc5V\x08\x08\xc1\xa4_\x99\x91|\xb3\xe8\xe2,\xda\x95\x123a\x8c\xcb\x14A c\xcb\x0f\xe6\x85\xfd`\xee\xe7\xdb\x85\xb4\xaa\xaa\x1e\xd2\n6l\x9d%\xa5\xcc\xc7\xbe\x91\x1e\x02\xfe;k\xcei\x81\xd4\x88Kv\xa4lo|\xa0\xf7\xbe\xbe\xff\xf0\xeb\x93\xaf\xbf\xfez(\xbdb\x08\x8a\x061\x04\xa5\xfb K\xcc\x7f\x86\x10\x94f\"\xedu\x90\xf3x\xeb\x84\xe6\x9a\xe8\xae\xba\xb8+\x9f\x0e\xb5+\xa1-\xc6x'\x1c\xfc\x1a\xef\x84\xb7|'\x8c\xb1\x1b4\xc7x\x8c\xdd8\"q\xfdQ\x071vc\x0e*\xc6\xd8\x8d\x18\xbb\xf1\xeb\x8d\xdd\xe8Y\x0f\x89\xe1\x1b\x83\x90\x05\xcea\x9f\x14\xba\xa6\xa9f7\x94\x17\xe4\x18\xc2!a\xc2mn\x9b\x15E\xb9\xbcH\xaa\xe5\xbeL\xd7\x16\xf5\xc7w\x87X\x17yU'y-\xcf\xcb\xba\x80u\x92\xad\x0f\x19\x17KB\x13\x17{\xf6\"\xa9\xe4\xbf\xaa\xcb\xa4d\x95\xbc\xf1[\x10\n}}W]\xf0\x06\xe6\x11\xf9,}>m\xd1k\xe5C(|>\x0b\x9f\x17\x05\xce\xba7\xb7moN\xcb\x1e\xca\xae\x17b\xd5\xcb/\x93\xear\xb9g\xe5\xf2Pm\x96\xbb\xf4\xf87\xe4\xe6\xd4\xe3\xfd\xc2\x9e\x95p\xa86\xb0K3!\x8b\xd6E\xfe\x91sS~!\xfe\\\x17\xf2;\x03:\xf9\xa5x\x82z\xcb\xd8\xd2\xc1d\xde\xa17\xe3\xea0\n3\x92\xc0\xa8t+\xf9\x0f>\xa4\xb4R\x83\x14;PC\x88\xf0\xbd\xc6\x98\x95x\xd3n\xc1';?\xc7\x9b6F=\xa9?q\xcd\xa4=\x9b\x96\xbb\xeab)\xcc\xc7\x9d\xe7k_T\xce\xd2\xae\xcfT\xe3\xf3O?\x88\xb3,\xdd\x89\x7fV\xc0>\xb1\xf5AH\x88\x04\xea2\xc9\xabd\xdd\x9abYU\xa7\xbbD\xfcx\x91t\xf6\xe2\x03g\x03)\xb5u\xdb\xb8\xd1U:\xe8\xba\xf9\xe4\xb3\xd5zt\x7f\xe0g\xc2\xb9\xce3\xdf\xcbx\xee\xf3\xde\xd3\x1cs\xd6\xcf{\xd2\x07\x9d\xf3\xcd\x89nD\xe8:\xe5\xe9g\xbcK\xa9\x1c0O\xfb\x9ei3\x91b\x0b\xeb\"\xcd\x95\x0dA$W7-\xb8\xd6h@\xd8\xbbG(\x10\xe7}\xe4M\x88\xbc9\xe6M?A:\xeei\x99S*\x90\x1d\x8b\x8a\x1fs\xc66l\x03\xf6\xea\xbe\xbd\xb3\xa2\x82{\xcd\x9d\xa7\x82\xdf\xaa\xfb\x92\xd1'\x9a\x175\xd7X/\x99\xfaJ\xe8\x7f\xea\x80\xe8U\xae\x16\xd7;\xf1\x91\xb8\xde\x19P\xc9;\xa5\xbcl\x0e \xd1\x9c[l\xc3/\x88$}\xc5\xabx7\xbb_\xebA\xa9\x9d\x1d \xf9\x1fu\n\xf6\xe9\xa5!u/\xd9\xe0\xf0$(\xbaQ\xc3\x8d\x1a\xae\xf1\xf7\xdb\xd6p]\xbe\xa4U\xb1\xe9\x13'\xcdG\x7f\xb2\x06\n\xce\xc4t\xf5\xa7%\x1fk\xa8\x940F\x03h\x9bHu\xd0\xba\x15z:v]\xb4\x8a\xf8P\x845{S\xe8\xf9\xb6\xdb\xb8s\x84\xfep\x84q\x17\xca\x8e-\x06\xc6j\xed\xaa\xde\x882e\x0d3\xe0K\xb7\\\xbe\x8b\x86\x06\xcf\x860<\x0cgy\x91T\xcbd\xf3\xd7CU\xef\x8caPr\x86\xd2\xa2o]\x83mV$\xe3\xcd\xe2R\xd3\xf4n[\xf1\xdd\xfde\x9b\xac\xeb\xa2l\xd4\xb4\xdd!\xab\xd3}\x96\x1ak\xde\xaaj-\x1c\x81:\x14:\x93\xf8JFg\xd4\x9f\xd4:O\x94\xfe]M\xdb\xfe\x0b\x0ct\xd9\x8f\xb9u\x96\xec:)7\xc2(\xbe\xce\x92t\xb7\xdc\xb32-6K\xf9\xf7\xe5&\xe5\x8c\xb7:\x08\x05@\xe2\xf2\x0f\xb0c\xf3\x9e\x9bV_\xac-\xdb\xa6\xe1\x05\xddDQ\x16i\xaf\xbe\x85\xb8C\x85\xd8\xa2\x91\x96\xe8\xa3\x0c\x8flh\xb6\x18\x94\x83\xcd\xc9\xa3\x11\x91,\xc6N#\x98\xd7\x9a\xe9S\xef\xbd\x96L\xef\x92\xf8\xad\x98\x1e\x14~[\xf01,\xc1\xbf\x06\xca\xf9m\xbf\xde1\xf8\xed\xbe#\xe2\x93L\xbb\x8e5\xc0\x1ap\xfd\xe6[\x8c\x9dtn\xd3\xad\xc3p\xeb\x1f\xce\xccF[\x9f\xc9v\x82\xb1\x88\x1f\xb3&\x83\xd1\x00S\xe3\xac\xf7\x19\x8a\xdaV\xd1N4\xf85\xda\x89n\xd9N\xd4\xaa\xc96\x16\x1c\xec\x96s\xab\xfe\xc0Lj\xaf\xae\xee\x9a<\xd8\xba\x921\xb1\x88\x1c\xf8\xaf\xcb\x03\xfd\x900mmz\xf8I_'\xfa\x84\xd7%\x13\xd2l\xe0\xf59\xd6\xcc\x897\xab\x86\x1f\xc4\xac*\xcc\x8bb=B\x19\xe5\xe6\x93\xa6X\xe08\xf0\xa7!\x96\xec\xaa\xe1\x8d\xfe\x84\xf8}\xf6\x92A\xb2\x96\xe6\x83$\xdf\x18\"\x80\xba\x9b\xaa#\x14\xc85\xb0\xe6\xfb\xcf\xf6\xf2\x14V\xa3u\xa4\xadtUY[C\x8e\xa0\xbe\xa2\xae]\xe7o8\xa2\xf9PD\\\xcd\xfb\x80Z\xb0\xacE\xde\xa6Hb\x13\x1f\xd7\x83\xbcSI\xf9\xe0\xbeR\xe9\x97*\xb9\xf9\xec\xda\xb6O\xab\x92 \xd5Su#\x10(\x9b\xe0N~\xdfbYz\x91\xae2]|UCc[\x1f\x9a\x99\xfd\xb3\xc4\x93\xc8cB\xca\x14\xd4R\x88\x0b\xad\xf8\\\xb1\x84@\xe1\xa6\x97s\x1e,?8Hq\x1f\x9e\xbd|r\xfaj\xf9\xee\xfc\xc9\xf9\xfbw\xcb\xf7\xaf\xdf\x9d\xbdxv\xfa\xc3\xe9\x8b\xe7\xf8&\xe2\x9fO\x9e\xbe|\x81m\x12\xd6\x00?\xa4\x17\xff}v\xfa\xd6\xfa\xb9\xd2\x96\xa93o\xf4~\xa1\x92\xbf\x93K\xd4x\x0f\x840k\x0dv\xa9u\x03Hn\xf8\x05\x04\x8cK\xe7p\xcb\x14\x8c\x9c\x90\xe7\xe2\x13)\xd9\xfbY'I\xfb \xe5]\xed\x98\x96\xf2\xc3!\x8c\x95\x98\xb8\xeb\xbb\xf7\x1aCg\xb4\xf1\xc4\xf8\x98\x0eb|\xcc\xf0\xe3\x18\x1f\x83\x8a\x8fqK\x81\xa6\xb0\xbd]96\xc6\xc8\x18\xedA\x8d\x16/\xe4C\xaek\x9bBi\x07[\xcc~4\x82D#\xc8\x08n\xd9\x08\xe2y;\xd3x\x7fr\x9d\xc1\x93\xef\xf2\xba\xb1Bn\x18\xdb\xe8\xfe>\xb6T4z\xa8\xed\xae\xb7;T\xb5(\x87?\xf0\xa4;t\xca\xc7=I#\x94&O\xc3VQ\xe4\x0d\xc5,\x840\x1c\xcd\xc4\xa1b\xea-\xdb\xff\xf37\x96\xa3\x1d4\x1d\xa6u\x99\x15O\xbd!\xfb\xb4O\xf5\x00\x81\x10G\xf7\x88Q\xc7z=R\x97G\xea\xef(\x9d\x1d\xa1\xa7{us\xbc>\x1e\xa3\xd2h,\x12\xa3\xd2 F\xa5\xc5\xa8\xb4\x18\x95&!F\xa5}\x11Qi\xba=\xbai\x89\xf2\x99\x9c5M\xec^\x12\x85Tw\x81\xe8\xd3\xe3Sp\xf8?T'\xcd\x17\x9f\xad\xc7\xc3H\xc6>\xfc\x12W\x9a[\xb6\xfd=\xc9\xd5\xcd\x91\xef\x94C\x9e\xfet`\xd9\x0d\xa4\x1b\x96\xd7\xe9\xf6\xc6\xe0r\xb0\xf8\x15\x84!#|\xe4>C\x08\x88\xc7\x8a\xf9\x18/Y\xb6\xd7\xc7\xf7\xd6d'\xe8\xa0a\xc7\xc5\xbdW\xc9\xa7s\xde\xcdK\xf1\x0e\xed\xf7\x0f\xbf\x1d\xbdA\"\xa1O\xa0c\xce\xe8\xddeQ\xd6j\xb36\xbd\xae\xd4\x8e#L\xeay7^5\xb5\xaf\x0d\x0f\xacHh]\xc6l\xb9-\x8b\xdd\xd2\xea\xf6\x93\x80\x98\xa8\xc6O\xda\xf5\x95K\xaft\xc3*\xd8\x1e\xf2M\xf7\xd8e\xdfc\x04\xfb\xa2\xc8\x10\xae*R\xe2\xf2\xa8\x04\xd5A\x8aw\xf9\x96f\xe3\xee\xd5d\xd5?\x8b\xb7\xa9d;\xf9\x82\xa6\x8c\xa7\\%\x19?[P\x84\xf5$ \xb7\x98\x9b\xc5\xee4\x9a\xba\xe81\x1d$\xdb\x9a\x95`w\xff\xe9~B\xf1\x96\x9e\xb4\x19\xff\xb3,QcEX\xbaQQ\x96f\xb8\x1d\x92,k\x16IykW7\xe2%\xact\x9d\xee\x93\xbc\xb6W~P^\xdd}R\xd5\xfaJ\xfd\xb3\xac\xce.\xf9\xa4D\xd2\xea\xc6'<\xb5Ez\xd5b\xf9\xe6\xcb\xa1IZ\xb5\x13\xe0{\x91\xe5\x9b\x13\xf7S\x85\x1c6I\x9dHSDZ+w\xe4a\xef\xe6\x15E\x95\xe5.\xf9t\xdb\x94\xb1O\xff\xd5\xfbw\xe7|\xd2\xe6\xb1k;\xf53\\\xd6\xf7\x950\x98\xd4\xac\xcc\xc5k\xb5\xda\x8b\x16\x9c\xc1\xeb2Y_I'\xd5\xa1,Y\xde\xe8\x04V\x84r\xaawE \xbf\xb8\xe7\xa4;\x0b\xd7'\xeb\xfa\x90d_\x00\xcf\xb3\xa1\x10\x10{^r\xfb\x0f\xa7\xafO\xdf\xfd\xd1\xbd\xbd9\x9c\xe6i\x9d\n\nW\xac\x86\xa4\x92\x96W?\xcf\xfcRb]W\xd1E\xf0\xa1:o\xe5\xd3\xa0\x87\xdc\x14J#\xa1\xe1\x14D\x1a\xd7\x91\xe6\xe1X\xd3g}.V\x07Uc\xb7\xd5\xaf\x8b|oT\xf0\xf0\xbe\x90eV|i\xbea\x9f\xd2\xfc\xc2L \xa1J*\xcd\xe7\x97[W\x07=v\x8d\xca\x9a[\x96>\x19F\xa3\xae\xad\xf5\x9e\xc0\xa3\x87Y\xa2}%h\xe3U\x8b$C\xea\x8c\xab\x13N>_(\xe4\xbb\xf3'\xe7/\x10\x91\x80\xdd\xb7g/^??}\xfd\xa3\xf7\xbbF\x15\xf0~\xa7\x84\x8a\xf7Cd\x88#vF\x8d9\xeb\x9d\xa0\xba\x16\xd5h\x0cL6b\x11~na,^J\x9f\xc4\xe7\xc2\xe8?\x96\xc9\x9a\xa9\x0d/-\x14\xc3\xa3\\\xd1]\xb9O\\\xcf|\xe7#\x0d\xf8\x90\xd7i6\xc2\xc9r\xf1\xac\x95\x0b\x95ZE\xeb\x07\x8e\xb3\xe5\xa7C\x92\xa5\xdb\x9b4\xbfX6\x95\xd5\xdd\xf46\x1b\xba%X\xcd\xdd\x12\x10\x97(\xdc5\x8a\xafY\xc6.\x1c\xc2@\x02\xaaC@w\n\xbd\xdb\xa8\x87V\x1d \xb8\xb4\x03\x14\xbfv`\xbc\xeb\xf6\xf8\xaas\x90(zY\xad\x06\n\x1ai\xfe9\xceot\xce\x04\xcd\xafY\xbf\xa6\x01\x972\xfe\xeb\xb4\x04\xac\x9c\xe8``~h\x1d\xc4\x87\x8a\x95]\xdc\x13\x02Q\xa3\x0fe7\xedD\xdb\x07\xed?&Y\xbaIj\x9b&\xd5\x07\xf4v\x00\xd2\x96\x00\x8ca\xa3\x03\x12\xc3`\x8c\x1d\x1d\x10P+>\xbf\x1d>hX7\xf2A\x0f\x08\x8b\x05G\xe4\x83\x9e<\xff\xc8\x96U\x9d\\1\xaea\xaf\x19?\x8c=\xe7\x0b\xd0\xfa\nb\x9dF\x84tC\xd2\xc2\xa3V,+\xae\x9d\xbaA\x07-\x87\xdc\xad`_\\\xb3\x12\xca$\xbf\xb2\xde<:\xe8\x9f \x9f%\x8d\x9a\xed\xf5\xcb\xd1\x886\xe6'\xe2l}\xde\xec\xe0\xae\xf6\x81z\xa7\xb0\xf9{\xf3`C\x92\xdb\xef\x8e\x12\xd2\xba\xf7X\x8f\xcc\xa5K\xb3\xb4\xbe\x81u\x99\xd6\xacL\x13\xd7\xe0\xc5\xdb\x10[f\x881\xd7\xbe\xc2\x8a\x0c\xbc\xb8\xf8B5)E/\xbf\xa6\xf1ejR\xf8\xf9\xfd\x12\x9aT\xd7Yw\x982-\x94\x1c\x81L\xf8\x8b\x93uYT\x95pT\xb6\x9b\xbe:\x01\xed\xe9\xa4\xad!Ub\x0c\xdd\xc3*+&#\xed\xec~\xe8\x0e\xd0;\nH\xbb\n\xbe\xbcC\x98\xc6\x0dRx\x9e7\xcb3\x14\x9ej\xd9nIx~,\xe2\x15\x14+89\xad\xfcB\xe5\xcb\x14\x9a\xb8\xb9\xfd\xaa\x05&'\x01\x02U\x14\x96F \xa0n\x89\xbfl\x1f\x89\xf2(o@\xeb\x80\xbcO\xfcA\x8c\x1d\x9c\x15U\xcao\x11\xdd\x0bW\xa5T\xd6\xd3\n\x92\xbdx\xf1\xaa\x89\xbdC k\x8a\x9b%\xd7I\xb9\xe9^\xbe\xe2\x9c\xa8\xf8\xec\xfa\x92\xd9\x9d\x0d\x1d\xac\x8b\\>\x89Z\xd9m\xa8\x1d$%\x83\x1d\xab\xefq\xd6\xcf\xe5\xd5B\x86\xd4\xb7h|\xb6\xdf\x0e\x94OT\x0cZ\xe5\x15\xc9\xf5\x15\x7f\xfbj\x01O\x9aL\n\xcb\xd3\x10:\xfc\xcc\xcaB\xe58\x8bm+L\xf0\xc9\x8e\xa1&VA\x91\xbbGM\x93D\xf2\xb0\xfes1\xbe\xe5|,\xe4\xfb\xcf\xed1\xcd\x0fb\x0f\xb6\xc0cZ\x1b\xf2\x7f\xb6\xe6n96uIlR\x82vI~\xd3\xca\xa8\x9b\xbd]\xa8kH\x9f4O\x92\xca[\xa7\x94\xb2\x85\x08\xc4\xef9=L\x98\x9a\x9d\xa3\x19\xfcG\x9fi]\xe9\xc5 \x94\x8f@\xbd\xe11\x0e\xc7_\xd6\xbd0|\x05\xb1^\x81\x0e\xda\x9cc\xbd\x02\x141\xff\x19\xea\x158K4\xeai,mm\x82u\x91\xd7I\xaa?\xe0aNyQ\xe0\xc8\xa1\x89\xc5\x08\x86\xb4\x8a\xc5\x08n\xb7\x18Aw\x88\xd8xp /\x9f\xc06\xcdj\xbe\x9f\xa5_B\x9c\xa2\x86\xd4\xb1q\xb6\xff\x7f\xbe\x7f\xf1\xf6\x7f\x96\xe7\xffs\xf6b\x98\xeb_\xed\xd9:\xdd\n\xd5P\x1f\xc8\xb0\xdd\x93\x97/\x1f\x8b\x1b\xca0OM8\xc0G\xa9\xfe\xbd\x96M\x04\xc6c\xd87ag\x83\xa0\x15\x81\xe0{W\xd7\xcf\xceO\xff\xfc\xe21H#\xb9\xb1\xb9\xa3\xf5\x9b\xf7\xe7\xef\xce\x9f\x0c\x86 ^\x87\xb7\xa3sMG\x05\"<\x86m\x9a\xa7\xd5e[\x8e\xd9:\xa2\x90\xfc\xc4\x11\xa3\x99\x8a \x98\x97\xd5\xfe\xd1\x93\x97/\xed?\x9a\x02e\x0c\xcb`\xff\xbdGh\xfbG\x86\xf0\x996\x14\xc63\x9dX[\x80\xc61\xb1\xb6\x00\xc4\xda\x02\xb1\xb6@\xac- !\xd6\x16\xf8\x12k\x0b<\xf8\x9b\xf3\xe1\x1a\xed\xf63x\x9cf\xa0\x95`\x9e\xa0\x19\xa1\xfb\x8d\x9a\xf1\x17QB\xc0v\x0f \xb2\x8c\xdc\xda\x9b-\xf3\x94\x00p\x14\x00\xf0\x8e\xd8gU\x08L\xfd'&\xfe\xf7\x89r\x9cy\x84'\xfc\x07\xa6\xfb\x93\x92\xfd\xbd\xd3\xd3\xb8f\xb6D\x7fd\x9a\xbf\xd6\xf9\x9cI\xfe\x9e[\xbfo\x9b\x82\xdf\xd1\xe4%\xac\xdf\xa1\xe4AAI\xeb\xc7\x99\xf9\x03R\xfa\x9d\xc9_\xe8\x84\xfe_\xc3r`R\xf8\xf1\xcb@N\xdf\xe7\xfb\xcf61B\xf2\xfe\xafa%\x08\xe9\xfa\xc6\x90\x80\xe0d\xfd_\x05\xf1(\xe9\xf9\xc6h\x91\x89\xc9\xf9\xbf\x06\"\xe2\xd3\xf1\xbdc\xa1*v\x13\x13\xf1\xb1i\xf8\xe8q\xbbSo\x91\x02q\xbe\xf4{o\xf2=1\xf5\xfe3\xa1C@\xca=>\xe1\x1e\x9fn\x7f\x0cj\x84%\xda\x13\xd2\xec\x8f1h\xeb\x12\xce\x9c^\x8fM\xae'\xa5\xd6\xdf*AfK\xa9\xc7'\xd4#\xd2\xae\xd1$\xa0\x8b\xe5 \x89\xf4\xf84\xfa\xd9\xc7o]\xbfy\xd3\xe7]\xc9\xf3\xd4\xd4\xf9\xdb\xa3\xc1\x8c)\xf3.\xdd\xc8\x91.\xaf\x8d34Y\xdeK0W\xa2<>M\x1e\x97$\x8fK\x91G&\xc8c\xd2\xe3\x89\xc9\xf1\xd3S\xe3\x91\x89\xf1\xdeU\x99\x8d\x8dgM\x88\xa7\xa7\xc3\xfb\xd2\xde\xad\xd2\x1f\x9b\xf2.)iOxw\xa6\xbb{\xaf%\x98\x8b \xa0\x12\xdd\x11]\x01\xb2;\xa0\xe7\x17x\xf9\xad\x03\x04\xe7u`\xbc+NI\xfe&\xe6\x16\xdc\xce\xbcfHj\x0f\xce+\xc0\xed\xf2\x0ep\xe9\xec]\x92\xb2\x17ax\x123\x92\xe5\x81\xc0\xf6\xe07\x04t@`\x0e\xbfq\xa0\x034\xda\xe0\xf4u\xf2\x9a\xa3R\xd7\xe3\x9a\x0f\x01\xb7\x1a@A;1U\x1d\xddO\x00\x93\xcc\x95\xa4\x1e\x98~=1A\xfd\x98\x94\x99+5=\x882\x94\xd1\xce\x9b\x94>!\xab\x12\x93\x90\x8e\x14\x05X1\xf0\xc5i<\xc8$\xed/N\xe3\xc1\xce\xeb\xb65\x1e\x7f\x16%\xae\x82\x0b2\xe9\xbc\xd9e^t\xa4,J\xe4\x9e\x01\xc2\xbe\x81/\xe7\xf8\xa4\xac\xfc\xbc)\xe6\x13D\xa1/\xbd\x1c\xb9\xa4\xd8\xe5\xfc\xe2\xc4 \"\xed\xfa\x8b\x13\x81\x989\xfdJ\xc5_?qW\x886/\xc2(\xfaPhCR\xc6\xd1\xc8\x89;\xc1\x17\xfe\xd6\xc1\x8c\xa9\xe23%\x8aS\xd2\xc4\xe7K\x12\x9f7E|B\x82\xb87=\x9c\"_\xe6L\x0d\x0f:^\xb5\xc1\xce\x93\x16\xae\xa1\x0cL\n\xa7\xa7\x84\x9f\x8f\x9c\x07\x8d\xa8\x93]_'\x8e\xb7\xeb\xf1\x19\xaeOoN\x9f\x9b\x93\\K\x99\x86;\xf2\xd1\x99\xa7\x10SZ\x07\xbf\xc6\x94\xd6[NiM76\xde\xe3;)\xdd\x98\x1dr\xfc\xa8\x119\x16}&\x9c\xfc\xb4\xb6\xe5\xf04\xa7c\x88d\xf5\xb4\xd5ce>\xc8\"9\xd4\x97\x8b\x8f\x0fW\xacN\x1e.\x9a\x97\xf2\x9f\xde\xd4\xac:/\xde\x89\xce\xd4\xae\x95\x08G\x8b=^\xde&fq)\xc7\xda\x8dc4\x03\xb3\xbcw\x8dAy>\xd5\x8e\x168\x85\x02\xd8\xb4\x92\x9fC\xb9_7\xd8v\xac\xbe,6]J\x8c1\x19\xe6wnrH\xa4\xe7\x85\x18R098{U\x0ej\x80\x89\x15\x9d$2\x8e\xcbK\"\xf1\xf5\\\x14z\xca\xd6\x97\xdf<:+\xd96\xfdD\xa6\xccJ4^\xeeEk,\x9f\xb49\xaf\xa6\xae\xed\x93\xef\x7f\xcd'\xdfM;`\xd6gI\xf7\x96'b\x9e\xbb\xe4\xd3r\xc7v\xc5r}\x99\x94\xc9Z\x17+N>\xd0w\xf5\xa7e\x95^,E\xfedp\xfb\x9f\xd9r]T\xf5r\xcfJ\xc1\x91!\x88\xf8(>\xb22\xdd\xdeH\\l\xf3\xe8\xbb\xef\x1e\xfea\x0eT\x15[\xef\x1f}\xf7\xbb\xab\x87td\x1a\x97\xc8\x15j\xab\xcep\x9e\xe8dz{c\xe4\x8b\n\xbbbs\xc8\x84n`Zj!:\x9f\xc8\xabj\xbb\x81:U\x06\xcd\x03\xcdmw\x1c\x1e\xee\xe6\xf6\xbbf\xbe\\<\xba+;\x1e\xe8_\x9e\xd1Z\xb7G\xd3|\xdc\xb2\xb7U\x10\x04\n\xa5\xca\x90\x1a\x03]\xc2\xacA\x98\xf5\x06\xeby\xef\xbe\\<\x81\xf7o_>(YU\x1c\xca5\x13'\xbdT\x7f\x87\xa9ji\xc3M\x82r\xf2\xa4\x1f\xa0\xaa\xf8\xad!K\x7ff\x9b\xe1\x95h_\x16u\xb1.2X\x1d\xb6[V*\xd5m\x01\xe7\x97i\xd5\x8cY\x9aC\x1a\x05\x19\x92\x1a2\x96T\xf5\x10\x13\xbfW\xdcyp\x07Z\x81\xb2\x10\xcaG\x96T5T\xecb\xc7\xba|\xdd\xf7o_\xde\xad\x84\x96a*\xd7\xd7\xde\x9d\x86=\xf0\xa6\xdbC\x96\xdd4\xe1.\\\xfd\x17TQi\xc0|\xfe\xf7\x92\n\xd2|\xd8\xf4\x03\xef\xec\xc1EQ\\dl!\xe6\xbc:l\x17\xcf\x0f2\xf8\xe8\xc3Wr\xac\x02YW\x1c\x80Ov\x80g\x9d\xe4E\x9e\xae\x93L\xec\xf6a/\xf7\xd8\xe2bq\xc2\xc9#\"Q\xef,\xeep\xee\xce\x8b\x9a3\x15\xdb\xd7l\xf3\xd50\x11\x16\xe04\x87='X\xbaf'P3.\"\x0e\xd5ADq\xeeK\xb6.v\xfb4\xe3ci2\xbbVi\x9e\x947\xc2\xe0\xc4\xe7;\xbcE*o\xf6\xcd\xb0\x1by\xff\x80T$\xf5\x1e*\xa6\xf2\xd7\xf9\xb2\xb2Obi\x9e\xe47\x0b\xf8cq\xcd>\xb2R\x9a\xb0\xde\xbf}Y\xc1\xf5e\xba\xbe\x1c`\xe3\x088\x9b\x0d\xf9\x8c\xdf`\x18|\xb8\xac\xeb\xfd\x87\x13\xf9\xdf\xea\xc3 \x08\x83A\xf3\xeb\x89\xe0\x94u\xaf\xe8V\x13\xafz\xd8\x8f\xc8\xcdg8\xea\x83\x95\x1f\x95\xd9d\x97\xec+\xb9\xecb\xa4u\xa1\xf8\x17z\x8a%\xbf\xe4o\x8b,+\xae\xab\xc7#\xea\xff+\x9cn\xbb\xb1\x81\x8cD\xfd\x98n\xd8\xa6\x1d\xbe0PT\xd5a\xc76\xc3\n/\xf0\xaf\xfcr\xf7\xc7\xf3\xf33\xf8\xf1\xc5\xb9r\xff\xbf\x7f\xfbRn\x99\x9b\x94e\x1bH\xe0\x7f\x87\x8cw~\xb3g\x7f\xf9\xdf\xbf\x0c\x90\x81*\xe3\x94\xabU\x96G\x8a\xa0\xdf\xbe,6\x875\x83$\x97\x17\xbc\xe15\xfb_\xe1\xc9~\x9f\xa5\xeb\xa4\x99s\xc98\x8f\x14\xd7\xd2\xa2\xb4N\xd6|/\x16\xc5\xd5a\xdf\xa6r\xab\xe8x\xa3\xc9\xe6\xfd\xdb\x97\xa2_eP\xd9\xf5\xb8q#\xd91Q\xc3\xe4\xff\xff\xb1H7\x90\xe4\xe3;\x9a\xecTl\xb0\x92m\x8b\x92\x9d\xa8f\x1c[R+\xe3F\xce\xd8F\x15Y\x10\x02\xa0\xfch\x88\x91-r.`\xf2\x0b&>\x15;`\x01\xf7\xdeW\x0c>\xb2\xb2J\x8b\xbc\xa9\xa8#\xf6\xb2\xe4\x88$O.\xc6\xf3[\x95,\xb9\xe2\xbb\xb4A\xb7\xf8j\xb8\xb6\xaf\x8b\x9a=\x96\xd1\xc9\xdbC\xbe\x96\xbc\xcaG\xda\xec\xe9\xee\xe5\x82^q/\x131\x0bQ^c\\\xc9K\xb1\x03\x94\x8cKTv\xd2X\x86T\x07\xa2\x98\x87\xd0\x0bZ\x0e\x17\xa5QDj\xe2uZ_\x8e\x04\xe4\xcd\x9e-$\xaf%\xfb\xb4Z\xac\x8b\xddX\xde\xbc\x13\x9c^\xc9\xfa`\xb2\xe0\xc7`\xbf\xc2\xbdF\x17\x91\xd5*\xe4\xd6\xf8\nv\xe9\xc5e\x0d\xab\xd1\x86\x945G\xd2\xfa\x12\xd2\xdd>c\\\xd0K\xc3zS\xe3h\x0d\x15\xdb%y\x9d\xae5\x1b\x93\xe1\x8al=(\x8d%U\xc0{\x82\xbe\xe2\x9bp\xc5\x94y\xb1w\x0c\x8e\xce\xbd\xe6\x08IV\xc5G\x06mq&\x13}\x7f\xe3\xef\xfb\xc3\x93\xfc\xe6CgQJrH\xcaUZ\x97\x9c\xe9\x1dcP\xb2+\xc9\nm\xfe\x82\xb6I\x9f\xec\\\xc2\x08\x01(\xc7\xb0\x1a+\x00\xfd~\xd4\x99\xae\xb1\xc2\x99b\xbe,]\x89\x81\xb5\xb9\xcc\xd5a\xbf/JqN\xec\x93\xf5\xd5\x83C\xce\xff\xc3O\x07\xb9f\xd5\x98\xcb\x87\x87a\xb1\x85C-\xb7\xb5\xda:\x15\x17&\xc9F\xda\x89\x93\x0c.X\xceJ\x114%U\xb9J\x0d\x9c\xf7# \xdd\xc7\xf8\xe2S\xc2\x99\x0b\x1er=z}%vJ3\xb0\xa4%\\\x9a\xc3\xb3\xdf\xfev$\xa4\x7f(\n\xd8\x16\x05|\x0f\x8b\xc5\xe2\xff\x0c~\xe4\xdd%\xf9\xcd\xf0\xcfI~\xb3\xe0\x1d\xfdP\x16\xbb{\xdb\xa2\xf8j\xf8\xc1b1\x94\xc0\xe9\x16\xee\xf1f\xef\xc5\xb0\xce\x8b{\xff\xc2\xdb}\x05\x7f\x1b\xc9\x9eq\xdb\x7f\x98\xe6\xfa\xc83\xd7\xffH>&A\x93\x85\xef\xc5Y\xcf1\x12\xe7\x96V\xf7~(\x8a\xc5:K\xaa\xca85\xd95\xffT\x8e\xb8\xf7\xf9\xb0\x17m\xce\xed\xa4\xbf\xf1L\xfa\xec\xa6\xbe,\xf2\xd1\xb4e\xbf?\x14\xc5\xbd\xc5b1, \xd0N\xf9\x9e\xe1\x17\xb1\xcc\x82\x0c\x18*\xf0\x06\xa7\x92\x08\xcf_\xbc{\xf6\xf6\xf4\xec\xfc\xcd\xdb\xaf\xc6\x96\xbe\x8e\x11L\xa8%r\xd3\xf4\xbf\xf5L\xff\xc7b\xe4\xd4\xe0S\x7f\xfc=\xfc\xcb~\xb5\xf8\xa1(\xfe\xb6X,\xfe1\xfc$\xc9oN\xb8\xda\xc0\xbf\xdb\xcbC\xf3URV\x97I\xc6\x89b\x1a\xe0x\xf2\xc3~F\x9d\xa4\xdbA\x17\xef\xf3]\xd7\x89\x18\x82`6\xf1\xd5\xff\xf7=\xe4if` S\xcf\x1a\xa7\x9c\x8b{\xf3\xfa\xaa\x95\x1bJa\x13\xe9\xe0C\xa9&\xddB7m\xa9\xa5C\xa5\x9d_w\x0dG\xe6\x03~\xc7X\x88\x1f\xb8\x12q\x97\xeb\x8f\xadt\xe5\x92W\xe4\xa8]\xb2f}\xfa\xe8ZQ\x96g7JG\x1e]YZ\xf5\xa4I0\xa8\xd5-\xe9\xee\x83\xbb}di\xaeu+5r\xd6\xf0\xc9\x9dmQ,VI)\x06\xfc\xe9\xc1\xcd\xe2\xe7;r\xaeR\xe7\x1c*\xce\xa2\xbb;\xfc+.V{?\xfc\xc7\xbb7\xaf\xfb\xff\xfe\xfe\xfb\xef\xbf\x1fR\x9b\x7f\xd3\xdd\xca\xe4\xd9^\xf0\xad\xd0\x1ctRk=TL\xdd\xe4/\x0eYR\xf6\xb1\x8c\x1b\xd7\"\x02\xaf;\xa4N\x80\xedVl\xb3\xe9\x8e\xab\x93\xe6\xdc\xd3\xeer\xbd\x03d+&\xfa\xe1\xdf\xf9T?\xc8K\x8a\xee\xc4Q\x84[\xa8\xcd\xf5x\xa4\x80%\xeb+\xbe\xaf:\xf5|\x9bfl(\xa7\xd4\xee;ceU\xe4\x06\x96mn\xc9\xdb\xb4\xac\xea\xa5\xa0\xf4\xf7\xf0p\x88\xa5\xfd\x8c/\xb5\xfa\xea\x91[&\x02\x18z\xbb#f|\xe71\xdc1\xf1\xae>\x95\x85\x1c\xf3\x9d\x931\x161\xda\xd7\xc9\x8ec\xfa\xbfrh\xff\xcf\xf0\x19\x1f\xed\xe0+\xd7\x90O\xb7\x8d\xe2\xa8\xaf\xa5\\\x8b\xb4\x82k\x96e\xf7\xaf\xf2\xe2ZzA/\x93\n\x12X\x1f\xaa\xba\xd8\x8dXQg\x9a\x13\xa9\xf0\x0c8\xa9+%\xdct\xc8\x19$\xbf\x80D\xb2G\x1f\xdd\x07\xc1\xa6\x8aS.\x8b\xac\xf1Z\xf6z\x177\xfe\x86\xc3T%\x95\x86\xc1\xfa\x98\x04\xea\x96\xab@\xf8\xc3\xd5DGW=ec\xf8\xcb\xff\xfe\xe5\xab\x11\x03\x86\xaf\xae\x8e\xdc\xb4\xc0b\xba\x1c\xd1\xc3\xc5\xa3\x87\x8f\xaa;\xa3e\x03\xab\x0ek\xb2\x9f\xd9\xcd\xd8\xfc\xaf\xa2\xc5\x83\xa6 \xbc={\xd6`R\x16m\xbf\x9d.\xc0\x89\xd14\x1cZ\xeatW\xe1\xc8E8\xc2,\xc1\xe6\x12\xac-\xae@\xeb]\xc5w)\x99\xd5\xb0\xe72\xed\xcdi\xdc\x9b\xd1\xbc\xe70\xf0M2\xf1\xcdg\xe4\xf3\x99\xf9\x02\x0d}s\x9b\xfa\x1c\xc6\xbe\xb9\xcd}V\x83\xdfd\x93\xdf\x08_b4\xfa\xcdm\xf6\x9bl\xf8\x9b\xdd\xf47\xc9\xf87\xbf\xf9oF\x03\xe0\xdc&\xc0\x19\x8d\x80\x183\xe0\x8c\x86@\xbb)p\x9a1p\x84\xccd\x1cD\x9a\x07\xa7\x1a\x08G\xe8\xc6\x06\xc3`\x93\xa1%\xae\xc6q\x14[\x0d\x87\xfeS:\xd0x8\x16\\Z\xa5\xf7\xfet\\#\x98\xd9\x84h2\"\xcebF\x9c\xd9\x9086%N6&j\xb8\xea\x91aq\x9ai\xd1co\xb3\x9a\x17\x11\x06F\xa3%\x84`d4\xb7\xff\x87y\xeeA\xa6F\xec\xe4}\xe6F\xf7L\xbd&G\x92\xd1q|\xc5\x9ehx\xf4\x98\x1e]\xc6G\xb7\xf9\xd1J\x15\xac \xd2o\x84\x1c\x9b!'\x19\"Q\xa6\xc8\x10c\xa4\x99\x14^\x83\xe4l&IK\xff\x03N\x9a\xd509\xbbirf\xe3\xe4\xbc\xe6I\x87\x81rl\xa2\x1c\x1b)\xe72S\xceh\xa8\x9c\xdbT\x895V\"\xcc\x95h\x83%\xcedi0Z\x9a\x0c[x\xd3\x96\xdbp\x896]\xa2\x8c\x97\xa3\xc1\xcfi\xc0\x9c\xdd\x849\xa7\x11sN3\xe6\xb4\xf5\xf6\x9a2\xfd\xc6Le\xce\x84.\xfePY\x07\xe5\x83\x05|I?\xa5U\x93\x85#\x7fiZ\x98^\x0e\xd44s\xc3\x8b\x81\xb5\x10\xf5\xbd\x07%\xa06>\x14h\xb45\x9a-\x8d\xe6\x07\x01\xadW\x1b\\D\xc4\xe8\xe1\xbfY\x1e\xfc\x9b\xeb\xa1?\xd4\x03\x7f\x86\x87\xfd\xbcD1d\xed\xd9\xb2\x82\xa6<\xdc\x87|\xb0\x8f\xf6P\x9f\xdf\"\x8f\x08\xab\x1f\x99\xe4+\x83M^\x8d\xd3\xfa\x16\x87\xd5d\xffJ\x84'7\xa8\x9f\xdep\x11\x1bj\xbd\x8fa\xb6DK\xfclv\xf8\x18f;\xc1\xf6\x1e\xc3li\xf6\xf6\x89\xd6\xf6\x99m\xed\x13,\xeds\xdb\xd9g\xb3\xb2\xcfkc\x9f\xcd\xc2\xee\xb7\xaf\xcff]\x8fa\xb61\xccv\x8a\x8d<\x86\xd9N\xb3\x85c\"Oc\x98m\x0fb\x98-\xc40\xdb\x18fK\xb7e\xcfj\xc9\x9e\xd3\x8e\x1d\xc3lc\x98\xad\x8e\x05g\xabFX\xaac\x98m\xb8}:|u\xbd\xb6i\x9fe\xda\x1bf\xeb\xb0\xa59\xed{}\x1c\x0f\x0cH\xe0\xed\xd93L\xf8\xad\xd64\x06\xe1\x86\x98\xfdb\x10n\x0f\xe62\x01\xfa\x8c\x80\x81f\xc0\xb9\x0d\x811\x087\xdc(8\xd9,8\xbbap\x92ip~\xe3\xe0\x8c\xe6\xc1\xb9\x0d\x843\x9a\x081F\xc2\x19\xcd\x841\x08\xb7\x81@\x83b\x0c\xc2\x0d50\xc6 \\ u\x0c\xc25\xce=\xc8\x10\x89\x9d\xbc\xcf\x18\x19\x83pc\x10n\x0c\xc2\x8dA\xb81\x087\x06\xe1z\xcd\x9ah\xc3&\xca\xb4\x19\x83p\xe70rN[o\xaf\xa1\xd3o\xea\xa4\x1a;qq\x8c\xfd\xe6\xba\x9d\xb3\xd2L\x9c\x8a\x1c\xa4\xa2\xb9\x02\xab\xac\xcbJ\xb6|\xee{\x05wG\xd3\xde;k\xbd6\x12\xad\xab\xf2*a\xd4\xa9\xb9c\xf0\x95\xef\x05L\x8c\xc7(F\xd6\\\xcaw\x02.{Y\xdf0\xa4\xde\x12\xbf\xf3\xa05\x94\xfb\xa5\"\xd6X\xc1\xc0c\x98\xc0\xdd\xa6Z\xb0\xd1\x8a\xbfJ*\xb6\x90\x95\xdb\xbb\xf2\xcfm,2\x9a\x83\xb5hs\xe3\xfc\x8c7w{\x84y\x13X\x9e4\xa7|\xc9\xeaC\x99\x0b;U\x13+\xdd\xc4\xc7\xb7Q\xe8\xc2\xcat\x91\xf6\x9f)\x11\xd3\x12\xef\xf8{\xe2\xcb\xdfp\x0d\xaay\xccB>\x1e\xcd\xef\xa3W\xac\x7f\xd7\xec,\xcc\x15\xab\xd5F\x1b\xbe4\xed\x9c\xf9\x80]\xecso\x86 \xa6\x9f\x1fv\xacL\xd7\xeao\xfd\xe7\x11\xa5\xd1\xe5\x92\xe5\x8aX\x87\xbc\xb5W\xf5\xb5[\xf9\xb6t\xc6\xaa\xaa\x9b\xb54\x03\x1d*N\x9d+\xe6\"A3\xf1\x1e>\x9d\x04\xc1\xf5\xba]\xf6\x12\x81T\xb1\xb6-\x9c^\xda\x15\xfb\x9c\xd1l\x84C\xa69\x82\xa4\x8d\xa3\xfb\xc3\xe9\x162\xb6\xadU*A\x93[\xa0\xf4va\x06\x95L';\xe0\xa4X\xdd\x00K\xd6\x97\x90\xec\xf7j\xde\xbd(\xfd\xe1\xecWE\x91\xb1\xde\x9b\xf4\xf6y\xf6\x90\xf0\xd9\x8a\x15.\xc4\xd3\x08\xe2\xf9\xba4\xdf\xa4\xeb\xa4f\xdd\xc3\xb2rv\xe2\xc3\xd1\xba\xa4\xf9:;l4=\xe2XY\xbe\xd1EtQnX\xa9\xdb\x9b\xac)\x0f\xb6\x1d\xaeT\xb2w\xc5N\x89\xd9\xb1\xba\xf5CQ@U\xec\xd8\xb2=\xea\x8d*}OT\xf7\x17\xae\xaf\xd5KE\xaa\xc9Yi\x07\xd1o\x98\xaa\xad\xd4j\xaci\x0e\x17\xfc\xb4h\xde\xaeQC\x96\x95\xe5[\x19\xd2\xa0\xea\xfa\xe5\xba\xe7c\xc4\xd1B\xd4\x8e\xc6\xe9Ls\x1c0\x93\xd3\x97\xe6H]\xf2\xa6-\x19\xe5\x0bN\xba\x0e\x97\xbcE\x87MQ\xb2&%u\xf8&\xe4#\x0dX\xb1\xa7\xcd\xd8x\xb1\xf9\xa4e\xc6kA\xbcN\xaf_\x17\xa5\xfcH\\\xb7\x06\xbc+nv\xe2\xc4\xec\xcf\xaa\xdd\xc8\xfa\xa6lz\x1a\xed\xca\x92\xed\x99\xb0J?M\xca\x96d\xf6}\xd9\xa0\x11\x9c1\xdc\x92\xc3\xeb\xd2\x93\xfc\x06\xbd!\xeaQ\x08\x83\x91/\xecrq\xa6\x80\x05s\xa8\xc2w\xb3\xdf\xd1\xect1#\x9c\xcb>\xb7\xb2\xe6\x93\xd5\xb1c\x9d\x8av'2\xc2}\xecq\x1c\xb7\xc3\x9b\xcbY<\xa3\x9bx\x1e\x07\xf1<\xae\xe1\xb0\x95s\xba\x83]\x8e`a&)\xf7\xeb\xc5ER\xb3\xeb\xe4fQ\x1e\xf2:\xdd\xb1\xc5\x8b\xeeUj\x84\xb5d\xf0\x86\xb5AG\xd5\xdf\xac\x96\x1f\x0c\xdf\xaa\xde\x1a\xde\xa8n(\xe8\xc4=z\x8b\xba\x8e9-\x1a\xccc.\x92\x10n4\x1a\xa1\x8a9-a&&\x03\xb5bN\x0b\xdd %a\x82YJ!\x98\xcd8%!\xd0D\xd5\x8ef6C\x95\x84Y\xccU\x12\xe63ZI\x98\xc5t%!\xe6\xb4\x8c>\x9bf\xf8\x1a\xa1\x8b9-1\xa7%\xe6\xb4\x8c~\x889-=\x889-1\xa7%\xe6\xb4\xe8\xe8f4\x1aJ\x98\xcdt(a.\x03\xa2\x84\x98\xd3\x12sZ\xbc\xe6\xc8\x06\x8f\xdf(\xd9|\x18sZ\xfe\xa9rZ\xda\xd8\xc8\xfc\xaa\x8d\x8a|\xce\xf2b\xf7\xe6:gx\xa3f\xb2\xd9\x94\xac\x1a\x99\x15]\x11`M\x13-\x91D\xfdM\xacyq\xcd\x95x\xd8'e\x9d\xae\xb9\xd8\x81\x0d\x1f\x98\n\xeel\xb0\xae\x92,\xc9\xd7#\xa3'*\xd5D\xe0\x1b\x9b.\x0d\xf7\xa2d\xa7W\xf4\xb6~j\x0f\xf0|V\xa4]\x95\xfd\x04\xea\xe2\x8a\xe5\x8d\x14\xd4&&\xf6\x08\xbf\xbb\x88.5U\xe3\xf5\x9b\xf3\x17\x8f\x85\xdc\x96?6B2\x15w\x9d\xd3\xbcnX\xbc\xbd\x1fj|.\x8f\xb2\x1e\xb6*\xbd\xc8\x93\xfaP\xb2J\x04'\xa6\xa5\x12F\"H\x82iCH\x18m\x8b~\x03#c\xcf \x9a$\xd8U\xacIbJ!\xc7 +mN=a2\xdc\x99j\x86\xfd\xd3\x8bO\xaf\xe9\x1b\xd6E\x9b\"\xca9\x83\xa2*h[\x897\x1e\xf6-\xfe&Y\xed^\xe7\xbc\xe5\xbftd\x12\\\xa9x\xa6\x87\xef{\xf8\xbae\x91MZ\xed\xb3\xc4\x97\xefd_\x96\xa6}\x9b>\xd8\xc8\xac\xc3\xc5\x05\xab\xb8F\xd6\xecT\xbe8\xed0\xc7\xcde\xee\xcd:K\xf9\xfc\xd4\xd0\xb8\xc4\xa3\x8c\xeb\xae9=\xee\xeepE\xef\nQ\xda\xbf\x9ah\x1eu\xa1\xbb\xdfc\x17\x8f\xe1\x99@\x04O\xf8\x96RX\xaa\x9b\xdd\xaa\x08\xcf\x86\x91\xcd\xbblS\xdeW\xf37\xe5\xf9\xae.\xf9e\xba\xc8\x81}RN=1\x9a'\xe7o^}%C\x15z\x08\xd7\xba\x99\xa5\xe1\x81J\x18\xacd'\x0d\x89\xd1\x99\x84\x00\x872\x0d\x9e\xe0\xfb\xb7\xa72\xaduS\xac\x0f\"\x08\xe2^\xc1e4\x14\xdb\xed\xfd\xf5e\x92\xe6_5\x89\xc5\xad+\xa7\xb5\x0b\xf5\xd0\xa4\xb9'\x95l4\xa4\xfe\xf7\xc3\xdc_\xb7\xb6\xf3\x8e\xe5\x9b\x17\x12\x9d\x8c\xc7XK\x9b@\xa3\xa8$\x1a\x0d\xa0\xaa\x93\xfaP\xc1\xbd\xebK&\xbc\xca\xc9x\x12\x90V\xba\x06\xc0\x11\xf0\xd6\xbd\xe3\xdd>\xa0\xe7|\xb9\xb9@\xde<\x86\xf7\x95\x90n\xfd\x11\xa6\xb9\xaa\xf5\x91\xf2\x1b\x97\xfav\x10w^\nGb\x95V'\xad}\xab+\x93\xc94g\xfd\xdc\xa5;\xce`\xa0\x9b\xdbD\x875\xd2\x8d\xa6\xa6\x16Ji\x11\xed\xbf\xf9\xd1\x94\xc9\x1b\x10\x17>-\x83\xc6\xa7B)\xb9\xf60S\xbe=\x00\"\xe7^|\x14\x9f\nm\x9f\n\x1d\xcb/@\x14\x1d\xea5k\xb0\xbd={\xa6\x06i(C4\x14\x9bM\xe3P\x919\x94\x98\xa8\xdd`\x10\x84\x96U\x8f\xfe \x03\xa7\x0c\x96\x0c\xc3%M\x13\xc3\x93\xb2\x0e\xd6\x10\xb7i\xa5D\x93\x19d\xa7\x998\x8d\x8d\xcc\x0d\x87\xb3\xf7/\xbe\xc5\xec \x96s\x1clv\x1e\xcby\x0e\x8e3\x1dl\xe7:\xb8D\x99j\xe76 \x02\x84\x9bE\x8d\xc8\x0c\xbe\x94\x0el\xe6Qh'b6\x91\x82\xc7L\n\xc8\x99\xcee.\x850\x93\xa9\x11\x8f\xd37\xd3\x01\xddt\n\x13\xcd\xa7F\x84\xad\x0f\xc7bB\x85`3*\xd8M\xa9\xe0\xd8d\x12,&U\xf0o\x90\xd9L\xab\xe0U\x9df0\xb1\x02P\xcd\xac\x003\x9bZadn\x05\x17\x95\xdd\xdbr\x8a\xe9u\x80\xaa\xc7u_k\xac52\xc1\x02z\xbc\xa3%\x9ch\x8e\xed\xa10\x9adad\x96\x05\xf4X\xbd\xe6Y\x80yL\xb4`0\xd3\x02z\x98#\x16\x98l\xb2\x1d\xe0\x13\xb9f\xebat\x1c\xdet\x0b>\xf3-\x0cM\xb8\x10>\xf9\x99\xcc\xb9\x803\xe9\x82\xcf\xac\x0bF\xd3.L\x9a\xdf$3\xef\x00]]\xd8L\xbd\x00!\xe6^\xf0\x13\xc4.\x0f\xe8\xa6_0\x99\x7f\x9dj\xb8Q=v*\xe3\xfd\xd6\x0f\xb4\xe6\xc4K[\x17\xa6D\xb7u\xc9\x93\xa6\x10\x8d\x87\xba\xf9\xbc\xf6\xaeQ\xf0\\\x1f\x8b?H`\xa6@: \xa3\xebj\x7f,\xb7\xa4\xf1\x9b-z\x9ef>\xd59\xf8z;\xc24\xe5\x96;B\xd6\xdczG\x7f\xc7]~%\xb8\xa6>9PO\xc3\xa6\x82\xf6\xb4?N\x8e\xdd\xd37C\x13\xc7g\xe2JW8\x9f\xf6\xbdS\x1eFSg4u~\x19\xa6N\xc3\xf1\xa5q\xa4V\x87Th#\xbd\x16=\x1b\x96,z\x8b~G\xc0r\x8eV\x93M\\G>G\xad\xc60\xa7\xeag1\x88\xb9n\xeb\xce\xe0'\xe3!\xe9>&\x1d\x07\xa5\xf7\xee\xef?\xf9\xd4W3\x1a\xc8<&2\xb7\x91\xcco&\xf3\x1b\xca\xb0\xb3\x9e\xd3X6\x9f\xb9\x0cm0\x0b5\x99\x85\x18\xcd|#E\x99\xcd\xa6\x18\xce\x9c\xa63\x9f\xf1\xcci>Cl\xa2YMh\xbeC\x19\xe62\xa3\x85\x18\xd2\x8e`J3\x19\xd3&)\xeb3\x9a\xd4\x1cF5\x8bY\x0d?r\xc3\xc2\xce`\\\xf3\x9b\xd7L\x066\xfc\xa8QF\xb6\xf9\xcclfC\x1b~\xb8\x06\xf6\x087\xb7\x8dP\xf5\"&M\x067\x9a\xc9\x0dat3\x98\xdd&\x91bF\xe3\x1b\xda\xfc\xe6\xb57\x81\xd5\x047u\xaes\x1a\xe2|\xa6\xb8Pc\x1c\x82<.)\x12f\x923\x1a\xe5F]iDUZyW|D\xd8)\x84\xb8\xd1\xc2\xe9\x84\xe4o\x82\x86Jv\x91V5+\xf5\xba\xc6\xbc\xcb\x18J\x14\xef\xd7_\xe2\xfdzt\xad%\x9a\xa6\xab@\xdb\xf4Lo\xf3\x11v\x849\xf8\x14\x1c\xba\xf5/\x1f\xfda\x89\xbe\xee\xda\x8d#\xb0\x01q\x94\xcc\x19\x89\x0d\xed\xedz\x18\x8d\x0d\xe6\x88l\xf0\x0ep\x86\xc8l\x98;:\x1b\xcc\x11\xda0=J{\xc8_B\x8c\x8e#\xb5!4Z{\x80c\x18\xbbm\x8e\xd8\x06\xb1H\xae\xa8m\xb0\xf2\xa0\xb6\xb8A\xd1\xdbN\xb15xq\xb1\x8fy,\xb3\xdaG\x07?=\xe0}\xf4\xa5\x88\x18\x81SF\xf5\x98\x8e,\xa8b>\x07I\x8a\x98%\xc8HzD\xe5**W\x9f\xabr\xf5wMJ\x19d\x87\xc7y\xd1\xb5h=\x16\x12\x9f\xf1>\xf5{\xa7\xe0\xda7\x1b'\xa6\xba\x98\xb6V\xb03\xbc\x8fd\x8a\x1f\xfc\x88\xa9.\x95Z\xfa\x98\xf4\xa2A\x14\xa6\xc31|\xd6\xc2TW\xf9\xac\xf2L\xe3K\xfda\xca.\xcec\xdb\x86q(mP\x0d\xb4\x0b\xfa\xb8[\x19v\xce\x14\x9f\xf1\xbb\xc3~\x9f\xdd\xbc\xd9\x92%\xefP\xca\x11v\x92A\x9cZ8&&\xcc\x98\xb8l\xb0d\x98\x8c\x19\xd5\x86\x962s\xcew\x8blJ\xe6\x8fJ4\x8b\xe7\xf2\xe7w.7\x92V.P{\x1e\xcb\x7f5\x0e#q\xfe6\x0d\xbc\xc7\xafF\x9d\x80\xb3\xb8\xd7\xda\xe3\x98!\xc8\x98xZ\xc7\xd3\x1a\x0c\x03\xb5\xc95\x8c\x10\xed5k\xb0\x8dl\xc9\x16i\xda\xbbe\xa1\x05\xe8@\xb8\x19V\x89Z\xa1\xa0e\xdf\x89\x16\x91\xce\n\"\xd1i\xe6\x8fv\xfa\x15k\xa7\xcf\x05\xe6\x8c\xf36\xab\x1e\xbdO\xcc\xb3\x9e(\xb6\xe7\x13\xd8\x18Q\xdd'c\xcd\xf2\x0d+wi^\xb7\x14}\xf2\xf4\xd9\xa9`J\xf2\xb9L|\xb6\xaa\xdd\xf7Yq\xe1\\\x944\xdf\x16\x9e\x0f6\xec\x93\xf3\x0bs\xc7Ao\xf8\x07>1\xbb/\x8bb\xbb,\xf6a\x9e\x1b\xad\x1dXt\x1e\x98\xd9a#\x9a\x8d\xfe\xea\x90\xea0\xa4)\xb2\x8d\xf3\xc9\x11\x00=9\xba\x83p\x9c>\xef\xd0\x19_\xac7\xfbnK\xe7\xc0\xc9\xd4\x04Y\xa9Ge\xd6I\xb6\x16\xfe\x8d\xfc\x02^\xb1\xf2*cP\x16E=\x0el\xe3;[8\x08\xd7\xc5aX\x9c\x1ad\x88I\xf7P\x89z\xc1H:\xe5Et&\xab*\xb6\xe6\xbf $\xbd\x92\xf1#L9K/.W\xc5\xa1\x14\xed\x8a\x8d\xe1\x19\x99\xcb\xa4\xba4f5\x88\x07{D\x1cL\xdd\xd4\xedN`s\x90\xef#\xb5\xf1>\x8a2B\x9a\xc8\x0f\x9b\xd3q\x84\xd0\xf4\xda\xd8y'o\xda\xdf\xeczP\xd3\x99\xb0\xec4\x04\x16\xdbHu\xc9E[\xdd\x8bVS\xdf\xebW,\xca\xbc*\xc3\xc4t\x07\xd5x\x06\x97\x9c\xe6\xae3\x03,\xe2\x87\xcb\xcbj\x9f\x8ckCx\xcf\x9b\x91\x8c6\xfb\x804\x03\x80\xf8\xa9m(L\x05\x0d6\xdd\xd6\x8a\xa3\x97\xeaX\"s\x11M'\x98\xe7\xf0y\x9a\x15\xeb+\xf4\x81s\xc9\x92\x0d\x1b=\xa5\x88\x12\xa8\xcd\x9bW\x03\xa1*5:\x19F\xb3\xe2C\x11g\x8f\xfe\x8dM\x96\xda%\xe9\xaa\x9bT\x1f\x9c\xe2\xcb\xa1 \x03$\xfb\xfd|\xe8\xdc\xb2\xf0\x19_\xe4\xbc:T\xb0N\xf6R\xb1\x90\xb78\xf5\xe7\xf2\x905!\xb1\xfb\xb2X\xb3\xaa\x92e\xf8\x15\xf5\x06\xe8x[\xf1\x93\x88L;\x19\n\x884_g\x07Y\xc8\x9f\xdfG\xda\x0f\xa5\xe0k\xd9\xb9j\x9f\xec\x90\xbd\x1b_yL\xba\xa7\xdd\xee\x8e\xdc\xf2\\\xf1dP\x97I^\xc9\x9a\xff\xbbd}\x99\xe6\xdaKS\xa2\xe7ejt\xf8\x8e\xc8<\x14\x02\x8eO\xed\xc1\xedu\x8a\xce\x9aV(6I\xcd\xee\xf3v\xbd_\xc5\xcb\x13\x82x\x96\xd1\x93\xb8\xd7\x14\xc3\x87\xe46\xc3\xc9\xbbO\xcazY\xb1z9\xdc\xbb\n\x1c\xba\x8a/\x87\xc2p\x01m\x7f2*\xa3}\xf0%\x1c\x98\xc9\x00>R\x80O\xb9id\xceYR\xd6\x15\xab\xff(\xa8\xf2\x1b\xc3\x07B2\x9e>\x1f.\xf3\xba\xd8\xed\xd2\x9a\x92\xebl\x1dM\xd3\x11G%\xf7\x94\xdc\xc3|\xeb\xf5\xbe\xe3\xff\x9c\xa1;\xf1<\\R\x17e5\x03\xb2\xe1\xd8\xb7\xa5\x08\xb1f\\\x06@q\xa8\xf7\x87\xba\xfb\xdb\xbed\x1f\xe5\xd4z\x18\x84\xb5e\xd61\xb5\x12r\x06\\\xc9~?\x03\x16\xc1/\x8d\xb1d\x06t\xecc\xbaa\xf9\x9a\xcd\x80\xaa]\xbf\xeeX\x19\x9c\xbb|\xe3\x17\x15+\x97\xc6Tik\x7f\xee\xb3m\x88T\x19j\x8a2\xbdH\xf3\xa49\x80\xda\xcfT\xc6\xeaI3\x8dz\xa4\xf3\x8awm\x9e\xb2\xf5\xe57\x8f\x9a\xd1\x8c\"\xa5N\xf3\x9eB\xd4\xc4-)5\xeb\x03'K\xf5\xe1\x04V\x87Z\xd92\xdf=\xff\xd3 \\\x8b\x03\xf7#+k\x18\xe5c \xa3\x8a\xd6\xe7\xb0K\x11\n\xc5\xea\x9a\x95\xf0\xfe\xbf-j\xb7\x94;\x9a\x16\xd9)\x8f\xc27\xdf\x8d\xba!\x8b\x14\xe0\n_p\x01\xab\xfa\xd3\xf4\x9b\xadQ\xf6\xe2\xec\xae#\xa68\xffT\xc9 ke\x12\x15z\x84\xbckH\xad\xe1\xdf%\x01\x16\x7f\x14G\xfeo\x1f\x8e\xd6X\x9as\xc4\xc3\xc6Y\xc6'\x08\xad\xf9T\x88\x98\x05\xc0\x7f\xb1\xbb%\x83\xbf\x1e\xaa\x1a\x92\x8b\x921\xae\xf2\x18\x1f\x95\x95ie\xe2\xf1\xa6Q?BG\xdf\xb1$oF,\x87\xf5d\xbf\x17A\xf2\x9b\x82\xc9GP\xa5R%b\xff*\xc6\x873\xb2\xd7?\x97w\xd3^\x92v\xc5d\x1e\x11W\x90\x92\xe6\xf5\xc8\x06O\x1b!\xd8\x97\xa1J\x18\x04\xb1\xc0\xb81\x84\xf1\x01\xd9\xc2\xd1^k\x96\x1f\x8b\x9a-\xcd\x03\x91\xe0\xd4K|\x9a \x80\xc0o\xb4b\x80\x1f9 :\x00\x85\xc6\xfa+BS\x91\xc0\xf2\x83%\x15U\xc1}xw\xfa\xe3\xeb\x17\xcf\x97\xaf\xde\xfd\xb8<\xff\x9f\xb3\x17\xcb\xf7\xaf\xff\xf4\xfa\xcd\x7f\xbd&\xb6:{\xfb\xe2\xcfo\xce_\xd0[={\xf3\xea\xd5\xe99\xb9\xdd\x9b\xb37\xef\x9e\xbct4k\x02>\x1f\x07\xcc\xcfgS\xea\xc3\xbb\xf4\"g\x9bW\xd5\xc5y{\xc3\xae\x9b\xf7c+\xf1S\xff\xd1H\xf3K\xd3\x1d\xb4\x87\xa6\xe1\x99M\x0d\xac\xf4\x7f\x0c\x7f.j\xc3S\xe9\xde\xd6\x92\x9e\x8f\xe1L\x1c\x91IfGa\xba\x1f\xe9\x80dN\x9f\x9e.\xa1,\x0e\xb91f\\\x81\xffB \xa1\xd7\xdd7\x8f\xac\xdf\x99/[: \xf68 \xf798\xef#\x1d I\n\xbe;J\x1f\xbc\x178\x1d\x90\xb3\x06\xc2\xcc\x01\x9cW\xbd\xc1\x87\xc8uV\x80c/\x05\x98E\x00\xdaB\x00e1\x10\xd7G\xe3\xe7\xe3\xcb\xe4\xf0\xb3\x1d\xab\xeadg03\xf5>\xc2M\xcae\xa9\xd0\xa1\xbd\x7f\x99\xb5|\x1d\x88\xbd;I\xd9u<\xf0$\x8d\x01\xcbO8\xb9\xd1\xba\xeb\xfc]\xce1S\xec\x11\xc5O\x03=\xfb\x90_\x9a\x8b\x9a\x9d\xf0\xff\x91&\x87\x13(J\x90\xff+\x94\x1b+2q\xf1\xee\xae\xd6|\x9c\xf6s\xaaw\x96\x99~\x16Z\xd4*jQQ\x8b\x82\xa8E\x19\x01\xc9\x9c\xb8c.jQ\x80')\xe0d\xb0\x84\xa8E\xf5\x00\xb3\x08@[\x08\xa0,F\xd4\xa2\xb0\xbdG-\x8apD}\xb6Z\x94\xd8\xf6\xcb\x8fE\x9d\xe6\x17KQ\x0c\xcb\xadQ9\x89\xe6\xdf\xea\x1d_\x1c\xbf/\xef\x96#\xf4\xe2\xdaj\x18\x1ex\xae\x8c\x8b\x9c\x11^4\xa6\xc5\xce\xcc\xaa\x8c\x8d\xd2\xbc\xde\x12\xc9\x88\xaaQg\xea\xeb\x82\xb7\xdff\xe9Z\x04\x1dq\x8e1\xacq\xc6\x95\x84\xa5\xac\xe3\xb1L\xea:Y_\x1d\xd3\xb4\xd9\x1b\xd1\xd2\x12\xea \x01q\x8a\xf9\xfa\x82\x96\x18\x88\x93\x13\xd1\x1f \xfb\x04C\xb4\x89\x19\x90\x9d\x02\xa1c\xb0\xc5\xab\x98\x01\x13\xc5bi\x89\x1f;\x10\xc7\x0f\xf68\x183 6\xea\x10\xd4\xc65\xc6\xcc\x98\xc1\x18Ic\x86\xdb\x18\x10F\xac\x0c\x01\x1f\xa1\x83Bg\x8c\xe2\xf1\xc5\xed\x98\x81\x12\xcd\x83B8\x8c\xf8q\xc7\xf8\x98\x01\x13\xf9c\x06s<\x90\x19H\xcc\xe2\xbf\xd5) \xa1\xc5\x9c\x97}\x18G\x1fY\xbe\x0b\x1b\x84_sU\xe0\x88_2\xc3\x91\xe5\x16\xf6~\x02t\xe2\x00N\xe5\xd4\x81xyT@\xa4\x12\x04P\n(\x97J\x05\xd8\xcb\xc0\x10h\xdc\xad\x80\xb2\x98\x10\xb6\xa0\x10\xb2\xa8\xe4K\xe8\xa0\x99\xef2\xaa\xc0\x1d5f\x06\"\x0d\x88s\xc7\xc5\x9d\x99\xc1\x12\x8df\x86cN\xc3\x19;f\x86c\x0e\xc7\x9eFg\x06l\xe0\x1c\n\xd90\xb8\xce\x0c\xfe\x90;3\x1c\x93l\xae\xa0=3\x1cs4\xe6\xb0?3\x1cs\x1c\x9e\xc0A3\x1cs@\x8e\xd0C3\x1cs0\xfe\xe0E3\xb8C\x1a\xcdp\xbcy\x10\xa3\x01M!\x80f\x90G\x8dor\x04\xdd\x84\xa2\x93|&\x9a\xb5\xd7\x8f\xa2\x80\xaa\n\xe1\xec\xa3\n\xa2Jm\x85\xa8R\x0b\xa0\xb1\xb5\x02\xcabB\xd8\x82B\xc8\xa2\xde\x96J\xdd%]c\xa8 go\x7f\xc6@\x07\xe7\xa3\x06:\x90\x99\x91\xce\x8aJ\x82,\xb7Yb\xa8\xa5n\x83\xa0\x05\xf7\xc7O\xe8p\x1f\x9e\xbe|\xf3\xecO\xcb\xd3\xe7\xcb\x1f^>\xf9\x11\x11k0\x84!\x86'O\xdf\xbdx\xed\x0e\x8f\xd0a\x88\x00\x11_\xa1\xc3\x10\xc1\xebSW\x98\x85\x0em\xd0\xc542\xd0\xee\x0d\x12\xe4F\xd9\xfc\x90%\x17\xbdw\x0fd\xd1\x82\xa7\xd9\xba\xb8:}\xee\x8d\xbf\xd0\xa1\xddR\x90\xe2M\x97D\xdf\xa7\x0eA<\x1a$\x92\x10Na\x1d&\x0d\x0dov\x93\x80r\xa6\xea0i|h\xd2\x85\xd8\xc6\x01\x9e \xf5\xf3]z!\xe3\x83\xf89\xaf\x8c\xc7\xc2?\xab\x92\x1a\x90\xe8\xd2\x1c\x92\x06\xa7\xcf`L\x1d\xaf\xc4\xaa\xa7a\xb4>B\x91\xdf\xa1\xd4\xee\xeb\xc4\x13d\xd4\xaa\xdd\xcd+\x08\x89\xca\xe7\xe8\xae\xdb\xf6\xd1w{\xa8b\x88P#\xefy\x83=e\xba\xb1\xf98\x0f\x7f\x82\"OO\xe4L$`\xe7#\x81$\x87\xc8\x1b\x89\xb8\x89\xf6\x87\xd5\xb8p\x95\x0dHD\x012a8\xb0\xcd\xa3\xef\xbe{\xf8\x07\xec\xe7\x01\x04\x02:\x91@\x94\x1dZ\xef\x1f}\xf7\xbb\xab\x87\x9f\xdb\xd0\xa8\xa7\xf3\xd9a\x95\xa5\xeb?\xb1\x1b\xed2\x7f\xc5n\xfa\xe5\xb2\xf0\xe7\xeb\xa1b\xb2\xac\xd1\x9f\xdb\xcd\x8ah\x89\x894\xd1\x81LL\xea\xc5\xa55\xbe\xec\xcb\xb4(\xd3\x9a\xb4'\x8e2.5\"\xdf@\x08\xdb\x92\xb2! r\x8aH\x04\x12\x8f\x13$\x14\x81\x10@$\x06\xd0e\x13\x91(@%\x0c\x84H\xa5\xe3\x0f\x8a&\x8f\xb0\xd2\x88\xcb\x19\x14B\xaa,\xa2J\"\"\x01\xf1\xbb\x1dBe\xd0\xd1F\x84\x0f\nl[\xe0\x87\xe2\x1f\x06\xd7W\x8b|\xe96\xd8\"z\xf4\xf7\xb4\xba\xf99\xc9\xeb4gK\xbf\xc6\xe9\xd74=\x1a&JH\xe1D\x13JB#($\x01\xb9\xcfQ\xf2\x185I@O\x14(\xd2\x17=a\xc0O\x1ah\xb2\xf68C\xc0JV\x8aL5?\x8f\xa9\x03J\x9a\xe2\xc5\x04\x9a8\xfe\x8d+\x81(5g\xec\x1f/!\x11\x9d\"\xba\xf3\x19\x8a\x08\xbdL\x0de~\xc9\xa5\xf23\x11P\xfcD\xc4\x13\xfb\xc2\x99\xa5\xbd\xc1\x88\xab\x17\xc4\x9e\xd45\xdb\xedE(s]\xc0.\xad2\x96l\xc4\xbb\xbb\x17\x97u\xf3\x10\xa12T\xf4\xe2V:\x82\x18%\x8fY\xca\xccR\xa0\xcb\xe0\xc8\x938L\xae\x16\x9bs.V\xe6\xd2~\xb2\xd2O\x81o\xab|~\x95\xb9l\x0e!\x9b:1gI\x13\xaf\x8b\xc6C\x14\xbb\xdb\x85\xe2`!\xb8R\x08N\x13\x9c{\x84\xec\x08\xd1\xd6\xd1\xeb\xc5\xf0\xfb&P^\x08\xcf2x8\xd3q4 \x11\xdb\x8f\x04\xa7\x07\x00\x89\xdd0l\xed\x9c\xc1\x9a\xe5\xcd\x06w\xfb\x91E2\xa2\x9b\x8d\xe4=lCs\xb9\xb9\x18\xebS\x19$_AW\xcfT\x90I\xfep\"/\xa9| MX\xcd~PO\xacA#k~7u\xbed}\xff\x95^J\xcc[=\xf5GV\x8b>\x9f\xde\xc8\xdaT\xe4\n\xde\xe3\xa3\x89r\xc2N\xae\x03\xe7<\x82\x02\x0eH\xcb\xb1\xe3>r\\\xc7\xcd\x9c'\xae\xf3x1\x1e-\x83\xfc\x99\xe6\x9b\xbb\xfd\xb7B\xf7\x19K*&t\xfd\x0f\xd5\xe6JF\xd1\x7f\x804\xafj\x96l\xee\x06-\xeb\xe0\x02\xae\xc3\x8a\xd6\x99[b\n\xd7Y[\"\x83\xab\x83\n\xd8\xc1\xb4\"v\x80\x12c:\xccZ\xcc\x0e(\x05\xed`rQ;\x1b\x06|a;@'k\x11\x18\x1a\xa3\xd5K@%h\xe1\xae\x12\x12l\xbe\x9f1`\x93\xb2\x90\xb2\x03\x08\xf2\x03\xbc\xb7\x9a\x0e\x08d\x07\xdf ?\x04\xd4UQ\x07\x025\x80H\x11\x0e\xa4\x84+\n_(\xc0\xb3\xa6\x02\xecB\x01}\xb1\x80\xba`\xc8\x8b\xaa\xb1 &\xa9\xca\xeb\xfan?\xc4O\xd4gc\xd1\x01\xe5\xc2\xe9C\xc0H\xbc\xa4&\x14\xd4\x03\"\x1f\xe2\xe5\x13:\x1fd~\nP\x8e\xd0Y\x8b\xedq \x15\xdc\x03\x7f\xd1=\xf0\x96/\x06\xbc\\\xc3\xca\xb3\xa8!F\x0d\xd1\x0eQC\xc4\x1f\xc3QC\xf4\x01\x81\xec\x80?\x03$D\x0d\x11\x01\xd8\x85\x02\xfab\x01u\xc1\xa2\x868\x82\x80\x91xI\x1d5D\xfc\x11\xfaEh\x88\xf8\x18c\xc0\x13\x14'J\x90e\x9aa\xee~Q[\x99\xd8\xa3o\x0bc\xf9f\xc6\x12\xce@.\xe3\x0c\x01\xa5\x9c\x01w\xf2aN;tYg\xc0\xf5 \xc8~\x81R\xe2\x19\xf0}\x03\xa1\x7f@\x97{\x06\xda\x00\x808\x08\xa0\x95~\x06\xc0\xc7S\x99\x818\x17\x08\x98\x0fPKA\x03^\x00\x0cA \x04t\x05f \x84\xb2\xd0p\xcb\x83\xc3\x8a\xae!\xe0b\xc5\xd0\xe8\xac\x0f\xbe\xa3n\x9e\n<\x91ff\xc0\xc6\x9f\xa1\x11\x9a\xe2\xd4\xfcQif\xc0\xc6\xaa\x99\x81Rb\x1aB\x18\x0fw\x83V@F\x8f=\xf3\xfb\x80-;\x0d\xd3\x06\xe4S t \x97\xa0\x86\xdb\x93\x9d\x94{\x1e\x84\x11\x0d\xf0*\xb8\x0e\x01\x17u\x05\x01\xd4\x83@\n\x02\xf5\x02\xaf\x80r\x81\x1a\x02}g(\xa0.8\x84/:\x84.|\xd0\x85_\x01\xe1\xe2\xaf\xc0\x1f\xe7h\x86\x00\xba\x04\xd0\x03\x1f)i\x06RYk\xb8\xa5iy\xa3\x1b\xcdp\x1bC\xc3\xa7Kw\x80\x0d\xf7D#\xb4E\xd5\x8f\x01\x17,j\x86\xdb \xa7/\xdc\xd4\x0c\xb712JIl\xb8\xa51!B^\xcdp\x1b\x83#\x97\xca\x86[\x1a\x18.\xec\xd6\x0c\xfe`\\3\x1c\x7f^!\xb73d\xd4/\n\x17\xa6\"7\xa0\xabr\x03]-\xa3\xaac\x9f\xe1\x85\x04\xe5\xeaS\x10\xa2\x11\xe2M\xeb\n\xe2M\x84\xb0\x07%\xc4\x9b\x88\x15\xe8[B\x01u\xc1!|\xd1!t\xe1o\xfb&B\xab\xfe\x0d-E0\xf5K\x15 \xeb\x98*\x08b\xe00\xf6\xf5\x96\x9b\xb0C0c\xe0\xc2\x90t\xa0\x14\xaf\xb0\x03\xa1\xac\x85\x1d\x08\x05/\xec\x80+\x85a\x07r\x91\x0c;\xd0\xaf^\x12\x90\xf56\x88X\xbd\xd59\xec@v\xe9\xeb\x10\xcc\xcf\xc1b\x0e\xe18\x1d\xc3\xe4a\xd2,\xa9\x12\xd01\x02:L\x1e+\x89\xa4!\xca\xbb\x04l9\x13\x02JB\xa5q\x08\x1c;\xbaX\n\n\x9b\xb5\xa0\n\xaa\xea8P*\x8f\x03\xed\x8c\xa3\x9cl\xfe\x9a\x90}\xa0\x9d\xe4\x84S\x9c0; \x949J \xcb\xb8\xa0\xcd\x18\xb0\x11Q5'\xfb@&\x16\x04\x11\x0c(u)\xfb\x10D8\x08#\x1e\xd0jW\xf6\xe1v\x87\x19\xa25`k]\x12P\x86U4\x07R\x0d\xcc>\x04\x119\xe4\xc2\xb6\xa7\xd5\xc9\xec\xc3-\x8cq\x8f\xacv\x0e\xf4\xedM\xdd\xd8D9\x18@\x1c\xf2\xfe J@\"\x81 \x80H\x10&\xfb\x02\x88\x05!\x04\x83P\xa9w{\x03\xa4\xcb\xbb\xd9\xa5]\xa8\xac\x0b\x91t\x01\x84\xa5I\x10\x98\"\xe3\x8e>:Z\x1co\xdb\x8a6,\xdc\x90P\x95\xd5\x01\xdf;\xaeWJ\x95u@k\xd2\x08\x0d\x1a-\x0c\xf1\"\x10}B )(\x81 C\xd0\xe7\x01z\xf2@\"\x00P\xa5?\x89\x10@#\x06\xd0e\xfdq\x87C\x91\xecX\x99\x8e|\x01\x83&\xcdi\xe2\x88D4\x9cP\x90\x10 \xb5\x8f0\x16\x9a\x84F\x0e\x00\xd95\xc6pG\xec\xd1g\x94\xc3\xda\x87\xe6\xac\xf4\x0e\xe1\xd5\xde\xc1V\xf1\x1d\\R\xce.\xd1f\xaf\xf2hq\x12K|\x88\xd2\xb2#\xc7o,\xefh\x84X\xdeQ\x03\x97\xb3\xd1\xa5B\x1d\xab\xd2\x16\xca\xfd\x87 \x9e\xdb\xa5Gu\xde\x11\xddtD\x87\x1c\xde\xf5\x16\xe4d\x9b\xbb\x1a=P<[\x88\xa5Bp\xf9\xed<\\\x82\xf0*\x11z\xb2Lg\xc6\xaa\xf5#t\xa3c\x18\xed\x90\xb18[\x06\xe8\x8c\xae\x97\xb6*xG3UH\xfc]\x9a\xafE@^\xb5+\xaa\xfb\xd5\xe6\n\xbe^|\xfb\xfbX4|\x04^\xb6RL\x15\x8b\x86w_\xe1\x92\xb6b\xd1\xf0\xfe_1\xe8b\xd1\xf0!\xf8\x94\x96\xa8U\x9aX%\x16\x0d\x1f\xfeH\x98\x977\x8b$\x16\x0dw`DdP\x84\xa2\xfe\x92\x8b\x86\xfb\xcf\xf2a\x07\xe2\x15\xa2K\x06E\x99^\xa4y\xd2\x1c\xb4\xedg\xca\x92}b@%'\xcb\xb5\xc9\x84\xeb\xb6O\xf5\xa7\x87\x0c\x0dNs8g\xea \xa2\x13\xa8/y\xdfMe\xb2\x0f\x9cd\xd5\x87\x13X\x1dj\xa5 \xbc{\xfe\xa7\x13\xb86\x89\xb0\xe6\xcd#Hk\xa8\x8ba\xdf\xa6\xae\xb9n\xb2bu\xcdJx\xff\xdf\x0e\x05\xdb\x9fY\xd1\xcd \x96V\x87XZ=\x96V\xf7\xe9N\xb1\xb4\xba\xfe\x8dO{\x93\x80\x8bX\x8f\x853q\xf3\xf5\x8b1\x1db\xe1L\xbf\xf3\x1fh\x0c\x8d\xb9\xfbH@e\xd3\xe1.\\\x12\\N\x14\x1d\xb0YsH\xd9\x01\x04\xf9\x01\xde\xbb_\x07\x04\xb2\x83\xef\x84\x1f\x02\xeaB\xad\x03\x81\x1a@\xa4\x08\x07R\xb6\x1b\x85/\x14\xe0YS\x01v\xa1\x80\xbeX@]0\xe4u\xde\xd8\x04\x93\xb5\xe65\xce\xb7\x1f\xe2'\xea\xb3D\xe9\x80\xf6E(\x08\x18\x89\x97\xd4\xb1p&\xfe\x08\xfd\"\ng\xc6\xd2\xea\xd4\x96QC\xec j\x88QCt\x01Rv\x00A~\x00A\xf1 \x90\x1d\xf0g\x80\x84\xa8!\"\x00\xbbP@_,\xa0.X\xd4\x10G\x100\x12/\xa9\xa3\x86\x88?B\xbf\x08\x0d\xf1\x17\x0c\xf8\x8d\xa5\xd5\xc7\x10K\xab\xc7\xd2\xea\xbe\xefH\x03\x00\xe2 \x96V\x97\x80\x14\x00CP\x02\x81T\xbd<\x96V\xf7C,\xadn\x06lD\x9f\x19biu7L\x18\x90O%\xd0!\x96V\xc7\xaa\xe0:\x04\\\xd4\x15\x04P\x0f\x02)\x08\xd4\x0b\xbc\x02\xca\x05j\x08\xf4\x9d\xa1\x80\xba\xe0\x10\xbe\xe8\x10\xba\xf0A\x17~\x05\x84\x8b\xbf\x02\x7f4\xa8\x19\x02\xe8\x12@\x0f|<\xa9\x19biu\xda\xd0h\xf9\xcd\x12\xb0A\xb1h\x84\xf8*d\xb8\x90Z3\xdc\x069}A\xb9f\xb8\x8d\x91\xc5\xd2\xea\xc4\xc1\xc5\xd2\xea=8\xfe\xbcBng\xfe\x00`\xbcd\x89\xa5\xd5\x87@W\xbbP\xae>\x05!\x1a!\xde\xb4\xae \xdeD\x08{PB\xbc\x89X\x81\xbe%\x14P\x17\x1c\xc2\x17\x1dB\x17\xfe\xb6o\"\xb1\xb4\xba\xb7\xb6\x82\x19\x82\x19\x03\x17\x86\xa4\x03\xb5:\x83\x19\x885\x1b\xcc@\xac\xe4`\x06|}\x073\x04U}0\x03\xfd\xea%\x01Y<\x82\x88\x15Uj\xc2\x0cd\x97\xbe\x0e\xc1\xfc\x1c,\xe6\x10\x8e\xd31L\x1e&\xcd\x92*\x01\x1d#\xa0\xc3\xe4\xb1\x92H\x1a\xa2\xbcK\xc0\xd6\xdc \xa0\x8c\xa5\xd5]\x9f\x92\xce8\xca\xc9\x86+\x04\xa9\x80v\x92\x13Nq\xc2\xec$P\xe6(\x81,\xe3\x826c\xc0FD\x17\x92T@&\x16\x04\x11\x0c\xa8\x05&\x15\x04\x11\x0e\xc2\x88\x07\xf4\xc2\x93\nnw\x98!Z\x03\xb60%\x01eh\xb9aj\xa1J\x05AD\x0e\xb9\xb0\xed\xe9\x05,\x15\xdc\xc2\x18\xf7\xb1\xb4\xba\x03\x88\x12\x90H \x08 \x12\x84\xc9\xbe\x00bA\x08\xc1 T\xea\xdd\xde\x00\xe9\xf2nvi\x17*\xebB$]\x00ai\x12\x04\xa6\xc8\xb8\xa3\x8f\x8e\x16\xc7\xdb\xb6\xa2\x0d\x0b7\xa4XZ\xdd\x0cx\x11\x88>!\x90\x14\x94@\x90!\xe8\xf3\x00=y \x11\x00\xa8\xd2\x9fD\x08\xa0\x11\x03\xe8\xb2\xfe\xb8\xc3\xa1Hv\xacL\x8f\xa5\xd558\xc2Xh\x12\x1a9\x00d\xd7\x18\xc3\x1d\xb1G\x9fQ\x0ek\x1f\x8a\xa5\xd5;p\xadf,\xad\x8ep\xafz\x8f#\xff\x11\x14\x8b`j\x10K\xabc\xbcTD7\x1d\xd1!\x87w\xbd\x059\xd9biu\xf4\xb1\xe6\xf5*\x11z\xb2L\xe7WWZ}0\x86\xbf\xf7\xc7\xf0T\xe6\xf0TP\xb3\xb6\xe2$'\xa1\xfc\xe1D\xaa\x9b|PM\xc8\xda~P\xb2\xb3\x87j\x9b\xb2l\xa3\x8af\xb2\x0d?\xf1Wz\xb5\xce\xd1PZr\xfc\xc8j\xd1\xe1\xd3\x1bY\xbf\xf1-\xab\xf6E^1U8\xb4T\xff\x16c\xe3\xdar\xe7&\xfe\xcf\x03+o\x1e\x0c1\xa8\xfc\x9d\xb7g\xcf`\xc7\xea\xcbb\xc3\xfb\x975\xe4\x17\xab\xa4b\x8bn\xc6\x8b\x8f\x0fW\xacN\x1e.~d\xf5K\xbe\xe9$*5\x08\xc9j#\xb19\x16\x94\xe3\x03\xdd(k\xcd\x12v|\x1aYY\xd9\xc2\xc0\xce\x03:@\x83\xb2\x1c\xc4h\x85gt\xf0\xceY\xeb\xd6y\xb0\x1a\x0f\xd4A\x02\xa2z]\xe09\xdb\x97\x8c\x8b\xda\xcdc\xd8g,\xa9\x98\xb0\x9a}h\x1f$\xf8\x00i^\xd5,\xd9\xc4\x17\x07F\xe0\x95\xb6j\xfd\xe2\x8b\x03\xddW\xb8\\\xc6\xf8\xe2@\xff\xaf\x18t\xf1\xc5\x81!\xf8t\xf9x\xd92\xb1J|q`\xf8#a^\xde\xe4\xaa\xf8\xe2\x80\x03#\"\xb1(\x14\xf5\x97\xfc\xe2\x80\xb5\x7fbY}\xb9\xe3b-\xfdXK?\xd6\xd2\xb7k\x05\xb1\x96\xbe\xfe\x8dO/\x91\x80KQ\x88\x95Rq\xf3\xf5\x8b1\x1db\xa5T\x7f\xb4\x07\xd0\x18\x1a\xa3\xd5K@\xa5O\xe2\xae\x12\x12\\^3\x1d\xb0i\x92H\xd9\x01\x04\xf9\x01\xde[M\x07\x04\xb2\x83\xef\x84\x1f\x02\xea\xaa\xa8\x03\x81\x1a@\xa4\x08\x07Rz#\x85/\x14\xe0YS\x01v\xa1\x80\xbeX@]0\xe4E\xd5\xd8\x04\x93\xa6\xe8\xf5\xc6\xb4\x1f\xe2'\xea\xb3\xb1\xe8\x80v>)\x08\x18\x89\x97\xd4\xb1R*\xfe\x08\xfd\"*\xa5\xc6Z\xfa\xd4\x96QC\xec j\x88QCt\x01Rv\x00A~\x00A\xf1 \x90\x1d\xf0g\x80\x84\xa8!\"\x00\xbbP@_,\xa0.X\xd4\x10G\x100\x12/\xa9\xa3\x86\x88?B\xbf\x08\x0d\xf1\x17\x8c\xf0\x8e\xb5\xf4\xc7\x10k\xe9\xc7Z\xfa\xbe\xefH\x03\x00\xe2 \xd6\xd2\x97\x80\x14\x00CP\x02\x81T\xae>\xd6\xd2\xf7C\xac\xa5o\x06l\xac\x9a\x19b-}7L\x18\x90O%\xd0!\xd6\xd2\xc7\xaa\xe0:\x04\\\xd4\x15\x04P\x0f\x02)\x08\xd4\x0b\xbc\x02\xca\x05j\x08\xf4\x9d\xa1\x80\xba\xe0\x10\xbe\xe8\x10\xba\xf0A\x17~\x05\x84\x8b\xbf\x02\x7f\x9c\xa3\x19\x02\xe8\x12@\x0f|\xa4\xa4\x19b-}\xda\xd0h \xed\x12\xb0\xe1\x9eh\x84\xf8\xb2s\xb8`Q3\xdc\x069}\xe1\xa6f\xb8\x8d\x91\xc5Z\xfa\xc4\xc1\xc5Z\xfa=8\xfe\xbcBng\xc8\xa8_\x14\xaeXK\x7f\x08t\xb5\x0b\xe5\xeaS\x10\xa2\x11\xe2M\xeb\n\xe2M\x84\xb0\x07%\xc4\x9b\x88\x15\xe8[B\x01u\xc1!|\xd1!t\xe1o\xfb&\x12k\xe9{\x8bi\x98!\x981paH:P\xcbq\x98\x81X\xa4\xc3\x0c\xc4\xd2\x1df\xc0\x17\xf40CP\x99\x0f3\xd0\xaf^\x12\x90\xd5B\x88XQ\xb5E\xcc@v\xe9\xeb\x10\xcc\xcf\xc1b\x0e\xe18\x1d\xc3\xe4a\xd2,\xa9\x12\xd01\x02:L\x1e+\x89\xa4!\xca\xbb\x04l\x91\x15\x02\xcaXK\xdf\xf5)\xe9\x8c\xa3\x9cl\xb8\xca\x9f\nh'9\xe1\x14'\xccN\x02e\x8e\x12\xc82.h3\x06lDt\xe5P\x05dbA\x10\xc1\x80ZQTA\x10\xe1 \x8cx@\xaf4\xaa\xe0v\x87\x19\xa25`+\x91\x12P\x86\xd6\x97\xa6V&U\x10D\xe4\x90\x0b\xdb\x9e^\xb1T\xc1-\x8cq\x1fk\xe9;\x80(\x01\x89\x04\x82\x00\"A\x98\xec\x0b \x16\x84\x10\x0cB\xa5\xde\xed\x0d\x90.\xeff\x97v\xa1\xb2.D\xd2\x05\x10\x96&A`\x8a\x8c;\xfa\xe8hq\xbcm+\xda\xb0pC\x8a\xb5\xf4\xcd\x80\x17\x81\xe8\x13\x02IA \x04\x19\x82>\x0f\xd0\x93\x07\x12\x01\x80*\xfdI\x84\x00\x1a1\x80.\xeb\x8f;\x1c\x8ad\xc7\xca\xf4XK_\x83#\x8c\x85&\xa1\x91\x03@v\x8d1\xdc\x11{\xf4\x19\xe5\xb0\xf6\xa1XK\xbf\x03\xd7j\xc6Z\xfa\x08\xf7\xaa\xf78\xf2\x1fA\xb1\xbc\xa3\x06\xb1\x96>\xc6KEt\xd3\x11\x1drx\xd7[\x90\x93-\xd6\xd2G\x1fk^\xaf\x12\xa1'\xcbt~u\xb5\xf4\xdb\xaa\xe0\x1d\xcdT!\xf1wi\xbe\x16\x01y\xd5\xae\xa8\xeeW\x9b+\xf8z\xf1\xed\xefc\xd1\xf0\x11x\xd9J1U,\x1a\xde}\x85K\xda\x8aE\xc3\xfb\x7f\xc5\xa0\x8bE\xc3\x87\xe0SZ\xa2Vib\x95X4|\xf8#a^\xde,\x92X4\xdc\x81\x11\x91A\x11\x8a\xfaK.\x1a\xee?\xcb\x87\x1d\xa8\xd7\x86\x8a2\xbdH\xf3\xa49h\xdb\xcf\x94%\xfb\xc4\x80JN\x96k\x93 \xd7m\x9f\xea\x0f\x1f\x19\x1a\x9c\xe6p\xce\xd4\x03D'P_\xf2\xbe\x9b\xcad\x1f8\xc9\xaa\x0f'\xb0:\xd4JAx\xf7\xfcO'pm\x12a\xcd\x8bK\x90\xd6P\x17\xc3\xbeM]s\xddd\xc5\xea\x9a\x95\xf0\xfe\xbf\x1d\n\xb6?\xb3\xa2\x9bA,\xad\x0e\xb1\xb4z,\xad\xee\xd3\x9dbiu\xfd\x1b\x9f\xf6&\x01\x17\xb1\x1e\x0bg\xe2\xe6\xeb\x17c:\xc4\xc2\x99~\xe7?\xd0\x18\x1as\xf7\x91\x80\xca\xa6\xc3]\xb8$\xb8\x9c(:`\xb3\xe6\x90\xb2\x03\x08\xf2\x03\xbcw\xbf\x0e\x08d\x07\xdf ?\x04\xd4\x85Z\x07\x025\x80H\x11\x0e\xa4l7\n_(\xc0\xb3\xa6\x02\xecB\x01}\xb1\x80\xba`\xc8\xeb\xbc\xb1 &k\xcdk\x9co?\xc4O\xd4g\x89\xd2\x01\xed\x8bP\x100\x12/\xa9c\xe1L\xfc\x11\xfaE\x14\xce\x8c\xa5\xd5\xa9-\xa3\x86\xd8A\xd4\x10\xa3\x86\xe8\x02\xa4\xec\x00\x82\xfc\x00\x82\xe2A ;\xe0\xcf\x00 QCD\x00v\xa1\x80\xbeX@]\xb0\xa8!\x8e `$^RG\x0d\x11\x7f\x84~\x11\x1a\xe2/\x18\xf0\x1bK\xab\x8f!\x96V\x8f\xa5\xd5}\xdf\x91\x06\x00\xc4A@,\xad.\x01)\x00\x86\xa0\x04\x02\xa9zy,\xad\xee\x87XZ\xdd\x0c\xd8\x88>3\xc4\xd2\xean\x980 \x9fJ\xa0C,\xad\x8eU\xc1u\x08\xb8\xa8+\x08\xa0\x1e\x04R\x10\xa8\x17x\x05\x94\x0b\xd4\x10\xe8;C\x01u\xc1!|\xd1!t\xe1\x83.\xfc\n\x08\x17\x7f\x05\xfehP3\x04\xd0%\x80\x1e\xf8xR3\xc4\xd2\xea\xb4\xa1\xd1\xf2\x9b%`\x83b\xd1\x08\xf1U\xc8p!\xb5f\xb8\x0dr\xfa\x82r\xcdp\x1b#\x8b\xa5\xd5\x89\x83\x8b\xa5\xd5{p\xfcy\x85\xdc\xce\xfc\x01\xc0x\xc9\x12K\xab\x0f\x81\xaev\xa1\\}\nB4B\xbci]A\xbc\x89\x10\xf6\xa0\x84x\x13\xb1\x02}K(\xa0.8\x84/:\x84.\xfcm\xdfDbiuom\x053\x043\x06.\x0cI\x07ju\x063\x10k6\x98\x81X\xc9\xc1\x0c\xf8\xfa\x0ef\x08\xaa\xfa`\x06\xfa\xd5K\x02\xb2x\x04\x11+\xaa\xd4\x84\x19\xc8.}\x1d\x82\xf99X\xcc!\x1c\xa7c\x98%\x9dq\x94\x93\x0dW\x08R\x01\xed$'\x9c\xe2\x84\xd9I\xa0\xccQ\x02Y\xc6\x05m\xc6\x80\x8d\x88.$\xa9\x80L,\x08\"\x18P\x0bL*\x08\"\x1c\x84\x11\x0f\xe8\x85'\x15\xdc\xee0C\xb4\x06laJ\x02\xca\xd0r\xc3\xd4B\x95\n\x82\x88\x1cra\xdb\xd3\x0bX*\xb8\x851\xeeciu\x07\x10% \x91@\x10@$\x08\x93}\x01\xc4\x82\x10\x82A\xa8\xd4\xbb\xbd\x01\xd2\xe5\xdd\xec\xd2.T\xd6\x85H\xba\x00\xc2\xd2$\x08L\x91qG\x1f\x1d-\x8e\xb7mE\x1b\x16nH\xb1\xb4\xba\x19\xf0\"\x10}B )(\x81 C\xd0\xe7\x01z\xf2@\"\x00P\xa5?\x89\x10@#\x06\xd0e\xfdq\x87C\x91\xecX\x99\x1eK\xabkp\x84\xb1\xd0$4r\x00\xc8\xae1\x86;b\x8f>\xa3\x1c\xd6>\x14K\xabw\xe0Z\xcdXZ\x1d\xe1^\xf5\x1eG\xfe#(\x16\xc1\xd4 \x96V\xc7x\xa9\x88n:\xa2C\x0e\xefz\x0br\xb2\xc5\xd2\xea\xe8c\xcd\xebU\"\xf4d\x99\xce\xaf\xae\xb4\xfa`\x0c\x7f\xef\x8f\xe1\xa9\xcc\xe1\xa9\xa0fm\xc5INB\xf9\xc3\x89T7\xf9\xa0\x9a\x90\xb5\xfd\xa0dg\x0f\xd56e\xd9F\x15\xcdd\x1b~\xe2\xaf\xf4j\x9d\xa3\xa1\xb4\xe4\xf8\x91\xd5/9\xb7\xd7\xa2\xdb\xb7\xac\xda\x17y\xc5T\xd9\xd0R\xfd[\x8c\x8c\xeb\xca\xfc\xaf\xffy`\xe5\xcd\x03\xbde\x83\xee\xed\xd93\x95\xbf\xb3c\xf5e\xb1\xe1}\xcb\xfa\xf1\x8bUR\xb1E7\xdb\xc5\xc7\x87+V'\x0f\x17-\xa2V\xb9~\xc7j5\x12\xc9m#\xc99\x96\x95R:\x0eu\x0f#S\x9a\x8e(\xd3\xcd\xd9$\xe4G\xc2\xdd\"\xd4m\xc2\xdc\"\x13\xac\x9b\xc7r\x1du\x1c%\xaec\x847[\x1eJ\xe3!\xef\xd9\xbf\x18\xa5\xf6 \xbc\x7f\xfb\xf2A\xc9\xaa\xe2P\xae\x19\xe4\xc9\xae\xd9J\x87<\xfd\xe9\xc0\xb2\x1b\xe0\xfb\xabN\xb7is\x19\xab\x9b\x9a*\xb6\xd0\x83\x8a\x95i\x92\xa5?\xb3\x8d9+l_\x16u\xb1.2X\x1d\xb6[V\xaa\xa2,\x0bY\xffS\xce\x05v\x87\xaa\xdd\xe7\x90\xd4\x90\xb1\xa4\xaa\xcd\xf8\x8a\x9c\xc1\x9d\x07w`}\x99\x94\xc9\xbaf%\xc7\xc4\x84v\x0c\x15\xbb\xd8\xb1\xbc\x15B\xef\xdf\xbe\xbc[\xc1>\xa9/E\x07Ftm\x06\xbc\xb97\x8ef{\xc8\xb2\x1b\xf8\xe9\x90d\x9c*\x1bI\xb3\xa6\x0bA\x9d{I\x05inF\xf0\x81w\xff\xe0\xa2(.2\xb6\x10\xb4X\x1d\xb6\x8b\xe7\x87R\xa4\xd2}\xf8J\x8e^\xa0\xac.\x8bC\xb6\x81\x95(XcN\x8cX'y\x91\xa7\xeb$\x13\x1b\xc4\xdc\xe3=\xb6\xb8X\x9cp\x12\x8a\xa4\xc0;\x8b;\\T\x88\xba\xae\xeb5\xdb\xd7l\xf3\xd5\xe27\xe6\xa6\xa79\xec9Q\xd35;\x81\x9a%\xbb\n\x0e\xd5!\xe1\xd3\x975\x01\xf6i\xc6GW\x17\xb2|j\x9a'\xe5\x0d$Yf\xa6\xdd\xcd\x9e5\xb5]\xebKvc\xee\x92}\xda\xb3\xb5*#|\xa8T\xb1\x1e\xc1\x0c\xec\x93X\xca'\xf9\xcd\x02\xfeX\\\xb3\x8f\xac<\x11\x12\xee\xfd\xdb\x97\xe6\xcb\xbd\xd4\x078\x1a\xce\xaef~]_\xb2\x1d\x83\x0f\x97u\xbd\xffp\"\xff[}\x10\x95\x0e\xf2\xa2\xf9\xf5Dp\xd9:\xc9\xa1\x10\xbbIP`|\xa0H8\xec\x9b\xcaC\x96\xfeX\xf9\x91\x95\x92\x0c\xbbd\xdf\xd4[\xe63\x10\xd7\xbe\xa6D\x910\x7f\xa4\xb2Jmb\x9e\xdb\xb6\xc8\xb2\xe2\xbazlY\xbb\x7f\x85\xd3m7\x03\xbe\xe4\xfb\xb2\xe0\x87\xe5\xa6\x9d\xa48\xa6\xab\xea\xb0c\x1bK\x89\xa3\x7f\x85'9\xfc\xf1\xfc\xfc\x0c~|q\xde\x94\xf6\xe5c\x95\x1b\xf4F\x1cbf\xce\xfc\xdf!\x8b\x9f\xdf\xec\xd9_\xfe\xf7/\xc6\x8f\x85,?\x88\xb5nxH\xca{\xb1\n\xfb\xb2\xd8\x1c\xd6\x0c\x92\x1cXY\x16\x96\xe8\xed\x7f\x85']Fj%\xaa\x14'\x9c>\xf2l]'k.\x13\x8a\xe2\xea\xb0\x87&\x17\x01\xf8\xe1\xb6\x81\"\xb7mt\xcbP\xdf\xbf})\xc6u\x99|\x14l\xb5\xeb\xed\x85\x8d\xdc\x0c\x89\x9a\x06\xff\xff\x8fE\xba\x81$\xb7\xd9m\xe5\xa0\xc4\xb6/\xd9\xb6(\xd9\x89j\xccq&u\xbaJ\xb3\xb4\xbe\x81\x9c\xb1M%\xf5\x04\x10\"\xaa\xfch\x0d\x98)r.\x0e\xf3\x0b&\x1a\x88}\xb7\x80{\xef+\xa6\x92\xe59U8\xdbq9#\xf9.\xc9\x93\x0b\xdb\x8cW%K\xae\xb8\xech\x90.\xbe2s\xcb\xeb\xa2f\x8fe\x11\xf1\xed!_\xcb\x9d\xc2\xc7\xde\xc8\x9b\xf5\xa1,Y^g7=c\x9e##\xba\xd8n\xd3u\x9ad\x8esdu\xd8B\xc9\xf8\xe9\xc0ND\x9erZ\xab\xce\x0e|q\x85\xfa\xd3\xee\xaf\x15\xbbH\xf3\xdc\xa6\xebr\xed\xcd\"\xf4o\xf6l!\xf99\xd9\xa7\xd5b]\xecl\x12\xf3\x9d\xd8m\x15\x14\xf5\xa5\xdc\xe4\xf9P\xb2\xc0\xbdF%c\xbb}}\xd3l\xcf\xaf\x8c\xc8v\xc2\xf2\xb3\xb2\x08\x121A\xa1r\xa6\xbb}\xc6\xf8A'\x98\x1f\xaa=[\xa7\xdbt\x0d\x15\xdb%y\x9d\xae\x0dqEb\xbf\x05\xa8\x14\x94\xeb\x80E\xe3x\xc5E\xc7\x8a\xa9\x8a =\x85a\xa4\x1b\xa8\\\xf3U\xf1\xd1\xa2l\xc8\xa96\xec<\x9c\xa6o4\x1f\x9e\xe47\x1f\xba\xebD\x92CR\xae\xd2\xba\xe4\x9b\xcf1\xaaFF\x8f\xd0%Y\x91_\xc8\x15I\xc6K\xc6\xa5\xa6\x10\xfarT\xab\xb1:\xd5\xefSiE\x066;S\x8c\x9f\xa5+1\xd4F\xaeWP\x1d\xf6\xfb\xa2\x14'\xe7>Y_=8\xe4\xfc?\xfc\xbc\x94\xeb-\xb4\x92!:\xa1\xd1\x18\x95\x87b\x0b\x87Z\n\x1f\xb5\x9d+.\xf8\x92\xcd&\x95{\x1b.X\xce\xca\xa4\x16\x03\xe6W\x87\xb6<\xc0\x13\x83\xbc\x93K4\xee\xe7\xc5\xa7\x8430<|\x0cg|\xbc|\x1f7CO\xfa5\xfb\x9e\xfd\xf6\xb7\x96c\xea\x87\xa2\x80mQ\xc0\xf7\xb0X,\xfe\x8f\xf1\x13N\x84$\xbf1\xff\x98\xe47\x0b\xde\xf5\x0fe\xb1\xbb\xb7-\x8a\xaf\xcc\x9f-\x16\xe6\xb3'\xdd\xc2=\x8e\xe2\xbd\x18\xf4yq\xef_8\x8e\xaf\xe0o\x16yj\xc3\xf3\x0f;m\x1eyh\xf3\x1f\xc9\xc7d2q\xe0{\xa1[q\xec\x13\xa8\x90V\xf7~(\x8a\xc5:K\xaa\xcaA\x049$\xde@\xce\xa7\xd7\xc8\xdc\xaf\x81:-y\xbe\xf1\x90\xe7\xec\xa6\xbe,r\x0b\x81\xe4H~(\x8a{\x8b\xc5\xc2,\x89[\xe2\xdc\xb3\xfe.\x18H\x90\x8dJ5\xde\xf8T\x12\xed\xf9\x8bw\xcf\xde\x9e\x9e\x9d\xbfy\xfb\x95\xcdf\xd31\x9a\xbd3\xd9\x9d\x9d\\\xdfz\xc8\xf5ca\xa9\xe8\xc1I\xf5\xf8{\xf8\x97\xfdj\xf1CQ\xfcm\xb1X\xfc\xc3\xfca\x92\xdf\x9cpu\x8d\x7f\xbd\x97\n\xc8\xab\xa4\xac.\x93\x8c\x13\xd1>p\x1b\x99\x86=[\xbaM\xb7\x83N\xdf\xe7\xbb\xae[1(\xc1\xd8\xe2\xab\xff\xef{\xc8\xd3\xcc\xca\xa0\xf6\xb1\x188\x91_\xda\x04\x1d\x95\x1cT\xca6\xacn:UEIl\xf90\xc7\x8d2\x80\x8e\xb0\x1d*\xc3\x99\x7f\xd7\xa0\x86<\xe0w\xd1\x85\xf8\x81\xabrw!\xe9\x9d*\xfc\xc4ij\xb7\x8c{\x10\xab>\xee\xa4\x15\xe3yv\xa3\xeeM\xa3\x0bo\xab:B\xb2\xad\x99\xd4f\xf8}{<\xe4\x07w\xc7]4\x17:5Dy\x83c\x0dg\xde\xd9\x16\xc5b\x95\x94br\x9f\x1e\xdc,~\xbe#\xa9%\xef\x1a\xe6k\x95\x18\xca\x1d\xfe-?^F?\xff\xc7\xbb7\xaf\xc7\x7f\xfd\xfe\xfb\xef\xbf7\xaf#\xff\xbe\xb3\x03H\x9d\xaa\xe0\xdb\xb4Q\x18\xe4]\xe5P1ep\xbb8d\x89\xa1\xb6\xdd\x18\x05\xff|\xc3\xbac\xfe\x04\xd8n\xc56\x9b\xee\xc0o\x8c\x88\x89\xc1z\xd0;v\xa5\xf5\xf0\xc3\xbfsr|h.\xb9\x9aUT\x11w\xa1\xb6\xfcc\x8b\x12\x9d\xac\xaf\xf8\x9e\xef.k\xdb4cf\xf9\xab\xe4\xc3\x19+\xab\"\xb7n\x9b\xc6\x82#\xdeyY\x8a\x95\xf9\x1e\x1e\x9a1\xb6\x1f\x0bWf\xf3\xed#\xbc\xf4\x07\xb0\x8e\xe2\x8e\xa0\xcd\x9d\xc7p\xc7\xb4k\xf4\xe9.\xe4\x8c\xee\x98^T\x12\xb8\xc4\\^';\x8e\xef\xff\xca!\xff?\xeb\xc7|.\x83o\xb1\x13:\xdd6\x17\x03\x9d'\xe4j\xa6\x15\\\xb3,\xbb\x7f\x95\x17\xd7\xb9\xd8\xd7\x97\xe2\x91\xa7\xf5\xa1\xaa\x8b\x9d\x85\xc9u\x16<\x91\n\xe8\x80/\xd5+Am\xb7\x9c\xd1\xf2\x0b\xc3\xbd^\xb0\xdd\xb8\x93\x0fbC(>\xbc,\xb2MS;\xab\x1b\x99\xb0`5\xfc\x0b\x8d\xb5\xa8a\xdf1>\xd1M\xcb\xb9p\x8f\xcb\x07E\x8a\x91YAY\xce\xfe\xf2\xbf\x7f\xf9\xca\xc2\xe4SyD\xef\xc8\xce&\x82\x0c\x1c\xdd\xc3\xc5\xa3\x87\x8f\xaa;\x96e\xef\xff\xcb\x15_\xe1\xb8\x89\xd9\x1d\xb6\xde\xe0\x91\x00\xac\xda5\xaa5\xf8+\x7fC\xddw3\xb4&\xf9\xfb\x15k];\xfb\xe4\"\xcd\x05\xed\xba\xc1h8\xbb\x0f\xda\xb0\x9f$\xef\xffU\xa1W\xbe\x8d\xee\\\xaeMFu\xb39]T\x15\x19\xd9\xe5\xad\xf4\xb0\xdet\xed\xfe!\xe8\xf5\xa2\xc8\xc3\xff\xb71\xda$U%\xadQg\xc9\x05{\xcb~:\xb0\xaa^\xc8\xdf\x07H~:\xb0\xf2F4\xe7\xe88%\x18\xec\x8a\xaa\x06&L\"\xc2\x86\xb2\x80\xd3\xba\xb7w\xf7\xf5\x0d\xa4\xc38\x93\xba}\xb1+/`W\x94L\xd9\xbe\xfa\x8a\x8d!\x84\xc0K\x14CI>[\x98\x97@/\xa8!\xfe'?\xecV\xf2f\xaf\xccp=[\xd0p\xfc}B\xad\x8bC^/\x05\x92\xe16\xbfN*\xa8X}\x02i])Kb\x05\x87\\2\xd3F\x1ac\xae\xd3&d\xcc\xbc~N\x8f\x96\xd3\xb7\xd6 h=l}\x04Oo\xe4\x13k\xf0\xf6\xec\x19\xc9\xbb\xf6\xba\xd8\xb0\xd3|[\x90}j\x8dJ\xb9\xcc\x8b\x0d[\xa6\xf9\xb6\x18\xfa\xc6P{E\x99<\x96\xc6\xe2\x9aFDvd\xe2\x97G\x06w\xb7\xd3\xd6\xe4`5k}\xccp\x84\xc6\x8a\x96a\xe8\xf4\x15\xd8\xa0vV\x96V5\xcbE\xf4\x01\xea\xfb\x9c\xd5\xd7Ey\x85\xfa\xd6\xb1\x84\xa3o\xd7\x97I\x9e\xb3\xacB}l\x95\x91\xbb\"O\xaf\xcc/\x87\x8f\x90\x88\xbd9\x99\xbd\xeaO\xb6\n\xdf\x8e5,\xf7k\xd2\xa3\x9e\xbd\x92\x97\xe3}A\xd8\\\\\xd1E\xd1&\xd9\xef\x97\xe8\x8f)\xcb|\x91\xba\"\x07G\x9f\xaf\x0ei\xb6Y\xd6\xc9\x05\x8e/.\n\x97\xd8\xb0`\xdf\xb0\xbd\x11\xfb8^\xcb\x18\xabe\xe5\x19\xb7s}\x9f\xd4\xc6\xa86\xe7\xceo\xcf\xba]\xb19dL \x19}\xe4\xa8JLB\xde\xe0\x19}W\x99\x03\xc2p\xb8\xd7\x97l}U\x1dvC\"\xca__\xc9\x9e\x87\xfa\xdd\x9f\xe5HN\xf5*T\xf2([V\x9b+\xd2\xa2\xb7\x9d\xdd}\x97\xe6kQ\xe6\x8a\xe3\xb9_m\xae\xe0\xeb\xc5\xb7\xdf\xdcm\xbf\xd5\xb5\xcfn\x0cF\xfd\xd3prv\xa6\xf4\x11\xb6\xfe\xe1?j\x86\x0b\xa7Q\xcdD\x14\x8dDF9\xe6\xdf\xdd\xe4\xeb4\xbf \x9f\xf2\x95l7\x14?\xab\xa2\xc8X\x92\x8fg\xda\x8f\x1d\x1a\xf4\x89\x9ch\xd3*p\x9e&\x9d\x88<\xe9\x18.\xa4Z\xc4p\xa1\x18.\x14\xc3\x85 \x86\x0b\xc5p\xa1\x18.\x14\xc3\x85$\xc4p\xa1\x18.$(\x15\xc3\x85\xfa\x10\xc3\x85F\x80\x8f\x88\x89\xe1B\xa6Ob\xb8P\x0c\x17\x8a\xe1BC\x88\xe1B1\\(\x86\x0b\xb5\x10\xc3\x85b\xb8P\x0c\x17\x8a\xe1B1\\(\x86\x0b\xfd*\xc3\x85\\>\xad[\x0e\x18\xfac\xaf\xc8\xcc\x88\xc5\xc7\xec=\x0e^\xf0\xbc\x89K\xd86\x86\xc8\x1c:{\x8c\xa2q\xa8(\xec\xa6\x1c\xdc;\xaf\x80}\xbf\xd5\xf2B+\xf6\x0dV\xe3\xdb\xaa:!\xcc\xaf\xac\xfa\xdeQ\x1d\xbf\x94j a\xb0+U\x7f\x93\xd4\xd9lX\xa1\xc4\xf2r(\x81\xc3\xc6\x95\x88\xbc\xdc1\x10\xca\xce\xe2L\xc6\x91\x80;\xfa\xc8\\\x84IbB\x14\xbb\x1aE\xa3\x99\x8b-9\xceb\xc7\xf9\xe3,\xaad,\xa6d\x7f;\xd2\xb9\xd2Z\xcf\xfe\x17\x1e\x0do8b\xd1[\x9f\x06\xc4\"\x18\x8e\xcf\xfb\xc8\xa1V\xe7\xdf\xfd\x9c\xc0\xeaP+{\xc6\xbb\xe7\x7f:\x81k\xa6J\x00I\x0f\xb6\xbd\xaf~W\xfclZ\xb1\xbaf%\xbc\xffoCX\x93\xff\xc1\xbcn\xa4\x0d \xbaw\xf1<\x9a\x86\x8c\x0dCk\x1az|\x9dq\xf9\xac\xb1t\x96\x10Kgs=ZN\x8b\x91s\xb5\xd6\xe2\xe1(Qp\x1ej\x9d\x95E\xb1}\xb3G\x93K|\xe2\x1a\xb1v\x1f\xc1\xee6.i\xa9\xad\xcc\x9b\xaa\x99O\xff\xda\xc5\xa7 o]\xad\x07u\x9dd\xebC\x96\x88J\x96\xafXy\x951(\x8b\xa2\x96\xa1*\xbd\x13`]\x1c:\xfb\xc0\x8a\xf5\xbci\xca\x9d/\xad\xa2\x1cO\xce\xaa\x8a\xad\xf9oB\x83\xea\xdb\x00s\xae\xc5\xac\x8aCoBy\xb1i\xed~\\Bun$\xe9s>\xef\xef\xce\x046\x07\xa9e\xb5\x9e55Oq\x9b\x97\x1f\xaa\xcbA\x17\xa8\xd3m\"\xc4\xbei0VhV(\xf6G\x0eS\xd3y\xad\x8f\xc2\xa0aX\xe3\xd3\x9c\x96\x81\xf1]X\xe3\xc4P<.?\xedt\x0e\x1d\x0dX\xe7S \xc1\xdc\xaaa\xe9s\xae\xc6\xb3\x12t\xce\x950#\xffJ\xd0\xb9\xd8v\xddU\xec\xcb\xfbk\x08\xb6\xe7\x7fj\xd1\xae\xa4\xfd!K+\x11s\xa5\xbe_\x04\xed\xbb\xca2p\xd3\x88=\xfb\xae\xbd[\xa37\x1eF\xe9\x18\x85l\x1a\xf7\x9ey\xe7\xd5\xc6\x00M\xeb.p\x07%\xcc\x18\x8ei\x0f\xc4\x9c/\x04s\xb6\xe0Kk\xd8\xa5\xc9\xff\x84\x0c\xb8\x9c+\xd4\xd2\x1dd\x19\x14^\x19\x1cX)\xe6;\x8c\x07\xb4\x86T\x06\x07SJ[\xfe\x00\x9b%\x8crJ\x00\xa5\x08\x96\x1c\xce\xc6\xe0\xe3\x0b \x9a\xb4\x07HN\x0c\x8dD\x05E\xe2\x03 '\x84>N\x08z4\x08\x8c\x19C\x1b\xe7\x0dj\x9c-\x9c\xd1\x1f\xc88[\x08\xa3-xqJ\xd8\xa21D\xb1\xc6\x04'\x86\x86%ZC\x10\x03\x83\x0f\x0da\x87\xd6\x83\x12\xe7\x80\x19\x9d\xa0\x81\xe1\x85](\xa1\x89\xbe\xbf\xf1\xf7=-\x98P\x06\x0f\xf6\xd0\x8d\xc3\x08g\x08 \x9c\x16:8\xe0\xf2\xe1a81\\\xb0!t\x1f\xe3\x94\xc0@g\xd4\x9b%\x18\xd0\x1b\x068\x8e\x08\xc2\x87\xfe\x8d\xdb\xfe\xc34\xd7\xa0@?\xccd}\xc1}\xf6\xb9y\x03\xfa\x08\xa1|z\xd4\xc3\xc4\xf0=g\xe0\x9e=d\xcf\x15\xacg\xa4\x026@\xcf\x17\x9a7\x0c\xca\x9b\x10\x8e\x87\x08\xc4\xa3\x87\xe0\x19\x02\xde|aw3\x05\xdc\x19z\xd68eRx\xdd0\x9cnJ \x9d!pnR\xc8\xdc0Dn\xce\xe08kX\xdc0Vh\x18\n7O\x10\xdcl\xe1o\xf3\x06\xbe\xe1B\xde\xbc\xc1n\xcd-\xd9\x17\xe6\xd6|\xe6\x0cp\x1bE\x82\x8d{\xc3\x86*\xb9\xc3\xd9\x90\x81l\x88\x106m\xc8s\x86\xadM\nX\x1b\x07\xa8\xcd\x17\x9a6_PZ\xf8\xeaz\x03\xd1|!hJ|\x9b\xc3\xce\x8c\x9a\xb8\xc9\xab\xed\x082C\xe2\x98\x12R\xe63\x10v\xfe\x1c\xb4\x89P\xaf\xc9a\x98\xc3\xb8p\x87\xe1#\x8c\x7f\xcbT\xa8\xc3\xf0\x99\xa9@\x87 \x9b\xa10\x87\x15\x9b^\x90\xa3>\x82\x07\xc2T|\xc3z\xbd\xf3\x16\xdd\xb0\x14\xdc@#4\x15\xda0\x14\xd9\xf0\xe33\x14\xd7\xa0\xb8\x14\xc1ST\xc38\x00L1\x8d9\x0bi\xf46\xd2\xba\xbc\xd9\xd7\xc5\xa2}\xb9\x11\xbd\x8bF/f:\x85A\xefZox\xdd\x12\xd7T\x85\xc2\x10\x1e\x994\x863q\x18%\x99\x1d\x85\xe96\xa0\x03\x929}Z\xa9\x84\xb28\xe4\x1b\x7fo.\xf5WB\xaf\xbbo\x1eY\xbf3_-t@\xecq@\xeespj\xdf\x1d I\n>\x8d\xbc\x0f\xde\xeb\x8a\x0e\xc8Y\x03a\xe6\x1c\x1c\x17\x9b\xc1\x87\xc8uV\x80c/\x05\x98E\x00\xdaB\x00e1\x10\x97%\xe3\xe7\xe3\xab\xd3\xf0\xb3\x1d\xab\xeadg0\xaa\xf4>\xc2M\xcau/\xd7\xa1\xbdm\xd8k\xf2w@\xec\xddI\xca\xaec\xcb\x13\x02\x1d`\xf9 '7\xb8\xb0O\xb8b\xed\xefr\x8e\x99b\x8f(~\x1at>t~:\xf1+bQ\xb3\x93&\xbcw\x97\xcapc\xf9\xbfB\xb9\xb1\"\x13\xd7\xcc\xee\"\xc9\xc7i?\xa7zg\x99\xe9g\xa1E\xad\xa2\x16\x15\xb5(\x88Z\x94\x11\x90\xcc\x89;\xe6\xa2\x16\x05x\x92\x02N\x06K\x88ZT\x0f0\x8b\x00\xb4\x85\x00\xcabD-\n\xdb{\xd4\xa2\x08G\xd4g\xabE\x89m\xbftU\x92k\xbf\xf4\x13\xcd\xbf\xd5;\xbe8~_\xde-G\xe8\xc5\xb5\xd50<\xf0\\\x19\x179#\xbchL\x8b\x9d\x99U\x19\x1b\xa5M\xbd%\x92\x11U\xa3\xce\xd4\xd7\x05o\xbf\xcd\xd2\xb5H\\\xe7\x1ccX\xe3\x8c+ \xcbu\x96\xb2\xbc^&u\x9d\xac\xaf\x8ei\xda\xec\x8dhiq\xecK@\x9cb\xbe\xbe\xa0%\x06\xe2\xe4D\xf4\x07\xc8>\xc1\x10[a\x06d\xa7@\xe8\x18\xdc\x8f\x89\x0d\x01\x13\xb3ai\x89\x1f;\x10\xc7\x0f\xf6\xa8\x0f3 6\xea\x10\xd4\xc65F\x88\x98\xc1\x187b\x86\xdb\x18\x10F\xac\x0c\x01\x1f\x8f\x82Bg-y\xe7\x8aR1\x03%v\x05\x85p\x18\xdf\xe2\x8eh1\x03&\xce\xc5\x0c\xe6\xe8\x173\x90\x98\xc5\x7f\xabS@B\x8b9/\xfb0\x8e\xb5\xb1|\x176\x08\xbf\xe6\xaa\xc0\x11\xadc\x86#\xcb-\xec\xfd\x04\xe8\xc4\x01\x9c\xca\xa9\x03\xf1\xf2\xa8\x80H%\x08\xa0\x14P.\x95\n\xb0\x97\x81!\xd0\xb8[\x01e1!lA!dQ\xc9\x97\xd0A3\xdfeT\x81;F\xca\x0cD\x1a\x10\xe7\x8e\x8b\xb22\x83%\xf6\xca\x0c\xc7\x9c\x863R\xca\x0c\xc7\x1c\x0eX\xab+\x9b\x01\x1b&\x86B6\x0c%3\x83?\xc0\xcc\x0c\xc7$\x9b+D\xcd\x0c\xc7\x1c\x8d9\xc8\xcd\x0c\xc7\x1c\x87'L\xce\x0c\xc7\x1c\x90#\xd0\xce\x0c\xc7\x1c\x8c?T\xcf\x0c\xee\x00>3\x1co\x1e3\x84\x00\x9a\xc1\xf4\xc8\xf8\x18\x08\xba E'\xf9L4k\xaf\x1fE\x01U\x15\xc2\xd9G\x15D\x95\xda\nQ\xa5\x16@ck\x05\x94\xc5\x84\xb0\x05\x85\x90E\xbd-\x95\xba\xf5?\xa0\x96T\xce~\x1c\xd7j\x06c\xb4\xab\x19\xc8\xccHgE%A\x96\xdb,\xb9\xc06\n\\p\x7f\xfc\x84\x0e\xf7\xe1\xe9\xcb7\xcf\xfe\xb4<}\xbe\xfc\xe1\xe5\x93\x1f\x11\xb1\x06C\x18bx\xf2\xf4\xdd\x8b\xd7\xee\xf0\x08\x1d\x86\x08\x10\xf1\x15:\x0c\x11\xbc>u\x85Y\xe8\xd0\x06]L#\x03\xed\xde An\x94\xcd\x0fYr\x01i\xbe\x11N\x8f\xa6\"$<\xcd\xd6\xc5\xd5\xe9so\xfc\x85\x0e\xed\x96\x82\x14o\xba$\xfa>u\x08\xe2\xd1 \x91\x84p\n\xeb0ihx\xb3\x9b\x04\x943U\x87I\xe3C\x93.\xc46\x0e\xf0L\xa8\x9f\xef\xd2\x0b\x19\x1f\xc4\xcfye<\x16\xfeY\x95\xd4\x80D\x97\xe6\x9048}\x06c\xeax%V=\x0d\xa3\xf5\x11\x8a\xfc\x0e\xa5v_[\xdew\xef\x83T\xbbk\x99\xb7\x92\xa8|\x8e\xee\xbam\x1f}\xb7\x87*\x86\x085\xf2\x9e7\xd8S\xa6\x1b\x9b\x8f\xf3\xf0'(\xf2\xf4D\xceD\x02v>\x12Hr\x88\xbc\x91\x88\x9bhT\xb4\xda\x05$\xa2\x00\x990`\xaa\xff\xe1\x032\x81\x80N$0\xd7\x17\xf1\xc1\xed\x0c\x8dz:c\x0b\x9d \xd1\x99\xcb\xa1\xf8\x00\x13i\xa2\x03\x99\x98\xd4\x8b\xcb\xde\xf7\xea\xa1\x19\x8e8.5\"\xdf@\x08\xdb\x92\xb2! r\x8aH\x04\x12\x8f\x13$\x14\x81\x10@$\x06\xd0e\x13\x91(@%\x0c\x84H\xa5\xe3\x0f\x8a&\x8f\xb0\xd2H\xd4\xdf\xf4!\x03U\xf3\x98 \x8b\xa8\x92\x88H@\xfcn\x87P\x19t\xb4\x11\xe1\x83\x02\xdb\x16\xf8\xa1\xf8\x87\xc1\xf5\xd5\"_\xba\x0d\xb6\x88\x1e\xfd=\xadn~N\xf2:\xcd\xd9\xd2\xafq\xfa5M\x8f\x86\x89\x12R8\xd1\x84\x92\xd0\x08\nI@\xees\x94\xf1\xefy\xe2\xdf\xa4\xa3\x98\xf4\x93\xa9%\xfe\x9d\xfa\x88c\xb2f=\x04\xab\x83 \xf5\x0f\xa4\xee\xe1\xd7;\x10\"\xa0\x83\xe9\xc2\xa0\x03\xaf\xae\xe1 \xb1\x83\x9b,\xfa\x05\x02\x99Y\xaf\xb0\xea\x14\x08\x8c\x83\xe1\xcd\xa4G\x98u\x88\xf9\xf4\x07\x8f\xee\xd0\x0e\x1c-\xc0-\x1b\xc9H\xc0\xe1\xe6\xf1o\x1b\xef\x86\xf1n\x15\xd7&An\x8fy6\x86cK`u.\xc3\x06p6\x1d2\xbd\x81\xddq]\xcf\xc2\xdc#f{\xde\x16gE\xf0\x99V\x90\x95p\"\x8c\xf6\xb0q\xff\xdaU\xf7\x89\x85W'\x15]\x95eV\xfbc\x1f\x15\\\x9dVlu\x96B\xab\xe3u5U\x18@/\xf4\xb0$)A;\x13\x9f\xf6\xfe\xed\x90\xe3\xa6s\x1c[\xf8\n[\xea\n_\xdc\nY\xce\x8aT\xc0\xca\xfc^\xbe\x02j\x91*W!*j\xe9)j\xb1\xa9h#\x85h#\x1d\xc2\x91l\xa4\x16\x1d\xd3\xcbn&\xfd\xd2\xa3\x04{q\x0e\xa6\xe6,dD\xe7e\x8b\xeeK\x1b\x95\xfd\xdc\x0c)34,'\xf4\x1b\xad\xf7\xbe\xdc\x19\x95\x12\x1a\x96`\x8c\xa7F\x0b\xf1\xd4h\xc1\xcb\xdc\xf1\xd4\xe8A<5\xe2\xa9\xf1\xeb>5\\\xb1\x13\xc6)\x99X\xd3ZH\x0e\x8da\xda\xbd\xdeL\xcd\xb02o\xbd\x92n\x0d\x1eca\xb7\xd1\x95\x8f|\xcb\xf3>qA8\xc0M\x8fX\x04H\xd7\xb1\x1e\x00>\x91b\xf3Jcu\x02\xf3\xb7\xf6\xc2\xc9x\xdd\xc0\xf6\xb5\xa5H2IG\x00\xaf\x9e\x003\xeb\n\x10\xa0/\xd8\xda\xf8\xca\x1a\xdbb=Q\xc7\xac\xe9\xc8\xb2\xa4\xd9\xbb\xcfA\x9b\xfc\x05g\xc2\xfc\x84\x13\xfbX\x87*B\xcf\x00\xdf\xc8\xc1;zp\xeb\x1c\xe0\xa5\xb7\x02\x9f\xee\x01\xde\xc4r/\xb9\xc0O2\x84.\x02.}\x04\xec: \xf8\x86\xe8\xf6\x98x\xf5\x13\xc0\xe27L\xdd[\xaa7|\xcf8\xa2G\xc2F\xeb\x8eO\x0c\xd6cl\x141\x96\xd65\x16\xd45=F\x10O\xc3x\x1a\xc6\xd3P\x83x\x1a\xc6\xd3\xb0\xf9 \xc3\xca\xf14\x84/\xf24\xf4eGX\xa7kc}g\xd9x2\xb6\xf9\x0cG\xf6\x15\x98\xcb\x12\x006k\x00\xa0\x8b\xbb\x1b\xe5\x9aY\x96y\xca\xb7\x07h4\x9e\x02\xedSN\x8b\xe3\x8aro\x91ujiu\xef\x98\x005.\xc0\x15OG\x1d\x01\xd0cno]roy\xf4\xb9\xbb\xc4$#I\xc0\x97=\x87\xae\xa4\xb9k\xaaA\xc5\xce)%\xce\xbb\xf2\xe5\x0e\x84\xd4\xc2\xe6\xd4r\xe6\xfe\"\xe6\x88%\xf5\x95UD\xa0\xc0\xa9<\xee\x92\xe4\xa4n|u\x90\x90E\xc7g\xdc\xd1\xfe\xb2y\xa8 \x02F\xaf\x93\x80R\x89\x15\xa0f\n\xe8\xd9\x82_Un?C\xa9\xcc\n0|\xa4\xc0Or\xa0\x90\x1d\xf0\xa4G\xaa\xd6\x83\x8f\xdd\x15\x08\xf1\xa5\xbcQ3B\xcd\x84^\xac\x1bQ\xa2{\xae\xe1\xa1\xabI\xcf\xd5\xe1\x90\x1e\xde\xfa\xd9\xce\xda\xd8\xb4\x8a\xd8s\xcd\x01[\xf3z\xae\xfe\xfcU\xad\xe7\xea\x89P\xb7z\xae.\x91\x95\xa9\xe7\xea\x0eH\xb5\xa7\xf7\xe8\x8a\xd3\xf3\x8co\xe6\x9a\xd2\xaeJ\xd2\xde\xc3\xca\x7fH\xdd\x9aR\xe3\xa9\x06\x8d;\xfd\\F\x07\x05Q\x9b\xe9\x005S@\xcf\x16\xa263\xb76\x83\xa9\xa2,\xe7\xe2\xae\xfc\xe8\xad\xf9\x88d\x05,#x\x13\xee\xfb@X\x0c\\\xfdc\x7ff\x0f\xae\x1d\xb2\xd6\xb17\x0b\x08\xd7\xcc_\xd7\x18\x991d\x06l\xed\x9c\xf9*\x17{k\x02\xf4\x01a\xca\xd6\x81\xc05\x84\x0d\x8c\xacC\x1c\xd0\xb9\xef\xae-\x01]i8`\x04\x9e\xe9\xe3\xcdL\xf8\n\xc2\"\x0b\x0b\x81\xc9l\x99\xc1\x8d(<=\xd1\x82\x10Q\x19\xd8S\x0f\xd8)M\xdd2\xd4W\x7f\xcd'\xed\x9d\x92\x1e!\xe51\x12\x1e\xb1C\x91\xec\x89bMD\xbd5\xc4\xc4\x0099\xc0WZCN\x12\xb0\x13\x05J\x8d\xb5\xf9;\xc7\x9d\x10\xf3\xd6VCTV\xc3\x14\x17\x03\x19\xe2\x91\x1e\xde\xa5El]\xaf\xac\x98\xde\x892\x9d\xce\x8b\xaaK\xb7\x0bL\xaa\x93@M\xad\xf3\"\x943\xa0&\xd8I\xa0\xa6\xd9I\xf0'\xdbI@3\x82/F]\x02\x1a\x9d\xefL\xea\x83;\x15\xaf\xf9\x86\xde1.T\x10\x99\x9c'\xe1H\xb2\x05\xa3\x7f\x03\x8d\x08\xe0W\xc5t \\|\x14\x10\xa8\x01D\x8a\x00\xf6B\xa4\x00\xa3\x00\x0f\x01\xcf\xa1\n\xb0\x0b\x05\xf4\xc5\x02\xea\x82\x91.P\x83&\xeepy \xf8\x14@ \x84\xf9\x12\xe6IO\n\x94\x80H\x0d\x94p\x8ca\xa3\x13\xed$\x1cc\x08\xf3\xa6\x0fJ\xa0%\x11J8\xc6\xdc\xb0i\x85\x12\x8e1\x02\x7f\xa2\xa1\x84c\xf4MH=\x94p\x8cA \x93\x11%\x1cc\x00\xb4\xf4D \xf8$E \xf3\x8f{\xe6\xb4E \xae\xe4E \xc8\x83\x1a{@\xff\x82\xaa\xa2'\xc1Q\x02E\x17\xf0\x1b\xc5\x14D\x1d1\xea\x88\xbe\xaf\x81\xb0P@_,\xa0.\xd8\xb1uDLb\xa5\x049Swz\xa5\x04o\x92\xa5\x04\x12c\xd1\xd8\x8a\x94v)\x81\xbc\x90\xb8\x14L \xa1\x89\x98\x12\x02\xd31%\x04&eJ\xa0\xa7fJ\x98\x94\xa0)\x01\x13\xe4\xdf\x87\xb9\x925%\x90R6%\xa0\x9dJ:\x90\xf9\x8e,>\x90\xa9\x9c\x12\x82\x87\x83\xb3\xd5H\xf0z\xa9t\x08\x1e\x13\x8aDTc\xe8\x9cI\x9f}|.k!e\x8c\xa44P'&\xe3\x0b\x96\x8edP \x9e\x94P \x08\xd9\x8f\x91\xf8\xbe$Q \xb8\x93\x0bqj!F-\x013v hYA\xda\x04\x84\x0d\xe0MQS\x80\x9e<\x90\x08\x00\xfe\xe4\x13\x1dH\x84\x00\x1a1\x00\x93\xa6\xa2\xc3q\x87C9\x05)Y/\x08t\xbe\xbc\x18\x1d|\xeeu\x1dHD\xa3(\xf0\xa8|\x1a\x1d\x8e0\x16w\x02\xab\x04\xe4v\xc2n$\xa4\x1c!L\x16\xcd\xa7H \x82\x9c0\x10&\x0d4\xd9A\x98\xbdo\xa2\na\xc0\x87\x0b^\x9fK\xa5P\xe0\x0dP\xf7\xa9\x18\n\xecA\xe8\x8e\xa5\x98\xfd5Bs\xf88\n\x9d\xed\x06\xe0 \n\x9f\xb03\xec\xd1!h\xee\xb5\\tQ\xc19\xce\x91\x83w\xf4`Wy\xda\x9f\x9d\xaa\x8f\x02\xcc\x9d\xd5\x1dH\xe3%\x17\xf8I\x86\x0c\x8fq\x06\xc4\xf8\xc3\xa4Q\x9ch\x1c\xa1_\x95R\xe0\x08w\x0e\xed\xde\x1b\xe8\x1b\x8ax\x9a\n\xa6\x00\x17\x8c\x1c:F_\x88q(^{\xe0p(FD8p(jO\x90o(Z\\\xe8\xae?X7\xac\xff\x89*\xa2\x02S\xd0m\x80\x926\xfba\x18\x9f\xe6\x8d\xa7\xe0\x10n\xe1\x14t\x05\x82\xca1\x9a\xdd6V\xa7\x8dg\x89|\x0b\x84\n\xe1D\x10\xcfW\xcf\x87\x16\xa1H\x0c\xc5$\x06_\xe2\xc3-\x83\x02,\xb5\xf5\xf7FJ\xe2b \xd1Q\x8f\x88\xa5Bp\xf9mU\x08\xf1F(\x12z\xb2LG;\xc6H!\x85\xc6\x80A\xf7\xd5\x97\x14\x14h\x08\xfc\x1b\xa03\x86\x01Z\x02\xff\x8cr\xc0\xbc\xfbc\xc5\xe6~K\x8f\x80\x8c\x15\x9b\x7fu\x15\x9b\xcdqc\x01J\xe9\xcc\x1a\xb7\x83\x8d'\xa8\x90N\x06\xf6r\x96\x87\xaf<\xac;\x0d\xfd\xfcL\xebfY\xd4\xaa\x99\xd8\x15\xc1\xacA\xb8}\xe1\x01V\xa4C\x84f{\xbd\xc93/;\x18\xb1\xdb\x98\xc5\x1c\xb5}\x08G\x91\xa3zO\xc0~<\xc2k\xf7\xce\n\x8a\x8br\xdc\x00\x9e\xc8\xfe:\x1bT'\x8e\xa9\x0d\xa2\xa6\x06\xd1\x99cj\xe2\xae\x9f\x11\xe4\xd4\x01\xc0\xe5\xc6\xa0+dh~\x1f\x1f\xf3[\x7fG\xfb\x85\x00\xcf \xc8\xcd\x86\xa8wA\xec\xd0_\xdb\xc2\xeb/\x02z\xaf\x8ei\xce\xec;\x1a\xa1\xb4\x84N\x86\xfb\x90L\xb2\xccUN\xc2QD\xc2*\xa6\x1c\x81\xb4\x8e\xa4D\x97\xc8<\x96o\xfb\x16\\\xa5\x9e$\xc4\x99d=\"\xfd\x101\x19\xc0L\x08\xfcF} \xf3u\xe8\x17\xabd\x0f\x80\x15\x93'\xdd\xd0\xe7\xd2\x02\xdc\xc4\xfd\x1a\x12\xc2c abofW\x17\xf8X\xd3\xcd\x94G\xbc;yv\x94w?\xf9w\x93w/y'\x00\xfeI\x00n\x17\xcd\xd3\x95o\xff\xcc\xb5{\x9c{\xc7\xbfs\xbc\x93\xf5\xed\x1a\xe4\x9e\x99\xd4\x8f\xcf\xe3\x06\xbe\x0eL\xc8-E\x01\x8cxL\xed\xddi\xff\xa6\x93u\xea\xeb\xb7\x96\x1d\xee\x98\xb9\x95K-\xfb\xd9\xb1\x93]{\xd8\xb1{=\xeb\xee\xdcF\xce\xbd\x1a\x8exn\x07\xb6\x8b/\x11k3fx\xef\x96\"bum\x1f4\xbb\x1b\xae\x16\xce\xb6\xfa\xb5\xc1\xac`\x07f\xa2\x8f\xdf\xbb\x0e\xce??K\xca\xfa\x9d2K\xc8\x99\x8d\xf6\xc0\x98\xf3\x07\x86\x1b\xd9bh\xa41\x111$\xe9\xd0b@\x19ME\xbe:H\x9c\xc9\x84\xf2`\xdf\xb8!\xd9\xce\xe9\x13\xc7\xf8\xc2\xcd>p\x0b\x99M&p\xeb\x8a\xd8\x84\xe7\xd8\xb7\xedEa\xb2o8|\xd8\x01\xdc;o\xfe\x89\xd7R\xedT\xc7\xdd\xaa\xb8\xc3\"m\x16r}\xf0i\x8a\xc7\xf24y-\xccV\xcb\xb2\xdbw\xec\xe5\x9c\xd1hp>b\x8bo\x98\xda\x9d\xd3\x9fJE6\xdd\xd7\xeb\xf7\xf1R\xc7\xe4\xf2\xe5Rq\x99}\xb6T,\x1e\xdf,\x15\x9d\xc3\x07KE\xe5\xf7\xb5\xba}\xac\xb4\xfef\xf0\xa5\x0e}\xa8\x04\xc5c\x96\x83\xc2\xe0\x13\xb5K\xb8\x1e\x12\xcd\x07\x1aO\x08\xed\xa7_\xe1 a\xf39\xca\xf1\x1c7)\xc3\xebK\xf4\x10\xc5\xee;\xa4\xf8\x0c \xbeB\x82\x8f\x10\xe7\x1b$\xfb\x04\xe7N\xf2B9\xf2<\xcb\xe0\xe1\xcc\xe3\xd5\x81\xf38\xe6\x90\xd8\x0d\xc3\x9e\xd1\x01\xe7*w\x16\xeep\x1bW\xac\xd3\x1dm\x96\xbbs\xf3b\xbf$\xd6\x88<\xfd\xed4~9_\xe7I\xeb\x9b\xfc\xae\xdf\xb5\xedb\x7f\x9b\xff7\xd0\xdf\x19\xaeqh\xc4\xfd\xbb\"\xae6W\xb9h|\xae|\xd1d\xdc?\xecXU%\x17LEd\xf7^\x97V\x14\xb5\xce\xef\xb1X\xf4\xca\xf5\x9d\x9c\xc5c8\x13\nI\x92U\xa6\x05iMm\xfd\xc5pZ2\x02K.\x19L\xa1\x04U\xc4h\xf8\xf4\xea\"\x83-e1s\xd2\xd0\xccg\xd4\x9ch't\x18/Q8\xec\xac\xf0N9\xc3\x11\xdc\x10M\xf2\xd1$\xff9\x9b\xe4\xc7\x1e`\x82\xd4\x99\xe1\x06ga7+\xb3\xd9Y\xcd\xcahNnp\xf0\x82\x83\xc5\xc2P\xce\xcb\\3\xe4\xfd)\xf00\x15 \xdfd\x1f\xcfX\xee\x165>\xef\xb0n\xf5&k\x87\xc3\xeb\x88O\x872\x7f\xa3\xebQ\xd6oFW\x0f\x8f>\x05X\x9d\n\xacz\x15\xcc\xa4[Y\xe7d\xd0\xafl\xdf\x9at,\x98R7w`.\x91\xed\x1c\x1e\xaf\xd6L26\x91\x10\x04\xddt\xbbX,\x98;\xf8Q7qLs\xea:\xef\xc7N<\xbd\xa1w(\xd2|\xc3>\x85\xf0\x98\xe1\x9a\x8b\xeb\xdd\xbc\x91\xc5\xb5\xb5d\xfb\x92U,\xaf\xc5\xa5\xb6d\x1f\x8b\x9a\x9d\xf0\xff\x917\xcd\x13(\xca\xe6\xd2\xc9O\x04&\x8d\xe3\xbd\x8a\xe8\x9d5\xa1\xb7\xc55)\xdb\xf8O\x17\xff\x7f\xf6\xfe\xb59\x8e#I\x13\x85\xbf\xf7\xaf\xf0\xe5\xfb\xda\x90\x9c\x01\x8b+\xf5\xcc1;\xdcU\xdbB$%\xa1G\"\xb1$(m[[[!P\x15\x00\xb2Y\x95Y\xca\x8c\x02\x81\xd9\xed\xff~,n\x99q\xf1\xb8df\x14Z\xbdS\xf9E\"*\xd3\xe3\xe6\xe1\xe1\xe1\xe1\xcf\x13\xfd\xf9`\xb6\xb1E\x81\xdd\x81\xb6Z\xc7\x95\xd6\xa9g\xeeg\xf8\x16}\xee\xa9\xa6q\xdc\x88\x9cf\x968\xc5DO/c\xa7\x96\xab\xa6\xdb6\xdd\xe2\x8attq\xf7\xd5\x15e\xe4\xab\xc5\x1b\xbaz\xddTu\xf6\xd0\xaci\xddl\xa3}L\xb6\xcd\xbe\x8e\x99`\\)UEz\xdf\x85\x00k>\xd3Z:*D\x96[\xd5\xa2\xb5\xa2S\xf8\x9fV\xd5\x96lT\x81\xfd\xfa\xf2N\xac\"\x17\xb7T\xfd\x00\xd7\x15\xdd\xac\xc5ZU\xf3RT\x98\xac\xda\xee6t+\xf4_\x8c\xeb\xbec\xcd\x16\xb6\x94\xdd6kw\xdau\xd0\xd2_\xf7U+\xa3/7\xcdM\xb3k\x1b\xd6\x18}\xba\xaex\x03\xaf\xf6\xbczF\xdfn\xe8\x8d\xa8\xb1\xfa\xbf\xa6\xfd@\xbf\x90v\x9d\xdd\xdb\xe3\xccOk\x08\x1f^)\xbb\x1ft\xc6\xdf\x94\x81XsW\x17\xa2\xaf\x87\xbd\x8e\x82\xda!\x9fr:\"\x9f\x1cM +~@KL\x13-O%\xf5\x90\xa8/\xc5\xd9\xd3Z\x7f\xf4\xb4\xd3\xff\xcf;A\xeaBJC\xcfIK\xb6\xf9v\x99\xaf\x07\xfb\xbab\x0fKF\xbc\x85\xcc\x1aOnc\x96\xbd\xfb\x8f+\xa6\xfdAS\xef\xbbQ_\xf0\xa1_\xb7\xe4\x8b\x98\x1aKZ\xf3\xed\x8d\xf7\xc5U\xd3l(\xa9\xfd\xee\x97-\xb7\x0f\xf5d\xee\xd5N\xfe\xc2\x0d;\xff\xab\xd9o\xb0m\xd6\xfb\x0dM\xf5\xea\xff\xdc\xd3\xf6\xe1\xb5\xee\xab\xf3\xa6\xd9|\xa0\xdd\x8e/\x1c\xd9=\xbdk\x1a/\xff\xea8\x91\x7f+\x13\xd9k$\x1f\xae\xbeI\xfd,\x11\x7f~\xca\xffP\xd5\x1db\x02z_#\xac0\xbc%b\xf9\xd7\xff\xe6]\xaeu\xd3\xfc\xfa\xa5\xf5\xb9\xee\xa4\x0f\xe7\xafU+\xb3tv0E\xd2\x02u\xa3\xf5V\xce\xdb\x03\xc7$\x8f\xaa[Pu\xd5\x88Y\x96P\xff\x8d\xacV\xed^\x1f9\x0d\x8bKl5\x8b\xebQ\xbe:{\"\xa6\xeb\xf2\x05\xdf\xd2\xfe\xa6\x15:y\n\x1bTnw\x9d4_\xc7Po\x01\xcc[\xa0\xbe\xf2\x89\xe7K\xa0\x93Q>\xc1Z\xcb\x07\x9f\x98\x19\x9f\xa6\xc1\x8c\x93\xa7j\xb0\x9a\x8b\xdfa\x9cIs\xe60\"N\xcdj\xe4\x97\xfc\xc9\x9d\xb2aS\x9dM\xf9\xe4\xb9\x9cH=\\3\xc3\xb7\xbd)S\xd3\xf4\xc9Th>z\xd99x\\T\n.*b\xbcl\xe7z\xbf\x15\xcac\x0f\xfb\x88\x95\x04\xb3\xe2S\x96\x13S\xce\xc45\xa5i\x87\x83\x93\xd1\x0b\xca\xcc\x83[G\xb9\xac\xae3\xa2sf\xd7\x9b\xd7\x18\x0eS\x8b\xf7\x9d\x9e\xbc\xf5\x0d\xef\xb4\xdc\xc1\xc0\x9a?z$L!\x93\x87\xe1\x17\xb5\x05<\x95\xab\xe6\xe8\xb1\xb0\xb6\x90\xa9\xe8\x8a\xd35\xee\xb7V\x97\x0f\xbd\xac\x7fe\x0d\xfc\xca\xeb>\xae\xa3\x03\x0d\x9c\xd0\xdb\x8e\xa4\xb1].\xb7\xcb\xa3;xg\xc4\x17\xbc6\xef\xfc-\xb8\xf8\x13e\xb4\xd5\xa1Nc\xc7m\x0eL\xd6\xe1J Z\x01aC\x1d\x8fZ\xc4>\x8cG/\"_&\xa2\x18\xc3\x97\xc1H\x062>Q\xfdP\x9a\xa1\x02 #\xf5\xa0\x9f\xb4\"{\xad\xeb\x84\x7f>R)V\xfd\xa7\x01\xc5\x18^\xb0\x94C\xfe\x99\xff\xd5\xb2j\xd0\xd2\x15\xad\xee\xe8z\xb2\x92\xb8\x95\x81\x88\x0b]2\xff5\xe8:G\xbd\xdf\xb0\xdb\x1c\xf9,\xe52OvC\x02\xd5\xc3\xdc\xe59\xbe\x89',\xe4*\xe79,\xea\xac\xd0\xb6\xba\x11\xdd\xce7\xb8\x88\x10c\x8e\x8d\x9ab\xef\xf7\xacc\xa4^W\xf5M\xe1\xddk\xd6\xcc\xf0\xbe\x85\xe3\xb4\xf8\xbf|Z@\xb4K\"\x8ai\xee\x1e\x9b\xe1Wx\xb6\xaf_\xe8\x15\xae~\xee+\x97YQ>\x9b\x88a\xd6\xab\x9a\xde\xefh\xddUw\x94{O\xac%\xab\xcf'|\x03\xd1|\xe9\xa0\x13\xdd\x01\x1d\x11q\xd6\xd5-]}No&2f\xd6\x84\x89\x8e\xf4\xc6\xd4E\xf5\xe3F\x80\xd3FO\xf3N~\xe7N\xf3\xac\x0dE\xf6\x06y\x08R\xedh[5\x81\xa0\x13:\xcd\xd0\xb3z\xf5SKV\xcc[}'m\xa5\xedn|{Gkfg9\x0c\xba%:\x0c\xe8\x9dB\xcd\x0f\xcf\x0f\"\x7f\x88k\x01W\xb0jU11\xd7U2S\xc7\x9aVd\xd4\xd9\x1f]\xdc\xf2\xf7;\xa8)]\xd35W\xd6\x15\xd9\xac\xf6\x1b\xc2\x04\xbc\xb0mvm%\xfe_\xce\xef\xe6\x1a:F>K,\xffgZ\xdb\x11\x16\xaekCPE\x83:HK{W\xb1\x06r\xcd(\x9f,\xb2\x19\xb7\xa4\x83f\xb5\xda\xb7-\x0dE_\x94\x82\xd8;r\xf5\xb7\xb83\xb5#7\xca\xc0\x05\xbdx\xfd\x82\xe3\xc9\xf7\x7fV\x9d\xa7\xa7\xd4$7M\x80/\x03\xd9\x9c\x88\xca\x053\x88b\xfa3\x94\xa2\xad\x00\xff_\xd6\xc0\x15oN\xd7\xc9\xa1='7\xf4\x03\xfduO;\xb6\x90\xbf;B\xe46\x8f\x7f\xce\xc5\xf1\x8e\xe0\xbb\x98\x8e\x01\xbd\xbe\xaeV\x15\xad\xd9\xe6a\x01g\\\xb16\x1b.\x9bnw\xec\x01*\x97\xbc\x9d\xdd\xd2\x96\x8a\x81\xaf\x1b\xd8r\xc5S\xc0LS\xf9\x90t\xadd\xa7 \xb30\xc4\xe5#\xe38\xbc7\xc4\xff\xd4\xfb\xed\x15m\xb9\x02\xab\xaa\x18\x89\xa5^\xfd\xcd\x8eZq\xc5_\n!\xee\xda\xf4\x85t\xd0Qv\x02\x15\xeb\xb8\x1e\xee\x85\x0d\xde\xd7R\x99\xd6\xd0\xf0~\xf8Ru\xb1\x84\xa6\xa8\x15\x9d`\xd2\x95\x84\x11v\xbc\xff\xf4t\xb5\xdao\xc5\xd4_\xbfv\xb6\x16\x19\x86\x1c\xdb\x8d\x1c\xc2\x96\x1f\x83\x9d\xd3\x83\x9dx\x03\xe3\n`\xadC\xc3\x0b\xc6x+1\xae\x13\xf4\x99\xee\x18\x10\xdeS\xed\xbe\xae\xf9\x92!\xa6\x12mO`Ejn=\x8cU\x81\x01\xa9\x1fD\xcac\xb6\xba\xfa\xceK\xb6\xae>\xca\xc9\xd8QQ\x0f\xa6\xa8S\xbd\xf8\xdew\x97\xf2\x8a\xb8\xedY\xba:\xb8u\xd9:\x1a\xf6YQ\xa5@WH\xdfC\xf5\xbeM\xf4\xf4$\x7ft\xa4'Z\xc8\x07\x9d\xef}\xaa\xa1\xd4HV{\xa7s\xba\xd9h\x06\xac\xd1\x9b\x1cj]\x15\x05\x0728\xfc\xf5\xe5\xbe\xf5R\xe0g\x04\x11N\xe1\xd3\x87\x1f_\xb6\xb4k\xf6\xed\x8aBM\xb6\n\xdf\xbb\xaf\xab_\xf7t\xf3\x00\xbca\xac\xba\xae\x94\xef\xcc\x14\xa2\xc2',\x02\xe8h[\x91M\xf5\x1f\x14\xd9\xe4\x8b\xb9\xbfj6p\xb5\xbf\xbe\xa6\xad\x86b,\xa4r\xc8\xba\xc3v\xdf\xf5\xa0c\xbedl(\xe9\x98/\xab\xa9)\xed`G\xd8\xad\x10\xee\x89\xeau\xde/\x85\x7f~\xbd\xdfl\x1e\xe0\xd7=\xd9\xf0\x1eX\xcb\xfeQ\xa2EO<#\x1dT\xb5\xff\xf1%/\xf2\xe5M\xd3\xdcl\xe8B\xb4\xfdj\x7f\xbdx\xb3o\x85\xee^>\x975\x16\xe2\xba\xdbf\xbfY\xf3\xe5\x927\xda\x93\xb4\"uSW+\xb2\x11\x16\xc0/\xe9\x19]\xdc,NxW {\xf8d\xf1DL\xb5\x86\xf1\xc5\x9c\xee\x18]?\xc7\";g5\xec\x84\xf1X\xd1\x13`\x94l;\xd8w{\xc2\x9b+\xf3\xecw\x15w\x9ckn&o)\\U5i\x1f\xe4\x11\xe9\xc3\x8e\xfat\x97Bi\xd8-}\xf0\x8b\xe26w\xc5\xa0b|\xe6\xef;\x13~\xc3\xf8.\xa4\xb9\x86\xd3\xfaa\x01?4_\xe8\x1d\xf7\x1e\xf8D\xff\xf4\xe1G5\xc3=y\\\x04W?_\xffV\xb7tK\xe1\xf2\x96\xb1\xdd\xe5\x89\xfcow)\xd0\x02u\xa3~=\x11\xda\xc3\xfd\x93F\xcc\n\xd1\xe2\x8e2\xd8\xef\xa2'wm\xb3\xde\xaf(\xf7\x0eh\xdb6\xde\xfd\x1c\xa26C\xf6\x7f'\x0c\xb4Xb\xb5\xe9_\xf1\xb9\xda4\x9f\xf7\xbb~\xabvE\xf8\x0e\xb6\xa9Q\xb3\x02\xbc)\xa2\xec[r'\x86~k\xe8\xe8Z*)\xd1U\xe5\xff\x7f\xd7Tk\xeeo\"\xa2d\xc1b\xfa\xb5\xf4\xbai\xe9\x89\xfe\x90\xcb#\xac\xba\xaa6|\xfd\xe7kU\xa77\xd8\xdcD\xb4wt\x8d\xc8kjn\x86\xea\x1b*^\x16sc\x01\xcf>uTS\xf4\xf1Vs\xf5\xe0s]\xea\x07\xa9\xc9\x0d\xd6\xca\xab\x96\xcaUO \\\x8d\xaf\xa8v\xcb\x8c\x85\xd6[W\xd5\xe2D\xae\x9a;d\x81\x96MR*i6'V\x83\xcb\xd3\xfa\xe1r\xe0\x02!5\x90\xf6\xaab-\x9f4\x91\x9ah;H6\x8d\xd3\x17r\xa7b\x0f\x05\xb7V\xc2\xa0\xca\x9a\\\xf9\xee\x86Y\x96\xf6\x1e\x1c\x959\xd7\x8a\xbb\xa9\xaeD\xf5\x94\x1d\xed\xa0\xdb\xefvM+V\xa0\x1dY}~\xb9\xaf\xf9\x7f\xf8\xba#\xc7\xb1\xc3f\x89\xbf\xe06\xd7\xb0g\xd2@\xe8\xe9\xd7\x81\xcc\xa4\xa8\xe4\\\x84\x1bZ\xd3Vl\xa0\xe5\xe6\xa8\xcf\x168u\xec\x91\x1c\x02[\xfe\xdb{\"6!_\xbd\x82s^?>\xefTU\x89\x89^}\xfd/\xff\x82,\x03\xdf5\x0d\\7\x0d|\x03\x8b\xc5\xe2\xbfy?\xf3\xc6\x92\xfa\xc1\xff\x81\xd4\x0f\x0b^\xdcwm\xb3}v\xdd4\xcf\xfdW\x16\x0b\xdf\xceW\xd7\xf0\x8c\x7f\xfaIT\xf0\xa2y\xf6O\xfc\xdb\xe7\xf0\xbf\x11\xdb\x86}\xff7\xbc\xed_'\xda\xfeGrG&7\x1e\xbe\x11\xbe\x06\x97:\xa1\xa5U\xf7\xec\xbb\xa6Y\xac6\xa4\xeb\x02\x0d\x95U\xe0/\xcb\xba\x1b\x1f\xf8e9=\xd0w\xc1\xef\x13]p\xfe\xc0n\x9b\x1a\xe9\x04Y\xfawM\xf3l\xb1X<\xc7\x06Zv\xc03\xf47\xa1\x04\xa2[r{\x85\x7ft&;\xe5\xcd\xdb\x8f\xaf?\x9c\x9d_\xbc\xff\xf0\xdc5\x8a\xa0\xc4KE\xc1\x0b\x90E\xe0\xdd\xf1\xaf\x89\xee\xf8\xbe\xf1{Bt\xc5\xabo\xe0\x9fvW\x8b\xef\x9a\xe6\x7f/\x16\x8b\xbf\xf9/\x91\xfa\xe1\x84\xbb1\xfc\xcd\x9d\\\xbc\x7f\"mwK6\xbc\x93\xf0\x8ab]\xe1\x96\x86\x14U];\x05}\xaa\xb7CQ\xa2\"B!\xc5[\xff\xe5\x1b\xa8\xab\x0d\xaa`x\xf9\x8e&]\x88S\x8e\xd5\xe7\xde\x06i\x87\x12\xae\x1e\x86\xe5][I\x19\xec\x7f\xd0\x18|\xbe$\xda\xe2\x9e\"\xcb\xf5K\xbe7\x12l\x05\x0b\xee\xda<\xe5>no\xb1\xb95\xd7\xe8P9b\xb6\xc0\xde4\xd6\x9b\x07\xed\xcf{\x9b\xad\xdemR\xbbz\xa6\xf7xO_>\xb5\xc5\xa9\x0d\x85.Z\xee \xa8\xd2\x9e'\xd7M\xb3\xb8\"\xad\xa8\xf4\xfd\xcb\x87\xc5\x7f<\x91-\x96~\xb1\xef\xe2\x8b\"\x9f\xf0\xf7\xb8y\xb6~\xfa\xe3\xc7\xf7\xef\xec\xbf|\xf3\xcd7\xdf\xf8}\xcf\xdf\x1b\xf6\x96\xd2\x9fh\xf8tQ\x8b\xa9\xf4\xaf\xf7]\x8fi\xb8\xd9oHk\xcb\xf1?g\"{oX\x06O\x80n\xaf\xe8z=,\x88'jmuv\xa4\xc6\xf2$\xa3{\x97\xff\x837\xfbR\x85P,\x9a/\xdd\x89\x0b=\xfd^!\x0e\"Y}\xe6so\xd8P\\W\x1b\xea\xdb7=G\xcfi\xdb55\xaa\xcej\xe7\x7f]\xb5\x1d[\x8a\x9e\xff\x06\xbe\xf2%\xf5/\n\x16P\xf5\xde\xd7i\x8b\n\x80\x96\xfaD\xb4\xff\xc9+x\x82i\xb6\xdd\xac\x85\xac\xfd\x93\x13L\x8e\xa8\xf7;\xb2\xe5\xb2\xfe\xbb\xac\xe2\x1f\xd0\x17y\xbd\x9d\xf7R\x95?\xbbV\x8e\xad=\xc6r\x84\xaa\x0e\xbe\xd0\xcd\xe6\xc5\xe7\xba\xf9\"\xe3\xbc\xb7\"\x14\xaf\x02\xb3\xbe\xa2\xda\xeat\"\x9d-G\xc7\x86S?U$W\x1c\x81\x1c\x17jc\x0b\xbc\x14J\xacu\xe8\xb6\xd9\xac\xad\xd0\xb0\x98\x02U\xdd\xeb\x1e\xa8H\x82R=[\x96\x10\xdfk\x1c<\xe3\xf3W7\xd7\xdb\xb6\xea(\xca_\xfe\xfc\x97\xe7\x88r\xce\x19o\xbb\x00|\xc8E\xb3\xb9\xa8\xaf\x16_\x7f\xf5u\xf7\x04\x19F\xfd\x7f\x96W\xdd\xf3\xe7\xb5\x94\xed\xdbZ\xc2\x0c\xf4\x1f\xbb\xe3\x99\xf6\xf1L\xfb\xb7~\xa6mcB\x91xyNn\xaf\xf1\x99\x92\xf6\xe1\xfc\xb5\xae\xa4w\xa0\x8d\x87\xea\x8b\xc7\xe9\xb3\xe6\x04C\xc3\xef\xc1\xe1\x8fo\xea\x0b\x06\xde\xc3a\xf7rA\xf7b!\xf7`\xc0}F\xb8\xbdT\xb0=\x1ej\x9f\x14h/\x1bf\x0f\x06\xd9\xcb\x86\xd8\x03\x01\xf6\x99\xe1u\xaf\xbb}\xcf\xbbth}f`\xbdpX}FP\xbdtH\xbdX@\xbdl8\xbdX0=\x1dJ/\x16H\x0f\x85\xd1\xe7\x04\xd1\xd1\xa09\xe2\xb9\xfa\xf6f^\xc0\x1c \x90O\x0c\x8f#\xc1\xf1\xa4\x9f\x14w\x1e\xbd\x15tbP|\x08\x82c\xfd\xfb\xbbt\xd9\x85\xc3\xe1~0\xbc@(\xbch \xdc]\x0cg\x06\xc1\x91\xc0\xf7\x9c\xb0w4\xee\x1b\x08y'\x03\xde~\x8c-?\xd8\xed\x7f\xfb7\xac\xad\x93\xc2\xdc9\x8dM\x85\xb8\xc3mK\x86\xb7G\x04\xb7\xedX\xc6\xcc\xc0v4\xac\x1d\x0ej\xc7B\xdah/\xe4\x86\xb3S\xc1l7\x94=#\x90\x9d\x11\xc6\x1e\x1f\xc4FB\xc8\xa9\x00v\xa1\xf05R\xb2\xa5)E\x03\xd7\x85\xc3\xd6E\x83\xd6%C\xd6\xc1\x80\xb5\x1b\x05t\x83\xd5eB\xd5\xc5\x02\xd5e\xc3\xd4yA\xead\x88:3@\x9d\x13\x9e\xf6\x82\xd3~i\xb9\x81\xcax`:3,\x9d\x11\x94\xb6\xaa\\2 ]8\x1c].\x18].\x14=}t\x93a\xe8T\x10Z\x9a\xefH\xf0nJ\xe4\xae\xbf\x1f\xf6\xc3\xf9k%\xcb\x8b\xd7\xdd4w\x06\xc5\xe8\xae\xe9\xaa\xfc\x84\xe8\x9d\xe2\xcbF\x08\xabsr\xa1\xd7\xb2\xb8&\xce\xbd\x8e3\xc0\x96\xcd\xd3\xfd;\x01\x03\xc6\xa1\x02\xea p\x80\xb3\x9a=&\x1c@)\xd0\xd0&]g=\xd6\x8a\x93\xa9\x06\xb2\x12\x11o\x93\xd1D\xfc\x95U}\x16\x94\xd6\xae\xb8\xb2\x8e$\x1d\xddV\xf5rm\xaa9\x1cU\xea7\xa2R^\xd3~\xaa\xeaj\xbb\xdfj\xddQ\xe0\x10\xad\x16\\eh\xcd=6y\x8d\x03HP\x86\x96\xb5%\xf7z\xa0\xf3\xe0\x1a\xe1\xf8\xc1O\xe4^\xd4C\x8a\x11\xd58\xe5-\xe5\x8b\x16m\x85\xee\xea*\xf2\x8e\x1d\x14\x17\xce\xea\x8aU\x16~_\x86Y\xc0\xbc\x16\x11\xb6M\xcdn1\xc0\xb9\xa5\xe2>\xb5M\xa7\x00\x16\xe2%\xee\xe5\xc2MsG\xdb\x9ap\x93\xaf+\xd1\x05\xa6\x8f\xbe\xeb {\xe6\xcc4\xf6\"\xb0\xed\xdb\xf1\xe39\xce\xf1\x1c\xe7x\x8e\xa3\x9f\xe39\x8e\xfe\xfcx\x8es<\xc79\x9e\xe3\x1c\xcfq\x8e\xe78\xc6\xbf\x8f\xe78\xc7s\x9c\xe39\xce\xf1\x1c\xe7x\x8es<\xc7\x81\xe39\x8e\xf5\xda\xf1\x1c\xe7x\x8e\xa3\x9f\xe9\xa3[\xe8\x1cG\xde\x9c\xb7\xf7\xe8\x8c\x1c\x1f\xdc\xbf\xe3U\xdfE\xba\xfcxqz\xf1\xe9\xe3\xf2\xd3\xbb\x8f\xe7o_\x9f}w\xf6\xf6M\xf4\xbd7o\xcf\xdf\x7f<\xbbX\x9e\xbf\xfdp\xf6>\xfe\xea\xcf\xef/\xce\xde}\x9f\xf3\xe6\xf9\xe9\xc7\x8f\x89r?\xbc\xfd\xe3\xdb\xd7\x17\x89\x97\xbe;=\xfb\xd1x\xa5\xbf86\xa7\xb1\xe1X\xb7\x0e`~\x14=-\xfaRx\xbe\x06\x07\xa1\x1a\x05y\xd5\xa1\x11\x97\xb5\xf4%\xda\xe9\xd1J:$\xedr%\xec\xc3\xd3\xb2\xecE\xbc({\xdc\xfc\xd2\xec\xdf\x8d\xc0\xbeS\x0c\xac\xf7\xc2\n\xca\x9a\x88\x80\xb0Q\xb0\x1d\x19\x0fT\xc5\xd2\x0b\xbf&\xd6\xcfy\x15\x91q\xf9\xb1\xf5\x90Z\xe7W@\xfe=R\xb25\xc6\xd2\xac\xdd\x123\x90'!*\x89\xe2\xb5F\xfb\x15\xd0\xbf\xcc\xa9\xc2\x15\xa55\xb4\xf4\xaft\xc5\x925\x91\xd3\xc6\xaf\x87\xfc\xfb\x9cZ\\\x93j3\x14\x7f]\xd5d\xb3dd\xb3yX\xca\x18\xd6\xab\x8c\xe9\xe7\x7f\xa5O\xa4\xc5/ ~Q11\xed\x99\x0c\x07#\xbf\xdc\xd2\xda\x10&\x10Ar\x81\xe9\xeb}W\x11\xb8\xf9p\xfe\xfaD\xc5\x8a\xf4\x11T\xdd0\xd85;\xc5y\xb7\xafY\xb5q\xb6\xcdZ\xc4\xd3\xce>\x1a\x12\xeb\"\xad\xd7\x13\xc9\xdd\x9f>\xd0\xeeiVd\x85\\u\xdc_\xcaz\xf7i\xdd\xe4 \xad\x9b%\xf7\xdc\x96w\x945\xc9\x0f\xba\xfd\xd5\xb6bKVmso\xf9u\xef*\xd6gg\xb4^\xcf\x11#/Z?\x9e\xb8\xfeFO\\\xd5\x0d\xf8\x1d#\xed,mQrf)\x8b\xd5\xc9zuw\xeelh\xa9\xea\x99-wM[e\xeb\x90c\xcf\xc4\xa9\xe7G\xc3=\xf3\xaah\xbae9.YjY\x0f\xbe\x86\xb9b 7,\xe9\x82E\xdd\xafl\xd7\x0bW\xf8\x12.\xd7#\xb9[\xa919\x84\xab\xe5\xb87\x8f\xeeb%\xcb?\x8ck\xe5\xb8U\x8f\xe9R\xe1\xee\xd4c\xb9R\x83\x1b\x85X\x1au\xf5\x92\xd0\x8f\xd1\xa8\xd7\xc0z\x99\xe5\xa6\xa0y\x1a\x90s\x0c\xe4\xc1\x9e\x91\x04\xbd\x88 lE\xc5\xd6y\xf8\xbf\xf7\x86\x8f\xc9\xbe\x80'i\x8eC\xe0 +|\x8f\x87\xe5\x00\x15M\xf9\x03'\xed/\x9a\x11\xebL\xae\x9c\x84X]\xd9\xcc|X\xb3\x98\xf1\xf7h\xe8\xc4\xac\xc3z\xbd\xc1\xe9\x1eU\xe4\x08\xd3A`\xd2Ot\xa5\xff\x13_\x1b[\xce\x18\x146\x07\x07\xb9\x1a\xf6\x0f.\xe7\xf9,\xb3`\xeb\x974\x11\xa8\xda\xeb\xfa\x1cYX\x8e,,\xff\x18,,\xeez2b\xdd\xeaF-\\\x13o\xd9T[\xf9\xe8e\x9b\xd6;~b\xb2\xbcs\xb3\xa52D\xc7\x1a\xf5\xfe\xa4\x19\xa5\x8bBn\x89\nj\x90U\xd7\x1fi}\xc3nu\x08\x12\xcd\x15\xef\xf3\xc4cm\xb6_\xcah\xb4\xfa`R\xabQ\x98\x02\x1c\x1d\xea\xe9kh\xd1\x15t\xbeC\x0dn\xe3g\x81\x1d \x01x\x80\xec\xd9\xe2'\xfb\x15\x04?@\x00\x00\x01\x0e\x08\x02\xe4\xe9A|>\x9a\xafd\xccF\xf1\xfa\xa4\xb9\xf8\xeb\xbei\xf7\xdb\xcc\xce\xcc[\xd1\xfd^V\xa3\xbf\xa3\xed\x8a\xd6\x8c\xaf\xc5\xdc`\x89\xd5\xacc\xe435\xae\xe2\xb8k\x18U\xea\xa1\x8eW\xbc\xb5\xfd\xcaK\xcc]5uW\xad)WH\x11\xa7\xb3\x16\xe7\xdb\x96v|<\x1f\xa9\x8d\\CZ\xa62V\xfeD\xc5)\x0d\x95`\x16S\xdf\xb9/\xb3\x8072\xd0\x87k\xd1\x7f]\xfc\x9b\xd9\x90;\xca\x9a\xe5#\xb7F\xba\x02\xcd5\xfcL\xd5\xd8\x889!.\x86W\xff\x14\xc9\x04n\xf3\x92#\xc6\x1bC\xd7}\x07\xe8&\x7f\xf5\xf2\xf7\xc8\xce\xf8\x00\xd76\xfb\xfe\x84\xaa\xfch\x8fB\xb7\xfa\xd5\x94\xd9W0\x9c\xe5A\x90 \xb6F\x86WH\x16\xb8\xd5e\xf6\x8e\xb1 4 \x12\xb7\xbb\x94\x84(AI\x98\x12\xc4\xefx\x99\x05W\x82\x82\x90%H\xc2\x96`*t \xe6\xc0\x97\xb0\x1e{\xd8 } \xde\xf72\x03\xc6\x84\xc8\x92\x8eT\xf0\xce\x97yp&D\xdc~\x17\xbc\xf7\xa54\xac \xe6C\x9b\xa0<\xbc \xe6A\x9c`\x1e\xcc \x9f\xa2h%\x8b\x81\x9f\xa08\x00\nJ\x82\xa0 \x0b\x08\x05%\xc1P\x10\xbd\x1ff\x1e(\n\x9b\xe3\xe8\x1d1\xd2\xd4$\xa1R0\x1b.\x85\x08\xc4n\x8a\x99\x0c\xa2\x82\xd0m1\x89%>rcL\xce\xfa?\x11X\x85\x99\xbd\xe0\xbd1\xa9z\xcc\x03Y9\xc2\x04\xe4\n\xbd=\xa6\x08\xd8\nJ\x03\xae\x00\x01]\xc1|\xe0\x95#\x8d!\xf7\xc8\xcc\x83bA\n\xa1\x04\xb1\xdbd2`Y\x10\xba\xc6b\x04<+,\xc3K\xcf\x9f\x05\xd5\x82\x11\x9d\x91\x82lA\xb2\xddI\xe8\x16\x8c\x83o\x01z'\xc2L\x18\x17\xa4\xa0\\\x90\xb8k&u\xdbL\xa4\x97r\xa1]\x90\x01\xef\x02\xf4\xd6\x99Y0/\xc8\x83z\xc1$\xb8\x17\x04;& \xfb\x82r\xd0/\x08\xd7\xc2\xd3\xb4\xa200\x98 \x05sDa\xf7\xd2\x14\x06\x87Aa\x80\x18\xc4o\xa7\xc1\xee\xa7\xc1n\xa8)\x05\x18\x83\x92\xa01(\x0e\x1c\x03\xc8\x05\x8fA\x0e\x80\x0c\xf2Ad\x90 $\x03\xfc\xc6\x1a\xfc\x0e\x93|\xd8Q\xea\xd6\x9al`\x19\xe4\x81\xcb\x00kFI\x90\x19\xcc\x05\x9a9\xb2\x90\xdblJB\xcf\xa0(\xfc\x0cf\xebC\x12\x86\x06\x19P4\xb0n\xb6\xf1!i\x10\xdb\xcd\xb8\xd04H\xa5\xee&\xdf\x0dB\xd4\xf0\xd7C05\xfcm\x0f\xaa\x86\xbf\x86\xc0\xd5\xf0\x17\x1d\xc8\x1a\x8c\xc9\x9d\x1e>\x88\xe5p\x94\xc8\xa5\xd6\xcf#\xe5T\x87\x8b;|n\xb5~\x10\x08\x19^\xa5\x03\xe7Z\x8f\xae\xcfar\xaf\xfbj\xf8\xd06\xbc\x1a\x87\xcb\xc5\xd6O\x18\xe2\x86\xd7\xe80\xb9\xd9\xfa\xb1\xa1n\x90\x80\xbbA2D\xa1s\x91\xf7\xc3\xa0(0R\x8b|d\xd4d\x91\x01H\xdd \xef\x98\x1d\xf4\x8f\x9f\x1d\x14\x01\xe6\xc1T\xc5 \x82\xf4&J,\x0e\xd8\x8b\xe6M\xba\xe9\x07Y\xf9\x0d\xbaR\xa3\xf2&\xd5G\xe3S'u[\xfe\xd1R\xfe\xd1\xc4\x88\xc9\x06\x82\x05\xd3#\x126\"=\xe1\xa1|\x92D*M\xa2t\xa2D\xe1T\x89D\xb2\xc4\xect\x89\xb2 \x139)\x133\x92&\xca\xa6Md%N\x94M\x9d\xc8H\x9e(\x9e>\x91H\xa0\x98\x96B\x81\n\x8a\xa6U\x14I\xac\xc8L\xad@\xbf\x1c\x95n1;\xe1\xa2t\xcaE8\xe9\xa2p\xda\xc5!\x12/\n\xa7^\xe4&_\x14N\xbf\x88'`\x14O\xc1\x08'a\x8cH\xc3\x98\x9e\x88\x81\n\x0bq\xd9\xcagF2F0\x1d#\xe9RDS2\xf2<\x8eri\x19\xf1\xc4\x8ctm\x8a&g\xc4\xd33\x8a%h\xccM\xd1\xf0\xc4 \x8f\x06u\x1e\xca\xa6i\x84\x125\xe6\xa7jd\xe4'D\xd352\x136\x82\xa7\xbe#\x936\xc2r\x90\xa3\xb0\xd9\xa9\x1bc:''}#\xdd\x0bY)\x1c\xa3\x938\xf0\x83\xc2\x02\x89\x1c\x19\xa9\x1c\xa9d\x8et:G\xb4\xd7\xc6\xa4t\xe4%u\xe0i\x1d\xb3\x13;\xb2S;\xa6&w\x84\xbb)+\xc1\xa3h\x8aG\xa4.\x88&\xceJ\xf4\xf0\xa4!\x89\x1fES?B\xc9\x1f3\xd3?\xfc*\xfb\xe9 \xe5\x13B\x12)!xR\x08\x9e\x16R21\xa4pj\xc8!\x92C\xc6\xa4\x87d&\x88\x8cJ\x11\xc9O\x12 \xa4\x89\x84\x12\x03\xf2S\x03\xd2\xa9\"\xa3\x92E\xb2\xd3E\xd0\x06\x95N\x19)\x9b4\x12H\x1b)\x9d8R:ud\xbe\x8ed\xa5\x8f\xe4%\x90\xd8)$x\x12It\x0f\x86%\x92\x8cK%I'\x1cd|\x10K'\xc9N(\x19\x91R\x92\x99T2!\xad$\x95XR6\xb5\xe4\xd1\x93K\xd2\xa3}\xc8\xf4\x92`BGR\xa7\x0e\x97b2\xaaN\x87M3 &\x9a\xfc}RMR\xc9&\x8f\x9fn\x82%\x9c\xa4SN\xd2\x81\x9fYi'\x9e4,\x0d\xa5t\"\n\x9a\x8a2>\x19e\xf2)d %%\x95\xa6\x10JKI|\x87\xa7\xa6$>\x8a\xa7\xa7D>\x0e\xa6\xa8d\x1d\x00c\xa9\x01\xa9D\x95\x19\x82#\xe9*\xe1\x84\x95#I\xdc\xe8\x14\x96\xc2I,\xa5H\xe2\x92\xa9,3T+\x9a\xd02Y\xee\x01\xd2Z\x8e\xfctG~\xba\xdf.?\xdd\xffA\xf3\xac\xc6\x11\xc9\xe8\x8fFeZ]p\xaf\xe5\x83\xe8\x82\xd1\xb9V\xc2\xe3 \xcc%\xe9\x0d\x99\xd3\xa8\x95\x1d\xc8Uo2\x0f\xd4?\xce\xfd\x0f\x91,:\xa4\xcbs\xc6W|6jl\x7fn\x18\x1d=\xa8w\x0d\xf3\xee\x0e\xc8\x1a\x9b`J\xdc\xf8Y\xcc\xeb\x90Gx-Sk\xecW\xe3+\xfe\x1b\xbak\xe9\x8a\xfb\xcc|e\xa1\xd7\xb4\xd5IC\x97RXw U\xdd1J\xd6*\xbd\xac_\xc2;\xca\xfc\xc3Pn#+\xda\xb9\xb6@\x1c\xd1\xaceH\xbc\xba\x86\xcb\x0d\xad\x9f)\xf9\xcf\xe1\x9bo\xe0\xabK\x15f'L5B\xb8\xdf_\xa88\xbe\xff\xca\xf5\xc0\xcfj\x91!\xe5\xfcU&\x0c\xacHG;kw \xcc\xb1\xde\xed\xb3\x06~~\x7f\xf1v\xf9\xfe\xfc\xe2\xec\xfd;38\x80\xe5\x9c#\xc3\x84\xe3\x90\x022\xa3\xef\xfd\xe9\xed\xc7\xe8\xef\xa7\xdf~\xbc8={\x17}\xe7\xdd\xfb\xc4\xcf\xcb_\xce.~X\xfe\xfc\xf6\xe2\xbd\xa3\x15*\xc8\x93\xae\xb8\x1a'L\x01\x0f\x9b\xd7\x8di\xb3|\x12\xde1\x1e\xe1\x83\x11\x03\x85\xbd\xed\x0f\x17\xf6\x16>h\xd8\x9b\xde\xd0\xe1/\x05\x06P>#\x86q\xf8$\xb5\x03\x00\xe0\xa6\xf2\xbd\x9c\x86h\xacN\x10\xfe)\xbd\x00I\xfcwS\xddQ<\x0d\x0c\xf5A\xd17\xc3\xc3\x13l\xa0\xb1S\xa9\x9b\x17\xcd\xce\xacZ\xe0\xe8\xd1\x1b\xd5W\xee\x1f\x0c\xa1\x0f\x8a\x0cp\x8cH\xa5\x02\xaf\xb0?\x82I?-\x17\xe5\xd1\xf2\xdf\xbd\x7f\xe5\xfc\xdb\xea\x85 \xf2\x06\x1ds%\x0f\xbf\xd8e\x88\x0d\xe1\x9d&\x18\x0c\x96&\x0d\xf8\xc8)\x9c\x8a&\xff\"\x84\xd2\xb5\xa1\xa5C\xdd\xf6u%\xe2M='\xa5\xf8\x9fn\xb7\xa9\xdc\x1b\x8e\xf8\xf3\xb1\xaaW\xf4\x95r\x19^t\xeb\xcf\xf0_\x17\xff\xfa{\xdb\xd2I\x0f\xfa)\xfe\xea\xd3\xfe\xddp\xady=\x8d\x1a\xca\x0e\xab\xe3\xbb3\x10y\xe5\xe2KA\x94\xd917\xdew\xf6\xe6DGhi{\xd2\xdfU\xeb\x0d\x87\xcf\xcah:B9\xae\x96\xa8E\x1e##\x7fu\xa3\x86x\xf8(\xed\xd2\x15v\xeaF\xb9u\x8f\xe4\xd8\x1d\xc4\xb5;\xbcsW\xde\xbd{D\x07/\xe6\xe2\x8d9\x8a@\xdc\xbc\xa2\x8e^\x96\xab\x97\xef\xec\xc5k?\xd5\xe1+\xe5\xf2y\xf5\x93\xac\xdf:\xf0\xca\xbf\x91\x8e\x80\x9c\xf4\xdd\xf1H\xe0x$\xf0[?\x12\xf0\xb7\x17\xb9[\x97\x0c6y\x11L>7\xeev\xc8\xd8\xb4\xb8\x970\xa0C\x81\xeafX/\xe7^\xba\xe0\x90\xf6\x87\xaeX@.$\x98X\xfb?\xa0\xb5o'\\\xa7\xe0\xc3\xa9\x8c\xab\x14B\xd7(L\xac5\xda\xe7S\xafMp\xfa|\xd4% \x86\xde9\x06U\xfcI\xe82\x7f\xa5\xaaoT\x15\x9a\x1a[D\xba\x98^\x7f0\xf2{2\xf4\xda9TB\xba\xd8;LB\xde\xb1\x0f\x91\x90\x17\xf0\xc3#\xefE\xbf\xbbds\x8c\xe5\xb5c\xa4^\x93V\x1d\xa4i\xcf5\xfb\x02\xe6\x9f\xfb\x13\x9e\x8c\xceA\xc3\x08Q-\xb4\x0c\xb0\x134@>t\xb7L\xe1\xd96/8`\x9f\xdc a\x81\xb9\x01\x0183\x0bpB\x01\xc5\x82\x00h\xd7\xbb;\xc7\x9c\xddbl\x87\x98\xda\x15Fv\x82\x19\xbb\xbf\xcc\x1d\x9f\xb7\x9d?D\x94\x0c\xdf\xb0\x1fc,\x99\x99\xcf\xc8\xd6\xbb\xd8\xa6;s\xbb}\xf0\x8dv\xe1-\xf6!7\xd7%\xb7\xd5\x8f\xb2\xa1\xc6\xb7\xd2\x81\xe9\x17\xdb\xdd\x14\xda8'\xb6\xcc9\x9be\xbc\x96S6\xc8%\xb6\xc6\x81\xe5\xff\xbda\xf6\xbc\xde6M\\\xca\xb0\x85\xccY\xcc\x88\x05LW\xc2`e\x99)\xdc8M5I\xc6\xe0(I\xbe!:\x90\xf9)bt\xca\x9b\x9a\xf9\x06\xe6\x80f\x05\xd7\xf5\xaa\xbe\x19\xb9\xcf\x0d\\w\x8aZ%K\xe1\x92\xd7\x9cZo\x9bu\x0b\xed\x85\x94\x8cq{ \xdf\x16f7\xddu\x87\xfe\xf3x\x9b1\xc7\xa6\x9c\xfd\x00\xd4\x86\xf8-)fG|\xd1\x13m\x89/\xa8\x84=\xf1\xa5N\xb1)\x98\x94\x82v\x05\x10G%\xbem\xef\x97\xfd\xd9nI\xd0!\xb1\xe6\xfd\xe2\x8d \xed\xc8\x98\xe73w\xf5\nI\xd2\xc4w\xf6.d\xe3\x10\xfb7\x14P\x12\xdc\xbe\xe1 \x92 \xee\xe6d\xc8\x88)d\x0eVD#CLyy\x90\x10\xbcYJ\x81\xacy++\xa5\xc6Z\xca\xe2\x7f^\x89p7\x90\xf5\xba\xa5\x9d\x88\x18\x8a\xbf\xb2\xea\xce\xf7\x92\x02z:rAFo\xe2>j\xd3oA\x9b\xbc\xa6\xcd\xbaC;v\x7fv\xda\xfd\xb2C\xf3\x05\xef\xcc\xc6\xee\xcb6\xef\xca\xb6ja\xa9x\xc8\xafSE\xe7G\xb7\x17\x1a\xdd\x91=i\xa6YvE\x99p\xe0\xa8\x1b\x0b\xd0\xd3F\xe2n\xa9\xb0SQJ\xda\x18\x1dmI*\xda\x824\xb4\x11\nZ6\x87~\xb6\x1c\xf5l\x8avv\"\xe5\xecd\xbaY\xd1n\x1f<\x1e\xa1\x9a\x9dL3+m\xaf'/H1;\x87^\x16\xf6;O^\x88Zv\n\xadl\x8cBv6}l\x16u\xec\x18\x9a\xd8Y\x14\xb13\xe8aQ\xb3R\x94\x06\xb64\x05lA\xfa\xd7\x1c\xea\xd7\x82\xb4\xafa\xca\xd7\xa2t\xaf8\xd5+\xcb\xa3y\x9dJ\xf1\x1a\xb8k\x17\xa3w\x9dL\xed\x8a\xd2\xbaF\x96\xe2\x08\x9dkj\x95.E\xe3\x1a\xa6p\x8d\xd5`\x1eu\xab\xa4j\xb5\x04b\xb4\xadE([\xe7\xd1\xb5z\xb3\xc4_pK\xd2\xb42\x84\xa2u\x1e=k\x82}4H\xcb\x9aA\xc9\x8a\xf13\x8e\xa1b\xc5\xbe\xff\x1b\xde\xf6\x89\xf4\xaby\x8dO\xd3\xae\xc6Z\x9aA\xb7:\x8aj\xd5\xe5\xa5\x9bM\xb1\x9a\xa0W\x8dQ\xab\xc6iU\x03\xbd\x92O\xa7\x9a\xa6R\xf5iTgQ\xa8f\xd1\xa7N\xa1NE\xa9J\xd3\x94\xa9\xc5\xe8R\xd1\xf2\x1dM\x9aE\x91\xeaS\xa2\xce\xa1CE\xe9OgQ\x9f\xfaT\xa7eiN#\x14\xa7>\xf3\xa3OmZ\x8a\xd6\xb4 \xa5ii:\xd3\\*\xd3\x0c\x1aS\xb5\xf3OS\x98\xaa\x17\x13\xf4\xa5\x08\xd3'Vj.\x1de\x8a\xb24\x9b\xae4\x8b\xaa\xd4\xa9|Y\x8a\xd2Y\xf4\xa4\x18\x1diI*\xd2\x924\xa4s\xc6;\x83~4M=\xaa\x8d\xbfK8\x8a\xee\x0d\xfcS\xe1<6\xcd\x14\xd5d\xf4\xd5\x10\xa5h\x06\x99h\x16\x8dh\x92@t\x14uh\xf8\x0c\xa0\x14]\xe8#\x12\x85\xa6\xc6\xedP\x14\xa1\x08\x11\xe7\xdf\x85\x164\xab\x1e\x87\xa3\x02EH@\x1f\x9b\xfe3L\xfc\xf9\x98\x94\x9f6\xd9g\x8c\xe63<\xfdfQ{J*\xcfA\xd8L\x0eOg\xf3\xaeE\xe4\x90u2\xec\x14\x06?\x83y\xa0\xddr\xe5\x1f_\x06\xa2>*\x85c\xc4\x17u3\xee\xe5\x1e\x19\x91\xf9\x19J\xbf\x89\x8a\x0f\xd1\x0c\x86\xc96G\x89 Pk\xb2\x03\x9c\x9a\x1dO\xa7\x87'\xf7t:B|9j\x98\x834\x97\xa3\xa4l)#k\xc2\xc8\x98Sm\xfd\x8d\xec\xab\x07#d\xd9\xffB\x18#\xab[y*\xc1<\xd6aKZ .M\xfc`\xfa\xa3\xe1$z\xad\xb2S\x8a\xd3\xbeR\xca\xb9\x08\xbe\x869\x84 g0\xe9\x08F\x9d\xc0l\x07\x10\x9fb%\x1c\xbfGr\xfaRcr\x08\x87\xcfq\xb2\x1e\xdd\xd1K\x96\x7f\x18\x07\xcfq\xee\x1e\xd3\xb1\xc3\x9d\xba\xc7r\xe8\x06g\xce62\x02\xdb\xac2kF\x93-\x05\x16\xe7,?IW\xb4\x00\xa9%\x924\x19\x11\x84-\xdf\x98S\x01\x85)\x08\x8fW\xcb\xa7X\xb9\xe7_-\x1f\xf6\xb6\x8a\xa6a\x82\x93\x8a\x19\xeaqlr\xe5P\x0d\xe8\xca&)i\xad\xe9;\x9e,M'\xcb\x1d\xd6\xbb\x0e\xce\xf4\xac\xb3p\x84u\"0\xdf'\xba\xec\x8f\xc3_u\xe4\xe7\x1fc J\xf1\xf3\xc7\xba`\xa6E\xb0\xf5KZ\x07T\xedu}\x8e\x8c8GF\x9c\xdf*#\x0e\xbab\x8db\xc7\xd1\xdf\xe4\xaeY2\x8b{\xf4\x8a\xa5\x11\x84\x06\xcc\xc1k\x8c\xf5\x8e\x9f'N\x19\xdf\x86\xb7TF\x06Y\xa3\xde\x9f4\x99\x02\x80F\x88)\xcf8`\xe3\x10N\x8b\xb6\xd9~)\xa3\xd1\xea\x83I\xadFQ#pt\xa3\xa7/\x9fE\x17\xcf\xf9n4\xb8\x8d\x9f\x85=\x81\x04\xfe\x04\xb2g\x8b7\x06%\xb1(\x10\xc0\xa3\x80\x83IQ\xb7s\xc4\xe7\xa3\xf9J\xc6l\x9c~o\x87K\x1d\x063:s&c\x98#\xee\xcaK.\x0dq\x88\x01\xa01d\x95\xce\xf1\x03\x14:+B\x93\xb7\xb0.\xe2\x19\xed\x01\xe8\x06\xbf\x9a2[\xe6\xc7\x9a|\x18\x17<\xd2\xc2\xc7\x02\xd0.H\xad})\xbd\x93OQ\x98\x17$\xa0^\x00e\xe1^P\x16\xf2\x05q\xd8\x17\xc0L\xe8\x17\x14\x85\x7fA\x06\x04\x0c\xa6\xc3\xc0`\x0e\x14\x0c\xef\xbb\x87\x9d\xd0\xa1 \x1c\x0c\xe6@\xc2Pi\xd2\x7f\n\xc2\xc2`&4\x0c\x15\xb8\xdf\x05\xe1a0\x11\"\x86\n\x8a\xc0\xc6\xa0\x04t\x0cr\xe1c\xe8\x97# e0\x17V\x06\xf3\xa0e\xa1\x89\x1e\xa8jA\xc8\x19\x1c\x00v\x06e\xa1g\x90 ?\x83\xb2\x104\x88\xc2\xd0\x00\nC\xd1 \x08G\x03e\xb82 i0\x03\x96\x86\n\x13P5\x14\x9a\x06s\xe0i\x10\x82\xa8A\xda\xa5\x88@\xd5 \xd3\xe3(\x05Y\x83(l\x0d2j3\x0f\xbe\xe6\x89\x13p6\x14\xc2\x06\xa5`l0\x1b\xca\xe6\x89\x13\x1e\x0d\xea<\x94\x84\xb4\x81\x9eFH\x83\xe6A\xdb \x8d\xf0\x82\x18\xc4\x0d\xf2`n\x10\xc2\xd7\x8c\x84\xbbAD\x0e\x02Q\x98 }\x83Q\x9d\x93\x86\xc0AF/d@\xe1`,\x1c\x0e\xf0\xde\x99\x0f\x8b\x8344\x0e\x12\xf08HB\xe4 \xdek\xf9P9\xc8\x82\xcb\x01\n\x99\x83\xb9\xb09\xc8\x85\xce\xc1D\xf8\x1cD\xba)\x03F\x07%\xa1t\x10\xab\x0b\xa2\x89\xb3`u\x9e4\x0ff\x073\xa1v~ \x08\xf4\x0e\xe6\xc2\xef\xfc*\xbbp<(\x0e\xc9\x838,\x0fPh\x1e\xa0\xf0<(\x08\xd1\x83\xb20=8\x00T\x0f \x1f\xae\x07y\x90=\x18\x03\xdb\x83l\xe8\x1e\x04\xac\x7f\x00\xd2\x05#`])\x18\x1f\x8c\x81\xf2A.\x9c\x0f\xf0\x06\x95\x85\xf5\xc1\\h\x9f'\x0d\x81\xfaAa\xb8\x1f\x14\x86\xfcA\x01\x1d\xc9\x80\xfeA\x16\xfc\x0f\x0c\x08 0@\x88\xed\xbf\xf0K\xa3SI\xd2\xb1w\x83\xb0@\xfc\xf5\x104\x10\x7f\xdb\x83\x07\xe2\xaf!\x10A\xfcE\x07&\x08c2\xc5\x87\x0fb\xb9+%2\xc7\xf5\xf3H\x19\xe4\xe1\xe2\x0e\x9fI\xae\x1f\x04\xb6\x87W\xe9\xc0\x99\xe5\xa3\xebs\x98L\xf3\xbe\x1a>\x9c\x10\xaf\xc6\xe12\xcf\xf5\x13\x86\x15\xe25:L&\xba~lx!$ \x86\x90\x0c\xe3\x14\x80\x1a:\x12g\xe2\x0d\x1di\xc8\xc1\x83\x96\x9a\x03A\x84\xd8\xc9a\xf8\xdc0\x00G\x84x\x84/\x02KL|\x89\xc3\x13\xd3\x1fEa\x8a\x91\xcfQ\xb8b\xe4\xfd0\x84\x0c\x8c\\+\x1f\x8d6Yd\x00\xc6\x08\x8ftj|L\x97z\x8ct\xa9\x08\x18\x12\xa6*N\x10\x189Y\xa2\x0f\x92\x8c\x8a*\x0b\x96\xf4$\x96\x00LF\xd3X\xdd\x14\x93\xac\xf4\x15]\xa9\xdc4V\xf5\xfe\xf8LV\xdd\x8c\x03\x83/Ja.\xf0\xbc\x97\xb0\x0d;\x04\x86\x82E2`\x92\x07Vi\xfb$\x9f\xa9y0\x01q\xf6qN \x9aZ<\x17\xa6x6L2\x1f\xa6@FL\xe9\x9c\x98\xbc\xac\x98Yy1\xa53c2scJg\xc7d\xe5\xc7L\xcf\x90 \x89\x13\x94\xca\xd1\x1c\x99\x82Y2\xc9<\x99B\x992sreFg\xcb\x14\xc8\x97\x99\x9e1\x13\xb4<\xe8A\x83~\ng\xcd\x1c&o\xa6x\xe6L~\xeeL\xf1\xec\x99T\xfe\xcc\x94\x0c\x9a\x80\xa0>\xaf&\x92C3*\x8b\xa6p\x1eM*\x93ff.M$\x9b&\xc3=Id\xd4\xe4\xfa/%\xb3jRy59u*\x9c[\x93\xca\xae)\x98_S<\xc3&\x96c3+\xcb\x06\x91\xc6k\xc2\x02y6%2m\xb2\xd2I\x12\xd96\xd9\xf96\x91#\xf8\xd1971Y\xe8\xd9b\x81\xcc\x9bq\x9d\x95\x97}\x93\xd3'\x99\x198\x13rpB\xe7\xb0E\xf2p\xb22q\xd2\xb989\xd98\x89^\x1c\x97\x91\x93\x9b\x93\x13\xca\xca)\x90\x973\"3gznN\xac\xd32\xf3s\ng\xe8Dk\x84jj\xd9<\x9d@\xa6N\xe1\\\x9dp\xb6N\xe9|\x9d@\xc6\xce\xac\x9c\x1dDZh\xe3\x97\xc8\xe3 e\xf2\x84ry\xcaf\xf3\x14\xcf\xe79LF\xcf\xb8\x9c\x9e\xec\xac\x9e\x91y=c2{\x82\xb9=\xe1\xcc\x8d\xfc\xdc\x8d\x9c\xfc\x9e\x91\x19>#r|\x02M\x9b\x91\xe73bR\x94\xcd\xfd f\xff\x94\xcf\xff)\x9f\x01TB\x932\xb3\x80r\xf3\x80\xecL <\x17(\xba{\xc4\xf2\x81\xc6e\x04\xa5\xf3F2>\x88e\x05e\xe7\x05\x8d\xc8\x0c\xca\xcc\x0d\x9a\x90\x1d\x94\xca\x0f*\x9b!\xf4\xe89B\xe9\xd1>d\x96P0/'\xa9S\x87\xcb\x14\x1aU\xa7\xc3f\x0b\x05\xf3\x85\xfe>\x19C\xa9\x9c\xa1\xc7\xcf\x1a\xc2\xf2\x86\xd2\x99C\xe9@\xd5\xac\xec!O\x1a\x96MT:\x9f\x08\xcd(\x1a\x9fS49\xb3$\x92Y\x94\xca.\x89g\x17%\xbe\x0eg\x18\xa5?Lf\x19ED\x043\x8d\xb2\x8e\xd4\xb1|\x8cT\xbe\xd1\x0c\xc1\x91\xac\xa3\xc7=\xb3?\xf2\x1e\x8e\xc9E*\xc5{\x98\xccH\x9a\xa1Z\xd1\xbc\xa4\x19r\xf1\xec\xa4\xfc\x8c\xb3\"\x19J\x07\xc9Q:r?\x1e\xb9\x1f\x7f\xbb\xdc\x8f\xff\x07M\x9a\x1bG\xfa\xa4?\xcaM\x9b\xbb\xe0\xde\xd4\x07\xd1\xfa\xd1\x89s\xc2\x13\x0bL#\xe9\xa5\x993\xa8\x95}\xc7\xb5n2\xc7\xda?\xf6\x95.\x91\x0cId\x18r\x86[|\x96;\xd4?7\x8c\x8e\x1e\xe3\xbb\x86y7\x81d\x0d\x956\xbc\x05X\xe5y\x1d\xf2\x18\xe5e\xa6\xd3\xdf\x81\x12L\x16<\xca\x8b\x95\x0f\x1e3\x02\xb1\x9f\xfb\xf9\xfd\xc5\xdb\xe5\xfb\xf3\x8b\xb3\xf7\xef\xa21#\xff\xed?\xbd\xfd\x98\xf1\xd6\xe9\xb7\x1f/N\xcf\xdee\xbc\xf9\xee}\xd6K\xcb_\xce.~X\xfe\xfc\xf6\x02{\xbd\x8f\xfe\xe47+\xed?\x02p\xad~/^\xc1\xa3?\x82\x1fQ\xe9\x05H\x9e\xc4\x9b\xea\x8e\xe2\x14C\xa8\xe3\x80\xbe\x19\x1e\x9e`\x03\x0d?\xb7n^4;\xb3j\x81#3oT_\xb9\x7f0\x84>(R\xc51\"\x95\n\xbc\xc2\xfe\x08&\x1f\xb74\xa5\xa3\xe5\xbf{\xff\xca\xf9\xb7\xd5\x0b\x13\xe4\x0d:\xe6J\x1e~\xb1\xcb\x10\xdb\x89;\xcd\xe0\x18,\xed\x0b\xadnn\xc7mD\x1d\x0d\xfdEH\xa0kC%\x87\x8a\xec\xebJ\x84+z\xbeN\xf1?\xddncR\xff\x96E\x06`\x8e7k<\xdf\x9bWd\xa8B\xd8\xa3\xe4\xcd2\x1a$;\xb3\x8e\xbb\xdb \xf2\xb8\xc5\x97\x82s\xb4cnt\xe9\xec\xcdI_\x8b\xf6\xa4\xbf\x88\xd8\x1b*\x9f\x12\xd3\\\xcfr\x16KQ\x8b$\x1d&\x7fk<\x86@\x90\x81\xba\xebdY\xfc@pA\xcd\xda\xe9!N2\xb2\xacFD\xa1K\xeb\xe3F0\xc2\x8blr\x99\x8d-\xb4c\x97\xda\xdc\xc5v\xccr\x9b\xb9\xe0\x8e\\r'-\xbay\xcbn\xe1\x85w\xd4\xd2\xfbH\x8b\xefA\x96\xdf\xc3/\xc0\xe5\x97\xe0G\\\x84c\xcb\xf0\x98`c\x89\xa5\xb8| l\xd2\x82\x1c\x0f\xf2L]\x94K-\xcb^\xfd$-\xb6\x8ev\xf0o~\xdd\xd3\xb6\xa2\xd2 t\xc78\xdc1\x0e\xf7[\x8f\xc3\xf9~`\xae{\x19\xa7[\x17\xd1\x9as\xe3\xb2\x82\x0c\xc7\xd2\xbdU\x00\x1d\x85\xb0\xf6\xcd\xbdI\xc0\xe1\xae\x0f\xdd\x1b\x80\xd0\xef\xa7+\xfa\x07\xb4\xa2\xed\x84{\x02|\xb4\x87qG@\xe8~\x80t\x05\xd1\x9e\x9cz'\x80\xd3\x93\xa3n\x000\x14\xc71\x86\xe2OB\x0f\xf9+U}\xa3\xaa\xd0\xd4\xd8\x02\xd0\x05t\xf2\x83qP\x9f\xa1\x93H\x14\x16\xe9\xcc@\xf4\x15y\xd3\x8f\xba\xe2/\x05\xa3\xad\xde\xeb~\xef\xc9&\x1a+e\xc7H\xbd&\xad\x8aFk\x075\xe76\xe0\x9f\xfb\x90hF_\xa1\xbb6T\xf5P3\xea\xec\xd1\x90\x0f\xbd}\xd9!\xf6\x9e\xf8\xce+\xe2\x06\x85R\xe1r\xb7!\xe9\x1dV\xde\xde*\xb9\xab\xca\xdeO\x8d\xdcI\xa5\xf6P\xc5vO\x99\xfb\xa6\x83\xef\x98\n\xef\x95\x0e\xb9K*\xb9?z\x94\x9d\x11\xbe'\nL\xbf\xa2\xfb\xa0\x12\xb7\xb9\x8f\xde\xf5\xe0\x8b\xf0\x94\x9dN\x89=\x8eo\xfc\xdf\x1b\xd6\xd0\xeb\x0e\xfb\x1a\xf8\xb8\xb1\x08Y\xb9\x98m\x0bX\xb4\x84\x1d\xcb\xb2^\xb8\xcd\x9aj\xa9\x8cqQ\x92|\xfbt \xabT\xc4\x16\x95\xb7@\xf3\xed\xce\x01\xad\x8d\xa7\xe6U}3r\xaf\x12\xb8\x831m1\x92w/Zo\x9bu\x0b\xb9\xc3JF\xb6\x1b\xec\xdb\xc9\xecV\xbb\xbe\x11\xda\\\xd7\x1fJY\x06\xff\x1d\xdb\x07Jy?\x11\xbf'\xc3\xe3\xc9\xb2\x16\x10\xf5r\xcaY\x0d@-\x87\xdf\x92b\xd6\xc3\x17=\xd1\x82\xf8\x82JX\x11_\xea\x14K\x82I)hM\x00\xf1Z\xe2\xbb\xb49\x9e\x8a\x9a\xcb\xdb\xaaf\x8b\xbb\xaf\xae(#_-F\xda.\xfe\xed\xd2I\x91Eg\xb2\ni1Eb\xb0j*\x01\x9f\xe2\xdf\xabw\xaa\xfaz#\"\x94K\xae\xf4K\xc92\x92'u\xabn\xd1$u\xbd'\x1bEP\x02U=\xc8\x04.\xd3+hK\xee\xc7\x15\x90\x92W\xa5\x0c\x9a\x96\xa7\xa2\"\xa8\xbc\x9b\x86l\x96WM\xbd\xa6\xa9\xd5@I\xe3\x1f\xf0NU\xd1*\x90\xdf\x02a\xcdV\xa3\x0f\xae6\xcd\xeas\xc7\xd7\x98\xe5\x03%\xf1\xadq04\xa9\x8a\x93\xd4Mt\xad\x84\xf2b\x81\x0b\xf5\x95S-6\x12Hg\\\x1c\xaa#\x80|\xf4a\xdb\xac\xf7\x1b\x1a\xd2G\x11$<\x15\xe3z\xde6wU\xc7-\xdf\xe8sf\xa9\x18\xcb]/!\xb3\x03\xac\x80\xb5\xd54O\xa2\x8eu*r\x1b\xd16\x01\x95\x90:i\xbc(bV1\x97=\xda\xe6hL\xd5\x14\xf0\xd2\x95\x80\x07Y\xfd\xde>\xd3J9\xba\x9b{u\x9e\xdd\xbd\xc3\xc4\x08t\xeb\xf0B^wz\x8d\xca\x89M\xf7\x1f\xc5r\x05\xfd\x0e\x9cx5x\xf4>\xde\xf8M\xbc\xca\x05\x1c\xa6\x92\xd9\xf9Y':\x98!\x87X\xb0*m\xd0!m\xd4sJ\x18g\xdc!l\xe0\xc7\x14\x96#\xbb\xaaG\xca\x8e\x19}\x08\x19\xfe\x1c\xc9\x19\x0b\x00\xc4\x16\x81h\x19\xe9s\xaa\xfc\x05\xe1\x00w\xf2\xca\x89a\xfb/\xaf\x0d5\xcb\x98x\xdd\xfe\xaa\xdb\x91U\xdc\xd9\xb0N;\x91\xdf\x9d\xb3\x94\xb8\xd7\xd6\xdb&\xa3\xba\xa6#[\xd5\xeb\xea\xaeZ\x8b\x85C\xcfr\xa5\xf9\x92\xb1B2&\x9aB\xf8+R\xd0\xb9\x1f\x82w:i\xb6\x95\x8a\x19)\xcbF\xe9C\xec\xbe\x15\x93\x8c\x93?@\x10\xd6\xd8\xdcci\x84\xea,>h\x01\xe5-\xa4\xb8\xe2\x83\x8f\xaa\xa1\xe3\x87Ew\xd1\x81O4\xf0\x91\x88X\x8f\xcf\xf4\xa1T\xf2[V\xf5\x8a\xbeRc\xfd\xa2[\x7f\x86\xff\xba\xf8\xd7\xff\xc7W*\xdbK\xf1\xc6\xdf\x9aL\x96\xa6I/\xbaG\xe4\x8aX@O\xca\xda\xd2\x9b\xaac\xe2\xc0\xb9W\x8c\xbe\x9d\xa2\x8d2v`\xd4>Qm\\i?Z\xea0BMS\xa6v\x9a\x1a'\xcd\xed\\\xad04A\x95k\xab\x80*%\xd1\x89\xbf\xeeIK\xb8\x1bK\xfb\x8e<\xdd\xb3\x06\x9b\xf3\xc1\x08\xf9\xe9\xa7\x8b\xf7\xcb\x0fo?\x9e\xbf\x7f\xf7\xf1-\x1a#\xb7\xdf8}\xfd\xfa\xed\xf9E\xe0\xc77o_\xffx\xf6\xee\xad\xea8\x15\xc4\x8a\x97\x80\xcf=\xb3\x19n\x00kh5\x90=k^\xf4\xda\xac\xc2Yfx;Xv\xa4Z\xc6T!LD\x83\xf6\xac\xd9\x12V\xad\x86\x89sK$0]\x90\x02\xf4\xd4\x90zM\x12\\\xd5[Jj%\xa3n\x0c\x19D\x10\x1a\x1a\xb4\xcd\x8c|\xa6\xf5 T\x0b\xba\x10\xd0w%\xc4n[\xc5}\xf3\xeb\x13\xdd4\xaeT\x9a\xe6\xc2\xe8\x8f+zK\xee\xaa\xa6\x15\xa96&y\x02>\x8an'\xc8\xbf\xda\xed\xefh\xbd\xee\x8c\xda\xf6\x0d\x11\xc7\xf6\x9a\x17\xfa\x04\xae\x1ev\xa4\xeb\xb8\x051\xb42T\xbc\xd2\x13\xb7|\xf5\xe71\x15X\xd3\xd5\xa6\xaa\xa9\xb9\x1e&f\xc5\xdb\x9a\xb5\x0f\xd9v\x865K\xb2^\xb7\xb4K\xed\xf4-=\x1e\xbe\x1a\xbc\xd2\x15\xad\xee\xc4>^\xfe\xa0\xfb\xe6\xbam\xb6S\x8a0\xbf\xd3\x85\xf0\xaeB\x8ah-{\xe0Ij\x1d\x07\xdaV\xbc\x8e2\xa6\xd7\x05vK\xf9\xa2\xf1\xa5\xd1%\xd0\xceu\xc3\x92q\xf7\x94\xbd\xc1\xde\xb2l\x0e\xf6\x82iw`\xa2\xed\xf1t\xc4Z2y\xa7\x18\xebf#\xc8\xbdu\xf7\xf3\xb1\x00R\x8b\x94\xb6\xb8\"\xfe\xcf\xfeO\xeb\xef\xf6\xf5:?>:M\x0f-_\xc6W\xca\xaafTl\xf0Z\xba\xaav\x95\xc1\x84\xcfw\xe1\x9df\x1e\xb9\xa3\xc2\xce\x19\xa2\x86\x96\xf5&f_k[\xb04Us\xa2\x1f\x99\xdd\xa8`\xb1\"\xc3RO\n\xda\x9a\x8d\xe9\x0d\xf7\x8e\xb4\xcc\xbe\xb0\x80[{!\x0f\x1e(3t^\xf4\x87n\xaa\xf8\xc7\xa4fe\xbb\xc7(YD\xd07\xc6 \"r\x9c]'Uv2\x1d\x84)d\x0e\x0f\x84f}0\xe5\xe5\xd3=XM\x93*\xacm\x9a\xac\xc9@\x18^\xd5\xa6\x12\xf7\xbb-\xd4\xb6\xe95\xc6\x1d\xf2\xab\xa6\xd9PR\xe3\xc5\xeb\x8fD\x0d\xda=\x85\xeaZ\xe9\xd25\x9f\xf8\xf0\x85\xb6\x82}\xfd\xaej\xf6\x9d\xb3\x90\x85\x14\xde\xb5\x1e\xfdPu\xac\xdd\xafx\x179\x94v]l\";\x938f\xb4h\xfb`\x9a\xc7\xf1\xbbJn>\x97\xda|\x1ex\xee`\xa6\xd2\x14\x84L\xa0\xe9\xcb\xb7|\xf0E|\\\xa1#\x16t\xf9\xf8\xcb:\"\xb5\xd0\xe2.\x9fHSB \x879\xcb=\xfe\xae\xb7\xe8\xe3\xaf\xb9K\xbf|2\x1d\x00\xfdrx\xfb?\xd3+\xb0d\x19\x1e\x02R\xb0=E\xfa\xe5\xcb\x1e0Z\xb3\xb6\xa2\xca\xe3`\x92\xb8E\x92\xf5\x8a\x0d\xbc\x16]\x00\xdd\xe1\x1f\n\x1c\x81\x1eG\xa0GY\xa0\x87\xcd\xc1\x81\xae0\x96z~8\x7f=\xcc6\x91Kh}\xa3\x84\xf53!\xb1\xa2\x9du\xc6z:zE\xab\xba\xa5\xb1\x80\x8er\x0d\xecO\x1d\x07\xc1\\|nI\x07\x0d\xf7m\xe5m0\xee\xc6:\xd2\x97h\xdb\xe2}Y\x83\xf5\xd1\xc8\xcet]\x93\xd1\xfd\xf9+\xba3\x82\xdf\xac\x8f\x80\xe4\x94\x17\xdc`\xc9\x07\xd9f\xc9'c\xb3%\x1f\xac\xef\xe43.B\x0e\x19\xcd\x9f\xb3\x15\xf3\x84\xa9\xadY\xde\x86L>\xce\xb6L>\x13;`\x12>\xfe\xc8\xf0\xf7\xf7a\xf8Kw\xc3\xd4\xbd\xa0'(\xe0\x1a\xfb;D\xf9\xe0\x8b\x81\xfe\xa6\xd8n\x11\x11\xe8t\xc2\xfc\x9d\xa3%NDOP\xebdU\xc2\xb5\xe9\xbcuU}\xdd\x00\xb9j\xf6L\x95\xd0UL%\xe2 \x91\xe3\xa3#{td\xe5\xdf\xff\x81\x1c\xd9\x90/\x14\xf7\xbfz \xce\x9cq=\xb0nC\xba\xdb\xaa\xbe\x99\x9ai\xcbm+]/U\x0e\xcf\x97\xaa^7_\\g\xcb\x193=^\xe6pm\xabz\xa9D\xedh;N\x8e1\x19\xd6\xcd\x97\x9aU[\xba\xfc+\xa96\xcb\xb5\xbaK *Gt\xc0\xf2\xba\x95\x07i\xcbu\xb3\xbf\xdaPQ\x97\xf1\xc5{\xb2dm\xc6\n\xb2\x94A\xe5j\x18\xa6\x94\xd9Iv\xfd-\x82Wrv\xea\x11\xf53X\xbd\xb1\x9e\x9dp\xe3\xf9\xd5YF/\xae3\x903\xd7\xdd\xa9\x9e\xd0\x9f,\x99\x8eQM\xe9RDf\x8eNE>\x0fV)\xa9_\xe3\x85\x16\xd7\xb5\xde\xe8\x96J\xaaK\xe9\xef\xc7\xea\xa6\xae\xea\x9b\xb3\xfa\x1aMU\x88c\x9c\xc8F\x0cKU\xdf,\xb9+1I\x9d\xd1\xad_H3\x04o\xf4-\x82\x00M\x0e[pu\xfbAH\x03\xa2\x1df\x01\xc9!\xaci\xc5\x1a$n\xde\x01\x02+R\xaf\xf9\x9f)\xbc\xff ~\xd8\xd7\x7f\x15\x8c\xff\x86\xc8\xaa^\xd3\xfbes}\xdd\xd1\xf9\xb5\x8b{\xd1g\xbc(\xed\xe1s?n\xd5\n'\x9f\xae\x81\x92\xd5-p\xbd\x16Za\xb7\x86\xa8$Rw\xb5\xadj\xfe\x137(b\xe7\xb1%\x0frG(m\x82\x80\x89\xd2U\xb3\xddVL\xde\xaa\xcc\xd4\x15\xe0\xdem\x92\xab\xa6\xfe\xab\xba%R\xeek\x90\xcb\x00.?\n\xa9\xdf\n\xfb\xf5\x8b05\x97}\x92!\xa3\xed\xb6_\x96E\x87\xe2\x97\xc8^\xfeTq\xd7K\n\xf9\xb6b\xa7|Syi\xfa@rx\x96\xe2\x8e\x82\x91\xa3\x11b\xc5\x8f\x8d\xc8E\xb5\xa5\x1d#\xdb\x9d\xbc\x15A\x8d\x8d=\x04U\xa7j\x05\xeb\xbd\x88Po\xaa;Z\xd3\xce\xbdMB[&\xdb\xa5\xdb^u\xac\xf1\xf65\xe1]M\xbc\xbe\xbf\xdcRqw\xad\x1cO}/\xab\xa8\xe6-\xe9\xe4\xa6b(\x13\x9e}\xae6\xbc\xe2|\xab\xe0\xdd*?|\xdaQ\xf6\\x\xb1\x95p\xdf\xdc\xa1o\xea\x95\xab\x96R\xad\xc4\xa6\x95o.\xef\x1ay\xe13\xaf\x97\xc8f\xab\x1f\xa4\xaf\xe7+\xdauu\xb3\xe7{\xd1m\xd5]\xd1\xdb\x8a\xdc\xd9wIo\x85\x82\xe8eR\xb8\x9a\x99\xc4\xb9\xd3\xa7\xe5)\xa8r\xe03\xdd\xb1\xe1\xa2\xe8}]\xd3\x15\xed:q\xc9:\xd7Th)Yw\x1e7\xc1\xbb\x86\xa9\xbd\xdf\xe5\xc7\xfd\xf6\x19\xa6\xe3\xcf/\x81l\xbe\x90\x87\x8ew\x17\xd9\xb8\xaac\xcd\x8b\xd7\xb22\x97\x81\x1d\xa1\x8dQ\xd4#b,\x08F\xa8\xa2\x1f\xb0\xa7\x1d(\x93/w\x8f|\x90\xb6M]\xb1\xc6\xe9EvK++\xb5R+\xbbH\xba\xba\xab\x98\xc9z-M\xb1\xbb\x9e\xf4'of\x81b\x9b\xa1\xd9\xb3\xef\xc8F\x00\xda\xf5*\xf2;@\xb6-\xa1u.g=5>S\xd2>\x9c\xbf\xd6\xad\x1a\xbd\xc2\x8e\xf7\x13\xb1e\xb5l\xf4ul\xe85\xbc\x06G\xc3c\xe1)u\x80\x958\xb6\x16O\xaee*\xaeUxM.\xb8*\xe7\xad\xcb\x85V\xe6\x9c\xb59\xb6:g\x8d\x0f\xbeB\xa7\xc7\xa8\xe4*\x8d\xaf\xd3\xe1\x95zD\x04\x12\xa9y\xc9\xf5z\xc4\x8a]r\xcd\xceY\xb5\xb3\xd6\xed,\x15\x992\x85\xe7\xae\xdf%V\xf0\xe4\x1a\x1eo\xc6\x8cu\xdc\x1e\x86~M\xf7W\xf2\x9c\xb5<\xb6~\x93\xcdf\xa8\x88n?\x16]\x1e\xb1\x8d<\x86\x82\x8f\xa1`\xfdEx\x0ce\x91\x86\xfb\xd7X\xd7\xcbV\xb5\xb8\xf5n\xf0\x08\xd5\xad\xae\x1d|\x11}m\xafv\xab\xa6\x95/\x8a\xb40\xe5\x94\xf6\x17\xc1r\xab,\x02>f3\xad\xb6\xe97?6\xdb\xa1R\xe8M\xb0-\xddQq\xe3\xde\xb7\xa4\xed{6t\xbf\xb1\xd5F\xa1\\\xee\xdd\xc6\xf2j\xd7\x94\x9b<*\xeed~\xa7\xe4\x8dq\x941\xab\x95\xed#\xe7\xe4b\xe3^+:\x13\xf0\x05\xa4\xa8\x8f\x8a{\xa7#j\x13^\x01\nz\xa1\xd3\xfdO\xd3\xdf4\x04b\x9e\xe7l\x9f3\xeem\xe2~f\xb4\xa7}\xdf2\xdc\xdb\xa5\xfcI\xd7\x93\xc4|H\xdc{\x0c\xd7\xad\x94\xc7\x98\xe5+\xce\xf0\x12\x0d\xaf\xd0\x10\x88\xf8\x87 \xcf\xb0\xc8\xf4\x99\xe3\x01\xce\xf3\xfd\"^\x1f^\xdd\x19\x9e\x9e\x1f\xb1\xb1|<\xd4\xbb\xd3\xa6\x9b\x91\xcf\xa6\xe5\xfe\xb6\xa9\xd7\x1f\x8d\xcb\xc1\xbdQ\xb0\x11\x8e\xdf\xbe\x7f\xf7&|\xd3\xb5\xfb;\xffW\xf4\xc7\xb3w\xdf\xa3\xbf\x1a\x1f\xf6\xd9\xc7\xb1\xa2q\x8fah[\xef\xc9\x1aw\x02\xf7\x1dlb\x1c\x03\x85\xbc\x02\x94x\xab\x86\xaaV\x14`\xc3$\xb3\xef\xc7\xc6\xbb\x84\xcb\x93\xff\x87\x8d\xb8TBu]\xaf\xb4\xebQyg\xef\xbe\xd7\x02\xcf\xde}\x1f\x95\xb8\xaf\xaf\xa4\xbf\x13\x10\xa8\xab\x97Q\xb9\xa1b\x01\xd5z\xcd\x0dH\xd7U#\xf8\xe7V\xfd'\x82\x9a\xc4\xf0 \xc2S\xde\xfd\xc6\xca\x0c\xa8\xea\x8aU\"\xc8\xa8_\x02\x05~\x15\x9e\xa3>\xd13\xc5\xb5\x94H\x8e SC\xf4\xaf#v4\xbc\x9cL\xc7\xddj\x1c\xffN\xeb\xabSmX\xdd\x92\xf6FnS\xd6tCo\xc4\x06\xec\x04\x84\x03\xa0\x0fF\xad :\xb9_N\xad\x87\xb7W\xd0\xc2\xac\x0e\xd6\xdc,nM]\xf7j\xe5EL\xe8\x9d\xa4\xcfhoh\xa2\x05\x92c\xa3lC\x0c\x99h{\xd6\xa4\x12\xd9l\\\x1ddR\x89\x1f*s\xd6J\xd1\xfa@S\xf6;\xee\x96,G\xe4C$\xdc\x18C\xa0V\x96\x0d\xe9\xd8\xe0\x1fz\x03B:EV\x82\xc1\xa2\x86\xb9\xda\xf7\x86!\xc0a \xd3\xf4\x86\xd6\xfcH\x1a\x81\x0f\xc3\x84\xce\xb0\x04\xf6`\xa3=u\x90Y\xe3\xcf\x98t\xd9\x96\x82\xcd\x9d%b^\x98\xf6(6C\x82\xb3cB\xa5'\xcd\x88\xa1\xeef\x95\xe3\xb3\x01\xaf\x86\xa3(3\xac\xb8\xb6\xe0=\xbe?KQ\xdfH\xcd\x18\xb3Z\xf5\xca4\x05N\xec}\xac\xb5\xf7\x8a\xaen\x7f\xff\xf5\x0bZ\xaf\x1a\xc1\x17\xa5~U\xfd\xdd\x7f\xa6U\xa0o\xdb\x94Jx\x1f\xe7U\xc2[\x18\xbb[\xd2\xfaP\xc4X\xc9\xf2\x0b5\xcaf\xcb$\x9f\x03\x91\xe9\xca+Z\xdd\xa1\xf6\xaa\xf7\xf1\x86as\x13w\xb8\x7f\xa2\xb6\xac\xcdgZwpK7\"\xf3Y\xa6\xc1\x8b\xccl\xb9\x19R\xa2\x9a/\xb5L\x8dnj\xa3\x9f%\x97v\xd5\x01\xe9\xbafU\x890\x8e\xde\x08\xf7\xf4\xbe\xcd\x17\x195kj\xea\x0eK\x96\xca\x8d>W\\;\xda\x8a~\x86\x7f\nq\xcd\x85\xecu\xb5\x94\x06C\\\x8b\xf3+TJ\x9b\x01\xd1\xe8\xfcZ\x8c\xd7lO\x84\x15\xf3,\xa8\xe1PZ\xcb\xc1\xd5t\xfe\\\x91\x0d\xa9}6\xa1L\xc5\xcc%;\xc4`\x1ei\xb3c\xf5\xecd8\xc7 b\x0e\x8a\xc3\xc7\xe7\xe7A5R\x86\xd0\x8c\xfb\x8a\xc8\x0d\xd9\xd0Z\xc4B\x0cU\xa2\xf7\x02\x08$7s\x0cVM\xcdHUw}\xea\xb4\x1aD\x11D\\\xaf+\xf1\x0dk\xb4\xfe\xf6\xf1Iql\xd1\xed+&\x8e\x08\xb8s\xb8\xda\x08hV\x0f\xbe\x8d\xda\xbf\xa1!\xb9\x86o\xdb\xd4\xd5\xe7d\xd8\xc8\xea\"\xf5\x891\xd2\xb7\xfb-\xa9_\xb4\x94\xacE\xb5\x05\xb5\x94\x8e\x87{\xea\\\xadi\xcd*\x16'\x1a\x8c9WZ\x80\x197\x90\xf4Jd3\xfc\xd8\x8f=<\xa3\xf7\x0b\xf8t\xde\xb4\x0c,\xb7\xea\xdf\xe9\xc3\x15\xe9\xe8s]\xb1/\xf4\xaa\xab\xc69}\xea\x13\xb4&\xfa\xb7MU\x7f\xee\xd7u\xba\xda\xb7\x15{X\n\xfdX\xa5\x82\xdd\xb6\x1dt\xbeE\x0b\xa5[RmD\xdf\xeb\xd7A\xbd\xae\xab\xb0\xa6\x8cT\x9bQ\xbe\x85\xfaD\x9b`\x19\xa5\xec\x8bT\xbf\"s\xc9\xd0G4\xf2a\xbc\x1c\xd1\xea\x1f\xaa\x8e5m\xb5\"\x9bQ\xa7 \xb7\x94\xac}\xbd\xce2\x9aw\xb4\xed*/9[\x1ex\\\x91\xaeZ\xa9S\x80j\xc8\x82\x8a\x94\x01Ql\x9e\x90\xe4\xfe1\xb24B\xfc\\\x12\x80\xecv\xe5\xc4\xc5\xf7\xfd\xaf\xb9A\xaa\xbb}\x07+\xb2\x93fVn\x17\xf5\x9f\xdb\xfdf\xb8\x9emE%\x05\x17\xe9{\xcf\x11'\x96`\xfe\xd3\xea\x96T\xf5\x89\x9f\x94\xbb\xda\xec%\xe3\xc4fc\xbc\x08\xe2\xd2\x98\x1e+\xd6\xf5w\xb5\xc8\xd2\xd1H\x03\xd9\xed6\x95\x8c\xbf?\xed\xdc\x82:\xc6\xb7l\xac%u'\xed\xf4\x96\xacnM\xc60\xb9\x8b\xacj\xef\xb6\xe5@7\x17I\xd0\x9e\x90\x9a\x8fe\x05mH\xc7\xe4\x91\x81_{\xa9\xe1\xbb\x96\xde\x15T\xf0[\xd2\xddNTH/\x19ABo\x97\x1deKwz\xeb'XCHBd\x91\xd4\x80\xfe'!\xb5\xaa\x19\xbdA\xd2x \x91f\x03\xc1n\x80TW@\xbc;\xfaA;'-\xeb(\xfbA\xf4\x8a;\xdc\xf2\xe4i\xe9W!\xa9A^\x91\xaa8.J\xce-\xa9(|\n\x1a\xef\xf1\x7f\x16(n\xc8\x89) \xcc\xad{\xcfRBv;h\xf6l\xb7g&s\x89\x9e\x03\x86\x04\x91\xecR\xb4N\xbd\xa5, \x8b\xecv\x05\xa4\x08}Q\x19\x15\x05\xc4\xd1;\xee\x8f\xadh\x01Q\xfd\xf8\x0d\xcb\x8bc\x9ev\x82\x12\x9a\x8e\xdd\xf2\xa6\x81LrVY\x11\xb4\x01\x9a,\xce\xbe\xe4,\x906\xc9\x08$!\xe9\x0ce\x93\x95\xf9_\xc3\xbb\xfc\xa8m\x89/\xed\xbeh\xab\xf9\xa1\x1d\xffS?{O\xcb\xf9o\"j\x00:fP\xd5\xf0\xc7\x8f\xef\xdf-\xac\xf7\x87\xf9\xb0\xdb_y\xc9kQ\xe3\x1e3\xed\xfc\xb3\xe5\xbeEm{\xc2\xfa\xa6z \xc4\x19\xf9\xa7\x0f?\xbeli\xd7\xec[M\xac+\xf6\x81\xfb\xba\xfauO7\x0fjSr]\xa9\xdec\xea:\x01,Y\x18\xc4.\xa1\xad\xc8\xa6\xfa\x0f, \x1ad[Y\xb3j6p\xb5\xbf\xbe\xa6\xadN\x9cR\xe9&\xb2-\xb0\xddw\xfd6\x14\x08\x83\x0d%\x1d\x92\xce\n\"Y\x81\xc2\x93\x97ODh\x9c\xac\x18m\x17b\x07.\xce?:z\xb35\xa8A>}\xf8\xf1i\x07;\xc2nE\x01\xa8\xb8>\xaa\x82\x97\xc6\xc5\\\xef7\x9b\x07\xf8uO6\x82\x9bV\xf6\x99*B\xf4\xce3\"\xf2\xb6Q\x01\x97\xbc\xf8\x977Ms\xb3\xa1\x0b\xd1\x17W\xfb\xeb\xc5\x1b\x05\xa9\xbc|.k/D\x0e\xcc\xac\xbc\x13Pi+R75\xdf]\x08C\x80\x97\xf8\x8c.n\x16'\xbc\x0b\x85\xff\xf9d\xf1D\x9f&kV\x91\xe78)\x05\xc0Y\x0d;\x11\xad_\xd1\x13`\x94l;\xd8w{A\x0f+\xd3\x85v\xd5\x86J\n\x1d\xe1\xffV\xb5H\xa9\xe8I\xae\xed\x87 Nl\xa1\\\xec\x96>\xe0E\xca\x9b\n\xa0\x12!\n\xc9\xa1\xaf\xfdrF\xef\xc5P\x9e\xd6\x0f\x0b\xf8\xa1\xf9B\xefh+\xb9\xf6?}\xf8\xd1\x9f\xbb\xfc\x91\xa1 .\x06\xcd\x91\xe7O\xb7\xba\xa5[\n\x97\xb7\x8c\xed.O\xe4\x7f\xbb\xcb\x13\x99i\xa3~=\x11Z\xb62\xf6\xaa\x9b\x07\x914\x83 \xdc\xef\x80\x88\xb6\x06\xca\xa3\xed\x1dU\x07\xe7[\xb2\xeb\xa4\xca\xf0\x16\x88\xcb9T\x1a\xa1\xb0W\xc2\x81\xef\x80\xe0m\xbbn6\x9b\xe6K\xf7*0v\xff\x0cg\xd7C\x0b\xf8\x90kF\xb3\xbe\x91*\xc4\xb7\xdf\xd25v\xb3\xaa\x10rZ\xc3\x0f\x17\x17\xe7\xf0\xfd\xdb\x0bhj=\x8d\xe4\x04}\x10\xe1-\\3\xff\xec\xaa\xf8\xc5\xc3\x8e\xfe\xe5\xcf\x7fA_VT\xff|\xac\x95\x0e\xc9uM\x8c\xc2\xaem\xd6\xfb\x15\x15\xa9Gm\xebf\x98\xeb\xe7\x9f\xe1t\xd8\x16Ib\x1c\xc2\xfbG\x9e\xf4\xad\xc8\x8a\xdb\x84\xa6\xf9\xbc\xdf\xf59\x97W\xa4\xa3kh|\x80\x05\xc8\x89\x1e\xa8\xea\xa7\x0f?\x8az\x89\xf49vK\xb7\xc6\\P|RD7\xa3O9\"\xb5\xcb\x92\xa3\x1fY)1\xed[z\xdd\xb4\xf4D\x7f\xcce\x12V]U\x9b\x8a=\x88\xeb\xcc\xf5\x19\x970Q\xed\x9d\x03\x93\x19\x9e\xa6V\xa7\xbb\xe2\x031\xef\x16\xf0\xecSGut\x80\xf7\nW;ng\xa4\xde\x91\x9a\xdc\x84Z|\xd5R\x11\xd5\xd0B\x17\xcfqmy\xd70\xfaJ0m\xc3\xb5J\x18$\xa2\xee\xca\xde\x0c\xc40F\"1\x0e;\xe1O#2\xa8\xfd\x1cb\xf9h\xc5\x82\x96\xf2\xd5\x81\xaa\xa0u\x9f*\xd3\xe3\xb3\x87\xf9uEo\xaa\xba\x0e\xedT\xbeT\xec6`\xf4\x1fvt!\xf5\x99\xec\xaan\xb1j\xb6!\x8b\xf9Q\xcc\xb6N\x85\x99\xd8-\xa9]\xcb\x02\xcfTlQ&\x82\xcb\xe9\xf9\x1c\x15\xb6\x15\xe9\xa9W\x01C\"\x1a(\x02\xd4}@Y\x1d+H\xd6\xf4\x15ttKjV\xad<\xbaI\xf4j\x0d\xf9$\\\x8a\xe8v.\xcf\xe3\xf8\x89\x9b\x8e+\xaa\x83i\x86\xc3\xe0\xf9\x06jQ%W\xcd]\xc0\xd9\xd0\x04\xf1r\x8c\x9cwR\xb5\xb9<\xad\x1f.\x8dhwm\\\xe8\x1b\xa9\x95\xb2\xd1\x9e8\xb2i\xea\x1bud\xe0\x0f\x19\xb7\x9a\xc2\xe8\xcbZ]\xf9\xee\x94Y\xa6\xf6\x8a\x105;\xd7\x8a\xbf\xa9\xaeDU\x95]\xef\xa0\xdb\xefvM+V\xce\x1dY}~\xb9\xaf\xf9\x7f\xf8z)\xc7\x1bE\x93 \x8f\x06u\x1e\x9ak\xd83i|\xf4t\xee\xb8\xe1\xd3G\x00d\x037\xb4\x16\xf7\x07\xac\xd5\xf1E\xefT\x9f\"\xf6N\x0e\x91_\xce\xdb{\xc2\x15\x18\xbez\x05\xe7D\xe5'\xab\xaa\x93~A\xacjx\xfd/\xff\x12X\xa6\xbek\x1a\xb8n\x1a\xf8\x06\x16\x8b\x05\x9aG/:\x81\xd4\x0f\xf8\x8f\xa4~X\xf0\xa2\xbfk\x9b\xed\xb3\xeb\xa6y\x8e\xbf\xb6X\xe0kOu\x0d\xcf\xb8\x88O\xa2\xd2\x17\xcd\xb3\x7f\xe22\x9e\xe3\xe9\xff\x119\x7f\x0b\xf7\xcd\xd7\x89\xbe\xf9#\xb9#\xb3;\x07\xbe\x11\xbe\x15\x97>\xa3\x17\xaa\xee\xd9wM\xb3XmH\xd7E:AV\x89\x7f \xdbc|\x84\x97\x8b\xf4N\xdf=\xbfOt\xcf\xf9\x03\xbbm\xea@\x07\xc9\x9a|\xd74\xcf\x16\x8b\x05n\x89\xfb\xcey\x16\xfc](\x90\xe8\xb6\xb1\xbd\xc6?>\x93\x9d\xf6\xe6\xed\xc7\xd7\x1f\xce\xce/\xde\x7fx\x8e\xc7\xdbdQR\xd1\xc2\x85\xc9\xe2\xc2\xdd\xf5\xaf\x89\xee\xfa\xbe\xc1{Jt\xd5\xabo\xe0\x9fvW\x8b\xef\x9a\xe6\x7f/\x16\x8b\xbf\xe1/\x92\xfa\xe1\x84\xbbk\xfc\xed\x9dt@~\"mwK6\xbc\x13\xc3\x15\x0fu\x93[r\xa0\xd8\xea\xda)\xf4S\xbd\x1d\x8a\x15\x95\x12\x8a-\xde\xfa/\xdf@]m\x82\n\x1a\xae\x0b\xa2\x89\x17\x82\x1cf\xf5\xb9\xb7\x83=}\xf0\xd5\xc3\xe0\xaah\x8b-\xb1`\x0f:\x9d\xd9\x93\xb6\xef\x905\xff)\xe2\x86\xbc\xe4{\xd1\x85\xf8\x81\xbbrO\x81\x18\xab\n_q\xd4q\x82_\x82\x18u\xbf\x90\xde\x8c\xd7\x9b\x07\xbdo\xf26\xbc\xbd\xeb\x08\xe4\x9aQ\xe9\xcd\xf0\xfd\xb6_\xe5\x97O\xfd\"\xd4\x86NWQ\xee\xe0\xa8\xd2\xcc'\xd7M\xb3\xb8\"\xadh\xdc\xfd\xcb\x87\xc5\x7f<\x91\xbd%\xf7\x1a\xf8\xb6JT\xe5 \x7f\x97//\xde\xcf\x7f\xfc\xf8\xfe\x9d\xff\xd7o\xbe\xf9\xe6\x1b|\x1c\xf9\xfbC\x1c@\xe1\x1c\x04a\xa6t\x18\xe4^e\xdf\xf5w>\xdd\xec7\xa4\xf5e\xf9\"d\xfe\xc7\xb0\xcc\x9f\x0ch55\xfbN\x94\xff\x80D\x0f\x8ceW\xe6\x15\\\xfe\x0f\xde\x1d\x97j\x93\xdb\xbb1f\xe7.\xf4\x94\x7f\x15p\xa2\xc9\xea3\x9f\xf3\xc3f\xed\xba\xdaP\xdc\xfej\xfbpN\xdb\xae\xa9\x83\xd3FEp\x04zj)F&\x84m\x1b^\x16\x81[\xf5\xee\xd7\xf9\xd6\x1f X\x8b'\xa2o\x9e\xbc\x82'\xd8\xac\xb1\x9b\xbb\x90-zr\x12\x92%\xda\xf2\x8el\xb9\xbc\xff.\xab\xfc\x87\xe0\xcb\xbc-\xce\xbb\xb9\x0d:\xbbV\x1b\x03['\xe4hV\x1d|\xa1\x9b\xcd\x8b\xcfu\xf3E&\xa1\xdc\x8atJ\x95>\x82+\xb9\xad\x82'\x0e\x15\xa5\xd4\xcb\x01\x98\xaa\x8a\xe5\x8aV\xdf \xfbz\xa1v~!\x97bBh=\x94W \x1b\x89-b:9\x99#\xfcg\xa5\xbe\xbe^Z\xdb\xf0$\xc23%S\xdd\x86\xc7Oz\x1b\x9e1\x15\n\x04\x84\xa6\xa7\xc4\xa1\xe2\x9a\xd6K\x8e\x1b\x1e/Mnx\xc6\xb4dl\xea\xdc\xf0\x84\x93\xe8\x86gLM\x02}:1\xdf\x0e\x95\xe5\xe4\xe0\x0d\x8f\x97\x8d7\xa7PD\xa3\x8bki\xb3x\x87\x1a\xe0}%J$\x82\xf6\xe7F\x8a\x1a\x885\xadl\x80\xbe8JA\\\x14\xcf=\x9f\xdbL\xa8\xa0tsw\xb4\xed\xaaNA\xdb.\xebK%l\xdb\x0c\xf9{-]\xd1\x9a9\x15\xd7?>\xbb\xac/\x15%Q\xcf\xac\xef\x16xy\xdb\x7f\xbaT\xf76^\x0e^\xde\xf3\x08\x1cg\xe4\x8d\x1e!\x9f\x1b\xb5\x97\xd6\xf08N\xb3\xb2\x88\xd2\x81V\x81Dq\xbe\xee\xba\xbe|]\x1c\xb2\xb4\xdd\x12\xdd\x1c\xfe\x0cB$[\xa0\xae\x88^b\x07\x8a\xbf\xe1\x1d\xb3*\xaaw\x0b\xd4\xc3c\x18\xd0\x17n\x0e5\x1a\xee\xe0lZ\xa0\x95\xb0\xc4}\x07\x99\xa6\xc0\x02\xc2\xb5\xd4\xf8\xe5\xd9\x8e\xb6\xb0#U\xfb\x92\xb5U\xd3\xef\xff}})\xd0\"_\xa8n\xcb\xd0\xab\xc3;}\xe3X\xa3\xe7\x88\xae\x1do\xe1\xd2\xc1\xba\xa65l\xf8\xcar\x9e\xf8\x9fEpg%\xf1\xac\x03p\xb5\x1f\xd7\xaa^:;\x8fD\xb9\x18_$\"\xa5\xf7\xd1oIU\xbf\xf8R\xad\xa9^\xe8=\x07F\x9cC\x98\x1e\xba\xed\xbfJ\xd7U-\xa0\xc3\xaa\xf3;\xaf\x13\xd4\x0d\x19f\x078\xf4$\xbe\x01\x89\x99\x87\xa6\xd9d\x1b\x87\xbaaKi\xce\x97n\x84\x16\xe9\xc5\xdc7\xad\xe6\xf5x^^1\xde\xbdCR[KV\xa2MjA\xe1f\xben\xd8\x0b\xf5O\x89^\xee\xf6\xbb\xdd\xe6A\x1f<\xf2\x9f\x948W-\x02\xdd!\xd8 \x8b\xf0\x12,\xfd+\x95\xd1\xbdg\x94\xa0\xc0s\\\x83\xdb\xd7\xf0\xc65\xc1u\x00)\xa7?\xe5\x0e#%d\xf1\x0e\xc4\x04\xb9\xdb\x96\x04=\x02\xcco\xc34\xee\x84\x98 \xb7\x0d\xf8\x19\xc2\x98\x8aOcV\xf0\xc4x\xed\x9f\xcd\xb0\xe0\xc8\xab<\x88\xe6|\xd2\x05W`\xed%E\xa0\x1d\xefq1\xc0\xd4I\x84^\xc7\x19\x19\xbb\xd05\x9c\xc1O\xe2c4\x99\xab\xc1\x913\x87\xb0\xc1\x11\x85_\xb9\x99\xc7\xe1\x00\xd1\x06\x97\xe1r0\x04Z\xc9\xa93\xa9\x1d\x0cI\x16\xc9C\xa8A\x81%\x85\x17\x11c$6\xda\xf7\xe1\xfc\xb5\x92%\xbb\xce\x98p\x81K\xab\xa3c\x1a\xbe\xb0zF\x90\xb6\xd4zYt\xc5\x0c_S\x9d\xbfj\xc6\x9b>k\xe5\xb4$\x19\x8cH\x98\xc6\x14X=\xbd\xf5\x13\xdc\xc6ak\xd00\xa8\x9b\x8d3\xe3\xbb\xa7\xc3\x15\x1d\xbe%-p\xfd\xb3\nD\x1f\xef|>^\xf41\xfb\xa2\x0f|\xfc\x92\xfe[\xd0m4\x05\xbc\xc4$\x18\x97\xaaf;\x90\x9ft,r\x8e'9\x04\x86\x1f\xd7\x91<\x08\xcdB!_/\xe0\xe7%}\xbc\x195/\xe4\xd7\x05\x1c /\xc8,\x1flx\xe5\xe3\x0d\xb2\xf9\xc1$> \x99\x02\xd2\xd4\x81\x04)\xf9$\xbc\xcb41P\xba\xa3\xe5\xe3\xd4Fw\xb6\xfa\xd7p\xd1\xc6\x10\xeegM\xf39 l\xb7!+\x0f\xeb 2\x9ff\xb7\xa1\xa2\x9c\xd0\x89\xfe\x886\xc7N\xf5\x9dv;\x05\xeb\xe6\xed\xeb\xea~H\x88\x1a\xda6\xbc\x8e\xb5B%\xfe,\x03\xde\xa8|\x92\xad\xc8\x1b\x17\xa7,k\xa9W\xee\xbcze#\xa1\xca\xeb\xfdF\x9e\xeb\xe2\xf2\xd4\xf6\x02\x08K4\xb2`\xe3\"ugMn\x8d\xd2\xdd\x85X\xff\xb75k\xad\xac\xd5a\x88\xe5\x9c\x95\x98r_VK7\xf4\x8e\xd4\x8c\xaf@dM\x18\x89n\xc7\xf4\xc9\x11\x91\x97V\xe1gb\xea\xa5\\\xd7\x18i\x8d<\xea\x95\xae\xa4p\x1a\xbb\xaa\xbe\xd9\x18\xfb\xb0\xa7\xc6\x8d\x11\x960\xfe7g7'\x0f\x97\x95\x04\xf3\xfc\x99w\x13\x9f\x12/\x9avM\xb9c\xbf1N\xc2\x8e^\xe9\xd1+\xfd\xc7\xf0J\xdd\xf93\xc3=\x8d\x8a\x9a\xe2\xa7\xf69I\xa3\x9d\xd3~\xa2\xba.i\xd6\xb4\x89\xf3y\x055%nz'2y\x0d\xcc]\x8e\xbc\x14\x8fW\x9c\xc5+\xe8\x90\x85\x9d1\x16\xe4\xef\x8a.s\xe9\x05\xa90sW\x9c\xb7\xab,kWQ\xce\xae(c\x17\x9b\xc7\xd7U\x92\xad+\xcd\xd55\x99\xa9\xab$O\x17K\xb3t\x95\xe4\xe8J2t\x15\xe6\xe7\x8a\xb2sM\xe1\xe6\x8a\xf3p\x15`\xe1\xca\xe2\xe0\x1a\xc7\xb75\x93m\xab,\xd7V\xe8\xbc\xa4(\xcfVy\x96\xad\xa2\x1c[y\x0c[E\xf9\xb5b\xecZ\x85\xb9\xb5B\xccZ,\x97Wk*\xab\x96d\xd0B\x04\xe2\x9cZ3\x18\xb5\x02|Z\xd1%>\xca\xa5\x95^\xff\xcb\xf1h\xc5X\xb4\xe2\xf5(\xca\xa0\x15\xe3\xcf*\xc4\x9e5\x8f;\x0b\x99I\xd8R^\x967\x8b\xa1\xacYs9\xb3\x92\xa4P\x11\xbe\xac,\xb6,\x9c\xac`/\x8d\xe1\xc2\xcaa\xc2\xc2x\xb0f\xb2`er`Mc\xc0\npN\xe5\xb0_\x15\xe4\xbe\n\xd4\xc2\xd3\xb4Y\xacW\x18\xcbUA\x8e+\x9c\xe1j\x16\xbf\x15\xc6gU\x9a\xcd*\xcae\x85\x91\xfc`\x15l\xbf\xd5\xdbe\x98\xa7\x86\x1c\x93\xe9\xb7pz\x1a\xe9\n\x9d\xc385\xe0\xd3B\x87\xaf\xe1\x8a\x19\xff\x98\xc75\xc5\xc6\x1fL\x04Y\xa6\xa2A\x0b\xab\xfa\x85\x18\xa6\xc2\xfcR\xf9UAC$\xd3\x99\xa5l\x8c\xa9~B\xbcRAV\xa9\xfc\xfaOe\x94J\xf3I\xe5\xd7\x01\xed\xc3rLR\x01\x1e\xa9 \x8bT~\xc5G3H\xc5\xf9\xa3\x82\x05\x87\xd3\xa1\xe2\xfdX\x987\xca]4\x83\xacQ1\xce\xa8d#\xf1\xfc\xa7\xdc\x86\xce\xe4\x8a\x1a\x9a\x98d\x8a\n\xf1D\xb9\x19Z\x13Y\xa2&X\xd64?Tz\xda\x95\xe5\x86\x1a\xc9\x0c\x15l3$\xf3\x0e\xc3\xfcA\xd1\xe9\x0cY\x9d\x02\xc5\xd9\xa0b\xbcHq&\xa8B\xcd)\xc6\x01e#\xe8\xc71@e\xf1?\x15l\xf0h\xe6\xa7\xc0\x19\x16\xd8\xed\xce\xe5}\x8a\xb2>E\x9b\x99\xce\x0d\xb5:a\n\xb1\x13F\xe2\x94\xa4p\x9a\xe8\x06\xcf!o\x12\x7fu\xe4\x0db\xfc\x13\x8b\x04qS\xb8\xa2\xa5I\x9b\x8aR6\xe1\x84M\x05\xe9\x9a|\xb2\xa6rTM\xe6v\xcc,\xa1$M\x13J\xd2tU\x96\xa2 !h*M\xcf4\x8e\x9c)\x80`\xf1\x12\xf32\xb2\x03\xfd\x8fg\xa5\x04\x8e\x07\xac\x0c\xc4@\x83\xc9\x91\x9f\x95\xc5\xa9\xc4\xb3\x07\xa3v9\xb5\xf0L\xcc!\x0c\xca9\xde\x06\x9a\x99S\x98\xca*,\x9dWX8\xb3\xf0x\x1b\xa8\xf5\x94\xcc2\xcc\xca3,\x9bi\x98\x91kX<\xdb\xf0x\x1b\xa8|Fe'\xce\xceO,\x9d\xa1x\xbc\x0d\xd4|\xf2r\x15\x0bg+\x1eo\x03=\xde\x06z\xbc\x0d\xf4x\x1bh:\xb31#\x9d\xefx\x1bhN\xe7\xe4d;\xa6{!+\xe3qt\xce\xe3\xf16P\xf5\xe4\xe4@\x1eo\x03\x9d\x9f\x11y\xbc\x0dtt\xb6\xa4_\xe5\xe3m\xa0\xa52)\x0f\x91K9&\x9b23\x9frTFe~N\xe5\xf16\xd0)\x19\x96es,\x8f\xb7\x81\xc6\xb2-\xf3\xf2-\x8f\xb7\x81N\xcc\xbf\x8cnL\x8f\xb7\x81\xba\xd2\x8b\xe7d\xfa \x94S\xeb\x13%\x15\x9b\x9f\x9b \x81\xecL\x08\xe7gz\xa9e\x8524'\x1f\xf9\x1co\x03\xcd\xcc\xd9D\xc5\x1do\x03-\x9a\xc3y\xbc\x0dtx\ngu\x8e\xc8\xeb<\xde\x06j<\x85\xf2<'\xdb\xe7t\xb6g\xbaW19\xf32>G\xe7|&\xb2>Sy\x9f\xc7\xdb@\xe76\xacX&\xe8\xbc\\\xd0\xccl\xd0\xe2M\x1f\x9d\x13\x1a\x94\xc6\x8e\xb7\x81\x8a\xe7x\x1bh\xbc\xc2\xa5\x13K\x0b\xa7\x96\x1eo\x03\x1d\x91f\xfa\x9f\xef6Pp\xb5{H\xd4\xb4\xec\xe7\xf0\xe7\xe3\x85\x00\xfa9R\xaf\xbau\xf8\x07\xa2^\x8d$5\xe7\x11\xae\"\x02F\xe4T\xdb\xd7\xd6\x8eN\xa7\xbe\xad:\x16\x98a\xfc'kn\x19\xb7\x87\x8a\x99+S%\xe5\x95\xbdjG9i\x92\xc9\xab\x811m\x1a\x05sS\xd9c\xbe\xab\xa4\xb4\xec\x8at\xd5J^*,\xea\xef\xbf\x17\xdbp\xc4\xb7\x1bB*\xee\x99&\xfd\xd2\xc8\xfc\x90\x0f\xd9\xed\x0e#:\xe5>\x01\xbc\xd6i\xe3\xb0\";y\x05\x8et\xf9\xf4\x9f\xdb\xfdF\xdd\x90\xbbk\x9b\x15\xed:\xb9\xb1\x13\xfd\x81\xc8S6Y\xfc,\xeee=\xc1NE\xaaz\xb5\xd9\xcbc\x1en\xaa\xfa\x97\xb9/Kx{\xf7+Y\x17\xe5\xc8\xa8Z\x04\xf3\xbe\xc9\x90|\xf9\x14\xb9\xe6I\x9e\x15P`-\xa9;y\n\xb4%\xab\xdb\xaa\xf6r\xb6D-\x96\x95w&\x12\x1d\x8a\xd0\x8d\x07\xd1\xd1\x8b\x05\x82\x0e\x00\x14\x13g\x9c\xa2\xa3\xf1\xd6\xc9\x19\xb4k\xe9\xdd\x81&\xd0-\xe9ng*y \xeboGZ\xb6\xec([bfF?\x89XC\xaa\xf6\x80/\x89\xd6\xcf\xa2\x04\xf7^g\xf7I_p\x11\xeb*\xc8\xe9.HwY?\xe0\xe7\xa4e\x1de?\x88\x9e\xc3TF\xec\xfd\xd8\x12\xafR\x96F\xa2UP\xc5s\xb1r^K\xa5\xe3\xd3\xdfy\x97\xff\xa9p\xf1\x83\x87ZX\xb0\xdb.q\xb0)\x1c\xff\xdd\x0e\x9a=\xdb\xed\xd9\xf0\xb7a\xae9R\x84\xb3x\xb0:\x0e8\xa1\xb2r\xc9nWX\xa2\xd0?\xe5\x0f\x16\x16M\xf9n\xab^\xd1\xc2b\xfb\xf1\x1f\x96O\xc4\x8crK\xd3tt\xeam\xcay[\x109\xa3-\xef\xae_V\xe5\x8eL\xce8i3\xcde\xf0\x8el:\x8a\x12T\xf8\x17 \xa1\xd7\x08ELm\xcc\xc8\xa6\xf0x\x90\xea\x98\x1cw\xa7\x1c6\x0fF\xe2\xf3 \x03\xa3\x07\xe9\x85*\xb5L\xb1\x08^\x0f\xd2=\x08\x99\xbd\x083\xb0{A\x81\xccJB\x0f\xe4\x80N\xc4\xf0\x05\x85E\xb0}0\x15\xdf\x17\x94&*\x95\xc0\xf8\x01\x14\xc0\xf9\xc1t\xac_P\x1e\xc9\xc2\xfb\xc1<\xcc\x1fL\xc5\xfd\x85\xab\xbd\xd9\x88\xfeJb\xff`\"\xfe/(L\xa0~20\x800\x03\x07\x18\x16HY\n\x0b\x08%\xf1\x80\x90\xc6\x04B)\\ \xcc\xc2\x06\xc2x| \x94\xc0\x08\xc2\x0c\x9c`\xc4>\x05\xb6\xc4\xfa)\x8c\x17\x84\x03a\x06\xa1\x0e\x13\xc6b1a\x14\x1e\x13\"+X\x04s\x07#pw9\xd8L\x18\x8b\xcf\x841\x18M\x087r\x06Vs\xe4\xe4\x9a\x81\xe1\xc4u;\x84\xe3\x84\xc9XN\\T\x08\xdf \x07\xc0xB!\x9d\xcb\xc4zB6\xde\x13<\xcc'\x04q\x9f\xd0\xef\x8dq\xec'd\xee-'c@Qi:e1\x8c\x03\x85 \x16\x14\xdc\x1a\x97\xc3\x83B:\x90\x80\xe3Ba\x146\x14{;\x80\x0f\x0d\xbd\x8aaD\xfdw\x83BGaE\x01BxQH\xf7\x975R\xa5p\xa30d\x04\x07\xb1\xa30\xb2n\x01\xbd\x1f\x8d#E\xa5\x98i\xeb!,)85JU\xd8\xf8\xc7\\L)\xcc?\xa2\x8c\xe0K!=\x12\xe06\xae\x18\xce\x14\x12XS\x98P\xb9H`p\n\xee4(L\xdf!\x12\xc1\x9eB\x1c\x7f\n\x13Z7\x1d\x87\n\x99XT\x98P\xabH\x9f\x97\xc4\xa5B\x0c\x9b\n\xa2RA|*Lh\xd6\x04\x9c*d`U!]\x95T\xceZN\xef\xcf\xc0\xae\xa2\xf2l,G\x1a\xbf\nI\x0c+\xe4w\xc4l\xc4U9L+\x8c\xc5\xb5B\x14\xdb\nn\x0b\xe6\xe0[a\xfeZ\x91\x83u\x85\xcc^\x87\x19\x98\xd7\xa0\xc0+:\x1e\xf7\n\xe9~\x81\x8c\xbe\x81\x04\x06\x16\xd2\n\xad\x9f\xdc\xee\x83Ix\xd8\xa8\xb8\x0c|(d\xe0b\xe10\x8d-\x88\x91\x85\xd98Y\xc8\xc7\xca\xc2\xe1\xbac\x1cn6*\xceM\xb3\x1b\x83\x9d\x854~\x16\xf2:!\xc7\xaa\xc3\x88\x8e*\x86\xa7\x85\x10\xa6\x16\xf2p\xb5\x90n\x7fN\x9b\x8abl!\x0fg\x0b9X[\xc8h\xc0\\\xcc\xad'\x10\xcd\xe2\x9a\x8c\xc3\xf5$i\\n\x10\x8b\x0b\xa5\xf1\xb8\x10\xc0\xe4Ba\\.\x0c[d\x04\x9b\x0b\x9eO7\n\x9f\xeb\xc9\x12x\xdd\x10F\x17\n\xe0t1\xc5\xc0\xb1\xba0\x17\xaf\xebI\xc3\xf0\xbb\x90\x83\xe1\xc5gK\x04f\x18\x048*h\xa3\xfd\x95\x92\xf7\xe1\xfc\xb5\xae[\x1e\xc4\xf1\x9c\xbb\x90\xe3o\x8a\x11\x9e\xa7\xe1\x1cY\xad\x93?\xaa\x18\xb2\xc8\x01\x15\xe7\x81\xdaW\x95kO\xd5\xc1\xb6Y\xef7\xd3\xb0\xc3\x93n;\xb4*\xe9l\x04\x94U\x95\x9b\x02\x15\x04\x16y'\x98+\xcf\xd7\xe2\x01%\x82\x95\x8ea\x91\xc2{9;\xa8b \xd7\x15\xd3K\xfc\x00\xd7\x1d\xdeq\xabFk\xd6z\xae\xeb\xeczy\x16\xde(\xca\xa8%\xe8?\x89\x03\xcbJX\xf8\xbe\x13MX\xbf\x97\xbd\xdbR\xe3\xd7g;\xda\xc2\x8eT\xedK\xd6V\x8d\x15S\x19\xa0\xb2\x07j\xa9_\x80n\xdf\xd0\xfb\x06^W\xbf\xc3\x1a\xd8\xd1\xb6\xab:+(\xc1[\xbe\\\xd3\xba\xd9N\xd1\xd2\xe1k\xcb\xe1\xe3\x7f\x16\x016n$A\xfc\xae\x90\xf9\x96.T\xf5\xd2\xd9ue\xd6!\x84\x1dG$\xf6\xfb\x91[R\xd5/\xbeTk\xda\xdf\x1a\xe7:[\xec\xd6\x03\x03\x10\xc7/\x97.\xb9Z\xb8\x87\xd5M|eu\x0cb\xbcR\x06S\xbe=\x02\xfe}\xde4\x9b\xf1\x96\xb1i6!\xbb\xd84\x1b\x9bP\x81\xff\xa1\xaa\xaf\x9bI6\xb0n\xd8R\xaeR\xcb\x11\x17w\x8f\xf9\x02\xe9q\xa3K\x92\xfd\xcd[\x97\xdf\xdb\x1f\x8c\xe9?~A2\x8d\xc7R\xd7\xcah\x9f\x14Q\xf6\x1a3\xb3Lw\x03\x10 2\xc4\x82\x0b\xc3A\xc6a\xa1X^9z\x1a_\xd1\xd5\xed\xef\xbf~\xa1\xf1T6*+.\xca\xf7\xa8\xfb\xb9\xbd\xec\xda\xd5\x81[\x84\x96\xe5\x1f7Z\x8b\x8c\x84O\xa1\xe24\xbeL\xf7@\xacq\xeb\x8e=Z\xe3\x8c\xb2\xe2\x8d\x0b\x8cU\xc74\x85K\xba\x85\xe8\xea*\x1fl:\x0d\x0f\x8aM4?\x9c\x05\x06\x97\xb1\xbe\xa6\x8eD\xd5\xe5\x93\x11\x80HG\xd8\xe5\x933H\xf2qj\x076\xcb\x87\xfc\x9b\xe6\x85\x8c\x85h,EeM\xf3\x19v\x1b\xb2B\xb3\xceAFWw\x1b*\n\x8e\xc5dFvJ*.3\xaac\xec\x1aZ\xfd\xb2\xaf\xab\xfb!\xd8\x9eTcW`\xa8STTyyE6\xa4^\xcd\xed\x94\xfc\xa6:\xe5\xa2\x91n\xfd\xdb\x97[\x1ak\xa4m\xaf\x18i\x19\x16\x91\x92\x8f\xdc\x9br\x13\xf1h-\x1d\x8a\xd4\xd6h\xd8\xc0\x1b\xc6\xe6Eo\xa3\x92\xb2\xe4\x04\x92\xdbh\xb3\xf1\xa1\x83\xbe\x9c\x9a\x9a\xae\xc5\xdb\x9a\xb5\xc6\xc1\xaf\xdd\xc1\xd2.\x85\xb3\x06A`\x85\xeeH\xcd\xb8SC\xd6\x84\x11\xac^V\xad\xf4\xf6\x80\xb42\x04i\x15\xa8~t\x85\xa4\x9ae6\xc8\xceI\xdcT\x1d\x93 \xf3\x1diY\xb5\xdao\x88\xe1H#`\xea\xa1:\xf5\x8dp\x0e\x91\xe0\x86 N\xb0$*\xe0\xb1u\xfc\xe5\x14\xd9\x0f\xbe'.pB\x13Xn\xc2KM`\x99\x89.1\x89\x1b\xedM/\x92\xd7'\x90\x8dp\\\xc5\x8e\xab\xd8q\x15;\xaebAY\xff7\xacbQ}\x8b\x8e@\xba=^[\xcc\xa0\x02\xfdu_\xdd\x91\x0d\xad\x99\\V\xbc\x97\x11\x81\xf4~EwL\xa6HW(\xbd\xc3\x80\xb8\xec\xb5\xd6\xc9gVC'\xed\x9a\x88O#\xe7(\x00\xdd\xbeb\"\xf8&\x12\x0f6U\x80N\xa2\x0fB\x98}\x1b\xeb\x19\xb3\x99\xb9\xdd\xe1\xb4\xdb^\xde\xd5\x82jW\xae\xe7\xe5\x18\xd3\x0bV\x9bmqH\xfb\xbd\x96\x1f G\x8f\x84\xa3\xbfU\xc2Q\xfb(\x0e\x0dB\xa6\x02\x9d\xd6GJ\xda\xe8\x83\xb8O\xfa\x8c\xe4\x8dg\x04\xb2\x83\xa0\xf2\x9c\xc5\x0dzf\xcd\x8dD\xe01\xa8\x0fV_N\x8b*\xe2\x11\xc4!\xe45\xa3B\x9e\x90\xbc\n\xa1\x1b\x94\xc8Y\xd3a\xd9\xb92v\n \x7f(\xb5;H\xaf\xd7\xfe\x8e\xa0\xc2\xf7\x02\xc6Y\x1fw\xf7QQ\x81-@\x86\xf3\x9f\xd9\xce\xec$Q\xd7\x9b\xaf0G~hQ\xccW\xcf\xf0\xd2\x0b\x04\x82c>\xb9\xc2f\xa8W6\x92\x0dd\xbd\xdf\xc8\x94\x0fLZKW\xb4\xba\xa3@X\xb4i\x85\x9a\x14\xa93k\xf2\xea\x92\xea\"\xc4\x88:\x9e\xb2\x91\xa5\x1c\xf5\x93\x13\x1er4\xc2\x83\x1ew{\x91\x9e\xb0\x17\x81\xb4\x02:\xd6\x88\xac\xa6\xcdFFw\xba\xaa\xbe\xd9P3\xb2c\x14+\xc38\x83@\xae\xc5\xfd'FZO\xcd\xfb\x83\xeb\xf9\x8b\xa6]\xd3\x96\xaeE\xf8HV\x11\xaf\x9e\xc9\xca\xed\xb8\xa9\xb1\x15\x12i\x91\x12\x98\x7f>\xd8'z\xbd\xf1W\xe8\xec\x15\xd2\x08\xef<\xd2!\xe1Pb\xa1\xe5 \xb1R\xcbg\xcc\xbc\xfc\x8d\x1c\x11\x1e\xb65\xd3<\x81\xb8(\xbf5e@n\x16\x86\xcd\xf4\x90\x84!\x90?*s\xe9EQR}a\x98\x94\x1eI<\xe4\x94\xa8\\Li\x94o\xe9F\xc4/H\x0dd%\x9co\xbf\xc1g\xdc\x11\xf0w\xbf\xcd\x97Z\xc6>\x9a\xda\xb0Q\x8a`KP\xcc5\xab\x8a\xf4\xe9\x84\xc2\xe72\xf2\xf2|y\xd7\\\x92_N`(\x02\x0b\xd6\xe4 \xe7%\xef\xc8':\xa62\x824\xf2\xb3\xd4\xe8\xbd\x96\xe9>:\xea#\x06j\xc8\xc8\x1c\xb2\x80DG\xf3q\xdb\xcaa\xf3{\xee\xdd\xfb\x8b\xb7\xaf\x04I\x83\nuI\xb6\x83J,\x91g\xb5\xf6\xe8z\x120\x95\xe4\x83\xc3\xd8\xa5\x01\xf7\x0b\xe9\x11t\\_\x7f\xddW\xadT\x8a\x9b\xe6\xa6\x11\x88\xeb\xdc\xc8\x08\xbe\xe0\xd8q\x917\xa1\x98\x88%i\x08\x02\xfd\x0e\xd3\x98\xd1\xb1\x10\x1d\xff0e\x1d\xc3\x1f\xc7\xf0\x87\xf9\xf7\xdfZ\xf8CU\xd4\xf6\xe9b\xdeU\xd0\xbb3\x05\xbc\xc4$\x18\xee]\xaew7\xda\xa5\xeb\xd7\x80Iq\x8f8\xf5u^\x94\xc1\x1b\xf2\x89D\xd7\x03\xa9\xb5#/Eq\x1d'\xb7\x0e.{\xe1E\x8f\x05\xa9\xac\xa3k^j\xf9\x9aN\\\x1dp\xc6\xe2\x94\xd5S\xc8\xaa\xc3\xa4\xd4\x93\xe8\xa8\x85xDX\x94\x88\x9a\xcd\xa3\xa0\x9eH>\x8d\x92\"\xa4i\xa7'\x13NO\xa2\x9a\xe6\x1b`\xac\xc7\xd2$\xd3S\xe8\xa5C\xa4\xafIb\xe9\xa9\x94\xd2\xdc\x8a#\xe2\xa2d\xd2Sh\xa4\xe3t\xd1\x05\x88\xa2\xb3(\xa2\xc7QA\xcf$\x81\x9eJ\xff\x0c\xe8\xe9}hoX\x94\xf2\xb9<\xd9sQ\x9a\xe7<\x82\xe7i\xd4\xce\x81\x0e\x8e\x91:\x8f\xa7s\x1eh\x9b\xb19\x1e rf\xb9\x14\xceS\xc9\x9b%I3\"\x10\xa7m\x9eA\xd8\x1c\xa0j\x8e.\xf1Qz\xe6\xf4\xfa_\x8e\x929F\xc6\x1c\xaf\xc74\x02fmI\x1da1\xea\xe5B\xa4\xcb3\xe8\x96\xf1\x99\x84-\xe53(\x96yy\x8e4\x86\x92+\xcf\xa5UNr\x02G\xa8\x94\xb3H\x94q\xae\xd3q\xc4\xc9\xb8\x0c\x8fKp6Mrng\xe4P#\xc7\xdb\x9dE\x87<\x92\x08\xd9\xe7V,@~\x9c\xa4=\x8e\x13\x1e\xa7\xa8\x8e\x83\xbd4\x86\xde8\x87\xd8\x18\xa34\x9eIf\x9cIc<\x8d\xc08@\x11\x9cCZ\\\x90\xae8P\x0bO\xd3&\x91\x13C\x84\x88\xb8 \x051N><\x95v8H1<\x83\\\x18\xdd\x86D)\x841~S\x8c6\xb8\x1ca\xf0t\xaa`\x84\x16x\x12!p\x94\xfc7\x9f\xf67\x8b\xf0W\xc51r\xa8~\xd5\xabI\x92_\x94\xf9\x16/=\x97^5M\xe9;\x82\xcc7\x93\xc6\xd7k\xc6\x0c\xea^T\x8dg\x10\xf4z\xd1\x16\x94\x9aw\x1a)o\x88\x80\xb7,\xf5\xee<}\xc8\xa2\xdb\xcd!\xda5\x97\x15\x8c\\W\xeef0Z\xdd\xf8.a2\x95.\xce\x1c\x12$\xd1\xc5\xe8s\xed\xd3\xe0B\xc4\xb9\xc1m\x1dF\x96\x9bK\x93\x9bE\x90\x9bG\x8d\x9b$\xc5\x1dA\x87\x9b\x85n\x1f\xe4\x1a\xbd]\x86\xfcv\xc8\x9d\xc02\x02\xf2j\xe2i\xa4+t8U\x08\x90\xdc\x9ag\x0b!Y\xc1\xec\xf4p\xc5\x8c\x7fX\x07\x1b\xe6\xdf\xb3(m\xd9\xf8\x83\x89 \x81m4haU\xbf\x10im\x98\xae6\xbf*h\x88d\n9mOB\x8b\xc8\x0b\xd1\xd2\x06 i\xf3\xeb?\x95\x846M?\x9b_\x07\xb4\x0f\xcb\x91\xcd\x06hf\x83\x04\xb3\xf9\x15\x1fM*\x1b\xa7\x93\x0d\x16\x9cIz\xe3\xf5\xe3\x0c\xdaX\x11\xeeu\xc4\xb9\x8bf\x900v\x12\xb5S<\xf37\xb7\xa13)a-4l\x9c\x0c6D\x03k\xd5t:\x01\xec\x04\xcb\x9a\xa6{MO\xbb\xa9\x14\xafp\x85ExG\x92\xbb\x06\xdb\x0cI\xa7qF\xe9^\xc5\xe4\xcc\xc3\x1a\x8dF\x1b%2JS9\xa51\xccQ\xd2\x00@f\x17Aq\xe4Q\x1c{\x94B\x1f\x15mX1\x0c\xd2<\x14R&\x0e\xa9x\xd3G\xa3\x91\x82\xd2\xec\xbdE6\x1e)\x81HJ68eY!\xb3C\xa6\xc0\x95p\x83\xe2C\x982@L\xb3|\xf79P&O\x98z+\x0cfJ\xc2\x99\xe2\x15.\x0di*\x0cj\n\xc1\x9a\x8a\x02\x9b0hSIp\x13\x04\xe1Me\x01N\x01\x88Sq\x90\x13\ns*\x0ft\xca\x80:\x81\xab\xddC\xa2\xa6q\x88\xbd\xd9\x88\x96\xfe\xba\xa7-\x175\xbc\xa3\x85\x1c\xd3\xaa\x8fi\xd5\xbf\xa1\xb4j\xb7\xa2\x81\xec\xe5l(\x9fH\x92V\xb2R\x88>\xf3\xd6C\xd9\xe5\x9e\x02\x07\xef_\xc2\xf2\x96\xd1\x81r\xf6\xbaS0r>&n@\xacu\xedjJE,\xc5@\xa5\xf9A[\xfb\nd\x990\xac3\xa4\x0di\xea{\xbf\xaa\xeb\x8e\x15\xac\xaa!-QU\xfc\"w]s\xb7\xbe\x1e\\\x8f\x1d \xf7=\x01\xc8\xcb\xd8\xceO\x89_\x8c\xba\x12\xdd\xbf\xf8\xdc\x93\x87`\xef\x12\xa8\xbb\x8c\x86M\x8dS\x14\xba\xd6<\x84\x0bK\x00\xf1f\xb8\xd0c/)\x8f\xd7\x1f\xbd\x9a<|!\xf9\x8cz\x8f\xber\xdc\xb9X\xdc\x13\x18\xb9h8-\xcf\xc4\xc8\x80\xf7i\xd0\x99\x19\x17!0\x84\x98\xb1\x02\x9f\x8dg^\xa4\xc0\x10\xe4e\x96G\x9f\xe3\x18G3\x98=gV\x7f&\xb3h\xac+&\xb3\x89\x169\xc6L3\x88Z\x9f\xf79VsYC\xd5\xdeD\n\x1bO\x11\x9ao\xb2\x7fc\xa7\x95S\xcc\xc6\xa3\x1cR\x8e6\x0f3\x0e'\xad\x190\xd9\x0c\x18\xd3\xce\x10\xe7WtB\x05'Ow\xbc\x99\xc5\xa6x\xc6\xd1d\x9f\x0b\x97\xad\xf3a*\xcetGY#9\x91x\xd3!\xda4\x04\x06(7\xc3d\x9b\xa8\xdb\x80;\x0d\x0c\xa5\xd6\x0c\xae\x07\xf1\xc5\xac \x91f\x98B\xb3\x1cyf1\xda\xcc a&\x9bN\x95Y\x8a$3N\x8f9\x89\x18s2%\xa6h\xaf\xbb3\x0e\x92aN\xa6\xc1DqB\x01\x02\xcc9\xd4\x97\x82\xe6\xd2m\x0d\xc2\xce2\x85\xee2Lm9\x93\xd42\x8b\xce2\x9f\xbar\x06i\xe5\x0c\xbaJ\xc4`\x14$\xa5,KGY\x8c\x882MAY\x8c|2D;9\x87p\x12%\x97d9\xb4\x92S %\x83\xe4\x91\x13i#\x11\xc2\xc8\xe0B\x99\x87\xd5\xf0V\xd0\x89\xc4\x90\x03 $\xd6\xbf\xbfK\x97=\x8f\x06R\xd2>\x1a\xe2|\x02\xc8\x02\xd4\x8f\xf3H\x1f\x1d-w\x17\xc3\x99D\x8f\xaa\xa3M\x89s(\x1d\xa3|\x85\x01\x1a\xc7$\x81\xa3\xcf\xe5\x96O\xda\xe8\x7f\xfb7\xac\xad\x93(\x1as\x1a\x9b\xa2e\x0c\xb7-I\xc58\x82\x84\xd1\xe6\xab\x9aI\xbc\x18\xa5\\\x0c\x93-\xc6h\x16\xd1^\xc8\xa5VL\x91*\xbat\x8a3\x88\x143(\x14\xc7\x93'\"T\x85)\xc2\xc4BT\x89H\xc9\x96\xa6\xcc\"Ft\x89\x10\xe7P \"\x94\x87\xb3\xc8\x0e]r\xc3\x92\xb4\x86ABC\x97\xe5\xcd%1,C_X\x8c\xb8\xb0,ea\x1eYa\x92\xa6P\xed\x92S\x04\x85\xea\xb5(5\xa1\xc7\xe1\xe7\x97\x96K2\x17'\"\xcc\xa4 \xcc \x1f\xb4\xaa\\\x92pp\x16\xd5\xa0O-X\x8eT\xb0\x1c\x9d\xe0\xf4\xd1MR\x08\xa6\xc8\x03\xb5\xf9v \x03\xa5\x0f\xeeR\x05\x86}\xdd\x82\xf4\x80(1\xa0K h\xd5\xa4\x04\x19 \xba\xe9p \x00s\xa8\xff\x92\xa4\x7fi\xba\xbf(\xd1_&\xc5\x9fK\xee\x87\xb6\xcf\xea\xc5\xf9\x84~\xc3\xe1\xb2K\xe5\x97.\xdd\xd2&W\xd0\x10\xed\x1dG\xdc\xd7\xcb\xe9\x86*\x0ee\xe2\x151\xfea\x05\x99\xcd\xbf'i\xfaX~\xb0\x18%\xe5\x0bn\x81\xad\xaa\x16 \xe2\xc3)\xf8\xf2\x8a\xf7!&\x93 \xf7\xc0\xc9\x13\x01\x94j\x0f%\xd9\xcb\xab\xeb\x14b\xbd8\xa5^^\xb9\x13\xf9\xf20n<\x94\x15/\xaf\x16\xa3\x98\xf0\xc2\x1cxha\x19\x07\x95\x96\xa2\x14\xe4\xbasW\x16\x94\xe5.\xc4o\x17mL\xe2\x803\xd0 6\x92\xc7nh\x80!.\xca`\x87q\xd7\xb9G\xaf\x13X\xebF\x98\xab8G]\xdc>\xcc\xe0\xa5\x13\xe1EG\\\x1e#\x1d\xda6\x88&\xed\xe2\\e\xc1\xa9\x06\xc9\x86CQ\xb6\xb9\x10\xedX\x98anf\xd5\xc7\xf3\xc9\xa1\x9a\xad\x9fqLrI\x0e\xb9\x02\x8d\x1b\xcd\x18\x87\x84\xf7\xc1f\xcb\xcb\xe1\x8a\x0b\xb2\xc4\x05\x9b4\x02\x90:\x85\xfc\xcd%z\x8bR\xbc\x8d\xf4\xe9\xe6\x10\xba\x89\xbf\xfe\xcel\xe8\x90\xe5kn\xa6\"$nx\xc5J\x12\xb7\xcd\xa7l\xd3GrJ\xe0p~=\x97\xa6\xcd\xa1f\x9bI\xca6\xec\x0b\x94\xbc\x81\x8em6\x11\x9b\"\x8eR\xe2\x06\n\xb6\x82\xe4k\x0e\xedZI\xc2\xb5\x04\xd5\x9aJ\xab\xe1\x95_\x90\xabU\xd5'\xd6\x9c~\xfb\xfa\xec'\x19:\xf8\xb1\xb9\xc9\xce\xae\xd9v7\xcb\xaa^\xd3{wRV5\xa37t\xb0\xbd\x98\x8f\xb6\xd1\x05\x01>\x97\xe9\x1d\xad\xd9\x81sk\xc5\xeb\xd6_\"\xb6\x8f0\xd6VW{\x84\x17\x17\xab\x9a|P\x90f\xc4'\x80$;-r\x01\xaf|\xa2\xcbP\xe4b\xbc\xd9\x0b\xd8\xa9\xee\x17so\xd1w\x16|i\xc9n\xc7M\x98 \x89c\x8a\xab\x8e\x1b%Q%D qI\x1c\xe5#+\xd8AUw\x8c\x92\xb5\xe0v#_\xc4al\xf8Bx\x878\xef\xa3\x90\xf1\x96\xabV_[Z\x83\xfc\x83NN\xb3*\xacy\x07\x87\xd1\xb7\x04\xeat\xa4\xcf\xf4\xe1\xa5\x0c@\xefH\xd5v2J\xc8mU^\xad\xc3u\x16U3y\x10\xa1\xdbT+\xe1\x03\x98\xb5V%~\xe1U\xa6\xdb\x8a \xeb\xb3\x17\x91\xde\xae\xb1\x96izOW{\x96\xc8\xea\xb3\x0d\x82\xb18u\xac\xdd\xaf\xc4\xe6Y\xd5H\xf8\xbe5\x083\xc0=\xc8{\xf1\xads\x97\xe0\xa6\xb9\x89\xdb\x1f\xdd\xb9\xd9\xa6\x07I\x8d\xb3\x14\xd8Qw\xef\x0d\xbc\xc3\xe7\xa9\xb2A\x18\x9a\x1a\xf5`O|O\xba\xb3\xfa\xba\xc9\xee\x87\x1b\xd2-\xbf\x90\x9a\xf9\xb1\xd3\xc0\xcer\x1f\xd9'\x7fO\xba_\x84,\xed\x18i\xffs_WL\x9c\x8c\x7fi\xda\xcf\xf0E\xe5\xf4\xc8\xd5\x96\xdd\x8b#z\xda\xf2\x12\x16F\xb5\xf8\x8e\xa9L\xa5>uC\x95\x86\xc5\xf6\x86\xfb\xb5+&s\xd4VM\xadR\xa30\x01\xbcK\x07\xc7\xfa~\x98\x03B\x88\xca=\x8b\x8e\xcb\x07\xe1\x19e\x0f\xcb\x9a0\x92\xd9v+\x99$lm\xdf\x10FD\nX\xfd \xa4CK\xd9\xbe\xadu\x14[\x07\xfeE,\xa2^ohkLt8c\xf0\xd3\xa7\x8f\x17\x868;\x7ffC\xeb\x1bv\x0b\xbb\x96^W\xf72)Ud\xa5\x0b\xf8\x11\xe5;v>%x\xa9\xb20\xe9fP\xe4\xc6\xd0\xbe\xd0\xce:X~Cw-]q\x0fF\xa5t\xcac3\x91\xdbYm6\xb0kv\xd2\xc19\x81\xab=\x13\x15\xa1\xad\xf0/4\x9a\xc9\x10\xa6&\xd5\xef\xac\xe6\xac\x88\xc8&d@6]c\x9f\xc0\xfd\xd4\xdd\xd8\x14\x9b\x9f>\xfc\xa8\x155\xe5\x858C\xc2\x8d\xa1\x0d_nn\xa0\xaa\xe5Xr}J\x0f\x86\x12|to\x8a\xba7\x91\xe4,\xf9L\xf5\x7f -\xdaq\x81\xcdG\x8a\xc6o\xbc\xca\xf1\xad\xc4\x12?\xacJU7`I>\xd3\x87\x17\x83\xc7\xc1w\xf9]\xb3\xaa\xc8\xb0\xb7\xc1\x10\xb8B\xeb\x82\xce\x92S\x05\xe9_\x08S\xdf\x01\x19\xd2:aM\xef\xe8\x86\x8f\xa2\x08\x8e\x11\xc6\xc8\xea\xd6<\x137&\x84\xad\x8fN\xd6\x88\x06R~Ko\xaa\xfa\xdbM\xb3\xfa|\xd2\xff\xedm\xbdv\xfe\xf2\xfa\x96\xae>_\xdc\xf3\xf5\x16\x95\xf2\x86n\xaa;\xda^\xdc;Y9?\x12F\xf9V\xb0%uGT\x12\xd8\x96<\xf0\x8d\x95&\x93\xdew\x02\x9drK;\xaa&f\xc05\xfbCQ\xd7\xcc\x90\xa5-\xa9\xf1\xa7\x98\xf50-\xe3#\x18\x11\x1fL\x10\x9d5)\xbd.\x08)\x88\x81\nJ\xc2\n\n\x02\x0b\"\xd0\x82Y\xe0\x82r\xf0\x82\x14\xc0`\"\xc4\xa04\xc8 \x023(\x0d4\x08B\x0df\x83\x0d\x98c\xd6\x91\x08\xb2q\xc2\x8eA\xd8\x01\xc2\xaa\xc8AGp\x1b7f\xd3\x17\xcb~(v\xbc-\x9f\xd4!w\xa82\x05\x930f\xa7_\x04\x95\xeb\xe2~\xf4\x9d\x003\xd2\xd5\xd5e\x81|\x15\xbf\xda4\xab\xcfJ\x96V\xda\xfb[\xd2\xdd\x8e9\xa7\xe4\x82\x8c\x03\x0fn\xa6o\x17}\x9f\xadi\xb7#I\xd6(U'\xbe~\x88\xd7\xfb\xac\xf1\xd7\xcd\x9a\x1a\xb2\\19\xc9_\xbe}\x90\xa7\xb3\\\x9e\xaeg\xc6\x19:fd\xc4\xd0\x9e\xe8}\x82z\xb5%_\x96#\x8fz\xad\xb9\xc3\xfb\xb3\xd9\xb3\xdd\xbe\x8f\xf1\x1b\xe7aO;\xd8477\xb4\x85g\\\xb7\xa4\xd0\xe7\x0b\xf8I\x1c2\x19R\xea\xa6~\xb1\xa6\x8c\xb6\xdb\xaa\xae:V\xad\x8cS\xe8\x03\x9b\x1b$U\xcf\x94\xe3\x8e\x99|\xc2\x04\x92V_\x9a\x82\x10\xeb\xe5\x9et\x9b\xaf?\xce\xa12C\xce\xc1\x8d_\xc2G\xbf\xe13q\xf3s\xac\x11\xf2 4E>\xd1\x06\xc9'\xde,\xf9\x04O\xcc\xe5\x93h\xa1|\"\x87\xe3\xf2\xc9\x90\x92\n'\xeag\xea\"\x14\xaf|(iP>\xa9U\xc0~\xd2-\x99\xbc\x82Eu\x0c\xab\xff\xec\x05\xce|R\x0d\x9b~\xa0\xed\xf7\xa1\x91{\xe8\xfd\xe8\x1dgC\xa2rs\xd3\x11-a\xda\xc5WI\x89\xa9\xd2sM?\x9f\"\xebQV\xbf\xea\x13\xfd kE:E3,t\x89\xe1rF\xe7\x08FV\xeaS+\xfd\xae\x95\x97&\xeb\x83\x99\xc1\xe1\x98\x98\x07\x98]\xb0N\xf7\x13\x99\xf5~\xb1\xcc\xcbH\xcf\xc2\x96\xb1#o\xe2\xfc\xf4\x86#o\xe2\x8c\x94\x86#o\xe2\xb84\x86\x99I\x0c\x85S\x18f$0\x94N_(\x96\xbcP6u\xa1X\xe2B:m\xa1X\xd2\xc2\x917\xf1\xc8\x9b8'\xf5\xe0\xc8\x9b8/\xc5 \x87J\xf0\xc8\x9bh\x08\xd5\xdbl@\xee\x0cxa\xa2\xa4\x81GNh\xd6k1\x84@WM\xf7\xd01\xba]\xc0\xe9n'gS\xf3[\xb510\xbe1\x12\x18\xb9\x8e\xee[\xa28/\x9b\x1d\xady/myy\xe7\x1f\x80\xdcp\x93\xcc\xd4\xe1A\xb5\x11r\xc9\x9a7\xb9\xa6_`Ez:\x12\xb1\xcb\xa8\xba\xa1\xdbEw\xa9\xb0\xae2\xc5U;\xd4\x01\xbaFE~\xab\xebk*h\xe0\xa4 \xc2[#\x0ek\x88\xec\xe3\x8eq\xfdW\xa7\"\xd2oV\xa31\xac\xbe\x01}\x0ehM\x1f\x17Ww2\x0e\xa3\xd5\xab\x06\x9f\x91jO\xa6\xcah\xe9_\xc5\xa8,\xb02\xa5\xca\xbf\xf2\xfeb\x96\xe4\xe8\x9e\xd8\xbd\x89X\x03\xef\xb27\xcdJY\x01%\xfe\x8e\xb6\xd2\xee\xcb\x1b\"u\"\x8b\\Be:\xb0W\x0b5%_\xf9\x7f\x92\xee\x9c\xe4\x1e\xb4\xeb!\xf5\x86\xb7T\x94\xf8`\x92d9\x1c\xd6\x8c\xde\xb3=\xd9xA\x10\xbe\xc5\xdc\xe9\x0d\x8d:\x12\xb3\xdfQ\xf2D\xdd\xdd.\x12\x9c7\xcd\xad\xee\xa77\xff\xbe\x80\x0f\xf4\xfa\x15\x883\xc2W/_\xd2j\xd7-\x04\xb9(\xddo\x17M{\xf3\xf2\xed\xd9\xf9G\xfe\xe7\x17|\x11R\xdf\xbd\xd6\xeay\x82T\xaa\xea\xd4\n \x97\x03\xdec\xb6\x1d\xbc#mEj\xa6\xa3\x1bW\xfb\xfel\xb4w]\x06\x16\xcd\x8fo\xfe\xdd\x88\xf4.\xe0\x82{\x12b\x06\xbe=;\xe7u:\x81\x87f/\xce\x99\x07\xe3\xbb#\x9d\x11\x82\xba\xbc\xb8\x7f\xdd\xd4\xd7\xd5\xcd\xa5\x9c\xe0\">\x85\xf8I\xea\xfbK]\xdb\x1f$\xf0\xe1Rw'/M\xa6\x94\xf0J\xf1\xad\xcc\x9a\xae\xaa\xb5X\x06d8XMT%H}\xe2\x0eqLG\xffm\xf1\xb5\xe5\xd5\xf4Lx{v;\x8a\x00\xce\x98Lc\x83\x1d\xff\xff\x96+\xc4\xd3\xff\xdfK#\xdb\xe2\xa5_\xa5\x8f\xa2\x04^\xa9\xa7\xfd\xc7\xe1=\x9bY\x1f\x8b\xcb\xd84H\xc3\xdd\x05\xcap\xac\xb5y\x10\xddn\x88St\xac\xc6_\xf8\xdc\x92\xe4d\xcd\xb5\xf0\xb1\x85\x8f#\x126\xb6\x84\xa9+\xa7]\xb1z\x01\xf9\xb6Y?<\xed\xec\x98\xbf\xda'\x89\xf1\x16aU-U\xe3Uvm\xb5\x15g\xbfBV\xbf%ij\xea%\xd7\xec\xc8C\xe7\x86\xbf\xaei?\xdd\xaf\xa9\x11! \xf7\xe1w\xb4\xa7L\xbe\xa6rU\xbe!\x1dl\xaam\xc5\xfa\x9e3\xb7\xb9F\xddU%-\x9ez'\xd5'\xd5\x1e\xd1\x8a\xbe\xeaR6\xa5\x8a\x8c\xd6\x903\xd0\xd2\x9a\xd2-j\xdcU\xd3\x89\xdc$zG6{I\xee+\x96\xcbf-\x81%\xebFd\x89\xea\x1b\x19\x0c1\xd2\x13\x90\xf1\x10S\xbc>\x1f\x1f\xd4\x85\xaf\xa2\x92'\x97v\xac\xda\x8a\x00\xcd]\xc5W\xc0\xadb ^8\xf3\"+\x19Pnt\xb0\x0c\x07?P\x87\x86\xe9\"A\xbaX\x88nM\xebf\x8b\x05\xbb\xa2Q4\xac\xb6\xc9\xcfR\xe1\xb1\xd7MU\x1b\xbb|q \xcb@\x9c\\7\xdb\xaa\x96&\x95\x0f%\xa9U%0J\x8dw\xef/\xdeJT\x8a\xda?\xf6\xfc\x7f\xa4\x86\xb3Z\xdf\xaf\xd0[j3\xb6\xef \x93\xc7t~!\xbd\x1au\xc3\xfc\xbfz\x80\x9b\xe6\xa6\x11;S\xfb`R\xc1[T}\x8alL\xaf\xff\x13)p0\xb3\x17\xbc\x85'U\x8fyt8\x8e0A\x8e\x83\xde\xc5S\x84\x16\x07JS\xe3\x00B\x8f\x03\xf3)r\x1ci\x0c\xb9\x95g\x1ei\x0e\xa4\xb8d v7O\x06\x81\x0e\x84.\x05\x19A\xa4\x13\x96\xe1\x11)\xcc\"\xd5\x81\x11\x9d\x91\"\xd7\x81d\xbb\x93$;0\x8eh\x07\xd0\x1b&f\x12\xee@\x8at\x07\x127\xf7\xa4\xee\xee\x89\xf4R. \x0fd\x10\xf1\x00z\x87\xcf,B\x1e\xc8#\xe5\x81I\xc4<\x10\xec\x98$A\x0f\x94#\xe9\x81p-A-UL\x84\xa4\x08\xfabBDE\x90\x9c]\xfa\x99NX\x14\x10Hj\x9f\xb4\x082\xaa3\x95\xbc\xc8\x13d\x1cay\x04FP\x8c\xc4\x082\x88\x8c`>\x99\x11${\xae(\xa9\x11`\xc4F\x00\x05\xc8\x8d\x1cy\xd2\xffn|o\xbe\x18\xc9\x11\x14%:\x82\x91dG\x10G\xe2\xcc\"=2\x04\xf5\xf4G&\xf1\x11\x7f\xa6\x90\x1fe%$\xaaj\xf7\x19\x89\xea\xdf\xccHIT\x9f!\x89\x89\xd1<\xc4\xefh~\xde\xa1\x8bq\xc1\x16\x9d\xb9d|(\xfa&h\xddq\xd4M\xe0\xf5X\xa6\xdbd\xa4\x8d)d\x0e\xc8F\x83jLy\xf9x\x9a\x990X\x04\x02\x8b\xf6a\x00\xfa\x8aa\x0d\x0bA^q\xb8k.\xd4\xd5\x81\xb9\xa2m\n\xdb\x8b\xd9\xd0V\x81\xb44\xa7\xc2\x04X++\x08i\xc5\xe1\xac\xb3\xa0\xac\x1a\xbcj\xc8\x8b\xc0X=\x08+:\"\x98:\x15\x85\xadN\x87\xacN\x86\xab\x9a\x00U\xb3\xaf&AUG\xc0Tq\xed\x16\xd4\x14\xd2\x9d\xc0M\x85F\xa0\x8a\x86\xea\x05L\xcd\xe0\xdf\x0dFC\x99\x141\x85\xaf\x1e\xbcQ\x17\xa6P\xecuA\x84\xd1\x84\x1d\xa4\xd7\xd7t\xc5\xaa\xfex\xeb\xc9\x0d\xe9vm\xb5\xa2Oz\xf7G\x9a\xc9^\xdf\xe5u\x10\xcd\x96\xc2\xb6\xdaV\xf5~\xab\x8a\xd5\xa9\x16C\xba\xc4\x96nwM\xb3\xc1W\xba\xef)\x13^\xe6/\x15\xbb\xbd\xb8\xef&d\xdd\x1f\x88\x9a\xe5\xe2>@\xc9\xc2\xee\xa57\xe1\xf4\xab\xb39V\xdf\x8a\x7f,+\x8f\xe40\x0f\x11\x90\x9f\xa6\x1f\xd8D\xedH\xcb\x96\x1de\xcb[J\xd68Js\\2V\xc3H0\x13+\x94\x95\x1d\xcb\xc9\xf6\x9b\x08\xa9}cp\xbf\xa8,\xd49iYG\xd9\x0f\xa2\xc5\xbfs~\x14\xbav\xf6\xc6\x1c\x9diCS\xa6?U\xaa\x03\xd2\x03\xb2\xbaW\xa4\xabV\n\xc7\xc1\xf7r\x81\x9e\x9a\xc4V\xec4\xde|\x92\xfb\xf6\x08\xdb\x86|\xc8nw\x18\xd1\xa9\xad3w\x1a\xeb\x8e\xd6\xdd\xbe\x83\x15\xd9I?\x8d\xc9\xe4*\xf5\xe7v\xbfQ,I\xd66P\xf4\x07\"\xcf\x9c\xd6\xc2\xf2{\x1bB\xf9\x167\xdcz\xb77\xbc,w*\xfd~f\xb0\xdb\xb2\x16\xc1tB+\x1f\x16+\xb0c\x84)\x03$\x03\xae[\xb2\xba\xadj\xeanaE-,\x0b\xa4\x9f\xc8P`X\xa4\xc4'\xf1y\xce\xaa\xed\xd4\xf4\x8e5a\xf4\x05\xff\xdeyC\x1c\x1d\xf8\xf6U?3f\x06n\x94 UaH\x07\xb3\xa2\xf6X?\x05\x82\x7f\x01;\xdd\xff\x1c\xb5\xd7\xfa\x89ci\xe4\x13\xee*\xc8\xe9.HwY\xc2\xae;/\xd9\xf6]?BU$>sYr\xc5\x81\xa1`.V\xcegi\xad\xf9\xb4w\xde\xe5\x7f*\\\xbc\x88\xcd\x13\xd6\xb4]a\xc1n\xbb\x86\x10\xd4n\xa73\xf7\xfb\xbf\xedZz\x87\x9a\xcf\x9a\xde\xb3\xe5\xc1\xea\xd8[\xf4\xc2r\xc9nWX\xa2\xd0?\x95\xcaYX4\xbd\xab\xd6\xb4^\xd1\xc2b\xfb\xf1\x1f\x96M\xc4\xff\xe0\x86\xa8\xe9h\xbbT\x14\x1e\xa5\xca\xb7\x16y9\xe1m\xbe\xc3><(\x88\xb95\xce\x95\xbf\x97\x03\xe5\x1c\xe5\xa2Y\x1b\x8c\xfe\x8f\xc8FC?\xc1c\x9d\x845\x9c\x99\xcexq\xdf\x19\xd4\xbbW\nQ#\xb7\x80\xd2W\xf8\x1fjk\xf2\x83X\xdc\xff\xe5+4qIF\xcbD\xce\xfcf#\xf6:\x12\xac\xd5\xaa\x83\xc0\x05\xc0/\xf4iK\xe1\xaf|#HnZJ\x07bTD\x9e\xa4\x93\x14a\x00\xb4<\x81\x7f\xd8RR\xab\xda\xcb*\x9e\xeev?\x90\xeev\xd8\x7f\x0fav\xdaQ^-\xdb\xcdQ\xca\xfa\x86\xfbZVD\xbc\xa3\x12 a\xef\xd3\x84\xac\xb5\xe5\xd9\x19\xe2\xf4\x94\x9a\xad:\xb8 \x98\xa7?A\xbf \xe5\x15\xac\xf7\xd2\xa3\xa4\xcb\xbb\x86\xd1e\xb8r\xf2Iz!\xe9\x12\xf9#\xca\"\xe1\xdf\xb3\n\x82\xcc\xc2@\x8b\x8b\xbe\x91\x9c\x89\xe6\xe3\xf2{\xe0\x8f\xa4\x1a~\xfbf\xf9\xd3\xc7\xef\x97\x17\x7f:\x7f\xbb\xfc\xf4\xee\xdf\xdf\xbd\xff\xe5\xdd\x84/\xcf?\xbc\xfd\xf9\xfd\xc5\xdbi_\xbe~\xff\xd3Og\x17\x93\xbe}\x7f\xfe\xfec\xcf\xbe\x1fz,\xf2\xfc\xf1\xedM\x9b1\xfb\x11\xfc\xb8\xeb\x9f\xba\x9b\x0b\x95\x16#\xb1'|J\xab\xa8\xaa\x91o\x18\x06\x93\x0eO\xbf\x9c\xa1\xc6\xc8y\x82c\xf3\n~n\x98w\x8e\x97)A\xf6\xf3+8\x17\x8b'\xd9\xc4\xc5\x84vb\xf63B\xa1s\xbcz\xf9\xb4\xcd\xbeF6V\xf6\x93\xb7\x95\x90\x8fQ\xf4\xef\xbf\x8e\xbe\x1b\xde\xd6\xd9O\xa6\xed\x80\x11\xf6\x03\x92\xbb\x9a\xe1\x19\xd1\xed\x90Z\xe1\xdd'k\xabh?#z\x03F\xf6\x08\x7f\x12\x9bJ\xfb\x19\xa3\x17\xfa\xc9WM\xfd\xe4\x0e\x14\x8c\x1f,\x18;`\x99\x1bU\xf4\x13|\xdb\xea\xbe\x8af\x94!/\xe674\x15c\xb1\x9f~'\x17\xf6\xf7\xedgBM\x92]=T\"\x91\x15$\x9f1z\x98o\x9f\xfa3\xe0\xbc\xe2K\xf6\xc0\x98%\x94\xafR\xf6m5|\xab\xde0z\xa2\xb0\x80\xdbJ\xa2\x16\xe5\xff\ng-*Pl\xf9\x87\x0d=\xafs|\x1d5\xd6\xdb\xd0+\xc2C\xbc:z\x88\xf9_\x1e=\xc4\xe19z\x88G\x0f1\xf6d\xda\x0e\x18a?`\x84\xe31\xa2\xdb!\x7f\x0d\x90\xcf\xd1C\xccxr\x07\n\xc6\x0f\x16\x8c\x1d\xb0\xa3\x87\xe8=\x13j\x92\xec\xea\xa3\x87\x98\xbf\x84\xfeCx\x88\xc2\xac,\xef\x1aV\xd57\xcb]\xf3%n\xeb\xfe?\xf6\xde\xbd;n\x1c\xcb\x13\xfc??\x05\xc6{N\xdb\xee\x96\xc3\x99\xd9U5g4\x93}F\x96\xe5Lu\xfb\xa1\xd5\xa3\xb2k\xeb\xd4J\x10\x03\x11b\x9bAF\x91\xa0,Uo}\xf7=\xc0\x05H\x10\x0f\x02$!gf\x0f\xf0\x8f\xad y\xf1\x06.\xee\xefw/\x02\x1b4l)\xe9\xc7\xd2\xd7\xcd7h*O\xcc\xd17\x85C\xc7\xcd[iHf\x83\xe7D\x98\x91{\xb3\xbb4,\x036\xd35\xa0S\x9c\xa4G~\xa9\x98\x8cM\x91g\x9c\xf8\xc8\x1d\x8e\xecc\xa2`\n\xcf5\xc4\x96\xbd\xe6N\x10\x9f\xbf\x969[)\xe1\xf5\x08\x81\x06R@\x9e(0_\xd45T\xe0n\x1f\x987\x9a\x90?r\xf0\x9e\xeciB\x01\xd0\xc4B\xa01\xe6\x94=\x85\xf2\xa9\xecib]\xd0\x8c\xfa\xa0qF\x96=\x05.\x00z\x92\x0b\x82\x93\xbdeONN\x97=}\xcd\xc2\x85.]z\n\xe3\x8a\x05\x8b\xb3s\xcaBO\x9e2y\x98f\xf6\x14\xca?\x0b\x16h\xe3\xa9\xf9Yi\xf6\x14\xcaU\xb3'7\x83\xcd\x9e&\x0f\xbc\xb0\x13\xb4L\x93\xc5\x87\xee\xf9j\xb2\xf3\xe5\xeciA\x81|*\xc10y\x18w\xf6\xf4\x95\xd6\xce)\xe7<4\xaf\xd1P\xb8\n>L3\x0e\xea2\xcdh=4\xb3\x05\xd1\xd4\x03\xbcLS\x0ePz\x9a>3d\x9a\xda\xe1h~\xa7\xa3\xb9\x1d?\xeb\xc0/\xd3\x84\x83\xbfL~\x9e\xa3=\xcdh\x97\x19\xed\x11\xce\x94\xb4\xa7\x11\xfe\xa4=}\x8djy\xd9\x8d\xf6\xf45\x8af\xf7\xd9\x1aO\xa1t\xcf`\x81.V\xbd\x99\xc2\xc8\xa2\xf6\xf45\x9a\xd3G7\xb5\xa7\xafQ27a\xd5\x9e\xbeF\x99\x02(\xaf\xf6\xf45\n\xe7!\xcd\xda\xd3\xd7(X\x18\xed\xd6\x9e\xfcd\\{z\xfaz\xcd9\x9d\x05\xb2~\x83d\x99\xcc`{\x82\x9d3\xa4\xdd&\xaaeS\xd5\xb1_\xe1\x81$\x08\xea\x93i\x8eF\x18nZ\x97)\x9dD&\xccAH\xe9$\xe2L\xd3\xa7\x84LS;\x1c\xcd\xeft4\xb7\xe3\xbf\xf6I\xa4\x0f\x92\x11\xda2\xd0\"\xe3\x97\x0d\x0d\x93\xf7\xea\xa1a\x9a5\x80\xe7\x0d_\xb92]o\nl\xbdq\xca\x9df\x0f\x8c0\x1a\xd20\xbdB\xfc.\xc4\xeb\xd3\xb7\xd7\xef\xde\x1f\xfd\x18H\xd1\xd1\x93.\xe5\xe8\xcd\xc5\xc9G?\xc3h\x98t!\x814\xa5a\xd2\x85|<\xf5\xb1\x95\x86\xa9\xbf5sq\xb3L?zA\x82I\xb6~W\xe0-\xca\xcb5\xc7\xd9\x1a\x11{\xe1M\x91U\x9fO\xdfN2&C\xea\xa6#\xca\xf5k\"}i2\xa4?L\xb3\xc7\xf3\xece.\x0085\xd3\xe2bN\xb3\xa4B\n\xe6\x08\x0c\xd3\xe2\xb2Nj\xd29\xca;$\x88\x0dy\x91o\x81\x96\xc7t\x0f\x89#p\xda\x81\xf4\xc3\x9a \x92\xdf\xac*bN\x06|6\xa7\xec ]\x8f\xab& m\x11\x8d&\xfc\xe8\xf1\x85\xdf\x93\xb4\xeb\xc3\xc2a\xe9\x92\xd6[:\xc6k\xd2\xcf\xbf\x86x\x8f\x04\x13\xf6\xb8);[_V\xff\xbbSw\xf2 \xbb\xf8\x84\xdaA\x9aRGH\x93\xd7\xb8Y\x93q\xc6D\xdc\xb7\xb7\xd7\x01w\x1f\xf6irc\xa1Y\x0d\xc6\x12Y\x7f\xff\xfb\xdf\x7f\xf7?\xa6|2\xb3\xe1\xd0\xbc\xc6C<\xa0V\xb6\xff\xfe\xf7\x7f\xf8\xfc\xdd\xaf\xb9\x98s\xb4\x86\xb3\xf6\xb6\xc8\xb3\x7f#\x8f\x03c\xc9g\xf2\xd8(\xd7\xd8L\xdb\xf3\xdb\x86@\x98\xbd?v\x13?\xf0\xebP\x92\xd60\xcdj\xe49\x07\xb6\xceF\xb6\xaf\xf3\xaa\xce\xe9\xe4\xf9\xf4\xa4e\x94\xa5\x0b)\xd4\xc4\xe9=ubO\\\x07g4\xce\xe4\xf91q\x05\x9c\xd8@hF#\xa1yk\xdf\x8c\xc6Bs\x1a\x0c\xcd]\xf5\xbe^\x01\xa7\xafw\xd1W\xbb\xb9k\xdd\x9c\x95nF\xc3N[A\xd0\x925\xee\xc9K7\x8d\xc7\xdb}5\xadXaEb:yU^\xfb\x0d\xed\x81\xb9\x87\xe5z\xfb\xf87\\\xd2\xbc$\xd7a\x1au\x98&\x1d\xa0A\x07/\x86\xe1K`\xf0\x0e\x11\xd8\x82\x90&\xac!\xc1\xfbAp\xe5\xd1\xa4\x06@SW\xffI\x0d\x81\xa65\x06\x9a\xbe\xd6?mq\xa6\xac\xec\xa1k:\xbf\xf1\xc8'\x0cM\\\xcd\xa7-G\x93\x1a-lQ\x804c\xd5~\x82\xb2L[\xa1\x03\x0b\x10\x98u\x88\xe1nb\x8e>\xa3\\\xa8}\xe8=\xdb%\x8e\xb9\xbf\xc1\x11w7\xf0y=\x80\x8d\xc7)O\xf1\x8f\xc1\x94\x92\xdd\x1eB=Wh\x977\x05\xc1k\x84\xc1\xc7\x01\x81\x8f\x83j R(^\xc3\x86r\xaer\xee\x15-z\x94G\x07H\x0c\xf2\x02\xc2\xc3\x1a\xc0o\n\xefhM)\xbc\xe3 \x8d\x81\x8dc*\xd4SE\xda\n\x82\xff\x02\x1ao\x1c\xd2\x9b\n\xdeM\x84\xe9&\x02r\xe1\xd0\xdb,\x90m\xd0\xff^t,\x0c\xef\nF\xb6\x02\xba*`\x94{\xb6\xb7 \x99\x8cok^TiBN\x8e\xea\x0c\xf6\xcdP\x98\xc7\x0d\xde\x8co\xc3\xc1\x80\x8c\x03l\xd1\xc4Y\xa1\x97=\xde\x8a\xabD\xfaF\x1b\x94\xaa\x7fA\xb9\x8fD\xf9Q^\xaf /\x81Q.\x01\xb1\xad%\xf6\x15\x843`\x8d#\x8d\xb3\xbb\x9c\x9d4v\xa5J\x9f\x8b\xbc\x02\x84\xfdW^B\xd24p\x07\xfd\x19\xde\x92s\xb8\x82a\x05\xcf5!\x7fmI\x0dW\x0b0q\xac%\x08\xdaU\x0dE\x84_\x8b\xceoQ_\xa1S\xaa\xdc9\xb8\xa7\x8f(\xd7u\"\xdaE\x97,+\xb4\xabj\"o\xbcWG\x88e\xbb\xf36\x8a\xc5}\xccu$\xe1\xe2yk\xf0\xff\x94\xed\xee\x16\xee\xfc\x96\x97\xef+\xb7\xc1\xeb\xe5W\x1b\x8a_\x1cr\xcd\x85\xe8\xaeQld\xf2\x9b2r\xda\x88\xfb/\xf2\x06\xb5%\x8c\xa55\\\xcc\xfe%\x17\xc7\x1b\xfb|p\xdc\x940\xe5\xfa!MDw\x05\x91,\xae\xf5V\xa7\xdf\xaf\xbew\xdd\xdc\xd0_\x82\x04\xbdc\x8cus\x9cS\xc5\x1f\x7f\xf9M\x0c\xb2\xf2\xf2\xfa0\xcb\xed&\xf4\xe1\xba\x1e\x14\xd2ZP{a\x91CI\xf6\x8e>\xe7\xe0\xbb\x94\xf1F\x85\\u\x94?\x98\xda\x963\xa3A;\\\x0eo\xa2\xe0Z\x9b:\x7f\xb2jM\x9a=\xb6G4\xb5\x08\x17e\xfd\x88w\xf0Y\xb7\xba\x1dWk\xa2\xc9\xb5\x89\xb4i\x9e\xee\x96\x19T\xa5\x1b\xd5LvH,__\xdb\x9c\xf39\xcc\xd7\xc8\xe6@\xde\x90\xad\xbc^\xe3/\xd7E\xb5\x9d#\xdaXYY?\x08g \x9b\xbf$*\xaa\xed\x96\xd4\xe8E\x8d\xbf\x08\xe1/W\xe8\x03\xbf\x00O\x93TV\xe5\xab5\xa1\xa4\xde\xe5e\xde\xd0<\x1b\x1c\x01\xabmc+\xef\xd3^\x8f\xb9k\xb6\xeex\x1a\xbe\x13\xc7\xf8Y\xc3h\x7fH\xa3z\x8a\xed\x96P\xf5\xb3_\xe6\xd2M.\xc2\xf1,H\xf1\x1a\xbfO\x14\xd2x\x05!ym\xc2\xde\xcaB\xf2W\x19R\x80!6\xa0\xf6\x90<\x97\x8aB\n\x94\x16j\xe1a\xa9\xbf\xf9\xb3S\xf1\xca\xbeC\xd0\x97\x1a\xef\xf7\xa4F_\xb8\xca\"4\xa7Q\x81\xb8\\\x8b\xcd\x1e\xd7\xc6\xe5\x8e\xc3\x04\x15\x19\\_\xc5V \xbel\xd9\xf9Aa5\xbb\xe0r\xe1>QY+R\x8a\x0bF\xa1\xf7\xb5\x8a\x89\xcb*\xbd\xe3\xd3U\x1f\xa1\xa7\xb3\xc6y\xdd\xdf\x98*/\xf2\xeana\xd4\xab\xea\x90\xe6l\x80\x90\xea\x8b\xeb@\xbb\x93\x03FM\x91\x83\x89Nm\x00\x197\x9d\xd5^\\\x88io\xf1\x96\x15\x9c\xdfye\xaf\xd8\n0\xc9v\xcc>\xb9nk\xe7e`\x8e\x95\xd97\x13\x10:BW\xe7\xef_\xd7\xa4\xa9\xda:#\xa8\xc4;q\xcao\xcb\xfc\xaf-)\x1e\x11;\xfa\xd3|\x93\x0b\x9c\x88\x8ap\x8f\xf6E\xab!u\x8e\x8b\xfco\xc4\xb8\xd0\x1eA\xfdh\x95U\x05\xbam7\x1b\xd2]A\xbf\x82k \xa0\x0ep\xe5\x9d\\\xd60E\x05\xc1\x0d\xb5I\xabJ\x82\x9e\xbd~\x86\xb2;\\\xe3\x8c\x92\x1a\xee\xda+pCQC\xb6;Rv\xf3\xea\xea\xfc\xfd\xf3\x06\xed1\x85\x1b\xf5,\xc2\xba\xa0\\\xb6\x9c\x98\x88M[\x14\x8f\xe8\xaf-.\xe0\xe6J\xdeRB\xe0\x13\xfd\xea\xfc\xbd\x0da\x04\x93$\x13B\xef\xac\xbbE\x93\xdd\x91\x1dA7w\x94\xeeo\x0e\xe0\xdf\xe6\x86\x87Z++\xf1\xf4\x80\x8f\xa8\x0c\x97\xa8\xda\xc3\xe2W_\x93uW\x15n\x0dl\xf8Jd\x8d\xa4\xfa\x8f\xe8\xa8D?]^\x9e\xa1\x1fO.\xc5\xfd!\xacL0\xdd\xf8\xcd\x94\x08\xa3?\xeb\x83\xf4\xf2qO\xfe\xf2\xe7\xbfX\x04\"iX)\xe5H\x80\xe5\x93\xb7\xe9\xbe\xae\xd6m\xc6/\xa7\xe57\xd2\xdaT\x8a\x7fDG\xfdn\x07w<\xf2+\xd8\xc1$\x96\xe1\x8c_\x17]}n\xf7\x9de\xe8\x167\xfc\xf6l\xfb\x14\xb5\x16\xf2\xea\xfc=/\x11\xbf\x1a\x96\xde\x91\x9d2\x96\xc5\xa5\x99XV\x80\xfd\xff\xbe\xca\xd7\xec\xd0j\x15\x06\xc5\xe1\xd3\xb5\xe6\xb7\xef\x1e\xc8O\x99DL\xf3\xdb\xbc\xc8\xe9#* YwW\x0d\xb3e\xa5\xbew(9U).\x97\xe5\xaf\xf3Y\xb3B/\xae\x1a\"#n\xb1\xd6`\xc3\x87\xad\x0e0~p\x89\xb7\xf6\xba\xde\xd6\x04\x7ffs^\x88\\\xbd\xb4^9SQr(.\xbam\xcb\x0cF:+\xb5X%\xb2\xb6\xae\xb9AQ5\xc49\xef\x9b\xe1\xf6G\xd3\x02\x87\xe4j\x7f\xdbn\xf8M\xe2\xb8!\x07\\C\x87\xcb\x90YF\xfc\xc6T\xbe{w\xf3\xe3\x96l\xf3\xb2\xb4\x9f1l\xb7\xac#\xb1\xd4\xac`\xdc\xe2}\xde\xac\xb2jg_\xdf.\xf8\xeci\xc0\xfa\xc7\xa6g\xa9\xaf\x07\xe8\x85\xb0\xbc\x80\xf9\x14\xa6\xdbK\xb4\xd3LG2\xddZ\xa7?\xaf\x16'Etw\\\x83\xd1Z\xdcz\x9c\xa1\x86\xecpI\xf3\xcc\xd0\xb4\x1dG\xb1\xd1-~\x14;\xf0\xef\xff\x1f\xba\x0b\x95\xb9\x99^\xd9\xc0\x8d\xddZ\xea\xa8\xb7\xd5\xbdu\xeb\xef.u\xe6=2xc\xbc\x1c7G\xe5\xe3\x8drn(\x11\xaeosZ\xb3\x895R\x1e\xb1\x92j\xc2pQ\x95[qk\xb9\xde=l\xbd\xe3\xcb2\x94\xe7\xd6Ti\xd4\xfc\xa4vb\x0c\xa639\xb0\x8b\xfc\x96\x17R\xac\xc6Mw!1\xbf\"9\xfb\xfc\xba-\xd9?l\x1f\x83\xbem\xec3\xc9\xb6\x95W\x1b\xd4RXN\xe44m\xd8B\x86{\xd5|KJRc\xca\x8bJ\xef\xaau\x177\xec\xc8X\xbf\xa0K\xf4?=\xbb\xfct\xfe\xd2n\xe3\xea\x07\x92+\x1b\xc8\xc8\xd5<\xbf\xf34\xcf\x8f\x95\xd5z\xc1\x9a\xe6\xf0\x07\xf4\x0f\xfb\xdb\xd5\xbb\xaa\xfa\xcf\xd5j\xf5w\xdbk\xb8|<`*\x14{w\x0f\xea\xc1\x07\\7w\xb8`\x8d\xe6*\xb0\xbda\xf4<\xad\x19\xe6\x1b-\xbb\xabr\xd7g\xc8\x8b\xc3\x07-\x7f\xeb\xbf\xfd\x80\xca\xbcp\x0c@W)\x8c\x91v\xc9o\xf7\xcf>w\xab\x98Tn\xd9\x91z\xaf\xaf\xb5\x80p>J^\x03')j\x02\x9f[T\x82\xd7\xec\xfc\xb6\xe2\x0f\x98*\xf5\x9c\xe9\xdc\xdd\xda\xcf\xf6\x05\x11\x80Q\x13\x05=\xaag\xd0-\xb7e\xf1(O\x1d\xc6\x01\xb1S\xdb\x10\xdePq???\x9b>\x7f\xfd\\\x17(\x8e>\xb20p\xd6!b\x84=\xdbT\xd5\xea\x16\xd7\xbc\x1a\x0f\xaf\x1fW\x7f{\x06\xad\x00Z\xbb\xed\x18\xc2\xb3}\xc6\xded\x8b\xbe\xf6\xf0_/>}\xd4\x7f\xfb\xe1\x87\x1f~\xb0\xf5\x0b{\xb7?\x1b\x83\x1eS\xf1\xbb\xfca\xd3\x863@\xdb\x10\x89\x8an\xdb\x02\x1b!\xa8M\x01\xec\xe55\xe97\xdb\x03Dv\xb7d\xbd\xee\xb7\xdd\x03\xb1\x87\x1b'je\x03\xdc\xf0\x06\xb8\xf9\xdf\xac n\xc4!p@\\\x90\x0d\xba\x92\xd3\xf5\xd0\xaa\xa8\xe2\xec3\x9b\xad\xfd\xe1g\x93\x17\xc4\xb6J\xcay}F\xea\xa6*\x1d\x03_\xd81\xf8%\x8c\xd7\xbc'~@\xdf\xd9\xa4u\xafr\x96\xa1x\xf3\xfb\xb0\xd5\x19!G\xee\xcfxk<;D\xcfl\xb3`X\xc5\x15\xd4\xe3\xd9\x81]\x12\xaf\xc1G\xbcc\xd2\xfe\x17\x14\xf5_\x1c\xaf\xb2\x1aho\x86T\xe3t#\xd4\xeda\xdfC\xbf\xe5\x0d\xfaB\x8a\xe2\xd5\xe7\xb2\xfaR\xf2\xf9y\x87\x1b\x84Q\xd66\xb4\xdaY\x87\xf1p\xa0\x1d\x80\xb2\xa7\x8d\xbe\x9e\"!2e\x03\xaa\xdc\x1a\xd6\x16>\xb8\xf4\x0cn\xf8\x80\x97c\xed\xae*\xd6\"\x84m_&n\xb9\x11c\x14 [\x89\x18\xa2\xba4\x9eE76\xd1\x0b6\xebe\x13\x18Gqi/\xfa\xcb\x9f\xff\xf2\xd2:\x8c\x97\x8d\x87a&\xae!\xc1\xab\xcf\x84}\xb7\xfa\xfe\xbb\xef\x9bg\xd6N\xee\xff\xef\xa0a9\x0f4\x1e{y\xde\x9b\xdc\xf65\xb9\xcf\xab\xb6\x117\x98\xa2w\xec\x8c\xcf1\xfe\x06\xfd\x0b\xfa\xee\x00\xe5\xf49t\xcd\x17\xfe\xabq\xfe\xde\x91u\x8e\xd9Z\xa47%_7d\xb9;\x95\x1aNGHjI\xc9\n\xfd|Gj\x82\x1b\xf4\xbe\xda6:[\x95\x95\xe9\xc0j0T\x94\xc7\x1d\xa1x\x8d)>\xe8r\xe0\xea\xfc\xb0\xd0j\x81M\xfb\x89\x95\xc0\xf7\xfd\xea\xbb\xef\x0e\xd8\x7f~\xb7\xfa=\xff\xf7\xf7\xddW\xee~\xeb\xa9}>8\xba&\x05\xb9\xc7%E\xf4\x01\x82\xcd\x0f\xc7\xa1\xac\x157R\xab\xe5\xa5x\xdb(\x84\x008\xa3\xc8\xa8\xf3E\xc5\xe9\xc4\\}Y\x93\xacZ\x935\x0c\x82A\x89\x07\x14\xc4Q\"\xa4J\x81\xbc|\xe8\x88\x8fN^c\xc3\xc7\xec\x0cv\xa3\xb2\xf0\xdb\xb6\x19csY\xce\x81ld\xc5\x8b\xbc\xe1 \x95\x85\x0c\xd9X\xd8\x90SK\xea\xd8\xfc\\[\x9e\xdd\xb9hd\xeb\x19\xe3\x88\xf9\xd9\x93v\xfe\xe4h\x86\x938\x94N\x16\xe5h\x16\xa1LJ\x1b\x97R\n\xb6\xb3\xea\xc6Z+\x8cQi\xe3T\x86\xb7\x97\x8fW\xe9`V\x86g`\xb0+\xc3\xe9)~~\xa5\x87\xa5b\xe3X\x8e\xa9\x8d\x0e\x95qT]\x1cW\x15G\xd9\x96\xe3#\x03\x92\xcf\xbb\xcb\xc1\xb9\xf4*\x87n\xde\xa5O\xaf\xf6\x90\x12\xbd\xba\xb5\xaf\xc9 \xb9\x8e\x0b\x83\xe7>\xdd7\x84\x85\xe9\xaf.$/\x133\xa8\xea\x90B\x1a\x00R\x00\x1f3\xb0- \x05q2'H\xf4\xa9\xda\xc34\x95\x99\xe9o\x9c)\xdc\xcc9\xec\xcc\xf0\x1a\xcebh\xba\x87?[\x14\xbd\x1c\xcd\xd8,\xcd\x11\x9efhCD\xe6j\x06\xb05G\xf8\x9a!\x85^\xc0\xd9tHs\xb36\xfd\xe5 \xdd\x1a\xe9\x18s\xd3\xbb+\x9a\xec\xcd\xf0\xfd| \x83\xd3\xcd\xe1\x9c\xadQ.er\xba\xb8\x9cOQ\xa0\x00F\xa7\xc9\xe9\x1c\xddV|\x067;\xb3\xd3\xbb\xbe\xfbF)\x8a\xcf\xef\xf41\xad!H\xd2U\xdd\x8c\xda\xc8\x9c\xda\xd8\xac\xda\xe9\xbc\xda\xf1~\x8c\xc6\xad\x1da\xd7\xce\xe5\xd7\x1aeW\x19\xa3.\xa6i_\xa1\xf0\x88\xba\x03~\xdf\xfc\xf0\xba\x08\xbde\xdae\xc6m\x82\xfb\xaa\xa1\xe8\xfe\xdb\xd5\xef\xfe\xb0z8\x84\xd3$\xc4v\x05\x12K\xff\x95u\x93JAyEJAy-Ay\x8d\x1a[k\xeb\xa8\xa9\xa8ex\xa5\xf8\x97\xf6!c\xe1\xa7\x87Q\xdf/\x1f\x9a7\x8f\xb0\x7f\x08Q\xe7g\xc7\xa3T\xf8\x0f\xd5\x9a\x9cv\x9c\x1fc\xd2\x98\x13\x06\x94\x8bC\xbd\xdeB\xe7\xe8\xce\x81\x8a\x1e\xd2\xe4\xdbR\xa1\xb0N\x98\x98;3\xfa,\xe4\xc6\x1e\xc8\x16a\xe29\xbf\x83\xfd&Q\x0fk\xcehl\x00\xdb\"\xf1\xbfB\x17\xa7?~\xbc\xfe\xf0\xe9\xed\xc9\xf5\xd5\xc7\x8b\xb3\x93\xe3\xd3w\xa7'\xfa\xdd\x04\xea[oO\xcfO\x8e\xf5\x10\xfa\xea\x0b\x97'\xff~yu\xa4\x07\xce7E\\\x1f]\xfd\xfb\xc8K\xefO~<:\xfe\xd3\xf5\xd1\x87\xd3\x8f\x9f\xae\xf99\xdd\xfd\xee\xc9\xe9\xd9\xf5w\xff\xe3\xbb\xc1\x1b]\x84~\x7f\x05\xc7\xd5\x95\x8b|[\xb21\xa4\xf7\xbc\xd2'\x80'\xd2\x06U_J\xd4\x90\xac\xads\xaa\x9f:\xb6-\xae\x99>`\xdb\x9b9\x89\x87u\x8f\xc2^\xc9\xaa\xb2\xc9\xd7\xa4f\xfb\x1d\xaa\xc96oh\xfd\xc8-jE\x81\xc0\x9c\xc1\xca\xc0\x0b`p$\xc5 \xf2\x98O\x06D\xb2\xaayl(\xd9\xad\xd0\xd1~\xdf\x88E\x91\n\xd6\x08\xac\xcb\x12\x053i(k!\x13\x18\x8d\xbc\xf0E\xfe\x99\xa8\"\x85EC\xf9\xc6FW%eV\xb55\xdeBq\xaa=)Y+\xefXm\xcf\xce\x11\xde2\xa5\x89\n\x98\x7f\xc1\xf5\xba\xd1\xf8H\xe3]s\xb4\xcb\xcb\n\xce3\xca\xecF5\xd9U\xf7p\xf7\x08\x00Kl\x0e\x8c\x0e\x1b\xb1!\x1e\x9a?)\x03F\xaa\x16P(\xd6\x90'\xa7g\x88\xbf#\xfbJ\xddF\xf4v|\xfbo+tN6\x87\x883t\x0e_\xbf&\xf9\xbeY\x11\xaew\xb7\xbbUUo_\x9f\x9c\x9e]\xb0\x9f_\xb1\xcdY\xef\x88c9\x1d\x0e,\xa5\xcc\x1b\xb1\xe7\xc1\x06\xc8\x9at\xb0\x8e\xebK\x0e\xaes\\R\xc3\x00p\xdbv\xcc\xa6\x8e\xee\xc3\x0f\xcf\xa0S\xbe\xfd7\x05O\\\xa1\xcb\n\x91\x92\xaf\x0f'\xa7g\xac\xcc\xba\xd1\xfa\xb1j9\xa3\xcc\xb2\xd5\xb0\x13N\x8f+\xdc\\>\x1cW\xe5&\xdf\xde\xc0\xea\xc4A\x87R\xa7\x1c\x99\xd6\xe1\x1bY\xc9\x9fp\xb9.H}#\xbb\x85\x95\x06H\xae\xac\xd0;\xccJ\x9d\xe5k\xbe\x0d\x02\xd0(\xd6\x13]\xa2\xf8V\x1f;A\xb3\x02.\xcd`i\xd7\x164\xefu\xc7@\x7fO\xa9y\xaf>\xb0\xcf{\xdfO\xa9\xe2\xb2_\x87ZU \x94u\xfe\xa4\xc9\xb7\xaaz;P\xd2\xa4d\x8d\x16\xa4+\xca\x9d\x82^\xd5\x0e\xd1\xe3G\x06(x\xf0\xc1\xe16\xa7\xdc\xdel\x1c\x1d\xe4\x03e\xf2\xc1\x1a\xc0\xaf\x87d\xdb\xa4\xe8\x9e\xaet\xb8\xdf\xe4za\xe1\xc7\n\xf2@k|}\x9b\xd3\xe6\xba\xa1Um\x8f\xd5<\xe5\x86\x0bR\x18\xd6r\xefAy`=p\xeb\xd8\xc7l\x81\xcc\xe8\x9b\x9c\x1e\xf16\xca\xedS\x85u&\xf7>\xed\xec\x00\xacY\xc1\xc0?\xd0\xb6\xb82\xcd\xce\xc0b?#e\xd3\xd6\xa4cPsEsM\xd6`\x8a\xa2\xf83i\x80|\xbc\xcb\xcb|\x87\x0b\x84\xb9\xdb\x82\"p8M\xa1\x10\x00\xe1s\x98\x0b\x04\xe6\xe5\xd6Z\n\xb6\xf4\xd0;\xa6x\xa0\x06o$\xdfR,I%%\xe5Z\x10.\xb3\xaa\x14\n\x02j\x81\xc4\x06\x82\xd8X\xe6\x1b\xe3TW\xe7\x89\x93\xd4\x98\x9e\x03\xf3N_\ny(\xcd\xaa\x1aN\xeak9\xe3\x9a\xfel\n[\xbe\xf8S\x0ejE\x9c\x04\xdf\xd9qAZe\xf5 \xba\xe7\x17\xaa\xf2)\xf2\x8dR,>%e!\xe0\x94\xcc\x16\x02\xae\x07\xd8>\x1e\x9f\xe0\x17\xcaY?`\x86\x0f\x8f\xeb\x8b\x8e\xea\xd6\xe9\xa3\x1f\xd1\xfd\xc7\xf3\xd1\xa3\xf9\xf8\xb1\xdc{$\x0f=\x8e\x8f\x1d\xc5\x03\x8f\xe1\xee\xe5a\xee\xf1\xdby\xe0\x8ez\xd8^t\xd06\x8f\xd6q\x8f\xd5Q\x8f\xd4q\x8f\xd3\xb3\x8f\xd2_\xe9\x18m=B?\xfd\xf1y\xca\xd1\xf9\xa9\x8f\xcdQ\x8e\xcc\xee\xe3\xf2\xe2\xa3\xf2\x13\x1e\x93\x97\x1e\x91\xf9\xa1X\x91\xa7\x1d\x8f\xa3\x1e\x8d\xcdc\xf1\xa4#\xb1\xff8\xfc\xf5\x8f\xc2\xb3\x8f\xc1_\xf1\x08\xbc\xe8\xf8\xbb\xe8\xe8k=\xec.=\xe8\xb2\xa3\xad:`\xb5Cn\x94\x03n\xdc\xc3m\xc0\xc1v\xf4P\xabk\xb9\xa0 \xba\x14\xcb\x81\x0e'W\xa9\x0e\xed\x16\xdd4tqa\xbb)\x9b\x9b\xdd|\xa4\n\x0d\xb5AM\x9b\xdd\xb1\xcf\x8a*\xc3\x05\x8c=\xcb\xe2\xad\xfayA\x15\xad\xfa\xec\xa7zM\xea7\x8f\xaa\x1e\xabh\x96\xaaV\xf9\n}:\x7f{r~\xfd\xe6O\x16=Lyxtql\xfe\xf8\xf6D\xfc\xdaiuNav\x85\xce\x9e\xbb]\x8cc\xef\xaej\xdak\xcc\x15\xab\xf7\n\x89\xea\xcbbq\x02\xce\xd1\xc514\x1f\xdbN\xb0\x82\xb6\x0f+y8\xf8\xab\x07\xee\x9b\x8c\xc0\xc9\x86ga\xf9\x96\xb5\xc5\xe1\xf0\xcf\xeekVy\xe3s1\xe0\x94\xb2\xf2w\xf9\x12\x04\x95\xea^6;\xf8\x82\x0f\xbcI0&\x1c\x81\x86\xa8\xff\x04\x13\x02\xb5z\xd0;\x0f\xfd\xe3\x18ZD\x7fy\xb7\xa7|<\x1f\xf9h\xde\xf1N\xbfx:\xdf#>\x96/\xfc\xb8\x17\xfc,\xff\xf7\xd9\x9e\xef\xbc\xbe\xba\x85\xd9\xe9\xf3>\xdb\xdb\x1d\xd4\x0dM\x9a\xc3\xcf}\x89\x87;7(\xe9\xb5\xb18a\xcc\xf1jw{\xb0/\xf4]\x0f\xf2Z\x0f\xf7P_\xe0\x9b\xbe\xc0+\xdd\xb2`D\xf4=\x8f\xebu\x1e\xcd\xdf\xdc\xefi\x1e\xcd\xc7\xdc\xe5]\xbe\xc4\xaf\xdcJ\x7f\xa4!\xde\xe3s\xfd\xc6\x9d>\xe23\xbd\xc3-\xe4\xebi\xd6q\xe4\xddAg\xfa\x7f\xf7\xbe\xde\xb6\xf6\xfd\xc6\x9f\xf72oo\xf0\xeeV\xc4\x99~\xde\x11<\xbc\x97\xf9vk\xa3\\\xdf\x0c\x17\xfas\x8b\x86\x1e\x9c\\\x16xn\x8f\xba%;\xbc\xb5\xbd~\xda\xa6\xcbf\xb8o\xb6\xf9\xed\xdfmu\x9d\xe5\x89\x1dRY\x9f\xf7\xb5\xbbn^\x8f\xeb \xbe\xd6C\xb7\xb4\x85\xfe\xd5\xa3\x9e\xd5n\x9f\xea1ojk+\x84zP\xfb|\xa7u\xaf\xe9\x05\xfe\xd2\x01\x9e\xd2\xd3}\xa4-\x1e\xc9>\xbf\xe8H\x1e\xd1\x96\x9c\x07#e\x91\xff\xb3\xee\xef\xbc\xc4\xd3\xd9\xe2\xd9\xbc\xc8\xa7Y\xf7a\x8e\xe9\xbd\xec\xf4[\xd6\x9d9u_\xe58^\xca\xd1\xfc\x93\xe3z&\x87\xf9${\xbd\x91\x03\xfd\x90C<\x90\x0dW]3\xb7P_\xd2q\x7f\xe3@O\xe3\x00\x1f\xe3A\x91c\xfa\x15/\xf2(6=\x88\xe3\xf9\x0e\xc7\xf3\x1a\x9e\xdf\xbb^Oa\x9f\x8f\xb0\\\xbe;\x92\xc2l\xa6R \xc2C;\xa2\x1d\x07B\xb2=$\xb3I\x11\xd6\xbbJ)\x98\xae\x85\x03\xf1\x99<>\x97\x96\x91\x86\xfc\xb5%\xa5\x1a\xbc\xddz\xccp\xf8o\xb8\x95|)\xb7c1\xc8\xbf\xe5Q\"\xe3\x1e(\x07b\xc0\x0dj?X\x9a;_\x90\x8c{,S-\x80?\xb4\n\xdf\xdd0\xda\xe6\xf7\x84\x8f\xd1\x9a4\x8d4\xa9\xb3\x03\x98\"p\xe8\x15\xb9\xaf\xb9\xc3\x1c\x9b8\x05~\x04\x17\xcb\xcf\xe2 fw3\xe9\xcd\xa6Z\x97\xf5\xfc\x10\xdeEN\xe2\x18\xad\xf6\xaf\nrO$)~\x8c5v\x91\xef\xda\x02S\xe9\xb5\x13l\xa8U\x83\x9e\x06\x8eW\xe7M\n\x83\xf1J\x1fd\x87\xaa\x97\x02\xb0\xe1&Jj\xf7@[\xa1\x0bR\xae9\xfaL\x1f\x04\x00\xad9\x9f\xd1\x87k\xfe{\xe0@t3\xc1\xb4\xf2^\x8b\xdc\xc4\xee\xcbJ\xa0\x86\x8aU\xde\xb5b;\xff<:\x14\x06\xbd\xd3{\x1b\xc1\x9f\xd4\xe6l$\xbf\x11\"|\x9eF}\x16\x13o\xdc\xd8\xe2F[\xb7\x06u\x90\x8fe\x99U\xbfa|[\xb5\x94\x07\xd8\xe5\xb6\x0b\xa1h\x89\x0e\x1e\xc4\xd75\xcaa/\x0b\x1a T\xec5jX|\xe3\xc6\xcd\x1a?\xe2\xe6g\x9eQ\x07\xbc\xe1\x87|\xd7\xeeP[rB\xcf\x06}\xa9\xea\xcf\xe8\x8b\xb0\x00\x82 \x8b>\x98n\x83{R\xb3B\xac\xb4Z\x98\xb1\x8d\x17\xd7\xe1G\xdc\\5}\x81\xf1 \xca1\xce(\xd8\xbbe\xb8cY 0T::\x18\x1e\xf6C\x92\xff\xd5m$\x8b\xba\xd2\xbc\x1e\xc3\xdb\x00\x13-So1\xc5@\xda|\x04NeMh[\x97\xd2\x0fZj\x13\xdc\xfe\xcaq_%d9:\xd5\x11\x93\x0fW\x17\x97\x16\xc3\\A\xca-\xbdc;\xc0&\x7f\x80q\xce\xc12\xbe\x9a\x91=\xae1%\x90;d\xca6P\xa6\xd0\xd8\xa3\x0ev\x05h\x8c\xc3\xb7\xba\x0c^\x023\x8a\xe9\xe6\x1c@b\n\xda\xbe\xda\xf39\xbe>\xe0\x98;+\x10\xa9\xf9M\x17\xd2oQ\x13(VN=\x9f[\x92a\x0e]\x00\xa1c\xa8\xee\x7fh\xb6C7H\xa6\xfa+\x02\x8c{/\x9c}:\xdeu\xef\xab\xed0c\xeeQ\xad\xac.\x8e\x1et5\xa7Z\xc6t\xd5\xdeh\x15 \xf9\x83\x88\xa4\xab\xf6\x944>\x9ae\x9a\x150$]\xb57\x90\xf4k\xb8jo\xc65\x1a\xe2\xc2\x0cM\x9e\xdc\x04\xb4\x9f\xad;\x92\xf2\x8e\xba\xa8\xffB\x0bY\xba\xc2 ]a`\x95\x96\xae0@\xe9\n\x03{>\x0bi RH\x00\x19\xc4\xfae0A\x04\xd2\x02\x9a\x08\xa4\x05d\x11\xd7Dw\x145\x1a\x8d\x04R\\2 \xa4h\x94\x12H~b \xa4h\xf4\x12H\xe9\n\x83t\x85\x01\xd8V\xd2\x15\x06JZFs1\xc4\xd1t\x85\x81\x9f\x1a\x03\xc9\x17\xbc\xdfO\x93\x81\x94\xae0\x98F\xab\x81\x94\xae0\xe0\xc9G\xc3\x81\x94\xae0\xa0\x0b\x08;\x90\xd2\x15\x06\x13\xe9>f\x91\xd3\x15\x061(B\x90\xe2\x12\x85 \x85\xd1\x85 yIC\x90\x02\xa9C\x83\x97\xd3\x15\x06<\xc5\xa4\x1aAZD82\xa4\xa5+\x0cb_a0~B\x19X\x9eMhPZ\xad\xfbW\xf8@as\x9a\x1b\"4iG\xe5\xe3\xb48h>\x02E@\xbcV\xf9\x8dF\xa4\xf01(.\xf3}0i\x02\x80w\x9d\x81\xe2 \x8ac\xc8\x85\xe4\xb2\xc3\xafIY\x191S\x9d'e\xbdD\xa3\xaf\xbbi0\x08\x1dW\xb9\x1aC\x9aV\x9fI)\xf6\x07(\x92\x0c)\xcdV\x03vz\xe5\x19k\x8a\xdf\xc7O\x97'\x87|_\x13\x14\x85\x0e\xc9\xc6%:-\xa9\x98\xb6\x9d\x0da0w\xa1\x93\x06\xf2\x9a|[b\xda\xd6\xa4\x91\x01\x0c\xb8\x8e\xb3\xad\xb6\x15\x9f+\n=\x01\xb8s\"[\x83'\xc1\xf7\xa9|\xff\x8d|y\xbf'\xb5\xde\x8dZs\xc9\xd0\xc3\xfc\xddN\"P\xc74\x92\x1a\xda\xe3G\xbe\x0f k\x8b\xcc\xc9\xde\xde\x97\xf9\xbe\xe3H\xe5\xfb\xdev\xb4#\x14\xbf\xd2\xa2&\xc0\x17\xceycci\x05\x0f\xe6\xdbjm \x1bV\xad\xbbX\xda\"\xce;7\x9dq\x93\xb8\xd2\x96}1\xb5V\x0cb\x88\xc8\x90\xf1 \xe1\xa2 \xe1J\x08WB\xb8\x12\xc2\x95\x10\xae\x84p\x0dSB\xb8\x12\xc2\xe5\xd78\x12\xc2\x95\x10\xaeAJ\x08\x97H \xe1J\x08WB\xb8\x82rN\x08WB\xb8\xba\x94\x10\xae\x84pi)\x14\xbdH\x08WB\xb8|c\xe4\x97C\xb8\x84\xd1\x19\xbcs\xe4U\x9c\xdd\xaf`\x0b\x00\xaf\x0c\xf0\xc4#\x1d\xe8\xa0I\xea/\x1b\xd0\x9b\x08\xaey\xedd\x02\x9e\xc2\xfbG\xf8\xa9\xb3\x91\x06^\x84\xd5\x86\xdfp!n\x89\xd5\xe4\x1c\xb5\xf4\x8e\x07\x070.\x1fRb3\xc3\xc5\xb0\x97\x0f\xcf\x1b\x05(Y\xa1\x13\x9c\xdd\xf5p\x89\x0c\n \x80\x0b\xe3\xe6,\xcc\x07\xa9\xe9\xe1C\xbb\xebJ\xd9\xde\xc5\xf7-6o\xf9\x85\xde(\xa7\xa8\xca\xb2\xb66}\x19\xdfp7\xd4{R\xca\x19\"\xbf\xd3\x0b\xf4B\x9a>\xbb\x9bk\xf9{\xf6>3,$<`\xf1\x86\xd45\x18\xa4\xb0\x04,\xf2\x1d?m\xf6\x81\x10\xf6\xf8\x11\x9em\x88\x0e\x14\xca\xf4\xe5\xae*\xcc\x9b\xdcT\x1f\xf0\xfe\xe7\x1d\xd9U6\xd0b\xb2\x1b$\x13$=X\xfbcrYQ\xf2:\xabv\xdc\xcc\x0e\x03R\xf6\x0f\xd2`\x17\xa3\xe5\x7f>:\xffx\xfa\xf1\xc7C\xb68dE\x0e\xb7\xfc2\xf1\x10w\xa0xD\xe4AD\x13'\x0fT\x9a\xc3\xcb\x8a\x9a\x97\xb9e\xb8(\xf8\x82\xb9\xab\xac\xd7\x1b)\x97\x18\xc0\x9b7\xac\xe07\xd2\xef\x14\xbdh\x88.RF\xac\xde\xe6\xf4\xae\xbd\xe5K\x02\x80W\xaf{T\xebu\xde4-i^\xff\x8f\xef\xbe\xff\xfe\xa5\xda\xeal\xccU-\xbd\x86{\xe7\x03\xdb\xdf\x7fw\xaaq\x99\xac\xc8G\xe2_\xfc2|y\xd9=\xe8f\xb0(\x83G\xb8\x12\xdf\x80/\xfae\xa5\x8f\xde\xdb\x0eC\x03\xcd\x95/\xe3wx0\xdb\xc9\x03%e\x93W\xe55\x18\xc3\x13&\x960\xb1\x84\x89%L,ab \x13K\x98\x98\x9e\x12&\x9601\xbf\xc6\x910\xb1\x84\x89\x0dR\xc2\xc4DJ\x98X\xc2\xc4\x12&\x16\x94s\xc2\xc4\x12&\xd6\xa5\x84\x89%LLK\xa1xG\xc2\xc4\x12&\xe6\x1b#O\x88\x89 [\xb7q61\xec\xce`\xd0\xe8N'\xf2W\xde\x9f\x19.{,\xe2V\xd7\xbb\xb9I\xdb\x00\xaa\xbe\xdc\x91R,Gpw\x80\x9a\x0f\\\xb1*oU_\xb1q\xc9\x14 X\xc0\x1a\xc2o\x15\x1e\x8as\xd8L\xd9(\xcdp\xf9\x9c\x9f\xf7\xc0Im\x0d\xb0\x93a\x9f\xe7\xd7y\xc2\x15\xbb\x8a\x90\xb2*\xaf\xb3:\xa7y\x86\x8b\xebd\x8cO\xc6\xf8AJ\xc6\xf8d\x8cO\xc6\xf8d\x8cO\xc6xKJ\xc6\xf8d\x8c\xf7k\x1c\xc9\x18\x9f\x8c\xf1\x83\x94\x8c\xf1\"%c|2\xc6'c|P\xce\xc9\x18\x9f\x8c\xf1]J\xc6\xf8d\x8c\xd7R\xa8\xa15\x19\xe3\x931\xde7F\x921>\xba1\xfe\xb1\x1bu\xf9\xb6\xacT\x87\x9a\xc1\x99\xed\xf2\xe1\x8d\x12~\x8a\x87\xa2\xe2\x17#\x0e\xae\x12dM\x80\x8b\xa2s\xc2a\xff\xa2\xea\x9et\x86\"\xdc\xd2\xbbyWrv^7\xdd\x876O\x81N~\x17\x14\xac\xa5wU\x9d\xff\x0d\xe6WM\xf8]]#\x11\xb3\xd4\x11%\x0f\xef`b\x84*\x1dH\x07\x96]\xc5\x8ey\xacU7\x9dCE\xef\xe93+\x0c\x9dq\xd2\xf7\xdf\x978\xbc\xb6\xb3\x8f\xc86p\xa3R~\x17\xa6N\x9a\xdd\x89\x1dS\\\xa4\xd6\xb9>)\xe2\x86\x1eT\xbd\xd7\xd3\xd0\xcd\x89V\xe2*\xbe\xac*K\x92Q\xb6\\u\x19\xf2\xb8i\xeauE\x8a\xc0\"\xff<\xd0\x1f\xc6\xae\xe0d\x8a[\xd5\xf0\xb1\x01#I\x1b\x9a\xb2\xb7\x1b\x8a\xcb5\xae\x85Z\xd4\x99\x9dn\xeb\n\xaf3\xdc\xf0\xc2\x0d\xa3\xb8\xd9\xe3\xb4\xbd\xe9\xc2\xafQ\x7f\xac6\xe9Q6\xab\xcf\x83C\x0fR\x07\xf64b$\xf2\xd9\\\xa2\xe2McXSL\x9c)\"\xc64\x82/-\xc2\x96\xe2\xe1J>Li&\x9e4\x1bK\x02\xfb\xb5\xa5\xb5\x9c8\xd2l\x0c T\x18C\x9e\x13?Z\x82\x1d\xa1vo\xc8s\xe1Fs0\xa31|h16\x14\x84\x0bM\xc1\x80\x16\xe1?\x0b\xb0\x1f\xeb\xb2\x12\x15\xe3\x89\x8d\xefD\xc4vBp\x9d\x88\x98\x8e\x1b\xcf\x89\x8a\xe5\xd8q\x1c\x8b\x8ao[\xa5\xe6\xe27\x80\xd5\x18\xe2l\xd8\xcdl\xdc\xc6\x8a\xd9\x8cl\xc5#X\x8do\x97\x8e\x85\xd1\xb8\xf1\x99\xb1\x12,\xc3e\x00\x87\x19\x08\xb4a2Q\xf0\x98eX\x8c1K\xcc\x0d7&\x06C-\xf8\xcb2\xec\xc5\x03-81\x97\x00\xbc\xc5f|\x9d\x82\xb3\xd8\xbe\xff\xbb\xbd\xee3\xb1\x95\xb0\xca\xfb1\x95\xb1\x9a\x06`)\x93p\x14\xdd\xe8\xb4\x18?\xf1`'c\xb8\xc98f\xe2h\x95p\xac\xc4\x8f\x93\x98\x18\xc9\"|$\x08\x1b\x99\x83\x8bXq\x08?\x1e\x12\x0d\x0b\xb1\xe6\xaf\x8d\xa4E\xf8\x87\x89w,\xc1:\xac\xd8\xc6\"\\\xc3\xc41\xe2b\x18#\xf8\x85i\xd65q\x8bX\x98ED\xbc\"6V\x11\x8aS\x04`\x14\xc1\xf8D\x186a1\xe3\xdbr\x0d\xb55\xfb\xf0\x88`,\"\x08\x87\xd0\n\x1f\x17\x7fX\x84=\xd8\xb0\x86\x988CL\x8caI\x7f\x07`\x0b~\\\xa1_\xfc\xddZ\xb54\x18\xce\x08v\xe5\x08o5;\xb4\x95#\x98U\xcc@V\xb6 Vtz\x00\xab\x88\xc1\xabD;\x0dN\xd8\x8b\x82V\x99a\xaa,!\xaa\x86\xe1\xa9\xacg\xc5\xb1!\x133$\xd5\x92pT\"\xac\x94V\xb6A(\xaa\x19a\xa8f\x87\xa0r\x85\x9f\xb2\xb6\xaf#\xec\x94\x0dH\x8a\x19n\xca\x17jj\xc4\xb3\x85&$a\x90\x12\x92\x90\x90\x84\x84$$$!! IHH\x82\xf6\xc8\xb7K'$\x81&$!! IHHBB\x12\x12\x92\x90\x90\x84\x84$$$!! \xbfz$\xc1\xe6\x99\xb0\xc4+\xc1\xe2\x87\x10\xd1\x07\xc1b [\x14\x08(4\x08\x10M\xa6\xd2AJ\xa6\xd2d*M\xa6\xd2d*M\xa6\xd2d*M\xa6R\xed\x91o\x97N\xa6\xd2d*M\xa6\xd2d*M\xa6\xd2d*M\xa6\xd2d*M\xa6\xd2d*M\xa6\xd2d*\xfd\xe5L\xa5\xf60-\x91C\xb4PR\xaeI\xbd\xcbK\xba\xc2\xb7Y\xbe:\xb9'%\x0d\x0e\x84\xc1_\xe9\xbb\xc2<\x98aJ\xeb\xfc\xb6\xa5O\x1d+\xe33y\x8cqL\x8cv\xde\xcc\xcb5y\xb0\x0b\xba\xad\xaa\x82`5.\xca\xa0Ky\x07\x1c\xc9f\x03\x87\x81&/\xb7\x05a\x95|\x05\xbb\xda\x1e\xe7\xf5\x01\xc2MSe9?\x07\x89- \x11\xf6\xb5%`J7=\xb8x\xb0\x155\x08\xf76$\xb4&\xf7\xa4`\x8d\x0b\x01^(\xc5\xd9\x9d\xba\xa9)!]\x14j\xff9i\xf6U\xd9\x907d\x9b\x97o\x8a*\xfb|\xd0\xfdvR\xae\xb5_\x8e\xefH\xf6\xf9\xf2\x81\x0dy\xed\xfb\xb7\xa4\xc8\xefI}\xf9\xd0\xe9\xa7\xef1%\xf5\xc1 v\x0b\xda\xe1G6\x1d\xfe\xda\x92\x9a)/m\xc3\xa3\xbb\xf0i\xc6+\xde8Gt\xd7\xa0\xc1C{0\xa2\xacC\xc0\xd2\xf9\xda\xf8 \xfdL\x1b-\xe68y\x8a\x11\"\xa2\xe0\xb4\xfbm\x8d\xd7\xa4\x0b\x85\xf3\xa1Z\xb7\x05\xf9#\x18\xd6\x82[\x8bi\x0b\x9ez\x8b\x85Z5\xef\xe3\xfd\x1e\xedx~\xb2\xfd\xd4l\x9d\x92\xc6I\xfd\x19\x1bOe\xd36R\x9a#\xb7A\x9bv\x9e\x00\x83\xeaw\xc6\x1c\xd6\xc4\xf0\xa90\xd35f6\xdd\xc8\xbd\xc8\xcb\x8c\x97C\xba1\xa0oW\xbf\xfbgw\x8b\x9f\x158jC\xbb\xedL\x17\x84\xc2N\xc1;A\xba\xb2\xc8\xf2\x00L\xc4\x1f\xc9\x8d\xa7U\xfc\x17\xc4k\x03\x0dEk\xe1\xa6\xda\xd0/lSd+\xc8~_\x809\x807\".\xd0\xb3\xaa|%\x84\xde\x12Rr0D\x1c\xa8d\x86\x07(\xa7\xbc\xdd\x15qC[\xaa\xc0&:\x18\xa8/k\xde\xa0\xaa\xa5\xaf\xaa\xcd\xab5\xa6\xa4\xd7Wdq.s6\xe7\xd4H_?\x81_K>\xd0sj\x82\xb3;\xa6\x91\x8aSe'\x9f\x0f\x07\xf2\x90S\xd5\x07'p\x92\xb2\x12\xbdb\xef\x07\x8c\xcf\xb7LU\xce\xd8ru\x08e\x06\xccBT\xa3\x01l\x827\xe0\xba{s\xa5\xbci\xe9\x89\xa2\xda\xe6\x99Z\xc9\xae\x0fj\xb2\xab\xee\xc9\xbaw\x1a\xbbx\xfbo\x03\xeb\x08?\x1b\xe4\x8d8\xce \xbb<7\x81\x1ft\xc8L7S\xe8]]}\xe9<\xbf&\xf9&\x0dW1\xfb\xb2\x84\xc4\xa1W\xfa#\xd1\xce\x19\xa9\xef\xe5\x9d\xb0`\xefI\xcdD\x93\xb5j\xc3\xf8$\xac\x00k\x94o\xa0\xc5D\x85\x1a\xd2\xf5\xea0J\xdf\xd8\">(\x177\xfb)\x9aDg\xd4\xef&f\xb9\xa9\x04\xcc\x93\x97Y\xd1\xae9\x0e\xf5J\xbf{\xbfi\x99\xc6\xd1\xf0iF\xf9\x02\x91S\x18\xec\xdc\"\x8fiU\xb3e\xb7-\xd6\x08\xb7\xb4b\xba\x08\x04\xea\x93\xf9P9\xd9\xe5Ru\x0d\xaen\xd7\x0d\xc5\xd4\x18\xaf\x9ani\xd7,\xa9\x95\x0e\xe0\xd4\x08\xc7A\x86\x88D\x007\x0d \x1e \x1a\x05\xc0I\x00\xb0Y\xa4\x02\xe1\xffX\xe0\xff8\xf4?\x0b\xf8\x8f\x0b\xfb;A\xff\xb8\x90\xbf\x03\xf0_\x08\xf7\x1b\xcdM-`\x7f\\\xa8\x7f!\xd0\x1f\x19\xe6_\x00\xf2\xc7\x86\xf8\xa3\x01\xfcq\xe1\xfdh\xe0\xbe\x1f\xda\x8f\x06\xec\xbb`\xfd%\xa0\xbe\x15\xc4\xb7X\xd2\xcc\xf5f\x19\x80o\x01\xecg\xc2\xf5\x16\xe3\x89s\xa3t\x1aN\xc6w\xd0\x99 }\x0f\xca\xdb\xda\xf7\x1b\x7f\xde\x91\xe1y\x13\x9c\x8f\x00\xcdG\x05\xe6\xf5\xcdp!(/\x1aZ\x95\xb8\x04\x86\x1f\xc5\xa1\x1d\x10\xbc\x17\x8071\xbfp\xf0\xdd\xfc\xf6\xef\xb6\xba\xce\x82\xddC*\xeb\x83\xdc\xddu\xf3\xc2\xed\x13\xc0\xf6!\xb6\xb2\x10h\x1f\x85\xd9\xdd \xfb\x18\xc4nm\x85Px\xdd\x07\xae\xeb\xd0\xfa\x02`=\x00V\x9f\x0e\xaa[ m\x1f\xa0\x1e N\xb7\xe4<\x18)Q\x81\xf4\xc80zT\x10=&\x84\xee\x04\xd0uTR\x07\xcf\xe3@\xe7\xd1\x80\xf3\xb8\xb0y\x18h\xee\x85\xcc\x03\x01\xf3\x10\xb8\xdc\x00\xcb\xcd\xdcB\x81\xd3q\xa0<\x10&\x0f\x00\xc9\x07E\x8e \x90G\x86\xc7\xe3\x81\xe3\xf1\xa0\xf1\xf9\xbd\xeb\x85\xc5}\xa08,\xdfv\x1d\xf6\xac\xc0*\x98\xa1by\xf8\xb6j)\xc2h_\xe0\xb2\xec\x8d\xad\xbc7\xb9!9\x97\xa1\x9d\x84,\x1e\xa9k\x04@\xfa\xbf[R?\x1e\x81!\x9e\xe5+!\xbe`\x88#\x96\xf1\xf4N\xda\xb8\xc1\xcc2\x88\xe7\xa4\xdaOY\xcd\xd1\x17\xdc\xa3\x07#\x0d\xe9\xaa\x9c\xcc\xa5\x96\x7f\xf3\xf9!\x11\x16\xfe\xd5k\xe53!\xed\xfc\xecX\x0e \xd8h\xbc\xcd\nw\x9b\xd0\xc7\xc9\x8d*\x02\xb5\x8d\xb4\xea\xa0\xc2\xcf\xad \xd6\x1f\xe0*\x16a\x04\xb6\x97\xc8\xdd\x12\xa2\x15\xe4\x07\x9e\xaa\x1e\xc3a|\xd6\x08\xdaw\x88\x9aQ1\xde\xd9\xb9\\(x\x16\xdd\x90g\xcfVZ\x03\x05Y\x89\x87\xa0\x1c\x9ao!^\x02\xd0i\xa2lp\x1d\x8a\x0d\xd9!+l\x87\x96Cw\x9a4\\4\x95\x01\xdf\xa1\x08\x10\x9e&\xce\x00\xf4\xd0rPO\x93&zN\xcf$&\xb8\x87\\\x00\x1f\x9a\x04\xf2!\x03\xe8C!&\x1d\x13\xf0C\xdeq\x1f\x11\xf8Cc\xe0\x1f\x9a\x04\x00\xa2e \xb2\xece(\xa4\x05\x87{\x1a\x1a\x05\x05\xd1R`\x10\x05\x82\x83\xc8\x00\x08\xd1X]\\w\xab-\x03\x0b5aK\x11Cc1Q~\xf0`\x88\xc8\xb5C\xa0\x11\x96\x9a\x0bODc-\x89\xbc\xb3\x07\xc5\xc5\x16\x91\xc7\xcd8&\xc6\x88b\xe2\x8ch\xdc\xd9x\x11\xde\x88\"b\x8e\xc8\x8b;\xa2\xb9\xd8#Z\x82?\xdaZ\xecq/\xef\x90\xb3;\x1e/\xc0!-\xb2`\xedr:\x1f/\xc3#-\xe2\xda\xbd\xd3\x0196.\x89\x96c\x93(>>\x89\x96a\x94h\x19Ni\x9f\xa2\xd6BFC/Qt\x04\x13\xc5D1Q\x10\x92\x89b\xa2\x99h\xd4Qy\x19\xaai\x9b\xe3Vg\xe5@\xac\x13-\xc6;-\x02m.\xcb\xb3QP\xe4\xa2\x91{\xb6\xf8\x11\xd7\xe5\x90\xfd\x7f&2j[\xf6\x9c\x0e\xcc\xber,CI5a\x1c3\xb5\xba1GAKQl\xc4\x14Y\x9d\x99\x17#\xa7\x9a4jqh^\x86\xa5\"\x1f\xc4\x88\xc6\xdc\x9a\x03pU\xe4\xbc\xcc?\x1c_u\xcb0\xec\xeb\x8b\xb0V4\xa11|\x98+\xf2\xd6\xdb\x8b\xbd\xa2i\xf8+\xb2:\xe7-\xc4a\x91\x0f\x8bE\x1e\xa7g\x9f\xdb\xf3H+\x85b\xb3(\x00\x9fEV\xf7\xe7E8-\n\xc3j\xd1,\xbc\x169\x1b\xc6\x8b\xdb\xa2x\xd8-r\x97\xc2\x18iQq\\\xb4\x10\xcb\xd5D\xd9\x1c\xa4#\xa3\xbb(2\xc2\x8b\xc6\xdd\xa4m\x8e\xd26W\xe9X\x88/\x8a\x89\xfa\xa2\xe8\xc8/\nF\x7fQ\x08\x02\x8c\xc2Q`\x14\x88\x04#\xbb\xeb\xb4\xdd\x996\x1c7\xf4\xb9O\x07#\xc3(\x0c\x1dF\xb6j\xc4D\x89\xd1R\xa4X\x93eq\xab\x8e\x89\x1d\xa3\xa8\xf81Z<\x1e\xbc82\n\xc0\x92\x91\x07Ov!t!0\xa8\xf2\x99\x906\x19\x06\x1d8\xe95\x93\xe1A\xf0\xe4\xbb\x16'\xf3'\xf6L6\xb1\xc1\xd1\x83`\x88\x97$$\xc3W\xd2+\xdb\xe17)\xbe\x9b\xe6= i\x0c\x97\x88\xe0I \xc9\xe9Oi)\xc3\xf0\n\xada?\xa3\xe1\xe5kP\x08\xb0\xc7\x08H\x8f\xe4u_\x1aE\x90\x94\xe0e\x06\xd8\x07\xe6\xe8\xacP?\x7f=\xfc\xfe\x9b~~t\x13C\xfe6\xd5\xc9\x94\xcb\xbf\x12\x98\xc6\xb1\xac\xe3\x05\xc5\x94L\x9e?=4\"\xe5\xd8=\xac\xfc\x8e\xcf\xdd\xb0\xb3\xf3\x0d\xfe\xf9\xb9\xaf\xc1\xc7k\x14\xde\xf0v9\xb6\x0e\xe8Z\x18\xb7\xf4\xeeo]\xfb\xfeX\xe3 q\x130\x90 \xfe\xc6\xd7h\xbd\xd9\x82(\x0749\xa6-\x07\x8c\x92cZ\x180\x04\x06m\xa3\x8d\x92c\xda\x14\x00h!\xf8\x13\x19\xf8Y\x00\xfa,\x00|,\x0bFDh'.\xac\x13\x0d\xd2\xf1\xc39\xd1\xa0\x9c\xe4\x98\x96\x1c\xd3&@.\xc91M4\xb4*q \x98\x12\xe2\xab\x95\x1c\xd3\x94\x94\x1c\xd3PrLK\x8ei\xc91-\x16L\x11\x0d\xa2\x88\x0bO\x84A\x13^X\"\x10\x92\x08\x81#\x92cZ/k\x11\xdc\x90\x1c\xd3\x82\x1c\xd3\xb8] \xaf\xad\x16/\x87\xa1\xd0\xf4$\xb0\xb1\xca\xd9\x0b\xbdW\xc4\xb6\xc6%\x95\xbe\x0c\xfb\xbc\x16\x8el\xa2\xf3\xf6u[r\x1f\x93\x0d*\xdb\xa2\xe0aVu\x0d\x93KP\x9bo]\x91\xa6|N\xe1|\x8a!\xbf\xbe.\xe8\x05\x1co\xb2\xaa\\\x0b+\x00\xeb\xdc\x9b\x81\x89o\xd0\xa9;\xfc(\\mh\x85\xf2RP\xd5I_|\xd8\"\xed\xb6ung\xe4N,\x0d\xda\x93z\x977`\xdb\xa6\x15\"\x0f$k\xbbS\x0b\x93&\xf6+\xe9w\xc3W9\xa5\xe4\xac&\xe3\x06\xcd#\xd3NI\xfd\xd6M^ R\x8f\xf62\xbc\xe3 \x1e\x9b\xac\xa4\xc9J\x9a\xac\xa4\xc9J\x9a\xac\xa4\xc9J\x9a\xac\xa4\xc9J\x9a\xac\xa4\xc9J\x9a\xac\xa4(YIEJV\xd2d%MV\xd2d%\xd5R\xb2\x92v)YI\xff\x0f\xb3\x92\xea\x16R\xd3\x8c\x07\xb7c\xady\xd4\x0ca,\xa5w\xe8\xb6\x02\x06\xac\x0c\x14E:\xfdOX\xea\x84<6J\x84}\xaf\xdb0\xe1\xb2\x0d\x88\x1fRrE\xb2\xc9\x1bh\x14\xfe\xfe_[R?\xc2\xdf.k#ga\xfe\x089\xf1\x7f\xa6\xb3\xbay\xa9\x9e\x98\xccmX6U)\x96s\x92a\xe5\xf4\xbc\xef\xb0x\xaa_Y\xc2\x8d\x8c\x05\x1cq\xd9@\xfbgN\x8fd\xdfi\x0eRD\xab(\xa4\xf1\xd0#1-\xa4\x90\xa2\xd9I!\x8d\x06 Yd3\x85\x14\xcbr\n\xc9\x1f\x86d\xa6\x15\x15\xd2l[\xaa\xbd\xed\xfc\xc1H\x16\xd8U\xad\xd2\xbc\x01I\x96\xd9X\xad\x02G\x83\x92\xcc\xb3\xb7Z\x05\x8d\x86*Yl\x89\x95B\x02\xec\xb1\xd6/\x83m\xb4\x90\x16Xj!-\xb0\xd7\xba&\xba\xa3\xa8\xd1,\xb9\x90\xe2\xdas!E\xb3\xeaB\xf2\xdbv!E\xb3\xf0B\x1a\x0bj\xb2\xcc\xdak_+\x1c\x81M\x02\xed\xc0\x90\xe6Z\x83\xad\xc2\\\x16bH3\xed\xc4\x90\x1c!N\xbc*\xc5h\x98\x930\x8dc\xa6\x15\xd9\xbe\x98\x8e\x04;\xf1\x97f\x99]\xd9\x107\x16\xf2$\x8a\x8d\x19\xd22K\xb3!\x8ek4V\xe5a\xa1\xd5\xd9\xcc\xc9\x1a\xfcd\x99-\x1a\x927\xe6\xc7h\x08\x94\x00\xeb4$G$\x85 \x96jH.9\x16\xf7\xf2E\xb6kH\xe1\x8d\xe3\xb3cC\xf2\xb5\x82\xd7\xa6\x0di\x82e\x1b\x92\xcd\xf9~\xa1\x95\x1b\x927<\x8a/@\x8a?D\xcah\xab\x85\xda\xc0!\xf9,\xe1\x90l\xa1R\x16Y\xc5!\x05\xd8\xc6!M\xb7\x90Cr5\x93\xd7Z\x0e)\x92\xcd\x1c\x92\xb3,\x96\x91\xb8\xc8\x8anH\xb3\x04SYf[7s\xb0\x06TYhq7\x8bl\x86X\x89k\x87\x874\x1af\xc5\x1eh\xc5\x1ej%\x96}\x1eR4+=\xa4\xb8\xb6zHa\x16{H^\xbb=\xa4@\xeb\xfd\xe0eo\xe0\x15G\xe8\x15W\xb0\x8dp\xbb\xaf?\xfcJ\xb0m_\xbc\xec\xb7\xf0C\xb2T(\xa6\xb5\x1f\xd2\"\x9b\xbf!\xcd\x1a\x8a%&\x12\xa0d\x13\x05\x0f\x80\xb4t\x8cx\xb1\x01!. (K\x8f\x13@\xb2\xa1\x05\x90F\xceac\x91\xda\xedq\xbb\x17\xa3\x08\x03i\xc2*n\xc5\x12 MC\x14 \x0d\x0ek\x00\x06\x0c#~\x88\xdf \xc7\xb5\x1cE\xa20r\xa7\xde\xe3m^j\x0d:\xbc@\xa2{\x01ll\x84\x9f\xfb\x94_e\xb4\x1b\x19t\xa2\xd7\x01h8q\xb9$\x0f\xf4\xfa3y\x8c\xca\xc72\x02\xc7\xcb\\d\x9c\x0c\xf6_a \xc2M\x03mt\x86\xb7\xe4\x9c\xfc\xb5%\x0d]\xc1sM\x08\xef\x0b\xfe9\x13\xc7Z\x82\xa0]\xd5PD\xb8\xf9\x85\xdbk\xf8\xad\x0e\xfd:\xb1\xa7\x8f(\xdf\xe8\x03\xf6\x8e\xd4\x84\xdb\xdd\xca\n\xed\xaa\x9aH;\x9b\xaaD\xd1\x8a\xe2P6\xf7H\xb8\x1bWtz.\x9e\xb7\x06\xffO\xd9\xeen\xc1\x8a M~\x8a\xddI/\xbf\xdaPY\xd5\x96\xf4\x9a\x0b\xd1\x97\x94/\xb8A\x0d\xa1\x07<\xf4\x8d\xb0Z6\xa8-a0\xad\xc1\xf0\xf3%o\xa0\x1fGB\x9fX\xd1\xb2\xf0\x88'\x83\xcfC\"\x9c(\x99\xd6 \xa2K\x10]\x82\xe8\x12Dg$\x9a \xba\x04\xd1Y_N\x10]\x82\xe8\xcc\x94 \xba\x04\xd1\xa1\x04\xd1\xe9\x82\x12Dg\xa4p\x14*At\xb6W\x12D\x97 \xba\x04\xd1\xe9)At \xa2K\x10]\x97\x12D\x97 \xba\x04\xd1%\x88\xeeW\x02\xd1\xc1\xc5\xe6}\x01@J\x82\xe8\x12D\xf7[\x82\xe8\xeae\x10]=\x07\xa2\xfbubs ;K\xd8Y\xc2\xce\x12v\x96\xb0\xb3\x84\x9d%\xec,ag ;\xb3\xa4\x84\x9d%\xecl\x90\x12v&R\xc2\xce\x12v\x96\xb0\xb3\xa0\x9c\x13v\x96\xb0\xb3.%\xec,agZ\n\xc5E\x12v\x96\xb03\xdf\x18\xf9-agh\x04YXv\x95\x88)l \xc7l\xfa9\xd7\x8a\x98c\xcb}\xcd\x08\xa4\xc0\xcbF \x8dAQ\xc1\x17\x8f@\xa2\xe1\xd7\x8fX\xf2\x1e\xd4j\x1c#d\xa3_\xa2\x95\xb7\x8f +LX\xa1\xf2\xfbo\x0d+\x0c\x03 \x05\xa53~:\xe3\x8b\x94\xce\xf8\xc6\x19\xbf[j\xd8\x9f\xcf\x93sY:\xed+\xdf\xfc\x97:\xed\x07\x1d\xf2\x8d\xe3\xfd\x18R_n\xfas\xfbq\x81\x9b&\xf8\x94\x9e\xaf\xf5\xd3\xb9\xd63\xb6\xa6\xcf\xd7\xdd\\\xe2GK~\xc4\xe9\x0f8\xdd\x82\xf3\xf1\xdd%\xe2\xe1R\xd82*\xdc\xbb\x9b|\x97\x17\xb8\x1e\x8eK\xa9\x992%Y=\xb8\x9e\x9c\x1f\xff\xf7\xef\xbf\x13/\xb2MvFa\xf9\x19@-\xee]\xbb\xc3\xe5\xab\x9a\xe05\x1f\x18\xea\xb1\xc3,\xb0:\x98? \xa5U\xfc\xd4<\xeen\xab\"\xacD\xf0.W\x14K\x84ookr\x9f\xf3\x98DQ\\\x9dG\xea\xc6\xad\xca\x93k\x96\xf5Dj\xeb\x17\xf6\xaf\x90f\xc4EcG)\x17\xaf}\x01\xc1Z\x93\xe4\xb7D\x0f\xed\xcf\xc8 Z\xa39\x15\x88G\xbaF&\xf1\x1aY\xc8\xd7(\xa0\x94QH\xd8\xc8E\xc4\x0e)A4B6\xd2\xed\xfa!\xb9\x1b\xbd\xb4\x98\xa0\xad\xc9c\xb2\xa6\x92\xb4\x91\x15H@\x01\xd5\x99\x0c(\xd8\xfbr\x00/ \xd7DG)N\xf5\x04\xf8\x01\xc5\x84 \x90\xcf\x9d\xdc\xa6\xd7\x07B\x11(\"\x1c\x81\xbc\x90\x04\x9a\x0bK\xa0%\xd0\x84\xad\xc5\xfc.\xe4\xb3!\n\x8b,\xaf\xfb\xf8\x12\xa8\xc2\".\xc5\xa9^\x06_\xa0e\x10\x86}\x8aZ\x0b\x19\x0d\xd8@\xd1\xc1\x0d\x14\x13\xe0@A \x07\x8a t\xa0\x14\xa7\xda\x96\xcdL\x80\x04\xfdW\x8dS\x8d\xbc\xe5X\x06\xa0h\xc28\x9cb\x01QP\x1c \x05\xc5\x06S\x90\x05PA\xcbA\x15M\x1a5 \x16\xb4\x10fA>\xf4\x01\xb9\xe1\x16\x14\x02\xb9 \xe7\xed\xf3\xe1\xd0\x8b[\x86az[\x04\xc3\xa0 \x8d\xe1\x83c\x90\xb7\xde^X\x06M\x83f\x90\xf5&\xee\x85\x10\x0d\xf2\xc14h\x14\xaaA\x1e\xb8\x06\x8d\xb5R(l\x83\x02\xa0\x1bd\x81o\xd02\x08\x07\x85\xc18h\x16\x94\x83\x9c\x0d\xe3\x85tP \x03\xcb?\xbe\xbb\x9c\x0c\x94\x97\x1b\xc3\x134h%0\x83\xf1\xa1\xb1A\xef\x1a\xd9\x8b\x03\xf3i\xf2l\xf8\xf6\xd4BN\x08\xd4\x87\xe68\xf5M\x0d\xda\x87\xbe\x9e\xbf\x9d\"$y\xd9u).\x9a\x19\x15\xcbL^vQ\xf1K\xeaG/cb\x97^\xe422n\x99\xbc\xec\x96\xa3\x90q1\xc8\xe4e\x17\x8a8\x1c\xff]\xe6\xf7\x15_9\xc4S~\xce\xeb\xf9\x03[>\xec\x00\x8f\xd2\xc4}\xab\x16\xd3\\\xb1QpA\x03Vn}\xd9\x86\xc2\xaf\x86\xbd\xa2\xcd\xd1\xd1\x02\xb8\xe7*\xb2tZ\xe0l\x15#\x8bMW\xfe\x91k\xb2\xc2\xa4\xd2\xa7kM\n\x80\xa0\xd9\x06pK\xe8\x17\xa2,\x01lE\xc5J\xb5\xad\x93\xf5\xac*\xf2\xecq\x92\x02a\x0cf\xffb\xaa\x0db\xcb\xbe\x0eE\xde\xf3\xd2\xac~\xe9\x95\xe1\xe9\xb4\x96_Tg\xd1\x9aw\x91\xea\xe2^6\xa6)0\xda T\xe4t\xfa\x8cC\x8b\x81\xdd\x0da\xb4\xce7\x1bR\x93\x92\x8a\xa3\x14S\x100\xaa[\x0e\xbew\xda\x83\xac\xf5\x9ad9+\xdf54\x86^\xfb\xa0\xe5\x9cZYra+\x97\xb1\xc4F\xe4\xc4\xb9\xd9p\xf1xp\xd1\x18pN\xee\x1b\x9d\xcfz\x8b\xc5w\x1bg\xba\xcd\xe2\xb8\xcdf\xb7\xf1\xfa\xea\xa4,'\xafm6\xa3\x0d\x0c\xaa\x9a4\x07\x97m \x8b\x8d3\xd6\xf4\xdaX\x80\x969\xcc57Km!?-\x88\x99\x16\xceB[\xc0?[\xc0<\xb3,\x18\x11\xf9eq\x99e\xd18e~6Y4\x1e\x99\x8bA\xb6\x84;f\xe5\x89\xd1\x10\x86\xd8\\n\x98\x93\x076\x93\x01f\xe1~y5\xecq+\xbe\xb1\x83\xce\xe4x\xf5|.[\xfb~\xe3\xcf{\x19\xa3\x0b\x18\\\x8a8\x93\xcb\x15\x81\xc5\xb5\x8c\xbf\xa5\x8dr}3\\\xc8\xd9\x12\x0d\xadJ\\\xc2\xce\x1a\xa5\x1e9\x18Y^.\x96I\xcb\x08\xe7_\x99\xdf\xfe\xddV\xd7Yl\xab\x90\xca\xfa\x18V\xee\xbayYU\x13\xf8TC\xe8y!\x87j\x94=\xe5\xe6M\x8d1\xa6\xac\xad\x10\xca\x92\xf2\xf1\xa3tf\xd4\x02NT\x00\x1bj:\x0f\xca\xc2:\xf2q\x9f\"\xb1\x9e,9\x0fF\xca\"\x8e\x93\xceiZ\xc2f\xb2\xb0\x97\x16\xf1\x96t\x9eRL\x86\x92\x93\x9b\xa4\x136t>R\x1c&R4\x0eR\\\xf6Q\x18\xef\xc8\xcb8\n\xe4\x1a\x85\xb0\x8c\x0c:\x8e\x99[(_d\x9cS\x14\xc8&\n\xe0\x11\x0d\x8a\x1c\x93;\xb4\x885d\xb2\x84\xe2\xf1\x83\xe21\x83\xe6\xf7\xae\x97\x0d\xe4\xe3\x01\xc9\xe5\xfb\x97G\xa4\xc0\xde\xe6\x01\xa6:\xfdZ\xb3\x0b.\xc0\xa9\x84\xc0\xde\xf6\xa9\xdb\xc1'\xe2U\xcb\xcd\xdf>\x0cg:X\xb9\x14\xa6\xe9\x81\x99'2I\x8f\x831&\x10\xb3dhF\x05_:\xba\x91 \xc0\xe0\x01\x08,\xb71\xbdS\xe5\x94-\xab\xf2\xd5\xdfH]\x89\xde8P\xda\xa6\\\xf7e\xee\x8ak\x1b\xa9g\xc2\x96\x1d4\xdb\x9b\x06\xba\xa7\xeb\x0f0\x82\xaf\xd9&\xa2\x1ao\x15\x81<`R3F\xe9\x92\xec\x95.bT\xc7\x0c\xeb\xe0\xcf\xa3>~\x04[\xad\xc4\xf3\x0c\x97\x82;\xd0\x99\xa7\xba\x02\x88\xbf\x15\xbe\x97D\xa4i\xc5A\xea5A\xed^\xd1U\x8ez\xcbsV\x95M\xdeP\x80\xf1\xb8\x0d&\xbc \x1c\xe5\x80V`[\x11\x9b\x1c\xec\xdf\xa6\xda\x91\xce\xd4\xa3\x90~,Wk\xa8\x84\x12\x17\xf5\xe7DX\xd8\xcf\x15\x9b\xbcq\xe6S\xed\xe0\x93l\xe0\xc1\xf6\xef`\xdbw\xa0\xdd{\xba\xcd\xdbN\xfc\xb07S\x1f\xa3\x8c_\nPmt\xf4\xa1\xaa\xfbX[rL\x875\xdc!:*\xc5\xd1\xbf\xc3*\xb8\xed\x13\x0cN\xab\x00i\xa2e\x0f\xd1\xcf\x04\x0cL\xec\xfbGBQ\xdd\x82Z!\xcb\x18\"L\xb4\xfe!\xd7\x02\xba\xca\x01\xfb\xa6C\xa4\xd8j-\x88Bk\x84\xf9)R\x82?\x9c\xd8@Br\x12\xdd\xa7\xe5T\x13\xda\xd6%\x8f\xe7\x02\xe69kf\xeb|]>\xa7\"\xcf>K\xd7\xa0\xbfPh\x19\xa1\x83\xddI\x07\xf03\x1e\xbcl\x07/\xd3\xc1\xc7r\xf01\x1c\x82\xd9\x0d\xe3\xb3\x00\xda\xad\x1b\xfd=\xb5\x87\xffN\xec\x83\xdd\xcc\xc96\xc6%#\x87\xf5\xaeg\xbc\xeb\xad|\xd8\xb1\\\x04\x89\x86/\xbf=S\xec\x8e\x94&Ul\xa4S\x0e\xd1;\x8e/\xba\xa5\xf5\x18d\x87\xcf\xae\xab\x92t'\x84\xaa\xa5Y\xd5\xe1\xd1b\x0d\xa7\x1aM\xeay\xa3\x93\x9eF\xca&\xc7C\xec\xb2\xe5\x0d\xaa\xc9\x7f\x90L\xdc\x04\xb4\xa8\x8cbH\x86\x15q\xb0\xb5\xe6\x0d\xdaUk8$\xf5\xe8\xb6\xc8I\xa9\xccH\xe6\xddx?\x1c\xec\xc8\xb8d{-\xdb\x11\xd75\xfeRZ\xb0\xf3\x86\xe2\x1ah\xb2\xb2\x01xl9\x99\xd5\xcfP\xe0\xbc\xe9\xb8+}\x03\x8b\x1a\xe6\x0d\xfaYf`[ux\xf0\xb5.B\xd2\xe4Xqy\x17K\x05\x19L\xdarSIL\xbc\x0f\xc1$\x83\xbe\x0dB\x90L\"\xd9\xe8\x17i9\x8d\xc0#\x11!\xc7)\xbf\x8e@)\xc8\x0c\x96\x82\x82Y'\xc1AS\xf4Po\xe8\xe9\x83\x07\xf9\xc2\xbe![\xfc\x94\xd1\x12\xcc\x08\xc69-\x92\x8a'\x14\x1cBf88\x143$\x1cr\x84\x85C1B\xc3\xe9\x85\xd6\x02\xc5\xa1H\xc1\xe2X\xb2\x07\x8cC\xc1\xa3kQ\xe08\xe4p\xd5\x19\xcd~B`\xaa\xe9n;\xe3\xfe:\xf6\xb5RV\x1b\xc2X\xaa\xc1\xe6\x94`\x97\xe3K/\xb8[L\xbfjQ4\xec\xd3\xf2`\x80l=\xe9\xfa\xc2\x91\xe9o\xf5\x81\x98\xb2\x02\x9b\xa1\xec,b\x03\x02\xdaAr\xb4\x05\x1ai\x0f\xe4\nq\x07i\xa4Y\x90\xb9)Lr\x95\xea\x93m\xc2B\x9a\x92\xbd\xe3\x16\xa1\x05\xfeUVyC\x9f\xab>\xd9w5\xf1\xcd\x84j\x04\xecp\xfe\xf0x\x90\xecA\xf2 y\x8a4\xbe.A\xd2;?pm\xb2{nYDj\x1d\xba(\x96\x9ee\xca\xf5\xf9Z&[\xef\xae#\xff\x1e\xec\x01\xdc\xee\xb3\xcd\xefI\xd9\xcdy)\xce\x16<}\x90A\xff\xc2 \xfe\xba\xf2\xb3\x80$\xe4\x92;K\xafLA\xd8S\x10v\xe4\xde\xf2\xb5=\xda\xb2\xeb\xeboLP\x00\xb8\xefoN\x9a7\x8fGL\xf7\x9f\xac\x08(\x0eQ\xf9S\xf3b\x1d{\xdf\xc8\xf28\xb6\xe7\x05::B\xfa\xd5\xa9\"\x96\xe3\xe0\x94\x96\x08<\x12\x9a\x07B\xf7\xe6\x19\x9a\xb9e\xef\x0f\xd8G]'EC\x96\xad\xf7\xacG\xc8H\x9dg\xa9\xce\xb4\x03\xa5;4'$w\x80NH\x8b\xc2tBr\x06\xeb\x844SU\xa5\xe9\x92\xebt\xc9u\xba\xe4\xdaK\x7f\xb7JK\x97\\\xcf\xa7\xc9\xa3P\xaa\xbc\xf5\xcb \xf4y\xb4\x94B\x8f\x96\xd1\xe8]\x13\xddQ\xd4\x88\xf4z\xf4\x04\x14{\x14\x97f\x8f\x02\xa9\xf6(.\xdd\x1e\xa5K\xae\xd3%\xd7\xe3\xf4|\x94.\xb9\x9eA\xdb7\xc4\xd1t\xc9u\x08\xa5\x1f\x05\\\xef\x1cB\xedG\xe9\x92kH\x93\xa8\xff(]r-\x93\xdf5\x00\xa5K\xae\x17\xbb\x0d\xa0t\xc9\xf5tW\x03\xb3\xc8\xe9\x92\xeb8. \xe8 \xdc\x12\xd0\x04\xd7\x04\x14\xe6\x9e\x80\xa6\xb8(\xa0`7\x05\x94.\xb9\x9e\xe1\xc2\x80\x96\xba1\x18\xd2\xd2%\xd7\xb1/\xb9v\xb1g\x82\xac\xea.\xa4\xdaw\xec\x99N\xab\xe9\xa3\xe1\xba\x84M\x82\xb4\x17F\xca\x1d\x08\xb4\x83M\x16`H\x82k\x1d\xcc\xad|\x99\xf3\xa3\xd1\xa6\x82\xc5\xb7\xdb\xba\x07\xb0MB\xb9\x13\xca\xfdkE\xb9\xbb\xe2z\x11i\x0b\xec\xad\xbd)$\xcd\x02\xbf\xf9\x9f \xfcN\xe0w\x02\xbf\xa7t^\x02\xbf\x13\xf8\x9d\xc0\xef\x04~'\xf0;\x81\xdf \xfcN\xe07J\xe0w\x02\xbf\x13\xf8\x9d\xc0\xef\x04~'\xf0\x1bR\x02\xbfyJ\xe0w\x02\xbf\x13\xf8=H \xfcN\xe0\xb7\x96B\x81\xcd\x04~'\xf0\xdb7F\x12\xf8\xfd\xdb\x06\xbf]\xf7\xee\xf9\x90pK\xc8?EP\xb7\xc1\x0f`\xa5\x04\x91'\x88\xfc7 \x91\x0fp\xebQ\x88\xfcG\x050\x9c\n\x91?F\x88\xd05a\x1aX\xa1ng\x87G\x82\xb9\xed \xf7\x9ca\xb6\x10\xde~\xfa@_q\xc3|\x19\xd3)\x1e\xa0m\xf6R\xb4``\xe3U\x88 b\x8fC\xd8\x8b\x01\xecQ\xf8\xda:\xe9\xd0(tM\x9d\xc0\xf5\x88n\xe3kO\x14\x1f\xb2\x1e\x07\xac\xe3\xc2\xd5Q\xc1\xeaQ\xa8\xdavn\x9f\x00T\xc7\x84\xa9\xfd \xf5l\x88:&@M\xfd\xf0tLp\xda\x0bMG\x06\xa6Ga\xe99\xa0\xf48\x00\x1d\x01~\x0e\x02\x9f\xa7\x01\xcd\x0ba\xe6\xb8 \xb3\x0b\xf7\x8c\n0\xc7\x87\x97\xa3\x82\xcba\xd0rT`y\x0cV\x8e\x0c*\xbb e\x8b\xbd\xc1\xbe\xbe\xcd\x85\x93\x1d\xd7\x99\xd9/4[\x04%;\x80\xe4\xd1-~\x14D\xf6\xef\xff\xf1\x00\xe41\xf8x\xbc\x1cQ\xa1\xe31\xe08\x12l\xbc\x0c4\xb6\xcc$\xdbV\x1e\x170\xa6V\xb8x)X\xecECG\x80\xe2 \x98\xd8\x8e\x1aM\x83\x88\xed2\x0c\x8b\xf1bp8\xb41B\x80\xe1\xf1z\x07\x81\xc2\x13!a\xd3\x82\x1e\x01\x0e\xf6\x82\xc1\xe3P\xb0\x0f\x08v\xb6\xd2\x14\x108\x04\x02\xb6\x01\xc0\x0b\xe1\xdf@\xf0w\x1e\xf4\xeb\x00[C`\xdf\x88\xa0\xaf\xa3\x14\xc6H[\x04\xf7\xda\xe0\xdd\x88\xe0\xae\x1d\xda]\x04\xec\xda\x80\xdc\xd80\xee(\x88kC\xb7l\x00n<\xf86*x\x1b\x1f\xba\x0d\x07n\x83`\xdb \xa0m(dk\x05l\xed\xb9\x87\x02q~\xb0v\x02T\x1b\x08\xd4\x1a\xd5\x88\x0d\xd2\xc6\x84h\xad\x00m\\x6.8\xbbl<\x04\x01\xb3!\xb0\xac\xba\xad\xfdU0\x86\xa00\xbf\xc5H\xd7\xc1\xb8/\x84Yx%\x8c!\x8dm\x8d\xb6Ka\xe2]\x0b3v1L\xf8\xc8[|9\xcc\xd7\xe0\xf8L\xdfE\x8cKb,Rm\xcc\x9d\x18\xdb\x05\xd2'\xa6 sk\xbc\x1c52\x05\x85{7St\x8aD\xbd\x19\xa4\xdf\x1c\xf5& ,\x85\xf1\x8a\x1c\x98BX\x90Z\x04W:$\xbd(\xe9EI/Jz\x11Jz\xd1\xff\x01z\x91\xda\xfcI=J\xea\xd1\xaf]=\x1aQX\xecjQw#\\\xb8\x81(i@I\x03J\x1aP\xd2\x80P\xd2\x80~\x9b\x1a\xd0\xf3\x1bX\x91\x817Z\x14\xaa\x1e$\xb2e\x1aJC1%\xab\xe7BF\xd2z\x92\xd6\xf3k\xd5z\xfe?\x8bQhL\xed\xd1\xd5\x1d\xf1\xf5E^f\xe4P\xa8>\xaf\x9a\xf5g\xf4\xed\xeaw\xff}\xf5\x9dK\x1d:\x13\x0b\xe8d\x85H\xae\xbc\xae\x99$\x1e\xcb\xa2\xf7\x7f\x97\x9bj\xd6\xac\x89\xeeCe\xe8E\xf9Z\xae\xd76\x8f\x18\xden\xc2\x1d\xe6z\x81/\x99M\xce\x88\xca\x04\x0b\xb1\xe9\xb2\xb4\xc4\xb7j\x9e\x9edk\x14\xf8mpe;rh\xc7\xc8\xa6!\xa3\xe02w9u\xa7^\xad\xb1H3\xec=R\x0f\x16\x97\xa6\xbd\xdd\xe5\xf4\x9a\xedy\x81M\xb6\x04\xcaWr\xf3\xef\xb5\xdd\xdc0q|\x90\xa3m\xbf0\x82\xbe\x92\xcf\xda 3PNa\xac\xca\x9f\x86.\x80\xb4\xab\x8d\xad&\x0d\xfb\xc2\xa0\"r\xe7)\xa0B\xe5\x0d\xe2;\x05S\x06\x14\xe5\x00\x17h\xdf\xd6\xacS\x81\xb3\xe6\x9c\x97_\xb5Q\x86yz\xdbF\x905\xb0-\xde+\xef\xfe\x91&\xfa\x19F\x8a\xf4\xca\x93\xb2\xf2\xa6\xd3\xc4-Z=\xda\xd4\xd5\xce\xc8\x8c\xdc\xe7U\xdb\x08 z>\x9d\xda,\xf6\xf3\xacb\x03\xb8\x04j}gZ\xba9z\xf3\xe9\xfc\xf2\xe4\xed\x0d\xd7\xaf\xda&r\x8f\x82\xd0\xc3 \xfd\x01_\xd84N\x04\x1a\xe7\xbejrU\x7f+\xf2\x0dA\xd9cV8\\\x01\xbb\xb5\x0e\x9d\x969\xcdq\xd1\xef\xe6\x17\xb6)92\xc8H\xd9\xee\xf4%\xef\x15:;\xfft\xf6\xe9\xe2\xe8\xfd\xf5\xc5\xe5\xd1\xe5\xd5\xc5\xf5\xd5\xc7\x8b\xb3\x93\xe3\xd3w\xa7'o\xbd\xef^\\\xbd\xf9pzy\x19\xf0\xe6\xd1\xf1\xf1\xc9Y\xc8\x8b\xe7'\xffzr\x1c\xf2\xa2\xe8y\xef{?\x9f^\xfe\xf4\xf6\xfc\xe8\xe7\x8fZ/r\xce\xeba`\xf57y\x89\x8bk\x8a\x8b\xe2\xf1\x1a\x94\xb4)\x83\xc2\xfcz\xc8\xadl\xda\x1d\xdf2\xd8\xe9\x01Ndd\x8d\xee+J\x1a6X5a\xec\x0c\xa9\x8f\xf2n\xe2r\xb2+\xce\xee\xf8\xd7\xc2\xf9\x8ek\xc5y#\x14bL\x95\xd9\x0d~Dl\xd4\x1b\x12\xab}[p\x87\x08A\xb9e\x85\xcf\xcb\xed\x01\x13p_\xc1\xf4&u^\xad\x11)\xf9\xa1\xda\xbd\xe0\x92\x07\x92\xb5\xac$\xc6!\x9ds\xff\xf8a\xff\x0e\xef\xf7\xa4l\x80\xeai\x1b\xcf\x93||\x1fIs\xcd\xb7d\xfd\xc1\xe8\x11V\xeb\xc6N\x88\xd4\x89\xba\xae\x11\xe7\xe9G\xd2@/\xad4A\xf8\xb6a\x9d\xbb\xbc\x08\x03A\xaeb\x88\x974-\x83\xa5\xb2Z^\x04)\xc3\x95{Y\xd9\xdb\xa0\xac\xae\xd9*}}Oh\x9cRh\xd2\\\xe5ao\xa8e\x81\xb1z\x0dc\xf5\x9a\x94Su\xf79:\x97\x91\xa7,l\xaf{\xddr\xa7GA~\x15\xf3i\x07\x0ed\x9a\xb0uU\x12c[\xbb*\x0b\xa6\x95c\xd4\xb4YF\x9af\xd3\x16\x05\xfa\xd0lO\x1eH\xc6\xf7b\\\x14d-syA+1 \x89\xc1\xcd\xedU\xbe\xbb\xca\xe4\xff\xf3i\xcf\x04\xf6\xf9H\xa1\\\xbb\xd0\x17\x82\xe6\xe5A\xb7T\x80\xb9l(\xef\x96\xf0\xfa\x18Dt\n\xa6\xb1}\x95\x97\xf4@:\x10\xa0\x1bs\xe1\xbca\xcfn`\x97\xbd\x81\x8d]\xd7T\x85\xc2`\xe4\x91eU\xbd\xce\xcbm\xf1\x88\xda\xfdZ\xb7$A\xfbT\xf5\x8c\xe5]\xfbTv6/|\x17\xe6`x\x9c\xeb\xd7D}\xde\x18\xbb\xfc\xc7\x8a\x9e\xb7e\x9c-\xfe\xe4\xdfO\x8e\xaf.?\x9d_\x9f\x9f\\\\\xbd\xbf\x0c\xdb\xeb\xf5\x8f>~\xba\xbc>\xbf\xfa\x18\xfe\xc1\xc5\xd5\xf1\xf1\xc9\xc5E\xf8\x07\xef\x8eN\xdf_\x9d\x9fh]\xa0o\xd8a\x95\x11$\xf0\xe5\xc7\xc2tCB\xd4\x90\x13\x91\x83N\xa4\x1b\x12\x06)f\x00\n\x18\xadM\xba!aF0\n\xab\xa0tC\x82\x9a\xe2\x06\xafH7$\xa8),\x8cE\xe4@\x16\xe9\x86\x84tC\x82'\xc0E\xba!az\xb0\x0bC\x1cM7$\x84\x85\xbe\xf0\xdf\x0d\x10\x16\xfe\"\xdd\x90\xc0\xd3\xc4p\x18\xe9\x86\x04\x91B\xc2c\xa4\x1b\x12\x96\x07\xcbH7$L\x0e\xa4a\x169\xdd\x90\x10+\xc8\xc6S\x84\xd9\x98\x12h#0\xd4\xc6\xa4`\x1b\xe1\xe16\xd2\x0d hF\xf0\x8d\xb8\xe17\xd2\x0d c\x818\xc2Bq\xe87$\x8c\x9fP\xa4\xd1\x19\x187E\xdep\xf3\xd7M\xb3\xfe\xbc\xfa\xd0lo\x84-\xad\xeb?\x80f\xd6l\x13t\x13\x00\x80,)N\x84\xa6\x9b\x82N\x9f\x1b2\xf5\xe4\xd3@\xd7\x04\xf9\xba\x0c\xab\x0e\xc1/f3\xf3\xfe\x8bx+\x8c\xb3\xf2Bxy\xa3%{\nn\xde/\xe5\xc9`o \x07G\xcf\x0d\xc78\x00\x99\xf0\xd2/\xe5\xea\x8d\xb0\xf5\x82FY\x10\x1b\xdeb\xe0\x88\xc5\xdas\xf0\xf6F\x99{A\x15\xf3O\x1fK\xadb1\xf8F9|K9_!<\xbe\xa7n\xa2H|\xbe0F_DN\x9f\x97\xd5\x17\x8d\xd7\xb7\xbc\x97m\xdc>\x7f\xff,\xe3\xf7\x99\xeb\x98\xbaV\x063\xfcF\x87\x9f\x8d\x020\x8d\xe77\x85\xe97\x81\xeb7\x81\xed\x17\xce\xf7\x0bg\xfcM\xe6\xfc\xf9Y\x7f\xfe\xe1\x12\x95\xf9g\xe7\xfe-d\xff\x19\xd2ll\xc0\xb8|\xc01F` 'p6)c\x84\x19\xe8\x85P\"\xb1\x03\xbd\xfc\xc0i\x05Y\xc8\x11\x1cc N+\xc8\\\xa6`\x18WprYf\xf2\x05\xbd\x8c\xc1\xa0\xbd\x7f\xae\xde\x17\x959\xe8\xe0\x0e\xc6d\x0f\xfa\xf8\x83\xcb\x18\x84\xe6\xda N\xcc6\x0ead\x16\xa1\x93G\xe8e\x12z\xb8\x84\xfeA\x10\x95O\x18\xc8(\\\xa6R\x84Q\xf1\xbc\x9f\xd9\x99\x853\xb8\x85\x93\xd9\x85\xf3\xf9\x85.\x86\xe1\xecC\xaduK\x1b\xdf\xd4\xc6\xb9\x86\xde\x95\xd3?\"!\xcde\x1c:\xc4\xd1\x01p\xee\xc0\xad\xa2\xb3\x0e\xa3\xf3\x0e\xbd\xcc\xc3\x08\xdc\xc3\xd8\xec\xc30\xfe\xe1\"\x06bl\x0eb \x0b16\x0f1\x88\x898\x9f\x8b\xe8\x12G\xa8\x8f\x8d\x18\x91\x8f\xe8e$F\xe2$.a%N\xe6%F`&\xce\xe7&:W\x1e\xe4f'F\xe7'>\x0dC1:G1\x9c\xa5\x18\x9d\xa7\xe8c*\xce\xe1*:\x04u\x0c\xc6\x11\xb6\xe2$\xbebd\xc6\xa2\x8f\xb3\xb8\x90\xb58\xc2[\x0cPO<\xdc\xc5P\xfd%&\x7f\xd1\xc7`\x0c)Sd\x16\xa3\x8f\xc7\x18\x91\xc9\x18\x9d\xcb8\xc6f\\\xc4g\xb4Hc%\xa1\x0eFc\x0cNc\x10q\xcf\xc3k\x0cf6\x8e\x90\x9d&\xb3\x1b\xc7dYY\x1c\x118\x8e\xd3\x1a+\x8c\xe7\x18\xd2&\x81\\\xc7\x19lG\x17\xe3%\n\xe31\x88\xf3\xe8g=\x86\xf0\x1e=\xad8\x8d\xfb\x18\xca~t\xf1\x1f#0 'p \xe7\xb3 \xc7\x1a-\x90 \x19\x99\x0b9Z\"\xebH\x8d\xcb\x88tp\"#\xb3\"\xdd\xbc\xc8\xd8\xccH\x077r\x11;\xd2\"\xcdu\xf0\xf30&]\x9cI\x17k2.o2:s\xf2i\xb8\x93\xd3\xd8\x93\xc1\xfc\xc9\x89\x0c\xca)\x1cJ'\x8b\xd2\xcd\x91\x0bg\xc9\x850)'r)'\xb0)\x1dU[\xc0\xa8\x9c0)\xe2\xb2,\x9d<\xcb\xf8L\xcb\xf8\\\xcb\x18#)\x90o\x19\xca\xb8\xd49\x97\xfe3UL\xde\xa5\x83y i\xac \x1d\xd7R\x06\xee\xec\xeeH\xeb\x88\x1eG}\\Z\xb6\xce\x8a\xe7\x19.\x05]k \xaf'x\x0d{\x8e\x87)\x1d2\x80h\xc5I^Np\xce\x93\xb98\xa6\x7f\x83e`\x0e\xc7\xbe\xf2B\xe0X\xffcE\xc9\x9bn~\xb1\xbf\xa6\xdfG\xc5\xda\xcc1\xe49 O\x14\x91\xff_\xd9\x92\xe4>u\xcd\x11\x1c\xa0\xfc\xd5\xb3\xa6\x80\")\xb0sBc\x8dv\xda\xc2\xd0\x0b\xa2\xbf\xb3\xc1F\xf2\xe7\x15 ,\x88\xd1Z5r{8\xc8V\x1c`u\xa0Q\x1c\xba\xa5\xc2\x0bj/\xd4\xcf\x1b\x94\xddUyF$\xfeh\xf7Up\x96\xda\x1eb\xeb\x8f\x9f.O\xae?\x9d]\x9e~\xfa8\x1aUK}\xefO'fL,\xf5\xf9\xd1\x9b\x8b\xcb\xa3S3\xd0\x96\xfa\xce\xc7O\x9e\xc7\x9c\x0d{\xfd\xc7\x93\xcbOZ+ \xba\x8b\xbf\xe0_?\xbe3\xeb'\xb57\x9e4b\xb2\xe6jA\x07d;\xeea\xd1O`\xb6\xa7\x0f)\xd9#\x1b\xf7\xc8\xf22\\\xb9,/N\xbaR\x8f}\xd1\xbc\x99\x1f@\x9d\xaf\xfb\x87\xda\xe2\x13\xd7E\xcb\xb9J\x05\xb1)\xfd\x9e\x14\xb3\xd6*\xebj5Z\xa0\xe5+\x96}\xcd\x8a\xb6j\xcd\xa2\xf1\xf9\x97\x00\xdb\x9b\xe6\xea\x15\xb6~yW\xb0\xe05l\xd2*\xf6Ky\xc2\xe9k\xd9W\xf1([\xb6\xa6Y\x04\xb2%Fuz\xc1\xf01\x98 <\xa7tpg\x90'ti\x94\xe9\x9c\x1cL\x8d(\x9d\xd1\xd3\x19\xfd\xd7~F\x1f\xdbx\xcd\xdd]yi\xc2\xd9\xa4y\xf38\xffP\x926\xf4.\x85.\xf0iC\xf7\xbc\x916\xf4\xb4\xa1{6\xf4\xdbG\xb1\x9f\x0f&J\xda\xc9\xd3N\xfe[\xd8\xc9=\x87t\xf9\x86\x7f\x0fW\x8c\x91\xc1\xbb\xb6\xc5\x98m\xed\x85\x85Fl\x87\x01\xdb\x9f\xd5L\xc3\xb5i\xb4\xf6g5\xd5X=f\xa8\x0e\xcam\x99\x81zhz\x1eD\x06\x10\x1f\x9a\xbe\xdd\xa6\xa3\xb6e\x18\xfd\xb1\xb3.\x07\x8c\x1f\xabJf\xad\xbdc\x0e/S\xc04\xd5\xcb\xdf\xec\x93\xd5-]\xd1\x8a\xa0bYK\xa9\xabU!\n\xd5\x98*\xe5S\xa2F\xd4\xa7\x00\xc5)Pe2\x95%\x7f\x0f-W\x90\xac\xaa\xd1\xe8\x984\xd5\xa1\x88\x8a\xd0<\x15\xc86+?)c\xd1\xa8\x8f:\x80|\x83\xc75p\xc6\x06\x8dc\xc0x\x06K\xd0@\xb1\xab6}\x8dy\xdd8\xd3^L4\xeeI\xa1,c\x8d\xe4\xa5\x0c\xac:=\x15\xc5\xd9\x1e\xcer\xf5<\x9a\x12\xb5e\xefv\xa1d*xU\xca\x8535\xa1m]\x9a\x0e^Fs\x1f\xea?(\xb4\x1d\xb9w*+\xb4\xbbo\x0em?\xaae\x17[c\x80\xc4\x8f\x9f\x0e\xb5\xbf\x95B\x89\xbd\xcf'\xa1\xef|]V\xffd(\x95\xc3\x93l\x87\xd3\xe5\xef\xeb\xea\x9e\x94\xb8\xcc\xc8\nSZ\xe7\xb7-%l\x1e\x1c\xc9?\x82\xb7\xa8\x12{\xd7\x81\xe1\xc6\xcav\x06\x99\x0b\xff\xba\xdbm\x86\xeeD\xa3K\xca@\x7f\x1f\x91\xcfevj\x92\xfc\xf9\x9a\xcb\x0e\xfe\xbeS G\nfn0G\x97\x97\xe7\xa7o\xae.O\xae/\xfftv\xe2\xdcc\xf4\xd7\xaeNG\x9fs\xda\xe3\xc8\xf3\x8b\xcb\xf3\xd3\x8f?\x8e\xe6p~:\xf6\xf8\xf4\xe3\xe5\xd8\xe3w\xef?\x1d\x8d\xbepv\xfe\xe9\xf2\xd3\xd8\x0bo\xfet\xa9l\xa5\xdd\n\x16\xd0\\\xb6\xc3H7`/\x1f\xf7dp\xd0\xa4\x8a\x0b\x14\xdf\xd7\x1aZ\xd5\xdc\xe9\x12\xb4\x13\xf9\xa1\"\x8c\xf7\xb6\x1c,z\xb0?k\xb7\x8b\"\xf1A#\xd4\x9c\x81p\xb6\xa1\xddVm\xb9\xee\x8f\x83\xe4a\x9f\x03\x9b\xf2\x9am\x8c\x81\x03\xde\xb3\x87^\xe6\xd2q\x9f\xadJ]\xee\xfc$\xc93\x14\xe3Wo\xc2\xae\xf9\x04\x81\x15\xdc\x93\xd7\xec\x80\xfb\x1a\xc6~\x7f\xf7?\xdb\x04\xac\x14?,\x9d\xbf\x84\xc6\x17\xb2\xbe\\v3\xd0\xb3\xd5z\xc7\xc5\xd8\x14\x1a\x9b>\xe3Sgd\xda\x8cL\x99\xd1\xe92:UF\xa6I\xe8\x14\x19\x0c\x88\xae\x87\xc7ZpL\xa4\xb2\xcd Im\xc9\xc9\xd9\xafed7\xd6qr4Z;\xc1\x14\x7fu:\xd8\xfa\x8du\x96\x0d\xe0\xdeyR\x0c\n\xf1\xd0\xe2\xcc\x80\xfe\xf8;\xd4\xb6\xf9\xdaY\n\xd6\xddF)83{B)\xd8^#\x8b\"~f\xff\xfd\x8f\xa6*\xf9|p\xe6\x0e\x03\xca\xc8\x1f~\x9eR\x02\xee \x99g\x83\xf6p\xb7\xfc\xf9\xa9\xd9\xf0\xe7\xa7S\xf2S\xb6\x08\xdb`7\xc4\x9f~\xbc\x9c \xbeDyI\xc9\x96\xd4\xe8E\x86\x1b\x8ax\x90\x0c\xfa\x87\xdf\xbdt\xe6\xc9g\x91\x91+\xffuB\xbehST}\x86\xa6\x1bU\x84\x1fhw\x9bq Yc\xc3\x8c\x08\x1f\x89\x07\xe33\xcf\x0c3v\x19y\xc2di\xa6\x1eH#\xc5v\xd15\xbc\xa7\xd6\xb1\x97\x87& \xc7[\x9a!\xc8\xf1\x96a\x0er\xbc74\n9^\x1a\x9a\x86\x1c/\xe9\x06\"\xc7k\xba\x99\xc8\xf1\xda\xd0X\x04)\xf4<\xdc'\xd7J;\xdf|d\x08\xb2\xe9\x93\xdd\xb3\xc9\xf7F\xcc0+Ar\x1a\x97\xbcYN\xe2\xae\x84\x9a\x9bD\xae\xd6\xe6\x8faz\x1a6s\xa9\x18\xa0\x069\xf7~\xc3Z7\xc9\xe3XR\xbc\x92\xe2\xf5\x1bU\xbc\x82\x14.]\xd5\x12\x92\xa6*Z\xb3OZ\x1eM\xcb\xd6!O\xa4c\xfd \x0b\x96t,5\xf9\xf4\xa2\xa4c\xb9\xdfJ:\x16J:VP\x96I\xc7J:V\xd2\xb1~{:V\x98UKW\xb2\xe4\xc0\x0f\xd4\xb2\x00p\x98\xaca\xed\x15\xa8\xc5\xa8\xcf\xde\x041\xf8O\x84\x92\xbaS\xa1z\xd8\x02\xd2\x84I\xe4\x06nzA:x\x83\x9c\x00\x0eB\xb1A\x1cK\xc3\x86t\xa1\xc0~\xce\xcf\x8eC;\xef\"\xc3\xe5\xe4\xaeK\xcaqR\x8e\x93r\x9c\x94\xe3\xa4\x1c\xa3\xa4\x1c'\xe58)\xc7\xbfn\xe5\xd8PtBT)\xf6~\x80\x12\xf5\xa1\xd9\x1e\xad\xd7\xa1\x88\xee\xa0X\x8eO\x07k\xe9\x87f\xfbZ}\xc9\xf4\xf6\x1b)\xd8[R\x10J\xe6\x96\xcd\xf1\xb5Q<\xed\xbd\x19%|\xcb\xaf\xf3\xcd\xe8\xac\x92vc\xd1/\xceQt\xe3}!pJE.\x08\x0dgG\xe9-m\xff\xd8(\xed\xf0\xb5I\xc5\xbb\xe27\x03v\x15<\xe9\xf6\xba\x89%\xf5\xca1\n-\x1c\x9bf\x17uY\x01\x9d\xc5\xd2\xde\x1b-\xe1\x0e\xd7\x9fI\xcdI\xe0\xfc\xd6H\xb5(\xca\xf2\xa9\xb1\xbf\xf9U\x80v\xd67<\xfa0`_\xc3oo\xae\xce?\xea\xbf\xbd=9\xfbtqj\xbc*/\x166_\x7f\x7fry\xa2\xffz\xf4\xf6\xc3\xa9!\xf9\xf2\xfc\xe8\xe3\xc5\xbb\x93s\xd1\x92R7\xb4\x97\xdc>\xe9\xa0E\x06\xcd\xbb\xce7\x1bR\x13vz\xe3\x97\xa4U\x1b\xb4'\xb5\xb8\xe6W\xb0\xca0\x82F\x95\x17\xb4Hmb[\xe3\x92\xdf\xc1\xc9\xce\xcb\xa5\xd4\xe0T\x87-\xb3t\xb6\x12#\xd5\x99\xe8U\xb5wx))=q\xa8\xfe\xd1\xd1\x0e\xc5\x9dT\xb4By\x99\xd5\x04\x8b\x80\xfd\xac\xd4\xc5#0\xb9\xa1\"\x86L\xd6\x93\x87\xea\x1f\x16\x99kb\x95\xc9M\x1b\xd0\xd7\x0f\x07\x7fYj\x81\xd7k\x991\x9fu\xc2WRR\xd9D\xb1\xa5\xf6/\xaa\xa3Ld\xb3\xfd\xe4rr\xa8\xff`\x9dN\xf7\xd5g\xc2Y\xe7\xe5\x1a1M\x1e\xce\x000\xe0\x95\x19\x00c\x8d}\xb2\xc1\x19\xfb\x1cS\x82\xc8\x03\xdc\xce&\xcb\xc0\xaf\xdf\x14\x95\xa9\xf9\xd5a\xb9\xb8bC\xac/\xackJt~\xc2\x0e\xf5\xc7\x97'oe\xabzV\xfa\x1fY\xc3\x84[\xc5\x02\x1c\xaf\x94\x06\x9ce\xa12\xd4u\xd3\x8c2\xb2\xf7h/|\xd0\xcd\x12\xb6}H{2\xdc\x8d\xb4\x87\xda\x9ed|\xaa\xecL\xda3u\x7f\xd2\x1e\x0dv)H\xbe\xbdJ\xbe\xe5\xa2A.\xde\xb7\x06\xb2\xe4\x1e\xe6\xdd\xbd E\xdd\xc34\x91\x11w2M\xf2\xd7\xdc\xcf\xb4\xac\x7f\x91]M+\xc3/\xb2\xb7AZ\xbe\xc3\x19\xed\xf9\x0b\xeds\x90\xe2\xecvZ\x9d\xbe\xf2\x9e\xa7\xe5\xfe\xcb\xed|\x90\x16\xed\x7f\xe3\xaa=\xdf\x02{\xe3!\xbf\xd9\xa6*\n\xc2/>\xd4\xd7H\xe1T\xdbY^7\xddPf\xdd\xb7\x85+\x11\x87\xc36\xabJZW\x85s#~\x83\x0b\xf6K\xd4MX\xab\xb1,\xad\xec\xab!\x14u\x0b\x05\xe0\xa6\xd6~\x8dbsq\xde\x0e\x1e\x8c1\xadIY\x19\x08\x89\xd3h\x87w\x95\x11\x12\xdf\xf9\xfa\x98u\xf3\x98\xad2\xfd\xd6C\xab\xcf\xa4\x14\x1d\x0bE\x92\xe6Z\\\xaey_\xef`\xad\x19\x08\xf9\xf8\x89-0\xdc\x08\xcf\x1f\x8b\xfb\xb2x\xe8\x16tZR\x11#\xa3\xbb\xbc\x15Z^\\@\x04F\xb7\xe1\x16\x9boKL\xdb\x9a4\xdc:\x9c\xd7p\x01\xdc\xb6\xdaV\xdcWqe\xefY\xdeK\x8eM\x1e\x9e\xf1\x95T\xedb1%tC\xa7\x18\x86\x03\x87F-J\x10k\x0f)i\x8f\xf3\x1a.\xa9\xcdKn\xe8\xcd\x89:\x1b\xba\x15\x87\xe5\xc8\xefo\xea7_\xeb,\xf8\xc0\xffwA1m\xc3\xcc\x0f\x1f\x8e\xce\xff\xed\xe4\xfc\xfa\xe2\xf2\xe8\xf2\xcan\x85\x18\xbeqv\xfe\xe9\xec\xd3\x85\xf3\xf1\xbb\xd3\x8fG\xefO\xff\x1f\xe7\xf3\xa3\xe3\xcb\xd3?\x9e8\x1e\x1e\x1f}<>y\xff\xde\xf9\xf1[\xb6,}\xfaSgg\x10\xba\xddx\x15\xecCXm\xa7A\xbf\xdf\xe3:\xaf\xda\x066\xa5\xa6W\x12\xbae\x08\x97pI\xbdjkp\x96`\xa4p\xe8\x15\xba\x12\xee\xe6\xa7\xc2\xdd\x1c\n\x85\xa0T.\xe9\xb2\x03t\xd1\xf2w\xf4\n\x9d\x969\xcd\xe1\xc2\xa4M\xbe\x15\x17[\xb1\xf57\xaf\xd6\x07\xa8\xe5\x16\xadF\xde ~ f\xaeP\xc3\xf8\x85\xd45\xc1j\x18Fg'\xebe\xe8\x1e\xa0W\xe8x\x90y\xa7\x11\x1c\xa0\x9a\xe05\xbf\xd7\\f\xc9\xb3\x1b\x9cOmcF\xcf\x0b~E\xaf\xd0\x05H\xc9\x1bY\xee\x03T\xb7\x85\x88\xf5\x98s\xb4(#\xce\xbatcN\x97\xdf=`\x9f@\xc7\xdc\xe1\x06\xdd\x12R\xf6j\xc8\x01\xda\x93\x92O\xcc5ih]=\xba\xb2\xe9\x86\xae\x9eM\xf7\xa0\xcfF4\x0b\xbf\x1d\x8e\x03:\xa4D5\xc90d(\xf5\xa8\x06\xee\xc3Z\x13\xb6\xc4\x89\xdc \xdc\xcbQVh\xd3\xd6L\xc3\xeb\x96\x11\nW\xc1C\x97;\xf7\xd0\x8f\x84\x1e5\x0d\xa1\x7f\xec\x99\x05\x01;\xe9\xbe\xce3\xc3c7\x08\x84\xb3\xec\\\x8e\x8d\xc8\xb6k\xf97\xec\xc1\x8e\x15a\xbf\x8a\xbb[\x85\xefUb\x93\xe1\x0d-\xb5\x8f\xacb\xb9t\xa4\n\xc9\x87a\xdd\xf7\xbcA\xf7U\xd1v\xf82\xfc\xe1\xd1t\x1c`\x9e\x0d\xc8\x03y\xb2 =\x86\xc7\x9b\xb4\xd1Nrp+\x1b\xa9 \xda\xb7uv\x87\xc5\xdd\xf3\x8a8\xca\x83\xdc\xe5\x99,.,P\xeb\xeb\xdb\xa2\xca>_\xdf\xf1 \x84\x8b\no\x13(K\xcf\x7fC\xe2\xb7j\xc3\xef\xb5\x14\x1f|\xa3\x88\x18\xcc\x0ce\x14A%\x9f7\xa8$\x14\x1a\xdf\x169\xa0\x9fa3\xc2\x06p\x90\xf3\x1a\x16\x85E\xcd0\xe8\xc3\xb7d\xcf\xd6\x14J\xd6\x87\xe8\x8c\x1f=\xd9\x01\xa2m\x08\xbaa\x99Bv7(/\x1bJ\xf0z\x85>\x08\xba\x9a\x18\xf8\x95\n\xce\x8a\x05\xab\xa3\xaeu\x9b&\x1c\xce\xc4\xb2\xac\xb2 H\x89o\x0br\xbd\xad\xeeI]\xf6j{_\xb1\xdb\xaa*\x08.\xed\xd3:/\xd7y\xc6\xf7\xb0|\x83z\x19\xe8\x96\x0f.qPh\xfa\x93\x19\xdc\xac\xd8\xaf}\x88\x87z\xa9\xd9\x9a\x99gl`\xf0\xe9\x7f]\x93-y\xf0\xb4\xb0\x9d\xaa&\xee\x96E\xe4a\xcf4<8\xa5\x01\xba\xcfwvv \x13M\xc2\xb3\x12\xcc\x088\xa3\x97\xac\xd3\nE\x1e\xb4\x97d74\xe8E_Eu1\xea\x9e\xb3}N\x9c\xe1\xf8Xb\xd9\xee\x0bL\xd9h\x00[\x80(\x04P+\xca\xc1e\xa3}\x91_*c.h\xb4iD\xc6ndL\x1e\x0f\x83\xce\x0d\x8fJ!42kL\x8a~\xc6\xc9\x00\x0e\xa4\x99\xce<]\x14E!\xf8\xfc6\x95\xbbd5\x0d\xab\xdf\x0c\x8b\x07\xc9(\xa4\xfa\x81\x95\xad\xe4b\xde\x05\x18\x8e\xb5\xd7\x0c\xf3\xb1\xf6\xdc0\"k\xcfm\xa6d\xed\x15\xabA\xd9\x10c\x98\x95\xb57L\xe3\xb2\xf6\x82\xc5\xc4\x0c)\xcc\xd0,\xdfu\x9b\x9b!\xcd5:[D\xedz\x9dr\x82\xe9\x19\xd2\x13\x18\xa05\xc1\xd1\xcd\xd0\x9a\xfc\xafo\x8c\xd6\n\xf0\x0b\x9a\xa4\xb5\x92\xfc\x82\x86iH\xb1\xcc\xd3Z\xbd~a#5\xa4\x98\xa6j\xad~\xbf\x88\xc1Z+\xc3/m\xb6\x86\xb4\xd0x\x0d\xc9\x8f\xf5-1d\x0f\xc4\xc9.\xf6\x99\xb3]\x85\xb2h.(\x80\x8f\x08V\x04\xf8NH\xb2\xb2\x13M\x15)\x90\x95\x16!f\xd7\xe5\xdd0T\x97\x19\x9a\x8b\xeb\xa9\x03\x13k\xbcH\\#\x8dP\x14\xd0|\xd3uE1\xd6\x9eVUd\xaf_\xb7u\x11\xac+\xfa\xb5\x8d#tu\xfe\xfeuM\x9a\xaa\xad3p3\x01m\x02b\xe7\x17\x8f(_\x93\x92\xe6\x9b\xdcd\xed\x1b\xc2\xfa\xd0\x80\xa6B\xc1m\x1aYU\xa0\xdb\x96\xa92\xf2\xda{XS\xa5\xb7\xcf\xaem\xba`\x7f\x08ST\x10\xdcPSVU\x12\xf4\xec\xf53\x94\xdd\xe1\x1ag\x94\xd4+>\xa4\xf8\xe1\xbd!\xdb\x1d\x81\x83\x08+\xee\xd5\xf9\xfb\xe7\x0d\xdacz\xc7\x85\x1b\xa2\xba\xa0\x9bf.\xec\xf3M[\x14\x8f\xe8\xaf-. ~7o\x1f!\x9a\xb7\xc4\x0b\x1e\xdc\xd1\xfc\xf8\x86e\xf9z[U\xdb\x82\xacx\xddo\xdb\xcd\xea\xad0\x88\xde\xbc\x84\x12sq\xcd]\xd52\xb5\x82\x9b+M%.\xc3eU\xe6\x19.\xf8\xf9\xde\xcc\xe9\x05YmW\x07\xac\xa9\xb8%\xf2\xd9\xea\x19\x9b\x12eE\xf9b\xb9\xa7d\xfdr\xf5\x8d\xf9\xd9i\x89\xf6\xac\xf1\xf2\x8c\x1c J\xd8\xd1\xaamZ~\xe3\xf5\xbe&Y\xb5\xdb\xe7\x05\xe9\xb7\xc2\xdb\xbc\xc4\xf5#\xb7Hr\x0d\xd4\xd2Z\x98\xfba=\x9aY\x91\x87=;\x97\xe6T\xda\x18\x84\x1a\xc3:\x9a<\xf0\xae:*\x1fW\xe8\xa7\xea\x0b\xb9'\xf5\x01\x9f\xbdW\xe7\xef\x1b0\xa8\x19\xf2Z\xd0\xd6\xcc\x8c\x9a\xec\x8e\xec\x08\xba\xb9\xa3t\x7fs\x00\xff67\x07l\x87/+\xf1\xf4\x80\x8f\x9eL\xf1-`;\x08\xa1\xa8\xdd\x1b\xf2\xc0a\xc2\x92\x0f\xa9\xef\xa5mk\x87\xf7\x0d\x0c\x05^b\xa6j\xc0\xc8\x06\xb58\x17\xa6W\xb6#s\xcd\xe0\xd0\xd2\x17\xff\x88N7} Y\xf7\xb15*_3=ET\x82\xdb0\x9a\xa6\xdd\x91\xb5E[\xffGtT\xa2\x9f./\xcf\xd0\x8f'\x97\xf2\xe6\x88\xab\xf3\xf70\xa1\x1e\xb9\x99\x12\xa3?\xeb\xc3\xf1\xf2qO\xfe\xf2\xe7\xbf\x18\xe2\x90$\xce\x97\xb2\xdf\xc1\xb4\xc4[r_W\xeb6#\xc8\x08S\xaf\x96f\xbf/\xf2\x0c\x8b\xba\xd7D\x9a_X\xf3d8cs\xb5\xaa>\xb7\xfb\x8e\xf7\x0f\xb6\x9b\xca\xee\xf9\x83XUx\xde<\xca \xbd#;e\x8c\xaea\x90bYT\xf6\xff\xfb\x8a\xdfQ\xad\x9f\x82Y\x82\x8c\xf9\xf4\xab\xc9\xa6\xaa\xc9\x81\xfc\x90\xc9\xc34\x17\xbaLI\xc8Z*m|\x89\xa8\xef\xc9\xda\"\xaf*\x11\xe8,\xa0f\xb1\xb9\xb1B/\xae\x1a\x82\xeeI\xcd\xb4\x04\x02\x81\x84\xf9\\\x87\xf1\x81K\xbc\xb5\xd5\xf2\xb6&\xf83?k\x80\xc0\xd5K\xb3\xa7?V\x94\x1c\x82\xe6\xbci\xcb\x0cF0+\xaf\x98\xf3Y[\xd7\xdc%Du\xa5\xb07k\xc5\xfdGL\x0f\n\xb1V\xdf\xb6\x1bT\x13\xb6\x02\x93\x03n\x14\xcf\xa9\xcc\xa4\x15V\\e\xdc\xdf\x92m^\x9663\x02\xb7\xf3\x98\xcb\xc5\xe3\x9e\xac`<\xe2}\xde\xac2\xb6\xdd\x9b\xaf]\xf0\x19\xd1\x80\xd7\x06\x9bp\xa5>\xbb\xd1\x0b\xb1\xd5\x83\xdb\x0bL\xa1\x97h\xc74DC\xdc\xade2\xf3\xcapE\xae3\xdc\x83\xca*nm\xc8PCv\xec\xd4\x9cij\xf2S9`Zv\xe9\x0fl\x1a\xdf2\xb5\x1a\xa0B=\x06\xaf\xb2\xafJ$\xe0\xb6\xba\xb7l\xd0\xddE\x14T\xf3\xc2\x1c+\xc1\xcdQ\xf9x3\x88\xc1\xdb_\xaa2R\x12\xb9\x0e\xe2\xa2\xd2\xda\x02\xd4\xe6aW\xb0\xd5\x8a/\xa8P\x92[\x8b\x93\xa0\x92\x97\xd4\x1e\xb4!s&\x07n\x91\xdf\xf2\xe2\x89u\xb4\x91g\x04n\x1c\xc5\xd9\xe7\xd7m\xc9\xfea\xfb\x8e\xb4\xc6Zf\x89\xb9\xe1V\x1b\xd4RX \xe4\xf4k\xf8\x01r\xbd\xcea.B,k\xd0\xf9\xb9\xde\xdd!\"G\xdaz\x04]0\x94\x7f\xf2\x80\xd9 D\xdf\x1d\xa23V>6\xefDQq\xd7\xa0y\x89\x8e\xff\xe9\x9f,\xdb\xc0\xbb\xaaB\x9b\xaaB?\xa0\xd5j\xf5?\x8d\xc7\xac\xb2\xb8|4\x1f\xe0\xf2q\xc5\xb2{WW\xbb\x17\x9b\xaazi\xbe\xb2Z\x99\xeb|\xbeA/\xd8\xa7W\xbc\x80\x97\xd5\x8b\x7f`\xdf\xbeD\xffiY\xdbl\xdf\xff\xdd^\xf7\xef=u\xffW|\x8fgW\x1e\xfd\xc0u\x0d&uFM\xf3\xe6\xc5\xbb\xaaZe\x05n\x1aGE\xa1\x08\xece(\xbb\xf2\x81\x99\x97\xd6\x02]\x13\xfc\xb3\xa7 \xce\x1e\xe9]UZ\x1a\x01r\x7fWU/V\xab\xd5K[GC\x03\xbc\xb0>\xe3\x83\x807Kh\xab\xb0\x8fN\xa1Q\xde\x9e\\\x1c\x9f\x9f\x9e]~:\x7fi\xb3\x1a\xf7\x03\xc5\x9e\x01dao\x8e\xdfy\x9a\xe3\xc7\xcab\xc0dMq\xf8\x03\xfa\x87\xfd\xed\xea]U\xfd\xe7j\xb5\xfa\xbb\xf9\x12.\x1f\x0f\x98\x1a\xc3\xde\xdc\xc3\xe6\xfd\x01\xd7\xcd\x1d.X#\xd9\x0bjk\n=7KV\xf9F\xcb\xe8\xaa\xdc\xf5Y\xf1\x82\xf0\x01\xc9\xdf\xfao?\xa02/\xac\x03\xcc\x9e\xbf6\x92.y \x8c\xecs\xb7\x06I\x85\x12\xdd>\xf6\xdb\xbb\\%\xc1s\xf4Q\x9a\xb1\xd9\x968\x14\xf7\xdc\xb2]\xbffg\xa3\x15\x7f\xc0T\x9b\xe7L\xc7\xedVl\xb6\x9a\xb3\xde\xa2\xfc\x166V\x92\xa1\xc0ni,\x8bG\xa9\xcf\x1b\x87\xadNmBxC \xec\xf2\xfc\x8c\xf7\xfc\xf5\xf3\xa18q\xa0\x90Y\xc3 \x82\x88\xd1\xf3lSU\xab[\\\xf3B?\xbc~\\\xfd\xed\x19\xd4\x18\xf4bS\xc5\xe7Y>c\xef\xb1\xe5y\xf0\x88\xc7\x04\x18\xfc\xf2\xc3\x0f?\xfc`\xb6=\xbf\x82\xc1r\xa1C)6S\xd0\xaf\xdb\x86H\xe3\x05G\x10\x87r\xcc\xcf\xd9\xabk\xd2o\x83\x07\x88\xecn\xc9z\xddo\x88\x07\xdd\x85%\x03Q\xca\xf6\x04\x9c\x85\x9b\xff\xcd\xaa}#\x18\x0b\xdd\xd6\xae6\xe2JN\xbfC\x8b\x82\x88\xb3\xcfl\xee\xf5\x07\x8aM^\x10s}\x93s\xf4\x8c\xd4MUZ\x87\xb38\xf9o\xf2\xba\xa1\xd7\xbc\xe5\x7f@\xdf\x99\x92\xba\x17\xd9\x00\x90\xef}\xef_Q\x11\xb2\xe6\xfa\x8c\xd7\xff\xd9!zf\x1b\xd9\xc3j\xad\xa0\xf4\xcf\x0elrx\xb9?\xe2\x1d\x93\xf5\xbf\xa0\x88\xffb}\x91\x95[{\xcfW\xf8\xd3\x8dPl\x87}\x0c=\x947\xe8\x0b)\x8aW\x9cC\xc6\xe7\x1ag\x0cI\xba\x899P\x87\xc3\xe9\x00\x94-m\x8c\xf5.\xe4\"K6p8\xef\x90\x0f\x9b\xa1\xc0\x1b>\x88\xe5\x18\x82\x10\x03\xb4'\xbc\xf0)\x90\x97\xdd\xd8\x93Vh1\xf4\x86\xb2\xb8\xf8n\xc4\xa1\x17l\xfe\xca\xea\x1a\xc7ViE\xf9\xcb\x9f\xff\xf2\xd228\x97\xf4\xf70\x03{\x97\xf3j3Q\xdf\xad\xbe\xff\xee\xfb\xe6\x99\xa5\x1b\xe1\xdf\x14\xf3 \xc5<\xf8\xb5\xc7<\xd0\xe0\x06\xc3\x00\x1ed^\xef\xbe\x12\xb2B\x00\x87\xb7\xa4\xacv\x1f\x04r8\xdd\xdc\xee\xb8\x194h\"\xa8\x0d\x10\xd2\xed\xc0\x0fj\xcb\x9cZ\xec\xf16\xbe\x85\x95ma- $\x97\xbd\x1f\xb9\xe8\xfd\xc8\xc7\xdd\xf0\x9b\x14\x90\x94m\xdc\xfe\x0b\xfb\xacj\xe9\x86{1\xe1m\xd6\x0cVa/\xc8j\x8bZL\xab\xddKS?%\x0f\xfb\xaa$\xa6\xe3\x01\xea*b\x8b\xa2\x06\xc9\x1dK\x0dRHMe\xfeje\xf7\xd5\x17\x98\x88\xdf}\xdb?\xe7\xbbbU\x12@\x0b\xac\xb2j\x9c\x0b\x85\xf5\x167\x04\xd8c\x00}\xa2\xaa^\x03\xcf\x890-\xb6o;\xab\x1c>\x03\xae\xca\x9c>o\x04/\xcb\xfa\xdaw\xa2\xe1\x7f@\xdf}\xfb\xffv\xe5\xec\xb3\xb6\x7f\xc5Q\x01\xc9oU\xcaYm\xa0\x8fz3\xb8\xe0\x9b\xe1\xbew\x18\xf4\x90\xda\xca?\xa0?0\x05\xa3m\x0e\xd1w\x88}\x05\xa5\xff\x83s|\xe0\"\xc7\x8dm\xf8\x8f\x91\x9a\x90\x9b\xd8\x84\xfc\x13DF.\x82\x9c\xb9}\xbdC\xc8\xc5\x1c\x90\xcf\xe4r\xa7\xcc\x03M\xe0\xf8\x9e\xa8\xf4\xf5\xf0\xf2^\x88\xbf\xa4\xdb\xbd\xb0c\xd0\x0ch\xcal\x1e\xf6\xbeGM\x9e\x01\xffv\xd8\xb4\xa2\x8e\xca\x02\xa6\xcfvYcu0n\x94\xcbp\xb3*W\x0b\xc2FR\xd0\x9a\xe9\x9b\x96L\x90^\x16\xfe\x1b\x0c\xd3\x17=(\xc6\x9e\xf4\xcdg\xc4\xa4\x1a\x8c\xbao\x07Ck\x9d7\xfb\x02\x87\xea;\xe3](d)\xe4S\xbeV\xb6\xdb\xad\x02XCGvE\xb7\x8b\x00g\x9f\xac`Z\xcc@\x0f1\x83\x05\x86\x95\xf5\xf9E^f\xe4P\\\xf9\xfc\xaaY\x7fF\xdf\xae~\xf7\xcf\xcfm#\xe19_\xd6Uf\xd9\x00\xd1\xe4\xa4\xf8\x17d{\x88\x8e\xb90t\xc4\xa6\xab*\xa9y\xdc\xddV\xa1\xda\xd2\xf8\x10\x00QR\xc1\x10n(\xf0\x9bD\"\x9b;v\xb8\xa9\xca\x8e\x18\xd2@\xe9\x8e.?}0V\x11\x0e$g\xfa\xd1\x17\xc91\xd4pC\x82\xa4\xd3\xf1\xae0\x11\x07{S*/\xb5u\x1e\xa5\xf2W\xe7\xa7\x1c\xa9B\xeb*k9`\xfd\x82\x9d\xf1\xd9~\xb4y\x95\xdd\xe1\xbc|\xa9_}\xd7\x9d\xe15Qy ;d^\x95+\xf4I\x1c\x1e\x02\xab\xf6\x87a\xd5\xae\xefpc\x8dq:\xa7~?\xe1\xe6\x0e\x96\xd5\xe6\x0e\x7f\xff\xfb?\xb0\x03\xea\x1dp\xf7\xbaJ\xef+\xb6\xefs\xab\xd4\xd5\xf9)S\xe9\x9f7\x1c\x91\xd1\xc4\xd1\n\xdd\x93:\xdf<\xf2F\xd1\xab\xc6\xbbT\x8a\\\xe7\xeb\xf29\x15\x18\xda\x82\x06q\xaf\x07Rk\x0dX\xcb\x95\xaf\xb0\xb9L\xebG\x06\xb7b<\xaa\x86\xab_\xbf\x1e|>\xaa\x81\x9f4Y]}\x99\xacz\x13\xfe\xd9\xd3\x12]\x92Ok\x9f\xc2\xfc\x84F\x0eu\xc3~\x0e9\xd0\xc1i\x0e\xbe\x13\x92B\x8et?\x81\x97\xea\xe4\x11%\xbca\x9f\x98<5\x95g\xaf\xb5\xe9\x1c\xefoH\x9a\x0f\xb8\x9a\xedd\xaa\xbe\xf5\xf88~\x80\x1c9Bzud\xfb\xcc\n\xf8\xd4\x7f&\x9b=\xd7,\xb2\x96L9\x8b81 -O\xc2\xe6b\x9f\x06\xcd0\xdf\xcb\x1c\x92\xdd\xc0\x14\xc1\xe3| o@\x1c\xb6\xf8\x9d\xa3d\xd8L\x86M\xf8\xfd7d\xd8\xd4\xb6\xa6\xf0M\xf0'\xbe\xa0O1l\xc2w\x937A\x90\xa2o\x81A\xe3\x9fZi\xc13\x15\xf7\x88\x84`7\x1d8\x1e\x198\x1a\x15\xd8I\x04\xa6\xf3i\xc0\xb1H\xc0\xe3\x14\xe0Y\x04\xe0\xb8\xf4_'\xf97.\xf5\xd7A\xfc]H\xfb5\x9a\x9bZH\xbfq)\xbf\x0b \xbf\x91\xe9\xbe\x0b\xc8\xbe\xb1\xa9\xbe\xd1\x88\xbeqi\xbe\xd1H\xbe~\x8ao4\x82\xaf\x8b\xde\xbb\x84\xdck\xb5\xfd\xd3\x10*\xef2\"\xaf\x85\xb8;\x93\xb6k!\xedzu\xa2qE\xd1\xd8Ag\x92u{r\xae\xad}\xbf\xf1\xe7\x1d\x99\xa6k\x92t#Pt\xa3\x12t\xf5\xcdp!9W4\xb4*q \x1dw\x94\x8f\xea\xa0\xe2z\x89\xb8&\xf7/\x9c\x84k~\xfbw[]g\xd1oC*\xeb\xa3\xde\xba\xeb\xe6\xa5\xddN \xdd\x0e9V\x0b \xb7\xa3t[7\xd9v\x8cjkm\x85P\x9a\xad\x8fd\xabSl\x17\x10l\x03\xe8\xb5\xd3\xc9\xb5\x16j\xab\x8fX\x1b\x89Vk\xc9y0R\xa2\x12j#\xd3i\xa3\x92icRi\x9dDZ\x9d\x9d\xa8\x93h\xe3Ph\xa3\x11h\xe3\xd2g\xc3\xc8\xb3^\xeal q6\x846k\x90f\xcd\xdcB \x94\xe3\x84\xd9@\xbal\x00YvP\xe4\x98D\xd9\xc84\xd9x$\xd9x\x14\xd9\xf9\xbd\xeb\xa5\xc7\xfa\xc8\xb1\xb0|\x0ftX\x8b\xd1,\xdc<\x17d\x91\x1bDo\x9b\xee\xda_\x12z\xcdc\xbb\xc1M\xa0O\x0cSi\xe1\x14Ge\x8c\xc9A\xb3\xb9\x83n\xd0g\xe43\x1f\xe0\x13\x0f\xee\x89\n\xf6\xb8\xa0\x9e\xa9@\xcf\xc2\x10\x8d\x90\xf4@\x8dB\xb4\xbb\xd1G\x8c\xf6cW2.\x0d\xe0h\x08\x943S\x0d\xe3\x08i<\x98#\xa4\x85\x15\\\x12\xdeq hF\x90\xc7\xc1\xf7\xdac\xe0\xd1\xa9q\xff\xf8\x07# \x85\xbeNqx$\x9c\xf91\xfcT\x0em\x82\x84\xe6\x05sX6W\xadhZi2D\x9d\x0c\x88\x87'4\xe9\x16\xee\xae\x86\xf7\xb5@\x7f5\xc9H~?ELM\xb2|\x9f\x13\x85\x9c%\xd0\xdb5i\xa8l+N\xff\x96c&\xdf\x91\xaa\xa5\x86\xea\xec\xee\x92K\xf8Bj\xbd5)0\x0fn)cZ\x02~8P\x8d\xd5\x0d\x9eu\x84\xc8\x94\xf5\xc1:o\x98\xfa\xb1F_\xeeH\xc9\x01sZ\xa1og)n5\xb9\xcf\xd9\xc6x\x0d'\x8e\x80q\x87\x82\xf46hW\x90\xdd1\x11\x84\x83\x05\xabB\x8f\x98\x0ebmv\xc5\xb1\x9dJ\x16\x16G\xb4=\x9b\x08\xc2\x9e\n\xde42O}h\x0c\xf4\xa1\x9f\xba#\x0cF\xbb\xaa\xac(p?\x8aG\x19\x0b\x97_8\x81\xa9\x19\x9d\x0c\x1c\x06\xe0\x8a\x12\x0es\xb3\xd1\x8f\xb7\x98i\xa8]XU!\xbe;\xb3\xb5\xf5\xbejxHaE\x12?#q\x93V98\x1dojB\xfe\xc6\xf1k\xf0_\xd1F)\xfb\xb7\xa1x\xb7\xf7\xcc\x08G+\xfa\x07u\x97\x017\x9a\xdd6U\xd1R\x82J\\V\x0d\xc9\xaar\xdd\xa0&gjm[\xe6\x0f\x88\xec\xab\xecn\xf6\xd8\xde\x91]\x156\xb1;^#\xfb\xe4\x1bd\xe9Ve\xd7S\x0f\x96\x0d\x8f\xc3\xdcE\xc6\xdd\xb4\xe56\xbf-\xba\xed\xe0E\xbe\"|\x85m^\xa2[B\xbf\x10\xd2Y\xa5O\x8f/\xbe\xffV\x1c\x0d\xd6\xb0`4+tA\x08{\x82.\xf6$Cw\xa4\xeem\xcf\x1cb?|\xfdz\x9b\xd3\xbb\xf6\x96[\xf5\xc0\xef\xe1u~\x9b\xbd\xa65!\xafw\xb8\xa1\xa4~\xdd\xecI\xf6\x1a\xef\xf7\xaf\xf3\xacy\xf5\xed\xf7\xdf\xbe\x92\xa5z\xc5K\xf5J\x96\xf6\xffb#\xf0\x158=\xb0\xe5Vl\xfcYU\x93\x15\x0c\x0e\xb6\xdd\xff\xa4\xcc\xad\x80\x9d\xde\xb9DL\x19E\xf3\x97\x05\xe7\x9203\xfb\xa0e\xc0>\xe8?\xf23L\x01\\\xd1s\xf1~\xbf2\xf0\x95\x80\xed\x86l\x82SDpv\xd7\xe5v\x97\x17\x04}&d\xdf\x17V\n\xf8\x08\xb6\x1e*\xdc\xa1:\xde\x15j\xaa\x1d'e5\xa4lZv\xf0\xdbVuN\xefv\x0d\xda\xe1G\x94\xddU\x15S\x04\xab\xae\x9d\xf8d\xe9k\x98\x97(#5'\xea\xb1Y(\x18P\xdc\x05\xf5\x0e\xd7\x9cN\xf2\xb99\x80(\xca\xafv8\xbb\xcbKi\xbb\xd0\x191\xe8\x94\xb7TCP\x86\x1b\xd2\x1c\x0c\x1a@\x94_k\x80\xa6\x02\xaf \x10(\x8a\xc4\x8e\xb4y\xd9\x92.\xf0rU\xe6\xd6\x95\x94\xb0\x1e\x11`\xdb\xb0\xa1\x85\xc0-\xe1n\x93\x0d\xa1\xd6\xb9=o\xb9^\xb8Tw\x0b\xb4\x10\xa7,\xd3\x96%z\xe4\xae\xb0K6\xb2\x95\xe9\xa9\x8cq\xebMa\x97\x7f:;\x19\xbb'\x8c??\xfe\xa4\\\"\xae>\xe8\x833\x8b\xa1?\xbc\xc3\xcb*\xdc~pq\x16\xc8)Lh\x949\xdc\xb6\xf5\xba\x85\xdb\xb7\x848y\x88V\xa96f\x9d\x0e\x8d_D\xb7+\xa6R\xcd'\x0c\x97k>\x01\xe4\xd2\xcem\x08/D\xc5_:\xf2\xea\x9b\xe9\xd0\xf1\xbb'_\xb0\x90p=\x9c)\xae\xd7r\xa3\xf8\x01mp\xd1\x88*\x8a\x81\xdc\x8f\x83\x81\xcd\x8e\xca{\x06:\xe6\xbf}\x145\xdb\xa3\x8c\xe6\xf7\xd8{\x05\xbf\xcc\xce\xfc`\x90\xef\x87f\xfbZ\xbe0<\x83\x8e\x15a\xbd\x0e\xba\xe3C)\x83\xfe\x85Y\x08\xf9\xc6\x94R\xbc\x13Q\xe5e\x0d\x82\xc8\xe0\x16m\xc1+J-n\xff\xd9k\xe7wS*1\xa5\xd0\xb6/lM9\xbd\x14\x93P;{\x13\xdaE\xd8\x8a7\xb4\xfd\xcbR\xca\xb5z\xbc\xaco\xda\xba\x0c+\x9e\xf6\xb2Q\x10\xf60\xb8\x89\x8e\xf9\x0d\x03\xc1\x19\x0f_7\xb2\x86\xc7\xc1\x99\xbf%\x05\xa1d\xe2\x9c\xb3}d\x14D}ibq&\x16\xc4S\x84\xe0\xcc\xe5\x84\x0b\xce^\xff\xc0(\x80|!\xb8\x08\xfc\xd2\x82\xa3\xa2\xa8\xbe\xb0g\x9e\x82\xd87T\xa7\x14\xa3t\x8e\xd7,\x93\xc6i'\xfe\xd0lOo3y$\nn8\xcb7F\xe9\x94w\x82\x9b\xefC^\xd2\xe0B\xa8/\x1b\xb9\xb3\x87\xc1\xd9^\x10\x1a~\xedB_\x00\xfbgFQ\x86\xafM)\xd4\x94\xd0L\x83b\xd9]\xd7-\x05\x1b\xbc\x18^4no>\x15\x17\x02\x9d\xf1\xab\\p\xe0\n\xa8\x8e\xf3q9fy\xad\xaf\x0bq\xa1e\x9f<\xd6\xbd\x03}\xf2(\xbf\xe2\xb8\xf7\xbb\xaa\xce\xc8zZq\xd4\xc6\x1b\x93b\x94\xd1\xf6\xf2\xc4\x86\x03\x11\xe7\xc2\x96{Di\x9d\xdf\xb6t\x8eB\xe0\x93\xe4P\xa9\\\x9fM\xac\xc1\x05)\xd7oI\xf9\xf8>o\x02\xd7\x1a\xb3\xec6\x19\x8e6W_\x9d\xa8\xcf\xfc\x9c\xd3\xbbu\x8d}\x91!\xfa\xa1\xaa\x7f`\x14I\xbe0\xdadb5`\x85\x08_\x15\xbf\xcae4\xb2h\xfdui\x86\x90\xae\xaf\x96\xdfP\x83\xce\xcf\x8e\x850;\xda\xaa6T\xbb\xce\xe9\xbb\x9c\x14\xeb&\xb8\x81\x04D|\xcdFI\xa0\x85\x8b\xbd\xfa\x8a\xe6;\x83\xf2\xc2*\xc0\x1e\xbef\x0f\xc1\x8c\xca=\x97HI\xebG\xee\xbd+r\xd3\xf2\xbe\x0d\xbc\\\x92\x9a\x91\x16\xba\x8b\xc2\xb8\x01E\xc0\xdd<\xd3\x9adU-s\x92\xac\xa0\xafSK\x85W\xa4\x17 VUw\xd5Z\x10\xb9\x8d\xba\n\x1f4=\x1f=\xa2\x9e=\x8e\x9e\xc8^u\xcf\x17\xf2$3\x8cg\xaf\x99\xdc\xb8i\x81[\x1d\x07l*\xc1G\x0d\xab\xb1\x9ae\xe7\x84$\xef\xdd\x12Y\xb0f\x90\x17\x84\xbf\x86\xac\xb8\xc1\xce\xbeP*\xd3\x01exO[~\x05x\x17\x1d \xe1[\x8e!H\xe6\xbbr\xe7\xdc\x0e\x7f\xee\xea\xc0\x1b\xba\xf3h,\xd7\xb2\xc7\xc9#\xf0\xe0vx=\xb2v\x1dW%\xadqF/\xf6$;]\x9f\x96\x9b*|f\x8aO\xaf\x9b=\xc9\xae\xf3u\xe0\xb8\x1d\xb8\xa7\xb9y\x98\xba\xf4nY\xc2_\xb8\x88n\xd8\xc9\x17;O:\xde\x14\x8a\xa4\xc12h\n\xbe\xde\xd7d\x93\xfb\xae\xd2\xf5\x97\xde!W\x96[\xfc\xb5\xafj\xfa\xff\xb3\xf7v\xcdq\xdbJ\xfe\xf0\xfd\xf9\x14\xb8;J\x95,9\x89\x93\x93\xb8\xea\x7f\xa1u\xec]\xd5\xe6\xb1]\x96\x9cS{\xa5\xa2f0\x12\x8f8\xe4\x98\xe4\xc8\x9e\xd4~\xf8\xa7\x80\x06@\xbc4\xdeH\xceH9;\xa8JU<\"\x1b\x8d\x176\x1a\xdd\xbf\xee\xd6\xd0\xfd\xf6K^&\xcd\x1f\xb6\xdb}O7\xd2\xe1\x00\x14u\xfe\"F\xa5\xd1\xcb\x1a\x1f[\xa1\x9c30\xc09#\xa5\xe0\x94tq\xff\xe3\x0f\x82\x92\x12\x13N\xec\x7f\x1a\x8f S\x9e\xca\xa3>\x99\xfc\xff\xef\xe97\xc9e\x94;daB\x07\xbc\xfb}\x0f\xf1\x1f\x8fE[6\xdb\x8e\xcb\x1c\xd2\xd2\xbb\xa2\x15a\x01\xb2\x0bA\xc3\xf8\xb0H\x19:\xe1\xf5\xee\xd4+\xc9\x12\xc5\xe8h\xa4D\x11B\x16\xd2?\x0c\xc9\x1fZ\xa1\xc1\x94\x9d5\x1c\x0b\xc0\xa0\xcf\xa2M\xf3\xb7\xe1o\x86\x9cV\x94#\xa2\xc8\x99\x01\xe2\xcf\x1132\xb9\xe2\x05y_\xac\xe9\xc0Q\x7f_\xd6w\xbaO\x19\x1d_\x0e}\xed\x9f\xb0Y\xb1^\xbe\xd2\xdb\xae\xecGg\xf9\xe0\x91\xbb\x0dY\x95\xf5\x12\xfc]\xee\x8bz \xb0G\xa9!\xd88Y\x99\x81o\xdb*\x17N\xf3\xb5\xa6\xed\x8d8\xaeF\x06n\xe0\xba\xcbE@Sk\xbe\xcaTNj\xd7\x96\xbd\xda\xb5\x9b\x82\xef\xcd\x9b\xb2~l\xaaG\xea|\x92c\x98\xc2ju\xbf \x1f/>]\xff\x8f\xcfa\x87<\xf4\xe1\xd3\xe5\x7f^\xbe\xbf\xb8\xfe\xf0\xc9\xff\xcc\xd5\xdbO\x7f\\\xbey\x1bx\xe2\xf2\xfd\x1fo\xaf\x824\xde|\xbe\xba\xfe\xf0\xdb\xe5\xc5\xfb\x00+\xff|\x1f\xea\xe3\xe2\xdd\xbb\xcb\xdf//\xacj\xde&\x85\xff\xef\xfd\xe5\x7f|\xbe\xf2?\xf0\xf1\xd3\x87?\xde\xbe\xbfx\xff&@\xe4\xcd\x87\xf7\xd7\x9f>\xfc\xfe{\x88\x97?.~\xbf\xfc\xcd\x9a4\xe5\xd7\x8c.A(l\xc6\xb7\x82>\xb2\xc2\xc1\xc9\xf3t\x18\x84\x94K\xde\xf8\xd5\xb7\xf8\xaf\xf1\x9f\x05u\x08ph\xda\x92g\xf0\xb2+=\xa3{\xe55\xf6#Q\x81\xffKz\xdb\xf3\xf4*\xe5\x82\xc73\xca\xc8\xfd\x00e\xb9\xc7^c?\x82k\x94\xcb\x92rA\xca\xfa\x91va>\xd5~|\x8d\xfe*\xa7\xb5\xeey\x89c\xf6\x85+\xde9\nqY\x16\xb5\x18\x80\x08\xfa\xe0\x93\x14\x1a\x00\xdf\xdf\xaf\x9d_\x8c\xec\xc2e\xc7e\xc5N\xf4\xcfe\x99\x947L,\x04\xc8\xab\xef\xe35\xfa+\xcc\x10\x10W\x15\x8cW\xab\xb2\xe2b\xb5\xb8k)\xbf\xe6\x85\xf8\x87\xaf\xeb5\xf2\x1b\x10\xe7\x92\xaf\x80dA\x8ci\xe8L%\xb4\xe5\xb1\x06lP\xeb\xba\xbc\xddv\xe4\xb6\xa8\x1f\xa4\x10\x0dt;|\xb3\xaf\xf1\x9fY\xe72j@\xce\xa5>\x95v\xc2\xe9\xaaYl\xd9k\na\x92\x19\x16\xd1Fe\x18\x8c jf\xba\xe5\x98yH\xe6OV\xa3\x13\x19\x8dNT\xceh\x1e\x8b\xc4\xee\x10r\xe3\xf0\x1c\x187\xa6\xf2\x1b\xeaFOl\xc6\xdf=\xefUv\x17}^\xe97\xba\xd8\xf6\xc5m\x05\xf3b\xaf/zk1\xcc\xc2\n\x9c-6\xd0\xa9Z\x96\xeeT\xc3\x90\xc9\x08\xe3\xa2\xe6AJ]\xb9\x94\x05\xe5\x9bm\xbf\xd9\xcaB\xf7\xfa\xbc\xe6\\\xa4D\x8c\xdd\xbe\xeeS\xfe\xd3\xdd&\xc4\xa1`\xb4\xe4\xa8/\x9e:\x88]CO9\x82N{kIW?\xdf.^\x16/\x16\xbf.\x97/^\xfd\xf2\x8fW/~}\xf5\xcb\xea\xc5O?\xbc\xfc\x99\xfe\xfc\xf2\xe7\x97\xc5/\xaf@\x92\x89\x9b\xba\xb5\xdd\x9c\x9e\xad$\x07l3C\xa7\xeaM\xf6\xf8\xf7_^\xbe|\xb9|\xf9\xe5\x07\xfa\xcb\xd7\x9f\xbab\xf7\xd3\x8f\xc5\xea\xcb\x92v\xdf6?\xfc\xf9\xe5\xcf\x87\xf6\xd5\xca\xcc\x8cr \xc8\xb6\xa2\xea\x1a\x18\x8c\xf84\xcc{\xa2\xd1\x9f\x19\x81\xbf\x80^\xef\xbd\xbd~}\xf5\xc3\xf2\xcb\x0f\xffZ>\xae\x97\xc5\x9f\xdb\xaf\x7f.\x8a\xe5\xf2\xfe\xfe\x97\xbb\xf5\xf6\xcb=\xfd\xf3\xd5+9ie\xbd\xa8\xb6Kz\x03\x0c\xf0\x0b\xbes\x0b\xb0C\xe7\xfc\x8b\x86Q\x83\xe3nU\x15w|'~\xbd\xa7\x90\xe0\xaa\x91O\xf3\xdd\x0e;^3\xd9\x12{%:\xf7\x1b\xf3\xae\x94\xc0\x92J\x7f\x82\x1c,\xfd\x06\xec\x95\xcb\x9bR\x99\x1d\xc9\x88qZ\x84\xfcC\x14\x0f\x82J\xb2\x04\xb3\xc7\xaa\xe5u\x10\xa8\xb1\xa0&\xa3\xc3S\x99\"\xe7\x9bA\x12M#\xee\x9a\xd0d\x0b\xce \xc96\xa9ao\xcd\xd2o\x92\xa9M6\xaf\xc9M\xb6\xbc\xde\xd3Lp\xb2\xe1\xa68\xd9\xf2{\xc6Ls\xe8\xc3H\xba\x88\xb1\xa6:\x84\x90i\xbc\xc3Lv\xb2yMw\xb2a\xd62\xd9\xbcE\xa1\x82\x137\xd9\xb4'\x9b\xdf\xc4\xa7\xba\x9a\x9dy\xcc\x04([\x92)\x10}\xd8c\x12D\x9fEM\x83\xe8\x93\xa8\x89\x10}\x127\x15\xa2\x8f\xba&C\xf41\xdct\x88>\x8a\x99\x10\xd1\x07=\xa6D\xf4Y\x8fI\x11}\x163-\xca\x96nb\x1c\xde\x88}\xe63\x9a\x1ce\xf3\x98\x1ee\xdb\x83 \x12%=\xab)\x12\xeda\xb2I\x12\xa5z\x18\xd3$\xda\xf5\xfc&J\xb4\x9b}\x98*\xd1\x8e\x0eg\xb2D\xbb\x7f\x06\xa6K\x94\xafC\x9b0Q&\xf6j\xca\x94\x0d\xb3A\x0em\x82\xa5\x13\xa5\xa7[?e\x0bq0\x935Tu\x95m\x15\x95\x0d\xb5\x8e*\xb2S\xafJ\xb3XMes\x8b\xd5\x91\x18\x8f\xd3\xac\xa9\xb2aVU\xd5CB\xf7#\xad\xac\x16\x15g\x1fM\xb3\xba\xdac\x1cl\xb09\xd6\xd7\xa1\x19\xfa\x06j;hj1\xcf\xf8\xc6\x1c2\x88\x1b\\\x0d\xc6\x08\xd7\xd2\xe5\xf4\xeb\xcc\x11J\x80(\x04\x0f\x8e\x16,\x97\xe7\xc3\xa6\xb5\x08\xfa\x11s\xe6\x95f\x84\xe9\xc2\xe65s\xb3\x05\xbf\xc7\xb86h\xf7NbxA\x84\x06j\xf1\xb5\xafz\xce\x92\xd8\xf8A\xd9\x0e9\xda\x14\xb0a\x02\x99\xe8X\xcd\x1fLL\x9cl\x07\x1d\xb7\xcb\x10\xf1\xc2\x14\x11z\x89pL\xbc{\x13\xb6([p\xf8\xb9#\x1c\x01g\xc4 \xc5\xc62b)s\xc7\x92\x05{\xc4I\x04\xe0\x8f\x84h~\x8e\xc1Oa[\xeb\x93\xf0J\x8e\xd8\xf3 \xbd\xceo\xfb\x0d\xda.C\x96\xcb.j\x01\x8e\xdaV\x82\x1f\xd9lv`\xbf\x895\xc2^X\xb5}/\xb4\x8dO\xa0jABW\x91\x9dL\xe5\x0bTA\x0d!\xdd\x10Z\x89V\xe8%\xa4\xac\x99J\xe0g\x7ft w\x8f\xb5\x9aD-\xd6$h\xb5&\xf1\x89\x15\x0fiZ\x9bZQ>Z\xcf+\x8c\xaaG=\xd4\x1fI\xed\xb8\x18\x08\x92\x93~\xb7\x11\xe9E\n\xc23\x9a m\xb2\xd5\xb4R\xcf\x9dK~\xd0\xf8'\x00-\x89\xaf\xc8\xe7\x00-\xbc)\xc53\xb1\xeb\xc0\xc9\xbb\xa6%o;\xa6\x03\x97\xdd=\xb2\xe9\x86\x06\xdb\xbb\xf3\x8d\x1d\xbf,\xc8\x964\xec\xd4\x11\xa9:\xd7\xf5P\xcd\x9blJ\xba\xe0\x9f\xa1\xaeb\xb2\xe1\x05\x88A\xac)]\x86\xc7\x16c\xeb\x92\xedT\xfcNP\xf0\xcds:\xec/\xd0\xf5\xe1J\xe0\xddD\xfcZ\xbc\xa0\xe4D\x00\x16T\xe1r\"\x0b\x977\xa2\x07H\xb8\xc2>\x14\x0f1\x95\x198[\xaa]\xf0\x84]|>\xf9M\xc4\xb8*wE_v\"\\\xaa!\x05\xa4L\xbd/q\xbb\x17L\xae9A\xfc\xc6\x03\xf9c\x0b\xf1\x80\xf3n\xf0+\x9f$\xb1/\xc0\x08\xa5\x04\x0e\x04\x1f:\xa1Q*\x0eL\x93\n(\xbd\x02d\x83(\xe8&D\x86\xbb\x99\xc0\xfd}\xc3Y\xcf\xe6\xf9Z\xdc`\x81\xc8 'Q\xec\xc7\x89\\\xa8Oo\xdf|\xf8\x84;\"\x9aV\xfc\xf5\xe6\xf7\xcb\xabkl\xebOp\x88\xfc\xf6\xf6\xdd\xe5\xfb\xcb\xeb\xcb\x0f\xefSL\xe7\xd8\x1b\x1f?}\xf8\xf8\xe1*\xf9\xf1\xc0@}\x0f\xf3q#o(\xd3\x7f\xde \xe2\xdaedbr;$\x9a\xad\xb8\xa8\x89H\xb8t.\x120Y9\xd4\x8d\xe6\x9fm\x97\x07\xf9\x17\xbd3\xae\x16p\xc19\xd4\x8ce\xff\xe2EsO\xd4)#\x1d\x96u\xd3+[\x84\xd7\\\x89\xaf\x91\xcb\x0f\xfcn\x98\xc9e\x05\x80\xb5*\x0c7\xc8P^\xd0\xd0:\xf5\xf2X\xe0\xdb\xc4\xc7\x07\xff#\xceL\xb1\xc3XY4UE\x17\xf2\n'rl\xab\xe3\xf8\xbex\xf4\x1d\x90\xbd\xc8)\xc7e\x0b&Z6M\xdd\x95\xb7\x15\xbd\x11\xb6\xa7=(\x8a\x81\xf3\xdb/\x0c2\xfd\xa3y\x1e\xd2\x1c\x1fi\x8e\x974\xcbO\x9a\xec)\xcd\xf2\x95fxK\xf3\xfc\xa5y\x1e\xd3\x0c\x9f\xe9\x18\xafi\x9a\xdc\x1c\xeb9\xf5\x10\xe3\xfeT\x12\xf1\x9d\xee\xd5{z\x08\xff\xe9\xbe<\xa8O\xeaC=\x98\x17\xf5\x80~\xd4'\xf7\xa4>__\xea3\xf1\xa6>\x85?5v!\x18\xedS\xf5P\xb3cJ\x86&\xf8\xb86\xb6\x9b\xa6q\xd8\x97\x91\xbf\xa1\xaf#\xc3\xc0n\x86\xba;\xcd\xbc\xd4\x80/\xccsY\x04\x042w\xd7BQ\x95s\xe5\x8b\x83\x0b\xec\xb9p\xa9Yofx\xd1\xd0\x9b\x16\xe2C3\x0c\xbb\xb8\x0f-~\xea!$\xa6x\xd1\x88pO\xba#\xb0\xad\xec#\x8d\xc0&\xbf#n\xec\x11\x9bWl\xbe\x88\xc3\x83\xd7\x9f\x86\xcd\x02J\xcf\xe3Os\x16\xc7\xe7O;\xfc\x98Gz\xd5l2\xd1\x11\xa7\xb8b\x9e`\xf4\x13}k\x8ew-sV\xee\x8b\xee\x9e.\xc7\x9a\xac\xe6\x9f\x0e\x8d\x1f9\x0f\xf0\x13X\xbef\xde\x16\xb8s1:\xec\xdcqMp0\xc6\xc7\x93\x00\x7f\x80\x96\xc25\x0e\x85(}\xe2\xdb\x009\xa0\x04\xcb\xe5`MX\x0eQJ\xe1!E\x9d<1\x17O\x1c%\x01-j\"\x88nq\x928\xb1d&\xf4\x04\xb4.\x05C\x01-\x19I\x01\xedigd\xf4Y\x80\x11K\x9c\x8f\xb4s\x81<\xfd\xdcxO\x8aD\x12z\x12\xa9T,\x06F\xc7'4I\xda\x14\x8d\x1b\xff$\x11\xea\x92K\x1b\xe9\xc4\xcd0n\xa4\xa3\x10\x1c\x18\xa1 \x8e\x83D\xf8C\xae9\xff\xe4a}\xed\xa0\xd2\x17\xa4+\xeb\xbb*A;\x05\x07\xe2\x9a\x12\xfa\xado\x0b\x0d\x0d\x01\xc6\x93R\xab6\xe5g\n\x85\x9e\xc0\xbdu\xa7*\xd6\xb6*\xfa\x10cJ\xbfI\xa1\xbe3c\xc2\x86\xb1h\xaf\x9d\x94\xab!\x0d\xe8w\x03,\xc6\n[5\x86a\xc4\xa2.\x9a\xcdnP\xd6DX\xe8}\xd1\x8b\xf8)H]I!y\xf6\xb6\xea\xbb\xe9\xf1\x92\xce\x01\xe8\xdd\xbb\xe1\x1dk\x13M\x0bP\x07\xba\xd3\x83\xd4\x1d\x0el\xff\xf1|\xc1\xeadz\xc0:\x997h\x9dD\x03\xd7\x89Z\xd7h\xddWga'\x05\xb1\xbb\x83v?;\x17\xc6\x1c\\IO0; \x05\xb4\x93 \xe3\x9f\x1c\xdcn\xd1\xf31\xef\x0dr'\x13\x98\x9f\x1a\xf0n\x91\xdb5\xdbv|\xd0{BvcA`?a\xef\xe2\x8c\x82\x99u\xe4e$y\xc7\xb0\x1e\xfb\x97\xb4^Eq\x06\xdc\xa0\xbeb\x18\xed9\xe2\xc6\xbd\x174\xff\xd5lDl\x84\xb1\xf7\x92b\xc4\xbdc'\x99}i\xff$\xc1\xb8\xf0`Lxz\x8f\xe9\xb1\xe0\xfe8\xf0\xbc\xde|\xf1\xdfaq3.\xee{\xd0\xb6\xec\xd9\x0b\xc4|\x07\xe3\xbd}\xb0\x00\x14\x10\xe0\x9d\x98Y\xe2\xbb\xc3\xb1\xdd\xf30\xeaC+$\xe3\x14R\x11\ni\xd8\x844TB\"\x1e!\x01\x89\x90\x88AHB\x1f\xa4\xe2\x0eR\x11\x07IX\x83<\x94A\xec\xe68\x0eY\xe0\x89\xc9\x0e`\n\xf6\x84&\xd8/\x8e`~\x04\xc1\x13a\x07\x0e\x80\x1a8\x08^\xe0 \x91\x02\xcf\x11#\xf0\xe4\xe8\x80\xc3\xe2\x02fN\x1b\xa9\x91t\x04\xe3\x8c\x01\xd3\xe3\x82\xa5\xbd\x81\xd2\xa3\xef\x01},\x1a\"58\xda\x8du\x88)E\xfd\xf8\x80h_0t\xac\xcb A\xd0\xd8\x9e\x98-\xf8yR\xe0\xf32\x1d\xae\x81o0\x1b\xb0\xe1\x98yMK\x88_y@_\x1c\xec\xb9 \x10\x0d\x82\xd7M\xf0\xc132\xee\xd16o\x89\x1b\xc7\xfb\xfd\x84U(\xbb\xb7\xa8+.\x08\xbd@\x1cp\xceTcn\xb7}\x8fj\x84;-\xe4&Ip/\x1cx|~\xcf\x89\xfb\x17\x8bV\x86#\xcc\xfc\x9b\xeb\xfe\x1aiNw\xc9\x8epp\xa5\xf3\x9d\xb1<9|g\xbb\xab\x12\x161\xdb\xf0\xe8wMy$jQ\xcb\xfd\x10uK\xe5\x98\x1f\xbb\x8b\xaa\xca\xcd\x1f|L\xd1\x9ak\xb1\x0e\xa5h%dS\xf0{g\xe9M^:<\xa0T\x01UsL\xfb\x9b\nC\xec\xa4\xe5Z\xb20\xea|{\xa0\xbb\xc4\xaf/M8\xfe\xaf\xfdY>P\xb8\xf7\x89X\x9e\x96\xf6\xdb\xb6\x06\xcc\xcd\xc7\xe2N\xd5\xe4=\xab\xe9\xb7\xfe\x86=\xdc7\xe4\x96\xde9\xfa\xfa\x97-mw\xec\xebe#f\x0f\xb3I\xa1d\xddt=\xa1\xabU\xb9(i\xddW\xbb3\xf2\xa1\xaev\xa4\xa9\xb9z\xd6\xacVp\xe9glX\x04\xbb\xfbf[-y\x08&\xed\x0d\xfb\x1e\x7f)sV\xb6f\xa9:\x12\x15W\x825>5\xf5v\xcd\xaf\xfa\xe27\xb8T\x165\xe3\x8d\xdf\xfb\xf8\x95\x00&\xd2\xa2\xb2\xad\x8b\xc7\xa2\xac\x98\xca\x89\xb9\n\xcb\x8eTLCR\x13\xc4h\xd7d\xcb\xa4\x10#\x98;[v\x17\xee\xe4U\xe5\xba\xdc\xfb\xdc\xf1N\xa4t\xef\x9b\xbe\xa8\x94\xa3]Fuv\xb0\x8f\x8c\xfd&|?\xdb\xcaA\xe3r-\xd6\x9e\xbe\x15\xa9\xe8\xaa't\xbd\xe9w\xa4\x14\x89\x08\x84\xc1\x0c\"\xd0`KCGl\xe6nwPh\xb0\xd8l\xcc\x03o[\xf77\x9cOlf\xf2}k\x1aA6\x0b|\xcf4\xa4o\xb7\x94X6\x82\xa2\xd7F\xcd\x1f\x14\x0bi\x12\x14\x12\xcdq]COR\x19\xb1g\x9a\x9b\x8a\x89\xda\x80\\\x1ei\x92\xca\xf9\x84?_v\xce,[Ci\xd8vd\x12\x9e.T\xae\x87\xe1Ka\x1f\xc3\x99\xd8\xd7\xe5]\xdd\xb4N\x94\xbd\xfcR\x1c\xd7mgo\xd4\x962\x05\x06\xbd\x08\xe6/\x88 f/F9\xecFn]\xc0v\xa4E\x89\xf5Ck\x8e\xbeo\xda%m\xcf\xfef\x0f\xe5\xaa\xac\x17\xf45Y4\xdd\xba\xe9^t\xcb\x07\xf2\xf2\xec\xd5\x8f\xea!q\xe14\xe40\x08\xda!\xf37\xe7\x83\xaeo\xe9r |\xdc}\xfa\xf8F\x9dd\xe2Z\x07\xe7\x8b\x92\x1c\x1a\xb9a\x8d\xcf\xc8[qw\xc8\xd0\x8a4m\x84L\xcaC\xce\x08Mp\xca\x02\x1f\xb3\xe4#?\xa6\x9a\xc1\xde\x9e\xee2\x86\x16t\x9e\xce\xea>\x16\x04\xfd3J\x12P\xbe\xa1l*\x91\x19%\xa3\x9c\xcb\xee{\xb3\xf5\x9e\xecn\x86\x16MD\x9e\xcfC\xba\x03\x1aZ8\x1d\xf9\xb8\xfeC)\xc9cG\x03\xb4q\xeei\x94Tzb\xf2\x84\xd4\xe4~?0\xb4\xf1q\xec\xb3\xb8\xb0\xa1\xc5\x93\x94\xefo\x18\xc7p|\xdb\xb5\x97\xf2\xe01\x1c\x9f$\n\x86\xb1Ns\x0f\xb1c8\xbe\xfdc\xaa3\x1d\xa1{8\x97:\xd2\xf9~\x1c\xebHG\xfbr\xaf#]\x1d\xd6\xc9\x8e0\xf0L\\\xed\x08gO\xe1pG\xd8\xd8\xbb\xdb\x1d\xda3\x0b\xc7\xf7\xf01\xa3\xdf\x1e\xda8\xef=\xb4`\xb2\xf3\xa8\x1a\x93vU\xf3\xcc\xc3(g?J\xc9\xbbP\xbe\x94\x87iJ\xe6\x04H\x00\xb4P\x96\xf4T&&\x80\x04\x0c:\xc8\"\xcc\x06\x18\x806 6\x00mv\xf0\x80\xe2\xcct\xc2\x8d\xc9\xf7\x80\x12\x19|p18\x81C/\xe8r\xb7\xef\\#\xad16\xcf#\xb6\xe1\x0cA\xef6\x17Q\xf8\x01J\xc5ri\xfa\xa2\x80\x9dez\xca\xdc\x0f\x1efr \n8\xa1\x84q\xc7\xfc\xe1\xd0\x9e`\x0e\xbc\x1e\xf5\x84\xd7\xc7E\xf5\x9aO\xec1\x0d\x82\xdb\xd1\x08\x90\x03F*>\xaa\x91\x0b\x9c?\xaal\x08\x04FdR\xb4\xeeHP\x84A\xa3\xb3\x01\x12qh\x04\xc2\x981\x86\xc1l\xaf\xd4\xcbpmP%\xbd\x9e[<\xed1\xec\xd0f~*\x88\xc3\"\xe7\x84\x1dB\xc3\xc0\x1cd\x8f\x80\x0e\x12\xd2,\xfcz\x85\x03\xee 193\xb1D\xc7x\xb0\x07Bl\x1a\xe2\x03\xe7\x0e\xeb\xc7\x0b\x04!\x1e0\x08I\x9dE\x04\xd8@\x92\xe6q\x1ep\x08\x89\x00D\xc8\xdc \x11\xe2\x05\x8a\x10\x14,Bp\xc0\x08\xd9\xfb\xfc\x8e\x07\x90 \xc4\x04\xb8\x02\x05\x91\x90I@\x12\x84\x98\x05-!!x \xcaQ\x924S\x13\xa0&\xfeO\xcd\x037!S!'\x08\xbd\xb2Fa'd\x02\xf4\x04\xeb\x05\xc0(^\xf8 A!(\xc4\x07C!3,\xdc|\x90\x14\x92\x04K!qh\n \x189\xc6CT,B\x03`\xc5\xfa\x03\x86Z\xc9\x83e*\xeb>\xbf\x12\xea@\xa7\xc1\xa2 \xcd=\xae\xc2\x93\xa1\xd6\xc9\xe3\x11S\x89\xe6Cf\xaaCX\xc8Au\x1e\x93M\xd1 \x1b\xb8\xb6,g\xf0w\x8b\x08?\xa4\xa3'\xf4\xe5P\xc6GHA\xa46]\x0b\xd6\xde\xba\x01\x17\xbf\xa3\x17\x13\xe2\x85\xd0\xe5\x81\x0b}{P\x89\x02\xdf\x890\xc8\x1d\x87\x7f}\xa24\xc1bo\xc2\xaf\x05\xff\x1cOI\xd9wZ\xc6\xff\x1a\x14\xc4%i\xd8<|-\x85\xb1\x1a\xff\xca\xa3`&2-\xcfE:\xac\xea7\xc65\xb7$^\xef6\x06\x86J[\x10\xdd\x7f\x9eR\xcd\"Z\xbf\"R\xb1\"^\xa3\"\xb9*\x05>\xff\xe3+O\x18U&\x04\xb5`\xad\x89\xe7P]\xe2I\xeaI<\xbb\n\x12\xbdS3B\xc1\xce\xf4o\xc0\xea]\x99\xe5\x97\xea)\xfdc,;\xb5\xdc\xde/\xcc\x02u9\xa7\x88{\x82\x98n\x0cT@.\x931fK\x0cU\x96Bs\x19C\x8e\xa1X\xb18\xe58\x1e\xccE\x80\xa5Q\xb5Q^\xf8\xd7?\x0e\xc9\xe5\xa0\xb6\x045\x03\xbb\xe5\xd9\x03\xffI\xfb\xff\xd8],\x97m6X\xb5[4\x1b\xbaol*\xeb\x03\xf1X\x04.p\x01#\x83\xdf\x07\xf6\x19`\xa4\x97\xbfi\xf0Q\xd6\xf5\x19!\x97\xebM\xc5A\x08\x1d\xe9\x96\x0fg\x12rV\xd6=mW\xc5\x82\"Z\"\xafz\xcd\xd4\xf5V\xb96)h\xc4Z\xaes\xf2\x86+\xb2\xe6p#\xb0\xd9\xb9\x87\xcd\xe5\x0e\x1b\xa7e\x08U\x98\x08nB\xed\xed\x0c\xef\x98fL\xa08\x17\x95s%\xb2\xbb\xf3\x0dY\xd6\xda\x94\x1a\xefqP\x89'!\x0c\x06\xb7\xf3@\xed\x02~\xb1\x18\xa2V\xac\x0f\xf6\xa7\xa8\xd5\\Mm\x81\xe3\x10O\xa4\xb4\xc7\xe0\x11mSy\x80\xbc1\xfcB\xc1\xdf\x1dv\xaa\xecNM5\x18\xbb\x99\xc6\x1c\xcc\x9d\xb9i\x9b\x05lM\xb4\x8c%I\x99\x80#~\xd1DP\xa5\xc7\xb7\xb2\xb1\x16\xdb\xfe\xbei\xcb?Ar\xb4tA\xcbG\xaa\x95\x84f#p\xe8\xa1\xa9\xcaaF\x8dg\xb9\x8d\xe3\xc6\x88E\xca\xb86EG5lrS\xd0\x0e\xe6\x9f\x00\xa3\xeeF\xbb\xea\x8bzY\xb4K]8\n\x19\xddq\xfc\xc9\xbah\x1fh\xab~s7\x1a\x9b\xd0n\xbb\xd94-\xeb\xd14\xf5\xf0\xbd\xc6>\xcd\xbeo\xcb\xdbm\xcfmS\xe0{\xbauo\x01\x8b\xfb\xa2\xbe\xa3Kr\x0b&v!\xb7\xa4`g\xbbn\xc1NJ\xd4\xb7$.\xb2\xbc\x86\xe9\xee\xa6m\xaaj\xbb\xc1\xa7\x1d\x97U\xb1y\xff\xa7\x10_EU\xa9\x8f\xc1\xb8F\xf2\xc9*\xd9\xa5\\|\x14\xd2\n\xe8~KB8\x18\xaf\xff\xbd\x93\"bU\xd2j\x89\xb8\xf0`\"\xab\xae!\xb4.n+\xb8%q\x1f\xb5\x90\x9b\xff\x8f\xbb\xbc\x80\x19A\x8b\x03\x88\x80\x1f\xdf'\x9d\x8an\xba\xe2t\x87\xfa\xe4m\xd3\xf4\x9a\x85Q\xe2gu\x13\xa3\x94r\x8c\x19\xb6\xaa\x06=\xee`o\xc1\x9e\xe5\xb0b0\x02v\x1d\x0dAU\xef\xe4o\xfc\x13\xf8J[:T\x03\xe0c^5\xdbZ\xe1\xb6\xe4\x82\xec\xd92\x04\xbd\xccd$\xd9\x8f\xe1%\xb6\xc9U\xf0r\x18\x05,\xa6\xbd\x18\x94/\xa8\xc8\xee\xd0\x83\xed\x0d\x13c~\xae\x1b\xbc\xd4\xf0\xc8\xf3\xe1hh9\x1aZ\xe2\xcf\x1e\x0d-\xf6-%\xe5\xe9\xa3\xa1\xe5hh9\x1aZ\x9c_\x8f\x86\x96\xa3\xa1\xe5hh\x99\xdd\xd0\"8P7,\xe1\xec\xa3\\\xa1\x81\xf8\x07\xfe\x07\xbe\xf7\xd9\xa0x`\x01\x9el\x19\xcfM\x13Pl\xfc\xc3\xe7\xd1\x8e\xae_[\xd7oE\xa4#\xfb?\xa1\x83\x9d\xb2\xbe\xcaEQU.r\x98\x87L*p\x85\xfa\x15^\xcc`y\x82\xb2/5E\x88\x19`\x97N.\x8b\xd91\xc0\xce\x9aE\xc5\xc1\xd1\xea\x03\xe2\xb6\xa4ae\x1dr2=\x0b\xa6\xed\x17\xdb\xa5\x8bz\x8e\xf1\xf7\x86\xdf)\xd8\xbd\xf1\x94l7K\xf5\xff}\xb9\xa6]_\xac7\xdd\xa9\nX\x02\xf0\x1a\xc4w\xb6\xb4B\x19\xc4\x92\xe8\x04\xae\x0f\xc1\xf8E`\xed\x861\x85}\xad\x11\xe5Y.\x1a{\xfd\x05\x1b\x0eFb\x88\xf5e\x8f\x9d\xb3\xc7\x00p\xcb7\x1d\xad\xfbv\xc7\xaf`\x82\x17/\x8f\xb7HPD\x94C<\xefyo\xa7\xb4\x11}H\x0c\xe8\x02\xab\xaf.\x96\xeeY\xccUUt\xbdd\xc8\xcb\xe8>'\x8c\x1bk\xcb\xc8\x8c\x89M\xed\xe7\xa2\xac{zG1eM\xce\x16\x1e)\x10\xbb`2\x15B\x1c\x0d\xd6\x97\xa5\x10>e\xbdh\xb9b#e\xbb\x07\xb8/\xa7\xd3\xf9\x93\xc02\x8f\x9f\xe2\x04\xdeE\x1f\x88!\x94\xc2\x96-\x9b\xfa\xdc\xc3\x1fk\xf4\xd1\xd5\xdc\xfc\xbd_0\xe1\xf6\x8e\xc9\xcf\x8e,\x8a\x0d\x1c\xb2h\xd45\xdf~j?4d]< \x13\xc4\xb7\x88\x8a\xd8\xab\x97r'\xd3\x1dX\xba\xd6\xc5R\x7f+h\xb3\x13G\x93\xb2\xda!\xa7\x14)\xee\x8a\xb2f\x8c)Yo\xd00-?2\xa9\x80e\x9f\xbc\xd6,\x0f\x1c\xfa|_\xce\xaa\xe9\x9cc\xd9\x0ba\x18g\x84\xfca@\\\x85\xc9\x10\x96\xc2\xa1\xa6;\x9d.\xaa\xae!\x1c\xfdK\n\xa6r\xbccW\x01G\x05\x9a\xd7\x8c\x1a\x1a\xe9`\xe5\x94\x1a\x9c\xdc\xc1\x1e\xf3fPh\x9fp\x84\x1d\x932\xab\xb2\xeaiK\x97\xe4\xe1Q\x86\xd5\xf7\xb4-\xfa\xa65\xef\x1a\xc2\x08\xe7\x0c\xd3\xcb\xb0xA\xeeEC\xc8HNa9\xaa\x9d\x8c\x15\xdea6\x91A\x064\xfc\x82\xd6\xacVzj\x13=d\xd77\xe0\x91\x8aS\xc0\xe6\x9a&\xfd{;9\x8bu\xb5\xe4\xf3\xa0\xf6\xac\x981\x87\xdc|\xf9W\x8aZs\x1b\xca\x05B\x8d\xaa\xd3\xd2\xad\xf8N=\xb8\x99`\x07\x9dd\xe6\x84u\xc0\x93\xbd\x9c\x0e\xb7\x0e\x97Yd\xae.\x95\x85\xb6\x14\x01\x12\xfc\x13\xe3\x1f\xa0\\`\xc9\x90Zg\xef\x84\xfdk\xcbUV\xb0:\xb1%\xe0\x18\xf6\xcd\x167xF\xe7&\xec\xcd\x12\x017\x97\xef?~\xbe\xbe\xb9\xba\xbe\xb8\xfe|\x15\xf5r\xf8\xde\xb3\xc2\xbb\xd2^2B\xbe\xcc\xa6<0c\x98\x8c\xd9`\xa0E'\xc07s\x91\xd7\xb0\x001\xbb\x89@\xb1s\x118&\xf6\x0c[O\xcf\x0b\x91i\xc7\xe7 \x89&\xb3whM\x8a\xf6\xb6\xec\xdb\xa2\xdd\x0d_77\x8a\xa9c\x04\xb6a\x1e_2\xba\xcc\xff7\x9c\xa7\xb2s\x03\xbc6-},\x9bm\xc7#\xbb\xad\xcfi0\xc9;\xfc\x89\x0f\xf7\xba-\x16\x0f`o\x85\xb3O)\x95T\xca\xd9\x90B\xe8\xd7\xb35b\x8ev\xc2\xf8^\xdc\x97\xf4\x11\xf2\xaa@66\x80\x97!\xa1\xe7H\xcf\"\x7f\xdbS\x9e\xd3{<_\xfeK\x9c-\n\xcc'&Hm9\xf8\xf7\xf9\xa0\xb2K\xdd\xd7C\xd0s{\x99&\xd9\xaf\xf8\xbb\x92O\xb9\xb4\xc3-\x03\x03\xa4yH\x89\xf1\x89-_\xd6w\xa4\xdbr$\xe1\xe9\xaa(\xabmKO\x99>\xb8\x81\xe0\xfcqs\x1e\x13\xf5W\x9f\x7fO\x96\x9f\xee\x1b\x1f/\xae\xfc.{\xf3\xd1\xab\xff\xbe\xfc\x98\xf8\xe8\xbb\x8b\xcb\xdfc\xd2?\x87\xeft\xb9\xef\xa1\x9a\xdb!1d=\xd9\xd6\x1d\xedS\xfc\xf1\xee\xe4\xda=\xb3\xdf\xac8\xd4a\xe7\xf1\x00t\xd8@\xab-\xa6\xd0\xa0\xdd\xb0\x85\xb1\xbba\xbfi\xdd(\xd6\xcf\xcdt\x92\xbc\xc3\x87\x92g\xd7ZB\x92\x93u\xd9\xf1\xdc2B\x0e6-Y\xd2\xaa\xd8\xd1\xe5\xc0g*cl\x1b\xd8\x8c\xb1\xdf\xbc\xe3\x1f`\\(\xb7\xec\x9b\xa2H\n\xb7\xd0\x07\x0f\n\xea\x07\xf8Ni\xbd(6\xdd\xb6R]K\x01\xbe\x82hl.\x08\xd4Y\x84\x0e4P\xad\x16\xe9\x1f\xe8\x9ft\xdf\x91!\xea\x9f'+hVr\xd8\"\x85\x92\xec]@\x95\xb9\xa2\x88 \xf6\x05\x04OJ\x8c\xa9\x04e\"\x82\xf2i0yv\xafr\xe0\x83\xf9J\xdc\x8dp\x88\x9eC\xcfo\xd32rO\xa0+p!\xfb:iV\\\xb3\xe0\xcbP\xf4}\xb1\xb8\x07\xaa\xca\x01\xc8\xf69\xaf\x0ee\xec8\x83\x9a\xd8+\xfc>\x12\xab\xd8*\xa1\xa4\x86\x1dV\xfe\x98d\x86\x85\xc8]6I{6\xc5\xeeg\x9b\x88\x05\x99V^\x06\x0dow\xffD\xfe\x13\x89\xf1\x96n\x0c\x85w\xee\xf6\x90\x18v\xa4\x91,=\xc0\x1f\x7fgr\x8f\xd1\xf0\xff\xa1E\x8a\xc6\xe4\xf4\x1bO\x0e0\xb4P\xa1\x98\xdc>}\x05b\"\xf5WF\xea\xe4\xf10\x89!\xd2CHD=\xd8&e\xbf\xc6J\xae\xcc\xc9\xb9_\x01\xcd@\xcd\xa6#fS\xd1\xb2\xa9H\xd9d\x94l\x12B6\x19\x1d\x9b\x88\x8cMG\xc5\xa6#b\x13\xd1\xb0\xb9H\xd8\xd8\xb9\xef\xdf\x0fa\x04,`]\x11rAm{o\xc8\xd7}\xa3^\xf7\x81x}2\xb4\xebA\x90\xae\x07B\xb9>)\xc2\xf5y\xa2[\x9f\x01\xb2\xf5\xd0\xa8\xd6\xd0Mrd\xd9\x13\xb2F\x8b\x9e\xb9%O\x02\x90\x1d\xa3\xd4Ii\x979\x91\x01z\xbc[P\x1eN\xd8}\xa2\xbf\xa7\xa5+04\xeb\x16\xe7\xda\x9c\xf7\x85\x95_|\xafZ\xd1\xa4\x8b\xe60)\x9e\xa8\xafr9d\xd1\x81p?\x98\x9b\xdb\x02\xf3w75r-\x89_19\x94g\x86\xca\x1f\x93\xaa~\xf8\xa7J\xbbE\x127 \xd1\xceJ\xe4\xb9\x98j\xf4\x8c+\xaa\xb1W\x8e\xb7T\xe4f&\xe8\xcfS\xfc\xf4xG\xfd?xG\x8d\xcb\xc1\xa9)\xef\xdc\xd9\x0c\x16.=\xe0\xa5Y|=S\x8b\x94\x1eo\xcb\xc7\xdb\xf2\xf1\xb6\x8cl\xa8\xe3m\xf9x[>\xde\x96\x8f\xb7\xe5\x7f\xb3\xdb\xf2\xac\x85A\xc7\x16\x05\x0d\x14\x04\x9dtU\x89\"MET\x89Q\xed\xd3\xbd1\x12\x0f\x0e(\xae\x8d\xf5S\xaay\xfa+y\xc6;\x9eT\xc1\x13\xdf-3V\xee\xdc\xd3\xfd\xdd\xbcb\x9bWx|\x17j\xb7x\x8dN4\xde\xe7\xff\xf8\x1d~\xdc\x96D\x84\xcf{\xb1K?i\xb9\xfbeq\x0d\x19~:\x84zZ\x06+\x1c\xfd`\xfc\xf8\x97\x86\xf9\xeb_\xb2Z\x1d\x1f\n\xba\x9f\x07>^\x0c\x84xl \x04\xb8\x03\xdc\xa7oT\xc8\xc6 \x99\xd0\x14H\xc78\x02\xf3\xef\x87\x8b#\x08\xb1r\xc9\xb6\x0e.\xbc!\x18\xe7tX\xfcSQ\x9d\x92\xc9nt\x85%4\xf9\x84\x96<\x1f\x85\x15k\xf6\x1d\xd3\x1f\x81:\xb7\xd4\xf0]\x8b\x10R\x05\x03\x93E\xc6\x85\xca\x17\x01\x88;CS\xe9\x8a\xbe\xecD\x0cvC\x8a\xcd\xa6\xda\xe1xT\x98\xc0+'\x80U\xe0\xa6\n\xf1\x80\xf1\x9e\xf7\x13\x1b%\xfa.@\xbfW_\xb7\x95\x81AKA!QY\xda\xe7\xe8P\xe3\x1f$\x07\xcf\xaa\xef\xd4\xdc\x1c\x80\xa4\xbb\xe1\xac&\xf3x-T\x06Q\x07\xcd\x8a\x16\xb5\xe4\xf1\x89\\\x04\x01lGv\xb1V\xda\xc4\xde\xba\x819\xc4mD)\xe5wBO{#5\"%y\xe2\x0f\x0e\xc5y\x86\x96\\\xa6G\x7f%l\x14\x19_\xba\xc7!e\xa1w\x03E|B\xdd\x1f\xbe\x9cO\x88\x9b\x03\x14\xf6\x89w\xffd%~\x86\xd6;\xc5~d\x13%\xb5\xca\xdb\n\x12\xab\xce\x97\xb1\xf1h\xec5\xccT\xb1\x87\x8e\xc6^\xb3\x1d\x8d\xbdGc\xef\xd1\xd8{4\xf6\x1e\x8d\xbd\x93\x8c\xbd\xd7\xc6\x96\xd2N{[\x91\xff\x9b\xf3\xaa\xc56v[\xd2\xed~\xe6E\x00\xccv\xc2\xa4\x039 lm@\x00\x8d\xce\xb5\x02e\xec2w.,\x7f\xeaY\xffY\xa1\xdb\xe1\x08\x127\x92\x00\xd6\xd1\xa89f\xbe\xba\xe9o\xf8\x0f\xa3l|\x96\xfec\x8cBQ6\xb9.\x96\xcb\xb6\xd3\x0c\x8f\xb7\xdb\x9e\xeb\xbc\x1aWV\x10\x87UH\x8f\x84\n\xa5\x8a\x12\xa9\xea\xa5\xb4\x92\xa8\xae\xc1\x00\x86\xea\x98\xc3F\xd5m\x8c\x9a\xb7\x90\xfbv\x88\xd0h\xd3\x15b\xaeB\xfbA\xcdRs\x99\xa2L\xf3Sh\x9c\xf9\xd6$\x8f\xdd\xc8\xfe\xd6\xc7\xda\x87\\k\x90 \x98a\x13\xd2\xed@\x9e\xdd\xf8\xe1\xea\xa2\xaa~o\x16L\xe1\xeaDy\xe2\xe4\xfd(R\xa3\xdc\xb4\xfa{\xc3\xbbv\xe2U\xbf\xdc\xb1\x08\xc1!\xbe\xaa\x8a;\xbe\x87Uv\xd6F>(\xe5\xacx\xba&\xbbf\xab\xeb^`Z9S\xd3\x90^\xc1[\xae\x8dJ\x8c\xa7W\xf7\x96\xd3\xd9) X8\xb3F\x9eT\xc3{\xef\xe5\xbbE\xe5\xeeB\xdc\x7f\xf5\x1a\xeeP\x8cZ\x14 We\xbeym\xef;\xe7\xdc\xe5\x15\xbce\x8ch\xa8\x88\xf7\x87\xba\xdaA\x91\x8a\x95,\x8c\xdf\xb4\xbc\xda\xbdIP\x14\xf9\xbf\xa5vM\x12x)sV\x90\xfa\xdd\xe1\xdb\x90`\x0d\xd2%m\xd7\\\x81\x17\xbf\x81\x8aX\xd4t:\xa8\xe9\xa7\xe2\xb6\xaf\x19>\n\xe0\xe0\xc4 \xa8\x97S\x03N\xbes\xf3\xe2\xab91?\xcem[\xf2\x9d\\\xf6\x7f\xef\xf4\x97t\x8e\x06\xb4\x89\xa5\xae\x1a\xa34t\xd0E\xb3\xd9\x11\x953B|5v\xc2O\xda\xa9\x9c\x1a\xa3\x14A\xaf\x1aM&\xc8\xc5\xa9*\xb5E\x8e)\xd8\x96ZM<\xaa5\xd9\xa3zM\xfc\x1f}\x083\x82|#\x11\xafJ\x10-\x117\xb6\x8fW\xbd\x11b\xd3\xf4o\x9c;\xac\x1f\xafZN<\xaa9I\x9dED\xcd$I\xf38\x8f\xaaN\"\xea:\x99[e'^\xb5\x9d\xa0\xaa;\xc1\xd5w\xb2\xf7\xf9\x1d\xaf\xce#\xc4\x84\xaa\x8b\xaa\xf4d\x92Z\x8f\x10\xb3\x14}\x12R\xf6IP\x8e\x92\xa4\x99\x9a\xa0\xf8\xfb?5\x8f\xf2O\xa6^\x00\x10ze\x8d^\x02\xc8\x84\x8b\x00\xd6\x0b\\\x0d\xbc\x97\x01\x82^\x08\x88\xefR@fX\xb8\xf9.\x08$\xe9\x92@\xe2\x17\x05\x82\xd8 e\x1b\x7fa\xb0\x08\x0d\xd7\x07\xeb\x0f\xd8\x1d\"\xcfH\xa6\\\x92lg\x1a\xd7\xce\xc1D*1\xd1\xd2r>J3\x92\xc7c\xa6U#\xd3N\xa6\x0ea!\x07\xd5yL6E'\x1cy\xda\xb2\x9c\xc1\xdf-\"\xfc\x90\x8e\x9e\xd0\x97\x03\x12WH\xc1\x95E\xc7-\xdd\xe0\xa8\x96\x84x\x0d\x1ay\xa6\x1e\xdf\x1eT\xa2\xc0w\"\x0cr\xc7\xe1_\x9f(M\xb0\xd8\x9b\x90'\xfd\xa3\xfd)/\xff;`\x95jP\x10\x97\xa4a\xf3\xf0\xb5\x14^\xb8\xa4+n\xba\xc7f\xc2%W\xbc\xf5\x91\xe9\xaa]\xf2\xf5v]|c\x17\xc1\x9b\x8a\xd6w\xbd\xe3\x91\xb0k\xd3\xb8\x15i\x8c\xf1C\xdf\x86\xab\x10Q\x9d%\xdb/\xe4]r\xdd,\xb7\x15\x15c\xec\xd2\x07\xf9o\xe9\x14\xf0m(l\xe4IV\x13\xe3EA.\xc9\x1d\xe8\xf4\x99i9\xd9h;\xd1\x19\xd9&\xb8U\x84j\x01\x1bc\x94|\xf6\xedk\xe2\xdd\xdb\xc4Sq\xe9x'O\xd8\xd1\x169\xe7N\x9e\xb8\xabs\x04\xe5\xf4}\x9d+?,#\x1dr\xae\xfd\xf5$\x8c=\x199\"%{\xba3\x05\x888\x1f\xecYL\xfaJ\x10\x83\xaaW\x0f\x19oL\xf5\x9aRc}E\xcc\xa8!#j\x8ct\x9a\x01\xd5\xbf\xf5f6\x9e\x8e7\x9d\xfe\x95\x0d\xa7\xe9\xdb\xef\xaf/\xce\x9d\x0f\xefS\xbc/\xf2\x95D\xf5r\xe8!\xd3\xd7\x02`\x9c\xed\xd6\xa8\xeb\xd9\xa7\xbb[,9f\x8c{\xa8\xc7 \xb5%\xcbeGNXW\xae\x8e\xc5F.\x92\x0e\x82\x8e\xf3\\\xcd\xf3\x8e\nF\xfc\"\xfdh\xa2OV\xd1\x88o\x15\xc8\xd1D\x7f4\xd1\x1fM\xf4f\x8b\xcf\xefx\x95\x10!v4\xd1\x1fM\xf4G\x13=\x89+\x9b$`\x1e\x1d\xaftZ\x84\x8e&\xfa\xa1\x1dM\xf4\xffF&z\xe7\x12\x93d\x93\xcf\xbb(\x053\x05\x18\xdc q\xfd\x1d\x955$\xd9_VVh\xbf\x16\xb9\xed\xef\xbc\xdf%\xdf\xccR\x8c\xbd\x83\xe5\x1f\xaf\x88}\"-\xe1*\x0ftS\xe9\xa9\xa6eVi\xf6\xb3\x18\x10S\xc9\xc4\xdb\xecf&\xecD\x8b\xa6\xee\xd9\xf6\x17\xf47m\xb3\xe0\xc5\xbe\xcdrt(\x87vE\x94\x84J(\xf1\n(\xb1\xca'\xb1\x8a'\xd1J'\xc1\n'\xd1\xca&\x91\x8a&\xf1J&\xf1\n&\x91\xca%\xa9\x15K\xfc\x12tJ\x85\x12\xbc\x1e\xc9\xecuH\xf6U\x7fd\xce\xba#\x07\xaf7\xb2\xd7:#{\xae/\xf2$uE\x9eW=\x91'\xac#r\x98\xfa!\xd2Dd\x1fl\xf6M@\x1cN\xca\xa2\xa5\xa6\xf8\xef\x1d\xaf\xce\\\xf4\xdb\x96\xab\x08\x92\xe0\xdf\xb4\xb7.\xa0\x00\x89\x94!\xe2td\xbb\xf0\xbc\xac\xd9\x17\xcb\x19\xe4\xc7\x9e\xeb\xee\xd5\xaa\xf1\x86N\xf2\xeb\xdd\xc6\xb0\xb3j\xe7\x9e~\xe6E\xce\xbb\xf0Y\x17:\xe7Bg\\\xf0|\xf3\x9em\xc1s-p\xa6\x85\xcf\xb3\xf0Y\x168\xc7R\xce0\xfc\xfc\x9a\xf7\xec\x9a\xf5\xdc\xda\xc7\x995\xd7yu\xd0\xb3jo\xe7\xd4\x1e\xcf\xa8\x83\x9fO\xcf\xe7lz\xa2s\xe9\x10g\x9283&\x94\xac\x12\x05\xaa|\xa7\x05\xdc\x96\xf6s\xf3\xeb\xed\xaa<\xd6*\xf2\xfd\xa0\xaev\xe2\xe2&\x88\xccQ\x90\x07\x08\xea\xf7\xc0\xf4rF\x86\x81\x02\xea\xef\xa0\x9eA\xd9\xc9I?\xd4\xe6\xe15\x8ed\xc1#>f\x8d\x96\x1a\xfd\xa2Y\xaf\x9b\xda\xa8\x15\x0c6\x82\x11\x0c\xc2\x8b\xf0i\xcb\x8e\xad\xea\xa5j_\xb3%\x05{\xd9 \xbc\xf6\x9d\xb8M\x1b\x03\xe6c8W\xccB\xfd\xae\xa2cr\xb9y\x10\xf3is\"6\xd3PYK7\xce\xc9\x8f\x1fJ\xdfW;Y\xfc\x9e}\x0d\x82\xb6xDP\x93\xaeQ\xabT\x9ag#s\x93\xcb\xff\x95<\x84\xee`I\xdco/\xacFI\xb6(\xa3\x83L\xb7\xfdA\xf2\x0c>7\xdf\xfb_\xd2\x9f\xee\xdfS\xe9F\xce\x9c]\x05\xe5\xcf\x927\xd2Ha\xcd^;\x17\xc2\xa5\xa4\xedp\xc0\x80\x089#\xe4\x0f\xa3\xdc4\x08$\xcd\xa2\xa8\xd1\xe2\xe0\x903B.\xaa\xae!\xbc.7)\xd8\"\xbcc2Q\xab\xe8\xdc\xd1\xae+\x9b:\x96\xd0*\\\xc4\xce\x94%K\xb9g\x05me\xe7\xec-q)\x8b\xe6\x1b\xc5\xea\xcd\xaa\x94\xfc\xb4Z\x95UO[\xba$\x0f\x8f\x9b\x96\xae\xcaoL3m\x99\xfe/\x8f\x9f\x8d\xae\x0c\xf8\x18\xdb\x98B>Q\xc63\xdd\xe7\x1b]l\xc1O\xa3\xefL\xbdD\x9d\xfb]\xbaE23>\xca\x1c@\xcc,J\x0bq\x14\x97\xd4\x1eS\x15\x18\xe2|\x17)=8\x92eN\x85\x86D\x94\x1a\x82(6d\x0c\xd3\xd3\x94\x1c\x8b\x98\xf8\xdc\xd3\x14\x1d\"\n\xa4\xda\x1fw\x12\x0c-9\xea\xdf]\xd7\xc0$Y\xd2\xfb=\x9b\x0f\xe1\xd3\x82\xc3\x80\x7f\x88UY?\x90\xdbb\xf1\xc0}\xd0\xec\xda\xc0\x0e^nA\xe0sez\xc4\x91J\x9cQ.\x02\xa0%\xdf\x07\x95[\x9b\x13\x9a\xfb]\x05\xf9\xf2m\"\x12\xf8\xdc\xa2\x05<\x1dZ(\xa7\xbd[8u\xf8C\x98\xddU\xdb\xac\xf9\xfe\xe0\xe5BW\x05\x8f\xd8h\xb7\x0bnO\xe4\x82u]\xb4\xdd\xbd0(\xca\xd6\xf5E\xbfu\x00h\xfe\x19\xb8T\x96\x8br\xa5\xd5}\xe5\xdb^.\x8f\xec^\xadR\xd3\x92\x7f\xb1\x13\xb3p\xc8\xc1\xed\x95M\xa9\xac$\x9c>n\xdb\x03\x07\xed\x05\xf9\xf4\xf6\xcd\x87O\xbf\xdd\\\xbe\xff\xf8\xf9\xfa\xe6\xea\xfa\xe2\xfa\xf3U\xb0\xaa=\xfe\xc6\xc7O\x1f>~\xb8J~\x1c~s>3a\xe9\xcbc)\x06\x12\x89\x0e\xd1\x9d\x95\xc8\x0b\x9aA\x8a\x97w\xe5\xe6\x85\xf3m\xcd\xd5\x16\x87\x18\xac8[\x19\xe7O\x91\xc9\xc4gB\xfe\xd56\x8bi;\xab&E{[\xf6m\xd1\xee\x86o\x8d\xbb\xa7\x95\xd0\x85M\x94\xca\x11\xfc\x86\xf3\x03\xbf\xe1\xdc\x94\xb0\xcd\x8d\x93c\xd3\xd2\xc7\xb2\xd9v\xd5\xce\xfd\x00\x06c\x94\xc6\x99\xf8\xbc\xae\xdbb\xf1\x00j2\x9c\x11J \xa2R\xa2\xe1j\x0c\xbc\xae\xbf\xe3\x1c\xc1\x8c\xb1\xc5}I\x1f\xc1\xe4\x03\xd5\xb9\x19C.AQ\xb9{\xbf\x07\xd4l\"\xf8\xbf\x84\xf8\xe5'\x12\xdb\x00bhj\x1f\xc0\xbf\xcf\x07MP*\\\x0e)\xa7\x84z\xbe8\xbc\xe2\xcf[\xf8\x01M]u\xb5\xa4Rr\x88|V|\xbf\x95\xf5\x1d\xe9\xb6\x0bF\xe8tU\x94\xd5\xb6\xa5\xa7L\x82n\x00\xc7\x95>\x87~\xf9x\xf5\xf9\xf7\x041\xe4>\xfb\xf1\xe2\xea*\xfa\xd0\xd5\x7f_~\x8c>\xf4\xee\xe2\xf2w\xbf\xb0L\xe3/ELz(\x05:\x19>{\x87`Q\x93m\xdd\xd1\x1e\x87\x01\xe0\x9d\xb2)\xb3{c\xbf\x19\xd2\x85j;\x86#\x8d`\xf9W\xdb*\xde\x01\x9bn\xbb\x03\xf6\x9b\xd6\x81b\x97\xa9\xaa]\xb9\x94\xea-\xef\xea\xa1\xdcl\xe8\x92,\x01\xc7\xba.;\x0e\x1f\x16\xb2\xa5i\xc9\x92V\xc5\x8e.\x07\x0e\xe3,\xb1\xc5\xb5Yb\xbfy\xc7,>\x1f\x1f\x9f\xec+\xa0\xcb3W\x80\x82\n\xf5\x01\x04\x00\xad\x17\xc5\xa6\xdbV\x8a\xbe\x94y+($\xcf\xbfL%\x9f-\xef-\xfe\x8d\x03\x85\x93\xee;\xcd\x9a\xc1\x01e\xcdJr/`\xee\x92~\x03\xb8\"Pk\xdc\x0b\x9e\x9c\x00\x81\xd8\xb4%q\xa7Wp\x1fi\x10\xf0\x7f\x156u9\xa8\xc1\\ \xb4k\xe3A\xd3f\xa0\xaf\x01f=\x80E\xb2\xe7\xf2B\xd9\x16\x9a\x15?\x19\xf9\x84\x16}_,\xee\xe1\xc0+\x94\xa9\xa2i!\xba\xce\xdc\x02\x86\xc8\xe4\x9an\x8a?\x1b\xf6\xc7\xe5\xf2\xb2^5\xc9\xa6#\xe4&3r\xf6\x15%\xb5}\x8a\xaf\xfc\xf1\xce\x9ap'8H\xbcw\x03\xc6\x96\xf9\x18\xb9\x91\xd6\x1ba>\x85\x7fm\x9aV\xff\x0c\xd5\xd3.?CX\xd5\x8c<\x0dD%_\xda/\xe9\xbc\x81\xfew\x93`\xf9\xcbaN\xa3*\xb9\x13\xb7\x15\xfeS\"{l\x81#La\xfd\xb3\xd7d\xaf\xb7tq\xff\xe3\x0f\xe2-\xf2H\xdb.\xd4\xafLF}S\xaa\xad\xeftb\n\x07\xfd\x05R\x9a\xfe\x97\xe2\xb6\xd9\xf6\xc3\xca0\x89\xa1T`\x04|\xeep\x93ey\xcb\xca\xa3\x9d\n\xa2\x96D\xbd_\"\x0c\xcc\xfa\x10\x89>1\xf6\xb7H\xe6\xe3*\xe9\xb3\x94\x0f\xa3\xcca\x1f&\x99\x91\xc1\x9co\xd4\xcf\xa8\xf9\x19\x90\x10\x7f\x08\x1b\xc9_\x83\x9f\x81\x8c B\x18\xd0\x87\xcf\xff\xff\x9e~\x93,X]k\x13\x86\xf8K\xf4si\xf0x>\x16-\xbbE\xf2/\x8f\xb4\xf4\xaehy\xdc\x862z\x95q\xff\xc8%S\xdb\x92O\xba\x04Q9\xa7\xa1p\xd2\xc1:\x97Ap\x0el@\xd4\xd6gw\x8aX\xf5B=\xe7Z\xf2\xecK+\xa6\xcaN\xb3\xdb\x81B\xab\x91C-v\xe8\x98\\\x9c|\xba1,\xd92\x97d\x93\xcb\xb6\xc6\xf9O\xcb\xe8 \xd2;!A\xdb\x9b\xc7\xd6\xf6\x9c\xacl\xcf\xca\xbe6\xda\xb2\x16\x17\xabW\xdaW\xe6\xect\x13\x19\x9b\xb6\xf6I\xbb;\xba\xb3\xb3v5\xbe\xa3\xa3\x0c\xa7\x11\xcf\xde\xc9\xcfe\x17?\xc7\x1d|!\xc3\xb2\xd8\x84\x01\xceT\xdad\xea\xe1\xd8S\xf7\xe9\xd8\x0e\x06\x1bI\xb2f\x90~J\x8e7\xc7Z\xa6\x8f\x843l\x82\xb1U3\xaej\x04S\xcc\xac\xc9\x87Z\xdch\x191\xa7F\x0c\xa9A\x13j\x86\xf14|\xaaM1\x98\x12\x03\xa1\x140\x95\xee\xd1H\xfa\xac\xcc\xa3\x874\x8c\xcej\x12\x0d\xca\x92\xab\x0d]\x8c\xb3\xa9\xb1\xdb\xc0H\xfd\x1f3\x8f\x08r1\xeb\x9ai\xce\xc4mm\x82\xd4\xcc\x067\x93j\x92\xd5M\xbc\xe2aO\x9a<\xe1\x87Y\xecp\x86\x04\x88v'\xc7\x80\xfce\x18\x8fF0ydsZ\xefBC\xca\xb2\xe7y\xc9`\x83\x18i\xe3S\xef&\x996p6\xcc\xd5\xc8\xb0\xfa\xa1/\xfa\xad\x7f\n\xe9\xc4\x1e'\xe5\xd2\x98\x1f\xcb\x1e\xe8a5\xcb\x14h\xb3\x97h\xbaI\xb3m9\x1eC\xbb7\xaf\\1\xa6AI\x16\x8b\x1abJtf{\x0f&\xc5\xe8\xa8R\x84Q\x84DpL!\x11E\x0e1\xbe\x1c\xa1e\xd1\xb2Dr\xfa\xb8\xc7\x1a6#\xa3I\x15\x0b\xa3\xd7+cyr\xf8\x8e\x1bJ\xf3\x17\x111\xa3*.l\xbd$\xdd\xa6\x8a}\xc1 v\xd6+\xfd\xb5d-\xa8\x9b\xc1\xbd+\xd4<\x01<\xc7\xa0\xeaF/\xb6\x9f;\xe1|\x15=pco\xb3\x12s+\xees\"\x17\x0c\xf8}E\xda$\xa4\xd3\xd2p\x16?C\xfc\xab\x18#?\xf2\xd5\xc4\xb9\xf0C\xc4n\x9bJ\xba\x18^\xe6p\xe8rQT\xd5\x0e\xd4\xee\xbeQ\x18d\x8e \xbe\xb1!\xcfG8m\xd4\xc4\xee\xd0B8\xc5;\x06c\x9e\xb1_eH\x11`\xc3O\x87\xa5;%E\xbd$]\xb3m\x17tPq\x0cr'\xb4\xe4\xa14\x00]P\xe1\x08\xdf\xb1\xeb\"\xd0\x05c\x18\xdb[\xc6\x8b*v\xc9\xfe\xf2\x0c~\x95\x1dH\\9\xf9w(\xc3O\xba\xa2/;\xf6\xf9\x03\x86b\xb3\xa9v6\xd2\x0d\x91W|L\x02\xbaQ\x88\x07\xc4\x1b\xc8\x86\x0f\xc9\x08\x8bS\xf6\xe8\xf0Mqk\x10j\x92\x91\xc6+\xfd\xb3\xe0\x1f\x82\x99\xfeq\xf8RT\x9a\x1f\x0e\xbf\xb9\xe1,\x05y\xb9\x16\xa1\xc9\"\xa9\x9der\xb2\xa4\xd5\x89\x9cNa\xd53\x98\x10\xd6\xbf\xdf/\xaf\xae\xbf\x0b\xcf\x89k\x13\xfa\xed\xed\xbb\xcb\xf7\x97\xd7\x97\x1f\xde\xe3A\xfe\xbe\xe7P\x07\x87\xfd\x90\xe5\xdc\xf0?\xc2yW\xcf)CQ\ns!SQ\xe0\xfd q\x14_\xc7\x91u\xdcL|.\xcc\xc6\xe0g\xd4?\x18\xff<\xb9\xfd!V\xe2b\xf0\xa8\x0d\xf9\xbb\xd8\xbfx\x02\xb3\x13%\x0b\xf9\x07Vv\xa4nz\xd2\xd4/\x8c4S\x1e>\xa4\xa5\x18\xff\xdd2\xee<\x1a\x01d\x8e\xa5\xd8\x92\xc8)\x1d\xf3\x05\xf6\xf5\xce\xff\x88\xb3P\xec0\x06\x16MU\xd1\x85T\x83\xf9\xa3C\\9\xb9/\x1eM\x01\xcf\xe8u\xec\x93\xd7\"\xdaD\xcc_y[\xd1\x1b\x11[>\xea\xf4wN\x13\x17\xd1\x1a\xc9B\x82<\x84\xe6\xdd\"\xc1\x8c$\xc8\x13H\xee-\x12\xceN\x82\x00x\xf1@\x84ry>XT,r\xbd'\xf2\xe7\xcc\\\x9d|\x93\xa9\xc9g\xe6]9hI\x8a\x9f\xf4f\xdf$'\xe2 \xa1\x86\xc4&\xb8\x9d\xa0\xd1 \xe4\xa0\xe3\x1c\x11\xab\xe0\x12\x89\x8c2\x06\x88'\x87\x1d\xf1\x84\xe8\x05\xe2F0d\xcd\x04\x1a\x82%\xdb\x01\xa7`l\x88\x16N.4h7l\x83\xc4\x86\x9a7\x9a\x91\x01\x1c6\x19w\x14N\xc0\x84+tI\x12\xb7(!\x92\x16\x01\x86\x90\xc32CE\x86\x12qt\x84\xdd\x1c6\xfb\xf8}:j\xfe\x8e\xda\xf9\xe3\x13I\xc6D\x90y\xe8t\xb8K\xdb}\xd0Y=\x9f\xcc&O8\x0b#\xa58F*i\x0eR$:y\xca\xf9\xf0\xca\xf8$\x02X\xca\xad\xfcy\xc2E\x1fI\x99\x961\xa3\x9e \x08]b)\xe3\x9b\xb0\xecc\xc6\x97\x1d\xf1\x86\x93 D\xbe\x91 g\xc8\xa5\xe2\x9fm\xb1\xd9\xd0vP\xa5\x0b\xd2\x95\xf5]\xe5\x8b\x8b\xafu}\xa2k\xd6\x94\xd0o}[h\xfe{\x91\x86\xa4\x1f\xa2\x9f\x9fW!\x9d.\x88i\xf0\xae{x\xbdm\xa2i\xf832\x13\x06\xcd\xe1\xc0\xf6:\xce\x87E#\xd3\xf1hd^L\x1a\xc9+X\x12^\xc7q\x1852\x1fN\x8d$a\xd5\xc8\xacx5\x82_\xf6\xbc\xb85\xa2\xe67\xbf\xe2\xd4d\x0c\x9bE\xaf\xd7\xaaG\xe9\xcc\xff\xf5\xcbe\x85\xb1m \xf5\xb3\xc4\xeb\xf3\xa3\xdb\xc4\x99\x01s\xeaH\xde\x08\xcawX\x89\xfd\xcbl\xafj6\x03\xf6,C\xe4\xf8l|\xb3b\xcd,\x9c\x19\x861\xf3\xb9'Q\xd7d\xe0\xba\x15\xbal\xf9\xc0]\x11}*\x03G\xd6\x870di\xdd\xcc\x80\x1d\x0b\xe2\xc6\"\\Dn\x0c\xf3\x86a\x93\x00\xe8+m\xb6<\xcam\x9f\x0d\xf4\xf2\x87e\x13?l\xcd\xcf\xc4l\xe0\xae\x99\x80]8\xa8\xcb\xc7\xff\x1c`\xae| \x97\xe7\xe3\xc9\x16]s\x02\xb7\"\xa0-/`\xcb\xc7\xdb\x14\xa0\x16q\xfc\xb7^\x90\x96w\xce0\xc4F\x0e0+\x19\x94\x95\x08\xc8J\x07ce\x03\xb1\xc2\xea\xd2l\x00\xac|\xf0\xd5s\x02^=)\xe8\xea\xd9\x02\xaez\x0f\xd8*\n\xb4\x1a\xa1\xc5\xa0'\x9c\xaf\xf0Q\"\xf2&\x15P\x95\x06\xa6J\x03R%\x82\xa8\x12\x00T\x89\xe0\xa9$\xe0T*h*\x150\x95\x04\x96\xca\x03J\xc5\x8cu\xb3\x02\xa4\x82u\x9f\xd0M3\x15\x18\xb5_P\xd4\xfc\x80\xa8'\x02C\x1d\x00\x08u\x10\x10\xd4\x13\x02\xa0\x9e#\xf8\xe9\xc9\x81O\x87\x05=\xcd\x1c\x8e\xae\x91\xccG0a*\xf8x\xe4\x92\x13\x9aN\x92\xc2\xd3\xa1\xcd\x8cX\n\xa2\x95\xfc\xc7\xc9T\x94\x12\xc1\xf2\xc9\xfa\x10J\x19\x06\xb4\x10*)\xdf|\x96\x83\xd4\xf2z\xb7\xc7\x19\xa5\x13\xd0G\x13\xc7\x93\x0f.\n@\x17\xa2\xb8\x9dYY\x8f\x81\xe6\xfc\xdeH\xf7/\x16\xa5\xb1#\xf6\xc2\x85\xf6<\xd4)\xf0\xa0\xb4\xc1\xcd\x96\xcdu\x06(\x90\x9fc\xc7s\x9c\x8b\xbbD \x904\xe8\x0fq\xb6Q\x1e\xec\xc7k\x83\xf6[\xa0mv\xdd\x1b^\xd0\xe89\x11\xa3f\xf7\xee\x15~\x1e\xcf\x1fI\x85\xf58\xab\xf2\x140L\x0f\x13AY\x99@&:\xd6\x98\x14%\x87\x1e\xf7\x04\xb9J\xf2\x12J\xbb\xdd\xef\x05\x9d\xe8v1B(\xb9\x84bc\x19\xb1\x94\xb9c\x19\x05\xc1IX\xf0L\x07n>\xec\x86\x83m\x04\xc1\x10\xe4&\xdd\x8d\xdb]TUn\xc2\xa6c.\x9b\\\x9f\x7f(\x97\x0d!\x9b\x82\x1bu\x0c\xbf\xb8\xc1\xcb\xf0\x80\xbaD5\xfcOE\xa5\xffM\xf9\x9e:\xe9\xfd\x97,\x8c\xba.<\xd0]\xa2j\x93\xa6\xad\xfd\xaf\xfda>P0\xaa\x08\xb3rK\xfbm[\x83R\xf0\xb1\xb8\xa3\x12\xdfpV\xd3o\xfd\x0d{\xb8o\xc8-\xbds.\xc3_\xb6\xb4\xdd\xc9\xf2\xda\xeca6)\x94\xac\x9b\xae't\xb5*\x17%\xad\xfbjwF>\xd4\xd5\x8e45\xbf\xdf6\xab\x15X\xd4\x18\x1b\x16\xc1\xee\xbe\xd9VK\xee\x83\xa3\xbd.\xad\xe0\xa5\xccY\xd9\x96u\xff\xf3+\xff\xbc8\x02K\xb0\xc6\xa7\xa6\xde\xae\xb9\x1dM\xfc\x06\x16\x9b\xa2f\xbcq\xa3\n\x87\x06\xc0DZT\xb6u\xf1X\x94Uq[Q\x0fl\xa8\xe25\xb1\xe4\x041\xda5\xd9\xf2\xa2E\x0f4{\xb6\xec.\xdc\xc9\xab\xcau\xb9\xf7\xb9\xe3\x9dH\xd9\xde7}Q\xb1)\xbc\x05\x93\x9d\xac\xc9\xce\xf7\x91\xb1\xdf\xe0[a\x7f\xb5\xe8m\xb89\xc0\x9e\xbe\x15\xa9\xe8\xaa't\xbd\xe9w\xa4\x14\x80\x0da\x8d\x06g\x08li\xe8\x88\xcd\xdc\xed\x0ej\x95\x17\x9b\x8d\xa9\x99o\xeb\xfe\x86\xf3\x89\xcdL>:I#\xc8f\x81\xef\x99\x86\xf4\xed\x96\x12\xcb\x00W\xf4\xda\xa8\xf9\x83b!M\x82B\xa29`B\xe8I\xaa+\xf6Ls?\x0cQ\x1b\x90\xcb#MR9\x9f\xf0\xe7K\x17\xdbf\x0d\xa5\xa9+\xb0G\xd1\x85\xc2\xc4\x0c_\n\xfb\x18\xceL8\x9cEN~)v70K\xe6\x05\x8f\xa94\xe8U5\x7fA\x041{1\xcaa7\x16-\xc5w\xa4E\x89\xf5\x03\x15\xe7H\xd3.i{\xf67{(We\xbd\xa0\xaf\xc9\xa2\xe9\xd6M\xf7\xa2[>\x90\x97g\xaf~T\x0f C\x9d!\x87A\xd0\x0eI\xd28\x1ft}K\x97K\xe0\xe3\xee\xd3\xc77\xea$\x13\xf618_\x94\xe4\xd0\xc8\x0dk|F\xde\x8a\x9bH\xb2>\xa4\xe9\"dB\xc26Ff4\xac\x0dx\x98!q\xdb\xb8<\xd6\xc9U,:\x1cN\x17\xa4\x15\xa2G\xa2\x00;hA=<\x15\xd54\x05r\x07m\x1a\xf4\xcb\x03f\x9a\x00\xc5C\xe9\x99\xb5M\xb4\xdf=\xa9\xdf\xfcnm\xf1\x9e/{Hp\xc5\xa1\xc5R\xc0\x85\x93\xc0E'V<\x94\x0e\xe0\x13/\xc4R\xc1\xe5u<\x03\xa4\x0fZ\x10\xd8\x07-\x89\xafhX\x10\x89nJ\xf1L.\x0e0@+\x98\x1a.\x9c\x1c.q\xd8\xa9#\xcaC\x0e\x06\x88\xa5$\x89\x8b\xb35\x1b\x96\x10\xdaL\x88Bh\xfedq\xb1q\xcd\x811\x84\x96\x8f4\x84\x16\xfc\xca'I\xec \x08D\x94^\x11\xc3!B\x0b\xa6\x8f\x8b\xf1<\x05\x99\x88\x12\x8c%\x91\x8b\xceq(\xbbT:>\xcf\xf7F \x99\\2z1\xfc0\x9ePn\x04\x92Q\xbe\x16\xb3&\xce\x88j\x84\x96\x8fm\x84\xf6\x9c\x10\x8e>\x8e\x0e\x88s\x0c\xb3\xf0\xe4hGh} \xc1\\\x02\xf2Q\x10\x99\xa6(\x06\xceo\xbf0\xc8\xc0E\"\x8fG\xd2\xcd\xa5b$\x91g\x83)\xe7\x92\xf1\x92\xc8\xc3\xfe\xb4s\xc9\xd8I\xe4\xe1P\xea\xb9t\x1c%\xf2t$\xfd\\\"\xa6\x12Z\x1e\xb2R\xbe\x13\x97\x9bcQ\x96\x1eb\x1c{\x19\xc2ZB\xdb\x13\xe2\x12!>;\xee\x12\xe9c\x16\xf4%B\xf7p\x18L\xa4\xf3\xfd 1\x91\x8e\xf6\x85\xc7D\xba:,*\x13a\xe0\x99`3\x11\xce\x9e\x02\xa1\x89\xb0\xb1w\x9c&\xb4\xd8\xc5s$\x8c\xd3C\x0d\x03wB\x1b\x0d\xf14^G\x861\x1e\xee\xe9\x90\x1a\x97\xaanv\xe8'\xb4 \x00\x14\xe9\x17\x99\x9a\xa9`P\x87`\x9f\x94\xb4n\xb4\x118\x04\x12\x856\xcd\x04\x1c\x9b/2+x\x14\x9a7-R\x02\x90\x14\xda\xa1\xc7<\x12E\x15\x02\x01\xa2\xdd\xa4@o\x9e`\xf4\x13\xb1T\x19HU\xb4\xfb`z\xbb'\x98\x8e)8V\x8c`x\x02|\xf9\x9e\"\xc3\xce\x1d\xd7\x04@Y|< \x88Wh)\\OA\xbf\xa2\x04G\xa5\xbe\x8b:yb.\x9e8*\x16Z\xd4D\x10\xdd\xe2$qb\xc9LhYh]\nf\x16Z2r\x16\xda\xd3\xce\xc8\xe8\xb3\x00#\x968\x1fi\xe7\x02y\xfa\xb9\xf1\x9e\x14\x89$\xc6\xa6\xc8KC\xe0BK\x98\xa2q\xe3\x9f$B]ri#\x9d\xb8\x19\xc6\x8dt\x14b\x17#\x14I\x9b\x17\xe6o2\x86\xd7\xa0&\xf1\xbc\xd1\xe4y\x16S(\xdaD\xdd\x1c\xbfr\x86\x96h\xf7J\x1a>\xb7t|\xc7,c6\xf3S\x11\xc7\x169'\xcb\x184\x0cyL\xf6\x88>&!-\xc6\xaf\xbf8Hd\x12\x935\x13\x83;\xc6#\x93\x11b\xd3\xe0\xc98wX?^\xd42\xf1 \x97I\xea,\"(\\\x924\x8f\xf3 \x99I\x04\xcdL\xe6F4\x13/\xaa\x99\xa0\xc8f\x82\xa3\x9b\xc9\xde\xe7w<\xda\x19!&\x00 (\xe2\x99LB=#\xc4,\x1c4 a\xa1IP\x8e\x92\xa4\x99\x9a\x80\x8b\xf6\x7fj\x1el4\x99\x8a\x8fF\xe8\x955\x8a\x91&\x13p\xd2X/\"\x91\xa8\x0f+MP\xbc4\xf1a\xa6\xc9\x0c\x0b7\x1f~\x9a$a\xa8I\x1cGM\x02\xb6\xf0\xf1xj\x8b\xd0\x80\xae\xb6\xfe\x80A\xac\xf3b\x88\x94\xdb\x8e_'uT\xfe`\xce\xe0\xfb\x96k\x14\xb6\xc2\x93\xa1\xd6\xc9\xe3\x11S\x89\xe6\x0b#R\x87\xb0\x90\x83\xea<&\x9b\xa2\x13\xce-mY\xce\xe0\xef\x16\x11~HGO\xe8\xcb\x01\x10,\xa4 RR\xa6\x057N\xdd\x90u\xd3\"z1!\xdex\x8f\xbcH\x18\xdf\x1eT\xa2\xc0w\"\x0cr\xc7\xe1_\x9f(M\xb0\xd8\x9b\xf0k\xc1?\xc7SR\xf6\x9d\x86\x1d\xaaAA\\\x92\x86\xcd\xc3\xd7Rx\xa1\xf0\xaf<\x82\xbe'S\xd2\xdaN\x8b\x01x\xd7\xb4o\xc4%\x11\xab&\x0f+\xe7|\x07\x91\x9c\xb7\x86\xc5\x0d]n\xbf0\xb4 \xa5e\x16\x9f#\xab\xb8y}\xd5\xfe0_6\xf1\x89\x99\xc4g\xcc\"~\x0cl\xcd\xbdf\x86\x02[\xd3\xbf\xfa\xc8\xf7F\x90` AM\x8a\x83\xa8<\xf0u\xb1\x0f!q\x8c\x1e:F\x0f\x1d\xa3\x87\xf4\x96`\x17>F\x0f9-\xc1o\x12\xdb\x94\xe2\x99c\xf4\xd01z\xe8\x18=d\xb7c\xf4\xd01z\xe8\x18=t\x8c\x1eJb\xe1\x18=\x14\x17\x05\xc7\xe8!;~!\xe5\xc1c\xf4\x10I\x94\x9b\xc7\xe8\xa1c\xf4\x10\xda\xf91z\xe8\x18=t\x8c\x1e:F\x0f\x1d\xa3\x87\x8e\xd1C\xe4\x18=4\x1a1\x1e\x8bA\x88\x86\xe9<\x8b\xd1\xfb\xa1\xc3\xee_Pz\xc7\xe8\xa1\x10\xc1c\xf4\x90j)\\\xa3\xc4\xc81zh/\xf1 ^i\x1f\xd1z\x8e\xd1CI\xc4\x12\xe7#\xed\\ O?7\xde\x93\"\x91\xc41z(w\xa4\x137\xc3\xb8\x91\x1e\xa3\x87\xed\x1b\x9d<)\xa9\xec\x8b\x0b-\xfaM\x9c\x07_\x8b\xc1\x0b \xb0<\x06f\xc65&s\xdd`UV=m\xe9\x92<<\xca\x1bJ\xcf\xce\x95\xa6\xd5\x8d\xef\x9b\xb6Y\xd0\xce\xba\x92\xfa\x18\x15\x0fKm\xca\xb8`K\x0ea\xea\xab\x9dT\x98v\xdcD\xff\x8d.\xb6\x8e\x86El\xc4\x95{\xfe\xe1\xb6n\xefM\xdb\x7f\xc7\x16\x02\xda\xd5\x8c\x83:\xb1\x98\x88\xde\x86\xf7Y\x9e\x15>v\xb5'\xc5,Y\xc4p\xdc^j\xef8\x14O,\x07\x82b\xc5mc)\xbd\xa1:?\xe0\xeb\x10\xf5\x93*&N\xfa\x01{\xc7QZ\x02\xce\x89P\xb3fo\xd1\xac\xd7M\x8db\xb9@\x98\xcd8\x10 \x08\x07\x84\xc4\x9bZ\xc8\x11y\xb0\x13\xb6\x95$\xcc\x8b\xbf\x869\xad\x84\x88\x11\xc8\xb4s5(\xf5\xe5\x96\xf5c\xf3`\xac\x0f\x86/\xf6\x01F\x02\xe5\xf6\xb3]\x07#\xed\xa5\xc6\xe1\xc71\xd8\x02\x8c\x04g)\xff\xe8\xab\xb2~ \xb7\xc5\xe2\x81\x87\x0f\xdeS\xf0.q\xa7?\x9fO\xafEs\x1f\x06m\xdfGk\xa1\x93\x1cL\xae\x1f\x9d\xea\xc3\xdcF\xf8\x0c\xfb\x15\xfd\x9f\xb5\x0fa\xabp\xb4(=/\xf7\xfdt|'\x8f\x98Q`\xb4\x15\xbf+\xf5\xedv\xd1o!4t[\xaf\x8b\xb6\xbb/*\x87D\xd7\x17\xfd\x16\xc7H\x05g\xe7R\x01\x0b\xca\x95\x06T\xe7\x9f\x94\\J\xc9\x8aZ\xd1\xa6%\xff\xdav\xb8 \xb2\x10\x0eaa\x99\xf7\xc1\xde#\xf3\x11\xc2b\n\xa4\xda\xe5\xfb\x8f\x9f\xafo\xae\xae/\xae?_EA9\xf8[\x11L&\xf6\x8a\x17\x97\xa9\xa0B\xf9\xec\xa5\xd8\x82\xa2\xc3\xc6g+\xf2\x92\x89\xb8\x14H\xcbs\x81\xbcD \xc2\xee\xd0\xb4i\xab\x85'\x1a\x9f\x1d\x04\x92i\xef\xc4\x9a\x14\xedm\xd9\xb7E\xbb\x1b\xbe[\x0esV\x07\x00l\xb8\x1c\xae$$\xd3\xff7\x9c\xa3\xb2sq\x90\x9b\x96>\x96\xcd\xb6\xe3!\xeb\xd6G3\xe0E,\xee$\x10\xa1-\x16\x0fp_\x11\xe0t\xa9\xe4Q)5\xfd*\x1a\x90\xd0\xdfsT\x06\xc6\xe0\xe2\xbe\xa4\x8fp\x9b\x04\xe0\x00c\x0c'*\x80\x05\x87?8\xf7\"\xfe\xffK\x88~~Z\xb2\x0d#\x86\xaf\xf6\x0d\xfc\xfb|\xd0\x86\xa5\x82\x89\x92C\x96\x80L\x10\xbfW\xfc=\xc9\x9f\\0\xa5\xc6\xe3\x86H\xe0\xd8\xf3y\xf2\xfdZ\xd6w\xa4\xdb.\x18\xb1\xd3UQV\xdb\x96\x9er4?\xa4\x0c\xc8\x9f\xe3\xb0<\xbe\xfa\xfc{\xa2\xa8s\x9f\xffxq\x85\x83@\xed\x07\xaf\xfe\xfb\xf2c\xd2\x83\xef..\x7f\x0f\x0b\xe8t~SE\xb3\x87b^g\x0e\x00\xbe\xa3\\}\x0f\xa1:\xb1\xe9\xb4{e\xbfY\x98\xeea\x87\xf1\x00x\xd8*\xab\xad\xabW\xa0\x9d\xb0\xa5\xb0;a\xbfi\x9d(\xb6\x99\xaa\xde\x95K\xa9\xe2\xf3\xee\x1eJn\x85_B\x8a\x95u\xd9\xf1\xcc6B\x865-Y\xd2\xaa\xd8\xd1\xa5\xf7:\xeba\x8b-\xbc\xcd\x16\xfb\xcd;\xf6\xc1\xd1\x85\xf2\xca\xbe\x1c\xea8\x83b\xf0\xaf\x0f _h\xbd(6\xdd\xb6R\xddJ\xb1\xbb\x82x\x03\xfe\xa1\xab\xa3\x02\x19\xa2{`\xf8z\x06\xca'\xddw\x9a\xd5\x8b\xa7GhVr\xb0\"i\x93\xec\xb7\x01_;\xd7\xd4\\\x01\xcd\x1f\x91s&\x1c\xf3\xd8A1\xd2\xe8\x9d\x96\x1d#n\x0d\x17\x83\x1d\xac:\xa8\xc5X\xcay\x8b\x9a\xdf\xd0\xa3\xd9\xff\x91\xf9\xbeP\xe6\xa0f\xc5\x0fx>\xe9E\xdf\x17\x8b{\x11=\xa6\xacKM\x0b\xa5R\x8d]\xa5\xd1\x12;\x82+\xfd\x08\x9c\xd1ri\xf0^=\x18>\x0b\xb5\xa7.}\x96\xe1:\xea?\x1b\x83\xcc#v\x84\xbf5\x89\xe9\x06L\xcf]u\xe2FRTc\x00:\x04*1L\x0b\x86\x8c\x98\x8b\xb1\x14d\xc3\xf04\xce\x1f\xb7\xb4\"N\xe9\xd9x\x1c:\x90|j\xbf\xe4\xf1\xea\xc5\x95\xcd\xc6l\x16R,\xc8\xae\x0bh\xf02\x89\xf1\x92\nM\xc0y\x80\x19F\xfdO\x11Y\xa9\xbf\xe8\x87h\xf1\xc7P\x18\x96E\x0f\xe5n\x94}Xr\x96ikLO\x83(;\xf0~\xed0h\x0f.JM\x9c\x0f 53\x97I\x9f\xbe|\xd8\xcb\xac\xef\xe3'{`8G\x0e\x84\x19\xc7\xb1BA~\x11\x96\x92\xbf\xb003#&\x0fa&\x8e\xcf\xc1&\xd2:\xb6;\x14\xab\x19=\xbb\xf5\xd7\xa6\x1f\xe0>P}\xfeq\xdea0\xcb\x89\x92\xde\x11xf_\xb1\x93\xde\x0fFBA\xf2\xd6\x04\xefO\x15\xe8\xd2\x91\x8e\xd6+\x01vc\xb0\xb5\x89\xacG\x96b\n\x86}\xec\x88\xf7\xa5_\xc4\x86\x9a\xa5u\x04I\xf9\x067V\x1b r\x9e*A\x939v\xa0\x86\xb9\xea\x0bJ\xc0\xaf\xc6\x18\xb82\xe2l\xa3<\x8c\xf9\x08\x9d\xc6f7\xf3\x1cI?\x84Q\x03\x94\xdd\xbbW\xf8y0^$\x153\xee\xac\xca\x9eu\xa4\xa4\xd1\xa6\xc8\xca\x042\xd1\xb1\xc6\xa4(9\xf4\xb8'\xc8U\xe2\xca\xd6\xbc\xf9\x98\xaa\xb9%\x8cp\xa4Pr \xc5\xc62b)s\xc7\x12\xd7\n\xa3$\x02xm\x83\x1b\x03t6h\x816\x1a; s\x1d\xc4\xb5A\x82\xd3\xbc,\xa2\xc7\xac\x94\xb9\x80\xc9PV\xca\xbcT\xc9S\x0b\x1ed\xe8\xfd{\xcf\x93<\xbe\xa8\x81IgZ=\x03$\xdd\xbe\xb7p\x01V\xb4 :+H\xa2\xe4\xb0\xe4\x99\xa7HA\xa8@\xc1\xac\xc5 \xf0\xc2\x04\xee\xe4!\x05 \xe6\x9f\xbb\xf1\x05\x08\xc4_-zh\xf1\x81\xf1\x85\x07\xec2\x03\xde\x12\x03\xb8\x84\"\xd1\xf1O(+ \x17\xd2$\xe8))0\xa9\x9c\x80\x0b!\xc7J \x8c-# \x8b\x06X\xe4|%\x04\xdc\xf2\x01h\xe9\x80\xb1\x0b2_\xb9\x80e\xb4T@\xa4L\x80\xf0\x83\x19rx|y\x00\xad \xc0@\x0e\xab\x05\x80(6\x9a\xd6\xa1\xae9Z.eu|\xe9\x98\xfe\xdc\x0c\xeaz\xea\xf6d\xd5\x06\xf4\xaa=';\x86Nle\xd5{a\xdd\x0bJ5\x0cg\x19\x17?\x80\x92\x1ab\n\xb2\xa2\x08\xa0\xf9b \xa0E\x86\x98\x06{\xf5\xcc\xc0\xb8\x18\x03\x94\x94\xd0\xd5O\xb6\x1d\xcd\x894\x80\x86\xc6\x1b@\x0b\x0f`l\xec\x01JL\x83Z\x8c\x8b@\x80\x16\xd8\xe2$!\xe2\xdf\x1b\x93\x00-\xb2\x1d\x08\x995>\x01Z(\xbbp\x1e?\xb9\x11\x0b\xd0|_?\xc9\xea\xdf\xb3\x85\xc8\x84H\x06/\xc1\xa6\xcd\x88g\x80\xe6\x8bj\x806\xcb0G\xc59x\xa9\xc9\xf8\x871\xd1\x0e\xd0\xfems\xaa\xc7m.\xb2\xe5\x87N\x04\x88uhP\x054\xe5\x14\x9f8\xb4\x84\xbc\x10)[\xf1\x98\x1d}\x96\xec\xe8\xc0\xfd\x8c\xd9\xf8\xc7\xc7t@\xf3C\x8b\xa1\xa5\xcc\xe3\x98(\x8f\x009\x11\xff\x91\x1a\xeb\x01-i\xceBiwIJ\x18D\xf6\xbb\xc1\x18\x90\xd0\x8b\x81\x0c\xdd\x84\x0b\xac\xd1\xf1 \x92@\xaa\xc4\x8bNJhFs\"D\x02d\xac\xd8\x91h\x9c\x08\xb4\xe7\x19-\x12\xe2\xed\xc9cF\xa0\xcd\x109b\x10\xf2\xddfF\x87\x95\xa0\xe4<\\\xa0\x01'\xd0\x9eRk9\xd0\x197*@%@/\xbc\xded\xa6\x13eL\xe0J\xe8D\x811\x8f\x0e_\x81\x96\xb4&)GLN\xcc\x06\xfe\x967\xac\x05\x7f\xdc\x1b\xdc\x82?\xee q\x816*\xd0E\xbe\x9as\xe6\xcc\x14\xf4\x02-?\xf4\x05\xdaA\x02`\xf0\xae\x9eI\x18\x0c\xce\xdca\x82a\xa0\xc5\x04\xc6\xf8\xc0\x18\x0f\xc1\x80\x8e\x1a\xe6el\xa8\x0cJ\x0c\x94\xdf\x8c\x80\x19h]0l\x06\xda4\x13e\xcaglsA\xd2\xc3iPz\xe1\xec)\xf6\xbe\xf1\xaf\xd2\x88\x00\x1b\x87\x86\xb9s#a6\xd0\x108&I\x0b\xb6\x81\xa6\x8c\x01S\xb2c\xcf\x80\xde\xd5\xe99\x93>\xceS\x10\xb4s\xcc\xb8QU?1\xf8n,\x8f\xf5\xa1RX\xdb\xdd%\x01v\x03i\x87#H\xfeYy\xf7H\x05\x8c\x13\x12\xc3\xf9\x87)\x85\x86\xfb\\2LO\x04\xefZ\xb4\xbc#\x9e#\xa5\xb4F*\x05\x1f\x17\xe2*\x10^\x84t\xec;GF\x87\x1a\xa1\xe4L\x84\xee^\x12@\xfbC\x90\xa0%\xdc\"\x12L\xb6\xc6\xdcM\x0bJ\x82\x16\x0dM\x82\xb6G\xee\x93\xc4\x9c/\xcc\x06ZR\xc8\x12\xb4=\x0c$p\xa3\x19\x13\xdf\x14%\x16\x9a\x8393%\xcf\x14 \x05m\x96\x95\xc9\x9b\xf6Q\x00Y\x9d\x00\x1aN\x05MH\x12\x7f(B\x9cY\x84D\x96\x8a\xe6\x10\xf4i\xd7\xf3*l\xdeh\x84\xe8\n\xcew\xb0\xc6b\x12\xb0Y@\xe9\xc5t\xbeXL\xc2\xe1\xc7\x9c\"-\x13\xc8DG\x9c\x02g\x7f\x82\xd1O\x8cO\xc8\x88\xfeB\xbb\x7f.\x9a%\xc2\xcf4\xf52i\x02\xe6P4\x13\xc6\x95z\xe2D a\xe3q\x02 \xa6h\xa9(1\xbf\xb6\xba\xd0#\xcaP\x82\xc7\xda%C\xb3\xb9\xf2J{\x8f\xedeh]J\x1c\x1a4gE\x0f\xae\x16g\xcc\xc8\xe8\xb3\x00#\x968\x1fi\xe7\x02y\xfa\xb9\xf1\x9e\x14\x89$\xb0\xcc\x03c\xe6lN\x8d\xec\x10\x7f\x93\x03\xe4\x0cj\xc1\x02%@\xaaS\xc5,\xcd\xe2#J\xac=\xb7R\x16\xc7\xb2\x076\xf3S\xa3\xf8,rN\xd9\x03hX4\x1f\xb1y\x9b1\xa2\x8f\x84\xd4\x11\xbf\"\xe2D\xf7\x91\x98\xd0\x98\x18\xf9<>\xda\x0f!6-\xe4\x0f\xe7\x0e\xeb\xc7\x1b H<\xd1\x80$u\x16\x91\xc86\x924\x8f\xf3D\x07\x92H\x84 \x99;J\x90x#\x05 \x1a-H\xf0\x88A\xb2\xf7\xf9\x1d\x1fA\x88\x10\x13\xd1uh\x14!\x99\x14I\x88\x10\xb3b\x0bI(\xbe\x90\x04\xe5(I\x9a\xa9 \xb1\x86\xfeO\xcd\x13oH\xa6\xc6\x1c\"\xf4\xca\x1a\x8d;$\x13b\x0f\xb1^ \x1a\xd1\x1b\x7fH\xd0\x18D\xc27\x0f\x12\x87HfX\xb8\xf9b\x12e\x7f\xe1\xb8D\x12\x8fMd\xcd\x07&\x18\x1f\xa3h\x11\x1a\"\x16\xad?`a\x8byq\xf9\x9b\xb6y,\x97\x02 cD\xba\x0ev\x89f%5\n[\xe1\xc9P\xeb\xe4\xf1\x88\xa9D\x88H\x1c\x19\x9a\xaf\x0ea!\x07\xd5yL6E'\xd0!\xda\xb2\x9c\xc1\xdf-\"\xfc\x90\x8e\x9e\xd0\x97B\xe8\xf15\xe5R\xd06\xb43\xb5\x0cj\xc9\xd7\x0dY7-\xa2\x17\x13\xe2\x8d\xa1\x0eL\nrF\xf8\xf6\xa0\x12\x05\xbe\x13a\x90;\x0e\xff\xfaDi\x82\xc5\xde\x84\x1cKF\xfbSR\xf6\x9d\x0c|\xe9\xc8\xb6\x06\x05qI\x1a6\x0f_KQ\xbd\x08\xff\xca\xdd\xd0W2\x00\xa4\x86\nZ\xc1\x00[A*5\xcc67{\x08\xeaCG\x97\xca/\xc8,\xe7\xb9*\x7f'o}Fu9\xfb\xb5\xef\xbf\xfcpG_\xfeY\xfc\xd9o\x7f\xfe\xa9\xff\xf6\xd3\xb7\x9f\xaa\xea\xf1\xa7o\x8b_\xff\xec;\x7f]\xb9\x1f\xd7\x8b?\xe9\x8f\x92\x9a\xeb{\xce\x1c\x81\xf2$'\xd5\x02\xfc\xf5\xfb_\xff\xf1\xcbm\xf1\xc3\x8b\x9fV?\xfe\xf4\xe2\xd5O\xbf\x16/~\xf9\xb9\xf8\xc7\x8b\x15]\x14\xdf\xdf\xbe\xfc\xe9\xfb\x1f\xe8K\xa3\x0e\xa0\xe1\x87v\xab\xec\xf1?\x7f\xff\xe5O\xef<|\xf9V=|\xa5\x95\x1a.\x12\x87\x9b;`E\"m\xc8?\xfd\xf2\xf2\xc7\xd5/\xb7\x8b\x17?\xbf\xfc\xf9\x1f/^\xd1\xdb\x9f^\xfc\xfa\xd3\xf7\xab\x17?|\xff\xc3\xf7?\xff\xe3\xfb\xc5\x0fta\x0dY\x80\xc9\xfc\x83\x86\x07\xbe\xff\xf2\xcd;\xec_\xbb/\xd5\xe2\xfe\xc7\xee\xdb\xd7\xfa\xd5\xab\x7f\xfd\xf4\xf2_\x7f\xde\xf5\xbf\xb4\xdd\xfd\xe3\x97\xdd\xaa\xfd\xd7\xa2\xd5\x19\xbc\xe6\x95:\x8b\x1a\x94\x035\x10v\x8a\x16\x06P\xa0\xa8\xbaF\xe7C\x1c\x15\xca\xd4a\xfa6\xd0i\x15RI\xf7:@\x94\xa2\xe1}\xeb\x1bR5\xcd\x83v\xf0\xc9\x1b/g\xc7\xee#?\xfd\x8d\x00\x7f\xc4\xaf\xcd\xf0\x1f\x7f\\##\xac4\xe2\xda\xd6QeY\x19\x12p\xa0\xe9{\xc4\xc29Q\xf9#\x06 (\xa5\x8dA>=a\x08\xc7TI 3\x9d\x9c*\xc9\xe8\xd5<~Hr\x1a\x89\xac\x1c\x12\xd9 $\xac/\xcd\xe0X}>\xba\x15\x11~\xe4W\xa4\xfb\xa6Zv\xd6\xbe:\xe1J9\x1f\x13]~7Jc\xb4X\xf2\xbe\xed\xa7@\x82h\xab\xa4\xeb8j4\na\xbc?CI\xca\xcb\xdf\x88\n\xc4\xe7,\x9c\x11r\xb9\xdeTtM\xeb\xbe#\xdd\xf2\xe1\xecB\x004\xca\xba\xa7\xed\xaaX`w\x14F\x83\xe7_\x00U\x12\xde\xa0p\xcfa\xd3[\xb6p\x93x\xc3\xaf'\xf6\xd0\xa3@\xef\xfdL\x81\x92\xa1X)\x04e\xf2\xe6O\x19\xf5N\x91\x9b\x0fk<(\x89\xca\x99+\xaa\xaa\xf9*\xa2z$\xd0\xdd\x16\xd8\xac5_k\xda\"nL\x182\x1e\xd1\xe5\x8d\xe7\xf2\xee;h1\xb7\xe9l L\xd85)\x16`X8\x91\xf1\x08xHq\xdbT\xfed\x0b\xd1X\xab\x82\xbf?\xecf\xd9\xa9\x96 e!R\x8cD\xdc(\"R\x81\x06\xf2B$MF8\x82\xea\x05\xf9x\xf1\xe9\xfa\x7fn\xae\xff\xe7\xe3\xdb\xa4\xd8\x1f\xe3\x85\x0f\x9f.\xff\xf3\xf2\xfd\xc5\xf5\x87Oi\xcf_\xbd\xfd\xf4\xc7\xe5\x9b\xb7\x89O_\xbe\xff\xe3\xedU2\xed7\x9f\xaf\xae?\xfcvy\xf1>\xed\xf1\x0f\xff|\x9f\xca\xc7\xc5\xbbw\x97\xbf_^\\\xbfM{\xfc\xc3\xff\xf7\xfe\xf2?>\xfb\xe3\xc9\x8c\x87?~\xfa\xf0\xc7\xdb\xf7\x17\xef\xdf$\x12\x7f\xf3\xe1\xfd\xf5\xa7\x0f\xbf\xff\x9e\xca\xfb\x1f\x17\xbf_\xfe\x16X \x15~\x96\xb5\x0d\xe2\xc6'h\xbe\xdd\xe5\xeb\x8e\xeb\x11\xfe\xc0)\xda\xb6M\x9b\x12h\xe6\xd9\xa4\xaf\xf1\x9f\xa1WRt`\xd6.\xb9Y'\x14\xb5\x89\xee\xe9\xd7\xd8\x8f\x83\xc5hIo{\xd2\xd1\xf6\xb1\\0\xbdr\xb5\xad\x17\xbd\xa5v\x86z\x91\xdf\xc2k\xecGP\xbf\xb8[\xb1\\\x90\xb2~\xa4]:\xff\xea\xbby\x8d\xfe*&\x87\xd6}\xd9\xef\xe0PRcZl\xbb\xbeY\x96E-\x06&R\x86\xf1\x89L\x1d\x18\xff\x0e_;\xbf\xd8q\xd9\x9b\xa2\xedw\x82\x17~XI\xa9\xceN\xa1\xc4\xae\xd4w\xfc\x1a\xfd\x15f\x11:\xe2Q\xb0lO\xacVeU\x16=%\xc5]K\xf9\xa1\x9a\xd8\x99\x90\x02\xaf\x91\xdf\xa0#~\x9a\x17\x15\xe8\xb0\xcdJt\xacN\xfd\xb6\xa9`\xb0\xeb\xba\xbc\xddv\xe4\xb6\xa8\x1f\xe4i\x92\xc8\xc2 [^\xe3?K\xb3\xb6e\xc7W\xd3\xdd\xd2MK;\xaeHp\xc4\x83\x8ar\x87+\xb9\x95\xe1\xa7Xd|\x94\x83\x1c{\x8d\xffl\xee\xbb\xaf\xf7%\x94f\x12\xf32\xe4\xe9\x11_\xadJ\x9aRRB\xeb\xa6\xf7$\x19r\x19Q\x02\xf25\xfa+\xc6\x06\xcf\x9d\xc0\xb7&\xc4\x14\xc2~\x0f\xa7\xe2\x90~\xdf\xb0V\xe33\xf6\x8bg@\xfbP\xb7+\xb5P\x7f\xefHW\xde\xd5\x05ORR\x0eNf\x84NX\x83\xb9 \x1f\xb5\xefL\xeaO\xecc8\xe7 \x8e`\xbc\\\xc3\xb1C\xc6\x0b\x94\xa0\x17C\x16?A\xae\xf9\x0d\x89\x8d\xaf\xa4\xdd\xb0\x15I\xdflHE\x1fi%\x94V\xd3<\x82\x89\x1d\xd0\xbd\xcel\x92<\xad\x1d\x9b7R\xd4;y\xfd\xea\xe0\x0b\\7\xcbr\x85:qz\x19\xf8\x8f\xa4\xbc\x03\xfa\xe6\xbd\xa3\xac\xc9\xb6\xe6A\xc4e\x8f\xb9\xf3$7U\xc9\xee~\xb2\xd6\x9b4J\xd8\xce\"\xd6\xf3M\xb1\xc0\x93\xc5MP\xd6=\x1ad|\x95.\xd4`\xe5\xf5\x82\x0d\x84\x8f\xbc\xd8\xf6\xf7M[\xfe \xf2\xa5\xa5\x0bZ>\xd2!+\x10B\x8c\xcf+ZD\x13f\xd8z\x85[\xcfo\xf8.\xb8\xf1^\x1a\xa6\x8eo\xf8\x0cL\xd1\xccV \xcc\xf7\x89\xc9\x13\xe4&\xb9\xea\x8bzY\xb4K]\x9c\n\xb9\xdeq$\xd3\xbah\x1fh\xab~C}\xa4-%\xddv\xb3iZ\xbd\x04*\xf0s&\x8c\x96E\xdf\xb7\xe5\xed\xb6\xa7d]\xec\xa4\xf9\x12\xa1\xb5\xb8/\xea;\xba$\xb7\xe0\xc4\x11\x92n\x88\x8fn\xea\x05;e\xbd\xdeK~\xad\xbe\xe1r\xe8\xa6m\xaaj\xbb\xf1-\xc2xW\xe6?\x85\xc8+\xaaJ}0\xc6u\x96O\\\xd9w\xea\xc3\x91I+\xb1/N\x08\x12\x83\xc0\xdf;)NV%\xad\x96\xa8\xbb\x18\xa6\xb5\xea\x1aB\xeb\xe2\xb6\x82\x9b\x19GD\x08y\xfb\xff\xb8\x83\x15\x18\x12\xd4\x8a\x1a\xbb\xbaI+\xb6\x18\x8b9\xa9\xe1\xe9\xb8\xe2\xd4%\x9c\x88]7\x9b^KU\xc3\xf5/\xb2h\xaa\x8a.\xa4;RZ\x99\x18K67\xb7\x02\xd6\xd1\x82\xcb\x0daH\xc5\xec\xe4\xd6\x051^\xcc\n\xc1A\xee\xc5\x88\x00x&\xe6-\xd7\xf87:tP\xcd\xd8\x9ekuX\xfd\x90Q!\x82\x8a\x08\xfc\xcf\x88\xca\x0c#\x18\x1e\xfa\"\xb1x\xbf\x08\xe38~8\xfd\xb4\x18\xa8\x90\x04@p\x84\x99\x11\x93\x870\x13\xc7\xecb\x13\xe9~\xeb\xfe\x10\x8e\x94\x0f\xde\x88\xd9\xc8\xf9\xea-j\x1e\xbb\xe8L2\xc0\x1b\x921\xd3\x8eE\x8f1\xa3\xeb\x88\x88\xe8\"AvA\x11\x12\x8b\xb28\xd8 S$L\x8cFx\x88\xda\xbfF|E\xb3\x8e\xd5b\xc5\x94PN\xf0\x03B\xce\xf8H\xe3\xa3\x9f*\xc2bCJ\x15n\xb1\x89 \x0ca\xc4\x92e\x0d!.\x12c\xcc\xdb\xabj\x81%\x1cw\xf5\xbcI\xe4E/\xf6\x14\x05<,!\xef\xca\xfe\x12\xad\xc7\x9dg\xd3\xe8\xa7,;\x11\x99\xce\xb5\xa4HFd\xa0[e\\\x1a\xbfPbzZ$1q\xf6FV\xb7w\xffp\x9f&\x19b\xc4\x85\x16]\x0b\xf1\xd0\x147Z\xd8\x91\x163DA\x9b\xcf\x99\x96\xe8NK\x9c\x98xR\xc2,o\x8a\xf3J\x82[-\xd7\xb1\x96\xebZ\xcbv\xaee\xb9\xd7\xb2\x1dl\x99.\xb6|'[\xbe\x9b-\xd3\xd16\xd6\xd5\x96&\xf9\xa0\xcd\xecn\xcbp\xb8\xed\xdd\xe5v(\xa7\xdb>\xddnO\xeex;\xa8\xeb\xed\xc0\xce\xb7g\xe1~{\xde\x0e\xb8g\xe4\x82{\x1a'\\\xdc\x0d\x173U\xab\xa7fp\xc5\xc5u\xa0\xf1\xee8\x0fAoBM2p\xa3\xec\xeb\xe2\xf6J\xb9r\x051\xd5\xfc\x0f\xfc\x1ba\x83\x94\x95\x80\xbc4G\xe6s\x89W\xad\xe21sr\xc4\xba\x9bH\xd8\xd5\x87<\xb9B?<\xc5\xe7\x7f\xb7)\x17EU\xed\x02\x15m\x04\x81\x11\xc3\x98\xe1B#\xb5[\x80\xd7\x96\xb4\x02g\x0f;f\xd8y\xb6\xa8x\xb0\xa6\xfa\x10\x97E\x8f\xbba\x1dg\xad\xffFSl\x97X4f\x1a\xbfo\xf8\x9diInw\xa7d\xbbY\xaa\xff\xef\xcb5\xed\xfab\xbd\xe9N\x95\xed\x00\x82kN=\x1e\x12BZZ\x89\xfc\xbc\xab\xc6e3zM\x8a]\x92\xe0z\xb7\xbcaL\xfa\xa4A\xc2e@.2#\xf3\x82\x0d\xd3Gj\xa8\x01\xc5\x1e=g\x8fB\xb0 \xdf\xb8\xb4\xee\xdb\x1d\xbf\x92\n\xbe\x82<\xdf\"A\xdd\xd0\x128\xc6\xabc\xe97;8\x04\xc5R\xc6\x12\xd4\x8be~v\xf3X\x15]/\x99\x0b2~\x88\xc9\xe4p\x822a6\xc5\xc7\x11\xe6\xa8\xac{zG}\x8a\xa6\x9cI<2\x1aZ\xec\xe0!\\\xf5\x11G\x97\xf5\xc5\xc2\x88x2\xa6E\xcb\x952)U<\x01\xcb\xd0`\xba\xd1?\x8bX\xce\xe9\xcb\x908\x1e\xd1\x1fZ\xee\x8co\xfb\xb2\xa9\xcf\x03\xfc\xb2F\x1fqm4\x82\xafa\xc2\xf5\x1d\x93\xe3\x1dY\x14\x1bP\x12P\xcf\x08\xdf\xbej\x0f\xe1\x16\xaau\xf1@\xc5\xd6\x92\x98\xf0\xa2^\xca\xaf\x81\xee\xc8W\xdaR\xb2.\x96\xf60b\xa2\xfcJ\x1c\xa3\xca\xcb\x8c\x9c\xa8\xa4\xb8+\xca\x9a\x97\x15\x92\xe7\x8fC\xc7\xb4\xba\xb1\xa7y\x04\x86\xeb[\xbf\xd6,9B*,\xd8\x80\x82\x02\xd6\xcf\x08\xf9\x83\x87\x1f\x89@\x17\x01~CI!\xa1j\x17U\xd7\x10(\xfe\xcc\xab\x8a\xbfc\x070\xea\x00\xdb\xa7Y'R\xcfxi\x9bs\xa4\x8d\xd0\x06\xf0\xe9`=\x94\x94\xc8\x9dt\xc2\xb3\x83\x94\xfd=Y\x95UO[\xba$\x0f\x8f\xf2D\xeai[\xf4M\xebz\xad\x05t\x0c\x1d~p\x00\xb2\xd8\xa4\xf8>\x0d\x0dIr\x0e\xcbV\xed\xe4\xb7\xb9\xf3!r\xb4\xda\x9f\xdc\xfd\xdf\xacV\xc2\xe1\xee$\x95\x0e\x96\x90\x9evm\x9c-9Go\xbaL\x1c0\x03\x9f\x1f\xb5\xe7\xc5L\xa2$C\x95\x9f\xf3\xf8\xb9\x17\xc5\x9d\x8bz\x08ST\x8b\xe8\x85\x0d\xfa\xbe~\x92\xd5\x7f\xc8w\x01>o\xcc]!\x99;a\x1d\xf1z%\xa7\x01_\xb6lMk\xcf\xf6\xa2Y\xaf\x9b\x9a\xf7\x83\xa36 \x95\xd2^\x87 ]\x80\xaf\x1b\xf2\x9e\xb5v\x0dv\xe5\xe9f\x9b\xd4_~\x88\xb5\x13 \xf7\xdd`\xd1\xe7\xf3r\xae\x86\xacdHY?6\x0f\xc8\xdaBi_\xbf\xd0{\x1ahoh\xb7%-D\x9a\xc6\x03\xed=[\x06\x91\xa4\x12\x12yA\xfe\xb9\xb2~ \xb7\xc5\xe2\x81'\x95\xbd\x17\xe1\x881\x88 [<\xfc\xb2\xadR=\xfao\xdb\x89CK\xb0\x85\xa4lE\xe2\x8a'q\x82\x0c(\xa7wMK\xde\xca\xba\xfd\x01D\xb1J\xd7\xe9\x83C\x1d\xa8r\xbd_\xc0\x95t\xc1!p\xfa\xf1\xc4\x86\x17 \xf6\xb1m6\x0d\x93\xd0\x91\xb1)\xb14\xcf\x00y\x8a\xbb\x8d\xec{\xc5\x8d\x06}\xbb]pG*?L\xd7E\xdb\xdd{\xe0V\xf3\xd4\xd2\xbfT\xe8\xc8r\x05\x87\x13\x17\x14\\\x94\xc8m\"\x99\x8b\xa0\xd1\x08\xc8\xe2\x7fm\xb9\x1b\x15\xd0\\\xa2\xce\x14\xa79m\xce\xe2(\xf5Oo\xdf|\xf8\xf4\xdb\xcd\xe5\xfb\x8f\x9f3\xeb\xbf\xe3\xef~\xfc\xf4\xe1\xe3\x87\xab\x11/\xc2o\x01\x81\xa5j\xe4\x8fc8]\xe2E'%4\xa3\x91W\x8d\xaa\xf9\x012e\xcd\xc1\x8d\xe7\xdb\x1a\x14t\xd8_l\xcd\x03/E\x96\x04\x9f;\xf9W\x1b\xf2\xab\xed\xe8\x9a\x14\xedm\xd9\xb7E\xbb\x1b$\x05O\xd4\xa0\x0eP\xd8\xb2\xf9\xbc\xc1o8g\xf0\x1b\xceW \x1f\x9a\xa1\x19lZ\xfaX6\xdb\x8egp\xb7>\xc1\x016\x8b\xf2(>\xfa\xeb\xb6X<\xc0\xa5^\x14\xf5\x97*:\x95R>\xa6Z\x87o3\x1aQG\x7fccX\xdc\x97\xf4\x11Rz\xca\"\xfbu\xecF\xe3\xfc \xde|vZ\xcb\x81\xce\xb8\xff\x12\xe7[/\x93\xb4\x88\x89T[\x15\xfe}>\\\x96\xf0$\x8a\xb2\xc5\xe0Z\xf3\x9c(W\x9c\x86\xe4[n\x89\xe1\xbe\x97\x98`D61f\xf1\xe9\x94\xf5\x1d\xe9\xb6\xa6cb\x9c3d[w\x94\xdf\xf4Rbx\xdc\x89\xb79`\xbf\x19b\x99j;\x95'\xb7\x87\xcd\xb6\xda\xfa\x940\xb4+\xb6hvW\xec7\xad+5\x04v\x87\xeb\xca\xa5\xb8\x01B\xa7\x0f%7>.\xa1\x88\xca\xba\xecx\xed\x1a!s\x9b\x96,iU\xec\xe8r\xe05\x879\xb6El\xe6\xd8o\xdey\x18\xec\xf2(\xc7\xec;\xb4\xb1a\xb2\xc5\x04\x06(\xdc\x1f\xe0\x1b\xa7\xf5\xa2\xd8t\xdbJ\xb1 \x0f\x8e\x15?\x12A\x90\xc8\xf3\xd0C0\xa0\xa3\x86y\x81\xbeN\xba\xef\xc8P|\x80\x17IhVr*D\xe9&\xc9I\xe3+.B\x84\xf2+\x1f\x1c\xb2\x0f\xc9$=\x1e!\xfc<\xe2\x8em.\xe4\x84\x0c\x06Lq{\xec\x9c0d\x94\x9e\xc7\xb2)-\xbf\xd6;\xfeU\xbaPv\xcff\xc5\xb5!\xbeTE\xdf\x17\x8b{\xa0\xae\x02\x01\xd87\x82\xe2w\xcd\x9d+\xf6\x17\xbf\x87y\x83I\x8c)\x13\x1c\x88\x19ijq\xe9\x14?\x0b(\xae9$e\x0c\x18\xe5\xa56\xdfNwO\xfb\\7\x9eI\x1f\xe7)\x08\xda9f\xdc\xa8\xaa\x1f\xaf\xa7Y,\x80\xd7\x8b;0\xe29|\xd8\x1a\xa9\x14/u\x88\xabg\x0c#\x0cp\x1d\xbd\xdb\xc5nvG\x14\xe1H\xee\x93\xc4\\\nD-*\xe8\xc8~\x06\x12\x85\xb3\xcd \xf7\xc8\x11E\x98=\xed#\xc1)$\x05E($\xc9\x14\x0c!B\"KEs\x08\xfa\xb4\xeby\x15\xb6'E\x0f\x9a<\xc44\xba.\x928\xce\x9b:\xceY\x9c\x83(~IcN\x91\x96 d\xa2#\x9e\x05P6\xff\xe8\xfd\xf03\xf7/(=\\}N\x9d\x95\xe7\xa2Y\"\xfcLS/\x93&`\x0eE3a\\\xa9'N\x94P\x1c(9QKE\x89\xf9\xb5\xd5\x85\x0e\xefF \x1a\x9a\xac\xa5\xb5z\x874Yu\xb5\x871\xe1\x84\x9eQw\xb2\xb9\x1a\x87\x14'\xe9hq\x92\x87\x18'O>#\xa3\xcf\x02\x8cX\xe2|\xa4\x9d\x0b\xe4\xe9\xe7\xc6{R$\x92\x18\x87.w\xe9\xcc\xa9\x91'\x8f\x7f\x92\x08u\xc9\xa5\x8dt\xe2f\x187\xd2 J~\xc2\x96IE\xa1\x83+\xc2\x0fB\x17\n\xe9\x1c\x18t \x15@\x9d\x8b\xbe\xac\x92\xd1N\x9dK\x8b\xa8V\xbcr\xd1lv\x83~$\xcaK\xda\xc0Z\x80\xb1[U\xa9\xd1s\x08?}\xbc\xb6+\xefN \xef\x0f\xcb\x80\x95Z!yxu\x8e*\xc9\xc4k\x07\x1a9*e\xe1I*!L\xa6WN\xb6\xa8\xd9%\x85\x89\xe4)\xa3\x962 \xe7\xc7N\xcb\x90\xf6 yb&\xd7WN\x99\x1axe\xae\x8a\xcbdJ\xd5e\x82T^&(j\xd6\xbb\x08\xc2\x9d\x96]\x85\x99\xf8+1\x0f\xfday\xe5\xc2\xab>SUf\"D\x7fNYc\x12\xac\xceL\xe6\x18\x94\x1eM\x14\x1d\x97|z\x86ay+6\x93 \xa3\x9a\\\xbd\xd9\xa2\x17[\x13\xe7t#\x13\x98\x9fZ\xd1\xd9\"\xb7k\xb6mBUg\x18\x1c\x19\x00\x04\xf0\xef~r]g\xd6\xf1\x95\x86\xcdr>w\x1d\xba\x14\x87)\x05 I\x01\xf8\x91\x17j\x94\x08+\xc2Wl\x1c\\\x08\x01\x05 z\x0e4hO0\xa0g\x03\xf99$\xbcG\x9c&\xfa\x86\xb4\xc8>\x16m\xd9l;\x8e$\xa4:x\x06:\x92\x90r\xfff\xbf\x1a\x0e\x1bG\x15\xf5\x94.7T\x12\xf4$D/\xa9\x18\xd2dB\x05o\"\xeauk\xd4\xb2*ww^\xf0\xcf\xb4!\xf5x\x11\x96\xa4\x8a\xdcv\x0e\xce\xe4J\xdcv\x05n\x18\xc2\xbcA\xaf\x9e\xe0\xbd\xc05ULO\x91U\x02\x00K\xfc/ \xe5f\xf4'\xc1\xbc\xfd\x01\xceqhjrf\xfe\xd4|\xfciY\xf8\xd3r\xef'f\xdcO\xc8\xb3\x9f\x98]?)\xa7~j&\xfd\xd4\xfc\xf9IY\xf3\xf3r\xe5\xc7\x8c(\xe3\xf2\xe2C\xf6{\x87X\x00I\xbb\xa7\x1c\xf8\xfb\xcd|?\x7f\xbe\xfb'\xcar\x7f\x80\xdc\xf6\x07\xc9h\xff\x84y\xec\x9fc\xf6\xfa'\xcfY\x7f\xc8L\xf5\xbe\xfc\xf4\xfe[\x9d:ZG\xe5\xa2\xc7\xb1\xc3\xe3\xf3\xce[e\xa0\x1d'\x95_R\x8f,\xf7l\x15w\xd6\x08\x8e+\xf3\xdcO)\xef\x8c\xa4\xa5\x0d\x97uF\xcb9gh~\x96\xe6\xe3\x9f\xdd\xf1e\x9am\x856^\x9e9X\x969\x97\xefq\xe5\x97\xe5\x92i\x94\xa6\x94]\x1e]nY+\xael\xed\xb1\xc42\xcb\xe1\xf2\xca\xb8T\xf0\xcf\xe6\xf82\xcaZ\xd1dc )\xe5\x93G\x96M\x96<\xb8\x9f4bPR\xc3\x9cZ\x1ey(\x88,\x08\xdae\x91C\x97\xf0\xcb\xe5\xa52&\xee\xf9*\xbet1\x8b\xb9\x90X\x05\xf7\xb3\xbd\xfd\x13\xb9Hq\xd0;\xb8I\x04{8\x1fC.2R\xfb%\x891\xd3c\x17\x17b\xc3[)\x0eiO\xa7 \x93\x80t\x1a\xf7\x0d\xfb\x81\x9e\x069mK\x0fV\x0fi\xad\xe26\xeb\x96\xde\x15\xed\x92\x11\x16^\x19R\x86\xac\xb2\x9c\xe0'\xddh=\xdfG\xe2\x17z\xea\xe3Hr\x9aM\xf4$:\x0e2\xfe\xe7\x0c\xbf!\x9e\xf29>\xe4\xff5\x86l\xe5z\xf6z\xf7\xec\xd1\xcf\xe8\xcaC]\xdd\xf1q\x18K7\xd2\xbd=\x9fk\xdb\xef\xfd\xca=z\xa7y\xbc\\P\x87\xf8\xdcp\x0f\xd7\xe0\xcbY`\x99\xf4\xf2\xb9\xd6\xe1\x17Q\xa6\xd5y\x9a\xc5\xb3\xd7#\x97\xcb\xf3d/\x9c\xc5\xb5\x7fr-\xef[.\xa3S=n\xdc\xc7f2\x8a{\xdbt\xb9;\xb8\xda\x04\xc4\xc5\xf5\xb4\x81\n\x95\xe4g\x13\x94a\x82\xf2D\xfak|\x86\xc4\x1e\x01&UJI\xfe\xa3>>\xb4'\xbc7\xa4G\xef\xdb~\n\xc4\x0br!a;t\x04\xef\x17\n\xb1\x9e\xe0ZA\xa8 gK\x9e\x8bE6\xbf\xabE\xb6\xfdL\xc1\x14W\x0cB\x8e\xdf\xec\x93]2\xb2\xd9\xae\x19\xd9\xb0\x8b\xbal\xdet*\xde}\x07-\x86Z\xf6\xb8pd\x0b\xae\x82xd\x8cKG\xb6PM\xe7X\xe6\x829\xeb9'UsN\x98\x8cp\x02\x93do\x11\xfaBB\x15\xe74\xef\x11\xfat\xb4\x82s\xa27 }<\\\xbd9\xd1\xbb\x84>\x1e\xab\xdc\x9c\xeamB\x9fO\xa8\xda\x9c\xe4}\x92-\xcf\x0b5\xbc\x15\xf6F\xc96\xce+\xe5%\x97\\\xabyO^*\x94\xfc\xec\xde*\xb4\x97Y\xbcV(\xe5\xc3y\xaf\xd0\xee\xf7\xe3\xc5B\xbb\xda\x977\x0b\xed\xec\xb0^-\x94\x85g\xe2\xddBy{\n/\x17\xca\xc8\x9e\xbd]\xb2\xc5\xaa2\x87\xbc_\xea\x99 ^0\x8b\x86Gf\xcf\xe6\x15\x93\xcd\xf1\x8e\xc9\x16?AFz\xcb\x10J\xa6\xffl\xa4\xd7L\xb6I\xde3\x84\x9e\xe4&\xecE\x93\x0d\xf5\xa6\xc96AY\xf7h\x90\xf1U\x1a\xefuC\x88\xf1y\x8d{\xdfd\x0bz\xe1d\x9b:\xbeq\xde9\x84\x92\xdc$S\xbct\xb2\x8d\xf6\xd6!\xb4\x06\xff\x1d\xc9\xf0\xda\xc9\x16\xf6\xde\xc9\x16\x96n\xf1U\x18\xef\xd5\xc3\xbe8\xe5\xe7K\xf4\xee\xc96\xd2\xcb\x87\xed\x05a\xa46\xbc}\xb2\x85\xa7c\xaa\xf7\xcf\"\xa7|\x81\x8e\x17P6\xe5Iq\xa3\x08\xc2\x9c\x1a/\x0e\x96\x8c\x84\x0c\x18\xc8\xbd\x18\x11\x00\xcf\xc4\xbc5\x83\x9bR65c\xbe\xe0\xe4\x99\xb9\x1c\xe5\xc6\x94\x0d\xf1\xb0\xed\x9f\xe1\xa1\xaf|7\xa7l\xf0\xbb\x1b\xa0Hb\xfc\xce\xe9\xfe\x94m\xf4\xe4\xcd\xec\x16\x85\x06\xbfv\xde\x0c\n)\x1f\xbc\xfev\xd6WoQ\xf3\xd8Eg\x92\x01\xde\x8c\x083\xedX\xf4\x183\xba\x8e\x88\x88.\x92\xe3&(BbI\x0e\x0e6\xc8\x14 \x13\xa3\x11\x1e\xa2\xf6\xaf\x11_\xd1\xacc\xb5X1%\x94\x93{\x00!g|\xa4\xf1\xd1O\x15a\xb1!\xa5\n\xb7\xd8\xc4\x04\x860b\xc9\xb2\x86\x10\x17\x891\xe6\xedU\xb5P\x0c\xe3@\x8d\xc9\xe1,\xa2\x17{\x8a\x02\x1e\x96\xa7)_\x1fw\x9eM\xa3\x9f\xb2\xecD\x14\x1a\xd3r\x12/\xf4\xc4<\x96kM\xcb@\x8c\x12\xd3\xb3\x12\x8b\x89\xb37\xb2\xba\xbd\xfb\x87\xfb4\xb5\x08\".\xb4\xe8Z\x88\x87\xa6\xb8\xd1\xc2\x8e\xb4\x98!\n\xda|\xce\xb4DwZ\xe2\xc4\xc4k\x02dyS\x9cW\x12\xdcj\xb9\x8e\xb5\\\xd7Z\xb6s-\xcb\xbd\x96\xed`\xcbt\xb1\xe5;\xd9\xf2\xddl\x99\x8e\xb6\xb1\xae\xb64\xc9\x07mfw[\x86\xc3m\xef.\xb7C9\xdd\xf6\xe9v{r\xc7\xdbA]o\x07v\xbe=\x0b\xf7\xdb\xf3v\xc0=#\x17\xdc\xd38\xe1\xe2n\xb8\x98\xa9Z=5\x83+.\xae\x03\x8dw\xc7y\x08z\xebY\x90\x81\x1be_\x17\xb7W\xca\x95+Hi\xc6\xff\xc0\xbf\x116HY\x88\xd7Ksd:\xd5\xf0\xb4\xf0LE}3\x8cXw\x13 \xbb\xfa\x90^B\xe8\x87v\x92'h\xfdnS.\x8a\xaa\xda\x05\n\xca\n\x02#\x861\xc3\x85Fj\xb7\x80\x9b-i\x05\xce\x1ev\xcc\xb0\xf3lQ\x95\xb4\x1e.7v\x1c\xdb\xd0\x1cg\xad\xffFSl\x97%:\xda\x14~\xdf\xf0;\xd3\x92\xdc\xeeN\xc9v\xb3T\xff\xdf\x97k\xda\xf5\xc5z\xd3\x9d*\xdb\x01$\xb8;\xf5xH\x08ii%\xca\xe3\xac\x1a\x97\xcd\xe85)vI\x82\xeb\xdd\xf2\x861\xe9\x93\x06 \x97\x01\xb9\xc8\x8c\xcc\x0b6L\x1f)\xd8\xd3\xc2{L\xcf\xd9\xa3L|\x08\x1f\x14\xad\xfbv\xc7\xaf\xa4\x82\xaf \xcf\xb7\xbb \x1ck\x9cxnvp\x08\x8a\xa5\x14\x88\xec\x85\xaf>\x9cX\xe6g7\x8fU\xd1\xf5\x92\xb9 \xe3\x87\x98L\x0e'(\x13fS|\x1ca\x8e\xca\xba\xa7w\xd4\xa7h\xca\x99,\xeb\xfe\xe7Wa\xb6C8\xd6Z\x1d]\xd6\x17\x0b#\xe2\xb9\x90\x17-W\xca\xa4TA\x8b+\xc9\x06\xd3\x8d\xfeYTH\x9a\xbe\x0c\x89\xe3\x11\xfd\xa1\xd5\xc6\xf9\xb6/\x9b\xfa<\xc0/k\xf4\x11\xd7F#\xf8\x1a&\\\xdf19\xde\x91E\xb1\x01%\x01\xf5\x8c\xf0\xed\xab\xf6\x10n\xa1Z\x17\x0fTl-\x89 /\xea\xa5\xfc\x1a\xe8\x8e|\xa5-%\xebbi\x0f#&\xca\xaf\xc41\xaa\xbc\xcc\xc8\x89J\x8a\xbb\xa2\xacyU_y\xfe8tL\xab\x1b{\x9a\x87W\xb8\xbe\xf5k\xcd\x92\xf3\xb5\xac*r_\xfe)f\xa7\xa5\x1cEQ7\xe0\xf8\xfed\xc4\xda\x93B\xf8\xd9\xd1\xfae\x83\xb7\xbd\x90Su\xca\x17M\xce\x1b\xff\xc6\xd7\xcd\xa3]\x00o\xb0\xbf\x8e*,a\xbd\x9e\xe5\\C\xadc\x1e%\xe0\xd9Y\x97mo\xe7\x90%\xd4\xebC3\xa3\x00]\xfdA\x9b\xcb\x83\xd4\x80p\xfa\x8b8\xdd\xd5\xe3A\xd6C\xde\xe3Y\xd9\xf7\xc83\x94\x95\xa8g>B*R\xd2\x11|\xdd\xcca-\xec\x92\x08c\xf4O\x94H\xba\x16\xea\xd0\x0b:\xe9gRJm\x9eG\x9cV3\xe8\x0c6\x17^ \x180\xcf&\x97\xbbq\x96\xe9 \nn\xe2\xc8S\xa4g\x12\xa1\x84q/\x92\xaa\x98<\xc1\x1c\xb8\x8c\x89\xf9Hx\x1dC\xba\xe6\xce\xcd\x1c\xfad\xd2XS\x85q\x02\xa9\xf8\xa8F.p\xfe\xa8F\n\xea\x84m\xa0\x0f1\xc4\x9704\xf8\xeb\xd2\xa8\xfb\xef\x0c\x85i\x8c\xbe\x05\xe1@\x99\x9a\xe1 #@\xe3\xa4\xd4\x01\xbe\"\xda\x8a.\xbf\x93\x9dz\x12\xb9\xcc\x0b\xa7\x83N\xecM2\xf2h\xd9\x9bw\xeb|X\xa6\x01\xfb\x04\xac\x9f\x11\xf2\x07\x0f:\x92I\xeb\x00\xf2\x86\x92B\x02\xd4.\xaa\xae!\x0fu\xf3\xb5&\x05\xdb-\xef\xd8\xb1\x8b\xba\xbd\xf6i\xcc \xcf\xc0\x80\xde\x93\x9bXZ\x06m\xd8\x9e\x0e\xd1CI\x89$J'<'H\xd9\xdf\x93UY\xf5\xb4\xa5K\xf2\xf0(\xcf\xa1\x9e\xb6E\xdf\xb4\xae\xafZ\x00\xc6\xd0\xe1\x07\x07 ^\x94_\xa5\xa1\x17I\xcea\xd9\xaa\x9d\xfc\"w>\x1c\x8e\x96(\x9f;\xfd\x9b\xd5J\xb8\xd9\x9d\xcaM!\xcf\xc2\xc4\xcb\xe2l)9z\xd3Q\xe2@\x18\xf8\xfc\xa8=/f\x12%y_t\xf7\xf3\xf0\xc3(qfj-%\xa8\\D/X\xd0\xf7\xf5\x93\xac\xfeC\x1e\x0b\xf0tcN\n\xc9\xdc \xeb\x88\x17 =\x0dx\xb0ekZ{\xb6\x17\xcdz\xdd\xd4\xbc\x1f\x1c\xab\x01\xd9\x91\xf6:L\xe8\x02<\xdcP\x84\xa8\xd5\x0c\xec}\xa3\x03M\xd8&\xf5\xd7\xfce\xed\x04\xc8}7\xd8\xf1\xf9\xbc\x9c\xab!+\x19R\xd6\x8f\xcd\x03\xb2\xb6P\\\xc3/\xf4\x9e\x06\xd0\x1b\xdamI\x0b\x91\xa6\xe7@{\xcf\x96\x01b[E^.(\x06U\xd6\x0f\xe4\xb6X<\xb0\x7f\xb0m\xc8\xddC1` [<\xfc\x8a\xad\x92\xdf\xf9\xef\xd8\x89CK\xb0\x80\xa4lE\xe2\x8a'q\x82\x0c\xd8\xa6wMK\xdev}q[\x95\xdd}\x00G,K\x07v>\x10TH~%\x0e;uD\xb8\x80+\xe9\x82\x03\xdf\xf4\xe3\x89\x0d/@\xecc\xdbl\x1a&\xa1#cSbi\x9e\x01\xf2\x8cu\x1b\xd9\xf7\x8a\x9b\n\xfav\xbb\xe0\xeeS~\x98\xae\x8b\xb6\xbb\xf7\x80\xac\x08/;\xb3\x0d\x81\xe1\x13\xe6\xf1Ra\"\xcb\x15\x1cN\\PpQ\"\xb7\x89d.\x82A# \x8b\xff\xb5\xe5\xceS\xc0p\x89\xe2\xce\x9c\xe6\xb49\x8bc\xd3?\xbd}\xf3\xe1\xd3o7\x97\xef?~\x0e\x94\x83J\x7f\xf7\xe3\xa7\x0f\x1f?\\\x8dx\x11~\x0b\x08,UAj\x1c\xc3\xe9\x12/:)\xa1\x19\x8d\xbcjT\xa5\n\x90)k\x0ei<\xdf\xd6\xa0\xa0\xc3\xfebk\x1ex)\xb2$\xf8\xdc\xc9\xbf\xda@_mG\xd7\xa4ho\xcb\xbe-\xda\xdd )xz\x06u\x80\xc2\x96\xcd\xe7\x0d~\xc39\x83\xdfp\xbeJ\xf8\xd0\x0c\xcd`\xd3\xd2\xc7\xb2\xd9v\xd5\xce\xfd\x04\x07\xb0,\xca\xa3\xf8\xe8\xaf\xdbb\xf1\x00WyQVK\xaa\xe8TJ\xf9\x98j\x1d\xbe\xcdhD\x1d\xfd\x8d\x8daq_\xd2G\xc8\xd0\xd9l{6\xd0\xa6\x8e\xddh\x9c?\xc1\x9b\xcfNk9\xd0\x19\xf7_\xe2|\xebej\x161\x91j\xab\xc2\xbf\xcf\x87\xcb\x12\x9e:Q\xb6\x18Hk\x9e\x13ETJ\x13|\xcb-1\xdc\xf7\x12\xd3\x8a\xc8&\xc6,>\x9d\xb2\xbe\x93\xe5\xe9NWEYm[z\xca\x0e\x9d\x0d\xad\x97\xc1\xe9NY\x93\x94#&\\k0\xe5-\xad\xfe`\xca\xe3ZM\xc2\x94\xc7U\x9dB\xac%\xd6.\xc4_\xcd9s\xf2k\x1c\x06\x0f\x10\xbb\xfa!I\x8c\xdc\xd9K-\xc4\x94\xae\x9e\xac>b\ns\xfb\xac\x99h\xb7\x98\xc0\x00\x85\xfb\x03|\xe3\xb4^\x14\x9bn[)\x16\xe4\xc1\xb1\xe2G\"\x08\x12y\x1ez\x08\x06t\xd40/\xd0\xd7I\xf7\x9d\xf2aA\xb1p2Tu\x84*\xb5\x8a\x13Hi\x85\x12\x03\xe5W>8\xe4\x1c\x92\xa6c\x8f\x10~\x1e\xd1\xc66\x17rB\x06\x03\xa6\xb8=vN\xf01J\xcfc\xd9\x94\x96_\xeb\x1d\xff*](\xbbg\xb3\xe2\xda\x10_\xaa\xa2\xef\x8b\xc5=PW\xf0\x7f\xf6\x8d\xa0\xa8]s\xe7\x8a\xfd\xc5\xefa\xde\x10\x12c\xca\x04\x07bF\x9aZ\\:\xc5\xcf\x02\x80k\x0eI\x19\x03F\xf9\xa6\xcd\xb7\xd3\x9d\xd2>\x87\x8dg\xd2\xc7y\n\x82v\x8e\x197\xaa\xea\xc7\xeb_\x16\x0b\xe0\xf5\x1d\x0f\xd3x\x10\xa7\xb1\xdd]\x18T\xa3\x9e\x0e\xf1\xfd\xd4\x90H\x8c\x93q\x18\x9a\xa4\xe1\xc2-\xcckl9\xe4x5V\xe4\x80\x85Y\x83\xff4\xcb\x88\xe7\xf0\\k\xa4R|\xd3!\xae\x9e1x0\xc0u\xf4n\x17\xbb\xd9\x1d\xb1\x83#\xb9O\x12s)\xc0\xb4\xa8\xa0#\xfb\x19H\x14\xc46\x83\xdc#G\xec`\xf6\xb4\x8f\x84\xa4\x90\x14\xec\xa0\x90$S\x90\x83\x08\x89,\x15\xcd!\xe8\xd3\xae\xe7U\xd8\x9e\x143h\xf2\x10\xd3\xe8\xbaH\xba8o\xc28gq\x0e\xa2\xf8%\x8d9EZ&\x90\x89\x8ex\x16\x18\xd9\xfc\xa3\xf7\x83\xce\xdc\xbf\xa0\xf4p\xf59uV\x9e\x8bf\x89\xf03M\xbdL\x9a\x809\x14\xcd\x84q\xa5\x9e8QBqx\xe4D-\x15%\xe6\xd7V\x17:\xa8\x1b%hh\xb2\x96\xd6\xea\x1d\xd2d\xd5\xd5\x1e\xc6\x84\x13zF\xdd\xc9\xe6j\x1c>\x9c\xa4c\xc4I\x1eN\x9c<\xf9\x8c\x8c>\x0b0b\x89\xf3\x91v.\x90\xa7\x9f\x1b\xefI\x91Hb\x1c\xa6\xdc\xa53\xa7F\x9e<\xfeI\"\xd4%\x976\xd2\x89\x9ba\xdcH'(\xf9 [&\x15{\x0e\xae\x08?\xf4\\(\xa4s \xcf\x81T\x00k\xae\x1e\xb0\xa1\xe6(\xc0\xdc*fiu\xa5U\xa8\\4\x9b\xdd\xa05\x89*\x926\xdc\x96v\xca\xf71\xb0\x8f\x9eN\x81\x82\x8d\xce \xe4\xdd<\xe1-\xa3\xcc#I\x15\x80\xc9\xf4*\xc0\x165\xbb&0\x91\xa5\xddG\x0d\x19M\x91Y\xb4\xdez5E\xe1\x8e\xf2\x900\x87I\xd3\x95\xa5\x17\x07\xa7\xd9\xf7!\x0f\x1f\xdb\xa0\xf0>\x16m\xd9l\xc1\xfeAZzW\xb4K\xd6a\x81n\xf92\xe9{V\xcf\xa7\x7f\xd2^$L\xfa\x96\x14H\x12\x95<\xdf\x8d=4\xc7bA\x87\xf4\xd9\xc2\xd7\xed?\xb9\xd6\\\xa1\x96\"\xa5\xb4w\xb8\x19?C\xa1v-\x95ij\xd5\x05\x04\xbc\xa8\xd1\xf6\xf7e}\xe7\xbb\x0d\x8d\xa2\xaf\xfd\x136$\xd6\xcbWz\xdb\x95=\xbd\xd9\xb6\xd5\x98^>\x7f\xfa\x9d\x9d]\xab\xb2^\xf2\xe4t\x90\xd6\xccN\x9eY.\x9azJ\x0f\x10E\xc2\xa8H\xaaF\xf9=:.~7\xf4\xd1\x0f\x05\x06\x85T\xd1\xab>\x86w\x8fH\x12w#\x93\xc2\xcd\xc1\x1b\x86~MJ\xf7\x9f\x92\xe0?\x9e\xd2?\x9e\xc4?!m\x7f$Q\x7fBj\xfeh2\xfe\x94\xf4\xfb) \xf7\xa3)\xf6\xd3\x93\xea\x87\x94\xc3q\x89\xf3!=\xbeA\xc8\x03\xb8\xddCr\xfc\xfd\xa5\xc3\x9f7\x01\xfe\x13\xa4\xbc\xdfs\x92\xfb\xbd\xa7\xb5\x7f\xa2D\xf6\xcf-u\xfd\x93&\xab?\\zz\xa1~\xf1L\xef\xd7l\x0d\x8b\x16\xee\xcd\xcbr\xc5\xddc=\xcf\xf0\xde\xa9\xc4\xecM\xad\x81pyq\xd7m\xe7hs\x86\x80\xbb\x80\xa2\xbcC\xdeT\x91\x95X\xe4\x90\x90\x05Q9aaB-jn\xe3,\xf5\xafY\x8bH\xe1\x1c\xc9)\xb3\x8d\xcb\xb3(\x01\xd9\xf7\xa7a\x90\x86\xefQ\xd7\xc1;RTU\xf3U\xa4\x18\x90c\xbd-:Yx\xd9\x88\xb0At\n{r]\xcd]\xe5\xcc\x95\xb6\xe3\xb2\xa5K9\xed\xa7\xa4\xa5]\xb3m\x17\xec\x7f\xd5Q\xa1\x8c\xa9l\xce1\xe0\xb5\x90t\xba\xf3/\xf9&\xf1I\xb7\xa0\xcc\x7f\xa1\x08\xdc\xcflt|\x92ez\xb9\xf8\xe5GZ\xfc\xe3\xe5\x0bZ,\x96/^\xbd\\\xd1\x17\xbf\x16\xcb\xd5\x8b\xef\x17\xab\x9f\xbf\x7f\xf5\xcb\xed\xea\x97\xe2\x07\xc4*mt\xa6\x1bq\x0d\x13(<\xcc\x9e\xfd\xfeK\xfd\xf5\xee\x97\x9f\xeb\xae\xe8\xbf\xfd\xb4\xa9~\xfay\xbd\xfd\xfa\xf2\xf1\xd7]_\xfd\xf9\xe3\x97\xed\x8f\xff\xfa\xf6\xf3Zr%\xadF\xc6&wv\xb8m\x8d\xf2\xcf\x0bN/\xc5\x18\x85z\x7f\x8d\x91\x07\xad.\xa511\x98\xe5\xcd\xb4R\xce5P\x9dZ\xda0\xe1\x8d\x91\x83\xe4\xd7}\xed]{\x90^\xbbh\xee\xf8&\xdbB-\xc3\x84\x7f5,\x1bh.\xa3S\xed\x9e\xdc\xd2i2\x8a\xdb<\x03b\xf1\xd3\xd0\xb7\xe1T\xd3\xec\xa0\xe2]\xcd\x1aj\n\xd6<\xd3\xa8\xd63Lk\xba\x04T&!\xcb\x1c\xe3\x8c\x17yR\x0eP%\xc3\x9a\xc9\xb6\xe1a\xc7K\xc5O\xc9\xa16s\x15\xdc\x89\xd6$\xd9\xbc6\x17\xfb\x8f\x93\xacK\xb2y\xe7\x90D!E\xfe4\x17\xc19$\xd9V(\xec\xadY\xfaM\xb2N\xc9\xe6\xb5R\xc9\x96\xd7{\x9a\xd5J6\xdcz%[~\xcf\xae5K6\xafUK6L\xb1\x95\xcd\x1bT\x1f\xe4p.\xab\x97l~\xeb\x97l\xf3\x8f!\x14\x1b\x9ed%C\x1f\x8e\x94\xc3\x8c[\xcd\xd0'\x83%0\x13\xach\xe8\xa3\xfe\xb2\x97 V5\xf4\xd1P\xa9\xcb\x14+\x1b\xfal\xa4\xbce\xd4\xea&[\xba\xf5mx\xc3o\x85\x93m6k\x9cl\x910\xf8=X\xe7P\xd2\xb3Z\xe9\xd0\x1e&[\xebP\xaa\x87\xb1\xda\xa1]\xcfo\xbdC\xbb\xd9\x87\x15\x0f\xed\xe8p\xd6<\xb4\xfbg`\xd5C\xf9:\xb4u\x0feb\xafV>\xd9\xc2\xc9\x15&\x18\x01Qz\xbaaP\xb6\x10\x073\x19\ne\xf3\x19\x0ce\x0b\x18\x0ee\xdb\x87\x8e\x12\xbc\xbf\xc4\x0f\xa8i\x86F\x84`S#\x17#S\x9d\xf3-\xda\x04\x03\xa4\xbb\x16\xd2\x1c\x99c\x88\x1c\x9ay5\xc6.\xc5*\x0d\x04f\xb9ArB\x98P\x0d\x17\xc5\x16^*\xf7\xed\x01\xbb\x91\x1fr\xe818Y\xab4\xe2*\xbe@1Y\xb2\x8d\xbf\x87\xc7\xf7\xb1\xd1u\x0e\x80\x0b\xfb\xd2\xf1@\x13s\x0d|\xf1%\x07\x1bd\n\x0e,F#\x13{\xecSXdc6\xd9\xd1VY\x0f5\x1b\xb09\xb40\x1f\x85a\x9b\xdd\x89\x9e\x0d\xfb\xecj[U\xab\xb2\xaa\xe8\x92|\xbd\xa75\xe9\xca\xbb\x9a\xc7$\xe1\xc3n\x8b\xba\x83M\x91}-\x91f\xc4}^\xd5<\xf3\xd0\xc7j\xb4\xf0)1>\x0dO\xe2t\xefB\xf9\xf2\xd6\xa7)\x99\xbdVrEM\xe7mY\x17\xed\x8e\x9c\x0c\x05X\xca\xba\xeb\x8bz\x81|\n\xbcd\xd1\xd8\xc4K\x82 (\xa5$Ry\xf0\x12HR\x8a\x99\xcb\x0c)\x9b\x8b\xdb\xca^\x08\xff\"\xbc\x11\xef\xcebv\x9e\xc1\xf0\x9cez\xf6\x98\xec\xd1\x8c\xc4\xb6{bT\xea;\x94H\xba%\xda\xa1g\xa5g c@FZcl\x9eGl\xc3\x19\xf2\x7f\xd9\\xM\xd4A\x81k\xae\xb37!\x92\xb3LO\x99\x06\xcf\xc3L\xae\xdd:%\xb5\x8d\xd3\x95\xf9\xc3\xd3%\xc3K`\x8c\x04\x92\x1c!Og'82\x9f\xd8cF8\xb7\xa3\x91\x86\xee\xfc\x15\x1f\xb9\xc0\xf9\xa3\x1ae\xfbN\xda\x06\xfa\x10C|\xa1\xe7\x96?\x8f\x11*U,i\xe2\xcdqD\xd2+\xea\x1a\x03\n\xe4:\xc2%~g&\xa6\xf0\x81\x03\xbd9\x91\xfcH\xff\xa3\xd3`F\xa7\xc14e\xce\xf3\x81\xbd\x17:\x1ed\xe4\x12\xe5\x8e\xca\xaabW\x01( !\xee\x01.\xa7(\xbd\xd2S\xee\xf4\xdf\xb6$\xa6\xae+\xab\x15\x0d\xd5\xe0\xeb\xe7-lX\x0c\x04y-\xd7rQT\xd5\x0e\x8a\xb8\xf4\x8d*\x87:\xdc\x07|\xd7f\xf1\x1d\x1f\x0bi:-i\xd8\xa9#:p!\xcd\x18[\x97l\xa7\xe2\xb70\xa8\xa5{:\xec\xafSqX\xb1K\x98w\x13\xc9\xdaz'\"N\xaf1KN\x7fG\xfaF\xf4\xc0=P\xfcC\xf1\x10\xdb\x14m\xb1\xa6=\xc5f!<\xae\x0b\xc2MF+Y\xc6\xc9\xb0ptE_vL\x04C\x1d\x9b\xcd\xa6\xda\xf9\xef\xf70\xb9W\xce\x91-\x8a\xeb\x14\xe2\x01\xe7\xdd\xe0W>Ib_\x80-Q \x1c^\xad\x0e+\xf4&\xbf\x97A*\xa0\xf4Dyc^\xd9M\x89\x0cw3A\xc4\xd6\x0dg=\x9b\xe7ka7\x00\"\x83\x9c\xc4\x12\x8f\x93\x13\xb9P\x81\xda\x9eM+k?\xfe~yu\x8dm\xfd\xc8\x1c\x87b\x0c~{\xfb\xee\xf2\xfd\xe5\xf5\xe5\x87\xf7i^\x11\xf7\x8d`9S\xf7\xf1\xc0@}\x0f\xf3q#o(\xafN\xde Rt\xf1\xe0\xc4\xe4v\xe8\x94\x9a\xe3\x05K\xcfE\x01S\xa8\x1c\x8d\x8b\x05\xffl\xbb< UJ\xf9\xc1\x08\x82S\x94\xa7\x16\xf6\xf1{\xdaRr\xa2N\x19\xe9\xb9\xae\x9b^Y~\xbc\x08`|\x8d\\~\x90\xda\xa4\xb2J\xb6\xdc\xf4N}R\xeb\xd4\xcbc\x81o\x13\x1f\x1f\xfc\x8f83\xc5\x0ece\xd1T\x15]\xc8\x0b0\x7ft0\x8b\x93\xfb\xe2\xd1w@r\x0c\x18\x13Xhqy\x11\xb5Z\xdeV\xf4FX\xfb\xf6\xa0(\x1e\x1d\xe2)\x0f\x1f\x1d\xe2G\x87\xf8\xd1!~t\x88\x1f\x1d\xe2G\x87\xf8\xbf\x93C\xfc\xda\xd8n\x9a\xc6a_F\xfe\x86\xbe\x8e\x0c\x03\xbb\x19\xea\x0eL\xf3R\x03\xbeG\xcfe\x11\x92fp/;\x84\xfc\x9c+\xef'\\`\xcf\x85\x0b\xd3z3\xc3g\x89\xde\xb4B5T\xbb \xfeJ\x84D\xba\xb7\xf2X\xaa\xebX\xaa+\xcfC\x19+\xf8cu3\x8b\xf3j\xfe\xd1\xfb]]\xee_Pz\xc7R]!\x82\xe1 \xd8\xa3c\xd6\xeef\xb4[66\x1e\xc7\xcdy,\xd5\x95\x84B!\xf1u&\xf1-N\x12'\x96\xcc\x86J!\xe9\xc8\x14\x92\x87N!O>#\xa3\xcf\x02\x8cX\xe2|\xa4\x9d\x0b\xe4\xe9\xe7\xc6{R$\x92\x18\x87dq\xe9\x1cKu\x91}\x8et$\xda\xc5%4 \xf1\x82\\s\xa2u\xbb:\xafv:\x0b\xda\xc5\xc9\x06\x19\xa8\xeb\xe5\"]l__\x0e\xd2\xe5\x99U\xff\nbW\xbc\xfb2\xbc\x1bm\xa2i9W9\xddQyWC\xdd\xdb\x8e\xe1\xe9\x99XIB6V\xa2&o|}\xa0\x85\x0b\xc8\x8a\xa5,\xb5(-n~\xc9\x19<\xb1\xb2\xb6\x12$!*9V\xb5\n.\xda\xb8\xec\xae\x16\xb9pU+\xd5\xbb?\xcf\xaa\xd2\x87\xb1ZW\xe2\xed\xb9s\xbc\x8aC\x0d&\xd4\x11\xc2\x91$\xd7\xc32\xec_|{5\xcb\x19\x80\x86\xfaB\xf9\xf7\xcf\xd4l\xa9\xde;\x9d\xff6\x87\x9b%\x82\xaa\x97\xc1rR\xd6\x01\xef\xe8If_\xda?I0\xc7@0\xbb@z\x8f\xe9\x19\x05\xfc\xb9\x04\xf2z\xc3\xf3\x07\x04\x83\xf3}\xee{\xd4q\x9f\xa6\xbcL\xccp\x1a\x8e\xc2\x9f\x87_\x1f\xb8 \x19V\x90\n(H\x83\x12\xa4\x81\x08\x12\xe1\x03 \xc0\x81D\xc8@\x12X \x15&\x90\n\x10H\x82\x06\xe4\x81\x02b\x17\xbdq@\x00OV\xd2\x00\x04`O\xce\xff\xfd\xba\xfd\xe7w\xf8?\x91\xab\xff\x00N\xfe\x83\xb8\xf7\x9f\xd0\xb1\xff\x1c]\xfaO\xee\xcc?\xac\x1b\x7f\xe6\x9aB\x1aIG0\xce\x9824\x94.\xd4\xb6\x8a\xedEA (\xe8\xe1\xd3aZJP\xe2\xec\xd8P:Pl!\xe6I\x03:)\x12\xdb\x98\xa0.\x88g\xc0L\x00\x16\x9c\xc1M\xde\xe9\xb1\xdc\x19\xd3\xe0\xbe5\xd89\x13\xa0\x0b\x04\xa9\x14\xeb]\x85\x8c\xbb\xe2\xc2\x9b\xe23\xff\xa2hN\xf3bd\x06O\xcc\xdb\x84e\xca\xdc\x1f\xb7)N\"\x7f\xde\xc6`N\xc4Y\x99vm\xac\xa1\xaeI8\xc9f \xadld\x94\xae\xbb&\xed\x96e\x91Hq\xbe$\xf1\x931\xcf\xc9\xd3\x99\xed3 .E\x9e\xf5\xca\xef\x16A\xbf\x1e\xe1 \x11\xe4B\xfe\x90d\x1bVwQU\xb9\xc5\xda\x8e\xb5\xacr\xad\x9d\xa1ZV\x84l\n~}*\xbd\x15\x9f\x86\x07\xd4\xf9\xda\xf0?\x15\x95\xfe7\x15\xfc\xd6I\xc3\xa7da\xd4\x01\xf2@w\x89\xdfZ\x9aL\xfb_\xfb#|\xa0p}\x11\x11$-\xed\xb7m\x0dH\x8f\x8f\xc5\x1d\x95\xa6\xdd\xb3\x9a~\xebo\xd8\xc3}Cn\xe9\x9d\xa3v~\xd9\xd2v\xc7>W6b\xf60\x9b\x14J\xd6M\xd7\x13\xbaZ\x95\x8b\x92\xd6}\xb5;#\x1f\xeajG\x9a\x9a\xdf5\x9a\xd5\n\xee\xae\x8c\x0d\xfb\x0b\xbfo\xb6\xd5\x92\x07\xfe\xd1\xde\xb0V\xf1\x972ge[\xd6\xfd\xcf\xaf2\x84\x93`\x8dOM\xbd]\xf3\x1b\xab\xf8\x0d\xeeFE\xcdx\xe3\xd7\x17\x1eh\x0d\x13iQ\xd9\xd6\xc5cQV\xc5mE\xcfl\x1f\xc7%\xa7^1\xfdCM\x10\xa3]\x93-\x93?\x8c`\xeel\xd9]\xb8\x93W\x95\xebr\xefs\xc7;\x91\xe2\xbco\xfa\xa2\xd2\xfc\xbc\xc2s\n\xfb\xc8\xd8o\xc2u\xb0\xad\x1c\x0c(\xd7\x0e\xed\xe9[\x91\x8a\xaezB\xd7\x1bv\x03\x17\xe1\xef\xc2\xee\x03qO\xb0\xa5\xa1#6s\xb7;B\x8b\xc5=)6\x1b}N\xf8]\xf6\x86\xf3\x89\xcdL\xbe_F#\xc8f\x81\xef\x99\x86\xf4\xed\x96\x12\xeb\xaa[\xf4\xda\xa8\xf9\x83b!M\x82B\xa29~U\xe8I\x1e\xde\xf6L\xf3\x0b\x10Q\x1b\x90\xcb#MR9\x9f\xf0\xe7\xcb\xce\x99ek(\x0d\xdb\x8e-\xf7\xde\xaa\x0c\x03\xc3\x97\xc2>\x863\xb1\xaf\xcb\xbb\xbai\x9d\xd8n\xf9\xa5\xd8\xdd\xc0,\xe9\x8b\xd2R\xa6\x9a\xa0E\xfd\xf3\x17D\x10\xb3\x17\xa3\x1cv#\xbf$c;\xd2\xa2\xc4\xfa\xa15\xc7|7\xed\x92\xb6g\x7f\xb3\x87rU\xd6\x0b\xfa\x9a,\x9an\xddt/\xba\xe5\x03yy\xf6\xeaG\xf5\x90\xb8\xc2\x19r\x18\x04\xedP%\x91\xf3A\xd7\xb7t\xb9\x04>\xee>}|\xa3N2q]\x82\xf3EI\x0e\x8d\xdc\xb0\xc6g\xe4\xad\xd0\xe3S\x95!M\x15\x19\xbcy\xd9\x05\x1b\x19\x95\xb1\x0e=\xe0`z\xe1\xc6cR\x13\xec\xed\xe9\xbeFhA\x9f\xdb\xcc~Gh\x819% \x88\xd2c.\xf4\xb9s\x91\xa7y.\xa1\x1d:\x17\xfa\x13\xa6\x1b\x9f\xd3\xd3 \xed\x98u\xfc\x18dm\xbbNR\x9e>\x06Y{\x9e\xda\x97\x9f\x15!>\xbb\xb7\x15\xe9c\x16\x9f+B\xf7p\x9eW\xa4\xf3\xfd\xf8_\x91\x8e\xf6\xe5\x85E\xba:\xac/\x16a\xe0\x99xd\x11\xce\x9e\xc2/\x8b\xb0\xb1w\xef,\xb4g\x16d\xed\xe1cF\xf7.\xb4XM\xc8\xa8\xab\x17\xda\xfet\x9d\x19\xc2!\xc7\xba\x83Qb\xd2E\x1ct\nC\xf3/\xe5<\x0ebh\x93\xdc\xc4\xd0\xe6u\x16C\x0b\xb9\x8c\x91^\x91I\x9a\xe8>v\xe8y\x9c\xaf\xce\xaa\x8d4\x14,\xbcneh\xd3\xac\x04\xb1\xc9\"6\x0b9\xfeg\\2\xf8\" \xe3\x9eih\x07\x1ep\x8a\x0b;N%6\xdc\xa0\xd3\x15\xda\xa1\xc7\x9d\xe7\xf4F \xc6\\\xcdN\xb7{\x0c\xf2\x1e\xe1#\x8f\xd1\x89\x0cf\xe4Bf\x0e&\xdb\x9f\xeeP\xf0\xd7\x9b$\x11vf\xf0\xb0\x1b\xf4\xc6\xc4\x1db\xf6`\xa5K\xc9HC\xa4s%\x81\x9e[\xcc\xe01\xf8\xe9\xd0\xc1O\xd00X\x00\xd9#4\x80\x84\x94\x02\xbfJ\xe0\xc0\x04HL\xa4\x04O\x86\xb8\xb4\x19\x0f\x1b@\x88M\xc3\x0e\xe0\xdca\xfdx!\x05\xc4\x03+ \xa9\xb3\x88\xb8\xc8I\xd2<\xce\x033 \x11\xa8\x01\x99\x1bn@\xbc\x90\x03\x82\xc2\x0e\x08\x0e= {\x9f\xdf\xf1P\x04\x84\x98p\xd3\xa3p\x042 \x92\x80\x10\xb3@\n$\x04T A9J\x92fj\x02h\xc1\xff\xa9y\x80\x0bd*x\x01\xa1W\xd6(\x80\x81L\x001`\xbd\x00\xac\xc1\x0bd (\x98\x81\xf8\x00\x0dd\x86\x85\x9b\x0f\xdc@\x92\x00\x0e$\x0er \x01\x83\xc4x\xb0\x83Eh\x80>X\x7f\xc0\xf0\x0fy\x00?e\xc7\xe6\x97;\x1d23X\x02\xa4\x0b\xcfUx2\xd4:y\x92\x16\xc5y>\x96\x1a\xc5y!\x94\x1e\xc5y8\x96\"\xc5y!\x9c&\xc5y<\x9a*\xc5y#\x9a.\xc5y#\x9c2\x85\x8cB\xdc\xc8\xf7\xe2\xb8\x1bh\xe3\xd07\x01\x82\x89)T\xc8~\x918H\x07{\xc1\xe3 \xfd\xcc\x86\xcaAh\x1f\x16\x9b\x830\xb0?\x84\x0e\xd2\xd9>q:Hw\x87G\xeb L<#\xcc\x0e\xc2\xddS!w\x10V\x0e\x80\xdf\x81\x16B\xf1@\xf3\xdf9\x8d\xa7&\"z\x0c*^\x99>\x1e\xdd\xe3!\x18L\x0f\x93r\xce\x8c\xc4\xfb\xa0\xb4$\x06h2\xea\x07Z?\x12\xfb\xe3\xe5-\x03\x01\x04\xcd\x8b\x03\x826\xf1B\xe0\xd5IS\xd6m\xd7\xc3\x1b\xae\xb5.\xc9\xed\xee\x94l7K\xf5\xff}\xb9\xa6]_\xac7\xdd\xa9\xf2%\xc1\xbd\x06j\x9a\xb5\xb4\xe2\xcf\x9a\xd5\x8c3\xae\xaa\xa0./oX\x97\x9973\xf6\xca\x0b\xc6\xa0\xf9\x1al\x84\x1e\xd0\x8e\xf4\x9c=\x00v\x15\xbe\xee\xb4\xee\xdb\x1dW\xd8E\xcf\x08/\xb7\xa9\x17g\xad/\x8f\xce\x0c\x92YL\xae\xb8\xd8/\x9aV\xefUL\xf7\x13\xcc@Ut\xbd\xec\x1eah\xeei\xe0\xe0\xd4\xd2;\x0fb{a}\x96uO\xefh\x8b\xce\x81\xf7z\xce\x8eA\xe9.1\xb7.\xb0Sv\xa4\xac\x17-?\x96\xe5\xd7\xc3\xc3\xa1a\xfc\x1aIa-\xca\x9b\x0d\xbd{A\x00\x01VR\xd8\x1ceS\x9fC\xb7\xbcB\xb8#A\x0d1q\xc1\xbe\xe3wL\xe5\xd3+\xc7\xcfw\xf3\xba\xe1}\xc6L#\x97\xcbK\xe5h\xdd\xb3\x81\xc4vP+R\xc4\x0by\x11\x03\xfa\xff\xd9\xfb\xbe\xe6\xb8md\xdf\xf7\xfd\x14]\xfb\x12\xa7n\xac\xd8I\x9cM\\\xb5\x0fZ\xdb9Gu\x13\xc7\xc7\x92w\xefy\x9a\xa5f0\x12#\x0e9&9\xb2\xe4\xba\x1f\xfe\x14\xf1\x87\xc4\x7f4@\x8c4\xce\x19<\xd9\x1a\xa2\xd1\xdd\x00\x1a\x0d\xf4\x0f\x0d\x0d\xd22\xd54P,\xb3y\xc1\xa0Q\xa4\xcf-,\xd9\xf0_\xf3\xd92A_\xd2_\xa2\xd8\xe3\xff\xcc\xce\xa0Dw\xf2\xac\xa4\xbf\xa1\x99T1*V\xce\xacL`Q'\x9e\xa6\x11J\xb16\x1d\xc6\x88\xb8T5r\xb0l\x82 \x08\x15\xab\xabT`\x8b\x87\xcd\xe42\xbcH\xb9\x9al\x87%*b*$\xcag\x12\xac \x17$\xdc\xf1\xbe \xea6\x0e\xcbc~BZ\xec\x0cF\x19\x0c'\xa3\xf3R\x92\xe1g\xa4\x93\x81\x08\x05Y\x18\xc0\xccKSa\x8c\x0b\x1b.\x8b\xad\x96\x13,\xeb\xb6h\xcbf\xc7\xe6\x1e\xb4\xe4\xaahiH\xb1\x18W.\x7fr1\xf6Q\xf4\x03-\xac\x9an\xa7pS\xd5\xb2~C\xc2\xa8s\x07;R\xa8\x85\xcePg\x06?4j\xf2~[\x05AY\x82\x16\xb6@\x08\x1c\xdf=\x89\x8e\x9fX\xe9\x1d\xdf=1N\xa4\xc3\x9f\x1e\xdf=9\xbe{\xe2$\x9d=>c\xb4\x90%FcP}\xb88\x8d\xd1\xf4~b5F3\xfb\x8a\xd7\x18\x0d=l\xcc\xc6h\xfe@\xe26\x06_\x8f\x11\xbb1\x98\xd8s\xfc\x06\xfe\x17\xbf{\x92+\xb6\x03F|\x07\x10\xa7\xab\x86\xc8\x19c=`\x89\xf7\x80-\xe6\x03{p\xbd\xe7\xc5\x804b\xac?m\xbe\xb7\x16\x0b\x82 _3\x03D\x1a55\\\x04>W\xde\xed\xc8\xbbCG\x10rj\xfd\x01\x14\x80\x88 \x8a\x19F\x02O( B\x9c!c)\xfe\x90\x12x\xc3J\x10\xe2!\xa3v\x1c!&\xf0\x84\x99 \xc4\x1eRE\x81p\x13\xb8BN\x00\xbe\xb0\x13xCO\x10\xd8\xd2\xa5\xc6\xa4,\xa4\x8c(\x15\xb8\"U\x80Th\x9e\x88\x15xT\x90-r\x05Q\xd1+\xf0Z\xb7\x9cQ,\xb0E\xb2 o4\x0b\xf2F\xb4\x00\x17\xd5\x025\xaa\x81>5W\xabD]L\xb7\x1f\x9a\xa7\x9d\x98g:\x86\xcb\x16R\x03\x7fX\x0dr\xf2\x86;;\xb7\x84$\x82a6\xc8\xcaf\xd4 z\x90]k\x84 \xe63l\x18\xb5\xf4\x98\x9c\x93\x90M\xa6\xe4\xc8\x80T\x1f\x17\x1b\xf0\xb2\x11\xa1O\x9c\xda\xc2!\x03\x9c\xbe\xadA\x1f\xf3Rs\x80\xa9\x8cA>pvi\x92\xb7k\x0f\xfaAhmw\x0ej\xc8\x17\x00\x84P\x10\x10\xf2s\x893j\x960\x17`\x82\x82\xb0\x07\x86\xa3\xcc\x9b\x97q{R /\xbf\xb9\x83\x85\xe0 \x18B\x023a+\xe0\x0e\x1cN\x07\x14\x8e4:\xee9o\xad8\xc7I\xb1\x07\xca\x92|\x16\x9d7\xa4\xd5M\\\xc5\xf4\xd6\x9cV\xc0.\xa1F\xcdb$\x0cU\xef\xc1\xe7 J\x85\xb1\x1a\x01\x12^\x99\xd4?D\xac\x95\xb9\xe43\x19\x10\xb2\x9a\xbfh\xb44\x13\x84\x97;\xd53 H\x83\xb5O\xc9\xfd\x15\xd1=1|\x87MY|'Z\x10\x12:\n\xd3\x93\xc2FlA\x86\xdde\xb3!@\xee\xfa\xb6\xe0g\xb4\xeb\x92'\x0e\xe1\xd4\xca>\x0c\xa08\xbe\xcf\x86atn&\x99\xe3\xfbl\xc7\xf7\xd9\xe4\x9f\xfc6(O\xc6\x97\xe3\xfblq\xd9\\\x8e\xef\xb3\x1d\xdfgc\xe5\xf8>\x1b&\xd7J\xda\xfbl\xba\xab\x13\xf9T\xdbT \xde\xbf{\xc5IaSY\xa4=\xda\xc6\xeb\xea\xceC\xde\xfc\x0e\xbc\x15}\xf3\xed<[\n\xe4eu\x1c\x91\xb3\xe2\xdd\xcf\x07\x8eC\xfc\xd8UV\xe6\xd0\x0f\xcd&VR1\xadVbR\x92\x0f[t\x9d\x15+\xbe\x95\x15\xdbp\x98J\xf0\xa9\x83\xe3\xdbg \xd8X\x0f\xad\xe3\xdbg6p!\xf6\xfb\xe3\xdbg\xa1\x1a\xc7\xb7\xcf\xac\x038\x07\x1a\xd7\xd2\xc0^0\xb9\x96v\xb2!s-\xb4\x1f\x16\x9fka`\x7f(]Kc\xfb\xc4\xeaZ\x9a{x\xc4\xae\x85\x89\x03\xc2\xedZ\xb8{,\xf4\xae\x85\x95\x07\xc0\xf0\xb2r|\xfb\xcc\x86\xf3e%'\xda\x97\x15\x13\xf3\xcb[\xf2;Y~\xb5\xa4\xa1\x80\xed\xfa\x17\xc8`+\x16\x98\x95\xa5\x0d\x11\x17\x9f\xfb\xdd\x8f/\xfa\xbb\x17w/\xaa\xea\xf6\xc5\xdd\xf2\xe7\xcf}\xf7\xf1\xae\xba\xf9D*\xc1\x83-4\x1c+\xf0\x14\xf4E\x89\xfc\xe2\xa7g\xdf\xaf\x7f\xba\\>\xfd\xf1\xd9\x8f\x7f{\xfa\x03\xb9|\xf1\xf4\xe7\x17\xcf\xd7O\xbf{\xfe\xdd\xf3\x1f\xff\xf6|\xf9\x1dYj\"\xab!c\x8b\xd0\xec\x83\xe7\x1f\xef\x9cb\xff\xdc}\xac\x96\xd7\xdfww\x9f\xea\x1f~\xf8\xe3\xc5\xb3?>_\xf5?\xb5\xdd\xf5\xed\xc7\xfbu\xfb\xc7\xb2\x95\x19\xbc\xa0\xd0\xc9\xa2fK\xeb(\xc8\xb0\x06\x15J\xa8\xa4\xa8\xbaF\xe6\x83\x1b\xda\xd5\xb4\xed^6\xed*\xfa\x89\x17E\xbb\x12\x0d\xe6Ws\xa5\xb0\xbfk:\xd1\xab=\xff\xf8\x9dS#\x9f~\xf8n\xf5\xf1\xbb?V\xb7\x9bU\xf1y\xf7\xe9\xf3\xb2X\xad\xae\xaf\x7f\xba\xda\xec\xbe\xdf,?\x93\xef5!\x10\xaf\x00\x06\x85\xa0\x00Q>\xe5\xe9\xbf\xc7s\x06*K\xdf\xc0\xba\xac\xe9\xf9\xc2\xd8\xe7\xf4\xfcC_\xdd\x85\x9eYg\x08F\xc5\x16\x9a\xfeQg5>s\x00\x0f \x86\xf7\xe1\":\xc6\xcfzT\x83\xce\xceJ\xc6\x83\x9a\xe9\xe2\xb2#\xed\x01\xc5\xba\xccg\x9e\x13\xc2\xb1/>f\xbd\xd1\x11sf9\x19?&\x96@h\x18\x9dXBiU[\xc0\x00\x7f\xd76\xea\xb5\xf8.\xfe~\xad:\xbfVF\xa4O\xb0:\x9eF.\xc7\x0c\x98\xd7M\xb5\xea\xf4I\xf1\x84:\xf7T,\xb2\xfa:\xc9\xf3\xd4xr\xd6vS\x00o\xe4\x1d\xb5\xad\xb7\x1e>\xf9`\x87\x1f\xd8\xad\xd8\xb3\xd70^\xa4d\x16\x0d\xe0l\xb3\xad(\x84\xb3\x83nusr\xca\xe1be\xdd\x93v],m{\x9d\x81\xc6\xae\xa3\x98\xdbv\xf4\x10\x08\xdb/\x0d\xea-[\xb6#yE\xb79\xba\xe8\xc1k\xc2\xfbQ\xc1d>-\x17\x81\xc7\xd3s\xfa\x95\xfc\xbbm\x075\x14\x9a\x91\x9b\x08\xcd\x15U\xd5|\xe2\x18\xd2\xb2\x96\x14\xac\xd5\xa4w\xa7,!J&\xb2\xfd\xa2\xb0\xf3\x9a\xb0s\xdc\xb1\x12B\x7f\x04.\x08\x07B&\x003/\x07\xfb\xae\x06#\xb0\xbc\xd9\xae\x05\xa3.\x05#\x94\xe1\xbf\x10\x1c}\x1d8\xf62p\xdcU\xe0\xb8\x8b\xc0\x91\xd7\x80#.\x01G^\x01\x8e\xba\x00\x1c{\xfd7\xf6\xf2o\xd4\xd5\xdf\xb4\x8b\xbf\xe1C,V2_\xfaE_\xf9\xdd\xf3\x85\xdf\x87\xb9\xee\xbb\xbf\xcb\xbe\x8f|\xd5\xf7\x01/\xfa>\xe85\xdf\x03\xb8\xe4{\xc8W|\x0f\xe6\x82\xefc\\\xef\x0d]\xee\xf5\x07\x0d\xf87\x19.\xf6\x06\xee\x00%_\xea\xb5<\xdb\x03\x12\xae\xc4\xf81\xbc\x82\\\xd0-\x92\xb8\xf1;\x0eE\xe8\x9b-T\xe4\x96T\xdciU\x8fPlf\x87\xf9^':\xc9\xcd\xaecw\x85\xa1\xa8\xef\xc5\xf6\xab\x93.\xc5Y\x83A=\xbb\xddW\xc8\x1e\x9d\xd8\xb20\xfa\xea\xbe\xa3\xacaW\x0f\xfe\xbc\xe3\xea\xb3\xe0\xa6*\x87\xbd\x1f4\n\xbc\xda@\xd0\x0d-/\x8a\xe5\xd2\xea\x1f\xcfp\xd6\x1d\x1ed\xb8\x97NGa\xc5\xf6b\x10\x84J^\xec\xfa\xeb\xa6-?3\xfb\xd2\x92%)o\x07K\xb7~\xea\x9a&\xdakB\xf2\xe5i\xf9\x98K\x14z\n\xbf\xa0\xa3`\xe1\xdc4\xcc\x95o\x9a\x06\xaai\x1ez\x89\x85\x01l\x0c[(\x89Ar\xde\x17\xf5\xaahW\xb29\xe5v\x9d\xdd\x91\xdb\x14\xed\x0di\xc7\xbfYc\xad-\x81n\xb7\xdd6\xed\xd0\xea\xb8\xd9\xa0\xfc\x9c\xf0\xe3\xdb\xa2\xef\xdb\xf2r\xd7\x13\xd8\x14\xf7\xe2 \xd7Bky]\xd4W\xf4.4\x95\x89[:\xb1\x1c\x0c#r9\xac\xb2\xce((\xddV/\xa8\x1dZ\xb4MU\xed\xb6\xaeNH\x0f\x89\xfe\x8b\x9b\xbc\xa2\xaa\xa4\x97I\xa4\xa1A\x15W\xf6\xddt\xa4Bg\xb7U`aH\x14\x02_u\xc2\x9c\xd0\xab\xec\xd6\xb03Sk\xd55@\xea\xe2\xb2b;3\x8a\xac\xe0\xf6\xf6\xef4P\xcb\x18\xe2\xd4\xec7\xc8\xc5\xd9.\x97EU\xaa_\x1d\xec\xee\xdfx\xfb\x11\xda\xa6\x91\x9fU\xa1\xfe\x17,\x9b\xaa\"K\x11\xd6\x1cO7?\xd5\xc6F\xf2\x92\xc3CZ\x16\xba\xb304\xe2\xb7\xe7=f\x80\x86b\xdb\xf7\xc5\x16\x03p \xc7[\xe6\xe9_\xf25\x92Qc\xc7G\x0c\x1c\x0cOmA\xe8\xeeG\x80q;\xce\x18\xbfZLT\x00\x01\"\x0e0\x93\xa0<\x0b3a\xec\xafM\x91\xe6\\w\xdf\xc3\xc0L\xf8\xb4\x0b\x18\xd0Xp\x05\xb6s\xd1L6\xc0y\xe5\"\xd3\x88\xb5.cJ\xd3\x01\x13\xd1y\x9e7\x00\xfb\x13\x07F\x13\xfb\xb6#a!1\x16&D\xc3/\xa2\xf4\xbf\x84Y\x94UV\x8d\x15\xd5B\x19\x17$,\xe4\x94I\x1a\x96~\xae \x0b\x89\x845n!\xc5xDH\xe8\xb2(\x11\xc2&1\xc4\xbc\xde\xab\x1al\xe4\x98c\x97\x96p\xf0l\x1e}L\xb7\x1fs\xec\x8e%\x10B\x0b\xf6\x05\xffhN\x18\xed\x98c\x17\x1dM1\xaa \xc2j\xb1\x81\xb5\xd8\xd0Ztp-*\xbc\x16\x1d`\x8b\x0c\xb1\xc5\x07\xd9\xe2\xc3l\x91\x81\xb6\xd4P\x1b\xce\xf2\xb1\x929\xdc\x16\x11p\xdb{\xc8\xed\xa1\x82n\xfb\x0c\xbb=z\xe0\xedACo\x0f\x1c|;\x88\xf0\xdba\x07\xe0\x0e(\x04\xf78A\xb8p\x18.tT=~\x95!\x14\x17\xf6\x81\xd2\xc3q\x0e\x82\xc7\x1c\xbbJ9\xe6\xd85w4\xc7\x1c\xbbSAl\x06D'g\xcb\x0d{\xcc\xb1\x9bG\x8f\xc7\x1c\xbb\xc7\x1c\xbbR9\xe6\xd8\x95J\xc8\x94\x1fs\xec\x1es\xec\x1e\xd2\xe9\xb2\x1e\xed\x9c\xae[:ch\xea\x85I\xd3\x7f\x90t\xf9 )\xc8\x8c\xf6\x02A\xf7\xf1s/\xeb\xbe\xe8qV\xf6\x1d\xf6\xcc\xcaJ02\x1f \xe5\x97\x98\xff\xf30d\x96\x98\x99\xf6K\xd2\xdf2\xc9\x9d#'\x9aL\x0b\x13\xd4C1\x96\xd8\x0b1jN\x8a\xe0\x1ds\xec\x06\xf7?\x82\xe5\x19^W`2A^p\x14+\xa3\xa6\x8f9vE\x89\x15\xc4\xe3%[\x18K\xb3\xe621\x9f\x0e\\\x96\x0dp\xa2\xef\x03\x91\xc5J\x96\x9e\x89S{\xa2\xa5\x03{\xbf\xa9b\x19\xf9\x1dS\xfcO+\x11\xbc\x17j\xd0\xf3\x06\xe939\xa5:\xcf \xabU\x06\x9fA\xe7\xc2i\x01=\xc7\xb3\xc7\x1c\xbbQ\x19W\x8f9v\xdd4r\xf8\x93(Y\xb1\xc6\x18A*,Ub\x07\xc7K\x95h\xa8\x11\xc3@\x16\xd1\xc7\xd7\xe3\xe4\xd8\xa5a\xa8{)\xbb\x96\x96lWO\xfc\xe5\xc8\xe5\x92\x17!\xc7\x1a\xd1\xfb=q\xb5\xd8[\xc0\xea\xdbI\xf3\x13\x9c\x89\xb1~\x02\xf0Oz\x8f\x88\xdfX\xe1(6+)\xcb\x9d\xb3\xd3\xaak\xe0\xa6n>\xd5P\x0c\x03\xe0\x97a%\xb5F\xb2\xf6y>\xe3\xd7\xc0\x04\xc8\x13#E\x1c\xf6\xe9H<\x19ug%\xc5\x13%=\xa1i>\xca\xfe\x1a\xd6e\xd5\x93\x96\xac\xe0\xe6V,-=i\x8b\xbei\xcd\xf03\xc7\x80Y\xc5\xf7\n\xc0+\x8a\x89\xa6\xb8:\x82s\xd6m\xd5\xbd\x98d\xf7.h\xcdt\x94\xda\xd08~\xb3^\xf3\xc8\xb9\x91e\xda\x17,\x98\xb9\xff\xcb\x96e\xa3Wc\x1f\x06*\x81\xeag\x1c\xf3\\\x93V\x92\xd7Ew\x9d\x87\x9f\x81\x12e\xa6\x9e\xee\x1b\x8e\x9d\xe8\xc4\xff\xb9f?D\xb5\xef\x0bB\xb0\xe0\xb5-\xee \x98{24D\xd3\x84}\xe3 J\x8b\xd2\xb4\xba\xb6\x97\xcdf\xd3\xd4\xb4\x1d;\xfc\x82eE\xda\xab\x98\xac \x16\xb4fI\xceZ\xe9\xcc\x9c\xa6\xcd\x1dC\xd6\xc3 u]q`\xe5 #\xf7\xf5t4O\xf5\xf2\xed(\xf2hC\xca\xfa\xb6\xb9\xb1\xf4mYow\xfd\xc1at}\xa3\x0d\xd5\x118\xd7\x85\x95\xb7C7\xf0\xac\x95,+\x17\xb5YUY\xdf\xc0e\xb1\xbc\xa1Yf\xaf\xf9\xbd\xc2\x10\xd6o\xe8<\xfb\xaey\xccs\xe7\xde6#EC\x1cj`\x86\"\x98\xe6\x89\xaf \x13\\\xe9\x97\xa6\x857]_\\Vew\xed\x81\x06\x83\x08\x12\xb9pM>\xfb\x85\x14\x1b+\x91\xdd\xc0\x95dI\xb1l\xf2\xf24\x88\xe7!\xf6\xaem\xb6\xcd`\xa1\x03\xb2\x8df)\x8f\x804_\xddV\xb4\xbd\xa6\xbb\xff\xbe\xdd-iD\x94.\xa6\x9b\xa2\xed\xae\x1d\xb8)\x80\xae/\xfa\x9d\x0f\xdf\x8e\xd0\xe3\xd9\x08s,\xd7lq\xa2\x86\x82\x9a\x121L\x04s\x01X\x190[\xfc\xc7\x8e\xc6C\x19,k\xe8\"\n_\xd9\xee\xdc\x88A\x94\xce\xc2p\xf3\xf7o^\xfd\xfe\xfe\xf5\xe2\xec\xed\xbb\x0f\x17\x8b\xf3\x8b\xd3\x8b\x0f\xe7(h\xb1\xab\xee\xbb\xf7\xbf\xbf\xfb\xfd<\xa1\"\xfb\x9b\xc7`q\x08t*\xc3x\x8b\x17T\x8aO\xa3\x81\xaa\x12B\xd6\x0b\x9f.k\x8aR\xfcvW3\x07\x9d\x8d\xaf\xa1\xcf=\x95\x02]b\xd7\x9d\xf8U\xc7\xeeJ#\xba\x86\xa2\xbd,\xfb\xb6h\xef'KA3.\x8c\x0b(\x1b\xb2\xf1\xbc\xb1\xbf\xd99c\x7f\xb3\xf3U\xb2\x89\xa6x\x06\xdb\x96\xdc\x96\xcd\xae\xa3)\xdd\xb5)8\xe1_\xad<\xf2I\x7f\xd1\x16\xcb\x1b\xb6;g+\xff\xe8\xa2\x13a\xe5C\xae\xb5\x7f7#\x115\xfc\xb7A\x86\xe5uInY~\xcef\xd7\x0f\x826uhGc\xfc\xc4j\x1e\x9c\xd7\xf2@k\xdc\x7f\xf2\xf5\xad\x17\xd9V\xb8\"\xc7\xa1\xca\xfe\xff\xed\xb4Y\xb2gC\x14%\x84\xbb\xca\xb3\xa2\x9cS\x1a\x82o1$\xa6\xfd\x1e2S\x88(\\f>u\xca\xfa\n\xba\x1dM\xfd\xf2\xcd\xba(\xab]K\xbe\x19\x16\x9d-\xcb\xee?\xafO0K\xcc\xf9\x87_\xa3l\xb5Y\xeb\xdd\xe9\xb9\xff\xce\x8e\xfa\xf9\xf9\xff={\x17\xf1\xf9/\xa7g\xbfbV\x9eX9\xe2\xd6\x1c\x07\xf5\x94\x86AYg`Ww\x84\xee\xf40\x97qL\xc5\xeb\x1c\x0c\x7fS\xcc2\x91F*\xcdv\xcf\x06\xdbz\xe7r\xc2\xacM\x0d\x9d\xa675\xfcMjj\x14a\xd8\xc3u\xe5\x8a\xef\x00Y\xa37%=R\\\xb1WU6eG\x1f\xb3\xe16\xb7iaE\xaa\xe2\x9e\xac&^c\x98\x1b\x86\x88\xce\xdc\xf07\xa7\x1e\xa6\x03v+\xc7\xc3<\xd4A^\xa2\x84\x0c\x06s\xb8\x7fgs\x9c\xd4\xcbb\xdb\xed\xaa\x91\x05\xb1p\xac\xe9\x92\xc8\x0c\x89X\x0f\x1d\x04=>\xaa\x9f\x17\xd6\xd6\x93\xeek\x98\x1e#\xa0\xaf&4k\xa1\n\xfe\x96\x93\xe0\xa4q\xbd6\x02\xdc\xf9\x15\x1fNi\x84D\xb6\x1d\x87\x11>\x8c\x0b\xc4:\x17B!\xd3\x01&\xdf=v\xc6}b+=\xc7\xc9\xa68\xf9\xd5\xea\xb8{\xe9t<\xf7l\xd6\xd4\x1b\xa2]U\xf4}\xb1\xbcf\xd4GD\xff0G\xac@\\u\xe4\xf2\xf1E\xf7a\xce[!\x8a\xca8\x07\\#M\xcd7\x9d\xfc\xcf\x1cS\xab\x8a4\x1e\x06$\x85\x9b\xd5\xda\xf88\xb3+\x06\xe3PzZ\xa4\xc0{\xce\x91q\xa0\x8e\xed8C\xc6\xbc\x03\x9c\xe1\xe0I\x8d\x0f\x12\x07\xd6\x9b\xf3\xe3d\xc6\xaf}|?6\xca\xd1\xc6I\x1a,\x06%.\xdb\x859\x0f[\x1eR^\x89\x15!0?\xd6\xa0\x7f\xca\"q\x8e`\xb4D\n\x13n\xf6qu\xc0x@\x0f\xd7\xc1\xbd]hgw\x84\x03&r\x8f2s\x18\xacY\xd0\xd0\xc1~\x04 \xe2\xd22\xd8=8\xc2\x01\xa3\xd5\x9e\x882\x01\x0c\x1c\x90[\x929`@\x0b\x89(\x17\xcd \xe8\xf2\xae\xf3:l\x8f\n\x03Ty\x08yt] \x03\x9c3\x07\x9c\xd19\x0f\xe2\xf8\xa1d\xc6XK\x04\x99\xa0\xc4Y\x90a\xf9\xa5w\xe3\xc8\xcc_\xac\xf4\xec\xee3V+\x87\xe2YZ\xf8\x99\xe7^\xa2\x14\x90\xc3\xd1D\xc8\x85]q\x82\x84\xc2\x88\xc7\x99^\xaa\x95\x98\xdb[]\xca8m+A\xc5\x93\xd5\xbcV\xa7H\xb3]W]\x8c\x19+tF\xdfI\xe7*\x0d\xf2\x0dx\xd87\xc4A\xbf\xe1\xd15\x92\xbc\x16\xd8\x88!\xf5\x81[\x17\xe0\xf1u\xe3\\)\x90$\xd2`\xe2&\x9d\x9c\x1e9Z\xfeY&\xd4$\x87\x93t\xe6`H\x93t\x86\x93\x8f\x182X89\x0bE\xb8\xd1\xe4\xdc!\xcd\x01&WZft=\xc0r\xf1\x01gi\\T\xa4\xb7\x13%r\xf6W\x14\x8d\xf7.\xb5\x93#\xe9\x11\xcbe\xb3\xbd\x9f\\+\xfe\xca\xa4\x8e\xc9\x1d\x1a7^\xb8\xb6.a\x9e\x87\x1a\x8de\xca9\xc2\xfc\xe3j\x90\xedYgp?\xed\x0c#\xfb\xb6\x8cu~\xfeS\x9fy\xd6\xc8,\xc7G\x9f\x01\xf7\xd43\xf8\x9e{\x86\x0c\x02\xc9\xcbJP$\xf1\xb1\xed\xfd\x01\xa40\xce'\xa0a\x860\xb3\x9f\x83\xb6\x0c/\x7fOh\xcb$\xcc`~\xee\x13\xd1\x1a\xb9\xfbf\xd7b\x9e\x89f\xd2\xc1\x84b`\xff\xef\xe7>\x14M\xefg\xfdN\x1f\xf4\xb9.\xb7\xefeM\x19\x0b\xbf\xb9\xe8\x1b7m,\xf6\xe6\x8bx\x9c\x1b`[\xd0D\xbd\xa5\x9c\xa1L\xe1e\xfa`L\x1e5\xa6\xdd\x92~\xdb\x16m\xb1!=}n\x89\xf7\x0bg!\xc9\xa5\xba!\xf7H\x8b\xee\xdc\xb2)R\xfc\x7f}<\xdf\x10\x96\x84\x93_\xa1hI\xbfk\xb97\xfa\xae\xb8\"b\xe4\x9d\xd4\xe4\xae_\x0c\x1f\xf7\x0d\\\x92+c \x7f\x1c\x06\x9f\x00\xd3\x0c\x1f\x0fJ!\xb0i\xba\x1e\xc8z].KR\xf7\xd5\xfd \xfc>,\xe6\xf4a\xa654\xeb5\xcb\x92<\xb0\xa1\x11\xec\xae\x9b]\xb5\x1a\x96}\xedm.V)R+;3g\x9c\x7f\x9es\xd6\xd8M\x9f\xdd\x86\xe6A\xe6\x7fcI\x04\x8b\x9a\xdeh\xa4P\xd9kRsEjTvuq[\x94UqY\x99\xb9\xc1\xce(\xf5\x8a\xe2(\x85\x82\x06\xda5\xec(0\xec\x86DkKo\xc2T^Un\xf4\x1c\x98\xf9uG\x1b\x11\xb6\xaao\xfa\xa2\x926@\x02\x81E\xc7\x912\xde\xfa\x11\x9f\xa5\xd1\xdbR\xf8\x8d\xae\xbe5Td\xdd\x03\xd9l\xfb{(yv5\x0e\x86d\xb8!6\xa4YC\x83\xe6.\xef)~\x08\x8a\xedV\xd6 \xcdD\xb7\xa0|\xe6Y#$\x82\xc0\xde\x96\xa3\x97\x90\xda\x1d\x01-\x1dr\xd1KR\xd3\x0fyG\xaa\x04\xb9E\xd3UP\xb0\x96\x84[\xa6k\x9a\xc2\xa5a\x1c\x80\xd4\x1eI\x96\xca\x98\xc2\x1f\xce:C\xcb\x9a(\xd4\x13\x1fV\x1f\xb2\xec\xc5\xc0\x9ff\xca0\x19N\xf8\xb8.\xaf\xea\xa65\x82\xfeb\xa6\xe8\xcd\x98/\xf0\xb5\xe4\x96\xb4]&\x7f\x90\x13\xd3;\xa3\x9cFc\xd1\x12\xfb\x88\xd4(\x0d\xed0T24\xed\x8a\xb4f6\xbe\xf3\xb2^\x92\x97\xb0\xa4\x0f\xf1?\xedV7\xf0\xec\xe4\x87\xef\xc7\x8f8\x12N\xb1\xc3\xcc\xd0\x8e\xab\x1a\xe3\x83l.\xc9j\xc5\xf8\xb8\x1a\xd6r\xb1\x92q<\x1a[_F\xcb!\x91\x9b\xfa\xf8\x04\xde\xf0\x13R\xbb~\xac\xab\xff\xe4d\xf0c\x02\xd3\xc7P\xeb\x0d\x9e\x06'\x18\xedo\xb0\xd5\x05\xedpLQ\xdf\xb4\xbb\xf7\x9a\x95S\xb4r\xca\xde\xf7l\xd6#x\xa5\x83'CS_[\xaf\xb5\xf2\xdc\xdc\xea\x99\xf5\xa1\x9d\xc8X\xafB;\x0c\xfe\x17\xe9.\xb3bs\xde`\x8f\x0e\x1c\xb8z\x01\xbcA\x1d\xc3\x99\x83\xd0\x01\xac\xf7\x1c>|.\x9b\xee\xdcY\x88\xcd\xf3\xf0\xec\xdc\xd9\xdaq:~\xe0p\xfe\x00\xabE\x8b#\x03(=\xe6q\x06!\xe0\x10Bn\xa7\x10\x9c\x8e!X\x9dC\xb0;\x88\xb0w\xfd\xa6;\x8c\x16b\xdc\x99\xb2:\x8d0\xcbq\xb4\x10\xd3\\I\xf0\xb9\x93\xe0\xb5\xa3\x80\xd2\xd4\x0c\xd7\xd2=\xd5\x1c\xee%\xccu1-\xf4\xca\xda\xeaf\xc2\x0cW\xd3\xd6\ns>\x9d\xee&X]Np\xb9\x9d\x90\xa1\xe3\xf2\xb9\xa0\x80rC!\xec\x8a\x02\xb8/f\xa4\xbb\xa4\x1a\xa1\xc9A\xd5~\xb0y\xa9q\xc70\xe3\x9bA\xf4|Y\xde\xd8L\x18\x8ff-<\n\xfd|0\xc2\x8b\x12\xcb#\xca\x8dJ>\x89\x19\x17an\x07\xc7\xf5\x18\xb6E\xc7o\xdaH\xddr\xc2~\xd7\x88\xd0E:\xb8B\x9fq\xa3G\xfb\x94ZA\xcb\x11\xb1\x96F\xdcpC\x01\x9c[\xe6\xb8\xc3\x04\xd7\x18\x1cM\x81kE\x98\xec\x8e\xc1\xbf\xac(\xc9\xb0\xe8\x83\x90\xde\xcb#\xfd7\xf4\x81u\x9eD\xa4\x83]\xcd\x1c\xc4\x154\x83\x1e>\x95\x1d\xebG\xdc&\n\x7fT\xab\xd6\xe4\xe4P\xc7\xb6\xbfuW\xa7\xab\xd5+\x1e\x16?\xdf\x92\xe5EC\xd3\xba\x0f\xff\x0c\xec\xaa\xecR\xa0(z\x85\x9a\x08}\xeb\xa6\x14#\x1e\xad\xf4\xba\xe8\x8bSz[3 \x96>\x8a\xbc4\x0cA\xe8\x1bc+jP\xe9\xa5\xecb)\xe5r:].O9\xba\xb7o\xc6HQ\x98w\xda\xb5\xe9l+\xd5}\x1c\xb3\xa7\xcb&.\x07\x93(\x0cC\x98\xdb\x7f\x94\xf5\xea\xf7\xf3_\x9be\xd17!nM\xfbX\xb1z\xfan\x1ceW)\xdfH\xfb\xc1\xf5$\xde\x8d\x10h\xebA%\xa4^m\x9b\xb2\xa6\x0b\xd5@r\x05\x97\xb2'\xcc9\\\xec\xda2\xae-^q\xa2\xbfkK\xe9;R/\xdb{:\x8d\"\xd6\x06N\x9aJ\xdeI$\xa8\xb5\xd7\xb3\xc9\xba\xbd\x8a\xd7\xd3\xf3\x15\xbc\xe3\xb8\xc6\xe9\x03Jd\xca\x01\xf4\x0d\x7fSLzn\xad`\xad?\x91\xc8I\xaf\xafq\x1e\xcc3\x8fb\xd4\x83lDwm\xc9Q1_ur\x15\x99\x1bK`K\x1e\xee\xd6\xf1\xe77\x9f\x83\x8dQ\xaaqjX\xe3\xf2\x9aT\xa4'\xb2\x89\xfa\xa5m6\xb3\x0d(\x92,\xd6\x8a\x06\xc8\xd1c7\xfey\x9a\xd0#\xf42\x9f\xc0\x06\xc9ta'`h\\\xb7\x1em\x99\xa5\xad\xa3-{\x10[\xe6\x18\x81q\x93`\xac\x1e9\xf0\x19\xd6q\xde\\Vi\x84\xad\xb0\\+&\x0e\xa05\x98\xd1\x1ay\x08\xc6u\x83\x85Pd\x87\xccv`\xbddL\x8f\xb0m6\xecu\xa6\xf7\x9d6\xf3\x17\x8dV\xc4\x15\xc5\xd0\xc5D\xa7\x981\xd2$^=\xc4\xf3\x1d\xd1=1|G_$Dtb`\xf1\x0d\xdb[\xec:\xec\xa6\x84^\x92) \xd4\xde\xde\xb4{\xfc\"O\x84\x99WkD\xdbw^_\"h\xd8\xf3YF|d\x0f9\xd0pv`\xa4\xea\xb4\xd2\xea\x95\xae\x13\xab\xc2\xf6`\x80u\xe2^C;}m\xe7\xcf\x95\xe9'\x1b\x8f\x11\xb9\x94B\xbc:\xf3ydc6*C\x87\x97\xddT{\xad]\x1f\x0c\xd9e;\x0fcB$\xf3~\x96\xdf\xc8*\x15!&\x91\x9b\x1d\x96b\xe5\xce1\xb7\xc1\x0b\x93\xb4_#\x06\x9f^!\n+)\xdf\x1d\xb5\xcev\xe5b\xf0\x89Kq\xae\x0c\x14\x99\xb9DM}\xf1\xb1\x93Y\xd7\xe4\x87=0\x1cc\x07\xfc\x8c\xdbs4x\xf9\xb5\xb0\x84\x9ea~f\x12\x94ga&\xec\xce\xd8\x14\x89qXb\xcf\xee\xa5J\x91G\x96R\xcdy\xbbQn4b\xf7\xa2\x96j\xd1\x9e\x8aA\xee\xa1\xf6\xa1*\xf3\xc8\x85\x03\xb7\xba\x19F^m+\xe4\xddD\xee@\xb5^\xd8\x9f\xfb\x13\xb1\xd9\xd4\xaax\xd8M\xde\xbb\xe0X\x0ftE\xc6\x8d%Z\xe2}\xf9T!Q\xa3<-/)\x97p\xa9\x1e\x98\x97s\xec\xaa\x81\xe68p\xf4\x06A\xee\xecGp\xb8\xacf`\x0c\xa3\xb8|f ~\x9c\xff\xc0\x0dBk'\xde\xf10\x14\x05)\x07p\x16\x1a\x1d&?\x19\xea \x0e\x1eXZ\x8c\xadD\x90 \xca\x1a\xb2\xa2\xf0\xd0r\xcf\xb0\xab\x10whg6?\xd7[EH\x98h\x94LB!Y\x12\xba2V\x96\xb0'\x1c$\x91|\xb8\x97\x01%\xe2\xa2\x13w\xb0\x87A*\xb8\xee\xc1Fx\xcc\xean?\xd6W6\xb2\xe3\xe4=\xd4\xb3o\xf8gz%\xe9\x9b|\xef\x06?\x13W\x18\xfbl\xdd\x8e\x067\xf4\xb9\x18\x9c\xbb\x89wm\xe0q\x9eY\x86\x8d{\xb4\x82\x1et\xb3\x1e /\x9a\xea\xa4l\xd5\xa3\xc1E.\x8bc\xf7\\CfGqWcm\x8fN-\xb4M\xcf`\x89\xac\xfej\x96y\x15\xf2Em\x12:-\x94\xcf\xdf\xcc\xc9m\x84\xad\xb2\xb8\x16*)\xe9\x7f\x113\x13\xc7\xb4\xe3\x88\xdb\xd1\xb4j\xd5\xa6?Ori\xd4\xb0R\xce3yQ^\x1e\x8a\x9f\x08=\xa3\xd5\x19\xb6\x8b1]\x81\xb6\x97\xf3\xfd\xb5\x19pFV\x9feW\x8b7\x9fc\xdaN\xbc\xedT\xab\xcc2\x9c<;cfc\x19\x9b\xd9\x147\x8d\xa5\x0c\xa7N3\xa9\xe6'=\xb1km\x1fvQ\xa7\x1e0\x8a\xe3\xe7\x0e\x16\xa3}\x94h6M?F\xfaK4\xbb\xfc\x9f\xd9\x196m\x8d\xbd\xd1Q\x06\xf9o\xdeS\x0d\xbfL\xc9\xb6Z\xaa\x8f3\xd4^6\"\xf4\x89S[\xbc}\xb6\xeb\xdb\xba\xf3\x88=\xb6T*\xba\x8f+\x99\xef\x83\x884\xdbu\x99tD)X\x8b<\xe9\xc0\x1fZ\x89\x06\xe2w\xa1\x10\xda\x89B~.qF\x8d\x7f\xecd\xd6e\xd4`\x0f\x0cG\x997/\xe3s\x0f\xef&*8\x83\xe0e&Ay\x0f\xbb{U\xdd \xec\xfe\x95/\xdb\x11;X^\xe5l\xf5\xaa\xd9l\x9b\x9a\xd4\xe2\xddx\x8c\xcfeQ\xa5U\x85\xb6\x04\x14\x0e\x0dr\xed \xd1\xe8WF\x82\xef\xbfb2\xd1\xffU\xe1R\x1d}\x91\\Z\x06\x9dp\x05\xed\xfc^i\xfc\xd2?#\xf2\xda\x8f<[\xd7-<\xd7\xda*U\x18\xba\xe5\x0f0\xf0tc4g\x0e\xadb\xaa\x1a\x93\xdb\xfe\xaf\x9e\x11-\x06\xd8\xebi\x80M\x9e\xf6\xba$\xd5j\xca\x03\xb7\x9c>\xa1\x9e\xf4\xa6\xb8!\xb0\xdbN\x17\x15\xf8\xf8.\xf5\x11]\x17\x1b2\x8c\xe6wE[l\xf0\x03xS\xdc-:r\xb5!u\xbf\xa8H}\xd5_\xeb\xca.\xeb\x9e\\\x91)\xe7\x8e\xb0\xa0j\x92\x15\xde\x07\x9b\xe2\xae\xdc\xec6\xc0H\x0d\x16\x80\xc6_y\x0b4\xf3UU5\x9fD\xe3e\x9d\xb5\xf1\xb2\x8ei\xbc\xb8\xa3\xf1\xe2EEnIe\xe4z\x8cjY\x19zB\x07S2\x19\x99\x8dn\xe4\xe3\x04\xe0\xcd]\xb1\xd9\x0e\x04\xfe\xbdn\x9a\x93\xcb\xa2=\xb9,>\xff[\xa2\xf5I\xe4\xa9\x13)\x95h\xcd\xc5\xaen\xc90\x94\x97=\x0fz\x1b\xec\xebY\xa48\xa3+\xd2\x93vCo0\x95k\x90\xc90&o\xc8=\xcb\x12E\xdba\xfb\xb7\xba\xb1\xdc`a\xc3l\xccr\xc8\xfcO\x9a\xc3k\xcb~\x11\x03\x9a\x92\xdd4\xab]E\x1c#\x96&\xaaa\xf4\xa2\xf7\xbc[i\xb4\x1be\x9dgQ\xca||O\xba\xa6\xba\x8d\x8f\x1a\x16z6X\xdf\x8a]\x88\xf5x\xa9\xbc\x82\xa1\xdc1\xa5\xaai\x197R\xce\xa1Iy!\xcb\xa7\xa8\xee_<\x1b,\xbb\xfe\xdd\x95Wu\xd1\xefZ\xaa\xbe\x96|\xdc\x95-\xcb\x81V\xacV\xd0\xed.\x9f\xd2n\xb68\xab6\x15a\xba\x80WA\xe9\x9f\xe6\xf2\xfb\xb5inv\xf19\x8cU\xfc\x15\xab\x90\x92\xbcX\xf4S\xcdj\x8b\xf9\xd5\xc1e\xb3\xabWP\\\x0d.L\x0f\x85\x9a\xa9\x98W\x8f\xc9\xb3\xb7\x9a\xae\xd5\xda\x12\xe6:\xb3\xe4FX\xebc\x86\xbdc\x86=p\xfa\xe8\xeeI\x171\xaf9-\xef\xec\xe6\xd9\xa8\xde\x16\x9b\x90qU\x18\xb5TS\x1c\x1b\x91\xae\xea-7\x97\x13\xabn>^\xb5\xa4\xe8\xc9\xfb\xa6\xe9\x13\xb8\xb1W\x1ey\x1a\xf8Q?\xc1r\xc5rB$pdV444}\x82\xe5\x86]rO\xe0\xc6\xachp3}\x82\xe2\x86\xd1Z6\xedj\xd6:`7\xf1t_O\x8d\xfaP\x87\xff\x1a\xb5\x98\xfb\x16\xeeU\xca\xc2\xcd\xe9~JX\xb2\xff\x02\x16\x8b4\xe9\x8f\x1d\x08t}\xbb[RR;n\x98/\xcbz\xc53D\\\x97\xdb\xc1H\x15L\x8c\xeb\x92\xb4E\xbb\xbc\xa6\xb6\\l\xc5\x97MU\x91\xa58\xfd+\xc4\xe5{\xed\xa0\xa9\xbbZ\x13\xd2\x0d\xfd\xf7\xaa\xa8\x96\xbb\xaa\xe8\xc9\xc5\xdd/\x84t\xb1\x0f!\xf5w\x0bz\xaa\x1b\xe8\x0d\xeb\xba\xa5\x0cNAH\x18\xb6\xbe-\xea\xae`\x82\xf4\x0dt\xe5\x86r)\xd6\x08\x9e\xb5zqYtd\xb1\"u\xb3 p\xe0^ MR\xc0\xf3,\xd3\x86 ;\xa4g?\xd0\xbf\x0eV\xf6\xaa\xe8`P\xa1D\xa7\\\x0f\x8e1\xad`\xc9\xad]_\x17\xdd\xb5\xe0\xfe\xaa\xe8\x16\xc5\xea\x8f]\xd7\x0f\x1b\x02\x9ds\xb6\x1a\x19\xba[WM\xd1\xeb\xe3PY\xd9T\xb2B\x93\xd2_\xd6\xc5\xb2oZ\xbe\xf4ovU_n\xab\x92L.\x93\x1ar ]_n\x8a\x9eLi\x99/\xd9\xfa\xdf\xdf\x89\xfe\x10\xd7%\x14\xed\xda\x87\xd4\xb4b\xb9^\xd7\xf0\x04\xa4=\xe35\xd2 -V\xab\x92\xb9r\x8b\x81d\x92?jDZ\\q\x16m`\xca4,~L\xb1\x19\xbc \xe4\xe7>\x87\xefUSJ\xce+\xf4\xcd\x0d\xa9E\xd6\x16\xca\x92\xf0`\x8b\xc1]\xaey\xc3Zn\xf2\xb7\xbf_\xbcy \x17\xc3\x00\xa2?\xb33Aj\xa4j8\xab{\x9eI\xa6\x1c\xb6\xaf|[{M`\xb9\xeb\xfaf\xc3{Q\xa17\xdaH\xc9B^\xde\xc3Us\xd5l\xdb\xa6oN\xf4\xa1\xad\xf5\x14K\x13>\xb1\xd3\xaca\xd9\x94\xb5H\xd1-\xb2\xc2R\xb96\xdd\x95<;\xa9\x7fv\xec\xee\x03\xednw\x0cu\xea\xb7\xb1\xf3\x99\xbf>\x0d\x01\xfacM\xc8\x8a\xdbem\xe9P\x9e\x12\x16\xa3\x02\xfe\x8f0\xdf_\xcb:\xa8\x9b\x9e;\x0c\xfcW\xa0\xaf\xb0rs#=\x80\xb3\xae\x1a\xbe\x02l\xdbr)\x0e\xeb\xd8)\x9e\x10K\xd8\xce\xd5\xe2\xaa\xc0.\x8e;\xeb)\xaeBi\xb4\xe9\xa3\x02\x86?\xba\xe5\xa7\xc4\xfc\xc6\x19\xbd\x9f@\x99\xe7\xdf\xba\xab_\x08\xde\x1ao\xba\xab\xc5\xf0\xd9b\xd7V^-\xa9\xc6\xe0\xa5\xae$e\xd8\xa8\xdf\xd27J\xb6\xc5=\x945}\x91z\x98-O\xe0\xb2\xe8\xcaeQU\xf7P\xc0k\xba\xb4\x0f\x93\xe3\x94\xaaU~\xf5\x97\xfdE\xbcs\xf2\x99\xb4\xcd\xd7\x1a\x9b\xa8m\xbe\xc528&\xba\xcd*D:4\x19\xecA^k\x80\xb5\x05-Y\x96\xdb\xd2\xe2\x11)\xa2\x8f_\x0d\x1e[\xd9-h\x12\xb2\x84H\x89%m\xe3/d\x9c\x08\xcb\xa6\xa5\xcf\xcc|b/S\xf5\x9d\x94J\x8dnK\xc6\x1ciBoe\x0f\xcb\xa6\xee\xca\xae\xa7\xc7\xf8\xebf\xd7\x0e6\xa1\xef\xc4\x07\xcfOh\xcd\xc1\x0c\xd1\xd9\xb5k\xabo\xa0\x9f\"\\|\xe8\xae\x8ba\xe8\xb2\x1d\x00\x9dG\x9bN\x9e\xb2\x93XG\x9b\x90\xdd&\xd0}\xd3bK\xda\xc5\xae[-6\xa5\x7f\x99\x08-\xa6\xfc\xb8o\xa0 [\xd2\xc2\xae[\xc1\xa6\xac\xe8B\xb7l\xea\xdb\xa1\x97\xea+\xfag\xb1g\xe3$\xd8\xaf4z\xbf&\xb8-'os\xaaI\xe7\xdc\xb8\xc3\x94w\x95T\x8d\x9c\x81\xe9\\\"-\xb6\xc9\xe7\x90=\xbc)M0\xba\xa8\x9fV\x15\xb3{\xf1;\xa9a\xed\xde\xbfOm\xf7\x10dR6\xd7\xda\xe1-\xf0j\x8eC\xe1\x19\x9e\x83A\x89{\x12^\xff\x81\x15\x87>\xc0\x0b\xdfs\xec5\xc0\xa7\x14p\xee9\x02\xd5\xfc \xc7\x19\xb6\xc5\xa04\xc7\xc4\x18\xc4\xb8\xc91\xfe\x8e\xb5<\xacX|\x12V\x9c\n\x0b\xf9'ru[\xbc\xd9\x1dq\xb6\x0f\xdc\xb9~\x0b+A\xef\x85\x95y>\x0c+\x89\x9e\x0c+y\xfc\x19Vf{5\n5\xee\xe1\xa8\xbe\x0d\x1cC\x8e\xc7\x90#\xfb\xfb\xa1\x85\x1c9\xa3\xca\xbbJ\xe3S\xa7EU\x0d\x93\xfc\xab\x8e\x19rv\x06c>\x06\xbc\xf1{\x17_\"~\xca\xb9\x91\x00O\xe7\xce\xdcPh\xd4\xf8A\x95e(Fa\xfc\x1d.\x82g\xa5w\xb9\x07\xce*~\xd7 \x97c\x90\xd1-\xb0;\x051.\x81gC\x02\xf3LF\xfa\xe6\x04\x82\x1b\x14\xf0\xb1\x96w\xa3\xb2' XK>\x15\xedj0-\xa7\xf4h\xf35\xa9\xc8U\xd1\xe3\xad\n\xf79\x16\xfcd8m\x1f\xa9\x06\xd4\xb9\x173\xd9\xf2nG\xdf\x1dY\xef*Xq\xfe\xc65\x86\xa3\x02s\xb6o\xe0\x0c\xbd\xeds\xf9\xf9\x0f\xf4\x16\x976\xdf\xdd\xd3Y\x88\xca'\xe0\xf8\xca\xee\xae#-lv]\x0f\xd7\xc5\xed0\xe7\xda\x96\xae\xcac\xf3\xc2\xf1\x94h\xdd\x16U\xb9*\xfa\xa6M\xb2\xcf\xf8\x81\x8d<6\x11\xfd\x92\xa6\x17\xde\x05\x7fF\xbdH\xf3\xe5\x96,\xba\xbe\xb8!\x83\xdd[\x92\xba/\xab\x10\x82\xc3:Q\xa6\xda\xca\xf3\xe1\x97\xa4j>Q\xb5\x8d*\xf8j\xf0\xb2?\x91\x16\xda\xa2\xbe)\xeb+\xdb$\x9a\xcb\x14\xef\xba\xb9L\xd9\x07\x87j\xa4\xe4\x077\x989\xe5\x7f\xe7\x08\x87a\x01\x1c\x9c\xb6q\xf5!UyU^\x96U\xd9\x8b\xa3\x94e[\xf6\xa4-\xf5\x07 t\xb3x\xd1\x16u\xb7\x16\xef\xa8\x1c\x9eY\xec9\x7f\x8fe\x16\xcd\xf6s\x98\xc5\xa9\xf2d \xc8\xf8n\xc7d\x07\x8ae\xdbt\x1d\xf5\xae\xc7Q\xd5\xc9\xf1&%\x86\xb7&-L\x10\x98K\xc2^\nO\xbc\xb4\x9e\xd9>\xf8F\xbd\x18\x83\xfa\xa8\xd7\x85\xca7\xea\xff\xd9\x1c\xae#p\xdb<\x9e\x13\xa0\xb6}\x90#}`\xf1`G\xb9\xb4(/F\xbcT\xe8\xbe\xa2?\x04\xa1h\xf5]\xd3\x95\xc3B6\x81\xb1Z\xb6\x08\x0d{\x9b-\x03g\xf5\x0d;\xecg\x9b\xc6b\x18\xf8\x13\x14k\xd0\x9e,\x14\xd3#\xddn.\x9b\x9a\x1d\xae)GxEK\x81\xfeO\xd6\xf4\x1e\x07[\xe0\x9a\xba\xba\x9f>\x1fO\x12\x99\xcf\xc2:\x88b\x13G]H\xf4\x86_\xbf>\x81S\xf1\xf2\xcf\x9a\x1er\x8b\x03\x19:\x14(\xf7\xc5\x86(lt\xd0\xd4>\xe8\xf34\xafu+r\xdb\xb0G\x92\xf2\xd9\x90WUQn\xc8\xea=\xfd\xc3;\xd2\x96\xcd\xea5\xe9\x0b\xb1\xb5C\x98\x94\xe5@a\xf0C\xcaF}\xa3!a\x80PZ\xc0hM\xc9K\x19\x16\x86\x0d\x82Y\xe4\xd9.S\x8c\xa6\xe5r\xb7\xe1\xf8\x16\xba\xcd\x94\xda\xb6\x89\xc6t\xf6\xd2N\x93\xfd\xd8\xb9\x08=\xee<\xfe\x13\x06G\xed\x13\xc79\x98AK@\xd1\x92\xab\xa2\xa5\xcf\xa8\x17\xf5\x04\x14\xfe\x8a\x0f\x0dNm\x90\x98\xf5+C\xd8)\x1d\xeb\x9cP\xbfuW\x94\x8d\xd3\xaab|\xc4\x9f\x01\xb2\xf1\xceH.h\xa3\xfa\xa8\xcf\x1bg\x81\xb5-\xe8h \xbd\x9e\x90\xcf\x93\x89\x8dto\x07\xe9\xeb\xa4z:\x01?'\xe4\xe5x}\x9c\xa0{\xe2\xf7o\x02\xd5\xc3Kx\xbe\xb9\xccJ\xc6\x19\xcd\x8a\xcf\xab\x89\x99\xdd\x80PG\x92?#y/\x06\xc1xo&\xc2\x97qK3\xc7\x8f\x99|\x97\xbf\x84\xe5x\x08\xd7\x83z\x1e\x9c\x96\xb6\xd0\x06\x9c\x0e\x96,C\xd6E\xb4\xef\x91z\x1c\xeew\x0f\xc60\xc9\x15\xa9I+\x00\x15\xcb\x81\xdf\xb2\xa9\xddjt\x0b\xe4\xd1&\xa5:t-\xe7\x83\xd3\xc3\xe9\xf0M\xbd\x8aQ\xa0\x85i\x17\x057\xc7\xa4^\xa5\xf1\xfb_\xbb\xa2b\xe9'Y\x00\x06\xdd\xcb+\x05\x8ee\xadd\xaf\x08\xbe\x88,\xe4p-\xe3`Z\xe0\x8b\xd2B\x16~\xa2`[\x80\x8b\xdc\x1a\xad\x18\xb69'\x84\x0b\xecp%8P_\x1c\x01\xf1\x82\xb0\xfe2B\xbd\xe0\x0b\xd3\x1f\x16\n\xe6\xa1\x11To2FL#\xa4!\xc6 \x065\x063\xf8O\x86\x93\x85\xf8w\xb7;\x0fd&\x11\x92\x82\xe6J\xb8|(\xbd\x82(\x83/\xc6\xb2\x1bH/x\\\xcbn\xe7'\xa7e\x8f\xc7\xe6h\x84$\xa4\x0eD\"\xd1\xe0 MWh\xea\xa4\"\xd5\x90S\xe7\xb6\xf9\xf2\x1c\"\x052\x06\x8f;eL^\x0e~\xba \xe0lp\x90S%\x04u\xf3T\xc4\\n1za.\xf4M\xef\x0bI\xef\x1e\xf8\x1b\xcc\x83\xc0\xb9\x06@*\x0c\x0eT(\x1c LV\x16H\x1ch\xb08\xadY}\x17(\x9c\x98\xa6\xa6\xa2m\x8a\xfa~\x1c\xe3\xf7[6E\xad\xdbI\xd7)\n\x1bV\x88m\xa5'\xec\x90\xef,a\xf4t\x82\x98#\x94\xf1>b\xd70\x07\x8a\xc8P\x01SG^\xc4O ,\xe0\xb1\xa8\xdesxD(\xc0\x17\x06\x98\xd9l\xda\xd1?\xe2\xd8?\xe5\xc8\xdf\xb9\xbc\x1d\xc1JQ\xd3\xcb \x96\x03\xac\xe4\x13=\xeb\xf1}\xdc\xd1=\xf2\xd8\xde\xce}\xd6\xe3z\xfcQ\xbd\x1bN\xcet\xc7\xd8z]\x0eC\xf0r\xd7\xc7\x1c\xa8:\x8dT\xf2\xba7\x0cA\xcd8 \xed\xefc\x99\xbd\xa0os\x8a\x1b\xf9\xda\xa2\xcbO\xcfh\xbad\xfa\xc3%\xa9\x9a\xfa\xaa\x83i\xa8\xca\xabq\xb7\xd86M\xb5X7\xedB\xd6\xcbKw\xcb\xddnC\xd3\x88T\x15m\xfe\xaa-\x06'\\\xb1_\xb4y\xfbX|\xcc\xd5^\x96\xd8#\xe0\xba\xac\x8b\x8a\xbe\xca\xb1,\xbe\x10\xc9\x12\xee0\x04\xc6\x97\x9eKCt3\x9f\xc1^](\x13\x8c\xd4\xabp\xeeo\xa5\xf9SXW\xc5\xd5\xe4\x89\x0f\xb6\xa4dc]\x99d#\x0f|\xa0_\x17\x1d\xd0\xd6|\xe6\xcckB\xbea\xf4\xcaN\x93^q\x18\xcaxLI\x16\xeb\xb6\xd9,\x0c\xa7\x19|l+\xdd\xa5\x8c\xe2a\xac\x96+\xd2\xc1zW\xaf\xa6\x97|d\xf7\x0e\xb6MS\xb9\xc2<\x98\x98\x06#\xc6!(\xcd\x9a65\xe8\x86=\x92\xcf\x91\x96\xca\xd48\xfc\xc0FK6EY\x97\xf5\x15;\x96\xbc,\xaaa\xbe{\x14a\x0c\x99\x0b:+8\x15\xae\xfe\xc9n\xf6\x8d\xd4\xe5P\xac{\xd2B\xad\xba\xd3\x1a=\x8a\xf4d\x0b\xd2\xe1\xab\x8fo\x18\x12 \xd4\xb6\x015l9\x98\x02\xc5F\xe4\xf2\x9e>!S.\xcbm1\xf82bc\xb2-:}\x7f\xa1\xe8\xf4\xf05\xb7)\xee\xc4\xd4\xbb\xbc\xb7\x9b\x01E\x81\x02\xe5.\xe62Q\xd1s\xf4\x0f\x9c\xca\x17 <\x07\xe1\xb7MU5\xb7\xa4\x0d\x8f\x1f\xed\xea\xe1\xf8t/\xf3\x9c\xc7Mr\x03\x82\xe4\xe1+A9=\xee\xc8\xb2\xa9W\xd8u\x00\xbb\xa2\xbf\x9d\xaeD0\xfal\xb1P\xf1sP\x15\x9d\xeav\x8as\x8e\xae/\xda~\xd1\x97\x1b\xec\xba.\xf8Z\x15=y:\xd4\x8b1\x08\xe5\x86\x08\xf6\x94E\x04\xba\xebfW\xad\x80rC!u\xdd\xa7\x92\xfal\x0d\x9c_\x9c\xbe\xbf0v\x9at?)\x0bD\xee\xb6d\xd9\x93\xe9\x04\x87\xd4\xab\xc7\x97\xab\xecF\xc6\x06YH\xbd\xfafz\x7fjU\xf4\x05\xbd\x86\xa0\x91+{\xe1S\xef\xb6\xb6>\x13\x92-6\xc5]~\xe9\xdc\xc2\xfc\xf6\xe1\xfcb\x10\xe1\xc45\xc2\x1fP\xe5\x1f\x06\x1d\x0e\xael[\xd3g\xf6\x94\xd7t\x86\x01\xd4\xb7\xc5\xf2\x86\xf9\xfc\xfc~\x86\x95\xba1\xae\xc1\xa9\xca\xd5\xc1\xc7\xf4F\x8em\xb5\xd4\xce\xd3\x8d\x86\x84v\xd8\xa9\x9dU-8\xc9l'\xa4O\x07\x93~\xf1\xc6s\x8c(\xbex\xf7\xe6\xed\xeb\xb3\xb7\xff\xe1\xf8\xd5\xbe0\x88_\xc5\xe4p\xfcl;\xef\x1cO;\xfd\xfc\xf1\x8d\xe59\xd5\x8dr\xbci=\xd6\x97\xea\x92\xbbm\xd9\xb2\x0b\x89\xcdz\xdd\x910\x18\x96\x15\xec\xf80\x8c\xc8\x7f\xb4\xc5\x92\x88\xd1\xcdv&\xbaQ\x17z\xa2\x07Z\\\x9aq|i\xe4\x84\x87\xb1\xab\xfb\xb22(\x91\x9a>\xae6\x10\x10\xda\xd5\xeb\xeb\x8b\xf6\xc7\xf1\n\x99\xef\xe2\xe8~\xd3\x7f\x999I\xa6\xe2! \x01\xb2\x10\xba\xa0;\x15\x8f\xbf)\x8a\xf7\xac[\x14\xab7\x8d\xcf\x1f2\x15\xefe\xde\xa9\xec\x87\xef\xe8\xbc'SA^\xfc\x9d\x8a\x7f\xf6L%6+\x8a\x93\x90\x9e\xed\xc3\x95\xdfc*\x81!\x08\x88a\x08\xee\xad\xceT\x10\x9d\x19\xca\x91\x06\x182\xc8,+SA\xf7Qd\xe6\x95c\x1f\xb9\xfb(&\x93\xcbT\x82t#:3!\xcf\x8b\x93\x98\xf5\x8d0\xb5D\xe5~\x99JN\x89\x132\xc3\xa4K\x8c\xe1*)o\x8c\x95\x92\xed\x8e\xb9\x91\x06c*f.\x19\xe9\xb7?\xe9\x8al\xcd\xfb2\x95\x83]\x91C|\xef{E\x8eK\xcf\xe16\x9a\xea\x0bT\x90\x90\xd7f*\x7f\xae\xe5\x00\xd3#Iyrr\x98\n5w\xceT\xfe\xacf\xc2\xc8u3\x95\x835\x11>\x9e\xbfp\xf3\x80\xcc\xe33\x95?\x97i\xc0d\x03\x9aJ\x90\x18r\xe4\xb9\x02\xfbS\x89\xce\x1a\xe4V\xd1'\xe3!=d\xfe \x89FR&!'9\xf5\x91=dN!'5[\xae\xa1\xa9hY\x87\xa6\x82\x99\x87\xa9\x99\x88\xac\xc40\xcb\x81\xc2TJv\"\x07)F\x80\x07\xd6\x98\xe5\xe8\x1b\x86\xa6\x9d\x8e\xfb\xa6\xfa||*\x87c\x7f\xb1\x12\xbe01\xc0\xcc4\xb0\xa6>\x15\x16d\x1f\xa7\xee\xc7(\x0dC\xab/J\xfd\x92\x9f\xc1\x13\x12\xfe\xd4 \x14\x18\xfd\xe9b\x98\xc7\x8c\x17}F\xcb\xc7\xbdO\xe1\xbf>\xbcy\xff\xdf\x8b\x8b\xff~g;KU~>\xfd\xf5W\xdb\x9f\xd5\xf3_\xb5\xc6\xab\x8b\xb3\x7f\xbe\xb1\xfd\xf2\xfb\x87\x8b\xf3\x8bSgE\xe5\\x<\xf1\xf5\xb0\xaa\xf4\xd8\x088tI\xf7\x12vu\xb7%\xcbrM\x8d\xcc\xfdv\x9c=\xba\xc0/\xe9\xaa\xa2v\x7f\xc7\x8eH;k\x1d\xae\x8d\x97\xb0\xe5\xc1*m\xe8\xd0\xaa\x7f\xb77G\xb5\xf5\x12\xd8\xf6\xd6Z\xd1ZO\xd2\xe5\xd4,\xcde\xe3&dg^\xa8\xfd%\xac\xcb\xba\xec\xae\xc7\xdbl\x16.\xe4!>\x0c6\xe3\x90]\xc7\xcd7\x0c\xb2\x195\xa0g\x81\xf9\xa4\xa5\xd9vD=\xf7.\xc2\x9e`\xd0\xf3\xc0\x7fV\xf8\x9f\x97\xb3\xcc\x10@U\x9ah6,\xabT<\x140\x1a\x0c\x88\x84\x03z\x05P:q6$0\x08\n\xb4,Rsa\x81^\xc7\xf7 n\x8d`@\x82a\xb7'\x19(hP\x12!]'T\xf0\xf0U\xea\x03\x0e\xe2T\x99\x0c\x1e4\xd5Yt\xbd\x0f>x\xf8\xdaD\x80 \x1d\x9b\xf2h8\xe1\x17\xa0\x0c\x0c\xb8\xd0q\xae\x92\x08/<|\xa5\x84\xc1\x86\x99\xfc\x88D\xc8a\x18t\x88\xe2\xcf\x0e\xa6B\x18\x94|\xe0C\x0b\x92\x01\x0d@|$\x19\x93\x80\x88n(\"\x06\x8c\x98O\xd28H\"\n\x94\x98\x8f9K7\xa4\x82\x13\x0dB\x02\xac\xe8\x82'\"\x01\x8a{\x1563P\xd1\x0eU\xf4\x82\x15Q\xe2\xc5\x98\xb5\x04\xc8\"\x06\xb4\x98\x89OK\x1f$\xa2\x19\xcd\xe9nA7\xe2\xf1\x8d\x99\xe4\xcb\x86r\xb4\xe2\x1c\xb5\xc6b\x91\x8e^\x19]\xf7\xc1Cx\xc7\x10\xe21\x84y\x0c\xa2\x1e\xfd\xb8G\xc0\"\x1f\xe7`\x1f\x83\xe8\xc7L\xa3\xc72;2\xa3 \xe7\xe3 \xad\xfeC\x08\x0bi?jb%\xff\x83\xf0>Td\x800\x04\x89\x03>\xc4\x1ap\x93EA\x05\x8e\x1c\x1b\x82\x14\xa4!:\xdc\xbaO\xfeg %\x13B\xaf\xe1y6\x95lxIH@\xe3!\x86'\xa0\x86(\xf8voSAu0&\xda\x8a\"\x15\x8d\x9f\x8c\xea\xb7\\\x18\xcac\xbf\xe9%\x11S\x89\xa2\x1d\xd5\xc59\x91\x95\x08\xa4!\xa4\xa3+\xf3\xcb\x9e\x13c\x89\x92\x1d\xc7[>\xa4e4\x80\xca\x8f\xb6DL\xc9\xf0t<\xf0\x95>\x80`<\xf8\x95>\xcc\xffC\xac\xf4\x99\x80V\x99\x91\x98\x88\xf1\x0b\xa81\x0c\x87\xb7\xa4\xe0\xfa(\x1f23\xc1\xb4\xb8\xd0\x99\x88n w\xc9\x81\x9b\x15\x0f\xea\xf1\xe0M\x8a\x9f\xf7?\x859\x89Fn\"\xc6,\xa0\xc6-\x1c\x9e)\x89\xc3q\xa2\x08\xa2Ge\x18\xcd\x99\x13\xcf\x99\x07\xd1\x99\x1d\xd3\x99\x1b\xd5\x19\xc2uz\x90\x9d\xd8\xd9\x9a\x15\xdd\x89\xc3wj\xac\xcdCxj\xc4\"1\x9e1(O5g\xa38%dv\xa4c\xb9\xe9\x04\xe6\x88\xc2\xd8\x16\x03\xb7\xa2\xa9c\x1a\xc7\xfe\x98\xc6\xf1\x00\xd38Z3^\xdb1\x96*\x18\xb9\xb2\xcd\x86i\x1apr\xe3d\xf0\xbf\x19\xab%`e\xfa7Fs\x08\xcd\xf9\xa0/\xd9\xb1X\x96\xff!;=\xa9\xb3\xd2N\xb6t\xce\x11\xb3>\xfb#o,\x8a\xa8'i6\xf4\xe9M\xcfl\xe5@\x0f\xc1\xa1\x921\xa3\xd20#\x120\x07S/\x07\x92.\xe3\xd3-\xa7$Zf:\xcf6\xd6\x95Xs \xa1\xb2\xdd\xa5\xb0\xceat\x12e\x18\x13'\xcb\xf2I\xe9\x93\xc3v\x83\x861O$%\xca\x06DR\x8bz\xad!\xd09\xc1\xc1\x14\x18H\xdeA\xe4\x19@\xb8\xc1c_w\xddB\xbd\x94V\x00\xed\x9e\x80K\xcc\xa1\n\xed\x0b\xba\x1c\xb1)\xec\xa8\xe5\xa83\xfe\xcbW\x8d\xf1\xa6U\x9a\xfcK\xbb\xa6\xd4*4\"\xcd\xab\xc4\xce\xa8\xf0K\xe6\xe8\xd5(\xcb\x94L\x07\xf7k\xb0~+\x07\x19\xa1\xfc2\xd7\xa8F\x15g(\x0e\xb2\x1f\x01\xd6\x0f\xc2\xf4\xad,*]0\x0b\x9a\xef\x01\xe5\x1b\xa6w\x0e\x1c\xff1W\xfd\x10\xc8\xde\xbd\xf3L\x06\xd6+@z\x89\xa0\x0e\xa9\x7fL\xb5p\xcbe\x1c\xa3\xf9\xd5\x91\x0c\x8e\xd73\xeb*z:\x0c\x8d\x04\xc0\xee\xd6\x93\xcc(\x98\xfb\xa3\n\x17\x02\xaf[\x0f\x99\x13`\xeb\x8f)\xa4\x02\xc15\xc0\xe8\xc9\xab\\\x02\xf4\xdc\x07:\xf7\xf2a\x02bUC<\x03O\xae\xe2\xbf\x10\xc8\xf19\x8c\xaa\x96c&B\x1cJ\xd9t\x18\xd8p?*|\x8e\x14x\x0c\xb82\xf4\xf6\xa8\xcaT\x94\xb7-\x05\xad\x05\xdf\x1dDvg\x13d.\x82\x1b\x94\xd7\x08\x15\xec\xb6\x03-\x9ca\xfe\xab\xab{\x10\xa3\xedGg'\xf3\x93\x08\xbc6\x80\xd6\x18\x88u2\x93Y\x00\xd5\x1a\x94\xda\xaa\x05\x0c\x88\x1ayj\xe3\x03\"\xbb\xc1\xd2n\x98\xb4\x07 \xed\x82F#@\xd1iph\x0f\x10:\xb9\x8f\x95 \x9d\x11\xf0<\x07\xea\xac,r>x3\x93:\xef\x1dz\x17\x80\xd9A\xc6G\nph\x03\x87\xc3$J0\x1eju\xfbb\xc1\xbd\x08dA^>\x13A\xc8Q(\x02\xf7H\x9fJ,\xe4x\x02\xa8Z\xc9a@\xab\x9e\xa1\x04\x08(\x80\x17\x04\x10\xe8\xa4P\xe0\xdf[=\nB\x8c\xd2}$l\xf8\x7f\xb3\xee\xe3a\xc0\x01vP\x1d\x94\x00\xfae\xf0V+9'\xe45\x01\xe8\x9bC\xba\x04Xo\xbct!N\x92@\xbcnXD\x18\x10\xe1\x02\xee\xfe\x19V8\x0f\xa8\xf5\xa0V8\x1f\x9f\xfbZ\xe1\xe2\xb0q\xd6t\x18 C\xbe\xe6\x80l\xbfL3\x1c\xd2v\x12hv\xceT\xb6\x01e\xff\x0c\xd3\xd8\x01$=\xa8)\xec\xe2\xf1\x0b\x9c\xbeQ\xa0\xd6/s\xea\xe2\xa1\xaasG\x90\x1f\x98\x1a\x0dI\x95\x80\xa7V\x82z\xff\xa1\xc0\xa8i0T\xca\xa3\x7fP!\x01\xa8\x1e\x98\xa9\x15`\x1a\x9a'\xd9@\xa5!\x93\xab0\x92\x0e$U\xc8D@H\x1d\xe0\xd10\xa6\xe0\xe4|:\x863\x06\xb8\nSq\x9dZ\xd9O\xcf\xec'g\x8eS3\xdb\x89Y\xe0\xb4L\xd1\x94\x84;1\xbe\x96\x01'\x8e\x04\x95\n\xffS^JGzH\xbd\x1e\x97\xf0%\x8b\xcf\x08XK\xb8\x9e%\x83%\xb2\xe6\x88=\xe1x\x13o\xbd\xd8#\xc5\xff \x00\x00\xff\xffPK\x07\x08m\xc1\xf3\x81\x08\xb1\x04\x00k\xa08\x00PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(\xd4`4t\xc7\x01\x00\x00\xbd\x01\x00\x00\x11\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81\x00\x00\x00\x00favicon-16x16.pngUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(6B\xc8\xd7\x7f\x04\x00\x00u\x04\x00\x00\x11\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81\x0f\x02\x00\x00favicon-32x32.pngUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(\xb9\xb1\xf1mT\x02\x00\x008\x05\x00\x00\n\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81\xd6\x06\x00\x00index.htmlUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(]\x12r 9\x03\x00\x00T \x00\x00\x14\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81k \x00\x00oauth2-redirect.htmlUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(-\xe3\xb5\x97=9\x05\x00\xf7\x0c\x1b\x00\x14\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81\xef\x0c\x00\x00swagger-ui-bundle.jsUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(v\xf2\x8aA\x86\xba\x01\x00\xc5\x87\x08\x00\x1f\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81wF\x05\x00swagger-ui-standalone-preset.jsUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(_;\x94/\xe8Y\x00\x00\xa8X\x02\x00\x0e\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81S\x01\x07\x00swagger-ui.cssUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(m\xc1\xf3\x81\x08\xb1\x04\x00k\xa08\x00\x0c\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81\x80[\x07\x00swagger.yamlUT\x05\x00\x01\x80Cm8PK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00E\x02\x00\x00\xcb\x0c\x0c\x00\x00\x00" + data := "PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00 \x00favicon-16x16.pngUT\x05\x00\x01\x80Cm8\x00\xbd\x01B\xfe\x89PNG\x0d\n\x1a\n\x00\x00\x00\x0dIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xffa\x00\x00\x01\x84IDATx\x01\x95S\x03Luq\x1c\xfd\x8c\xf1\xc3\xec0\xa7)\xcda\xb6k6\xb2\x9b\xf9\xb2k\xc85/\xdb\x8dqx\xc6\x94m\xcc{\xef\x7fO\xff\xf3l\xdc\xed\xf2\xe0\xfe\xf8\xc9\xffP\x14\x11/\x14[\xa3P\xc4\xa1\xbc?\xf1t>7\x12s\x13\x03\x85\xca7IR a\xb5j\x8f\xa71\xbe]\x88\xf6\xb9L\xf0\x1c\x93\xcf\xda\xe3)\x10\x93f\x8d\xe4\x06\x13\xcf\xde<\x9b\xd14\x95\x8a\x92\x81OA\xcfF\x89\xdd<\x9b M\xe6}L\xe4\x07\x15\xc5\xf5\xe3\xffI\x0c{\xd6\x8d\xffs\x994\xbasfh\xae?\xafk\x1aprw\x10 <\xb9\xdb\xc7\x86\xa6\xd1\x19I\n\xa8\xb1\xd7\x84y3g\x171T$\xb5c\x7fq\xfbbq\xbfk\x8e'\x1dQ\xb0\xc2,\x92\x0bx|;F\xe5\xf0\xef\x00\x83\xf2\xa1\x1fx|?q\xbd\xcb\xc2\x16\x80ZF\xf0\xc4J\xf3\xe3\xe4n1\xcc\x17k`:}\xcby\xe8\x98\xcbB\xc7|6z\x97r\xd14\x9d\x06\xd3\xf9\x8a\xe4\x94\x90\x8b\xb6\xd9\x0cP\xebc@\xd0|\xbe*\xc94\xc8\xa7\x98'\xcdh\x00\xe3\xd92\xa6vK}\x0cB\xa4\xf0+D\n\xc7\x81)\xb0\x10\x9a\xe3\xa9\xd8\x8bx\xe4(\xa2\xbb\x8dl\x0d\x01\xb6\x8a-\xf378\xbe\xdd\xc7\xa6\xb6\xc9\xd9\xc6d\xd8\\m\xf4\x0c\x92 uQ\x0e\xd2\xf5\xb3\xd1\xf1w\xdfQ\x16\xb34a$\xa1\xc4\xc4(V\xbcF\xd9\xdf\xa4\x91\xe9\xb0&,\x12+\xcd\x93\xcf\x1c\x1cb\xdc\xca\x00qt\xeb\xcc-\x14\x89\xfe\xfc\x0fm2j\x88\xec\xccs\x18\x00\x00\x00\x00IEND\xaeB`\x82\x01\x00\x00\xff\xffPK\x07\x08\xd4`4t\xc7\x01\x00\x00\xbd\x01\x00\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00 \x00favicon-32x32.pngUT\x05\x00\x01\x80Cm8\x00u\x04\x8a\xfb\x89PNG\x0d\n\x1a\n\x00\x00\x00\x0dIHDR\x00\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x04|ID\xc4\xcf\xd0@\x04&%\xad\x1e\x16\x0f\xf7\x8d\x97AR\xfa\xca\xe7l\x87\x05\xf8\xd2\xfb\x0c\x84\x1d\x0dLVY\xdc/ju\x13\x1a\x88\xd2\xa0\xaaa\x82|nzp_\xf4\x03\xc8 \xd4;^\x8a9}\xeeu\x9a\x91 `\x04\x14s\xec\xe1\x0c\xc6]\xa3\x05``\xd1w\x12*~ \x00\xf3\xae\xd3\xa0\x9cb\x82\xa2bx(\xb3n\x1fqx\xd2\xf2\xda4\x1d\x8a}\x1ck\xd4>\x9cI+\xeb\xb3\xf4k\xc8u`L\x93\xf3]4\xb5\xd0\xc3\xe33\xd9\xee\xd7\xf2\xd9\x19\xea\x18\xc9\xc1Y:\x18\xfb(-\xadN\x82\x06e\xd5\x1f0\xa2\x1dV\xf8\xbe0\xc1\x985\x01\xf8\xd2~\\\xa6\xa5\xb5)&\xf6\x98V\x80l\xe4\x03\xf8\x03\x04\x00s\x9a^\xec\x85\x00\xf4+\x0b\x00\xe1:G\xf2p\x96\x0e\xc4,\xe46\x1e5\xbbP\xdd\x15J\x80}\xce\xa4\xe2\xc8{m\xa4\xe2\xc3\xc2\x01\x07\xc0\xdb\xa4\x18-\xa1\x931\xba\x10S\xfa%\xb6P`\x10\x19v\x99#|Gg\x9b \x10W\xf6\x8dI1\xba\x92\xd66\x17E\x12\xfa\xd9\xa8\xf3UTe\n\x1b\x95\x9d\x81f\xe5\x18\xa5umc\x81\x86\xa6\xeb\xec \x804\xcbg\x17\xa19\xfa\xc6\xf7<\xa3\xbd\xf2\x0e\x7f\x02\x80\x97Y\xc7\xac\x184$h\xa3v\xba! \xcc{\xcd\xb4!\xb1\xd8\x92%h\xe3\x93\xdc\xd3_\xda1\xe6\xaei\xcf\x83\xa6p\xbc$\xf0\xb2\xda\x94\xa2q\x14B@\x13\xdb\xff\xf3\xd7\x0d\xfaA\xb9\xc5n{\x8e\xd6Y\x08\x01u\xc1'~\x16\x8e\xe9\x04\xa2\xfbA+\xc74\x0c\x98\xab\xd7:\xfc0\xd1v\xaf$\xa2#\xb7\xf1\x08\xfdm!OXh8\x10j|g\xd1\xe0a\xb2\x99\x04\x9a[y\x9a\xbdk\xf24C$\xa0\x9e#\x9f\xa3\xa8\x001\xc6\x1a\"\xc0\xe4i\xa6\xcc0\xf3\xf7\xb7\xf5XE\xb8\xe0\xa1\xc9\xc2\x0c\x90\x83\x80$\x838\xdf\xd6\xe3\xd4\x82FNG\x0f\x876\x8a\xbf1\xa8d(\xa7@\x8cQX\x90\xdb\x19\x9f\xc5YG\xe9\x9e\x00\xa5y3]\x9aJ\xe1\"\x00\x00\x00\x00IEND\xaeB`\x82\x01\x00\x00\xff\xffPK\x07\x086B\xc8\xd7\x7f\x04\x00\x00u\x04\x00\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\n\x00 \x00index.htmlUT\x05\x00\x01\x80Cm8\x9cT]k\xdc:\x10}\xdf_1Q\x1e\x92\\\"\xfb&\x81p\xf1\xb5\xfd\x90\xa6\xa5\x81\x94\x06\x92}(\xa5\x14\xd9\x1a{\xa7\x91\xa5E\x92\xf7#!\xff\xbdX\xf6\xae\xb7\xdd\x90BYX\x8f\xe7\x9c9\x1a\x1d\x8d\x9c\x1ep\x0e\x1f\x1f>\xddBe,8/<\x95 \xc9yKE\xeb\xc9h(Z-\x15B\xd1\x92\x92\xc0y>I\x0f\xae?\xbf{\xf8r\xf7\x1ef\xbeQ\xf9$\xed\x1e\xa0\x84\xae3\x86\x9a\xe5\x13\x80t\x86Bv\x01@\xda\xa0\x17P\xce\x84u\xe836}\xf8\xc0\xffc\x03\xe4\xc9+\xcc\xef\x97\xa2\xae\xd1\xc2\xf4&\x8d\xfbL\x8f*\xd2\x8f`Qe\xcc\xf9\xb5B7C\xf4\x0c\xfcz\x8e\x19\xf3\xb8\xf2q\xe9\x1c\x83\x99\xc5*c\xae\xd7\xe0-E!\xbb'A\xa5\xd1\x9bbjD\x8d\xf1\\\xd7\x9b\xeaJ,:\x9c_\x9c\xaf.\xce\xa3\x008zB\x97\xb1\x90a\x10\xff\x9d\xde\xd9\xe5\xea\xec\xf2\x17\xbd\x90\x19\xf5\xc2\xc6\xfa\x18\x82\x9bC\xf8<<\x01\n\xb3\xe2\x8e\x9eH\xd7 \x14\xc6J\xb4\xbc0\xab\xff\xb7\xb8Y\xa0\xad\x94Y&\xc0\x1b\xf3\xc4]i\x8dR\x85\xb0\x8e/\xd0z*\x85\xda\xe7\xf2u\x02=q\x83\xbdL\x86\xe0\x9f\xd3M\x90\x14X\x19\x8b\xe3\xbb\xa8<\xda7\xfb#=CK~O\xb40r\xbdW\xd8\x08[\x93N\xfe\x1d\xdb+D\xf9X[\xd3j\x99\xc0a%\xba\xdf(\xd5\xfd\xa7\xf1\xd6\xaf4\xee'\xac\x0b;\xf9\xc1OI\x0b \xb9;\x0e,OcI\x8b|2\x18^Z\x9a{p\xb6\xdc%\xf1~\xc6\xa3\x1f\x8e\xe5\xdd*\x81\x94\xbfY\xe1\xbc\xd0R(\xa3\x91\xcf-:\xf4o\x14\xf7/K\xd2\xd2,#\xa3\x95\x11\x122\xa8Z]v\x17\xec\xf8\x04\x9e7N\xc51\\\x85{&\xc0\xad\x9d\xc7f\xc8\x97F;\x0f-A\x06\xc3m\x99\xde\\\x85\x9e\x8fGG[\xab\x12`Q\xeb\x8c\xd8v\xfb_}K7\xd3F\xfe]\xb1\xa1\x82h%q{\x8b\x9b6\x88/\xc4i }\xc07u~}\xe5\xad\xfd\xc9\x98\xe7q\xd8_}o\xf1\x92%\x9dx\x15\x9f\xd3yO\xbdX]\x1aA\xc9>t\xd6o\x93\xd3\x92\xf2\x04l\xc5\x8d\x92jz\xc1jN\xd6\xf2\xa9\x87\xfa\xb5]\x05\xcc\xf9\x1acB\xa9,\x9f\xd0\x08\x05\xb7\x962\xec\xdb\xb6\xe2\x16b\xc6\xd5\x942H\x05KfI\x06\x7f\x9c\x98\xa8\xc0\xd5\x9c\xa2\x0c\x13\xa3\xe7U\x8e\xb55;'Nk\xe6\xd0\x9d;\xd4%^\x14\xbd\xd5\xf7\x92QN\x8e.\x1c`\x079m\xe3\x9e\x8a\xfe\xed\xa2\xad\xe0y>\xe6\xe23\xdc\xf8u\xa7=\xa3\xf6\xa1\x98\xb4\x17g\xa9\xf4\x1dA\xa8Z\xe4\xf6\x88_\xfc)\xf8\xd5N\xcf,\xea\xb4\xabS\xf2\xd2\xe0v\x10\x90\x82\xbd\xb3\xe1\xc1g\xc8>\x120\x0c{\x1d\xbd\x1c\xd1\x7fd\xb4\xbf\x82|\xf7\x9f\xd0\xa7\x1e\x82\xc5`H\xc0\x94F3p0$H.\x0f]v3\xaa\x9b\x1c\x83EW}\xba4\x12O`_\xb5!H5\xd1 \x9a\x0c\xaa\xcd\x04\x8cE\xe7M:\xe1\x08\xfe\xefQ\xab\x02\xfe\xb7A\xeb\xb6k\xbb\x05{\xef\x8e\xde\x84\xcb\x9c\xb2\x8f\x04\xd7U\xf9\x9aQ:\xbe\xf51\xf1\x1a\xaaW\x97uR\xdd\xe7\xf59\x974\xb7\xfc5s\xd0\xc4P\xdf\xdd\"\xd7\x96\xc2\xdab7x\xb8;\xfc\x01\xfa'\x00\x00\xff\xffPK\x07\x08]\x12r 9\x03\x00\x00T \x00\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00 \x00swagger-ui-bundle.jsUT\x05\x00\x01\x80Cm8\xec\xfdyw\xdb6\xf68\x8c\xff\xffy\x15\xd7\xfa\xf6\x9b!kZ\xb1\x9d\xa5\xad\x13\xc5\x93\xc5m\xb3g\xe2\xa4\xcb\xa8\x1a\x1fZ\x82,6\x14\xa8\x90\x90m\xb5\xf2\xef\xb5\xff\x0e.\x00\x12$\x01\x10r\xdc\x99\xf9<\xcf\xc3s\xdaX\\\xb0\\\\\\\xdc\xfdn\xc1tI\xc7,\xc9h@\"`!\xfc\xf9?\x00\x00\xbd\xec\xf4w2f=\x18\x0c\x80\xad\x16$\x9b\x02\xb9\\d9+\xe0\xd6-\xd3\xd3y6Y\xa6\x04\x0e\xe5\x1f}\xf5\xf6\x00X\x10\xc2\x01\xf4T7\xfaG\x132M(\xe1-\x8a\xbf\xfa\xf1|\x02\x87\xf2G0\x1c\xe1\x80\x0e\\\x839T\x7f\xf5\x8f/\xe2\xb33\x92\x7f|\xfedI'));&\xe6'\xffs\x15\xb0YRD\xd5\xf4\xd5\xd4s\xc2\x969\xd5\xc0\xa2\x1e\xf0\xeb<\xce\x81\xc1\x00\xfe\xbcz\xf0?\xe5M\xf5*\xd0 \xd7_\xe6W2\x85\x80\x0d\xf3Q\xa8\xda\xe5?\x14t\x1e\xd4^\xe5mg|t\xc3|\xc4\xbb\xa8=\xc4\xb6\x0e \x8fZw\xd3\x03\xd8\xdak\xdf\x96]\x1c\xc0\x9fW\xb5gW\xf5N\xe5\xa8\x08\x1f\xd58N\xd3 S\x83\x8b \x8b@\xfbEC\xfe3\x85\x01l\xedj\x0f\xca\xd6\xaand\x9b\xb4?\x87\x01\x90\x08h\x7f\xcc\xa7\xc5\xff\x98\xc0\xa0\x8ep\x11\xb4@F\xfb\x99\xc4\xc5\xf5\x1a\xde\xe2\xd2\xf7\x05J\xbc\xcb\xb3\x05\xc9\xd9J~\xd9\x86\xd08\xa3\xd3\xe4l\x99\xc7\xa7)\xb1\x80\x85.\xe7D=\xdfm??#\xec\x00\xf2:\xc4\xc2j\x8e|\x0e\xb46\x87\xe6\xe8\x15\x86 Z\x93\xfe\xc9 )^\xab\xbd\xd1\xc25\xfdR+\xc1\xe7\x1a/SV\x1f\x03\x1c\xf8}\xed\xb1\xd6\xb4? X\x04\xbd\xb8\xc7\x81\x1c\x01\xabO/k.Q\xb3;\xd9\x8c\\\x99E\x9e\xb1\x8c\xef\xca\xfe,.\xde^P\xb5F\x02\x9b\xf0\xfbz\xfb\x0b\x18@\xef\xf6$)X/\x02\x1a\xd0>'\x12w\xef\xde\x13\xaf]\x05\xc3\x06~P\xbd\xff\xde\xb2 P\xb0<\x19\xb3^59\x9d\xdc\xd0\xe0\x1b\xd5T\xd4D\xb5ZS\xf5\x8f\xbe\xbdw'\x0c\xbc\xbe3\x0f\x81\xe9+-\xb6\x08S+\xd9\x05PN#\xb6\x02\x02 -XL\xc7\x9c\xbe\xb10\x046\xcb\xb3\x0b\xa0\xe4\x02>\xac\x16\xe4(\xcf\xb3<\xe8=\x8d)\xcd\x18p\xe0B\x0c\xe34.\n\x88\x0b\x88\xcb\x1ezacG\xde\xcct\xaaG\x1c\xc1\xf3\x08)\x15\x0d\xf6\xef\xef\x87\xf5M\x94\xc0\x00\x82\x1c\x06\x90\x85|\x07\xe4\xf5\x1d\x90\xc3\x81\x01y%\x9cZ\x1bO\x1f\x8f\x01\x96M8\x96t\x98\x18\xc1\x8c\xafd9\x04|\x06|\x13\xef>\x00\n\x0f\x81\xf5SB\xcf\xd8\xec\x01\xd0\xedm\xd3G\xa0f\x8d\xc4\x99\x8e\x1e\x18\xdf\xc8\xfb\x15m\x81A\xfd\xe7z\xcd\x89\x11\xe4}\x9d@I4\xe9\x9d\xc7\xe9\x92\xf4 \xa1\x90s\x88\x05y\xff\"OX\xf9F\x18A\xb0\x1bA\xa2 \x10\xf2\xc9\xe5\xfdOd\xc5igk(\x0djo\xda\xb9%\x009.\x18\x08\xb0\xf6*E*\x16h\xdb\\\x1c\x04\xb9\xbc\xcf\xbf\xd6)H\xbd\xcf+\xbf\x1d\xa5\xef\xc4\xfaHJ\xc4\xa0\xc17\xf7\xef70\xadB,N\xca\xff\x9dX\x7f\xf7\xde\x7f\x0e\xe9\xad\x04\x84\xe8\x14\xe3=\x99\x92\x9c\xd0\xb1\"\x1b\x9c\xd7\x81Y\\\xd0\xbf18%\x84BB\x13\x96\xc4iR\x90 \xec@\xb1\\\x90<\x08kop\x12C&\xbd\xd0x\x86l1\x8e\xd3%c\xb65\x18@p\x9e%\x13\xd8\x85\x01\xe7\xd2\xe0\x10zK*N\xedI\x0f\x0e\x9a(\xcc\xe9\x1bg$+\xaep\xab\xe4\xed\xf8\xc7\x04\x0e\xf4s\xe9\xaf[R\x18@\x1cp\xec\xfa6l\xaci&\x1f\xdd\xb9\xfb]\xf3Q\"\x1f\xdd\xbd\x17\x86&>0n\xb3\x05\xea|6p\x05\xc4\x8d\x1e\xc4\xb6\xb9\xae\x87'\x16\x90\xdf\xba\x05t\x99\xa6\xb8\x92\xccr\xf6\x1cs,\xe1\x8ceN\x8a\x82\xcfs\xbe,\x18\x90\x84\xcdH\x0e\xa7D4\x90\xe5\xdaa\x14\x01?\xacz\xb0\xbd1v4\xd0\x8eT\x04\x88o5d@\xab\xd7\xf9\xe8k$\xca\xc8\x19\x16,_\x8eY\x96\x9b\xa0\x0d\x88\x0f\xe9\x92\x1c\x00i3\x85\xd0d\x1c\x0d\x8c%\xbf\x14\xdd6\xb3\x96\xd0fPw[/5\xc87'\xae\xf2PPk|\x88\xd3\xcfk\xc7\x01\x13\x92\xce\xc9 \xc2\xe0\xe4\x84\x1fT\x1b\xf2\x01\xb8\x1b*\xa0\xe7\xae\x83\xd6\xbc\xd5T+|\x85\x1e\xe7y\xbc\xd2x\xc3\"M\xc6D\xdb*\xa0o\x17f=\xae\xc5\xdc\xeb\x8b/\xf9\xceqNbV;\x99\xc20\xd2\xf1\xa4\xaf-9\xe7\xc7\x1b\xdb\xc8<\x14\x03C\x0f\xd5\xee\xc5}-6\xec\x8b\x80\x84^-\xe6\xce\x16\x97U\x8b\xbf\xfa\xb6\x989[,\xaa\x16_\xfa\xb6\x98t\xcf\xfa\xd6-\xd8J\xab\xa6\x7f\xf0m\xda@\n\xb5\xa6\xb7\x82-\xc1\x1c\x91\xe1t\xe4\xd7\xe0\xd2\xb7\xc1\x85g\x83\x85o\x83\x13\xcf\x06\xd3\xee\x15_\xaf\xb1[\xaf\xe6\xc6\xbe\xe3\x9b\xb5\xc6\xa7\xffbA.X7\x16d\xea\x8fD\xfcA\xfbI\xf1\x9c\x95\x9ck,\xee\xbc$+\xc2\xc5\xf5\xa5|\x81N\xc8%\xde(\xc4\x8d\xc7E\x91\x8d\x93\x98%\xe7\xfc\xa3T\xdc|\x9bOH\x8eo\x8d\xf9\x0d\xd5\x06\xef\xba_\xb5\xc0\x07\xd0?&\xfc\xbcJ\xda\xf4c\xca\x05\xc4\xbf\xff\xfd\xe4\xe4\xf9\xeb\xd7\x1f?<~\xf2\xea\xe8\xe4\xf9\x87\xa3\xf7\xf8\xc7\xc9\xdf\xff\xdekS\xd6E\xfb\x8b\x97G\xbf\x1e=\xb3\xbc>1t\xf0\xe6\xd9\xd1/\xd6\x0ff\xed\x0f\xde\xbe\x7fv\xf4\xde\xfa\xc19\x0c\xe0^\xfb\xf6\x1c\x06\xb0\x07\x0f\x1f\xc2\xb9A\xf1\x00\x03\x98\xc3\x0e\x18\x8e\x96\x15*\x9c\xda\xf7O\x8dZ\"\xa8\x8e\xb2\xad\xbd\xd6SC3'\xd7i\xc6F\xcb/\x9c\xd8J\xfa\xd8$g\xc4\xf6\"O\x92|dn\x91\xc8\xa3\xa1lp\xd7o;]\xf2\xd3\xcc\xf6\xf0\xd8q\x12q\xbee\xbd\x86\xdd\xb6\xf4W\x13*_\xc7l\xd6\x9f\xc7\x97\xfc\x90&R\xb2\x84\x1dT\xb4\xf0c\x88\xb3Tx8\x06\xa8O\x13Rh\x06\x0f\x81>\x80\x8c\x8b\x9f\xf90\x1b\xf1\xe3j\x98\xc160\x83\xac)A\x99{\xcd\xf6\xa9s94\x9e\x8c\xf4\x8b\xe4\x0f\x05S\xfcs\x80\x0cE\xc2\xe9\x02#\xc1cq\xba\xf2'^\x1d\x7f\xb2B\x12\x99P\xba\x9c\x9f\x92\xbc\xc6\x82\xba$o\x8a\xd0\x7f\xf4\xe8\x91 \xfc\xa0\x1a\xe5|&\x15\x1c,_\xa9\xbb\xfb\xdf\xdd\xfd\xee\xfe7\xfb\xdf\xdd\xc3\x19\xd2R\x05\xfb&~cn\x85/2m\xe3\xba\x0d|\x0c\x1e\xc2.\x1c\n o\x03\xab\xc9,\xe0\x00\xcec\x97\n\xaf\xc1\x14\xda\xdaxkb\xe2\x1aM\x05rm94\xe4Zs\xe8\x08\xa1\x1e\x1e\x0e`\x87\xe2\xc9^g\xce\x0d/3x\xc4\x01\xe85\xb0w\xd6\x95\x97\xa3z-G\xee\xb9a?\xf8\xb6\xc7\xfc\xda{\xed\x018}c\xc0!P\xce]\xcb\xc5\xd6\xf77\x83m \x9c\xf5n\x087\x9cC\x12\xef%\xa8di\x9d\xf4\xfa/\x8e\xdf\xcf9\x1dhS\xe6\xdf\xf9y\xd1\xbe\xfd\x06\x06\xb0\xdf\xbe\xfd\x9e\x9fR\x95tW\x19K\x8eW\xf3\xd3,\xe5\xeb(\xfe\xea\x8bM\x9d\x19\x8c \xcf\xc4I\xa7^0\x1cm\xaf`\x00\xef9\x8e<\xb3\x1d\x01\x1f\xcd4\x87\xcd\x92\xa2O\xc9%\xf3f\xc6?\xab\x95\xb2\xe8\xa8\x94\xc1\xa4Z(\xbe\x05\xf7j\xcb6\xe4\xdf;\xa8(\x1cB^\x9e!\x19\x1c \x91v\x9e\x86\x99Y\xb2\x9bd\xd4v\xe2z\xd2\xea\xef]T\xc19$\x81~\xcequJ\x9a\x96A\xfd\xe1\xe6>\xb7~\xf4ec\x9f\xb8\x19\x83\x866H\xb3\xf4!\xcexu\xf1\x93\xb9\x0be\x91\xe1C\xb5\"\x82\xd4!\x08\xa3\x85\xdf\x8c~tw'\x0e\xd3\xf7Hk\x87\xefG|\xcb\x90\xe1\xb3\x91a\x08\x0d\xb5\xcc@?\x13\xd5\xf0\xbcF\xf4\xb3\x07\x8c\xd5\xc9\xabCXp)^]\xbcpv\x81\x1a\xa0\xe6\x91\xa3\xb6cB\xd0 \xab\x84\xe8>\xcb\x8e\xc9g\xbc\xa5Z7\xb7\x0d\x1aP\x0b\"\xc5'\x93M\x18\x95X\xe4\x02\x181\xae4(M\xa9M\xbfut\xb9 cF&\x82A\x83,\x87DIE\xa27\xc8\xa6b\xcb\x15\x11\x7f\xfa \xa5\x1b\xf1\xe8\x00\xb5\\\xb6n\x8d\xab\xc8\xaf+_d\xfb\xf5\xcb\xe0\xdeg\x19\xcab\n\xe2r\x11\x96\xed\xb5 \xfdi\x9e\xcd\x8f(\xcbW\xe5\xcb\xc4w\x94/\xbfl\x94\x86\x81\x11} |\x9cR\x8aT\xb7\x96\xdec\xfb\xc19\xb6\xe0\xcb\x07\xa7F\x13\"4\x19\xdeo\x8cL\xff\xf5QSU\xb1\xec\x98\xe5 =s)\xdd\xb4\xc1\xf6\x86\xcf\xe5\x01=\xea\xd5{\x88\xe0c\xff\xe5\xd1\xaf\xc70\x80\xe7\xfc\xef\x9f\x1e\xbf\xfax\xc4\x7f\xfd\xce\x7f\x1d\xbd\xf9\xf0\xfe9\xfe|\x13\xd5\xfaOh\xc1Q\x1f\x06\xcdQe\xcb|Le\xf2\xd9\xb3M\xd3\xd8^\\\x7fQ\x11|''%\x00{|$\x7f\xf6\"\xe8]\xf5\x9cc\x1e\xc7\xe3\x19yO\x8a\x0e\xeb\xa8\xd6\xd5\x96\xe8\x0b?\xc4sOt-e\xbd\x8f\x14\x1fL\xf0\xfc\xd2\xdf\x1c\x88\x17+\xac\xef\xb3L\xc8\xb2a$\x1eI\xc1Q\xfbH\x9e-\xf2\x05\xd74\xca\xfe\xbb\xac\x18\xdaDR\"\xbdx\x04\xa3\xd8\xd2\x01\x98{\xc8\xf2\x0d\xba\x18wv\xc1\x82_#x\x11F\xf0km\xf1\x15\xbd\xf5\\\x133\xa6\xbf\x14-\xbf\xf4\xc7\xf4\x97\x0eL\x7fY\x1b`EI=\x9b6\x0d\xf1\xe5\x0d#\xfc\x90#\xfc\xa8\x8d\xf0/o\x18S\xf6\xbcz\xf8\"Liw\xc1\x82\x1f\xc4z\xfe\xe0\xbf\x9e?8\xd6\xf3\x87\x06\xe5b_\xb6\x96/\xfaI!Z\xc8\x08\xff\xa5\xb4\xb7\x1c\xbd\xa5\xba\x96\x8f_S\xe4\xbelko\xbf\x8a\xe0\x9f\x11\xfc\x12\xc1?\xdaJ\xd3\xe3\xa3\x7f\xa0\xc2\xd4&9\x12\xe2\x10\x1dOb\xe4\xca\xd0\xa3L'6\x1b\xb1\xaf\xcc\xd2\x83\xe2/\xa5q\xe9\x13Y\x15F\x1eR\x8cDr\x83\xd5PN\xf8\x07\xc2\xc7\xadF\x077\x19\x1auN>\xa9\xf4\xf3\x96\xf9\xa3\x80\xe1\xaf\xa0\xcb\xbb\xbb\x93\x86\xb3\xa8q\xef\xa9<\x0c\x86#\xaf\x8e2KG\xea,\xaa\x0c\x18\xff\xf04\xb0 7fm\xf0+\xdeZ\xf0\x95\xd4\xb5\x12\x12\x0cG\xa1_\xbbq\x07r\x08\xa3fR\x883\x0fy@\xd9\x05 \xdb\\\xf3\x93\xea\x8d\xdc\xfc\xc6\x1f\xd5\x1b\xd4\xfc\x86Q\xca9\xac\x84\x9cR\xf5d\x16*\xbfL\xd2\x19~\x8a\xe0|\x04\xfc\xb8O6\x92x6\x92Y\x97\x1d@/\xcc\xc2\xdc\x97OO\x08r74\x8b\xc2\x8d\xe4?7\xb0\xc5\x80\x1e\x06|(W\xd7k\x08)\xf1T\x97\x11\xc9\x9a\x99\x81\x9a\xd9D\xf0\xd2\xca\x91\xf0\x03\xa2\xb2l\xecE\x10\x0b3F\x0c\x0f\x07\x90<\x80\xd8\xeeF\x07r\x1cK\xde\xc6\x90r\xd1\nv \xe6\xb2\x95\xc5\xad\x0e\xd4b\x0b\xbd\x1e\x0b\x96\xc3\xbdQ\x84\x8a\xbb\xe5pw\xc4\xbf\x8c\x80\x84\xa5\xa6$\x86mh+\xe1\xa0%~\xa9K}\xd6zhU\xfb\x936\xab\x8c\x9et~Df\xfc\x17/\x93q\x85\xac\x90\x15+\xe7\x02\x0c\xc7\xc6\x8f\x81\x93\xa5P\x97r\xfe\xf0_X\x05\xfc\xedmx\x04 \x1c:\x1a\x07?u\xa7\xba\xacjOu]\xc1\x01|F\x07F.\xcaKL\x12\xe8L\x86{\x8d\x93\xa8\xfc\xa8}\xdb\x03M\xb2\xfc\x1ax2\xb5;\xb1*\xca\xa4y\x94\x0b_L\x8eR\x11XQ\x83\xe3M\xfd\x0c\xa3\xd5\xbe\x91\xba\xcf\x0c\x9bx\x19\xd0\xb0?\x8f\x17\xd5\xba\xbb\xda\x05m\xd2\x08Q\x0c\x1d\xa06\x10:Ts\x13b\x1d\xd2\xaf\xff\x81!\xa9-\xd0^t\xb4\xeaD\xd0\xeb\x99|\xcd\xf8\xd5\xeb5=\xf7\xf0;N\xd3\x17\xde*\xab\x85\xfbT1\xf0#/9\x1b\xc1\xa1\xb4 \\:\x7f\x95\x14\"\nfB\xc4\xf3_\xeb\xcf_\xc7\x0b\xa1\xbb\xf2\x1a\xce\xc4=\x1ce=\xae\xf9]\x0d\x14O\xdd\xd4\xaa\xe9\xaf\xf9Acf\xdf\x11\x1cwHe\xbe$\xb0%\xf5\xef\x0c-\xcc%Fm\xd9\x18%\xc1\x82j/\xeem\xa0\xa6\x97N\x08o\xa7V#\x06So\xb8\xb6f \xb8y\xf9f\x10\x868\xa1\x00=\x0f\xf4\xbb\x9bN\x10\xec\x93\xf4\xa7f[f\xc7Q\xd2'\x9f\x97qZ\xa0J\xde\xf4\x02\xd3^\xd8Ro\x07\xcc\x93#?\xf7Z\xf2\xee\xe5\x8d\x03\x11M\xa4\xd9\xb5+\x87\x07\xed&+o\xca\xc7\xda\xcd\xe6\xe7''\xb3\xb8\x98\xb5\x1a\xa8n\x97\xaf\xd4\x1e\xac\xd7B\x7f\xcco.\xe5\xb0\nu\xa3\x907\xc6\xea\xc6\x18=\xa5;\x90\xb2\xe9\xc1!\x0d\xd1\xf8\xdb \x1b\xe5Z\x81\x9e}\xe6\xb6\xf9H\\\xac\x06J\x88})#\x04\x1d\xe6\x8f>9'\xf9*\xe8T\xa8\xa8K\xb1B9\xda\x00\x83P\xec\x82Nv\"\xe3@\x98\x91 CNQ8/\x06\x94\xc3\x15o\xeeb\\\xa1\xed(\x00\xf4\xdf\x97\xfdq.\xc2c\x8f\xa8q\xda\x16\xa8\xe5gc\xee\xbc\xf1\xaaZ@\x0b\xcd\xd1\xd5\xbe\x88m\xda\x0d\xdbB\x90\xb4 \x0exg\x0d\x0f\xf9\xe6\xa5xK\xc7\x12\x10\xa9\x05\x81\x01$f\x08\x1b\xa17\x15\xc10\xc6/\x16 \xb6\x8frE*\xd1\xc7\x14<\xa8_\x1c\x9e\x9c\x13\xdd\xc2\xd8\xb4\x00\x9d\xa43\xfe{\x86<\x01\xe9\x9f\x11\xf4\x8a\\\x85\xfc \xbf\xab\xddB\x1cQ\x185\x95\x1ek\x06\x8a \x885V\xf1q\xaa\x11\x13\xbe\xa8\x0b/\xba7w\xd3\xbd-T4\xea\xf1bsM\x02\xe2\x1c\xbbj\xc0\x8c\x8fB\x9f\xa3\xbc\x1e\x1a\xfa\xa4\x86/\xcb\x1e\xdc\x86\xdd\xd2\x9fE\xfa\xbd\x84\x91zC}\xe8:\xd8\xfeY\x0e\xed\x9ff\xc4\xf9\xa7\xb4\x19tl5\x1b\xb4\xce:\xa0U\x8b\x8c\x11*\x02O_\xa1\x15q9\x0b\x99\x97b\xd5X\n\xad\x0d\xf3j\x9c\x91@\xbaZE\xa0\xe2\xfb\nF\x16\x10\xc3\xfb\x98\x9e\x118]\xc1n/\x8cpo\xe19\xb4\x1b\xd5W \x0d5\xe8[z\x1bv\xc3\x08i\xba\xf6\x02\xc5e\x94K\x18\x9f\x16\xe8z\xc8\xe0\xa1\xe4\xd8\xf8\xdb;T\x99pN\n\x16\xe75\xdd&\xa1\x13M\xb5y\x82C\xc3\xc1\xeaX\xa3\xa3\x07\xfe=&I\x1a\x04\x0cv8\x01\xbe\x0d\x94\x8bV!\x97\xcd7\xc3\x9d_JX\xfeb\xc6\x9d_\xbe\x0cwN\xcd\xbaD\x81/\x9aJ\xe9\xf1i\xc1\xf2x\xcc\x9a\x96 K\xb3'\xc4\xe5fz\xe1|z$\x9f\xea\x0f53\xd6\xf0\x1f#\x15`\x1a\x10\x12\xc1K\x8e\x19z\xdc\xc3\x19\xe9\x0c\x04\x82\x86\x15\x86\x93G\x94\x0f4M\xfb\xf0\x932g\x84\xa3\xb6gc\xa3\xcf\x8dL25\x7fY\xadG\xe9![S-U\x1e\xb2\x03\xc8\x85\x8b\xac\x15W\xa4\x8a\x88\x04t\xc80\xecn\x07=\xba\xb2\x11\n\x7f\xbc\xa3jgf\x1c\x15\xadT;\xf3\x9a\xac\x9fu\xc84Q\xe3\x14Z\x937\xbe\x95\x9956\x9bikJ \xaa7\xbd\\M\xa8/\xf4\xc3CbD\xf9Z\xdf\xb3\xb8p&\x02\x80\xa6\xa5S4\xdd\x08\x93o\xa9\x02\x1a\xbd|\xe9\xc6\x12\x9d\x8a\x9dU\x99\xaa\"\xc9V\xeb;-\x11;-\xe1;-{\x00\x89;\x16:\xe6\xdf\xe3bf\xb0\x03 \x1c@b\xd1\xf35vf<\x8a n\xee\xc6\xc4\xa8\xb4\xb5\n\xa3\x89\x17\xc8\xae\xb3=%\xb8\xac\xfbS\x03\xa1uw\xe6\x9d{8\xb9\x89=\xbc\xd9*(\xc8\xa1\xa65\xfb\xf7\xed\xf9\x98\xef\xf9\xd8o\x8fk\x8b8\x9cU\x87\x1c\x95\x87\x1c5\xee\x8b\xd2[\xc5c\xad\x91\xf7\x0dk\xbb\xb2&4iB\x86\x85{V\xd8\xf2SP7\xcb\x86v\x94\xb1\xe8$\x9e\x04\xd4\"\x83\x96\xbb8{\x00[\x01F\x9cKyT\x08\xa4\x18\x8b\xb7'\xb4\x10A&d\xe2\x08\xf2\xedm\xb9\xab\x1e\xd8\xa5\x91\xbc s#L+}\xf5\x8d\x025\xcb7\x86\xaaE\x9d\xf3D\xd7\x12\x8b\xed\xf2\xbd\xa5Y\xcb\nl\xbe\xd5\x98\xb6\x0e\x1dZ\x0e\\$\xe1\x8c\x8e{@,\x8dX(\xaf\x8d\x10\xe4\x12\xe5\xf3\xff\x02\x94\xaf\x0e\x15\xfd\x14)C\x08D\xca\xa2\xb6\x83\x80~\xa0\x94\xc6\xa8\x07\x1e\xcc[6LF\x11'T\xadC\xc226\xbeK\xa8\xa6%\x12\xbb\xe4A\x17\xdd\xa4.m\x12\x9a\xd8\x86\xc9H\x84C\x96c\x8b\xeb\x03;\xcdI\xfc\xa9\xbd\xa06lk\x1d[\xc6\xe5\xfd\x8f\xed\xbe\xc6\xc2Z \x9ai\xb1\x8d/\xdf\x08\xab\x8a+\x01\x8f\xaac\xb5Ka\xd8\xbdQA\xc1\x0d\x11\xa5\x02\x9eC\xb1(\x82\xf2\xe4\x1e6\xbe\xe6\xb4.+\xf67\x1f\xfa3\xbcsI\x03\xe6\xe4\xfa.v\x0dA\x1b\x0e\xa1\xf7\x9e,H\xcc`8\xea\xc1A\xf5\x0b\xbd \x98\xa6\x16\xda\x86^u\x0f\xbf\xe5wX2'\x05\xb4\x9d\x8e\xe7\xd7g\xcaML\xb8\x18\x82\x81\x01\xaf\xf5\x93\xd0q\xba\x9c\x10o.|Ft\xc5W;*\xab\xd1<\xa6,\xf0\x99Hm\xffpPYQ^\x8b\xd9\x13S\x85\x03\xa5\xad\xab\x8d\xec\x83\xb0\x13\xc3\x8e\x08\xa6k2\n\xcd\x91\xe6\xe4\x9c\xe4\xc5&n\xda\x1dp\x9d\x90\xcb\xb7\xd3\xeb\x83\x15\x0eQc\xb8\xb3\xe7\xec&\x8d\x0b\xf6\xfc\x06\xba\xaa0\xb4\xb3\xcb\xeb\x0bS*UT\xb9\xc4\x98+\xcaJ\xb0\xca\x03\xa36\\\xda<\xd1\xa8S A\xbd\xe6\xb2\xb9\x94\xb3\x11\xab\xba\x19\xb1Vl&<\x04\xaa(N\xc5\x02Q \x89\xd0\x98\xf0F]7\"~xP\xd8\x1a4\xa5\x91\xd2\x13\x0fI]\xf5\x0e\x87m\xcc\xd4\xa6z\xde\xb6\xf7s\xfa\xbe\x92\xf4}u\xc3\xf4\x1dU\xc6\x8a\xbc\x8b\x1f\x1au\x17\xda\xddm\xe8\xf5\xfb\xfd\xea.\xa1\x13\xd8\x86@\x08\x15\xeaE\xb2\xe0\xed\xc1\xe9\xaa\xf69Y\xf0\x86{!\x9e\x07\xed\x93`u\xb3'\x81\x1an\xa5\x8b\x84\xaf\xebCi\x9d\x11\xabk\x9d\x11\x8as\x08\x08\xec\xe8}\x87p[\xeb\xcf\xba?0@zW\x18\xe452!n\xf05B\x9d\xf84\xcd\x0c\xb6\x87\xc6\x90\xbd\xcf\x9d\xc6\xa1Rv\xaa\x1d.\xe8R \x02\xb2\xcb\xa7\x91\xb0\x15\xe0\x19S\xdd\x0d\xe1\xe1\xa0\xf4-]\x91`7\x82\xddP\x1eO+\x89\xdcg\x84\x05\xbaU@\x99\x0c\xf8}f\xb8\x8f k\x9f]\xab\xeb\x1c6\xe7eTemy,\xf6-\xf8\xbf:\x92\x0c\x06|.vi@d\x17p\xaf3\x94\xf6D\xb5\xd0\xb5\xf3 4\x13mp\x89\x03\xed\xc3j\xf5\x85\xe7#\x0eGB\xd4@sV7s\x16V\xd8\x8dz\xc3J$\xe0\x90\x93\xf2`k\x03S\xf8\x1a\xf3\xe0iw\xeb*G\xeaT9\xd6%\xc4\x08\x12\xa3\x06\xd1\xbcl\x19l\x8b\x11\xed\xf0\x01\xe4\xfe\x0b\xd4\x92\xd7\x8c\x00\xdc\xfc\x00\xae\x80g\x1co\x03\xa0\x969\xf9\x02\xd9\x0c\xce\x9b8\xec\x95 \x9d9\xd5!\x0d\xe8\xf3E\x7f\x84\x16\xc9\xbf\x98\x03P\xca\x17\x94\xd7c\x1f\x91kuC\x0c\xc1\x8a4\x16F\xf8}\xc8\x1fe\xb8\x1d\x9aU\xc5\x13\xfegy_\x92,\xf9 \x9eq\xe7ed\x91\x81\x8f8%*\x9d\xd3 \x89\xe0\x94\xe0\x9f\x17\xd5\x9fG\xea\xcfSRF\xf4\x887\xb5@\x1e\xf1\xbe\x0c\xf29jH0|\xa1/\x89-\xbb\x04\x9el\xc9|\x89 &v\xf6\xab\xd3\x8e\xdf\x0b\xaa$,\x11\xec\x87*\x7f\x06\xbe~\xe0\xbfk\xee\xdf\xbbw\xe7\x1e\xdc\xe2\xe7\xd9\x9a\x13s\xfb\xc6)\xdfd\xe2M;\x92\xe3^\xd9F\xb7\xbbG\x8f\x1e\xc1\xde\xfdP\xde\xe1O\x02V\xde|\xf8\x10\xf6\xee\x8b\xdc3!\xac\x9b\xce\xf8\xb6P\xa6\xe3._Il\x1en\xc1\xde\xee7w\xbe\xb9\xbb\xf7\xed\xfe]X\xc3\x9d\xfd\xfd\xbd\xfd\xfd{w\xbf\xe1O\xfc\x9c2\x9fZ:\xd2)&\xac\xd7\x8e\xe0\xeb\x92\x86Z4\xd5\xdd>\x8f\xaa\xa3\xb6\x07\xa3\xbb\xe3\xae\x9e\xb7\x9a#4Px\xc5\x18\xa8qY\xe6P\xa5=\x18\xd8}\xce\x12\xf4)\xdc\x92C\x15\x0e;\xc2\xa7\xc21P\xd0\xf0t\x17\xd66\xe7(q\xec\x8d\xe0\xbd\x80\xf5\x1b\x993\x83`:\x1cxF0\xf1\x19>\xe7T\x1c\x1b\xe7K}\x9d,\x0bp :\xdb\x08\xc7gq1{\x9aM\x88\x06\x19u\xcb\xa4\\\xc4\x96\xaa\x90-\x1d\xa4\x9e \xb43\x9e\x1f\x9a\xbe\xaa\x08\xbfw\xc2c\x8d\x84a\x97\x1a3\xa9\x9c\x0b\xcb\xaf\xc9\xf09\x19y}\xb9\xf5\xd6:n\xb05\xceOS\xb4q?/\x8e\xaaT\xd8\xe8\x0egz\xe25\x16[g\xdd\xe0\xd5\xbf\x96\xa3\xa0\xd9\x84|X-\xf8\x96\xdb\x0d\xa1\xb8H\xd8x\x06Au\xbf\xab)~\x8d\xe3\x82\xc0\xdeA\xe7{\xa0\xd1\xfe\xfe\x92&\x9f\x97\xe4\xf93\xfb\x1c\xd5\x85\xcd\x7f\xb7a\xf3\x93l\x8c\x01\xc3G)\xe1\xff\x88\xc96n\x96cp6mVj\x83\xdcR\xdaj\x19\xdf3\x7f\xcd\x97k{\xfb5\x89\xf4\xa3\xef\x16\xbc\x16{\xff5\xee}G\x88\xc8\x07\x12r\xac/\xa4,z=G\xd7\x06\n=V6\xd5\x01\xfe@\x97\xe7\xa6\xc7`\xefMFw\xc8%#\xb4H\xaa@\xc2\x02\xe2\x9c`\x92\xe38M\xb3\x0b2\x81\xb8\x80OdU\xf4\x9b\x89\xb3\x9b\xdd\xf3\x0de-n\xf1\xdc\x98\xc3X\xbf|\xd2\x11\xab\xab\xbb*\x86~iI\x8c;\xde\x94|\xbay\xf1\x01\xcc~\xb1\xea\xc2\x15j\xac\xc3\xa6$C\xb2\xc9Z$\x89\xc6\xc1\x9b>\x08\xad\x0d\xb9\xd5m\xfa\xa5\xcb\xda\xfe=\xf7\xe3\xc5\"]I6\xde\x12\xd1\xaf_W\x91\x83L\xf23\xb0\x03\xb2\xddD\xb0\xe6\x94^\x91\xbc\x16\xde\x7f\xa4\x08!\x96AA\x18\xc4@\xf9>\xa8 \xa7\xc6\x08\x19\x95{\xc2\x89\xfa\xfc*\xe7`\x9f\xfd\x06\xf4\xc4y\xeaot\xda+\xe5kI\xd68\xc3\xa0e\xb41\xe6\x03h@\xeb'4]\xf1&\x85\xd6\x14\xd5\xa4c\xe1\xd4{J\x80s\x0fd\xd2\xf7\xf4\"\xfdd\xe1\xedKu\x0c\x13\x8c\x92f\xa1 \xf5b\x16\xfc\x85;{\xf0\xb5HU\xd8\x1f\xcf\xe2\x9c3/\x8fY@Q\x98\xb1\x8aG\xc7\xa4\xed#\xad\xff\xe2\xbd?&U\xc6\x84\xa48*ic\x9bj\xbc\xf5\xdaa,_9\xf0V\xa9;\x8d4\xf3\xcf\xab\x08z\x7f\xefE\x82]\xb4\xea\x04\xc6\xb18\xe2]{\\\xf6cs\xf57\xa0Y\xd8\x16\x97\xdf\x91\x08>XE\xe6\x9fI\xfc\xe9u\xdc\xd02\n\x06/xGd\xe6\x02\xf9\x92\xa1qqF\xb6\xa1\xfc\x1c;<9I\xe6\xf3%\x92p\x8em''\x8d\x14\xed\x1d)\"\x03lE\xfc\x0e\x9e\x93&\xd2\xf3\xfe\x7f\xe7o\xec\xdd7$\xa6\xe4\x0f\xf6\xef\x192\x1f\xbf\xb7\x0cY\xb2\xf86)\xfa\x95e\x03\x9c\x91@\xc4f\xa1tV\xb9\xcd/H>\xcd\xf2\xb9P\x7f\xc7\xa2\x8d\x8b\x84\xcd \xa6\x90\xd0iB\x13F\xa0H\xfe \xbe;\xf0\xa3[\x8cw&\x0d\xfbE$\x0d\xfb\x8cMp\xfeb\x1c\x94\xf9\xd3\xf9\xb3>\x1f\xd9\xeb%\x8byO\x85\x16\xd6\xd2\xa5\xab\xce\xad\xe9\xed^\x91\x80*-?\xedO\xb3\xfc(\x1e\xcfj\xf1V\xc6@\x06u)R\x8a\xdc\x15m\xa9\x9b\xd4e\x8a\x82\xf6\x03\xe7g\xef\\ \x7f\x90\x8el\xe6\x1fI\x04'|\x9e\x1f\x89G2\x9d\xd2| B\x8a\xcb\x038r\xa9\x88\\\x8bd%!\x1d\x15\x86`{\x00\xfb]\xa2\x14\xda\x85\xe1Q\x95@\xc6p,\xbfN\x8a\"\xa1g\x82 \xc3^?\x91\x95\xc8f\xc1\x86\xd4\x94fR]\x82y\xe6/E\xfcU\xde\x97-\xdc\xbds\x9d\x11\xfc\xd76_\n\x85\xa7\x96\x01\xeau\xbc\xb0\xa6<\xfb\xf8\x85\x96\xc5\x93<\xcb*\x959\xff\x81\xa2s\x19K#\xf26\x85&\x93b\xad\xebb\xa3\xae\xff\xa1'\x85r\xcf\xa9 \xec9\xdd\xa0i\x9c\xc8r1\x89\x19y\x8e/\xaf\x0c\xd5\x0cm\xdfn\xba\xb29\x99g\xe7\xa4S\xd26\xccz\xe5nxBR\xc2'\xe0\xdbtk\xd6\xbeS^m:e\xd1IsA\xdc\x89\xa3\x85\x08Y\x92\x17\xa5G;\x94\xae \xa12\xce\x94\x13\x18\x92\x91l\xd4c,m\xf4\xb0\x8c\x06\x83]\xd1)R\xc6b\n\x14w\xf8\xc8\x96$\xda'\x91\xc4\xb9\x8c\x03\x15\xa6\x8d\x95]'\x1aw\xfa\xe2qr\x17K?<;Q<\x97)c\x12YM\xcbb\xd6RW\x01\x03\xc8\x82\xa5\x83\x06\xca\xe5*p\x02K\xe9\xac\xdb\x8e!\x03\xab\xd4qF\x82\x04cH\xd0p\xc3\xf7n\x04\xbd\x84\x9e\xc7i2\xe1\x94\xf8]\xccf69\x88\xcf&\x85\x01\xc4.\x0fT\xfe\xd2XNy\xc5\xa7\x8c\xd4*\xe5\xfb\xc9\xfe\x01?\x07I0\xae\x16\xd0\xa9(\x9d\xe2\xec\xc7r\xf6\xe2\xd7\x8a\xff\x92\xbb=H9\xbe\x06I\xc5\xcb\xb0\x10\xcf\x8e4\x82\xa9\x81\x07\x90{\x9eR\xd4\xe9Z\"\x1ee\xdfy\xd9\x9b\xe4\x9aZu\xd0\x1a;`\x9c\x92\xd8Y\x94Hk\xbc\xed\x16\xc3\x84?\x84Ym\xc0:\xea\x8d\xb3\xee\xf6k2P\xe7\x04J\x8b,_\xa9\xb8x-t\x11&\x06@\x8e\x86 b\xb1\xfeE\\<\x16\xf44@\x1f\xb6\xfe\xc9 \xa1\xc52'o9\xbd\x0e\xea\xc4[\xb1R\xce\x81\x97\xbd{\xee\xc1\xd6\xf9P?7\xf4\xd1pQ\xec\xd2\x0d\xb6\xb8x\xae41\x9b\xf5\xaf\xf7\xd3\xb12%\xc86\xebA\x9e[\xce\xb67spR\x1a\x11r\x01/\xfde\x9e\x8d\xbc\xd0\xbe\xd4\x89Y;\xdcKo\x1b\x94\x03\xdb\x99E:\x88\x08\xba3\x93\x80a\x82\x19\x86\x19eL6\xf7H\x94}\xea\x80\x80\xb6\xda\x9d{K\xed\x98\x8a\xc11`+?\xd2\xfeI*\xd6Fgk\xa2*\xaf\x03\xb24\xc8\xe15\x1a\xd2r?\xe8\x0c\xce\x9edp\x0c\xd3I\n.\xb9\x0f\xe0\xb3\xc1s\xe8{\x12\x01\xb2W\x8dd\xc0\xaf\x1f\xbf\xb3TO{\xc2\xdf\xd6\x81dS\x0f\xfedO\xfc\x81\xc3oOH&*j\x19\x1f\xac5>\x9c @,\x9d\x9c&l\x8e\xe0PN\xb14\x13.\xc8\xd4\xab\xcf\x9f\xaf\xd3\xe78[Rv\xed._\\\xa7\xcbOd\xf5\xa3`\x8aY\x0b\xba~\xdd\xfezs\xdd\xae\xbc;}\xd9\xdd\xe9 \x13\xa5FK\xa7\xe6*\xc2\x86V\xbe\xcd\xf1\xf8\x93H\xd3\xa9(\xcaW$\x90\xbf\xfc\xb4\xa1?t\xa6x\x14\x15\x90D\xc6\xaaVRJ[\xb3_u6k\xa6m\x1ce\xac\xe5o\xd1\xab\xf8\xc0\xe6\x8eyr\xb2\xc8\xc9\xb9\xc9\x14\xec\x97\x85\xe5\x9f\xbeIQ\xeb\xc5_\x9f8\xf2\xf6fJ\xaa#\x11d\xa5H\xc7\xf0\x87F\xe9\xa8\xb8!\xa5\xbb\\\xfc\xaa\x13\xbd\xcck\n\xbf8\x93R\x7f\x8fz\xed\xe0{>\xa0\x7f\x92`\xd73\xff\xdd?\x9c\xb8z.k\x92\x9b\x8d\x9c\n\x15-\xab\xadt8\x17\xc1\xa9\xc5\x9d\x12d~\xd8\x8b\xe0\xc4\xa1\xbc\xc1\x04pL\xf5\x86\x91/\n\xbc\x11h\xcaU\xb1\xb8I\x04q\x18\xc1\x96T}T~U\xe6\x0eD\x1e\\\x19~\x18$\xb2P\xd7!\xe7\x02\xa4\xf6`g\x0fK~\x1d4\xab\xc9\xf1\xeb\xcae\n\x17zvl\xc6g\x14{U\xf9\xc6\x9fp\x9bW\x93\x1cZ\xa1'\x8a\x8f\x19\x1f\x9b\x82@m\xc8C\xea*\x8b\xb2>c\x16\x95\xd4\x07Q\x97\xb4\xd5\x14\xa4\xa5\xa3@O\xb8\\p\x08\x19\xee6\x93\xbe\xc2\x82\x8f\xd2\xe9\xa6\xd4/\x89\x05\x8d`\xe9\xe4U\xb8D%$\xb6\xc0\xf8\xe9\x01GD\xb9\x9e\x84\xf3#G\xc12\x8c\xe0(\x881\xeb\xc3\x05?'D\x0e\xd7!\xff\xcc7\x9d;cn\x1e\xaa\x95\xa8\xf4W\xe1\xf6\xd9\xba\xff\xc2\xcf\x13\x976\x80c\xea[l\xcc\xf2\x08\x1b\x0c\xf8\x02h\xac\xf3\x8br\xa6\xb2\xbaP\x04\x99\xc9\x96\x83\xbbW$\xde\x0e\xaa$_U\xcb\x07\xda\xdf\x8f\x1e=\xe2\xf4\xe3\x16\x9c\x99\xf7\xf9\xb2\xde\x08\xba\xe9k\x1fY),\x1f\xef\x8f8^\xaci\x1b\xc3Z\xfc\xb1\xc4qI\xbd\xea\xb0\x82\nl\xc3\xb9\x84\xccH\xe8\x15\x07\xf5\xd5\xcdB\xfe\xe5C\xf1\x1d\xe1+\x0d\x070L\" \xbeK\x9e3\x17\xbd\xac\x12k`\xf5\x82Z\x86\x02Z\x9a\xe8:\x12\xdfph\xd1a2\xb2\xd3\xcc\x02M\xb46\xeds\x1c,\xd1-:\xe0\xaf\x15\xf5\x8c\xc6>~ \xd3V4\xa1\xba\xae\xc2\x90\x1f_\x8be1\x0b\x0c\x9eEV\xf2\x12+\xa0e~@\xce\x9c@.w=zmUj\x95[\xb7\x00\xb3\xb0\xd6\xd4+\"'c\x99\xd8Wl\x7f?\xce\x12\xc1S\x82\xc9h\x87\xbc\xa3QX\xe3\xc8\x98\x0fG\xa6.\xe5l\xc0\x86\xb6\x04x\xea\xca\x10\xab%\xf9'5\x115FEKl\xad\xfe\x01F.J]\n\xd9\xcd\xb4\x99wU8\x8d\xf2|\n\x0b\x90\xd1a\x9a\x82W\xc9\x99\xd6\x8e\xb9d\xb7\xe0\xb8\x85\x14\xa9\xe8\xb2\xf9\x1f\"\x7f\x9dJ\xdb\xff\x0e\xec\xc1!L\xfa\x8bLT\x82\x98\x0cSN\x8dZ7\x86|\xe4\x9c\x1f\x9f\x08\x06S\xfc\x0e#\xec9hh\xff&\x95)\\ \xcc\x11L\xbaX\xd2\xab\x08~\xbc693F\x97!vY6+\n\xf5\\\\ \x82z\xfdp\x11\xf9IP\xf6\xb1hF\x12EC\x84\xa6\xd7J\xd8x\xc3\\\xce\xb9%\xb8\xbb24\x1b\x95\xb3\xc3%\x13\x8f03\xf2H\xc4q \x19\x89\x99\xd8\x89&x\xaeM\x17k\x99\xa1U\x02\xe8\xa7$\xc8m\xa0\xd2\x04D&Y\x1e\x8a@b\x0e\xa9\xb2P\xf0]\x9a\x9f\xa7u\x18\x9a_\x1acL\xe5\xd6\x00\x82\x14n\x81 \xb5\x91\xae!\xa1\xce\x1a\xca\x1c3AUtz\xc9D\x93\x08|s\xe7\x0b5B\\.\xf3;|\xef\x8d\xe1\x10\x16\xc3\xe9\x08\xdc!\xeb3\xa1(\x9b\x08\x0b\x8cX\xe8\xfaZ\x99g'\xd4\x04\x13\x8f\x83B\xc0\x01E\x97\x85F\xde\xc7N\xf2\xeep\xf3\xaaU\xfc\x92\x0c\x01\xdf\xcf\xa2\xde\xcc<\x8c\x103v\x1fHV\x9f>\x80%\xa6\xf9\xe1\xb81\x80\xbd\x10\xe2\xe1r\x84hp\x0b5\x0bl\x98lo\x8f\x1c5\xeb@\x13J\x87\xf9H\xa8\xb8\x84/|\x80 \x05\xb7\xb1\xda\x98\x81\x90\xf0\xc7\x8b\x08\xd2\x08\x96\x11\xcc,\x90\x94\xe79\xff\xbf\x08S/\xa1\xc4\xe5?\x16,\x86{\xf0/\x98j\x9c\x8b\xba\xe3h\x0f?\xde357\xab\xda\x99\x99\x11\xf1tSr\x7f\"\xd1m\x86\x14\xfc\x00R\xf8\x17\x92\xfd\x14\xd6`\xc1\xd0\x0b\xed\x93\x82\x05\x8b\x08\xa6\x11\xcc\"8\x0d\x9b\x01\xf8\x1d\xe2\xc7yY\xed\xa3\xf2\x80\xb0\x1f\xb5B\xbdZ\xa6\xbf\xc9\xb5\x08Z!\xc5P\x80O\xb9\xa7\x1eb\x99=Q\xf3\xacslz\x97\x88\xf6\xf5\x0e\xdd*\x8d\xa4\xfa\xcc1\x06\xb7\xa2#\xe9\x92\x16\xf0%\xb5L5\x00\xa8\xbbn\x19\xa2\x81_0\x80\xafH\x90X\xed\xe7\xe0\x14\x17\xc6\x19e \xdd\xa8\xf8C\xbb\x7f\xedW_\xf8\xccv\xecj\xa8\xb6\xa7mct\xe6J\xb5\xe6Im\x10\x90:0\xf9*\xa7|\x06s\xb8\x0dw\xdb-\x8f\xd5\xb3\xfd\xf6\xb3i\xf9\x9d\xcds\x7fa\xf1\x188\x97\xb1CG\xc6\x80a\xe4\x9b\xbb\xf3XZ\xe4\xea \xe6\xc9+\xa9\x9d\x99/\xa4\x18:\xec\xaa\xe7D\xdd5\x1e\xc4`r\xa9\x03\n^\x89\xe3:\x87G\"kt\x0e\x0fa\x0e\x87p\x81\x99\x07\xf2\x08U\x0c\x18g\x8a\x85 X@\xfb,\x13\xf2w\x88ei\xd9\xc6n1\xe8'r\x9c\xfc!z6\xa4\x01\xe9\xd2\xf4\x96\x9a\xda\x0e\x7f\x13\x93\x17\x89\x9f\xa7\xc5\xc4\xed0\xa2\xe5\x01\x99\xb1\x8e< \x0b\x16\xc1\x05\xe1l2\xf3\xc8\x03\xa2 \x1f\x81=\xc6r\xc1\xb4#\xeeKsZ\xbcJ\n\x06\xc3^\x04\xbdQ;\xa9E\xad'\xcf\xa4\x16\x89\xaa\x15_%\xc5\x0f\xcb\xac\xe4\xa4\x9e\x95\xdcq\x9ar\x01\xb6d-1I3\x8e<\xcb\x93\xb3\xc4\xe6\xd9\xa6d.\xde\x13\xed\x8b2\xa1\x04n\xc1\x99!\x14\xd2\n '\x0c6\xcb\xae\xe1k\xbf@\x901\x04\x99d\xabjU\xf3\x1dE\xa00\xb1\x7f\xe5\xc4\xc6\xe0\xa1\x96\x0dvs\x975\xc0c\xe1!\xec\xc2!|\x92\x19\x0cq\x9b\xed\xca\x08SqsW\xa8\x1f\xf7\xc43f\x8c.\x03\xb0'\xd8c\xe8\xfb\xa4\x16\xd3\xfcNe\xcf9aq\x92\xba\x19*\xe5\xdeo})q\x06\n \x14\xdfb\x94\xc08^\xc4\xe3\x84\xad\x84A|\x00\x97Xo\xbb\x195 \xe4A\x14\xb12\xf1R\xd6x\x89\xf4ORrN\xd2\xea]\xfb\"n%~\xe1\x06\x89\x08\x9b\xa8BL\xcbuV^\xf6b\x14\x1c^\x9b\xb8\xdc;7\xd3\x05\x82E\xac\x14~\xad \xa4\xcf13z\x17^\xb9\xe2,k\xdbj\xb3\xf4-H \xcaJ\x1c\x9aU\x03 \xcb,\x992T\\h2\xaf\xcah\xaf^R\xba\x0d\xf1p\x91&c\xe4\xdb\xf6lQ\xbb\xb5\xc1&\xb4 \xf9&d\xa0\xd1\xcbn'8\xfe\x0d\xc9$tjZ\xfeTK\xab'\x9b\xc0\x15\xe6\xf8\xd3\xc8>!%%\x81j\xd7NE\xc1\x19)'(\x16\xcbb\xd6\x05 %\xbcU\x11\xfa\x96]\xae\xc1\xc9\xca \xe1\x1b\x16\xbai%\xe0\x9f\x90\x11\x91dQ\xd9R-;\xbe\xe6\x16\xbc\x8b2\xbb\x96\x16\x11%w*\xe8*l\xe3\x1e\x1e\xe6^%\xd9\xea`\xcb|\xf3:|R\x87\xecn\x04;{\xeeV\x97\x14wWW\xcb\xad\xf5\xb8\x16\xb0\xad\xa1a\x9f\xf0\xc8\xd9\xf1\x05\xb3#\xfbd\x99HnH7\x07\xb1\x17(\x9a@\xee\x00\xf0&\x89W\x1e\xfb'^i\xf7\xe1\x95\x90\xa3\xd9\x91o\xe2\x95vw\x1b\xe4\x19y\xec\x97g\xc4\xdc\x87\xd7\xb4\xce\xaf\x93\xd7\xe3qg\x9e\x91&\x9fx,\x08\xad\xd7\x89\xa6o\xc2v\x11\x8dz\xcb\xbe\xf5\x97\xce\xbf\xa8\xee_9\"Y\xe2\xaf\xac\xfa\xe7\x1e\xddfI\x19\xca\xedi\x17gOJ\xe4\xb3\xaf\xcd\x06\x05a0\x14\xb1\xabB.\x9e\xa8\xa7\xec\xdfW\x04\x86b\xd1\xd6\x8d)\xd0F\xd9)\x9aur\xa5\xfe\xd8 _\xbc\x02\xa1s@\xa1\x04\xc1\xa2\xd7w\xa6\xd7\xad\xec\xdc\x98\xc8_\x92d\xe2\x82\x05:\x9b\x135\xb8\x9c\x1a\x87\xa3s7\x91\xc6\xdcl\x94\x90\xc2\xb4\\I\x81\x12\xf6\x00&\xac\xad\xc1\x9a\xb1v\xe2\x89W\xcf\x8f?X2O\x9c\xa3\x05]\x83\x9cM\x7f5gV<\xc0\xb1\xa3h\xac%-\xa8f\xd2\x8cn\xd3\x7f\x9d\xb3\xe1\x8c\xa9`\x90sV\x05\x83\x9c\xb32\x18\xe4\x9c\x95\x89\"\x9f\xc8\x9c\x91\xda\xbbx\xbf|[\xbd\xa5~\xe1\x8b\xa5\xfd\xed\x89\xb2\xc5i\xb7\xd5\x17\xea\x17>\xaaR{=)\xf3|U\x0f\xcadOOj\xd9\x9f\xf0\x85f\xe2\xa0'\x0d\x89\x19_\xd2\x93\xf4<\xd1r\xf6\xc8\x87z\x0e\x9d'\xb5\xa4:\xa2\x0b=\x03\xce\x13=#N\x04\xf3\xb6\x08\xf4\x84L\xb3\xdcd}\xb4iZh\xe9\xd0\x84\xde\xcc\x0c#\xdb\xca\x8d\x81\xeb\\\x86^hL\x97Y\xbb\x88\xfaC\xe1\x13e\x0e\xad\x15\x0e\x80\x8f\\\xadK=\xe1p\xc4O2s7\x99\xf4\xbb\x10\xaaHs/LT\xbd\xb0S\xf2\x18\xf4Q\x0c]\x06,,R\x1fs\xba\x15\xd7\xc0\x8c\xb0\x85\x1d\xd4q\x86!\x8e\x06\xdfJj\xa0jSe\xe3\x80\x85\x95,\xf3\x80\xf2\x12\x06p\\\xe5\xce2\xcf\x7f+1\xabTj\x8e\x13\xbb\x0f\xa0\x10.\xa6\x05\xfaIJX\x14\xa3R\xfc\xb2\x12\xe4\x0c\xddD\x96%\xf48\x8d\x0f#X6)\x98\x01G\x1fO\x19i\x1d\xef\x9d(\x1a\xd4q\x14\x83\x8c\xbf\x00S\xa5\xf5\x13\x85\xfa\x0e\x84\xcd\xdc\x08k\xee\xc4\x0b\x07\x93:\x0e\xda,J\x88\x839&\xcb\xe4\xd8\xa5\x83\xd1\x80\x82\xf8Rf\x86\x0c\x1a\xbf6DN\xb5Y\x9c('\x9b\x8ceoRY\x91\xa1\x92/\x92~mq9M\xceD\x85\x11\xc4udi\x1fog,\x82\x15\x8b8\xd3\xe0J\xa3~b?\xad*^]\x1d\xe2F\x08KEay\xb2\x1b_\xc2\x04-,\xc8\x1dQ3Ryf\x87O-\x91\x88d\x1cv\xc3\xc6\xc4\xa0\x16\xf7\xcc\xe7\xb6\x8c\xc0jc\xad\xe9q\x96\xb5rV\x16O\x13u)b\x12K\xff\xa5C\x85`\xe2x?PQ\xee\xf8\xd3\xce\xa3\x82\xf4K\x89e\xe5\xc3]\xf4\x8c\xdd\x81\xd8\xfd \xaa\x18\xf9k\x16\xbe\x11_y\x04s\xc4\x1d\xfe\xf2\xdca\x0f\x95@\xe8\xe4\xe1\xd5\x95\xa0\xe3,\x9fvZ\xee\x87SG\xd1\x11\xd0\xd4\x12X\xedq'\x85\x03N5\xdd\x9f\xc8\x96\xd1\xb3k9$\xe6\\)`\xdcvx\x97/a\xd1t\xcb\xcfPs\xdc\xb1\xac\xc2\xa9\xd5\x7f\x01S$/\xf5\x05L\xe0\xd1#\xc8\xdc\xdf\x8d1\x00f\x9b\x1f\xeb\xea\x03\xc72\x8d\xcb\x05\x1d\xdf\xf0\x82\xe2\xb9\xf6\xc0\xea`\xa1_|\xed\x8d\x19]L\x97Z\xf4\xa5M\xe8k^\x89,\xb2\xc7E\x9d.\x85|\xf3ZJUh\xe7\xcbv;\xbe\xba\xf80\xd2\x86/a\x17\x82\x83.\xf5#\x92\x8f\xe1\x00\xd2.$\x079\xf2X\xb8\xa2\x17\x98y?\x13\x87R\xc2Q\x83\xf2S;\x0b\xedn \xe0\x9c\x92co ]l=\xf6K(qaL\xf6c;D\x96\xad\xec\\\xe7\x0e\x8d\xc2\xb2T\x93\xc3\x0e\x17\x92\x96\x9a\xaa\\\xfc\xd4T\xe5\x0co(=9\xc5_U\xd6\xa3e\xa9$\xcf\xf0\x87&5&\xe2\x86\xd4\x97\xc7\xe2W=\xb9\xd7\xd2\x0b\x14G\xcc\xa5Q;c\x18\x06}\xc6\x07$\xec\xfa\\|\xf34\x85_\xb6\xa1l\x03q,\xfc\xf1er\x1ewL\x05\x11N\xf3\x0f\x15qS\x8a\xd9\xd6\x07\xc8\x0b#^j\xbe\x14\x99kc\n\x96\xb3\x83sK\x1b\xc4u\xb8td\xcc\x19\x0b\x13\x9f\xb4\xe5\x89\x8d\xa1`\xe1\xd4$\x8d\xc5 \xa5\xf2F\x05\x92\x0d\x136\xde\xb2c\x18\xc0\xd8\x1c6h[\xd1\xa2>\xf2\xf2\xf8'\x95[\xa6\xdeUT\x83\x9d\x80<\n;-\xde\x12\x0e\xcb\x9b\xcaD\x16\xeb\xe3l\xc7 \xd8\xf0\xe6\xd8\xce\xd3\x95j6\xf4\x07(c\xf0\x88\xe6\x99J\xa4\x07\xea\x9c\x05\"?\x97dK\x91+\xe5\xa3\xe2\xe2\xa5g\x1a\xc3\xa7\xf6\x91\x94\x16\xf4\x86\xedW\xb7\xac\x9a\xf9A\xf1\xe5C!\xd0(V\x10\xb6\xe1\xdc\x86t5sD\xc9DJ\xbe\x15\xbf~ \xfc\x16\xd0\x15\x07\x0b\xab\x0eJ\x1f\x06\x11\xaa\x95\xa3'\x03\xffhg\x00\xe7N\xc4\xeb*\xf3n\xad\xe8\xe5L\xd2\xa3\x05\xbd\xa8\xa83Q\xeeX\x7f\xa2\xe2\x0f,\xe5\x8d5\xb3\xbe\x9en\x07\xf33\xd8\xd9\xf6\x0e\xf6?\xf1a\xff1\xc6\x03\xb6m\xc5\x19\x96\xa5\xcc\x8c\xd8H\x91\x9b>@\xb3\xd1.\xfe\xbd\x8d!c\xbc\x05\x83\xc7\x02\xc7\x87\xb8\xb9\xbf\x92.2\x15s\xdc[j\xd8\x86\x86_\x13\xa7R\x13\xfb+\xd1#\xd5\x91i\xac\x82N\xb7a\xccG\xfd \xc4\xe7r\x1fa\xf5\xac\xb4\xbe\xe3\x0fa\xa8\x8cG\xe9H\xee*.\xd8\x8da[e\x1f(\xf8\x9f\xe7\x86\x11\x8d\x85L\xc8\x1f\x8f#QF}\xcc\x0f\x00\xf1o\x82\xff\xba&2\x15\xd2X\x82\x11\x04\xf8\xe72|\x00\x0b\x0e\x11\xec\xb9\xe0\xbb\xc9k\n\xb5\xa1\x8b\xf1\x9a\xf1n\xd2\xe5N2\xc3 \x8a\x87\x18#!\xc8\xc6RH\xdc\x07|`x[Soat\xe3\xc4\xbc\xb2X0]|s\xeb\x16\xc6\x01\xa3h6i\xa8 :h\xc5\x1c#X\x90\x90\xa7bz\x9c\xdf(\x1e\xc0\n\x1e\xc19\xff\x87S\x82.Y\xe2\x14\x060E\n\xb22+I\xd4\xc5\xbb\x9bK\x92s:\x12\xfdV\xbf\xad \xa4\xcc\xfc\x9d\xfaP\xf4|\x8e\xb4\x0b\x060\xe9\xa0L\xa0\x18|\x05\xb2\x80/\n\xc6\xac\xcfj\x8a\x93\x1c\xd9\x98e\x88g\xdd\xa3\x01,B\x8898\x16\xb8h\xf8o!\xdc\x16*\x07\x85VSR\x0f(\xda2\x85O\x96\xee\xc8\\8\xce8\xa5B\xfcp\xae\x9c\xdc\x87\xa9S\x98\xe1\x0bs\"\x84\xeeG\x8f\xf8\x81\xeeZ\x18>\x80\x13\xa4\xae\x8b\xea\xf5\x10Ns\x12\x7f\xb2\x7fu\"\x05\xb5\xed\x01\x04bK\x85\xf05\x9c\xe0&\xd9)!#\xf7\xd3\xf0\xc4,\xdc\x9a\x177\x15X\xfdH\xaa\x11E;M\x90\x16|ev`\xcc\x97(\x15\xfb\xe1\xa1\xd8\x0f\xb5\x0f\xca\xe5,8%\x90\xef+\xea\xb2#\xa9\xca\x8e1\x8ar\xe3\x94\xa4KTkT\xc7\x89`\xbbI\x8d\x9d_V\xba\x1d\xc08\xce\xca\xbd*\xd5\xdd\xabf\xbe\xeeU\x9cL\\\xb0 \x16\xe2\x0eFj6\xa3\x1b-\xc7\xf1c\xbf|\x91\xb9\x9e/\xb2\x16A_eY[\xba#B0)\xb6\x93 F \xc6\x9a\xbe'\x15\x10~$\xf7l\x82\xeb++\xfd\xc5A!RJ\x8aU\xbf\xe9\x94\x92\xb9\x88GK7@\x8f\x04\x1e)\xa7\xc9[\xb7D\x82\xa8\xca+9A\x92\xa2 \xdf\xccrcY\xa9\xb7])\xe6\x84[\xf5.*\xe5\x94\xce\xfa\x9co\xcas\xaf\xf6\xdf\xb9\xdbw\x16z|.\xdc\xe1>\xb0\xaa\xbe#\xbf\xb5\xb1\xdf\xcd\xf9\xff\xfa\xfa\x8e\x1f\xdcP,Ka\x8e\x9b\x08gk\xf0\xb5oJ\xbe\xba\xea\xe1\x9dfT\xb1+!\xaa\x14\xe1(\x02\xe1\x8f\x03\xb4\xdb\xf7OD\xea \x91;<\x15\xf6e\x8f\xdc\xe1^sz\xeeT&\xac\x842a\xc5{|\xcd\x02Q\xdd\xe6\x88\x05\xadP?K\xeb\xbf\xbb%\x0ci\xda\x89\x14KoM\xbd\x14K>8)\x1c\xfc\xbcHI\xc1,\n\xff\xa2\xe2\xf8\xf9\xd1\xba\xb4\xa9\x12\x06\"o\x93\x19o\x85~\xa2KQ\x18K\xf28\x10\xda\xd3\xea\xe7>|\x0d\x89r\xdcD\x1b\x910V\xb6\x93\x9fZDXu\xc9\xfe\xb5\xf9H\x15\x0bJk\x96}\x14\xf6Y\xf6\x92\xac\xc8\xe4\x98|\x0e\xc2\xcd)3\x19\xeeZ\xb8\x86\xb0?M\x93E\xc0;x\x1d\x8b|:\x1anr\xa2\x9b\xd7p\xb5\x8e\xb9\xba\x933:\\\xa0\xf1L\x95}c\xa10\xfe)%\x86\xe6\xdc\x1bkj\x0bND\x96J45(/\xb5X3\xabm\xa6B\x80\x18Qi\x19\x0e\xf7F]\x8b\x9d\x0b\xd5\x9eXG9\n\x91j\xdd:\x081?\xe9L\x1f+\x12Z\xb5\x10\xcbB)\xb2\x19+\xc9\xb0\xf1=\xb9\xfc\x9e(\xca!|\xc3%\xe5\xc8\xcc\x9c\x0c\x07\xe3kt\x7f\xf7\xcc\xbc\xfc\xa6\xc3\xeb\x04\xdd\x954\xaf\x93\x93eA^\x92U\x01U)\x0bE\xf1\xdaI|m\x9d\xbe\xb7\xd0tc\x8f\x9b7\xff\xec\xafm\xfe\xd5_\xdb\xfc\xc7\x8e8\xb6\x7f0W\x8aXV\x1bA\xbd{~\x83o\xf1.\xafN\xad9CR\xe6\x08\x8b9\xaa\xe2%\x9d\x0d\x9d\x97e\x92\xe5G\xb2\xfe\x19\xfa^9\x15b\xfe\x83\x05}7\xc9n\x02\x0b#\x12\x99*\x8a\xf09\xcd\xe2\xa2\xd3\x0d\x15\xf4\x8e\x12:N\x97\x13R4\xab\xda\x97-\xaa\x176kv\x16\xdb[\x1c\xc7\xe3\x19yO\x8a%\x86Q\x12\x1aaE3\xe9Q\xf8\x91\xe2\xe3Z\xd9.W\x04\x93\x12C\xcc\xce\x14P\xa7P\xadzV\x9e\x8c\xa1\xf4:\x14\xbc\xa1]\x1da-v\xa5y\xa7n:?\xa1\xef\xe5\x07\xc1\x9b.\xa9^i7UW\xa2]\xbb\x98\xaeXx?'Vu)\xbbf\xee,_\xab.\xe4RHg\x1d[uU\xfb\x0c\xdd\\\x87\xbb\x1d\xd9\x90\x00\xc3:\xd5\xbb\xda\x87{\xa3H\xfb\xbb\xe5^\xd8\xbc\xdcfQ+\x19Q\x97-\x8b\xb9\x1f>\xf2\x95\xc2\x15\xfe\x9d\xcbLp\x00\xbf[\x11\xa9v\xd3F{?ws\xba\x9d\x148o\x12\xdd|s\xd2b\xa7\x01y3\xa4\xd3\xa7\xa82\xc6\x81bbz7\xc5\xadj\xa6d\x18&\x8c\xbe\xf6\xa2\xc4Nn\x14\xedp@N\x02\xe43\xbck\x13\xa0\xac\xc3\xd9\xa6N\x83\xf2\xa0\x9a\x91\xfaXZ\x04mD)\xeb\x98\xb2\x99(\xf9\xcc\xb9\x86\xc3o:\xeb*o@i\x94\xf8\x9atR\x19t\xb4\x93\x04F\xc9\xaf\xf6\xb7\xcf\xa5OZ&h\x83\xdbE\x05}\x13\x9c4H\xc9\xef\x1cZ\xcbHC\xb6\x18)\xd0\x92\xe3\x9bq\x01\xc0\xa2NhUE\xb4\xec\xf1\xef\xbb=\xd7\xdc\x1b\x9c\xea,\x16m\xeev\xba s\xe4\xe2\xb2\x88`\x7f\xd02\xe7\xcd \xa9S\xe0\xa3y\x06\xa0sW\x1b\x8c\x13\xf4\xbd(\xa4D\xdb\x961pW\xa8Yj\x90-W:\xc1\xb2'\xd4\x04\xc8\xbc\x8f;{\xb0cHa\x0d\x92{h\xd2X+WP\xa7\xb1\xb5\xc6--_\x8f\x8d\xeb\xe0\x0e\xa9\x81\x97\xa3\xe6\xe8\x90\xff8\x0f\xd7Q\x8c\xe4*\x82-\x1b\xec\xcc\xb1E\xae\x19\x19\xcfx{\x0f^[\xfe\x0f_\x95_\xc7\xc9\x8e\x9b1k\xa2\x9a\x15\x8f\xcf\xcbD\xbd~\xc7o\x86\xc7\xd4\x8a\xf7\xb2\xb5U\x11\xc4\xccq\xfaf\x7f-;P\x8e\xa7\xcd\x0bH[\xbb\xa1\xb4P(t\x98\x0e\xa6\xc0\xe5My\xae\xc5 \xd8\xcf\x98\xa5\xb9*/t#|\xe2p\xeb\x05%5\xe8|\x02~P%R\xdc\xde\x8e \xe3\x0d\xe5\x12\x02hn\xb6\xe7\xf9\xe4Sm\xfa\x84\x81Z<7\x1f\xe1\x03\xa6&\x1f\x918*/v\x03m\x036\xc3\xd3\xf9S\xe1\\\xdc\xc9\x8d\x80\n\xca\xa8s$\x89\xfb\x0be\x08K|\xb8\x12\x906\xb1b\xb8\xeb\xb0\x9a\xa9\x0b\xb3Y\x1a\x13\x83\xeaW\x1d_\xc6h*\xd4r\x02}\xc6\x8a\x882\xb7:\"\xcf\xd8\xcap\x82U\xf01\xf3;~\xb6\x81'\xbe\xc4\x8fX\"N\xf9\x0c7r#\xe2B\xc4\x1e\xdcF\x1f\x1c\x0cDD\x9f\x1c\xf9\xfe[Y\xc1,\xeb\xcc\x9b\xc4\xd1\xe6\x9d\xa8cf\xb7'|@\ni \xc8\xe1\x04\x0c\x12X\xaf!\xe6\x7f\xc5e\x8f\x1c&}\x96 \x15\xbav\x10\x07a\x05)\xf3\xa0\xa4\x93w\x0c;&\xcc,`0\x10\x9e~\x01\xdfl\x85tD\xda\x85\x03c\xa5\x89s\xe9\xd5\xe8>vR\xc5bV\xe1\x06K\xac\xac\xa5\x8c\xa1\xcb\xca\x80\x18\xc1\x16\x9eR\x992\x8b-\xcb4>A\xda<+<\x8ea\x99\xe1\x86\xc9p\xd3*)\x10\x93E\x15\x15\x93\xb6\xcd\xe9$\xa6\x9b1\xf8\xb1\x85\x11\xa4_\xa6\xa7\xca\x9c\xe09\x96!\xda\xa4\xc2\xbcf!F\x11\xb4\xdd\xe5\xaf\xf45\xbe\x9e\xb2N\xda\xf4x\xff^K\xe4\xd6\xd3)\xb4\xd1Zm\xab\xf8\xec\xeb\xe3\xb1\xbc7|\x96\xaa\xb5z\x10B\xd6yZrxmo\x17\xf0HC\xf9\xae\x93\xd8+\xfa\x1d\xba\"\xe0\xf9u\xe5V\x13\x10T\x13tM\xa1\xe4\xaa1 \x96\xd2\xe2\x11\x0c\xb0g\x91\xa8\xa3\x13\xc9'\xcfU\x92\\\xf4\xc6\xd05\x95\x9b(\x08\xeaXk;0\x7f\xf2=0\xddd\xfb\x86x`;\x19K|\xf6\x08 \x1c.\xef\xe72\xc8\xc2E\xa7\xba\x11\xdd\xc1i\xa7\x9d\xa4J\xa4\xe4\xc6\xd3\xb2\xc9u\xa7aE\xb5\x8a\x16\xdb]\xb8\xd9\xee0\x02C\xa0\xe5\xcd\xf0\xdc7\xb0,Y\xee\xb3.\x9b0\xf7_~\xdel@\xb0p\x93\xe3\"\x19\x12\xb5\xabk\x92uP\xa4De\x1d\\JZ\x11\xd6Y\x7f\xa4\x0cY\x832d\x918\xc2\xb2.\xba\xd0-7L+\xabG\x07\x8f\xcf1\x04+\xf9\x8d\xf1/\xde\x81\xe0\xf2\x8a\x1a\xde\x8ee<\x93\x83\xbd\x87\x8bY\x92\x12\xb0:\xe5\x81\xae\x0e@\xdb\x95>\xf3\x04\xfb\xd8\x88\xe6\xf9 ?\xde\x88\xe1\xe3\x8b-\x01\x0e\xfcE:e\xa9s$\x07P\xce\x86\x04E\x07\xed9WUC\xac[\x99_\x85\x89\xb2e\x1d\n\x04\xd0\xb8\xe7-\xf4\xbcJ\xe1!\x16\xac\xb9\x05q\x80U\xfb\x90(\xa7\x18\xa8\x0d\x07*M7R\x04*\xcb\x01$()\x86\xa5$\xb1\xb5\x8b\xc59\xedxeW\x95\xf3\x85\xe5_\xb7K(\xfd\x15\xa6\x8c\xdc.\xae\x81\\\xc5aG\xa1\xf3\x1b\xa3R\x92\xadJ\xbc\x94\x14\xc4\xcbd\x02\xea\xdc\x92\xa9\xe672\xcf\xa6\xbe\xf4\x06d/\xb9\xa4\x00\xa5\xfb\xf5po\xc4%T\xd4\x10\x06K\x15O\x81\xd8\xc5\x8f\xd18H\xab#\x93\x96\x84#\x8f\xc4\xf9\x99v\x93E~-\x85sn\"K\xa3\xa5\xad\xe5u\xb6\xa0\\\xb4\x90\xac\xa3g\x97\x1di\xbb(`\xd7\xaa\xdd C\xbb\x01E\xf533\xfd\xec\xa4\xa8\xc2#\x13]@M\xf2\x8b\"\xb8Kk\xda\xe8\xccN-\xc5\x9eT\xda\x8d\x9a\x83 \xeb(\xe2$\xe1>\xccq\xe4\x99(\xbdx\x08\xe2C\xe9^\xc6\xac\xee\x83e\x96i\xeb\x11\x91\xf4\x8b,g~\xd2\xacb\xa2\x022\xbc3\x8a\x80\x0e\xef\x8c\x10\xcb\xc9p\x7f\x04;@\x87\xfb\x86\x0c\xc1aU\x90\xbc\x91\x95\xc1j\xb1I\x86l\xa4v\xd2\x00\xf6\xdbm6+\xf4\xb9\x1a\xe2\xa0\x1f\xee\x99\x06&8\xd7_e\x8d\x0f\xe1\xd6\xfdR\xfc\xfa!h(\x04m8\xf5\xc2\x89S\xc2\xdfE\xc3+\x0f\xbb\xd1\x17\xe2 \x1fJ\x89\x1bV\xbc\xc8\xc9d9\xde@\x87![\xff\x15=+\x05;G\xd1\x87S(*,\xf9\xf2\xdd\xb6\x0c\xd4\x8a\xe5&\xdfWG@\xca&\x03\xaf\x0f:\x12\x89\xf9\xcc\xc3\xf5\xf4|\xff\xd5\x8b'\x13\xf5s\xec[N%\x8f\xbfu\x0b\xa8\xa6\xbf\xad\x85M\xae\xd7U4\x82\xf8\x05[\x03\xde\xedz-b[\xbd\xc6\xfb\xb2\x8a\xbf\xf8\x02\xa1Y\xea:\xf91OH\x90\xfbz8\x97k\xd6\xf2\xb3\x04\x81\x84\xf3\x84\x06u\xcb\x14\x0c\xfc\xf6u3\x0b\x9f\xf0\xf3\xac\xce\xc4\xdfE\xbcv&Bx\xb6T\xfd\x0bM\xa2\x81Z\xfa=i\xa9\x10\xe4\x95\xd9\x92\xf0\x81\x06\x94\xf6|\xba\x05Y\xe2\xc1\xb9\xe5\x9e\xc0U\x97\x022_\x1f~2\xc1O\x01\x86\xb0W>\x97\x1c\xdf\x1d\x07\xfe\xf5\xf5m\x1e\xec\xff\x06\x9c!\xaef\xa7\x00\x86\xba \\\xce\xe4\x9a\x80\x92X\xe0\x02\x88H@\xd2/\xb29\xb9N\x07\x1c\xbd\x1c\xcd\xcb\xfaR\xffFFJ\xe5\xc7\x8c\x11\xbb\xa5\xb3\xaf,Gq](\xe2\x00]\xb3\xbcy\x81\xf8\x87\xce\\\x08\xc2\xc4\"jr\x90\xfe8\xa3\x05\xcb\x97c\xd4,\xfb\xd1\xf7\xaf,\x8e\xdeI\x99\xcdFD a\x89\x116\xcb\xb3\x0bD\xf1\x0f\xab\x059\xca\xf3,\x0fzG\x97\x0b2fd\x02\xc3\x97\x11\xfc4\x02\xb6\\\xa4\xe4\x00z\xb0\xdd\xcaHk\x19\xc3?\xdd\xd1U\xaf\x88\x8cG\x08#x\xea\x1b`\xf5\x8b\xbb\xcd\xa5\x00[^\xb1A\x19\x17x\xbd\x9a\xfe\x87\xbb\xe9z\xc4V {\xfaUc\xb88\xb7\x15j\x81\\^\xbd\x12\x8f\xea\x1c\x9c\x14\xd7\\zT\xee\xf6\xd6\x13\xb41\xce\x9aY\xdd\xf1-\xe9\xa4/\xf3\xac\xbf\xd0\xb3\xcbW\xdf\x0bm\x13k\xa7.\xb5\x8c\x9eu\xe6\xba'\xf0Hf\xa3<\x10\xc5>\xe0\x10v\xf8\x0f\xbfs\x9fZ\xb6\xf2\xb9\xf4E\xfb\xc9x\xe0\xa3\x14m\xe7\xa5\xf9\xd3\x9f=0\x1f\x8f\xc0\xd3\x94@\x96\x03\x06E\xef\xa4\xc9\xa7r\x0f\x98I\xbc\x18\x14\x1f\xb5\x81@X\x97\xd9\x0b\x16yG\xe2d\xc1A\x94$\xd0\x99SLX\xb0\x13Z\xb0\x98\x8eI6\xd5*\x9e;\x9c\"\x10r\x88\x1e\xf5Ok\xc9>\xf3\xc0\xa6z.\x9bpr\xe8\xfc\xa2\xa8\x96\xea\xd6\xb2\xc6U(\xe5'\xb2*\xac~\x89\xea\xda\xf2\xe3\xca\xf4\x8b\xe5+\x8f\xb7\xf8\xc5\x8c\x11\xae^\x9d\xa8K\xceeB\xa6 %\xef\xf2lAr\xb6\x92\x9c\xaf\x7f+\xfc:#L\x13-7\x19\x83\xbat\x12$\xc2&7j\xe2\xaa\xdb F\xbf\x8a\xdax;\x8fo\xd3uF\x1a\x89\x98#\xe8=\x8d)\xcd\x18o\x1d2\n1\x85\xa4L\xcf\x9b\x93q\x96O\xfa\xbd\x92d\x8ah;\x07\x8bi\xba\xba3\xb7\xa9\xcb\x12\x8d\xd0\xbc\xae\xfa\xa7 \x9d\x04U\xd4]\xf7gW0\x8e\xd9x\x06\x086\xf7\x80\xae\x02\xe5\x9a\xae\x8e\x88X\xea'\x90\xeb\xa7\xf1\x9c\x94\xa1\xc3\x9fD(^\x8c?&d\x1a/S\xf6\x13\xe7\x960\xe7\x8c\xb5\x1b\xfb\x00\xc4\xea\x88\x80\xc3\x8f\xa4\xa9\x98P\x97\x05q2\x94)\xcaS\xab\x15C\x9d\x99t]\xa5\xe4\xa7\xb1P\"\xda\xb1\xa9h\xd3\x7f\xb1\xe0\x1d\x8b\xe0#gL\xde\xdd\\\x95\xaew7Y\xa5\xebm>!9\x99\xbc\x8e\x17\xf0g/\x82\xdeU\xbbV\xd7\xbbk\xd4\xea:\xd7k\x04\xf0\x95\x125\xfc\xed\x90\xadyh\xc9b:\x18F\x8a\x1f\xd2PT\xa6m\xd5\xd0z\xf7o\xaenS\x96\x9d\xe1S\x92I\x95\"}\xb4\xb5{\xa1\xcc\x88\xe0\x1c\xf5f\x95\xbf~g\xae\xdaG\xef\xae_\xfbHo\xb8]\x06\xb5\xd6p-\xf5\xb8\x0f\xb0+\x90U\x9f\x06\xa8\xb8\xd1 \xa7?rv\xbf\x91nDGD+\xf2i\xa30\xd8\xd2\xba\xdc\xe8E\xbe\xb9\x80\xa1\x0e\x90\xa1\x05\xd6\x12\xde\xe57/\xbf\x12\x17\xed\xa1O\xf3l~DY\xbe\x12\xbaRM\xf9\xd3\x8d+\x9b\x15J\x10\xc2\xdf\xa0U%\xc1#\xbf6\xab\x11\x85Z\xb7V3BEH\xe4\x12\xd5?\xb2.+\xdf\xd5\xaf\x99t\xe5$\xfe\xd5\x16\xd4\xd1\xc2\xf4\x9d-\xf2^\x18$\x1a\x84dRh\x84t\x00\x1fX\x1d\xbe\xc3\x99\xaanP\x83zY\xe7\xc0\xb0o#`\xc1\x1b\x16\xc1\xafa\x04o\xaeA\x81\xdb\x82\x1fR`\x13&\xd4\x9ao\xc4\x0dt\x96K\x13m\x8b\xa2i\xce\x86Q?rL>oD3\xb0q\xf5e\x9b.\xbc\xa9\xc3\xcd+T\xe8\\\xab\xc8l\xc67\x0e\xdf\xef\x159\xdc2%\x1b\xac\x8dQ%\x1b@\xa3\x86\xf74A\xd7\x1d\x89y*+\x87=8\xfc*l\x05\x896\x80 0\xb7\x13;t\xb2h\x06\x02\xa7\x02\x9fk\x87\xcd\x06`\xc8\xaf\x03\x06\xda\x00\xc3<^\x18\xf0\x15$\x18Z\x85_\xde|\xd9\x19\x119B\x94\xda(\xa99\xe0\xd6&\xaf\x99\xf3<\x1c\x97I\xc0l1KW\x9c@\xa9|\xcb\xff\x14\xeb\x10\x8a,=e\x0fV\xd5y\xd9|\x16\xc9|\xcd\x14\x0eD1 SWa'Q\xd8\xechB\x1b\x9f\x0e\x96\xd0\x01Au<\x99\x8f\x0bZ\xd7=\xb5\x0c\x1aV\xd4m\x82\xcd\xba\xa8\x9e\nye\x19\xa2N\xef\x8bRL@\x83\x8aP\x1a\xa2\xa2Y\xac\x02\x16\xc4G\xbf\xb0\xd2\xbcbZ\x0e\xd7RT' \x0b\xde\xb3\x08^\x86\x11\xbc\xd7\x97\xca\x14\x08\xe8I\xc4\xcbh\xc06%\x7f\xffe\x9b\xab\x93\xd2\xd8\xd7\xc7\xb8\xe9\xbcy3\xdca\x08r_\x96\xcc8S?\xbc\xff\"\x84\xbd\x11\x0ce\xbe\x18\xca\x14\x862\x85\xa1\xa2\xda\x96\xc2K\xaf\x9aa,x\xc6\"\xf8!\x8c\xe0\xd9\x97s\x10\x0e\xe4{v#\xc8\xf7Wb\x18\xf3\xc7/\xe3dn\x0c\xbf\xfe\xc3HT\xe1\xcf\x86\x88\xf4Jr\xba\xaft\xe8\x10)\xcct\xf1\x10\xedu\x94,D\xb3\x9fW\xff\x95\x88\x84\xc7\xa5\xed!\xbf\xbeb\x81\xb5\x88\x9e\xe6d\x11;\xdf*\xd1\x15K\xf4\xa30 \xaa\x12\xa3\xd8Z\xdd\xdc\x157-R,\xbf\xdaz9#\xa2\x1b\x81\xfd_\x83\xe8\x1e\x91\xa1~{\x01\xca\xf0\xca\x9a[\xb8\xa3\xa2\x86Z/\xd6\xe5e\x89\xde\x95\xae\x11\x82@\x0eS\x18\xa0~)\xde%\xee|S\x0e\x1e\xf7r\x06\x87\"\x91\x8b@\x89\x1cQ\xa2\xba\xb9'n\xee\xb5\xf3\xe5\xeb\x97\xc5e\xd1\x83&\xd4\xce\xe1z\x1a\x827\xf6G\xcf\xec\x8f^\xd9\x1fa\x8e\xaa \xa7\x11\x9c\x10.ZP\xed\xcd/T\xb0.\xa9\xe4A\xb7\xa1g\xd5\xb0\xd6:\xdc\xf8\xf8\xaci\xd4\xf9\xe7o/he\xf2qw\xe6\xa9L\x10v\xd0YY\x1d\xdd\x85\xe6\xf5\xcd[\x1b\xdc\x90\x18\xe2\x94ks\xe1\xe2\xeba\xf5\xb7\xd2Y\x18b6\x9b3\xf1R\xfeV\x92\x89Qe%\xfa\xbfuK\x1b@M\x9fk\x9eli\x1f\xd7l\x03v\x9dT\xff\x84\xcc\x17l\x85br\xf9c\x001\x95\xa2\xf6/\xa4\x9d\xf2\xb41UO\x8dq{\xd1*+\xb5\xb0P\xffM\xb3j-\xe9'\x9a]P\xf8DV\xd0\xfb\x1bl\x03\x81m\xf8[\x0f2\n\xfc\x97\xc2c\x8b\x91\xbc\x06\xbd\xad\n|\xb2\x98~Y\x8b\xc3\x8c\x14\x1ez\xc3\x9a1\xa1\xbeD\x85\xd2ku\xe0V\xad,\x846\x9a\n\xe7\xe0\xa0Z\x87v\x1d\xe6\xda\x1ax*\xd7\xed\x1b\xc7OCZ\x9f\xa9\xccS\xea\xca\xac\xd8\x9a)\xeb\x9ci\xfb\xe8\xae\xcd\xf4\x86\xb4\xfd\xce>\xae\xcf\x1eX!\x91\x07\x06\\k:jZ:\x00])e1Y_uk\xd8\x8dS\xbc9v\xf3\xdf8C\xe25\xc1\xff\x84 \xa1\xbeA62\x0dT\x1b@\x06\x0d\xf8\x1a\x04\x1ap\xa8w\x82\xcc\x16z\xd7j\xc0\xb1\x15\xa8\x8c\xc5\nuxO\xd7\xed\xd3\xf2\xd7\x19a\xefT\xf3o\xa7\x9c\xb4\xd8\x11E\x1b\x7f\xde\xcc\xe4\xed\x17(\xb2\xec(\x99--\xfe\xebu\xdd\xcb\xb0\xaf\xee\xf6\xde\xa3\x93D\xcf\xab\xb3\xc2\xdd\x993'\xfd9E\xff\xde\x94\xcacgk\x1c\x94\xc9\xe9\xf9\xb3k'\xa7O\xae\x9d\x9c\xde\xc5\xc1\x97\x92t<\x99\xd8\x8b\x11\x18\xb6\xa6\x17 S7 \xb7\x82-\x04\xe1\x16\x19N\x9b9\xa4\xeb,zF+[UFK\x0bUy\x1b\xeb`\x97\x0f\xda\xe5\xb73*Jdk\xd5\xb2\xab\x9b?'\x18\xd4\xa2\x1e\xf0\x9f\xd5\xc3V\xf9m\xf5\xe0\x19!\x8bF\xf1\xed\xfa\xc3F\xb3\xeaV\xfd%c\x01\xef\x8c\x1aJ\x8dg\xd4XA\xbc\xbc\xdd\xae \x9eQ\x8f:\xe0\x19\xed\xdb\xeb\x80\xe3CW\x1dp\x16\x144\x82#\x8ey\x05\xbd1\x07\x93\x82\xa2-Yf\xd0\xf6\x96D\x02Nq\xfb\x9f\x88\xb0?\x9bZ\xbd1\xa9\xaawL\x98U\x9a*\xbeH\x9a\xaa\xb8Vg\xbb\xf1d\xe2\xdb\xee\xa4\xc0\x9aq\xac\xac\xbcC\xb7\xb7CH\x026\xa4\xa3\xb0}\xec85\x8a\xe5\xb1\xcd\x8f\x1d\x8b\xfa\xc6x\xec(\x07\xa9Z$\xc1p\xb7yx4\x96>\xa1\x8c\xe4\x05\x19\xb3\x9b]\xfe*\xa3\x12\xf3\xab\xbd.0\xc4/\xbeC6\x94\x98NeS\x18\x9f\x17\xcb~-,0\xf0\x14N\xbfg\xd6'\xe7$_y\xb4\xac\xae\x12\x1dJ#\x8cE\xf5\x0b\x02 \x90\xcd\x93\xa4\xc5\xa6$\xeefZ\x1aHR,OY\x1e\xff\x7f8\xf2o\xc2\x91\xeb\xc6ry\xa2\x08&\xb2\xbai\x14Q<\xa4\xcf1\x85`\xc43G\xab\xe5\x10\x81\x93\xebi\xf4$9H7I=/K\xaf6\xd1q\xafCM\xd3\x1e\\[\xe7T\xdf!Y\xce|y\x819\x0d~.\xbdw:Nf\xde\xee\x93\x95\x8f^\xc2\xd08\xebn\xff/\xd2 \x15\x7f\xadz\x85iZ\x85\xb61\xcf#3t\x90c\xcc\xb9\xafa\xd88\x1d?\x85Xk\xc4\x9b\xea\x80L\xf9\xb0;\xd5[\xc5\x7f^\xfb\xb3\x99\xc2G\xf65\x8f?\x91\xe0\x0bu>8\xfb\xa48FM|J\xdb*\xa01\x8d`\xcaq\xac\xf7\xf7\xbf\x9f\x9c<\x7f\xfd\xfa\xe3\x87\xc7O^\x1d\x9d\x1c\x1f}89\xf9\xfb\xdf{mG\x90\x05\x7f\xbb\xf0P\x1aM:\x11\x81X\xaa5\xb1f\xb5&\x05\x05U([j\x88\xb1\x1c\x9c<4\xa5w<\xae\xf0|\xc1V\"|\xba\x04\xa3\x9f\"b\xd6\xbd\x17\xebJ\xae\x85#\x08\xa3\xcaf\xdf(_G\xd5\xb4\x88\xc8\xea]\xad)\xf3M\xc2}\xee\xa4Kc\xcc;\x10\x8c\xf9xg40\x99j,\xed\xce\xbf@\xa5u!TZg\xb4\xd2d]\xfc\xbfM\x93u\xe6\x86_\xa9\xee3\x14X\xd4\x7f-\xe8pJ\x95\x03\xddBSj-*\xa5\xd6\xa2\xae`R?\xeb\x0f$k\xb0\xa0\xba\xcej\xe1\xa3\xf0Y\xb8\x14>\x8b.\x85\xcf\x82\xaa}\x08\x038\xa7\xf2\x06\xdf\x8a\x88\x92\x11\xb0`N9q\n#\x98\xdf\x9cFh\xfe\x97h\x84\xe67\xa9\x11\x92\xfe\xf7.\xc5\xd0\x9cV~\xfa\x82r\x9f\x19(\xf7\x8aFp\xca\xf7\xc9\xdc\x83\x16\x9flJ\xd8N\xffC\x84\xed\xc2 \xcd\x95 l+>\xde\x13\x1a<\xf7/\xbby\xf4\x05\x84\xed\xad l\x97\x1aa\xe3\xb7\xfaKZ\xcc\x92){\x9c\xa6\xbe\xd1\xfc\x97\xde\x8a\xee\xa7nE\xf7)\xad\x1clO\xf5\xbdvA\xe5\x0d\xb9\xd7Np\xaf\x1d\xd1\x08.8\xb5<\xba\xb9\xbdvt\x93\xbb\xe2\x98\xc5\xe3O0\xe4\x1bb\xd4\xde\x10G\xd7p\x05\xa9\x1b\xe3g$6\x14\xaaG\xbd\x15\xd1\x92r\x93\xf0\x81H\xbcNvv\x1e\x84\xf8\xbd\xf0\xaa\xb2\xef\x058\x04\x99\x84\xc6\x14\xf7W\x1b\xf9\x82\x90O\x1b\x01\x88\x8f\xba2\x1c\xf2_\x86\xec\x1d\xad^\x96\xc5\xac\xab\x97J\xdbP\xae\xaf\x9f\xd6\xa1\xd4\xf4\x95\xce$\xb8\xfb\xb7[\xedD\x1a\x03\xcc\x07\x1e!0\x9bo\xc1\x0e\xecq\x88?\x12j\xc3\x9d\x9d\x10?\xb3\xf1\x05\x98Y\xa5lcH-\xb9\x0f\xf9\x825\xd7\x82_\x86D\xcbu|\xb4\x04S\x96\x9c6\xae\x87\x16o\xd5\xac\x18*\xef\xd6\xcb\x9f3\xe9\xda\xff\x98\x9a\xc5\x93\xd6\xe2=\xe6\xa4\xc8C0\x91\xead\xb4u\x05$\x0c\x05G\xe4^\xbf*\x07I\x87\xd4\x82\x0c\xb8\x19\xba\x1d\x9b\xaa\xe4\xed\xcb\xf0\xa0\x0d84&\xb2\xe4\xd9P\x00*4pT\xa7\x10\xeb\xdfN\x9d\x0f-2\x8aw\xca\xc0X\xdb\xfa\xb3\xc6\xfa\xd3\xeb\xae\x7f\xdb\xfd\xba\xb5\xfeYge*\x1de\x8b4\x19\x93`\xcf\xdd\xa6<\xa66i\x97\xa3\xa1\xa7:\xca\xd4\x95\x0f\x067\xbb3\x9d\xa2\x8d\xd67\x9fF\xb6\xb8\xce,6\xb12}i|\xb6D\xa9\x06\x06m\x82W\x9c\x15q\x83\x8d#\x89\xcf\x91\xc9\x89\xca[\xe9\xe8Q\x0e\xd6\xc7\x15\x8cbq\x11\xa2\x7fe\xd6p\x7f\x08jM\xd7-TeG\x17\xa49\xfa*M\x8f5\xc6\xaf<\x99\xf2\xda\xc9\x84e\xce\xb2:\xc9\xe2\x07\xcd\x83\x10\xeff\xee\xd3\xdd\xbd\x88yc\x11\xb3k\xad\xdfcj\xaa0\xddX\xc3\xcd\xd4V\xa5.\xa9\xad\xb9\xaa\x10\x94\xe3\xeacZMH\x9f\xcc\x86a\xc8\xfa\xcc\xf6,z\xa8\xa3kkAe\xdc\x81\xbe$\xd5\xd1\xa2y~\xb9\x90\x82\x8a=\x977\x10!\xaf%\x13\xccU0\x08\xd5\x92 \xe27y\x07\x13\xe85Y?\x1d\xa9\xd7l3\xb3\x0e\xb1\x9a\xa9\xf1\xec\xcb\xfdNn\xcf\xc8\x84N\xaf\x7f\xc5O\xe4]\xf1\x03\xb2\xdf\n\xd0\x91\xf0\xec\x17\xcb`Q\xd1\x98g(Z\xead\x1e\xba\xb2\xf393\xf3\xf9D\x05\x1c\xa1\xd6\x15\x85\x9a\x01\\\x1a\xa4\xf7c\x1a\xc1S\x93\xde\xf5\xc3\xe3\xa7/-\x9a\xd7O\xfc\xfd#\x0fi\xffq\xe9\xae\xd7\x91?\xb4.\xf3\x7frf\x94\xa9\x98\xe1L\xe7\x84\xb3\xa6\xa3^V\xd1\xbf\\\xfc\xaaS\x07\xbf\x94\x81o\x9d\xa7\xee\xb1\xd0\x03\x1cs\x80<\xa6A\xcb=\xc5\xd2\xe8\xbbnq\xb1D{\xabYR;\x9c\x86\xa8\xa3cCjH\x84k\x85\xa4\x9e\xbe\x8bU\xbc1\x0d#\xa8\\&\xb5\xd0\x88\xe3\xd5\xfc4K\xb1B\x82\xeby\xb3\xadf}|\xfd\xd7':|Z\xaa\x17?\xf9h\x03?\xb9\xb4\x81\x9f\xba\xb4\x81\xbc\x0b\xdd\xb6\xf6D\xb7\xb5E@\xfb\xcf+\x02\xf91\xe2\xcbDM\xe9\xbfdJl\x8f4_\xafH\xe0bE@.8\x91\xb9qE\xa6\xed\xeah_\xaf\x8d6zh0\x06U\xbe\x07\x8b\xe9\xcdi\xdaV\xd8c\xa61\xad\x15\xc4\xbbm\x9a\xc0\xb2\xe7tB.\xc9\xe4\x98|\xf6\x00\x8cF\xe2\xdf\xcb\xa8s\xbf^^\x1c\xfb\xb7\x8e\xc01\xa6\xc2\xf6\xd1\xccc\x82\xdf\x9e\xfa\xa4\x07\x9c\x85Y-H6\xc5\xfc\xda/\x8eQ\xe7\xc8\xff\x10\x16\x1e\x0b\xf8P\xbb\xc4\xdf\xf1\x9d\xde\xdb7\xff-\x13|\xfb\xa6\x9c\xe2\xdb779\xc9\x97du\x0dAC\xf8\x13\xd8\xfa\xa4\x93F\x8f\x1eU\xa3\x10\x98\xfcS\xcc\x89\x1aX\xcc\x1b\xa0\xebI\x0f1\xa1\x89\xb9<\xb8aXB+\xb4\x19,j\xc8\x125W\x9c\xa1\x84\x8ay\xbbYh.Sc\x18\x08\xe7@|6o\xa3oRZR\x04=\x84C\xe8aE\x028\x80^\xd4\xb3c2\x83\x01\xf4\x0czTu} \xa6\xbbp\x9c\xcaR\xfd[{\xe8\xb2\xba-,%\xfc_t3\xdaR%\xa4\xb4I\xe1\x9a\x96^4x\xe6\xf4\xda\x9c%\xc8\x1d\xe0\xc5\xb7}\"\xab/ ?\xcf\xbdVt^\x93C=\xd0\xaa\xdcb\xf5\x94\x9d^\x9d\x89\xb3t\xc3\x0d\x16A\xe6\\\xe0\x06\xae\xb5\x1cT\x1e\xc2>\xe6G\xe4\x98\x02\x07b\xc3\xb6\xb6\x83\xae\x06\xc0\x9a\xb5\x0e\xe4\xc8\xe0\x10\x82LR9l.\x94\xed\x92\xb2\xf4\xad\xa8\x18\x988\x0b2\xe7\xfe {\x9f\x9c\xcd\xd8\x86pS\x84Ig\x84*C\x94\x9b>I\xaeG\x9a\xdes\xab\xdd\x1dl\x83\xc6^\xfcq\xb7D*=\x19\xaeWWh\\\xbe&\x06?\xb9\xde!\xc1\xb9\x91\xcdz\x14yYD\xac\xdc\x1b\x8a\xa5\xc2LY0L]\xe5^5&\x9a3\xb3\x06\xe4\x80\xb9\x1f\x94\xba\xbf\x80\xd6\xfc\xee\xd5\xcb\xe9\x92\xbd\x8a7Q\x0f\x88}\x8d\x1e2\xbb\x11\xec\xecy\xf5\x92\x14G\xf3\x05\xf3\xb11\xc8^4\"\xae\xcb\xe9M\xc9\xfd@.c\x9d\x19\xf5\xe0EmFH\xaf\xd9\x8c\xb3%m\xee\xfc\x8e\xf9<\x0dH\xa5J\x12\xdb^\n\xb0\xe2\xe3\x0d\xf4*\xd8\xfb\x13_\xf6T\xf6\xefK\xa5@\xa3T\x1fI\x10V\x06)W\x06<%\xe5\x98\x88w\x17\xeb\x8a\xdf\xcb\xbc AU\xa7\\T\x12\xe7\xbbR\xcfy\xec%\xb5i2\x97\x99\xddU\x97\xa3\x94\n\x9e\x05\xba\xb9\xcdR!\xefJ?o}V\x8f|^\xc6\xe9&\xc2\xd69)\xc9\x86W\xfb2k\xa6\xc7V\xd3\x1dN\xcdk\x8b\x81Z\xfd\x13L\x97W+\xceDHu\xdf\xcd)\xd6\xab\xb7\xfeN\xc3\x86\xaa\xd5\xcd'\xd6\xaa\x1at\xf9\x8e5>&\xc6<\xa0\xea\xba\xf2\xe4\xf7\xc4.}\x93m\xb8\xdf\xa5\xf8\x81;|\xa3\xd3\xa5\x14Y6\xe7,,\xd5\";xn\xea']V\xc2%m\n\x97\xbc\xefa\x16\x01\x1d9\x05L/\xd6\x8aO\xff%\xf1%n5o\xf4M\x84=T\x8dQc\xa9]\xf3\x98\x1agd\xc7\x8a\xe8 7\xb3z8\xda\xb2\x99MF\xb1!rx\x0e\xa5\x02\xdc\xa6\xe3\xf1_-\xcf\xa1\xbc$r\x05\xfdF\x91o\xcc\xbc \xe8\x1f\xfb5\x9f\xc6\xec\xf5\xb5\xa51\xdf5\x02m\x13\xffb\xae\x93\xa4\xae&m\xabk\xea\xbb6\xb2\xd6Bn8k]\xc7\xa1\xae\x895o\xf1\x8d%O\xd9\xe2\x06ga \xd9\x1f5)\xc1WD\xd0\x8f\x12\x7f\x8c\xe1\xa7\xdd\xab\x0d\xcc\x90\xf5\x82y\x1e\xd8R\xa1\xa4.\xef\xfa\x14\x1f\x9fa]m\x9b>5\xaa\xfcd}\x07\xfe\x9cz\x0e\xddTnZ\xf8\x03c\xa1MUa:\xabU\x98\xee\xcc\xb6\x9c`\\\x90GV\xe4\x00}\x1a\xb1Z:\xc6-\xa9\xa4\xc4I\x04+\xceJ\xafB\x14\x13V\x95\xbf\xa7\x19D\xaee\xf1:\xad\xce\xf2l\xb9\xf8w\xb0\xe2~6\xbc@f\xbb{\xc7P\xd5\xc5\xf9wO\x06\xde\xc8\xb9w\xe9\\\xf8\x95\xb59w\xfe\x99\xe0\xdc\xbb\xf7\xb5~I\xf0\x04\"\x04r\xbd\x86\xe1(\xc4\x18\x06\xccY>\x8c#HFp\x00\x89\x87q\xd0A\xc7\xec0P(\xe8G\x81\xb3:\xe5\xed4?U\x14\x8cD\x90\x04&\x12\xa9.\xcb\xf87\x165f\xf1&r\x06\xd2!\x99py%b\x08V\x9e\xbd<\xdf\x84\x86\xab~\x9e\xd3M{J\x8a\xe3\xe5\xa9g\x81\xcfR\x06\x1c\xd8|\xc2\xcaJ)\xc2\xea,y\xf4J'\xe4\xb7\xb4\xe5y\\&\xc6\xd9 \x9f\x96y\x8a\x0b\xce\x0bm2\xc9\xc05K 3m\x96ay\xd3\xffT\xfbDVo\xa7\x1b\x0c\xa9<\xd483\xb7\x11$o\xc0H(\"\xce\xfd\x8f\xf8\x9aV\x86\xef\xea\xe7-)\xd5\xa7\xdbts5Z\xab\xe4W\x1f\xf9Y\xff\xfe^^g],\xbc7\xae\xb11\x97U\xbb\xefy|\xb9A\xaf/\xd8F*\x8cy|\xb9\xe9\x99\xfa\xa2\x96\x8f\xc8\xab\x13?\xa3Yk\x06p\x08\xef\xa9pa\xf9\xe8'(\xcd\x13z\xfd\xe9\x88\xee\x98\xe8\xcewn9\xd9\x18\x13\x8d!\x8f`n\xbe\xf8\x94,6\x80\x9d\xd6\xfe\xeb\x98\xcd\xfa\xf3\xf82\xb0T$\xb6t\xd6\x14\xbe}\xa5\x04\xcb\x1e\xe3M\x06D\xbb\xe3=\x90\x9fgI\xba\xa1\x99\xa1\x1c\xccO\xd74l|J\x16\x1f)K\xd2\xcd\xba\x15@WC\xdeL\x05%\x12\x82m\xd6_\xdb\xcaa\xc8\x0c\x06\xe6\xfeX\xfc\x89l\xb0\xbc\xacf\x80\xb8\x06J\xf1\xfen\x18\xa5x\x93\x9b\xa3\x14\xff\xeaKP\xea:\x92\xc4?\xbc\xb8[\xad\x84\xd1G\x8aj\xdeZ\xf26\x8c\xac\xec`x\x15;\xcd\xac\xdaeuq\x91.\xab\xc7\xe6i\x05Zja \xd8\xb1\xbb\xb5sY\xcf\xbf\xa3\xec\x7f\xc9\xb8\x19\x04\x1f\x82*\x91e\xd7\x0c\xb5f*\xe9\xa7\xfc\xf6\xd6-\xd8\xde\x8eQH\x95\x0dZ\n\x95\xab\xeb*\x8c \xb6\xbeq\x15\x81^\x06\xe9\xbfhU\xb2|\x93e!5o,\xfe\x9d[\xae\xe5\xd7\xd2\xe1Q\xa2.9N\xcf(K\xfdB\xdf\xa9e9\xd3\xee\x0f\xc0?\xe2Q\xbf\x9c\xd1\x8f\xfae\x89\x95\xd0/e\xba\x89;\x8bS\xa9K\xe8\xf0kE\xaa<\x1c\x1aUD\xa3\xac\xdf\xeb7\xd1B:\xab\xfa\xbd\x9d\xe2\xdb{\x1d\xae\xad`\xdaki\x04\x05j<\x0f9i\x1b\x0c\xe0\x8d\x14s>s\x8c,\xf0\x05\x91\xe6o)=C\xfe\x0b\x16\xb7\x8b\x088)\x80\xf1\xe1\xe6\x9aW~\xf0\\\x97\xa9(\x0f\xad\xcd\x98\n\x15C\xb0!_\xba\xb9\x186\x8b\x8b\xd9\xd3l\xb2\x81\xa3\x0b\x9bU\xd9\x05\xb0\x8a\xf3L\xcf6\xd0\xcd#@\xb9\xbd\x84\x83\xf2`\x00{p\x1bv\xcb\x8d\xe6 ]\xcaL:\xeeT\xf0\xf9\xb9\xf2\xa36\x16\x0ea\xcf\\\xf5\xb6|M\x0c\xcck\xf1\x1b\xdf\xf0\xd1^\xa2\x90~\xe7\xee\x9d\xfd\xef\xf6\xbe\xbds\xefN\x18\x95\xb7\xe1\xe1C\xd8\xbb\x07k`\xf0\xe8\xd1#\xd8\xd9\xbb\x17\xc1\xdd\xfb{\xdf\xde\xbd\xf7\xdd\xee7\xcd\xf7\xeeh\xef\xdd\x89\xe0^\xf5\x1c\xd3\xb9\x07\x0c\xb6\xe1\xce\xb7\xf7\xef\xee\x7f\xb7\xbf\xf7\xdd}Xs\x98\xfe\x8bo\xe9\x7f\xc9\xcf\xf6\xeeG\xb0\xbf\x7f\xf7\xfe\xb7\xfb\xfb\xf7\xca\xe6\x8f\xe5\xe7\xd8M\xf9\xe6\x9d\x08\xee\xec\xdf\xbf\x7f\xf7\xdb\xef\xbe\xdb\xfd.\xd4\x9bpl\xb9@\xe7\x0f(\xd6\xba<\xdc\x10j0\x80;{\xf05\xe4\xb0\x0d\x9fi\xf0\x94\xe0\xa6yJ\x02\x16\x86|F\xf6\xce\xc1sw\xaaKh\xc5\xaf\xd1K}R>\xdd\x943\xc2\x8e:;\xd8\xacq\xcfvCc9k( \xa2\x89\x14\xd6\xee4\x95\xc1|/~\x10\xc9\xc9\xb4\\\x00\xfa\x1b\x1f\xe8p\xaa\x02\xbc?\xd0\xe1+\xfe\xf7\x07i\xb2(\xf8-\x19:*n\xcb\xc0\xea\xf2\xbe\x1e8\x04\x03xF\xf1IB\x8b\x85\xc8\x8d\x8f\x9f\x1cg\xcb\xbc\x9eW\xc6\x04\xb2\x86\x12I\xba\xb7\xd6g\x87\xad\x8fgqBE\xdb\xd2\x96)ng\x94\xc5 F\xa5\xe3\x10\x84\xee\x12c\xc4s\xd3)9M\x93\x0dB#K\x01\xe5#\xb3\xae\x84I\xed\xb38j\xb9\xf7\xfbZ\xff\xedT1\xb7\xcb\x02N\xe1n#\xc3j)M('\x89a\x12A6\xb2\x17\x9f\x06\x10FU\xcd&\xe9)4\xce\xe3\xc5\xcb\xba\x0f\xb2/\x8c\xae\x01\x04\xbe\xeeMXt\x89\x19-X\x88h\x04\x07\x10\xb0\x93\xeb\xec\xd6\xd7\x14\x93\x9btf\xeexn\x07\x92\xdaI\xf5\xbe,\xed\xfc\xde\xd9\xce\x90E@F^\x8d\xbd\xb1\x90\xc3\xe6\xd9\xdc\xb1\xd9\xb6\x88O2.h\xc3\xd32\xac\xf773\xac\x9d\x1b\x1e\xd63\xf7\xb0z\x05\xd2\xc0\x9a\xf1\x03\x0e\xe1\xc5\xf1\xdb7}\xf1(\x99\xae\x84\xdaVRK\xcf\xdc\xa2\xaf\x9c\x04\xf8\xd8\x9a\xc9\xd3\xd2\xdc\xc7N\x0c\"\xf0\xb0\xe4\xe0\x08<\xc2\xbfw\x90\x9d\xf3\xea\xe0\xb3G\x07\x9c\xf5\xd9\x86\xfd\xfb\xf7\xee\xde\xbds\xef\x9b\xfb\xdf\xc16\x04\x843d\xf7C\xf1\xe7\xa3G\xb0\xdf>}\xeb\x0b%[{M\x87\x0bu$\xbe\xae\x8eD\x19\xa8\xc5\xef5\xceD\x91^\xa0|\xd08\x14;\x89\x9a\xec\xb6\xb1\xb0\x0c\xa3o\x0f0\xfc\x161\xa5>p<\xd82s\xf2\x93/M\xdf\xe0\xa73\xbf\xd1\xc0\xa9=\xbf\x93b\x9a\xd0 JO\x9e\xdd~\x817\xdd!:\xd3\xc1\x01\xec\xb4\xfd\xffLfN>*?\xc3\xd5\xb9\x9e>S\x99\xa8\x9c\xa3\xd1\xd2\x0c\x97{\xc7\xcb\xd53\x8d\x0b\xf6\xfc\x9a#+\x8dq\x7f\xd9\xe8n\"~\xc3\x13qn2~\xc3\xb7\xcb\xc5\x06}*Dm\x86\x15\xd9\x9d\x98\xf9:U\x96\x02.u\x8a\xa0Z\xb1\x10\x98\xf6j_\xfe\x89\x15\x8c;\xb23\xf2\x8b\xa8\xec\x8c\x9c`\xef*\xe7~t\xce\xafRDt\x04\x85VI\x15\x959\xa3\x03{J0\xef\xc9\xd1\x1eB\x0e\x07\x90\xab\xd0\xfdc=\x02x_94\x88\xd61\xc7\x81gP\xb0r\xee\xfc\"\xf2Qz\xab\xfe\x15$\xe4:\x8e\x9f\xa2\x9a\xbdW\xeb7\xe4\x9a\xe8\x89\xfd\x1b;\x0d6\xd2k\x87\x88\x82\xaa\x14]]\x0b\xa5e^\xafG\xd3\xdc\xba%\xf8\x8b\x99\x96dU\xe1\xed\xb5\xfc\x11EUmKV\xa5M\xdd\x117s^j\xc1\xe3\xd1\x00v1\x07\x85%\x90\xc8\x02(d\xbefUt\xd1\xce^\xf5\xa5<\xb4Z\xd5\x14\xc1v\xc61\x92/\xb2b\x13\xd3\xe6\xf5\x93|\xf8\x99\xf5\xaa\x12\x03%\n\xec\xc3\xd7\xea\xd7\x0e\xec\x89\x02\x03\x0e\xcb\x9f-\xf5\xa1~)\xa3\x01s\xca\xe5\xeaJ\xbe\xd8V\xd79 \xad\x8d`+\xc1R\x00b]Eh)\x17\xd1\xb30\xd4\x92\x96b\xb3\xf2\xbe\xb3\xe5+\xde{\xe4\xca\xa3\xa1C\xd4l\xb6\xf3\x06i\x84\xb0\xaa\x19\xd0~\xc7\xfe;'\xefo\x0f\xbd\x86\xfd\xac\x84l\xc6!\x1b\xc3\xff\xe5\xb2\x03\xdfz\x1c\x07\x92\x9a\x0b0\xc6\xfc\x1e\x88w\xe0\x10>\xf3\xb9\xc7\"\x1d)Zm\xd4\xcfL\xa5\x8c\xed\x02\xbf\xd3ZbIU^Q \xefm\x9c\x92\xf8\xdc\x87\xf3Rf\xb9!\xefbd8\x94C\xc7bq\x1e\xe5\xa5 \x00J\xff\x12\xc1\xcb~6EgZ\xebg\"?\x89\xe6\x9d\xef}\\\xc3\xbf\x8e\x1f\xf8\x9e\x11\xaa7\xed\xde\xe3y\xf2\xffq-\xbd\xeaK\xf5\xc7+\x1a\xb9\x90\xcd{\x0c?'l\xe6sN)\x99G\xef\xc5\x8do\x9c\xa7S\x01\x02\xed\xf1\xdbL\x96\xb5;W!\xa7\x08Uz\xd8\x89\xd27\xe87\xcb\xba-\xef\xd0q\xbd=\xfc\x8dy,\xc4 Q\x0bZ\x9a\x95\xbd\xe4\xb4\xeb\xe6\xd31T\x9d\x86\x9b\xd9l\xd8|\x95\xc3\xcd\x03\xda\x89\x96g[\x94\xd0\xaeY \xf4\xc7\x9a%A\xbf]3)\xfc\x1a\xe9J\xda\x10\xef\xbd\xac-\x9f\xb8\xf7C\xadiq\xef\x84\x18>\xbe \x86\xaf\x8fH\xf3\xf36TT~\xb9\x03\xa0m\xb8\"P_\xb4\xef?\xcd\xd2\x94 \xa4\x0f\xe0\xd4\xe0\x03\x81\x01b\x1f\x0d\x0f\xf4\xb4\x92\xefX\xfb\xb9\xc8\xcb\xb70<\x91\xa9\x02\x8f\x8c\xa3d\x07P\x18\x1e\xe8Y%\xe7\x86\xe7\xef\xc98\xcb'\x07\x90\x9b\x9e\xc5\xf4\x8c\x1c\xc0\xca0\x89\xf7dAb\xde\xa4\xe1YR\x1c\xc0\xccp\x7f\x9agsLmkK\x97|\x15\x01\xe9\x93\xcbE\x96\xb3\x02\x93\xc4 \xac\xbcr\xfb\xb4\xf5\x96\x05\x81\x82\xe5\xc9\x98i\xf9i\x94 ]\xdbn\x9a\x0f\x8d\xdeQ\xb3u\x15\xfb\x16G\xb0\x8c\xa0hn$L\xc6\x1e\xb00\x82-\xe3\x1e\xe6]\xa7m\xfa\xa7\xa5\x01C=OX&L;\xca\xf3,\x0fz\xaf\x13\x9aL\x132\x01r9&\x0b> \xc8\xc6\xe3e\x9e\x93\xc9\x03\xe0\x93d3\x024\xa3;s\xf5\xe2\x84\x9c\x03\xa1\xe7I\x9eQNu1\x02\x8b\xbf4]\xa6)\x10\xde*\xccIQ\xc4g\x04b:\x81x2Ix\xb3q\n3\x92.\xa6\xcb\x14.\xe2\x9c&\xf4\xac\xe8\xf7\x0c\x14\x9b\xa4\x05q\x90\xfc1\xe7i\x9a\xc0r\xf8\xf7L\xed\xfcfP\x07\x05\xeb\xe7d\x91\xc6c\x12\xdc\xfe\xbf\xc5\xed\xb3\xa8\x9b\xa8AE\xd8\xc6\xc3\xe9\xf6v;\x84\x17\x90\x8a\x85a\x9f\xc6s\x0c\x8dxN\xcf\xe3<\x89)\x83\x9f\x92,\xc5\xe4\xdb\x86\xfc\x92\xad;l\x96g\x17\x90\xf6\xa7y<'\xc5\x87\xec\x1dV\x91\xd9k\xa6b\xd3\xb0\xfa\xcb\x91\x98\x06w\xee\x86f\xdc\xcd\xaf\xdf\xba#K\xa2L~>!\xd3\x84\x12\x95\xfc\x9c\x8bE\xbd\x93\x13R\xbc\xce&\xcb\x94\xf4L\xa4T:I5\\\x9e0\x8f\x12\xe7\xbb\x9ef\xf3yF\x8f.\x19\xa1\x85\xcc\x7f\x8e\xf7\x1bwH1\x8e\x17XS\xf1UB?\xbd\x8b\xb1\xae\xa2J\x9d\xdf\xba]\xcc\xe24\xcd.\x8e>/\xe3TV#d\xfd\xd3e\x92N\xbe\xcf\xf2\xf9\xb3\x98\xc5\xe2\xb5,g$\x97OY&o\x92<\x89\xd3\xe4\x0frL\xe2|,\xda[\xc4y\xa1\xff>#\xec8\x9e/Rr<\x9e\x91\xb9\xf8\xee\xaf\x17\xc7o\xdf\x88\x9d\xd1\xe9\x01\xc6\xf2U\x07\xb3\x8c\xb6*D5\xab\x8eF\xe8\xa8o\xdd\x82^\x86\xbd\xf6D\x11\xb2\x86\xb1\xa0\xb7\xa4b\x9fNzp\x00\\\x82*\xf8\xc6\x8d\x97)\x0b\x03\x16\x86\x8ex\xd7+\x18\xc7l<\x03q8\xb6\x1e\xcb\xef\x1a\xd9\x1b\xae\xf8^\x16\x03J\xa6\xabNH\xc8F\x8e\x05\xc3|$\xf9f-\xa9<\x1c4\xfb\xc6\x1e\xe2<\x8fW\x1bt@d\xb3\xe8]\xa3\xff-\xeaI\n+\xefp\xd4\xeeH\xb0%\x92O\xd2z\x03b\x0eM\xe3\xabr\x84\x1eT\n\xae\xe6\xb3\x9eAB\x0b\x16\xd31\xc9\xa6\xb0RK\xd2\xe7[\xd2\xf5i /\xc6\x01U\xcf\x86\x8b\xb7\xd2\xb2)\xce\xb8\xcb\xb4\xbc$\xec\x8b\x8c\xce8\xdb\xea\x95\x8a\xd9\xac\xde4\xd5Nd\x98`\xf0Cv\xcc<\x0b\x05)\x15\xa3)\x87\xbb\xd2\xfd\xecF\xb0\xacP\x91\xb4\xb3\xf3v [\xe6\xf0\xc5!3$\xe80\x14\xbe\xeb*\xc6N\x879\x17\x0f\xc90\x1f\x89\xf4\x8at\x99\xa6fMt+\x13&\x82\x8cf\xf9\x1c\x0f\x0f\x81s\x03\xb8\x8c\x90N|O}\x91\xd6<\xc1vOIQ\xd2\x9dc\xd9\xc7\x92\x8eo\xbe\x175\x11\xaff\x9b\x99\x9a\x8dT\xe2u\xbc\xf0A'+\xca4\x93\xfa\xba\xf4\xa2\xf5ue\x01_Y\xa1\x8a5\xe5\xee\x84?\xdb\xa5\x84p\xc8\xef\xb1\xcb\x7f\xdb\xa8K\xc5x9^\xa7\xee$s\x1e\x08Y\xd7\x81 U\xda\xfcn\\\xdd\xa5\x18r\xb1\x01\x98\x8aU\xc1\xc8\xfc\xc3lI?\xbdN&\x93\x94\\\xc49\xf1E\x9c\xee\xfd\xcf\xfa\x93\xa4X\xf0\xb3I2\x8eH\x97\x9cp\xe9n\xd4\xf4\xb2\xd3\x82\x05\x1d[\x08\xcd\x93\x01 0\x959\x0b,\xbel`\x14#\xccw\x0d\xe7\xa0\\#\x0e\x80e\xf14\x9btC\xf9\xbcL\xb2\xa5\xaal[I4+55\xc1\x05?[.\xf8D\xfc\x93\xa8+\xe0\xec\xf7Ty\xd4m\xe8\xf5Bc\x06\xa5\x10\x19pK0\xf3\x95\\f~\x82\xf9l<\x8c\xce\xa9N9\xa5\xc0\xe1\xbc\xa7\xfc3\xd0\x8a)V/\x8a\x13\xb2\x0d\x0eu\x9a\x11\x99\x83\xc0p\xec2\xce>\xb0\x91\x1d\x96\xf5^\xfaI\x81\x9dQ\x91\xf8\xfe\xa05\x88\xf6\xfcg\xc9\xd9,M\xcef\xdd\xdc\xa5Z\xe1I6Fu\xab\x99\x01\xd9\xaa\xf8\x8c\x9e!s\xaf\x08N`\xe4\x92=\xcd(#\x94\xa94\xac\x8f\xe0\x1e\xb9S\xc5\x03\xe9\xafX'\xdf\x8d+\xb5\xec0\xba\xd2@\xa4\x83\xab\xfa\x88\x90\x0b\xdf\x8dP=\xb2\x1c\xee\x8e\"\xd44\xecE\xa8@ \xfd\x84R\x92\xff\xf8\xe1\xf5+\x91q\x18\x16\xa8V\x10r\xb2\xa8g\xbb\x80\x87\xf0\x0d\x92\xc9\xdf~\xc3\xfdJ\xa5\xe7\xdc\xd8\x99m\x86\x03\x84\xf7\x94\xaa\xae\xb7\xb7\x8b\x910\xafM+\xd8\xecE\xb05\x86\xf5\x1a\x16\xf0\x08\xbe\x15\xbd\x08\xaa\x80w\x87\xb7\x7f;\xbe\xddg\xa4`\xc18\x8c\xf8\xdb\xfc\x83\xdb\xc3\xaf~\xbb\x18i\xf7\x83\xdem9\xb2\xf5\xbal\x80\"iN\"\xf8[\xefo\xa0\xdcN\x92\x08z\x7f\xeb\xe9?\x97\xc3\x02v\xe0\xee\x08\xb6\xd1)\x9e\xf2g\xbd\x9d\x9d\xdf.\xefp\x99\xbc\xba\xf5\xf5\xed\xdeh\xb8\x18\xb9\x8de\xb8,SQ\x98\xa1\x1f/\x16\x84N\x9e\xce\x92t\x12\xc4\x9a\xc8}\x94\x12\x8efA\xafX\xc4\xb4\x17\x86\xfd\x82\xb0\xc7\x8c\xe5\xc9\xe9\x92\x91\xa0W\xb0\x15\xaa\x03\x86\xbdq\x96f\xf9\x01\xfc\x9f{\xf7\xee=\x80iF\xd9\xce\x05\x11 qO\xb3t\xf2\xa0\x17\xe1\x8a\xe1\x7f\xfa\xabxo4\\\xc0!\xae\xdd\x1d8\x84}8@\x08\xdf\x87C\xb8+\xff\xe6\xf7\xef\xc0\x01l\xdf\xfeW\x10\x07\xa7\x05\xcb\xe31[\xa7I\\\xac\xe9d\xadL\x0fk\xbeg\xd7E0_\x17$g\xe1\xe1z\xc9\xb2p}\x1a\xc4\x05Y\x93\xb3\x84\xae\xb3,\x0dHL\xc3\xc3uN\xe2O\xeb\x15#\xe1z\x8c\x8f\xf9\x81\xb3\x9e\xc5\xf9\x1aE\xdb\xc9:\x8d\x8bb\x9df\x94\xac\xb3\xf9\"]g\xb4`\xeb\x8c\xb2\x84.I\xb8\x9e\x90\xe0tyvF\xf2\xf58\x99\xc7\xe9z\x9c\xc69YO\x03\xbe\xc7\xd7$\x0f\x0f\xd7 M\xd8:\x0d\xc8Y\xcc\xc8\x9a0\x12\x1e\x86\xebI\xb6\x9ed\xcb\xd3\x94\xacI0\x9ee\xeb\xb48L\xa6\xeb\xb4 A2\x0d\x0f\xf9<\xb0\xf6\xe8\x9a.\xe7\xebsB\xd9\xfa2\x18\x93\x05[\x93\xf1z\x11\xa4\xc98a\xeb,g\xe1\x9a\x91\x80N\x8a5*M\xd69\x0d\xc3\x90w\x9d\xa6l\x96g\xcb\xb3\xd9:N\x0b\xb2Nh\x9c\x06\xe9\x8a\x0f\xe5\x92O'\x8b\xf9\xd7\x01\x89\xc73>\xfb\x84p\xb0e\xf3\xf5\x92\x8e\x03\xbe{\xf9\x00\xcf\xd2\xec4N\xd7g\x19\xcb\xd6g\xcb8\x9f\xac\x93`\xba\x9e/\x02\x81\x03\xc5Z\x1b\x04\x0d\x12\xb6F\x95~p\x92\xd11 \x0f\xd7i\xc2\xa1\xb5dk%\xfa\xacY@\xf2i<&k\x92\xd38\x0d\x0f\xc3\xc3u\x11\xae\xd3 \x9e\x9fN\xe25a\xebl\xfci\x9d\xd1\xb3p=\x0f\x92q\x9e! \\\xa3\x8ai-\xd4\x08\xe1\xfaM\xfcfM\x83xN\x8a\x05o)f\xc99Y\x93K\xb6&\x17\xeb$]gl\xbdL\xd3p\x9d\x05\xc8\x16\xad\x17\xc2\x10\xbe\xce\xd7K\xb6>'y\x9eLH\xb8^\x04\xf1\xf8S|F\xd6q\x1e\xcf\x8bu\x9e\x9c\xf3u\xc93F\xc6\x8cp@\xb0l\x9c\xa5\xeb\xe5i\x9a\x8c\xc3u\x1e\xc4 \xc7\x98 \x9ed4]\xf1\x85\x9b\xae\xcf\x92\x82\x91|\xbd 1[\x7f^&y5\xefb\xbc$k\xa1b[\xb3|\xb5\xe6T1\x0c\xd7Ep\xba\xe2\x8b\x1f\xa7d\xb2&\xe9t=\xcbr\xb6N\xce(\x99\xac\x93?\x10<1K\xc6kT\xe7\xacY\xbe\x1c\xb3\xf5\xf2\xb4\x18\xe7\xc9\x82\xad\x97\x0b\x92\xafWt<\xcb3\x9a\xfcA&\xeb\x8b\x84\x8dg!\x87\xe8|\x91\xf2\xc1\xcf\x08]\xcf\x92b=\xcb\xb3\x8b\xe2p\x9d\xc7\xb4H8\xd2\xe4K\xb2\xceW\xeb\xd5\x82\x041\xee\x8f \x99\xae\x93\xc9\x9a\xc6s\xb2\xce\xa6a\xb8^\x064\x18K4\x9f\x90i\xc0\xd9E\x8e'\x19]\xa7\xa4(\xd6\x85\x18#K\xd2p]\x90u\x91\xf0\x05:\x0f\xe2|\x9d\xe4l\x19\xa7\xeb,\x99\xacQm\xca\xd7\xe7\"\x18\xcf\xe2\xfc\x84\x89\x01\x91\x9c\xacgIJ\xd6 \x9b\x85\xeb\xcb,_\xaf\x12\x92N\xc2\xaf$\x01\x9cr~iw\x14r\x16T'9\x8a\xdc| \x97\xecM6!\xc14\x0cC\x91Al\xc1)\x94\xa0\xeb\x9cF\x1c\xf0\xf3c\xaa\x1d\x00{{\x0f`k\xb8\x17\xc1\xed\xe1o\xb7\xff\xbc\x1a\x06\xbf\xedl\x7f=x\xf8\xe8\xe0\xc1\xfa\xb7\xdf\xfa\xd1\xe1\xd6\xad\xbf\xff\xfft\xfa{{\xf8\xdb(\xac\xdfhPhI\xa0\xc7\xbc\xe3\x0cS\x93sR\xff\xb0\x07[x\xceH\x12=.\xa9\xf3\x98\x1fS\xdb\x90\xc26\x12\xe8m\xd8\x1b\x95\x7f\xee\x8f\x90 \xffvyg\xbc\xb5\xb3\xd3So\xf2{\xb7\xbf\xae\xff\xbc\xcdi\xe1\xff\x11-\x8e\x86;;\x8b\xd1\x03\x87\x07\xcf\x14\xb6\x070\xf6e.\x8d2\xda<^|\xc8\x1a|\x97M\xf5as\xb1\xe4\xc7b#\xc9~\xf9\xcapo\x04\x87\xf5\x9f\x07\xd0\xfbDV\x06\x96D)\x06\x0d\xed\xef[\xdb\xdf\xaf\xb7\xbf?\xaa1[\xaf\xe3\x85\x89\xe1k0\x90\xaf\xe3E?)\x84\x96\x04=\x81\x84\xf7\xc3\x06\x1cd\x9dc\xa4\xa2\x82\x0dE\x0b\x89\x89g\xe4\xfd\xd3*\xef\xfd^\xa5\x11\xea\xcfI~F\x02\x93\x14x.\xa3\xe5\xbbG\xc3\xdf\xe4\x8c\x155V\x07\xe2O\x0bK\xf4\xbc2\xecl\xed\x99\x9fM-:]p*=K\xe6o\x11\xc1\x04\x06(~&\x9a\x96RE\x06\x04!\xa6 \xe4\x83\x0b\xf8\xb6\x9e\xd4\x1c\x85\xc2\x07r\xd8..\x8e\xf72\xe3\x14\xc3'8\xfd\\\x8e%\xab\xc62C\x17Y\xe7Ws\x0e\x83\xceP\xf63|k\xaf\xe3\xad\x15\xe7i\x83\xb3\x08h\x99m'\x82\x9c3X\xc12\x82yS\x0d\xad_mTPB\xc7\x8a\x0b\x1d\xb1r\xfe\xc0\xec\x87\xb1H\x9a\xb72s\x83\x06b\xa1\xab\x86\x8d\xdf\x8c\xa5k\x05r\xe5\x86\xef\xa7\x9c\xfbHm\x18a\xc7\x15~ma \xdeI_n\n\xedo[\xe2\xe6\x8e\xee@\xf1\xf7\xa14\xe0M}\xe1\xd0\xba#\xc7\x14\xb7I)\xb9D\x8e\xf4\xfb$%o\xe29\xf9>\xcf\xe6R\xa6y\x96\x14\x8b\xac@\xe3\xeb\x8f$\x9ex\x94\x95W\"\xde\xedi\x92\x12~l\x0fz\xc1\xf0_\x0fF_\x87\x0f\x0e{\xb7\x93>\xb9$c\xa3\xe1\x00\xcb\x9e\x08\xdb\x00g\xea\xebm\x94MT-\xd8\x88\x93\xaa\x9e\x82\xcdh\xb2\xa1F\xaa\x8c\xf9\x19\x94\x12n\x99\xa6m\x08-\xe2b\x1c\xa7O\xe3\x82\xc0\x00\x9e\xd6\xef|/\x07\xd9 \x1a\xd9\xc3\xd3\x80Tf\xe2\xdf\xfa\xc3\x7f\xf5o\x8f\xbe\xfe\xea6\x17%B\x93\xc6*\xa6 K\xfe \x1f\xf3\xb4\xb3\x07\x0e\x802vlK\x8b\x1d\xe3\xc2\x9a\xd0u\xb8ekM18\xd6{\x0e\x8dG\xf0\x19a\x8f\xc7\x9c\xcb\xe7\xd8\x92gi\x9a\xd0\xb3\xf7\xa4Xd\xb4\xe8\x86F\xe3$\xab\x14\xfe\xfd\xa4\xd0\xb4\xff\x9a:\x84/\x8dMcP?\xf6\xccoV\xfa\xa5\xbaCx\x97Wry\xc2\x15,\xceY\xf1s\xc2fAo\xbfW\xea#u\x15*:\xe9\xf5\xc6b\xf7\xf4\xf04\xfd\xf3*\xac\xb0\xd0V\xa8\xc1LlK\xd5N\xd0\x93]\x88&\x8dv\x12K\x1b|\xcb\x06\xd40.s#a\xa9|\x93\xa6.5v\xa1\x0d2CVA\x887\x9b\xb7\xf1dB\xc8\"]\x1d\xb3\x8e\xbaLmJ\xf3\xdeP\x86\xffye\x0eLi\xe0hf09\xd9\x15\xdaU\x1cQ\x1edC6\xc2\xbdr\x08\x13\x92\x12F\x80\xdf\xe1B\x0d\xff\x87\xf3\x03\xe2\x0dj\xcce`\xcaV\xabl\x03\x06\xb2\xa7\xa2!\xbd\x08\x89)`\xd6\x95\x19HV We=\x95Y\xd7r\xa6X\xad\x16\xa4k\xc1\x89\xb0Z\x94\x87\x12 \x1d\x0c\x84F|s\xad\x89\x08\x84}o\xdf\x00R\xc5\xect\x19$\xcdQ\xc2\xe0\xe2\x13\x88#\x15\x03\xebS\xf4\xbd\xf8\x90\x95\xfe\x1c\x1ek$\xbe\xb1\xac\x91\xd6\x9b\x15M\x1a\xa6\xbf\xfa{\xe7\xb2\x92\xe7I@\x83oL>\x12ctH\xba\xf7\xcd\x9e\xe1\xd9T~x\xef\x1b\xa3{\xc5B\xb9f|\xbbkz<)\x1f\xdf5=\x9e\x95\x8f\x8d\xe3:\x97\x8f\xef\xdf36>W.%\xbb\xf7L\x8f\xcfpV{\xdf\x99x\xff\x95\xfc\xf4\x8eqR\xa7\nX\xfbw8\xe2\xd7\x9e\x97\x04\xfa\xa4\xc3w\xe1\xd6-\x0c\xe1P\xbeU\xd2\xb5\xd8\x8c\x8b\x12\xa5M\xa5\xea\x9bQ\xf3\xfa/\xbe\xb0\x170\x80\xf2\x08lO\xe5\xc8\xe0\xc0\xd3\xad\xd9o\xc9\xc8fsL{\xb06`]ndv\xae\n\x047&on\xfc\xd8\xd9\xf8\xd6\x16q\xdaW}(\x95c\x0dtO\xa9\x89\xfa\xc8\x06\x86\xa7\xce\x91\xf2~\x17U\xbf\xfc\xe7\xd4\x7f\x18u\x07\xaeN\x16\xce\xa1\xf8\xd9\x8c\x8b\x18Z\xc4a\x0b\x8br\xc7\xda\xf8\x9dz\xe3wD\xe3NN\xbcn\xa2\x97} \xefQ\x7f\xc8\xca\x87\xeb5 `\xcfk\xc7\x88\x0e-\xab\xfd\x18\x9d\x84\xab\xfc\xdf\xb4b\xbfM\x9a\x15\xd0\xfd\x00\x86\xd4\x92\xf6\xces\xa3\xc1!h\x02AR\x04\x182\xc5Q\xd5\xcaq\xf9\xa05\n?\xb6\x06|\xfc\x0e\xf0\x08'\xf8i\xd6&\x06\x82{k\xd4l\xeb*`\xb3\xc5{\x99k\xc3\x1cR\xceY\x0d\xa9\xc1\xeau\xd5\xdc\x12\xeds\xef\x93\xc5\xe1\xb1s\x7f\x80\xb2\xa7\xc2#\xa8\xc2\xc4{?\xc5\xe9\x92\xc0|Y08%\x90\x92\xa2\x006\x8b)\xc8\x96\xbd\xca\xd9?\xb68fn0\xa6\x87\xf61\x9d\xa1\xc2=\x97\xc3\x12\x8d{\x0d\xeb\xad\xd9\x85\xb4\xfb\xb4@9\xf3\xf6\xbfv\x0e\x7f\x9bl\x07\xbf\xf5\xf9?\xe1\xa1\xb2\x0chRjc\xa01H\xb6\xc7gp\xef,>\xaf\x9b\x8d\xcecP\x14#\x01\xcf<\x87\xf5\xc1\xe4\x9b\xeb7&<\x95\xb6\x02\xe2\xf0)\xb4Cn\x9a\xa4\xc4k\x80\xaf-\x0e\xc5~c\xec\xb1|Iz\xb2n0?D\xa7qZ\xe87\xb6v\xb5\xbf\xf7\x14#o\x1b\xf5\xa9\xe8\xdek\xe0\xcf\xcd\xce\xd1~\xe3\x16\x835\xa8{\xecc\x93/\xfb\x0c\xedw\x9b3\xb7\xdf\xe0\x92\xe2M\xfc&\xe0\x9f\x95\xce\xc2\x8e\x95V\xcd{\x8d\xec\x8d\xc9\xef\xdcoTJ\xd8S\xa2F\x9fe\xaf\xb2\x0b\x92?\x8d\x0b\x12\x84\x11l\xdd\xfe\xd7\xf0\xcf`t8\xdc\xdd\xf9.\xde\x99\x8e\xfe\xfc\xf6j\xa7\xfc\xfb\xae\xc7\xdf{\xfbW\xc3\xf0j\xe4E\x18\xf8\xc8\xbd&\xfc\xde\xea~\xefOL+\xde\xc4\x8f\xce\x8b.\xbc\x86\xf7\xcc\x1a3\xb0\xf9\xf06 \xf9\x1b\x8c\xf0\x95%\xd2\xc1{|[\x94\\\xc0{rvt\x89\xfe\xc8\xae\xa5\x9dfi\x9a]\xc0Bv\xd2\x83m\x93\x03{\xfd\x0co\xc7et\x8e\xec\xba\x9c\xed\xad[\xb5\xdfv\xae\xd6\xc6\xf1\"\xab\x87\x94\xe74\x9b\xac\xa4RY\xa8\x17\x13\xda\x13N\xf2\xf8\x0b\xcdX'\x97\xf3\xb4\x87\xee\xf2\xda\xcd\x9eEU\x99T\xea\xce\x9c\xa0\x9b\xc2\xc4\xf6j\x0c\xc2;J\xbe^`\x84\x8b\xe8\xc8\xa2\"\x8e\xcb\xd5\xca\xedv\xc7X47\x97|\x8e\xa5\xf3\xb1\xf6\xa6d=,oN\xab79q\xb6\xbd\xb6\xa8^\x9bf\xf9\x8f\xe0,\x82\xd3\x08N\"\xb8\x88\xe0(\x82\xcb\x08\x8eG\x0d\xe1\xd59\xf6J\xdfd|\xc5V\x92\x0eYB\xe4\x9f\x9f\x86\xcd\xb9\xbf\x97\xb4\x1e\xa6 I'\x90\x14@3\x06\x8b<;O&x\x02\x98(\xb6j\xf4\xdc5X>\xf1\x8f0\x80WA\x16\xc1\xb9\xc3%\xe1#\x1a8\xc4x>\xfa\xba\x1a\x80\x1c\xc2\xa4\xda:\x93\xae\xd1|\x86\x01\xbc\xe7\xa3\x998F\xf3Y\x1b\xcd\xe7MG3\xeb\x1a\xc2\xf70\x80g|\x083\xc7\x10\xbe\xd7\x86\xf0\xfd\xa6CXV\x00q\x96\x1d\xe1\xa3\xf9\x03S]a\x91\x11\xfbh\xfe\xd0F\xf3\xc7\xa6\xa3\x19W\xa3\x19w\x8d\xe6 \x0c\xe01\x1f\xcd\xd81\x9a'\xdah\x9el:\x9a\xfa\x91\xd85\x9e\x9f\x1c^K\xeaB\xee&\xf8 5\xe41#;\x8c\xcbQ\xd8\xfc\x02\x0e\xe1\xf7\x00Uh\xbd%\x176\xca\xbbo\xc4\xdd\xe7\x82\x88\xda\xf9\"u\xc9\xd9\xfedsb\xa9\xc8l\xfd`\xeb\x9a\xdf\x8f0\x80\xd7\x81\xab\xda\n\xce\xee\xc7\x0d\xc6\xf8c\xf7\x18k\x87g\xd7\x10\x7f\x86\x01\xbc\xed\x1e\xe2\xcf\x1b\x0c\xf1\xe7\xee!\xd6O\xe8\xae1\xbe\xc0\xec\x8d\x9dc|\xb1\xc1\x18_t\x8fQg\xb0\xbaF\xf8k\xc7\xd0N\x91\xf9)\xd90\x9f\x81\xfe\xaax\xd6\xe74\x18\xf6\x12F\xe6E/\x02\xc1g\x8f0\xc9N\xcb\xcc\xdd\xe5\xe9\x01\x9a`\xd5\xb5\xed\xf8U\xc3\xa4_\xd1E\x82#\x0b\x86\xaa\xd6\x97P=|'\x1f\xeaT\xe0Wd\xc0\xf8\xd3\xe7\\\xa8\x8c\xa4\xb9]\xac\x83{\xb0\xfcJDVKC\xde\x95\xe6\x85\x995\x0e,\x99\xc4\xd4\xe5\xac7\xdb\x89\x13\x1a\x83\xdc\x85\x12/a\x00\x1f\xba\x91\xf6\xa5\x0f.H`\xbd\xf4\xa5\xc6V\xab\xb7\xc1{\xa5\x9dF\xc1\xcd))7\xa3/w66X:Az\x05m*\xf6\xb7\x0cZ\xa6\xf8g\x0e\xef\xdb\x97\xf3T\xea\xae\x98U\xbeK\x84\xcf\xd5\xe5<\xc5m\x8b\x7fa~\x12\xd7\x9a\x0b=\x0f\xff\x86K\xf9\xf2\xdb?\xaf\"\xfe\xfdW_\xe5d\xaa;\x03\xac\x16\xe8\xb4F\xfa\xb8\xaf\xc5\x9f\x0b\x91\xcf#!\xf2w\x95\x16\xe6]\xf5\xe4\x10\xfe\xf6\xf0\x907~N\xf2\"\xc9\xe8\xa0\xb7\xd7\xdf\xed\x01\xa1\xe3l\x92\xd0\xb3A\xef\xe3\x87\xefw\xbe\xed\x1d>\xfa\x8dJ\xb7v\xf8\xe5\xf5+ \x97\xb8\xc40\x8e)g>O \x9c\x11\x8a\xc9\x19' B\x94\xfef\xf5~R\xd7yY^\n\xa7\xd3\x9fsQ \xb8\xfd\xdb\xf1\xd7\xbf\xdd\x0e~;\xde\x0e\xbf\xba\xed@\xf6\n\x88\xb2\x84\x94'*C\xddXx\xa6,\xb5\x93\xa7\xa8/\xfb\xe5\xf5\xab#17\xe1J\xe2\xe3\x01r.\xcb\xaa\xd5\xdb\x13\x9b\xe0\xfb<\x9b\x8b\x8d \xdbk\xcfH)\xc5l\x92]\xd2%\xd9%a\x08\x87M?\x98\xa4\xf2\x83\x81\x83F\x8eJ\xe9\xa3\xa9\xa7?q\xba}\x9d\xcb\xcc\x86\x7f\x1at\x85 \x93\x17V\xe2|\x9a\x8d1\xcbN\xbf\xc0\xc6-\xfa\xa5Joi\xdbZ=\xa1\xa4w)MD\x16\x94byZ\xb0<\xd8\x0b\xfb\xc5\"MX\xd0\xbbe\xd2\xc6\x80\xee\x9f\x9eCB\x81\x86@\xfb\xb3\xb8x{A\xcb\xdc7\xb9pS\xc4(\xc3a>R-\x0e\xb8XE\x86\x132\xce&\xe4\xe3\xfb\xe7O\xb3\xf9\"\xa3\x84\xb2 \x1f\xee\x8e\xc2\x11\x0c \xe7T\xe8\xd6-0\xbe\xb37\x12v\xd5\x9e\x0f>\xa9m\xdd^\xb3v\x1a\x1b7m\xb5Z\xc5\xfd\xca\x97\xab\x81\xd0\xd6\x8cD\xca\xfdA\x0f\xb6MO\xc9\x90\x19\x0d\xb3\xfd\xdf\xb3\x84\xe2\xf2\xb4\xa7&S\xf5\xb8\x07\xa5\xe6S\xcb\xb9\xa1r\x17Sr\x01$`\x9a\xb9\"\x82\xde\x92Mw\xbe\xed\x85au\xb7w\x1a\x17\xe4\xfe]\xd3\x18\xaa\xd4A\xed\xae3\x0c6K2Z\x1c\xe3[6\xaf\x9d8]\xccb\xcf\\\x83\xa0\xbb\x8f)m\xe2\xac\x17\xe2\x16J \x07h\x9c\xf3)i\xcf,G\xb6yc\xce \x9be\x93k\x8fF|n\x1b\x8fz\xea\xcdD\xb4\xc7\xc8\xe2\xb3\xbf\n\x9c\x8d!{\x0f\xd2\x80\x99\x8d\x14S~\xec\x8c\xc9I\xa5\x8a\x8d\xe6\xe4\xc7z\xfa+_^b\xf5\x10\xd1\xd8\x96\x1c5\x88\xbd\xeao&x\xbb!\x8d\xf8\x06\x8dL\xfb3\x0f\xb5\xc4k\xfb\xbb\xb7\xcf\"\xe8m\xf7\xc2\x91\xdc\x9f\xa6%\xb5R)\xe6\xda\xd4\x86\x94]\xb5\x95\xb48\xd6\x94J3N\xb8f\x15\xe1\xa2\x9aSN\x97\xcb\xc8F\x1e#\xf5\x91\xd7a\xae\x94b\x96\xbcd^\x04\xd8X\xa0\x063\x8ektL\x9a\xb31\xa5Q\x9e\xcc\x03m\x91~\xc3\xecx\xbd\x13\xb4\xd8\xf4z\xae\xe1Z\xb2\xaay\x0d\x93\xc3\xec\xb4\x82\xd9\xc7\xb6{Yd\xc8\xe3\xe6\xd54ig\x9b\xe8N\xc2z\xfb_\x97;%s\xdd\xb9l\x915\xf7\xdc_9Bi\xffY\x97\xf6\xa5ui=ZK\xbb\xd8ZZ\xbd\xfc\xa7\xf2?\xd5\x83\xb2\x90\x16\x0d\xee\xdd\x0d\xfbO\x96\xd3)\x91\xde\xe2\xd7\xca\x06hN\x88\xd9\x9cfI\xa9\x8c\x92\x99\xc8\x15\x0f\xff\x7f\xf2\xde\xbc\xbbm\x1cK\x14\xff\xbf?\xc55\xa7_\x8a,\xd3\xb4$\xaf\x91\xedx\xb28\xdd\x99\xc9\xf6b\xa7\xea\xd7\xa3\xf2xh\n\x92\xd8\xa1H\x15\x17;\xae\xb2\xe7\xb3\xff\x0e.\x00\x12\x04\x01\x92rR\xd3\xfd\xde\xe3\xc9\x89E\x12\xc4r\x01\\\xdc\xfd\x9e@\x15\xcb\xf2\x13\xf1\x83\x9c\xc7\xa2\xfc\x17$\x0b(\x81p\x047a\x16\xe6\xb0\xc8\xf3\xd5x{{\xe6\x07\xe4:I\xbex\xf30_\x14\xd7^\x98l\xa7\xf4\xbb\xedi\x12d\xdb\xf8\xf1\x16#\x9fRo\x91/\xa3\xd3P\xc4nd\x94\x86\xcb\xf3\xb9A\n\xc7\x90\x1fA\xba\xb9\xe9@\x0c\x9b'`=\xf1\xd3y6\xb94Q$\x157\x97\xa2\xcb\xaeB\x1f\xb2:\xeaq5ED\xcd$\xed\x1f\x94\xb3\n\xc8\x99uG\xe2l\xa2\x99\xa4\x16\x1dS\xe5\x15\x98C[\xd2\x1a\xd8\x12\xc58j\xc4\xca\xca\n\xef\xbb\xc4\xa8'\x14\xd8\xe7\xa4\x1f\xac\x932\x1a\xf1#\x9a\xacB\x19\xcbcf\x1d\xa8nz\xf5#\xcb\xfd\xe0\xcb#\xba\x80\x11\x98\xd9\xb8\xe9/:r\xfa\xb7W\x9b!\xb7\xd0}D\xb3\xc2\xb8\x17[\xd6\x18\xfd\xf6j?\xc5H\xcfk\xb5^\xd4\xb3\xbd\x88\xa8=\xad\xca\xa8\xf2\x84\xc84'\x04\x8b\xac\xc3\x8c\x102x\x06{p\n\x19l\xc1\x1e\x8c1\xf3R\x00'\xb0w\x04\x01\x1cCv\x04\x01E\xe3\xd1$\xa0\x05.\xe5\xda&AKb\xf0\x1b\xee\xa5n\xb6\xa3\x86R\xdb3\x93\xe9\xac\xd4c\xc1\xb0\x8d\xe2:q\xd1\x16\xd0\xd4\xc4\x9eux\x8a\x03\xb75 \xdb\xe5\xdf\x1c\xdcR,h\x8a\xc3\xa3p\x8afOSzb\xc2\x7f\xd1\x9f\x05\xfd\xf9_\x90\xcc\x90Zd\xcfV\xecYV\xacV\x11=\x7f\xf2\x84=O\xf0\xb9\x0b\xe4\xeb\n\x03\x9c\x80\x1fC\xe9\xd8\xe1\xfd=\xe3\xa1\xbf=\x8d\xe8A\\z)\x19\xc8\xb3\xbch\xe5X\xc4EK\xde \xe7\xb2\xe8H\xe9\xde\xa9\x8b\x16\x97\xb0\x8d\x99\x95\xd9\x03\xdb\xacN\xe4\x0b\x1d\xf3y\x1eJ\x91~h\xb2taQ\xaeo\n9\x8f\xc2pQfP\x88\xda<\xf1\xc5E;?/\xe5W\xf3\xd6\xf2f\xd8\x1a\x82\xc5\xf5\xda\xe4\xd9\xc2_\x911\xac\x9aoD\xa07\xed\xcb\xa5\xbfzY\xbe\xef\x8d\x1ef\x88\x9c\x1ew\x06F\x18\xe5>\xb3\xf5\xe7\xb6\xb6\x87X\xbc\xd9Z\xdb\xf9\x8a\x9f\xf4<+\xb5'#V\xd0<\xeb\xdaN6\xb9\xcd\xae\xb3\xcap2\xb1V\x0dg\x8d\xae\x9f\xbf\xf2~\xfe\xca\xfb\xf9+\xf6\xf3WM\xd9\x94\xc7\xfb\xcfl\x8b\xed\x7f\xcb\xed?\xe1D\x87.\x9b\xb3\xadi6,S,d\xf6\x9a\xc7\x99\xec&&z\n~\xb3\xaf\x82+\x11|t}\xbb\xf2\x11h\x9c\xc7\x84\xfeu\\\x1f\x1e\xb3R\xa5\xef\x85\xfc}\xac\x8e_\xf4\x97\x16\xaa0+r\x1ae\xcen\xbb\x14>\x03\x06F\xac\x05\xdf}\xd0\x8c\xac\xd00]\xe2]\xce\x8f\xe1\xb4\x0c\x9e\xa7\x9b\xb0\xb5N\xe0}~\x02\xefK'\xf0\xbe\xee\x04\xde\xef>\x81\x05\xd5\x00'\x80\xa6+)\x0b\x9e\xc7\x8c\x1c]\xe1\xbd\xcb\xe2\xb3\x9e\x02QQpm`2\xe2\xe5\xc9\xe8\xa5\xe3\xb14u\xa2\xc0\xf6\x1b\xe7\xe3\xad\xcfl\x9f\xb2\x15 \x18S\x16\xc6\xac@\x88\x05<\x94\x97\xb0\x86\xebk\xad\xb1\xa2\x98&A\n\x0f\xbc1t\xb4++\xf6\xc2\xac\xec\x96\xfa\xcd\xa0\x16\\U7\xed\x99\x96\xfco\xd2ar\xf4D\xed\xec\x8b\x89\xa7P6\xa9X\xec\xac\xd5\xe44B\xda\xa6#\x87\x8f\x81X \xdb\x89\x95\xa8/\xb1\xf2_\xa5\xac\xe0\xbft\x14\x8aQ\xec\xd8\x8c;\xe2\xb4\xc2=2\xc9\x1b\x9b\xa0\xaf\xe0\xaeI\n\x02\xf2\xc6\x8b\xb4\x1b/(7^\xc4I\xdfH\"}g\x8c\xf4\x9d\xc11DG0\xa3\x1b/\x98\xcc\x9a\xa4\xef\xcc\x10\xd0i\x85\xaa\xa6\xc44\xe7\xb1\xbdj\x9ds\xbaf\x0b3\xfd\x84F\xd0\xf6\xeaQKB\xa2_3\xcd\x92X\x18\x96D\xd8E\xbf\xa2K\x00#\xd5\xfa,\x10fW\xc1'S\xef\xe7\xa3\x19\x00-#\x1ce\x0d]\xc4y_\xa5\xc9\xea\xa2\x1cS\xd6\xe8{\xb9\xe2\xb4\x99V\xca\x95s\x83\x91\xab\xca\xc8\xf5.\x92\xb8\x03\x97\xd3\xac<\xa1-,\xe1\x18\xe6G\xb0\xa4\x8b\xc4<\xa5\x18ZJE\xb27.,\xcbEL{9\xa1\xfd]\xd2_\x97V\x89t\x03\x13\xb5K\x81x'\x9f\x82\x08\xae\x12\x80w\x1d\xf3\xd0\xb1\x19\x85xC\x17.\xbb\xb9\x1f[\xb7`\xa2\xdd\x82a\xb9\x05\x13\xc7\xe5 \x10\xc1\x87cH\x8e\xc0\xa7\xd0\x0c'~}\xbb\xf9\xe6s\x0eQ\x07vU\x01r\x88:]\x16\x7f \xf3\x8d\xb8r\xb7\xab!\xa2[\xae~\xfe\xcaq\x84\xdaq\xf8\xe58B\x8eJB \x95\x14\x0c\x95\x14p\x0c\xe1\x11\x14t\\\xfe\xa4h\xa2\x92\xc2\xa4E\xe2(\x8cLrC \xe3^\xca\xda\xf6\xd2\x17r\x97]H\xfb\xc9NV\\\x08\x9a\x91 \x89\xa7e\xd7\x9c\xe6V\x8bM[\xad\xc9\xe6\xb6o5\x90\xa1\x8b\xe1~\xe5H=\xe5\xbe\x9b\xb1}G\xb1jP\xee;\x8a\x9cW\x1c9\x9b9T\x81N3u\xef\x05.\xcc\xca\x99G\xa4\xb8\xf5\x8c\x02\xc5\xa6\xe3\x08&\xb3K\xfa\xcc\xa9v\xa1\xdf\xc6s2\x8bi\xe3Nl\x92\xe5\xa0\xc5\x8a\x0fNs\xf5\xea\x0f\x98l\x9d\x9d<3\xd3\xe7\x92\x05\x8bb\xb7U1\x060\xae\xbdk\x9eK\xb1\xa9\"\xb4\xd1\xd2r\x15\xb5:G\x97Z\"\xee\xff\xa5\xd3\xfe\xb1\xc7y\xd1~\x9cO\xff\x87\x8e\xf3\x9b2\xcec%\xffi=X\xbb4\xebK\xc4x7-\x18o\xd9\xb5\xeb\xe9)\xbdTw\xfd\xc2\x85\x9b\xda\x89\x8b\x1c\xe2M\xf7Y\x0b=%J\x9d\xc6\n\xed[u\xd5\xdc\xaa\x95|G\xfeT\xfc\x925\x85\xcc~\xecQ\x8a\xa3\xed\x1f\xcb\x9f\x8c\xc3\xde\xf2\xb3,\x9cWl\x92\x1d8p\x1e\xc6\xd3\x94\xc0y\x92.\x8a\n\x01\xfdk\x14\x06$\xce\x08\xbc{sQ>\xfcq\xbb\xfc)tR<\x8d\xd9\x9c\xe4\x92)\xd7\xf9\xdd\xf2:\x89\xb2\xa6\xae\x8a\x97\xae%\xb9\x94\xbek\xea\xae\x1a\x1fp\xcb\xca\xbb7\xd9Y\\,\x19\xda9\xd2\xc2\xcdH\xc4\xe8=\xa9pS\xf3\xe6\x18\x94Z\xc3\x89\xdcp\xbb<\xba\x83\x85u\x93\x7f\x1d\x98|\x11\xc9\x04\xb1\x8e5%\x96\x0b\xd6\x1e\xb34\xd4\xc2\xee\xbd\xbf$\x99M\x9c\xc9\xe0\xb2\xb5\x0355\xf1\xef\x0fL)<8\x82\x18\x8eaH\xffR\x84\x97O\xac+\xba\x15X\x0f1\x0f\xd3\xcb\x85\x9f\xbeL\xa6\xc4\x8e\xd1t.\xd6\xf7\xd7\x1a\x0cG;\xbb{\xfb\x07\x87O\x99}KK_s\xc5\xa6\xadK\xc4\x95\xabq\x84\x00$\x0b5\xab=\x8c\x8bXw-I\x91\xe8\xc9p3\xb4\xb6\xb2\xd2\xb6\xc2\x94\xd7\xc4\xbb\x9aE\xfe<\x83'PPZ\xe5\xa5\x1f,\x08K\xa5@[\xd1\xcbxo\xcaLG\x154\xe8\x17)\xd1$\x80\x06\x11\xa7\x82%m\xc2\x82M\x9c@\xc6\xb2\xb8\x02\xed\xe7\xb55!zV\xed\xea\xc3Vm\xfb\x0d\x8fx\x1fO\xc2\x8e8\xea\x19\x02\xddw\xbc\xabi\xb2|\xf3\xaa\x9d\xa2f\x16\xb2Z\xaeN\xbepTGU\xd4\xd1\xe4\x08\xa1\x91`P\xfa\xf3\xf0:\n\xe3\xb9Yy..\xda`d'\x94\x8b\xecjP\\3\xdbw\xa1\xcd\xa3K\xbe\x02\x9e\x91FC\x08\xa8\x97Y\xe7L\xaf\xd4\xb6vF\x16\xed\xa7\xb1\x98A5\xdd\\\x12bi\xde\x9f\xe8\xd7\xe6\x9f\xf4\xdf\xeb\xb6\xc0\xb4\xb9\xb5\x19\xd1\x9aU4(\xbd92\xec~&qa\x96\xd7\xb0\x81%M\xc4\x03w\x7f#\x98\xda\xdb[\xf9)\x89q\xc3:\xb2vA\xb3\x01p?U\xc5\x0d\x83\x83jI\x91\xd2U\x11\x87q\x84U\xa4\xde*Y\xd9\x8e\x83\xd8\x8a\xf6Y\x98U>y\x02+z\x96\xaa(E\x90\xac\x7fj\xb6%\xb8\xe3\xfa8\xe7$\x7f\x19%\x19\xc9rq\xc6\xbcN\x93%\xed\xf2\x18\xa6\xaeZ\xb4Y\xa6\x9d\xfc\x12\xf4\xfeT\x1b\x97^\x82 \xca\x0b\x99I\xba\x84\x13y\x18\xc2\x9c\xfb\x87\xd5\x81\xd8\xe8\x1c\xfd\x86vLt\xb2\xabsa=\xfb:\x91Z\xc6\x98\xcc\xd6\xce\x0e\xba\xf2T\xcf%7\xba\xf2Y\x07\xa7\xc3V\x98T\xdc\x11V\xf7\xa4\xaa\xfb#\xae\x13\xd4\x8f\xda\xd6\xce.\xb6\n'\xf5\xb7\x86v\x8e\xca@\xfcl\xc5\xe4b\xc5\xe01!\xf7\xdd\x08\x7f\xa9P\x1b\x84W) \xe8\x96\xadvl\xc3nD\x14\xe1KC!ub\xf9]\xafe\xd3\nf&L\xe7\xd1\xb2\xe9\xc9Y\x1b.\xdd/E\x14\x19\x8d\xa5\xf5<\xf8\x02\x9f\xaa\x04\xa4\xdc\xc5\xea\xb0\xac\xbeR\xce{\xe6\x1d9\x06k\xe4\xedy{\x96\xaeMM\xc0\xe6\xab+\x86\x01\xe8\xdf\x13q^~+);\xd0\x19\xe0N\xac/a<\xa5|}J\xb2$\xba!,\xf7Z\x9ca\xae)z#D\xc8\x1ff\xf4n\x95\x92i\x18\xf89a\x9f\xacR\x92\x91\x18\xcbq\xf3\xffs\x9e\xec\x8de}{\x1e\x85~F2\xeb\xb2I.O\xac,\xf0#?\xc5\xb2\xe4\xd7\x82\xc4\x01~\xb7\xf4W\xab0\x9e[\x97\x1d\x92\x11#y\xe5\x82__ \xe1\x8c\xe5\xb9\xc8\x85'\xac\xcc\xe1\xe6}\xc3\xb4\xd3Z\xb6x\xd8 \x0f\x9d\xc1?\xcc\xd0w\xb7b\x1bS\xfb\x87\xcf\xf1\x978\xb9\x8d\x81\xa9.\xc0\xfa\x81\x13\xa8?X\x10f\xb0$9%\x80\x90KD\x03oHf\xac\x0cae\xfe\xf6\xfc\xdd[\\\x04\xde\x0f\xcaju\\\xc8\x17a\xe6\xe5\xfe\x9c\xae8~G'\x0f7:\xfe\xe0\xf1\xed\xf9;>\xa1\xf8Z\xfc\xbe\xbf7\x8b\x96@b\xd3\x15\xb3\x07^c\xb9.\x98[Ky'\xd7\xda\xea*\xa1\xad\xb5Z`,\xbctu[\x1fO\xb9\xf4\x18f+\xef\xd4Q\xf35\xc9\xc7-\xee\xea\xa5\xe4\xc5\x8a\x05k\x0f\xeae\xe5\x85\x8c\xec\x1cs\x1e\x95\x9f\x96\x1f\xf8B\x9e%hB\x8c1 \xaf\xb7\xb8\xaf\x08'\x9e\x90\xcb\x9eK\x93^\xfe\xa4d\xc6LR\x9f\xc6\x82\xf2\x1d\x17\xf8\x92\x0e\xab%-\xd6\x95ii\xe3Rc\x0b\xbb\\\x82b\x81W\x165\xf4@\xea\\\xd9\xbdx\xf4\n\x85\x8dvG\x8em\xdd~\xc9\xd4\xf8j\x8c+\x1f\xee\x1b\xd8\xf2\x1d\xc7cR\xdd&s\xaeM\xdc+\x99\xe3\xda\xfd\xfc^\xf8\x02G\x91\xdb\xfd=\xd8\\\xf6\xe6\xd3\xd9\x0f\xc5C\x1f\xf5\xb0cH\x1c\xdbb\xfda\xc6`\x92\xb3\xd4\x83\xe3ey\x82\xa9\x92\xd3>\xb0\xd1#\xfd\\\x0e\x15_\x0f\xdc%\x80\x19\xda\xb1\xbd\xb7\x7f\xa8\x06\xacO\xf8\xab\xa7CG+7\x08\x8dC\xef\x1f\xa3\xde\x10\x9f\xfe\xe1O\xcd_\xe5\xbel\x13\x89\x0bmD\xdb\xc1\x00\x1c\x81\xab\xf6}\x15\x11\xa7\x17\x81)\xce\xf1\xa5\xf0\xae\xfa\xb0\xb3Y\x90\x08\x05S\xb0Gz\xa5,_\x96\xf1}\x88!\xe1\xcc\xef\xfd\x8e`*\xed1\xd8J:\xb5`bH%\xeb\x19\xc1\xbck\x98\xe3\xa6@\xd5u-\xef\x1a\xe3V\x18%[\xb0\xbcj\x94EbHW\x8e\xa4\x9e;G|\x9c\x06\xe6\xb5_`\xb7\x90\xa7\x16\xf3\xb5\x88\x0e\xa0_\xbe\xaf\xee\xa0t\x1b\xe8\x18\x9bIi\xc6\xb2\xf64c\xd0\xb3i\xe0\xcb+\x14(\xd67W\xa7\x1f\x9f\xf6\xa9\xe0\xa1\x1a/\x1f\xd8\xea\xd4\xd0\xcd:\x91\xb7\xd0\xe6\xfayN\x96\xab\x1c\xf2\x04\xa6\x84\x1d\xf5E\xca\xbc\xd9\x84\xbdni`\xa0*\x03\xaa\xcdl\xf7\xa2^%:u\xbf\x1d\xc9\x0f\xf7\xb5H~4\xfc\xbf\x16\xc9K\x07\xa0^\x1c=\xdc\xd3\x82d\xf7\xa9F\x1a\x1d\xdb\x0d!u\xc1\x1e\xab\xa9M\xfaz]\xa3\xf2\xc1\x05f\xbd\xb2\x02\x0c\xe0\x0d\x99\xf7Z\x8f\xaa\xa6e\x81\xbf\xe8\x0b,\xca\x02\xe7\xfa\x027e\x81\x8f\xfa\x02\xcb\xb2\xc0\x0b}\x81yY\xe0g}\x81;8\x81)\x9cB\"\x92.\xd1\x99\xe5\xd9\x97~7e\x11\xbb\xc6h&\xa5\xb6W_\xe8\x8a\xd7\x9c\xc2\x18\x16\xf4/\xcb\xecd\xa7\xbc\x95\xdf\x1f\x9c\xaa\n\x03\x9b\x8f\x9a\x9ei)\"\xca\x1d:1\x98\x9a|\x03\xf3\xe0^)\x11\x8a\xae&\x11\xd3\xb1\x14\xf6\x1d\xaa\x7f\xe8h(\xb1\x1d\xc0)\xbe\x841\xaa\x81\\\xb8c:!\xac[k\xbf\x85\xa5O\xb14\x8caI\xcb\xd1JB{\x86&yc\x98c\x07\xb0\x9a\x13\x98\xc1i\x07c\x00\x12\x83_\xd1\xb8z\x0b?\xf9B\x96n\x11f\xb5x\x1e]\xe2\xd3\x0c\xf3#\x83\xad\xea\xd6\xba\xbe\xa3W\xe0g\x04\x06\xe3\xcerP\xb7\x8f\xd1L\xa1za\xcd\xc3\xf5k\xb6u\xf8\\\xbd\xb0\xf2\xd1c*\xd7\xc60\x92\xaf\x0ea\xb1Z\x996W\x99\xb8\xccu\x95b)f5C\xe7\xdc\xad\x94\xa3\xfa\x1a5\xdau\x90\xc4\xa1\xd5\xfebr\xd9r\xc3\xea\x02\x88\xb3d\xd47\xca\x86\xa8N\x91\x19\xae\xfe\xd7\xfc\x0d\xaa5]\xc0of.\xfb\xcc\xb6\xef\xbc\x1b\x96\x14\x1b7^u\x87\xb8\xc4a[n\xe6r\x8c\xf4\x89~sM\xff\xdb\xb8\xa6\xaf\x9e<\x01\xdf\xbev\x01\xab5\xa7(\xc9\xbc\xd7\xcci;\xf3\xfe\x02'0\xa2?\xce\xe1\x04v\xe9\x8f\x8fp\x02\x87\xf4\xc7\x0bZf\x9f\xfe\xfa\x19N`\x07K}\x86\x13\xd8\xc7b\x9f\xe8\xdb\xd1\xa1[\x93\xb70Q\xfc\xbaR09\xeeT\x85=n\xc3x\x9a\xdc\xd2!\xb1_\xde;\x0c2q\x82ZL8\x15\xef\xc7\x86\xcf3\x12a\x10e\xfaW\xfd\x14\xdf\x8dAL\x84m\x89\xd9^\x84\x99\xe5\xc8\xa6_Zq\xdb\x9c\x8b\xdb\xe6\xdf(n\xeb\xe2\xbc\\~b\x8f\xf6\xd5\xd3\x16\x03\x81\xd1S\x9eE\xcaN\xeb\x9cT\xda\xceI\xa5\xa6e\xa1e\xa0\xda=\x1aPBEx`\xb0\xb0\x96\xd9(w\xb5\xc7\x7fT\x901h\xd4\x83\xa44r\x1ak9\x9b \x89g\xe1\xbch)q\x9b\x86\xb9x[\x1f\"\x86\xa0g\x07r\xec\xd6T\xb1\xd0=wfym \xd1\xd8\xde\xdb\xd9Q\xa6\xa8\x9a\x91Z\x7f\xf4M\xeavH\x8d\xfb\xd4\x8b7\xe3>\xfd\xff\xc6\xb5\xa7\x8e\xeb\x8f_z\xe52j\x17\x15\xd6\x94%\xc3#\xc8\xb5\x860\xb9\xde\x10\xe6F\xcd\xd4\xa0\xb5NoDr\xeb\xb0\xea+\x0dUx\x8072I/\xb9\xf7\x94\x89\xe3\x01\xbd\x89\x00=\xa8\xde\xef\xef\x0d\x06\x07\xec\xfd\xfe\xde\xde\xce\x1e]I\xfc\xd7\x13`\xf2&z\xb7\xaby.*\x1c\x94\x95\x1d\xb2\xe7\xc3a\x95]J\x14\x1a\xee\x96\xa5v\x86\xb5\xcf\x87\xa3\x83\xf2\xd5p\xef\xa9\x03<\xbf\xd63\x18\x0e\x87\xbb\xc3\xe1\xd0a\x97\x04\xd3&T4\xbe\xba!\xcf\x02\x87\x9d6\xa11\x8a\xfe\x18\xc06\xc1\xb6 l\x9d`\xf9}\x07\x9e=\x83\xa1\xca\xbe\x8b\x8b\"\xbf\xbd\xfd\x9d\xd1\x80~5\x1c\x8cv\x10&FM\xaf\xce\xac\xb6I\xf5k\xd1\x9a\xeeS\xad)\xf8\x0dw6\xdd~bO\xfc\xad\xdf\xfe\xe5\x92\xfe?\xd8zz\xf9\xfb\xd0\xdd\x19>8G\xdbs\xc5\xe0\x8dR\xc5\xdb\xff\xf9/\xb6}:\xfe:\xf1\xb7f\xbc\xf0\xe1\xc3\xfd\xa4\xfc\xe98\xdb\xcaW,\xe7\xec\xeep_+\xb4n7\xc5R\xc4\xa5|\x88\x89\x1d\xf0\x14\xcc\x01\xe3\xd0w\xf6PO\x92{\x01\x1f\xf1\xf3\xdc\x1e\xe0\xb2\x88Dx.F\xabc|\xab\xaf\xcc\x946\x9f\x0c/\xeb\xb9\xaf\xe0\x140\x80\xea\x9b8\xb7\xf3\xd2D\xcf\x85\xe1>\xa5h\x1a\xaf\x86\xf4\xd5\x00\xe3\xb4\x16v\x8cD\x8f\x01\xcc+\n\xb8\xc9\x93\xe3g\xd6\xe5v\x1d8S\xe9\xcd\xbc\xfe\xaai\x02B/\xeb\x895\x06\xeb\x89\xbf\\\x1diB#[\xc7\xf86\xca\xb5/\x9f\xe1\xcb\xb9\xf6\xe5\x0f\xd6\x0f\xf4\xe5\xafE\x92\x1f5b\xd15\xa7\xed\xc6\x88S\x16\xb2\x11\xb6\xac-\xe0V\xba=\x84x\x93K\x06a\x86\x1eK\x9a\xc1\x85\xe1:\xfa\xe0\xd6dVR2Lq\x0c\xe6z#c\xb4`\x149H\xf8W\x06\xe6\xbeKum\x0coH/2\x89/y\xe4\x1bm\x19]\x0c\x91\xfa<95Z\xdb\xc5l\xc0=\xd2\xe9q\xa0[\x1368\x8e@.y\x04\xf3V \x11\xff\xb4q<\nSW~\xbe5\xcd\xa9\xeb\xdd\\\xf8xN\xd3\x9fE\xcc\"\x1d\xbek\xcfgWJ\x1e\x84b\xd4\xfa\xe5\x17\xcb\x81c\x18p\xcd\x16)\xe3,\x86.X\x7f\x1eZ\x8e\n\x99\x9f\xfc(\x9c\x9e\xc5y\x98\xdf\xbddf(>}\x81x3\x99\x92\x8fI\x88j\xea\xc2e\x9ajZ\x17\x96\x0eI/A\xb4\xd4\xb5'\x86\x9ee\xae\x9c\x18\x08\xbb\xc5\x06\xff\xd7\x1c\x03\x84w\xb6\xb1\x12I\xd80\"\x83\xa8v\xea\xc2\x8d\x0e\x19\xb51Ak\xc9\xd8\xa5\xa0\xd6U\xe0\xcbS)\xc1;\x8c\xf5\xf2\x98\xae\x1e\x19E\xeb\x0dn\x8f1K\xfb\xeai\xcbD\xeb{\x87Z\xd1\xfa\x81Z \x13\xad\x0fGj-\x8f\x93\xad\xbb\x92\xf4\xdc ^_t\x89\xd7o\xba\xc4\xeb\xcb.\xf1\xfa\xbcK\xbc~\x07'L\xb6\x8d\x923.\xe3f\n\x13!A7\x8a\xbc\xcd\xa2\xf5\xc5\xba\xf2\xf8+8\x81kI\xd8G\xbf\xb9\xae \xff~\xd7\xa5Q\xaaD\xechY)\x89\xd8\xd1+\xd3f\x82v\x14\x91\xdfA]\xd0~\x87\x82\xf6S\xb8\x831\xc4\x0eJ\xd4\xe9\xb1\x8c\xc2\xa5\x00\x8fp!&G\xc9\xb9Q\xa0X\x98\x04\x8aw\x8c\xc4\xb8c\xe2@!2\xfc\xec\xb8\x80\xb2\xc2\x0d\x9ee,\xe4\x02\xc3\x15\x06\x08\x10\x02y\xf1\xd6\xbe\xe2\"G\xa301\xf5\x02\xa6\x9eJ\xdc\xffi\xc1\xa2Y\xf5\xa5*\xb3\xb8\xeak\xa0\xaa\xc4\xf8\x06Uw\"\xdd\xa0\xdb\x96J\x00\x15\x9a}hP=\xdc\xf0\xa8\x01\xdc\xcc&\xc4\x1c\"\xda\x85W``KtM0R\xdf<\xf22*\x95\xed\x82\x85\x11\x15~\xec?\x9c\xa0\xe1\x0coH\n\xba\xec\xbb%\xf9\xe4\xa0U\xcd\x0f\x0e\x8fF\xf6\xactu?\xde.}\"\x9e\x19\x03\xfe\xaegP\xa7\xf1X\x8b\x99\xea3\xb7\x0b\xc7\x85\xd4N\xbd\x8f\xb0 \xa9\xf7\x1a~\x84\xa4=\x02\x83\xe0o,\x0b&\xe4\xd2\xa6c0\x02)gF\x03\n\x05}\x7f\x0f9w\x88\xa3_K\xd9\xe0\xeb\xc3u0 #\xc6O\xae\xb15\xddG\x15\x8e\xba\xeaU\xdc\xc3\xfa$_\x84\x95\xd1\xfa\x83,on\x9a\x19\xd0\xfab:\x0c\xa3\xb4\x1aq\xd5\xc0\x05r\xe3G\x8em\xb1\xc7U\xf5F# \xcd\xb1Y\xc9\xdc\x11\x93\xb1[\x1d\xaf\xf6\x9d\xa4\x905Q\xe3S\xdd\xe6\xfc\xfe\xa2\xc6^\x9e\xb37\"\x19E\xa3\x01\x91xb\xacMT\xb1\x08\xb3SV\x160\xf1\xf0j\xb9\xd0\x84\xe7C\x91\xd89\xf6\xb2\x15 \xceIDh/2\xcd#\xbc\xfb\xb7,i\x15\xf7\x89\xa3\xcc\xf4\xad. \x8e\xb8x\xa7}\xbb\xa0\x0cmi \\\xd7\x1e\xd25\xa8XH\xff\xfe\x80\xb1lb\x9d\xa5\x80|}H\xc3\xb1\xc6\xdeF\\\x0f\x18\xd5\xd3\xd4l\xeeB\xd8\xf7x\x85j0\xe2\xd4\xb8\xf5\xd3\xd8\xb6p\x95\xde\xa6\xfejE\xd21\x04I\x11M\xe3\x1fr\x98\x13\x16\x17\xd4r\xdc\xa6\x9fa\xb3 \xad\x17\x99@dt{\x0c\xfe\xa1\x86\xf4\xcd\x86[\"\xe3\xf2\xcdGiZ\x7f\x15\xaa\x9bO0\xae\xcd\x944\xcc\xf9\xae\xbe\xc9v\xbc\x81g!\x8d\x9fW\x0c\xdan\x17\x13f\xe6\xfe\x0f\x9d.\xeeU\x1d\x15:\xc1\xa7h\xe3\xcf\x08\x91J\xde\x8eqCE\x02l?\xe6\"\xf7\x0d\xc3\x88\x1f-R\x1c\x1d\xa8RBLy\xd1\xe4\xd1d*\xa0\xa4\x06\x18\xda\x96\"\xb2\x887M\x8e*\xa5\xfcb\xd2\xcaQ\xea\xa1\xa7\x0f\xcf$\x8f\xa6\x1f\xaco\xfa\xc4V\x16\xae\xbdL\x03[\x03\x03\xed\xba\"\x0d[s\xa9tx?\xd6\xfc\xb2\xdb\xcc\x7f\xae\x8b\xf9E\x92D2\xb3\xd9\xab}I\x90\xac\xda\xa7\x0b\xab\x1bu1\x84\xdcv[uZ\xf2+k\x80\xfa\x99-\x9f\xb23\xa6\xf1\xdc\x95\xa2\xe6\xd4\x0b\xab\xd1s4\x87\x13\xba\xb4\xa3\xeb1\xda\xe8P\xb4\x8a\xe4Qj\xc7\x8ekN\xdb_\x1e\x0d\xa2\xdaZ\x89\x1a\xe1\xfe\xd0h\xcf\x9a\x93\xdcb\x91j\xe8\x9cg\xe2\xae\xb9I\xad\xe7A@\xb2\x8c\x9e\x7f\x18\xab\xb9X\xd19#S\xd36\xb5\x90d\xe1u3\x86\x8c\x99\x87\x95\x0e)kn\xe4~Vb\x0dw\x84\xb5\xac\xc4\x1e\xd7\xa4\xbab\xbe\xa5\xc9N\xb7a\x83\xcb\x81\xce\x88,\xb6w\xf6v\xb5\x8a\x91}Uz[\xf0\xe2\xaa\xe7\x02J\x9f\xecCu\xafD\xac\xd1]u\xe4L\xf1\xaf\x96\x9ei\\\xadV\x18\xb0\xb3\x0eS\xb4L\x9b\x93\xfcc\x92Dd\xaa\xe6\x87Xh\xe4\x1a7%2)\x1f\x97'\xeb\xb2\xc1\x1d\x9cy\x98\xde\xea\x13 \x928\x08#r\x91\xfaq\xe6\xb3\xd2O\x9e\xc0\x0d0'\xff\xe1h\xc72YOP\xeem\xa2l\xdb8\xccY6\xcfq;\xe3\xc5<]\xc34\xbf+i\xdb\x8ce\x18\xc3\xbc\x18\xecX\xae}\xa5\x88\xa54\x82\xabu\x1a\xd98\xa9\x9a\x81S\xb0g(\xb5\x0d\x08%\x19\xcd\x9f9.\xdc\xdaH\xfe\x95\xdf\x9e\x18\xc3\xb0?\xa8t\xe6z\xc0 \xfc(\xba\xf6\x83/\xff\xbb \x05\xf1R\x92\x91\\\x11{<\x16\"\xf5\x9a\xe3$\x0fgw\xcf\xa3H\xad\xbd\x1a\xc8\xa5nI\xdd5\xe3\xff1\x1f\xe7j\x98\xd2\x9a\xb2\x9d6\xb8\xf2\x95\xebj\xfa\xd7\xd8\x07\xa2\x19\xcd\xba=i[\xd5R%\x1b\x83v\xdb\xa8\xeb6\xe35\xe2]-\x93\"\xce1\x15\x06lA.\xdf\xb7V{\xd5F\xdej\xe1\xa2\x88G\xeb\xab\x96\xc5\xfe\x18\x8ev-\xc4\x9c\xe2\xb9C\x7ffI\x9a\xdb\xd7\x8e\x0b\xab\xcd\xcdz%Ud\xba*\xaca\xce\xa3\x1a6\xd7\x0b\x17tR\x04:\x9b\xc4\x06\x0fQ\x1f\xe7\xe8jE\xe2i\x18\xcf_\xf2\xd9\xcb\x9a\x0c\x1c\xba\x156\x0b\x96\xb3_xQ2\xbfHVo\xc9\x0d\x89>a\x88'c\xa0\xa3\x1b\x1e\xbd\xd6\x90\x9e(\xf4\xae\x82\"MI\x9cs\xc6\x0c\xf3\x89c\x9e\x03?\xc8E\x1b?3\x16\x0b\x8f\xe4\x88\x8d\xa2\x11g\xcba\n\x03\x8be\x03,VS?',\xb8WD\x97\xd4{\x7fI\xe8\xaa\x14\x0c\\\x1e.\x89\x9dt\x19\xab\x00\x87F\xe6\xadH:K\xd2\xe5g\xac\xf7\xcd\xec=\xa1\x84\x85\x9f\xde\xd9\xa1\x8bF\x0d\xcd\x85\xcct\xa7 *n\xa5F\xcf\xe2)\x8b\x0c\xae\xe7>{D\xbe#\nf \xf1\xaf\xf4\xaf\xedO\x82K\x97\xef\xc2\xe2:\n\x03\x11\xb8\xc6V}>\xfe\xd4\xfc\x95\xd8\xb2\xdf\x19D*R\x9c\x93\\\x1a\x1b\x9f\x90\xac\x03\x8d\xf1\xad8oC\x87\xc2-4I\xfb\xe0\xc4v\xb4\x14z)\x89\x88\x9f\x11\xbb\x89\xa0\x1c\x03\xd6b_\xb6!\xa4Z\x9d\xba\x99\xee@v]\xa1\x86\xf8\xd2\xea&\xb6\xa1\x02i$\x16$\xcf\xd1\x89>M\xc6N\x88\xc2-E\\\xd0\x93\xe2\xd5R\xa1k\xd6\xf3\xa7S\x8a\x9c\xc3x~\x91\xd8w\x8a8\xef\xb6M\xcc\xc9\xa3\x0b\x95h\xf1\xfe\x1e\x16\xc6(Y\xb3\x0e\xb7:\xa1\x88\xbb\x93\x8f\x1c=\x86!b\xf0\xf6\x95HKO\xd7\xc2]9\xad\xba\xd4v\xdaN\x19{\xc3\xa8<}\xf3\xe2\xe4\xd0\x04\xb5\x03-\xfd\x08\xb9|\xd4\xd7\xd6tWG\x8d\x82\xa4\xb3\x06/`\\\xed,2V}\x81^Sn\x8cL\x19\xee\xcb\x9a\xeb\xb4\xcc\x17\xd3\xb2`\x97t,7^\xbd\xaaf\x05m\xfb\x84\xe3\xb9\xcf\x1c\xb5\x97\xe75\xd1\xdbP\xf2\x16\xc3\xec\x05m3\x8c\xe7\xbcQFFb\xa0\x81\x9c\x0b\xe8PZ\xe0]\xb1C\x03\x8b\xbfGm\x08\x17Ji^\x9c`N\xbc!\xd2\x98\xdaQ\xb5\x8ed\x16\x15\xd9\xe2\x85\x02\xd5[\x85\x19\x8a)G\xceT\xca\xcd\xe5\x88/\xf5\xf3g\x16\xb1\x88\x8b\x94L\xc3\xbe\xe5\xb4\xe2>\xbd\xb6\xb0I^\xb0\xfe\x08@\x9f\xe7\xa9\x9f\x93\xf9\xddz}9\xa0}\xd1gOQ\x00\\\x92T\x87\xf8\xc95\xdd:\xbe\xf2Es\xda\xc5GO\xe9G7\xfa\x91\xb5M\x9a\x9f\xf9\xab\x1e\xa9T\x03[\xb3\xe6\\N\x97\xf0[\x8f\xd5\xf5\xd2\x8f\x7f\xc8\xc5\xb2\x06?\xc6&@\x1cP\x10\xc6\xe0c\xe8E\xf25\x87\xdb\x05II\xc1\x87\xe2c\x08\x85\x1c\xaeI\x18\xcf\xc5\xf6\xf4\xe8\xb8\xa6%5\x80\xfds\x19n2\xb2>z\x81\xd6\x19>]C\xce\xb0\x11\xdb{C\xc7l\xb4\xc3q\xc0\x01\x9d!\xbd*\xe9\xf7\x07\x17,\xbf\xa1B\x02FytP\x06r\x13]s\xeaxU\x9c\x8c\x87G\xa84\xc5\xd3.O9\xcc~@\xc1\xf2T\x17\x1f\x07_\x8d\x86\xea\xab\xd0\x14h\xa2\xd4b\xa0\xcd_\x861!\xe4\xf7\xa5\xf6\xa4\xd3[^\xc8tUSWz=@\xd7\x8e\x95\xf5\x0b\xdd\x1d%U|\xaf$\xe5Q\xcf\xe4\xd7,\xe2i\xa9\xa0\xa9\xcc*O\xab1\x8e\x0d]]\xcf\x83\xe8\xbb*D\xc4/\xd9;\xb1\x1b\x18\xd2\xac\x9d@hW\xfa\xae\xd6)\xe3\xfd\x97\xc3JR\xe8H\x86\x00c\xd4\x03U\xddk\x9d\xc3\x7f\xc4\xfc\xad\xd1\xf7\xc7oG\xb3\xd4\x93\xb3\x97J\xc4O}S&\xfc\xd6 \xd0\x9a^Bgx\xfe=\xc6( T\x0d\x86\xe6\xaa\x84\x94\x0bTu\xf2T;\xb6\x9f:.L\xaci\x98\xad\xe8\x01\xf2\x12=\xa9-\x17\xac\xab\xdcOylVz\x1b\xfbyx\xc3\xfc+1\x96c\xf6\x8a\xcd\xf7\xc7\x94\xd0gd\xca\x9eRT\xee\xcf\xd1\x08\xee\xa5\xa94B\x1f\xca\xdd%j\xd8p\xdf\x18K\xdb\x10\x1d\xad4\xfb\xd3ft\x03\\\xd4\xa7\xd8i\x96\x01\x8e{\xe3Y\x0c\x00\xec`\xf0y \x8f=D\xc5\xecX\xfa&\x9e\xf8\x9a\xdc!\x0d\xe8\x08Y\x1d\xe6B\xf5\xd4Y\x87S\xdd\xc31l\xb08\x8e1\xb7\xde\xfb\xa9i\xbc(i\x84\xbd&\"\x80\x13\xa0\xdcU\xd8\xb0\x9aR\xf6\x1bZY\x89\xc8\x9d\x1a\xc4\x81<\xb1\xbe\xfc\x9f\x9acN\xedL\x96\\\xd5\xa7l\xc5\xfa\xf6J\x9c\xea=$L\xcdAmh&\\H \xd4\xd5\xda,\xc9t\xd5\xc4\xabw\x05}\xa1\xea\x8fl\x87\xd9\xf8a\x88\xcc:7#M\x08\xafM~r\x02h\xadf\x9e\x95\xc6\x8c\xb4r\xa7Y\x9e\xac\xa4I\xe9\x00\xda\xfa\x80P\xeaGH(\xcfZ@\xc1\xb0\xea\x0bD\xbd\xbc\xc2\xda\xa3\x13\xa6\x80\xee\xbd\xb8:\xc1\xb1\"i\x86\x99\xc4\xbb\xd7N\x98}d\x85\x19\xdaj\xb4\xd3\xd6\x8c\xfc\xadv\xbf\xd4J\xf7\x96\x9a\xd6\xa6\xa7\x07\xae\x84z\x0c\x0d\x96\xd1\x0c\xf1\x0f\xd3\x84k\xa3\xd3\xeb\x94\x15\x95\xd0\x9aebB\x146\x89//\xb5\x12\xd1j_;.dU\xe7\x98kc\xe6\xf9\xc5|I\xe2\xfce\xe4g\xbd\x1dNd\xb8\xa8\xbe'5\x1f.\x84\x8d!b\xda\x0d\x8fn\x10\x93[\xf5\x18J\x99\xec\xbf\xfc\xd0\xa9\xdda\"\x16\xf9A\x9d\x98\x06\x8c\xa6.\x8f3E&\x18\xfbR>f<\x9e\x8b\x98\xa4\x19\x908H\xa6a<\xafgD\xc8\x17$\xc6\x8d\x87\xc9\xd2\xca\xc3\x0fD\xe0\x17\x1fx\x03\x06e\xb88c\xb9\xc1@/\xd57\xffF\x18\x19\x18\xcc\x04\xf4S\x13\xb5\x88\x85\xc0\x0cCC\x8c\x9b\x1f\x84}n}\xdc<\x9b\xa6\x0f\xac\xa2\x16gp\xbd\x03\x1d\xae\xdb\x17\x0c\xdb=y\x82LO\xb9\x1e\xe4w\xcdC\xbe\x85P\xc3\xd0>\xde\xf5]N\xde\xf2l\xdd1FWA\xcf\xf3\xea1\x1cWv\xcb\xeaV\xfd!\x99\xcd2\x92\xff@\x97@R\xe4\x90\xcc\xe0:)\xe2if\x9a]\xb5MZ9l\x82\x8d\xb6\xfd\x03\xc7\xd8\x0e\xdbs\xfd\xdb\xc9\xeb\x99\xd1\x99!juO!\xd5@\nuE\x80\xae\x08n\xe0\xb1\xee1\x05\xb3\xbe'\xad\x88)oCD\xb4\x00\xcf|\xd8\xbaU4J\xe2\xda\xec\x8f\xf5\xde,\xdd\x04\xa1\xb84\x9f#@\xcb\xe8\x0e\xf7\xf7\xcc\xed\xde*\xf2\xd9a\xdb\xd4od^\x98\x9dq\xbca\xc7\x8ei\x13 \xd4bIh\x83\x1d\n\xac+%\xee\xd1\xed$\x90\xce\xd3\x01\xdc\xc3\x82M\x9c\xde\xe2\x10\xf8\xe1\x8a\xd3\x81\xc7V\xea8\xdem\x1a\xe63/HX\xa7\xdcL\x8d\xe1\x98\x11\x91\x84rZ$\xb9)\x1bUJi\x08\xfag\xf3\x04\x86t`\x18\xbax\xb4\xb7\x07O \x9f\xa4\x1a=\xd7Z#\xd4$^\x85r\xdd<;\xa1\xbc\x95\x89jy^e\x96\xf1#\x0c\xbfB\xf8\xce\x82\xc8O\xe7\x842\xa8~\x0cK\xffk\xb8,\x96\x90\xa1;\xc7\xe0+\xe5\xb3}9\xcd\xf5p\xdfAWNJ6i)\x9e\x12a\xdf\xf7\x1c\xd4\xa2u%J'\x8b\x9c;JH\xcb\xf5\xdb\xb4\x0f\x92\xd6\xdasHe\xbc0\xfb)$,\xd0H\xf31\x9d\x88\xfb{ \x06\x14/\xf7\xb4\"0\x9b\xbd\xd5\xb8\xd6W\x8c\x9e\xa5\x13r\x80\xb4\x9c\xdb\xa1\xc0\xa9\xcd\xb2'\x9a\xedU[\xbe\x1b\xc3\xa3#\xa7\x14\x0d\x1bOB\x14\x88Z~\x16\x84\xa1\xa5\x17\x8b\xb2\x12\x91\x9f\x87\xf1\xb0\xb5\xc8u\x18\xfb\xe9\x9d\xa1\x08H\x12(\xfdq\xc2*A2\xaf\xad\x95\"\x9fm\xb5\x96`\x84vg/^\xdb\xc41\x02\x1c\xaa\xe6\x82l\xd4\xde\x9f \xdb\xea(\x91\xcf\x86\xfb\x11\xe9*\xb3\xd5R\x08\xaa~\x8f\xe0\xc7v\x08.\xc8\xd7\xeeZbx\xf6\xec\x19\x18\xac\xb6\xf9t\xfa\x19\xd9\xdf\xed\xae\xea\xb7.@\n\xa32cE\xa8\xedpzO\x0cp&\xcc\xc6\x1d\x95;\xf5\xe8f.\xcf\x8f\xd6\xf8T\x95\xbe\xeb\xd1\xd7M\x1b\xc7\"\xf6\x16\xd1F\xc6\xe7riz\xfc\xb9\xe2\x10L{5\xba\x94\x98*\x83\xc6\xa1B\x01\xa4\xa4\x189\xc0\xb64\xd3h\x10\xb7\xc4\x94;L\x99\xf0\x1cOn\xe49\xe1\x99,\x91;\xc575\x11\x1d=\xdd\xb7\xca'\x87 b\xa1I\xcf\x1cV\xe1f\xecB\x98\xbd\xf7\xdf\xdb\xb1S\x16K\xf8\xe1\\\xca\xb7\xb6`\xe8\x08\x91\x80(T\xbe\xdcDZ?\xa6\x07 \xe9p\x84@\xcb\x95V8\x00\x8f\xfe$7\xdd\\\x19@\xa2\x8c`m1\xa3\xd7\xcc\xcdm\xf4k\xafk\xf9A\x8bH\x8c\xd9\xdd#\xcf>K\x93%\xe5\x15S\x07\x15\xc35\xae\xac\xc6J\xe5\x15\xfb\xb45\x841\xcc\x95\x15eX!Z\xe1\x13\xaf8\x87'H\xeb\xb8\x069\x83\xe9\xd0\xad\xc4\x17\x92\xf6\x97\xc7\xd9\xc5\x08\xa4\xa7\xadE*\xf5\x04\xe7Z\xb5\x85#?\xcb\xdf\x18>\xc0\xb1O\xf2\xcb\xb6\xd1ky\x97\x1b?* {\xc1\xae0\x08Q\xce\x843Z\xfd\xe8q\x15\xfe\x06d\x12\xb2\xf0l\x86\xd8o\x85\xb4p\xf5%2\x89\n\xd6O\xb1\x14\\\x95\x89\x14\xd8\x89\xc6\xf8\xef\xb4\x8a\xc6\x99*h\x14\xe9!~\xb8q\xa1\x15>\xe0gY\xfd\xd1\x96\xf4\xcc(/@\xb2\xb6\xa2\xd8GL\x18X\xddw\xee+\x9fEO-`\x9bEQ\xe5\x7fc\xfc\xab\xd9o\x8dG\x8a`\xd6\xd4Q\xde\x8dai\x92FX\x00{\xe2\xa5\xc4\x9f~~\x13\xe7\xc3\xfd\x17gv\x0e?\xea\xdc\x18\xf5\xfb\xdc\xa8E\x16\xce\x8e\xa6A#M\x87j\x98#\x08\xe1\x18\x8a#\x0877\xf5L\x19\xf0\xc6px\xa1\x83\xfdG\xad4OQ\x1cp<\x1c\xc2\x16\x04\xadr\x1dQS\xf9!]9\xb4\x9b\xa1\xe3\xb2\xcfa\x93\x03(+\xe7-\xa0\x001V\xc9\x91\xec\x16K\"\xc1j\x0ca\xeb\x84\xf7\xc6\xe5P0 g3lb\xd8\x84\x0c\x9eAQ\x9e$\x05lA\xe60\x7f`\x84\xda3d\xe6\xc2\xad\xad\xb6!\x97\xc4\xf3\x8c\x07\x0b\\1\x1ep\x05\xc7\x90\x1d\xc1\xaa\x0d\xe8P\x03[{>\x1cCz\x04\x9b\x9b~\x1b\xfa\xa0\xc7\x84\x9c\xf7\xa2\xb8\xce\xf2\xd4\xa6|\x82\xef\x02O\x8d\xa1_X8H\xa4\xd6\x8a\x8a\xa0\xf0\xf5e\xc9\x84\xee4f\xba\xdb\x03\xe9\x89\xcaz-\x9a\xeb\x8eE\xc3+{a\xbf\xa6\x1bJ^\x16\x0e\xaa\xe4\x9a&@\xa6\x96\xae\xfa\xb6d6\x18(\xeb\x94smM.]Y\x14V\xb2\xf2L\"\x963\x87K&8\"r\x02\x94\xb8C\xa2\xafK\xa8\x98\xaf;\xe8\xdb~\x83\xae\xc1\xa6W\xc5g\xfd*~a\xff\xb6~\xa7\xbf\xf6\xad\xbb\x97V\xa3\x92W\x96\xde\xb6|\xd6\xa4\xadF\xa4\xa0\x15\x1b\xb6\x9d\xd3\xd3i\x84i!\x1c\xbe \x19+!\xcd\x9f\xcf\xf9M\xcaO\xc3!\x8f\xdaL\xd1\xc6\xde\xbe\x0b!\x9b\xf6\xc4)\x7f\x9a4yF\x94\xfc\xf0\xad\x0b\xfe\xbc\x8d\x9f\xad\xb3\x10t\xd8q\x8d\xc5\x84SH\x91\x07yq\x97\x13\x91\xf1\x9dbU\xf5!WQ\xe5u\x9b\xae\xb6~\xbdl\xeb\x17\x05\xf3;?_x\xcb0.i\xc6\x1e\"[:\x9f\xe8\x1aq\x04 \x8an\xdb\xd0&\xa5\xbd]\xb4\xafu1F\x07\x99$-\xc9\xe5\x03\x11,\xc1X\x82\x9e\xe0\x11e\xa5w\x9e\xc2)\xec\xc2\x98\xdd\x8dv\xe0\x14v\xf8\xdd\xf0\xe9\x10Na\x04c\x93\xe8\x05iE\xd8\x84\x19\x1c\xa3\xb0O\xc8\xeffm4D\x9f\x04\xb8\x11\x1c\xc3ptX\x12rQ\x8b^ \x04\x9da.\xd2'-.m\x8er\x19\xc3\xa7#x\xc2\x88X2\xa1\x83\x1b^:L8@\xd9\x17{g\x08O r\xe0\xf8\x18\xf6\xe1\x1e\xf6w\xe0 %^\x9f\x89\x0cb\xd8\xdd\xec;t\xd7`\xf6).\xb9\x7f<3>\xde\x8d.]e(!\xf6\xbe\xfe\xcc\x97F4\xdc+G4\x1c\xc1=\xd8bL\xf2\x10}:\xc4\xd1`\xf7\x80\x7fw\xcc\x13\x96\xdd\xdf#9+%x\xfb^\xe3\xdf}\xfc\xf8\x8b\xf2ng\x0dh\xd4\x9f\x15\x06\x08\x1d*\x10\x92@\xe6\xd7AV8\"\xef\x1b\xad\x89\x82\x8c\xa5\x92\x1bI`\xd2\x0eQO\x12\x97\xc6X\x94/\xc2\xcfi\xdd;.\xee\xe4!\xc5s\x81\xdc\x9e\x1d\x94i\xe4\\H\x19>\x0f\x98\x18u\x00O\x00\xf3\xc5\xdd\xb3I\xe4\xdc\x0c\xcb%w\x0f<\x95\x1cer\xc4w\x18\x1bg\xf3\x04fM\x8co\xc2\xd2\xdd\x14\xc9M\x19\xa7\xa9M|\x8a\x8aq\x8a^\xbe\x94$\x9f&\x1d\x1d\xb71>\xe7b\x10\x9d\xde\x02$\xdd\x85\xa5\xc9V&\xaeT\xaf\x0c\x04(\xc3\xa2\xa4\xa8=\xa4\xc7\xeb\xe6I\x9f\xce\xf0\xe3&u\x99j\xeeK\x07\x11\x157\x81l7\x8eO\xf9.\xf7\xb8b\xe9\x84\x1e\x0e\xb9w\x1e%\xb7\xe5\x93\xf6y\xd8$U\x84N\x82\x12V\x0dC\xc0\xba\x95y\xa8\xba\xb37\x1b\x1e8\x90{o\xde\x9f\x7f<{yq\xf5\xee\xf9\xffw\xf5\xe2o\x17g\xe7t=\x0dL\xb2\xb8\x139\x89\x0e1\x98\x05\xe9\x9fwy\xf6\x18\x83\xdf\x0b\xdf\x1a\xc5di\xd8a\xa2R\xb3J2\x9fie)\xbd\x00\xb0\xe5\x18N\x92\x1e\x01\x13\xc4\xc5{\xb5\xdb\x94\x1f\x89K\x8f;\x1e\\\xd8\x1dqZi\x96$\xb6c\x14\x87\x12\xca\x901K\xd3'O\x84'x\xf9\xcc\x1eb\xc2\xbcJ\xa9\xd8\\\xaa\x9d\xd9\x0d\xf8\x1864\xb2\x93\xfa\xbab\xf1u\xbe\xbc\xf3\xbf\x96\x91\xa3|\x1b\x05\xcb\xab$\x89\xce\xc3\xdf\xe8t\x1e\x0e\x9fb\xf2\xa1+\xeea\xd3\xb9\xe2\xb5\x13[sJT=\xbf\xb8`\xbb\x87\x1f\x8cT\x7fd\xf3\xf0EZ\x0b\xcc\x16!\xb5\xec Y\xeb\xa3v]\xd1\x91k\xcb\xb8\x06\xfb\xc9st\xf5\xa7\x0d\xb1_\x18\x1cJ+!\x13\xdetY\xa9Xa_hmM\x98\xe1K\xdd\xd5\xad\xcd\xccAV\xec16\x08\x02ZGc\xdf\xd43\xd0\xc9\xb5\xd5\\j\xb5\xd0B\x0c\x933\x0c\xd2\"\xd5\xa5\xbc\x07\x99\xc4\x97FvK\xc8\xa5j\xc7\x83\xad\xcb\xb3\x0f\xdcV\xdc\x84\xee\xcc\xbd0\x13\xe7>7F1\xb3\x812\n\xf7\xff\xa0\xf9\xa3\x97\xcf\x8c\xb9Q\x13\xce\x19_\xe1 \xdf\xb1\x16\xa1Z\xb7is\x91J\xce\x1e'\xb0p\xa1F\xe9I\xc7\xe7\xc6\xa0\xfe.\xbb\xf5W\xc3\xfd\xb6x\x9d\xa0\x06\x0fh\xd3\x13\x11\xad\x9eH6\xd7\xe4=\xc9(\x89]\x99\x0e/\x8b(\x0fW\x11\xa1\x10\x1c\xeeo]\x87\xb9\xf6X\xac)\x1a\x06Gh\xbeK\x8e\xd8\xf2\x1b9p#\xe2\x9f\xba\x98\xb4R\xc7\x7f e\x82\x1cB\x04\x04\x10\xeb`\xd9\x19}W\xb0\xec~#XvF\x8f\x02\xcbn\x03,;\x8e[=\xa2`b\x7ftZ\xb85\xa0\xb5\xbf\xfb]\xa1u\xf8\x8d\xd0\xda\xdf}\x14\xb4\x0e\x1b\xd0:\xd0Ck_y\x9d\xe8\xda\xf9\x83F0\xcc\xe6LX}a\xfc\x16x&\x8f\xa7\xf2(\xb1\xfa\xd5\x8b~S\xb1Z\x890\x90\x90\x1f\xa2\x19\x1e.\xba>M\xa0\xd9(\x96>>\xa1\xbd\xe5w\x9d\x1f\xe3\xeac \xa4\x89\xe4\xcc%\x19(\x1b\xa5\x1b\xd0\x83\xee\x14\x17\xef\xc5\xc7j1\x9b\x9c\xac\xa0\x0f\xb5\n\xbd(Vq\xf1\xc6_\xae\xd3x\x1b\x9d+.^\xef\xf3u\xeam\xa5\x8e\xa1\x1f\x85,.\xde\xfe\x87u\xda\xef\xb4\x1d\x86\xaa\xe2\xf3u*n\xa1\xc6\xa1\x17E\x0e=\xa9rX\x872\x87j4\x17\xfdF\xd3I\xac\x03\x94v\xd1Z\xc6\xfa3\x8b\x0eUz+\x8e\xb51\x14\xd4\x8b0w\xc4M\xb0\xac\xbef\xd3\xa0\xa5\xc9\x1eD\x0c\x12\x1c\xac)\x0cI\x1d\xa9\x93_\x0b?j\x8f\x1f\x01ZiC\x87lA:\x0c\x85\x8df\xeb\xc1\xc3\xcf\x80\xfb{\x8e,KY\x88\xde/\\\x19E\x18g+L+\xd6\xefd2)F\x98\xffRC\xca\xdf\xdaqq>=\xe3f\xd3%]Q\xba\xf3 \x8e\xe4\xfe\x92\xde\xd2\xcf\x83\x85\xbd\xed\xfd>z\xd8\x9e;\xde\xdf\x930\xb6-\xb0Dx\xb0\xb22\x9e\xec\x89\xa5P\xf7<\x0f,\xc7q\xc1:\xe6\xf4\x06\xae+]6\xf4:\\\x0c\xf2\xa4N\xa3\xf6\xef?\xd5*\x8fW;YU\xcfmf{\x8e\xda\x11\x0e\x90\xb1Z.-\xed\xb6\x94\x17\xcc\xd6,i\x9c\xa8\xb9\xf0u\xa7'pY\xef\xfd=\np\x06,\xd5\x9cr4\xeb)>\xee\x8f\x9e\xd2G\x80\xf6\xd1\xa6\xf1\xa6\xf0\x8c\xf7'\xa7\xbfZ\xdd\x84\xaa\xf2\x9d.\x04Je\xe6RH\x07\xb8\x10\x97\xbf\xd2\xf2WR\xfe\xaa6_/\xf1^\x88\xae\x03[t\xf5`\x0e,\xd8\xa2\xcb\xa9\x90%z\xa1\x0b\xbe\xc3\xcc7\x10\x9c\xa5^0\xe1*\xd8\x9ae\n\xd3\xec\x0e\x8e`\xc6\x0ci77gf `4\x991 `0\x99\xb5J\x00i7ia\xd6KZ\xda\x8c\x83\x1f!\x01\x0c\xe1\x18\x8d\x90Q\x02\xe8\xc31\x84f \xa0\x8c\xa5\x82\xa8\x98\x92>\xb1\xc6\xa4\xb6\xb8q.\x82\x92\x9b\xe3\xdbf z\xd3\xba\x7f\xad\xc6\x96\xf5\x90\x1a\x98:\xaf\xad\x11\xc9\xe4\xff[\x1b\x1a\xb66\x84\x1e\xfaz\x0cf=\xbdp\xdf\xd4E\x10\x86\x1cm}\xa5\x10?X\xac\x0f\xda0@\\X\"\xe2\x87\x984\xd99\xba\xa8\xf1\xe5\x1f\x1a\x03\x03\xa9\x91\xfe\xd4\xd8t\xa6\xeacz&IB\x07s\x1c\xcc)\xf9\n\xb2x\xa1'D\xff\xde\xc1\x0c\xe5\xa5O\x7f\xce\xed\xa9\xf7p\xc2\xf5z\xc9\xda\xeeU\xadud\xaf\x17\x17Fu\xc3\x1d\xee\x8e\x96\\\x02\xea!\x9e`P\x9e\xe3c8\x84\x1f)\xfd{\n \x8ca\x08[\x908\x0e\xdahk^\xf4\x1a\xf0\xfb\xb5\x06\xbc;z\xba\xfbt\xff`\xf4\xf4;\x8dz\xd7<\xea\xbc9\xac\x1d\x1c\x16\x03F\xaf\xc1}\xea\xbd?\xbeea\x99\x96j\x0b>y\xf4\xfa|U\x1bQ[J\xc6\x90\xeeB\x04\xc0\xc0e\xa0v!\xe1<\xae\\\xc7h\x87\xbd\xa3\x10\xd8\xed\xd5\x87\xb7\x8f\xee\xc3\xa1\xa1\x0f{#\xf6\x8e\xf6\xe1P\xe9\x83|\x97\xa9t]\x1f\xfb\x1d\xe1\x15\xd7OI}\x02\xff\xfd\xdf\xc4U\x83`\xe6p\x8a\xa9Z\xfe\xfb\xbfs\x97\x9d\x14,\x0c\xe5&=\xb5\xcb\x1dBD\xc4\x11B\x0f\xf6\xf2Q\xeaT!\xc9\xec\\\xf9&\x17\xdf\xe4\xe57\xb9\xf4\x0d)\x9f\x10\xc7`\x03\xecT:\xcf\xd2\xea\x1aaa\x0c\x90\xb9\x96\xfc\xa4\xa4\xc0`K\x8d\xcb/\xae\xb8\x0c\xf3\x9b\x08q\x86\x81\xbb\xa81\xe7\x9cNH8\x19\x13S\"\x80\x0d\x04)\x00\xd2\x95\n\x07\xaa\x85V\xf7\x80P\xd8\x0f\x11\xd5\xe0\xedYO\xb9\x1a\xe1\x92\x19!\xb8A\xaaM\x90\x13\xb2|\xa3\x05\xf7\x89\xe56!\xdcgoX\x12G\x9b\x9bt\xd89\x17\xae\xffxB\xe9\x1e\xe7\x88\x13\xb5\xec\x1b\xd8\x84\xf0\x12~\xd4\xb9v\xebIY\xfd\x88_\xfccF\x0c\x9b\xb0\xb5\x95\x8bq\x1f\xe1\xd2\x1et\x0c\x97~\xf0\xed\x03>\xec\x83\x10\x84\xc6\xa9\x1c\xe3\xd0U\x15\x1cl\xe2\xfa\xb48\xdco.\xab^\x8d\x8e\x0c\x8drK\x0f\x04\xca\xf0\x12\xcf\xfc~\xfdhN\xf6\xb7\xf5\x03\xa9\x8dZg\xfa\xf4cg\xf4Hx\xec\xaa\xfd\xb0\xcd\x00\x91\x1f\x8d\xf0\x11\x8b\xf37\xdc?88\x18\x0d)\x17Q\xbe\xdf\xe9\xd9\xedG\x82\xaf\xd1\xedF\x1f(gc+#\x18\xee7\x87P\x1b\xd5\xcee\xab\x08\x9fv\xfb\xff:\x8c\x06\xcfN\xf8\xe7\xc3\xd1\xa1\xc3E\xe1[\x9cv\\%\xb76\xa5\x12(X\x1d\xc7\xedF\x07\xff\x10\xf4W\x03\x8c\x84\xdb\xd2\xcb#$/\x9bX0T\xb0`\xda\x0e\xa4P\x03\xa4\xd0\x08\xa4\xb0\x07\x90\xbe\x13\xcaD\xdf\xebr\xc5\xa3:\xefG\xc0\x88\x10[\xd2>@\xaf\xd3\x9e\xd8u\x0d\xe4j\xc4fM8\xde\x88\xd8\xaaF\xe4b\x84\xfd\xce\xe8`\x9f\x0e2\x86S\xc6\x08\x0d\x86\x07\xfb\x03\xb8\x87\x18\xc6\xdd\x14\xc8\x1a8\xfa\xd1\xc3a\x83\xb8\xaf\xa1\xf0?n8\xdf\x0f\xd5\xaf\x87\xe9\xebx\x92>\x1b\xed\xf6\xean?\xe8\xf7\xef.\xb6\xdc\xect\x0f\xe4\xde\xd5\xdd\xd7Q\xe2k\xb0\xfb\xe3\xba\x9b`\x95\x95\xa2ac \xb8\xbe^\xdd\xf8^Pktc\xd8\xb7\x1b\xaf\x92\xe2:\"\x8f\x04\xc7ag?\x06\x82\x01\xed\xd7\x8fG\xc2\xa3\xbb\x1f\xc3>\xfd@\xe6\xd9\xc8\xcd\x18\x848\xc8\x86n\x92\xda\x01\xc7\xacXPm\xfbF5 P\x0f\x93\xd8\x81-\x8a\xf2M\x8e(\x899\xc6_\xd8\xe2\xf4\x81\x1b\"\xafBN\x13AI\xc4\x8dc\x92\x15eD\xc4 \x10\xd8\x86\x84\xc9\x81\x8c\xe8\x8d\x16n\xc5b%$\xb5d\xc2?\x10\x921\x161BSc\xa4$AS\x88\xcfJ\x88nm%\x18 \x8e\x93\n\x1a\x90&\x02\xa4\xe1w\x03i\x83\xa8h\xb7`\xd1\x00U\x85%E\x16{{.\xeaQ\x8c\xf9~pv\x10\xe4\xb3(IP\xd2\xcd\xb1\xb5\xbc\xca\xb8\xc9\x7f\xaf\x81\xe8(\x90o\x1e\xcb\xc8e\x92\xe3\xb6\xd1\x9cj\xb6\x87[\xcd\xd9\x90\xcd\x19\x8aH)M\xf5\xf7Z\x03,G*=|z\x0e\xb27\xa5\xfc\x07\x0e\x92\x8fF\x1d$\x1f\xbbf\x90\xc3\xb5\x06\xa9\xa3V\xbey\x90\xbb\xae$\x12\xef5RF\xb3\x88\xd1\x8ev\xa5\xe1\x8e\xaa\xe7\xc3}\xc3\\k\x963\x85\xcc{\xfd\xf4\xb7\x92E\x12d\xfe\x80\xe9_\x1f2\x06\xa8\x0c\x0dP\x19\xe9\xd7\xccN;d\x86\xbd!\xb3\xe6\x11+\xa4\xc72X6\x8c\x06G\x02\xd57\x8e\x07\x0c\x1d\xad\x97\x9d6\xce\x96\x84\x1d%[\x1a7o\xbd=\x18\x9e\xc5\xfa\x83\xa5#J\xef#Op_:n\x88\x10y3\x89z\xc1~\nsLv\xb6\xd3\x01]\xe2\x97\x05\x86(r\x95s\xdf\xa6\xa7\x94\x0f\xcf\x9e\xc1\x80\x9e\xa3\xc5w9\xaf\xd6\xa4\x00\xfeO\x99\xe8\x16*\xe2\x9b&[\xcc\x85D`\x84\x15\x81\xb1\xf6\x8co\xfecf\xfc\x0f!P\x86\xa3\x03\x17\xb6\x86\xa3\xc3\xb5i\x14R\xd3!Q\xd02\x9f\x84\xe1\xb7\xd0/\x7f \xf9\xb23:\xd8\xa7cE\x19B?\xd4\xfe\x07\xd20\x7f \xf3\x88\x81\xfe\x81t\xcc\x1fH\xc6T\xf9\x10\\%\xedA\x8f!\xb7\xcfm\x0f\x12\xa7F\x12}\x13A\xf3\x07\xd23f\x10\xd5\xb7o\xcdHB\xec\xe2\x1eP\xfc'\"~\x0c\xf2\xa7v(\xbeR\xe6\xac\xcb\xab\xa2ji\xdd\xf9RZ\x1a\xf6j\xc9$Ejo\xea\xedc\x06e\x12\x14\xad\xd5T\xe7\xa8\x82du\xb7\x1e\xddR\xa5\x9b\x1c\xa0Cd\xe9\"X\xd9\xd5\xe7\x8a\xa7\x97\x94\xa5\xa42E\x90\x0b\xd0\x0f\xf3\xb2F\xae\xe2HK\x12\x10\x9d\x17\x98\xf7eWz\xa7\xb0\x11 \xa5\xea\xa0\xdc\xad\x8e*\xf26\xc3\x9b\xdcO\xe7$?\xcf\xfd4\xef\xce\x86Z\x9a\xf1\x003\xd6T\xba\xa1o!K\x8a4 k\xb4\x90\xb6\xf5\x97\xd5v\x16O\xbb\xebJ\xeb\xce\x17%\xf4\xeb3*\xd9_\xe5\x18{iK\x9a\xa8\xda\xcbM\xadU.\x12\xb4L\xbf\x95\xea\xe3\xd6\xe3\x1cTn\xa8\x18t\x99+\x07\xb1\xc5\x96\x904 \xb0t \xc3#HxV\x83\xad-4\x0bK`\x13\x10I\"\xae\xa3w\xba\xb8/\xa5\x93\x11eA\x86d\x07X\x18\xaf\xf5\xb2\xfe\xb105\x8aY\xda\x1a\xedk\xf3\xb9d$\xaf\xf2\xb8\xd4Lubf\xf6\x14:\xfa\\\x98B\xef\xd7\x86\x08fa\x14\xad\x87\x084NWkg\xb6\x16\xe9 0\xa4\x06?6\x95\x1d\xa2M\x9f+\xe1\x85\xe6'.\xcf\xba\xd1\x95\x19 $\xde\xaa\x16\xb0\xdcdy\x04\x18\x80\xe8\x18m\x8c\xc5Am\x88\x8ff\xce\xb7\xaa&\x9b\xd1\xe4\xc33\xf9\xb3\x97\x19\xbf\xfb&\xf36\x80\x1d\xdb\xad\xe7\x02NM^\xc5&\xcf\x8fF{\x95\x12`:-\xc9\x9b)\xcb-\xe2T\xe9\x17a9\x00n\xab\x87>\xca\xb5A\x08\xbc\xe8OB\xf8_P\xaca\xb3\x977b\xe4\xd4\xfb@\x07\xfb\x19N`{\xf2\x9f\x9b\xbfl\x0f\xb6\x9e>\xdf\xfa\x0f\x7f\xeb\xb7\xad\xab\xcb\xed\xb9\xc9\xf5\xe6\xd7\xf6\x10\xae\x80\xca\xd9S\xb0\x06\xe8\xf4_O\x13:V\x1e\xd4\xfbfh\xf0\xb5Q\x01x\xa3\x0f\xd0\x96\x03\x8f\x8a3\x84\xed\xce\x1c\x97\x95\x83L\"\xc2\xf3\xeb\xf2:\xb4\xa7P Y`\x9bFb\x07\x07\x9ea4\xef=qD\xef\x1d\xec\xec\xee\xb6!\xdc\x90\xe7\x873\x97\x80r\x93>\x83\xbd\xfd\x9d\xe1\xd3\xae\xc2\xf4b\x89(vh\x7f\xb6\x86\xb43<\x99\xc4h\xe7\xa9\x0b\xc3\xa7C\x17\x86\x87O[\xd0\xba\xb8\x82$\xce\xc3\xb8\xd0\xe7R\x12\x979{\x10\xf0\xbe\xfb R?\x19\xa5z\xf2\xf5O\xd4{\\$\xed-u\xb6\xd2\x9e] \x97\xc9\xfe\xce\xc8\x98BP\\\xfd\xa0\xe2\xfe\xc1]\x8e\xb9\x8f\xc6>lR\xban\x8b\xa7 8>\x86!3t\xd9\xe2\xa3\xd1\xd6\xc0O\xc5\x84\xf3==\xc6c>\xc9\xab\xfd\x1b\xb3D\x15]\xfb\x8c58d\xd9Y\xba\xd2\x1f\xf0\xce\xc4\xad\xe3\x10\xf37\x1a\xec\xf6l}\xb4^\xeb\xf0\xec\x19\xe62\xc0\x00\xdb\x98\xd0 \xa6w\xa3\xc3^\xdd\xc2y\xea\xd7\xaf\x9d\xf5\xfb\x85I\x17F\xa3]\x16\xc2\x03\xf6\xe1 \xed!\xf6n\x8d\xbev\xa0F\x1c\x07O\xd9\xa0\x8b3 \xd2i\x05\xc9\x94\xc0*1x\x91\xc9U\xb2\xf1\xee>b\xbc\x87t\xbc\xbb\xe4\xeb*I\xf3\x0cN\xe0\xf7\x07\x89v,\xc1\x106<\xd2\x1b\x9b7#\xf9E\xb8$I\x91\xc3\xc2g~\xa0\xd7\x84\xc4 B\xe6W\xf0~\xd04\xe0w7\x10D\xc4O\xbf\xa1\x89\xa2\xb9\xe0\x19n\xc5\x18`e\xef\xab\xe8\xc2\xe5#\n>\x95o\x16T\xe3\xc9 \xf3\xe2\xda`\xf9\x8e5\xf5\xd0C\xb6z\xecv\xd4\xab\xcf\xb7!\xaab_\xd4\x97\x81\xc8\x0f\xa17\x955\xa6\xef\x10U\xb2\xa5SF\xcb\xd79\xfc\xb7\xb6\xd0\xac\xab\x94\xd2v\x07\x0f\xa8&l\xa3Z\xac\x8d\x95\xa0\x1d\x03f\x9d\x11\xdf\xc8\xbc\xa6\xb4\x10O\xe5\x9b\xb1\x8av[\x13k\xd0\xeaU4-\xdf\x19\xe6\xc9\xd4\xa9\xda\xe2=\xad\xdf\x8e\xd5,\x89\xad\x1d\xa3M\xa8Y\x15\xcb_\xb6\xb4\x9a\xe8\x1e\xe7\xa9\xcd&Jb\xb3\x00C\xbf\xd4\x9f\xcdx\x12\xda\xe6\xc6Y5f\x04\xb3\xb7b\x1a\x0b\x9bW\x05\xa5X\xe0\x14[\x14\x01\xc4\xed\x08\xc3\xa7b\xdd.D\x92\xecuj;\xed\xfbu\xdah\x16\x89\x88\xc0\xc4L\xd2\xb3\xad\xb0W\x1a\x8a\x01\xfb\xd8\xc6KR\xa6S\xf4\xed\x083\x11\xe9\xd79~@\xb1d$\xe0\x8aA\xc4x\xf6\"\x9e\xf2cv\xe9\xa5El\x9b<\xfc8(\xe4&;v \xf0D\xcfl\x8f\xea\xe6N\\\xfd\x8ev&T\xa7\x98K^\x86U\x1a_\xe9\xa1\xdd\x16P\x12Q \xab\xc8G\x14\xc8b5h+\xa5\xabV~\xe1\xf6o\xc6\x8c\xc2\xc4\x95\xda\x06\xf9\x12\xf4\xc2^\xe2\xean\x08d\xf2K\xc6\x9b\xe6\xe6a\xad.@\xa3\x01\x8eL;\x1a0\x8f^\xfb\xe6A\x05\xd8C\xebN\\h\x858(\x0b\x9c\x15(9\xe1B{\x96\xe6\xe8D\xcaZ\xaa\xab\xee\x86n\xec\xaa\xc5\xc4\x8b\xc9\xd7\xfc\"\x0c\xbe\xb4\x12\xa7b\x9fR\x8a\x80\xd1\xbc\x8d\xb8\xcdM\x93!\x94W\xa8\xc5\x9e\xc1\xb0 \xce\x12\x17\xc4\xcc'\x93\xb2*\xea\x97G\x10onRr-f\x86XR\xe8\xe8F\x98\xfd\x883\x1b\xe4V\x80\x0fe\xf7\x98\x15Z\xa2\x07\x03\xfa_aO%T\xe8\xc2B\xb6\xabG\x00\x9b\xcfF> <\x1c+[\x8e\xd5\\\xd4\xaaM\xbc<\xcc#\x0cJz\x9d&\xb7\x19I-\xfa\x90\xff\xe6a\xf2\x13\x8f\xc47H\x07\xd2\xdf~:\xbf\x11y5\xbd\x1b\x92ft\xfeX$\x93\xf2>+K\xe3\xbb\x1b\xfcn:}\x1bf9\x89\xb1\xde\x1b\xf6\x12\xdd\xd1\xd9\xef\xd9L\xfcL\xc92\xb9!ja\xf6\xf4y\x14\x89\x17\x99xC\x96a.~\xafR\xb2\"q\xa3%\xfe\xf8C\x1c4\xea\x8d\xa4\xea\xccK\x8d\xef\xc0\xc9e\x1dz\xd7a\xdc\x99\\\xa5A\xb5\xae\xd2$ YV~\xccC\xa4HA\xf1\xea\x8d\x04\xb7\xd3\xb6\xf9\x16\xac\xd2\xb6\xa5|\xb6\x98\x86\xe9\xe3z\xc6>\xed\xeaW\xb1\xf4\xb3/=z6\x90\xb6>h\xb8\x10E\xc5o\x15\x19AEO\x90KL\x9c\xcc\x90\x98G\x84\x1a\xa0\x8a\xd8\xda\x90Uu:}\x0f\x06\xb1\x15\x03\xf5\xcb\x8aU\x19C\x83k|\xc4@\x9aH/\xd5\xe2\xd0\xca\xbe\xe6\xa4\x0bk&f\x94\xd8\xc0p\xc7'0\xa4\x88E\xd2\xdeT\x98jx\xc9\x835\xc8\x8f\x9a\xf4DlLx+duZ\xb0\x19\xd7\x07\xa8\xc2{\xb5\xd7Lt\xcfP{\xea\xa8\x02|\x9fb\xdep\xe2\xd7\xb1\xaeof\x961\x17\xd6\x86\x88\xa2\x19\x0b\xd0 \xc3&\x91\xa1\xa1GnHzW\xcb\"\xdd\x95\xda\x0c\x19\xb7x\x92^j\xf8\x1bts\xb1\x19W\xcdp2\x9b\x04\x17B\xc7a:\xb5\xd05s\xf2Z\xde\xbb1\xf15\xc2\xb5 \xc7\xb8\x84cN\x0f;8\xc5\xe0\x14C\x1e\xd98e\x07\x1c\xcb\xb9 )\x85k3\xa9\x9d\xe4-\xa0\x16\x97\x00]\xfb\xa6\xef\x03}6\xc4Y\x9a,[Yv;4\xcc\xc3\x83\xf1\xb8\x8f\xbc\x94dE\x94\xbf.\xe2\x80\xae%\x17\x9f\x04\xc9rU\xe4~\xce\xd9\x94\xce\xcd&6Z\xe3\xe5\x03\xab/#\xf9\xa7GWJgH[q\xed\xa1L\x0c\x88_\xb9wuE\xb2w\xc9\xb4@\xf6\x8d\xf2i\x98:\xd6/\xa2\xfc\x1dY&,soB\x9f\"\xda$\x02\x8b\xbedH\x94\x11\x1d\xe5\xcb<-\x82\xbcH\xc9\xb4D\xb6}\x18\xefGP\x99\xbeBe6\x99s+\xc1<\xb8F\xea]\xc8\xfeM\x1dg\x87C\x06\xb30\xcd\xf2*^\";\x18\xfc\x18X\xf5p\xbb )\x01\xe2\x07\x0bX\xf1\\\xbb\x94\x11\xf0A\x9c%\x9a\xa3\xc3Gk\xb0\xb2SG\x0d\xa0\xd0\xbd\xc6\xd3\xf8~!wYC\x88UR\x8bq\x1dU\xb5\xf9\xc3\xd3\x0dY_\x0e\x8e\xdb\x93\xe4\"Z\x84\x9cW\x08\x81\xd3~\x03F\xfb\x11N\xfb\xe5\x93\xb4\x9d\xee\x03i(^J\xa6E@l\x85\x13\xea\"\x98\xc9\x84R\xcb\x97\xcc\x18R\xa3\x8es\xe1\xf7\x07E %\xb1\x9fu\x91\xb6\x8f\x04L}\x99\xd3\xf5m'z\xb5\x97\xc2\xa7 \xee#\xb6\x87\xc3\x03\xe5@D\xc6\xc6\x1e\xed\xee8zV4\xb6\x87\x83\x01\xa5\xfc\xda\x1a\x00Y\x84'\xd2'$6Z\xabK\x83\xea\x91TLZ\x12\xcc\x18tM\x96\xb4\x1a\xea\xc1\xaeaD\xed\xcc\xf5\x86\x1c\x0b\xd5\xc4G\x8b=\xb6\xf1H>Z\xedq\xac*$\xeb\xfb\x8e\xc9\x9c\xc6`\x8d\xbc=o\xcf\xd2\xad\x12\x8d\xfd\xe1\xd5\x153\xd4\xa4\x7fO\x84\xdb@o\xf0\x8d\x0e\x0e\xd6\x86\x9f\xcc\x85\xca)\xe7j\xb2\xeau\xa7Q\xbf`\xf7\x0ev\x95\xe7!\x7f\xbe\xa7<\xa7{\xc7\x9ap\x9c\xf8\xbe\x88\xa2K%Tx!\x17\xf8,\xd2\x9d\xab\xa524n?E\x13\x04f\x0fx\xe1\xcf\xcb\xcc\xde\xdf\x01R\xd2\x89Bo\x0b\xcc|2\xe6\n\x16\x08c\x8ev\x99q'\nF\xc6\xc8&?\x16\xb0{OGz\xc8>\xdd\xeb\x9cx\x0d\xbd,\x96q\xc2\xdej\xb7E\xca\xb2\\\xc4%\xd8\x1e\xdb\xf7\xd1Su\x96Y\xdf\xf7w\xd41\xb1Uqp\xd89$\xc3\x0c\x85\x0c\xde)\x83w\xb26\xbc\xf5\xb2> !\xef\x0e4#\x91NXJl\xb4\x93\xd4\x82V\x99h\xce0\x89s c\xa42\x84U\x98\xf9\xbc\xab\xbdx0\xc0\xad>\x96\x90\x1f\x14\xfbR\xb5\xa1\x17\xc6\x0b\x92\x86\xfc\x149\x1c:\xcd3-\xb6w\x06\xeaL\x16\xac\xae\xda*\xac\xea\xb2g.\xf8\xd2\x9br\x80\x19\xae\xbd\xa2\xd2\"\xf0\x14I\x83#\x88\xe0\x18*uFD \x80\xe6\xda\xa5\x04t6\x89\x14\x18\xce\xaa\xfa&\xc1%\x8a\xb9\x94G\x94)\x93\x1f\xb4\xebwg\x86C\x879\xc7\x88@\xda\xc9\x0cfU~IJ\x12\xce\x1a\x84\x96_W\x95\xb9P\xa8\x0f\x10\xfbo\x08\xd7\x89\x94\xf8S\xff:\xe2\xb1c\x17aV=9a^\x80\xf5\xf2\xb7i\x98\xd7\xcb\x97Oxy\xa6q\x89\xa2\xe4\xf6\xaf~4\xfb\xb0\"1'\xd3\xeb\x15\xd5K\x94\xb55>,\xabL\xe2\x80\xd8\x16\x89\xa7\x96\x0b\xabvp6\xb5\xf4\x9a\xba\x85\xc3\xc1\x95\x18\xc0y\xee\xe7\xc4#\xf1\x94L\xe9\xcb\xb4\xd4\xc5\xd9S\xd6\x85.\x1d}c\x0e\xb16[E\x0d\xf4\xe2;\x99\x1d*\x1f9\x19.\xaf!\x17,\xd1\xaf\xbf\x86\xf3\xc5\xcf~N\xd2w~\xfa\xc5r\xd56\xe2bIRZn\xdc\xd0\x85\xcfI>n\xa7\x98\xc5\xe6\xd6\x00b!7[\xdf\xfc\xd5\x80\x1c\xb7\xd7P\xa6$\xcb\xd3\xe4\x8eL\x1b\xdd\xef\xddE\xc9\x9f\x86\xf5V\xacS\xec-]@\x8d\x12\xb5\xf1TK\xac\xfe\xa5W\xf6\x0d\xbd\xce4\x80(\x0b(d\xb9B\x08\xd4\x06\xa2\xc7\xc8\x7f\xfc\x10*\xfd\xb3i\x10\xb4\x88Q\xe1M\x19,I\xe1z\xc5\xbf\xea:\xe4\xb1Av\x80\x14Q$6,\xae}W\xdeGyM{\xff]\x0e\xca\x9d\xe1\xc8\xb1\x1f{\x8a\x93\xca=\xabT\x91t\xd1\xe8k\xf6o\xff@w\x90\xb3\x10\xf7\xfe\xd7G\xf6;\xb1\x07.\xd2\x1e\xdf\x00\xccu\xcbk\xa9\x94\xa1flvl\x1f:]\xf2\xbe\x90;~z\xe2l\xfb\x98$\xc2\x16\xc0\xc4@\x0b\x82\xa6\xf9\x1d*8\xf4\xb2;\x19\xc1 \xc3Pz\n6\x05\xd6F\x0bez\xd0\xd2\xef\x1b\x86\"\x1a\x9a\xb2}\xd4D>\xca\xf1h\xa7\xe7\x8cm\x8d\xf6,t\xb7\xc5\xedVP.\xde\x16\x9bH\x03\x1f8\xe6\x1b.I\xa2\xf3\xf07R\xe2\xad:L\xe8vl\xa4o\xad\xdd\xfa((\xab=*\x1a\\&\x16\x9cNi\x9d\x94\xb9I\xc6\xed\xa8@\\%\xfb\xda:-q\xad\xcf\xdc\xba\"\xf6\xe6$\xa7\xf7\x88\xac\xd0\x01\xca\xa7O\xcb\xf1\xa2czu{\x02\xc3\x81C\x0b\xa4$\"~F\x98\x84\xaf)\xa1}\xd0\xa8oc\"\xd2\xa9b\x83\xe9X\x05\x08\xbd\xf2\xdbD-\xd5\x0b\x06\x8fY\xe4 \xeb\xa6\xd6Y\xe8\xa0[\xec1\x8b\x10\xe0\xe8\xc0\x01\xda5\x0f\xbauO\xab\xe8\x03\xce|\x91\x92\x06@\xbbD;\xe2\xfa\x16h\xa5\xdf\x05Zi\x19G\xa9\x114Z\\\xfd\x01\xd6\x88\xc8\x00z\x98\xcd\x92\"\xed\x02Y\x8bT\xf1[\xa0\x96|\x17\xa8%R\xf4\xa9\xd4Q\xf5\xf9\xe2Z\x0bp\xae\xd6\xf1\xb8\x8e\xca\xf4Gg\x81O\xdb\xe4ju\x03\x7fmq\xb3\x98tO\x95.%\xfcy\xb7l\xc4p\x94\xa7v\xb2\xfe9.\xf7\xe8\xd1-s\xb9\xd1#\xc8\x08\x89\xfa\xda\xd1\xcb\x8a\x0e\xb5\xe2\x96\xe1P}\xce\x98\xfd\xe1\xfe\x81c[Y\x1aX\x1a\x9e\xff5\xefH)_k\xca\xdfX\xfe\xc1\xc2\xf1\xb2U\x14\xe6\xb6%J\xcaR\xd8\xd8\xde\x1f8\"a\xf99F\xca\xe8\x03$\xce=\x93\x9a\x05\x98m\x94~\xe1\xda-tr\x84\xc8d\x0d\xafx4FH\xe4\x87\x14s[\xb1\xbf$\x16\x1a\xd1$\xd5=7\x9fDIxi\xd2cK\x9f\xf9\xd5\x17>/\x87\xf2\xd6M\xf6{\x0c\x19\xb3H\xe0\xde\xcb\xb9\xe3\xb0\xa8b,\xb6\xcbi)c\x871\x14\xe2\xb6\xf64\xa9\xd6\xc4\x18\xec)\x89HN\xf0\xbd+\xbd\x92\xd7\x94c\x97\x93(3\x85\xe54\xb5hu\xf84h!\x87\x04\x14\xa7}&>Ja$a\x87\xdc\xfeZH\xa1sM\x94z:9\xf4\xc1\xa9\xc4A\xc0\xb8\xcb^\xa5\xd76\xeb\xa4\xbe\xf5\x9bo\xb4o\x10\x81\xef\xeckw\xdf\xde\xaeJ\xc53Q\xdb\x81Z<\xe3\xc5UYj\xc4\x9f\xab\x12\xbb\x80?W\xeb\x99\xf1\xe7*2X\xa1\xd0\x8ci\xb3\xce\"B\x0f\xc4z\x81\xa9T\xe0\xb5O\xc9\xe4\xbbz\x81\x05+\x10%\xb1\xbe\x82\x1b8\x81\xb4\xfeh\xd9I\xb47t7\xd0<\xc8\xe7Z\xb2\xf9\xe5\"\x8c\xa6)\x89\xc7\x86sx\xe9\xaf\xc6\x10zK\x7f\xd5$\x0b\x80 1\xcf\xfc`A\xcb\xf0\x9f\xfarAR\xc49-\x85?\xf4e\xf2\x045\x9f\xb4\x14\xff\xa9/\x97\xc4\xd1\xdd\x18f\x8dw\x1a\xca\xe5e\xb2\\%1\xa1M'^y\xd3,\xf7\xb1HI\xadl\xedA\xb3|m\x05\x8cA\x03\x1cy\x86\xc7\xa0\x81J\x98\xfd\xe4G\xe1\xb4,Rx\xf5'\x9aN\xa6\xc9\xea\x82\x99De\xa6.\xbd\x8c\xfc,\x1bC`z\xcf\xd7\xe4\x18\xa6\xa6\x12\xef\xc2\xafa<\x86e\xf3\xfd\xab\x0f\xef\xc6\xe07\x9f\x97J>\x8d\xf1\xe9\xd5U\xb6J\x89?\x1d\xc3M}q\xea)\x829>\xfdc\x90Nc\x93\x87L\x12\xf0\x94\xb2\x1e\xf6h\x7f\xbf\x12\x14V\xe2\xa5\x85\x9f}\xb8\x8d\x85\xc8P\x8b\x9cF\xfb\xaa\x9eO\xcf\xa1~!wc\xd8\xd0XA\xa6d\xa6\x7fqu\x95\x91\xc8\xfc\x0e)\x84\xb1\x9a\xbeX\xeb\x10\x9a\x19O\nI\x9cG\xbc\x94T\xbbJ'?\x8e\xfaU\xf3\x85\xdcI\xd5\x88_BU\xa1\xe1\x1cX2C\x03Y\xd2\xd4*\xd3\xeb\xcf\x7ff'\x96vE\xe6\x98^\x994_\xe0\x1ch\xb6\x16NA\xdc|\xbeJ\x93U6\x86B\x03\xff\xe46\xa6|PhZ\xd6P\x01\xa7\x8a\x0b#\xbd\x0f\xea\xc7\x88\x060:`\xa4\xcc\xd0\xfaw\x1d\x97\x06&\x0b\xf0\x15\xe8,\xc0\xd1\x9b\x96\x11\x04:\xde\x19\xd5S)\x84t\xf1\xe4,3\xcf\nm9R2s\\\x88\xc4\xc3\x19:\x98\xc0&\xa0\xd2\xcfqky\x06=\xb6\x84\x05\xe91.\x9f4\x8b1z\xb7^\x10\x9f!\x1d\x14\x96\x921\xe6\xb5\xb6Q([\xd3\xe6\x99\x87}f\x1f\x93OR5\xe3.\x05\xdfTg\x18\xb5\x05\xa3&d\x98\x0eh\xea\x80\xef\x05\xfc\x8c\x84Fl\x8f2\xe2\xc3\x14\xbd\x944\xcb\xb4T\xf2-J\xc3\x9e)\x85\x11S\xef\xdd\xc01L\x8f\xe0fs\xd3\x81\xc5\xe4\xa6n\xd8s\x83\x811\x9b\\\xee\xc0\xad\xf7\xa9\xee\x8f\xf8\xd0\x18 \n\xdf\x88\xb0?\xa3\xf0\xcat=\xa5\x9d\\\xa21\x87\\\xb2\xd9|\xb5.\x96N\xcd\x96\x8c\x02^\x9a\x81e\xc3\xe0\xfeA\xb77\x02\xba\xdag.\xac0\xa9&z4\x05E\x9a\xd2\x03\x10\xfc\x1aK\x13\xd4\xc9\xaa^Fp\xca&C\xb7\x9e\xd2 P\xbbWs\x8f\"\x0f\xae\xa4P\x9a\xa7G\xfa\xf3x\xfa\x89\xc5F\xf8w\xd2\xa9t\xa8\xc6\xe81\x86\"w\x19\x96\xa5\x7f\xf8>\xa0?\xf8:'\x1e\xc3*\xf4\x17b\x1eu\xfc\x12M\xd1\x13_\xf8\x0c\xb8\x94\xa8\xb4\x7f\x7f\xa8*n\" \xd4\xba\xd0-\xdc|\xb5\x00~8h\xce~\x0cj\xdd2\x16\x8d\x87_\x17\xd2\xf1kHg!\x90\x0e\xdb5\xe5\xf2\x90q\xd0T\xc5A\x0c\xdel\xe1\xe39.\xaf\xe9\x12mi\xde9\n\xb6\xf1\x0d\xd8\x86=\xb7e$F\xf9\xbb\xba~\x8c\xe2\xbd\x15\xf3\x81\x99\xd1?cqG\xcbj\xb0\xd3rM\xec\xb4t`\xd5\x07;-;\xb1\xd3\xbc\xc4NK\xc7\x85;\x86\x9d\xee\xe0\x18\x96GpG\xb1\xd3|rW\xc7Nw\x06\xecT\xeb\xd0\xbc\xd7\xfe\xe7{c\xea\xc2B \x81\x9b\xba\xfe\x9c.\xfe:u\xfch&\xb8\xa6Gc\x0bD\x90\x12\x0c\x8d\xc9\xad\xca\xa4i\xf0'\xe8&M%\xb1\xd3\x81\xe3\x9d\xdf-\xaf\x93HO\xe9\xa6\xebU7:\xd4\x9b\x0d\x0d\x0f\xbf\xcd\xd6m\x83C!\xa9\x0c\xd0q\xc1\x7f\x8b\xdd\xdb\xc8 \x81|\xaa\xaa\x19\x19\xd3\xbf\xdf\xb0#bt\xf5\xfe\xb0sdf\x94+E\x12\xe4f]p\n\x13r\x89\x96g\xfe\xb7\xc8\x131\x1e~cxJ\xf8\xbb~\x13\x11\x1aB\x972\x95\x1b\xa9\xechH\x13W`\xe0b\xd8lD\xe1\x11k\x7f\xc0j\xa4\x93I\xfbF\xe8\xddV\x02\xa7`m\x0d,J_u\x8c\xbf\xc6p\xe9$E\x9cUb\xe7+F\x1c\xea9C\xc4\xcb\x8a\x15I\xaf\xb8yq\xc5lU\xd6c\xacR;\x97eqM\xec\x15$\xb1\xd0E\x9a\xc4\x17\x98\x98_\xcb @\x87]\x8a\xb8\x84\x89\x82\x9e\x0b\x03\xd6\x8dY8/D=\x1a\x9f\x81\xda\x93\x87\xbaU\xf1\xa3\xc0\xd6\\\x0e\xaa\xd7\xb9\xc2\x88\xc45(\xd7\xe0Z\x9f\x80\x98\xdc\xa2\xe9r-.w f\xf8\xfe\xb6\x07\xfb\x9d\x9b\\\xb7kj\xa6\xceJ\x98\xd8\x97~\x1c'9\xd0\x86\x11\xc5%)\x14q\x19sH\xbb[\xbe\xcb\xa0\x1a^\x1f\xcaxyt@\xfb\xa0\x81@P\x10\x91b\x04_\xba_S\xb9\"\xe6\xfb\xdb\\\xdd\x9ch\x19\xab\x99c\xe5\xfe\xf02\x9d\xd0\xec\xe3\xc9\xf4\x87x.\x89\x93\xa8>\x04\xdd\x0c\xd9\x03\x17B1 g\xed\xc3\xa9\xe7\x8c\xb9\x06\xa0\xb5\x18\x0d\xab;M\xf2\x99\x16f\xab\x18\xff\xf7\xc3\x8cr\xa8\x98X\xe6\xfe\xbeK\xceT\xc6\xd6\xe6Lm\xccX*\xd2dj\x1b\x10|\x048\xca\xc7\xa5\x9c'\xed\x92\xf30S\xef\xfb{a\x06\xde\xc4\x0b \xefg/\xcc\xde'\xf9\x82EcH\xdd\xda\x0b\x06\x8a>\x04K7=W\xf5An\x83\x0b\x93\xfb4\xa1\xee\x04NBpjbB\xc9\x079\xd5o\xad\x99\x94\xac\x88\xdfo\xdd0\xcf\x1e\xf5\xe8\xc6\xa5\x133\xda;f^\xd61lb\xd4L\xccP\x85\xc5\\\xefL\xcf\xc1\xe6F\xf4[e\x81\x1a\xcby1\x18/\x8c\x83\xa8\x98\x12\xa1\x95\xe9p\x1fG\xef\xe0\xb2\xad\xda\xeb\x07\xae\xc9\xed[S\xb3\\\x9bEM\xee\xe5\xfe\x9c\x9b[\xd3_O\x9eP\x1e>\xa4\x8b\x88\x89\x92\xe9O<\x13M!a\x1f\xd0\xaeJkJ\x86ofa\x94\x93\xd4n]\x91PAn\x8b\xc7J.\xb1v\xaeV*\xad\x93\xe6\x84i\xa2\x16r\xf3\x15\x9c\x0e\x14:\x88\xdf\xf7\xf7hK\xc6\xde/WQ\x18\x84,\x1dIy#\x97 _\xa5\x12\xe5\x8d\xae\x8e\x9e3\x85\xb2A/J\xfc\xe9\xbfs [Y\xe0G~jq1\xbex%\xd3Y\x89m]\xa0s&\xbac\xc6I\xbc\xc5\xbeA\x84LO\xbc|A\xa0\xec\x7f\x14f\x18\x07\xdf\x87,X\x90\xa5\xef\xc1\x1b\xf1*%Y\x12\xdd\xd0\x13!\x99AV\x04\x0b\xe6\xed\xdf\x08l\xe3Y\xcdIe\x86=\xc9r\x15Fd\xfa\xa6\x82\x9c\xcf]\x08,\xd1\x01\xcb\x85\xc9\xa5\xfa\xc1\xd9\xd7\xe6\x07\x02\x9e\xda\x0f(m\xf9\xce_)\x14v\x03\x9etK\xf2\x1d\xa4\xd5X\xd0\x8b\x01k\xac\x95\xdf\xe3{\xf2kA\xe2\x80\x98K,\xfd\xd5\ns\x1f\x98\n\xcc\xfc(\xba\xf6\x83/c9h\x97\xb8\x1e\x94H\xf3\xd0q\xea\x8b+\x9e\xb0\xadx9\xc1m\x8af\x16\x9eh\xa9z\xa6\xf1\x15m6GQ9a\xa8\\\xe7\xa7|\x84q\xed\xf3#\x16,v\xe8H2'R!!U\xae\x08Fj\xd2\xd6\xae\x16\xc3\x9aP\xc9Jz\x15\xde\xab\xb3\xd7\xcf?\xbf\xbd\x10\xfa\x95R\xc1\xdf\xb6\"\xc4j\xa8w3\xbb\x0d1\xb2\x9c:h\x1d\xdc\x03?#0\x1ck\xe7\x03\x83'\x8a~)p\x9c\x0c\x0c1\x02\x0c\xf1\x96\xb1\x9d\x91\xb9\x1d\xb9b\xb5)\xd5G\\\\\x86\xa6\x04\xd3\xa2\xfd\xa6\x86d~N\x93x\x0e\xcc3\x141\x88h\x12\xd7\xcf9\xc3&|\x16J\xe9D\x9b\xba!\xe4y.SA\x0e\xa2\x83u^{\x92;.l\x90^\xf1_\xc49+[K\x17\n\xa2R\xf0\xe6\xf9\x8a\x04\xe1,$\xd3\x12-\"C\xcfQc\x06v\x92RD\x19\xc6\xf3\x88\xf0\x11r_]\x07\x83\xc6\xfba,pn\xed\xad\xa72\xb5k\x84\xb1\xd1\x0d#\\w\x18\x7f{\xfe\xee-\xc7\xde\xb51P\xbci\x1a\x81\xf4\xae\xd1\x7f\xb1\x8f\xc9-\x14\xb6\xe6\xdcb\xc7\xa7V\xaa#\xf0\xf8X\xf5\x05\xac \x93\xbb\xad1\xd7$\xf6\x86\xc3\x9a\x19\xdf\xa1\x96\x96K\xda\xe4\x956\x81'\xf4\xa5\x1aXLn+\xd4\x1e+\xef>\x9f_\\}>?\xbb\xfa\xf8\xe9\xc3\xc7\xb3O\x17\x7f\x1b\xeb\x92\xa1\xfe\xf5\xf9\xf9\xd5\x8b\x0f\x1f\xde\x9e=\x7f\x7f\xf5\xd3\xf3\xb7\x9f\xcf\xc6\xb0\xab/\xf5\xfe\xf3\xbb\xb3Oo^\x8aR\x87\xfaR\x1f?\x9c\xbfA\xd6@)>2\xd4\xfa\xe1\xa7\xb3Oo?<\x7fu\xf6J\xed\xc6\xce\xa8\xf9E\x18\xd3\x85\xf1\xea\xc3;\xc1\x10\xbfD\x19[\x97\xf3\x12H\xb2\xd1P\x7f:\x02'v\x89\xc7\xab\x0e z8\x98NS\xe0\xe2h\xe2\xbd\xfa\xf0\xeey\x9e\xa7\xe1u\x91\x93\xf7\xfe\x92d+?\xe8\xfe6\xd3\x7f\xdb\xf5Y$>\x13\x00\xe8\xf5U \xbez\xc7\xe3\x9d\xbc#\xf9\"\x99\xf2\xef\xf4\x98\xba\x94W\xccP^\xe1\x85\xd9\xcb\"\xcb\x93e\xd9_J\x18\x16\xdeU\xe3\xb9\xb0\x97\xe4^U\x9a/\x9d\x16\xba\x1f\xf0`]\x95s\xa0\xea\xd7fL\x12f[\xbb\x87\x96\x0b\xb3\x16co\xdaw\xa4\xcd\xbc&Y\x98\x877\xc4X\xa7\x1e\xcb\xf5\xab\xfc\xc3\x0dI)\x07E\xa6\xc6\xe1\x9b\x90b\x93\xc9\x95/\xc3F\x06~\xf2/<\x05\xe2\xb0 \xf8L\x1e\xa5x\xa6\xefd\x19*(\xb5\xad\xbd\x01\xee?\x174[\xb4ms\x03\xdf\x9a7\xe8\x9c>\xeb\x08[\xb5\xf0j{\x02N\x14sA\xf9\xd2\xbbi\x00:\x96k\xb1\x88\xad\xd4\x8e;\x0es|\xcd(\xaf\x17\x19\xbf\x92w\x1b\x9c@\xc4\xca\x07\xc6\xf2\xf5\xcd\x06'\x10\xb0/dD7\x99]6lv\xc4\xa5\xe1\xd7jO4\xbeq\xd6\xf8\xf9\xd6\x7f\\\xf9[\xbf\xfd\xf2K1\x18\xbc\x1cl\xe1\xdfW\xfb\xec\xcf!\xbb}\xcdn_\xb3\xdb\xd1\xeb\xd7\xf4\xcf\xce\x01+\xbcs\xf0\x8a\xfdyMo\x87\xaf\xf1\xedh0x\xb9\xc5\xfe\xbe\xc2?\xac\xf0hx\x88o_\x0e\xd8\xed\xeb3z\xbb3\x18\x0c\xe9\xed\xab\x03\xfc\xf6\xf5S\xf6\xf6\xf5\xab\x97x\xfb\xea5\xbb}\xfd\xfa\x95&|Is\x05\xbdyu\xf5\xfc\xe2\xe2\xd3\x9b\x17\x9f/\xce\xae\xde?\x7fw6\x06k\xea\xe7\xfeVJ\xfc \x0f\xa7Vs\xfb}\xfa\xf0\xe1\xa2\xed\xa34Ir\xcdg\xf5/\xae\xce/\x9e\x7f\xba\xb8z\xf9\xd7\xe7\x9f\xb4F\x85Ji^\x0e6\xc1\xfa\xe5\x97-o\xb0\xf5\x14\x81\xfc\xe2\x00\xa19\xe0\xc0\xddg\xd0\xdcy\xcd\xa0\xb9;\xd0t\xa3Z\x1cz\xae\x1e]\x0d\xb3,d\x8e\xd2\xf1\xd4O\xa7\x0c\xff\xeb\x91y\xcbQ=n\xa4\x16\x00\xb4DV\xca\xf7\xa1\xb3\xea\xfa \xa6\xfai'\x13jj!3\xe2\xc00\xf5\x03\xb7\xbd\xb2I~\xe9\xc8\nr\x8d\xd6\x15\x8c\xa8B|3ln7\x13)\x8a\xe6\xcdFS\xcf\xef\xceO\x1c\x1c\xee\xd4\x18\x8a\x1df\xa3\xfc\xd4\xc0W4x\n\x8a\xef\xfc`\xf1\x89\xcc2.\xe1Bi\xc7\x157\x9d\xe264:a\x87\x9e\xcfX&E\x9cK\xf6\xf1\xea\xd8P\x98\x1f\xa2\xb5\x94^.V eZ\xaf\xc6\xae\x7fi\x94\xe7\x10\xb5\xdf\x92\xce\xa7\xf9\xd2K\xc9\x8cI\x91\xe7$\xffD7\xff;\xda\xea'\xe2O\xefl\xc7#\xf1\xaf\x05)\x08z\x04R\xcc\xdc\x86_\xe7$\xffk\x92\xe5\xef\x93i\xe7\x8e(\xbb*}c\xb7:6\x17q+P\xb5\x8dxSRN+3\xb1S&\x94>S+n\x08\xb0\xeb\xfd\xe0\xf1\xf3Z'74M+\xe3\x8c\x94^4'\x12\x95:(T\xc6\xc4\x13!\x97/_\x05I\x9c\x93\xafF\xdfdM\n\x10\x90\xd6S\xeae\x8b\xa4\x88\xa6\x9fWS?'\x08\x14_\x9ft\x18\xf0\xacA-B\x1d\x82\xbe\xc3\xec1\xeb \xb0\xc5\xa8]\xf6\xd5\xe3\x16`\xdcc\x016\x11P\xdbT\xadH:K\xd2%\x1b\xef\x9b\xd9{\x12\x90,\xf3\xd3\xbb~\xfe\xcb\xc4\xbb*\xf0\xcb\x17~\x1e,\x98\x86\x8f'\x8a\xc51\x9ajo\xac\x9f\nk\xe81`\xf8=0\xe0\xc8\x10\xedo\xb8\xfbT\xab?\x1b\x19\xfc6w\xf6\xd4\xf2\x183\xad2\x08\x91\"YN\x93\xa0\x10\xd3\xab J'^{\xe2\xc7\xbb\x84)q\xf4\xb5\xc5\xfeM8\xc7h\x9erf\xe5\x93\xe6{\xaf\xc8H\xfa|\xce\x1b\xde\xfe\xe5\xfal:'\xbfl\xff2\xdd\xf6r\x92\xe5\xb6\xa6\xa0\xf6\x1c\xd0\xf8x\xd0\x8d\xd7\xf0\xa9\x00\xd9\x82\xcc\x8b\x93\xa9\xc1:*\xe69V\x995\xa7~W\x8b8\xedz\x8e\xa5\x16?\x9e\xc7\xb1\x8cK:\x00\xc3Y\xb2,h\x93\xf4\xd2\xc5\x1d\xa5\xd9\xbch\xc5Z\xed\xb6E\xbe\x8c0\x8a\x1c\xda\x8e\xd1;\x07\xc6\xd2{\x8aP(\x1c}V\x00\xf1\x8bi\xfd\xd6\xd6]\x84Q)\xbbv\xd2p\xc8=\x16(\xdc\xf0?\x94db\x02\\\xdd\x0b:\xf7\x95\xd9B\xed=\xa5\xe1\xea2\x0bf\xeb\xc1\x03\xeb\x89\x92\x82a\xf9\xfc\xe9\x0d\xc6\x83\xd2C\xe1\x1c+\x10\x85\x84\xd2\x94A\x8e\xb7\xaf>\xbc\x93\x7f\xb3\xca\xc5\xddE\xf2\x85\xc4\xec\xc6\xcf\xfd\x8b\xd4\x8f\xb3\x19I\xdf\xe4d\x89\x0f_\x87\xbcQ\xba\x9d\x9fG\xd1\xcb$\x8a\x18\xc7\x8bO\x94\xdb\xd7I\xba\x14\x0e\xca\xf4\x9e\x85t\x16O\xde\x91i\xe8ce\xef\xc2%\x1e\x80\xcc\x8d\x9b\x9e\x03S\x8a\xce\xde\xf9+\x97\xfe\xc52\x1f\xfd\x90\x8e\xe1\xd7\x82d\xac\xeb\x1f\xa3b\x1e\xc6\xfc\x0f\xfb\xf2\xfc\xa7\xbf\xbc\xc5\xb5\x8e\x05\xce\x7f\xfa\x0b#\\\xc5\xddG?_\x9c\x93yy\x9b\x84q.n$(\x9c\xff\xf4\x176\xee$e\x83f\xd15^\x14\xb3\x99\xa8\x8b\x82\xfb|A\x08\xfb\x9c\xa2\xa1\x8b\xd4\x0f\xbe\xbc\xe4\x00/\x1f\xb0\xbb\xa4\x08\xb0G\x96\x88\xe7\xe1\xd2y\xcc\x18\x99\x93\xa1(Dl\xd1L\x1f\xb4\x93\xee\xccb\x92iv&\xddK)\xdd\x89\x8d73\xe0\xfb-\xa8,G\x15t\x81\xce\x1b3\xee\x8a\x94`\xc8Q\x17\"\xba\x10'\xd1%\xdd\xee\x1e\xc2\xb5c\xcd\xab8\x91\xa1\xa62\xbcI\x17\x024\x1c\xe9\xb1\x08T\xe2eQ\x18\x10\xfb\xd0\x85\xada\x97!\xafi\xbb\x9b[\xeb\xce3\xd5\x99c\xea{\x04\xc7\xeem\xd8o$xj\xee \xf6\x10\x9e\xd0s\xbf\xb9\\\xea\xee\x07\xf6\xc8PNrd\xb0w\x0de\xb8\xbb\x84\xa2;_\x0fAJ\xb8pG\xe5\xbd8\x0f\xb7o\x8a\xd8\xde;xp\xe5\xe5\xe3B\xd2\xb5\x84\x8c\x1d\xdc\x1d8\xdeL\xd7\xc3=},\xe6&\xee\xee\xda z&\x82E\x99M\xd0\x1e%\xe6&\xc6D\xf6\xc9\x08\xb9\xf6\x93\xa0l\xac\xb92T\x97\x93\xbe3\xb9&\xa4\xba\x98\xf4\xdd\xbd=\xc7\xde\x18\xd4D\x95\xa3\x9d\x03\x87\xc7\xedq\xc1jF\xcf\xd1\x9bG^QR\x8eG\xfb!\xc2\xfe\xee\xaa\x9e\x82\xe3\xa1%\x06\x8f\xb0\xb6\x12\xd1\xc2\xae4>\xfee\xb8\xba\xabPooRK\xfe}\xaa\xa5\xa8\x10\xa8<]L\xe3\xf54\x895\xe1\x18\x90\xdbB\xff\xdb\x9c\xf1Wbl\x9b'\xa5\xaf\x84n\x8e\xcd\xaeK\xbc\x9d\xa1qn\x1d\xed\xe4\xfe\x13!\xf5\x162n#\xb6\x87\x83\xa1c\x1b\xa7\x9a\xb7{@\x11\xbb>\xae\xef\xef\x0f.X~#\x8c/\xf4\n\xe5+7\xd1x\xa9\x88\xe7\x1c\xcf_\x07\xe8\xfd\xe0\xda\x9aQ|c\xa3!Vn\xcf>\xadU\x8ftat#\x89\xddk6e\xb3(\xdd\x01\xc0\x02\xcb\x86\xf1#\x17\x1c\x81g0@\x1e#ET\xf1t08\x18>}:\xda\xdb=\xd8\x1d<}:\xa4,\xc7\x9a4\xfd\xb7d\xb5lM\xa1\x07[0d\xe6\xc0\xd6\xbb0fVs(\x12\x06B\xc9\x0f\xf8\x17\x0cyFi\x90#\xb8 \xb30\x87E\x9e\xaf\xc6\xdb\xdb3? \xd7I\xf2\xc5\x9b\x87\xf9\xa2\xb8\xf6\xc2d\x1b\x15\x99\xdb\xd3$\xc8\xb6\xf1\xe3\xad) \x92)ar\x9f\xd30\xbe\xf1\xd3\xd0\x8f\xf3\x13\xac\xb2\x96:\xa6L\x1bHQ\x8e\xf5\xc4O\xe7\xd9\xe4\x92\x95\x8bi\x15\x9f?\xbd\xa9d\xdfRb\x19\xd8\x84\xa1\xeao\xc4\xea\xc0Qc\xae\xb6\"\x8a`I\xb2\xcc\x9f\x13t\xb4\xcb\x08>\x8f\x93xk)F<%7@\xe2\x9b0Mb\x14\xaf\xd2\x8f\xf1C\x1cG\x06~<\x05\x7f:\x0d)\x80\xfd\x08\x16$Z\xcd\x8a\x08n\xfd4\x0e\xe3y\xe6)n27<,d\x95oHM \xc0\xa8\xbc\x04\x85d\x14\xf6o\x04p\xe0\xa70\x89\x90\x9d\xc2\x8c\xb8\xb3\xd4_\x92\xec\"\xf9\x98\xac\xe0\x84\xceT\xf2\xc8\x8d\xd1\x87\xbe\xe3IC)]CJ\xb7\xeb\x1c\xc9\xd3\xf5Vk\x8bI\xa7x\x03\xedj\xaa\x86\xf7\x998\x03\x1a\x91\x04\xa1\x81\xf4r\xe1\x1d\xd5\xba+\xa4\xc6j.Up\xdat\xb1\x1aW)L\xf0\xd9%\x93\x94\xc6\xcd\xc8\xc0\xd887T\xe9\xdb\xbcu\xcd\xca\x9b\x932\xf2z\xdf\xa3\xdc\xb5_\xa5\x1a\xaf7\xa5\xa6\x0fi\x99\x8ee\xcdJMu2}M\xbf\xaa4\xda\x0bm\xadl\xd6{\xd7\xaaqU\xd7\xd6\x8aa\x0f\xfa\xd7\x8a\xc5;k]\x1b\x9e\xb2\xab\xa2\xae\xc2Od~\xf6u\xd5\xb7\xb6r\x8d\xb2\xcf:\x16i\x0f\xa7F\xb9\xee\xfe\x8e\x8dR\x1b\xaf\x14\x0f\x84^\xbd\xa7\x1fu\xf4\x1dq\xea\xda\x15\xe3WR\xcd\x0c\xcfIf\xe5X@\xd7\x9e0\xea\xe8\xdd\xa4(\xd5\xb9d>\xa6\xe1\x12\x0d\xfc\xfaV]\xedk\xd4\xeb\xe9P\x07\xbe\xd0l/|n\x88\xe5\xa0[\xe2P\xcf\xc4\xa7\xed?\x93O1\x970~S\x16{p\xca\x185\xb1\xbd\xb7\xebx\xec\xbd\x9e\n]\xdf\xfdWs\x8e\xe1\x04J\xc1K9'#\x0e\xd9\xbf=\x7f\xf7\xf6\xeck@V\xfcx\xc5\x97)\xf13\x9cY\xc2\x1f,\xfd\xf4\x0b\x0b\xfc\xc0n9\xe9pR%v\xa1\xe5)\xcc\xec\"\xfe\x12'\xb71\xb0g\x8e\xe5\xc0&/\x85\x95\x9c\x82\xc52\xfe\x89'\xe5)f\xe3\x99b9n\xd9\xe5U^\xa4\xe4<\xf7\x83/\x17\xa9\x8fQ\xc6\x0codk\x19)\xee\x01\xad\x10\x9fe\xb4$\x86\x0d\x14\xc4\x87\xc3\x9f\xd1.K\xe9\xcd\xca_iK|\x0b\xd6 9\xedOj\x8c\xbb\x90\xd6_\x8a\xb1\xb6\xae\xec\x1b9\x1b\x01\xce\xd3&Xc\xd0G\x0c\xc9)e\xd79 .lT\xc1\xfcq\x1e0\xe1\x07\xa3\nM\xd3\xe1(\xa1\xb4\xd6\x8e\x83\xd3%\x8884E\x91\xa0\xd3\x94*>$\xa5\xff\xc8$\xb6wv\x07\x8e\"h\x15\xbe\x83\xf8\xfe`o\x88\x96W\x07{#\xb5\\\xe5j\x82\xe5vx\xb9]\xfew\x8f\xff\xddw$w\xf1G\xecN\xf1T\xe6\xaat\xe9:b{\xd4Hu\x11r\x13\x08\xf5\xb90\x8dP\xa5\\E\x15\x103\xf5\xe6L\x14NX\x0c\xaf&\x92\xc8L\xd2-\xd1\xd3\xb61\xaaeso\x1af+\xca\xc82O\x0fo\xb5\xf032\xfdD\xe6a\x963\x05\x08Z\xeeNbs\x14\x89\xc2&\x8d\xa0\xec\x0f\xf4Y\xdc\xb4\nJ\x99\xaa\xdd\xbb\x12\xcd\x8a\xa1\xa2\x01\x8b\xf6\x05\x8b\x1c/\xbdy\xc3\xcf\xb6\xc6'\xe5\x0b\x17\xeaq\x86\x9a@\xd4\x04\xd4\x14\xe1\xfaz\xc1\x03\xa5\xfc^\x9e\xfa7$\xcd\xc8\xc5m\xf2\x91\x96\xb3\x89w\x95\xfb\xe9\x9c\xe4\xb4+.dJN\x9bf?\x02\xbd\x18}\xad\xbe\x98\xe6\x97\xd9\x99\xc8\x1dj\x14\x03!\x9e\xa3|=\xa6\xd6@\x05\xb8\x00$\xd3M7#X\xd2K3\xfaX\x1d1@]\xe6\xd1\x1c\xff\xcc\xb4H\xd1\xc8\x85\x99s)PH\x95\xf1\xb7-\xef\xce\x8f\xf5 \xa1\xfb\x9a\xafj\xcd\xc0\x1f\xb3\x84\x93o[\xc2\xd0 \xc8U\xdf\x05\xadB\x80\x16\x9a\xa9\x0bw\xa0I\xc6\x04\x1c\xae\xd3\x86\xce\xd7\x0f\x82bYD~^.\x85W\xbcM\x92u\x19pb\xf0\x83\xa8\xd5R\xb2\xad\xfa\xf3/\xe1\xea\x02;\xde\xab!U\x15nj\xe8U\x98\x92 _s\x14\xab\x9e\x95\x9f\xc59I\xdf\x12\xff\xc6\x00\xa6\xd2\xb4W\xd7R\xb5\xed\xaajlf\xcd;\xe3 ]L\xabF\x7fRO\xf1\xe97\x1f\x8d\x86\x93Q\x1fy\xaeyb\xf2\x88\xceC\xdd\xc9\xa8;I3\xc3I\x1aUI\xa6~Ws0a\xcc\xf9\x86\xc9\xd1\xacK\x8c\x04b+\xd9\xa1G\xbe\x92\xa0\xc8\xa5y{\x13\x7fH\xa7\x84\xd3\xedh\xfb\x95}$i\x86\x1b?\xb7\x193&\x13\x94\"\x0f\x91\xdd\xd8\xdd\xf5^\xf5f\x8f\x11\x81n\x0cZ+\xeb\xcd\xb9\xb3\xca\x86\xad\x95-\xfaVfy(\xe9\xf4\xae\xd2$A\x93\xaa7\xaf\xea\xf5\xd6\x17\xd2M\x03\xadH\x1e\x00\xcdF\xd8\xcb\xb3\x1b\x12\xe7\xccl\x01\xe7a\x0c\x89\xa7\x7f\xd3D\xf4\x8dr\xd9\x0b\xee\xde\xa7\xa9\x83\xbfk\x9d\xb2\xa2\xa4\xdb\xfa\x19\x06ku\xe51S@ZOw-\xfcR<\xd6\x1cD7\xdce`\xd1H\xf4I/;\x9a\xe4,\xfbh\xc4\"\x81\xfd\xfe\xe08\x93\x10#H\xe8\xeb\xc2\x94_\x8d\xf3\x81\xd9\xebd\xda0b>\x1a|z\xd3p\xfa\xb1\x1a\xbc\xeeY \x866\x00J\x84o\x0f\xa3|\xa1I\x8b\xb4=\xa3\xe4C\x9f9\x00)6\x84v1\x8b\x0b\x835XI\xfc2\n\x83/\x96>\x90B\xa3\xdcK\xc6\xe6\xf6(\xfe*)\xae#\xd2\xb7r\xa9t\xff&\xde%EF^%\xb7\xf1:e\xd7\xac\xfe]r\xb3V\xd95\xab\xff\xbc\xea_\xb2\xbbj\x90\xf4t\xf6\x06\x92\x8a\xfeu\xc4\x12\xbcbT\xc0\xdc\x05\xeb\xba\xc8s\xb6Cy2H+\x8cWE.?\xc8\xd0\x14K~\x92\x93\xaf\xb9\x9f\x12\x9f?sZ\xbc\xa8[#s\x88K\xf4\xb2\xe98\x05\xa0\xea \xc4\x85\x87s\xe3\xcd\x03\xb3\xceV]'DDJ\xf59\x8bY\xed\xc8b:=\xeeH\x8dx\xa8T\xf2SZ~\x92^\xb6a\x00\x96/\xe8\x11H`=\xb4\xc5\xf9\x8a\xdb0\x8a^\xd5Z4=g\xed\x9bG\xae\xc7AX\x1dO\x81\x94N(tz\x0c\xfey\x14\x95lC\x17\xd5)\x98<=\xe0\xeby\xbc\x15\x12[\\\x14O6\xfcpc\xb4\x82\x89&\xf1\xe5$\xbflC\x8ab\xfcf\xf0\xeb\xc4\x06\xe2B\xf8\xa4\x86i\xd0=\xb7\xb9\xa1<\x87)\xef`\x8f=\xf1\xa0J\x90\xf2\xd4\xe7\xc7{\x7f\xca\xbb\x84g\xe8\xf2\xa3r\xc5H\x83\x9a\xfd\xa1\xdff\x7f(.a\x87\xe8O2\x03|p^\xba@O \xda\xc8\xab\x8dF\x1e\x83\x19\xf2\xccv8D.7\xa4\\\x91~q4\x11K\xf3 \xdf\xdea+\xbc\x99\xebU\x13\xdefR;\xc0\xbe\x05\x1a.X!\xba\xd2$ Y\x86U\xffo\xdaHW\xf5b\xcf\x04M\xe8\x94\xfc\x01d\x88%\xe1\x14V0\x86\xa9\xe32\x80Q\xaa\x0c\x93\xb1\xfa^JP\xd5\xfd\xd2/\xe6\x8b\x9c\xe9\xc2[\xbbyu\xb5*\xd29\xe90\x81\x89*S\x0fc=\x12\x91\xf4\xc2\x8f\xbf\xf4\xcb\x8f\x1d\xd5\xeb,\xef\x0c,!\x0b\x01\xf0\x8d,a#\x85\x97` \xd5$A\xfa\xe8:7!\xb9\xed\x9aK(\x83\xe9\xd1\xd2U\xd0n\xbc\xd5\xaf~1\xfd\x89\x16e\x82\xf0\x99\xf4n\xc3x\x9a\xdc2\xcb\x81\xb2b\x8d\x87%H\x87P\xeea\xe2\x85W\xdcKM_\xb8<\x0eO!\x16!o\x7f\n\xc9-\xc6t\xe5\xfe'?\xb3\xc6\xc7\xc0z\xd1\xdc\x85MffJr?\x8c\xfa\x00\xac\x04\x12\xfb\x84\xb6\xdb\x199\xbb5B\xa6\x0b\x89\xda\x16oCRZIy@\x1bf\xa3\xf8\x85\xe7\x17s\n5\xcc\xa3e\xfb\xcc\x0bT^\x94\xfe\xb7/J\xb5\x93\xcb\xe4\xa6\x13_\x10\xcc\xa7\x1e\xe4o\xe2\x9c\xa4\xb1\x1f \x01\x1d\xdd&\xa8El\xdb\xae=\xc4R\xe5t\xe8\x9bi\xab}\xe1w\"\xd3\xbaF\x9e{\xff\xae\xdd\x90\x92\xbe\xde$#1C\xcah\xd7\xac\xc7?\xbdTS8\xa9\xd5\xf7\xdb?nH\x8d\xbcLVwi8_\xe4`\x07\x0e\x8c\x06\xc3}\xf872\x85\x9f\xfd\xdcT\xec\xefdz\xcb\xea\xabl\xc5\x02\xbaz\xd1E\xb0,\xff\xe3\xf6\xffQ}\xdc0\x1f(\xfa\xcd\x05u\xab\xd6:)\xa9D\xbd,\x91G3t\x02\xc8\x14\x16\xe1\xd9\xbe\xa5\x10\x17\xcdh\x95-\xe1,\xc4\x86\xafl\xeat\xf49plo\xcc\x9f\x0c\x92\x90\x85\xcbaR3Q\xa5$\x958\x81P1Y8\x81\xd0\x01\xc2\x9c\xfe\xda\xa8\xb32}L\xddb+u\xca\xaf\x13\xcf_\xad\xa2;\x9eP\xa9\x95\xbf,+\xaby\xc3\x86z\x82O\\\xe5D`F\xa0\xd4\x11\xc6\xc6\xa9\xc8\xcb\x93rG\x17\xde\x1f\xff\x9b\xe9G\xc2\xf2\xceZ\xd0\x1aKR\xc6c\xacy\x814\xeai0\x92\xd2\x85\x0eGk\xd7\xb4\xa2-x\xb2\x9e\x9e\xfa\x81C9\xc7\xd8\xb4(\xcb\xade\xf7\x95T\x9e\x0f\xf6zV\xc8\xdc.\xb8\x0f\x8a\xe3\x9e\x1b:\xd5\xf3?\x81A\xaf\xda]\x16*\xbc\xde\x9a\xe8i\xea\xc7\xd3diw\xfan\x18\xbak1\xf36\xdb\xf2\x82$\x0e\xfc\xdc\xae\x85\xc4\xc74\xc6cJeX\xce\x95\xe5\x82\xbd\xb9\x19\xc3&\xa4Ne\x0e\xb1\xb3\xff\xf8\xe43\x8dh\x06<\xb5e\xe39Sp\xec6\xe6\xcb\x07\x83\xd5|\x05\x8d\xdcc\xd9o\x87\x83\x81\x03\xa7\xfa\xd2\xd0-ZF\x94V\x06Y\x0d\xe9\xf2\xdd\x188.\xa46\xe5\x9d\x13\xa7\xdd\xd0\xdd\x14\x8c\\\xb6v\x7fh\xb4g\xcdInQ\\\xc1\xacW2q\xd7t\xfc\xb2\x9e\x07\x94aKR%\xdc\xb4\xc9\xf3\xcbBw\x0c^7\xe5\x0cE\xb2i\x0f_P\"\xf1\x11KTsP\x89\"\xeb\x9a\x17\xc7e\xce\x88F\\\x9f>=\xc1\x9d\x11\x9002l\x9aY\x94$iW\xef\x0c]\x0b\xb3\xf7\xfe{\xf4\x81\xd9\xc44\n\x03\xe6\x12\xc3v}\nc\x88\xd7O\xe8!\xe1\xa4Q\xaf\x87J\xe3>\xc3\x99\xa6\x91\x1b\xb4\xc4qn\xf4\xc1 \\R\xcaK\xddh\x98\xd6\x88\xcb\xd4\x93\x9d\xfe=\xd1\xb0n\x9aO\xea\x9d\xa91p\xf2\xa5\xf0\x8c\xba\x05\xd9\xe7\x0c&\xd5\xa9[\x92ofC\x08X\xe3\xd05\xef\x97\x7f\xa0\xe7\xaa\xd9Gr_\x9f\xc8b\xcf\xe4\xc3\xd9\x89\x0eR;Y?\xffZ\x97\x98gO/\xe69\xd0Iy\x98\x87Y\xf3\\\xc4A\xd5\x1f3\xbd\xff\xb0;\xc7\x9e\xd9\x14.cF<\x1ao[\x96\x94\xdeGk%\xcb\x82 \xb9\xd4\xb9\xf7\xa2\\\x7f`\xf0\x06\x8f\x1a\x11\xd8C\xb3\xe7\x1cH\x82']8`!^\x9ad\x97]\x84\xaaT\\\xe3%\xe72\xef<6\xa6f\x02\x0ds\xc21X\x1f,\xd8\x84\xcdMM\xf2oq\xddj\x93l@\xe3\xdc\xc1'\xad\x92\xf9\x99H\xeb\xa2\x8dfB\xaf\x7f?\xfb\xdb\x184\xf6#\xef\xcf\xce^\xe9\xd3\x17\xce\xfc,\xffw\xa2\x86\x873mg\xcc\x1a\x90\xc8A5\xb5n\x0b\xcc[]\x9f\xb6\xf2\x14\xacs\xca\xfdX\x1f\xd1X\x9f\x98e\x1d\x1b!NOk\x04a,\x97\xd5:\xf4\xdaj\x97{lT\xd4\x9bu\xd6R6P]_\xc4\xa5\x9fLq\x86N\xd2K/lNl\x13\xf2s\x92\xffL\xfc/\xeb@\xfeQ\x00\xd90\x84H\x84&<6\x86\x7f\x088zi\x05\x92\xf8uJ\xc8o\x9dBn\xa8*\x8f\xd0\x1e\xd4\xa3\x8b\x9b\xfe\xc2\xd8vO\x9e\x80\x00\x13\xfd\x1d\xd8u\xb6K\\:\x02\xb0\x8d6c\xfc\xee\xef\x0fe\xb8\xe77\xd9Y\x19yC\xfb\xf5Z\xb4\xc9\xef\xdf\"]\xd6W\xadw{\xcf]\xb0\xaa\xc8F\x0d\xf7w\x8e\xf2\xe4xG\x947\xf7^\xbe={\xfe\xe9\xea\xc5\xdfPs\x847\xf8\xeb\xfd\xd9\xcfW\xcf?_\xfc\xf5\xea\xecS\xf5\xe0\xfc\xe3\xd9K\xfa\xe0\xea\xc5\xf3\x8b\x97\x7fm<.\x1f\\\xfc\xf5\xd3\x87\x9f\xdfkJV/J\xc5\x05\xedCLn/(}\x1b\x9f\xa5\xed\x9eg|u4\x97\x0e\xc5A\xda\xa8\xcd+\xff.J\xfc\xe9\xb8%\x83$\xd4\x89y\xb5C\x18/\xf3[z\xa59@\xca^\x91\x8e^\x9c\xafH\xf0\x8d@\xc9\xbe\xbd\xf9o\x06\x81&\xbe^\xef>\xbf\xba\xa6;\xd7j2\x01\x0d\xc4]~\x9c\xadH\xa0i92\x1f\x02\x8dO\xb5\xad\x06\xbac\xa5\xfc\xd4/\xf2\x85\xa6\xd5Y\xedT\xc2\xd2\xb8\x80\x95b\xab\xaa\x18;\xc9\xaa\x92W\xd7w\xcc-\xb37_\xb6\xaf2X\\\xc6\xaeK\xdcY\xba?3\xa5\xc0\xe5\xda\xe1C\xdaH\xed\xfb{\xb4\x0fa6?\xc4\xa1\xef*\xeasMfs\x7f\xc7\xe1\xec\x96\x0b\x16s?5E\xaf\xeaE\x98H5\x0f\xf4\xee\x88\xfb\x0d\x19\x0bO\xf7?\xd03\xb0\xfb\x03\xbd\xf0e\x7f\xb0\xdb7\xdc\xb1\x10nli\x98\xa1\x98[U\x01W\xd3\x0c0\xe6\x16W\xe2\xd6\xd7\\\x92r?c\\@\xb6s\x04\x9b\x9b9\x1cCl\x0c\xb3\x99\x1a3\\3\xafa\x92\xdb)f\xcfK'\xc3\xcbv)\"\xbd2\xd9\x0b\x98\x9f@\xa9[{\xccm\x0fO \xa9?\x9f\x13\x96\xfc\xaa\xf6p\xe1\xa3\xe5J\xfda\x86%\x8b\xbauK\xb6\xde\xdc\x0f\x07{}$c*\xd8$\x93\xd0\x13)_x\xbc\xb5u\xd4\xe4C\xb8\x94~\x12_\xb2\xfc\x83\x92\x19\xb0\xf6\xac\xd8\x1a>z\x8f\x0c\xba\x93\xd1kFS\x0d\xe4\xeaj\xea\xe7\xfe\xd5\x95\xb6_\xa9\x9d;p\n\xf1D\xc3:\xe7\x94u\x16\x8f\xc7`-\xfcla\xd1\x134\xf6\x96\xfe\xea\xd1\xe31\xb8C\xed7\xe2\xf2\x89\xf0v\x06w\xa8]\xfd\xc6\xec\x11\n\xd7\x84\xeeD \x9dlA\xde\xa5!\x85\x86.:\xc6)\xf86*\x93\x12\x9b\xe0\xba tg\x89T\xddc\x94\xb8v\xc0M\xee\xdbZ\xbd'\xde-\xb9^\xf9\xc1\x97\x8fIt7\x0b\xa3\x88\xab\xe4\xa7d\x95\x92\xa0\x99\x17\x14=\xdeW~\xbe\xc8\xb8=I\x15z\x99\x7fY\xde\x9e\xb0\xf4\xb3z\x06\x8f\xb8`\xb1dM\xda\xd8f\xb5p\x91\x9a\xf0tk\xc5>#^\xd4x\xad0\xd6\xad\xfd\x0c\xffG\xfa\xa8\x11\xc64\xfa\xd8\x9c\xad\x13\x18>R_\xab\x9a&\xd4\x07@w\xdd\xf6\x7f\xda\xa7\xe3\xc1\xfdd\xb8\xf5\xf4\xf2\x97\xe9\x8f\xce\x9f\xb7\xbb\xb6\x88\x01\xa3$\x95\xb1\x8f>\xef\xfb\xc6\x86\xfd\xff\xb3\xf7\xef}q\xe3\xc8\xe20\xfe\xff\xbe\x8a\xc2\xe7\x9c\xac=\x18\x03I&\x97\xce\xb0,\x03\x9d\x1d\xce\x06\xc8\x0f\xc8\xcc\xce\xaf\xc3\x971\xb6\xba\xdb\x1b\xb7\xddk\xab\x9b\xb0\x9b<\xaf\xfd\xf9\xa8$\xd9\xb2,\xd9\x86\xb0{.\xcf\xd7\x7f@[\xd6]\xa5RU\xa9.T9\xd3\x18\n\xc9`\xc4*{\xf2\x04\\\xd5EI\xde\xf0A\xb2\xb1\xc7M\x87\x0b\x1e]\x80xX\x80\xc0\x1f`k\x97\xff\xfa\x0f\xf4e\xcfi}\x8c\xc5\xfb\x80\x99\xd2]L\xf5\xcd\x82\xed(\x17\xfa5\x8a\xe9\xa2\xf9z\x8b+\xd8\x18\xf1\n\x86\x03P\xba\x82*\xae}\xc8\xa1\x83\x90\xd2\xb1\xa1`\x1f^Y\xc8\x9dg\xfa\xfd\x99 w\x9e\xe9\x0e\xc6\x05V}\xa6\xd3\x99\xa5\x99*M\xc5%\x81^\x0d^\x18\xb9\x85\xd7&\xa4S7\xf7\xdats\xea&Zj\x8c\xa9\xa1\x96:\xc7\xd4\x95\x96\x8a\xe1\xdd\xea%q\xb9\xe1\x91\xe2m(\xfc9!\xb7W\x08vk\x97\xbb\xe3`\x7fQ\x97\x8c\xbb\xacqw=\xae\xd5\x947\xca\x9e\x84K\xb5X\xee\xf1\xd01j\x96\xf7E\xbeHJ\"\xb3%\x01\x0f*N\\^_\xd8\xc8|A\xa8Z_\x88YV\x8d,\xbf\x90\xf0\x93\xd6\xec\x8ao\x0fw=\x08ZK\xe3=_\xa62\n|c\\9r\xcf6\xfd\xbc\xd8\x9d\x8b\"\xf4\xc1>\xa4n\xc6\xdd\xdbh\xd7~\\\x81P*)\x18/\xf7\xf1Z>\xea\xbc\x967\xac\\\x9b\xa6\xc5z\xa6\xc3\xea\xc1\xe9\xb4T\xb1\x1cVE\xb5\xca\x96j\xe2a\xd5\xe0\xfa[\xaa\x98\x0f\xab\xa2\x82\x8fFn\xa3\x8a\x81\x8235\x05\xf2AV\x0d\n\x89\xfd\xecu/\x95e\xbf|\xce5\xaeG\x88nF`\xb4%\x13}W\xb4arq\xaa\xf49F\xb4v\xbf%T\xe1\xd8\xf2\xd5\xce\x90Au\xf2\x0d;\xdc\xb9>\x1e\x82\xe8[\x97x^\xcdJ\xc8x0l\xf3f\xf0\x03$o<\x94i\x91I\xee\xd2I\xb6\xb9y\xe5]\x19\x07\xcf\x8d\xf2\x90\xd7\x16\xf4\xa8\xa6_?h\x02\xccr\xfb\xfaZ\xb45\xb4\x0d\x1a\xacIQ&\xdc\xef\x92PE\x92IA\x92\xc5\xe4\xf3\xd9\xd4u\xd6;\x81\xe3u\xe7\xd8e9\x9e<\x11\x02:s\x8eW,\xcf~\xcf\x85cF>\xd3\xcb$\xd2n\xb1z\xf4u\xfaUX\x18V\xad\xd5X~\xefDa\x9a\xde\x84\xd1'\xa7\x92\x1eb\xf8Y\xb8!\x8aZ\xcb\xef-\xaa\xc5ka\x07\xc7c(\xb4\x94\xb3\x8de$\x8e4\x06F\x92\x0f\xa2\x85\x9d\x1e+_\x8b\xc2\x97|$*\x08\xe4LZ\x8d}\xa0G}K>\xed\x1a{ie\xf5\x11\x1aT\\]\xdb\xa2X&\x1f=\x10\x89\xfat\xe9w\xc9\xe7Q\xbbjU>\x93Ooo\x9f\xffk{k\xd5N\x93OW\x87\x07\xd9b#.D\x12SRS\xee\n\xb6\x90\xb3 \xb9\xb9B\xc8\xd0\x9e\xdc \x1e$\x93ps\xf3\xaaa\x8d\x10\xf6D\xe5\xfd\xe6YQ\xcd\x03zt\xfd\xbf\x0e\xbd\x81\xd68<\x14\xe3\xd5hL=wU\x07\x89\xdf{f\xcdx\xbb\xa6\xb5\x89\xcc/\x84\x97E\x93<2\xe9;\xb2\x92\x0c\x91\xe0$\xbb\xc2s(S\xfc\xc2u\xd9\xb5Y\x84\x10y\xf5]\xa9F\xfe\xca\x83i\x91/\x00\x9d\x83\x85i\x9aG\xca\xcf\x0fY\x19NI+\xe1\"\xcdo\xb5#\x81\x91\xa3n\xe2\x16\xdc\xa7\x0c\x0d*w\x94\xa1\xe7C\xe2\xe6<~b\xc8\xdb\xea\xa7G\xf0h0x\xce4\x1f\x0c\xceA\xe34\xc8rq\"\x88\n\xcc\x94\x8biRX\x0f\xf9\x1c\xdc\xb3\x8b\xbdg\x97\xd6\xc5\x8e\xeeI\xb0j\x9b{6I\xae\x0d\xc1\x14\x98\xc2\x05\xc2>\x14\xc14\x91Z\xc1\x8c\x86\x13\xaf\xcaoT\xb07\x8c],z\xaf\xf2\xe9?a\xec\xf5\xd2\x98\x16E\x01\xbe\xff\xc2\xce\x15\x01\xeb\x81`G{\x05\x87\x83h=u#e\xee\x8b\x97\xdf{\xae3\xcd\x8bq\x18\xcd\x9dA\xa8\xa8O\xe3\xf5\xd9\xaeY\x10\xf1\xcc\xe2\x06r\xf7\xb5.)\x10\x82\x88W\xaa\x18\xd7\x1dL\x8c#R\xc3\xf8$+T\xcfL\x8d3\xdb\xbaC\xfe\x01\x9e6\\\xe5n4\x84\xban)\x9c\xc3r\x97\xb1D\xb0/\x0c\xc2\xcb\xc6\xd1\xf5T\x04\x8c\x94\x8c\x0dFO[\xa1I\x13\xe7\x0b6\xd0n\x08\x93\xc3J\x7f\xd3\x89\x1c\x11\x93KI#2\x04\x97\x92v\xebx\x9e\xcf\x0d\xe1\x1b\xa3\x82Z\x91\xc6\xe0\xc6\xb0\x19\x96%kgP\xc5\x9fI\xfbs\x1d\xa2G\x8fK\x0c%\xdb\xfen\xee\x96\xac[ld\xb5x\xf6\xab\x17\xcc\x86\xf2\x83b\xa9|\xdd\xef@u\x0di^\x15\x945\xf1@\x06\xe6\xc5I\x1b\x8b\xf3LY\x1c\x86\xceh\xa5\xec\x03#H\xc4=\x88\xf8\x8e\x16\xe8\xcd\xef\x19\xb7qS\x1a\xe5\x1fqA\xd3\xba\x0f\xca\x17\x0d\x18$ \x945 \xac\x0c\x80P\xb6\x00\x01},\x98\x16\x1d\x05\xd3\x86%G\x9bd\xc3J7A\xc1\xa0\x01\xa4\x82B\xa9\xafv*V;\xf5D\x0c\xbd\xe8~(\xa9\xc6\x12\xadp\xb9\x02I<5_\x01={f2\x18\xcb\\\x8b\xb0rwW\x17nrt\xb7\xfbB\xc7M\xdc\xa7D[R\xa9\xaa\xbd\xb8TS\x82\xd5\x87\x88\xbe\x05\x97&\xb8\x8e}\x98\xfb\xb0\xf6a\xe1\xc3\x0c\xf6`\xa9\xaa\x89\xdbhU);n}dD\xa5Y\x94w\x87\xc2\x06\xde\x11\x06\xd9Oa\x04:\xbae\xcf\x0d\x92\xe0\xcd \xb6q\xc6\xb3\x1e\xe3\x8e\x84r8i\x99v\xb0\x1a\x13wf\xd4\x19E\xba3\xe6\xa6\x072F\xef\x1b\x88\xe1\x0fp\xf3\x06n67\xcd\xd46\xab\xd1]\x08G\xacwn\xe8\xce\x91T\xbd\xb9\xf2\xf0\x8em.\xee\xd8\xee\\L\xf3P\x06\x81\xb7_\x0b\x1e\x0b\xb2\xba\x9a]4!\x1a\xcd\x7f\xcd}\\\xc3\x1eTq'\xde\xc0\x066\xb9F\x8e\xc3\xf5\xbc \xce3b\xb8\x14\x06\xb5\xb3\xb9\xbb\xf6\xe1\xce\x879\xb7\xc5\xe3w\xc4\x03\xba\xf6\xd5\x0b~<\x1f\x1f\xfc\x99\xc7j\xa5\xc1\xf9\xf8\xf2\xc3\xf9)\xec\x89\xdd\xf6\x8d\xe7\xb3\xd5'u\x11\x1c\x8d\xdf\x1e|xw \xfd\xfe\xa9ww^\xf5\xf8\x9d~)\xfcL\xbf\x12\xff_\xdf\xdb\xdf\xb4BR<\xb7\xdcm\xec\xe8\xdb<1\\\xf1\xdc\xdf\x94\xd1rH\x85Fm\x8aD1pD\xee\xc5\x0d\xb1\x18\xddd\x83\x00\xad6a&\x1f\xec\x96\xd6+W\xa8\x869O_\xeaGCU\xcchc]}\xb5-\xdc\x0e\xa7}\xd9\x7f\xdep\x05\xa7\x07\x82\xc9\x8cxp\xf8\xda \xb39FQ\xde\xe2(\x10\xa6I\x16\xa6ig\xd7:;\x0eP\xb9&\xeb\xcf\x08r\xa4Q\x9a\x97b\x00\x9d\x05\x9aF\xe6\xdcu\xc5\xe0\n\x86\x0c\x0e\xba\xe6\xde\x93\xa8\x15{\x1a@\xba\xd2\xb0\xd9)\x81d-\xb0\x11s\x03a\xdbu\x8b|V\xed\xab\x05\x90\xd8\x81\xfb\x83GM?\xae\xff\x93U\xbcNh\xe7u*\xcffA$\xa0\xf8\x80\xbaa\xa7+\n\xae\x01\xd6\xa3T\xc5\x88,\xe7\xc9\xdfV9}\xd3\xe1\x8b\x83=7\x05 ?\xd9\xb3\xf0\xd6^\x0di-\\,\x1f\xa5\xb1\xd7C\x1a\xfb\xb7\xcfO_>Fk/:\x14\x0d\xa1j-}\x94i|\xd1\xa3b\xc8\xdb\x9a}k[\x83t\xd8\xa2<\xa3I\xb6j\xdf\x0c\x81\x95\xc5\xe3|0j\xf6\xbb l2\xfcX\xaen\xf8\xb5\xb5\xbb\xf2!\xf4\xe4e>\xe3@\x19+\xbc\xa9#:s\xe5b\xaf\xca\xfa\xf7Y\xc9v\xe50\xd2C\x0c<\x92\xbaH\x83\xea2\xfa\xa67\x851\x0b\x852\xb5\xd9@\xaf\xcd\\\x96\"\xbf\xce@ [\x92\x96FId\xb8\xb5\x9d\xa2p\xa1\x99\xb6l\xa3\xabvx>\xf6\xd0|yp\x93\x17t\x04N\xc8\xfe\x1b\xd0\x1f\xcb\x92%\x0b\x0c\xe11\xce\xe2\x11\x94\xae\x13\xca\x04\x92\xc5\\\xff\xb9\x99\xd4]\xcb1%<\"H\xb3\xaeD&\xeb5\xd6\x1f\xba\xeb\xbd\xa0!\x1b\x89Zg\xc9\x92\xf4\xfax\xa2\xb1\xae\x1f\xd3U1\x02\xe7&]\xe9&\xed\"\xc3a\x98\xbdO\xc3\xbb\x118Q\x98-\xd3\xf0\xae3\xdb\xe5\xbc\xc8W\xb3y\x9d\x9b\xf2\x04K\xa1y\x98\xcd\x08\xcb\x8c?,\x99RT\x01w\"\x8c e\xce\x92/\x96y\x99T\x0b\xe6Du\x82uu\x94Bb\x1e\xd5b\x1dS\xa6\x14\xfc\xb0\x8cQ&\xa0\x96\\a\x9a\xadhF\xc9gzB\xb2\x15\x16\xc2\xb7\x05\xc9V\xb6\xecK\x9c\xf8|i\x9b\xf5\x15v{e\xe9\xa9\x12\x1ek\x04N|\x93v\xcc\xe1Q\x11\xceX\xa6\"\x9c\xd93\xf0\xd9ey\xac\xd3\xca\xb3QRT\x19)\xb1\x80\x16f\xfd\x9cP\x99\xf3sb\x1bG\x11\xce0\xc0\xa3\xc8\x99\xb2\xdf\xf6\xacg\xeb\xaa\xf5|\xdd\xd5\xb8\\w\x96\xb3c\xc1\x8f\x8a|\x89\xb9\xf2\xa5%\xc3\x8ao\xd7\n\x9ec\x91\xd0\x05\xd7\xe3\xc5\x92&\x84\xcd'\xe1\xbf,\xd9\xb2\xa8\xb8[R\x9eQ\xfe\xb6e\x8dE\xb6\xd8\x9a\xa5(r67\x84\xfd7gy\x9bG\xabr\x04\xce\x94\xfd7g9\xce\x96\x08x<\x02\x981\xcb\x9f\xc9\xddQ~\x9b\x8d\xc0\xf9D\xee\xe2\xfc\xd6\x82\xca\xfeL\xee\xde\x17\xa4,y\xbe%\xfbi\xcd\xf8a\xc9s\xad,\xab\xf0\x0e-\x93\x19\x0f2\x92f\xca\x8cs\xe9\xca|Bh\x18\xab\x05\x16\"\xc1^H\xc2\x0c\xcb\xdf\x013U\xe0\xb8\x118\x0b\xf6\xdb>\x07U\x108\x99\x95qW\x1dY\xcfp\xee1gn\x9b~\x9e\x91\xef\x03\x9e\xd3\xba\x11D\x988\x99\xd16\xbb\xef\xc3\x121\xdd\x92\xfd\xb7eY\x95<\xcb\xaa\xb4e\xe1G\x89\xfd\x1ca\x19\x92l&\xf2$\x99\x05\x19\xbd/\xf2\x99\x80\x9b\xa5\xf8i\xcex\x1eRRm\xcb\"\xa4\xa4kKr \xdb\x08\x9c\x12\x7fX2\x11\xf2 \xb7Y\x89?\xec\x99\xf80J\xfe\xcb\x96-\xe5\x91=\xab.\x962\xa5\xb3\x9f4LS\xde\x07\xfe\xcb\x92mU. b\xec\x92\xff2g\xbb$\x9f\xa9\xdc\xd1T\xfe\xb6dM\x16\xa4:\xf3h\xb2 ]\x87\xdde\xbe\x8a\xe6\x87a\x16\x116\xa5\x94\xbdE\xf8\xd6\x91\x9d\x1f0\x98\xd7\xde_\xf6U\xec\x17\xcci\xdf/\x98U\xeeX\xcc\xdb\xb1e\xf1\xda/Q\xa9>Z\xa5\xd4d_3\xcdX\xd1\xcfy\xbaZ\xd4P\xb7\xc6\xd7\xae\xf5\xfc%L(\x87\x96[\xfe\xcb\x92mNp*o\xd9\x7f\xcd\x04\xb4Y`\xcex(\x1e\x85\xa6\n\xa2w|\xe4\xc0\xa6\x90\x18\xb9\x8d8\x04^P\xa6ID\xdc\xa7^\x93\x1dX\xa3j\xdb?\xbe\xa2VE\x93\x94>'2\xd2Z\x1d\xa4\xb0}\x990 p\xad\xa9\xa2~\xf99:\x8f\xf9)\xcc\xe2\x94\\\xe6\xcbwdMRw\x1d\xcc\x1b \x9e\x0f\xeb\xa0]=\xec\xf5{ll\x8e\xa2$t\x9ca@\xcc\xbe\xae\x19\xdb{\xf2\xc4\x98\x1e\xd4\xd5\xb6\\\x01j\xb3X\xb6\x9b7\xb5.5\x88\xdc\x0dc?\xbe|\x01\xe3\x87\xa0\xaa\xdf\xed\x0e1\x97b\x81\xcb|\x80S\xd1\x86\xa4\x98\xfa\xd0\xed;O>b\x00=j}\x95\x16\xde\\D\"\x99\xcc\xaf`\x0f\x96\x9b\x9b>D\x13\xf6&\x82\xfcV\xaf\xed\xe5\xe6\x11 `\x0f\x92V\xc0\xc6#\xc20%\xc9\xa2\x84\x94\x13r\xd50f\xcb\x87\x08\xb3P\xcb\x9d\xed\x1c\xabu[\xa1\xc7\x99\\\x89X2+\x1e\xa7\xd8\x91{\x9d\xcb\x86Wht/v\xbd\x07\xfbfp\xa2E\xb8\xfcqu\xc3\xd6\x11?(\xb5\xf8\x12e\x08\xb3\x9d\xd4\xe5G\xfd7\xd5\xa8\xd4 \xaa}@%Gg'H~\\\x88\xf3\x96W\xe4TGqc\x02\xe4\xa1\x0c\x1b;\x9d}\x16\x01o\x95\xf6\xaa\xea\xeb:\xee\xd9cC\x0d\xc6\xc2\xbf\x1c\x9f\x1e\x9d\xfdr\xfd\xd3\xc1\xe9\xd1\xbb\xb1\x1c\x0bR\xd4r(x\x86p\xbe\xbb\x1e\x9d\x9b\xba\x92\xde\x16\xa3s\xef1\xbc\xb7\xa2dUEf\xc1}\x96\xf2\xd8\x17_\n\x01 \xf3\x04\x90`uI\xe6\x08\x15\xd7\xc1\x93\xd5\xecO\x92\xf5\xf5\xa8U\x81\xec\x10\x96G\x1a\x97u\xca\x87\"\x10\x1f\x85N\n\xbeck\x98\xc0\xba\x1d\x9b\xf7\xd6\xb0\xb6W>\xc4\x93\xd5\x15\xef.n\xc7\xbdVHy\xe8;.\xf4Z\xfb\x03\xd5\x80b\x867\xa8\x9f-\x85bK7\x1aK\xfd8\xfdhB\xcf\x90\x8e\x88\xc86<4\xe9\xfbpF\xfe\xf2k\xcfA\x86\xb7\x17\xfa\xad\x1e+\xdd\xe9Kz-\x9c\x86\x9a\n\xba\x0e\xa2\x19\xfcm\xd2\xe3\x92\xf7$\xaa\xd3\x06UQ\xa0k|$+W\x85\xc0`?\x87\xe9\x8a\x9c\xe4YB\xf3\x02 \xba\xdeq*\xae.\x90T\xc0K\xdcu`\x984\x97\xed\x80\x0d\xcc\xb41\xed:|\xd8$\xac\x82\x82L\x0bR\xce\x95~\x95\x96\xfb@\xd3R/\xf8\x18\x94\xd2\xe8\xebzZ\x87\xecR\x1fm?To_-\x06\x08\x83<\x904\xc5\xd4Ur\xa5\xd1P\xb4\xe6\x94k\xb4^\x17\xab\x94\x94\xd7\xd7\x0d\xdd\xf0\xeb(\x8c\xe6\x04\x13-\xd7\x8b\x85Bp\\_O\x93,\xc6\xdcv\xaa\xa5\xad\xf7W5-\xc8\x04~\x8d\xb7\xb5\xfb\x06\xa8\xd5\xb1`\xb3\xe0ds3\xbbB\x85\x01\xae*s\x0fO\x83\xbe6\x82(_,\x93\x944\x07a\xbaB'\xa2\xfb\x06\x96\x83M\xa1\xe3hT\x0cQ\xc6)\xecI\xddn\xda\x8e\x04\x84\x13\x98\xfc~\xe3\xf5\x18\x07\xa8\x95\xa2\xae\xfe?\xd0\x07q\xaby[ OY\x92\xc7\xda\xe2\xae\xf3:\x86oD\xa9\xec\xc9\xd4)p\xd1!X\x86\x13!\x07G\xf9\xe0\xbe|\xd1Z\xe5#\xcd\x82if\x88M\xdd\x1a\xad\x0d\x1cB:\xd0\xf2\xa5\xa8a\x99o\x01\xa3\x11\x1a^\x12\xb1\xbe\xea>\xa3\x19Doq\xb5\x81B\xb5\x8c\x16V\xd1\xef\xc3\xa2$\x05\xb0\xe9C\xc3\xb2i\xbeB~\x1f6A7K\xd7\xf6Eq\x15L\xa5\xf1g\xebK\x98b$c\xfc\xff\xe5\xcb\x90]\xdf\x9c\x9d\x1b2\xcd\x0bb4\xf7k\xb9\xb1ZK\xcfx\xbd\x93\x94Hm\x9c\x8eI\xca\x1fs\x92\x82r\x89l|\xee\xc3\x8e\xc9\xf5!C+F\x13R\"\xd9K\x93C\xc4if4/\x0dS:\x82\xa4\x9e\xf2\xd6\xb6\xbb\xd7\n\x84SJ\x8a\xff=\x0b\xc0o~\xff\xa7-\x02\xc34\xf7@\x13F\x04\xa0M\x08\"/\xdb$\x18T[z'\xc10q8 \xc5cM\x02\xefA\x9f\xf2\x17\xcb\xd0\x0cJ\x8b\xae` \x8c\x00e\x06\xdc\xe3cs.\x86\x1dy\xf5Y\xd9\xd2\xa0\xe7\x87\xd9\xb0j4\xba\xa4\xda%fU!\xca\xce\x1e\xc3N8g]\x87E\x98\x853R\x8c \xc9\xd6a\x9a\xc4bg0\"\xc5\xb4'\xa0\x8d\xbd\xe9\x95:*=\x84\x13\xe6\xbe\xef:\xc5I\xd9Z(}\"\xdc\xeee\xf2\xfe\x17\xcc\xe5\xeec\xcc\xe5\x8cP\xde\xbb\x01jo\xc2\xcb\xc1\x9e\xdeB\x0d\xef\x15\xe1\xe9\xb6\xfa1!W\xda\x1e\xfd\xea\xdf\xdf\xf3{\xbf\xbb\x93\xce\xbd\xbb\xe6nC\nn1hq\xd6\x8e\x16\xc0\xc12/O\xc2\xcf\xed\xaf+\xf9\xb5\xfd\xa9\xc4OIy\x9c\xbd\x0boH\xda>x\x94\x8f^M\xc7\x9b\xf2\xa5,\xcf\x87l\x11\xd2hN\xe2\x8b(_\x92\xb2\x8e\x0dj\xfc\xbc\xb5\xe5\xb7*C>\x05{\x8bf\xf5x4)\x9d\x10\xa2\x14F\\\xed\xbe\xe1\xa3\x82\x1f 4z\x9ag\xfdz\xcd\x0fN7\x07\xa1\xca\xaf\xea\xecaq\xcf\xf3 \xdb\xdclCr\x15\x82\xfb\xf53\xe1\xdb\x11\xbd\x04\xb2\x9f[[V\xd2\x99\x0b{\xcc\xbc+\xea\x80\xb5\xbe\xb4u\xabP)\xb7$EP~J\x96\x97\xf9'\x92\xd9\xc3\xef\x80\xa2\x11\x0f\xfb\xdc\xc5\x19_l\xcb\xa4\xc3\x1e\xf7\x0cb\xfd\x9a\xc1\x16\x9ft\xbe\x06+}\xfeK\xff\xe1a\x15^\xdb\xa2`r)\xba\xeb\xfc\xdd\xf1\x8cq\xa5\\%\xb6r\xa7V\xaa\xd4w\xbd\xa8=B\x15\x02\x8f\"\xc1C]\xc7a\xc3\x17\x0d\xf6j\xa3\xa9\xf5\x0f\xd3\xb8m\xc8IL\xa1H\x9d\xc30\xfb=\x85(LSX\x10:\xcfc\xc830b\xd4\x96\xcb\x8d{\xcew+&\xa20S\xd8\xf5\x02)x\xd2no\xd0a\x87\x08\xe0\xe2\xe6M%\xf5^\x1f\xa4\x96\xc5H`\x1f\xb4\xaa\\\xf4:\xaf\xd8\xb1\xdd\x7f`}\x9d1 S\x14\xd5\x15jD8\xcdW\xb8\xc0\xb6y\x1b\xc1!\x8dd\xf2\x97\xedr\xedt\x19\xae\x9c\x87]+\x10\xe1\xc8\x18\xd3^\xdd\x9e\xa1\xe6\x8eJ\xd1?\xc7\xd9\xf4\xfeun\xfcs\xbak\x83\xe4<[\x93\x82\x82p\xfbKsX\x16\xc9\"\xa1\xc9\x9ap\xefON\xdf.\xd3\xd6\xb9\xe9\x0c\xec\xfb\x9d\xfb\xfa\xe5\xd0\xadpd\xd4w\xdd'\xb8\xf0\xf4\xf5B\xd7\x1f\x0dE\xfa\xae\xe7:\xc7\xe3\xeb\xf7\xe7g\x97gz\xd0\xd1U+jA\xe3s\xd9%\xc8\x02)\xcc\x12\x8e\x99\xdc\xdd\xef_x\xae\x93L\x8bpA\xf4\x86\xe4S\xe0\x05\xa0\xcdS+\x8f\xc2\x12\xa0I\x10#7\x97ix\x07{\xe0dyF\x1c\x1f\xa3R\xecx\x0d;\x17\xee\xa4\xb0,\"\x96\xed\xaf\xe1:\xe4VE#\xc7\xe7\xa4(\x0dP\xe3/\xa3\xbf$Y\x9c\xdfV\x08\xc3\x0b\xf2%\xc9\\\x1e*\xa0H(q\x9d\x1fx\xd1?T\xc2\xec\xb7{\x1c\xbf\xfe\xf0q[|r0?\x1a\xbc\xba\xc2\x95\x14 \xde\xbe\x81bk\xeb\x8d\x07\"<\x8b\x12oe\x92L\x8a+\xc3\x8d\xa4\x00\xcc\xd2\xd5\x0e\xc4\xaecE\xa0\x1eP\xa3\xb6Zi-#\x02\x16\xa2v\xe9.Kq\x8e\xcf\x8f\x17N\x91\xa0\x03t\x1f\x9a\x9f\x85\x93\xd3I\x88n,\xd1\xfe\x04=\x9fka\xd4\xa5\xe3h7\xfb\xff^D\xfa\x17O=\xd7\xf9D\xeeJs`\xdf\xdd\xdd\xfe83\x96\x8e\x17\x82\x86w\xf1\x07w(\xf9\xe0~>5\xd9$\x17\x13\x871\x11\x05\xd9\xfaky]\xce\xc3\x82\xc4\xd7\xd7\x8el\xd4\xfc\x0d\xef\xfb\x1f8\xa2\\\x8e(\xe7#\xfa\xc7\xd7\xbe\xf1\xd8\x10\xab\xa38\xd2\xf7\x9b\xd7\x90~R\xbe\x97 |6\xf5M\x04\x99O\xf3wy\x14\xa6\x84\x9f#\xbe\xe4\x9e'\xb0u\x82~\x07\xd1\xa1\xacsVG]B\xbb\xb2\x02\xcd\"-T\x18;\\\xc34%8be\xe9F\xc2\x12\x19\x1e\x008\xde5#8773\xd8\x84\xc2\xab\x18\x13F\xc4\xf7\x9dl\xd6\xbd\xf0\xd2\xe2\xea\xf7\xd9\xffx\xb6\xf7y\x0f\xa9\xf4\xe2\xe5C{\xfb\xa8\xa4\xd2\xee\xeeK/\x98\x9a\x899\x93\x07\x17\x13\x9e\xea\x1b\x87\xf9\xbe\x07\x95a6r$V3!='5A\xeeC\"\x03\x84\xa2\x03\xb6\xf6foz\xa25\xdd\xecH\x87\xc6\xcd\x8d~\xcf\xb9\xea\xf5\x80\xf3t\xd74\x03\x18{\xbdw-\x19#b\xcf\x04\n\xcem3X(\x03_\xf2\x18B\x82\xa7!\x0d\xdf\x11\xc6XI\xa0\x13L\x8c\xa5\xf9\xf2Eu\xd4\x9e\x19$a?\x86\xb1\x8cW\x04\n9ju\xcf\xc7=)g\x95\xec]}\xaa\xcb3\x11\xd5J\xa0\xd1*\x11e\x13\xe8\x8eVc\x1d\xbf\x81uy\xfa\xbdY\xd4\xf0\xbdM\xce\xd9\x07\xbe F\xefd\xc8\xbf5W|k\xfc\x9b\x03\x9b\x90\xa1\xbf\xdb8'e\xf6{\na\x14\x91%\x85\x82\xcc\xc8\xe7\x96\xd3[\x01\x11\x02\xa9~\xdb\xa6f[\x14\xa5\xc5\xfd\x9b\xd3x\xc6\xc3\x1el\x07\xdb\x9aH\xc9x\xe2:\xdb\xc1\xb6\x03\x13r\xe5jnu\xaa\xa3\xd6(\x80\xef=\xbe\xe9\xa4\xb8\xe2\xf6\xb8\xb0am\x03z\x8et\xd3\xfcn\xdc3\xe0\x11\xc5\x8d\x8c\xb4\xfd\x90\xec=L(\xb27F\xac\xda2Q\x16\xa2\xad\xd6 \xc9M\xa0\x9f\xefx\xc1\xf4\xa1k\x9b\x07\xfc\xcc\xe7\xec\xa9|\xe1\x81\xa1\xfe\xf1\x15\x83.\xd4\x19\xfe\xa1Gtq\xae\x91\xc4!xAs@\xdd\x1d\xd4\x97'\x90d\x1c\x93\xac0f\x95 c\x0b|\x1c\x06\xd3\xd65I\x1f\xac\xb7\x97DH\x8cf\x84*\xfc0\xef\xb6\xd9\x8d\x07\x0fXz\x7fT\xdf\xa1\xcd\xb5\xfd\xddFs\x90\xdf\xc1\x1fc\xc2\x05iI\x9e\xc19\x89VE\x99\xac\x89\x94\xb8\x92\xcf\x94dq\x92\xcdZ\xc5\xc2\x15\x9d\xe7\x05\xfc\x9c\x84\xd1\x9c\x94i\xb8\x86w9-\x17a\x96\xaf\xe1\x87T\xfe|\xf5\xfa\x8f\xb3E\x98\xa4A\x94/\xfe\xd0\xaa#M\"\x92\x95\x04N\x8e/\xb5oz\xd6\xcb9\xe6\x82w\xa2\x84{r|\xe9\xf5\x949\xcc\x97wE2\x9bSp#\x0f\x9e\xee\xec>\xdbz\xba\xb3\xfb\xca\xd8\xe5\x9e\xaa\xde\x93b\x91\x94\x18\x14,)aN\nrs\x07\xb3\"\xcc(\x89}\x98\x16\x84@>\x05\x06_3\xb6L9\x84\xd9\x1d,IQ\xe6\x19\xe474L\xb2$\x9bA\x08Q\xbe\xbc\x83|\xaaW\xcf\xce\x11(\xf3)\xbd\x0d\x0b\x02a\x16CX\x96y\x94\x84\x94\xc4\x95\x1e/Zf\xc04II .\x9d\x13p.D \xc7\xc36c\x12\xa6\x90d\xed\xca \xc8\x9cp\x9b\xd0y\xbeb(\x9d\x83M\x92g\xbe\xf0s\xcdz(?\xa7\xc9\"\x11\x0d\xb2\xe28\x8b%\xd0\\\xaf{U\x12\x1f\x07\xe5\xc3\"\x8f\x93)\xfbOp\x0e\x96\xab\x9b4)\xe7>\xc4 k\xe9fE\x89\x0f%K\xc4\x05\xf4\xd9(\xb7\xf3\x02J\x92\xa6\xac\x86\x84\x94\xc6\x89\xa9\xfb\x8eE\xf0\n\x80-\x06\x15\xd3\xcbz\x05\xb7\xf3|\xd1\x1cgR\xc2tUdI9'X&\xce\xa1\xcc}\xbd\xfarU\xdd+\xb0\xd2\xd3>\x1a\x1f\x81sp\x01\xc7\x17\x8e\x0f\xbf\x1c_\xfet\xf6\xe1\x12~98??8\xbd\xfc\x15\xce\xde\xc2\xc1\xe9\xaf\xf0\xe7\xe3\xd3#\x1f\xc6\x7fy\x7f>\xbe\xb8\x80\xb3s\xbd\xe6\xe3\x93\xf7\xef\x8e\xc7G>\x1c\x9f\x1e\xbe\xfbpt|\xfa'\xf8\xf1\xc3%\x9c\x9e]\xc2\xbb\xe3\x93\xe3\xcb\xf1\x11\\\x9ea\xfb\xa2\xe6\xe3\xf1\x05\xab\xfbd|~\xf8\xd3\xc1\xe9\xe5\xc1\x8f\xc7\xef\x8e/\x7f\xf5\xe1\xed\xf1\xe5\xe9\xf8\xe2B\xaf\xff\xed\xd99\x1c\xc0\xfb\x83\xf3\xcb\xe3\xc3\x0f\xef\x0e\xce\xe1\xfd\x87\xf3\xf7g\x17c88=\x82\xd3\xb3\xd3\xe3\xd3\xb7\xe7\xc7\xa7\x7f\x1a\x9f\x8cO/\x038>\x85\xd33\x18\xff<>\xbd\x84\x8b\x9f\x0e\xde\xbd\xc3\x96\x0f>\\\xfetvn\xea\xfd\xe1\xd9\xfb_\xcf\x8f\xff\xf4\xd3%\xfct\xf6\xeeh|~\x01?\x8e\xe1\xdd\xf1\xc1\x8f\xef\xc6\xbc\xe5\xd3_\xe1\xf0\xdd\xc1\xf1\x89\x0fG\x07'\x07\x7fb}?\x87\xb3\xcb\x9f\xc6\xe7\x98M\xf4\xfd\x97\x9f\xc6,\xa957\xa7pp\n\x07\x87\x97\xc7g\xa7l\xcc\x87g\xa7\x97\xe7\x07\x87\x97>\\\x9e\x9d_V5\xfdr|1\xf6\xe1\xe0\xfc\xf8\x82\xcd\xde\xdb\xf3\xb3\x13\x1f\xd8R\x9c\xbdeY\x8eO\xdb\x9d>=\x1d\xf3J\xd9\xaa5\x17\xf7\xec\x1c\xdf?\\\x8c\xeb\x9e\x1e\x8d\x0f\xde\x1d\x9f\xfe\xe9\x82uH\xcd\xacC\xcdv\xe3]\x9e%`!\xf7\xa5\xf4\x02\x92\x8c\xc1g\xc4\xe3\xfc\x8a\xf3\xb5J9\x12\x97$\x8d\xc4s2\x1b\x7fn:\xf1S\xe2oAS\xc7\xdd\xd88\xea\x874Z\xb6q\x10R&AE\x04\xaa}\xf9\xab\x0e\xca\x00#dI\xa8\x12\xa6\xc1XU\xa5x\xc26<\x1a\xd0\x19\xbc\x92\xf7w\x95M\x89\xa7\xb2U,\xc1E%\xa4\xcbdA\x1a\xd2.k%|\n\x1b\xd5\xf0$\xa3ZVK\x17\xebCF>/I\xc4N\x992\xa1+\xe1\x83e\xd0\x8a\xe4VI\x97\x14\xd3\\_#o|}\xedT\xf7PUh\x99\x96\xb0\xab9ak\xe1\x94\xcbH%\xda\x00\xc1\x10\xe0h\x17\xad\xccd\xd4\xfa:\xd0G\x1d g\xe7\xaa\xd3\x96\xc6R\xefS\xaf%\xab\x9c\xec\x18\xae\x14\xe5M,7\x9e\xec\xce+*\xe4jz\xb5N\x1aZ$\xf3\xeb\xf3\xaa\xbc\x0f\xbb\x06\x9d=k\x14M\xc3\x04\xa0\xf9]%\xe0\xc4\xb7\xa6~\xe0\nidA\xb2~\"w\xa5\xbb24iu\xa1\x0f\nc\x84\x12\x9f\x90\xfb\xa2G\xe1I\xee\xa2gz\x1e\x19$T\xc1\xc2\xd0S\xd2\xe8\xa9\x8c\x9c\xeb\x86\x93\xb2\xba\xf54h6\xaay*\x90%f\xeb\x06\xf5Y\x0b\xa5\xea\xc9\xd0x\x8cm\x03\ntN\xd5\xdd\n\xa8\x8b\xa2\x85G\xaf\xee\x83\xd9~i\x8e\x0c\xa35\xe5\xe2\xba\x97\x8bw\xb3F\xa2\x90\xf9\x8a\xb7\x04-\xd6\xd5\x94\xb6\xf7-\xf5\xf9\xea\xf9\x90[s|E\xdd\x96\x11?\x06\x9a\x13\\\x88O\x86\xd5\xa3\x8d\xd5\xa3m8\xa3ze\xbc\xd7\xbc\xc2f:\x0f,l\xec\xa0!d%\x1bMhA1\xcd\x80\x94\xcf=\x11Oq\x10\xbf|\x1f\xa5K\x9b\x00\xbb\xbd\xf4D\x89\x92\xc4\xd6\xd6b\x94\x88\xcc\xba\x01u\xb4\xd4{qZ'W(\x11n\xe7\xcf\xb8>\xba\x1et\x9a=\xea\x8e\xa7\x86\x1do\x0d7,Q6\x9d\xe4\x96\xbdc\x0c\xb9\x94\x08\xffqO\x9e\x98\xa6\x85\xf1\xf7[\xbb\\\xc6W[\x08M\xf2+6\xbcb\x92_a<\xf7\xc3\xa4\x88ViX\\90\x92\xa9\x04\xb3\xf9\x90 \x97\x0e;\x08P\xe2\xa3!\x00\xaa)\n\xac!\xf6#\xe56ih\x9f(\xcc\xd3D\xda\xd0\xf2\x0bR\x96\xe1LV!\xdf\xf6\xea/C+*i\x18}\x12\xd5\xf0\xdf{2\xd5P\x85\x14\xc57w\x04\x03\xf0 \x06\x922\xde\x06\xe1m\xca\xe4\xad\xf8\xc2-?\x84\x1f_\xe0~\xd5\xf2\xecn\x91\xafJ\xc7\x83Mpp\xfe\x1f\xacP\xf8\xfd+\xf35\xe3\x0bc\xc8#\x96n\xf2|\xcc\xd2\xf5k\x80\x95H\x7f\xed\x99\xcc'K\xbb\xd8\xc9\xa4\x10\x8d\xda8J\x84\xbb\x1d\xae\xf0j\xd0\x9d\xe2zS\xdc\x19? \x0b\xd7{\x03\x9b\x9b\x14~\x80\xcc\xa8S,g\xa2\x1do \xa4\xec\xbc$\xd4-0\xfeW1\xd9\xbd\xb2\xe9\xed\xd6\xbf\x14\xa5'\xde\x07\x86\xac\xfdF\xb2P\x8f\xc2`\x1ceS\x15\x9em\x94f\xe2{\xe9\xf9\xe0\x9c\x84K\x9b\x10x\x90V\xbc\"Un\x85\xd0\x13\x10e\xf1\xea\xf8\xc2\"\xd2|\xd1\x12\x81\n\x88\xda\xd5E\xf4\xa5H\x7fi\x84\xb4\xd4\x0ei\xc2< \x0ei\xc8\xad\x140\x1a\x99\xd1\xca\xaaL\xfe\xce\xf1\x05\xfbaX\xf4\xd4\xb0\xe8\xb9\xdfH\xae\x16=i\xa6\xf3E\x0f\x9b\x89|\xd1W\xcdD\xbe\xe8es\xd1S\xe3\xf2\xa8C\x1e\xacN\xdb\xf0\x9b\xb2\xb5\xcb\x1d\xa7\xd0\xca\x9c\x98\xeb\xdcK\x1f$\x9b\x9b\x19\xfc\x00\xc5\x1b\x0f\xc8$\x87M\xc0\xf81\xed\xb05\x92o\xd3\xe6l08\xbdx\xaa#\x1c\xa1\xf2\xfcZ\x07\x1bcL6\xa3\xaaS\x0b\xda\xba\x84\xc4m\x18\x0c\xd5\xe0\x8a]\xec\xb9\x8a\xb1\x90,@B\\Q\x1e(\xdc\x90\x1b\xb6[E\xc7Z\x8dj\x10\xb8V\xbe\xaf\xba\x03\x1dF\x83\x9a\xf7\xf4\xea\xbe\x8b`>%\x9e\xebkcZ\x83\xf6t'\x9a\x97\x8c\xf6\x14'\x03\x16\x0eq\xd37\xaa\xb6\x08u\xc7A\xab\x99\xb3\xaf<\xe8L\x15E\x15\xd56\xb8\x87\x92\x8dU;\xbd\xd9\x9ey)\x06!\xed\x0e\x1b\xb1z\x95\x9e\xe9\xab\x015\xf2m!e\x90\xbaB\x16\x8e\x08\xffl\xd0 \xcbcry\xb7D\xd2\xc9d\xfe\x88\xf7Af:\x92;\xa4\xc7zH\xa3\x1e\x83\xe9%\xdfW8\xbb\xd5\xd4\xec\xf1\xab&\x19t^\xb0&&\xbf\xe0l\x1e\xdd\x15\xec\xc3*HJ-7\xb2\xd4\x9a\xde{{\xfeAgPv\x9f=\xf7\xaa\xcb\xd5!z7\xafwv^\xee\xbe~\xfd\xf4\xfb\xe7/\x9f\xef\xbc~\xbd\xfbP6\xc5\xe4\xbf\x1d\xe7\xf1\x0f\x8c(\xc7_\xff\x81\xbe\xf1\xb93\x02\x02?\xec)\xa2\xb0\xfek\xb1{\xf5\xa6\x1b1I\xdc\xde\xba\xd4\xed\xe9\xceC\x80\xfb\xe9K\x9d\xc0\x04\x01\xdd\xdf\x08\xc1l\x13\xe4\x8f\x00\xc1\xd5NH\x1a\x10\x8cU\xa3\xb9cDJ\x83\xc5\x9env\xd0\xca\x00\x9d\xf7\xe0 \xe5]u\xeb\x05\xf9\xdb*)H\xe3\xc5uV4I\x1d/`\x03\xb3xb\x01U\xae\xfc\xe5\x8b\xdc\x8e7 \xdeD6^du\xc6zz\x02[}u=\xfbf\\=`3v(W\x99\xaf\xd6[FT\x0c\x04\xb6?\x06_>N\xdc\xfd\xd1\xe4\xffL>^]}\xf7\xc5\x9d8\xbf\xbf\xf2\xdc\xfd\x91\xbb\xbf\xf1q\xd7\x9b\xfc\x9f\x8f\x1f\xaf\xbe|\xfc\x18x\xdf\xed\x7f\xdc\xf5>\xea\x81Yx\x00\x98\x8f\xb7\xdf\xfd{oH\x07\x8b!S\xc3\x8eI\x17\x8bV\x92t\x01\x98F\"k\xc3\xad\xb0\xc7\xc6\x1ed\x08\xd4%R1JB\x158B\xa64\xdc\x0em\xa0F .?\x8f\x05\xc2\xa3\xc8n$\xea\x9b,A\xf9\xf6H\xa4\xd3<\xf7^\x86\x0e\xf7BD\xf7\xa4\x1f\xcd\xf2\"A\x99pm\xd3\xcaE\x17\xf5\xc1\xb9\xbe&\xe5I\x1e\xafR\xe2\xe8\x1a B\x1bAU\x08AC\x9b\x05Y\xe4\xc9\xdfI|\x11.\x96)y[\xe4\x8b\x8bhN\x16\xa1\x90*\xf0\x8f\x87\xa8,\xf8\x97\x93w\xe3\xcf\x98\x8d\xb3\x10\xf8\xf3/\x8bT+\x94dSR(\xefe\xbbfq\x00\x824\x81i\xd4\xac(z(\xec\x98\x89\x1b\x0b\xdd\xcc}\xf1\xfd\x0b\xcf\xb0\x0f\xf0\xd3\x8b\xd7\x9e\x91\x97\n\xed\xeb\x83\xa0\x10\xd4\xf3(T\xf5\xdaXKFF\xd0\xddZ\xfd\xae\xfdk-|\x19\xb6+\xe1\xa2\x99\xe1qm\xa5,\xa7\x95\xc7\x10F\x8bg\xbd&\x8b0I\xef\xd1\xc2\xaa$\xc5\x1f _\x8c \xca\x17\x83\xda\x12\xfdb,(\xd9\xa2\xc9\x828\xc3[t\xe5\xf5\x95\x17\xd0\xfc\xf8\xe2L\xa8\x84\x19\xf8\x02\x83<\x05\xd1\xc4\xf0\xb6\x06\xc5u\xe3\x95^O\xd3<\xa4\x8f\\u\x92Q2{\xf4\x0e\x0bT\xd8G\xff\x83\xb2\xca*\xf6\x94\xb88\x10 \x8dW\xad\xf2\xa5\xdd~\x13\xdc\xdb\xbcLw'\xa4\xcc\x82mt\x17\x9d\x0frr%\x99\xdeyF\xff3 \xc4f4h3a\xf2AO6\xc14/\x16\xa1\x812\x02\x81\x12V\x13\xd4O\xbcv`\x13\xb8\xa9\xcc\xca\x18\xd5S\xc2%\xf6.)\xdf\xae\xb2\xc8s\x13\xc6c%\\O\xda\xf9\x90}\xca\xf2\xdb\x0c\xb5 \x85K\x1b\xec]\xd7\xd4\xa46\\Xa%\xcb\x0d\x93<2[7\x89\x7f\x00\xa4\xa3\x15U\xd6\xfa\x8ep\xf7\n\xf6\x9b\xaf\xa3\x96)\xa8|r\xd3RP\xcbR \x99\xd9\xb1\x14\xca\x97\"P\xe1\x8035V\xb3Vg\xaa9\xef\x1c[\x16\x00m\xce\xb26\x844\x93\xcf\xa2\xe3\xdb\x0c\xc9\xb0\xcf\x0bC\xc0f\xf60\x1c6\xc3;j\xf3\xf7\x1b\xfc\xbe,\xc841x\xb4b\xcfuU\x03F\xab5g\xba\xe5S\x9b\xad\x16\xe6\xef\xe3\x8aG\xb6\x1c\xe0a\xc7\x01\xceN\x90\xd4C\xa8\xfa\x97\x9c\xe2a\xdf)\xee\xb2Y\xbd\xc3K\xff,\xa7\xe1\x8cM\x8e\xc3\xcd\xa5\xdc\x1b\xd8\x87\x1bF\x96\x8f\xd0>\x16u\x01\xee|\xb8\xe6\xde\xd2\x17\x13\xf6\xdd\xf9\xbcH\xb3r\xc4\xce\x8e\x1b\x96 _\xd1_\xc1\xb5\x85\xc0Q\x0f\x05\xc48\x91\x0d\xf9\xb2\xdc\x11\x83\x07\xd8\x03\xfe\xff\xcb\x17\x98qK\x10\x9f\xa7HU\x0d\xe5\x85\xe5\xe1P\x023\x11\xa9>\xae\x88\xbf\xf5$\x93nn\x9b'\x04\x9e\x0d\xd3\x81ns\xe5\x13\xc9\x1d\xc8\xfd\xb6\xb2\xca\x85\xdf^v\"\xe4V\x9d\xa6\xd6\xf94g\xad\xcf\xef\xdd\xba|\xb6\xac\x8b\xfb\x8d\x0bs\xaf\xf6E\xaeV\xa6\x01\xe4\xb6U;\x91M\xfd\x85\x99\xdc\xee!\xa7\x0f\x199\xad\xec\x19\xb4$\x95\x1b\xf0\xc2N\x9d\xb2\xbe]\xe8q\n\x0e9\xde\xd8\xb8\x98\x1c*\x84\xf7\x97/\xb0T?\xd4$7#\xc6-\xd3\xd5h\x87\x95\xe2H\xa2\xfa){(\xde\x03\x06\xb3h\xa9\xd2\xb5l\xf2a\x03\xff\xd4R\xbc\xc3\xba\x90Jc\x9d\xad\xde&;Wv\x96E}\x0ed\xff:\x0fm\xfd9\x93\xa5\x04D\xd91\xbd|\x16\x93j\xd4\x12\x1d\x1e^UG\x16\x92M\x07l\x04\x07\xd04\xb5\x9dN\x0e\x91\xef\xc1\xff\xcdOg,\xfd\x8c%~b\x7fJ\x9c\x8b\xee\x85\xf9\xdaw\x80\xc9\xa7\xd9\xd9=hw\xbe\xe1\xf3H\x9dA\x8d\x18\x94\x03p\x1byx\xba\x05\xce\xd5\x87\xad\xfa{d\x99.\x86\x15h\x82\xc7{Tw\xe5;\x05\xd1\xa8pa\xf0^\xa2[\x8e\x04\xde\xf7L[\x17j\x94\xcc\xa4h\xa8\x0fQ7\xa9\xcd\x118\x07\xd9\x1d\x9d\xa3\x0dT\x98\xc1\x0dAc7\x0bU\x80\xe1Q\x86\x9e\x08zC\xa5\x8doeH\xee\x11\xcf\x99\x018R\xcc\xdc\xb8 \xffSv\xd4W,\x15&\xcd\xd9\xf9\xdbB\xff\xb7lQo9WV\xa2]\xb8Xa\xc6\xe1M\xcc}\xb7\xf6\xfb\xab\x0fcV\xd1X\xef\xfaW\xe3=\xc8\xd4x\x89'\x05\x8e\x11\xff\xda\x84R\x86\x0d\xb3\x86\x9c+\x97x\xc3s3\x93\x19lL\xa24\x94\x81{M~\x0b\x92,\xc6\xc0*\xceG\xaa\x85c\xd3\xaf\xe1\x00\xcda;.\xa5X\x7f\x92\xba?\xd3\xbe\x1b.-\x7f\xda\xaf&Q\xcd][t\xcf\xd5\xf0\xc8\x9aq\x87\x95V\x9ex\x15\x87\x05O[\x84\x9f\xabxrU\xc6Fb\x85\x1b\x95 hw\xc1`\xd7$\x85\"2OCl\xd8YY~?\x8ds\xd5\xd8\xa0\xbb\xe2\xc4Z\xb1\xeaz\xc5\xb0\xd2\x0dGY>d\x01\x06W\x19/\x12\xca\xdd\xdcc\x9a\x12\xac\xa3\x9ayy\xbb\xd8\xf8\xaaMz\x9dG\xac\xfeI\xf3\xfb\xaeV\xbe$z\x0e\xbb\xd4\x03\xa9&\xe5\x06\x9b*\xc6(D\x06\xa8\x10\xbe\xebL\x1e\x152X\xacJ\xca\xd0g\x08<\x1e\xf2\x9a\x88[)\x8b\x1b\x05#\\\x11\x0eo\xf5\xcc6GD\x16 \xed\xb7\x9f\xe7\xfe\x8f|X\xf9P\xfa`\xf0\xc4\xac\x83\xb9\xabm\x03\x0c!'\"\xe5\n+\x1c$\xc4\xd4l\x01~F\x05'\xb7\x9d\xce\xd5\xd2\xda\xe9\xd2\xd0\xceDo\xb1\x9e\xa1\x8b#U^\xe3\xa9\xc6oc^5\x9f|\x03\xcd\xc3F\x1f eZ\xbe.\xbf\xff\x90E\xe1j6\xa7>\xac\xb2rI\xa2d\x9a\x90\xb8\x1a\x1bv-\x00\xf7\xf7\xb0\x89\x0e\xa2\x1d\xcf\xe4.\x84\xb7\x17\x05\"j5\xa7\xde\xa3&\xdak\xcdq\x82^\xa2\xd4\x19\x98\x90+\xbb\x92\x05\xd7\xc2\xc8<\x0f\xca\xdb\x04UXt9\x97i\xca\xa2\xb0$\xb0k\x8e\xf4/\\\xb0\xa2[t3\xd5\x82>\xa4\xdb\x9f\xb0\xd2\xa7\xbd\x95\xfa\xcdu\xba\x7f\x13\xcf\xee\xd9\x84\xfa\xf6\xf4\x9e\x0d\xca\x9b\x7fc\x99UE\xd4\xf7[\xe1\xb1\xfd\x18.\x97\xe9\x9d\xe8\xe0J\xd7{\xad\x84\xf4\xb9k\n\\\x83,\xd4\xfd\x1a\xc4C/\xc5\xeb-n\xda\xe2y\x95^t\xc9C4r\xc7\xe5Pnnz\x90N\xca+\xad\x8bF\xfc\xa3j\x954\xb1L\x18\xc7J\xcc\xd0N\xe5!\xb6\xe3\xc26$oX\xfc\xce\xa4\xb2\xda\x1aYV\xa7^\x17\x96\xecAU\x0d<\x93\x91[5\x02)~cx\xd3u\x94/\x0e\xfa\xff(\\\x1a\xc8.y(\x90\xaf:8\x02\xaaU\x94\x04\x08/\xa5\x9f\xf6\xae\x074\x87$\x8b\n\xc2\x90\x0d\xfa\xb7\x08\x9c\xd6\x92J\xe4\xea\x9b\xe9/\xd9\x7fZ\x84\x11\x1e\x82\x8d\x04\x0cL\xd7u^\xe7h\xe6\x00\x1b`\x15\xb9&<\xfa\x8du5\xd9\xc3\x03\x88d\x12\x83\xee\x83[\xfd\xdec\x8c\x8dyU\xd0\x08[F\xd8J8M\xf0\xad\xeb\xd4\xbf\x13\xfb\xb7\xdaA\x9a\x0e\xe3\xad\xd6F\x07\x81\xad\xed\xd1\xb3\x156:\xc6\\\x15\xe5\x9ci\xeb\x8ax_g\xf4\xd1\x87\x98~\xe6>y\xd2\xb9/\xda]2\xb7f\x05t\x8a\x0e\xc8\x1a#\xd6\x97G8\x02\x90K\xd8\x9eh\xa3\x0d\xb7J+\x19\x8a\xe8\x8dh\xf0#cC\xaa\x0b\x0eF\x9e\xa6\xb0\xf04\x96\x93!\xb3\xa1\x03\x83\xc6\x04N\xd0\x9bjo\xbc\xb1W:\xa9\xf6\xcc\x16\xb4\xf8\x0e1\x13]\xcbh\x03\xeat\x10,\x9b\xc8\xd26\x8d\xc4\xdd\xf1\xea\xdbx\xbfE\xfc\x19(?I\xe3\xc3H\x8b\x16e\xea\xeba\xbe\xca\xba\x05\x02:\xbboS\xae\xa0\xed\x85m\xc3YRy\x94\x14\xd3`q\xa0R\x87+\x96\x16\x9c\xfd\xf8F\xe3F\xec#4\x1c\xe6\x95\xbaJ\xa3T\xbfI\x80n\x0cD5\x0f4\x99\xfbl\xe7{\xcf\x0b.hA\xc2\x85\xa0H\x82s\x12\xc6\"\x02\x1b\xbe\xffR$T\xbcg\xee\xee\xeb\xefQ\x80y\xb4Z\xa6\xe437\x80\xe3)\x97E\x98\x95\xd3\xbcX\xf0\x8aww0\xf5}X\x96\x97\xf3\"_\xcd\xe6<\xf3\x8b\xe7\x83LMz\x1d\x01\xf28_&T,\xdc9>\xdf\xf1l\xf4\x9fA\xd7\x1e481II\x12\xc6|\xa1|\x84\x07\xaa\xe0\xa7PF\x8b\xbbf\xd24\xc9\x92f\xc0E\xdb9\xbd\xd19\x07\xfa#-\x0f\x08o\xd4~\xb6\x93F\xaf\xec\xf9\x04R*\x8c\xe6\xfb\xea\xb3\x16^d\nd\xe0o\xc2\xc8 \x82P\x1f\x1a,\xb9\x93\xc5\xe8fk\x8b\xf1y\x18v\x1d+`3h-k\xbe\x07\x02\xac1\xca\x8bO$>'\x7f[\x91\x92\x96o\x0b\xf4\xe9mJ\x96\x8bDP/\xcdPlO\xd3\xdb\x92\xcfW\xee\x91\xa5\xf5\xedk\xc7\xeeV\xb7\xd3]\x9b\x0fYq\x11\xc6\x06\x0dn\x8a\xfc\xb6\xe4\xd4\xcb\xc4Y\xef\x04\xbb;\x8e\x0f\xec\xc7\xeb\xc0\xb9\xaa]\x81\x04kR\x94I^y\xf9\xf0\xe1{\x8fk\xd2\n{\xda\x04\x87w\x99\xe8KpW\xed\xd3\x0b\x1a\xa2-\xfc\xac\xdd\x9dT\xd8\xad\xbc\xd0\x8e\x954H\xb29)\x12\x81\x15^\xed\x1aX\xaa\xc8h-\x02(|\x12z\xa6#\xdc\xe0\xcf\x06\x99IL\x05\xfe\xd1=\x0e\x80\xd4uvw\x9f\xefJG6\xed,\\u\xebC\x92\xd1W(i\x025`\x8d\xd7R1e\x03\x98\xfb\xa8\xa1\xc5\x1a}iE\x0d\x0b,l\xf983bg\x10\"6\xee\x82\x8a\xa3C\x0420\x84Q\x05e\x1fSU\xf6k \xd5\x11\x99\xf0\x8b\x8e\x93\xd9\x15\xfc\xeaz\x7f\xea/\x10\x19z\xb7\x0f\xbb/`\x04\xbb/\x9e\xbdzn\x99\x85FW\xd0\xaa\xf4\xcb\x17A\x0c\xe7\xb0\x0f9\x8c\xc4\\\xa4\xf5\x87\x94Q$)\x8c \xf2\xcd\x95\xd4\xb1~\xdc\xf6w\xafF\xe6az\x18\xa62,\xa7/\x0f\x02\x12\x1f\x15a\x92\xa9\x89\x1c\xe7i)\xcdr\xfclh\xa6\xc5\xa4\xa4E~'\x12\xcd+\x82\xf1\xf99\x7fE\x82\x98Dy,\xa2\xc9\xd8N\xaaF\x1eVxZ\xb5\x86B\xb2q\x16\xe5\xa2\xb7\xa4\x95\xf6\xe5\x0b8+:}%\xe5I*\x13\x87 l\xc5\xb5\xa1rD\xab\xe4)\xef\xb2HJL\xd8\xfb\x0dn\xe5\xf7\xdcZW+\x9cg\xa8\xff\xd2\xab\xb8\x0b\xedC\xb3\xef\xc4\xe4A\xdc\xaeoU\xec\xd8\xad\x84RpY\xf4]\x16u\xe7\xe3\x81\xe0\xb0\xe3\xd1\x8d\xfd@d\x14c\xff\xa8\xe4C\xb4\xb9%\xb2\x81\x8a\xc6 \x15\x7f \xf7\x1eII\xe6+\xbf\xd9\"X\x1b\xf9\x8a\x871\xf5\x0c\xc4\x87\x99\xa6\xd2\x9f\xad-\xe5x\xf71r\x80[\x9fJn\xeeC\xe1\xf9\xca9\xe5^\x08\xa6\xdco\xad\x03\x97\x9br\xb9\xa8\x14\xa9\x12\xc1\xd8\xf3+,V\x19\xe3\x15\xdc\xdc-\x1e\\\x81\x0f\x17\x1cT\xecZ(\xe89\x8aO\x00es\xd0A\\\xf5+\xf8\xe0\xad\x01\xec\xc1\xd8\xd5YD\xfd \xf1\xcc\x90{\x07\x7f\xb7\xb6 C\xde2\xb9\xa2dX\xea-gB}\x8cfZ\xba\xd78\xcd\xfcj4gsv\xed*\xef\xf6\x91\x1b\xbfXi!\x05\x01\xa8@Y'\n\xf8kl\xfa\xba\xdb\x8d\xfciX\xd2\x1f\xbb2T`\xa6\xd4\x88\x8a\xcem$\xaa\x03\xc2\xae\xb9\x03\x92\xdf\xdai`-\x8d<\xcc\xc8-\x84\xfcf\xb11\x016\xba\xe0\xce\xbc\xad\xb9\xe6s\x930\xd8p\xe7\xfc\x12\xec\x8ew\x00\x8d\xbe\xd9\x8f\x06-\xe05\x1c\xa0\xdeY|\x9f2n\xf6V#\xfaX~N\xa6(\xe1\xa2ok\x0e\x0e7\x08\x9e\x94f}\x0c\xbe\x86\xca\xc5\x87\xc4\xcb\xe2\x8b\xed\"A|^\xeb%\xd7u\xd1\xb5\xbd\xac8\x01\x95\xc22e\xaf\xfej/\x8eg\xb4R\x98\xbf\xef\xc9/\x9e\xe7\xc3T\xb9-\x1e\xb4\xa67M\xa4\xc8E\xe9\xc6k\x03\x15\xec\x19\xfaP\xf6F(_\x05>\xc7\xcb\x03\xe5\\\xc4\xa8+r\xa6\x18\xe6\xa4\xf2$\xe4a\x87\xf9\x17\x97\xb7^\x7fSk\xd9\x1d4\x9ake4\xa6Ad\xd0\x17\xf0Q>\"\x06\xa3<\x83\x9e<\x01\xaa\x10C\xb8\x06-\xe2Hb\xe4\x98\xa59\x06,\xfc\xd5\x15\x07\x84\xc68\x16n\x8d\xbb\x07\x8d\xf3\xd6\xdawj\xa4?\x0c\xb6\x0c\xeb\xca\xb1\xb2\x86:\xcc\xb2\xa0j\xf9PD\xcfo#\xd8\xc9g\x9b\xbf\x8a\xf87b&;\xc1\x91\x8b\xcd\xcd5\xf4\x8a\x0e\x83AtZi@l\xe6\x93(\xa9e\x05\xe6\x0c\x95R\xf4\x8a\xa3\xcd\x92\xcf\x1b:\xfd\xcb\xf1\xc6\x82k=\xa1w \xbc'\xc3\x1c\xbb2\xd0'\xce\x86\x0f+\xd8\xdc3\xc9\xd3\xd8\x93\x07a\x9a\xf2\x83\xa0\xe4^\xd8\xe4\xee\xe3;\xa6\xf2\x92\xe6\x83\xe30\xd2\x82\x1f\x00Mx\xd9\xdc\xc4\xac\x1dG\n'I\x18\xb9b\x11\x0b$\xa2\xaf\x89*\xe7\xf1\xecb\x04qN`?l\xe7L\x1b\xd6\xbb(\x08)&\xee\x94\xc8T\x9c|\x10\xcdW\x99\x85\xd1\x92\x0f\xea\x0b\x05DP\xf6\xddy\xb99r\xbf\x88\x87\xc1}\xb5B\xbb\x88\x99\x1a\xdc\x1c\x8c \xad\x16-\xf5\x19\x036\xd5\xc0\xc1\x0b\xae\n\xb9\xa3\x81S\xdau\xf4\xca\x83\xbd\xa6\xb9\xf9\x1e\xb2\xd4ZW\xa9\x87\x0bhn\xa4Z\xb4\xc8H^\x86\x06fM\x07\x9d\xc2\xa7\\\x8f\xb4\xbc:\x85*\xf1\x96\xb6\x07xx\xf0\xc9\xd5\x1b o<6\x0c\xb4=\x92\xa28\x9c6\xebJk\xe1\xe9\x0c\xc2\xca>A~\xb7\x171\xb3s$e\x1e|p\xf8pZ.\x92\xf4gF\xe8\x08\x0d\xad\x84\xc8\xb5\xdbI\xa3\xfe\xa8\xb7{\xd5\xd4\x1b\xdc\xda\xa8\xcfW\x1f\x1c\x8d\xe9\xe6}\x85\xa4\xacE\xbfBYI\xcbX//\xe3nH\x18\x07\x8e\x0f\xce\xd1\xf8\xfd\xce\xce\xce3\x8b\x8f3ho\xf0*\xb9\xd7\xfd\x99\x85E\x10\xb1\xb4\x9e<\x11\xbf\x82yX\x1e\x0b~\x0bl\xa1C\xa5\x9b\xe8z\x99&\xed\xd2Wh(\x07{\x03s\xfb\x16X\xb8\xf3\x0d=\xeb\x08\xe0\xd5/O\x92Z\x90\x1bsU\xdf\x94\xd4\xfc&\xdb\xed\x9c\xe3\x92\x0e\xa6\x9a\xbc\xa4\xc2\x8f\xce\xfaN\xcb\xaf\x88\x85\xe6\xbd\xe2;y\xce5\"\x9c\xb4\xee\xe5}P\x15G\x97\xc9\x92\xf4a\x07.\x01h\x1e4uP\x90\xc30\xcbr\n\xac\"\x1f\xd8\xafB\xdcp\xea\xac\x88\xd6r[$i\xbf\xa3C\xb2\x9e\x1b\xf0\x1b\x18s\xbb\x8d\xfd\x86\xc1#7\x88\x0b\x85\x8d\\\xa5\xab\xd01:W\xa1_V\xae8\xdd\x02\x17\xb4P'4\xb6\x1fi+$\x0d\x94\xe2\xdc\xed\xaa;L\xf0**Y\x06\xd3\"_\xe8\xf1\xe3\x00DH\x05\xcb\x16D\"\x85\xebWpT\x8dT\x18\xe3\x0b\xf6\xf1U\"@FmsEX\xbc\xe1\xd1$\xd3\xcd\xdak;\x86\xac\xaa}\xe1\xf9\x90\x0b\xb9\xfb\xfe\xb0\xb3[R\x03\n\xc8\xf0\xa5\x0f\xa7\x94\x14@\xb2\xd8\x16d\xd3D\xdd(G\xb4\xc5y\x86\xd8\x8b\x19\x9e\xdc\xab\x16\xe7m\xe7\xd2A\xb9\x9e1Y-\xc9'\xb4\\$\x80B\xdc\xd4\xa4\xf2>\xf7\nN\x1az\x80'\xe1\x1dn\x15>\x11\x98\x1bQ\x0fF'+Q_\xc0\xf1\x8c\xd1\xa3\xb9,A\xb1\xa3\xc989\xd4\xbc\x8er\x0dm\x1eg\xeb0Mb\xc8\xf2l\x8bW\xbb-N\x1a\xe4s\x1c\x0f\x95\xc5\xb9/\x8e\xe6\xbc\x87\xcdy/xJ.\xf9\xd0v\x10\x10\xb9\x069\x97\x99\xf2\x00\xd2n\xde$\xc0B\xc3\xde\xaf\xa4A\xb6\xf5AU\xae\xdek|S\xd5}\x078\xd1o\xf4\x8c\xd7Axw#\x17E\x8b[\x82{Jl_\xda\xe1\xc2G>F\xf2H}\xbeVz\x18\xf6\x8a\n\xee\xb2\xa4\xda\xa0\x8c\x88\xcc\x95\x0d\xcf\x15\x03,\xce#\xcc|\x9e\x94F\x18\xf8\xce\xc2\x18\xb9@>\x95\xd8j\xd3\xaa\x1b\xc9\xeaF\x0b\xb8:8\x12m\xde\x0c\x9a\xcb \xed\xfd\xa6\xeck\xa7\xc3GR-\x18\xc4\xed\xc1\x05\x0c}p\xc3=\xb6\x19\xd8Z\xfb\xfc\xdb\xb8\xe0n`\xc3\x1d7\x02\xc3\xcd\xbb\xfaH\xb1\xc2\x08\xf4P\x84\xda\x83\x07\xce\x08\xb2\x1eY\x85\x90<\x8c \xe9\xce\xc8v:\x8fgo\x07M\x1f-\x86S)\xca1O\xc3\xc8\xc8\xe4\x1b\xf3Z\x85<\x9b{\xd0vs\x06\xb5\xa4G\x95\x94\xacj\xfc\xd1\x89\x9e\xcb.\x8c\xb5\xf2A\xa2\x8cvL\xa0& \xc3\xa0j\x10\xf1\xa4\x11\xee\x1c\x1a77\xbb\xea^eCjo\xf0l\xcdV\xda3 \x1b\x16H\x9e\xbflm\xf9\xca\xad(:\x82\xac\xef\xcb\x14\xa9\x07\xbe\x19o\xcf\xda\x02\x13\xbc=\x93$q'\x11X\x12z\xd4\xba1\xef\xa6\x95\xd0\xd6\xd2\xe2\"O\xb8\x99\xa2\xf9\xbb\xfc\x96\x14\x87a\xc9\x8d,6\xdc\x893'\x9f\x19w$\xee\xdd\xd9\xff-\xfc\x11\x96Q\x92\xb0\x1f7I\x16\x16w\xf8+,\xc9\x8b\xe7\x98+*\x9f\x8a\xff[OE\xb1\xdd\x17\xe8k\x17k\x90\xbf\x8b\xf0VQ3r l\x82\xe3xZ?P\xcf\xa8\xb2\n\xd0Ng\xe9`\xb2\xde\xf3\xe8d\xb2G]W\x83+\x83\xf2\x81I3\xd7\xca&5X\xe6[\x93\xda\x89\x91\x83&U\x9c\x83\x91\x91\xe2F\xae\xba\x97\x93\xee\x18W\xe3\x80h\xef\xdd\xe6\xe8\xbc&\x84]\xdf\x87\xcf\xc8\\\x85J\x15\xd7C\x1e\xe3\xc4\x19\xb1\x96,\x96)Y\x90\x8c\x92\xb8\x87\xb5\xa9/\xe7\xb8h\\\xfdF\xb2x`g\xaa\xbb\x8c!{\xdb\x1a\x90 \xa9\x02\xc2\x055\xe2\xeeW\x11\xbd\xdf\x8b\x99\xa8\xcd\xbf\xa1\xe9$\x83{\xa8\xaf\xee\xa8\xa5\xcc\xabP\xf1MQ\xab\xb0\xc8\xcbc\x8e\xe2p\x87\x16R6\xcb\xd8\xad\x06\xd2\x192S\x80\x07q\xad\x1f\xb4S 7\xfdJX]\xd5\xb9\xaf\xd2\xb2\x19\xbf \xcc\xb3\x88TB\xb7\x0e\xd2\x8d\xd6*G;\xbe\xa2\x9a\xd5\x16Q\x83r\xa8\x14-Fe\xe0\x16\xacT\x97\x8c\xdb\xee^\xdbJY-\xd3\xd5v\xa5\x84\xae#\x14\xd1\x81\xf6\xd8\xda\xdb\xbcl\xf4\xc7\xca\xe7Z\x9aw;\xdb\xc7\xd8\x8d\xf7\xdc\xf9\xf5%\xf7Z\xfe\xd6\xb6\xe9*S\xf3ToZ\xae:O/\xbf\xcb%%Y\xecz>\xd0V\x0c\xf8\xdf\xd5=U\x03\n~\xcf\xa0\xd4}\xb6\xf3\xcac\xc7\xe1\xf1bA\xe2$\xa4\x04\x13w\x87\x85\x0ex\x8c(\x83F\x04\xf2\xbbf\xe7\xbf\xb9\x1b\x99\xfb\xe2\xf5\x8e\xe7z\x95\xdbN\xc6-a\x98\xc8\x17\xafw\xbfa\xa8\xeb\xcam\xfc\xcb\x1ds\xf0\x84\x17\xa6\x88?\x99\xfb\xea\xa9!\x86\x97n]-\x0e\xf6f\xc6\x95)jSWx\xa0R*E\x867\x9a\xff\xc5\xb4\xa1.y\xdf\x05\\W^\x1b\"_u\xa5\x0f\xb51\xa2\x12\x9f!\xb4\x98W6\xcb\xe1\x85@\x86\xc1W\xb9A\xb0W\x9b\xbaF\x9a\x93\x05~F\xa0sI\xf4p\x11y\"\xce]\x04\x7f\xd8\x83\x1d\xc6&\xb0\xb4\x914H\x96vN[\x90\xba\xa5\x1by\xde\x1b\xe0a\xee`s\xd3p\x1d\x85z>\xaa\x94\x95rq\xc2T\x1c\x8d\x13z\xe5C\xe1N\xbdz\x8c\x1a\xbf&R\x15w\xc9\xdf\x00\xcd\x0d#\x89\xd6i$\x05\x95Z\x07\x86\x11\xb5&\xd1\x1b1\xd3\x8bHaJ\xc2\xc4nD\n\x8aT\xb8\xf1\xe1+\x97\x12tw\xaa\x06,\x967\xce#\\r\x11\xc0\xe1\x92|\xa6\xa7yL\\\xc7\xe9p\x1cn\xd0\x00QT\xaf\x06\xdc\xaf \x83\xd3\xc1\xe6{\xf2\x80\xe7\x97\xeb\xdc=\x16\xb5\x9d\xdfC\xfc_f\xfd\xfe/\xb11\xe3W\xb3D\x05\xad\xd6\x9a\xe4\x94E\x8e[;Z\"B\xf3\xa3\xca\x8f'8\xd1c\xd0\xc8\x077l\x1e\xc4!\xe5\xe1|\xf6`s3\x81\xff\x80\xa7\\\xdd\x01k\x0b\xcay2\xa5.z\xa1\x10\xe2\x17ix-(\\6\x82 \xad\x96qH\xc9\xbb\xf0\x8e\xcd\xf3\x00*\xd7@\xb2cD\x0f\x83\x80u\x19\xde\xa5y\x18w\x84\xfb\xa9;\xf06I)\xe9>\xe5{:`\x10\xc9\x0e\xeb@9\xcfo\xfb\xc9C\xc6\xa0\xb6|B\xf5\xf8>\xe7\xc1\xb4\x94\x04#UE*\x17\xb0\xba\xfby\x06\xc5\xb6\xe1\xae:\x86ke\x1b\xb3\xd9\xc8\x14\xbf\x8e=l\x16\xb2\x91\xe1.\xc5f]\x88s\x17\xcd\xc3lF\x84UW\xff\x0c\xdes\xfe\xda\xbe\xe3\x1d\xe7\x11\xa70|\xe4)\\\xe41\xb9\xd7\x0c\x9a\xb8/c\xd0\xae\xf6\x06vR\xdc\xb1\xd7|\xf7\\\xf37\xa7\xcd\x9f\xb5\x91\x81Vr\x8a\x1b\xcfi\xb3p:Z\xd1\xca\xb1\xc1:m~\xae\xc2J2;\x83+\xee\xa2\xf2\xbf\x1ea\xe2\xf5mH\xc9\x8fd\x9a\x17d\xfc\x99D+\x14l\xd2 \n3\xf1\x8a~.y\"k\x0cOR%m\x1e\x96?\xe5\xe2\x12\xa6\xfa\xfeKB\xe7'\x84\xf2Y[\x86E\xb8 \x94\x14\xe6\xd4\xe3,JW%\xab\x94P\x9ad\xb3\xb7ya.\xf6\xe3\xddqL2\x9a\xd0;\xfc\x1e\xa6i~{Y\xdc\x1d\xd3\xb3\x15\x95\x85\x16\xec\xa8\xafn\x0ddj\xa1\xbf\x96\xcb<+\x89\xb9P\xa9\x16)\x1b\x05\xf8\x1b\x0dg3\x12\x9f\xc9\xb1\x96\xcd\xa1\x97\xac\xbb\x97\xe1\xac\xca{Dh\x98\xa4\xd5\xab)\xfby\x9e\xd3c\xaet\x87r)\xca\xa3Z\x88\xf6\xe6rzo\xc2\x92\xbc\x0f\xd1\xacO\x00@Rw`\x9ad\xf1Q\x95\xc6+!\xd1\xaaH\xe8\xdd\x91\x96U\xa6\xf3i.\xf2x\x15\x89\xa6\xa2<+W\xb2\xdd\xbc9\xc2eH\xe7\xb2\xfcb\xcd\xfd!I\xe3g\xfcM>SRdaz\x94G<_\x92M\xf9^M\xca\xb3\x83\x8bg\xbc\xec\x92D\xd5\x8f\xff,9\xa8\x9c\x932O\xd7$\xbeX\xdd\xd0\x82\x88\xe6Y\x06\xedC+\xbdQS\xf5r\x91\xaf\x8a\xa8\xce|Ay_WE}\x19\x8b,\xaf!>\x82\xa2\x15\x94\xb9\xafLA\xdaQ\xa5'GyA\xd1\x0c\xf1Wt\x87\xf8+\x9aH\xafn\x13cm\xbf\x97\xd0nVa\xb0\x1c\xfd\x08\x17\xecL\x9d\\1\x96bF\xe8q\xe6N\x9c\x05\xa1\xa1\xe3\x83\x83K\xe6T.\x9e5G\xb5\xd4\xf3a\xe2T\xdb\xact\xae<\x1f\x0f\x8d\x12Eh\xffy\xe1\xb9\x93+\xcfC\xc8\xea\xb1\x87\x94\x97\xa0\xc1I\xb8\x0c\x92\xf2$\\\nE%\xec\x93\xeb`\xb0\x06\xaf\xd6\xf4\x16\xc9I&\x12\xb5\xb9A2\x81\xf7\xe4$\\z*9\xea\xab\x98\xe1g\xae\xe0\xd2\x7f\xf7a\x9a\xae\xf7Bj%)\xbf \xb1O\x94\xe7\xf1\x0e+\x93%\xa7\xea]RR\xcf\xf5\xbc\xa0 l\x1f\xb9\x8d\xaet\xdd\xc1\xc8\x08\xa4\xb1\x081A\x959\xd9\x97o\x88\xb8\xaf?/R\x87[5\xd4\x89]r\x19F\x9c\xbbj}\x9b\xe0\x04\x0el\xca\n\xf8r0\xb0j\xce\xbb\xbe\xfc\xffP\xa3\xa87\xa7\xbe<\xe6AX\x8e\xb3\xff\x1a:\x87\xf1\x84|\xf2\x83\xa4d\xffT\x81$ \xca|A\xbe\x11f+\xe0\xd4\x94\x8d\xfbf\xe4\x92\x07\x1d\xba\xf49>\xa5$\xa3,\xc9\x0c\xabz\xc7\x14\x08}\xd3\x9aH6\xd5\xb1K\xbcj\x9f\xf7\xed\xef\xd6~f\x0b\xda&\xd5\xb8\x8b\x92\xfb\"\x8f\x81\x953Tz\"n\xceZ\x1fQ\xa7\xac\xb5\xb5x\\]r+vW\xbb\xd8\n\x1d\x93`1yb]\x8bM\x811\xd2\xcd_Fp\x89\xd1\xf30j\x15\xcb\xe8,V)M\x96aA\xb7\xa7y\xb1\xd8\x8aC\x1a:u\xb6\xbcX\x1c\xb1\x14\xcc\xcapE\x12\xe1q\xb8\xfdy\xeb\xf6\xf6v\x0b\x8b\xac\x8a\x14\xaf\xd7I\xecT~\xda\x8d\x04\xb96U\x06h\x14\n*\x15\xc0\x189\x1aI\x894\xf2\xe5\x9d\x00Z\x1d\xe3\x87\xf5\xe1\xde \x83&dy/\xb0c\xc7\x8a\x9c}\xc3\xa1\xd2\xc6*\xd1\xaa(HF\xdf\x0bR\x84\xd3e'\xcdS\x19A\xc5\xfd^\xbfrY\x99y\x04~1\xf4\xd2k\xd6\xc1\xce\xff\x893#\x14\xe1{\xc5\xff\xe5%\xfe\xe7\x1e\xba\xd8\xaf|\x89D\x0f\xfb9'a,\xf6B4g?\xd0\xcb\xa6\xa3E\xd2\x88z\xc5\xde\x15Wf;\xd7\x00Z\xf7\x9fS\x1e%M\xa5VX\xd1P\x08\xcb/HJ\"\x9a\x17\x9e\x1b\xf5\x05\x82\xac\xb0\"\xee\x8b\xaaBM\x9d\x9fs\x04\x9cHz\x94\x86V\x85\x1e\x15\x9d7Q\xd3d\x8f\xd2\x0c\xab\x8e\xa3\x0cG\xf7\xfc\xef\xeb\x04\xe1\xa35\xc8k\x14\xcdf9\xdd\"qB\xf3\xc2\xd6\x01A\x9e>J\xf3\x7f-\xf3\xac\xa2>8\x18\xe9\xb3\xacm\x86%\x87$\x8dp~\x94\xce\x14\xa2\xbe\x9e\x0e\xf9Vz\xbe\x97\\R\xdbC\xecSh\xccB\xf7\x11\xc5Qr\x8b\xce\x91\xcd\xca\x80\x89\xc3\xe8\x03~M\xa8\xa6d\xdc\x8f1\xce\x05\x8f\xca\x8a \"~b\x19\x9c\x151)H\xccg%X\x90bF\x18\xc3S\xd3\xa9#\xdd\x16K[\xbbx\x08\xb3\xf4mK\xd9\xdd\xd3\xa5\xdf\x00<\xcf\xd7\x97\xbeZ\x87\xf6\xaa7\xde\xe7*\xff7\xa8c\xd3\x96\xbaC\xb3\xc6\xb5\x88#)\xb9K\xf34\xcc\xfd\xee\x0b\x16\xd1\x98n\x0f\x8a0+8\xd8\xfe\x8a\xbb\x86\xf1Wi\xaf#\xc8\xcai\xde\x9e*m\xae\x16|d\x1aG\xfd\x98\xddP\xab6\xac\\\x83\xb57\xb7\xbb\x1e\xd8\xae\xda\xaa\xa8\xb3u,h\xc3\x9f \x84%\xe5\x0c\xe6\x0e,\x06v`{\xbd\xefNv\xb6^_}\xe7}\x0c\xda\xbf\xb6\x93\x80|&\x11#p\xb8\x0b\xb7]\xd3lH\xe9\x87\xb9+\xf1\xc0\xae\x10I\xeb2\x02\xaag\x12\xee\xdaB\x18s\xe3\xb3\xbe\xc6\xf1\x0e\x9a\x07\x0e \xca\xe4\xef\x04~\x80]\xaf\xb9\xfb\x05\x17\xdbf)%\x03\xd7\x93\xad\xb9\xd6\"\n\x1d\xec\x83K\xda!\xe9H\x87\xca]\xdd\xd5\x8d\xaad\xd5Uk\x18bc\x1bV\x83\x1c\x10F\xae\\\xb3\xb6\xf0d0\x15\x97K\xd9\xf0\x9a\xb7\x8f\\W\x1f\xb6\x9a\xbd\x9a\xf2\x0bB\xe7y\xdc\xab\x9f_-\xb7U\xa6.\x9f\x84U\xc6\x18\xfb-\xc6\xd8\x9bU\x07\x80\xc3\x95\xe5J\xdat/\x8f\x87\xf0\xa8\xb9\xda\xfanh\xbc\xdf\xe8r\xc3oCR\xbc\xe1\x0bB=\x974\xd9\xb8\xbe\xe3\xe5Z\x97f>vGd\xd5}\x1d\xb9\x95\xc8\xab\x12\xb2~[O$\xd5)\xeak \x9e\x0c\xc8\xca,\xf8}\xd4n(U\x1b\x89\xfc\x968\xba\x97\xd0\xab]\xbfY)=d\xd3\xeav}\xa0W\xbe\xd031\x82xS\xb0!\x08g[\x15v\xb5\"\xd4 F\x99D\xeb\xa6\xdcoI\xe2\x1fe\x96\xd5.\xda\x85\xa1P\xcd\xb6r3\xf0(\xed\xcb\xfa\x8cK+\xee#\x1e\xa5!V\x97\x99I\xac.@\x1e\xa5\x1dQ\xdd\x006\xa5\xfbf\xc6\xdc\x99;\x1fn|\xb8\xee\xbe\xceku\xac\x11\xd8\xdd\xaa\xc5Qe\xe7\xd7\x8c\xaeSu\xd0\xe9\x9b\x02\xf9\xa0\xd7\xa3\xae\x0c2\xd3FS\x18\xda\xaf\xb5\x06j\x07o\x13:\x97\xaa6\xe5\x80\x91\x19+\xd1p>'Z\xe4\xd0\xab\xf4\xa1#W\x1f\x03b\x17|\x8ekP\x11\xd5\x9f\xaf5\xe3S\x1f\x04\xcd\xdeU\xe9\x8f\xdc;\x83E\xb2\xfe|m\x85\xb6o\xe7\xb0~\xb6\xfbpnt\xca\x80|\xe4c$%\xb4\xbd\xa5\xa1h\xae\x97#\xeeC\x1fe\x8b\xb3\xbaz\x0f\xc7\xc6\xfbg\xd9\x87\xfa\x8a\xb6\xf7\x94\x92S\x82~\x81*\xc4\\]\x02q\xe5\x01W\xd9G\x83\xee\xcf\xa05\x1a\xe5\xc6\xcc\xa0?\xd1\x89\xc6\x9a\x83\xbc\xd0\xd8\x08\xe5z\xda<\xed\xb7>\x8c\xfd\xc1\x13A\x06\xdf{\x81r\xc6+`N\xab\xf3YEl|5\xaflJ\xb7\xf2d\x0e\"\xf4\xab\xcfH\xf8]\xf4\xcc'\xf7\xa2\x10\x02\xe9\xf0\xd0\x07QZ\xfdD\x06\xce\xb2@=\xc6A1\x8c\xbf\xd32\\G\xe8\xd9\x03\xfb\x08C\xfb \xf6\xed\xff\xd5\xea2\xf4^\xcbZuC\xb9w\x94w\x8c\x1d\xfb\x11TPn\xc8\x9fz6\xee!'\xb1\x0d\x8a\x18\x83\x10F\x95i\x10\x9c\xe2x\x0e\xf3l\x9a\xccJ\xb6<\xf6\x85\xc5\xcb,\x06\xb8\x17yAM>\xd0\xe5\xc3\xfd\x10\xd7{\x92\xe7\xef\x04\xf5\x0b\x94O\xe4\x05\xfd\xf1n\xd8\x9a(e\xcd\xee\x00\xba\x02\xd4\xea\x8f\x9c\x0f\xa3\xdej!t\x1fV\xd8?R\x94\xca\x1cL\nK\x14}P\xe9\xeb}\x90]\xe8\xb0\x11\xff\xea5)\xa6>\x0f\x0c\xf2\x9e\xdd\xd8g\xe9\x83\xbc\xee\xb3\xbe\x1a\x93\xbc'^z\x02{8t\x8aU\xb8\x05^\xd0\xf7\x0eV\xc1\xdb\xdd[\xbb>\x96F\xdc\xd9[\xd6\x01z\xa0\x8a\x0e\xca\x11$\xf7F\x04\x86\x9d\xd9\xdc\x82\xbe\xa6\x07e><\x86\xca\x9ck\x192\xaf\xf0~\x17\x1a\x9f\xf0LST\xb4\x1e\xa93\xbc\xbe>&\xa1\xf1~\x80]ik\x90=J\x8f\xb4j\xef\xd5\xb13\x8e#\x9b\xban\xf7\xe0O\x0e\x95\x1b_\x96U\xb2\xc9&\xa8P\xb4\xeb\xee\xd1\xc2\xa7\xc1-\x98\xb4\xfa\xee\xd1\xd0\xc1\xe0\x86\x0c:\x85U;\x1d\x0dh\xc6)M\xbd\x10\xa3\xfa\xe2\x90\xdeK\x04v\xef\xbbw\xa3JW\xf3|5\xa3\x92\xfcA\x8a \x03\x9b\xb4\xcaW\x8a\x81\x9c\xb0\x14E\xe7\xb89\xb2\x06\x9d,\x15\x9c2y\xc9\xe2\xd8\xc6\x08\xe2\xa4\x1eX\x0b\xa6\xcd\xc3r\xce\xc5\xac\xf8\xf30\x8f\x89q@\xa0\xe3y\xc3\xa5\x9aXq\x93\x11\xca\x03Y\x85JQI\xed\xb6Y\xf7NMi\xb7o^\xb7N,\xf3\x9ec\x99\x1ee^\x1d\xda-\xc2y\xe9)+\xab\x16\xc2@\x13\xa9c\x7f8\x98^'\xb2\xa3\x0c\xab\xe6\x0cf7\xf4{\x1f\xe3.\xbe\xffh\xfe\x19\xdb\xf7\x1b\x01\xa5\xb0\x80\xc7P\x90\xb0\xae\xca\x99\x98\x93\xdc0\x95&\xe5\xf0oD\x83\xbc\xd0\xd5c\xa1\xb8\x07T\x97\xd4\x9ah]\xba\xa1\x0d\x04\xd7y1\xa5N\xa4<\xac\x0c\xb8\x02p/Z\xd7\xc1\x8e}\xd0\xf7\x17\xf2i\xcd\x0e'\xfa>W\xf5\x93k\x1d\xff\x07Hj$\xdanH|\x8d:r\x06\x17<\xdc\xcc\xb1V\x1a\xc5\xf8\xcf\xce\xb6\x08K9\xd9Q\x02\x12\xaa\x11\xa2do\xe0\xd2\xde\x9f\xff\x81*\xa9lRz\x95R\x0d\xb3p\xf2\xaf\xd155\\\xa3\xa0\x99\xb2\xf4\xf1\xd2\xb9\xbd\x1f\x88\xd0\x85\xccU(y^y\x9d\xf7A\xb9T7\xe5#\xaa\xe5\xb5;\xbd\x97@x\xff\x83A\xac\x1a\xaa\xa0x\xa7\xd4\\\x8a\xdf\xb5\x7f\xb11\x1e7\xe5p\x95\x05M\x1f\nl\xcc\x8fP\xaa\x0b\x16!\x8d\xe6\xee\xf6\xffq'\xe1\xd6\xdf\xaf\xd8\x9f\x9d\xad\xd7\x9b\x1f\xb7\x82\xab\xef\xbc\xd1\xb6E\x0b\x97\xbb\xa0HJ\x19\x90\x80\xb1\xed\x1c\x92\xb3V\xd0\xc1\xd6)\xcb/P$\x8a\x14\x92\xef\xd6G\xe7Z\xac\x0f\x1f\x9e\xc33\xe6\x9ar^\xc3\xf6\xc1`h\xd47%\xa2s\x13gN\xe9\x12\xd54)]\x96\x8a\xb7\xac\xe3\xaa$\xf7\x90U\xb7\xdce\xf4\xd4)\x0d\xe9\xdd,zd\x8a\xc7\xa1S\xecF\x19-\x8d\x07\xdb\xe6Rp/z\xdf,M\x96\x03\x02\xcfJqj\xe5\xfa\xd1\xa0\x0b\x93\xa9\xeb\xd8\xc65\x7fm\xf7\xc4\x8c\xd6\xf61\xde#W\xf3> \x97\xda\xb6\xf9\xaf\xb7\x8d#\x8a5\x9c\xf8\xddp8\x98\xcf\xd4\xd7\x92p3\xf3\xa6W\xc2\x92\xd0\xd6+\xe7\xc7\xb9E\x12J\x80\xc7\x8b%\xbdC\xfb\x9f\x8az\xc6\xaf\x12N\xf1\x93\xb4\xa8\x92\x89\x9a\x16\xe0a\x18\xcd\xd5:M\x86S\x82O7\x7f\xc2\xb4\x0bi\x9c\xb5\x0c\x8b\x92\\\xe6\x95U\xd5\xc5\xf8\xf2\xfa\xe2\xf0\xa7\xf1I\xc3\x9c\xfa||q\xf6\xee\xe7\xf1\xd1\xf5\xc5\x87\x1f/\xcf\xc7\xc6oj\xda\xd9\xfb\xf1\xf9\xc1\xe5\xf1\xd9\xe9\xf5\xc9\xf8\xf2\xe0\xfa\xe7\x83w\x1fx\x99\xc3w\xe3\x83s\xf6~\x8c\xf9\xde\x1f\x9c\x1f\x9c\\(_\xce\xc7\xff\xbf\x0f\xe3\x8b\xcbF\xca\xc5\xfb\xb3\xd3\x0b^\xfc\xdd\xd9\x9f\x1aYXoO>\\\x1e\\\x8e\x8fZ\xe9\xedw\xa5\"S\x0fD\xdf\xc7'\xef/\x7f\xe5\xe9\xd7\xc7\xa7\x87\xef>\\\x1c\x9f\x9d\xaa\x19\xf0\x93\x9a\xf0\x9f\x17\xcd\x0c\x1f\xce\xdf\xa9\xaf\x17\xef\xc7\x876\x034\xd8\x83\x1b7s\x9f~\xaf\x93\x9d\xb9\xf8\xf2\xea\xb9\xfe%\x91e\x9e\xe9_B\xf1\xe5\xf9S\xfd\xcbJ\x96\xd9i\x15*\xc5\xa7g\xcf^\xe9\x9f\xd2\xea\xd3k\xfdS$\x9b\xfa\xdek\xd0\x8f\x1c&/\xfaT?%\xb6z\xc7\xe8\x8e\x82,\xd30\"\xee\xf6G\xba=\xf3\xc1\x01\xd0\xf1\x96\xcdkc\xad/\xd6Fsh/q\xdd>\x1f+3g\x8d\xaej\x9e\x1c\xcd\xbd\xf5-\xb6\xf9\xa7\x1d]\x18\xe0\x1c\xe0\x03j\xe9?\xb8\xf5\xdbok\x9d\xa1\x85\xde\xc5\xec\xe9\xc2\xf8\xa1]\xe0\x06\xf6\x88\x13\xcd\xbc\xb8! bO_>w\xf4\xc5\xcc\xa9q\x95?\x8b\x86\x9e8P,\xf7?x\xb4\x9f\x86\x0b2\x02K\xf0\xa8%?\n\xac*\x85I\xf9\x97E\xaa[\xfd\x00\x0crL\x80\xf3\xd6)\x89\xb4\x1b\x9b\xfe\x8b\xa6\x0f\x87o\x9d\x1c1\xb9\xddSS\xdcsjR\x12\x16?\xeb\xa7\xed\x83A\xfb\xf8A\xf3q\"\x14D\xdbj\x1c\x03\x96U\x9av\xa1\x91a\x1f)\xdb\xd3\xfd\xbf>\xa8\xfb}\xbb\xc1\xb2\x9c\x9f\xc8\xdd\x08tS\xbd\x87\xcc\x80\xb4\x1d\xfb\x1f:\x03\x1a\x1f{\xcf\x19`\xf0\xab\x10\x96\xdf2\xf6\xcb\xc7\x1d\xbbT{\xbe\x87\x0f\x10eD\x92r\xfe\x96\x01\x9d\xfc\xb7\x18PI\xe8}\xd9[\xdb\x80\x8e\xee= \xce\x9ew \\6^\x0bx\xca\xf1\x1ad\xc3\xb6\xf16\x89\xd9iEd\xbe4\xd9\xa5e\xaen\xd1\x19W\x05Z\xf4\xe5\\|\xda}\xd9\xfa\xb4\x96Ti\x9b\xcc]\x88O/_\xb4\xc8\xdcY\xf5\xa9Ej\xdfI\xc3R\x13\x93{c=\x14dh\x1e\xd51\x04\xe9v\x0ca%w\x1a\xf3xm`\x1e\xd0\x14Q\xfa\x9fA;\xc8\xe6\x18n\xdb\xfcG\xa3\xc8\xaaH\xb5\x12c\x03\x07\xd3(\xc2\x95\xa8\x1be>\x9b\xd8\xa0F!<\xd2\xb5R\x83\xb8\xabF-\x84\xf1\xc9\xbc\xae\xfa\xfaF\xab\xf5\xd0\xc2\xc7\xf1\x8a$\xf3l\xec\xd0'\x13O\xc8\xcb\x95\x84^\xcb\x8bt\xad\xd4\x81\x81\xb3T\x0b!\n\xd3\xca\x9cup\xa9uYq\xe9m\xa9\xe3\xbd\x81\xf3\xe5e\xd3|f)ca\xa0y1D\xb9\xb6Q\x9e\x18\x99\xf1fAS\x8b\xc7\x9d\xec\xbdZ\xbesi\xfe:@\x8a\xd0\x00\x95J\xccz\xbd 4\x14\x87j\xb3\xceS\x8b\xb4\xa2QOm\xde\xda({\xde#\x051\xd6q]r\x81\x8bV\xd7Q\x05\x0c\x95\x80\xc5a\xcb/e\xaa\x8d\xcc\xef\x86\xaa\xb8\xb9;>\xba\xa8\x16R\xc5J\xdc\xa6\x9bH\xab\\zS\xe8\xd3K\xfeV\x19:\xad9\xb8\xc5\xe7\x01\xe6,\xcdGLQe\x937J\x96\x8c\xdc\x99\x10)\x8a\xce\xea\xf8\x95\x9c027g \x85{R\x83\x1c\xd4\x1a\x16\x10\xc3@\xc0\x97/\x90\xb8\x18\xb0\n\xc1\xb6C\x87\xabD\x0bqF\xda\xb1i-\xda$\x1d{\xbez\"h\x91\\\xaa\xa0\x0c\xa7\xe4]\x1e\xc6\xc6h]j4=\xf3T\xf2\xa5a\xf4t\x9e\x8aX\xfb\xe8\xf1-\x0f2r\xcbx\xf6qq\x9fN\x9b\xa7\x8f=)Y\x93t\x042\xa0\x935\xdf\x82\x94e8c\xc4GP\x90\xb0\xcc;\xcc\xe4\xd2$\xc3|\x8b\xb0\xf8\xc4OQ\xf6+`\xc9\xa8\xdb[\xbfmb\xe4 .:\xb3\xcck{\xf2l[\x05\x03\x1d)\xde6\xf7\xc0Uba\x85\xb0\x0f\xce*\xe3\"et\xf2\xc1\xb6VTo\xad\xd0\xe3&\xe0M\xd1\x88\x1bz\xec\xd0\x1fH#}0\xc4\x95\xfb[\xa5\xbf\xa5Hf; a0\xecM\xab\x86d\xe5\x85\xa8\x7f\x7fBus6`\x8f\x82t\x83\xde\xbbO\xa1\xf2\xff2\xed\x00\x8a\x15\xecA\x18L \x8d\xe6\xf6L%f\x12S\xd5\x01`\x98\xed\xe0\xc2\xc0\xe3\xc8'\xaaD\xb2\xb8\xfa)\xec\xc3?\xbe\xc2\x08R{\x91\xa9\xbcT\x14:\xc2f\xb5\xa0\x0fh, 7\xe6mXd\xdc\x91\x84\x98\xa2\xc6:7\xc2tB\x99d\x11\x81\xf5\xb3`w'\xd8\x810\x8b\xe16IS\xb8!P\x90E\xbe&1$\x19\xac\x9f\x07;\xc1\xce\x1bX\x95\x04,r~\x11\xd0s\xc3\xf1|\x0ep\xb6XW\x0c4\x18i>\xedRv\x8e10\xd9\"\x8fI*/ZN\xc2\xa8\xe8\x88*5\xc7\x12\xd5\xcdVO\xee5\xe6\x16C9\xce()\"\xb2\xa4y\x87R\xf5B\x94\xe0\x04\x8cR\xc42\xcaz\x95\xeb8?y\xe5i\xc1\xad\x9dG\xf0\xfb\xf6\xca%x\x1e\xac\x8a\xd4\xaa\xfe\xc5&\x8fq\x15\x11\x83\x88wIFNW\x8b\x1bR\xbc\xcd\x0b\xb4\xcf\xdb\xb7}h\x86\xdd0\x84\xc2\x90\xcf]\xd5\xcd\x0bZ\xd8\\w\xcb\x1b\xb7\x0eT\x8f[\xca\xe8cH>\xac\x8dN3\xe4\x9b\xb0$Gyd\xe5\x1dA\xb8\x00mB\xc8\x08b{\xf6&x\x8c\xa0c\xd3\xb7ac\x04\xeb\xae\xec-\xc0\x18\xc1\xc2\x98\xfd\xab\x17\xd09\xc9\x06\xe8WA\xe3\x8e\x95M\x98\xbd\x03\xec\xe1\xf6\xad\xfc\x1a\xd6\xae*\x9eL\xc1Mz \x0c\xa8$\x02\x0e\xba\xf3\xcf\xcc$\x06\x082\xa3y\xfb\x9f\xe1\x1do\xa6(\xd6t\x0d\x11T\xe5\xbc\x81\xda\x9a\xeac%K\x08?\xcf\xd9\xa4LWi*\xb6\xc8\xcc\xbd\xf3\x95\x14i\x15\xc0\xd2\x96\xdc\xc8\xb5\x91\xbd~ \xfe\x9a'\x99\xeb\x04\x8eZ\x04)\x15FU\xcb\xd8\x93$\xa0\xdcE\x9b\x9c7\x1f\xb5s\x84\x8b iu\xccr\x9a\xef\x93\x89\x0f\x8e kz\xa3?\xcb\xa7\x11\xcf\xaa#\x10\xa8\xfa\x08\xb9! Dc\xbd\x85\x86X\x01\xda\xa1\x8e= #\x13/qV\xc6E\xf1#j\x99\xe4\xdf`9XhWfvS\xaaVr\xcb\xfc`r\xa5\x1dGo\x85>\xda\xa2&\xc6\xd8kZ\xbf\x96\x15Y\xcdh\xc7\nh\x81X\x03\xdfQ5b\xa8\x0f!\x0f\x80\xe2C\xec\xc3\xdc\x87\xb5\x0f\x0b\x1f*k\xdf[\x1f\xc6V\x85\xa1\xba\xed\xdbb\xd0\x86\xc1p\x0bo\xdexP\xde&\x9c\xca\x0f\x96\x05F\xfc\xe2\xc1\xd0\xbb6Z\x14\x96\x04vF\xddk;\xe5\xe7\xd7\xdf\x82\xf2\xae\xa4d1d\xe3\x12\x19\x8c\xf1y7\xdc\xb0\xe7\xa6 a;\x92\x9a\xfa\xd8\xc1\x05lH\xc2\x89\xc9\x8d\x00\x1e\xe9\x05`\x04q\x9e\xfd\x9e\xc2<\\\x13\x08\x81\x0f\x06h.\x0c`\x08\xe4\x99\x0f\xe1M^\xd0$\x9b\x05\xdcaQxS\xac\x96h\xe2\xc1\xda\xb0\x05\x07\x069\x93\xcf\xfbg2\xd3yQ\xc1\xc6\x92\xa2\xa8)d\xc1\xb1N3\x1fi\xe2\xbc\xa2\xf2\xf8P8\xef\x97#E\xaaS\x9e\xa1\xa4\xfc\xade\xee9\x04\x94\xd6\"R\xe8`\xacK\x0dw\xf3\xb6\x87U\x1eb\xe8\xd4\x14\x91\xf0\x12\x91\xf0\xa2\x1fh\xe1\x1bp\xb0\xe9\xf9\x16\xbclz\x86\xe0j\xd3S)\x14\x8au{\xeaw\x99\x1b\x9a\x1el\xf9\xe9\x83[\x0e9\x91K2\xea\x0b\xb6\xbc \xe5*\xa5'\xe1\xd2\x17\xbc5\x83\xf2_\x12:?\xe4\x0e=%\xcaV\xa0\xed\xa5\x0f\x89\x9b\xe2\xf9z\xbfi\x93O\xc5tL9\x1f6\x8c\x96\xd2\x1f\x13[r\xf7\xb0\xaat\x96\xe5\xe6a\xd5\x98\xd8\x19\x83\xa2\xd2\x90\xc7\xc8\xea\xdc\xde\xbb\xaa>bQ\x7f\x10\xbc^>\x18\xbc\"\x05\xbc\x96\x88x9\x9f\xc4\x8f\xba\x88sWP\x04a\x9a\xe2 R\xba\x1e\xf7f\x86\x8c\xcc\x10n\xc9\xf6\x0c\xe4\xa2lO\x9b\xbbZ\"w\xb5\xd4\xcc\x16\\.\xa1\xb8?\xfbdz*l`b\xa0\xe6\xee\xfa\x7f\x1b\x03ez\x1e\xc2T\x99\x9e{3Z\xa6\xa7\x9f\xf92=\xa8Pm`\xba\x16\xd2\xbd\xf6\xac>WW\x885\xe3\xf6\x87\xb4\xfa\xd0\xa2\x83\x1e:\xbd\x15f\xef\x94\x10u=\x96\xa3`\x04\xf6\x08\xf0\xb6\xe7A\x88h\xf7\xfb\xfba\",\xe4\x90,v\xeeW\x0e\xd4\xcdX\xd2|i\xf1\x91cz\xba\xa9g\xf9|\xc5\xe8\xf1&G\xb6\xc6\xdc6\xc9\xa4\xfa\xb4\xae\xf0z|)\xa8O5Xs\xd0\xcf\xde:\xba\x07\xfd\x95Q\xc3\xab\x8an\x13\xb8d\x00bW \xd6\x9d\x9a\x9c\x0d\xbb\x93\xab\xcac\xcfR\x9a\xd0\x074\xff\xcf\x8b!D\x84\x15\x9c\xa7\x8a\xc8X\xd4\xd6=\xc0\xae\xf5\xe1\x90\xdb\xc3~\x8e\x95\x83\x92{-\xafxz\x1f\xaf\x8dx0\x10I&>\xed\x06\x07\xe4\xf1\xfaz\xf4\xba\xbbG5c\xf1\x1aO\x87\x1d\xec!^V\xba\xbb\xbb\x9e\xafK\xfe\x02j\xbb{\x80\x8aL\xed\xa1Sc\xb3\xa1\x83\xcb\xc6>\xae \xd3\xdef\x9e\xd9\x9b\x19\x8a\x11\x86\xec\xfe6\xd0\xab\xbb\xda\x87\x89\xb1\xd4\x841j\xbb\xaf\xafZ\x1f\xaf\xda\x0e2\xe0\xd9\xf7\x0d\x9d{\xab\xb5\xc77^\xec\xffM\xc6\xc1\xf4+\xa8\x03\x0cC\xfaV\xf7LX\xbd}m\xdb\x02\xdc\xd3\x11x\x8fJ\xdcy{\xff~\x8b\x8e\x9fT\xd8l\xaf\x99m\x80\xfe\x10\xdb\x1c+o\xfdO\x1a\xdd\xc4\xe2\xc0F\x0cO\xc5\x83\xf7\x1bi\xcb0\xe9[\xd6\xee\xf0A\xa3\xab\xb4\xa5\xcdC\xe4.\xc1\xef\xbd\x84]\xf6X\xdf\xae'\x7f\xf1\xcf\x18\xe9#\x98\x13\xf0\xb058\xea\x9f\x85\xe9\xc2\xf0iS\xb7v\xd3\xbc\xed\xc1j\xae\x03&\xa5_=\xd7\xfc\xb9`'\xb6\xc9\xcd\x81e\xc9>uAK\xc3\xb8\xef\xbf\xe7h\xffv\xaf\xd1\x1e\xf4\x8c\xb6e\xe0\xf8\xbfa\xd0g]\x83n\x18y\xf6\x1e\x9c\x1d\xe34\x8c\x857\xff\xbe\xab\xf9\x96\xd9io\x17\x86*\xe5\xd9Tn\x8aa*{\xf9P\x95\xbd\x95&\xeb6\xe7\x12\xf1\x06\xc3\xf2YOu)\x12\x96\x0c<\x18\xca3\xe7\xe1r$qW`\xcc1\xc5\x1c\x95\x8e\xa8\x05m\xc2\x1e\xacl\x9c\xc1\xfd\xb4S\xac\x9a)\xe6\xec3\xbc0\xe0\xacD\x9b|M\xa6\xe0\xce\xe0\xc9\x13\x98)\xa1\xc7\xf4w)y\xd2\x93\x85{\xd2~\xf1\x93\xa4iY\x0d\x1bBK\x86{\xc7\xaa\xcf\x89\xf6\x1e3\x98\xa5w\xc6\x0b\xcf;\x1d\x07\xb9\x93\xd4\x87\xe8\x8am\x84\x8c\xad6\xd2X^\x17\x9bJ\xd4)\xd9k\xbe~\xf9b\x8d\x1f\x00\xca\xd6P\xcbLx\xc3\x1d\x1e\x0c\xdd\x0dt\x0e\x8e\xa1\xfcv\x84\x8b\xa52\xf9;w\xda\xe1\x9a\xea\x82=p\x0c\xbe\x97\xc0\xcc#\xa0H\x07\x83\xc8}\xa6\x1f\xaa\xc8Lq-\xfa\x91\xcaH\x01\xcd/\xd0\x12\x96\xb1\xcf\x02<*\x00?\x8eQ\xc8\xa7\xbe\xefi\xdfG\xbcP\xca\xfeD\xa2\xf3\xcd\xfcY\x90/\x8fcw\xc6\xefc<\xd4)\xe5d\x96k]\x136\xa97\xb0\x07)l\x823r`\x13\"\xf3\\2v\xb6\xe0\xb1>\xca\xa0D\x1c@\xe2\x0bLro\x90ko%w\xe8_]\x8bjX\xbe\x9f\xc3\" oR\xd2\xa5\n\x05\x18,\x9d\xe5\x1eU=\xe9\x96\x08\xb0\xa5,\x97aDFpc\xcd\xf8\xb5_\xbap\xfb\x08=\xedo\xbf{\xce\xabv+\xf7>\x15t]{\x12\x91\xec\xc35\x8c\xe0\xd6G5^=R\x1d\x0e\xa2\x9d\xec\"\xa0\xf0\"\xad\xa8u\xa2L+\x9d\x17B\x87!\xdfm\x7f\xe7\xd8\x17y\xac\xb6\xfac\x1es\x9c\xc4\x8b\x9bK\xb1\xc1\xdd\x05I\xf9\x9f\x17g\xa7\\0\xed\xb9cT\x8cW\xab\x81=`\x19\xb86\xbc;\xf6F0f\xfba\x8csi\xc8<\x16\x93\x0c\xa3\xf6\xa7\xf6\x86n\xa5\xb0\xa1|\x163\xaf\xb8\x01\xf9\x07z\xe6m\x8f\xe33\xee\xc4\x9bU\x92J2\xcc\xfd\xec\xf9P(\xc4\xa8\xab\x1c\x90\xf5A\x08\x9f\x0d\xb5\x11\xc3\x11\xa6R\x19\xbd\xfeq\xd7\x0d!\xe0\x84\xea*:\xea\x93\x9bG\x99u\xab0\x16m\xc2\xd32\xc0\xbc\xe1\x9bD>_U\xf8k\x0e\xd3p\x97\xcc\xc6u\x01{p\x14R\x12d\xf9mG\xa8\x9bLRg.\xd1\xd5\x05\xad\xd3F\x83x\xc5Qj\xa3\x0d\xd8\x82\x8bj\x0dyO-c4\xa8O}\xf5\x84\xa0\xad\xbfyuJ{\x1a\xea8c\xb9\xf6F\xd7}\x0b)\n.^\x98\xab~m\xccg\x9ei@\x8d$\x0b\xafI\xdan{\xf4aK\xf5\x04\x83\xa3\xaf\x1d\xab\xa3\xaf\x9d\xa6\xa3\xaf\x9d+T\xe37P\xef\x15%\xda\xfe\x96uR\xa0\x89\xd8\x07\xb9b\x9e\xc3}\xfeP\x0c1\xc9\xcb9Wf\x1fi\xdd\xa4\x9bT\xd2$\xc14\xebR\x9a\x0f+}\xd5\x01\xf4;\xe9\xe7\x07\xca\xea\xf6\xdf\x16\xa5\xce\xed>\x0c\xb9\xfa\x80\xe6\x1d\x8b_K\xd8\xa9\xfc\xb0\x1d_W8x\xednl\x8a\xf7\xc9\xed\x03\xcb\xce\x08D\xa6\xa3\xca\x9c\x9d\xd1J\xdb\x9f\x17\xe9v\x12P\x86\xac\xa6\x96N\xccq\x00\x15\x81\xd8\xe8\xbe\x0f\xb1\xfd\xec\x16\x80\xb0\xd2\xb8C\xd4},\x9a\xb85\xb1md\xa1\xfcm\xd1\xbf\xe7\x8a\xdf\x96\xa5\x96\xd8\xa2\xdfb\xd8V^\x92\xc4V\xednS,\xdc\xa9\xa5\xab\xc2\xb4\xd9b\x9fa\x0c\x97\xbb4\xa0\x1c+\xce\xc1_=\xce\xa8H@>/\xf3\x02\xfd>7\xe7\xbb\xb2\xf1\xcd\xdc\x97\xcf\x9ej\x90P\xdb\x087\xbdO\x19\x9b\xb4\xb57@,\x89\x91]\\n\x00\x12f\x11\xbaUD\nKA\x80\xe8\x11\xb4\x80$\x03\xe2\x01\xde\xea\x03\x9b,T\xb4p\xd1\x1f\xeb\x08\x92,\xca\x8b\x82D\x14\x92l\x9ds\x07x\x1b\x16W\x8e\xe4~3hv\xe7U\xd9(\xb9\xaf\x9f+\xcdT\xc3\x0f\xa6CD\"\x19\xb9\x1d\x805Y\x8f\xda{\x8d\xd15\xc1\xb2\xc8\x17 \x8a4YUdX\x9096\xe9\xca\xfcRm\xbe\xb3\xf6,;?\x861\xbc\x17mEyV\xd2b\xc50\xb3M\x97\x11O \x1f\x0f\x1b\x83\xbc\xd6\xf3y\xe7\xc5\x05*\xcb\x84\xbe\xe5D\"\xa3~1M\x0b.\xf3U\xb5;\x1c\xb4t\xf5\"}\xbfcZ\xa4\x01bB\xd4\xb0\xe3GW\x921\xd8D~\x9aLrv\x16\xe3\xbf=\xa0\xec\xdf\x08\nVG\xee\xe3\xeb\xbf\x04\xf2^>\xdf\xb5\x8c\xaax\x8c\xea_\xbd\xb0\xd4\xce@M\xd7g\"\x9f\x97i\x12%t\x04\x13\xd6\xb1\xe7\x8c\xe0u_>\xff^\xfc\x7f\xe1\xa9\xdeP\x1f\xde\xbb\x0eJR\x99\x97\x17\xbb\x167\x93\xec\x9b\x8e\xea@\xd0=\x9a\xc7\xca`s\xeb\xea\xbb\x91\xb7\xef~\xdc\xfe\xb8\xed\xed\xbb\x93\x8f\x17\x1fK\x0c\xc9\xd9.\x1eb\xf1\xc9\xc1\xd6\xff\x1f+\xe0\xffw\xb6^on\x05W\xdf\x8dX\x05\xdb\xedB\x8c|\xb1\\\xad:\xff\x86\x9e#\xc3r\xae\x87\xf3\xae\xb3\xec\xb3,\x7f[\x91\xe2\xce\x9eg[\xfatDG\xca\xd6l\x7fd\xd9\xc2\x15\x92x\xbb\xb6\\\xa7\xe1)\xeb\x13\x8fH.\xaf\x86w;\nl\x8f\xdc\x8f\xf1\xa6\xf7\xef\xdb\x18\xc8\xbch\x14\xebo\x04{\xac5\xd4*c\xa8\xa6}\xce\xc9\x87M\xe7\x08v\xcd-\xe3D\x8e`\xb7\xf5Q\xf5# \xaa\x9b\x8d\xd4\x8e\xaf3\xaepo\xb3\x94C\x015\xfa\x83s+\xc3m\x1a\xa4\xe2\xd4\xe2\xc2@\x8bp\xd5\xb9I\xf3\x9b\x91#d\x9e\xcb\"\xa7y\x94\xa7\x1e\x87{v\x96\xb8\xab\x8c\x94Q\xb8\x94\xbc\x13\x9bF\xcf7WH\xd2\x92\xe8\x8e\xea\xf6t\xf7\xd8\xf2A<\x981\x1cX\xb7E\xb0b\x1fJO\xeaz\x14\x93\xcc \x91\xac\x1bR-\x99\xad\xda\xd6uS\x84\xa1\xdb$\x03\x94\x90\xba\xacr6_\x93LG\xaf\xf2Ql\x14\x8a\xa0L\xc3rNP\xfc\xec\xd6o\x8c\xb0\xa5\x9cQ\x9f\x17dj\x8a\xfa\xd3J\x91\xbc\xe9\xef\x9a\xd9\xccp\x11u{;\xad\x02\xfaZ\x89g\xf3\xa4\xc8\xb5\x1e\x01\xe5\x0e\x9f\xd9\xbf\x80\xe6\xef\xf2[R\x1c\x86%A)\x8fc\xb1v\x17\xa3\x1f\xc1\xc6\x06\x9d<\xb5\xec\xbe\x82\x94\x94U\xff\xac\xbd\xd1\xf4+V\xf3\xd0\xa7\xb6C\x14*J\x8f\x1d\xf1*\xb17\xad\xbdPW0E\xcd\x82\x176\x83\xdc\xec\xa9\x94\x1a\xf7sn\xc1\xb0\x12\xc1\x91-\xdc\xcc\x02j\x97\xdd\xe6\x1c3\x96c\x9eX\xb8\x8a;\xd8\x83\x9dv\x7f\x10L+\x88f\x84\xd3\x02\xad\xf5\xe5f\xaaR\xb8=\x8e\x8f\xcb\xcf\x1d@s\"B \xfe\xb3Q\xf50\xabJ\xe4\\\xcc\xe7\xf1\x82)RH\xec\x9c\xdap\xd9q\x13\xb9\x84{.\xf6\xbc\n\x0f\xe0\x85H(A\xdd\x87Y\x03\xea\xe5\xef/_ \xe1\x1eu\x95\x8cU\x15\xc8\xf8\xc9\x17DL\xea\x9b\xe3\xf8\\l\xc1h7\xea7ku\xd7\x93\xa7l\x83N\xb6\xdd\xe0;o\xbbq\xf4xo\xe0\x0e~\x80\xb5\x10s\xbc\x81\xbb\xcdM\x0f\x91\xb5\xcbx\xd8\xf5\xe4\xee\xca\x9b\xec\\\xf9\xdc\x12{\xb2{\xe5C\xc9f\xa5\x84}\x98M\xe6\xb8\xef\x19|\xb7]j\xb2\x1c\xff\x8f\x1b\xa3,@\xfaX.=~\xc9\xe1dh\xfe\xa2f_\xb2>\xee\x83++\x15\xa0\xb3#tT\x95\xa4\x1861\xb7\x87A\x87\xb5\xfczf,\xcfs\xc6(\xfc\x15\xbb\x9c\xf7C\x14\x8eq\\z1\xdek\xcf\xf3\xe5@\xf1\x9f\\\xa5\xe5\xe4\xd9\x15\xae\x96Hd+\xb0\x9c<\xbfR\xebe\xff\x9a\xa8\xc0\xb0}8`\xcd\x02<\xe9\x90\x14\x12\xbf=\x84+\x15 @\xf1c?\xab\x8e\x91 \x9a\x87\xc5\x01uw\xc4\xdc\xea\xdfy\xef8GQ\x9f=\xa2\xd5*\xd3\x00?\x11\xa0\x92\xdd\x18\xe9\x0c9\x14g\xdb\xf1\x82r\x99&\xd4\xe5?\xe5\x0cn\xedz\xd2a5Q2x\xbep\"\xc1A\x8e\x1b\xbce\x93\x02\xb6\x18\xfd\xc1\xb7\xd2.7s\xdby\x03\xc5\xd6\xd6\x1b\x0f#{\xe0M\xd9\xa4\xb8B\xcf\x19\xac\xba\x08#\x13\xec\"~\x0d\x9a\x19\xdcf\x0e\x1fB\x06\xd6#\xee\xb7\xc3\xdd\xa9\x03Z\xb8 \xf7j\xe0C\xab\xc4\xd6V\xb7\x94\x19\xd7&\x0bVY9O\xa6\xd4u\x1c\xcf\xc7~\xb2\x89\xceq\xa9\x82\xea\xed\xcb\x17\xc8\xb8\x0e\x1cf\xcb\x84\xce\xfc\xb6)\xa2\x8a\xb2*\xbe\xbabl\xde\xd8\xb7\xbc\xa0*f\xe0\xfa\xa93\x19a\x97\xff\xe0\x85yf~{\xc8\xdeV%)\xc4b\xb36\xca\xf26/b\xfc\xcc\xbe2B\x13\xa7d\x89\xdf\xd9\xab\\\xb5Q\xab\xfcr\xb2S\x81}\xa3.\x86#\x04\x02d_\xf2\"\x99%\x19oP\xc1\x86\xa2\xbb\x88l\x93\x94\x8c*\x98\x95y\xf6\xd5\x97Mp\xb6\xb7\x1d\xd8\x94\xc5F\xe00|\x8dM3b\x01\xab\xaf/3\xb53Q}\x9b\xf2J\x85)B\x1b\xc4KBG\xbd\xac\xa7|\xf0\xe0\x13'\x94\x19R*\xeb\xaf\xae\x0bh\xae2\xca9\x86n\xa5\xd1\xdeX\x17\xd2\xdd\x84\x8b\xd4\xaa<\xa8x\xa0\x85d\x82\x17\xc9=\xe6_C4{9\xd7\xd0c\xee*Zc0K}H\x14p\xdd\x17~1\x12 \xb2I\x05\xb2\xd5\x95/\x0f(o\xc8Q\x8d\xc3\xe92\xd7\x84\xa1#\xa98\x9a\xa1\xa3I\xf8\x96\xe2\x13\xbd\xb9'\xba\xcbS\xd9$\xcb\x1e?\xc64#O7\xb4c\xdb\xa3\x8f\xf1\xe6\xbfos\x1a\x9a\xb2Yv\x85\xffxe\x0b'\x12!\xd0`\x99/\xdd\xaa\xc3bSS\x81\x96F\x8e\xa7\xcc\xbf\xfc\xa8\x14\x7f\x9c\xc9\x97 \xd17F\x95\x08\xa2\xcd\xf3\x94\xf5\xa9\xa6\xa56z\xa2N\x0f\xeb\x95\xa4\x8d\xfa\x94\xbcQ\x0c\xd0o\xf4=\xc8\xd6\x13\x0dW\xd9\xc4V\xad\x0b'3\xfbx\xe0\x8f\xc0\xf97\xcb\xb5\xb6\xfaHhP(\x82\x0da\x16\x1e\xb2M\x05&\xe5V\xf5\xf9*X\xc2\xc7@\x15R\x8c=\x08~\x8d\x99\xccF\x1f\x15\x05Rr\x02\xa1\x84\x1f`U\x91\xaf%;\xe7\xed\xf3\xcd\xca10ZM\xca\x0e\x0d\x9dT\xd2q\xc9$\x9d\xec^\xb1\x1e\x8a_\x1a5w\x8fnK\xa2\xa1>\x11\x93\xc6\x89\x98\x18O\xc4D=\x11\x13\xc3\x89\x98\xe8'b\"O\xc4\xa4\xa1\xde\xd3\x0e\xeei\xba\x9f\x14\x05F=\xb2o@\xd7vMNI\xf1\xa5\x8f\x04\x89\xf0\x8c\x84\xf5%\xd3\xbb\x0e\xcd\x1b\xca\xe5\xd1v>\x0f@\xc6\xc9\x95\xe3\xb7\xd0e\xd8%1s\x85\xdc\x04\x85<\x1c\xb7\x18\xa9\x88B\x07\x81\xb8;\xfa\xc4\xe3\xb4n\"\x1d)\xd0\xcb>\x9f\xf2\x91\x1d\xf9U\x97\xfc\x15\x9d\xc4 \xcc\xcd=%\x8d\x11\x7f\x15\xb9T}\xe7\xc7H\xfd\x05I\x7f\x96\xfeGG\xfe\xcc\xf8J\xf3\\\x92\x10\xcf\x87\x8d4X\xa6\xabY\x92\x95\x93\xec\xaa\x0biR\xb9\x86\xe35\xc9h)\xeby)\xeaQ\xab\xe9>5\xe4)G\x03\xb2\x167\xab\x1d\x1e\xad\x14D\x9fd\x10z\xb0r\xc3Iy\x85\xeb\\z\xb2\x17\xaf\x1c\x94;\x19<_\x82\x11\x17\xab\xd7\xb4\xed\x95\\\xd9h\xfe\x94w\xf94\\\x90\xa3\xa4\\\x864\x9a\x0b\xedd\xb6\x19\xcen\xb3\xcaP\x99{\xc9b]{\xed\xa0*BGY!8m\xceA\xad\x8f\xb1\x9c\x87%\x89\xcf\xc9,))\xd7q`uhS\xc6A\xcd\xb0|\xd5\xfc%l\xfe\xacR]\xaeS\xab\x0d\"\xf1<(\xdd|\x92\\\x89\xe9\xe8\xd9\xe9P\xa3?=\xae\xed\xefLy6HPh\xc3B\xfcR\xba\xed\x0f\xa2\x07>c\xd3;\x17\xaf\xb4/\x9e^'\xbfB/\x19\xf5\xc1\x17kwg\xa7\x02\xe7\x8e\xccH\x06\xb7s\x1c\x91%\xc9b\x92EI\x95M\x01\xf1Iv\x15\xc4J\x0ee\x10\xf2\x97\xa4K\x9a\xfd\x16\xfb\xaam\x95e\x83\xa7\xb6\xda\x91e,\xfd\x19\xd5!\xb5s/\xf3\xb2LnR\xd2\x82M\xe1\x01\xa0 \xa1\x19;\x9e\x10y\xbc\xc7\x11a\x8c\xc9>\"#\xafVf\x97\x9d\x81u0\xba\x8a\x83\xe7\x92&~0\xb0\x95\x0bu\xd6\xbf\xa7\x1b\xe5\x8fw\\)e\xc0M?\n\xa5,\xb2f.\x0e\xc3k\x11\xeb\x0e#m4\xd1G\xa7\xe6\xe2N\xc5\x8e!\x133\xeeI\x10\xadH\xb9\x93\x8b\xafr.\x9f\n\x9c\xc4\xf3\xe0\xad8\x17\x80\x0dD\x9fH\xa1\xf6L\xf4\x8c\x88 \xe6\xc0\xf66/p\xd2\x87\xce3 \xe2\x06T\xb7\xc7\x8flUk\x13V\x17\x16\xf6\x1d\xdc.\x84\xb2*\xb3[g]\x1b\xc3\x86\x8e\xbbNqn83\x08\x8f\xcb\xa7\x02)\xd4\xac1`^\xf9\xe0\xc9\xaeC@\xd1 V\xa0\x80\x96}\x96\xb2Iq\xd5\x01uP\x1f:b\xc2\xdbQ\x85\xe4\xd3u\xfe\xcaG\x92\xcd\xab4\xed\x82\xaa\xeb\x82\x94\xa4\xb1}Gv5Nh\x11[\xb9\xb8\xe4A\x8fg\xad\x8d\xc3\xe5\xe1\xe2\xb2\x94\x91]\xed\xe1Wd\x8e\xe4'\x8c\x97O\x12\x88\xedg~\x1f\x12\xa1\x1e\x0f\x9e\xdb\xde\xd7\xa2{\xd4\x88\x13$Yk]\xd6\x8evC\xbc>\xf6\xa0\xd0\xdb\x0d\xd5v\x8bI\xd8\xbc\x804j\xd9\xaa\xf4;_\xcf\x87S\xe9\xdc\xa3\xa2\x99VG/\xd0\xee\xd3\xdd\xa7\n\xdd+Hw\xf7\xb51\xfe\xc6\xaaC\xdd\xad\xa6\xb9P4\xfc\xe5\x0b8\xab\xecS\x96\xdff[\xb8\x8e\x9a\xf0\x85\x04\x11w\xe9p\x19\x163B\xf1biF\xe8i\x1e\x93\xb7E\xbe8\x16\xf7\xa8n\x81\x97\x84\xfb\x10\x06I\xb6\xce?\x91?\xad\xc2\"&\xf1a\x98\xa67a\xf4 }Cp\x7f\x99\xd8-\x82W\x14\xe6\xbcU\x16\xdf\xd0zc\xef4\xa9\x8a\xb6\xdeER\x8e\xb38)\xe7}\xf8X\xecK\x87\xe6\xcb\x93|U\x92\x0fK)\x94b\xd3C\xf3\xe5e\xbe\x8a\xe6\xe3,6%\x1f\xb2\xf1\xa7\xe2K\xd7\xb6N\xca\x93|M\x1e\xd0\x1dV\xcc\xd4\xb2\x92\xde\xdd\xee\x05\x0d\x0b\xfa\x80\x86\x8f\xf2\xdb\xcc\xd40\xd67\xa0e\xa1\x82{\x94\x14$\xa2\x129\xf4u\xa2>\x1c\xaf\xe5\xe9\xf8.))\xc9\x88M\x0b;k\xe6\x960i\xc0\x03M?T\x94\xd3\x10\x8cXx\xe6\x18\xa1\x8dA\xb4\x19\xde3\xcf\x18\x18\x18\x14\xfc\xc4\nS\x97\xd83J\x95<#\x90\xfb\xc6 0}\xac\xc6[},\x06-\n/M\xca\xe36\x95j\xb9\x16]WV\x80C\x97\xa6\x18\xbc4\xec\x9c\xd5\x9d0w\xe8\x01I4\xb6\xf3\x06r\xf8\xa1v\xd5\xfc\xe4 l\x90 )\x19b\x0fg\\[\x9e\xe6\xcb%\x89]\xef\x0d\xe4\x9b\x9b^\x8d\x1d'\xf9\x95\x0fE[U\x12\xa4\xc2\x10^X7\x90\xa9!\xe3\x03W\xe9!K\xc4Fr@/\x8b\xd5`J\xbe_\xbay\xff\xed\x06\xf7\xdar`\\[\xdaI\xbc)\x84!\xbf\x19\x87\x1f\x1a7\x7f\x1d+\\lnv;\x18B\x8azR\\\xb1Ue\xe4\x9f\xa2\xfd3)\xdajG\xa0\xdc\x15\xa0\x87\xe0'O\xd8\xa6\xe6\xc1\xb3e\xc1n!\xa9\xbe\xd8Xe\x97\xfaU\xe7\xde\xee\x847\xda\x05U\xf3\xb0\xac!\xaa\x0f\x80\x14\xf1E\xbb\xbd\xaeV0\x9e7\xef4C\x98\x0cq\x0el\xab\x08\x0ce\xf5@/\xed\xd6t\xd4|\x9f\xd6Zh\xbd\xbb\xb5\xa4<`k\x81\x0e#{\x91\xa5\xe4\x18\x82\xba\x14\xcf\xdb3\x9ew\xf9-Zw,\x16y\xf6\x90\xe6,U\x0cj\xfb}\xc8\xce\xa1{\xce$6\xd9,\xd93\x8f\xb4\x08\xd7\xa4(\xc9\xe5m\xfe\x9e1\x8c\xc3\x14\x11\xaa\xe6\xf4\xe2U\xa1!m\x8e3J\x8aw$\\\x1bZE\xd7\xe6FYu\xab\xed\xba\x1a\xadp'\xfc\xa0\\&\xc93\x93g\x0f\xfe\xf10_,\xf3\x8c\x11\x03\x05\xe9]\x00\x90'l\x1b\xbf\xb4Q7\xaf\x9fU{\xc9\xc7\x10\xa6C\xea\xcf\xcd\xf5\xff\xce\xfcfa\x8f8\xc6x8{\x042 U\x95\\\xf1:\xb9\x0dd\xcc\xb1\xaah\xcb\xa4\xa33j\x14kUQ\xa1\xc2\xc9\xee6\x86\x02\xe5^M\xe3FL\xccN\xcb\xca\xac\x9b}je/\x08\x1a\xca\x1c\x86\xab\xd9\x9c\n\xd7\xe1\x9d\xb2\x02v\x8aY\xcdr\xd6\xc2&\xd4\x12\x14\x86\xdb\xe4\x14\xf5Y\xf4\xadp\x91<\x1c.\xcc\x164&n\x97S7\x94\x13\xd7_\xbe\x00 \xca\"\x1a\xa7dA2|\xbfM\xb28\xbf}\xa3O+\xdb\xef4@\x9b\xaer\x99gq\x92\xcd>\x94D\x96\x93\xfaG\xd6\x1c\x9e\x0f\xcfxh\x9c \xcbc\x82F\xfd\xfb<\x8c\x1c\xc9\xf0\xe0i\xe8(|\xab5\x8e\xd0-t\x9f\xaa\x163y\x10\x85\xd9\x87\x92\x1c\x9d\x9dT\xe0\x1b\xe7\x11\x1a\xef\x06\xc9b\xc9{\xca/'\x9f<\xb1}\n\xe6a\xf9\x96\x84tUH\x7f'\x1b{\xd6z\x94\xcc\xae\xe3\xf8\xa8\x1d\xdc\x98\xd9\xed\xef\xbekB\xcdwp8'\xd1\xa7\x92Af\x98q\x81?$%\x94\xab%[_\x1e\xc0\x89\xce \x08.IP\xc7\xe82=['E\x9ea7\xb4J\xf56N\xcf.\xc7#\xb8\x9c'%\x8f\x0f\x95\xe5\x14n\xf3\xe2\x13\x08\xa3\xbd\xf4\x0e\xa9\xce,\xcf\xb6f\x8c\xc6I\"\xde\x13\xd6\x8fh\x0ea \xbf\xf1H\xca\xbf\xf9z\xd5\xbf\xa1\xb8\xee7\x1f~K\xf30f\xff\xd1\x08\xfc7\x1f\xa3Q\xfd\xc6\x1ds\xfc\xd6\xd7\xc1\x1f\xf3\xa2\xc8oK\x98\x16\xf9\x02N\xf2\x98\x14Y\xf2\xf7\xa2\xaf\xd4\x1f\xd1^\x14\xfe\xc1\xb5\x0f\xbe\xd6\xd7%\x17\xab\xe94\xf9\x0c(D\x84L\x98\xaf\xcf\x02p\xa24\x89>9z\xbdUE\xfb7y\x9e\x920chq\x89K\x8e\xab\xc3\x16\x07\xd7@$\xa2\x9c\xb7\xb1J\xed\x1a\xa51AU#c\\dE\xedenW\x90\xb036\x0b\xd3\xd6\x874\x89HV\x92z\x9a\xe0Y\xb0\x13\xec,\x0b\x02\xee\xe1\xaa\xa4\xf9\x02~\\%i\xec\xc1\x1789\xbe\xd4\xcao7\xde}\xbb-\x9e\x8eL\xd0~@\xddS_\xbe\xf0[\x82\x0d\xd7 \xe3\x18\xe7Z\xd2\xc8\x0e\x83Z\xb9GjVA\xbfY\x91\x1c\xb5\x93g\x0el\x9a\xfc`\xa1PP\xad\xecM\xbbOF\x92e-\xae\xa0\xab\x8d\x1a\x15$\xa4\x12=\xb9N\x9c\xacM\xea\x1daP\x12z@i\x91\xdc\xac(q3\x1f\x84\xb3\xe47\x8e\xd0\xfe7\xaa\xc2\x84\x93\xcc&2\x05\x85\x9d@Mb\xae\xbdr;'\x95\xd8\x0c\xa4~\xf2\x10\xac\xc2\xef\xe6\x03^\xde\x07\xe7Y\xb0\x83\xaa\xd6\xc9\xa3!\xd3\xd6\xd1}\x90\xd2\x118aJ\xffL\xee\xf4\x90\xbayF\x8b<\x1d\x81\x13\xd1\"m\x7f?!4\x1c\xa1\xdb\x82\xb0\xfd\xf1b\x9eLY\xcd\xa8W\xcd>\xd7C\xb0\xd0:\xb6\x03\x0e\x0dW\xb3\x90&k\x82\xf3\xd3\x86\x12\xf43v\x92\xc7\xc94!\xc5\x05\x0di}\x8d\xd4\xfe\xd4bO%\xa0\x16\xad\x1b\x83\x8aS\xc43dc\x83\xaa\x90PC\xc1\xb0\xf3\xbau\xcd\xf2\x08K\x99\xb9\xaf^\x1b\xd4_2\xf7e+=\xe1j1\xbb\xdcv\xf4\xd9k\xfc\xf7t\xf7\x95\x1e\xfd\x9a\x8b\xe4w\x9f\xeb\xe5W\x98\xfe\xec{\xb3X\xbe4b\x151d\x93h\x92S\x18\x93\xdd+!\\\xa7\xe8\xb5\xf8\"\xb9I\x93l\x86\x1eu\xa6IQ\xd2\xc3y\x92\xc6\x86)_\x8b\xab\xf6\xc4\xedc\xafH\x90d%)\xe8\x8fd\x9a\x17\xc2\xb1D]\xa1q0\x91\xad\xaeB\xd4\xc58\x0dQ_\x8b?3\xe94XM\xb7Z3\xb3ob\xdcl(07+\xeaTaK\xec\x840\x8fI\xa4\xcc\xb8]\xb8\x95\xba\xdc\xee\xba\xe0\xd7\xf7\xdc\x82\xbdCk4\xafh_\xf5\xd1\x88g\x1c\x1cZ$Q\xb4\xdaA\x91s:l2\x97\xd6\x03l\x88\x1c\xae\xba\xcf\x9d\xec\x1a\xee\xdfb\xac\x1b?\xef\\\xf1;v\x12\xf0`\x9b\x08\x89-\x0eK\x0355+\xed\x1eFl\x83\x89\x8e\xe5\xab\xc4\xef\xddK\x87|P\xcfR5\xfbZ\x0cc\xfc\xe6\x0861\xa3\x15\x8b|U\xa6w\xe7d\x99\x86\x11a$?\xe3\xe3N\xc2\xe2\xd3j\xd9DS\xeb\xb6k\x8c\x9e\xf2-\xef \x05\xcfuD\xd2d\x91P\x12_\x92\xcf\x03\x0d<\xe4\x84\x11\x8571K~\xf9\xbda\xe7\xb4\xe6\"\x1c\xe8>\x17\x9e\xa7n\xe1\xeb\x14\x08\xeb\x19\x8a\xf6\x18\xe4\xe4x=\x02\xfb\xe0\xae\xf0\xde\xcf\xf3!v\xf9u(E\xd5||\xeb\x95]-\x8b<\"e\xf9\x01=\x14\x97\x03\xc4e\x0d\xeb\xae\x9d7\x90)\"\xe67\x90\xd9u\xab+\xf0\xb2\xea\xabHS\x98\x02oXm\xf5@\xa5]\x7f|z1>\xbf\xbc>98\xff\xf3\x87\xf7=j\xf6\x88u\x0b\xe9\xd8\xc7\xe7GJ\x11\x84SJ\n6\xa7}\xd1\x0d\x06\xd9\x05\x9c\x9c\xfd<\xbe\x1e\xff\xe5\xf8\xe2\xf2\xf8\xf4O=\x1d\x9a\xf2\x0eL\x85\xb8\xf6\x9f\xd4\xa3\x8b\xf1\xc0\xf9 \x1b\xf3\xf3\x18M_\x8e\xffry}xvz9>\xbd\xeci|\xf5\xe8\x8d\x9f\x8fq-N\xcf\x8e\xc6=m/\x9b\xeb0T\xc9\xe9\x9e\xf2\x9a5\xa6>\x88\x1a\xb3{\x01\x9a\xd3\x05#\x9f\xe7\x94.G\xdb\xdb\xb7\xb7\xb7\xc1\xed\xb3 /f\xdb\xbb\xaf_\xbf\xde\xfe\xcc>kd\xf3\"\xa4s{\x99W\xdb'!\x9d\xe3\x9f\x93wZ\xc9r=3\x16{\xba\xb3\xb3\xb3]\xaeg\n\x01\xfe8C\xed%u\xd5\xe8\xe9\xb5\x0d\xf6\xc9\xc5\xc1r\xc9\x10(\xfe@S\xde\x0f\x19\x0f~\x1f\x85\xe9[y>*\x94P%\x826\xaa\xbfvV\xd3\x1f\xd6N^L\xa9\xad\xb4aI\x17\xac\x8e\x1e\xdb\xdb\x8cQ\x8d=s_\xed\xbc4\xd0\xf1\x99\xfb\xf4\xc5+\xcf\xcd\xdc\x97\xdf{AR\xfe\x1c\xa6I\\\xc9\xe6\x1a\xb9CE\x19\xdee4\x7f{\x12nV\x94\xe6\x99\xd9\xaf_4'\xd1\xa7\x9b\xfc\xb3\xf9k\xb2\xc0\xf8\xfe\xa6O\xf3$\x8e\x89\xa5\xd2\"\x8c\x93\xdc\xf2\x89\xa0\xed\xa6\xe9S\xb9\xbaY$t\xd4\xd2L\xb6i \xe9\xeb\x8d\xe2\xee\x0dv\xc8\xe3\xa0H\xfc.\xc9>10\xac?`x\x04\x99\\\xb8\xce\xab\x97N\xaf\xae\xb2\xde\xcc\n\x95X]\xadR\xa9\x9f\xc8\x93\xf2\xec\x10\xe5mR\xc7\xfc\xd5\xab\x9ev\x0c\xdePZ\xed\x88Q\xf5\xb4\xf4\xba\xd1\x92\xfc\xc5\xc002\x9a\xd2\x8a\x88\x11Ch-P\x18f2\xa1\xa8\x93\x19N\xb8.\xd6\x15\x17N\xcb\xee\xf0\xb7\x82\x84\xf1Y\x96\xde\xf1\xb78)\xc3\x9b\x94\xc4\x8c\xbcb\xfd\x1f\xa1\xcb\n\xe1 \xeb\xd7|%\xc3\x83\xc6\x10\xc2o\xd8\xad\xdfX\xd2\x12h\x0e!\xa3y\x160MH\x1a\xc3mB\xe7\xf9\x8aB\x98\xc1o\xb2\xc1\xdf`\x1efqJ\x8a@\x91\x93\x16$\x8bI\x01!\xb0\x8el\xe5\xac'XC\x00\xc7\\\x90\xc7\xeb+\xe7\xf9*\x8d\xe1\x86\xc0bEY\x171\xd4\xfeo\xc22\x0e\xbd\xf7\xfd\x16\xc0\x19\x9d\x93\xe26)\x19\x99@(\x90\x84\xbd\xab\x1d\xc8\x0b\xf8M\x8e\xf8\xb7\xc0d2n\xd9~$~\xf8\xfc?\xe2\x94\x8b\xbe\xfc\xb7\x98\xf4C\xd1\x97\x7f\xd2\xb4\xcb\xd2#H\x026\xf3\xbf\xeb\xc8?\xb5\xda\x13-\xdb\x9b\x16u\xc8m|\n\xbf\xcb\x99\x11\x94q\xdb\xfc\xbf\xd3J\xb0\xe5\x08\xe95\x9b31\xa9\xdc\xff\"\xe4S\xf8\x8d[~m\x82\xf3[\xd0\x0ckh\x94]::m\x00\xa2Oq\x0b) \x18\xbc/\xf2%\x1aE\x0c\x83\xcc\xa62td\x03^6\xbe\xc8\xa4\n-%\x16\xd1\xa4\xb8b\xc74\xe7\x9a\x1c\x06\x88\x8e/\xee\xeb\xf2\x0e\xcb\xa9D\xf5\x89\x83\xe0\xcd%\xdb\x89\x0c\xfb\xc7\xba5\xedV\xdb\x99T\x99\xafP\xd5\xdeN\xde.u!\x81|zI\xd4&d\xcd\x08\xfdY\xc7\xbe\xa6.V\x9a5\xf5\xf1\xb5\x8f68(\xbc\xa8\x12\xff_\xf6\xfew\xbdm\x1cY\x18\xc4\xbf\xf7U\x94\xf9;\xa7\x0f9\xa6\x15\xc9v\x9cD\x89\xe3\xe3v\xdc\xd3\x997\x89sbg\xfa\x9d\x9f\xc6G\x0f-A\x16'\x12\xa9CRv<\x93\x9c\xeb\xd8o{\x0d{\x01\xfb\xec%\xed^\xc2>(\x00$\x08\x14H\xcaq\xf7\xf4\xec;\xfc\x90X\x04\x88?\x85B\xa1\xaaP\x7f\xc4_\"X\xf5\x8d\x15\xc4\xdf\xee\xfb\xc4\xa6=\x8d\xbd\xeb\xa7\xea\x11\xaa\x8d\x84\xd9a\xf5Z\x1f\x81|\xdd4\x06i)vVn\xc6V\xc1\xb7+$T\x94Ql\xd7/\xe4\xfd\xa9\x1c^m|M\xb3q\xb4\"\xab\xc8vJ\xf2{\xa4\xfd\x10\xce.*\xf8\x1aFI\x10?\x1c;\xd5!\xb1\x08\xe8\xfd\x12|\xa7\xe4\x18\xb7\xcc2\xfb\xe2\x1f*\xf5\x8c\xa9\xc4\xb1]\x88\xa0\xd2f\xa0\xda)cI\xa9\xd5\xa0k7Z\x95T\x15N\xab\xcb\xd26|UO\xe5\x98\xb4/b*\x90\xb3@\x92L\x96\xc8h\x18\xc4\\@\x06\x8f#\x8a\xc4M\xb6\xc1\xc1\xaa\xa7\x95<\xd0X\xf0\x0dv\x06\n\x0bd\xae\xd6\xca%\xabN\x83\xdd\xa6)\x0e\xb9\x8f\x95\x8a2q\x9f\x8e\xcc\x87\x16\x0du\x00\x8f\xb0\x0e\xfeQ\xf0}\x82\xdc*\xda\x1f\xa2\xa0Xa>9\xe5FB\x80N-\xa2\xa4\xba\x9a\xec\xdbwFZl\xb1\x9a\xcf{i\x16#\xec\xc2\xedZE\xadV\xd1z\xff)\xa1\xfb\x89\xdd!%\xb2q\xdc\xa8cjW\x84\x87\x90\xb4\x10\x15\xe1\x04\xc4\x0fg\xcf\x9aK\x08*\x00#\xcd\x8a\xf89\x06Q\xb2\x071\x03\x7f+\xab\xdc\xb3G\x91H\x99\xb9\x95\xfal\xc4\x7f\xa1\xaa\x1e\xffp\xdf\xf8\x96\xd06\xd6\xef^\xc8\xd9y\xc1\x15\x9c\xeb\x0b\xb75\x10\x7f\x132\xa6^\xb7\xd0\xea\x12\x17\x8b\x18\x81'\xab\xaca\x85\xbd\x94\xbd\xceU\xd0I\xd7=\xb7B\x1e\x12b\xf5\x10\x91\x88wUl5\xfe\xe6\xa8^%\xb6\xaa\xc40\x84Z\xfcG\xbc\x8dV\xe9\x9a\xd1T\x07\xff\xc4\x97\x9f\xd8\x9d|\xf7\x89\xdd=\xc4Z\xd17\xcb\"Tf\x1bAV\xac/M\xaa\xbdCo\x08\xdea\xdf\x11y\xd1\x1bb\xf1\xae\x9d\xba\x9bH\xf8\xa3\x80\xfd/\x9c9\xf6=4J\x08\x14u\xf7\x1f\x8d\x0e\x87\x97\x8f\xae\xc3\x0e\xe7\x87\xbaZ\x1e1\"\x96c\xa3._\xc5\x0f\xfdV\xa0\xf4q\xda.\xa0\x1c\xee\xf2\xe2\xe1&@\x11\xe0\xf0U\x8466\xea\xa3\xb7)\x87\x95\xf8\x8dQ1Y/__ D\xf4w\x05\x83S\xbd\x18\x04\x81\x06M\xff\xb0\xff\xe5p7xx\x80V\xf8J\xd3\x8a\x07 \xce\xec\xe2\x8a\xf6\x0fP\x916\x18\xec\x9a\xd7\xe6\xf2z]\xde\xab\xef\xef\x05\x9d=\xda\"BN\xec\xb1\xe4\xbf\xd6l\xcd\x04\xdfP\x8f\xccm\xb7@h\xbbJ\xdb I\x94\x1a\xcf?\xfd\x14+\xe8C\x0csQ\xa9\xb8\xe4\x82\x8ah/z*B!\x11\x014\xb3\x8e@\x92\x04fF\x8a\x8e\xf2\xf7\x0b\xd8\xed\xe3\x95\xdb6x\xe0\xf3&\x86\xc0q5\x93a\xaeB\xf0\x02^\x16x\xa0g\xffs\x87\x16p\x9d\x1fh\xeb\xed\x1a^\xa2\x0e}\xad\x03\xbd\x01\xdb\xed?\xce\xdf\xa6\xeb\xa4h\x97\xa0\xd4R\xd1\xfd\x83n\x86RH3\x94\xdeXH\xfclZ\xdaT\xd77\x89!I d\xaa\xecr\xbb\x08\xed\x8b2\xd9k\xe9\xbc\x88U\xed\xe1\xa9mc\xaf-\x94\x9cEu\x84\xd2\xeeb\xbd\xf1\x8a\xa1\x95\xa9\xea,\x87#\xea\xad\x08\xbf\x88\"\x13\xf5\xcd!\x8c\x8a\xcb\x10\"\xebB\xbb\x11 \xaf\xa51^\x07\x11\x93\x91\x03%\xdej\x03\xa5\xbe)\x07\xda\xecM \x07\xfac\x9aM$-\xe8\x8aM\xf4bH\xe3\xder@Z\xc3(\x98\xf0\x11\x15fJ\x0crH\xf2\xe6\x1e-\xaa\xba!T3\x9aH#\xf4rd\xd8\xf0\x7f\xf0\x9e\x14\xac\xaa2\xbdo9l=\xc1\x82\xa6\xd4\x97\xbf|\x02\x99\x85\xf5_\xd5\x90\x17\x84\x9b\xa2a\xd2\x80\x86\xc9e \xf0\xb0\x0b0\xcfYA\x01\xd2\x05\xc5\xc4 E1[?\xa1\xc0\xf8\xe5\x0b\xd0\x05\x870\xba\x0c\x02\x85\xb0|\xd4\xa6{\"=jy\xe3\xe4\xd8=\x0e,\xa86\x8327\xc7h,\xac7\x96\xc9\x0e\xf9\xf9\xdb\xbe1\xcc\xe5\xec\x0093\xd6\x99.\xf7I]\xc0\xee\xae\x87#\xe7\x07\xea\x86l\xc77x\xc9'\xfe`/\xa0\xb8\x90\xbd}\x9a\x0b\xe1<\x86\xee\xaf\xa9\x8f#\xbd\xff8\xba\xdd\xed\xdeT\xc1\xdeP\x928I\xa7\x8c\x16j&\xf3(\xe3\xa5h/\xccP\x1b\xc0yI_(\xbaU)^M\x0d\x84?ARZ\x06\x0e\xf6\xf8\xde\x92\xc8P\xc0\xcbC\xd8\xdbE\xd5\xc1^\xa9[(`\x08\x1bJ\x9a\x15h\xad<\x15\xd2\xc5`\xf7)y\xdd\xbao\xde\xc2b\x98\xc7\x91`\xa1${si\xb0\xe3k8\x04u\x0d]\xe9V\xeaurB\xfbR\xaf\x81q\x0e\xcb \x80\xf5\xb2 \x86,\xa8+k\xec\xdb\x89\x85\x90\xeae\xde\xc3M\x97[\x18a\xf3\xf7\x18\xaa\x8b\x05|\xdfD\x8dJ\x0fdf,\xf2\x84\xe24\xa15\xe9\xd3\x0c\xe7\xa4\xd4Ex\xb5\x8c8\xa8$\xd2yO\x1a\xf7\xaam~X\x0f\xfe\x9e\xe8w\x01\xc2\x8eK\xf4\x94\x04\xbc\xea\xec\xbe\x08\xb5\xfb\xecI a\x8c>\x83j5\xcff!4\x82\xbe\x93\xbc\xa2\xf7\xe3\xcaJ\xd3\xb2eA&1\xd2a\xe7\xb3\xde\xd5]\xc1\xde\x08u\x12\xcd\xf8b6\x9a\"\xe8\xe5\xac\xf0\xc5\x0f\x0cb\xdd\xe6\xdec\x8e^\x05\x87\xc4\xf5\x9b\xc7yo*\xe6\xa5R \x0e!\xe2EJmm\x16\xba\xc1\xa0\x00\xaam\xfc\x01n\xf2G\xfa\xc6\xff\xef\xbe\xd8\xf8\xfa\xbeG\x94\xc4\xa8\x0b\xc5\xfc\x03\x9b\xac\xb3<\xc6$\x86\xebP\xf8r\xf1\xf7mWB\xb8w\x8d\x8dk\xedX\xc5\x95H\xaabs\xab\x9e\xa7|(\x84s\xb8f\x1c%\xe84z\xda\xce\xd2u\x82~\xbcY\x9a\x16\x8e\x9c\x98\xe6~\xc6I\xce\xa3\xfc\xa3BhmB\xc0\xec`\xf3q\x15\xc4\xb0\x99{\x16&B$fuq\x8e\x01\xcb{ \x94\xfe&u\xec\xc5c\x90\xfc\x1a\x14\xf4}\xe4\xc0\x02\x02\xd9\xd4\xf3\x95\xcc\\V^\x94\xb9\xc6\xa7\xae\xdbb\xdf\xb4u\xd5\x9f\x08\x15\xaar\xd4\xeeyjg|\xd4qV\xe9(\xb9l\x99\x18\xb9\xdb\xaa\xe4w_\xeb\xb2~3\xef^\xa2E\xa1\x19(;\"yH\xc3\x12\x91\x92\xbdL\xf9\xa9l\x9cD\x96,\xe1K\x89\xb9 \x12\xf9\x13\x0fl.\x89\xc8\xdfe.fyh\xf0wE\xc6\x98\xe5\xd8EN\x14\xcd\xb5Y]B\xf0q\xdbh{\xa3\xe8!w)l\xb1:\xc6\xd0\xa8d \xcb7Q\x08\xef\x83\xc7\xa6\xbeD\x08\xefOLY_\xba8\x0e\x1e\x93.\x8e\xcf\x06OZ%\xac\x86k\x04\xce\x06Q\x97\xc0\xbc\x81]G\x19\x17\xf2\xf7\x1ce\\\xc8\xdfw\x94q\xf1\xfe\xc0Q\xb6\x82Cx\x0c\xea:\x9cH\xa2<\x05y\xfd\xbd&iV9\xd9\"\xe4\xb4w\xde\xc8D\xdf\x84\xb0\x0c1\xd1\x1bnKL\xea\x96\xfa\xd7A\x08W\x98kv\x8d\xd9\xe4\xf6\x82\x10\xc6\xfcL\xf1\xef*6\xfbV\x90\x99S\xf4\x05?\x82)\xefo\xccE\xa4\\\xfd\xeaW\x06R\xcfa\x0c/\xe1\xf69\xdc\xba\xb6*\xdf\xa6\xfe\nc_p\xa2,\xa3\xe4/\xe1\x10\xae\xfc\x1b8\x84\xbb\xd1\xede\x08\xb7!\xf0\xc1\x99Z>\xb3\xa1$\x80\xd3\xd1-\xe7\xf5\x974\x11\xe1OI\xc5\x96A\xb7TA\xa0\x18\x9a\xbdf\xbf\x17\xd0\xcfjw\xff\xa0\x9a{\xdc\xb9\xb9\x9b\x0e\xad\x1dtn\xed\xb6Ck\xbb\xed\xad\x9d\ny\xe5\xc6\xbd$\xda\x891i\xe4\x7f\x14\n\xc3\x11\x17K\x86\x80\xd9\xf5&p\x04\x13\x18\xc2i\xad\xba\xe9\xeax/\xcd\xa9\x14\xdb\xc4a^j$\x8a\x10\xbc*\xd3\xb7g\xfa^H\xd3z\x9d\x0d\xe3T\x13Sv\xa5Y\xfcW\x95\xde\x1d\xcf\xdf\xf2\xe5\xf1\x04\xed\xca\xa4-\xda\x0fQ\x1eO\x8e\xd7\xc5\x9c%E\\\xa6bpV\xff1\xcd\x96\xef\xa3,Z\xe6F\xad\xd5jA~\xfe\xbeJ V\xf4V\x19;V\x05\xaf\x97\"!1\x16\x9c\x9c\xbd\xfb\xf1\xf5\xef?~8\x1d\x1f\x7f\xbc\xf8 _\xfd\xf1\xf8\xcd\xebW\xc7\x17\xa7\xf8\x83\xbf=\xfb\xf0\xfa\xff\x7f:>\xe3\x7f\xee\xe2\xcb\xf7\xb2\xbaU\xf0\xe6\xec\xf7g\x1f/\xea\x1f\xe2\xaf\xf3\x9f\xce~\xc6O\xc6\xef\xcf\xde\x7f|\x0f\x87\x8a(|W\x81T\x86\xcf\xf5\x13\x7f\xff\xb1yE\x9f\xca\x92\xdd=\xea\xf2\x1e\xbf\x19\x04\xb5C*\x9f\xa7\xb7\xaf\xf8\xa2\xc6\x1c4\x9d|\x9e\xecm_`\xea\xf9 A\xa1\xa3\xbbE\x1aM\x87\xcdbG\xb9\x16\xdf\xd2;A\xfe\xbb\xf5\xbeH\xaf\xd3u'V\xdf\xd5\xf5\xea\xbe]\x97\x13?\xe3\x7f\xed~\xcb\x18\xa6\xf7\x1d\xc3\x04\xa3=\xaf\x05\xe2\x7f\xcb\x08\xe6\xf7\x19A\x1d\xb1#\x85\xbe\xfdg&\xfe\xaee\xd1\x9ee\x96\x92\x0bV\xa7OZ\x9e\x10nEJn\x13&\x1e\x15\xf5\x92\x8a\x1c{zJ\xacv\xcf\xa26\x89\x89c'{|\xab\x8dW\xe9j\xbd\xf2\xec+\x8c:%\xf0J\xcc0\xaa\xae\xea\xf4\xc3\x13\xc8kT\x9ab\xcaK\x17\xf9\xf1V\x19\x1b\x97\xed\x8fSD=/\xa4\x89\x98gU4\xa0?\x17}i\xc4\xd0S\x17\x97\xd8\xa6E8\xbd\x12\xe1p\x10^\x8d\x1a9\xe8o+NV\x9c\x1c\xc5\x95\x94\xcay\xdcp\xc7X\xb3!\xe2m\xd1cY\xd6XKx\xd2\xf3\xc6\xe8\xf2H\xc4,K?\xb1\x84\xae ,\xa8\xa5[#]e!\xf2RM\xe6l\x19\xd15&\"\xc2E\xb4t\xf8\xfb\x8b\x9b\xb1kV\xf8\xdel\x91\xdeR\xe1\x82d\xc4\xf4uO\xe2x/\xbf\x8d\xae\xafY\xf6\xf1\xf5\x076\xc5\xb8\xcf\x822\x85\xe0E\xe51+t\x063\xcep\x88\x1c;\xbd\x84\xdd\xf2e;\xcd\xcc\xa4\xfe\xea\xe1\x8d\xbc\x9e\x92G\x04\x7f\xf2t\x9dM\xd8P\xe5\x90\xa7\xe1\xc1n\xd8b\x08\xdem\x94%qr\xed\xa8%%\xc1!x\n\x8f\xc4\x91\xbf\x8c\xee\xe0\x8a\xc1\x1a\xddgCXEy\xce\xa6\x90\xa3y\xc5m\x94\x83\x88\x0e\x86J\x8e\x9ce7,\x83\xf7F\x95\xe4\xdf\n\x89ml*\xc2|a\x1eRQ\x9b\xb0C\x0cB\x88z\x18J\x0c\xed+~M\x10a\xafm\x00\xf2\xfb!\xc4j\xdd\x03?\xa2<\x821\x13\x97qH5\x0c\xdf\no\xa8\x1e\xdc C\x88\x88.\\$U\xa7\n\x14\xaf\xf6\xeb\x92\x04\xd6\xb8\x11c\x11X\xc3\xb9\x11\x059(\x13\xab\x91u\xd62\x84\x87\x98\xa0\x9b$Tu.\xac\x8bt\xf5L\x84zu\x11\xb3\xa4x\xedhk\xa6\xd59g\x93\x8c92\x9b\xaf\x9c&\xba\xfc\xb9\xce\xa2\xa4\x18\x8b\xf3\xdfS\x03s`\x1e\x7f\xf2I\xca\xabrp\xa6+\x96K\xfbF |\x16\x01\xac+A\xf5\xa0\xc7\x9e\xa3l.}\x15\xcd\xf7JKy\xc5\xa5 A\xc0\x16p\x04\xf3^\x9dL\x1c\x82\x87\xf2\x06\x9a_\xf2\x1d\x92\xf7\xae\x8a4\n\xfc\xa8\xcc\xf8\xba\xc6\xbbM^\x96V\xbbgEy\x9d\xf3G-:\x89\xfc\xae\x8f\x14 \x87\xb0&\xe9\x8a\xcc\xc1[\xce\xc2\x9f\xa0\x06`*\x97s\x1cs\x08M\x82\x10f\xf5\xf79\xae3\xdf<\xe8\xba\xd5y\xf2\x93r\xf2\xb3\x00\xd3\xec\x99\xf2\x9b\x83&\\\xa5\xd3\xbb\xa1ji\x1d/\xa6\\8{\x15\x15Q\xe0\xaf\x1c\x8a\xcdu\xb6\x18\x8a\xe0\xce\xbe\x87T\xe3c\xb60Y\x0e\xf5\x08\xb8\xc6\x0eD`\xd1\x94e9\xc9\x96\xf2\x07AH\xb2\xcdPR3\xe2N\xdcI\xafB\xb7\xb0\xf9[\"U\xa9\xac\xc1w\xdf\xb7\x10\xb3f\xe2\xb2\xeeH\\l\x93b\xfd\xa9a\xe7\xb0\xcb\xce\xdc\x84\x8a\xd0\xc1\x00\xd4S#lr\xfbL26eI\x11G\x8b\xbc\x9d\xc4\xa5m\xb4\xcdI\xa3\x1eb{M\xee\xb3e6\xd9{r\x83\xb4\xec=\"r~\xc7\x0d\xe4\xd6\xe9\xb4\xdb\x00\xb98\xf3D\xba:\n\xc6\xf6c\xb6hV\n;m\x8f\xb3\xb2\x8fV!\xa1h\xe5\x1b\x8a\x96\xadVt\xd8j\xc57o\xb5\x1a\xbaG\xfa\xbe\x1bO8\xc7\xefF\xf7 f\x08(z\x13g\xd81\xac\xa5\x0e\xa6!8`\xa1\xd5\x12\xc7\xd4\x10\xd6\xee\x9aj\x11\xc7\xeb,\x1e\x12V\x04\xd0\xb8\xc3\xb2\x07\xd8af\xd2U\xf5\xb4\xef\xb0t\x93\x1df'\x9c\xbe\xd7\x0e\xa2\x95\xa8\xff\xdcJ\xb5\xe7a\xb6\xd2o\xe6\xd4\xfa\xbbm\xe3\xbf\xff\xe6\xbc\xff\xf1\xb7\xd9\xe6\xfc\xa5\x8e\xbf\xeaZ\xe4\xc1x\xc7\x99C\x13%\x90\xfe\x9a\x152\xeb\x1f]+\xef\xc6\x7f.:i\xcf\x84\x824\x8d\xf2\xbds\x0c\xae\x9e\xbaR\x15 \xbdh\xbeb\x93\x96\x8a\xabrx-\x15\xa7Ho8\xe68\x96\x0e\xcbQ6\xa0+\xdc\x94W2(}\xcd\xe1\x08\xfe\xf6\x15\x9cR\xc6\x12\xdb\x93\x08AW\xb9\xae\xb7\xb8T-.\xe9\xeaw-\xec\xf9\x95\xd05dD\xa4 \xfe\x8c[4\x97\xb7p\x08\xfeJ\xc3\x07\x1f\xad\xe2\xff\xf65\xe8E\xd3)\xde\x11E\x8b\xff\xe0\xf0\x11\xd6\xfa\x82-\xa3\xdb:%\xae\xaf\xf4\xb2Y/\xce\xcf\x8e\xcf\xf7\xfc\x80\xcb\xb0\xfd\x10\xa2J\xa0\xbe\na\xd2\x13\xb1\xf7\xd9\xf4\x1cul\xbe\xc8\xac\x0cC\xa2\xee\x8c\xcfXV\x08\xeb^\xe2\xbaU\xd1-\x1c\xd5\"\xf6\x89\xa6\xb2\xaa\xa9\xdb@\\\xa6\x9f\xca\xb4\xf4\x87`\x08\xfa\x7f\xfb\x1a\x82,\x0c\xe1\x96\xb2\xe3\xe3[\xee3\x1c\xc2i\xe9\xd1\xe0;\x88\xc89\xd1\xbc\x93\xa8\xf2\xf3|\x85a\xcc+\xd9\xf2\xd1_\xf24 \xa1`\x9f\x8bG\xabE\x14'!\xfc\xee\xd1\xef\x1a\xa8\xbcw\"\x82[\xee\\\xdc\xad\x98g4\xf6y\xe7\xf6\xf6vg\x96f\xcb\x9du\xb6` ?\n\xa6\xb6b\x13\x04\xb5\xba\xa6\\\xb3z3VL\xe6\x8eY }\xfd\xec\xd8'\x18\xd6i\x08\xde*\xcd\xcd\xdb\x0c\xf5\x94d\xf5\x9c.\x97\x12\xfd\x8dc_\xe0i\xe18\xf9e\x9c\x1bt\xf3\xe2`N\xb3!\xac\xfd\xa0g\xbfw}\x9f\xaf\xd2$gD\x03V\x81\xd5\xc0\xd7\xa0\xc7\xf92\xbf\x99[\x02\x8d+\xd3,KYo\xcaO<\xf7\x92#\xf5\x97.\x91B\x1b\xfd\xe5\x0bx\xaes\x0d\xd4\x15\x88\xfc\x02;9\xd5>\xa3\xed X/\xfd\x84\x0e\xcc_\xbe@\x06G\xb0hWw\x83\xa6\xf2v\xd0Z\xe8\xa8\xd2\x86\x8e\xeaqhP\x7f\x13\x16\x85\xa0T\xe0yG\x158\x94\x8c\xc1\xd8=\x00\xa9\n\xb7\xf9zP\xdd\xfd\x03\x00\x8f\xf5\xf2\"*\xd6\xf9\x05\xfb\xec\x9a\x08\x85\xe6\x98\xaai\x03<\xaf\xacQY\xa0l\xfch\x04D\xcb\xc5r\xb7\x89\x9b]\xf5K\xec\x90\x06\xae\xf9\xa6\x0c\x00P\xfb\xc4m\xf2C\xe7\xa6\xd2\x1f%\xdbh!M*\x17\xad#}\x03\x8bL\xa4\xcd\xe6E\x99\xdc\xb9\xc2sp\xfb\x10\xbc\x10\x98H\x16%\xc2\x04\xe0\x0ft\xee\xc5\xbf\xc6S\x96O\xb2x\x85b\x9e\xfe\x91\xf6\xbe\xf6\xa9\xfeA\x93m\x92\x96k\xcb\xf6\x0e\x02\xa0|\x86\x00\xfd\xec\x7f\xf3\x18\xbd\x01\x1a\xd7^\xfd\xf6l\xab\x10\xad\xfe\x14-\x17\x82\x81s\x99\x10\x95\x19\xa7\xc8\xe8\xbb\x98k*\x15!U\xeb&\x12Y\xb3\x89\x84\x91\xbb\xb6v\xb7o\x0d\xac\xd1\xd8\x94\xdedR\xea\x89\xab\x0bk\x0c\x87\x1cM-g\xea\xc6\xc4p\xb2\x19\x91\x0fT\x13X8\xa2^\xcc\xb3\xf46\xe1\xa8\xaa\xd3\x9f 4q\xfe\xb7\xb7\xf4\x8b4\x9a2a\xc8vq\xf6\xfb\xdf\xbf9\x1d\x0b\xeb\x8bs|\xf5\xf1\xfd\xab\xe3\x0b\xfdU3^\x98\x16\xc5\xbf\x14Z\xacUh\x86Flh\xb1=\"\xb4\x11\xa5\xed\x91q\xd2s\x0e\x9e\xd9 *PrH\x16\xe9\xf5\xf5\xe2\x9b\xcc\xd1\x08\xe5\xe5}\xac\xa1\x88e\x93\x064\xf9X@\x8ep\xc9&\x96\xbf\xfcH\xcc\xcc\xd3W\xa0D\x9br\xb2m\xba\x86\x1a\xfd\xbf\x07\xf6\x97\xafK;\xadL}D\x07AG\x03\xfd<\xc3\x8bmi\xae\xcf\x92\x9b\x9aA\x7f!\xcd\x17\x95\xc9?\x92\x1b\xe4e\x95}?\xe7\xbcr\xcd\xe0\x7f\x95\xe6\xc20[\xfdz\x1bq\xc1M\xf5%\xed\xb7e1\x9e\x9e\xd6Z\x90j\xe3\xf1U:\xbd\x1b#\xf6y\xb6,e5&\xb3T\x8d/\xfe\xf4\x9enN2Vx\xbfk4\x18\xd5\x1b<\x7f\x7f\xf6\xee\xfc\xb4\xa9E\xb1\xd3\x9b\x9a\\\xd7\xe1\xc5\xc14\xfe\xe3\xf1\x87\xd7\xc7?\xbc9%\xe6,\xa06\xbe\x91\x08/\xa7\x8d-\xde\xeb\xd8\xbf\xd1\x02\x95R1\xc2\x12\x7f\xb7O\xba\xc2\x0e\x1e\x9b\xf1\xad\x84/\xecc\xb3\xbap\x85}b\xbe\x16\xee$\xfb\x8f\xcd\xf0\xa8\x0b\xe19kjK&b,\xfbf\xf5\x99\x18\xcc\xb3\xc0\xf7\xe2\x82e\x11Fv\xaaWYq\xfe\xdf\x1f]b,\x14\x8c\x9c\x91p\x8e\x1a\xe2\x04\xe4K\xdf\xf4ui\x94\xd2@Sl\xcc\xe3\xbc\xbe-*\xc8:\xdd}Q\xfa\x9a\x87\xca\xd3\xd5l>\xf7\x13\xacdFQ\xe2+u\x17\xc2U\x08c\xe1\xea\xda\xae\xe0\xc50\x10\x98 \x0b\xf3R\x9c\x94\x9e\x8e'V~Z\xf5tr;\x15148\xe4\x1a\xf2\xad\x89J\x88\x9fM\xd5\x80\x96{\x1b\xebk\xdf$\xec\x16\x12\xe9\xa7\xee\xc8\xe7\xa6\x9eMT\xa9\x9b\x8c\xa8\xfbH\xec\xbe\x08\xf3\x13\xf4P\xc4\x10\xb5\xaf\x15B\xdb\x95>K\x07 \x0e[8<\xa4n\xe3\xce\x85\xd8k\xbd?\x11\xdc\x02\x1d#\x8e?\x9f\xe0\x10NF3\xcc\xfas2\xf2\xfe\xfd\xdf\xcb\x8d\x85\xafn8>\x9d\x8cn.\xed/\x8f\xe1\x10>\xa1\xc3\xb4\x7fC\xdc|\x9d\xc1!\xdc\xc0\x11|\x86#\xb8\xf5=\x96\x14Y\xccr/\x80!\x1c\x97~\xd9\xf6g\xe8\xd4\x85\xb1&\x84~\x1f\xfb\xef\xc9\xafyoF\x82@\x8e\xf5\xefQ\x1f?\x86C\x98\xf8\xefeT6v\x0b,\x08\x02\x8c\xe5i\x86\xbc\xe2\xd5\xc7\x98\xb3\x13?\\\xf8\xe3\x10N\xe55\xb7\xb8\x93S\xa8\xa0\xdf1\x8c%\x94\"^}\x16\xc24\x08B\xf8\xcc[\xc0\xbc_\xe5\x02\xf1\x1e?\x89X \xbc\xf5s\x19i\xf4\xb8#\x95\xf9T\x05c0\xb4i8\xba\xef\xbf\x87\xadk\x0c>\x8f[}\xeb\\,\x90\x1a\xda \x0e\xed8\x08a=*\xb8\xa8z\xcc\xff:\xe5\x7fMC |\xa49\xfc\xee\x9c\xf6ObNC\\D\xbej\xb7\xbe\x9a\xa6\xe3\xaeS\xc4Y^V\xd5\x91n8*\xcbU\x1d\xc2\x19\xb1U\xe0\x9a\xdeV(\xd8_I\x1f}\xfc\xff\x84O=\xe6S\xbf\n\xe1ntuI\\\xa8\xa2\x03x\xea\xa7\xbd\xf7\xb0\x0di\xefG\xf8\x1d\x08o\xff\xf3\x00\xe9\xef\x1d\x1d\x80e\xc3(\xf7\xfa)\xb0\x95\xf8\xfb\xfb\xa8\xd5\xddJ\xfc\xc7\x83\xc0\x9dQP\xf6\xf5\x04\xb6\x0e\x1d\x829?\x80\x0f\x02\x99\x9f>\x04/\xb2ds\x10\xc9w\x86\xedDL\xf5f\x83\xdc\xc0\xb6^\xe5\\!\xefg:\x07\xdaxLG\xc9|B\xe5\x85\xe1l\xc1^\xe0[9cd\xb0\x8d\x83A\xe0{\xafO\xc7\xef?\x9c]\x9cy\xf7\x0e\xb0\x11\"g\x92\x92\x894\x84\xc2\xd2z\xbdp\xc5M\xc3P\x82\xeb\x00\x12\x0ci\x89z{\x7f\x8d\xb0\xc0\xa8\x902\xc4/\xf1\xe1\xf32 \x0e\xbc\x84\xfcy \xbf\xe3G\xc0(\xdf\xde\xbe\x14f2\xff\x1d\xfb\x0bl\xed\xcb\x97\xaa5\x1a=\xcd\xa8\xe2\x9d\x17hw\x10\xf4T\nb\x1a\xa4\x99\xb8\x8fP\x95d\xd0\xdd\xcdzq\xa1\x01u\x0bb/\xb5\x8d\x0e&\x1d\xa7GN\x06\xd3\xac\x07\x8btj\xe4$\x8a\x08\xcdy\x8ca\xe8F\xf1%\x0c\xe9\x13\xc1\x0en\xaf\x07 \xad\x97\x1e\x19\x91\xef\xab\xc3hX\xffL\x86\x88:\x82\x08\x86T\xe4\xf8\xce\xd0\xdf\xdb#\xa0\x9f\x8d\xbc\xf1x\x92fl\xe7/\xf98\x9fG\x19\x9b\x8e\xc7\xe2\xa8\xf7]e\x87\xf0\xb7\xaf\xad\x1b\xcf\x01\xd2t$r8\xfa\xa9\xd0\x9c\xfe\xedk\xd02\x1f\x17=\xbd\x9fF\x91%\xeb%\xcb\xb8\xf04\x84-\x7f\x00\xdf\x03E\x01\x94\xf7\xb4\xaa\xb7\xeb\xa8w\x9b\xc5\x85\xaa\xb3\xef\xa8\xa3\x14#\xb5\x82o\xba\xd8\xa9Z.\xb7\xef\xfe\xe3\xc0\xdf\xd2\xb5\xd4\xfc\xddA\xe0\xcbh\xbf\xe0\x89?\xbc\xa6$\x1a\xa8g\x1e\x17p\x08\xd2\xa2\xaeT\xca\x8f\xe3\xfa\xcdG\xe8>U\xf8\x98\x98L}/\xda\xb3!Rj\xe0\xc71I\xc5\x12xyXQ\xc6#b\x15%L]<\xe34M\x98\x9d\xe0\x15\x86\x18\xcc\x0d2\x91\x7f\xa0\x9a\xdb\xf6a\x19V\x8f:Feg\x04\xaf,\xfb\x19\xd4\xfb\xd1\x10z\xc3cr0\xa0\x03R=\xde\xbb\xefv++4\x05\xd3\x8fC\x88\xc4y(\x17>\xf5\x0bS&V\x0f\x1e\x05~\xe2(\x15A\xa6]\xd1\xd2\xe4\x98rx\x01}\xe1\xd7\xfeR\xb8V28\x02\xcf+\x85\x00\xbeP1\xb6\xa4\x05/\xcc\x83\x00^\xc0\xe3\xc7\xbb\xcf\x0e\x90\xbd\x83\x97\xf0\xf8`o\xf0L4\xb4\x0d\x03\xe9\xa8\xc9iKd}\xcc+\x88\x06\x0e\xf6v\xb1\xf3\x887\xf0do\x7fO\xf6/\xeacG0\xc44H\xe2m\xbe\x88'\xcc\xcfC\xec\x04s\xd5D\xb0#\x9b\xd9\xe6\xe3\xdc\x91\x83z\xf1\x02\x06\xfd\x00\xb6\xe1\xe0\xf1\xe3\xbd\x83_v\xb7\x9b\xfa\x11\xa9\xab1\xb1G\x86-3\xe9\xbeT\xd5\x98\x1a\x9c\xb5\x0c\xf1a\x9e\xc6RWs@\xebj\x06\x96ng\"\xeb\x9b\x83\x94\xca\x9a'\xffT\xd6\x10\xcf?\x955\xfa\xf3Oe\x0d>\xffT\xd6\xfcSY\xf3Oe\xcd/\xa6\xacqjj\x06duw\x18\xd1\x03\xc7\xdd\xc9\xe3\xbe\x83o\xd3\xc2\xb3w\x12DQ\xfcL\xdb$\xa5\x0d\xf9\xca\xb7Q1\xef-\xa3\xcf6\xcf J\xe2\xa4\xc3 \xe9\x18\xb0d\xb4\x19\xf2\\}8\xe2b4l\x83\n\xc2\x19\xfb\xcc\x88\xc9\x0f\x1b\xac\x8f\x9e\xc8#4\xb2\x96\xc4\xb9\x9e1c%_\xbf\xceOK\xb9/,\xd27\xe9$Z0)\x1b\x95)Qpo\x9c\xcd\xbc^\xbeZ\xc4\x85\xef\x85\xde\x86\xec\xfb\xde\xde\xaf\xa2Dq\x04\xad\xdd\xa5\x95i\xc8o\xe5+6A\xfa}\x8f\x15\x95\xea\xb2H.hk\xca\x14\xcd\x13,\xc2CH\xfd\x16Q\x923?\nF\xf1e \x13\xef\xa4z\x92\xf3\xeeh-b\x17\x87J)h\xddR\n^v\xff\x89 \xab\\nL\x07/{`\xf2\xc4\x13Zs\xc2Y\xd9\x89\xca\xcdl\xb3\xb0\x93^\xce\x8a\xd7\xcb%\x9b\xc6Q\xc1l~u\xd2\x9b,X\x949j\xcc\xb1\xc6[a4\x7f2\x8f\x92\x84\x19~\x867X\xe3U\x9c\xaf\xa2bb\x98},m\xe5\xe55\x11\xca\xe7\xae\xed@CA\x1e\x0ea\x9b\x9fe6I\xe6'\xcf\xb5\x99:\x85\xce\x90\x01\x9a\xe1\xc5\xb5\x93\x9b\x95A\xd2x\x85\x10\n\x9f\xf0 \xa8\xbd1\xa6s\xd5\xcad\xdf\xc9\\ \xc2Q\xa5\xdeV5\"<\x96\xa7(D\xae\x1a\x9b\xac\xa5\xfd\x18]\n\xad\xed\xe09D\xd95n\xed\xbcR\xec&\xcf\x03\x95C\xa3,\x1d%\xdb\xdb\xe6I'\xf7\xcf\xf5h{{y\xd9\xb6\xd0\x02(\x7f\xe5\x0c&_\x87\x9b^\x92\xde\xb6\xb6\x86\xb5\x9c\x0d\xcd\xe1H(\x13|$\x93\xec\x16\xe6A\x8f\xd3\xbd\xdd\x10R\xfcc\xd0K\x93*\xb4\xf9\x95\x08T\x1f\xf9qo\x95\xe6\x85\xdc\x85Hk\x06\x18\xcfi\xd2\x8b\xa6\xd3\xd3\x1b\x96\x14o\xe2\xbc` C\x9aN.\x86\xd6\x00r{\x93^\xbc\xe4=\x9e\xa3\x17P\xceG\xd6<\xb5\x89>\x06<@=/\x04\xefw\xf54\x07\xf6\x88|ON\xc8C\xaejK\x8c\x1c]\xa5\xd2$c\xd1\xf4\x0e\x03\xee\x89p|(]/|O\xf8&a\xaa\x15\xf7\x88\xf2^\xb4Z\xb1d\x8a\xf9\xe8}\xed\xab\xa0g\xb7\xdc\x86\xc3y/c\xcb\xf4\x86\x89\xc6\x90g\x0e\xcb}\xea\xf4\x1c\x80\xa6\xcc\x959+.\xe2%K\xd7\x85\x86\x11\x9c\xe9\xa8\xbe\x0f\xeaF\xb3\xd6\xf7V\xa4Y\xa4\xd5C\x98VM\xe0_]\xb9\x15\xf7`\x1b\x9doh:\x8a\xeaF\x9a\x1f\xbf\x19\x02k'\x9b]\x1cv\xdc]\x13\"\x1f\xc8\xae\xdb:n\x81\xde\xa6\xec\xce\x13:D\xff\xe0I{V3G\x9e\x8f\x0cie\xea\x17vj8\x91\x90\xa8-\xb5q\xdc\x9b\xb9\xb2\xfe\xfa\xfd\x10\x92^\xc6\xf2tq\xc3\x02\x8cl\x8f\xa9\xfc\x96\xb1\x96\xdfjC\xc0X\x10\x10\x80yF+\x01\x91\x0dDg\x86v&\x90\xe2\x00\xe9|\xf3\x98\xc7\x8f\xcb\xc9Z\xdaT\x91wF\xb2x[[\x9c\xc9\xf3>\xb0\xeb\xd3\xcf+\xa4\x8di-%\xe6\x86s\xb6\xf8<\x95\xb0\x81\x9c\xf3\xe3{\xe1\x82ZN?\xed\xc9\xab7\x11\x9aA^\\\x89w\x9cK\xb10>\"\xc2\"F\xd2A\xc0O\xf0\x161\xeb\x9d\xa3C(\x17ac\xb7\x05\x00\x88l\x9e\xb6\nA&\x8c\xf1B\x88\xee\x0d\xc4g\xae\xdb\x84Zf\x97Nr\xa9\xa6\xeb\xc9\xea\xc9\xc57\x1a\xd1\xee\x9eC\xa69\xd8Cyc\x12\x15\xbe'\xf8)O0\x1dB\xc2\xab\x875\x9e\xd5\xeez5\xbe\xf4]\xb4d\xbf\x8e\x9c\xbdk\"\xa2\xdc\x934~Z\xe6\x0fR\x9aylj\xce\x854c\xdd\x9eKaf\xcf\x14Z\x16.@\xbc\x92\x0e\xc8\xba\xe4&\xe0&lS\x8e`\x01- peF$\xcc\x98'\xae\xf9\"\xbf\x90\xda\xb7\xd2\xccL|`\x1eH_\xad\xaedN\xa5\x92\xf4\xa6\xfeV\xd6\x9bii\xfdB`\xa3\xe2\xb2m\xc5\xcc\xe5Jp\xa7\x96\xb1C\x1el;\xa8D\xae\xf8\xc9\xa5\xe0\x8a-~\xa6\x13R\xb9Y\x94\xd2\xdd3\xf1\x1f\xef\x99\x18Ty\xeb\xd4\xfdr\xbat\xd9v\xed\xf4\xec\x80\xde\xa4O\xcc\xf7\xb1c3\x08\xf4\xb6\xac=\xe4\xbd\x93\x95tGS\x94Ey\x1e_;\xd4Q[\xb8\xb5[L\xaa\x944KE\xb4-\x1c\xef9\x92\x9c\xdf-\xaf\xd2\x05\x15[\x06\xb9\xe9\xe8j2e\xb3\xeby\xfc\x97O\x8be\x92\xae\xfe+\xcb\x0b\x8f<)e:\xd1'!dJ\xbf\xe4\x05\xbdY\x9a\x9dF\xad\xd1\x1a\nq\x86\x18\x0e\xadA(,\xc4r\xe1l\x1b\xf0\x0e\xca\xf3I\xdc\x95\x89\xa2\"\x08d\x98L\x0f\x93\xeeVn\x16_\xeb\xcc~\x9b\xd7\\\x84{\x9e\xc3\xdc\x94rC\xa49\x83PFK\x9f\x85\xa8!\x89{\xb3\xe7\x90\xc3KX<\xb7\xf9\xd2\xb2\xe5\x95\x90=\xd7\x9ap\xbc\xe0\xc2q(\x14!\\\xfe\xf3\xa7\xe510\xf1\xa7B\x98\xf1\xa7A\x88\x8a\x90y9\x86\xa5H\xc2u\x03/a\xf9<\x00I&\xa6!\xead\xe6\xa3eiQ\x95\x8cV\xa8S\x1f\xad\x1c2\xb8\x96a\x0d\x86\xdd\xb2J\xb5\xed\x9eA\x9f\xe6\xd7\x06\xa6nI\xec\x9e\xdd\x03j\xf7\xf8\xbc\xe0\x80s\x8f\xfe`\xf7 \xa8\xd9{<\xc5\xd7\x8f\xf7\x1e\x93)\x1a\xd6\xd4\x98\xa1t\xd7\xcc\xd2U\xae\xb9\xfdV)\xd4\x95_o\xc6f\xb9\xcc\xe2\xc7\x7f\n\xafh\x9c\x19\xea\xef5Jc\xf7\x9d\xff\x1d\xfb^\xd4\xdd\xa8\xd7\x9aof\x9c\x7f`\xd1\xa4\xd0\xf3\x10\xf2\xed\xa2W\xc9e>\xfd6\x9e\xb1\x8c\x85e\xe4\x82wg\x89\xc7\xbc\xbe[\x87e\xca\xf8\xa7\x8f\xbd\xa0>\xbf\x9e\x91\xd3\xbf\xbc\xaf\x0ceD\x05\xa2\xae\xcab\xafR\xb7\x85\xe0\xa9)\xd4u\x06\xfa$gi6a\x1f\xed\x00\x01\xe4j\x19\x1d\xfeX}\xab\x04x\xd6qp,\x04O\xeb\xba>\xbeE-\xab\xf1Z\xcfj\x9c\xd7\xf3#\xb3[X\xd4^\x1a)\x97s.\xd3\xe5z\x03ZkA\xfd\xcb8\x7f\xbf\xce\x98\x85\x15[\xfd&\x95AY\xd3r\xe5\xe2\x8di\xa5\xb9\x86\xa8p_\x82\x92\xf8\xcf\x02\x9b\xbc\x18\x0bc\xf5l\xfe\x90\xae\xafa\x861\x0c\xba\xfe\x07\x91\xcb\x13q\xb5k\x1fjk\x10\xf5+X;nb\xee\xbf\x04\n\xe8z\xc2\xb0\x07n\x9aT'\n^\x84\xef.\xf1\x17\xdf\xb8\xf5_\xbe\x97q\xdc\xed1q\xaf\xe4\xa1\xc9\xf0A\x7f\xd0\xdf\xfb\xc5F\x9a\xf8\x8f\xf7\xefm\x9d\x86\xe2\xd6\xd6`C\xd6\x98\x1eP\xed\x82\xf0\xfc\xf4\xe4\xc3\xe9\xc5\xf8\xd5\xd9\xf8\xdd\xd9\xc5\xf8\xfd\xf1\xf9\xf9\xf8\xe2\xa7\xd7\xe7\xe3\xb3\x0f\xe3?\x9d}\x1c\xff\xfc\xfa\xcd\x9b\xf1\x0f\xa7\xe3\x1f_\x7f8}\xf5\x0d\xees\x0f\xe65O\xc1u\xd7\x12\x0f\xa51\xe0\x01\xed\x92\xf7\xd82\xd0\x92v^\x074\xc3\xbd\xfb\xe4q\xdd^\xf4\xc9\xbe\xfe\xbb\x87)\x13=\x91k\xfe\xbcH3\xe65\x98}\xaa\x05\xed]i\xb3\n\xabV\xd2\xe5U\x9c\xb0\x0fl\xba\x9e\xa0\xd7gkKi\xcd\xdb\xa0j\xe9*N\xa6\"\x8c\xd0 \x1fY\xda\xa9\xb1\xd8\xd1X\xb4Z-\xee\xde\xc6\xd3\xe9\x82\xddF\x9d&\x189Z\x9ap2\x9fwia\xbd\xb1\x1b\x85\xe3 Ps\xe8\xd0g\\\x1bs\xd1\xd3o\xcb\x80\xc9|\xb0V\xf46\x8e\x8aFJO\x92.a\xf4\xb3\xda\xad/\xe7\xb1\x11\xf9\xc4\xb5\x98(38m-\x15\xf1\x16\xff\x88:\x9f0\xa5/\xc5BED*\xe5\xd3\xcf+\x8c\xf9\x00\xc5\x9c\x01K\xe6Q2a\x19\x14)\\1\x88\xca\xe9\xf6\xa8\xe8\x8ajq}\x16\x08C\xd9Z\x0d[+A\x8e\xa9h\x1bS&\xb0\xbf}H72\x99/\xa1g\xc6{j\xfb\xf5\x84pM\xe1\xef\xf1\x9e\xda~\xbd\x92\xa7W\xad\xa0D\x88)\xa9\x8e\x9c\xe1\xda\x8a\x1c(\xe2\xfa[X\xc6\x06&\xb0\xe8F\xe7MVS\x8bNM\xdc\xd0L\x8csAX\xd3\x82,\xd4\xe5]\xebj\x80v}M\xa5O\x95s\x98\xfaA\x08\xb32\x9a\x8dU\x0d\xb4\xa94\xda(\x8a\xd4\xdb\x0d\x15@\xea,\xb6\x06!\xef\xd5\x1e\x91\xfe(\xd9}&\xb23\x9f\xd9W\x14\xe63C\xfd\xc4\x84\xf9I\x08\x03\xda\x8a\x0b\xac]A\xbfu\xad\xe4\xd2\xbd\x92[Y/B;\x02k\xe9d\xf08X\xae\xf3\x82/\x19\xc6\xe2\x05!x\xe5=\xf8\x983\x98\xac\xf3\"]\xc2\xb2\xa4\xe8\xa8e\x88\xf2\xbbd\x02\x91\xf8\x9c\\^#-:\xeb\xa1l`\x0d\xe1\xdf\xca!Dw\x98\xb2}\x1e\xdd0\x88\x12(\x83\x1d\x83\x87jiPvG=\xf8\x89W\xb9K\xd7\xb0\x8c\xf3|\xc5\x16\x0b6\x85\x08PD\x89\x92\xe2\xe8\xdf\x1c\xa3Y\x11\x00P\xa7g\xd9\xfdT\x1a\x804\xce\xcd\x1dFs%E\x1bNSr\x7fA\x9a\xc2~\x85Y\x9cD\x8bEc\x1b\x03\xfb3\x9b|\xe8\xf6\x12\x9c\\\xcd\xc4\xd9 \x93\xa6k\x89\xe1\xb7\xb7]\xc8\x7f#3\xb6\x17\xa3\xc4aD\x92\xb6^\x80\x82\xa6\x92\xfb\xce]m\xe9\x0c\xc8\x15\xf7^\xbf{}Q\xff\x94V\"\xadI\xc3L\xb5hd\xec\xf1|}\x95O\xb2\xf8\x8a\x91\x11\x96\xafKq\x87\n\xf5\"\xe4'\x89$m\x92\x1f\xdc\x9bp\xf2\x93,a\x9f\x8b\x0f]O3\xf5H\x1d\x0f\x05Y\xf58!\xac\x1e*Th})BX\x8f\xd2^\xd4j?sS\xf9)\x11I\xacu+Fz\xb8\xdaJ\xb5C\x1a\x14\xb4 5\x91\x0e\xeb\x8b\xbb\x15\xa3\xe0\x9d^\xc9t\x89\x12\xd8\x8a\xec!\xac\x9d=\x96\xe4\xb6\xddJ\x9f\x95\xf6\xd4\xe2/\x7fn\x9e\xeb\xfaC\x93~@)\xa2\xe1pQ\xa2Ma9\xc3\xeaO\xa3\x0d\x82z\xd6\x89\x06\x7f;l\x90z\xba\x9cQ\xf8&\xe8\x843P\x0d\xcf\xf2&\x01\x81|\xcc\xc2\xc6\xf2\x05\x11)\x87\x0b]\xb4K\xecc\xeb\x0e0&Q\x91\xef\x94!x\xff\xfe\xef\x9c\xb9\xfc\xfc\x88\xff\xac\x07\x93\xff\x06\x89Z\x17\xf1\x1d~i\xd6\x9d\x8d\x14E\x1f\x9bWB\\\x1a(o\xc7\x84\xd8|I\x84\xc2Qfk.\x9f\x87\x9cp\xfa\xad\xd7\x10\x1eh\xa5Mo\xad\x8c\x1f;\xb9a\xb3X\xaf!\x92\xb9\xe2\xb5\x81\xe8\xa6v\xc1\x1c5\xea4\x90{\x89\x91{\x01\xcc\xd7\x8a\x7fm\xa1hS*\xdal^\xbc\xc0\x1b\x93\xc8b\xcbxs\xa8$\xe6\x1cIQ5\xd1\xb7\x9bH\x90\x1d\x17\x8e\x07a\xcd:\xda\xb3mY\xc8\xa3\xca-\xd7%\xba+2\xbe\x91\xf0I\x02^uV\xa1\xf7\x83 \xda\xe3~\xd0\x8bzB\xa3e\x82~cm\xd5\xa6\xf5\x9dkm.u\xc9\xcc0\xf2.\xacP\x97\xc7x_\xa6q9exIq\x19\xa8Y\x83^\xda\x8b/xQ\xc5\x18\x95\x08\xd0|\xda\xd0\xac\x8d\xdd\xf8\x80n\xbc\x18\xf5/I\x04)zBz\xf5k\xb0l\x18AWB\xca\xfc\xa2\x87j\x18\xc9\x80\x87\x15T\x88\x13\xc88\xec\x1fDq\xf8`J\xbc\x10\n\x15\x00\xb9\x8b\xf2S\\\x10\xd5(\xb7&}\xc0\x11xq\x12\x17q\xb4\x107P\n,*\xabr\x91\x82\xae\x9b\x83!\xa6\x1c\xbf\x89\xd3u.\xd3)gl\xc2\xe2\x1b6\x85\xab;]\xffP\x8b\xec\xaakM\xcb\xd1w\x81e\xb5g\x9f8\x9cQ-\xdb{y\xb1i\x1e\x19\xca\x84\x9frG\x1d\xc0#\xd3\x98]\xb8Q\x1cA=b\x02\xe5\x90\x86r\x0d\x1cA^\x1e\x07e\xc5j\xf5)}5GJ\x8a\xba\x13y\x06\n\x97Q \xaf\x1f\xfb5\xcb\x95\x82KXh\xc3kW\x8d\xf4\xaa\x0bL\xee!\xe8y\xc0\x17\xd6\xa3i~A4\xa6\x08z_\x18\x9fp\x1c\xe3@,\xf8\xaf\x9d5\xc7\xaa\x9d>G\x96d\xb3\xadS\xed{\xa7\xbd\x9c\x96\x0f\xa8\x84\x0e\x9e>\xe2\x08\x92\xb6t\x87\xa5G\x1f\xbe\xae\x0f^_\x0cm\x80Ay\xb6%\xfe\x9e2\xf0\xde\xdc\xfc\xb6\xcd\xbcag l\xbf\xe5\xa9\x8b\xb6\xf4}\x18j\xb1\x01\xd2\x92\xb0g\xc1s\xd8\xde\xe64={\x1e@*\xe8y\xe1\xb3Qr\x89\xcaT\x87\x1dh\xba\x19\xd4\xb5\x83\xf1\xc9A\xe0{E\xfaq\xb5b\xd9I\x943\x97\x15'}Hv\x02\x0eqA\xaf\x06\xb0C\xd8\x1c\x8bh\x97\x94\xaf\x7f\x81>_\"%\xc6!\xec\x14\xf0\x12R \xcb\x14\xb6\xd1h\x0b]\x81\x12Y\x90r|\x0c\xca\x8f\x12\xd8>\x844\x10\xe0\xe6\x1f'\xf2\xe3\x04v\xf8\xef\x97/1v7\xff\xe3\xd0\xcczU.h\\.U\x8aK\x95\xc1\x0bH\x9f\x07\x10\x8f2\xb4\xa5\x19e|$\xf4a\x17\xb7\xac\x92\xb9D|.\xc2\xc2\xd5\xf7F\x7f\xfe\xf3z\xb7\xdf\x9f\xfe\xf9\xcf\xeb\xe9\xd3~\x7f\x87\xff?\x9b\xcd\xfe\xfc\xe7u\x7fO\xfc\xec\xef\x1d\xf0\x9f3\xb6\x8b?glw\x86\xdfL\xf1\xe7n\x7f&J\xfbL\xfc7\xbb\xdc\xdc`W\xce#\xe9\x15,/\xdaM\xcf\xbabG\x08\x19\x85 \xa9\x03A\xe2\x86\xbdD\xac\x1a\xdee\xc6\x12\x03\xf8\nmo\xa7\x97\xb8v)\xbc\x80\xf8y h\x9e\xcfw\xd7(\xbdD\x0f0\xc76\xdb\x90\xb8U\xdbl\xf0\x9420\xae\x84\xf1J\xcdA\xc6\xd7\x8fI\"\xe3\xd6\xb3\xa0\xe1\x9a4\x04)\x9c\xf6\"\x05\xad\"H\x89[\x83\xa4M\x84US-\x99,ZQ-v\xde\x11(\xdeLXldhx5\xea\x13\xa6\xcf\xa0\xd6[\x04*\xb7\xc5{<\x0f\xb9\xec\xe5\xa7\xd5A\x17c\x1eHs\" \xc7)r`\xd7\x07`\xd7,q]e\x00\x88{9o\x14/\xb4\xbe|A'\xc1\xdaG_i\x94)\xbfO\xd8\xad\x1f\xf7N\xf0\x17\x97\xe38\x0bo\xe0\x13\x7fT\x15\xcc\x8e\xa0\xef\x9ax3\x94\xb3ng\x05\xfbd\x19\xf5\xc6\xba\x04}\x9c\xdf%\x13%,\x9b\x82tM\xd6vUZ\xeb\x95~\xcf\x12\x116\xc0U;\xd7k\xbf\xcf\xd2\xcfw\x97\x8e\xab\xf7\x16\xf9\x18\xad\xff\xdb\xc4\xe1\xcc\xe5F\x81\\\x0c:\x95\xe2_\xeb\xf2\xaf\xb8\xfc\xab\xcd\xc8\x86\xa2\xdd\xb6\xd6\xa1\xc52\xb8y\x92\xa5i\x17\xb5\x01\xdd\xeax\x0d\x11m\xff'\xfe\xb4d\x86jmY\xf8\x8fm\xd2\xecWj\x11\xf4\xd4\x10\x1b\xa2\xfa\xa0\x1f\xf8\x89\x7f\xb0\xff$\xd8\x88{ih\xd0\xdc%b\xf3\xec?i92\xcbKo\x19\xfa\xc8q\x80\nv\x15\xad\x0c\x95.\x06\x8a\x92h\xab\xa2-\xe53\xb4\x95\xfa\x89\xf0kV\xf4\x1c#\x02&h\xae\xaa\xf7\xc7x\x97m\xa7r\xc3\xacim\xdc\xee3\xda0\xe4\xc0\xca2\x14\xa1\xb1n\xed\x15\xa7\x07\xbbm\xd8\xae\xd8\x80<\x84E\x08\x13\x8a\x19@g\x02\xf8\x9e\x0c \xaf1\x8cv\xa9\xc8\xa8Dq\x07x\x1f\xc6\x019E \xfb3@\x1f\xdd\x97\xb0j&%\xc2\x8f\x9a\x9f0\x94nm\xce[\x11\xc5\x9a\xe85\xc7%\xb6\xdb\xbaq\xf08Kq\x87f\xbd\xbf\x96`\xe0\x12\x17?\xb63B\xf4\x04\xc5\xf9\xa0\xbb\xb8\xa0N\"!k!dE\xce\xfb\xdc\xc0\x0bX=w\x1d\xe5\x98\xa7\x96\x8c\xef\x02\xd2)\xba\x18\xdd\x10we\x1c\x00y\x80M\x8c\xf9\ns)\xd9\xbf\n\xe1\x0eC\x1d\x15\x88\xa1\x13\xcc\xca\xe8\x8b8F7\"\x9d\x13\x7fK\xb7\xa6\x99r\x8c]*\x1f^o\x1c`\xea\x9a8Y;\x92\x0c.\x0d\xcb:\xfd\xb9\xcaX\xf4\xc9*\xb1I!:\xa77\x8db\x0b\xa5\xf1V]V\xed\x93\xd8\xbf\xc6j\x9cA\xbd\x13\x9a\x1a\xbe\xfb\x17\xd2\xcdTl\x8bIP\xe1\xd2\xb50\x06p&\xbdl\xea\xb1 \n\xe0\x84\x04\x90\xd0\xf8*\xe2\xa7\xc4\x18+\x86/\xd0\x15\xee\xa3\x85\\\xdar\xe0\x8e\xe1|\xeb\x82\x90\x87\xc8\xa4'<\xcaQCZ\xfe(\xeaN\xe9\xf8\xd7\xbd\x84\x95o\x92\xf35\xc9\x9e\xc4\xac\x9a\x98\xefT\xcc\x97\x84\xa9e>N2\xbf\xf7$\xe8}\x8c\x93\xe2)\x8a\xb1\x0fr^\xee>\xa3B\x80r\xb1\x87\xbe\xc79\xd8\xbf\xaf\xe8)\xe2\xa5~\x93/\xddSz\xac\xbb\xedcr\xeb2b\xa1\xa5q(g\xf8l\x8e0\xf4_\xe6\xc7!$\x1dp\xa4D8x\xfc8\xf03\xc7\xd6M7\xebc\xd0\xa7\xa3RqN\xcd\xbf\n!'&v\x0d\x870\xf2X\x96\xa5\x99\x17\x827Y\x08\x7f5o\xca\xf2\"K\xef0\xb0N\xb4\x16\xef2\x96\xaf\x97\xcc\xbbt\xb9\x08\xdd9\x11&\x06y\x1b\xc3a\x88\xde\xe0ROf\xce\x154\x1aU\xe8F\x86\xb1]\x0f\xbd\xc9\xc5\xed\xd3\xdbt\xca\x9b\xdc\xdab\xda\x0b\x19Z\xd9\xb7\xeb\x99o\xbe|\xc1O3\xb9\x7f\xce\xca\x12\xc7\x1d\xa40r\x98\xc7\xd7\xf3\x9f\xa3\x82eo\xa3\xec\x93\xbd& id\xd5\xeeO\xed\x1f\xac\x89\xd1\x1d\xc1\xe0\x00\x8608\xd8{\xba\xef\x80Bm(\xfc,\xe0S\x12'\xa42\xa5\x10\xb0\x88\xaa\x82(\x90\xd9c\xd6!\xdd\x08\xc6\xfb\x9d-\xd24\xf3\xedr\x15\x96@\x08\x8a \\\xeeo\xca\x84\xed\x18\xe4R\xcb\xd8\x1e\x8b<\xe9\x9c\x8f\xd5_\x9d\xa4k\xf4\xa5W\xf5f\x8b\xf4V\xa4\x1a\xd7j\xb2D\xa4\xc8/\xf3\xb5\xb3d*\xe8W\xed-\x87\xb2\xf8\xb6|\x85.>\xc2\x9d\x05\x7f'\x8cM\x15\x91\xac5(Z\xa3\x8a\xd4\xda\x89 \x8aF\xfbbC\x9cO\xe6l\xba^\xd4G#\xf7\x8f\xf9\x12-\xe9N\x93I*\x87\xca\xacw\\\xae^\x17\xb3\xa7*\xe3|t\x1b\xc5\xc5\xab,\x8a\x13\x0dNr\xaeo\xd3\x8c\xd5\xdb\x9f\xa4S\x96\x99\xe0+{\x13oY\xf5\x8a\xa3\xc4\x1c/\xb2\xe6\x92\x82<\x0bzBE\xf1J\xb4\x15\xd8M\xb3[\x98\xfbU#\x81\xdd\x8fVX\xc3W\x97\xe7\xd7\x95\xdb\xf3\xcb\xa4\x1c[\x88\x8b:e\xb8\xaa8\x08>\xb4+\xd2\x95\x0dG8\xce\x8c\x03\x92\xd7\x17DK\x04\xa9\xa8\xad\xb8\n\xf1 \x14\"4\x03\xcc\xebV4\x06\xdb/w|\x10\xba\xd8f\x89\x1b\xda\x87\xea\xcdaU\x1a`\x14\nW\xdcx\x07 \xc7\xd5m\\\x16B\xeab\xe9%\x17\xc1\x0c\x88\xd8`\xabL\xcd\xe1\x08\xfc\xc8\xd8c\x9d\xf8\x04\xd4\x8d\x8b=\xac\xd6\xc9\xee\xa7\xaa(\xf1\xcc\xd5\x1ah\x9c{Y\x99\xb7\xde\xe4b\"\x94\x01\x8a*!\xd4%\xddRy\xd3\xc2*\xb1\xd06o\xb8N}aX\xb1\x91d'\xf6\xed\n\xa0\xb9xI\xb9\xfa!\x9c\x93\x97\xf7\x1ct\x11\x86.\xf2\x91f#\xbew\x82+B\x81\x9es&\xa2\xe4,zq.\xd8'?\x13\xce\x07\xfa\xb6A\xcd%e\xbb\nztn\xa5*1NKa\xa8W\xf7Mz\x9d\xdcD\x8bx\nI\x9a\xec\x88f\x1f\xc9\xc3a2_'\x9f<39\x9dz\xf0\xb8wLDnk\x02n\x11F\xb0\n!F\xe1\x93\x13p\xbf\xe4bb\xcc\xc7c\x0cY\x1a\x9c\x96\xf1\x97\xfb\x1c\xa3]\xf37?&\x93\xc5qi\x16\xb3\x0bi6\xc7\x1c6\xcdv\xde\xc6\xdc\x16\xbdY\x96.i\xdc\xc0 f\xfc\x94\xd6\x8f<{\xbe\x9aC\x9e\xe0({\xeb$\x9f\xc7\xb3\xc2\x0f \x9a\x15,\x03\x96L\x81\xdd`\xf0\x8f\x00s80\xb48\x10!\xfa\x10X\x02U\xbb\xb4\x8d[F5|z\xf6\xa3h\xd2\"\x0eQyd`nK\x0em\x8c\x0bXn\xda\xdb,\x96\x97{&\xb4\xa5\x8e\xaeJ\xf5\xa5\x8fw\xc0{\xfbT\xed\x9bz\x99\x0ci\x8c\xe9\x9ej\x03\xa2\xb0\xcfT,\xb6\xad\xd5\x16\x93`\xe2$\x84\xd5\xb9 \xdc$r\xc0/L\xe6\xb0b\xba\x98\x93\x8e|\xf5\xcd\xf8\xe3\x0e\x1a\x7f\xab\xd1xj\xc0E\xc9E}\xff=\xd4\xddEp)\n\xc1\x16\x1d\xf1)\x88\xb5\x9eFE\xc4\x97\x1ac s\xa0\xf9}\xb1\xa6\x1d\x89\xa2@\xd2\x92\xa6*\xe4Kx\x1b\x14\xa5\xad\x01\xee\xfb\xef\x914\x06\xa1XT3\x10d\xed\x17\xed\x94q\xa5\x87q\xf2J\xc6\xeb\xdb\x93\x9f\xea\nc\x82\x7fP\x01\xad\xea\xaf+\xce\xcf^bB\n\xae\x8d\xc7\x89\x80\x8e\xee\xfd\xc6\xfe\xf9 \xdf\xee,\x13\x82\x06\xbf^\xc5\x88,\xd5\xdf\xf5\n\xe3u\xa2\xd7)\x7f\x19\xb5\xaa:\xad\x87\x99\x90\x06\x10;\xd6\x8b\x05G\x10+\xccw\xbdq^\xb7K\xc37\"EE\x06\xe4\xf29\xc9AVG\xf4\x04\xcfoC{Th1\xdb|\xa4kxld&7/r\x15eu\x86\x9b\xa1;\xa1 \xfb\xc2\xba\x07U\xac\x9e\xf4\n\xc3\xa0\xa9\xe3*\x1c\x1a\x126;\xfcH\x1d&r\xcf\xb5\x9e\xe4\x97/_\xc2\xa0\xf6k\xb7\xf6k\xbf\xf6\xebi\xfd\xbb\x83\x10\xd8\xf6v`:]\x83\xe0\xb6\x03T>\xbd\xa8q\x17\x0c\xe7\xab\xa0\xa9\xcf\xbc\xb04\x06\xfd\x10\xfa\x1dc\xdb\x9c\xd3PPW*\xed\xc2\x97\xdd;\x97\xf3-e\x05\xc7\xfa\xa9\xef\xf1\xd7\xea\x9d\x17V\x8b\x1eP\xdfH\x9d\x88\xe2\x04\xd2*\xf5\xc6 \xba\xa3\x0d\xe1\xa4f\xe6\x02\x0d\xf3<\xa1\xe7)\x87\x04j\x92\x9e\xc8\xb0\x80\x0c\x87\xfe\xee\xc2N\xea@\xf7\xf3\xc9}\x82\xd4\xf4!\xc8\x82\x9b\x1a\x92~\xa8O\xf2X\x10\xd6\x8e\x13\xbb\xca!\x864\"\x01\x0bXV\x9c\x16\x17\x10\xce\x9c\xab\\\xeaK8x\x8bx\xf2\x89\x1ag\xa7>\xde\xb7\xaf\xb0\xc2v\xa1y\xa3zB|w(\xe6,eZ\x85\x90\xa8\xd9\x96\xe8\x18\x82\xb9d\xdarn6\xa5\x8bo%\x02\x88bS\xdf\xe3\xe3\xa9m\xeb\xe7\xf5AJ\x0b\x01\xa5|\xf2\x83\xe7\x86\xc0\xe3\x1a\xe1\xdb\xb6C\xc88z\x8eDWH\x1d-F\xa9{\xaf\xe3\x98\xdeu\x13I\xfaB\xfbU\xb9\xb0\x08\x07\x16\x0c7D\xe2\x15_$\x91\x93\xa4\x16^\x8a\xb8g\x92%;\xa6\xf4\xa0\xff\xd2\x15:\x99\xd8\x93\xcd\x1a\x02)Mx\xe2\xecd\x9a\x91$\x9f\xef\xc0\xb4\x95\x02\x0d\x01 \xa5\x0dM 1\x8a\x00\x8d\x9er\xfd\xa4r\x832\n(\xa9\x9b\xd0\xfeZ\x9al\x0d\xc3\x0f-\x99\xee\xcb\x17\xa5f\xa8n\xac\xe5\x8c\x87`\x89\xef\xa2\x9d\xb0\xfc$l\xd4\x01\xbd\x16\x97\xc40\x84s\x95q\x81\x13D\xd7<%\x81>T*\xa8@k-p0\xfe\xdf\x7f\xafzq\xb5\x8d|\xb2\x0c\xd0Q\x03\x8d\x13}\xa6\xbe\xc7\xebUJ\x82\x10C|\x18Q\xae\x04\xe4\xaa\x93\xc6\x96\x97q\xfcS\xe5\xf6\x00\x0b\x96\xe7P\xcc\xa3\x04ny\x8de\x94}\xf2\xc4\xb8P\xb9\xaa\xc0\x86\xcd*\xd1\xeeH\xad\x05\xff\x91\xe2\x95\x19\xde!\xa4b\xe1\x91\xbf\x93R\xf94\xc5\x01{A\xa8}_S\xa9HM\x91\x05@J\xa3T\xd38\x9aJ\xb5@or\x10\x1a\x82\xb0X\xc1\x04WP\xae\x8aX\xdaL\x1e\xf1}8*\x05\xbc\xa1<\"\x8f\x1cz-\xfe\x7f?\xd0u\x7f;\xa8\xec$gQ\x02\xd01\xa3\xa4\xdaJ\x9a\xc2C\xe2\x8f\x1a*\xea\xc6\xcbk\x94\xda]\x14?\xb0\xea\xa7\x9b\xa1 \x1ew\"(Z\xc3\xc4\x85\xa6\x80x\x00q\x8e\x81s\xe3\xe5JdH`6\x1d6n b\xcc2\xd2\xca\x8c\x96\x82\xd6\xf7B\xb8#\x8b\xa7Y\x14'^\x083\xb2T\xed\xcf%Y*g\x17\xc2\"\x109S\x8d\x8f\x13N\xaa'\x0deWd\x99\xa467AX\xc6\xbd\xde\x8au-!^\xeb\x8fo\xb3\xb8\xa8]\xbcn\x99/\x91\x08\x96\x9f\xcc\xa88\xb9_\x1b\xd6w\xe2\xbc\x8a\xc6\xb5E\xceP\x18\xeeM;\xc5\xb2\x8e\xeb\x06#\x1a\xef\x8b\x04\xf2\x8c\xab\x8cQ9^\\X\x17\"\xea!|\xeb\xc9X\xc6\x02\xc6\xd5.\xa0A\xac\xb20Pes 24\x00\xd4\xb2!8O\x05\xc4$1\xc1P\xb6\x14*j\xc5Jk\x1c\x8e\xbeBt\x91\xd1@k\xe4\x12\x1d&%qW\xa1\x0ej\x15^\xc2\x80W\xda\x11\xcd\xbe\xf3+\xfa/x\xcc\xad\x95b\xa2f\xd1\"g\x80\xddB\xc6\xf2U\x9a\xe4,\x04ek\x9e\x98\x17\xb0\xb5%n(\xdd\xde\x96\x93\xeb\x8bl\xca\xbc\xbdMw\xe3\xb2\x05\x88\x8aT\x15A\x08W~+5\x13\x08'\x10L\xbc\x17\xe7\x82\xc1\x98\x10\x11!\x9a\x06y\xed\xdcV-\x84\xf9\x8a\xa4 \xee\x8e\xee\x9ai\x93l\xbb\xf5\xb8\xd8\xb4\xdb\xab\xa6n\xab\xc3.\xe9\x89\xbf\xbb\x9d\xfdJ\x9e\x15;\xb1$\xfed7]o\x07\x00\xac`n\xba\xb1\xef*c+\x96L\x15P*/=\xb3D\xe4\x98iP\xa1\xf7\xc6h\xc2\x97\x0b\xe4\x91?F\xc5%\x1cA\xe4\xeb/\x02\xb4\xe3\xab~\xd7-\xb2j\x9f\x1e\xc2( k\xaf.\xb1\x8a\xf0\\J\x1c\x04OCeu`\x8b\x03\xa5\xce\x1f\x88w\x06W \x90^\x9e3|3\xc7%\xa1\x95w{\xc8\x8aU7r\x89\xbc\xcd\xf3\x03\xebR\xdf2\x82\xb1\x18\xf3&\x9d\xd5F*\x03\xf7\xdaWL\xd4\x90Jz\xc1\x1f\xc2\xc9%\xd6b9\xeb\x1c\xbdR\x11\xce\xe3\x9c\xfeh\xe0\xfe\x88U\xcc\xa5,\x87#lIXq(\x89Q\x96\xe1Qi8f\xd8^\x19\xfa)8\x90\xd6\xf0j\x11KvA\x18\x13%R\x92%p\x18\x9d\xfd\x9c\xfcB\xe9\xf0#\x0f\x0b'\xa8S\xa8\xcf\x9c\xde,\x9b\xce\x8an\xa5\x163\xb4\xff\x1cb\x0c\x15\n\xf1\xf6v\x00\xd9(\xbet\xc1\xa0Qak\x19\x0e\x01I\xa6nd\x9c\xc3w~Q\x9d\x9f\x0d:8D\x89H[l\xf9\x99\xca\xd9\x13\x850\x08\x0c@\xec\xa0\xe4cc\x93d~\x14\x08\xe5_\xa3\xfe\xa5\xb6{]\x0b\xdf\xb49S\xeb\xc6\xb5Ib\xcek_Vn\x10\xd2p\x83\xc60A\xd1\x05g\x12\x94\x82\x98\xdb\x00\xadT=(\x02C\xf0l*FRe\xb3\xa2\xdao\xc1\xe5.B=\xe0]Q]\x89\x9c\x11.G|\xe7R\xef\xc5\x85\x88\xa5\xc9\xc9\x1c\x0eM\x99\xa6\xec\xca4}\xcey\xa9<\xd4\x04\x853\xb9\xa6\x9b\x1c\xabM\xeb\x1fM\xcb\x93\x0e\x0e\x0d\xcc\x08\x0dU1\xdav\xb4\x98\x19\xde\xc8@\xfb\x9d\x00]\x9e\xb9\xc6QS\x9d2\xcc`\xf7[1\x15\xa4YJ\xdd\xd0D\x19\x1fY\xe6'\xf5\x1b\x88\xf7\xa4\x01\x12\xe0\xd9*\xd1<\x08(;CC\x0f\xc5\xb9\xdb6@U\xaaV\xbe\x8b\x04\x87\x0dr\xb2B\xc7\xd1\xb0E\x82\xb0\xe3>\xc2\x83\x1b\x99w\x87\x05e\xfd\x1c\xd1\x14s\xf2\xab\x0e\xd3\xbd\xcd\xa2\xd5F\xa7\xbb\xfb8\xef|\xf6g\x8e#\xa2<\x1eR\x8c\xc7\x83\x0c\xa5\x10\xa7[\xc5^NN\xa6\xbe\xc7g\xb3bS\x90\xc2}R\xf7\x97P\xba\xf8f\xc9\x99 \xcb\x87nnP\xf2\xec\xd6\xaf\x0f\\Z3p^c\x16\x9a\xa9\xb6\x8d\xbc\xa5&A\xf2\xd6%,HW4\xfe\xe8\x90P\xc2i\x0d\x14~Z\x9b\xa3\x90SS\x8e.[\x89\xe17R*\x95QS\xafY\xef\xa7B\xa4\xf7\xcd\x0f\xb0\x9e\xb2JQb?\xce/\x0d\x04\xd1U\xba\xf1R\x90\xa4\xb6l\x806\x93\xba\xcf\xd4<\xceG\xe9%\xd4c7kR\x81,\xf4UE\x0d\xa9\xdb\x1c\xee[\xd1K\xab\xcb8\xf3/B%3=\x85F\xc7\xf5\xfe\xca\xe1\xdc\x80\xfa\x1agt]^1\"\x83\x84Hp=\x8a/\xb5\x9d\xde\xbb\x8a\x93\xa9\xa4n\xbc\xa8\xc1#\xa7\xd0\xbd)\xdb!\xa3\xa1\xd0X\xde\x1f\x16\x81\xf2\xfe\xce\x14\xe7Z\x89\x11\xf6Di\xda\xd3\xc5\xddD\x91\x90\x9ao7\xe9z\xc2\x92\xf5\x92e\xbc.\x97\x13lj\xb3\x91k\nEak\x17G\xf6\x1c\xeb\xb3C\xbf\x8f\xf1,K\x97\xfcT\x86Cx\xfb]UV\xcf\xac\x10b\n\x1eG\x82\x05C0\xae\xe5j\xb0\xe3Mti\xa2-\x1b\x90\x88\x99Q\x16\x94\n\x83\x94<\xaa\x1b\xb4,_\xc9Q\xd7?\x97~,\x1d\x0c\x8f\xee}\xd7\x03m~D\xee\xd0\x02\xe23K;M\xbc\xaeZsn:\xf4\xb2\x8e\x84\x9f\xde\x11:\xe1\x94\xd6\x9b\x1b\xf4\x83p\xae\xb1\xb3%\xd3\x93*yA9Y\x08s\x9d{\xba6i\x17\xa7\xd6\xc0\xfcF\x08\xd4?\x96\xaf\xfd\xf2\x04 ;h\xb8\xb7\xe4=\xce\x11\xe7\xcb\xf5 &bv 5(\xf3e\x1dV8(\xbc~E\xd0\x92\xfa,\x87\x9cU\xfbYzd\xb5\x10\x93{\xc3}@\xf3w\x99\x1d~\xc1\xf2\xa1\x996\xb6`\x84u\xf8\x96\xe5\x1d\x90\xdf\x12#\xb0\xca\xcd)\xd4+\x08]Vs\x1b\xc6\xa2\x9aNU\x06\xf9\xe9\x9ca\x87\x0c\xc8\x96\x95\xa1g\xaa\xfbvDd\xafL>\xabG\xcf\xca\xd9B\x04\xb5\xe4\xff\x7f\xf9\x02\xb7q2Mom\xfa\x92\xd2\xe1\xef\x91\x93p93\xd1Y.\xa0\xc4\xb4xZ\xf9N\xf5\xc6h\x89\xfd#\xd2K\x07x\xf0\xcb^\xce\x8a\x8bx\xc9\xd2u\xd1Q\xccI\xd8-\xc4~*N\xb0\xeak\x8c\x87P1@!\xe0\x00d\xa1\xa5\xb7\xc0~_'\x05\xcbn\xa2\xc5=;V\x9f\xd3=\xabR\xa2k}d\xa8\x80\xa9}\xd0*\xffH.\x1f5\xb1\xbe\xd5|\\S\x97fl\x86\xb6\x91\xba\xec=3\xe6k|\x84\xed\xb6\x81\xa4\xb6\xc6\x02\"YX\xe2\x011g\x96d\xe9b\xd1EA\xa4C\xc7g\xbc\xb9\x05\x93?_OQ\xfc\xd0_\xd9\xf8\xc5{['D\x7f\x0f\xd2\x99i\x0e\xc7{\x1b#\x9c\x8f'E|#\xb4\xaf\x91\xfa\xf3[:\xa7/\x08\xe5M\xaaV\xd5\xaeW\xc0\xcbC\x99S\xc9l\x15\x0e\xa1\xda2~+/\xcaz\xe34Q\x93\x17\x97\x12\xe5o\xea\xb6\x87p\xb9\n1\xa4\xd5n\xa0\xf6\xdcr\xc9\xa6\xb1\x08\xce\xd2N\xc2\xea_Ta+*Rh\xd5\xe08X\xb2.za\xb9\xf36\x1c\x82\xf1\x0d9\x08\xbbNm\x18\xf5\xe2\xea|\xe8\x94\xe0lc\xe6\xd9\x11S-Eeb\x9c\xebq\x88\x9a\xf1SY$\xe1\x9d\x82\xe7\xc16\x17\x82q\xbeE\xfa&\xbd\x15 \xc9|\xa7\xfd7\x1a\x11ys\xf6\xd9\xa3\x8d{D9FBj\xa9\xb0\xd3\\#\xca'q\xdcX\xe3*N\xa2\xec\xae\xb9J\x94\xb3\x83\xfd\xe6\x91L\xf2\xdd\xb6\n;-5\x8a\xd9\xe0`\xc1\xda\xea\xec\xb4V\xca\xa2[G9h\x1e\xda\xfd{\xda\\\x95\x1e\xde\xf6\x16\xaf\xefnG6,\x8a\x931\x08\x95B.\xdc \xac\xab'\xb8\"\x81\xed\x0c\xbc\xba\x90\x92S\x11x\xd6r\x11T<\x7f\x1e\x94\x03s\xb6\x0c]p\x17:\xe1\xafz:\x0c\x12\xba\xa0!tBE\xe8\x88\x8e\xd0\x15%\xd5\xa3M\x03k\xb7\xcdd\x11\x15q2h\xed\xbdq\xf7\xaaG\xf5-\xdbl\xeb\xbaq\xbbC'\xd2\x02\x1dh\x9cz\x94\xba\xae\xc1\xe8\xa9mO\x82r\xb1h\x0e\xb2\xa5\x1eN\xb3}I\xb4\xeb\xf4ZD\xa3\xd0R\xd8\xea\x0f\xa5#\xa4n&\x1d\xd1{\xc5\xe5b\xed\x989<\x94\xd1\nE\x120\xdb+\xc4\xfb\x98|J\xd2\xdb\x04\x14\x15\x18\x82\x18\xb6[{\x88V{uJT\x05v(#\xd3Q,W\x07\xb4\xc7F\n\xf6\x99C)/\xdb\xe4\xac\xd3B\x80\x8e\x88\xd1\x08n#\xd7VR\x81\x1d\xcc\xe2\xc5\xe2M\x84z\xba\xf5\xfd{i\xc4j}^\x93\xda\xbcf\xa2\xc7\xbd\x8dzlDX]\x89),\xc0\x0ea\x15\"\xe7\xe4k\x1d\x9b\x92B\xed\x17\xd6[Dy\xf1\x8e\xa1\xa0\xadB#\xf2W\x17i\x81\x92\x92\xfe\xeed\x1e \x9f:\xdd\x1f\xb0\xa6\x0d,\xff,\xcf\xaa\xc8&\xf3\xa5\xa9\xc5\x8bC\x18\xec>QIb\xe0\xe5Kx\x0c\x87\x87p #B\xe3\x9b}\xfef\xb0\x0fG\xb0\xa7^\xed\xf1W{}8\x82}\xf5\xea\x80\xbf\xda\x85#\xd8\x19\xc0\x10vv\x1b\x87\xb4v\x1c\x9fJ\x1bXM\x7f\xa7\x0e\"[\xca\xdf\xc4\x05\x1a-Ov\x9f\xf2\xbd\xec\x0f\x9e\xed\xc2\xf7\x98\x14<\xd0\xac\x99\xeaK\xe1\xfd\xdf\xff\xd7\xff\xe9\xa0\xb2\xe8cTU\x97\x16\x83\x9ak\xd8\xa0\xe9h\xa5\x062p\x0dd\xd08\x10\xa0\x06\xb3k\x0c\x06\x7f\x9b\x1d\xee\xba:\xdc\x95\x1dv&\x9e\x85T\x88>\xa7\x90L\x93$\x12t\xb0\x1f\x1aX\xffB\xf36\xc3x^\xe8\x97YCy\\V}\x1f\xf0\x0f\x03c_\x94\x89\x0d\xeb\xfcVho*\x11\x17\xac\xa9\xa32\xc2\x99\xbe\x9f\xcb\x11\xefh!\xd0\x9a\xf7^N\xaa\x00\xf8z\x95\xd9T8\x8a\x07\xf0\xaf\xb0\xcb7P\xbfI)_\xa5n\xf4K\xf2\xee\xb6#i\x0e\x04\x80\xd7\x91\x93y\x94\x9d\xa4Sv\\\xf8\x9a\x0f\xac\x199Z=\x18b\x9f\x8b\xdd\x8f\x1f\xef>;\x004\xcc\x7fq\x08\x8f\x0f\xf6\x06\xcfj&_\x06.Y\x04m\xdfX\xb8Q_\xa4-\xd6 \xb2{i\xd6\x19Xu\x06\x97!$\x95\xa3\xfa\xce\xe0\xfeF\x1e\x14\xde\x9a3\x19\x103\xd9m\x9f \x1f\xa5c\xe1*4C\xa87\"\xd2\xc2M1\xeb7\xe2G\xda\x81$n?\xa8\x9c\xec\xf5\x8d\xd4r\x11\xe4&\xc7\x0d\xdc\xcb\xb6ksj\x10\xe8\xdb\x01\xc1\xc8\x95h\x84\xcc\x84\xdcbj\xfc\xd66\xdb#\x89T_z\x9b\x1c\xd5\xd6J\xb2\x1a\xd2\xf1\xcc71b\x0fv !\xb0bOY\xa4%j5\x1a\xf1\xa3\xd6\xf47\xed\x87 t\x0c\xbf\x86iI\x0b\xcd\x9a=\x1c\xaa\x91[\xe9\xa8\x11;\xcaA\xf7C\x04\xb0\x81\xa9\xc3\x16lX\xb9\x99\x1d\xc7\xf9\xd0\x0c\x8ci\x03\xf3\xd4\x06\x0b\xada\xf5WQ\x8f\xe7\x06\x87\x10\xd75\xd3\x8a\x91t\x0b\xff\x95\xcdmy\x06\x95\x82\xa1\x01~\\\xb6\xd0t|\xee\xb4\xff\xe3*\xef%\xfab\x96\xac\x99b\xe2\x85\x9c\xe3\xe8\x18t\x03%\xd5Mhs\xbb\xf5\xbd/\xec\x14\xd1\xe5\x9bD\xa3\x04c\x92V\x00\xd71\x89\xf3\xfc\x9c\x10$\x81\xe2/\xeao\xf0:I[\x91:\xd4\xa5\x88\xd0xK\xf5\xc0\xf8\x8f\x1cV\x1d\x9d\xebc\x92RL\xe3]\xc2\x8d\x99\x17\xbd\x81\x01\xae\xec\x93+\x8aAs\x0e\x19\xbc\xe0M(\xd2hW\xba\x91\xd9\x03\"\xbf\x18e\x97\x0e\xfe#E\x0d}\xd9L\x8a\x8e\xbcB_\xaf\xa1@\x8aG_\x08)\xdd\xc8\xce\x0e\x0e\x86\xaf\xde\xce\xae\x10\xb3\x9b\x06\x86\x8c\x956\xb2\xa0\xf3\x18v\x7f\xfd1\xc8\xb60\xf8\xce\xa1\xca\xd2Y\x1f\xd5\x1e=*\xd5y}\xfb\xb8M\x8bQOhly\x9b*\x96\x01\xfb\x8d\xaf\xad\xf3-\xb1\xa9\x8c\x1e\xa0\x01v\xc0O,\xcaMn\x0c\x9a\x05\xef\x0b\xcfijh\xf5|a\xf5\x0d\xa3\xa9\x17\x9a\xa9g};\xbe \x08\xa9C4h\xe4\x85\x1eT@\xa9C\xeb\xde\xc3\xd1\xc4\x98\xfa\xa45 \xc68\xa5\xeeu5\xa3\x9b\x1ei9Nn\xb4\\Pt\xa63LcS\x164\xa9\xd7\x11\x87\x11\x04\xb5\x84*\xf5\xb4 \xb1\x9d\x01\xabfu_Zc\x14Y\x94\xe4\xb34[\ns\x0c\xca3\x06C\x83_\xa8z\x1dl\xa7\xc0d\x9b\x8d^h\xa9*\xe9\x95\xb5\x9a]9*\xb1\x0d\x0f\x9c\xc9\x95[J\xdb\xca\xea\xf2\x983v\x80\xe068\x84\xae\xa2\xc9'\x15\xaaf\xb9^\x14\xf1j\xc1\xa0\x88\x97,w\x86\xbcW\x03\x99\xaf\x93O\xa5\x9bJ9\xba\xea\x8d\xcc\xfaW\x94W\x852ut\x88Y\xf8\xdc\x93M\xbb\xda\xc5\xf3'5Lw\xfc\xd4\x8al\xaeLd\xe1\x05\xa4D\xe0\x8d\xaa+\xdf,\xb6z\xfcZ\x99\x81Ri\x04\x19\x9bj\x88C\x99I\xeakN\xd7\x90`\x14\xf1.\\\xc5\x1c\xf4\x8d5*u3\xafT?/h\xfb%\xc2\x13\x83\xaa\xa6E\xf3h\xcc-RNT3y\xaa\xde\x1d\xea5\xdc\xa9Ff\x8bu>\xd7\x1a\x10\xbf\x0fU\x89\xb2\xbaG\x9b\xedU\xc6J_\xbd\xa8M1J\xf1S\xca\x1d\xa3\x8eg\xe4\xc8\xf4\xd1\x1c\xe9\xbfj\x99\xd3Hnl]\x12\xd7\xfa\xa2p.r-\xc9U\xb5\x7f\x9a\xe7\xb1v\xb1}\xb5\xab\x14\xc2\x88\xd4\xe6\x12j\x99GY\x15\xee\xde\x8a\x14\xa0\x0eL\xeb\xa2\xe3$Z,\xf86\xac\x16y\x9a&\x0cn\xe7,\x81\xdb2\xa9\xd2\xd6!\xf4\xcd\\\x86B\x8bi\x10\xcd\x1au\xdc\xb0\xbb\xbc\x88\x17\x8b\xdaV3\xbb,!C\xb8\x03TB[j\xa5V\x0b\xb5w~,\xd8\x95x\xc3\xe0\xee:\x816']\xa3 \xa5\xdfS\xbd}\xcb\x9d\xac\x1ay}0\xb5\xfd\xd6&)X\x00\xae\xbev\xc4\x98qvk\x8b\xb2t\x97ug\xb3\xa63\x13\x85\x13\xfd\x80\xe1P\xa9\x1dB\xac|\xa3]\xb7\x17!le\x06\"\xd1\xf2Q\xe7#\xc7\xcf\x8c5\xc2\xf3\xe5\x17:q\xbe:Al:\x174\xdf\xaa4\xc2\xb6t;)t\x88\xe25\x82\x02\xb8\x88\"\\cW0\x0c\x93\xc9\xc0\xf4-.\xcb\xd7\x1b\x0dU\x93\x15\x03\\\xf4\xea\xdc\x960!\xb6\xb7A\xdf \x89\x8e\xa9\x1at\xfe\xccd\x14\xed\xd6\x8c-\xd6l\x90Q\xf8\xc2fZ\x10Y\xe1Cn\x12w\x83\xb8\xdc\x8b\xd7\xd6\x98j3\xeb$G_\xcc#\xa9KEiv\x1aM\xe6\xf5\x8aq\x95\xdf~\x92\xb1\x1a.tK\xdf\xab\xf0*\x16D\x93\xa4\xaa\xd2\x8a\xb4\xb4\x1am\x03 \xe7\x069\x8eug\xb4iV\x10M]\x12\x99`\xbe\xc08\x80\xc0F\xc9\xa5U\xf9\xab/\xf3f\xa3\\`\xaeUX\xd34\xc2}\x97\x8b\x84g\x00\x7f\xfb\x86&5\x0c\xd0Sen\x92\xb7\x16\x89\x1d\xb9jq\xfe.z\xe7c\xfa_\xd4b\x14B\x7f\x817w\xdf\x7f/\xd5\x15;\x98\x9b!\xc5\xe8\xd6\xc32\xfc\n^ \xb5\xa7O\xef4\xc7\xba\x0b\xce\xc1\x93\xa7\x81\xcf\x87$\x916\xca\xf3\xf8:\x81!\x16=\xfbV\x9b\xc2\x10\xd2\x10\xb3\xc9\x85\xb0\x0eA\xf5h\xec\xadNv\xbd\xd6\x85\x05\x7f\xb4\xb8 Evg|E{g-B\x90Q\x00I'\xacI\x9a\xcc\xe2\xeb\xb5r\xc3\xea\xd3\xcc\x7f\xe4t\xd2js\xe2\xc2,\xd8C0\xcc\x80\xb5u\x85IT\xda\x8fU\xa7\x93\xb8\xf4Xhw\xb9\x99%Y7\x0f\xdd=\xec\xfa\x90\xab\x91\x88\xd0\x86$\x14\xc3\x8d\x13\xd4\xa35\x0cJ\xa6\xa5.\x0b\x1d!ez\x0d?\x13\xf9\xc1\x05K\x81\x9eZ\xd5*e\xfa\xad\n^\x17\xc9\xd4\xd2\x83\x83 \xc4\x8c\xa8\xa3\xcb\x10\xe2v\xaa\x1aR\x1ap\xce\xf9\xacG\xec\xb2d\xe6\xf9\x8fz\x15${\x05\xf6\xf3\x1c\xd8\xce\xce\xf3@\xb9\xb9z\x91\x07\xdb\xe0oo'A\xa5\x82\xda;0\xe5zM\x8f\xa2\xdc&|o\x96\x88\x9c\xb9XTJ\x1c>o\xb0\x90Q\xeeC\xf0\x02\xd8\xe6\xff\xfcM\xb51K\xa4\xc3\xa68;+\xc7\x81\xe7\xf0\xf5y\x9de\xec\xbcF\x04\xc5G\xf9\xc6\xb1f\xaeD\xf2 \x9eZE`\xa9\x1e\xec\xbd\xc9\x9f\xc8OB3\x01\x95\x03\xfd\x81\xba^\xfe\xfa\xad\xc4I\x88\x1cT&u\x1a\xe9\xeb\x00\xaa\xaa]\xb3\xe2\xec6Q\xd5^\xb1|\x92\xc5\xab\"5\x0c\xa8#\xd7\x07\xef\xa2\xa5\x19\xd3d\xed\xaa{~\xb7\xbcJ\x17y\x87\x93\x89\\cA\x82\xe5\xd1\x9c\xf9\x85\x89\xa7('\xea50\xca@\xe4\xe7\x81bv*\xf1\x9b\xce-G\xae4\x7fpOg\xa1H\xba\x9eQ>\xb6\xfa\xd2\x93M\xa0\xa1\x86\xfd]\x1d\x81\\\xaa\x0e\xcc\xe7\xbe\xfe\x07\x9b\x89n\xe0SJ\xe8\xb4\x9c\xfd]\xbd\x95o\xdc\x15\x8f)\xfe7\xf1\x07\xfb\xe6n\x89iO0\xce\x9e\xde\x17I\xf9\xc1Fd\xc2\xe3\xfb\xa7\xa4v\xa3\xddK\x12\x0c\x19\x92+\\!\xbd#\xc1\x87\xac\xa9\xe5HF\xd9%\xfa8)_\x8a\x08\x05\x12\xf5\x85\xb5$I\x0b\xa0\xf5>\xba1\xfcr\xe8[[R\xdb'B\x10\xd4\xd3\xc8}\xf9\xe2P\xe0![\xefR\x10\xceY\xdbh;\xa1\x05\xcdH\x15!x\xe31\xcb\xdf\xa6\xd35\x9a\x9c\x98K\x89\x8c\x8e.W\x06\"\xde<\xda}v\x81\x88\xbdX9\x17\xae\xdf/\xd6\xd7q\x92\x0f\x1d{\x8be\x99\xab\x08\xb0\xed\xe9z\xc2\xb2|\x08~\x9f\x0b\xbar\xe9\xcd\xe2E\xc1\xb2\xee\xc4\x80\xf5>\xb1\xbbs\xf6_~\xd0c7,\xd3\xc8\xb4\x13\xb4`u_\xb4d\x0bD\xa9mT4d6Q\xb2?z\xb8f\"\x16aw\xb2\xefDg\xd6[\xb2\xec\x9a\xf9N \x19\xc5T\";\xdc\x06X0\xfe\xe1O\x0f\x8d\x08\x9a\x1e\xa3\xf2 N~\x0dtH\xe8pZ\xbf\x06\x805)\xb2.\xc2\xc5B\xe5\xb6k^\x97\x89\xcb\x0f\xf3m%\x94\x0f:\x0b\xe5j2\xa6\\./e\xec\xc9\x95\xaa\x03\xc3{\xfa;\xfb/>\x83\x85uG\xc5\x19\x9b!\x18WS\x0bv\xc3\x16\xc32`|\xadl\xc9\xf2<\xba\xe6Go\xe9\xe6\x8d\xb5\x8c\x1e\xff\xbe\xa2\xb7K\xaf\xd5\xa4\xe1\xb4`\xfb\x97\xfc|\xc5&C(z\x9c\xc98W\xda$\xfc\xf5\x87\x04\xd6\x91\xb28f\xf35\xe8\xc0\xb1\xaaok\xa2\x80\xd8\xa1\xf8b\x15 \xbe\xc4l\xba\xc2G\x87\xf6\xf0\xc9\xae\xa9\xd4\x7fH\xed!Er\x08\xf7\xf8\xff\x15\xf4\x80 \x87\x8e7\xd3\x11\xd2\xe4]q\x8f\xc6\xff\xdc\xab\xfe\xdc\x0f\x02a:\xf3\xf7'_\xb4!\xa3\xeb\xc0\xe8\x80\xc67e\xb41\xc4ZI\xc7\xbd\xa0\x17'S\xf6\xf9l\xe6{\xd2\xe21\x9dA\x84g\xbd\x9f\x07\xa6\x11)\x947\xd1/a\xc7\xe9\xf6\x7fS:q\x1b] \x07ft \xa3:S\x96\xb6\x98\x05\xa1\xf0\xbd\x90\xea\x1e\xf4i\xe7z\xfb\xa1\xab\xc3>\x92\xd8\xed\x0ebB\xadqq3\xe1\x9b\x88\xd0\x90\xd7\xcdh\"\x91i\xdc*'4\xb1\xab\xe5\xef\x970\xc0\x83}\x1b\xbc4\xc3\x18)\x05\x0c!\x1b%\xb0\x0d\x83K\xa3\xea\xae\xac\x8a\xc0\x0b\xc1\xd3kj%X\x80\xbf\x9c\x03\xfc\x1a\x82\x97\xcf\xd3\xf5b\nW\x0c\"\x97Z\xc3O6\xc9$\xe0&~\xbf\xe9\xfdD\x9c\xbdEO\x1c\xfc$\xa1\xd1nu\x1dD}\xb0\xf7TCZ\x071\x0f\x91_\xfcMC\xe6\x1b(\x8dkw\xfa\x14\xf9\x11&@\x9e\xf2s\xeay\"e\xeaj\x11M\x98\x9f\xb0[\xf8\xc0\xaeO?\xaf\xfc$\x04\xef\x9aW\xf7\xbc\x80\xd2\x1b({\xa2\xdf:\x1e.\xa2\xbc@ss\x11Yr\xb1\xc0\x1fy\x19\x16\xd6@+R\xb4\x10\x98\xf6\xd8|\x1d[M\n\xa5\x8b0{U\x0cl\xd0q\xf5\xea\x80l\xd3\xb1\x94k\xae\x8b}JXU\x9a\x16cm\xaa\xa9\xd6\xc1B\x8f:n\x1aB\xd9=oG\xe3\xc8\xbf\xc5$\xe9A\x97\x9d\x90F\x1cs\xb0a\xdb\xe5\x92}\x11\xdd\xa5\xeb\xa2\xdb={)\x88\xfc\x03\xdc\xafS8\xfeP\x1c2}\xbf\xbe\xdb\xef\xbb\xef\xd7\x9fv\x16\xe5\xffW\xe0\xab\xff\xbe\xdb\xca\xc6\x99P\xaahvM\xa3\xa8HaM\xfc\xd0X\xb3& \xb4\xb0\xab\xe6\x98\xa4\xd3\xb8\n\x96hm\xaen\xe7\xa3J/\x90\x86\x90\xf7>\xbe\x7fu|q:~s\xfc\xa7\xb3\x8f\x17-\x8a\x82\xfaQ+\x88\x00\x9e\xa0R\xb9\xa7S\xc2\xc6\xde~|\xfd\xe6\xe2\xb4M\x91\\\xefM\x08\xde\x9b\xf5v\xfe\xd3\xd9\xcf-\x9dX\n\xca^>Oo\x13\x9b\x0e\xa9\xa3b]j\xed\xabO\x8ay\x9c\\\xbb\x1c\xe0\x94\x16\x1f\xdb\x95\x87T\xd5\xc8\xdf\xf8\xd8;\x1ev\x1c\x0e\x19\xe1\xd8\xd8\n\x07 \xf5\xb7g\xafN7\x06\x07\xce\x8d\x06GUi\x99N\x99c\xfa\x18\xea\xdc\x1fy\xbcJ\xee]\xaa\xfb\xab\x84\x0f5\x13\xb1C\xd0\xc6\xd9\xabO#\xfd\xad\x1c\xa5|\xd9\xce\xd7\xcbe\x94\xdd\xe1\x94o\xe7\x91\xc8\x0f\xc4\x7f\xc4\xf99_U\x11\x86}\x9de,)~D<\xd5\xdf\xb8\x98-u\xec<\xdd\xfbUO\x1d\x82\x95\x13de`Z\x97\xe5\x92\xda\xe8T\xa5\x9aS\x07\xf6\xe8Z#\x13\xda\xf2\x86\x04\xb4\xba\xb6&\xc9\x80S\xdd\xb50\xd6\xa5 {\xb4\xd6\x8brw'i\xb6\x8c\x16\xf1_\x19\xba{\x05\xd2\xfe\x1d\xfb\xd6wp\xae\xef\xe0\x00\xcb\xeb\xaf\xf9w 9\xcc\x1a\x0eu\xda\x8d\xa5\xdd\xab.\xa0\xd7SX\xe9\xa6\xb1pT\xff\xe9\x8e\x9e\xd3>kj\xef\x1a\xea\xe5\"0\xa6jo\x1bA\x94\xbaK\x06\xb6\xfc\xdb\x81\x1d\xdfBf\xc3c\xd3\xb8Hk\x18\xd2\x89\x94T\xf2\xcf\xdeAG\xd7/N\xa5\x8c\xa1\xd0jt9\xc0\x14\xf3\xe6d~\x12\x8c\xfa\x97!$\xa3\xc1%zc\xfa&EoTm\xab\xbb!\xd6\x13\xcd\xda\xc2\xa90\x14\xd7\x90#\x16\xfec\xd2\xc8Y\xa4\x0e\xac\xf7\xf8]\xfd\xaf\xce\xb0zb\xd2\x0c\xa9\x96x\x16\xf8^\\\xb0,\xc2\xa5\xb0\xc9\x9b\xe1K\xd9\x06o\xc7\x8a\x9b\xa1\xf4\xfd\xac\x87\x0dk\xc9\xc71{\xdaa\x8d\x9f\xddp\x8a\x8dsI\x8d\xb0\"\xf6\xfa\xab\xe5\x1a=\xb9\x1ce\x97f\xfe\xbdX.b\x93\xa4\x06\xaa\x1f#*Q(\xa1\xc8)NM^\xa5\x1a\x108\xb1[oA\x83 \xedx\xd3\xd9r_\xc4AB?\xe6*\x84\x93\x19oE\x913\xf3=\xbdi4\xc0\xd1R!?\xccb\x02\xa6X\x86Y\x97\xda\xa0\nMr\xb0z\xa6i\xc2\x86b\xdc\x9d\x83^\x878\xb0\x0d\xba\x8f\xa86\x98\x1f;\x08\x03\xeb\xe0\x1e\xd5\x05\xcb\x7f\x05\xfe\xe9\x97VE\xe4xk\xea^\xbe\xdb,Z\x1d+\xfdBC\xee\xe8\x7fH\x85\xc5\xde\xaf\xcb:.Paa\x99\x94\xaf\xcb\xa2\x81Y\x94\xcb\xa2\xbd\xfd\x03Z\x97AD_\xfd\xa7.\xe3\x97\xde\x97$:\xadHw\x81X\x95\xec\x99%\x91,yj\x954i),!c!\x9b\xd9\xb3\xba\x9eH\xb5\xc6\xc0x?\x93\xefwI\x84j\x08S\xfaK\xd8\xb9\xd4\xf4,\x99\xa6g\xd1\xac\x0f\xb3\x10fJ\x06?\x7f\x7fz\xd2M\xefQ\xe6G\xd0\xa2\")\x81\x1b\xa3\xe9\xa2Z\x04-Ru\xa5\x08\xe8\xa3V\n\x01\xc7`>~x\xd3m,\xb2\xb3u\xb6\xd0\xfb\"\xc4\xf6\x86\xce\xfep~\xf6n\xa3\xde\xfe\x92\xa7\xa6\xb4u\x96MY\xc6\xa6\x9a\xee%\xe8\xdc\xff\x87\xd3\xf3\xb37\x7f<}\xb5\xc1\x18P\xf8\xc9X\x9e.n\xd8\xd4\xbb|\xf8\xb1\x8c\xcf?\xfep\xf1\xe1tc\xad\x0c\xad\x8fI\x84\x13\xbd]\x98J\x13\xdab\xde\xa2\xa4Qs=__\x15\x193e>]\xad\x14\x04\x0ehd\xdd\xa1\xf0\xfe\xf8\xc3\xf1\xdb\x87\x9a:\x9f\x9d{\xe6Y\xb4|\x17- \xd0\xc4U\x85\xd7\x84\xd6o]\x15\xdb\x85y\x13\xcc1\x9cg/\xce\xff\xe7\x92\x88 7!tB\xea\xbd\xf0T\xe6\xe7\xcf\xfc$\x9d\"\xd1\xda\x8a\x05g\x0dG\xb0\x16\xaa\x88$Z2\xa17\xeby\xb0\xad\xde\xc6\x89|\xc7?\xde\x11\x05\xaa\x1d\x1f\xf3\xf7\x97_\xc4\xf61\xca\xe9\xea\x02\x8e\xc0\xc3\x19\x8d?/\x17\x1e\x0c\xe5/Z\x7f\xa0i\xf7\x18\xe6\xf3F\xeb$7\xd6dA\x08#\x0f\xa1\xc9\n\x86Wv\x93\x10f\x97A\x08yg\xac9}\xfb\xfe\xe2O\x02w\xc6\xaf\xdf\x9d\xbc\xf9x\xfe\xba\x95\xb0l\x84EoY1O\x89\x1a\x0f\x83Kq2Y\xac\xa7\xect\xb9*\xee\xfe\xc8Ak\xf3-\xc2\x1cx+.y\x1ee\xc2v\x1be\x89\xef\xfd\x1ce \x06\x1el\x02\x08L\xd0\xe4\"I\x0b\xb8f \x17^\x19D\x80c\xfb\x1f\xec\xae\x87\x16d6\n\xe4\x18\x1d\xd7\x81#\x0f\xb3\xe8c\x04@\xce\xd9g/\x84\x9c\xaf\xfd\xba}\xed\xffx\xfc\xe6uE3\xce\x7f\xbd\xe5\x8e\xf3\xb3\xe3\xf3=z\xad5\x05YGH\x04\x84\xfa\x9f0\"\xe7\xb4\xe3\xd1\xe7\xe5\xe2Q\xdc+X^\xf8\xb1\xd8\xde\x1c\x0d\xd6K\x96\x8f\xc5\x96\xa4\xbe\xe4{x\xd2\xe3\x9ca\xc4\xa1\xf3s\x8c\xf3\x8bd\xcc\x10ArB\x18\xb1\x86!6\xdfcl4]c\xb7_R\xd3\xefx\xfb1S\xd6\x8f\x1a\xed\x10m\x95\x8e\x15\x94\x01\x95K\xecV\x18\"\x8e\xb0\x9bh\x11\xf3\xc9\xbd\xe7\xad\xa3\x91\xfb\"\x84\xb4\x835\x18\x87FAR\xe4\xa2\xa2\xc8!(\x0b\x85Ks\xfe\xa4\xd1\x93\x1d\x15\xa5}\x7f\x08\x93\xfco\xdc%\xdavx(\x1cH\xdaq`t\xd9\x15\x07\xbaX\x03\x81\xc5F\xd6\xacCj\xdd\x12\xb0\xdf\x18\xf0\xe7\xa7\x17\x9c\x9b{\x7f\xf6\xee\xfc\xc1\xb8\xb8\xcc\x8c\x07\x035\x1e\xce.\xc3k\x9d\xde\xd2A\xc8\xd6\x0ef\xc3_\xa3\x13\x1d\xc2\x07\x8e\xc0\xd0\xea\xdb\xa0\x15\xd6\xd2dP,\x8e\xfcC\xd1V/!\xcf\xc6\xd2\x90_T\x92? \x9e\xaa\x88\x8au\xce\x19\x16U\xb5zS_\x9bP\x96g,_\xa5I\x8eY\x02\xb2\xa07g\xd1\x94\xa19\xd2\xba\xfc\xfb\xcb\x17K?\xc0\x17c\x824\\\xe3}\xb1\x1d\x8e*i\x08\x91\x8b\xdd_;(\xe4B\xc1\xae\xf7\xc3\"\xbd\x12\xda\x97iTDzPm\xbb\x8e?A\x8a\xed\x1aD\x08^\xc1>\x17\x9cr\x88\xd6\xf8\x112\xe9\x88\x95\xff\xf1\xf1\xf4\xbc\xedJ\x7f\x03\xa4\xfc\xaf\xcd\x902\xd6\x90\xb2U\xec\xf8\xaf5\xcb\x0b9\xe9\xd8\x05\xf9.\xa2\x05\x9f\xf9\xdb\x8f\x17\xc7\x17\xa7\xaf\xfe\x91 \xb0\\\x17Q\xc1\xa6\x1f\x1e\x0e\x10\x929<{\x7f\xfa\xe1\xf8\xe2\xf5\xd9\xbb\xf1\xdb\xd3\x8bc~B||0:\xd5$r9\xa4\"\x01\x92O\xec\x8e\x96\xa6F\xad,\x85\x83[\xeaz\x1eYN\xa0\xe5J(V\x0e\xb5\x0e\xae\xcf\xf3 \x080{dY\xbd\xd2\x0el\xfcI\xab\x90\x8d\x9f\x1eUX\xe2\xaa\xb7\xe0\x87ll\x9f\xaci\xd0M\x1b$\x98\x87\x87>\xc5\x9a\xb0\xa3qOL\xd9\x82I&C'\x87Y\x08\xe9e;\xde\xab\xc9<\xe8\xd6\x7f\x98\xb9\x94{\xbb\xe3T8-;?\xf9\xe9\xf4\xed\x83\xadI>\x993\xeat\xfe&*\x96\xf2s,\xd6\x11\xd5\x13\xfdTT,\x13\xca\x87/_\xb0\x9e\xbc\xb6\x1dR\x1fxc \x83s\xf1\xe6\xb2\x9e\x97$(\x7fv\xbe\xbf\xdd\xa3c\x99=\xdb'4\xdd\xf2\xb67_\xb1I\xccr\xaf\x8b\x1d\x00\xb9\x16!\xb2d\x99\xcf\xd0_?/\xb2\xf5\xa4H3\x12zZ*\xa8HK\x0f\x7fx\x08~\x82mD\x01\xdf\xdb\x98\xdbh\x08\xa9n+\xd0\xe9*\xe1\xa6\x16\x87\x15\xe7\xb8\xff\x8cV\xd8\xef\x99 \x91\x86\x85\xfb\x94\xce>\xf1\x07V\x948\xa9\xb1\xa7\x14\xf6\x93\xde*K',78\xdbU\xc9\xfd\x94\x89\xf6k\xe5S,\xafg\xc0\xaf\xd7\x98c\x8d\xb7\x82\x9f<\x99GI\xc2\x0c\x85\xdb\x0d\xd6x\x15\xe7\xab\xa80\xc35/1\x1di\xed\xd55\x11\x80\xee\xae\xed*\xf7F\xa67\xd8\xb6\xc3_\x83\xd4\xea\\\x1bWJ>s\xe6\xbeW\x97Z\xd7V(R\xf5\x08\xba\x82\x15B(|B\x92\xa9\xbd1\xa6s\xd5h\\\xc1\x1fu\xe1%x\xcez[\xd5\x88V|\xe7O1\xc6\xc1\xaa\xb1\xc9*G\xba\x8c\xd6\xcaQ{\xf0\x9c2lJ\xaa\xe8\xaa\x95\x11S\xb2\xbd\xed\xb8g\xbb\x1emo/[o\xda\xd7\x8e$\x1a\xf2\x06\xe8\xc7j\xe0\xa1\x15\xae:\x84\xcc_\x06!,\xbf\xd3^5\xc7\x86\xd7VG\xff\xc8\x93[\x00\x87\x90\xf8\xcf\xf6\x02\x7f\x16\xe0\xb5l#\xec\xd0\x94\xe1\"\x9e|\xf2#\xff\x0e\xe3\x94\x0ct\xfe\x0f\x86p\x83\xc6`\xbd$\xbdmm\x0dk9\x1b\xc2\xd0\xc2\xb12\x19N\xd8-\xcc\x83\x1e'{\xbb\xfct\xe2\x7f\x0czi\"\x8578\x84\xab\x10\xbb\x8b\xfc\xb8\xb7J\xf3B\xeeB$5\x03d>&\xbdh:=\xbdaI\xf1&\xce\x0b\x96\xb0\x0c\\\x01\x0b\xb5\x06P\xdb=\xe9\xc5K\xde\xe39\x86S\xcdU\xd0c\xf7\xd4&\xfa\x18|tt\xe3\x07\xca\xef\xea\xa6\x87\xf6\x88t\xa7\xa1\xab\x10\xb6\xc4\xc8y_^\x9ad,\x9a\xde\xa1\x1d\xc2d\x1e%\xd7\xcc\x838\x81\x85\xef\x89 \xaf\x1e_>\xf7\x88\xf2^\xb4Z\xb1dz2\x8f\x17S_\xfb*\xe8\xd9-\xb7\xe1p\xde\xcb\xd82\xbda\xa21\x91 \xa7\xdc\xa7\x06\xce\xd6\x16\xb5a|\xac\xb8\x88\x97,]\x17\x1aF\x84\xd0\xaf\x1f\xb8\xfa\xd1g}?\x84\x95q\x06pZ=\x84i\xd5\x04\xfe\xf5\xedq2\x1bM\xebh:\xea\x08\xc2\xcd\x9f\x9b!\xb0v\xb2\xd9\x18\xc9\xb5\xb5kBQ\x02\xb2\xeb\xb6\x8e[\xa0\xb7)\xb3\xb3\xfb\x94dvv\xfb\x8f\xef\xc3\xe2`\xb2\x10\xa4\x95\xa9_\x88|\x1b:\x9b#\xed\xedJK\x08[\xf1\x82\x91\xa2{3;\xa5\x98\xf8\x82\xf3\xc2\xa8\x05\xe3b\x92\xb4\xa4\xe5\xec\xc32\xce7\x8cs[\x8fu\xffd\xef[\x02\xda\x17\xba\xe5\xc0!l\xb9\xcc\xb9w\xfb\xbf\xa4Q\x8e>\x1eY\xa7\x8b\xa5d+\xf3\"\x9c%\x1d\xa1\xc5]\xa8\x8f\x89\xe1\xd40j\x8aw2\x9a\x13\xd8\xe3\x81\xccOC\x88\\\xb5\xa112\x85zn\xa4\xb3}1J/\xfd\x88\xd0\x10\x98\x8f\xd0\x0e\xa2\x8a\xc2Y\xb7=\x8a\xb3ztF\x9e\x0c$\xa3\x1e\xdb\xe0K=x\xeb\xb7\xeeM\xd3\xa4\xda7%`\xd5N\xf0\xf3\x00c\xfav\xd0\x80\xab'\xf3=\xce\x15\xcb\xc8\x1b\x89\x88\xd7 \xd2'\\\xb6exq\x918\xc2^\nM\xc0\xb7R_\x84\xc9\x8e\xe5\xff\x98\x0d\x87\x8b\xdb\x9b\xa1Q5\xe9\xc1>}\xca>1\xe5j\xa9R\xd83St\xca\xfc\x15\xe6\xa1,\xc4\xf0\xa7\xfd.g2\xba\x1f\xe4\xd4\xc9\xbc\x15\xa1d\xa9TP\xf5\x8dX\nb\\\x84\xdf\x19\x84(\xb2\xa3\xa7|\x8aQ\xe2\x82@Jb\xa1\x90\xdaa\x07\x06!J\xe9\xecy\x99o\x12\xc5\xbe\xed\xed\x05\xbc\x80\xc9s\xd7\x81\xc2%\xa4\xb5_\x8c\x16\x97\x0e\x82\xcc\x05w\xc2y\x81O\x01{\x995I\xc7\\\xa6_\x8d\xa6\x0e\xe9XO\xaf\xcd\xbb\xe1\xc2C\xee\xdf\x840\x0da\xc5\x99{QA\x98r\xceQ\x80\xb9\xe1\x9c\xfc\x0d\x0c!\xe6c\xc6@\x17\xfc\xcd\xe8\x92\x9f\xceT\xf8!\xebM\xe6\xaf\xb0\x83y \x00\xc6\x87\xf7\x9d\xfb\x13\xb5>\xf7E\xc2\xbd\xfdN\xbc\x1bq\x14{\xe31\x9a\xb9\x8e\xc7b\xaf\xe0\x9e\xe0\x8c\x88\xfc\xc0\x86z{V\x9cZ\x12\x19\xa2\\Z\xa1\x12V1Zb\x1a\xc3\xbf\x01\x95\xd7\xa3\x82\x0b\xf7\x1b\x9a\xb5k\xf4\xc9\xe4\xc5\xd261\xab9\x10\x16C\x95\x9c0\xc4\x0d\xc1\xab\x9b\xe2\xb6\xc5\x8f\xc10\x94\\&E\xb3\x07B\x06p\x9b\xf7\x7f\xf5\x1d\x8b\x9dv\x81\xc7/lN\x1cBQ7\xa1\xc8Q\x17\xcd>\xb3\xc9\xba`\xf2N\x0b_ \xfb\x81?\xe4ir\xbeb\x13\xed\x95\xfc\xe9\nJ\x11\xfb\x89\xbfO\x862\xe7%\x83=\x87\xa3<\x91\xecX\xad\xc5/c\x0b\\\x9bL\xa3\x0cU\xa9\xec\xf3\x15\x9bH\x07\x05R\x1aj\xc4VfX\xf6TL{(L\xd1rv\x91rx\xcbz\x89^\xc55\xa1\x90Z\xa9_c655\xa1\xa9\x1b\x0c+\xc71\x14 #\xcc\xe5\x04\x11\xbc\x80\xe29D\xdb\xdb\x01\xc4\xa3\xe8\xb2\x96&$\"\x0e\x08\x13d1\x82*N\x14\x06\x7f\xa8_\xcf\x9dD\x939\xa3\\\x8c\x94\xd4\x11\x8f\xfa\x0e\x07\xa5\xdc\x0eP\xbf\x0e\xab;\xce\x80\xb2K\xe0\x8f_\x8f\xb9I\xe5\xacq\xf2\xe9F\x7f9\x1a{\x05\xbd\x7f\xc9\xd8\x8c\xa3<\xdeb\xf3\xedh\xcc\xd2W\xa3\n\x81]n\xc2\x80\x87\xd4F\x7fh\\!\xcd\xb8\x94\x0c\xda[\xa4\xd7\xb2k\xe1\xb6\xea\x9b\x1a\xdc\xfah-J\xb5\xc1h\xcb\xb0\x8c\xf7\x1f/\xc3`\xc7\xd2\xae\xd0\x8aRcP\x95\xbf?]\xef\xa2c\xb8\xd1c\xbd\x9d\xa4\xcbU\x9a`VJ\x0b\x04e\x94\xb6\xf3\"\xcd\x1c\xd6\x01Z\xa0b\xbb\x02\xde\xaa\xd5z\xb1\xeb\x08\xab\xa6\x8c%S\x96\xd9\xa5\xb9\x0c\x1c\xfe\x89\xbd\x8dV+6=I\x93\"\x8a\x13\xaa\xea\xa2\xdc\xbeK\xb6L\xe3\xbf\xb2\xc0\x8fDvr\x91>:F\x1e\xdcJ\xa2\xe5T\x0bfiZ\xbcN\xf8\xda8\x9d\xd9\xf4\x99\x0d\x810\x1c\xe7\x0f1\xf8\xa19\xd0\xdc\x1e\xe8\x02\xc7J7)\xa05\x84\xb5\xfdYd\xdd\x88\x80\xc5\xcb\xba=\xd5Z/\x9a6r\xf6\x02\x0d\xd9(\xc2\xd9\xe2\xf4\x05\xbf\xa8\xe3\x17Tk\xeft\xfe\x02d\xe58\xf3\xfe\x94bf\xd0=\xea7\xb2\xf1uTD\xfa'p\x04\xff$0\xb0\x81y\xbb\xe6\xcc\xdbcj\xbe\xd7$[\x17\xcb\x12\xda\xe5\x0cK\xac\xd6\xd6\xaa5\xca\x01\x11?1\x0b\x16\xb2\xc0\xead\"\x0b\xac>f\xb2\xe0\xc0,X\xe1\xd2\x99\x97\xe4S\xac\xbe2\xde\xcee#O\x9eXC\xbd\x11\xe2\xffc\xf3\xfa|)?y\xfa\xf8\x19\xcd\xe6^\xff\xbal._W+\x1d\xb4C\xe5k\x13\x81\x06\xa3l \x8eR\xa7\"Y=\x9a&\xb9\xad*\xd4\xaf\x18\xf2\x8aM\x12\x1a\xefL\xda\xe1L\xcc\x02?\xeb\x952\xb3\x8a\xe8\xbf\xae\x19\x9594\xe7n\x0d)\x90:\x04\xfd\xd1F:\xab\x19\x06%r\x98\x8b\xda\xdbQ\xfb\xdc?\xb1\xbb!xb\x1f{\xf4A\xa0?\x9224r\xec\xd4#\x07>-\xf5\xd7\"\xee\xc7\xa9Hl\xcf\xe9\x91a\xbf\xf67\xf4u\x0fdn\xf3U\x96\xaer\xf9\xf7$M\n\xf6\xb9h\x81#\xb4\xc2\xf2\xebe\x10\x12\xe1\xd8\xcbb\x7f\xd5+\x89\x9dK9\x8d\x98KC-\x95\x9c\xc2\x0d\x1fp\xc2&\x85\x16\xdb\xa4-\x80\xeb\x8dL\x8eo\x9a_\x7fE31\xe6S\xd1'\xd5\xa3PD?\xbe\x96\xd1\ns\xd0_\xa4\xfc\x04@\xdb\xe7v\xa9\xc1h\xb0}\x9d\xf1\xde\x9a\xba\xc7\xd4\x1f\xf7\x9a|\x0d\xfc\xa4\x8c\xf1D\x146d\xf6Ij7\xee\x0d\xd4d#J\xb2\x01\x15\xf9\xadP\x107t\x1f\x96rl@5\xeeC1Z\xa8\xc5M\xef}\x96\xde\xc4\x9c\x97\xef\xd0\x18 j\xa6Y+j\x82\xe0\xb16\xa3Qn\xf2t_:\xdf@\x97Zh\xd2W\xb1\x81`h$\x0ci\xb4\xf4j\x8c(]r\xc6)\xe7\x8c\x1b=\xa7by\xd9JS&\xd2\xba'\x1670\xc9(\xbd\x0c!\xc3\x7f\x19\x99\x88\xa6i6c\xbc\xacp\xb0\x9f\xc44\x85\xcdc\x830\xde,\xb1C\x9d0\xb8x\x1c\xf58(\x82\x9b|\xeb\xa4\xff>\x14C\xa4\xac\xc5\xda8\xb6\xf6\x93\xe2\x8a\x03'\x12Z~\x8c\xb2G\xa3^\x13=\xb5\xa9J\xb1)U\x11\x14e\xa2\x90\xfb\xe7x\xb1\xf8\xc0&,\xbeA\xa1%o 2&\x81id%\xf9\xa3M\xb8\xda\xbd\x9b\xd2\xd4\xafM\xa4\xa7#y\xdc\x944\xaa\xcb\x06\x0e\xd8e\x1d7\x14 \x8a\xa4\xd3\x96\xa6\xee\x8b8A\x18\xb9n\xdc\xf4\xa7@a#\x0e\xc1\xcb\xd2\xb4p\xdd\\\xa8\xa7\x9d\xa5\xdb\xd8\xec\xc1A\xfa\x1a\xc8\xde\xd7P\x97B\xc9\xedn\xc5c\x03\x8db\xa9\xaaY\x08\xde\xf1j\xe55\xcc}\xde\xabl/x\x7f\xbek\xe6q\x88\xb7\xa2\x81\xc5\xcc\xb4\x1aUTJ\xb3$Z\x12z\x8e\x16\x90{\xd3\xf8\xc6\x92\xe5\xd5\x93\x17w\x0b\xd6\x14\x14i\x15M\xa7\xe8B\xee\x0d\xd8\xb2\x01k'\xe9\"\xcd\x86\xe0\xfd\xff\xa2(r\xe4\xbd\xb3W0\x04\xef\xff\xf9\xdf\xff\xb7\xff\x03<\xf7\xf9\xea\xc5\x9e\x00\\\x08\xdeI\xe9\xa8.\xd7\x96/\x0c\xe6\xbf>\x84\x02\x8e\xc0\xe38\x0f%\xb5\xf0`\xc8\x17\xd1\x0b!g\x0c\x8a9+\xbd\xe3=+\xe4w}b\xb7\xad\xca(\xb5&\xdd\x18f\xb9B[>\xab\xd8o!oW\xdcx\x9c\x7f`\xd1\xa4h\x17.\x9a\x0dI\xf5\xa7\xf3\xd1\xa5\x9e\xf2\x08k\xa7:\xd0\xc2\xdf&N\xfe6i<\xad\x92{\xf0\xb7\xd0*\xd5\xd1'RB\x9eHI+\x9f\x0b\xdd\x89\xb9z6%\xea\xea\xa9\xae\x02:\x9cI\xea\xe9 \xe1&n\x1a\xdcI\xc2\xc5\x1bwz\xda\xd2\xbd\xa8Dl\x01\xa3\x06\x0d\xa8Y\xb5\xed\xde\x1dZM\xfdJ\x06\x95\x91\xb7\x83Yy;\x88\x96\xa9\xe2v0\x85\x17\xc0\x9eC\xba\xbd\x1d \xd7Y\xbb\x1dt1\xb0\xa0\xdf.\xe9h\x9b9 \xd7\xc9TP\xb6XOG\xc5\x87\xea\"\x92\xe36\x89G:d;VL=\xc27\xbb\xc0c\xc6\x8d\x1f\x8e\x99Q\xd4\xddPgW0\xb4\x94\xc6\xf6\x19\x9d\x86\x10\x9b@\x8ag\xe0\x97\xc6[U\xe2\xbf4\x90A+\x13v\x0b\x17w+v*\x12x\xbdcl\n\x11\x88\x0fB(R\x981\x0e\xfd\xa8:#z\xf0s\x94\xc3u|\xc3\x12\x880\xd5\x8d\xaf\x99\x04\xa5\xfcPY'BM>\xe5\xe7\x89q\xe1\x9aZA08\xd6 \xa3-3*\x84\\U\xce\x8b\xc5\xbc]\xe4(\xb0\x1b\xfe\xf3N\xb1\x9f>\xfa\x14\xe0\xcf[?\xc2\x1f\xb7\x82[\xf3\x99\x1f\xf4\x16\xe9\xb5\x0c\xeeR\x9d\x86\xb38\x99j\xc7\x1e\xe70$\xb3Q\x0e\xa0\xd3%\xa1\xdb|_Nx\x08\x89\xff\xe4\x89i\xc8W\xe9\x8c\xeb\x97\x03]\xba\xa4\xaf'\xdc\x03\x99G9^\xb3\x0bG\x89w\xe9\x94\xe5C\x18\xddX\x12\xc2:\x04\xe1V\xa4\x90\xd5w\x10T4\xdb\x16\xb1\x93\x1c'\x838\x94\xd7x\n$x\np\xc4Jz\xf2,\x80\xa1\x8a_\x87\xb1\x89\x9d:\xee\x05\xca\x11\x92\xfd\xec)\xa4\xc6hl[\xfd\xc6\x03\xd0\x81\x8e\x8dwR4,\x0b\xa1U\xd1\x1b4\xb8@\xd26[g\xd0\x84\x1b\xec7\xf1\\\xf5Q\xcbKC\x93\xceO\xd1b\x8cz[\xc4K\xa2\xc4SE;\x8bt\x12-<\xbb\x06[F\xf1\xc2~\xbdL\x93bn\xbfN\xd6\xcb+F\x8ck\x15\xe5\xf9m\x9aM\xed\x92\x8c\xef\x07\xfbu\xce\xa2lBtP0b0\x9c\xef'\xde\x923^gD\x03\xb7\x8c}\xaak`\xdb\x94tN.W\\N*v\xb6\xfe\xab\xce\xb5\x92\xac\xae\xce\xe5\x16p\x04[[\xd9Hp\xce\x98b\x8e\xcf4\xcaX$+T\xe3}p\xfc\x12\xa9\x03\xcf'\\\x8c|\xc3f\xc5\xd0\x0c\xe1U\xabq\x91\xae\xac\n\x19\x9be,\x9f\x8b\n\xb8m\xf3\xb6}\x98\xf5\xac~Q:\xf8\x1c\x9aE\x17)\xfaK\xf7\xeejm\xb4\xee\xc3\xec\xdb\xe1\xe4R\x83\xfa\x83\xc7\xa6u\xbatM\xb7B\xc1E]\xd4W\x9c\x82\xb7\x86\xd6f\xbdY\x9c\xe5\x05\xaa\xf4\xddZ\x1b\x94\x9f\x12\x112\x06\xd3ic}\xferO\x8aS\x1cC/\xeeV\xd5\x89s\x93\xc6S_\xbc\xc7\xa5\x83\xc3v\x0f\x15@`k\xeaX\x8bU\xd2V\xc5T\xfbvW\xf9r\xae\xba\x15\x82{\"a]918\xe2\xc4]\x04\xd3AMy}j\x15\xde\x04F0\xa6o\xa0\xdc\xdd(\x07}\x1f\xcbz\xb3t\xb2\xce\xcds\x86v^~\xf0\xdd\x1f%\xf1\x12c\xdb\xbf.d\x90\xfb\x93t\x9d\x104\xf6*\xcd\xa6,{\xbd\x8c\xae\xd9\xd9\xba@\x06\xbf\xa1\xca\xf9\"\x9e\x10$Y\xab\xf1s<\xa5\x8e\x95\xab\xf4\xf3\x8f\x0b\xf6\xd9Y\xf0\xfb,]\xaf\xc8\xd2\xb3l\x1a'\xd1\xc2Qa\x92.\xd6K\xd7\xdcDan\x17\xcc\xc8\xa1\xcc\xc48n\xe9\x92\xf7i\x1e\x17\xf1\x0d1{^z>\xcf\xe2\xe4\x13]\xf6\x8e]G\xee/1\\\xb1]t\x9d\xc5\xd3\x0f\xd4Xd\xc1iB\x1c\xc5\xb2\xec|\x15%\xee\xc2\"\xca\x08X\xf1\xd2\x13\x84WS\x99\xb3WQ\xec\xeeX\x96\xd3}\xcf\xd2\xa4\xf8\x99\xc5\xd7s\xa2l\x11'\xecd\x11-\x89\xb5\xe7E?9>KW\xd1$.\xee\x88\x02\x1a\xdci\xb6\x9aG\x14\xaa\x14\xd1\xd5y\xfcWb\xedn\xe3izK|\xf0\xd7\xd7\xc9\x94\xc2\xae\xbf\xa6\xe9\x92\x98z\xbcX\x9c\xb9\xc6:[\xa4\xe9\xd4Y\xca\xb9\xd9\x86\xc2,\xfd\xc4^E\xf9<\xca\xb2\xa8\xb1B:\x9b\x91\xdb^\xd4x\x1b\x17,[\xc4\xcb\xd8Y\xa3e\x0c%A(\xcb\xbe\xda\x17p#\xefgv\xf5).\xbc\x10\xbce\xce\xff}\x9b\xfe\x95\xffw\xe6i\x9a\x1e\xa9\x89\xf9\xc4\xeer?\xeb\xe2\xee\x9d\xdauh\xa7\xe3Q\xeba\x0e\x9a:\x11\x13WL\xe6Qv\\\xf8\xfd\xa0W\xa4\x1f\xb90+5\x99\xbc,__ \xc3\x0b\x7f@\xd9\xa4\xa3!\xe8%gf\xf4\xd0\x97X\xa6\xa98\x8d{\xca\xd8\xa2\xf1q\xfe1\x89\x8b\x05\xcb\xf3w\x92i7\xdcs\xf3y\x9a\x15\xf3(\x99*\xad\xd5\xe9\xe7U\x94\xe4\"'\xa3=\xc5\xabh\xf2\xe9:K\xd7|\x8f\xd3\x00\xa8j\x1c\x17E4\x99/\x19Ev\xed\xda'\xb4\xaccW\xc4#\xa4KEA\x8d\xd3\xe4\x7fnR\xf9O]*\x7f`+\x16\x15C*\x8d)\xa1:\xb1;i\x87\xdd\xfd\xc7\xdeiD\x92\xc29F\x81\xa5\x8eC\xba^\xe9\\\x98\xc76W*W\xb6\xfb\xd0~H\x8b\x82\x93\xc2\xa6\x01\x8a:\x9d\x86)\xaav\x1a\xac\xa8z\x8f!\x0b\xf1\xa9i\xc0\xbcF\xa7\xe1\xf2\x8a\x9d\x06\xcb+\xdec\xa8\x1f\xc4y\xd84V\xac\xd2i\xb0X\xb3\xd3h\xb1\xe6=\x86\x8bbg\xd3`/\xd2U\xa7\xa1^\xa4\xabN\x03\xbdHW\x1b\x0d\x93\xf3&\xae\x11\xf2\xb2\x96Ny\x95?FY\x1c5\x11\xca&\xfeG\xafC3\"\xeaib\x87\xd4\xc3[\xf91Z\xc6\x8b\xbb\xae\xf3O\xd7\x05o\xd8\x05\x02Y\xdc\xb2D\xb2V\x0b\xacd\xad\x86\xe5\xf9\x8e\xfe\xe5P\x15\xc4\xf8\xf6\x9b\x84\xaa\xc4\x7fj\x06\xe3K\x85a\xd0`\x1f\xe3\x02\xee\x89\xf0\x80O\xfb\x96\x83\xbc4 \xc2rv\x0b\x1f\xd8\xf5\xe9\xe7\x95\xef\xfd\xe7\xc8\x83m\xc8z\xc7\x17\x17\x1f^\xff\xf0\xf1\xe2t\xfc\xee\xf8\xed\xe9\xf8\xfc\xe2\xf8\xc3\xc5\xf8\xe4\xa7\xe3\x0f\xb0\x0d\xde%]\xa9,\xfe\xdd\xbfXi\xcd\"\"\x1e\xfbZ\x06\x80(_\x96w\xa5\xb9\xf3\xaetkkmG`\xc7\x00\x81\x11\xf1\x9e\xcb\xfd2\xfb\x1a\x1a\xb4\xf9\xeb\x11\xbb\xc4\xb0\xaf\xa8\xdd\x85!\xf8\x91\xf6\xa6\x16H\x9bNs\xdc\xc5\x9e\x10\xf3\x84\xcc\xa3\xfc\x874]\xb0(\x11:\x80\xef\xbf\x87\xad\xaa\xe8\xddz\xc9\xb2xR\x16\xc5\xf9\xbb\xe8\x1dg\xfeT\x05%\xce\x99\x15\x0bx\x01\x83\xb2\xd6\xd9\x0d\xcb\x16i4eS\xab\xaf\x01\xa9\xc0\x03\x89<\x13[\x1f\x87V\xcbo\xa3\xec\xd3z\xf5c\x9a\xbd~\xd5\xaaJ\x13\xd3\xcez\xaf_\x8d\xeb\x88\xc0q\xe0\x90cHj\x85\xb4\xae#@\xce\x8a\xe3\xa2\xc8\xe2\xabu\xc1\xac>\x1d\x8c.f\x9b(\xbf\xf2\x89\xee\x89\xe0\xefM3\xfd\x90\xa6m\xd7\x95\xe5T?\x9c\x9d]\xd8\x93\xfd\xb7C\xcf\xfb\xb7\x0d\xe6i\xf4HB\xd7\x9a&\xd1uXK\xdcK\xf4k\xccT\xed\x8c\x0ePV\xea?\xbc\xfc\xe6\x1f\xc5,'\xf6\xd7Q\xad\xc2\x08U\xc8\xb4Q\x15j ]\x82\x0bF\x8b\x14.\x1f\xa5~\xd0\xf3huc\xe9\x07\xd6\x8b\x14tl\xb3\x0e\xf5\x94\xf6\xff\xe6n\xfc\xf2E\xbcl\xd8@\xfdRE\x1e\xab5\x86!\xfe\xad\x90\xbb\x93\xbe\xb2\xc4\x9d8?Y\xe7E\xba\xac\x16\x15\x01X\x91\x0d\xbc\xc1\x1a\xa2\xf8V\xf5 \x01\xba\xc1*\x1b\xbdtXl9\xc4\\RL\x15{\xa7\xc00#\xc6`<\xaf\x05\xd1\x11\x80ndk\x880\x92\xb6\xe0[a\xe1[\xd1\x8co\xa4\x1f!h8\x94\xf60cW\x9c&T\xbeD\xf5\xf0\xa6\xe2@hw]\x06~l\x913GgP\"x\x8a\xee\xbd\xba\x02\\\x98}\x89\xabb\x13pb\xb9\xe8\xeeT\x9b|\x02y\xf11/\xed>\xd0$Q\x81\xe8\x8eo\x8cK:@\xabzZ\x06\x0e\x9a\xbdQZ\xdfq4\x93\xa4?k\xfb\xa3|\x15M\x1c{\xb5\xfa\xea\xc8\xa0~\xef\xce\xfd\xb5\xc8\xa2\x877\xbc\xe8.O\xed\xe8\xb4\xd3\x8eN\xac\xf6}l:P\xa9\x8c\x8c\xf7\xd8\xa5s\xc4\x8e+|\x9b0\x08Hc\xd0}\x82\x14\x14\x06^Lz\xdaV\xd2(\x86\xdcA\x1d\xf7\xa0\x8b\x0886a.\xf3\x00\xf8\x8a& P\x89\x84\x15\xfaXmH\x15%\xa4\x1a\xc7V\xc7\xf4Mh\x145\x8c\xee==\xf0\xc9\xb71%r\x9e|\xa5\x85\x7fgJ\x94\x06\x9c\xad\nU\xf0\xe3\x06r\x84\x1d\xdb\x04\xc2\xbd\xd9\xab\xa3U' \xee\xddj\x1f\xabG\xc0F1\xb2\xd3\x03\x0c\xfb\x8b\x7f{\x0e\x9fc1J{a\x8d\x93\x9d8d\xc5\x97\xf4>\x12\x17\xe2m\xc8R\xfer\xc8f\"9\xe77\xcaf\x03*lq\xe2\xef\x0e\x1c\x11\xc6\xcdp\xeb2\xcf\x97\xd9\xca\xba\x92\xdc\xb6\x06\xa4\x91lnq\xb1x\xd7\x8bV\xccY\x9a\xa25\xcd\xebW\x95\x0dv\xcd\xdci\xc5\x92i\x9c\\\x7fD\xa3\"\n]\xda\xbe\xc1\xe5\xb7\xb1\xc6\xf0.\x10w\xed\xf2\xcaU\x06C \xf1\x04\xc3\x9aW\xf6B\x94\xfdL\xc5\xb1|\xff=(\x03>\x89\x98>\xeb-\xd7\x8b\"^-\xa8\xb4P\x15\x1e8\xc5=\x82X\xde\x94\xd9\xd8\"\xcc\x81B\x1b(\xf5\xd2UaGEu\xde\xba\xa3\xbbA&\xc4d\xdd\xe5 \xa9\xbb\x1cd#AhG\xe9\xe5\xff\xcb\xde\xbbv\xc7\x8d\x1b\x0d\xc2\xdf\xf3+J\xcc\xacCF4\xad\x8b\xc7c\xb7G\xd1\xeb\xb1\xe5\x8d\xb3\xe3\xcbZ\x9e\xe4\xeci+Z\xaa\x1b\xdd\xcd\x11\x9bdH\xb6de\xac\xe7\xb7\xbf\x07\x85\x0bA\x12 \xc0\xb6<\x93d\x1f|\xb0\xd5$\x88K\xa1P\xa8*\xd4\xe5\xac\x93\xc0\xa4\xd5\x92\xd2B\xdcn\xc1L\x89X\xd0\xcd\x0e\xb1\x8b\xa7\xf9\x197\xa4\xd2\x93\x02\xacPaLU2\xc7[\xf1\x0d\x9e\"\xed\xe7Gj\x82xQ:\x1a\x13\x137\"A\xc3\xa6\xde\x02O{r\xda\x01R\x907\xb3@&\xa0l\xdb!t\x87\xba\xa3#\xac\xb1\xe2k\xe2\xc7\xd3\xbd\xee\x17F\xcc\x12\x7f\xe9\x05\xef%\xa9\xff\x9cW5\x06Mq8\x9f\x84<\xc1b\x19\x99\xecA\xf3\x8c\xd9\x01Nz\xd6\x8c\xe2\x8d~\xb3q_xv\xb8\xf4\x97k\xf0\xc8]\xe7\x9b\xac\xfe\x1b\xeb\xcba\"\xe2\xa0U\xf6\xb6\x8e\xdd\xed\x8c\xbf\x07>QZ$\xc8\x9c1*\xc9\x92:\x89Sn\xb9*\x08\x07et2\x984!?\xf1\xbdI\x8f\xc9\x12\x8eU\xecs\x83\xaeP\xc2\x7fX\xcc\x17EXw\x8d%\x8e\xa20@\xf2\x10\xceoy\xe7\xec\"\xcf|~\xeb\x0e\x04\xdf\x85\xba\x9b\xd8\x0eP\xcd\xb9\xe3*.|\x1ec\xcb\x18\xd5\xe0\x96\x85\xaa5\xd9\xf9_\xc7\xd5kN\xbc'\x92\xa0\xd7\x0dA\xefch\xa8\xa6\x8d\xa8\xf9\x8eW\x13r\x1eu\x16\x99\xbe\xdc\xa0\xc9\xcfF\xb7\x8d\xc3\xee^e\xc1\xa3\xf1\xd3\xe7\xcc!\xc8\xb6\xc6\x06/\x0f\x15\x13\x87\xfa,\xf2\xaaf\xa0\xd7\xec-\xd3\xc6bVmZD\xb2n\xb1\xd6\xc8\x0cY\xe7\xa1e\"\xd6\xfe\\Y4{_Je8\xd2-\xb1\xbe\xdf\xd2N8\xc4\xde.\x99\x7f\xb6\x8da \xd9q\xaf\x19A\x08%Ztex\xb6i*42\xd3N\x0f\xbb\x8e\x07\x9amW\xa5]\x0c\xd5\x15?D>\x13\xaf\x17)G\xfe\xfa\xaaLm7\xb0m\xae\xe7u\x19O\xfbx\xbf\x1b\x91\x80g\xcdy\xd45q\xdc\xf0\xe7\xdd\xfb\x8c\x8a;:\xd3\x0e\x809<3\xdewx\x13 \x19\x93N<==\xb4\x96m\xd6\xab\xf7\x11\xcd\xfb<\x1c\x97\x91\x8fxz\xa2}\x91/\x8f\xee\x88\x98\xc7\x00\xf1\xd3\x0e^J\xb9\xccc\xd9\x92Zi\x8e\x86\xf4b\x86\xb3\x88)\xb1h\x03z\xb9S\xeb:\x84A\xfc4\xa1:z!=D\x11|\x8bI%\xbb\x17\xc2\x0cv]\xbc@Ax\xf9\x0eU\x80\x16\x0d\xa3\xbcu\xbc\xd6\xe6nP\x0bg\xab\x85\xf2\x18\x9e\xaf\xc8\xec\x12\x03K\xf1\xc05,\xf55\xe4\x0b\xf8\xbf\xe8\xa3\x05\xbb\xe0\xfd\xdfH/\x9a\x82Q\xb1\x03\x8a!\xb5A\xac\xf5\xf3\xe8<\xbf\xceHI \x87\xef\xed\x1f\xeeyMX\x89\x04\xd5\xc9\x13 \xf2\x10f6\xae\x98\x16MV,\xb6\xec\xc8\xb7\x1c\xc1\x86#\xdc\xab\xac&e\x16\xa72|\x8b\x8f\xc1%]<`\xc4\xac\x1a\x8cQ3p\xdd\xbb'NPf\xf5\xda\n\x95\xa5\xffF\x8dfK9\xc3&\xa4\x8c\xcb'%\x0b%(?\xea\x03\xc9g\x10\x088\x082r\x0d\x15\x9b\xae/~\xb3\x1a~\x1e\x04\x11\xe7\xb2)\xa3\x83\x87}\xd6zr\x04\x19C4\xbcr\xcb\xe7]r\xc16\xae)7\x99\xc7\x9c\x12\xba9\x89\xdb\x0b\xc3\x9d+s\x0c\x1c\xe1#\xb5G\xec\xd8\xf7\xc2\x86\x02\xb4q\\\xde^\x9c#\x00\xd1p\x8fy\x8f\xcbGk\x96\xc1\x97\xb9)w\xf3+\xd1\x92\xfb\x95\xea\xbf\x98t\x05\x86s\x16\xc9\xa1N0g\x8a\x1a\xe4l\x02\xcd\xadC7\x81,{\xf3uN\x92\xef\xbay\xd6\x94P\x17}\xd4\xfd\xf3\xdb\xd3\x0f=\xc7\x00Z\x9e\xbf}\xfd\xee\xed\xe9\xab\x0f'\x13\xd0\x88\x02'\xaf\xdf}\xf8?\x138\xe8\xbfY\x92\xfa\xc3M\xe1\xc4\xb8\xb7/~;'\x01\xdd\xe8\x11v\x83\xea\xea\xa4\xfak\x9c&s\x11\x15\n\xd1\xd6\xb0 \xf8\xbeN\"9\x05\x98@\x12\xd1\x99\x8a\xa4g\xa5\xef\x1d<\xd2'o\xec\x88\xd4\x067\xf1/\xb5=`\"x\x1f, f\xc68Y\x17\xf5\x8dD\xa4\x97\xf1\xac\xce\xcb\x1b'\x88R\x92o\x9bR\x1f;\xfa\x8d\xb1]\xe7\xd4\xa5\x90\xa7\xed\xb0l`\x90Dl\xa2\x94k8\x82<\xbcS\xd8\x9a7\x07\xdf\x05,Ve\x0f\nm\xf5\xf3\x95\xd6K\xdcpL\xd8\x00\xc5\x81\x94S\x04\xa7Tk\x9fR-\x86\xa9\xdc~\xc4v\xd5\xaf%\x83\x8e\xddb\x82ZK\xfbI\xf5\x01\xdd;\xc6M\xa8\x15\xc8&\x19l_\xac\xb7\xce\xd2\x88\xbd\xfc\x9f$#e2\x93cx\x9e\xc6\x95\xd5! \xf8\xd2j\xb0\xbeO\x9bX?\xad\x89:w\x92\xb8l-\xf9\xeb\xeby\x19\x9aQ\xfb\xe1#\xc6\xe1\xef\xf7rj\x08YB\x97\x81S\xec \xff\xa0\x9fiD\xd1\x94{\x91\xa7\x11,\xbc\x89\xe7.\x08H\x9c\xa1\xfc\x8b\x86\x7fW\xef\xceItIn\xe0\x18\xe2\x88T\xb3\xb8 >>\x08P\xc5T\xe7,G\xaa\x7f\xf8H57\x12\x7f\x8d\x89\xd9\xd51=\xa2\xc7\xc6\x9e\x92+\x9e\xa7\xa9\na\x16\xea\x13q\xd2E)BLr\xc2gQ\x1b\x04 %\xd2\x1e\xe5\x00\xd1\xb7\xcb\xbb`\x92\xaaxD\xf9\xaa\x9a\x13\xa2&\x94\x9a\x88\x94\xd10O\xbc\xae\xc26\x89'\x0dTy\x17u\xf4\xcd7|d\x18\xf4Or\xf83\x7f\x81 \xf1\x85p\xa2\x07\x8b\xc6\x0e\xa3\xf7\x84\x13\x94U\xeb\x05\x86\xda\xf0\xbc\xae\xb9\xc5\x97\xfaA\xb2\xd0\xa9h\xcb\xb2 \xa1\xc2tn3v(\xeeuo\x7f\x17\xec\xf6\xf7Q'\xe0%S\x7f\xe9N\xad\xc2\xec4\xfe\x92\xd7Q\x04lq\n\xf5\x177k\x02\xe4\x98\xf2\xa9\xf5?\xa2G\xbb\xb4!\xf6\x98\x07\x12\x06\x89\x0c\xa2\x92\x14i<#\xfe\x83\xe9\xc7\x8f\x7f\xff&\xfa\xe3\xee\xb1\x1fL?\x9e\xfdr\xfb\xf9\xec\xc12\x04\xef\xe3\xc7o\xeeyJ\xb5vW\x9f\xa5oT\x10\xfd\xf1\xd8?>\xfa\xf8\xf1\xa3\x1f|\xc6m\x1b\xed\xf2\x07g\x01\xb6\xf4\xcd~\xf4\xc7c\x86\x18\xdft\x03\xc2\xeb\xbd`\x85~\x8d\x8fV\xa7n\x96\x06|hF\xdc\x0d\x10?\x184X\xd8,\xef\xb7\xbf\xf9]\xff\xaf\x8e\xb2\xae\xe1*\xd8\x11\xb3(\xf3\xb5Qm\xf2:\xc6T\xde\x85\xff:.Z\x06|\xaf\xe3\xc2AQ\xd3\xaa\x85\xdbL\xb6\xd6y\x1e\x18\xdb8%5\xfb\xe8\x94\xd4\xad!\x9c\x92\xdaa\x08\xadZ\xca\x10\xfa\xcf{q\xa4\xaex\x92r*#\xbc\x8e\x8b>b\xae\xf8\xcbS\xd2am\x9c\x12\x9a\xcd\xa3\x8a\xd4\xecm{\x0d\xc3v\x0e\xea\xa1\xe5\x9fGK\xd2\xd7@\xb3D\xb8\xc3\x0d\xcc\xb9i\xa0\xe6\xe3\xd8\x16T\x8ew\xde\xe0\x8f?g4\xb4g\xa1\x85l\xf2\xf0@VQ<\x9fkF1\xecx\x0e<\x07\x83a\n\xd6\x98\x94\xfd)\xac\xf4Sh6\x94\x8e)\xba\xe2\x99\xe6\xbb\xee\x07\xc0\xb3\xf2\xe9\x9e/\xad\x13\x03Eg\x1a\xe9C\x1ai\xda\xbd\x19\xd3.&~~\x95\xd5>\xe1\x1e\x9b\xfe>ej\xf74\x8a\x8a-P[\\\xdf-\xb5T\xef\x8ae\xc8\xac\xc7c\xbd8s\xf4\xed\n\xab\x8bi}6~?\x0c7\xcd#.\xe9\x9av\xdd-*\xafq\x15D\xeb\xb8\xf0o\xb6\xd8.\xc3\xe3\\\xb3l\xf8\xddD\xf9.\xbb\xc9 \x00k\x0d\x00\\\xf7\x9a\n\x80\xb5\x1e\x00\xbf\xeb\xffE\x87E\x05\x85\xe9\x99\x8e/97\xf3%yo\x1eF\xf3\xa8+\x99\xc2y\xb6J\xd2\xf9\xab\x17:\x99\x0c\xc3Oe\xd2\xab\xfa|\x8c\xb5\xd7\xb5E\xc8\xf6>f\xd8G\xc6B\xd13\xcd\xffO\xd9e\x96_g\xc8s\xf8h\xc2\x0f~\\\x03c\x80\x16I\xca\xa2\xf2H\xd6\xe6\xef\xd1\x1f\xa7\x1f?~|p\xf6\x80Y\x1c\xef\x827au\xd3$#\xccM\x9a>\x0c<\x14<\xb19\xa69\x9b\xc3\xc5\x0d6\x9b\xc9\xf7\xaa\xf3\x87nB'}\xb8k\xf4\x05\xde\xef\xc9\xba\xa8o\xb0\xc1q\xf7\x1b\xde\xefk\xf2\xa96}(\xd4\xd8\xfc\x8f \xff#\x9a'U\x91\xc6hY\xca\xdc\x98\xf0i\xc6\x7fJ\x80\x0e\xce\xec\x93\x01\xa3B\xc4\x90Sz\xde\xbeh\xba\xd1Z\x97\x94\xa2b\xa3\x91\xefW\xcaE\xa5\xb7\xd7\x19)_\xbd\xe8a\xab\xd4\x8b\xa2\xe5\x8c\xae\xef<\x08B\xb8\xc6\xfc\x91\x80\xb1\xc8\xcf\xab|S\xce\xda\x1cE{'\x9d\xf6\xb4\xb6yvJXH\x9d\x92dcL\xab\xf4\xd6\x92\x14\xd03\xdf\xdb\x7f\x88\xd1\x923\xb9\xa1\xe8\xee\xeaW\x97\x92z\xc9$\xf5\xb2\xa5\xbe(\x87-\nY\x8e\xb9\xd2\x90Z\x1f\xb8\x0e/\xf7\x13\x93m\xa1\x1ck+:\x7f\xdc\x8cY\xaf\x8c\x8b#\xc2\x83\xf9(\xcch\xeb!6\xbaO\x1b\x8d\xa3\xa4z\x9do2\xba\xc9Xo\xdf\xed\xb7;+\xe2\x92d57\x90R~\x1ea\x8cr\xe5\x01^\x8e\xca\xd6\x0f<&\xec\xc9\xf7.\x176\x1d\xd5h\xf6\x03Y\xe4%y\xdd\xbaAu3\xe7/}c\xb8H\x0e\x87 h2\xaf\x03FSc\x03\x9e@\xa6\xaf\xc0\xec\x9e\xcc\xf6oby&05\xac\xbd\x84\xb9\xd9V\x8f\xc55\xe4\xc1s\xc6Z#\n\xc8\xfd\xc4\x1b\xd1\x83n\x9b\xddC1JA\x194\xfe\x91\x98\xd5\x8bb\xd5\x1b\x96y)\x87N|\xfd`\xea\xf6V\xae\x95a1\x97Va\xf1\xa6b\xf0\xc6r\x95\x92g\x030\xdbf\x8c\xa8\xc7m\x01\xac\x8e\x94\xb5\xdd\xdd\xb5\x8c&[\xdf)\xc8X\xa4\xc7\x16\xa4\xf6\xf5\x90\xaa|\xa2K\xc7x!\x82\xf7\x0f\x8d\xbb\xd8\x94K\xc2\x87N\xe6r\xf0\x95\xc5\xd5\x14\xc3j\x9eF\xe7EI\xaeHV\xbf\xdb\x94\xcb$3*j[\xc9\x94\xf6\x9e\x02\x81\xef\xe1B\xd2fb\xa6\xcd\xb4\x9c\xfb\x17Sr\xe6\xaa8\x03\x9c\xf8@\xd0\xfa\xe1[\xdaf\xb7\x7f\xc9\xe2 \x85\xcaN\x17\xa9\x86\xfa^\x92\xfa9\x8f\xecW\xc7\xb3\xcbg\xf39\xc9\xe6\x9b\xb5\xebHtVO\x836L\x82~\x9c\x0c\x86\xaf.\x99\xe5$Z\n\xe9\xcf\xbe\x1av\x8f\x18\xeb@\x1a\xae\x81s\x11\xd2*\xcav\x9e\x80\xa2\xe4Z\x88\x08\x87\x06\x8aL\xc1N\x9b\xcf\xa3\xf39\xb9\xd8,_\xbd0\xae\x00\x8e\x0d\x99\x9d\x16L\x7f\xb8y\xf5B\xc4\x9c\x17EcB\xdb\xfd\xc4\xb6\x14\x12\xcd\xf9z\x00y\x1a\xb0!|B\x8e\x9f\x08\xce\xeb\x1d\xdf\xbcC\xc8\xd3\x15i{\xb8\"\x8f.7\xfc\x18\xc4T*\x124\x12\x0b\xa6\xf5\xb4t\xaf0\x8f\xae#\xe8\xf0\xb1\x83\x839q\xf3)n\x1at\x1d\x84\x03\x18\xc4\x19\xe9\xd4=g\xb9]\xbbw\x87\x01\x12\x0e\xb6\xefpT\xecO\x89\xf2n\xa3{'\x19$\xb7\xe19@G\x1e\xcfk$Gi\xff\x15Y&UMJ\xc2\xe8U\xdc\xe5@\xaa\xd5\x9b<;\xad\xe3l\x1e\x97\xf3\xbf\xc5e\x96dK$\xbe\x0e\\\xb0\xf1FB\xa4>,I(\xf2\xc2N\xaat\xd8\xecH\xa2N2\x94;\xb5/\xc6\x86\xda?\xc5\xa7\xdb\x1b\x010G\x97\xeeu\xbf\xde\x9e\x969\x1b\xba\xe9{\xa09gH\x14\xcf\xe7'T\x80\xfc\x91{+2'\xa8\xeeSn\x1e\xb6\xb3\xaf\xb5\xadn\x1a]\xe7Wc\xd2\x8a\x08\xff{C_c1\x90\xc5\x9b\x881\xa4'6\xc9'\xd3<\xf0=\x8a\x00\xbb\x0c4w<\x959\xd1w\xb3\xcd,L~\xb5\xfd\xed?\x8b\x8bzS:\x06\xee\x80\xedW~\xef\xae\xc15\xb0\xf2\x9a\x8bKQ\x06`f\x1f]\xa9\xff\xd8\x05\xcc%\xe7\xa0^\x88$\xba\xeaL\x8d\xe6\xdf\xad\x84kwA\x0d\x1e\x1f\xe8\xc2\xf8\xd1\xe7\xfaP\x11\x87\x8f\xba\x99\x00\xb8[\xddw\x07A\xbb\xfd\x8d.M/\xf3aM\xf2\xecy\\\xc4\x17I\x9a\xd4\x89=u\xc2\xd5\x97&\xa0\x80\x8e\x14\xe6\xb7SQ\xdc\xbb\xc7\xb2Ox<\x8d\x00^\x1b}\xfe\xdcKI\xc1\x9e\x95\x1b\"*\xceXL\xff\x93yR\xc7\x17]\xa7`\x93\x03o\x92g\xaf\xb2E^\xb2(\xf4\x16\x0c\x17\x1a\xb6x`Jz4\xc5\x18\xfb\x04\xdd>\x8c)\xbe+1\xa0\xf7\xccc\x1c\x03\x1cj\x97\xc8G\xb7\x91M\xa4\xce\xc2'Zy\x1el'nI\xaa:/\x89l\xc7i\xf9\xd9\x05[lJ\xda\xc3tZ\xca\x9c\x0d\x13\xc6j\xedi\xeb\x14\xed;G\x9c\xe9\xc7\xab\xb52\x84\xdc7\xe5l`\xa1\xe30!\x90\x19z%\xd6\xd8D\x95\n\xbe2\x84*\x08!\xf1\xcb\xe1\xd0E*\xcc\x9d`\xa5\xd7\x1azr\xda\x18l\x1e\x13Q\x90\x007\x96\x1e\x83*\x16\x93^\x81\x17~\xa8\x87,\xc9\xe6\xad\xaa'\xd9\xbc\x8f\x15\xfd\x81I\xebP ^\xd9B\x7f\xb3\xab\xbb\xd6\xb4\xf1m\x12a\xbf\x1f\xee'\x87\xb8`\xf2\xf5\xcc\xb8\x8eD\x08*\x01\xf7\xb4\x12\x18b>)8\x10\xefg\x11=1\x10\x80\xbe7[\xc5e<\xabI\xe9\x85p\x9f\xa7\xf9\xe2\n\xee\x01\xb1\x04A\xcc\x1b\xa2\xcc\xe3`3\xdaV4Y\xfa\xb9\xddR-\xd2]\xbd\xc5\x98\xf7\xd5\xb0*\xe1\xf3\xe7a\x941\x98\xb8\xe3\x04F\xaa\xef+\x03\xf2[n\xd0\xea\xa82\xe3*3\xbb$\x99&\xd6\x15E\xc5V\xaa\x7f\x91\xb6\x9b2w\x86\x1d\xd4\xdd \xb4v\xd8\xd9\x0bp\x04\xaf\xe3z\x15\xad\x93\xccG\xa7\xad\xd6b\xfd\xc6\xfb\x02\x1dt\xf86\xf8@>\xd5\x83[!\x89fy\x9a\xc6EE|d\xe1\x12\x13bg\xf2e\x0fYs\xb8\xcf_\xb3Y\xe9\x12\xcf\x8aH[\x95\x82\x93CQ\x94\xf4<\x12\xcb/\xb8\x15\x8f\xe4\x96\xe2\xa6\x830>\x01\xee\x8d\xd9q\\\x11\x02\xa2XO8n\xfe\x14\xdcy\xd0\x84\xe2\xeb+B\xf5\xea\xa5\x86\xf7\x9e\xd5\xc9\x15Q\xf2\x08\x91\xe8\"\x9fwRH \x81z(\xbc\x8f\xee\xbb\xdf\xb5\xff\xda\n\x9cW6\xef\xdb\xc7z\x86\xb3\x17f:\xd6\xfb\xea\xb2(\x0e\xfb\xdfv\x1b\xafZ.^}\x0f\xaf\x94\xf5\xf2\xb0+\x15\xcf\xf8\xf3n?\xcc8\xfe\xf0\xdb\xee\xf3\x82\xcf\xad\x1bub\xce\xfa\x17\xe1\xb0\x1f>\xea\x0e`\xc5:z\xdcy|\x85\x8f\x0f\x0e\xba\xe3Z\x8364\xdb\x92u\xdf\xcb\xdfu\xc3\xb9\xf6n3\x17\xaa\x03\xdb\xfe\xc3'\xddQ\x9d\xf3\xee\xbb\xd3\xb9n\x1c\xdb\x92~\x00\xe4N\xe5\x13\x8cQ\xa6\x8b\x1f\xdc\xaa\xf6 \x8e\xba\x9e\xd2\xa7p\x04O\xda\x8f\x9e\xd3Z\x9dj\x97\xc68\xde\xcf\x8c&h\xcc4L&\xcf\xa2\xbb\xf6\x14\x1fu\x93qMZ)\xc8\xba\xac\xae\xce:\xec\xad\xb9Sz\xb6\xca\xa0\x80\x8c\x84\xabO\xfck\x96\x8ew\xd8\xfa\xec\x9d\xd8n!\xf2\xa4\xdd\xbe\x90\x96\xb7\xa9\x06%O\x8b\xa8\x9f5\xdbtv\xc6\xe6\xe8=\xec.\xd1\x14\xf2\x03\x8e\xc0C/~\x16\x8ck\xc2L\x155w$1\x1cC\x0c\x13\x88\xbb\xf6x1\x9a\xe2\x05\xa1T\x95\xd5\xc9\x9a\xf4\xaet{\x13\xa6\xfb~\xd5\x89\xf3@\xc1\x94\x85<6\x01w\xa9D\x07\x98n\xf8\xa8DU\xcd\xd1\xfe\xe8Q\x95`\xc8\x81s\x16\xbdC1\xa0\x88\xcek\x0eD\x1e\x0e\x89e\x87\xffQ\x8d\x88\xf0*\xabsLa\xbd\xc1\x85\"\xb8P\xd9\xb0\xb5\xe4\x07eUuKJ\xc9\xe3:B\xe0\xbe'\xb3<\x9b%)\xf9P\xc6Y\x153\xfeuI\xeawy\x9e\x92\xb9\xbf\x83\xcc\xc1,\xdaT\xe49\x9e\xe6|\x01;\xb3\xce\xa3\x82\x94T\x02\xf5\xdf \xb1\x11\xe4|\x10\xe1`\x7f%I \xe5)\xf2\xe1i\xbd6\xe9\x8d\xf0*d/\x84U\xb4\xc94\xeb\x86\xd6D\x9d\xed)\xf8\xec\x9e\xf4\x15<\x85\xbaI\xfb\xf74\x80\x9a\xab\x81\xf0\xb7\xaf\xbc\x1b\x1e\xec+\xb3\xa5\xf0\xb3\xf1\x96\xc2U\xa4\xcbj\xae\xf3Q\x13f%t\xe9>\x7f\x86\x9d,:_\xe5\x15\xbf\xdb\x18cC\xfc\xb3\x91\xf4\xec\xf8;\xdc\xdeU\x02u\x07\xfd\xde$\x1f)\x9f\x9dj\x9e=\x1f\x06\xdc\x1b3\xe0\x1c$U\x0e^=\x9b\xce.\x88\xef\xdd\x1b\x0fN\xdc\x06mX\xf20{\xfd\x9bW\x93e-\xbb\xf6\xc2\x16\x9e\xe7Y\x1d'\x19)_e\x8b\xbcO\x05z\x07\x83\xf8\x8bN\xf1}\xffl{a\xb3\x88\xc7\x08R%^\xbe\xc2\x11\xbc\xefZ\xa95\xc3}\xa1\xf8(%U;\x88\n\x0f\xe7\xf9\xa2\x15\xd9\x06\xe3\x11\x0d\xf4.\xe6N\x07\xa0\x10\xfdfn\xb4A\xde\xd3\x87\x1e1T#\x82\xd2\xb9\xff\xd8\x93\x8c;\xdfL\xe0E\x87\xeb\x10A\x11\xaa\x1fn\x18\x01B(L\xe0\xb2\xc3\xd4a\xa2\xd4\xd7y\x96\xd4\xb9K\xc4\xc7\xae\x84\xd1\x112\xcf\xd9\xbd8\xedl\xc0\xd2U\x7f\xe8B\x03\xb6\x1f\xa3\xd6\xb8\xfc2\xb4\xab\xaf\xaf\"\x92\xfdcC6\x82T\x8b\x00\x19\x92x\x86L\x08\x95\xf5\x9e\xc7iz\x11\xcf.\xd5\x8a\xb9F~\xa2\x87\xd8\xe0\x9c\x196\xbc!\xd7\xd6ik\xe7\xfc3\xcf\x19R\xfa\xde\xe1w^\x10\xc2&\"Y\xb5)\x89\x92\x14\x97\x03\x02\x93J\xf77\xab\x10=1\xde<\xc6\x13\xee\xd6XG\x17T`!sf\x0dQ\xf9\x1f\xd0\xacY\x8cJ\xdf$\x0b\x8c+1\x89o$#\xad\xb8\x9c\xc6g\xf4\x8bp8\n\x07\x83\xd6\xe9\xe6\xa2. \x9e\xf2\x92(8C\xacc\xc6\x82\\`\x11\xadbT\xaerH>\xa6\x90\xfcQ0\x1f\xba\xee\xd4N\x1c\xd6\xf7\x8bF|\x15]\xc5i\x82&#\x1c\xeb\xfc<\xe4|\xde\x8b\xb7\xaf9A\x11\x96\xec\xad0C\x0dr<\xf1B\x93\xad\x8c\x07\x94\xaa\x93\x18\x83\xa3\x15qU%\xd9\x12b`\x95!M. \xfca\x9e\\\xfd!\xc4\x97\x80\xfdr=\x85\xe8\x07\xdf\x07\x90\x97\xf0\xfd<\xb9\x82\x07\x7f\x8a\xd0-DL\xd0\xb1\xc7YJ\xdb\xc7\x0e_\xe6\xf9@w/\xf3\x9cu\xf62\xcfEg\x99\x1a\x03Z\x89U\xc6\xf9f\xec\xf5\xc3*\xa9`\x1d\xdf\xc0\x05\x81Y\xbc\xa9\x98W\xcd&K\xf0\x02!\xc9\xb38Mo \xcd\xe39\x1dP}\x9dC\x92\xcdIA\xe1\x9b\xd50\xcb\x8b\x84Tt\xc8lL\xdc\x07\xc7\xb0\xa5\x98\x9fX\xdc\x19\xf9\x0b\xd3m\x1bR\xf8 h\xe2\x9ci:\xb0\x9a\x9fRq\xbb\xe0n\xa7\x06\x05\x122H\xe7E\x99\xcfHU!o\xc6\xc3\x99\xfaUt>c\x7f\x1a\x15B\xf4\xeb\xa5~\xe2T\x92\x7f\xe3\xeb\xf2d`\x12\x8c\xa1QSa?\x1d\x12{\x0cSY\x80\x7f\xee\xcf\xd8\x15\x80Y\x07L{X\xb0\x1e\xfaB\x05\xe5\xde7\x17i2\x93\xf1\xbb-\x96)sa,k=[\xd4\x9237\xf3\x85\xf9\"\x14@\xab\xa1\x17E\x9eq\xba\xc3\xd2O1\xac@\x82\xa4d\x1e\x84\xb0\xd0\xb6\xa3\xbfk\xfd\xb1'\x07<\xc3\xd8xvS\x0e\xe0\xc0]!\x1f\x99\x19\x00\xb7\xa6\x12\"r\x84;o}\x93\x82\xfd\x06\x8e\xe0\x95\xb1\x89\x0b*\x82a\x13)\xfe\xab C\x00\\9\"\x89w\xf7d\xa5\"a\x16\xc2E\x08I\xe0\x88\x08\xc6C\x8b\x1bK\xe3\x92^\x07!\\\xdb\x8f.\xb7\xfb\xfcf\x95\x07N Ud\x1c\xce\x08\xa2_X\xdb%\xd6\xcf\xcd\x81\xf8p\xcfD\xe6j\xdc\xed:\"\x83\x8e\x0c\xc6T\xb5\xaf\xd0n{_Q\x96\x7f\xe0\x01\x020\xd4D\xa3\x9191\xd0/!V\xed; '\xaf\xcb\xddc/\xa7u\x8f/9\x0b\xfb\\\xcek\xa1;@\xeb\x98\x9e\xb7n\xeb\xa7F\xf7\xa0;\xde\x93\x10b\x1dD(\xac\x14N\x8e\xb9\xa5\x0d\x86c\xdd\xe0^\x1b\n\xee3\x8ffq\xf6\x9el*\x9e\x19\x8a\x8eb\xd3\xc92C\xc5\x0b2\x8bg+\xc2v:\xad\xa1oQP\xf6M[_6\x8f\x9e\xff\xf9\xe4\xf9\xff:\xfd\xe95\xaa\x16\x99\xf6Q\xdf\xc2\xa6\x97\x93c\xc4\xc7\xe2t\xd8D\xf9\xa6&\xe5\x9f?\xbc\xfe\xd1\xd4Ke\x1b_\x08\xdd\xa8\xbc\xa2\x88\x13b \xb5Q\xe1\xe2Y\xaf\x16\xe9\xba\x90\xa9\x97O\xe2\xce)\x94\x9e\x94A\xa8\xfaWf\xcc\xb1r\xb0e\x10\x8c\x80H\xf5\\\x06\x9c\xe1\x91\xbf\xe5j\x1b\x1c\xec\x85P\xc0.\x1c\xec\xa1S\xf4\xc7\x0c\xfc\x8a\x94W\xa4d\xd5g\xe6\xea\xfa\x99\xe9tWtg\x1dx!h\xaee\xfb4\x03\xb5K\x86F\x0e\x19\xaf\xdd\xd3\xef\x19P\x81\x07\x98r\xd5\x90\xe9'\x94GIV\x91\xb2\xfeP\x12\xc2\x1c\x1b}F\x9d\xe81`\xe4\xd3.X\n\x80P\xb3\xd3kE\xab>\xf2:\xefG|\xfa\x85\xf7O\x87\x8f\xbe\x0d\xf4\xcd\x9b\x8f\xa5\xc6\x0fH\x03$TM*\x1a\xe37|\xed\x98\x95@\xd9DS}\x1a\xa01\x8fN\xb9l\xd0A\xb1\x060\x00\xeb\xb1\xf6;\x98\xc8Z,\xe4+\xcf\xeb\xd7\xb3\xf8\xfb\x82\xab\xbb::?'\xd5\xeb|\xbeI\x89F\xcd\xc3C\xb2f~\xf7\xea\x0d\xc3\xe7b\xbc|4\x7f)\xd5f\x8e\xa1\xd4Z\xd8\xcd\x859\\\xdb\xb4\xeeV\x1d\x0d\xaf\x83r>\xff;\xaaVqA:f\xd3t\xe7\xce\xca\xe4\x82L\x94\x8at\xfa\xa8\xc2\xfa\xc7&)\xc9\xbc=\xe2yR\x15\xf4,v\xfe\x80\xf9\x94\xd5C=4+\x10\xdc\xe1\x12\x84-8\x98\x11W\x7f\x0b\xcd\xaf<\xc0\x14\x16I\\\x89\x90\xb2\xccK\xf5\x8e\x04\x1f\xf4\xb8.\xfd\xddt\xbd*\xf3k\x8c\x80t\xc2\xbfj/\xa9\xde\xbc\xdb O\x95\xcb\xe4\xc7\xdd\x1bJ~\x9b\xdc\xb3S\x14\xa9\xae\xba7\xa41\xaf\xdf\xc5\xde\x0d\x7f\xdem\xbf\xe2\xcf\xbb\x17\xc0\xfc\"\xb9\x97^\x80_$\xf7\xd2\x0b,\xf8\xf3\xee\xc5/\xbbH>x\xa2\xbbH\xce\xfc\xc3\xc7\xddy\xb1\xfb\xe3\xfd\xc3n\xfbW\xbc\xfd\xee\xb5\xfa\x9a_\xabw\xdbY\xf2\xe7\xddy\xb1\x1b\xe4\xde=\xf4\x05\x07\x7fw\xba\xe7\xbc\x99\xeep\xae\xf9\xf05W\xc4\xb4zw\x94\x9f\xf0y\xef\xda\xfa\xb4\xafN\x7f\x0eG\xddh\xda\x97p\x04\x0f\xdb\x8f\x9eQN@\x04\x00|V.\xf1\x12\xa9:\xebD\x18|\xab\xd6\x12\xa1\xeb\xba\x95\xde\xa9\x950\xf4n\\\xe7\xa5\xa9\xf6\x07\xb5\xb6\x88<\xd8\xae\xf2\x9a\xdfb\xcb\xdf\xd3gg\x94g\x9b*\x03.\xe3\x9b3O\xf7\xf4\x87\xcdbA\xca\xde\xbb\x17q\x1d\xff5!\xd7\xbd\x17<\xc7\x87\xee\x03\xd2{\xf82\xcd\xe3\xfa\xf0@\xdf=\xbe|\xf4P\xff\xf2UV?6\xbe\xd9\x7fd|e\xea\xecu\\\xf4\x9e1\x17\x14\xf1\xf8C\xe7-\x8b \xd8\xfb\xe8\x94\xd4\xfdg\xc8\xdf\xf5\x1f\xdf\xac/\xf2\xb4\xf7\xf8\xa7\xc487|\xf5<\x8d\xd7\x05\x99\x9bk\x98\xa6O\xdf\xb5\xe6O\xc9\xbc\xf2\x1e\xc9\xa8\xf8\xeam\xe7\xe3\xbf\x91\xf8R\x02ig?\xd4262,\xef\xab\x10~\x0e\xe1M\x08\xefu\xb7w/B\xbc\xbb\xc9\xe0\x1e\x9c\xf6\x99\xeb\x9f\xf8\xab\xe7\xfdW\xff\xe0\xaf.\xdb\xe7\x03ei_\xe1%\xee\x0b*\xb5\xc31\xbc\xa2\xe3\x90#\x98\xd0\xdfA\x10\xaa\xda\xd3\x17R\x84x\xd1ol\xe7Z\xcd[\xdaa\x9e\xe8\x0c^\xe2\xbdBWJ\xa5\x9f\xbe4\x89\xc1thW~M%\xee\x1fe\xd3\x18\xd5\xf7E\xf7\xe02\xc4\xbf\xa5\x1d\xff\x13\x8e`E[\xe9\xbd\xa5\xe5\x078\xa25\x8e\xe0-\x15\xb8\xf1\xafwz\x05\xc6\x85:\xc1\x8a\x8e\xe2G\x83\xaa\x03[\xf9 \xdb{F\xff\xfa\x01\xb5ToLr\x81\x98\xeeO\xac\xee1\xfcr\x0b\x13Xv'\xff\x13\x1c\xc3\x82v\xbd\xf1_0\x1d\xe7\x04f\xf4w\xcc\x7f\xf7\x1a7\x82F\xf4\xba\xf3z\xfa\xcf3\xd9\xc1\x1b\xee/\xfb\x8bA\xefH\xc7\xb8\xa6\x1d\xfe\x93N\xbf\xdf\xdb\xef\xcc\xbf\xde\xa3\x0d\xde{`!\x18\xcb\xa0\x8f\"\x7f\x85#x\x8f\x9aj\x1d\x9a\xfcU\x0e\xf2\xaf\xfd\x97\xef16#bF\x88~\xed\x0d*\xca\x08`\x92}\xe9\xd9t\x00\xde\xdcbXC\xbf\x14\xbb\xb1D&\xe7}\xd7\x12<\x08u\xe8\x7fn\xeb\xd2p\x9f\xf3\x02\xc7\x9d\x87\xa0t\x9c\xbbvLa\xf6g8\x82\x7f\xc01b\xc6\x1c&P\xc0\x04\xff\xbe$7\xd5\xab\x0c\x03\xe2\xf6:\xfd\x1b\x1c\xc1K8\x16{{\x02\x7f\xee\x01\\h5\xfd\xbf\xd1U\xab\x15\xde\xcf4\x93\xbf!5)1\xc6\x13z\xe8\x9e\xa1%\xfd\x0b\x9c\x8f\xdb\xec\xe4\x93\x91\x1c\xe7\xc1\x93.\x87$8N}\"\xaa\xef\x1e\x8f\x9669<\x12\xe6u\x81W~;\x18Z\xbc\x95\xeb`\xe4\xb8\xf7\x1f\x1b\x92\xc2\x1ety2\xce)?\xd6g\x85=x\xd2}\xbei\xc2\xf62\x0f[\x11A\x97\x1d\xa0\x15%#\x83\n\xdfV\x94\x8d\xe9\x19\x8b\xb2\x81\xce[\x14\x04<\xcc\xc6\xb0{{{}a\x02\xb1\x1e\xe8N\x06\xc1\xeab\xeb\x81v\xd8cX\xb9{\xd4\xf6\xab\x8d\xcb\x9c\xb4\xaeuG\xae\xf0\xe3\xc7z\xcc<\xec\xc9H|\xb0\x8f\x0f\xb7\x1dl\xe2+\xa9\xa0\x99\xc9\x18&\xec\xf7\xbe`\xf0]4\xcc\xa5\xde2\xfed\x1b\xa6\xfeF\xa3Q\xa3@\xaeZi\xd7\xa8L\xe1Z\xc6\xfb\xb0\x0f\x13\xc0\xe0\xfd}\xe2e\xbdc\x93\xa8KA\x1a\x0b\xb9\x82\xc5\xfd\xbc\xbf\xcf\xaebs?i:c\x1d\xa1\x14\xc9\x82\xf7o\x82\xa7\xb0\xbb\x1b\xc3\xf7\xb0y\x1a@\xc5\xcd\x11\xa65\xecB|\xa6?\x17Y\xe3\xfawr@\xa9\xec\x816\xb5/{\xa9\x9f\x06\x90\x8a^L=\x08\xf6\x87\x05\x0c\xcd\xfc\nS\x8a\x11\x96S3\x04\x9d\xdeo\xfb\x85\xefn%a\x0f\xbe\x1f\xf8\xa5\x01A\xbf\xc0\xf7\x91S*\xa6\x15i\x12\xab\x87\xe05*\x16\xaf{Y\xce\xb3\xd3*w1\xb7\x81A\x05c@B\x0d\xd5\xcbzZ\xae\xa6\xf5\xa7=H\x99\xf7$\xea\xe2\xd9\x0dV3\x05\xc9\x1f\x90\xfe1^w\x04N\xd1\x884M\xe9/\xafr\x9b\xc0\xbc^,q\xdayTs\\\x11\xb4\xdedQ}\xc94;3\xd8\xdb)\xb0\xa4k\xd9\x80\xc2\xcf\xfc\xfd'\x07\xc1\x17h\xcf\xbe\xf6\x92\x1bM \xf54\x03\xc3\x88\x18\xbd\xa4\x92l\x91k3\x87\xd1\x92\xe6Km\xee0\xc0\x94\xb5e6\x81C\xfdKT\xdcM\xe0a\xef\xa5\xc659\xb3\x1ao\x82\xb2nSrF\xb9\xb6\xfb\x9a\xfb\xd0~\xd3\xccOs\x96g\x8bdYEi\xbeDs\xc0~=F\x02J5\xdb\x00\xa8f\xa7\x89\x8d\x91`\x97Z\x92 \xcb[\xafDR\xc5\x12\xfe\x04\xfb\xa8\x87f'\x00\xa5\xca\x94\xb0\xee?\x05J&\xcb\xa7\x10\xef\xee\x06\x94F\xd2\ngjkZ\xb2\x89\xa0\xfa\xd3\x91\x12\x92\x95+M\x83)9\x8b\xe2\xa2H\x11\xe5\x06\x0d\xda\xc5\xe9\x1a\xd1\xb5D\xfd6&)f\x17\xee\x1e}\x88\xf7\xb3\\/\xdb}\x8fOY\x05\x8aD\xbd\xf7\xf4!{\x8d\x18\xd8{\x8fO=\xad[>^Vc\x0e\xa8\xca\xe4\x17\x8f\xa8\x99\xf4\x91\xc00]\xa7S\xc2\x9a\x07\x8e21]M\xe3\xd7\xb9vpc\x8f\xc4\xc6\x978\xae\xa5u\xfa\xb3\xc0\xc0`\x90\xce}\xc4:\xbe$\x7f\xae\xeb\xc2\xa7\xc4\x97\xbc\xa4\xaf)Y*\xf2\xaa\xc6\x1f\x06\xd5\xc3\xc5&I\xe7\xef\xc9?6\xa4\xaa\xd5\xe6\xd4\xe7\x06\xd2\xc1r{\xab\x1f\xf1G\xfa\xfa%\xa9\xf2\xf4\xaaU\x9f?\x1a\xac\xcfMM4\x9f\xf17\xfa\xaf+R&q\x9a\xfc\x93\xbc'\x95\xfa\xad\xfa\\\xffe^\xbc\x9a\xab_\xacHZ\x90\xb2\x8a\xe8\xf3\xbbEc7\xdc\x91\xc4\xad\xd6\xeb\x0c\xf0\x84\x9e\x96\x8d\xfa\x84\xfe\x10-\xf7\xe9\xd1\x15w\x1d\xa1\xb5\x8cGQ2\x81\xd2p\xd2\x98\xa3\xe3\xf2.'\xba\xa8<\x1aM\x8e\xe0C\xe8h\x91+\xc8\xc5\xa0Q>W~\xa1\x97N\x94r\xcd\xa7|a\x00=\xf0If\x1anF2\x15k\xceNDx\x0d\x83\xe7wGp\xd0\xb9\xdd\x00^\xb9\xe5\x9c\x7f\xf9\xfc\xd9\xc0A\xb0\xaf\xf5\x90e\xfb\x7fS\xc6\x17)\x19\x00e\xb6Y\x13Q\xc7\xc0\x10,I\x8f.\x01h\x82\x10C\x1d\xd9On\x01\xb0\x1e\xbf\xa8\n\xe9\x96#\x9f\x88-\xd3\x1f\x138Dl\x11\xad\x8c\xc0\x9d:\x9a\xfbY\x08^\xcc\xfd\x8a\xb3\xfe\xd4s\x17\xfb\x18\xde\x9c+\xef\xdaO\xbdRG\x05KL\x05\xb5_Gt?\x1f\x1c*\"\xaf?\x1d\x1c\x82J\x072\xff\xe1\x81\xf2e8<\xf8\xce\x97\xdfn\xfbek\xb4\xe3\xbe\xdc\xba\xcf\xc3\xc3\xc7\xe6O5R{\xfb\xd0o\xbd\x92$\xb2\xd4c\xb7@-\x0dr\x13c@\x1fy\xf6\xdb\x93T\xea\x07\x93\x1b\xf1M\xec\xb6.\x1f\n\x7f\x82\x83\x8e\xb5x\xc3\\\x1e\x9c\xc1q\xfb\xe7\xc4\x98\n\x8d\xb29\xbe\xa6\xf5Cc\xeb\x87\xed\xd6\x0f\xcfP\xff\x1eDW\x07o\x0bRbL\x9aWh^\x12\xd7 \xc6/\xb9y\x9d\xcf5\x1e\x9f*\xa8[\xa9\xddTE\x0b&kP,\x10&\xe8\xf87\x13\xf4#\xf0I\x10\xb0(Qy\xd39s\x84U\xd2r}\xac0\xc7\x96\x174\x86a\xab\xf6'\x01L \xe1W[\xfaE\x1e\x9e\x9e\x9e\xbej\xfd\xc5\xcc\x02\xc9@8K\xdd\x12\x8dC\x00\xfb\x12\x99\xc8\xad\xc0A\xbfnG\x84\x80]\xf0\xce1}P+QZ\xb5\xf3\xff\xfd\xfe\x9b\xff\xf1\xf7{\x7f\xf4\x83\xf3\xdd\xa3\xe9/\x1f\xcfn\x9fN\xbe\xff\xd3\xe7\xe8\xe3\x83\xe3\xf0\xe3\xc7?x\xde}\x96<\xed\\g\x99\x0b\x0df\xb0\\\xe8\xcc\xf3\xb0\xb1\xa1\xdbo\xfa\xad\x95~}\xff<\xf8\xe5 \xbc\x0dD\xd3J\xe6\x12\xff<\xf8\xa3@\x80\xe6\x83\xe9\xf9Y\xf0\xc7o\xf8s\xcb\xc6UF\x851X\xe7~M\x87\xd1\x0f\xa4nX\xdc\xd8v\xa0\xf0\x06\xbd\xfb\xfdtL\xa667\xb66+N\x1fw\xf6\x90\x03q\xc6\xc4\xcaDWA\xdc\xc1\xb1\xe0Vb\xcf\xeel\xb3g?\x7f\x86\x1d\x12\x15q\xbd\xaa\xfa\x8du\xaa\xb3jC\xb1-@Qs\xf1\xea\xfd\nR\xb6\xcf!\xc9\xa0\xd4\x9b\xa8*\xeaXZi\x9a\x1b\xa2\xcc\x03\x87\x85\xf7\xee\xd9\xfbg\xafO>\x9c\xbc?e\x83O\xa2:\xff\xa9(laSD\xb9\xe2\x0eg\xb4\xa7ibP\xa6\x8aB;\x8c\x07\xe9el\x83}\x1cX\x87\x04\xd0\x18j\xdbk\x8aR\x15df\x8c\x13\xa6+t\x95XX\xd1\xdc\xfd\xa35\xa9W9\n]-(\xbb7 i\xfed \x9c\xa8Z4:(]\xc1\x0c4\xbe\xc9\x06]-(\x85\xa1W\xb2D\xe8\xcd\xe0Gz\xa7\x97\xfe\x9b\xf6\xaf\xadT\x96\xa0U[b\xe3\x9a\x0bp*g\x95~\xe6\xef?\xee\x06\xff\x00n\xb6\x86o\xbby(\xea(\xa9\xde>;=t\x125\x98.$/H\x16\x17\x89\x91\x89\xe0Y\x15(\xae\x17\x0d\xae\xd3\xc9\x1ez\x1a\x16<\xa9N\xaf\xe3\xe5\x92\x94\x07#\xc6P\xb1O\xb6\x18\xc3\x81n\x0cy\xf1j\xce\x12\xf0\xd7Q2\x7fY\xe6\xebwq\xbdz\x8d\xf8\xcd\xdcI\xeb(%\xcbxv\xf3\xaa\xff6\xa6o\x97\xa4\x96\xc7\xf9\xfb\xf8z\x84\xf8\xc2\xd9[F}\x8f\xd9Ib\xd7\xd7J\xc9/\x12[\xd7\xbc5\x18!f\xbb\xd5\\+\x11\x8b\xcb&\xa1\xdf;x\xe2$\x83'Nb\xa3z\x89\x12\x19i\xc7p\xef%H^\xa2\xf2\x85\x83\x0c\xca4\xf7\x13\x19\xf0\"\xf6\xf9\x1f\x9b\xb3\xa8\xca\xd7\xc4\xb7\x03\x14\xba+\xc2\xee\x16\xb5uu\x91\xd7\x0c\xd9\x10\xd0>>\x9bK\xdc\x80#\xd8\xd0\x87$\x9e\xad\xd4\x87\x15\x8b\x93Q\xaeQ\xcb\xc5w\xc4\x98\x0dQ\x90\x99~mY\x005D/\xb3\xd4\xa1\xb3\xd9\xc1\xb5F\x96\xaf\x8e\xbe\xf9F\x8emn\xba\x8b\x82\xde\x89m\x0c2+\x0e\xda\xccx\xca\"\x9f\xbd\x17\xc2\xa2uZ\x0e\xac\x9d\xc0\x18\xcc\x92\x15\xafIMJ\x0d\xdb!\x8a\x1cgE\xc7\x19\x07\xb0\xe3\xb0\xe7D\x91r\xe0\x948\xf0\x08;\x9did\x0d\xf6{\xb3<\xab\x93lC4\xa9a\xd4r\xc5]qs\x9f9\x7f\x99\x9cqE\xa1\xddj\x83\x02uK9\xad\xa8tB\xffc\x91\xca3\x8a\xc6\xf8\xf4\x08\xa6\x99ev\xc0\x87\x86\x87\xcb\xb4r\xa8M\x076k\x84\xa6\xfd\x00f}{'\x13\xbd\xd4\x15\x12\x9d\x9f\xe7e\xb2L\xb28U\xc4)\xe6\x96\xa1}\x83\x12\x8cBT\xc2\xf6O\x96\xb7\x9f%L\xe7W\xed\xd6\x81\xe8\\\xab\xbbE\x86\x00Td\xc4\xac-\xf4\xba\xcd\x98\x02\xbc\x80#\x98M\xf7\x1c\x00NKa\x84\x91\xe9\x0d\x15P\xda0*:0\xaa\xac=\x9b\x19%\xfb[\xe4\xe5\x9bm\xcc\xce\x18\xeb\xb6\x04\x0e\x9d\xb9%U\x84ZV\x06\xda\xd7-\x92^\\QzQ\x07\xe0\x15e>\xdf\xcc\x08\x1f\xdc\x15\n\x02\xb3<\xab6\xeb\xf6\xb3\x8a\xcc6eR\xdf\x88g\x9f?\x83\xbf\x9a^\x9d\xa1\xb1\xdb\xd5Y\x08s\xb6\xf3V\xba\x0ca\xddB\x01\xb3A\xc6f\xa5\x909v\xa64\xed\xd0\xbf\xb97\xa0\x03\xc8\x80\x83m\xcd\x14\xf5N\xf5\x81{\x18\x98\x14\xe1\xbar\x03G\\Ab\x9f'X3pt\x8b\\\xa0\x8b\x10\x9d\x16(\xd1M\x1b\xa2;\x0f\x9e\xc2\x8eO\xa7\xe8_\xc0\x11\x9cG\x19\xf9T\xfbA\x10\xcd\xf3\x8c\x04O\xf9\xe4]\xc1%\n\xed\x8f\xb2z\x17,\x00\xa8\xdb\xbcD\x91#>\xa1(um'3\xdd\xc2n\x90N\xce\xc6\x8eZ\x94\xde.\xa3\x0c\xcf\xc9\xb6\xad\x01\x87\xc7\xa7\x91h\xa4+\xa7#QKW\x9e\x8fD7]\x19\x87\x82\xba\"\x17\xf92D\xa7\x95\x0eZ^\xd3\xe5\xa3\x98I\xa1\xe6_\xc2\x11<\xebb\xe6'\x8e\x99;\xf6\xab\x981\xe5\x8a\x87\"\xbf\xdc\x06uu\x85bb\x87\xd7v>\xc5mE\xde\x1be\x1e\x81\xb7\x19*p\xc4\\\n\xc4\xbcq\xfe\xd4q\x9d\xac\xb5\xb6\x150n\xfdJ\x0f\x1b\x8d\xf9K\xef\x89<\x89T\x85\x08G\x8e\xceMQ_E\xbb\xe0J\xd8\x87\xdf\xe9T\xb4\x85P\xd1\xf6\x82Z\x03\xf7\x17\xb6k(\xf8\xf0\x98\x07\xa4b\x11\xa1\\\x15rs\x08\x8d\x06\xab\xdf\xe9jL\xa7D\xb9w\xfc\xfb\xc7\xeb\xb3\x07\xcb\x84]\xfe\x0d\x80u\x9c\xe9\xc1\xe3'\x036\x16\xffo\x98\x1e\xdc\xcd\xd5s\x9a\xc7\xf3S\xa3\xc2\xb0\x94\x9c3\xd3R\xd0\xe6\x0d\xe9\xdb\xf5\xc9\xc6\xe4\xdb\xcb \x90(\xbf43\xf2\x9b2\xa5U6e\xca\\\xc5\x8c\x15\xab:\xae7\x15\xe6$\xc1\xbfl5Y\x8aPQ\x9b\xfe2\x7f\xb1\"\xf1\x9c\x94\xd5\x04\x12\x9fD\xfc\x87\x81B\xe8\x1b\x89\xe1\x08r\xf1\xe5\xd4\xe3y\x84\xee\xd3\x9d\xe7\x19\xf4\x10\x1b\xccC\xf9\xf93\x9c\xfb\xb1\xd9\x0f\xca\xdf\xa0kKM>\xb1\xf8\xe5\x17i~\xc1\x14X\x17\xe8'\x1e\x88\xcd\x1c\xd5+\x929(\xb9)\xc9\xceY{hH\x97G\xf3\xb8\x8e\xd9\xdf\x9b\xc0r\x00]\xf5\"\x01;(\xea\x84\xa63.\x8a4\x99\xa1\x02\xe9\xc1\xcf\x15\x8bO\xc1\\w\xfer\xfa\xf6MT\xc4eE|LA\xb4l\x8c>\xe3\x05\xf91\x8f\xe7C\x0c\xf4-\x1d\x85\x0e\x84\xa2\xe4\x98\x01\x01\x8e(\x85\xc8\xa3\xfc\xe2g0j\xf5\x9dX\x83\x9c\x8d\xf5\x84\xdbl\xeb\xb9\x01\xfd\xe9\xc3a\x91\xf7\xa9\x83\x9b\xe1B2\x9cT\xaaO\x19\xf6\x8c\x94a\xafM\x19\xf6\x18e\xd0\xe3\xaa\xce\xbf\x04\x94\xa5\x15\xe3SC\x8e\x10\xa1\xd6e\xf6@:\x1d\xaf\xf9r@ \xba9\xcd\xe8@\x85\xbf \x9a\xfaGI\xc5\x1d\xa1\xa6\xd9Y\x00\xc7\xac\xd2\x04\xa6\xf4\xff\xb3\x10\x7f\n\xb9\x8b\xe2\x93\xf0U\xd1@\x1d\xf1\xb7\x1b,s\xc0ld\xe0\xa4\xd0Gfy\x99\xf0#C\xc4\x89\x13\xcfd\x9c\xd1\xa3\xadl\xaeVm\xfb\x0dS\xe0\x17\x12\x15I\xf1\xa5\x06,\xcdM\xe3,Oy\xd6\x9a\x97\x98\xf0\xcc||\x90(N\xd3\xfc\xfad]\xd47\x18;\xd8|||\xd9\xcc\x8fE\xf2\x1dJ\x1f\xf5WX\xdd\x04@es\xfdb\xc8\xc8\x1f\xfb9\xcb\xdfp\xc1\xa2k\xa8 \xcd\xe5\xd7y\xff\xe3+\x91~'\x9b\xe5s\xf2\xd3\xfbW\x86\x80P\xa0p\x92\xa8\xcdM\xb8j\xe8\xa6\x99]\x1eX\x1dma\xd0\xfc\x16l\x81\x19\x95\xcf;\xf7\xe4:\xee0\x08\xcdW\xbe\xb9m\xa9rfd\xd4\xde\xbf8C\x97G\x18\xfe\x1d\x8e!\x8f\xd6q\xe1'A\xf4s\x9ed\xbe\x17zt\xf3z\xebMZ'\x0c}\xd4J0\xe9\xd4\xd7\x03`V]M\xc0\x0b\x0d\x06\x99\x15\xbe\xfd\x1f\x07{\x86\xf75{\xbf\xf7\xc4\xf0\x9en\xbfj\x02\xdeg\xaf\x0fP\xa4^\x94\xe9\xc0\x14\xd0\x9e\xe7\xb4M\xab\xe1{\xe0\xceU#\xda\x02\xce73U'7Dx\x85\xd1\xd64\x1b\xb8>\xa1\x9bvg\xa7\x8c\xaa\xcb\xa48\xa1\x88\x9ed\xcba\xab\x82\x9c\x87\xeb\xefo\x0bc\x88V\xe0l\x95\x1d\x83EQ9\xf6/\xa2)\xc6^ny\xe2\xbf\x9d6\x82v\xa3Q\x88\"6\xf84\xa1\xc7\xcf\xc6\x8f\x8d\xeeJ\xa2pc\x1fC\x1a\xd2\x10\xf2 \xd4\x05v\x0e)Oo$0\xeb\x86\x9dB\xa90Y\xa0\xe1\x91~\x14l\x85\xcc\x0e\x0eI6Of\x14\xa3u\xf1R\xbb9o`\x00\x8f\xd3\xdf\x8e\x95Aq\xc3*\xf9\x08\xee\xd4\xf3\xd0\x9d\\[=\xc7\xd6\xfe\xb1!\xa5!\x8203\xa9Y\xe4\xe5Z\x7f\xd0\x0c\x86fM\xfb\xfb9 \xc6X\xb3@\x83\x04\xb1\x9fL\xc9\x19;)\x07\x10|`3\x168\x15\x83\x8c\xc3d\x12\xf9\xf29\x7f\xf9\x01_\x9a\xed;P\xe8{\x80\xf4\xbb\x88\xcb\xfa\xe3\x03\n\xa9\xfbT\"y\x90D5\xa9j\xbf\xb0\x9a|\xf08j\xa6\xf8\x9d\x80J\x04.\x01d\xe4\x1a\xe6\xa1\x06\xa8=\xf6\xd4*\xd6\xb06\xa3\xb8(H6gAu\x92i}\x86\xf6\xbdC\x00\xd6om\xa6\xf4\x94\xe3\xac\xfc\xc40\x1d\x1ez\x98\xe1T\x7f\x07j\x91L\x1bq\x058\xf8V\x98)\xb2*\xd2\xa4\xf6\xbdco\x00\x01\xae\xa0g\x0b\xbc\n\xa1\x1b\x8aB-K\xba\x9b\xa6{\x03G ^ O\xf7\x07j\\\xa0=\x86\x19\x85nl\xf8q\x8e\xe9\x96\x04 db\xe6\xcd\x00\xb2t\x90#\xd7 \x87\xeb\xa6\xe3\x8bu>%f%6e\xab.ZCl\xa8\xf4\xf9PFmP\xa9u?\x0b\xa7(&\x8c3\"\xc4\xb5-\x9d\x8d(\xf2fSG\xb0C\x96\x0c\x08\xcfG\x12\xb0l\xbf{O!\x83\xef\x81<\x85lw7\x10bYC\xb8\x87\xac\x8d\x04gRG\x8b$\xadI9~1\xccZ\xfb[\xc1O\xde3\xb9@@\xd3LI\x8f\x84c\x0fv\xf1(\xf7\xfal\x1d \xa3p\x11BE\x99^}{L\xe1u\x04K\xd8\x85\xeb\xb0\xd9\xd4x\x928\xecj\xed\x94\xbe\xb2\xc1q\x08uT\xad\xf2M:\x7f\x91_gi\x1e\xcf\x9f\xa1Z\x8deg%\xe9\xc2p\xdd.\xed\xc3\xfc\xcc?\xe8eK\xa4Eh\xc5\xf7\x86\x94\xe2Z\xa3\xe6\xb9\xd0\xa7\xeb^\xae\x1a\x8b\xe7\xfe\xcb+\xf1Rc\x0f\xad\xba\x1a\x0b\x9b`\xf9\xec\xcf\xec\x8c\x136\xc1l\x07Ri\xf8m\xf9\xbf\xe9\xea K\xce5)\x97\xe4U\x86\xcf\xde\x96\xb4\x02\x1cA\x8ao\xb8\xc3\xb7C\xc0\x1bh\xd6Zz\xdf\xd8\x11\xdf,\x11\xb2]Y\x7fq3\xda\xfa\xb2E\xad\xfb\xad(B\xf2\xeeg\x90a \xbaK\xab\x9b\x03\xaa\x8c\xf5,2\x08\x82\xaa\x01\xbf_\xf2\xc8\xe85\xfe\x95\xf9\xa4\x97\xa8[6\xd1F}Z\xf9\xe0;\x8d\xc5\xfdZ\xa0\xb5\x169\x97\x02\xc5\xbe\xd5\xbd\xbd\x11\xdf\xf6Ru\x02?\xf5\xe4\xae\xd2\x83\xa3\xed(op\xda\xe8\x83a\x02\x9a\xf4\xee\xdd\x1d\xc0\x8f\"\xdbI \x88?=2\xaf\x14S+y\x94\xad\xe3\xf2RRj f\xae\nUL,!\x17Kn\xa0\x97\x01\xf6\x8d2\xc0~[\x06\xd8?\x1b\x08C(Ng9\xcc\xeb2.\x1c\x0f\x14\x16\x82\xfdi\x00\xd5u\xc2T\xc5QQ\x92+\xe4\x8d3\xf2\xc9\xca6\xce\xe2\x8a\xc0\xded\xb0\x0e\x08\xd3,\x93\x10[\xdb\x84X\x91\xc2\x1e5\x02\x14\x96u@O\x1c\x0c6\xbf\x92\x04\xac\xf9\xfb\xf3gL.\xa7\xdd6q\x10\xc2N\x1c\x95,\xa4\x04\xa6)\x9b\x91\xa2\xce\x07w\xb9Z\x18`\xe0\x08\xf6\x1d\x0d\xb1.J\x12_Zk\xda\xef\x87\xe5\xb5$\xef\xff\x11\x9d~\x7f\x1e\xda\xfb\x17\xb5\xe0\x9a=r[3\x12\xd5{\xcc\x1c\x9fdu\x08\xf4\xe7h8=\xf9u\xc1\xc4\x87\x1c;\x00\xe1\x89\x1d\x08,\xe3lmYjlm\xdfa\x1f(\xa7_<$|\xc6&\xe13\x1c\x96/y8+\xce\x81\x19\xbb\x90<\x9a\xb1\x1f~\xb8\x88\x08z\x92,\xec\x1f\x86\xca\x0ex\x14\x82\x8f\xf9\x1eJ\x8c\xed\x82\x071\x06y\xa1O\xcbt\xf8\"\x0b$\xe0\x1c\x90Q\xb2\xab*2\x8aa<\xa1{]=@|\x16\xaf\xd4\xadw\x07,\xa0[A\xed\x1a HU\xe4YE\xbe\x84\x82\x1c|\xf7\xebn\x8d.\x0598d$\xa47\x13\xa3\x0eP\x14\x84\xdc\xc1\xa1\x1b\xe4HT\xef\xb7\x89\xc8\xfexP=\xfauA\xc5\xc7l\xc9\x0f\xc3\xc0\xe0\x82\xbe\x8c\x8c\x18\x9c\xc3Da\xcd}goN\x82\xe5\xd0\x01\x83\x10$.\x1d;n\x04I\x0b\x0e\x9e\xe0b\x1e\xb0\xbb\xb4\xb8\x9e\xad\xfc\xfd\xc3\xc0\x10\xafFW\x9ai\x1c\xda\xa7\x01w\xb8\xba\xcc\xc4\x8b\x8e\xdd\x01.\x87\x0eh\xce\x1a\xf4s\xae\x94c\x19%J\xc5Z#\x08\xf8\x8f\xe7\xf9\x1c\xc3\xc5\xf2\x9fL]\xc5L@ \x97{Q\xde\xc6G\xf5A\xa8\xbb\x99S\x0b\x1b\xa5\x03\xda \x19\x8b\xf2\xcb\xd1\xeb\xf3\xd0\x02'Q\xeev}\xf0\x16\xd1\x0d\x9c\x89\x0e\x9c\x89\x04'}\x1cv\x93\xcfw\x0b\x82\xf1\xe1\x81\x1d\x8c\x92\x8c\xc6\x17\xe5\xa6\xa8}\x8f=\xf0\xc2^ \xefna]X\xf0 +y$\x9b{#\x86R\xd5y1`\"\xa9\x07\xf9-K\x93\x871S\xa7\xc6o\xa7\xf4\xcc?x\xa2\xd7\xf9i\x02\x18\xdc\xea\xd4D|\xa0v\x85t\x03\\\x16\x92\x10\x07'%![(\x8d\xdbnVB\xa125*{\x06%B>\x98\x07\xfe\xcfU\x9e}\xfe\xb4N?\xdf\xc4\xeb\xf43\xa6\x00\xfdx\xf1\x80\xf1\\_|\xb9\xd3\x8d\x10\xb2\xad9\xe1\xc3\xfd\xffxk\xc2\x81\xc1\xb4/1I\xa0\x06Q\xfe\x1eCi\xe2\xd5\x97\xf7\x00\x83\xa0\xe0M\xba]F\x16\xe6\x04\x99`\x02\xddkTS\xe3\xb3\x01\x13)#\xa3\x85\xbaR\xba9\xd8\xbc\x9b\x00\xcfti\xce\x95\xa5\x19GZ5S\x991+g\x9d9\xaa#i]\x0c3\x19\xeeW\xa4\xfc\x0b\x85\xf1\xd2\x8d\xcaiL\x85\x9d\xf1\x19i\x94ua6\xca2\x0db\xee0\x08Q\xb9e&\xeb\xd4\xfaJ\xdf:zAY\xf6\xb8\x88\x9b4x!\xe1\xc5\xf3\xb9\xb0\x8a\xff\xfc\x99\xb2#\xeb\xfc\x8a\xb4\x9f0\x06\xc5\x10\x99\xc6\xb8/;\xc6Z\xa6 ^\x0d\x82\x0f\xa7\xff\xf93\xd0\xb9\"$\xd7\x9b:\x16\x90D\xc9\xfb\xc6\xd1\xd4x=\xd8\xcf\x15o\xdfo\xe0AA\xd7\x07\x80|\x8a\xb7\x16\xbag/\x08)\x9a\xe7n8\xb4t\xc0\xa1\xaf\x8e\xc87Fcl\xb3\x87\x06\x1f\xe1\xa9\xbc\xd6Z\x92\x1aM\xaf\x7f\xb8y\x97'\x19\xa5\x08\xfd\x18\xb8\x00.n\x0f\x82\xbcw\xb2\x86\x86\xda\x88\xd1\xbf3\xff\xbas\xa3\x84\xbe\xecz1t\xeb\x7f\xce_\x1ej\x0d\x06\xae\x87\xec\x10N\xc4\xa7\xda\xdb\xdcO\xe26W\xf7\xf2T|\xaa\xb5~x>d\xc3p)>\xd5:\x0c>\x13o\x1f\xf7\x8d\x18\x9a+\xdc>4\xe3\xf9|2,'\x8b2(3\x81\x90\x9b\xe8>\x1d0\x1c\x1c\x92\x9b@\x91\x9d\xb4\x154\x08\xd6o\x89\x93\x85 $\xbaw\x94\x8a\xde\xe9|9a\xb6Ny\xfb !\xf5\xba\xab1S\xba\xe8\x1a'\x8a8\x899\x19\xca\x86\xa3\xe5\xdc\x06\xdd %\xad\xb7!L\x87\xb6\xa3\x89\x9a\x9b\x0e\x1ae=\xdb\x8a\x0b\xdd\x9a\xdaV\xf1\xaa!\xb6\xe6\x11f\xcc\xeb\xf85\xa9c\x1c\x1d\xa9\x00\x83}\xadI\x8d\xaa\xcd\xb5_3\xd5B\xc7\x8f\\\xd0\xfc\xcf\x9f[xEk^\xe9)\xd7U\xc8\x9b\x15\xe9l\xafl00\x9e\x85\xf5Y\x10\xde\xf1\xc8m\xc0\\v\x0e\xc7a<\xbb\xd0\x83`)A0\x1ee\x14\x06\xe0\xc2\xc8\x00h\x9f\x8a\xdd\xd7{\xa9a\xcf\x8a\xb8$Y\x8d\xa1\xba5<\xda\x10\x83\xd6\xf1\xf0\xac\xed\xf1\xaa\x95\x84\x9aG\x98B\x17\xf1\x95]\x9b0\xbf\x97\x92\xf9\xbd\x18aE\xfbE\x9f\x18\xd4\xc3\xa2s\xb0\xa5O\xf1\xba\xef\xfd\xa3\x01\xc6\"\x8d\xeb\x9ad\x13\xd0\x04}Yl\xd2\xf4\xe6\x8d\x08g\x84s\x1e\xe1;\xbe\xf0g~\xea\x93\xae\xf6\x1a\xf4\xe3\xc8:\xddh<1\x93\xea]\x99\xaf\x93\x8a\x8c\x18D\xc1\xb5\x86s\x9f`,\x14\xa7\xb1p\xcf\xae7\xe4\xda\x117\x86\xe3\xa3\xf0\xa1\xe0}m\xa5U\xb5\x01\xb8\xa8\xdb`\x08\xcf\xc1U\xc4j&\xf7\xaeL\xd6I\x9d8kA\xdcg\xb9\xf9\xcdg\x99T\x7f\xa9\xf2\x8c\xcb`+\xdd\xfb\xe7L\xde\xed\x89i\x16\x84\x92jn!/\x9b\xb4\xdc`\x1a\x18\xefQ\xe3\x1b\x9fT\xaf\xb9&b\x02W\xba\xd7\xcf\xe6s\\\xb0\xa6\xdaZW\xed\x7f\x92\x8c\x94q\x9d\x97#\xe6\xf5\\\x92d\xe5\xfb\x97\xcd\xd7ns\x13\x1fL@\x93P \xa9\x18\xdb=\x81B\xf7\xf2\x84\xe5\xaeu\x1eq+x\n~\xdc\x1fc\xeb \x95\xdf\x15C\x1f\xa9\x0c\xfd\x9dRap#t\xa3\x8e}A\xae\xb4'\xdb~\xba?\x94fm\xf8\xd3'{\x03\x86M\xb6O\xb7\xcebw\xb0\xf7\x9d\xf9\xd3\xff`s*q\xbfw\x07\xfeJz>\x8c\xe5o\xe8;\xae\xe8k\x97\xbcv\xcfF]_\x9d\x850\xb8N\xea\xd5\xf3\x92\xccIV'qZ\xc11xI6K7s\x82&`U\xbc&\xf7Y\x9cx\x8d+\xb6`\x03\xc4z\xdb\x14yd@hB\xe7\xbe\x81Pm\"p\x9d9\xbd&`G]XML\x01\xecX\xf5\x1e\xb0\x8cyTA\x8d\x177,\xfc=\x9b\xd1\xb6&\x9a\xd0g\xc6\xcf\x06\xd2\x1b\xcd\x9a\xe5\x99h\"\x88\x01\x8aw\xaea\xe0@\x95c/\xf2\xb9>x\xa7.\xcb\xc9\xef\xcc\xbf~\x85\xdb\xbdd\xe8\xb2,\x1e\xf0\xe9]\xc7\x97,\xb7\xf2_N\xdf\xbe\x11N\xbd\xb3\x94\xc4\xe5\xf3x\xb6\"6\xbb\xd6**\xd2\xcd2\xc9\xaa\xa8$\x8bJ\xf9\xb0cB|\xeb\x9aQ\x1eT\xc2R\x9b\x17J\x10\x97z\x95\x18\x92\x99\x9c\xa0X\xd8\x19\xe0<\x9f\xe1\xf0X\x14]\x12\x84\xdd\x19,TX\xf8\xd7C\xeae\xddf2\x84;\x01\xd3f\xba0\xe0\x97~JB\x8c\x9a\xb6\x07m\xd0i\n\xeb \x01N\xd5\xb0cI\x81\x931MM\xd3X\x13\xf2>\x08\xf5\xdf\xad\xf5\xdf1\x9cN\x08~\xc7\x8f.$\xec\x85\xb6~\x9c\xa6o\x17A\xd8\x8d\xf9n\x06\xb55k\x9b\xbc\x11\x1a\xa6<\x17qE^\xe4\xb3 \x9clCi\xf8\xf0\x07IfW[\xa1\xe5\xbdE\xa1\x82\xfe\x8b\xa4\x9aQ1$c\xec\xaa\x86\xebmj\xf3\xd5y\x1d\xcf\xca\\\xcb?\x8b\xb2\xce\xe7$\x15\x94\x86W\xefGE\x01\x854\x9e\xbb\xe4E\x86\x8eos\xdc\xac]b\xf4mv\xd5\x1b&\xdb\xb8\x1d\x8b\xf2\xa5\xee\xc7\xa2\xb8\xba!\x8b\"\xcf\x8a\x9e\x07\x87\xc9\x16\xb4[\x98\xeb\xa0[\x8fc\x1c:D\x91#\xb48v\x882\xac\xf2\xe6\x8e\x1e\xe6f\xb4>\x1b\xa283D\x9d\x0f\x9c}8D1(\xd2\xfd\x00&0\xeb%\x13\xb3\x9d\xe6\xa0\x90^\xc2N\x083\x8b9\x94pl1\x1cd\x8bE\x92\xa2{W\xff~\xde\xc4\x8fT(\x8c\xbe\xee\xaa\x1d\xb0\x0b3\x17\x19R\xdc\xb1]\xd2\xa3E\xfa\xcak9\xc66}\xd1\xd7^\xf2\xa6U\xc2\xa5\xaf\x89\xf1\xe3\x9dy\xf9\x0b^\xdb\x91\x97?g\xebr\x99\x14B\x97\x87<\xa7\xbe\xf25\x8b\xe7U\xd7\x1a\x19\x1d\xb8\xc1\x13\x89\xf8Ibd\xfai\xad\x13tc\x0e\xb1E\xbc\xd5\xbe\xa6\xffl\x04\x9d\x0b1fN\xed\x97\x18\x91\xd1\xcck\x8c\xe03\x1cy\x8c\xdb\xc0?\xe1t\xbf\x9b\xfa\xbd\xcfZn8\xf7\xa8\xb5\xb4\xe2\xd2\xfc\xbe\xe6\x15K\xbbY\x19Rnf\xfe\xd6\xba\x83\x83\xbd\xad\x93\xbb?\xd9Z\xfe\xdfZ\xfa\x1f\x18\xabU\xf6W\xdf\xdc\xb9\x10a\xe2\xc8\x0d\xfaOy\xa2\x9b\xd9\x03TAE\xb3\xb8\xa87%9\xad\xe3\xd9\xe5\x872\x9e\x1186\xbd\xe1\x04\x9d\xfe\x1b\xcd\xf2\xac\xaa\xcb\xcd\x0c\xdd\xdf'\xecYEkR^C\xfan\x06\xec\x99\xe5\xaaA\x1fx+k\x05\xde*Y\xe0\xad\x92\x05\xde*ww\x03\xc8\xa6e;\xf0Vi\xe0\xacqpkRU\xf1\x92`\xae\xc6\xbd\xb3\x90\x99\xd0\xd4\xad\x93J\xa7l7\x11\x8c\xac\xb9\x8bW\x9dUC\xf5\x05\xcf\xedC\x8f`\xf5\xa9\x02:\xfai\xd8q\xa8\x1a\xad\xf5\xfb\xed\xf12\xa9^\x96\x84\xa47o\xe25\xb1\xe7w\x90\x86\xe4S\xd2\xf2\xc7\xd1\xae\x1d;\xc4\xa5\x0b\x9d\x91\x80\x97Q\x92\xcd\xc9\xa7\xb7\x0b\xca\xa5\xfc \xee\xefS\xda\x9d\xcb\x87Y\xf30q\x0d=)WZ4BX#}$\xb1\x12e\xf4i\xf2\x1a\xb9K\x17M?\xc7:\xb80 \x1dX\xe5\x85\xa0f5\x0b\xc1\x13\xe7\x05\xfe\x10\xf9\xf8^\xb4\xbf\x98\x89\x90\xb4\xd5\x83j\xb6\"\xeb\xb8\xfb\xb4\xd5\x88\xf2\xbc\xdd\x95\xda\x0c\xef\xe8\x946\xa7\x1f{\x82cg\xfd= \x9f\xe2u\x91\x12\xefl\x0c\xc6v\xc8\xf7\xc3/ \xc3\xadW\xff\x96*X$G\xc6\xedp\x07\n\xda\xfe6B\xf3\x86~03\n\x87\x8cG\xf9\xc3`\xef\x8c\x9c\xed \xc5T\xef3r%\x91>\xb9F\xab\x8f~'\x1d!TP\xdd~E\xb1g\x90r\x97\xa4\xca\xd3+\xe2w\xb5\x82\x96}[G\xf3\xa4\x8a/R\xc6]-\xe2\x19\xc1\x00Q\xdd1\x84\x18]\xfb\x92<+\x92\xeaC\xbc\x94\xd9C\xfd:\xd0G)\x1e\xa2A\xb34!\x99\\\xc1Nt\xb7\xdfL\xcbxh\xd62\xfah\xed\xffm\x80\x91\xe4\x1e\x05\xba\x8a\x82\xa1\xd4\xa7\xf3\xa9\xc4[\xad\xb7A\x8a\xbb\xf9;\x03SY\xfa\xa9!\x8cb\xe6\xef?2\x06Q\\\x0cEP\xd4\x86\xb0[17\xf9'\x86\x00\x8a\x99\xff\xad\x8e#^s\xbe\xb7\x0d\xd8\x1ce\x0d48\x94\x82A\xae\x06CL\xe5\x8f\xe8\"\xc9\xe6~\xb6I\xd3\x90\x7f\x16\xf0X\x1f\x14\x9f1m\xad\xd2\x04\x7f|\xba\xb9\xa8KB\xdf\xce\xd5\xb7\xe4\x13\x99mj\xb4\xd0\x11\x7f\xd3\xc7\x9d\x18\x8fi\xebA\xabB\x13\xf01\xed=\xa4\x15\xdbJd\xe5g\xc82\x85\xb0\xb3\xe1\x87M\x92\xf2f\xae\xa2w\xcf\xde?{}\xf2\xe1\xe4\xfd\xf9\x0f?\xbd\xfa\xf1\xc5\xc9\xfbS\xd3f\x82#Xi_\xd0\x0f.h\x9b\xef\x99\xd4\x84\xed\xaa\x0f\x10r$-X\x9f\xfd\xdd\x90\x17\xaf\xe6\x13Xc\xe2\xfb\xf6\x86\xc0q+-\xc8\xac\xd1\xe2\xf1\xffY\xd8\x17\xfe\x00\x9d\xfc\x98 \xc5\xfe4\x99\x8e\xdao [\x14\xa5\xbd\xcbm\x17o*n\x0d \x84`\x1d(.\xe8y4\x96fe/l\xf4R\xc8\xc3xt\xef{\x83\xbe\xbb\x94\x08WRi\xcf\x02\x88\xd7\x06\xed/\x89Vy\x85\xbe\xba>\xff\xf3\x082\xfc#@ 3I\x80\xbf\x17\xbf\x8e`\xca\xc5\xdcY\x9e\xca\xe8(\xde\x84\x8a\x13^p\x86_^\xc4\x15y\x17\xd7+\xfe\xa9\xfcy\x04T\xba\xb3/\x80\xaa\x03\xc9\xc7\n\xca\x16e\xd3\xde\x80\xd01\xfc\xe9\xfe\x17\x98\xb8l\xadW{\xb2\xf7h\xdbO\x0f\x1fn\xad\x1f{\xb27` \xf4\xef%\x9a\xa9\xbf\xee\x9c\x1bG\x9bdv\x01\x89\xb8I \xd5\xeb\xb8\x18\x08.\x9e\xc3@\x84\xf0d\xc8\x1dX\x1a\x0chu\xbe\x9b![\x83j\xc8W8\x15\xedj\x87$\x82\xa1\x1fj\x9d\x85\x17C\x9e\xc42C\xa86h\xb4\xe0\xe5\x0f\xf6\x86\xdc\x81\x87Y2E\x14\xbd\xf6I@E\xc1\x02\x8d\xb6\xad\xaa\x1a\x11n\xfdP+5\x89x\xeb\xda\x81\x8b8\xda\x87\xda\xb7\"\x8e\xf6Cm\xc3\"\x8e\xf6C\xed2 o\xf0\x87Z\xafm\xe1\x0e\xfeP\xeb\x98\xed\x94\x08A\xb9\x00\x1e<\x80;\xf9\xb5\x98\x98K\x82^.\x12\xf6b\x98\xcdd,\x92g\xf1'\x99\x93\x8b\xcd\xf2GrE(\xe7\x98d\x8b\xdcR_\xde\xfaO-\xael\xac\xe2\x9f\x93\xaa\xce\xcb\x1b\xb3\xd5\x9a(\x8cy\xb07+|s\x1d\xaa\x16\xcc:|.Y:\xdb\x07U\x1dSi\xc46\xd4\xc2\xb5\xbd\xc6\x0c\xc3\xd2\"\xaf\xf8\xa1$d\x82\x9b\xea\xdc,4\xa9\xa5Z\xe5\xd7/\xe8\x02\x9a31\x89\x12\xa7\xa93\x1c\xd8\xd2Q2M\xa5 FY-h\x91&\x17\xafI\xbd\xca\xe7\xd5\xa4\x8b\xab\x9dd0\x14u\x035\x10\xbcu\xdc\x1d\xc6\\\x93RJ\x14\xca\xc1\x04\xfc\x06eI$\xb7w\xbe$5S\x16\xf0\xceE\x05n\xf3\xad\xd6\xe3\x8f\xfa\xd5Wq\xf5~\x93\xc9\xaa\xecg\xbf\xdau\x19\x17\x05\x99\xbfk\xce&\xfaT\x98\xfa\xac\xe3\xc2\x97\xd5X\x1d\xa5\x89@\x84\xe4\x91\xc0\x89\x1a\x13j\xd1\x01\xc7>fD\xd4T\x8c\xe7s\x7fz\x166\x1cp`\xf9\x80\xe3\\\xf3\x11\x7f \xbf\xdb\x14\xf3\xb8&\x1c\xec\xbe\xda\x94\xde\xd2`\xd0\x11\x87\"\xc1\xbcA\x02\x12\xc2\xd4L\xbd.\xc9\xcd\x04<\xa4L\x03h\xc7Y\x03\xbb\xee@\x14\xe4\xef\xe94\x1a\x9a\xc7\x8c\xf5m\x1f\x82z\x9bV\x87Z-1\xbbBc\x17j\x19\xaa\x8c\x8f!\x83\xfb\xb0\x0f\x13\xd8\x0bBd?\xf6\x9fB\x0e\xdfC\xf6\x14\xf2\xdd\xdd\x00\xcai\x8e73\xadK\xb6\xdc\xc1%\x17\xdd\xbfy\x94\x95 J\xf3e\x13\x86Jc\xbd\xa1\x16\xb39\x8b\xc1Fd\xe8\x90a\xcbtE\xca\x8b\xbc\x1a\x8a\x04\xb1\xd5B\xc9v\x99\xf3_{\xd9l\x0d\xc0\xbf\xcf\x82M\xbd)\x06\xce\x84]\xf0\xce(C\x7ff\x8b\xca&\xcaWX\xcb\x86*\x8dYNKx\x05P\x04dAE\\lk\xd4\x827\xb9\x83*\x13Qr\x83\x08\xd0-B\xfa\x99*\xf4\x99\x9ex\x98F\xb8d\xd70h\xf4\xde\xab\x10\xc0\x04t\x04\xda\xc7\xb0m9\xbf\xc9Qk0\xe9G\xc4\xab\xca\xad\xdcu\xb7\\m\x93P[\x14>\xd1\x9d^\x889\xcc\xc5G\xaeHy3\xce\xb1Y-R\x86<\xe2I\x98\x9d\xbe4$\x1bkU\xb1o*\xde\xb7T\xd4tL-K?\x0f\xc1\x988\xb1[0\x16D\x08\xb3\x10\x16!\x14\xe8\x14\xbf\na\x8d\xee\xab7\xf6\xb1\x80n\x85p\x1a\xc2\xf3\x10.Cx\x16\xc2\xdb\x10\xde\xb9A\xbe[,+\x11o;~\xd0\xadL,V&\xdeje\xbae\xdb\x95\xea\x16\xcch\xdd\xa7A\xf9\xa8\x00\x16C%\x96\xf9r\xb6[\xa4nq\x0fk1T\xec!*l\x85\xa5b\xb8$7x\xd3\xbf\x98.T#\x9a;\x07\xde\xc3\xff,\xe0\xf1\x9d\xd7L\x0f\xe3D\xe3\xd9\xe9\xa3>\xf9\x92\xdc \x0d1%.u-,\xe2\xff\x97o\x93f\xa4\x8f\xbfl@\xe0\x96\x11\xc4V\\\x93H\xd9\n\x9a\x89)\x98\x1b\xa2\xe2m1\x9d\x9f\x85\xa8G[H\xab+\xd5l*\x08Q\x8d\xa6>\xc2\x93\x1dC\xa9\xcc\xf1\xcfu\x88\x87B\xa2\x0dD1\x9b\xe6\xd17\xdf\x94dq\xc6\xb2\x95\xee\xec\x85\xa8=\xdb\xd9gf\xbf\"\xed\x91\xa4\x99\xfb\x0fC\xb4\x0d\xee\xb8\xbe\xd0\x9fU\xf3\xd3\x98 \xd3\xb58\xa7C\xb2\x15J\x1c0\xce\xc5'8\x82\x13\xc4\x1d?\x08\xa2y\x9e91r.Eb\xe4\xe1\x7f\x18m\xc0\xe8&p\x04\x9fD\x10\xf9\xe7p\x04\xf9\xf4\xf4,\xc4\xf8\x95\x0b!\xf7\x9c\x06!\x86\xac\xd4\x9c^\xcf\x83\x10\xdeb\x96\x17\xc4\xb2\x10\x06\xd3\xfa\x8e)\xf1\xd8\x84H\xb6\xf2\xaf\x04\xf5\x9dg\xff\x0d&K\x91^W:\xb2\xf6\x16\xe5\xb6\xd9\xf4\xed\x19\xd2\xb4\x80Y\xb8\xa5d\x19\xd7\xe4\xff$$\x9d\xfb\xa5\xcf\xd8\xd6\"\x08\xc1\xab\xf7\xbc\x10\x0e\x1e\xdd\x05\xcdr\xc9\x81e+\x18x\x9aJ{\xa7,d\x0c=\x83\xef\x1c\x1f\x0e-)\xb8\\\xcb\xbf\n>P\xa0\xbd\xc3\xcc\x06\x19\x8b\xd0\x96a$\xbbw\xff\x0d8K\xe9r\x80\x87\xfb\n\x0b\xf8\x1c%\xbcK\xcc\xddZ\xdc\xc5\xfe8tt\x15\x1c*\x82Q\x89\x9b\xf4\x8b_62\xb8CV\xf0\xf0Ny\\\xc7\xcc\xaaC\xe5\xce&v\x07\x94M\xb2\x91\x87\x98\xb3\x153\x0b\xc6\"c\xde\xc3\x80\xf3\x9e{\x8c\xf7\x8c\xadi\x02m\x85\xc9\x1cw \x9b\xcbq?Ty\xe1\x87\xfb!\xec\\P2s\x12\xf1]\xa4\xfc\xddM\xc05\xb68\xa5Hs)\x9426c>\x0ca\xe7\xfc\xce\x89\xe2\xc3;\xd8\x81\xf0/D\x14Y\xde\xbd\xeb/\x9b\x14[\xc1;\xd86\x92D/\x92,\xa9V\xfe\xc3\xc3;\xc1-\x87D\x89\xb6\xd2\x1b\xd9\xde\x9d\x8c\xec\xf1\x97\x8dl\x1b?sS\x913t\xf4?7\x95\xedp\xf26\x84\xd8\x9e\x98\xd0V\xa6Tj\xa7$\x97\x92\xaf\x87\x8f\x1dB\x1a\x9b\xca\x94\xd2\xbc\x10\xa9\xc8\xc3\xef\xdc\xee\x0e\xba\xc5\x10\x15r\xa8\xdc\xb2\xc4\xf1\x9d\x8b\x83\x9b D\x9b+\x0c\xc9\xcb\xcf\x8d\x82\xeb.\xe6\x8a\xeeBj\xe2\x1f\x852f\xac\xa2\xba\xc8uw\xf8\xdd8mc\xf5\x19\x88\x81[`1\xa5\xd5\x18\x84x\x8d\x1e\x02w\xa1\xae(%\x97\xb4\xa5zb;\x9a<\x1e\xdf\xf9N[\xc2\x11\xac\x85\xc6\xa1\xec\x88m7\xfeR\xbcZ\xf28\xa3K)\xc1\xed\xefo\xb3J\xfb[p\xa4\x02\xdd$l\xb7\xd0En\xc1\x97\xb1\xf1n\xc1`\xcaq\x1el\xc1Pn=\xd0-N>\xb9W\xf7\x1fQ\xe8\xb2\xd4\xd3\x9cA|\x14\xf0\xfd\xbd\xc7\xf6w9\x9a?d\x12\xfa\x16\xfc\xa0\x1c\xd6\x81JO\x0e(\xff\xb7\xa0<\xdfJ\xe1\xffV[\xf2\x7f\xce\x99\xc4\xbb\x85%3\x16c\xa2\xfc\xdd\xd6\xf7}\xe5\x97j\x8b~-Z\xc1\xf8\xb3\xf9\xb8An\xad\xa0\x91\xee\x8c\x9c\xcb9\x18\xcb\x7f9\xe73\xef\x96^\xcfc\xf9+\xd6\xf3\xc8\x93\xe8K\xf8'9\xe2\x91\xfc\x92\x1b\x0e\xdc\x86P\x8e\xe7\x87\xa6\x8fB$(t\xf7\x1e\x8ca\x7f\xa6\x07\xc8\xee\xd0Mu\xe0\xc8\xee8\xb07\x16k\x8a[\x9f\x04}\x03\xe2\x9c\x99\x1d\x96\x81\xcd\x8a\x18\xa4=\xe8\x9bxM&\xc0\xa3.|\xfe<\x14~Q\x94V\xe8Y\x95!\x92\x8f\xfd\xdc2\xfa\xd1Q\x8d\xecVN\x94(\x8d\xb6r\xb2\xd1@\xbbw\x9b(\x8aE\xe4\xaam\x16\xdb1\x1eU\xbc?\x9c\xcc\n\xa4\xf7\xd6\x92\xd4\x82\xd3\xac^\xe6%k\xce\xaf\xd5\x8c\xae\xbf\x0d\xd0U\x83\xec;\x84\xbd4\xec\xecX|\xb72\xd8J\xc9K`\xa1\x0c\xb9\xd2\xfb\xcc-u\xa7Z$\xe8q\xe8\x16\xe0~\x05\xe8. \xc7hno?\x02\xb8\xd6\xf9\xa9Q\x13\"\xd9\x11\xa5\x06>\xb1\x1c\x1f\xaa\xd7n\xcb\x1f`Z\xf3\xfc3_\x11\x14\xef7\xd9\xf3|\x93\x0de\xb0\x1a\x0d\x0buB]\x98\xfbDl\xb0\xaf8)\xde\xd7\x87d\xc8 \x7f\xf4\xb4\xf4K\xdc\xcc\xcbm\x951\xe2\xcf\xb4V\xedeX\xf2\xaa\xaf\x08\x0fA\xe7^es\xf2\xe9W\x03\xc9\x87\xa4\xc0\xe4\xcbj\xe7N0\xf2\xb2\xcd\xfa\x82\x94\x1e\xec4\xbe\xd9p\x0c\xf7\xf7\xc1\x94&\x0d\xee\x04Lt\xb7\xde%t$\xbdkX\x83\xbb\x1f=w@\xd8\x96\xae9\xd8\xc8\xb6\xcc\x92\xc7\x916_C\xd4\xb2\xb3\xb6\xbf\x87\xf2\x9c\xa7TG\x1f\x8c\xa1x\x91_\x08+v\x80}E(\x0d\x03\xa5a\xf1\xda\xe9;\xe8f\xe1y&F\x1e\xach\x8d\xd7\x0b\xec\x1f@\xc6\xbd\xcd\x19Dm\x8bE\x0bf\xd8\x19NY\xa1\x16\xb4\x9b\xd0\x1aqKV\x025\x82\x19sK\xf0\xbb+\x00\xde\xff\xcck\x88!\xcb\xb3\xfb,\x0f0\xf3\x1b\xf3Bp\x19-\xf0!d\x91\xf4\xf1b\xb1\x83\x1b?.1\xf5\xb0\xc5Ys\x1e\xcb'2=\x91\xf0\xd5\xec\xb19\xcd\xf7l\"\xad\xf7\x1fV$s\x82+h\x8cM\xd5\\\x1a\x1a\x88U\xd2\xcd\xca'\\\xed&\x86\xbb]\x7f\xe2\x14\xd0\xf4\xc5\x96E\xb2\xc3\xba\xcc\x15\xdd\xe2\x96\x93D-\xfd\x8c\xc7]\xfc\xb463,\xb0~\x0d\x8e\xbc\x03\x991D\xc3\x06\x97v\xe6\xebvL\x16\xb1\xd2hO\xd1qJP^!\x19\xd5\x19\xe3\x88Z\\\xf5\xae\xc8\xb4\xbf\xdc6xdA$q\xba+\xfesM\xe2)\xe6BW\xc75\xc1\xf0\xbev\x14p\x0c\x1ebY\xe1\xe1\x11\xb3\xc0\x14\xd8\xaet\x81mvp3dJ\xa7\xbf\x02\xb2\xb0\\\xc6\xdb\npV\x84iq[]:\xd5\xc4\x07\xb4\x81\xe8{\xd8\x13!n8U\xfeP&d\x0eu\xce\xf3;C\xdc\xf6\n\x86z\x15\xd7\x90T\xd9\x1fj\xa8W\xa4$;\x9e\x0c\xb7\xd9\x1dFU\xa4 \x95\x18C\xd8\xff\n\x00\xee\x11\xdf\xaf\x05^'>\xb5\xd9c\xfc\xafN\x14\x19''!\x11eN\xb7M]\xb6\x154S\xcd\xac\x95m\xfb\x070\xbe\x81\x06\x8d\xd9\xfe\xe9x\xbb\xda\xdc(\x03~\x890\x0e \xee\xfdkB\xa5\xaa\xe5k\x1c\x07\xaa\xd2h\x0c\xee90\x90\x8d\x97\x18\xa0\xe6p/\xd4\x0bBH\xe1\x04\x15h\xa8\x1c\x93'\x05\x95k\x9eW\xb8\x1f-\x01\xd8\xbf\x00\x1c\xcf7eI\xb2\xad\xa0\xe2\x08\x11!w\xe8\xb4u\xfc\x15\x1f\x04\x7f\xfa\x95tG\xfd\xfeG\xccu\x14\xf5\x89\xf4\x92\xbb\x95\xb6\x9b\x00\xe6\xd7\xb0\xfbU\xe8q\x17\xf4#\x00b\x83\x87:\x97\x99\xda\xc7W\x99\x05')o\x17\x1fn\x8aQ:\x80\x11\x1b[\xd8<|\xa5\x8d\xf8cr1b\xe0\x8e\x83F\xf07a+\xee~\xe0\xe7K\xf25t\x8f\x0d\xcb\x8a\xc9\xf1\xdb\xdc\xeaW\x80\xbf\x12\x14\xe3+\xcc\x86m\x82&\xfc \x9d\xd4\x90\xb8\xb4\xf54\xaa\xadf\xe1\xbe\x07z\x13\xa9\xe8D\xbe\xce\xd9\xc4\x83\x8f\x8c\x99\xc8\x98Y\xf44\xe8\xc6\xc3\x08\xfe\x04>;\xd1\xbf\xc6,gi\x9e\x8d\xa2X\x8e\x93\xfc\xcb\xe9\xdb7<@\x1feMsE6\xfd\x1a\xe7\xab\x88\x8d5b&\xb6\x89H\x97lb\x9f4-\x84 \xce-\x81W\x93\xcc\x97k.\xda\xac( a\xfbH\x14\xd09\xfe\xedW\xc6\x99sM\x19\xc0\xba\xb9\xcf\xb5\x19\xc9\xa0R\xcf\xc9\x11_D\x8ck:h\xf1\xec\x0e\xc2\x06\xed+\x97\xda\xa8\xdc1\xb8v\xb7\x88}i\x8a\xb0\xa6+}\xe9\xe4\xeb\xf6f\x87\x85\x88\x96\xed6\n5\xb6+\x9ekN_\x89\x00b\xf8\x1d\xfba\xfd\xce=\xca\x04\x1b\x8d\xaa\x8a\xf5\x13\x11\x0eI\xa0I\xa3\x9a\x0dB\xf5\x9e\x99\x07\xb3M\xbed\x131]0\xbbV@\x9a\x8c\x11C\xd5\xdfx\xd3\x16\xb6\x1f\xb2\x0c\x1e~\xef\x19Rl\xca8k\xea\xff \xf6\xf7\xb4\xd7\xe5\xd6\x98\xbc\xa2\xb0\xf5\xcb\\\x17O,\x9cT\x99r?P\x99\xf4\xc3\xf7\xfeF\xfepE\xa0$\xf1lE\xe6\x10\xc3*.\xe7\x90&\xeb\xa4\x86|A\xc7\xcbMT\xa0\xdcd\x95g\xa3V\x0eD\xa2DW\xb9>\x87.5\x93zK\x03\x97}&\x92\x08i\x9b\x19oy\x00\xe3\xac\x0f\xc0\x01\x00\x00\xd0_\xfe8M\xfd\xcd\x97\x8e\x0fi\xa0\x88\x97\x13\x82\x0cmfm\xe56p\xcdN\xd0-\xdb\x91\xb4/\xd8\xa9\xbc\xc3Q\x03\xcd:Xv\x04\xa5}\x89\xc4\xb9\x9aE\x1a]\x85o \xab'J\x8e\x0dtu-p\x1f\x1cla\xc7]\xa6\x95\xaa\xd9\x97\x0bPD\x11\x87\xc7P&_]\x89\x99\xf1\xfe\xa8o6\x8e\xd1\xa3\xd4\xe2\x0e\x06Qdh\xb2\x8a\x99 w\\\x08J\xbf\x0e\xd9\xaa\xfe\x98\\\xf8A\x10<\x85\x1d\x9fB\xc0\xaf0\xa9A\xcb\x8c\xff)\x87M\x00\xc4\xaf\xf8\xe5\x87\xf3`\xc6\xdft\x89\x12s\xcbi\n0;\xc5\x11\xe5\x16\x16I\x16\xa7\xe9X\x80\x8d\x071-; %\xd7\x85bL]Hc\xeaQ\x8dm;l\x10\xeer\x01\xb70\xde\x8c\xfa\xdc\xcd\x86\x15\x9ck\xde\xb2;p\xd2G0\xeb\xe7\x12Q\xac\xe2\xb0(\xed+Q\x8ck\xeeO-\x91A\x9d\x8cQEa'\xfe\x04\xfaY\xfeu\xe56p\xb1\xa4\x1d\xb9\xceRTj\x99K\x95cf\xd12!2%\xec\xee\x16\x97\xf8i\xd6\x1a\xd2,\xc0\xf1`\xbc\x1dxo\x90\x8d1&}\xef\xd5\xad\xeel:1J\x07%YT\x13X\x0b4\xd1\xd3sL\xa1<\x81\xe5p\xad&\x05\xd7\x04n,Ue\x04\x9c \\\x88\xaa\xfd\xa9\xb4O 5\x0c\xf9u;By\x93ay\\<\xf8\xc3\x87\x03\xf1\xe0\x87?=x\xfc\xdd\xb6\x9f>\xde:\xa5\xe4\xc1\xf6\x91\xef\xf7\xf7\xb6\xfdt\xff\xbb\xed\x13\x04\xec\x7fIF\xca\xd6+\xa9\x94\xf9\x8d\xe2\xed\xeb\x07\x93\x1b\x95\x98,2LT\x93\x8aY5\xe9\x07\x80\xb5jq\x80Q\x99\xecm\xebV\x9d\xe5Z\x8a\xa1$i\\'W\x04~z\xffc\x08\xd7I\xbd\xca75\xac\xe2\xab$[B\x0c\"\x13E\x84Y\xbe'\xf0\x07\x19\xf4\xf4\x0f\xf2\x1d\x7fZ\xe3S].Bh\xa0\xf8\xa9'\x97\xd6Z\xf5w\x9f2\x89ep\x82^b\x84\x9e \x9f\x0c \xcf\xf3M:\x87,\xaf%DJ\xb2 %\xc9f\x04.\xc8,\xa6X\x93/&\x80\xb3\x16\xb92\x11\xc3:c6\x0d$\x1e\xc4)\x1f!\xe9\x05h\xa3P\xfb\xde\xef=\xb7V7\xc6\xe9 \x9b\xbfwS\xa2\x89o\x8b\xda\x084\xe09\xd5\x98\x9eeA0\xc0\xb1 \xab\x80\x14\x99\x90\xe1U\xa6\x0c\xc2E\xc3 ,{\x8b>\xec\xbfr~\xce\x15\xabz\x1eA\x97\x91\xc6\xca\x10\xf3\x91\xa9C\xe1v\x81\xee\xb8W\xf9\xa4+\xce\xda\xfaKM\xf8\xed\xb6\xd0\x95\xbe\x03!B\xeaWY\x88\xcep\x0c\xbae\xae\x038\x86\x1a&\xd0_\x96:\x80 \xf8\xb4U8\x82W,G\xf8_N\xdf\xbe\xe9\xcf\xdb\xc8O\xf2\xcey\x1b\xb5>U`\x88\xef\xdd@\x90Zq}\xa6\xbd\x85f\x9a7.\x17\x7f\x0f\xfbR5V\xf7\xeb\n\xdc>\xed\xde\xd1\xe91\x1d\xcd\x18\x9b\xac\xe4e\x87\xca\xf6\x89J\x91'YMJNG\xe8\x9e\x87yN*\xacC>%U\x0dI\x06\xf3|\x86\xa1\xa9\xb5\xf9Th\x91\xadh\xce\x14\xcd(\xf9t\xbb\xc9\x16\xf5P\x9e\xe9\x11\xad\x95\xfe\xb21\xf9 \xea\x8c?\xdc\x14\x84\xeb\xfbN>\x15dV\xa3\xaa\x8f}\x14\xc2\x12\xadi\xe9\xbcU\x90\xd1\xc3\xd3\xdbd,\xaf\xcc\xdc\x03\x96|\xe0\xaau\xa3c\x9e\x92\xf7\x80Y(\x92\xe9\xde\x99\xbc!!Q\xb5\xb9\xa8\xea\x12s\xc1\x80\xe7\xc9~\xa6g0\xc1\x0cXHb\x1fx\x01\xd3\x86\xb9a\xdfb\x90~\xeb@\xc3\xd9\x82\x13\x89J\x9b\x8cT\xb3\xb8 >\x91\xc9\x9f\x1e\xfc\xd7\xfe\x83e\x88\xb9\x9d\x94g{\xf8\xec\xbf\xbazP\xd3\xd0\x8a\xc1\xa15\xfdkzg\x1d\xed\xa9\xbd\x7f|\xc0\x1e\xee\xbbv?\x1fdP~\xf6\xeb\xc6\xa4wG\xa3\x95\x11\x9b\x97D\xb3U\\>\xab\xfdZ\xda\x0b\xe9\xe9\n\xcb^\x86\xa6C\xf7u\x1e\xfe\xbc/\x8e_j\xdac\x8a!;\x98\xb9^ \x0e\xfb\xf1{\xfe\x03k\xd0_;t3;M~%\xf8\xcc\x10\xb4:1q\x0d\xf5\x01\xef\xc5K\xcdpsL\xf5\x95\xf3\xc0\x15\x1f\xf0\xda\xb9\x0cA\x1b2Sh\xd2\xec\xa7\x0e\xf4\x01\xc1)\xe01\xdd\x12\x13\x84\x00\xb22q\xe1\x17A\x93@Z\xdb\xda\xad\x9f\x19V#\x86#\xf0\xf1\xee\xc2\xfb\xbe*\xc8l\x1d\x17\xf7);\xf8'/\xa0\xd4\xed\xf7\xd8\x89\x9ep\xd6p\x84\xce\xfc\x1d\xdb\x81\xe9Y\x80i\xcf^\xe43\x0cZ\xea'\x98\xca\xd0\x86B\x1b8\x02\xcf3Q\xffq\x19\xadi[\x1b:|\x84Q\x81\xb7\xaa\xf9t\x83$\x86\xfe\xef\xda\x9c\xd2$n\x92\x18c\xb6\xcf\xfd\xd8h\xe8\xa1\xe3h\x86\xe7\x9eO\x13\xbc\"\xc2\xff\xb9\x93\n\xbf\x7f\x89\xbb\xfbW\xfdu\xe7 \xbd\xdaC\xa3Kr5\x94\x93k=\x94Xk9\x98\xb0K\xa6\x82\xd2~{1\x94X\xeb\x9c%\xba\xd5e\xb3\xbd\x16}jSH\x9d\x88>\xb5\xcd~\x1aL\xf2{:\x94\x13\xeb\xb9\x18\xae\x16J\x97B&\xef\xbfz\xc6\xd3\xea\xbf'\xcb\x93O\x85\xef\xfd\xdd\x9f\xc6\xf7\xffy\xb6;y\xf0\xe0\xf3\x83\x07\x81\x17\x82\x97x\x9a\xef\xder}\xf5\xf3\xe6\x8c\xf5(k\xf7\x9e,\xf0\xf0\xf6\xec2\xb4(x\x03&2M\xe2\xc7,_\x7f\x87\xebGk\x00\xe0\x17\x9c:\x04\xef\x0f\xf2\x1d#\x87\xbd\xe7\x1f\xf8\xa4\x07\x94?\xaf\x8d\x8a(f\xcd\xf1MI\x16\x06K\x0e\xa1\x91\xec\xce\xdf@\xdbE\xc1\x8b\x00\xbc\x86a\xa7\xd2^\x08\xda\x83I\x14\x94\xc8i\xad\xcb(\xa9^\x96\x84\xa47o\xe25\x99\x07~e\x0d\xeeN\xfb\xc2\xb4sJ\xf6#?\x93\x14\xd3~1\xaag\xe2\xda\xc20\x05\xd1\x04\xd6\x9b\xaa\x86\x0b\"Y8\xf0)\x9a\xdc\x7fO\x16\x81\x913U\x0bk\xc5\xe1\xfe\x98\x8f}\x02\x0e\xd9A\x16\x1b\xbc\xa3_\xd9,\xcamW\xa4\x14\x8e\x0b8B\xb1\xdc\xdek\x81\xa1\xb7\xf7\x1c\"E`\xd8\xee)\xf3\x9b\xb5en\xa3\xe5\xca\xf1\xbe\xca\xed\x02\x85\xb6\x96\xd2\xae\x0b8\x86\xdc/BH\xa9 gL.+\xca\xb8\xdb\x01\x8e, =-\xec\xb5A\x15X\xe6v\x88\xc0\x18\xd4\x01\x8e>\x0c%\xae\xdc>p\xc5!\xd0\x1f\xc8\xad\xd7V$[6\x91\xc7\xac\x9d\xdd8\"\x03\x12\x90\x95?\x0f\xe1*\x84\n\xcd\xbb\x1c\x16\x029\xa1M\x9aR\xb6\xeb\n\x8e\xc1\xbfA\x91y.\xfc\x07\x19\x9f\xe8/\x05u\xf1o\x02\xc62/9\xd1\x1dV\x93q\x99\xf6_\x06%\\)\n\x8c\xc6\x88\x80\xee\xa9%OhD\xe9(Bh\xe3_\x850\x0f\x82\x88+\xad\xe0\x18\x96\xf2\xef ,\xbb&]N[\x0ddl\xa3\x11\xbb\x0d\xb6\x00/\x8c\x051l\x01f\x18 j\xb0o@\xe0j\xa4\xa5\xc6\xc5\x98\xd3\xa9\xe9\xa9\xa2\xdeZ\xe7W\x84\n3\xb0t\xc8\xfaE\xf7\xefEK\x1b$\xa4\xe4\n\xd3\xdf\xb8-\xc77\x1c\xae\xd6\xca\xb63\x0b\x84\xc6\x89\xee\xca+\x14R\xd3f\x96\x17\xa12N\x91\x1b\xd0\x9acT\x14\xb9\x94W\xd6\xea\xb7\x81\x03\xe8\xdc\xce+\x10\xc4l\x9c\xc5\xb6Z\x84\xfa@\xab\x005\x15iST\xc4\xf5**\xc9|3#\xfe\xd6C\x00\xf52\x96ytNk\xbc:\x9d\xd6nA\xa2h\xc1\x8c\xfd\xee\xfb\x08F$\xa55\x15>hU7\xcc\x9d\xe4\xb9\xb2$S\xb5'\x7f:\x82=\xd4U\xec\x85\xcdmn\xe0\xd7AG\x1cv\xf2\xa4\xd3\x15q\xb1\xe3\xd7\xd3\xcc\xe1\xb2\xbf[\x86\xe2\xf2\xe8\xca\xad_\x8f1\xb7\xb9\xf5K\xe1\xa5q\xd1\x88\xe4\x17\xd6o\xed7\x12\xdd\"p\xc9\xc6\xb5\x81\x95\x011\xbf5\\\xf8\xf7\x9ejd\xb0W\\\x80T$\xbc\xd7&23\xcfg\xcf\xe3\xd9\x8aL\xe0\x9d\x1e\xb5\xe3\x8b*O75I\x167\x13\xc8\xf5uf)\x89K\xde\x8c\x9b\xd2\x85\xf33;\\\xf1;')\xa9 \xbb\x8a\x98t\xf1\xf7\xdd6\x91-\x94\x16\xcd 6\xa8x\xf4\x93TE\xf0 \xbc\xd5W\xba.\xe3\x82\xd7H\xf45\x96\xa4F2n0\xbfG\xdd\xf7\x04b\xfd[\xf2\xa9.\xe3Y\xfd\xb2\xcc\xd7\xd8\xc8F_M\xde\x06\xb9.\x87r\x19x\xce\xee\x920\x81\xec0\x88W$\x9e\xa3\xa1\x87}\xd3<\x9b\xcdHQO\xc0\x8b\x8b\"Mfh\x8f\xf3\xe0\xe7*\xcfBP\x9f\xdc\xc4\xeb\xd4\x1b\xde/\xc3\xf47\xcd\xe3\xf9)\xdaF\xef\x98\xe3\xaf\xdd:\xdf\x0c\x8a\"\xe8^\x84G\xf6\x80\x91\xce\xb6-_K\x02_\xc5\x0b\xf2c\x1e\xcf\x07=\xb4F\xe1-\xc7\x19#\x0fH\x97\xe1\x1dcF?\xe4\xe8\xa42\x81\x99\xbe\xaa\xb8\x1f\xf9\x8b\xfa\xc9%\xc9&\xb0\xe8\xd3\xa5\xa0k\xb9\xc3\xa7\x08G\xf0\xaa\xaf\x8a\xfc\xd9\xaa4\x17*V\xa2^\x0f\x10\xf5z\xa0cp\xd0\xeeD5J\xa9{\xe6FcMZ\x1enm\x0ds\xf0\xed\xf6\x9f>\xfa\x02C\x1a\xf5\xcd\xaf\xa0Z.\xad\xeb \xdb\x1a\xec\xc0\xb0\xd1\x0e\xe8\x8fI\x93\xc29\x17\n\\3\xba\xf6\x87\xc1\x14\x95h\x12\xa7Q!\x99\xb5\x94 ^1\xe8\xa7\x85lv\x1c\xadI\x1dS\xa4\xe6\x7f\xb24\\6\xe5\xe6f\x1b\xe5f\xdeUnn\xacZ\nf\xd0\xd4Isk\xfb\x08T\x0dl\xfb\x16\x1a!\xd8\xe813\x88i\x9b&\xc3$\xb5\x08;\x8fH\x88\xabL\xb1m\x89\x003\xf8Vhn],\xdag\x98\xee\x04\xb7\xc3\xf0X7[\xf0.\x80\x1d`B,8\x82Y\xcf\xfe\xa2[\xa8x\xcd\xf8\x1d\xfc\xc0\xdfca\xd89\xfb\xf4\xcbm\x08\xb3 \x88\x10\xd6n:\xd7i\"\xe5\xe8M\x08\xbf\xdc\x062c6\xe9\xf8\xa78\nb\x887I;\xc4\x97\xfd+\xe0_624\xe5\xb8\xed\xb8A\x0b.\xa4\xa3\x8b\x81\xa0W]\x13\x89\x94`\xfeqH2h#*\x8b\xbdT\xb9\xe0)(\xe6\x1d\x1d\\\xb5\x9bU;\x9b\x18'\xd1\x9a\x94K\xf2\x82\x90\x82\xae\x98E`\xba\xb5\xc5n\xe2\xad.\x98\xac\xdci|\x16\x04!\xcc\x18]\xa2\x84J\xd6\xe2\xba\x9b\xa9D\x96M\x08\x1eV\xf3\x02\xfaM\x9fG\x10\xc5Y\xd6i=\xc1XTc\x0eu\xeb\x19\xd9z%e\xf7\xdf\xc8\xd8T\xfd\xf5+\x1c\xd8\xf9\xd0\xadl\xd2\\\x90\x8e?&\x1b\x9b\xf0Qgei9+{\xd9\xd6q\x1d\xec^\x82\xe2\xbc\xec8\xa6O\xcf\xec\xea\x9d\xfe\x1d\xa2E\x1c\xe9wC\xa9q\xd2\xb1]+\xa3\xaa \xb3\x10\xaa\xa1})e\x90\xfey\xe2@\x84\xdd\xb4}\x9bi}\xa6,h\x19\xc9\xa5{\x1d\xcf\xca\xdcO\xed\xa4e\x94.E\xe0]\xe3\x87j\x0bR\x03\x0d$\xf2\x0e9\x1dv\xec\x18P\xb4\x04\xea\x8a\x88s/\x0bac\x10\xb3\xb4O%!\xd64d5\\\xfdoJ\xf6oB\xc9\x9a\xa4\xcd\xa3(\x99i/\xd0\xd1\xc6z\x1aa\xda\x08\xd2\xb1qC\xd9\x122d\x06NK<\xdd\xb4w\xf4:\x9f\x93T\xc0\x9d\xedjZ\xc7\x80\xeaN\xbbY\xe5\xed\xed\xbbx\x14\xe3>~\xaf\xc5\xff\x8f\xef5\xfd`\xcc.*\xd2T@\xdf\xf3l\x95\xa4\xf3\x92d\x13]\x8cq\x16e\xb0v3BM\x86l\x95\xe4\xe1&b\"\xca`\x0b$*\xca\xbc\xce\xff\xca\x9fgp\x8c\xbbe\xd3\xde-\x99R\xab\x89P\x8a\xc6\xc4W\xec\x99\xbf\xa7\x04\x8c\x08|\x12\x89\x99i\x94\xcb\xc6\xd3T\xb5\x84e_Ok\xc3\xa5V\xab\n\x1cAB\x913\x13\xa3\xd1\xba\x19t=\xf9~u\xc2\x19\x0fY\xfcm\xf8\xcbC\xdd\xcbJ\x98\xd7i-\xe8RA\x90\xb5\x0d\xcfTM\x91 \xf2\xae\x17i\x9d\xb4\xf6\xcc\xb0M\x86o-\xf3\x9cR\xc1\xdc7\x9a\xba\x81\x8d\xe8t\x1c\xc9I\x08S\xf3hd\\\xac\x11\x81\x89\\\xb8\xb9\xabnP\xf5\xb8$\x19\xc6\xc2\xda\xb1\xa5\x1bB\x1b\x13[\xfb\xa0\x08\xc5dJ\xd4t\x03v\xd5\x08p\xa3\xe3L\xee\x00;K\x17O\xcb38\x86\xc4\xa7\x7f\x0821a\x8fq\xbd\xe8\x83\xc1V\xb8\xe7u\xe2\xcb\x85f\xcdl\xd2t@\x91\xae_\x7f{\xc0\xa9;\x8e;G\x17\xc5\x97\xb1;\xa7g\x81\xd6\x19FL\xccE\xed$\xd9\x04\x19\x15\x92\x81$S\xd3,*\x7fS\x9ei\xef)\xe4\xf0}c\x87~\xef\x1e\xf8\x0c\x03\xf2\xb3\x10|D\xb8\x86lN\xcb\xb3\xe0)\xe4\xbb\xbb\x01\x0b\x911--\xd7\xfbb\x1a\x18\xe0E\xa1\xd7_eu\xd8\x8e\x18\xb3F\x0e\xdb\xaeu\x03A\x945\x82cfi4Q\x9f\x1e\x888\xc9Hu\xd0\xafE\x11\x1cu6\x0dN\xfb\x12Ui\x8dA\xa8\x05\x0f@\xdd\xc9#6\xa4\x98j9\xcd\xd0\xa8\x9eE\x8e-Y\xfe\x85\x1c\xad\xd4\xd0\xe8?\x04\xfalxg*\xc4w\xf4V4\xfa\xb7\x9b\x99\xf7\xd9X\x06o\xf8\xd6\xe5p\xc0\xf1\xf9\xdf\x8b5T\x7f\xfd\n\xdc\x84\x10\xc3\x1e\x0e\x89aZnB\xf0!\xfbZ\x8b{\xc1\x88\xeck\xe5;\xc9\x89<2q\"\x99\xff\xed\x00\xf6\x0cr\"W<\x03Y\x87\x99\x94\xa2\x1bKs\xab\xf2*\x03\x9b\x1a\xb7%f\x0b\x9e\x85\xb0\x08\xa1\x08a\x1e\xc2\nMF\xd7h\xbdv\x03G\x10\x97Kt5T2m\x1d\xa0uYc@!\xabL\x0f\xe8!\xda\xfaI\xf9v\xfdn\x97Z\x141\xf6\xeb\xd29\xf2\x14\x9e.O\x9f\x06P]'L>\x14\xd9, \x86\xce\xb1\xd11LW\xe8\x90\xd5S(\xce\xe1\x08nx\\\x99\x93\xacNJ\xf2\xa1$\x84\xa5\x18\xbe\x11\x86\xf5,\xb50\xad\xf6\x8f\x0d\xa9\xeaWYM\xca\x19)\xea\xbcd\xc9\x86\xe9\x9b\xaa\xc8\xb3\x8a\xb4^\x15\xf8\xaa\xad\xe7b\xd9Jo4\xb22\xcbGl'\xd2\x80\xa10\xea\xd5\x8b\xa4\x9a\x95\xc9:\xc9X~\xbe\xcc\x8d{\x92\xa6~\x06+\x90n\xe9O\xd9x\x83\xdf-\x1a\x98L`\xe1\xf6m\x1bh\x13(\xdc>\xebCu\x02s\xeb\x97\xb7!\xda\xce3\xf6[\xa6\xbe9\xbd\x8e\x97KR\x06\x0e!\xf3\xa0 {h\xadKe\xb15\x86\xf2d\x8aY\"\xb2\xac~\x1bv%\x8cN\xea\x0d*\x8c\xael\x863\xa2\xb0\xe1\xac\xdd\xc0\xd6\xcf\x80\xe1\x1a\xad\xab\xbaL\n\x11\x85\x14\xedl\x06\xadcD\xb1^\x12\xe1&\xfe\xd6y\x13/\x99\xe3/\xc9\xea\x10vJJ\xc2\xda\n|\xe6\xdb\x99\xa9\xcc\xe7\x12\xc1\xcfW]\x91\xf8\x97|Y2\xf4\xd6C\x16\x9f\xaeQ|Qn\x8a\xda\xf7X\x87^\x08K\x97\x19X2\xad\x8e\xc9\xac*\xb5\x18\x96L\xaaF\xc6\x960VI\xebb\xd8\x9f\x8a\xb8\xa5\x93j\x8b\x81\xc3F\x0e\x0d\x93\xb0p\xb9X\x9e\x14V\x9d\x99\x1f\x8ce\xaa\xfe\xbdX#\xfd`\xf2A&@s2\xef\x19O\xe6\xbd\xf6\xc9\xbcg:\x99{kjSE1\x0b\xe97\xf1z\xc0+\x809d\xaf1\n\xbb\xb9\x16\xc6\xe2\x8d(Yf\xe1\xb2\x0c\xb9\x9a\x9dG\x08|\x94\x89\x1eV\xfbFX\xed\xb7a\xb5?\xc4\xc5\x80\x8a\xdb\xe4\x13\x99mj\x16rZa\xcf\x86\x891#\xc2\x04I\x8ay\xc7\x86]\x1aDB\xf0\xfa\xe7\xae\x87O{G*}\xbc\xa9H\xf9\x92\xd4\xb3\x95g\x8d\xc1&V\xd4\xca0\xb0%\x9d@9\\M\x0d\xcaeI)\xac,\xffP\xa8\xb4\xdb\x10\x12\x831\xb7\xf5\xd6\xde\xac\x1f6\xed\xb6\x9a\x1d\x1d\x94\xe6k\xbb\xe4*\xd9\x0b\xfd\xdbF\xcd\xc1\x03\n\x1c\x03\x95\xd4\x0d\xa0\xcd\xb1-\xbe\xcc\x1f\xe2\xa5\xbeV\xd2n3\x87c\xf0\xf87\x1e\x18\xcd\xa4c\x96\xec\xe7\xe0m\x03\xe4\xe7\xf9\xba\x88\xeb\xe4\"I\x93\xfa\xe6u>7\xec\xe2\x8d\xc1\xdb\x96\x96\x05\xbe3\x92\x12\xc6\xaf\x90x\xb6\x92\xdd\x06\xf4\xa8\xb0s\xfa\x8d\xb6\xdbNb\x18\xd8l$&\xc5Z\x12\xc7\xf4[\xdaO\xa3:^Vp\x0c3\xfeg\x00\x13\x98&gc\xcd\xc0[\xce\xb4G\xaa3\xad]\xbb\x8a1\x1cX`\x1c\xfc\x8f\xddF\x0c~\x06\\\x97\xcd\x00\x9e\x17\xaf\xe6\x81\x9f\xe2\xfd_n\xdb\xf0\xa2\x0c\xa3\xc6\x04bk+:W\xedn)PDv\x1b\x11\xe7\x98\xed\x8d\xc2\x18\xba%\x8a\xa0_\x86\xfd\xd2-\x12q\x9c\xfd\xd9Z\xe4\xccL\xdeE\xb1\xf9wQ\x8c\xdaLgg\x01\xd0\x7fwwCH\xa6\x9e\x07\xbb0\x83]|D\xf1\xa5\x18n\x83\xa9\xa9\x9b\xb0D\xf4\xecK\xb0M\xfb\x8aP\xcc\xa4\xa2)\xed\x8a\xa2\xa4C\x04a\xacz\x04s\x16\x8a|\xfcp\x81wK\xe5^:L{m\xeeyA+\xb7:\x9c\xd3\xde\xcc\x89\x9bAQ\xe2\xb31\x17\xc6\xba\x06\x06Z\x7f\xa9\xd66;\xfb\xcaj\xb0\x10\xea\xa8\"\xe9\xc2\xe0'\xac\xde\xb2\x1d\xf6-\x10\xd6\xf1%9aL\x0c\x1cQ\xb2\xc1\x1e=+\x92\xeaC\xbc\x94\xb4\xa1\x92\x7f5\x95\x9d\xf4Vw\xc0\xb2\xea\xf7\x1dj\xce\xd4\xe1\x1b\x9d\xf63^\xb3hMh\x80\x1a\xd9h\xe2v\x07*t8?s\xad\xd9\x85Ic`\xa2\xb5\xa5\xe1@\x96w29$\x99\xe9>KVJh\xa5r\x9a\x9f\x0d*\x9c$\x81\xab\xb47\xf4\xc0x\xb5l\x9a\x9f\x05\xd8Xs\xf8V,,\x8d\xb9i\xceMO\xf0\xebi\xa2W\xf2\x9b\xf9\x0e}\xc3q\x91T\xba`\x81=\x1b\x0d=\xe6\xffK\"\xfaV \xf8\x8f\xd9\x03nK\xd9\x9e*=K\xfa\x84Q(\xf6\xbf\xd5\x9a T\\u\xdf\x7f\x93\xda\xb0\x02\x9a%\xd1\xbalj\xd6z6\xc6}\xa5g\x89\xca\xb4\x12:\xd7CMW\x0b\x16.\x8d\x1d\x1a\xfa~\xba\xf03:\x17*\x88\xa9\x13\xdf\x9a\xa5\x19w\x07\xf6\xe4` \xce\xf1\x7f\x86\xa6\xe7\x0b\x85O\x85\xd14\x1f\n>\x89*2\xdb\x94I\x9d\x90*\x04\"\xee*0JPV\x7f\xb8)\x08{\xca\x14\x08\xcac\xc3I\xc3\xa4\xaej\xb6\"&\xd9\x8c\x89\x9c\x9a;\x11m\xed\x8a\xd7\xee\xdf\x93h\xab\xcf\x98\xdc\xcd\"\x19\xfcT\x1ax\xf2\x05\xd6\x92\xea\x0f}\xa5\x82\x81\x87\x0f\xf4\x87|~\x13\xa2\xb6\xb8\xbc\"\xa5a\xf2s\xaeP\xa6U\xfe\x1a\x97I|\x91\x12\x83S\xed\n\xab\xae\xea\xdapE\xb1\xe4R\xaeP\x93\xe8k\xdd\xb4k\xfd\xb0I\xd2\xb9\xb1\xb2\x08\xe2\xf5)J\xaa\xb7\xcfN\x0f\x03\xbf\xd6\x1c\x147\xe8\xaeO\x1b~\x0b\xc7p.\xef!\x95\x88\xe8\x86 \x83\xef\x8c\xc4bS\xa6\x13cd\xa3YI\xe6$\xab\x938\xad&\x80Z\xf6Ut\x9d\xd4\xab\xe7\xcds8\x06/\xc9f\xe9fN0\x0ca\x15\xaf\xc9}\x16C\xcc\xd0h\xe3\x08l85gy~\x89q\xdeuF\x84\xfd\xf9\xc5\xa8\xfd\x7f\xa7A[z\xb4\x07!T\xb2B\x0fS\xe1\x08*\xca\xf4\xf3\x1a\x12\xed(=7\x80\xf2\x83\\\xaa%\xa9%\x91}\x1f_\x07CQew>\xa8\x91U\x9f\xfb^\xc3\xa4P\x89'\xc3\xd0\xb1Y^\xc3\"\xdfds\x9d\xab\x10\xed\xfb5F\x9e\x94\xd4C\x0f\xbeWmm\xd3k8\x86_na\x02\xaf\xf5\xd5\x7f\xc66\x87t1o\xb0\x86\x10\xd7\xf5\xf3{\x17m\xca\x14v\x8f\x8c\xa6\xa1\x83\xaa\x01F\x93\xcc\x01\x03$\xcd0\xdeT\xb2\x8dm\xbcU\xec\xec{c\x18\x9dF'\xf1\xc6pdr\x1d\xc4\xcf}\xcc\x0cB\xd8\xc9\xa4\xa5\x8d\x88(\x10ql\x0e\xe1]\x1fr\x12joBx\xc7\xd7\x80\xa2\x17J\xc1?\x07Q\x9d\xffT\x14\xa4|\x1eW\xc4\xc7\xa08G\xb0d\xca%=~\xbc\x97*\xfej\xfa\xe6\xccT\xb3\xe4\xd8\xce7b\x14\xa3\xbb=e\xa7\x0ch\xf7\x02\x8e\xe0\x99\xe2\xa9u\xea\xbfR\xc8_\x104\xcf\xdf\xb7\x9ek\x9a{1B+'4\x8a7S\x12%\xd9\x80-ai\x89\xb3\x85\xaa\xbd\x8b|~\xe3\xc9\x18\xb2\x8ca@\xbc\x8b\xd5\xbf\xa3\xc6h_Z\xb4-;\x11\xb5\xd0:\x8a}\x94\xc5k\xfck9e\x7f\x9fQn\xce\xf0>\xc1M\x1e\xb10\xadX\x19&p\xe9\xb3\xbfCx\x11tn;D\xc2\x96\xeb\xb8\xcc|\xef\x9d\x80+\x8f\xd4\xcf\x9a\xc6p\xfdI\x05\xf1\xfa\"Yn\xf2M%\x83\xdb\xd7+\x02<\n3\xee=X\xc5\x15\xac\xf3\x92\xbe\x893\xc83\xd2(\xfa1;\x00~\x91!\xee\xf7z\x88\xb39\xbe.\xe2\xaa\"\xf3\xfbI\xa6|\x8b\xba\x8d\n\xe6 \x8b#\xc6\xfa\x848\x83?$\xd9\x1f\xd8\xdb\xc8\x0bB\x11\\\xebh8\xf6bG\xd5%u\xeb\x8a8\x86\x91\xb9\x1bsCy\xf2\x85\xbd\n\x8cCHJ2\xa7\xbfvH\x84\xb7\xe2'\xeb\xa2\xbe\xf9+3\xf9nH2\xf7\xe2|/>h&\xd8\x06\x06\x856\x9dgQ\xe6W\xc9\x9chI\xb5:\x99\xb7]L\xf3\x98;\xa8@E\x8ev\xf5M\x81\x88\xa2\xd1@\x976\xaf\x0d\xe0[@I\xa3:\x90.\xdf\xcdK\x03d\xa02\x058M\xb48\xec\x85;\xb6vqA\x84\x97\x8c+\x1c\x91!\x041\x18\x15s\x80l\xf2\xbd{\x90Y\xb4\xce%\xf9\x871\x0e\x8d(rl\xd6@h\"3\xc1p-E\xa9\xfcj\xb8\xa6\xcdz\xc4\xd9\x9c\\\xa7f\xa6\xa4\xf1\xc7\xbe\xa9\xc3/\xcc*@\x0f6u\xe8N\x9d\xa0\x9d\xf1;\xcem\xd2\x9e\xae\x9b\x9e~\x0c\xe1]\xc0\x83\xef\x9ct\x1e\x07\xe2\xcc\xc3M\xda\xb6\x80\x97\xe7a`\xf1\xbd\xa43\xfc\xa9\x9f\x8aM\xf9~l\x98/q\x9c\xc8&\x8c\xde\x18\xa0J\x96\xbb\xe0cP\xfb{\xc8\xdeb\x18\xec&goE\xca\x04M\x8b\x06l\xceoC\xfa\x99\xbe\xa7\xe6\x10~\x8ec\x82#\xf8\xa9\xbf6\xfd\x13\x9c\x0d\xee\x9d\n\xe8>\xc3\xc1\x02#\xa17\xf6\xab\xec\x7foHy\xf3\xb6|\x99\x97\xeb\xc0\x7f\x17\x84\xf0\xeew\xed>Z?m\xf7\xac\xcama#\xb20\xb9\x97\x9e\x80ng\xbbMV\x06)/\xdbo\x14K\xa7\x1b\xc5\\\x11\x02\xcd\xb5\x12'A\x15\xa4\xbc\xec$TB+\x99!\x12\xffXp\xe6\x03\x86{\x15\xdf\x02J\x92\xb6:\x84\xa9\x87<\x9e\x87\xf7\x85~\xc9\x82\xd3Rv\xf1\xc7\xfc\xbaa\x17=6\xb0\xca;\x0bD\x9c\xb7\x81f\x1cj75\xcc\x03N1n\xbb\xf9\xfd\x8c\xc7\xd94sj9\xc5fDi\x97,\xae\x14\x91\n*\xc6\x8dL\x85*\xcd@6\xa59*\xdb\xd0\x0d_!c\xe9\xe5\x01\xfc \xee#\xcf\xe6\xa7\xec&\x86\xce\xb2\x9a\xaaUL>\x93;io\xba\xb2\xa1j\xbawF\xc7'\xda\xdb;\x0b(1\x14\x8dz\xbfxM\xcfn3o9zL\xcf\x98\x87\xc7\x83_\xfc\xe9\xdfo\xcfv\x83\xdb\x07K\xd5\xcf\xe3)\x0bs\x81\x862> \x9e\x06T\xb6\xd8T+\xbf\x9c\xee\x9f\xd9}6\x0d*`?\xdd\xe6f~\x16]\x89\xfd\x85\xbcq\xf3sJ\xac\x97\xa1b\xc2\xed\xaf\x86\x8fo\xe0\xc4g\xc3\xef\xf3\xa5\x0d\x9b\xfd\xb3\xb2\x13\xc9\xfd\x17\x99\x1c\xe6\xd6\x0b\xc1[\xda\x02\x81\xd0\xa5O\xa5\x97j9\xe8\xccd\xba\xdb\xd4\xf7\xd0\xb5\xc6\xb2m\xac;\xb9\x1c\xb1\x85\xcd\xae\xef\xc2\xe2\xcb\xd6 ]\xca\x95<\xb6\x19\x93l\x8b\xdfPj\xbe\xa9-\xdf\xd0\x13\xe6\x9d\xcf\x1dLgy\x8a\xb4\xf4\x9d_\xb6\x1f\xd8F\x9b\xe0\xbe[\xe5\x15z\x1e\x96\xf8\xd7\xf0\x17\xcc\x85\x8e\x92s\x14T\x1c\xfap\xc9\xac\xcb\xf1E\x84O\xf3\xe97H\x9e\x138\x86\x9cb\xf4\xe4\x01\xe6\xd4\xf0\x13\xd8\x85\x18\x9d\xf0\x82\xe9F\xf5\x00\x84c\xd8\xb4\\\x99`b\xc8\xbaz\xeb\xa7!hr\xb2\xdf\xfa\xe8\x9bk\xa7\x15\xe3x\x8a!=8H\x8e\xc2\x85\x0b\xc8\xdb\xc7z)R\xb2XX\x8c.j\xe5\x03\xa8E\x97\xb7}oT\xf3 T\x98\xf4K\xfc`;\x0e\xfd\xad\x8cma\xf4/\x8a!1\xc3\xcd\xa4\x83\x9b\xab\xba.\x06p\x87\x19\xf4\n\xdcL\xe4_C\xf8\x96\xe27\"\xb0\xbb\xad\xf6\xcc\x82\x99]\xac\x9caz\x17>\xc9\xae\x99+\x96\xf6\x89\xf0\x1b\x17&\xc6\xf2\xbfy\xf80E\xdd\xc4n\x98e\x8di&i\xa2\xe6nU\x03\x82\x7flH\xf9\x95V\xc86{ &\xb3\x8e\xbd\x8ep|\x08\x03\xf6\x17\x87\xc0\xce>w{\xbbw\x0f\xbc\x8b'?\xbd\x7f\xf5<_\x17yF\xb2\xda\xcf4\xbe\xa7:\xcb\xea\xbc\\\xbf\x88\xeb\xf8_\x12\x00~\xc64\xc1=\x0b\x16F\xa5\xe8\xd8\x11<\xf8\x87D\x13\xfa\xcbiC\x89-a\x1ee\xa7\xe3I\x7f,\xe6o]\xb6\xab\x1ei\x1d\xfc\x05\xfe\x93\x03\x0d\xa8\xbf\xee\x9c\xc5\xe8\xcb\xf9\xf9\x90\x12P\xc4`\xd2\x8a\xc8B-\xf9\xed\xe3q\x81r\xff\x05\x08\x8e\xb9bC\xa9\xcdu\x10*QU\xdf\xa4\x03\x95P/K\xd14\x1d\xf6\xae\xe9\xabr\x86%\x18\x8c_g\x1b!8moZp\x16\x13HP?_%\xeb\x82\"\xd4\xe0\x17|J\x13\xd8\xd0ol\x990X6\xa0 \xec\xec\x1b\xab\x99$\xcb!\xfa\x9f\x0b\xd2\xaf\x0bL\xf2\x1f\xc9\x98\x99\x19\xb06K5\xcc\x88l\xfa\x91\x0e\xbcM\xc6mF=n\xdb\xa5\x04+\xd2\x99\xb6\x8b\xe2\xcd )\xde*\x86\x8d|Op\xc3\xb1\\me\xa4\xb4\x0f\nq\xca\xacY!\xdb\\$\xc5\x8c\xa9\xbc}?\xf3\x86\x0fAQ\xf8n\x19\xb5\x15E\xc1-\xe9\x98r\x95\xf7\xe3\xe8\xce\xcew\xa7\ni\xb7\x0f\xc5\xb6\xe3\x07\xf6{\x82f\xb4\xf0\xd0IP\xcd\xc6\x1dJ\xee;e\xf4\xa1\xd0\xdf\x1e\xad'\xb7}U\x0b]\xdf\xa9\xc7S(K\xe6\x8c\x12\x9e\x9a\xbf\xec\x9ad\x11\x14\xbb\xa6g\xae\xdd\x81\xeat!\xc1\xb0\xff\xa8\xe3\xe5\xac\xdf`[t\xe2\xfd\x0f\x14\xfcM\xed\xfd\x9c'\x99\xefi\x9c\x13\x95w\xd0E\xd8_]#\x9b\x0cid\xe3F#\xdb\xd5\xb9\xb2[\x90\x17I\x85\\!\x99S\xfc\x88g5;\x01\xf3P\x1f\xc3\xdeb\xb8i8_\xb5VF\xf5X/\xb0Krcc\x04\x9cTl\x16M,3\xfd\xb42D\xcc\xafk\x88\x1e\x00W\xeb\xda\xe7(\n\x87\x13\xe6\xd6\xb2Ku\xe2(\x1c\x8e\xe1h8\x8f\xa0\x7f\xe6\x88\xc2\xa2\\2\xa6\x92\xb15M\xb6\xdc\xf1{lc\xca;/7Qhrv\xc1\x81\xa4\xf1\x05I\xbb\xe3`.\xf2_e4\xd1\xe0h\xd6q]&\x9f\xbe2X\xc6&r\xe1M\xb2,2 \x1c\xd3\x83\x84\xb9\xfbQ\x06\xef)\x05U\xcdX=\x0c#2a\xaa\xce\x10\x7f\xe9\xc70\xe0\x8e\x8a``\x8a\xb4#\x9b\xa7\xbe\x90`\x13\xee\x1c\xdb\x8ccB\xfb73\x9e[\xc0\x15\x1c`\x0b\xcaBkn\x02\xc0(\xed\xb3-Q\xc43\xf2\x82\xa4\xc9:\xa9)\x93\xee4\xfd\x94O_\x99\xf8o;o\x0f\x83\x15\x18RX\x0d\xcc\xbeH\x8a\xd1\x93\x9f\xfd\xcbM\xfe3\xc6\x0eu\x9dh\xde\x0d H\xeb\xa1AE\xc7\x1d\x92\xbe}\xc2\x1c\x92\x1e\xe9\x1d\x92\x985\xf9#]~\xff\xd4i%\x05\xec&\x0f\x8e\x7f?=\xfb\xffv\xbe\xb9\xf7\x07?\xf8\xe3n\xf8\xf4\xc8\x93\xf7\x19\xdcp\xb6?\x15\x8d&~L\xa7\x0f\xfe>\x8d\xef\xffs\xef\xfe\x93\x8f\xf7\xa3\xf3\xff:\xdb\xfd\xe6A\x12\xd5\xa4\xaau,\xd7\xb6~\x01O\x0e\xf7\xb7\xb7\xd1?\xd8\xfe\xd3\xc3/0\xefo\xbd\xfa\xb7\xd4\x8a\xca\x00\xa9f\x95\xa6\xdd5\xb5\xec[ a\xcc\x9a\xc1\x84(\x96\x08\x95\x9a|(\xd8\xe6`\"\x14\xb3\xdb\xef\xa2\xef=\x8bw\xa3\x86\xcbbtR\x8c\x84\xc2\x9d\x18\xdc{\xe7\xed1\x16b\x8c\x06\xdfeLx \x80\x89F[q\xeb\xd7\xd4\x10n\xe4\n\xb3-\xdc\xbb\x07;;\x1d\xfd\xea\\D\xc8\xd2\x7f\xb8\xee\xc7\xc6\x8aC\x98z3a\xf6\xac:\xfd\xde\x9c\xb2\xf0\x00<\xb6\xcfP*)\xe5\xa6l\xd1\xbd\\]H\xe3\xb4E\xdb8\xad3\xf42P\x14\xd8W\xf4\x1f\x16\xd3\xa6s}\xd5\xc0\x0bG\xd5\xfc\x94a\x7f\x8e\xc1_il4\x06X\x13\x19\xe0&\x83$\x1bN\xde\"8\x98\xf9t(\xb6$p\xa4^O\xb3\x01{\x0f\xb4\x07\xb0\x9d\xd3R\xa1\xcb\xf3\xd6\x7f\xfel\xbb\x10\x03\x8e\xfd9zN\x0c\x9b\x9b\xb0!X\x9bCy?.\x92\xffEx4\xcc8\x00\x0f\x17\x93\xdf3\xf2\xe0\x98\xfeB8\x19\xc8\xeb\xf0$\x08\xc1c(\xd1\xab+.\xcf;\xb5\xd9\x9dp\xaf\xb6\x08\xc0\xa6\xd6\x1e\x9e\x1d\xa8>\x18\xcc/^\x8c\xde\xce\xf2\x80\x8c\x01\x1aW\xc9L\x8c\x86\x85\xccp\xfd\x1e\x14\xae \xc1@\xc1\xf6[\xcfnAuYT\xc4Uu\x9d\x97\x03a\xcatE\xc8\xb3\x8a\x7f,\x0buA\xd9\xa3\xca\x01z\xa2\xc8\xb5\x8a\x9e\xa9w\x8ep\x04\xde\x0f\x14\xfcN\xf1\xbf\xbc\xe5\x81*-R\xae>R\xa1\xe0r\xf9\xb9\x87a\xdf\xe9\x06\x8eVq\xf5\xf6:\x13'`{x\xb9-_\xb2d\xb3 \xcf)Bi\xfa\xdeS\xa8\xe1{8\xf8\xf6\xd1S\xd8\xdd\xad\x03 ,\xda&\xf3\xca\xa1t\xff{\xd8\x7fD\xb9\xb1=\xc5\xf2\xb1\xe5\x17\xd4q\x0c2\xab\xef:>:\xbeR\xb3\x8ebJ:?\xe4l\xca\xb6\xb3V\x91\x18\x8e\x00s\xce\xd5Q\x91\xc6I\xc6>\xa7\x9c\x1a\x87\xdd\xac$qM\xfcl\x93b|y\xca\x0b\x96l\xda%|/\x1d\xb8\xe8\xdc\xcb@UV\x91iy\x86\xf8\x98\xd1?\xd8\xef\xee\x92sS\xe9f\xcd1)6)\x97\xa43\xfe,\xec;\x92\xa2\xba\xb6IC\xd9\xe1\xc3\xd9\x0d\x99T\x7f \x9d\x9b\xd6\x03\x81\xd6\xed\xc6\x0e\x96\xeb\xa8\xb3\xa5E*gVDk\xfa%r\x9cS:\x1d\x83\xe8\xe5\xe7\xedE\xf8\xfc\x99\x8a(i\x9a_\xbf\x13\x18\x8c\x0fw\xcah\x16\xa7\xa9\xdfEo\xba7\x18\x11 S\x0cv\xbb\xb37b\xc3\x0fy\x809LK&\xcd\xecBLp\x87D\xbb\xfa\xbd\xa0\xcd}\xef\xdf\x8c\xcd)A'\xd0\x16\x9aS\xdc@m\xa7\xae\x95^#\xc7\xe0g}\xc1:\x0b!\xd1*\xc0\x18\x8c \xbe>\x062M\x10\x9f\x15\xad\xb6\x84\x02}\xc5k\xfc\xff\xec\xbdk\x97\x1c\xc7\x95 \xf6]\xbf\"P3KU\x0d\n\x8d\xee\x06@\x11MAt\xa3\xbb\x014\xd4\xe8n\xf6\x03 \x00a\xa0\xac\xcc\xa8\xaaDge&\xf2Q\xdd\x8d\x11\xe6\x90#\x8a\xc2\x83;\xb3\xde\x91\xa8\x91=cy\xd6$H\x00\xb3^\xdb\xeb\xb5\xd7\xf6\x8e\xf7\x1c>\xd6>Gs\xa8\x99\xbf\x80?\xb0\xfe >\x117\"2\xf3\xde\xc8\xac\x02 R\x9c\x1d\xd59\x12\x1by\xe3\x1d7\xee+\xee\xbdqFcp[\xfcSc\xeeB\x81M\xe2o(X%\xf9B\x8e\x97\xbe\x9cjS\xf7\xf8a\xda\x0e\xada4\xd6\xe1j\xd2\x1b^\xf7\xebc6ms\xc2#v\xf4\x88\x01\xe8t1bT\xde.\x01\xbe\x90\xa6\xfe \x9cDs\xd4\x18\xca\xf3\xcb\xa6\x0f\x13\xd2H\n\x88\x9d]\x0foX\x06\xc6\xd1\xc0<.$\x95F'A\xfb\x8b\x93\xaa7\xa8_\xc9\xb1X\xce.|Tf\x17f-\x946\xc0<e\xbe\x9e\x9e5_O\x7f\xc7|\x9d\x9b\x9f\x97q\xc5G\xf5\xc0\xe4\xa0\xd8\x82\x80\xb2\xb9\xf9W40\x12\xd8\x0e_\xe7gO\x96>\xcf\x9d\x9eg\xb2\xd9\xef\xb1\x97o\xb0\xa3\xe2\xcb\xfc+\xecG\xec\xe5\x13\xec%f\xea\x9c:5\x7f\xfae\xd3\xff\xa9\xef\x9c8y\xb2hb~\xfe\xa4nbn\xbe\xdc\x06\xb4\xca^b/\x9f\xb07\xddND\x0bs]\xb9\xb0/\x9f:u\xe2e)S\xcc\xcd\xce\xcb\"\x1d\xf6\xdd\xef\xb2\xb9Y\xf6#\xa6\xbe\xa0\xb5\x97; C89k\x86\xf0\n\x19\xc2\xdc<\x19C\xf3\xd0:\x0d\xac\xc2\xce\xd5\xddh\x14;ns\x14n\xf5\xcd6\x8aaQ\xefV\xdd\xc5Cd\xbdr\xa0\xe2g\x9cD\xf1\x02kE\xd5\x0c{\x96fI\xeef\x91zH\xbb\xf4\xa1\xe8\xab\x16\"4\x85b|\xdfb_VaU3/\x16C \x1bTS=\xfe\xcf\xe6g\x8f\x0f\x8a\x16\xca\xf7\xc4\xd5\xc50\x97\xb2\xad\xadsK'N\xbf\xf22J\x1f\xd3\x97i\x89\xe1m \x8a\xbd[\xe7\x96\xe6\xbes\xe2\x95ib\x8c\x88\x90\x19uY\xeb\xa8-\xf3\x04\xa5\x13jh\xcf\xd1\xcd\xc4+\xe6j'f\x1e-\xf5W\x8b\xc0a\x00f\x95\x9eo_\xf5\x0e\x02E(6P\xbe\xbdF\xb7/l\x9f\x9e\xc3a4\xbe\xfa>\x8f\xbe\x9b0W\xb5\xbd\x93n\xfdY\xe9\x04H\xef\xc8P\xbf{\x02O\xb9H\xc7\xac6/;\x9b,;\x99<\x13\x19\xf9\xf8\x1a\xe33\x03\x9e\xed\xf8#\xde\xee@\xf5\xd2\xbf\x17T\xbc\xfe\x11x\x19\xcf\xa2!Vt\xa6\xe2\xbb\xcc\xf62\x03\xe7@\xca\x9f0\xb0\x05\xf9\x97\xfcc\x9aY2\xb5\xf0A\x97\xb9\xf5t;oC\n\x97\\\x12h\xb52G,~f\xba\x02/\xf6\x0fhp\xf1\xef\xa9\xea\xfb\xd2\x80\xa0\x0b\x1e\xf1\x85\"\xa03\xe3\xe8\xd3\xd1\x01\xf3\x91\xfag\xd6\xe92\xc7\xcc\xb4\x81\x07\xa5\xb2\xe9z&#\xad\"\xe94\x13ef\xb2\xca\xbc\x083E\xbaDSm\xc9\xd0\x02`bA\xc5\x18\x14\x1c=\xda|\xe7);\xbe\x1e\xdcP,.\xb81U\x87\xba\xc8\xb4\xe9\xfeX\xad~\xa7\x7fc\xf5\xe8W4\xf1\x8d\xd4X\x96\xcaj\\\xf6\xb4\xc67M\xd2\x8c\xba\xe4s\xb5{\xde/v\x88\xc5\xd3n\x90\xdc\x9c\xfeL\x1a%Y\xbb\xd3e\xb1\xf9K\x06\xea\x95\x9e\x88\x14{\xf7=\xd8\xc3c\xc7\xeawM\x0e\x04v\x8c\xc5\xd3l\x98\xc1\x8e/\xd8\x99\x8c\xed\xbb\x1e\xdc\xe8\xb2#N\x9b_wotY&\xff?\x9c\x8c\xdbZx\xd14\xa8\x90yi\xfa\xfd\xbb\xc5\xb1\xab\xc0\xee\x96\x1c\xa6\x8c\x7fR\xde,kHu\x9c\x15Y\x17\xcfT\x1e\xce\xbaki0\xadm\xf0H\x1bH\xab\x95\xa8\x8a\xef:\xffV\xe9\xbbA\x0e\xe9\xcc\xa9;\xa9(\xfb3n\x14\xcb\xb7\xf8j\xc0\x92_I\xf1\xa8\xa0\x0c\xea!d[\x8f\xd7go<\xaf\x04\xa49%=(\xc0\x0e\xe8u\xb3\x8d}\x9e8=ka\x9f\x13/\x98\xd5\xe2Fj`H\xad\xbbK\x19o\xd8\x9e?1[1\xb4_L\xa3pS\x1cw\xfd\xa0\x9b3S\xfc\x13\xacN<^\n\xa2P>*=s\xd3\xfc\xb3*\xee\xe5\xd6%p#\xfe[G\xc8s\xa9+\xd4\x11\xa2\\&O\xa9;\xdc\xf9\x8c\xf8o\xf5@\xd9\x14\xaa\xc0*\xa9Kw\x03\xd0K\xean5\xb5\xd5\x9e.\xa7d\x02\xa2w\x0b\x17P\xd4\x1f\x8f\xab\xfcO\xc3i\xe4Mt\x97\x85\xb0q\xa6\x8cM\x8bs\x95\x93JR\xe3\xa7R ~\xd3\xd2\xcf\x91\xb9\"\xbc\xeb\x8cN|.\x1f\x98?2\xdb\xe9\xaa\x82V--a\xaf\xb1Dp\xc2\xd9.\xe3\xf2\xeeDH[l\x81\xc5\xf2\xa3\xcc\xb8\xdcR\x179\x00\xa2\xab4V\x99\x0d\xed\xe8XAE\x8b\xa5\x95\"=x\xb0{\x9e\xee7\x8a\xcd\xce\xb93\xa5\xe6\xe4\x1d\x8a:\n\x16\x9b\x9dlF\x9d\xc7\xe7jJ\x8bl\xe2T\xd6\xb7,\xa5C\xd3\xacT\xa3\x05\x8eO\xd1\x93D\xd4\x10D\x94.\xc3\x0d\x89\xad\xaa\x0c\xa1S?\x06ql\xca\x1d\xdaw@\x9a@\xe4\x11cg\x04\xf75\x88\xd81Od\x01\xb8\xc3\xb2a\x12\xed\x8b-#\xcai\xbb\xb5#\x1a0\xce\xc1\xac\xef\xf8\x01\xf7Z]\xd6\xdaY\xd9\xde\xb9\xb9\xb1\xb9\xb2\xb5\xb8\xb3\xba\xb1~\xf3\xdc\xe2\xea\xda\xcarK\xa2T\xd8e|\x82\x18\x86\x16G\xac8E\x92\xba\xcd\xad\xae]i\xc5\xab[\x88\xb7:\x0f\xecf^\xd9\xaa<\xef\xb4\xcd\xb0\x90\x18j\xeb&\xcd+h\x1e\x81g?\x8c\xe2\x1f\xca\x8bL\x9ed\x87\xccOY\x18eL\xa8\xf9Q\xbfX\xe2\x94\xa9\xa8J\xe6\x87l\xeb\xdc\xd2\xb1\x97O\xcf\xce\x8b\x05/\xd6zc\xf3\xe6\xea\xfa\xe5\xc5\xb5\xd5\xe6\xf5\xd6\xcbR%V\x95\x7fE\xca\x92\x8fT)\x8eU)m\xe6l\x03=`\x90WW2\xd0\xac\xdd:\xde\xb2\xd8>a\x17\xc8\xe7!;\xc3,\x8f\x16\x8cKv>\x0b\xb31!b\x146h\x80\x1d\xd6\x84\xe3J\xd3\xe2\xa1|\x1a\xae\x8e:\nb\xf8\xaa\xf5\xcaWl\xf9@\xda\x16\x877\x14\x95-\x11a\x08\xde.\xc7\xb3]\x1f\xdc`\xaf\xc9)\xf4\xc18\xd6\x9e\xed\xb2\xa1N\xc5z\\f\xe7\x1b\x8a\xee\xc7\xec\x18\xe4\xe2o\x8f\x98\xa1\xbc\x95\x00^\xd9\xf8aA\xb8G\x82R\x0f\x8f\x1e\xc5\xf7\xc8^\xad\x89_\xe2\xfa1@\xf4AG.\x9e\xa7\xad\xee\xd6\n\x0d\xae\x8aL\xe3\xbf\xb4\xf6\x95\xa5\xd2A\xa7\xf9H\xac\x1c\xc4\xdc\xcd\xb8\xc7\x9c\x90\xe5a\xea\x0f\x04\xba\xf7\x9c\x94\x1f\x9b\x9be\xea9d\xa6\x08\xf3\xc8\xd9\xf3\xc3\x01\xcb\x86\\6\x96\xf0>Ox\xe8r\x0f\nH\x80\xf4\xe9c<\xe0\xf2\xa8\xef\xfb\xd9P~\xbe\xc3\x93\xe8\x98h\xd6\x03\x81\xb5z\x8a6\x17w.\xdc\\][[9\xbf\xb8vsqkk\xf1\xea\xcd\xd5\xf5\xe5\x957\xd4\x99\x02\xed\x8e5\xbd\xe5W\x9d\xb2\xdc9\xb1\xa0\x7f\xfc\xc7\x83iu\x1b\xa6\x96p\xc8\xbew\x86\x8d'\xdd\xcb\xc8\x85\xae\xf2H\xf1e\xc0\xbeg6q\x021\x1fr\x19\xc6\xe1\xf7}\xbd&\xec\xd2\xee\xf6\x0e[\xdf\xd8a=\xce\x06\xd2W7a\xd9\xd0 a\xc5\xa5\xc1V\xd0'\xb5\xb8\xa9\xa0Jf\xc9\xab\x0bzyqmw\xe5\xe6\xc6\xee\xce\xcd\x8ds7\xcfn\xec\xae/oO\xbf\x96\xf2\xde \xd8\x92\xb4\xdc\xa7\xd7\xc5\xf4n\xc0\xedV\xd8e^\x97\x0d\x04\x99\xeb|\xfd<\x8b\xd5\xd1R\xfd\xb3\x08\xccE \xc3@\xb9\xc5\x1c9\xc3\x06E\xaa\x83?n\x15\xf8\xe2\xcc\xe4!\xe4\x9a\xdct\xb2a\xe1)8\x90\xa7\xbb\x113\xf0\xaa\xe5\xdf\x9cU\xab]1\xbaZ\x1e\x032Y\xc3\xa8l\x02s\x7fz\x81\xd9&\x16\x13\x07\xe1\xe6\xa5\x91\x7f\xb3\x94\xdf\xce\x05\xe5a\xa3<\xcd\xc4qq\xc2\xe2\x18l\xaf\xbc\xbe\xbb\xb2\xbe\xb4rs}c\xe7\xe6\xe2:\x10\x14\x1c\xe12-\xbb5\x9e>\xf2F\x9f\xef3\x1d\xd6\xa4\x0e\xb9\xf2\x00\xebB>Msk\x9a\xb3\xef\xb2\xf4U\x96\x1f=\xdaa\xfe\xf5\\\x86`\xcau\xba\x9e\x0bN\x05\xf7\xf7\x12R\x16\x8d\xac\xda\x8bO\x054\xbfqC\xe2 \x1bRw\x0bU\xbd\xf6\xa2^\xf4\xd3IVJ\x96rB\xa6\xba\xa9\x10&\xb5%\x1bg/\xae,\xed\xb4\x00k\xc5z\xbcJFy$\xbf\xce\xc5\x01\x9a\xb6\xdf\xafD\xa2\xab\x1f\x9eq\xbe-_\xd9\x81\x826\xe5xEa:b\x87\xa9\x86-\x0cr\x8aa)\x9f(9\x92\x82\xc4\x1d\x07\x12\xa7>\x177\x81\x8dc\xfdv\xfdX\xe5\xa9K3'Q\x1c\xbeu\xbc\xf5\xed/6\xde\xb2\x1a\xc7\xa9\x1a\xc7\xa5\x02 X\xadm\xb9\xa5\x027\xedr\x8b\xc2t\xb9\xe3\x84\xa7\xe2X\xb5U\x88\\/\xe0\x025~(F\xf5C\xe6\x84\x1e\xfb\xa1\x18\xcd\x0fK(\xd4\xa9n\xcd\xb9\xad\x8dK7\xb7V^\xdf]\xddZ\x994W#/\x98\xa9V\xd4c\xf3\xb5P+\xcd\x02\x94o\xa1\xb5Eq\xca\x99\xcb\xd2\xd3O\xdd\xf1\xbc\x1fv\xd9\x0f\xd5\xc8\xd4\"\x88\x115,\x02\xc8\x1b_\xfd*83C'\xdd\xd5\xc9n\xdaz%\xbeyK\xb1\xb4\xb8.H\xdd\xd2\xc6\xfa\xce\xe2\xea\xfa\xcd\xdd\xf5\xe5\x95s\xab\xeb\x13\x96\xc6r%Q6\xc5\xa8e\xa87cB\xa0\xb4<\xe3\x85:\xd8\x98_\x83)kxD+\xd8E 1\x1e_\xd2\x98\x94\x1d\x05\x15I\xfd\xb3y\x0f\x96\x9cP.4OdT\xb2\xa3\x16\xb7$\xe48\x99\x14f=\x9e\xfa \xf7\xa4u\xcfB\x03\xd5\xba..\x97W\xb2I\xe6\xab\xc1\xad\xb2\xe5\xc2|,\x0c\x0fM+\xed\x83W\x99\xa3\xdc\xac\xa2\xe7\x9a\xb8\x98be\xce\x8e\x9c\xa9\x10\xf33\xe6E\x1c\xf0\x91\x1f\xf8if\x99\xfd\xee\xfa\xd6\xca\xf6\xc6\xda\xe5\xc5\xb3k+\xd3\xce\x7f\n\xfaZ\x8fQ\x81\x10\x07\xdb\x16\xff}\xfdk2\xd0\xea\x1f\x18j\x81\\O\xbc\xa3\xab\xc9}.~wo\xd0c\xa3\x7fb\xaa\xd2\xeb\xbdq\xc9\xe4\x9c\x03\x99\xf9\xe2K\xec\x9a\x98\xc7\xd4\xfb&\xd9\xc3\xd4\xfb\xd6(\xd7yZ\xae\xc3;f\xf7\x8b\x93B\xd4\xf3Iq/J\xb8\xd6\xdd\x87\x1d\xd6oW\xe4\xeb\xb0\xd3\xc5\x02\xb7\xd0\x03~\xf4#\xa1\x11\xd0F\x1aL\x1e\x89L\x19\xf6\xa3\x1f\xd5\xe5\x01\xac\x84t(\xd7\xfc\xc2\xab1\x12\x82y\xd2\xe6\xd7\xa3\x1b\xd2\xb79\xd4\xc6\x9dI1\x0b\xcd\xee\x81\x926\x94\xfdn\xf1\x1a\xd7]\x81\x88\x1f\xecLm0\x99\xf9K:\xed\xca\xf7\x92\xcf\x1enF~\x98I\x0f\xfa\xc0Du\x17\xfc\xee\x0cs\xcdW\xd8\xdb3\xaco\xbel\xc9p\xbd\x04\xc7\xe7\xe2y\xe9\x0b2u\x8bb\x91\xd4A\xebM\xbe>\xc5V\xadaR\xd6\x8c\x8a\x85\x12\x13\x1c;\x81\xef9\x99\xf4\xe9\x8aK\x1f\x84\xd6\xe5}K\x15\x9b\xc6\xb3-l\xcf\xbfR\xea\xbd\xd6w\xdb\xa6h\x1dI\x94\xb72\x9f\xb9\x99\x81{\xac^\x9e\x9d\xc3\x98\xab5Y\x0de@U\xe6\x0b\xa9#\xe1.\xf7\xc7<\xe92\xf3\x96\x84L)\"x\xe2\x11|\xcc4*!\x1c\xf9BQ\x0b_(\xad\x0cM)SN'Sr\ni\xcf\xcfw*\x8ew\x96<25\xbe\x93\xf4\x909\xfd\x8c'k\x91\xe3M\x13a \xafk\x93(\xcaVC\x08\xc4>C?\xe9w\xc9\xd1\xf7\x19?\xf4\xb3\x8d\xc5<\x1bB\xb2\x98<\x1b.\xca\xde\xd2\x197\n\xfb\xfe O\xb8\x80Zj\xc6 7)\xdc\x16e*(is\xee\xf9\xa1\xd7\x86\xcb\x0f\xe94\xdeT\x0d\xf2\x1a\x9dan\xb5\x16%O\x94\xa5\xa6\x99\x93\xf1\xcd \x1f\xf8\xa15\x0eD\xfcD?u0&W_\x12\x87t\x81Ez\xb3\xeay\xb7\x03\xcb\xd2\x185\x96\xf2\x80\xbbY$Z\xb4\xbf\x0fY\x93\x95\x16r\xdd\xd4\x0ft?q\xe2E\xdd\xbf\xfdQ\xae\x89\xee!U\xdaa\xdd\x05\x0c(v\xb5\x8a\xf0\x91B\xf8\x13\xa7O\xe2\x9c\x19>\xbc<\xd4\x9e?A\xb2M:\nt\xe2\xf4)\x0c\xca\x0dH\xe6\xd90\xb0&\xb7c`C(\xdbc\xd3\xed{&\xa3J(iWQW6\xbc#\x89\xea&$\xe80\x91D*\x05@\x06\xd1\xdf\xfczX\x93K\xa2L$x9\xff\xa7M6\nj}\xaf\xa7\xcfzY\x93\xf1\xb2Y(s5\x89\xb5\x18\xdb\n\x9d\xacL;\x0c\nQ|/\x1e\x0d\xd9\xd6\xa7\x85\x16\xca\xa5\xcdR\x14\x12\xdc\xd5r\xfaMz5?\xddX\xdc>\xd1\x91 \xcd&>\xb2\xc1\x16\xd8\xf5\x96%\xd3b\xcb\x12\xa6*\xd4\x82\xbc\xdd\x11r\xc8j\xd8\xben\xd2E\xa4]v=\xbbA\xd2\xc1\xc0F\x04\xec5\xe6\xcb\x07\x99\x13\x94\n\xb3![\x99\xfd\xdc\xebdq\xb5\xae5:u\x9c\xcd\xcf\xd2F0\xc5\"8\x0b,\x98\xc9\xa2\x8b\xdb\xe8=gHS+NB#\"\xf4\xeb\x1c\x8d4U\x98\x1a\x0b\xfci\xb0\xc0\x81\xb7[j\xb1 7O ~eX \xc3\x98-X\x907aA\xca^c\xd1\xf3b\x81\x0d\xcb\xd5\x96\xa5So\x19\xfb\xa6\x89F]\xed\n-\xa5#\xca+$\x84d^r\x14d\x8e<\x00\x90Kq\xf5;\xe8+$\x1b\x9e\xc3\x11\x16\x81\x8a\x87\x98\xb7\xf2\x14\xf7\xeb!\xa7\xfa\xaf2\xa9\x97\xfeT:'kT\xca\xc9\xdae\xc1\xcc\xf6\x85\x8d+7\x17ww.\xdc\xdc\xdc\xd8\xdc\xdd\x9c\x90oY\xfb\x95e3\xb1-\x9f\x9f\x9e\xd1L\xca\xb3v+\x1dF\xfbe\x84\x17\xa8Q\xda;\xfbx\xc4P6\xb6V\xaf\xad<\xefH(B'&Op?\x89F\x17\xb7;BW&\xa5\x80\x90\x0c\xc4\x80\x8b\x1c\xc1-x8CV\xbe\xe4\xc4\x1d\x1c\xf8n\xd4%\x1ef\xc9\xe16\xbf\xdd\x9e6\xe3\xba\x96\x0dP\xbaN\xdee8\xb0U\xff\xe4,\xaf\xcf\xd6\xe46H$t\xae\x06\nIe\x159i\xc1 \x17T*\x939\xcfjl\x0c\x95T\xab2\xc7H\xe9\xa5\x1d\xbf#W,\x92[\x1c\xda\xcdG\x85\xa9\xac\x94\xdf\xd4\x9a\x97\x87\x95\xc2}\x8aq\xca\x93.\x86\xa9\xb9R\xebFC\xfca`\xaf\xab\x19\x96u\x9aLm|\xdb\xccET\x0e\xbbL\xd5ot\x9f.xe^?*H3\xb7P\xce\xa6\n\x8f\x93\xf5\xb2\xc8)?\xdaS\xf7Ls\xa7S\x1e\x96\xda\xba\x1b]\x98j[\x7f\x98\x98\x11B\x066\xc3y,\xa1\xb7\x10\xad\xa6?\x8a77\xc4\x9f\xf3/\xe6D\x86\x92Q\xdb\xcfaX\x97,\xd9\xa9\xf1u2\xe7\x10\xde\xeb!o\xfd\n\xaa\x17u \xcfH\x95\x14$z]$\xd6T\x96\xc6\x81\x15\x96\x88\xd7\xb9\xd1-\xe7\x05\xac[\xaa\xb5\x8d\xf3\x1b\xbb;/f\x81,\xc4hf\xdf\xcf\x86\x97\xf2\x0c\xaeG\xa6\xc8\xa8h\xc9\xe4\xd5\xf8\x8c+\x9f\x81\xc0\xb2\xda\x10^\x0b\x9a\xd5\x98N,\xb8\x96L^\xc0\xa5\x8d\xf5s\xab\xe7w\xb7V$/z\xde\x85l\x1a \x18\x16,\xdcG\x8d\xea\xb7+\xc0t\xc1\xf6\xb8\x04\x83\x94s\xf2\xd3E\xb3x\x90\xd4\xad\xfaO\xaf`\xa9\xe7\xa2d\x0bLY\xe0\xbe\xa4\xd2\x0f\x94\x98\xee\xd9\xc3ug\xc4S\\q'2}H\x90`\xd5a\xa9\x9a\xe5\xb8i\xdbS\xde\x0e\xdb'\x89t\x15)\x08\x95\xa1 o\xc3),D9J\xb4z\xbe8\xe2\xafDV\x1a\xab\x04B\xf5\xc7\x8a\x9a\x05\xcb\x967\xcb\xe2\x01\x19\x82\xec\x90Z\xe5\xe8\x08enr\x1f\x8a\xbc#\xd9\xa9\x83p\xa6v/'\xf7\\\xd3\xf1tb\x0b\xd2\xa2l\x0f \xb4\x8d\xec\xe4\x80\xecT\xfb\xcaQh\xe4\xa05?\xcd\x88\x90\xc5\xca\x96\x8b\xe7\x16\xb4\x18\x12\xb6\xa2\xa9\x84-fD\xaa:\x81\x8b)\x9c\xae\x17\xbaXIYt\xac\xe2c\xb9T.\xc9T\xd2\x95/%\x86\xe0\x1b\x9b\xa7\xc3vn#\xb9]\x9c\x17\x91\x92\x12\xeb\xe1o$\xa7S#@H\x11\x80\xce\xcb\x8d\xc24\n\xf8\xcc\xbe\x93\x84\xed\xd6\x95\xc5\xad\xf5\xd5\xf5\xf3\x0b\xcc>2?e\x1e\x8f\x13\xee:\xe00\xeb\xb1}?\x08X\x8f\xeb0\x1e\xed\x91\x19\xf2\x83\x8c\x8d\x9c[Q\xc2\xc6\\g\x9aB7\xe2;\xd3\x04\xbb\x11\xe7\x99\xce`,I\x98?\xa1W\x1b\x8f\xc1\xbf\xca\x9b\x039PF\xa9\xba(\xd7\x95T\xd0\xbc\x97^b\xed6\xbcp\xa1$\xe3(\xe6i\xab\xd3\x99\xd9\xe3_h%\x99\xf4~v\xa30s\xfc0U\x17N\xb2\x87T\x8bI\xdc\"w\xeb\xdf]\xe5\xc1\x98+I(\x08\xa2}\xeem\xc3\xa8\xba,\xed\xa8\xe46\x99\x84\xfb]f9\xe9\xba\x1d\x1f\x9e\n\x95\xb9\xcd\xec\xf4\xc0\xaf\xa3\x07\xddI\xa2B\xfdbh|u\x92\x81\xbc\x08L\x0b\x07\xb79V\xcd\x15f\x8a\\\x9f\xbb\xc1^\xab\xfes\xa1\xe9TMEtT\xa16\x18\xfa\n\xaec\xe7~e\xc6\xa3\xfa\xecL\x9f\x84\xdc\x1c\xf14\x1a\xf1)\xc5fSG \x1e/\xe1\x9b\x9f\xa4Y\xbb\x06G\xac\xb2t\xd3.V\xe4\xbf\xc9\xfc}\x82da3rh\xa2\x84\xb8 \x92D_$\x13\xa9\xeeg1\xa6\x06\xe2\x0b\x9b:\xe3\xa7\xe2?\x10\x1b|\xe4H\xa6\x8c\x95\xcf\xbd\xcf*\x97#2\x9b\xf2\xce\xcc\xc8\x89\xa7h\xa5\xd4\xd2\x91#!\xec\x7f\xddv\x1b\xaf\xd1#s\xb6\xad\xd7\x87\x0b\x99W\x19E\x84\x8a\xa2\xf0\xa5\x11A+F\xe5]\xff\x16\xfbFhD\xfc\x80\xbb\xb9\xf4,\xb0j!]\x95\xe5f\xfe\x94E\xd7\x90\xd6\xceH2\x88\xa4\xaa($\xcd\x8aB5^\xb8\"\xe1\x17\xe3\x99R/\xad\xa0\xb7]\xcd\xcf\x9a\x04)|\x9aj\x9f\x83\x89\x94\x1a\\\xe7\x8e\xe8\xa8\x0c\xd6\xd90\xaayr,\x97%\xa6x\xc1M,C\x968\x0d\xcf\xc9\xd6\x1f\x95\xe2\x80/(\x03\x90>\xeeb\x9f\xaa_\xd4\x89\xae\x97\x1eJ\xd4\x7f\x81%5*\x88\xdc~+hb\xfb\xe5W\xdd\xca\x1d\xe0VMS\xf6s_K\xc8x\x1b[\xa9\xac\x0d\x80\x93_\xcd\x1by\xb0\xa3\x0b\xcc\xb1\x83K\x0f\xde\xd4\xd8(\xcb\xaf\xe6X^\xbf\x95rJ\x1d-\xfa\x86P\x89/\xe3\xf1\xd2\x0f\xebnB\xd3\xa1\x94\xd8Vn\xe7N\xf0}~\x08(\x86\xbe\xd1\xf5\xaa[*j?\x917G\xdf\x80\x15\xa4#K\xdba\xfb$y\xe7:2>\x16\x13\xfd\x8dj\x05I>\xd3\xb7\x10\x16{\x82\x02\xf1\xf3\xa2\xfd0\x98\xd2\x1d\x89Y\xc8emj\n\xfd+\xf4D\x9e$\xea\x02\xb9Y]aZQ\x9at\x8d\x8c\x7f\x8e\xa94u?\x10\xf8Tp\xfb\xc95\x02I\x9f\xfb\xa0\xc4v\xcc\xddv6\x93 ~'\xf4\x8a< \xda\x9d\"\x93\xbf.\xb6\x9b\x04u6\n\xfdk\x1e\xbbL\x14#8\xac\xea\xa2[7\xc6\x00\xfe ,\xdc\x0d\xb8\x934\xbc\x8d\xa1\x7f\xcf\x83dB\xfe\x0f\xa6h3O\x82\x05[\x9e\x16\xfc\x13\x03\xde\x96^\xd1G\x1a\x1e<\xd4?\xf5 \xe9j\x98\xf1\xc4\xe5q\x16%\x0b2=\x0f\xfe*\x96j:\xf9\xb5\xfc#w\x8du\xbf\x1a\xef\xee\xf2/\xe1i\x1c\x85)'C%\x9f\x7f\xfbcu\x13\xee\xf10\xf3\x9d ]`\xad\xd4\x19qEg\x1b\xe2\xe0\xf4O\x91\xb7&\xa7\xf6\xf2OP\xc98[\xa8\xbe\xe2y+\x8d\xc2\xee\x1f\x1c\xff\x83\xc9\xe4\xad\xf9\x94\xdc\xed\xccdC\x1e\xb6\xfb]\xd6o\xb8$\xb0Bj\x96\xc9r\xc8\xa6\xd5\x8c\xb4@x\x1d\xa2\x1d\xcc\xd1\xec\xb2V\x11*\xa4i\x8a\xf9\x08zG\xab\xe1\x0d\xf4\xaa\x1553&Nx\\N\xdf\x01r\x95\x11G\xfcg\x01\xc4p)\x90Ws h\xdf\xa8\x92\x1d6\xebLdT\xd9a,\xa8\x85\x90\xb5n\xc2\x02\xddT\x93\xbb B\xf8\x04\xbcQ\xae#\xb6\x04n\xfaW\xb3I\xe4\xab\xcd\xff\xb9V\xb7\x0d\xaa\xdbh7\xe3N\xb7\xb9\xc6)\xa2\xce\x8c_\xfe\xddm\xb2\x0c\x97\x7fU+qe\xb8pc@\xcc\xd4\xfag\xbb\xd9\xb0\xda5i\xe7\xd3\x04\xd8L\x8a[113\x8d\xd9!u\x10N3v\xd5\xa3\xd5B\xb3\x0d\xd8\xf6S\xb3\xb6\xbc.g<\x98 \xd1)]\xf0nQD\xe6;m&=\xf5\x98\xdc`\xed,\xa2\x88j\x1e\xa0\xa2\x9b\xfa-\xfb\xbf\x90\xb5k\x82\xe7O\xf5\xab \xca\x99\x9f:&\xe7\xab\xf2 \xfa\xed\xda\xe5\xbe\xace\xf3\x85\x9e\xa4\x1a\xf32\xab\xe2M\xdf\x8e7\xf6\xba\xea\xdai\xbaH\xb9t\xe6EG\xca}\xe9x6j7u\xdba\xfb\xf4 \x12\x9c\xa6\xee\xa8N\x9c\xb0\\R\xc9\x00NZ\xc5Q\xa0\x93\xb3\xb3\xb6P\x04\x00\x11\x0bm\xaa\xc6pr\xb6\xe6\xecXB\xb9\xfe\xe9\xc5\xb3}\xcd\x01\x18c\x95T\xb2\xda\xc8\x80gk\x91\xeb\x04 `-4\x9b\x03\xb5\xf7\x834K\xc4N\x92\xf2\xab\xceHU\xed\xb4\x0bi\xa9q,\xbf}bf\xec\xd8g\x0fw\x130Tk\xfb>|op6\x85\xf3S\xb9v\xc0U'^w7_\xa2\x96\x169\x9b\xe9\x87`C\xef`E\xb9\xee\"^O\xe9\xb9\\#\xac\x06*}\x99[\xb9*\xa0\xf2\xb7<\xb7\xe6\x9cFh9\xda\\)\x1f~\x97\xf96\x03\xbf9\x0d~\xfd\x1dIh5\xe2\x87U#>{\x8d\xb5\xa3&\xfb\xbdR!:\x02w\x9f\xab\xd8n\x12\xb4[\xe2CU\x89\x08KV\xfd\xc2\xa8?\x93'\x81@2x\x81]HH\x99\x8a\x84#\xe7%\x04\x03\x89ED\xfd\x06\x9f\x9f2\xe6\x0fx6%\xa6q\x15\x0d\x83\xdf\xdf\x94\xf6\xfc\x05\x19J\xf8\x0d\x9d\xa5v\xef\xe8*\xe1q\xde\xf6\xda\x9f\xf4\xf0\xf0\xbf\xbc\x87\x07e\xb0u\xb1~\x82U\xdb\xef>e\x00\x91\x8e\xad+\xc5sE]\x96\xce\xecn./\xee\xac\xdc\x84\xd8\x86\xed A\x0df\xef\xe0\xb9\xf1j\xb4J\xa1\x04\xd0P\n\xdc\xeb\xce\xc6\xf9\xf3k\xd3\xf6\xfa\\1)8U\x89\x19\xb2\x8a\x05;\x82\x02=\xa2o\xc2=\xf7\xf3\xc9\xd3\xd7\x0d[\xb5\xd9\x1f\xa6\x91\xad\xa7\x90o+ \x16\xea\x8b1e-\xe0\xf8\x15\x8d\xe7\xd09\x9f\xfb\xbe\x91C&\x1b\x95c\xb4[xtNa\xb2f%\x84\xda\xf7C/\xda/.3\x86NZ\x93\x00\x0d\xff\xb2\x99\xc09\x8c\xf2L\xc7uKJ\xbe\xccy\xbc\xe6\x87{\x17\x9ct8\xcd\xfd\xd2\x04\x1b]-\xf4K\x98|\xc4\xae\x9a\xfc\xb6\xb5\x1b[\xf2\xcc\x99\x90\x06\xc4$\x1d\xdaq\x06\x0b\x85\xbb\x10\x1dJ\xe5\xcb\xdd\"\xd1\xacEUq\xa4\x9a`UU\x00\xf4\xb2-|\x07@\xdf\xb1+\x17\xce\xd7'W\xff\xf6 \x89\xbc\xcc\xd8v\x93(\x08v\xc0\xf5.U\xffPw\xe0\xf2[\xc2\x1d\xefp'\x82r\x8a\xb8\"\x1c\xae\xd45!X\xcd\x0e\x8f\xfd\xda\xb8\xf6\xbe5\xf2\n\x0c-'g\xb1\x97d\xaej\x9c>AR\xa34\x86\xb6c\xde(\xdf\xa0l\x07V\xac\xe8\x7f}X\xc1\xd4*\xc5\xe5e\x9cH/\x0b\xc67\xc9\xcf\x06\x9c5\x81&5\xc4\xbdLKp+\xef\xf8c\x0f{\xd8h-\xafU\xde\xc2\xcfT\xee\xe3\x08r\x1f\x17\x9e\xf6y\x8d\x99\x1e\xb2*V\xa9y\xd4\xe9\xb2\xb0\xdd\x91\x8f0\nT\xf4\xc3Ag\x8aG`\xc5\xfeG\x13#D\\Yj\xae\xe1\xd6 0O@k\xa14\x10Bi \x84\xd2\xa0\xa1\x9eV\xa6\x13!\xef\x8b\xe3#+\x9fK\xa2\xd1j\xba=\x8c\xf6\xc3\xef\xf3C\x89\x88u\x0d\xc8\xdca}\xf4:ls\x7f1\x8d&\xeeO\x8e\xa5\xf1\xd8\x19\x16O\\\xa9\xa1,\xd5\xb4Rr\xc0n\xa7\xac\x9e:B\xcc\x12\x93\xef\xc8\xa4\xa2\xf5u\xe7\xe5\x9d\x8cyX\xf65\\\xbb-\xe3\xd0\xe1\xcaA\xd3\xa4M'\x83v\xd9Q\xe6Iw\x16\xf1\xd7P\xaaTs\xd5\xf6^z\xe9\xb9\x1b\xac\x8b\x84\x98\xea.\xbe\xaa\x07N\xff\xb2Z\x95hT7\xc4\xc3\xf4\xb7\xf9j\xa4\xd6\xd8\xca\x8a\x8b( \x107\xa1\xcd\x9bYTs\xfdd\xae\x9dp\x1eIE\x06\xafs\xfaTW\xe3T\x86\xb5\x0cf\xaa95[GX\x85RV\xe4\xb2z\x0c\x9f\x92`2\x85\xe6`z)\xa8p\xa7J\x9f$\xbbh\xc2\x8f\xb1\xc9\x06\x04\x0f\x90\xcc5\x1c\x8d\xd6\x11\xf08\x13\xc4\x8c\xe9\xcc\xf9\x91\xa9\xd8\xe9J\xc4o*\xd1L4|\x9c\xf9w\xfah\x12\xfd\xd3'\x9e\xebwhT\xba\xdd\xf6\xf1\x9b\xc7\x07]\xd6b\xad >\x1c\x13(\x94#\xe9\xa8o\xe8\xa6\xa0\xa2\xbb%\xaa\xda\xf6\x1b\xe6\x18J\xfe\xdav\xba\xf0\xdc@h\x8eP\xdby!\xe7rl\x95\x9f&2\xf3\xa9,l\xac\xe2\xf7\x8b\xd0S\xe0\x9f\x96\xeb\x043\xa9Y\x03\xd7xi\xf9i;\x01\xfd;0Z:\xef\x80\xe1:D\x1a\x0c\x92\x11%g\xc7e*\x92\xa5-t\xacq\xddF5\xb2\xe8\x8b[\xb9f!A\xca\xbd`&\xec\x87\xc5Zn:\x89\x98/\x17\x92\x8cY9u\xd7-\x0b\xc8G\x1eg\xb2\xa8\x96\xac\xff\xd68\xc4@\xae(\x96\xf7\xa7\xb1\xd7O\xc3%d\xbb\x8aWP\x87\x1340\xbb\xe5\xa9\xda\x8d=\x9e\x01m\xc4\x94f\x04M\xf0\x8d\x97\xaf\xfeC\xe1U3\xe5\x97\x84|\x14\xe7\x19\xf7\xb6\xb3\xc3@\xe6#\xae\xad \xd6\xb4\xe5\xf4\xd2(\xc83\x95S;\x99\x89\xa3T\xc6\xea\xd4W\x93\xf1\xf7\xec5v\xbc\xed\xe4Y\xf4#X\xc7\x1f\x0d}\xcf\xe3a\xe78[\xa8\x02:\xc7\xeb\x99O\xab\xef\x1fp\x0f\xf7\\\xbc\x90f\xafidx\x99^\xf0U\xf9\x1fG\xf0\xe0b\x91^\xad\xa7\xd221\xbdm\xa5\x9cN\x97\xb5\x8f\xc8wTZi\xe6d\xbe\x0b\xae\xd3\xe5\x81\xbd\xf4\x12\xf3eZ\xe0v2\x13\x8dy\xd2\x0f\xa2}v\x94\x15\xff\xb8Z\xf9\xd7\x1b\x9d\xc2\xdd\xde>\x17=\xd3IX\x88\x14\xc5 \x960\xc0\xf3\xdaT\xa9\x93\x8d_\x88\x96-\xb0\x86D\xe7\xba\xec\x02\xab\x89q\x13\xbf\xcaQ^`\x83\x06,.\xb3\x9f\x056\xae/I\xa4\xae\x056\xb4\x13\x1f{\x1b\xa5{\xe9\xfa\x95\xa8r\xa6i\x1d\xbf\x18\xc3\x9e\xccM\xef$\xf5UZ\xac\xed\x01\xb4_\xd4{\xa44\x8b&\xa9\x1e^;\xf1\xbb,\xb7SgDX\xb2\xa1\x9fvY\x9d]\xd5\x08\xc1\xa9\xd5\x90\xed\x1aCv\xda\xe9J\xeb\xed\xec\xab\xac\x0f\x8f\xf8\xf5\x8f\x1e\xed0\xf7z\xbfj\xc8\xee7\xbf\x16/\xd8\x9cO3\xa7\xc2 \xe5\xbb\x83\xc1\xcc\xcd\x9b\xd2\xb9\xec\xe6M\xed\x12]\xf2)\x0f:\x1d\xe9a\xa6L\xe2\xbc\xcb\xae\x8b\xba&\xc9\xb2\xdb\xe9\xc8\xf0\x99(\\\x8b\x1co\xa2\xfdL\xff4\x07\xf6g\xe2$\x8a\xd3\"\x93\xc2L\x16\xc1\xc1j\xca5\xc0\x14\x17F\x92G8\x939\x83\xae|\x04U}]\xf5\x1a8*\xbe2\xadH\xb0\x82?\xd4\xe9\xc4p\xc3\x10\x12G\x02{V\"J\x96K\xe6\xe9\xbc\xb4\xd2\xf06<\x92I\x82.\xaby\xf6hO\x88=\xad\x84\x87\x1eOj\xcc\xa6\x8a\xdaL\xbc]a\xc5\xa0Rdq0Q\xaai\xec\x84\x84\x9c\xd1F\xfa\x0b\xf0\x9c\x04\xe0Cm\xe1\xbb\xdd\xda\x9e\xb8z\x90B\"F\x1d?\xa7\xab|\xa3\xd3E)\x19\xee\xb6\x8b.\xcc\x15\xf37\xda\x87\xe7\x1bG\xfaCi\x176\xff\xfc\x1d\xd9/\xfd~G\xf6\xbf8\xd9\xb7\xe8\x85\x9a\x13d\xce\xe0\x0b\xd3\xec\xf0w4\xfbw4\xfb\xab\xa6\xd9\xcf\xe7\x1ag!?\xb5It\xa28='\x13\xb2=\x87\xe3R10\xc4Kt\xba\xaf\x93\xb3\xa7-L\xe3E\xe5\xfb\xfa\xe6\xeeG\xa3\xb7(\xc9{gy/\xa5TA\xbe\xd5~\x86\x85&`\x13\x87\x0f\xfc\x97\x85\xa1\x93\xcc\xd4l\x8a`\xa8)\xed\x19\xcc\x04\xeaB$\xf9tlD\xff\xa6\xf5\x1e\xc2?U/\x91\x0f\xc0w\x1b\xbc7'\xb6f7\x9a\x19h\xb3\n\x03\x13\xbf\x98F!\x9e\xfc\x146L\xf6%\xe6os\xe3jwf\xa2P\x90\xdc\x80g\x96G!m?\xb3\x8c/\xbd\xc4Zz\x10\xe5@\xcdP^\xec\xa6<\xdb\xf1G<\xca\xa5\xbb3<\xb8\x7f\x86\x1d\x99\xeb|\x95+_\x0b\xad1s\x92\xaf\xd3\xd2Y9\x15\xeb\xa1/\xefF\xf9\xbd\xc6\x96\xe7d\xce\x82?r\x06\xfcx:\x1e\x1c=\x18\x05\xaf\xf6\x9c\x94\xbf|\xb2\xbbya}\xfe\xda\xe1\xd9\x13\xce\x95\xadYgy\xd6\xbftkq\xdf\xbd0\xf0W\x97\xceF\xd7\xae\x04\xa1s\xe1\xf5\xd3\xab\xb7V\xf7/]8{r\xd5_\x1c\xf0\xf3si/\xbctzu4\x9c\xf5.,\xbe\xbcvx\xfa\x84w\xc2\xcd\xbd;\x97\xf2\xde\x89\x8b\xe1\xda\x9d\xd5\xfdK\xcb\x8bc\xf7\xc4\xb5p\xd5?;\xef\\\xb9|\xe2\xf5\xd1\xe9\x93\x9b\xdb\xab\xfb\xab\xcb\x8b\x83K;\x8b\xfb\xab\xcb+\xfb\x97\x96V\x07\xee\x85\x8b\x81;\x7f\xf9\xd0\x1b]>\xeb\x9e8\x1b\\=\xb1\xb5}\xf5\x8d\xad\xb8wg\xd6\xe7+s\xf1\xb5s\xc1\xbas\xe5u\x7f\xf5\xfczz\xf5\x8d\xf5;\x9b\xdb\x17\xd3k\x17.e\xee\xe8t\xda;\x1f\xe4\xd7\x0eW\x07\xee\x89\xadS\xbd\xf3\xbb\xa7WG\x17\x87W\xe7\xb3\xd0\x1d\x9d\x9e\xeb\x8d^\xcf\x9c+s\xc3k\xf3\xbb/\xaf\x9e?5\xee\x8dv\xbf\xb3z\xbe\nw\xcf\x9f\xbe\xe3\x88\xbe\xe6O\xbe\xbcz>\xc8\xc5\xdfW\xaf\xec\x0f\x9c+\xa7b\xef|0\xec-\xa7\x83\xab\xa3s\xb7\x9cy\xef\xb0w\xe2r~mi\xee\xf0\xda\x1bg\x83\xabo\xbc^W\xde\xdf\xbcup\xcby\xe3\xe2\xad\xde\xf9\xdd\xc1\xd5\x13\x83\xd3\xab\xb7v\xf7W\xfd\xb3\xb7\xf8\xce\xac\xbf\xbe\xb3\xe8\xaf\x9e\xbf\x16\xf7\xce\xef\x9f^\x1d\xc91\xf9\xab\xe7O\x85kW\xce\xcdz\x17V3\xf7\xc4\xd6ao>\x0b6\xb7/~\x87\xcf\xaf\x8f{\xa3k\xf1\xb5\xc3S\xb7z\xf3\x07c7\x9c;\xbd\xea\x9f\xcd\xaf\x1d\xce\x0d\xbd\x0b[\x87ko\xac\xcf\xba\xa3\xd3\xc9\xb5\xed9\xb3o\xfcDv\xab7\x7fj\xe4\\qso>\xd8\xf3\xce\x0fO\xf7\xb7W\x07\xbd\x91\x9b]}ck\xd6\xf5\xe7\x0eQ\xdb\x87W\xafl\xc5\xde\x1b\xeb\xb8\xdc\x1d\xef\xc2\xc5\xb13\xbf\x9b];\x7f\xee\x8es\xfe\xdc\xa1;:w\n\xd5\xdd\xbb\xfa\xc6zt\xf5\x8d\x8b\x87W\xdf\x08d\xfdb\xfc\xab\xb7\xd6wv\xe7\xc4\xffV\xfd\xb3\xa6-\x18\x93X\x93\x15\xb1&\x87\x9b\xdb\xabw\xd6K\xf5\xd6\xael\x0d\xdd\xf9\xe1\xd0\x0d/\x0e\xc5z]\xda\xb9:\xbbvk\xef\xce\xa5;W\x0f\xd6\x97/\x1d\\\xba\xf3\xfa\xfc\xfa\xf2\xca\xdc\xea\xf2\xee\xfc\xda\xad\xbd\x13\xebw\x06'.\xed\xbc~g\xfd\xce\xe0\xf0\xd2\xce\xa5\x93\xab\xb7N\xber\xf5\xca\xa9\xb8w\xe5\xdc\xec\xb5\xcb[\x87W\xaf\x9c\xbasmt\xfa\xb0\xb7}V\xae\x99s\xe5\xe2\x9cw\xfe\xf2\xc6\xd5+sb\x8dg\xdd\xd1\xb9\xdc\x9d\xbf6vG\xb3\xfe\xea\x85\xadS\xae\xc0\xa1\xf0\xe2\xd8;\x7fn\xf6\xda\xf6\xea\xe0\xea\xfc\xb9\xf4\xea\xec\xdc\xf8\x9a\xc4\xad\x83\xb87\xbau\xf9|\x90]{\xe3\xd2\xe9\xd5[\x8b\xdf\xb9\xb4\xbd:\xb8v\xe1\xb2\x98\xf3\x81{\xb8:\xb8:\xba\x1c:WN\x9e^\xbdu\xf6\x8eX\x0b\xc0\xab\xade\x81g\xde\xf2\xac\xef\\9\xb5w\xed\xca\xb5\xb87\n\xc4X\x8en.\x9d\x1e\xf6F\x81\xd8\x9f\xe0\xf2\x85\x8b\xc3^\xb8>\xea\x9d\xb8\x98m\xde\xda\x1f_\x9d\x0f\x0e\xaf\xce\x1f\x04\xe2oq\xe66\x07\xd1\x99\xd67D\"X\x8a\x82\xc0\x89Sx\xbab\xcd\x0f\xf7\xe4\x1f\xe0\xcb#\xff\\\x0d\xe3\x1c\xfe\xda\xe1\x07\xd9b\xc2!\x0d\xea\xd9<\xcb\"\xe0\x16[\xd2KX6\xa5\xfe+\xb3}\xcb\xb7{\xeb\x82\x11\xa5\xff51Ch\xcf\xecW\xac\xafS\xf6mF\x10G7f3i\xf4mF\x90T\x01H\xef\x81\x02\x10#\x88\xab\x00\x15#\x88\xf4\x13\xb7\x9b\xbf\xbf&\x87m\xdaqLx\xbd\xb10p\xab\x85!3\x16\x06\xae^L\x98}\x95\x85\xec\xbb\x8c\xbf\xca\xc2\xa3G;L\xc5\x0d\x17\x16\x86\x10\xa9\xe1jb\xd9tI\xa3U\xe9#G\xd0\xac:3\xb7\"?l\xb7X\xab3\x93%\xfe\xa8\x8dEg&\xb5\xfc2f\xd5wd\x96#\x9b\x14\nLl \x99R\xdbSb\x1c\xc9\xa8a\xa4|G\xdc\xe9(\x99\x05\x8a\x17\x12K]\xec+\x1aIPj\x0b\x9e\xdfE6\x85\xccj=\x98`9\x98\xd6j\xa0\x11\xa4\xd0\xd6\xebET\x95\x834\x0f\x82\xd4M\xb8\xed\x81)\xfd\x0bM\xc9\xfa2\x96\\q\xbc\xcb\xae\xb7\x8a\xf6e&\x9d<\x08j\xdf\x1e\x93\xc9\xec\x8cg\x8e[k\xf5\xe0 \x88B4\xaf\xad!\xed\x84\xd4J\xf7\x9d\xc1\x80'\xc7\\\x8dn2\xabN\xc8^c\xadcr(l\x81\xb5\xea\xbc\xc6\xa7\x1fG\x9b>3\xe97\x99e\xdc\xc0I\xd3u\xf9XZ\xdc\xf6g\xcc?+\xafj\x95\x7fw'\xbb>\xde\xe8Tb\xfd\xdb\xae\xc5\xceR\xa5\xde\x1e\xf1\x97\x1bE=?\xe0bI\xaa\xfb\x9c9\xbd\x80g\x0b\xacu\x0c\xfeB`\x8f\xa7{Y\x14\x0b\xb8\xfa\x13\x15\x08\x9cd \x9a=6\xf4JW\xb3\xafV\xe8A\xf0;J\x00\xbf\xdf\x1a%\x18\xfa^CV8\xa0\x01{\x9c\xc7K\x90\x8d\xb3\xa1=I\x0b\xf8\x0c\xa0\x93\xd0\x02\x01m\xba\xd2\x9bB\"\x88\xf8Sb\x05\xf1\xdb\x90DC\x0cE\x90\x8brw\xe2\xdf\xd0\xa2|\xabQ!\"k\x19\x94c-\xd9b\x8b< k\x86%\x93\xf1\xbe\xf4\x12;\x12NAe\xc0\xb6*C\xe8\x9b\xa9\xcc\xf5\x1a{\xb6\xe1\xd89\xf3C\xe65\xbb>z(\xedG;\xefL\xd2\xf6\xf5u\x83W\x1b\xec\xa4\x7f\xa2\x83\x1c\x1e\x0d2F\xdc)L :\xc8\xa9\xa85\xb1'\xa6z\x0b\xd8w\xd9\xdc4}0\x99\xd4Q\xbe\xe5\xd2\n\xa3\x90\x0b\x02=mT\xad\xa0\xea~\x98O\x91hob =\x84^\x10\xb9{0\x86\xae\xf9\xe8F\xc11\xf9(\xa5\xfc\xde\xd8\xd6\xf3\xda%t\x0cW\x8c\x0c%\xd7K\\\xc1\\\xca8u\x88=\x11\x97\xbf0\xa7J\xb3\xc3\xa0\xf6yl\xfd\xf3\xfc4\x0e\x9c\xc3\x05\xe9}\xacv\xd1\xf2nG\xf9\xd7`9+1\xc7\x9a\x14J/\x86\x19v\x8d\xc2\xf3;\xb6\xf3\xe2\xd8\xce$T\xf4\xfc\xb1\x1d\x0dK|jZ\xc9\xa9\xa8R\x16\xa1Z\xfb\x89\x13\xc7<\xa9u\xd2{!\xd8S\x1c\xc4vI\x85\xfe\x1d&}}\x98\xd4\x93\x8b\xfeU#\x93\xea\xe5+\xc5\xa5\x8e\xfe&\x98?\xcd\x91Y\x1af\xabF|.\x19t\xeaQp\xd2\x82f\xfc s\x12\xee\xb4*\xb7\xec2\xb5\x936\x1d}\xf1\xc6}\xd1\x02j\xb9r\x86\x8c\xa1j\xaa3Tw\xa1Ws\x80(\xdb\xd4\xe6\xab/z\xb0dV6(-\xc7b\xe9b\x08\x85lo\x81\xeb\xe8\xcc\xba\x17 \xd4jB\x00\xa7<02\x15&\xfc\xb5\xc0\xf8\xcc(\x0f2?\x96V\xa7\xeb\xad\x96\xf4\x0bo\x89S \xaf\xf6j\xb3\xac\xaa\xa3\x17Q\xa4\xedZ/~\xf5\xef\x1bC\x13\x9e_\xa9Q\x0f\x0d^\x16\x1d4\x14\x06\xedF\xafj}\xb9\xa4hte\x14g\x87\xb2\xdd\xfa\xe2\x91\x1e\xab\xdc\x17\xd8?\xf9<\x12{\xcd\xfe\xbd-\xb3u!\xc8\x17\x15\xfa\xc4\x81jt\x0f)Q\x16+\xf9\xab\xad\xa8\x17\xaa1\xab\xac\xc6\xb6\x86\xe5 \x97\x86N8\xe0\xc6?\x05\xfei-/P\x94\xbdV?\xdd(V\"n\xfdt\xd5\x80Z\xf6d\xd6w\xbb\xacu\xecX\xab\xa3DWA\xf6\xaaq\xca\xd3\x054|\x99\x012}R\x1a\xa2 Y1\x91m\x999\xb7)}\xfd\xddnQ\xe8\xb7\xc9\xc2\n|92\x87\xac\xfe\xd5\xa3T\xbd\xd7\xa8\xda\xab\x86\x93BM\xcb\xd4\x81\x9e\x99\n\x8a\x95\x9b\x9a\x18\xf2\xc9'\x91\x1a\x08\x9e\xd6m7\x93\x83p\n*\xe3K\xab\x02\x84\xd7+N3\x939\xc9\x80g3\x80Ei\x83\xf3\xb43\xe1\xa5\x1b\x01\x8f\xd8k\xcc\x9f\xce\xd0\xaf\x7f\xc6\xb7\x06\xe8\n\xb7\xfb\x91\xdd}\x9e\xe0~\xd3\xa4\xc4\xe7\x9a\xf6\x04=\xd4\x93\x97\xe5\xba\x103\x04\x81!\x13\x0f\xbbS\xd3l\x17\xdc\x1a\x12[\x88>\xc2\xff\xeaR\x8f\x85\xd0`.\xd8\x9a':A\xe8g\xbfe\xc1\x9f\x91\xb9\xb2\x17\xc2\xec\xd9d\x86\xcf\x9e\x83\xe9\xb3)\x88\xab\xf3e\xf4\x00\xe8 X`\xad0\x8ab\x1e\xf2\x84\x85Q\xc2\xfb\x9fCe\xd5e\xb0\xce\xb6\xd1\x8c\x98c\xf3\x04\x9d;\xf4\x03/\xe1\x96\x90\xeeIK\x0e\x9a\xbc}U'\x9a\x8d\x86\xdc\x1f\x0c\xe5c\x13ymR\x18\xf1\xebE\x89\xc7\x93\x05eUj\x10H\x9cd\xe0\x87\x0b\xac\xe1\xa1\x92\xd8\xf1\x95\xfa\xf2O\xc9\x04\xb0\x1ee\x8b\xa1?r2\xee} \xc9_\xdfN\x17'\xccO7\xc4Y\xf5\x1a\x84\xc2\xb1\x8e\x19,\x1fL\x85\xf0\x82\xb1\xd4\xe2v\x18\xa5n\xe2\xc7\x99\xbe\x00\x98@6\xef\xda\xce\xc1oO\xe5Q\xab=I\xdb\xd1\x0b8I\xdb\xa9'\x11\xac\xb41\xec5p:\x0e\x95\x8f1,\xfc\xc4\x9dI:F\xe3!\xe8by\xb3\xe3\xc5\x8b\xa6z\x15,\xa2\xa9\x1a\xc6\x82v\x00d\xec\x9b\xe1\xffK\x9dp\xbcZ'\x1c\xcf\xe6j\xe3\xeb*6\x1f\x1c\xcf\xe6j\x93+\x8057\xa2gs\xb5 \x14\x80\xe4\xecw\x15\xe0\xf4+\xa71\xa8\xaf@sd`\xb1\x86\xd8\xfdt\xbc\xaf\xc7OG\xffE\xb4\x91\xe7\xa5\xf5E\xfcQ\xd2\xb5\xa5 \xc1d\xbc\xd6\x8c5!\xee(\xa8\xc4\x1d\xb9\xe0\x15\xe4B\xdc\x91{\xf4h\x87\x05\xd7\xdd\xaaW\x90k\xb9\xe0SK)\xa8\x866\x99\xe5\x84\x11\x81\xdf\x19aF\x115\x9b\xd5\xc5\x1c\x052\xe6(\x99\x19\xf0\xecR\xe4\xf1@HO\x13E\xec\xd2\xf8\x94\x17?7^\xfc\xad\xdf;^z\x15\xfbxKf\x93+2\x87\xfd\xe1\xcc\x1f\xfc\xde\x0f\xca%~p\xfcx\x97\xb5\xa4\x05\xc0\xd6\x96k\xd2\xd8\x1eO\xdd!\x1f9\xa4\xc9\x9aB\xbaQ\xd0\xca\xc8\x14\xee\xaaIo\xf1\xfe\xb6\xac\xf2<\x93N\x14[\xab\xbc\xbf;\xd3\xf7C\xafx\xde\xdbf!\xb8\xdb\x85\x9c\x14\x84\xa1'\xc4 \xa5V8H\xad\xc2\x81\xf3<\xc2\xc1\xd7\xca\x18Uj!\xb9=\xcdJ:\x9f\x98\xff\x94)2\xca\xa7}\xf9\xd8\x81\xc2r\x83\xebK\xe5\xb2T\xc2o\xe7~\xd2\xc4\x99SY.l4\xd2\xb9\x8a\xcbo\xf1~}\xa1\xbe\x99\xc3f\xeds\xf9L\x11`>\xa3nz\x9b\x8d\x832\x8dd\xbb\x05\xecN\x9e\xe4V\x83\xb9b\x08\xa5%\x95\x9aXx\x0c\x857\x13\x7f\xe4g\xfe\x98O\xac0bgX+\x92#i\xd0\x1e\x06\x82\x04\xc2\xab\x902)\xd0\xef\xff~\xc2\xfbuna2 \xa9|\xccx\x00\xe1\x0f\x1a\x07\xcbt\xab=\x10\xb4\xec\x88S\x14sJ\xc5\xccIo\xa7P\xcc\xb8\xa3\x04\xb5\xd6\xdcI\xa1~\xe5[\xa2\x91\x18\x06\x93\xff\x7f,\xf3\xb3\x80\xd7Z<_`\x7f\xd0\xd3\xcd\x9b\x19?\xc8j\xfb\x8b\x05_\x10\xbc\xa8\xb6c\x7f4h\xec7M\xdc\x05\x16\xb6O\xce\xcd5!\x95V/\xe7g\xe3\x83\x86\x8d\xdf\xf7\xbdl8\xb9\xd8Du\x96\x19\x15t\x8d\xf7E\xbfs|4\xe9\xa5=\x95\xbcL\x92\xc2\xc0\x11\xd8<\xa1F/\xca\xb2h\xb4\xc0Zb\xb0\xb5%k\xe2_\xea\\G\x04\x15=\x94\x89\x1a\xfctcq\xfbD\xbbS:\x07\x1e\x8f\x13\xeeJ\xcd\xad\xa6z\xba\xef\xcbL\x84\xae1:J\xbe\xe9\n\xa5\x8c-\xb0#G\x06]y\x06\xcb\xa7+;\x8c9\xbc\x997j2\xf9\xb8N\xca\xcd\xd9]h\\\x99 \x87\xc7\xa3\xb6\xa1\xc6\xe6\x18Bo5\x86\xc6:\xcfelb*\xc0N\x90\xdc\x05\xd6@\x9d\xf5\xaf\xe0F\x8d\xf7)\xfa\x07\\\xa6\xf1\xa12\xfd\x0b\xe5\x14\xa7xL\xbf\xc0\x85\x05v8\xb9\xb8d;\x0b\xccm^\xb4\xa6\xcc\xb1\xb0\xff\x8e\xe0\x0b_n\xfb\x87_r\xfba\x08/v\xf7\xff\xf1m\xa8\x96I\xea\x1e\x8b\xd3\xbf)\xf6T\xbd\xf8X\xbf\xa9P,\xccG=\x9eL,\xe6\x87\x19\x1fLQ\xae\x17E\x01w\xc2\x86rZ\x03\xfc2\xc86\xfe\x92vh\xa6\x91C\xc9\xa9\x13\xef\x02\xd9\x7f\xe9\xd8d\x85O\x8c\xe7\xac\xb5\x0c\x95\xb0s(\xb7d\xe70\xe6\xd4,\xa4\xd7\xa8o\xf6YZ\xa2\xb9w\xc9\x89\xa5Lm\x93\xd0\xab\x1b\x17\x9b\xaaB\x97i\xae\xa46o\xca*\x15\x95\xa3\\\x0b8Um=\xd8\xcd\xa28\x1c\xc4j\x99\x92\x88?\xa9\xa8\xa2\xf1E!q\xc4\xaaE\x8a}n*\xc5\x0fbG(\xac\xb1`\x87EA \x00hx\xd3\x14*\xf1VS.\xf0\xd3\xf2\xc2\x14\xa8Q\x8d\xa6\x87L\xa5\xbf]\xfb\x9e\x18Q\xea\x08\xdd\xfd\x8e\x0c\x90\n\xa8\xc1/\xb7Y\xd6\x84\xe6\xda\xce\xc1J\xd6\x95EN\xce\x9d\xea\xd8\x8c\x7f\xb2\xd0\xec)\xab\xfdO\xc2\xe6N\xd8\x0dm\xf9\xd7kh36\xb0\x19\xc7\xf3.D\xd1^\xbb\xd5\xe3\xfd(\xe1\xdbjy\x14\xd9M\x1b\xd3:\x9a{\xe6a\xc2\xfb0\xcc\x94g\x8bY\x96\xf8\xbd<\xe3m!\x80\xb7\xba\xf6\xdb\xbfN\xb74LlzM\xa7q\x89;\xfe\x87\xd7\x17\x8f]\xfbA:{\xec\xf4\x91\xd7~0s\xe3\xe8\xef\x1f\x1f\xa8d\xc5Ug8\xba\xda\xf5i\x98\x8a\x85\xd1\x88\"\xf0\x94\xae\xf5\xe2\xf2\xf2\xcd\xc5\x9d\x9d\xad\x05v\xbd\x05\x97\xe8\xadj\x86P\x92\xda\x82\xd5\xe6c\xc2C).\x11\xd3(O\\\x8bE\x00\xee\x19\x1a\xfc\x89\xfcBm8s\x06\xee\x0eZ\xd2w\xbc*B\x08\x95;mgE\xd6\xe6\xa4N{\xac\xbb\x94\xach\xabN\xb2\xe7E\xfbaU\xa4\xbbK\x0d\xac\x10\xbbq\x86\x85|\xbf\xb0c\xd6\x08\x8f\xc3l\x14\x88clg}\xd9a\x1c\x0d\x12'\x1e\xf2\xa4\xbeP/\xe1\xce^Z\x0f\x0f\xfcp\xcf\xef\x1f6\x17\xd8\x91\x9b\xbc\xc0Z7{\x81\x13\xeeY\xd2\xa8w\xd4EK;\xb3(\xd0\xae\xcc\x12\x96\xa3\x850w\xff\xafI\x15\x05\xf8\x9fq\x8d\x91\xe3\x8aa\x7fJ\x86\xa6\x01\x04\xb1FN \xd6\xeb\xd9Gx\xd7\x17/m.\xb0\xd6K\xa4|l\xf9\xba\x18J\xccy\xfc\xe7\xb84|\xbf\xf7!\xfd\xae@\x8f\x7fNA\x00\xf8K\nH\x83H>)\xf1\xec\xf1_P\xe0X\x02\xfe\x1b\x02\x90\xb3\xbbGvDz\xa6\xb6\x9e=z\x9f\x02d\x94\xac\xb5\xca(\x85\xf9`,\x02\x90\xe3\xc8\x16?\xb2\x03{\x12\xf8\xd8\x0e\x94\x07\xf2\xd1\x13;P\xf6\xf9\xe8\xa9\x1d\x08\xb3\xf8\x1b;P\xe2\xfc\xa3\x7fm\x07\xca\x85y\xf4?\xda\x81\x12#\x1f\xfd\x1b\nL2\xb9\x02\xbf\xb2A\xc6r\x8e\x0f\x08]\x01\x18L\xe3\xaf(0\x05\xfc\xbfGhE8HEo\x9f\xfc\x84\x02\xee8\x89\xc0\xe7g\xff\xfc?`T\x8c\x06\xd2\xee\xfa)9\xd0\x1a\x80[[\x8c\xe2>\x1c\xf5\x7fO\xaa(\xc8\xcf\xff%\x86\x88S\xf0\xec\xfe=\xf2Y\x10>\x89\x88d\xe9bID\x1fcJ\xe6\x00F\xdf\x7f@\xbe\xfbr\xc1\xee?$\x80(]`\xado\xe3Y\xc4qpxN1#+\xa9s\xe28\x89\x0ej\xc6-@\xfc\xb6u$\x8b\x89\xf4\xac\xb2l\x83\x06|\x80k\xa4.\x10\xcf\x7fI\x0e\xb1\x81\xfco\xa4N\xea\x0f\xe4\xc0\xef\xff\x8cT\x12X\xf0\x07\xe4\xeb\xe1\xa8f\x17\x04DM\xe6\x9f\xe3n2?\xf0$\x8d&L\xd1@\xfe\x07\\'\x17\x02G\xeb\x13\x82Q\xea;!!\xfbn\x14\xfa!\x1c\x14\xcc2\x9d}\x05\xf9\x08S\xf5\x9e\xe3\xee\xb9\x11\xd0\xab\xfb\xefZ\x80Z\xcf\xee\xbdG\xa0\x89\xa4\xbaO1}\xef9\xc9\x98\xcb\xb1<\xc0\xfd\x9du\x92}.1\xfb]\xcc\xbb{\x05\x08\xa3\x1a\x80\x80dS`/\xd9\x13\x80?%\xf3\xee%{\x99\x06\x92%\xab]\xeb\xb3 s\x90\xfd\x81\xcf\x98\xe7\xf6\xbc\xdby$\x97\x1dK\n=\xee:y*W\x0e\x8f\xec\xac\x04q+\xac\xd7\x08\x1b\xc5\xd9\xa1\\\xf4G\x98\x92\xf4\x04~X\x91\x83'a\x94\x8b:oc>qV\x82\x82\xc0Ok\xc0\x99\x9430\xf9\xeb\xa9\xef\xff\x0b\xfd\x0e\xa2\x0c\x1dB\xb6\xcf9\x1co\xd2\x89\x96\xb4\xc8\xbej\x00f6=\x7f\xe0\x02\x05~\x88\x05O\x01\x02\xd1\xf3\xd9/0 \x16\xb0\x1c\xaa\xe1\xc3\xdf\xf3\x07\x91\x17\xc1\xb9\xc4\xb2\x93\x80\xc5\x01l\xe4GX~\x12\xc0\xcc\x1fq\x80ZF\x93\xdeV}~D\xd0\xdd\x1f\xa4\x99#\xb9\xc5_\x90\xa9\xfb\x83,\xf1\xa5,\"\xf4&Q\xe6=rr\x8b2\xd0\xc3{\x98\xd6\xf4\xfcAnF\x8e\xa9W\xcf\x1f\xa83\xfa\xd02)s\xda\x1e\x92\xe5\xd8s\x92h_\x80\xde\xc7\xd4\xa2\x178\xee^\x10\xdd\xe1J\xb8\xfa\x10\xcb,\xb2@z;w\x12 \x7f\x0f\x0b<\x12\xae'%K`5\xa1R\xc2,\x0d\x968*\xa5\x02\xb8\xb5}\xf6\x0b\xb2;\xe5R\x89\xbaT~\xf6\x1e\x96\x02\xa4\xae- \xff\x023\x86^\xb077/\xeb\x90\x03\x12\xec\xcd\x9d\x94\x10BE\x82\xbd\x13\x00\xc1\xc2\xb2LO !\x98\xa1\xf5B\xb1\x18g\x9e\xfd\x183\xda^\xc8o\xe7\xbe$\x07\xf7\xff\xda\x02^\x07\x94~\x8a%\xc0^\x08\x80w\xb1\xbau\xd6\xc8B\xff\x07\xaebd!2nh\xeb\x01\xe9]_i\xdb@\xfb\x99\x0f\xe8E\xe6\x1a\x1d\xf4@J\xf9\xf0>\x05-\xaf \xc8\xcf\x7fa\x81\x04\x12\x82YT/:\xf0\xa0\x0eV4\x04D\xd6\xf9\x19^\x04\xd1\xda\x96\xac\x83%\x11\x01\x91\x07\xd6\xb2\x08\x07\x1e\xd4!\xa8\x10\x1dx\xb2\xce\xcf\x08O\x8f\x0e.\xc8*\x96\x01H2\xfa3r\xf6\xa2\x83\x0b\xcb\xb2\nVo\x05D\xb2\xce\x9fciD4\x06u\xe8.\x1c\x0ce\x9d\x9fa\x92,Z\xdb\x95u\xb0\xbe\" \x92\x95\xfc\x9c\xf0\xfc\xe8`\x08u\xb0\x02$ \xb2\xce\xcf\xc8i\x8e\x0eF~\x08\x04\xea\x01\xa1\xf2\xd1\x81&^\x0f\x08k\x8d\x0e\x0c\xd5}\x80\x15\xb5^t\xb0\x0b{\x8e\x95\x0d\x01\x01<\xc1\x82i/:\xc8\xa1\xce\x7fk\x81\x00\x9e`\xa5S\xb4\x06{\x8e\xb5N\x01\x01<\xf9\xa5\xa55\xa8ci-\x07<\xb1`\xddeY\x85\xd0\x92\xe8@\x9e\xfd\x9f\x11\xca\x16\x1d\\\x06\xd4\xb2\xec\xece\x89[?'\xb49:\x18C\x1dB\x95\xa3\x831\xe0#V\xb6Dk\xb0j\x844F\x07\x97a\xa5\xb1V'Z\x83:XA\x11\x10Xi\x0b\x0e_\x86U\xb3\xec\xf5eXi\x0b\xfa\x8c\xa1\x8e\x05y\xc6\xb0\xd2\x04\x0b\xeae\xe8\xb3\xca\x98\xf6k\xb2o\xf5\x80qO\xb2\xf7\x8f\xf1a=\x0bZ\x10\x95\xb7zF=\xfa\xdf \x84\x8f\x84p\xf7\xec\xad?#\x90:\xc9>Us!R}/\x8d\xc4:\xff\xe0\x07\x96\xefR\x85\xff\x90\xc8#i\x14\x0c\xd3\\\x02\x7fEHv\x1e\xc8m{\x93lu\x1e@j1\x1bH)o\x7fj\x01HM\xf9 \xb6L\x08\x08\xe8\xcax \xce\xe6F\xdf\xb35\xa7@\xb8\xd6\x92\xb6E~\x8a%3\xd7@~J\xea\x80\xfc\x88\x89\xbc\x12G\xefar\xe9:\xb16ta\xf9\xcbu\xe2^\xa2d\xc3\xc7\x98\xd5\xb9N\xac\x9a|\x8c\xf5\x7f\x01R\xb5\xf0\xe8\\'VB\xecc\xcc9\x96\x9c\xd8\xcf\x9c`\xd9\xef\xf7y\xc2\xc3\xccw\x02\xc9\x14~\x82w\xdaubPY\x1e\xff\xe7\x7f\x8f\x1bq\x9d\x04\xb6\xf3-,1\xbaN\"\x15\xd3_\xd3\x05;\x0c\xf8!h\x17X\nqu_\x8f1\x82.\xe9\xf6>\xc5<\xd35\x10Z\x87{\xbe\xd4\xc7\xc9\xb2\x18\x08\xe6YKJW\xf8\x14\xa3\xb4\xab\x01xc\x96J\xaa=V\xc0\\7W\xf3\xa1\xa3\xce\xe34\x95\xc7\xf41f\xf6K\xb0e\x9fb\xb3\x8b\xab\xbe\x93\xfdW\x93\xf9\x18\xcb\xa9K\x02\x1086\x90[R\x1b\xb1\xce\xe6J\x7f\x86\xd6\xc7\xf8\x84.\xf10\xe3\xc9\xb2\x1c\xc4\xc7\x98\x1c\xb9\x12\xe8\xd9\x81K\xfd\xc4\xbe\xdfZ\x9f\xc3D|\xe9\x02\xa8\xd6x{\xdc\xa1\xfc\xfe\x0fdC\x87\x1c$\xe5\xbf\xc4b\x98\x84\x8c\x9c\xc4\x0e]\x1a\n\x12\xfa9\xedF\xaa\xcd\xa4\x17\xb0\xe4\xfd\x82l\x00\xa0\xc6\xaf \xd5\xf0\x13W\x91\x1a,\x9f\nP\xc0\x9d$\x89\xf6\xb56\xf2\xce\xffY_\xc6\xe8\"\xef\xfc_\xd6B\x1eX\xc4\x9e=\xc0\xb2\x8a\x02k\x0d\xf8\x01\x96K\x14\xdcS\x06\x9d\x07X>Z\x92\xf0e%\xd0c\xd9E\xd5\x16L\xf5cL\x9c\x15l[T\xfcs|\x9a\xa0\xd9KF\xd2\xc3B:\xc07\xb5\xb0\x87%u\x00\xef\x18y\xcf\xb2\xba\x92c|\x88\xb5z\xd7\x07=\xd3\xb6\x1f}}\x8c?\xc2\x07\xd2\xf5\x93\x11\xd8^\x9fb\x0b\x82\xeb'\xa9B\x8b\x0f\xb1\xcc\xb5$\xd4\xb7}?\xe5KQ\x98Ey\xb2\x1af|\x908\x923\xde\xc3\x87n)\x88R\xbe\x94'\xc1\xe1r\x94\xf7\x02\xfez\x1ee w\x90-1%\x8b2dc\x82\xbc'\x97\xe6\x97X\x0c\x93\x90\xdc\xcf\xac\xc0\xa5\x08\xac\x89\xcf\xee\x91\xe3\xad \x0b\xb6\x1ap\x03\x83Ey\xd7\x80\x88\xfd\x16@\xb7k`\xa3\x91 Y]\xdbw1\xec\xff\x8a\x02\x80\xd5\x12\x16\x14\x8d\xe2>L\x07Kb\xae|\x19a\xc4\x15\xdd\xb6\xd5\x0c\xf8\x01`\xd7\xdbx_\x8d\x99\x90p\xca(\x1chv\x8bI\xddR\x14\x0e\x92\\ux\x1f\x0b\xbaK\x05\x0f!\x18V\x80\xf0\x11\xb3\xe1\x15-#\xb5t\xdb,\xb4\xfaNw N\"\xb8\xd6\"\xacI\x82r7\xb3C76\xaf\nR@d\x9e(>\xac\xfb\x9e\x02g\xc0\xe7q)\xca\x05?i%\xa2e\xa6\x90\xec!\x99M\xee9I\"W\xe7}26 \x93\xeb\xf3>^\x1f7\xe7\xb1\x84<$s\xcdy*9\xc7C\xacM\xb9y\xa0\x97\x1b\xdbv\x01$\xa7\xf5>\xd6A\x96\x94\xbd\x95\xf0i\xf8~\x0f\xab\x9an.\x84b%\xf9\x126\x92\xc7J\xfe&\xd7:nn\xe4e\xc2\x96s#/\x13\x11+\xd7\xf2\xf2\x03K\x83\x11\\\xe4\x91c\xaf\x84\xbc{O,\x02rn\x90\x92\x90T \x92\"\xe0\xfbX\x8dv\x05y\xe7\xb7\xe3\x84\xbb5\xdb\"\xe1i\xee\xd6mN\x12\x1cjc.\xd6\x80$\xb00\xe7\x12\\\xcd\x93D\x1a\xe6?\xc6J\xb7\x9b'c$\xb3\xd0\xad\xd7E\n\x91\x85N\xbc~d\xea\xba\x87\x0e\xaa|\x83F\x04V}\x83v\x0f_\xc5\xb8\x87\x81\x9b \xda\xf3\xec]L\x90\x97e\xaep\x01z\x13Sc\xaf\x00a\xc1\xd4s\x02}\xa3\x81\x0f\xd8\xb2\xdeh\xd2\xdc\"\x00~\x8aq\xde\xd35(\x00\xc4\xb171QXv\xd2!\\\xb0\xe1\xbd\xf14\xe4\x01f\xea^\xc9>\x8f\x97\xd5\xeb\x05\xd2\xd3\xe0\xd7X\xc8X6Z\x15\xde#\xcf@pc\xcb \xb3cv\xe2\xc1g,\x1e,\xdb\xb5M\xf0\xf5\xf8 >\xb3\x9e\xd7\xb0]z\x1d\x7f\x8a\x8f\xf3\xf2r\x94%\x0e\x984\xdf\xc7\x94\xd7\xf3\xa2,\x05!\xe41FQ\x8f\x0b\x0e\xff1\xd6\xe7\x969p\x1e\xac\x18,\xf3\x00\xae\xbf\xc8\xdc5\x00\xcf\xde+\xe9_\x18i\xbd\xbe\x9f\xc2\xd1\xf9\x00\xbb\xe0,k\x85 \x8f\xc0\xd3\x00\xb28\x17\xe0B\xe9\x03l\xeb\xf5\x86\x0ep\x8a\x9fb!Y@`=\xb1\xcc\xb0\xec;n\xe2g\xbe\xeb\x04\x8bun[\xa52\xa06\xfc\x1a\x0b\xa7\x95\x12B\xd6\xd5mQ,,J\x9eW\x9eT?\xac/\xb2\xa3\xae\xeb\x7f\x8d\x8dx\x9e\xefH2\xfb\x10[\\\x96}g\x14\x815\x86\xc0\xbc\xc90#Gcs\x9e\x80\xa75\x10\xb9h\xd8 N\xad0\xe4\x00\xf8\x03\x07\x04\xe3\xdf\xe0U\xf2\xfc\xd4\x97b\xeeCL\x18=y\x13\xf4 \xc1n\x7f\xec\x83c\x83\x1d\x12\x85\xc6\x94\xfe\x90 \x9a?\x8e\xc2\x03+h\xf9\"\x9ct\x8c5\xde-P\xda\xb1\x1c\xe3\x05n\x94\xc8\x81\xbf\x8b\xf9\x9b\x17\xb8\x89|b\xe0\xd9\xbb\x98\x0f{Q\x10H\x94\xfe}\xdc\xbd\xb9\xa9\xc2:\xb2gD]\xacH*c\x06\xde\x0e\xaf\x06q\xa3Li\xc2?&(\x16eJ\x9f\xc1$[B\x94Pq\x1f\xd3\xa0\xe5([\xb9\x9d\x83>8+:f\x01S\x0c\xae\x01\xd8Z\xc1\xb5\x9d\xf4\xd9}\x8c\x1f+\xb0hX\x0d\xe5\xb0fX\xca\xe1\xcbJ\xd2 \xaa\xc9\x8a\xba\x05\xc2\x83\xd5Fz\"cpU\x01\x1fR8\x9f?\xc1R\x1c\xef\xeb\x860cZ\xd1:\x066\xc3p\x0d\xc07FR\x8bz\xf6\x04o\xc5\x8a \x8b -\x19\x08fy| \x89\xf7\x132\xedA\xaa\x8e\xca\x13l\xe4\x05e\xed \x96\xe2VJ\x86_\xd2\x7f\xe0\x87\x19OdW\x7f\x86 \x13\x87K\xed\xb71\x93\xe2\x01\x0c\x0d\xef8\x0f\xcc\xd0\xf0\xda\xaf\xe8\xe8\x0b\xbc\xc6\\\x03H'B_\x94c\xc6\x04IBR\xb8\x86%@\x99ky{\xe4\x04\xc1\xb6\x91\x08\x7f\x81\xe5\xe3B\x17\xb5\xd7\xbf\xcc\x13\xdc\xc6{\xd8Y\x84\x8fRI{\xdf\xc4\x9cS\x00\xe6NH\x10V\xa3$H\xba\xbe\xbdI\xfa]?\xbf\xc0Z\x9f\x91\x83'-\xef\x9f\xe1\x0b8\x1e\xaa\xce1G^\xd1.\xfe\x0474\x80`\x87\xd1\"\xb0M\x8e\x1b-\x82\xe0`\x0cT\xf4!\xc1\x80\xd8IR\xe0\n\xd8*\xc3\xb5\xf4\xfe\x18Sx\xe5\xb4\xfb9&\xd6+\xc6\xd9\xfbs\xda\x8f\x01\xe1Z\x02$\xb6\xf67\x04p[_\n\x12\xba\xc7o\xd7\x931~[y\x97\xdc\xc7k\xcdo\xa7\x81\x13f\x83,\xb1\x1fT\x00\x07<\xb5\x9f\x16\xa3\x07=\xa6#\xcd\x1dy\xc4\xce\xd8\xaah\xad\xdf6\xa0\x9c\xc3\xb5\xe8}\xcc\x92Vn\xe7~\xe0\xf7\x12?\x97s\xf9)\x16\x18JN\x946\x08\xd8\xae\x1ec\xa5\x81\xdf\x1e\x17\x1b\x8e\xa5h\xaeY\xe0\x07d\xc3\x13Mq\xf1\xa1_\xd1nA\xd8\x10\xc55\x00\xf3m\xaeI\x0e\xd1&W\xd4\xbe=\xc6\xd7&\xbcnCW\xc0tE\xf8\x06|&|i\xe7\x82\xa0\xdb\xb8[\xb0\x96~\x82'\xb0\xa2\"%\xc8IV\xdf y\xc9\x13\xe9R\xff'\xd8A\x8a\x1f\xb8\xa2\xc2\x11\xf2\xd9\x87\xad\xbf\x87\xe9\xd1\x8a\x80\xa4V\x10?\x88\xb9\x9b9:^\x86\xac\xfa\xca\x01${\xf0\x9d@^/S\xdeY\x14\xb03\xd7\xbe\x13\x04\xbe\xbc$T\x96G\xc2d\xcf\x81\x98\x80\xa5\xe6>\x88 \x98\x82\xf6\xf9Hu\xf5K|\xf3\xd0\xef\xfb\x10\xf8\xf8\x9f\xff\x06\xcf\xb3\xdf\xd7\x10Z)\xd0 \xdc\xd59\xcd\xe4\xb1\x9c\xd6\xd7\x00L\xe2\x8a\x01`5\xe2\x9c\x1f\x04\xdc\xc3l \x13\\(ec>X\xec\xea\xdf\x82\x9e\xfa\xb70 p\xc0B\x87\xc5\xaeb\x9e\x18\xeb\xfbA\x16J\xf4x\x0f\x9f\xd3~\x18 \x06\xf0\x9f\xc8\x96\x19\x96\x81\xf5\xb3\xbea\x19\xf8\x10\x9d\x8b\x92E\x10'\xee\x91=\x88\x12\xa7\x1e$\xfdX\x1eb\xc3\x87\x00\xc0\xbd\x00\xe6g\xe7\xa2<\xf1y\x92%p\x0bL\xe6\x14;I\xa6\xfd\x1e\xb0\x10\xdaO\x1cW\xba\xb3\x7fL&& \x92\xa9\xff\x04\xd3, \x12L\xfdc\xbc\x9f\x12rJV\xc2\xc4_\x82^\x96 <\x01 zE\x82\xb0\xe0.@\xf30\n\xb2 \x02\x04}aF$@\xd2\xe1\xfec\xac(I\x08T\xc2\xfb%A0\nl\xfa\x13\xa0\x93P\x0bK\x19\x02t\n\xa6\x85e` \x82\x06\xb1=W\x80\xbe\x03 l\x13\xe8'\x0e\xb0\x97\xb7\x08%HT\xe8\xc3\xbbX\x08?\xa7y\x05\xd9{\xa3\xfbb\x81p\xa0U\xaf\xff\x07\xf3\xe2\xf3\xca\x08\xfd9\xdevm\x9d\xfe\x1c\xb3\x17Y\xc3\x13\x12\x08^\xb8\x81\x81\xe0\x15\x18\xc0\xcd\xed\x13l\x970\xa2\xc9\x13L\xd6\x00$\xf9\xfb\x13L\x8e\x15\x0c\xe6\x8a\x91~\xc0S5Yz\xf3.`0\xc8'\x988\x9c\xd7\x1c\x0b\xab\x17\x03\x0d\xc0\xec\xf7\xbcTd\x1fb\xda4\x00? ,\xac\x0c\x065\xc5\xfd\x11l\xce\xdbXx:\xaf\xaeN0\xa7\x1e\xa8\xab\x13\x82qpc\x80\x9b\x19Hg\xcfgO\xc8\x1e\x83\xbc\xf2\x04s\xaeApK~\xc7\xd3\x1d\x84\xea\x00\x92\x05\n\x8b\x98a\x0b\x10\x10\x98\xec\xc5\x9ckud]\x96U}\xaf\x82\xcf\xb4\xaf\x01X\xc6\xf0G\x0eh^\xb6\xb6\x06~\xe8$\x87\xab\xf6\xd5\x199\x83@\x9d\xe8\xb71j\x0b`\xec@\xca$\xbaw#\x99\xc5\xb4\xf5)\xd6\xd4\xfd\x91\xb4<={\x80Y\xb8?\x8a\xa5\xc3\xec\x7f\xc2\xf8\xb4:\x8a\x03\x1f\xd4\x1f\xe2`\xe2\x87l\xc1v\xf9\xe5\x87\xae2\xb0\xbd\x8d\xafc\xcc\xde\xdd\xc3\x8a\xb7\x84\xa8\xd0\xfd\x0f\xb1\xbe\xec\x87*\x87\x06\x99\xd1\xaa\xc2\x12\x82q\xea;\xd9\x8d0s\x81\xc6<\xc0B\x9c\xca\x08\x0d\xb1\x1a\x98\x81V\x9c\x97,\x8d\xf2\xa4\xae\xd9Uy\x11\xc8M\xf6$\x92X\xc4\x0f\xb3\xc0I\x86\xd2 \xf7\x11\x16\xda\xfc0\xd3A\x14\x1fa!q5\x1c\xfb\xa9/\x1d\xac\xc0fb![\xba\x88\x89qz\x0bK\xe5\xab\x1b@I\xb0m\xd5\x8f@\xf4!X\xabo\xbc0\xc1\xf35\x00\xdf%\xac\x1a\xae\x86\xf9\x92o \xd8\xac\xb5\n'\xf9s\xcc\x07\xd5 \xff\x1c\x0b\x16~\xed*\xf9Z\xca\xfe\x18\xb3\xf9U\xcd\x15\xc9\xe12\\\x11k?\xdaC\x92\xe2|\xea\x87Z\xf0&49\xf5A\xc8}HF\x9d\xfa`#~\x88\xbd_%DZb\x1fb\xca$@c\xfb 2\xfb\x0e\xeb\xfcS\x9f\xe2\xcbp\xdf@\x08\xc1\xcc\xf7\x00-\xb0\xee\xe1+\xc0?`s\xe8\xaa\xbaq\xc1\xac\xdbW\xdf1V\\\xd4\")\x9e\xfa-\x0d\xc0\xeb\xa8l\x1b\x18%\xc0\xb4\xf1\xf7xm/j\x06\x86y\xff-\x0d\xc02\xca-E6\xff_L\x1d/\x1a4\xc5\x87\xe4\x96\x81`}\xea\xa2\xc1!,\x94\xde2\x10\x8c\x90\x17S\x9e\xc0d\xf0\xce\xde\xd2\x90\x7f\xc0\xf2\xc4E\xbdQ\xd8\xa6uKo\x14\xe6\xf8\xdfw\xe2X\x9e!|\xe6\xf64\x00\x930 \x90\x97\xbfX<\xf9\xbe1\x8abo\xa5=\x03\xc1\xab\xf9}\x18/\xe9\x1d>\xe3\xbe\xbf\xafw\x0b\x0b^{\x1a\x80\x91zo\x90@B\xa8O\xb1\x90\xf5}\x15\x0d\x8cwdOE\x03cn\xf5}\x85qX8\xd9S\xd64,\x7f|\xdf`\x03\xa6\xf1{\x06B\xea\x18l\xc0\x82\xd6\x9e\x86\xfc9&\x9b\xc1\xa2\xd6\\\xf0\"\xae\x99\xfc\x02\xf88\x04\x06\x82W8pJ1\x04\xf80\x06\xce q\xe0\x16\x13\xb3\xff5g\xd4\xf3$\xbe`\xdc\x0f\x0c\x04\xabOk*k\xe6\xaf\xb0\xf8\x14h\x00\xdeM\x01\x80\xfc\x8e\x98\x11\x05\xc6\xb3\xccR \xcc\x8exC\xd7\x1c\xf9\xe2\x9a\xbe\xc4\xc23\n\x1cH\xb8\xf61f\xf0kZ\xab\xc7RK\xa0\xed\x00\x98\x85\x98\x986\x1b@\xc6\xf6\xfd\x14\x8b\x18\x12\xd2\x97\xec\xe0}|\xf9 `\n\x84e#\x01\x02\xe1\x81\xa8\xa2\x02\x14\xc8\x95x\x07\xcfH\x06\xd6I\x81\xe5}\x8a)\x89\xb6\xe7|\x80y\x8f\x80e\xb2\xda;\x98\xcb\xa8\x1b\xd2'\xa4\xa7\xc5\xcc\xf1\xa1'\x8a'\x06\x84\x89z\xe0@D\xf2\x13,\xfe\x0b\x00\x98\xa8\xfe5\xb5\x18\x05g\xd5\xb2\xbf\x8f\xa9E\xd0\xd3\x10|\x98\x03\x9d\xe4\xef\xaf\xb0n\x10\xf4\x12\xb0:\xfc\x91\x0d \xea\\\xa7\x80=9\xecGX\xd1\x16\x904\x00D\xc6\x1c\x12`2\x8f\xd1#\xcc\xac\xd6\x8c\xb7!V\xd0\x03\x03\xc1B\xca\x9a!\xbd\xf8\xf8\x05\x06\x82\xa5\xa4\xc0\xe5\xb0\x13\xefb\xd6\x13\xb82\x16\x15\xaf\xc1\x1a\x90F\xb2\xa5\xf0\x99t\xec\xb9R@}\x1f\xb3\x89\xc0\xe48\xc4\x84QB\xc0\xe2AN\x9d\x97x\xda\xe1\x143\xf1\xc0K\xf2T\x03\xc9.x`\xd2x\x87l5\x18!1 \x06\xf2r\x1f\x9fT\xe9\xf2/\x88\xcfY\x81\x07\xe01GhP%.\x80\x90\x81\xb5\xb2\x0d\x89R\x8f\x8a\x85\xc9V\xb7\xec\xedN(\x89)\x80\"\x04\xb0,g\xba\xd1\xc7\x90\x1cj\xd1\xd2\x12\xf7\x03H\xc7J\x91C\xc0\xc1\xf9\xbf\xbc\x14x\x19\xa1\x94t\xd7.\xf9\x8dc\x0b\x85.Ur\x1b\xc7\xb6\x9ej\x11\xed5\x8ei\x87(u.\x88\xa0\x8dw\xb1\xe9VLZy\xe0\xeb,\x7f\xc4\x1f\xbeT\x06\x02|\xdf!\xe7\x85\xf73\xb3|\xa0\x1ec+5\x0d\xf8 FaQ\xa4j+$\xf6\x99\x80\x14!\xadT\x8b\xa4\xb5[-\xcb\xa8iA)r>t\xa9\xf4v\xee\x0f\x8a\x1e1\x11\xb6\x05'`\x8a[\x8a\x9e!\xa1\xa4\nV,\x8c\x0d\x83\xab\xd8\x82%\x1d1\xd4l\x98p^\x84\x98\xe1\xd9\xc8FJ)\x1f\x1f\xe0S_.\xa0\x90\xe9CL\x9c\xcbe\x8c}\xf2\x01\x16\x93D)\x08\x92)\x0d\x19\x0b,P\xa8:-|\xa7\x0feJ\xa1\x1aXG(\x17\xd0\x07\x00\xeb\x04(\xda\x03\xe3.\x8d\xf4 \x82\xd0\n8\\S\xfc\x80\x0bi\xba\x19p\xc1CD\x1a}\xf3C k\xc9'\x80\x9e\xbe\xb4\xee\xbb\xba\x99#\xf2\x9e\xf1 x\x8c\xd7+(\xf9\x04`\xedM\xc1\xe4\x1a<\xc1\xb4&\xe0\xa9\x9a\xacE\xce\xe0\xa9r\\x\x82o\xd4\x03\x9e\xa6\xa5\xab;,\x81\n\xb0\xb6\x13`\x0dZ\xc0\xf8m\xe5\xf7jYc\x01\xd5`\xb25kO\xaa*\x14\xa1U\xa2\x08\x12\xb0 \xe1\x8a\xeeHrA\x94\x80\"\x95\xb8\x0d&\xcdC$\xc7x\x00k\xd9\xb6|\x06\xd7\x92GD\x18\xd0~:T\x1eOJ\x04\x92X{\x12\xa5\xc0R\x01=1\xb4\x91\xec\x00\xa4\x00z\x93X>\x12E3\x1f\x10\xca\x98:Z\xf9\xc6\xf8\xb9\xa6\xafF\x88dh\x8c\x92X\x98ZS\xaa5\xa1\x95\xb5\xdfk\xa4\x81\xc08}ac\x88\x80\x80`J8vz\xbbg\xb3\xc7\xa4z\x82\x041Rc] B\x92vb\xf8\x8c\xc8\x8b\x06\x82\xed\xbbk;\x0b\xac\xf5]\xfcQ\"\x05\xe5\x9a\x99\xa5l\xa0\x9d\xce\x08\xdd6Ng\x84\x86d\xb5\x82\xa4T\x8c\x16l:QP\xa8K\x84=e\x9a\x9d\x7f@hQ\xc9U\x8d\x98v4K&t$K\xe0:\x97hK\x81\x0e1&\x89\xf3\x83,\xd1\xeerdRy\xe2\x19\xc3\x0e9\xb3ybB\x90\xc9\nV|\xd0>\xb2H\xf3\xda\x07\xcd\x02S\xb7\xfa\x1f\xe3\xdb+\x13.\x83g0r\x80\x16\xfc%\xd6\xec\x04\x80\xc3\xe3\x1b\x04v \xc4\x89\xf71\x91\x1e\xc1\xf7w\xf0\x94\n\xfeT\x032\x96\x0dl\x1e\x03\xb0a)Xa\x03\xb0\xb2y\xe0k\x92\x91\x93\xec\x01\xc5z\x0f\xdf\xfd\x8et\xb6\xc5g\x1fa\x99\xf9\x12H\xa0\xd8\xbc7\x82\xcf\x98\xbd\x8eL\xca*l\xe5\x18\xe9H\xe6{\x98\xb1\x8f\xb8\x93\xe6 \xf7\x8a\x07\xb6\xb0\xf2q\x89{~>2Ndoa\x82{\x89\x07\x81\x1f\xeak\x01l\xf4\xbe\xa4\xd5\x01l\x88\x1bi\x00>\xe2\xa3\xa1\xdc\x9c\xb7\xc9\xea\xfb\xae\x0c?\xfb\x18K:*-\xe8=l(\x19\xf9\x9e\xfd\x8d\xa2\x91\xef)\xba\xf0\x14\x13\xd6\x91\xef\xd5\xa4\xcf-\xb2\xc0`\xb2.!\xf0\xc6\x16^\x1b \x82\xd1a \x0e@R]\xf9\x08/\x81\xcc\xc9\xaa\x13\xaf\xde\xc3\x8cq\x14\xb8\x90\xad\x10\xdb\x8fG\x01\xb3\xb4g\x1e\x1a\xa3\xb0\x0c\x1e9\xf8%\xa6M\x12\x02f\x85:\x18\xf8\xfc`\x1f\xbb\xb0'\x9d\x8c?\xc6\xd4:,R\xcc\xd3\xb1\x97r\xc9S\xa0\xce$\x89\x97}]\xdf\xe5|\x86\xb7*4\x10lz_\xd7w9\x9fa\xae\x11\x1a\x08\x96:C\x93r\x96\xf6S\xce9k\x19\xb9Jt\x89Q|\x1d\xc88\xd6\x14B\xf8\x8c\x15\xca\xd0Pw|\xbaT\x82_\xb2\xd4\\{F\xbd\x8fYU\xc8\xf5\xdd+V*D% y\xc7\nQ\xaa\x02\x85\x99\x88g2\xfdu>p2\x7f\xcc\x11\x1fy\x13KW\xba\xdc\xce\xd0w\xf7\xa6*\x16N.u\x99'\x87\xcd%Ko\xf5`KS\xc8S\xaer\"a[AX\x04l[&\x9cf\xdc\xa3A%$\x82\x02\n\x96-\x7fD\xde]\xe7\xfb\xca1\xf9\x07!\x19\x82 \xaf&\xf4\x86\x17\xf1\xd5\x18\xb6\xae\xf9.6\xb8\x85\x1a\x80\x87\x19\xea\x988\x8a\xd9*,\x0e;\x16\x86:\xce\xcd\x06\xb8]\xdfX9\xd6\xcd\x06O\xeb@:4\xccRI\xef\x13\x96\x1aB\x1d\xd6b!\xc9\x03\x00a\xb95\xd4\xc6[\x028\x9f\x01\x06=\xa5\x030\xd1\x0eX\xb7\x0cM\xb8\x03!\xacCexx\x8a\xd5\xbbPj\x0b\xf7\x08\x0e\xc3Cq\x0f1\xf3\x0b}\x10>\x1eb\xa9/\x04\x8c'\x0d\xad+\x93'V\x11Be\xf2\xc4\xea^h|8\xb0\xba\x19\x1a'\x0eZGI)XD\x0e\xf5E2]Du\x97\x8c\xa5\xb5\xb0z\x13L\xc7P\xb9\n&\x03\xb1\xdc \x92M\xb2\\!\x92\xed\xd278dx\xc5\x15\x8emJ\xe5[\x1c\x1b\x19jM\xdbr\x0e@\x1b\xa3\xddh\xb5\xf5!&W\xa1\xd1[\x1fbkZ\xb8\xa6\xce\xc8\x13:8-\xc1c6\xb5\x1e\x9dM\xb8#Y\xd8[\x98\xbb\xadG\xa1\x04\xfa\xe1@\x13w\"l\xac\xebX\x11\"\x9d\x18\x01\x16K\xec\xfam62|\xd0\n\xf0\xe7\xf5(\xab&\x95\xc7\x86\xc9_\x01.\x06\x81)\x7fQ\x06\xc5b\xda\x86b\xe3\x9d\x0d\xe5\x0c\xf7\xc4V\x9e\xa2\x08\x0e\xcclh\xadX&\xcc2\xd6\xa3\x8c\x86\xe2\xd8ZB\xf18\x14\xe1\xa3L\xb9B\x13I\\@\x8c/\xb4\xbd\xa2r\x87\xb6\x03\xc7N}\xbb\xf0\x10\xf4C\xac\xd9\x02\x0cr\x98c\xe3\xd5z\x94aO\x00r\xe8Q\x19\xe3\x0c`[\x19\xabG\x00\xa1\x15\xb2`\x0d\x8dS\xb0by1\xd5U\x05\xca\xc8c\x1dHY\xea\xb2\x0f\x95^\xac\xd6\x95+p\x06\x93\xd7\xf5(\xab\x93\x07\x9f\xfc+[sT(|\xf2\xd7\xb6\xadV\xa2\x00\xf6\xc8\x93\x10\x85\x04v\x18 \x01\xd6\xa9\x01\x06H\x805\x8f\xf5(\xdbL\xb8\xcb=\xf5\xd2\x0b\xb6\xf3\x95\xe0f\xad\x9e\xfc\x1b\xdb\xe4t\xb1\xea\xba>\xb4P\xac->\xe6I\xca\xcbD\x0fOG\x94\x92\x195\xcb\xc8IdlTHc\xa7EOA%\x8b\xe1Y\xa86\xe4\xc1\xd9\xce{*\xe7\xdb\x03+\xb6\x97K\x15\xcdYX\x84.\x18\x8b9C\x83\xd6\x01V\xcb\x15Mb\xd3\x97(Z\x8c\xedO(k7\x05\n\xb7\x1c\xa2#\x8b\"\xae\xcb\xb9\x07\xbb\x8e\x0d\xfa%x\xb1\xeb\xd4XQ*\x86v\x1d\x1b\x1aK%\x8b\xf3\xf4\x1f\xed\x0d\x96\x16\xea\xc75\xb3Ck\xf4\xc0\xc23\x8bn,\x93\x93\xc0\x82\xccXx\xa2,Qeg\xc4Z\xa4J\x15=Y\x86\x81\x99?\xd1\xd6\xe3\x1a\xa9@\x00\x9c P \xf1mPH\xcd\xf1\xf4o\xe9+\xb4\xa1\x8e\x80\xbbG\xa5\x810\x8e\x02\x1d\\\x88M\xc9!?}\xc7Z &Id\xcc4\x8f\x1b\x88\xb2\x02\xabI\xd6T\xd6\x93\xb4\xf4\x9b\xa9|;D\xc8\xd7qx\x9f\x10\x8b\x96\x81\x10;T\xa6\xbc\xd1h/\xe8yr\xaa\xe2\x96K\xc0d\xa8\xaeK\x9e/\xa7\x07\xbfRD\xb5C\x04\x0dy\xa5A\xec\xc3\xf2+1\x0f\xcb,\x9a\xbfG\xbfrH\xda\xf86\xbe\x13\x0es\x9d-\x96\xd8\xb3\xc7\xfa='\xcb.^^\xd6\xcf\x14\x12+\xd8e\xf3\x82!\xb1\x18\x8cM-B\xe6\xc6\xa6\x16Y\xc6\xb1N\xbbe\x19\xc7\x18\xf2\xcf\xd8 \x17t\xb8\n9\xbc\xe3\"\xfe\x1d\xdf\\\x85cm\xcbz\x1f\xdb\xe9\xc3\xb1\x8ee\xb0\xf5\x06. v\x88\xb9\xc4\xb7\x815\x0b{\x9f\xd0\xdd\xb1\xe1\n\x0f\xfe\x9d\xad\xa6~[\xf8?X\x80\xfb\xc6\xe8Oh\xda\xbe\xe6\x99\x04\x15\xf65\xcf\xb4B\x14W\xa3\xb0P\x9b\xc7\xf1\xd5\xe1\x86I\x11\x81\xef*\"\x03\xc1W\x81Q\xdd\xf3\x99\x91\xba\xac%\xeffn\xe8\xf4\x11XF\x894\x00kc*\\\x1b\xef=Dk\xff=\xd6\x89\xa2\xda\x1797\xf4\x9bM\x9f\xe1k\xed\xc8@05\x8a\xe0!\x98g\x1fa\x9a\x13\xe9\xd7\xce\xb0\x93V\xe4\xa5\x91\n{\xc2\x96\xdd\x8d\x15H\xbd\xf0\x19\xde\xff\x88+\x00Y\xf8\xbeZ\xc6G\xd8\x95iC\x1b\xfeI[\x1a\x80\x0f\xa6\nV\xff5\xde\xa9\x0d\x93\xc4\x824e \xd8\xa4\x1d\x81\xb1\xfdC\xcc\xba\"\x9d\xa8\xe7\x116\xc3DC\x81\xfd\x9fc9&\xaa{\xa112\xa6hl\x06\x8f\x02\xbd&d\xeb\x03\xf3(\xe1#\xec\xb4\x13\xe9\xc4\x12o\xd2Z0\x17,\xcbn(O\x98\xcf\xb0\n\x1bi\x006]o\x8c\xf8\xc0\xb1\xceR\x01~\x83\x19\xe8\x86\xf4\x8f\x90\xe9\xa7\xb1M3*@x\xef#%R=\xc2\x86\x9fhT\xfb.\xec\x861\x9e\xe2+\xd2\xc8@\xb0\n`\\)\xb1\xf1i#\xe6\xa1\xf5\xc5U|\xbdo\n\x16E\xb0_Z\x14sx\xf0\xf0\x11\x96\x11\x8c\xef%y\xc5vC\x0e\xeb1\xa1 N\xe2k\xbf\xc8(\x17\x04)\xc0\xb3\xf01\xa6\x14Q\xe2\x81\xb5\xe7mL\x8b$\x04R\x8a\xd8`2\x13\x17\x16>\xa2\xc4\x13\xb8\xff1A\xe4\xc4\x1f\xa8\xec$d#\x13\xf5b\"\xde\xc6(I\x83\x08D\xb9\xc7\xf8>7J$\xa9zLH\xb1\xfd%\xe1\x0d\xa3\\\x90\x01k\xc7\x0fB\x89u\x8a\xa4O\xc8.\x1a\x08!\x94\xeau\x8f\x07\xb8\xca\x86\x11\xf4\xf0\xf6F\x06\x82\xa9\xc8F\xe1s\x8bq\xb2p\xc7%\x8f\x1a\x03\xc8\x81zx\xa97T\xb6\x06\xb2\xd2\xea;\xd9\x9a\xb1\"q\xefbanc\xccu|\x11!2\x12\xa6\x82k\x9f\xfd\x19fe\x1a\xaa\xc2 \xff\x94\xac\xfb\x98'\x9bN\xc2\xc3l\xc8S\xb86\xfc3|\xd4\xb42\x85M\x06B\xd7\x13\xd8\x87\xe7Q\xd1\x01-\x95\x94\xb8\xf2\x14s\xfc\x92}\x82B\x94m\x02\x016\x9d\xc4<\xcfF\x81\xc0\xc61\xf9\x8b\xe13&}1O\\\xc91\xfe\x19\x05\xf82\x1f\xca\x0c\x05\x8c \xd6\xf3Mlt\xd6\x94\xe7\x01\x99>O2\x1eJ\x81\xecM\xac\x85lj\xfe\x8ayu\xac\x01XX\xde\x84\xa7\xd2\xb1\x96\x1b\xc3S\xe9\x98\x1c\xc7Cxu\x00\x1f\x8ax\xa8^q\xa6\xfeX\xf1P=\x17\xfd\x17\xf8&tS\xf6\x8c\xe9z,;\xc6\xfc.\xf63wX\x9b';\x86Q\xe1S\x12\x07N\x08\xef\xc7\x93\xa4i\x00\x82\x84jx\\\x02\x06i\xb7-\xd5$\xd1?j\xf9\xec(\xc6\xff\x11\x16\x92\x05\x104\x7f|\xb2\x04D\xd7\xc2\xa6\x04\x01\xf3\xa4\x9aE\xde\x81\x93 p\xf3#\xb8\x11\xe4\xe0\xd3\xfa\x18\x0bE\x9bA\x9e\xea\x87\xd9?\xc6h#\xaa\x8d\xc2:\x88:l\x1f\x11\x1c \xf24\xdb\x97c\xfc\x08\x8b\xeb\xf1\xc8\xd6\xdaf\x04\xc9\xa8\xc4\n\xcba\x92\xcc\x83\xb1\x90\xb9\xb4\xa1\x10c\xd9\xa6\xbe|\xc5bml\xa4\x04l\xbf\x8a\xa3\\>\xf6\xf81\xde\x95M\xb9\xecO0\xd3\x05S\xe4}\xcc\x0d\xe3DE\x18a\xc2nL\x94\xf7\xb1<\x1d\xc3[\xf5O\xc8y\xd0\x96K\xfa\xdd\xad\xe9\x9b\xbb\xa50&:\x02\xee\xaaw\x83\xad\xe3(\xdf\xb3\x90\xb6-\x97,5%\xaa\x96\xf6\xda^\n\xab4f2e\xe3\xab\x05T\x8e\xd4\xc2\xb2\x96\x84+;\xce\x13\xccu%P\x87Ya\xe9J\x00\xb5\xc5\x10\x0fh3Q\x16\xc37\xe9\x16i\x08>E\x12\x92\xdaq0\xd1Qht\xf8p\xc1j\x19z\xc3\xc0\xd5S\xed\x98\x02m\x96\x1ej'\xd4)\x89\xfaN\xa0\x04\x00\xac\xb3\x08\xa0V3\xde\xc5\xca\x94\x00\xa698\\\xbfKx\x87z\x7f\xed\x1e\x96D7\x93(\x8e\x12\x9dI\xed\x1e\xc6\xcc\x02\xac\x12\xb5\xe1\xfa\xa2a\xf0\x9b\xb7\x80\xea\xb6-N\xf2\x04\x04\x83\x07\x98en\x1a\xa1\x11\xdb\xc6bc\x91\xc6\x86\xc9Mx\x95\x87\xac\xbf\xfc\xfc\x1b,\x96\xc6y\xe8*\x13\x17\x06\xbd\xae9,&\xd7\xb75\x00\xef\xc8\xed\xbal\x8b\xafk:\x87\xcd\x13\xb7\x0d\x9d\xc3\xec\xe2\xb6\xc1\xd9\xb7\xb0\x80\xf9\xbaY\x15\xact\xdf6\xab\x82\xf9\xfc\xed\xdc\xc9x\x12\xfa*3\x01\xc9\x8c*\xe0z\xf4\x98\xeb\xea\xd8\x94\xd7l\xdf\x15\x91\xc2\x02\xd5\xeb\xbb\x1b;\x0b\xec\xdb\xado\xe3*Qf\xf9\x9c\x98\x84KX\x9b\xd0B\xec\xbd\xbf\xfd;\xcc{\xb6\x8c/5\xde\xa0\xc4@0\xc3I\x1c\x0f\x12\x90\xde\xc3;\x91\x94\xb34a\xfa\xb1\xa5c;1\x1a&\x1a\x80u\xf0\xc4\xa4U\xc2'S@\xe4\x94\x1ea^\x9f\x14 \x97hs*s\x12fo[Z\xd9\xc4R\x97\xb9\xfc\xa2\xfd\xab\x1a6\x00\x10\xbc\x0f0]KLR%:\xe6\"\xa9\x12\x19Bq\x97f\x81\xa8JX\x84J\x8atKXQL\x8atK\x18\xf1\x13\x93n\xe9\x03L\x0f\x92R\xba%\xac\xe9l\x99tK\xefc\xa4O\x8aLLX\xd2(]\x03\x92E7 \x97\xb0\xc2\x94\x14\xb9\x98(\xeae>\x10M\xac5IH\xa8\xfd\xe7q\xbd-\x93\x8d [\x18\x13\x03\xc1\x1c%1y\x9a0\x05HL\x9e&\xb2[:O\xd3]\x1b@\xd4\xb9A\x01*O\x13\xa6\x84I)O\x13\x16\xd3\x93R\x9e&<\xa3-\xe3\xa7\x8f\x15\xfb\xc4@0\x03\xdf2~\xfads\x0d\x04\xd3\xd6\xc4\xe4i\xc2\xc6\xb3\x04\xf24\xe15\xd8\x02\xcd\x91\xe0>8\xc3b\xad'\xd1y\x9a0kM\xbc\xc0\xa4\\\"\x87\xdf\xe4p\"\xf8V\xe4p\xa2 \x15\x17Jh\x19\xc8\xe9\x04?9\xf0t+@g\xc9%\xd4\x99;\x81\xc9\x92k\xab\x08\x88K\xc6\xc6A\xdey\x0f\xeb\xae[+\xe7\x05\x91\xc3|5\x81W\xfe\xf1g\x8b\xff\x0fvV\xd6E\xd03r5\xc5vcT\x90<\xb7\x9a\x14\x890\xb0=\")\x12a\x90\xe6U\x0eh\xb2BZ\x90 \xdd\xe8\xc4\x16\xf8\x16\xdb\x84'\x93\x17\x7f\x13\x9d\xd8\xe2\xa7\x04\xe7\x8a\xc4\x16\x98ln\xc98\xba\xcf\xb1\x8e\x95\xc8\xcf\xbf\xa1]DR+'\x8cX\xc6\x88\xe3|]\x18\x8bQ$9\xe6>\xc8}\x820\xa7\xaa\xf7\x84\xb5v%g\x17fTE\x89J\xd4\xfbO\xf1\xfd_\xd1\x91I\xda\x85\xe9\xbfl\xaa\x9c\xb5\x0b\x93\nY\x80\xa6\xed\xc2*\xb5*\x86\xf3v\xe1\xd3b\x8a\x95\x12wa\xb3\x16*\xa3\xf3\x0ea\xf1G\x16;W\x8b\xa7\xe5\x04V:\xc2\x95\"Z\xa9\x10\xf8\x06P\x8c\x13EP\xf6.\xeb:\x97\xf2\x80A)\xc2.D)\x9c{\x8bPf\x9ff\xd4\xb2.\xa2N\x97\x85em\x0d,\xb0\x13[F,\xcfr\x13Z(\x8a\xa0\x8cYx:\xc4\x17\xf1\x01\xa1\xceVG\xc4\xa6B\x85\xf7\x1a\x96\xdad1\x925\x0bK\x04\xaaTur\x98R\xa9B\xa5\xa4WX\x8b\xab\x94\xd0\xf8\x87\x05s\x94\xd3\x8c N \xae\x9b\xc0\xbak\x02\x87\xee\xd7D\x88\xf2\xd3\xea\x83\x8d\xa4\xa2I\xa6CP1\xd0\xe9 \x08\xfa\x05\x90\xf3\x81HQEf\x1bL\x0c\x93jf\x1b\x02\xd6\x81\x0cO \x933 d0WLL\x02\x19\xbc\xe8\x89I \x83iKbn\xd3\xb0&\xb8\xa5uQ\xc2\x95\x8d.J\x04\xde\"/ \x1duqGB\xf0/\xcaC\xaf\x94\xe0\xfe\x03\xac\xde'0\xc6\x8e\xe53\xdc\xf8>\"\x9a]\\r;$<\xc2d\x03!\x04\x19\x85\xf0\x90\xb3[d\xea\xc0\x06\xb5-};E\xebh]\x1b\xfb\xc6l)\xc9\x8b\xec}\xedw\x99\\\x83\x08\xd1&\xb9\x06\x16l\x93\"\xb9\x06\x01\x15\xa9)\x082\x17t \xc7ni\xdf\xc3\xf7\xb0\xa5\xab\xe4db\x81H\xc2zE:\xe2\xc5\x93\xf7d\xbc\xb5\xe8:\xf2a0\xefR\x88\xdc\xc9'd'G*\xaf<65\x08\x00\x84\xaa\xfd\x0d\xcd\x02\xb5\xbdqn\x07\xce*\xa9\x16\xf538\xadX\x9c\x01G\x9f\xe3\xf4\xab$\xe3\x1fb!_\x00\xd4E\x1aa!F\xf0\xc5rQj d\xc9bG]\xc1\xfe\x92\xa0\x99\x04\xe9w\xfd,\xd0\xc4z\xf0\xd3\xdbJ\x96x@\x98\x9f\x80\x80\xaf\xd1\x9f\xd3\xb5Ko\xab\xdc!\x0f\xb0\xb0,!P\xefg\x965\xbf\xad\xfcg\x88\xd4t[\x076`\xb5\xa7\x08\x94x@(\xce\xedR\xf8\x82\xb5^\xe1\xd7o\xab\x0b3 \xb4\xd4D_<\xc04P\x82L \\\x0dPuH\xebJK\xd9{\x98\xd5\x97^\xae'R@=\x08j\xe1g\xa8\xc8.\xd2p\xc0\x86\x02\x85R\x8f\x17\xcb\x16\x06\xd8X\xa4h\x8a\xb0\x11Yn7\xd4#\xa6\xf8\x93;p\x83L\x1e\xf2Oo\xe75\x80\xda\xeb\xa5msk\x89u\xc8\xd4hR\x98#\xa7\x0d\x02I\x03mJ35\xee\x87\x98jogp\xfa\x08 U\x80\xbf\xb0\x01d[\x7fAD\xc6,q\x04\x9f\xe6q\xea\x07r \x7f\x83\x95$]D9_as\\\x9a%\xd2\xeeE\xb2\xdfm\xc3\x01|H\xf0Z\x1dL\xc2r\xf3\x9e~\xb3\x9b\xa8\x0e&\x16\x89\x02\xe0d\x91\x19\xe7=\x9d\xaa\xe7)\xe1\xbayo\x94\x83\x07\xf3S\"[\xe7=\x90\xfa\x9fb\xbb\xa2\x80@_\x84\xc0\xe6=\xcdE\x9f`\xb2\x9c\xe6=\xc3E\xb1^Z\x1c#\xdb\x1a\x990*+H\x11\x05\xcb\xb4\xcb\x11T\xd6\x0e\x8b\xb3d\xaf\xad\x12\n\xdb\xa6 \xd0\xdbu\xeb\xa3\xfd\x1f\xb1-A\x80`\xd3\x9f\x12\xec\x11 \xc8\xf2F8\x86\n\xf6\xa2\xfaj\xee\x96]\x8f\xb0\xd6*\xc0e\xd7#\x8cL\xe5`_\xd2\xb6%\xd2\xb7\xa6\x04r=\xaa\xeb\xa5\x14\xe1k\x19\xa7\x0eY\xb3\x80\xca\xaeGD5\x15p\xedzD\xd4S\x01\xacUPs\xb7^\x0b\xcd\xdd\xe1\xce\xd0\xb1_Bm\xc3e\xd2=\xc2\xf7j\xbf\x83!\xf0\x97\x98\xb8n\xc3v?\xa4\x15\x80}\xd2\xd3\x1a\xcf \xf2\x82OO\x9a\xc7\xf3\xe2;\x91M\xf3\xf8\x84\xf8N\x84\xc7<\xd6\xe4\x05[ \x05H#(\x11XM\x84 \x05\x009\xa0\xd8\x1e\x1b\xd2\x83\x05\xb8j@w\x0d\xb08\xa0\x96\xa6\x87\xca7\xfcWXQ\x9405 |!\x9c\xe6\xb1I\xdbJOSl\xa8!\xa55\xb1\xa2\x86Dp\xcdcE\x0d)\x1d\x8855|J\xc45#\xed\xd8\xb6\xbfn]*b\x90eI\xca\xe1\x94V\xa8\xa6h\x96\xa1\x96)\x9ae\x8e\x9a\xa2\x11\x9e\x9e\xc7z\xad\x89\xc0!@@\xd1\x08\xbb/b\xd6\x88\x19\xc6\xc4\xacachjb\xd6\xac\x90\x9a\xbc\xd7\xe9~\xa8\x8d'D\xba\xb9\x03\x91S\x9f`=q\xc7\x113\xfaA\x86>gN2\x80\x9dy\x17Oh\xc7\x91!\x9aX\xaf\xc8\xe4\xe7\xdf`\xe4\xcf\x94\x9d\x9f\xf8\xea\xef\x18k\"i\xc9@\xb0\xa6\xb1cl\x80\xd8\xfe\x92\x19\x08\x96\xa9\x94zF+H\xdd\x0c#\xbf\xce\x9c\xfcclw\xcdx\xa0\xbcb\xdf\xc5\xeclG\xdb\x8b\xf0 \xcc4\x00\xdb\xcd\xb3!O\xf8I\xd1\xd8=\xb2,\x02\xd4\x8f@b'\xd0\xac\x11\xba3\xe4\xf0\x06*\xa6g\x99\x06`\xb6)\x01\xe9\xa1\xc0\xf7\xdf\xe0\xc3)ac;\xc4w\xf7J\x197\xf1A\x91\xf0:cJ5\x03\xe2[\xbf\xa2/\xf5gC?T\x9e\x8d\x98\xdeU\xb3\x1dbh6\xdcS\xb1\xbdtD\xf5\xe3\xb9\xb0\xb1\xb5.N\x066\xc7d\xc3(\x11X\xf8 \xe6\x1c\x86\xbb\x93\xb6t<\xce\xaf\xb1%\x1a\xa5\xdb\xc0\xc4\xce\x92k\x03\x8bq(\xd1\x06\x99\xa0\xba!\xf9\x84\xe0\xa0\x00\x80\xec\x8d\x15z\x00\x01\xc1\xf8\x88\xa0\xa8\x00\xc2\xbb\xb9XP\xc9\xea\x1e\xe0\xce\"\x0e>B\xd8n\x99\x81\xd7\xee\x03r\xd2\xa3\xb8\x07\xe7\xed],\xd0dQ\xac\xd3\x18\xe3\xa1\xed\x18\xdb\x06\xa6\xed\x99\x81`\xca! *d\xe3)6\x1bdQ\n\xc3\xc6rSVx_\x93\xa3\xb6\xb5\xb8,\x99\xe4\xdb\x84\xb0$\x0e\xec\x91\x05R\\\x9f\xbf\x87\x15.\x0d\xd4\xde\x0b\xefaA\x0d\xc7\xee\x93\xac\xea4t\x9f\xa4W\xd7E@F\xc6HJ\xe2\xfa\xc9\xa5\x9a%\xac\x9f\\\xafe\x89zU\xe5\xd9/\xb0IL_\xc9\xd9z6\xb6\xc1\x8f\xb0\xdc\xbb\x93\xf8q\xc0\x97\xeb\xe8\xb2\x80\xaa\x9a\x96\xe1\x02\xea\x7f\x88]\x06\xb3\xc4\xcf\xd4\xd6~\x84e\xa3,\x89\xf9\x1d\xe5F\xf5gx\x0fw\x8c-\x00k\xbe\x99\xb1\x05\x10\xa2\xa5nz0\xfb\xcf\xd4U\x0f\x96_v\xb4\xf9\x9f\xa0\xb7\xb6\xff\xe3E\xd81\xcf\x0f\xd0>4\x04_\xc0d\xfb>\\\x8c\xdc'\xdb\xb4\x1f\x0d\xb9\xe3U\xf3K\x12\xea\x08\x85\x90w\x13&1\xbb& \x1e\x1f\xba\xdc@\xf0~\xefj\xd1\x07\x8b*\xb9\x96\x960?\xcau\x0d\x0c\x10M\xe9\x00\xfb\x0f\xf0\xb6\xec\xf6\xd4\x93\xca\xf8\xa67W\x80\x7f\xc0s\xde\xed%\\\xc6y\x7f\x86\x97,7\x10L\x13wu\xb4>\xde\xb3\\\x030\xfe\xed\xc2\xa8\xb0\x1c\x93\xc3\x98\xf0\xa9\xcf=\xed:\x809\xc6\xae \xd6\xc7\x04<7\x10LZs\xe3\xca\x89M]y\xe1?\x88\xf9\xe1\xae\x16s\xb0\xd8\x91k\x00V\xd7vM\xc0<\x16as\x03\xc1\x879\xd7\x9e\x85da\x86N\x02\xeen\x98d\xe6& -\x1ern\xde\xc5\xc2\xdaJ.\xdf\xa7\x12\xa0w1\x95\xca\xcbOWY\x80*6\xe5]l\x1e\xcd\xcdC\x18X\xfc\xda\xd5\x11\xf2X\\\xcf5\x00\xbb\xedC\xb0\xed\xc7\x98\xc1\xee\x86\x9e\x8e\xa9\xc5\xef\xe5\x00\xc8\x84\xd4\xe2Ce\xc0:\xa6\x16\xd3sY\x00\x07\xd5\xe2{(c\x8a}\x88\xf1SBt\xb6\xff\x07\xf8\xa8\xed\xaad\x0b\x9fa\x0c\xc95\x00k\xf4\xbb\x86\xc5c\xcd-7\x10L\x04\x9b.\x1cw\xe3\xc2\xb9\x86\xd0\x95\x02f\xa9Wv\xda|\x1f\xdb\x8c\x15\xb8r'KOh\\\xbd\xb3\xc5\x8a\xc5n,\xa4\x81b|\x18\x9eW\xe1\x96\xfa\xd8+\x98\x9c\xeaX91\x9aw?\xc8\x19\xd2%\x8a\xa7\xa4\xc8a\x8ak\xb77\x8e\xf1[MX\x9b\x94E\xd0\xad1\x96awU\x08\x14^\xe4\\}\xc7\xeb*\xbe\x0fm\x15v\x8d\xc1\xfbs, \xe6\x85-\x9cn\x93v\xbf\xc4\x95$\xa4\x187mSa\x10x\x7fb\x99=O\x0c\xa9\xc1\xe7)/?\x02e\x01jRC\x16\\9\x19~F6Z\x03\xb0\xd8\x92k\x0f\xaa_`\x82\xbbkD\x1d\xc2?\x8c\xa8\x83U\xb7\xdc\xbc<\x84\xeb\xecj\xdd\xe83L\xbbr\x03\xc1\xf2w\xae\x9d\xbb0M\xca\x8d\x0b\x17\x96ps-\x0b\x90\xd5\xdeUy\n\x08\xe1V\xdf\xb1.\x97\xef\x1ba\xfd\x11\x96\x9d\xc6N8\x80;\xc8G\xb8\xb9\xb1\x934\\\xab\x8c\x9dD(\xce\xd2c\x01\xaf\xd0\xd8I\xc2H\xe8\xbe\xf0\x9a\x06\xc6\xc2\xb1\x93\xd4\\\xc6\x08\x88o\x0b:\x17\x80\xfa\xb8\xc6\xb1\x16\xa7,\xed%Vz\"\x00\xe0`\x8f\xe5\x86\xb1\x93\x18O\x0clR\x11\xb0\xea\x1d\x03\xbd\xd2-\x97Q7\x0d5\x85*\xa6\xbd\xe62\xca\xc0g-\xa4-\"\xc4\xb6!`H\xd3\"\xaf\x03\x97\xca\x18\xaaH\xfc\xa1/+\xcd\xfa)f\xe1c\xc53\x9e\xe2\x83 \x002\x8a\xef)>\x08\x97A$\xc4\xe4l\x0c\x9f\xf1\xf0\x8a$f\xb8\xeb\"\x87\x19\xee\xa1HaFFe\xea`]H\xb6&%\xaf\xa7\x98\xe3^V\x9e\x9c\xf8\xa6m\x0c\xdfI\xea\x991\xe7j\xb9\x1e`qx\xcc\xb9\xd2W\xb1\n1\xe6A\xe0\xc3\xbd\x02&w\x97y\xa2\xda{\x93\x1c\n\x0d\xfa\x11\xad\x93\xd5\xd5\xc8j\xca\x97\x13\x9bb\xb9T\xc3\xd5\x13\x17u\xd5\xb7y\xec$\x8e\xf2+\xff+,B\xebR\x85\xe5\x07#3}\x04\x04\x13\xe5\xcbZ\x0c\xc7\xc2\xf6X\x030\xee\x8e\xb5\xc4JQ\xdf\xe4\x8e\xb4dz\x1c\x9b\x9c\x8b\x96\x0c\x89\x97\x8dx\x86\x95\xf1\xb1\x81\x10:[\x1b\xef=6o\x17\x92sg\xd8\x16!R\x86ma\xc5z\\\xba\x01\xb6\x90\x8b\xd2-\xb0\x15j\xeeKj\xa0\xbc\x8eZ].\x0e\x17\xd6\x00\xc6w\xfc\xc1\x1dG\xb2\x82G\x18\xf1\xafh\xbfV\xcc\xfd\xf65\x00\xf3\x9d}\xee\xa9\xf3\xf0\x18+\x00W\xb8\x07Q\xbd\x0f\xf1\xe8\xf65\xe4\x1e\xde\x17 \x81C\x89qj\x9f\xfb*[\xcc\xdb\x18\x97\xafht\xc3\xf3\xd9\xd7\x00<\x9f+\x063\xb0\xa0\xb3o \x98\x94\xec\xdb;\xdfO\xac\xa7g?\xe1N6\xb4\x82\xae\x18D\xc2\x87`\xdf \x12\xd6A\x0e\x94'\xd4C\xcc\x04\x0f\xd4\xce<\xfb\x05\x16\xc0\x0e\x94\x13\x14\xd1\x9c\x0e<-\xfe\xe0k\xe67\xf4za\x9b\xc2\x81\x06\xe0\xfd?\xd0\x0f\xb5\x90\xb7o\x0f\xb4\x8eL\x9e\xbb}Cf#\xc06\x90\x03\xf9\x15\xab\x00\x07:\xbd$y\xcb\xf7@\xdfA\x927|\x0f\xd4\xf3d\xe4!\xdd\x03\xfd\xe2\x0bf\x05\x07:\x99\xe0Gx\xaf\xde0\xe8\x80\x95\xef\x03\x03\xc1,\xef\xa0\x88\x0d\xc1l\xea 2\xd6A\xb2\x91:<\x9d\xbc\xdc{\xa0}>\xc8\x83\xbdo\x18L\xc2\xc4\xea\xc0`\x12&\x8a\x07\xc6;\xee#l\x1f<0\n\xd7G\xf8\xb6\xed\xc0\x88\xcc\xa4\xa7q\x0dK>\xd8\xaf%\x00W\x8d\x8d\x0e\x93\xdfC\x03\xc1\xb8yu\x11\x84\x12\x8c\xe6\x87\x0e\xd8\xaf\xf0\xfe\\\xd5$\x0b/\xda\xa1\x06`\xbc\xbc\n\x1d`\xd9\xe6\x10\xda\xc7\xa4\xfd\x90\xcbdBX5\xbb\xaaO\n\x96\xdf\x0f5\x00\x8f\xe7\xea*\xf4\x8b\xef\xa2\x0f}\xe8\x18+\xadW\x0d\xe2a?\x9fC\x03\xc1D\xff\xaaA\x14L \x0f\x0d\xa2`JxU\xd9\x0b\xb1\x08t\xa8\x0c\x86\xa4<\xe8;\x9f\xe1\x83z\xa8\xf4 l\x00\xb8fBQ0\xc2\xdf1\x10LT\xae\x99\x1b\\\x8c\x1ew\x0c\x04\x93\x90k0\x0d\xbc\x8cw\xe03F\x82k\xea\xe5vL\"\xee\xa8\xef\x98\xa6\xdc\xe1\\?\xe2\x89\x19\xc65\x9eDW|/\x1b\xd6?\xa3vM]\x9fb\xc9\xf0\x8e\xfa\x8eq\xe5\x9a\n\x9b\xc6]\xdd\xd1\xc8E\xa6\xa3,\xfe\xa4\x030\xf8\xff=\xee\xe0\x8e?0!c\xf8l^\xd3ar\xf8\xb6\xed\x8e\xc1;|v\xae\x19\xbc\xc3D\xfa\x8e\xc1;|p\xef\xec\xdf\x92k\x85 \xd7\x9d\xfd\x10\x00\xef\xb6\xcc\xf7\xbb\xf2\xaf\xbb]\xd6\xcfC\xe9g\xda\xe6]\x96uY\xd8a\x7fd\n\xb5\xf2\x94\xb34K|7k\xbdj\xbe\x8e\x9d\x84%\xec\x0c\x0b\xdb'\xe7^\xe9T\xbb\x8a\xe4\xf7\xf9\xeftf\xf2\x90\xa7\xae\x13\xf3K^Q\x93\xcf\xf0\x838J\xb2\x94\x9d\xa9\xf6[\xeeTw\x11v\x99\xdfeN\x97\xe5\xec\x0c\xcb\xaa\xdd\x88\x9fh\x84\xcf\xc4Qz\xc99x\xb5\x02\xf5\xfb\xac\xfd\xf2,;sF\x14H\x13w\xc6\x1d:\xc9R\xe4\xf1\xc5\xac\x9dup_\xe2\xd7\x8f\x12\xd6\xce\x8e\x1e}\x95e\xec\xbb,}\xd5VF\xb7<\x07-\xb7Cfo\xbe\xc3\x12\x9e\xe5I\xc8\x8e\xcc\xbdZ\xdb\xc8\xcb\xf3\xb2\x91\xd0\x14v\xd8\x19\x96\xb4\xa36\xb4\x98\x06\xbe\xcb\xdb9;\xca\xe6\xc4\xeat:]v\xe4\x08\x9f\x89\x9d$\xe5\xc9\xcc\xd8 |\xcf\xc9\xf8\x9a\x1f\xee\xb5\x9d\x0e{\xe9%\xd6\x96+!\x16\n\xea\xf0\x99\xc0\x0f\xf7\x96\xa20\xe3a\xc6\xce\x88e<2\xdb\xb1\x8f\xe7\xb4\x1a\x8bhGV\x17K\xc0^\x13\x7f\x9fa\xf3l\x81eG\x8f\x92\x8aw\xc9\x173\xebo\xd5\x97\x93\xeb\xec\xb33lV\xad\xb4\xe8\xf3\xc4<;\xd2\xb4\xa0\xa2\xcc\x91v\xc8\xbe\xc7^\x11\x7f\x86\xec\xbbl\xeed\xe7\xd5\x0e\x19\x81XX\xebd:j.t\xfe\xfe\x83\xf4\xe8\xf1A\x97\xb5X\xab3\x93E\xf2\x0eg\xc9Iy\xfb\x85\xe0\xf0F\xef\x16w\xb3\x19\x8f\xf7\xfd\x90o&Q\xcc\x93\xec\xb0\x9duY\xeb\xe6M\x9e^\x8a\xbc<\xe0\xad.\xc1\xd6 \xe7\x0b\xec\xc8l1\x82N\x97\xc9V\x9c<\xc8\xca\xd3\xac\x99%\xc5\x147\x1a\xc5Q\xc8\xc3,]`\x8en\x89\"\xfb~\xe2\xc4K\xa5\xa2y}\xd14s2\xbe\x19\xe4\x03?L\x17jXA\x1as\xb7\x0e\xc6Tw\xdb<\x90\xb9&\xd2\x05\x96\xd0^\xf4/-J\xf9\xd6Bw\xedu\x9d<\x1b>\xc7\x08\xa2\xe7i;r\xd2\x13Mm;r\x8f\xd2\x05\x96\xd6\xcf+\xe1^\xeer\xd1\xb5[\xbf\xd4\xfaWZ\x84\xc0>P\xf2\xf5n\xcd)\xbcK\xe9l\xdc\x0e\xdb'\xe7\xe7;\x16\xc9\x14@'0\xc87\xa0\x93\x18$\x88W_\x82NaP\xaeA'H\xadT58\x7f\xe2e\x0c\nt_'\xc9\x08]\xdd\xe0\xc9\x13\x9d\xce\xab\xdf20}JX\xbf\x9e\x1c\x08\x02\xc6g\x8a\xc3\xc8^c\x9c\xd96Um\xce\x02\xe3u+j\xe98\xa6\x1d\x0b\x92Mz-\x88t\x95\xd4j\x0e\xfeGw)\xbb \xf3 `G\xce0N\xe59\xc9P$\xcfc~\xc8xG\x93\xa18\x89\xb2(;\x8c\xf9\xcc\xd0I7\xf6CM\x90f\\'\x08\x04Q\x0bA\xd6\xc9\xae\x877\x04S\xb9\x1e\xde@|N\x0d\xb3L\x8b\x04-,-\x02\xfbF\x90J?\xdd\xdew\x06\x03\x9e\xcc\x0b\x8e7\xe3\xa7\x1b\x8b\xdb'\xe4\x9f)O\xc6\xb7\x1b(\x82\x103y\x91\x942\xc5#KtY.\xddJ\xa4\xec\xaa\x93\xe6\xc7\x03&\"\x99\xb0\x90\x00\n\x17^l\xb1\x97{fz\xaek\xcd\x03\xcc\x9f9o0\xefp\xde\xa4=/2+vD\x00\x01 \"\x80$)Y\xd5}\xb0\x96\xad$\"\x10\xd7\x1d;\xf6}'a\x00\x9b*\xfaf\xe7\xbe\x92\x1bl\xbf\x0d\xf1\xed\xd6\x8e\x12\xc6}-\x8cW[\xd1\xde\x07]=\x1d\x13W\x0d\xd8;#\xc5\xe1U^\x10z\x91R\x1c_aP\xfc\xeb\xbb\x9c6\xa2&\xday_\xf6\xa6\x0b!\xdf\x16\xc7\xce\x1cz\xec\xcb\x85\xcdc\xa7\x851\xd5\xf8\xec\xa3\xcc\x94\xf7t\xc8\xb0/\x9fq\x03\xf4\xc5L\xd94s\xb7\x89\x85\xf1o E\xe3\xdf\x12\xfe\xc6\xbfk\xdc\xce\xfe\xac\xd0\xfe\xddLI,e\xffvUw\x8f\x91C\x1d\x82\x83)\x84\x13\xbcXn\x86\x7f\x95\xb8\x17\x87\xed\x85\xf9K\x1f\x89\x15F\xfe\x18\xcee=\xbd\xce=\xfb\xb9MP\x0c\xed6\x93\xc4_\xbf?=#\xe1\x9f\xa3\xe4IY,\x92,\xfc\x99\x18\x88\x8a\x9cR\xd1JZ\x9e\x96\x8c\x1e\xa8Hy\x05!\xe2+ \x91\xd2D\x88\xe4\x9f\x86\xd8\x16\xbf\xe8\x84#\x0d\xaan.\x95-\xee\xceP\x7f7k\x87.\x83}\x7f\xed6\xccvq\xab\x8c'\xdc\x01\xc2+>t\xdf{\x11\xe6\x85\xd3\x06\xfe\xeav#q\x91]\x1d\x92\xbf\xdb\x8e7O\xb2\x03\x7f\xb60\xcc\x0d\xa4[\x93\x1d\x06\xbe\xee\x0e\x1d\xc7\xd8Q3\xa2\x14R\x8a\xe9\xe6\xb1\xba\x14u\x0e\xd3\x91\xa6\x94\xe2\xdf\x92Q\x01\x94\x0d\xb1\x14g\xd8J(\xcb>\xb6P\xbe\x84bn\xfe\xc1c\x7f\xf6}D\xf7|\xd2\x04\x00m\xfdk\x0d\x03\x11#\x03\x92\x96\xf9\xc2\x8e\xc9\x05\xf8\x14\x81\xf3\x1b\xbd\xda\xd6_\xaeQ\x056\xf3\xe6aT\x90l\x00|@}\x88\x18FE\x91-Q\xd6\xbdv\x1cG\xc1v8.X\x8b\xa2H-\xfc\x14!\xd7\xf2\xd3\xf0\xcf\xe4J\xbc\xa1\x84\xc2\n\xc3/;\xfd\xd0>\xe2?\xc8\x7f\xadt\xe5*\x99\xbfJV@o\x8d\x8a\xad\xf2\"\x12\x9f\x15\x0b&2\x7f\x92e\xfe\x95\x9d\xc1c\x18\xc1>d\xb0\x01#\x98\xc0\xa6\xe3\".\x18=\x82\x10\xbe\x82\xec\x11\x84\xeb\xeb\x0e$\xd3\x90V8\x96[\x9b\x86\xc7\xdd\xcd\xa4}\xfaws\xd9\x97\x155\xe3\xd3\xcb=j1\x8b\xd3\xe2\x98\x92\x8b3\xbf\xb0\x13\x87r\x93mV3\xd1^\xff\xac\xe0\xf7\xbf\xff[\xf2\x8c\x9a\x9a\xbdK\xa1\x82\xdc\x06W\x1f\x0f\xe3\xebVe\x91\xef\x84\x8d\\\x99\x81\xbd3\xd6y \x03+\x13%\xf5\x86\xa1Z\xa7GB\xa0\xd5\xe4E\x1d\xde\xd6\xc8\xd7\xe6m\xbev\x18\xf1\xb2\x12\x8f\xe3\xf6*#\xccK[\xe1\x9fB\x89\x7f\xe2\n\xff\x14\x1c\xff\x14\x12\xfe\xc9\x18\xfe\xc9\xe0+(\x1eAF\xf1O<\xcd\xba\xf8'\xd3\xe0\x9f\x04Ug\xb7\xc6?\x127E\xf1\x8f\xdfB/1\xc59]\xd1\x8e\xe9\x88\xaf\x84\xd7?)+E>gV\xa9\x8b\x07\x99\x0e\xa2\xa3MH\xaa\xa2\xfb*N\x88\x15u\x98\xa4Z\xa9\xf1P\xaf\xd4\xd8T)5X\xd1H%\xcdcEz\xa5\xc6\xd6\xef\xab\xd4\x10\xbfd\x91\x7f\xb3\xa1\xa7~\x14\x9d\xfa\xb3\xf7\xf9\xa4&b\x9as\xf9\xb6(\xd2'\xa8\x88\x8b\xd4\x15\xde\x12Lc\xf5u\x12\\Mj\xfa\xbcY\xe7\x90a#\xad\xfa\x92\x97?M\xe2\xc2\x0f\xd1\xdfL\xa3\xbc\x94:;\x08B\xf4V\xc8\xd55_\xa7\x84%\xff\xa9\xfa\xd6(\xe9\x12Q\xf1E\x18\xbf\x9f@(j}\xe6\x87\xc3\xb7c\xbb\xab\x9fKxI\x07\x90C\xbc\xbe\xec\xd8\xa6p\x8cUF\x14l\x91\xa8XQ'\xf1\xd1A\xb4\xff.%\xa8\xf5B\xc0\xedr-\xb1\xb8\x18*ex\xb7\x0e7\x0cI\xc9\xec\x8d_,\xba\xe5LJbU@TA\xa6\xa5\xb0)\x0b\xe7`\xaf\x15\x95\x1e\xb0:\x03\x9cH\xe0\xe9ul+O}J\xf5\xd0\xdb\xc4\x05\xebU\x02\xd5$\xda\xcc4\x9d'SI-\xfd\xb4\xa6-z\x94@\xda\x8e\x83\xf0\xbc\x03e\xe2yO\xae&\x12c\"\x9ekW\xdf\xdcb\\\xcd\"\xc6\xeb\xaf=\xc8\\\xc7\xaa\xf1\x81Z_|\x91\x91\xb9\x10\x13\xecc[0\xb9\xd9\xf8A\xcc!W\x16_\xab\xc6\x17\x99XI\xba\x9b\xf2\x00\xa3jc\xe90\xd5\x8c-\xf0=\x9bUR\xaaa\x02\x83\n\xf7LZ\n\x0c\xf9\xd1q\xd3\xd0\xbf\xf3\xa5\x0b\n\xfe\x94\x98\xd6\x12pX\x13\x98\x99\xc5\x01\xb8\xe4Q\x8f\xc8\x00\xfd\x86,s\xa5%)\x16I\xd0\xdbV\x8a\xee1=\xa2\x15q\x9e\xe9=\xc3\xd8t\x17r\xba\xdd=\x12\x99(J.\x8e\xb2\xab\xe7\xc5\xeb\xb2\x98\xb4\x8d9\xe5\xe7Z!<\xd0\xbdo\xbfko\xe3\xb0C\xcb\x8eY\xfey\x194uo\xa3Pu\xe7\xd0\xcb\xc8\x0e\xc5\x9d\x13\xf6\xdf9\xe1\xe7}\xe7d5\xf1\xa1\xbbu\xa4*\xdf\xd3\x85\xeb\xd6\x0b\x07\xdfNX'\x9e\x87g\n\xa8/\xab\xfb\xabb \xba\x95\x98\xb1\xf8<\xee\x96D\xec\x0ee\x06\x84GW\xa9b\x9c3\xac\x12\xe6\x07\x97dV\x16\x8a\n\xf3\x9e+4\xc5\xf2$~\xba\xf0\xe33\xc5\xf7\x01\x82\x8d\xf5\xd2\xcf\xde\x07\xc9E\xac\x92?.X\x95e\x12\x90\xe8\xe0\xd2_\xa6\x11QU;g\xd5:\xb4\xa1\xaa\xee\x12\xb85q\xc1\xe4\x01\x01\xc9gY\x98\xd2\xad\xb7*]f\xf7\xb3\xb3\xd6g|\xe9\xf8'\xe4\x02\x12\xefu\x16\x90\x8c\x04/\xfd\xb4y\xce\xe9ZG\xb4\xda\x99\xf7\x9e\x08\xe1w\x98\xe5E\x9bu\xa3\x80v\x05{p\x86]\xa8\x90\xd6)\xec\x81\x95\xe0)fw\xd3U\xcd\xef\xa3\n\xdar\x81\xc9f\xdb\xb6?H\xa2\\\x19n2\xbc\xf5(\xeb\x1b\xce\xf0B\xba\x97\xcc\nRl\xe4EF\xfc%\xbf\x08\xe9$\x98\x91k\xe4\x85q@._\xcfm+\\\xfag\xe4\x1e[\x88N\xa1_\x06a\xa2+<\x0f\x03B\x0bu,\xf0 \xdb\xd6\xe7qZ\x16*m\x03\x9f\xcb\x0c\xf6\xeb\x0b\xae\x85DOt7\x1d\x93f[\xf3\x90b\xecK\xf3;\xc1\x0e\xa1\x82V\x98t\n\xb5\xa3)\\lL;(.'\xd0\x8f*/\xae\"b\xb2^\x07\xf4\x1a\x880\x98\x07\x1d\x9d\xb6b\xf72\x026F\xeb\xdf\xfe\xf5\x8f\x96\x90}\xdf\x14\x07\x81\x0e:NN\xf0p\xea:/]\x88(\xc0\xdf|\x85\x1a\xbdfI\xba\xc1O\xb8v\xba\xf6\x17\xfc^p,\xe7#L7 iFf~\xa1\xdb\x0b\xca\x95\x0b\xbcQ\xd5\xa4\x97\x82\xfc\xb7\xd8\x0d\xd3\xf8nw\x88dj\xb8w\x9c\x12\xe1\xec\x1a\xa9\xb0\x06+\xab\xabta\x1a\xf6<6\xf2\xfeA\x98\xa7~1[<\x8f\xc3\"\xf4\xa3\xef9\xcb\xaa`J\xc4\xc3n\xff (\xf8\x12\xf1H\x13\x9c\xa0\x9f\x94\x05\x1b`\xc1\xbaz\x01\xb4\xcd\xc8\x9c\xde\x04B}E\xcehs\x13\x06\x8a\xcf\xe7\xb0\x0f\x01L`\xae\xffhU*\x15\x18\xa5\x8azu\x83\xfd\x86z\xef\x9d\n\x1f(\xa5\x1dZC<\x18p\x07\xc9 \xb24\x9d\xfd@\x05'yRf32\x81es\x04\x86\x83\xb2P5\xd3\xbbW5K>\x01_\xc1p\xcb\xfc\xf8\x04\xcan\x0dr\x99\xfaq\xf0\x8c\xa4\xc5b\x02#\x85t@\xf0\xdbJ\x01\x9c\x80\xda+a\xb8\x83$\xac\x02\xf8jA\xd8\x9c \xc2d\xe2WQ\x9f\x13&z.\xe4\\w:3Y\xfb\xa3!\x12j M\xd5\x15\x90\xd58B\x96L#\x06\xec\xdd\x19\xe8]\xe9 \xefz\x8c\xa7\x15\xe9\xa2\xad\xd2\x90\xbc\xc5\x14\xeb\x95\xb0\xaf\xad\x9e\x18g\xcc\x89\x9d\xee\xed\x05B\x98\xc8\x996\xedh\xd2L\x12\x03VJn\xf8\x17\x0b\x8dW-\xfa\xaf~\xb2\x19\xff\xd4\xd4\x81\\\xc9zS\x818X=f\xaf\xf2\x83\"i!\x04Y\xdbCQd2\x87Z\xd1nY\xbd\x8a\xd1\xc2\xcb\xd3(,l\xeb\xc7\xd8r\x86)\xd3\x15\xad\xc4\xf0\x186a\x9f\x1b\xb3\x11X\x87\x91\xe3\xfd\x94\x84\xb1m\x81\xe5\xc0:\x14`V\xe0\xf2\xcat\x10\xeaM\xa3\xb8\xaa\xa5\xa9\xf5\xc5\x06\x8d\x1d&/\xfa\xe5z\xd8\xb6\xa8\xa8\xf3\xe6=q\xdc4,\xb4#\xafF\x91\xb2\xe5#\xef\n\xf6 \xc5\xb7\x9f\x1b\xf13S\x918 /\xe8\x908!/\xe8\x908>/Pz\xbb\xcfT$N\xce\x0b:*\xcf\x88\xdb\xe9\xd6c\x9d *gf\xa0rf\x9f\x9e\xca1;e\xf6P9x\xa5\xbb=\xc2\x90U\xa1'L\xce\x18\xd3\xd3k\x88M\x9f\xd0\xcbI\xc1\xbe\xaa\xd5Hx\x06\x14gY\xee\xe3{?\x0b\xfd\xd3\x88\xa0\xc8c\x85\x0e\x85R;\xec#\xc8bn\xb3^(\xfa\xd3\x7f\x951O\xfc2\xcbH\xcc\xbf4\xd3j\xd5\xa4\xcfH\xf1\xa4(\xb2\xf0\xb4,\x88m\x05~\xe1o\x9c\xf3>\xfb\xe8\xac\xe6\xc2\xa9\xaf\x06K,\x8d\x05{\xd5\x8d\x82\x91pb\x83\xa9\x0e3\xa66\xc68AZ9\xd1\x97\x9f\xfb\xd1\x04|e\xf1\xb5f\x8f\xabE\x1f\xb4\xa3\x8c\xe3\xc0\xddd_R.\x97\x04\xac\x85\x8e\xe9/\xef\x04\xcd\xdc:\xdc\x00\xfa\xafh\x90\x08\xb4\xbd7T\x9cE8\x8c\xb3\xa8\\\x8b\x9f\x85\xc1\xcb\xa4\x8c\xdb\xc9\xff\xe0\xa32\x19\xdcB^\x0d'\xa4 \xbcH\xf9\xd3\x96\xebcZ\x08%>#\xc7\xcb,\xb2\xfa/^\x15Y\xd7Z\x8b\x1f\xc2(zKf$<\xc7\xcb2\x1f\xb0&\xbd\xa7|\xc8\xa2\xc4\xb2sJ\xdf\xc9^\x15\x1f$\x955{\xe3+\xf5\xdaS\xba\xaf\x1eqk#\xd0\xb5\xab\xf9\xceD\xc4\xd1\x15@/\x19o\x1e\xc6\x81D\xfc\x0d\xa4\xfc\niwyl\xc5F\xdf\xda6LF{h\x8c\x11Vdl\x0b\xb0b\x15`\xe9\x1b\xb3CVO`\xc9\xdc\xaa<>\xa2\x96:zu\xfa7\xb1[\xf3\xc5o>|\x80\xac\xc7\xb0\x11$\xac\xd9n\xa2\xf7Cf\x92\xda_\x0fqj\xa1P\xb7Zz\xe6\x0e\xd4\x08\xb7\xa7Ha\xb31\xf4`\xdf\xa9\xf8\xc4\x8c\xd3\xee\xfc\x98\x0f\xdc7\xcd\xe9\x1e `9\x98\xcf\xc9\xac\x08\xcf\x89\xf8\xd2\x88E\xd0\xfb\xaa}\x92{\xd5\x1d\xb2k\x94|\x92MgW{\x82\x06\x1e5\xb3\x04\x87\xc7\x14\xf4\xf2\xf0g\x0d\n\xe4c\xceo*\x14\x91\xd5|\xc2\x13L\x0d\xd8\xae\xbe\x93\xc8?%\x91\xb1\x9bE\xb1\x8c\xbeA%\xf3\x8d;aa\xd1\x8c\xbd\xd4\xea\x03\x04\xf0&y\xad\xeb0fT 3\xb7k\xda\xa2\x98\x00\xa6o\xe1\x13&p\xeb3\xa0\xe6g[\x8693:C\\!W\xd7\x03\xa7\xdb\xa8\xa7\xb3G\xf6\x8a\x841N\x8e\x905\xf5\x00\x1374\xbe\x0b\x88\xa3\xb4LY\x90`\x83\x8eP\xb7A\xd6S^\x0b\xde\xbd}1\xb1\x0c]7Dg\xa1\x9d\xe1\x8c\xb4\xb5\x17\xdb\xb5d\x8b\xd3\x0c\xd2y5|\xd8\xb4s\xd2Wk\xd89\xf9\xab\xdd\xa9}\xe0\xd5c\x89\x03z\x7f\x0d\xf1\x98\xce\x1a\xda\x06\xd4~\x1bC\xea\xf1\xdb\x95\xc4\xe5\x12\xcd\x11ns\x8e\xe9\xd3\xe2\xe8z\xaf\xf9\xfa\xec\x13\x13\xcfkZ\x8e\xc6\x14V@\x050`\xbf\x06\xa2\x03\xa8\xe2?\x92`B/\xf3\xbd=Hl$\xa6\xfa\xa9\x1c\x86\x1a\xfa\xeb \x9cc\xacH\xb1\x87\x89\xfaq`\xa2\x9fm\x88\x96\xb8}\x93\xe5\xa6\xb5\x05\xb9T\xf1s\xf2\xc3G\xccW\xa2\xcf&\x0e\x86\x83\x83\xb9\x91.\x0c\x9a\x16D\xeb\xf0Q[Ctj\xf4\x88[\xeb\x05\xee\x13\xbb\xce\xf1\xed\xe7&v\x8dtb\xd7H'v\x8dtb\xd7H'v\x8dtb\xd7\x88\x89]\xebQEL\xc0\xaa\x12\xabF\x9f^\xac:\xbb\x8dXU\x12\xac(\xa4\xa7]\xad\xadVy\xdc\x92Z\xdeJy|+\x11\xcf\x9dr?}\xbcM1\xc4)F\x19\xe9\xa3\xa6Q4\xb7\xa5\xeb\xb5\x10\xb2\xa5\x98\x81I\xdbMk\x1f\xa1w\xee1+\xa4p~\xe5\xd8\xed:\x15\xd2\x17\xb0>GI8\x962\x0fE4\xe5a\xf3\xe8\xe3\x9d\xb9\x8b\xdb\x0fYX\x90\xd7qt\xd5\xc0\xbc\xedG\xa7\xabp%\xb0\x1f\x0c\x08\x83\xa1\xb7W\xcc\xc0\x80\x96\xe9\xee\xaa\xd3g\x02\xd9\x85\x1f\x07\x11y\xbd\xea\x88[\xa0;\x14\xd0(\x10\xdf\xfb)O\xe2{\xa1W\x90\xbc\xb0\x0b\x16\xc0^\xb6\x1d\xe0yf`2\xc8\xa6\x00VY\xbe\xf6\xe17m\xaf\xbc\x91vlX\xc1\"9;\x8b\xc8\xf3\xfc \x08\x8b\xaf\x93K0$\x99\x91\x1f\x19\xbf\xb2\xb1\x0f[y\xe9\xdb~\xb9W(F5\x815\x8c'\xc0\xfe2~\xa7\xb6\xc0\x84\x1e\x98\xc7\xa46\x9d\x08W\xf2#\x8fE\xe1|!\x9e\x0e\x82\xd6W\xe5\xa7A\xa3p\xa4\xc3\xea\x14t'w{f\x1bV\xb2\xa9\x80\x15\xf8o\xfa\x08\x05u\xe3\x16\xaa/\xf1\xc1*S\x1d\xf6[\xdd\x02\x02V\xb1\x82\x001\x85\x16\x9e\xe0\xb6\x04\xf5\xdf_~\xa9\x9e\xaa-Ur\\X\x93\x1a\xab\\N\x18\x11\xd8\xf8\xb3\xd2\xeb\x0f@\x0b2d\xae\x8e\xf1o\xbc\xd4\xcf\xc2\xe0]\x1a\xf8\x85.\x08\xc2M\xd7X\xa2\x11\xf8*\xcbo\xb4\xeb\xac\xda\xa5;\x9a\xb2V\x10\x05+\x1e\x86a\xeaxXA%\x0f\x15ie\x88\xb6\"?\x99P\x9f\x0f\x101A\xa5\x9f\x1fx?\x86\x98O\xce\xfa\xba,\n\xb3c#p\xba+\xb3\xad#rY<\xc9\x88\xd2\x15M~JV}\x11\x9e-\xa2\xf0lQ0\xb0\x9a\xf4T\xe1\xee\xab\x97\x9ef\\zz\x13W\xe0\x81\xd2\xd3\x94U\xcc\x0c\xa3@\xf2\xad\x8f\"\x1f\xaa\xf0\xd5SK\x91M\xcer!9\xee\xd9'\xc7\x85s\x13\xa3a-vk\xab\xe7*o^`\x19XS\xbfo\x99fC\xe6%b\x11\xa8\x82R\xf4\xcf\xe9\xc6c\xab|\x13\xf8\x94\xdfqH\x9bX\xb8Rz\xfe\xb4\x15\x01\x15,\x17\xce\xf1_\n\xa2\x06 \x83y8\xbd|\x1e\xacd\x17\x0b\x9ck 3\x12\xe0\xed&\"b\xf6~\xc5\x08\xa2\xfa\xe0\xf5\x7f\xd1q\xae\xe8\x91\xc7\x00\xdb\xbb\xbb\xdc\xbc7~\x9e_$Y\xb0\xf2\xe6\xfd\x11\x9fO\xb1w7\xdb\x0d\xbf,\x12z\xddG\xa4\xa0\xbb\x12\x93\x8b\x8d\x94\xcfu\xc0\xd7\xb1\x08\"8\xf8\x0b\x0ea+|q\xf3\xdd_\xe8\xfdkz\xc2z\x88\xa7\x07\xdd\xe7C\xf6\x85>\x84^\x9e\x83,\xe4\xa1\nf\xda[\xd5\xe0\"\xc8\x8a\x0dF\xf4\xda\x12\x11\xb6\xe4\x94\xf8\x19\xc9\xf8\xbdj\x82\xf7\xdf\xe9\xc6\xc3\xe1\xdd\xea\xca\xbb\xf1u\x87\xd7B\xf0\xd9]u7\xba\xe6\xee\xf6\x8ac\x16\x89\x16.\xcf\xe7\x86\"\x87_m\xab\"\x9c\xbb@6w\x81h\x86#\x99\x01\x08\xc6\xe8\x7fl\xda\xa9a\x08\x81,\xfb\xeb\xd4\x11\xab\x12\x0c\xf6\xfe\xed\xd1\xd1\x1b\xccLK\xe2\x82\xcbR'P\xc6y\x99\xa6IV\x90\x80IR\x08\xa5\x97\xac\xffh\xc1:\xa4\xb0N\x7f\xddN\xfc[\x0f\xaf\x16\x017W8\xed\xb3e\x919\xf6.{\xd1\x002\xb9)c4r\xc6\xab7-\x98\xf4\x1b\xcf\xb4\xab\xccLH_+D\x0b\xb5\x1e\xd5$3c33\xf1e\x95\x82\x92\xaf\x1d\xcf\xe9\xc3\xc4e\xfd\x02$w\xb3\x00\x9d\x99\xa8\xb2\x92\x1b\xb3\xbe\xd1;'O}J\xe3\xd6\xab\xa7\x96\x1e*s\x9d\xd1\x01\x9d\x99\x00\xca\xb4\x9cd\xc8r2Q\xbby9\xd9\xc5=h9\xd9\xeau\x86l\x17\xd5\xec\x15\x06\xb7\xf54\xe5\x15\x87\x9e\x94\xbf\xe2\x11\xa4E\xefT3\x96g\xbe\x17r\xe2\x95\xa7*\x0f\xdbp\xdbK\xd0\x90\xd5\xd0\xa0\x1fL\x15\xe9G\x0d0tM\xb4k\xa9r\xbc\xfa\xf4\x07q\x05LT-\xa7j\xe4\x03\x82\xc8\x19h;\xe5)T\xc7\xa9Q\x07\x8d\xcb\xebxn\xd2\xd5\xe17\x12\x08B\x87\xa0\xba\xbd\xfa\xf2ws\xf6MZY~\xfbp\x03\x85\x82\xde\xaaYGW\xa7\x06 \x96\xf7\x95R>k\xf1\x80$\xa1\xe7\xbc\x8d+u\xe5;pKo\xea\xa2\x11[p\xb8;t\xdb\xa1\xba\x9eT6(\xc2\x9b\xd6\xa3Z4\xa4*U\xef\xfe\x8d\xe2Yw\xe5J\xffhB\x83\xed-\xbd\xd4`\xab\xc3\xd3\x87UQ\xc7\xad\xd9\xaf\x8a\x1e\xe8d\x07\xdb[\x0fu\xd2\x83\xedme\x8ckV\xf4yX\xf2\xc9\xfb\xd9lHX\x8dHym\x9aSyR\x16\x8b\xe7\x05YJ\xb9\xc7\x9b\x15\xea\xec\x0c\x93ZR\xd0\xacR\xa7\xa26\xa6<%3\x1e\xb6\xd0\x9ba?\x98\x90\xeb\xeb\xab\xe7\x01\x89\x8b\xb0\xc0\xa06b\x08\x7f&W\xa8*\xc2\xbe;\x8db`mQ\xf5i\x12\xe7\xe5\x92\xe4?0\x01\xd1JB\xfb\xdea\x17\x8aa\x8b\x0eQX\xe0\xd8Ek\xd0\x9a\xe12_\xcf#\xfft\xd0\x00\x05\n\x97\xd2\xf2\xb1\xbc\x0f\xb0\x8f\xd1\xe0z-%\xea\x0f\xbf\x0f\xf3\x10\x85'k\x9bj*\x8d>\x14FN\xfd\xd9\xfb\xba\xb2:\x1c\x14\xa2QK\xd4^uP\xdd^\x0cCR\xcd\xc00(FO\xab\xd7\xde\xec\xc2\xa5\x98\xbbzT\xca5U\xf6\xa8A\x1f\xf0\xb9j9\xf4\xbb04z\x04\xd3n%\xf1Qv\x95\x94\x05:\x07\xeb+'\xbc2\xf3g\xee\xa9\x1cr\xbd\x99X{}M\x96\xe5\xd2\x8f\xa2\xe4\xe2(\xbbz^\xbc.\x0d\x96P,\x87e\xc1\xeb\x1d\xc4\xfei\xa4\"\xd5\xc4\x83\xf1\x1f\xbc\xb9A\x0b\x12\xad\x10\x0e#\xa8\xebb\x1ag}\xcd\x05\xd6\x1c\x18L\xf6\xbc\xaa\xdc\x1b\x1fv\xc9\xb6`H(\xd9\xb3\xaa\xea\x80!\\UZ\xce\x97\xa8\xc5\xd4\xd7<\xad\x06\xfb\xc6\xa8\x13=a\xdd\x0b\xad\x8e\xbe\xe2\x05\x86e\xaeQf\x8f\xc3\xd8\x01\xab. \xa5?\xd2\xc8%\xfb\x80\x07\x85;BZZ_\xfb\x90\xd5~Z\xa1\xca\x1e\x0f\xb0\xa7\xac\xfe\xdb\xdaM\xbc\xef\x8b\xf7\xb0\x07%\xa5m\x0c>\x7fO(Q\xe5\x859e\xbe\xf4\xb5^\xc3\x1e\x9c0\x16ArS7\xcd\xee\x0d\xec\xc1\xa9\x97G\xe1\x8cP\x9c\xb51rx\x82\xef\xc6\xf7F\xe5\xdf\x8dS\xad\x1a\xb4oZ\xcd\xcd\xc7\xe8\xacO\x05w'}\x0eP\xf5\xdd\xb8\x9f\xd5\x838T>~\x155\xd3\xcc\x1c\xac\xfdX# \x02\xc5l\xc3\x82,\xc1\x82u\x9e}\x8b\xd9\x93v\xae^\n\xf7\x96\x8f\xaa\x1b]2S\xc3\xca\xac\xa0\x13\x1c\xa6\x04\xd5\xf6\xc4#2W>F\xf5ZQv\x86\x1f\xba\x9a\x9er\x0c\xd9x?\xd1~J\x83\xf9h\xdb\xd9\"\xb9\xfe17\xb3F\xedR\xcce\x17\xcd\x9bu-\x1c\x98\x06J\x18\x0d\xa2\x14\x8b\x88\xa7A3\x193=6H1]r 9K\xb3\xf1\xb4\xdd\x02*\xe5\xf5\xaf\x1b\x1e\x10r=\xf4fI\x19\x17\xf6\xad\xceD\x0b\x1c#2\xa0cmg\"7\xcf\xb0\xee$\xc4\xb8zO\x14\xe7W\xa0\xa6\xaf\x96\x0d\xa8\xb3\x18<\xe2Y\x12\xc1,\x89N\xd8\x85\x03\x8d\xdd\x8aN\xd0IK7\x13\xeb\x15\xbap}\x8aq\xc8nO\xda\xe1<\x93}\xa3\x1c\xe3\xb8\x1a\x99\x94\x06\x99P\x82\x8c:%\x9f \xee7\x9fV]\xbd\xf4S/\xcc_\xfa)\xf3\x17R\xd8\x1f\xd2\xe7\xda\x0e\xa5\x8e\x07&o\xd2\xcd\xe7\xa2\xcf\x8fh\x1e\x1bc\x95@G\xcaj\x88ZB\x1fA\xc1O\xe0\x94\xd1\x80}\xd9\x84j\xb6g\x02\x06\xfe\x80>\x99\x7f\x81W\xe6\x04z\xe2T\xa4\xac\xd6\xa2F]?\x84\xc8\x82\xf8\xb5|\xc9\xbe\xc2\xf4%\xc6v\x98\xdb\x94\xec\x94h\xae\xdf\xcc\x04\xd4\xe7\xa3#\x7f!\xa4H\xf2\x97-QV\xff\xbaK\xb2t\x03\x07%jsNo\x02\xe7}\x8b)\xb8\xb7 \xf4\x04\xd7\xaeBEN\xe0\xbd\xb6\xa2.^h#;\x1c\x06\xd8\xbb\x0b,\x7f\x13\xe31m\xc7i}\xdd\xbfJ m\x90o0\x01\xcbj\xdc\x9bm\xb2\xe6\x8e\xee\xad\x8a\"\xab\xef.\xb8\xcbY\x1e\x1a\x07\":\x9f\xf0\xb0\xe2\x98Z\xb2K\xb8\x1a\x0e\x8a\x8c!\x14,c\x1f\xc1y]-\xf5\x13\xdb\xa1\xa4\xe2\xeb:t\xab\x9e9\xb8\x93\x95\xff\x87d/oJ\x0f\xd7\xe0}\x82w=\xa3\xda_\xd7r\x01\x8c7\x80; \xfd\xa9\xbd\x81\xb9$\x03#%\x1a \x83\xa6\x87\xb1\xae\xda\xa5iN\\\xe6y&\xe2\xfb>\xade4\xdc\xff\xe8\xccmk\x8a\xafL + y\xf2 \xf05\x10\xe9\x00\x1c\xef=\xb9\xc2\x1b\xdfH\xa8\xf3\x8b\xa1_\xd8/\x9e\xa5\x97\x93\xe2mg\x06\x03r\x1c\x8bh\xf8fd\x0dm\xdcn\xacmr\x0f\x1e\xc6\xfeI\xd1<\xf9\xd2m\xa0\x06Zw\xcaM@r\x93\x83t\x17\xb8\xf1\xa9\xd1,\xb7Blo\xf4+\xd2\x08\xfc\xf8zP\xbd\xef[\xe0\\\xbd3\x01s\x9d\xf8\xa1/\xf9\xaf|i\xaf\x06\xc1\x03\xdc\xdc\xb5\xa6T\xedG\xa85W\x9be?\x84\x03W0\xcck\xea\xdb\x8e)\x0f\x19C\xe3\n3D\x9d\x12\x0f'\xb5\xe5sY\x0dr\xc0\xa9\x84\xd5h)\xf1\xf0\xc3\x9c\xd0^\x9f\xc7L5\xd4\xfba_\xa4\x90\xc1\x88g\x95 ~Fh\xa7F\x97\xab_\x03Z|t\x03\x8bo\x95\xa5\xf7\xb9\xe8M\x1dD\xb6%\xa9\xe9\xcb\xb5\xd4\x12\x01\xf5Uoi\xb8\xba\xda\xcd\x86\xbe\xac\xab\x92\x95\x94\xdb\x13\x98\xd6!SZ\xf1h\xe9\xaa\x06\x06\x1b\xaf\xf3\xcf\xd0\xa8\xc6e\xa6\x0b\x1d\x03\x16\xcc)\x95\xc1\x1e$H\xecdM\xd3\x91\xccl:\xd2\xf4\x93k\x81\xac_[\xe8\x89W\xab\x98)\x0e4\x94SZ\x83\x85\x83\x84\x9a\xbaZ\\?\xadod\xe9G\xea$\xedyq\x15\x11\x9de)%\xfb\xcf\xb2\xa4\x8c\x83\xa7I\x84\x19\xdc\xff\x7f\x0f\x1e\x9e\xce7\xb7\xbb\xf7t\xeb\xe4\x19\xc6\x92fj\x19\x9dL\"\x9c3\x1bx\xab\xdd\xa8E\x17\xdf\x92O\xfegj\x0d\xd6\x03E\xd9\x10(\xd2\xd8K5\x0dj?\xcf\xe9\x07\xdax\x16\x81\xce\x18.\xd0\x19\xc3\x05:c\xb8@g\x0c\x17\xacf\x0c\x17\xa8\x8d\xe1\x82\xda\x18\xae\xebd\x93r\x0f\x81-\xa5\xb1[\xf0\xe9\x8d\xdd\xcc)\xfe$c7\x15\xed'\x19\xbd(L\xde:\x9e\xc2\x83M\xdbn\x95Q\xf8\xf31\xbf\xe93\xae)jO\xe0\x1es\x11JPO-t\xde\xd98M.\xadc\x03}O!L\xeb%\xcc\xd7i\x8d\xf9M\x88\xe0\xc2\"\xeeX\x9a\x91\x99_\x08i\x80\x1dsI\x8e\\\xc0.\xd7>U\xda0\x86\x8e\xcd\xa7n}\xe3\xc2\xcf\xe20>3\x89\xffE\xdd\x89uW|e\xec\xfd\x94\x84\xb1m\x81^\xe8\x91\xe8{J\xbd\x97t\x16\x1d\xfa\xf3\x97kW\x86\x01\xc3Pd\xb9\xb9\xc9\xb6\x88\xa4\x94#5d\x0b#\x97\xa9\x1f\x07\xcfX\xbd\xbaoOzO\xcf\x9b:\x01\xd4\xcd\x1c!\xfb\x1c \x19_\xa6\xbf\xb3\x16\x9f\xe75\xf4\xef\x0e\x1a\x9f\xad\x83\x86\xc15C\xaf\xa8\x890\x91c\x97\x89\x02~\x93\x87\xde<\xc9\x96\xbe\xa2_\xee\x92\xc1\x03\x9a\xab\xfd1\x84K\xd7\xda\xde\x1eD\x18\xd9\xfb4\x8c\xfd\xec\x8a\xbd\xc1\xecB\xd6\xa9\x9f\x93\xddm\xf1F\xef\xa9\xc1@_\xef\xd2\xa0\xf4\xe4\xe0\x01\x12\xe7\xa12\xdd\x90\x84\xeaJ\x1eS\n\xf6\xc1\n\xe3s?\n\x03\x8b\xc9\xe0\xbbm\x86E\xd4\xfc\xa2\xd4\xd4\\E$\x9a\xdbU\xcaK:\xda|\xba\xa9\x08\xd2\xaf\x90\x07\x04a\xce\xd9\xdc\xc2\x0b\xf3g\xfc\xaf\xe6a\xf8\xcch{\xb7\xca\xbd\xdfL\xef\x0duR~\xe1\xe8\x9e+\xde\xd5u3\x92\xa7I\x9c\x13I\xea\x01R\xa6\\\xcd\xebJ\xde\xc3\xdbnEN\xd2\xb9\xcb\xc6\xf6}\x05\xd6\xd3\"\xb7P\x8b\xdc\x8c\x84R\x15\xf0\xacP\x06<\x8b\xab\x80g\x94\x88\xccX\xc0\xb3\x0c\xbe\x82\xe2\x11d\xeb\xeb\x0e\xc4\xd3\xac\x19\xf0,\xd3\x07<\xab\x15\xf0&\x92\xadJzwx\x95\x17di;M\xdb\\\xfc\xeb\xbb\x9cN\xc7HW1Z\x96\xd9e:v\xc6r\xbf2j\x96\xad8?\xde\x0d^L<\xad\xdb\xf6\x0f\xdd_\x8a\x8d\x0c\xcd\xd1J\x854\xb6\x80}\xc0\xd4\x18\xcd\x06\xacc`\x81t\x9b/\x95x\x0e)\xd5\xe7\xb1\x1d\xf3\xec\x05-XW\xc0]kl\n\x03\x88V\xd3Sag\xfa\xcc/|\x8b}\xe22\x85\x03\xcbZr\x8c}\xb78YWw\x18\xee\xaa\xffn\xe3\xa6\x81\xa8N\xeb\xdd\x8d\xa4\xd3\xba~(j\x84\xd2?\x14q\x1eT\xae\xcc\x98\xb8\xa1\xbe\xf0\x84\x0f\xb3\xd6\xc9:\x91P\x9b\x9are~\x00Ul*\xc59\xc6\x80\xa2\xfb0\x0d\x11|;s\xc2\x98\xcf.\xc4\x02\x94\xf5\x15\x9a\xe7\x0bH\x94\x13\x15S\x8b\xbc\x96\xa6\x9d\xa2\xdb\x8ei\x1b\xb3a{\x93\x0f?\xc8\x9f\xc9\xa6\xc4C6\xc5\xbc#\x03\xb7#6n\xc7\n{\x11W\xaa\xb4\xcc{\x9dq\x17\xf5\xd4\xb1\x1d\xe5\xd6t.\xed!\xfb\xe3Br\xbb\x9d {w\xc6\xef\xdb\x99\x84\xc5\xddeq>\xf7k\x84\xe2\x9b6\x8a%#\x17\xa8G_M\xb5e\x08Mn\x9d\x82\xa8\xa7\x89G\x9de\xa3\xb4}\xa2\xbcrl\xdah\xac\xd9\xb6\x81\xb1\xbai\xeb\xa5\x97\x914\xf2g\xc4\x8e\xc9\x05\xbc%g\x07\x97\xa9m\xfdb\xc1:`D\xc6k\xcb\x05\xeb\xccr:*9\n\x11\xa5\x04\x1f\xf8\xf3\xf7\xa5+\x95\xca\x8e\xd2\x8e\xedqG\n\x1a\xf2\x92Q'4\x0fSX\x8c\xb7v\x95T]\xf9;\xb2\xac\x14\xfb\xfer\xed\xb6\xa5\x82\x99\x0b\xbe\xf7\xee\xcd\xb3'G\x07'\x87\x07/\x0e\x9e\x1e\x1d<;9}\xfd\xea\xe8\xe0\xd5\xd1\xc9\xd1\xdf\xde\xfc\xfbZ\xaa\x88\xe0\xd5\x16\xf5\xf0\xcd\xebW\x87\x07\xbf\xcf\xaa\xeadR\xaa\x98\xac=\xeb\x91\xb8\x10\xeaH\xf1U\x16\x84a\xaf\x93\xef\x9f\xbc}\xfe\xe4\xeb\x17\x07w{du$\xc4 \x0c\x16{\xef\x89\xc2\xa8\xc5\x17K\xad\x069 \xef)\xef\xfe\xcc\x85\xd0H\x11b\x05\xe3V\x94.\xf8\xcd\xf5\xcdnq%\xd72\x8fQ[\xbd\x97\xf0\xd7;\x0f\xa4\xfb6\xa1\xcb\x82y\xf4\x92\xec\xc0\x9f-l\xbdh\x01\xe9>\xef^\x18\x07\xe4\xd2\xfb)gr?-\xd5Gw4\xb1U1\"\x88G.\xd3$+\xf2)#\x80R?\x9f\xf9\xd1S?'\xdf\x84\x11\xa1\xdb\xe8\xd8\x85s\x8c\x1b#.\xd1}\xe9w\xdbAH\xba~\x07-\\loo\xefR\xb2H\x8c\x03\xd7eg\xb43\xe8k\xc3\xb2\x0b\x1b\x8d\xad\xb1L\xd0\xd4\x11\xbd\xecU\x0c5*Z#\x93\xa6W P\xdfd\xc92\xcc\x91r\x89\xed\xed\x9d\xfb\x8e\x0b\x87H\x91\xd7\xa65^^\xf8Y\x91\xff\x102\x0dIlo?\xd8\x1d4\xc3\xd8~8FM\xef\xc3\x07\x9dU\xda\xde\x19\xd6F\x1fpno?TB\xe7\xf6\x8e\xca\xc0%\xb6\xef\xb7_3b\xef\xfeHZ\xe9\xe6H\xc7[\xf7\x1d\x1b\x05n.X\xf8\xaf\xd5\x83\x87P\xbbt\x82\xd2;\x9b\x08'\xb3\x13\xda\xff\xa6\xf8\xe3=ES\xf5~\x18\x92x4T\xa6'\n!|\x15\xac\xe0Da\xd7\x18W\x85\xe1\xfa\xba\x12{\xac\x11\xdcTxL\x19\x94J\x9cm\xd7s\x10\xa2\xb9\xc4\x1e\xa1MzB\x0f\x9bE\x0f;\x8b\xd3\xc6\x8d\x0cYZ\xd9\xfa\x1d\x992\x99C\xec\xe2O\x89;\xbav\xab\xcah]\xf3D\x08*Q\xd7\xc0W:\xb3Y\x17\x0e\xfe\xac\xabg\xb6E\xe2\"\x0b\x890\x9co\xc3\x8f\xbc~\xf2F\xca\x0b\xac\x8e\xd0\xd8\xfb\xa5j\xaf\xf9*\xaaP\x17\x8b\xb9\xda\xdd\x93 \x89)\xdb\xb2f\xa6\xfdoy.F;\xeas\xf1\xb0\x1d\x95\x91\x1d\x8b\x87m\xc1\xb6\x8f\x9c\xc6#\xe9,\xeflb4\xf3\xd8\x1e=tl+,H\xe6\x17\x98CV\x0f\xbb|q(,\xd5\xb3k\xa1\x82>y\x1b\xa9\x11\x11\xc6\xef\xf6U:\x9e\x98\\\x16\x142Gn;u\x00\xed.\xc4\xb6)+\x0b\xcf\xaba\xaf\xb6\xdc\x12\xc2Q\xdf\x86[\xbb\xeau\xdd\xd5\xe2\x95\xedm\x07\xf6\x95\x9coHr\xe81@N\xecv\xa2\xa1Jk\x10\xbb\xb8y!\xaa\x07\x90\xda\xadT\x079S\x16\x94\xf0\x18\xf2G\x0ed\xde\xdc&\\\x182\xcd\xd7\xd7\x8f](\xa6q[\x08!\xa8\x8c\x9b.\xd8\xfd\x91\x9a|\x18\xa9!q{g[\xb3duw\x1a8\xab)\x0e\x96wFGQ\x94l%\xf4q-#$9\x84\xcaES U\xa3\x14\x1c#\x05iBI\x1cv\xa9\xc2\xda\x9e\xde\xb5\x117\xed\x11D\xf0\x18f\x8f\xf46\xc0\xb45\x9bne>\x9d\xad\xaf\x1f;\xb4\xcd\xd2\xa9\xcdU:\x1f2\xe1S\x7f\x970[_\xef\xe9\x16\xaf\x87\x19\x841\xe4Ho\xe4\xd3\xd91\x0b+\xea\xd4r\x0f\xac\xf2\xe1\x03j\xa2\xaak\xe5\xcb/a\xa3\x19\xbbhE\x1c'a\xb3]\xd5\xa9{\xe9\x17\x0bo\xe9_v\xc1\x88\x95\x84q\x1f \xe9\x11\xba\xcd\xb0\x0dq\x1c\xf8\n6a\x9f\x9e8X\xa7C\xdc\xa4\x97 C)7F\"\xea\xf9P\xac\xbds'\xc0\xaf\x83\xfc\x10\x83\xb8SHbD\x9eM k\x0d|\xb3#\xa2\xf3k\x8dPp\xc8\x0e\x88B+\xc1\xc6\x94\xe3\xda}\xf8\x009%/\"\x14\x87\xf1X\xb4\x9c\x9a\x9d\x80\x8dr8o\xb6\xf0\xb3\xa7I@\x9e\x14v\x8ek\xbe\xb33~\xb8K\xbf\x0d\xe11\xec\xecn\x8d\x1e\xb2\x86\xd6a\x84\xe0\x87\xb6\x04\xb6\xdf\xf9\x98V`\x0d\xecn\x8d\xb1s\x9f6p\x7fk{\x8b\xf7\xcf\xeacGt'a\xc2\xdf2/\xbd\xdc\xc5N\xc6\xb4\xcc\x87\x0d\xde\xcc:\x1d\xe7\x06\x1f\xd4W_\xc1h\xd3\x81u\xd8\xdd\xd9\xd9\xda\xbd\x1b\x08\xef\xdc\x1f\x1c vu\xd8\x90\x02\x8b\x83\x12e~\xa5\x0d\x8a*\xdc\xbd7\x90\x19\x13\x1f\xb6\xc4\xf0\xc5\"K.\x802\xef\x98%\x1dO\x80\x05a\x0eqR\x00R\x00\xa7\x11Y\xd3X~dv\xc1\xa2\xf0\x11g\xc5sB/\x81\x07\xc88\x8c\xb7\xb7\xf1\xdf\xed\xdd\x87\xec\xdf\xfb[\xec\xdf\x07\xfc\xfd\x83\x9d\x0eg\xb1\xbb\xe9\x08\xaefHg\xbd\x84\xd4\xaejgd\xd2(\x99\xc6\xf6\xe8\xbec[E\xc2N\xd5\x91\x7ff!\xdbi\xfdlQVn\x9d\x82\xfc\xda\x1eX\xd3\x04o{\xf8\xf9\xd8b\x0c\xd7\xfd-\xc7\xe6\x14@\xed\xc9\x00UCV?mU\xb5\x89\xe9j\x90l\xa7\x90i\x1dK\x1ah\x0c\xa94d-\xe4\x85\\\xa3\x1c\xfe\xa6\xc32\xac\xd8\xa3\xcdQ\xbf\x0d\xf5}:I\xb5(\x9f\xae\xe3\x03\x87Y\x1e:.X\xbe\xd2\xfe\x10\x83ik{i\xf7\xd6)l\x99\x088\x9e_\xaf\xc1\xa0\xf9KDK?\x11\xa2\xb8;0)\x0d\xbb4\xc4\xd5\xf8\xa8s\x0c\xd5z0Le#\x9d\xc3*\x02\xb6\xcdTG\x02$\xd8\x86d6\x13U\x89\xf3U\xf5\xa7\xd2\xb0\xe9\x1bE\x1e\xe5\xf5|\xf56\xd7>\xcep\xdb\xf8\xc6z\xea\xc7\xff\xb1\x80Y\x12\x9f\x93\xac\x00\x0e\xe9E\x02i\x16.\xc3\"<'\x8c\xcdZ\x95\x9a\xef;\xf3\xdb\xbbm\xc91\xc3\xc6\xe3\xed-%\xcd:RJ\x15Z\xec\xd3\x03\xc1>\xdd\xff\xef\x99}\xd2\xb0\xa5\xdb\xbb\xea\x95\x1dw\xc48>\xc7\xca\x94 }~p\xf2\xe6\xed\xeb\xa3\xd7\xed\x80\x15e\x9b\xdfo\x16\xb7\xc5\x01\x9d\xf58g\xb9+\x0b\xde\x15E\\\xe1<3D\xc6@+\x0c-5\x84$w\xe1\xa1S\x90\x17\x84y\x1a\xf9W\xf4v\x88\x93\x18\xf3E\xdb\xe3\x9d\x11\x9a\xf5\x938x\xba\x08\xa3\x00Y\xb7\xc2\xcb3\xcacX?\xf9\xe7>\xf3\xe9\x9dXU\x16J\xee\xfb\xf7C\x18\x07\xc9\x85\x17$3\x14\xa18^\x92\x92\xd8F\x18\xb9\xc8\xc2\x82\xd8\xd6W\xec\xd3\xc7\xa2\x8a\xf7\xcd\x1eC\xd1_\xfdx\x8f\x17\xa1j\xd7\x9bEI\x8e\xe9\x0ds<\xc1\xdf<\x82lc\xe3\x91\x03\x01\x89HA \xaf\x01i\x1aN\xb3c\xbdMYn\xb7`H\x8dI\xf9E\xc1,8)\x9dfD\xad\x889\x95tF\\F\x11J\x90)\x15g\x97-x'\x0ecpcrA\xf9\xbef1s\xff\x8aYZ^\x82\xa6g\x98\xd5\xc2qei\xab\x90p%v|+\x9a\x7f\xa46\x1e\xec\x9c\x08\x0e\xf9\xdb\x0f\xf4\x94\x1f\xbd\x98\xff{\x90\x1d\x8cF\x0f\xd4d\xf1\xb8\x8d\xa0\xb9\xf0`w\xd7\xb1\xd7\xda\x02\x075\xca\xb8\xc1\xfd\xce\x97\xa8\xe4\x84t\x17\x17\xe0\"u_Sfiz\xacX\xf3\x98\xf2\xd5\xa5\xc3\xa4\x04>\x8a\xf31%<^\x9b\x91\x88,\xa4\xf8\xf0\x11\x14BX\xcb\xf7\x03\xbf\xa3\xa8\x01w\x83\xb9\xa8\xfc\xa7\xd0\x8e\xb0\xb5\x0f\x1f\xea\xd6\xd4[\x14\xddt\x8b\x1e>\xd4\xac$\x83N\xdb\xfa\xd9r\xd0\xd5\x82\xd2\x81\xcf\xf3\x83\xb8\\2\xbe\xc1\x96`\x18L\xe6\xd1\x82\xd2=\xac\x93\x83\xd0s\x8d\xe6;y\x1a\x85\x85ma\x8e}\xde!\xb9\xf9 \xed@\x95\xd0ti.\xa7m\xdd\xdc{'\xd3\xe0\xd6\xff]T\xf5\xdf\x92\xa8J\x83\xb2\xb6w\xdb\xef\xc3\x01\x94\x8c__\x94\xd5\xc5e\xbcN\xcfH\xf1FT|=o^\xab\x1aX$\x02\x9d\x01fp\x0e\xf1dMQ\x1b\xad\xa2\xf0)\xa9\x90\xc4y\x91\x95\xb3\"\xc9\xd0\xe4 \xc28/\xfcx\xd6-\xddo\xfe-\xdd\xbe\x93\xe6g\x1c\x0f\xec\x83\xdf6\x00_q\xfdw\xb6nz&9\xfe\xc8V\x17XT\xf7'g\x1f(;P\xb1\x0c\x0f( \xcd\x98\xca-\xc7\x15\xde\xf0[\xfc\x82E\xc6\x80'\x8f\xb5G\x9bc\xc7\xe5>\xb5\x94Z\xc0\x83\x1b\xb5\xb8\x05\xf6\xaa!kp\xd1s6\x17\xba\xb3\xa0\x13m\xe1\xe9\xe1\xe1\xdb2\"/\xc2\\\x11\xec\xe0\xe9\xe1\xe1!%M\x9f\x91Y\xe4\xb3x\xd3\xdd\x80 O\x0f\x0f\xd1\x14\x817\xd1.\x8dB\x12\x17o\xc9\xacP\x97?{\xfd\xd2X\xc8\xe6\xa2->J\xde\x93X=\xf8g~\xe1\x1fe~\x9c\xcfI\xf6\xbc Ku\x1b\xdf\x84\x91f\xe4\xdf\x1e\xbd|\xf1$\x8a\x9e&Q\xc4\"P\xa9\xab\xf4\x95\x7f\x93dK\xee\x85\xa4\xae\xc0\x9c%\xb4U^\x92 \xf4\xd53|\x19. e\x89qs\xbb_\xbe\xf2\x97$x\x95\x04\xe4\xa5\x9f*J\x93@\xb3\xebo\xfc0\x16\xe1O\xd4K\xf3&*\xcfB\xc5|\xd9{\xcdp\x0e\xbf\xff\xd3\x0b\xbc\x8a\xd4m\x1e~\xff\xa7W\xe5\xf2\x94d\xda\xe27\x98%X\x03\x0b\xb4< c\xcd\x80\x0f\xbf\xff\x93 \x90\x0e\xbf\xff\x13\x83\x94$\xd3\x80\xc9!f\\\xfb\xba\x9c\xcf\xb5\x03\xa4\x07\xe5pAH\xa1^\xd5#rY\x1ce\xfe\xec\xfdS\xddQ\xa9jh\x8a\x93rV\xad]Ur\xed\xa2+zb\x07\x945a\x94\xf89|\x05\x0b\xc1s\xc2\xf9\xfa\xba\x8aZ]\xba\x18\xc9~1=W\x18\xbcQ&4\x98\x9e)JN\x91\xacW\x95\x9c\xc0\x1e\x9cR\xa4\x7f\xaa\xba\x90\x80_\xc5'H~\x9e\xd0\xfb\xf7\xc3\x07(\xed\x13\x17f.\xa4\x8e\x0b'\xd3y\xfdn\xee\xc2\x19E~\xd33\xca\x80\xa5.\xa8\xe2\xd2 r]\xd2[=s\xe0d\xba\xc4\xcfC\xfa\xf9\xd2\x85l\xba<\xae\xc5\x9b0\x14a\xf7\n\x804J\xcb\xed\xfbj\xbe\x03\x11w\xe3\xbd_Q\x94:&n\xbc\xbd\xfb\xefv%\xff8v%z\x82\xef\xbec[e\x9c\xcf\x92\x14\xbdU\xda$\\\"\xfc\xf5T\x07\xa6\x123@2\xcd\x8e\x99R`\xe7\x01\x1a\xaff.\xfc\xa2\x97\xf6u\x98\xfaiv<%\xf4\x18\xc9\xf6\xf0\xca\x99\xe8$\xfeF\xd8\xfb\x0c\xed\\\x84\xb1\xa9/(\xa9\xf1v[\xc2\x92W\xc4V\xe35\xa7\xb0\xc6\xaa\xb8%*\x8d\xcf\x9c5\xdf\x16\xd4\xb0p%\xf7\xb7[\xaf\x03\xdez\x1b\x85,8\ni\xd7?\xe7\xef\xdb\xf6\x10K\xd6\xebN\x1b\xb5\x9c\xf1\xf7[\x8e\x97\x93\xd6\xba_\xb1\xb6\x1elvb\xe1\x9dr`m\x8f\xea\x84\xb7\xd6\x1e\xd5\x05\x7f\xdf\x1e\xd5\x01R\x9a\x95\x8c\xbeYx\x89\x85i\x96\xccH\xde\xf2D?\xc4\"\xae\x98k\x16=\x85=\xb0\xf8Gx\xceg\xf6e\xab\xd7\xf7f\x89\xee\x13\xb4\xb0\xdd\x83So\xde,xM\x0f\xc4\x9aY\xda[dW\x1a\x9eW\xe0\xc8C/#y\x12\x9d\x13\xbb\xbdz\xf2\x83\x1e\x1aM\xf6g\x8f\x1ea\xa1\x1e\xccS2C\xfcr<(\x1b\x96x\x88\xfd\xde\x85\xf7z\xd6\xf7\xba\xcb\xd2\x83d\xc7\xf0\x14\xfdQU|\x1c\xdf\x8b\xb7\xe4'F\xd9\x1e\x9c\x93\xb8p\x98\x0fK\xb1 \xb1\xfd\xde\x919\xb4\xa2\xd3\xcd5\xcc\xfcb\xb6\x00\x9cCK\xf9\xd6\x06\xbf7\xbdsF\x15\xb5V\xa8\xbcf\xaf\xa5\xf4\xbb\xe6d*m\xb5\xcd\xe21\xd0a;8\x85\xe6h[\xe0r\xd4\x87\xed@\xe8\xb9\x88w\xa2\x95\x88\xd02\xc4\xb7\xea\x0d8\xe7\xb6\xcb\xc4;\x99\xa9k\\\xe95\xaa\xf2\xd3\xe0.\x89wr\xcex\xcb\x11`\x8c\x9a\x93\x9c\xb1\x97\x9b\x8c\xb5\xac\x05K}p\xc5\x85\x995\x02M`\x1f\n/y\x0f\x13(\xbc\xb9\x1f\xf6\x84@\x87*A\x14?\x1c\xfd\xd5#^\x9d\x02\\\x7fm\x9649H\x96~\x18\xab\x17P<\xfa\x13,?%\xa5?\x124\x1b\x19\xf3\xb5[PP\xf9 \x89)\xfck\x0fF\x8e+\xe2\xff\x94H\x81\xec\xa1I\xb5\x8d\x81*f\x1e\x89\x0b\x92\xd9\\\xa7P\xda\x19\xf2\xe8\x98\xa1\xd8#\x97aas\x06\x7fm\xd3au\xf6\xd0\x1b\x81\xdbX\xefCd\x1f\xd8\x16?w\x1b\xb3\x85\x1f\xc60\xbb\x9aE\xc4B\n\x08Ma\xde\xd8\x14\x82\xf7!d\xda\xd2\x18\xfdK\"Z\x9cc\xc9\x04\"[\x91\x1dP~\x1a\xe7\xb2wYp\xfck>\x9f\x1f\x9fDd\xf7\x84\xdf\xbc6\xe0#\x88k\xd9t\xf8\xc8\x01\xdf\x8e\xa7\xe1\xfaz[9 ?\xf4\x90\xa0\x90\xdc\xad\x8e\xd5\xc8\x05\xd42\xaf\x89}z\xa9\x1b\x93\"z\xe6\xb5\xe9\xf8\xbf\xec\xc5Egl\xf1s\x03\xfd,\x1eD[(\xc4\xe5f\xfbxB\xb5\x13\xa5[\xfc\xbc\xa3\x80\xa9J\xe7\x14\x08(|\xc0C\xe0\xf0\xa3c\xea\xed\xa7\xde\xdeV\x85_54\xca\x80U-\xfa\xb7l7,\x01S\x05\x87\xa9\xaa\x02\xdf.v\x0b\x9b\x92u\x0e\x00'\x01J\xf4L\x0d>\xfa\xc6\x9dz\xd5\xbbv\xc2T\x8er\xaa\xddu)\xbc\x93\x00\xaf\x10\xfcA1\xbd\xcb\xd6\xa0\xf0N.hA\xe1x'\x94\xa2\xa7d\x85wB/\xc81\xfe\xf2\xc5W\xccG\xfdd\xc6\xed\x0d\xe9Eqd\x17(\xc40\x8e\xfc\xed\xb0\x91\xbb\x15o\xaeV\xf5\xac\xc5\xdeI\xa0\x03\x86\xb8\x9e\x14*\xcd\xf9\x9c4\xd7\xaf\xf9\xda\xa5\x9d\xb1\x1b\xb0:X\xf5\xe5\x073\xb4\xec9\xa5\xa7\x19\x89\x87\x00\xc2\"'\xd1\\\x97?\x8f>\xb8\xceo\xd0\xbcj\x7f(\xf1\x04\x12\xaf\xde\x7f\x17\x9e\\L\xc0\x90l\xb1\xaa\x16h\xd3\xb2\x8aGC\x95\x8bg\x18\xc5\"\x0c(\xe9}\xfc\x16/\x98\x11\xde\xcd\xaf\xf8\xef\xbb$\x03^\xb1\xbe\xb2\xde\xc0\xdb\x86\x9b\xdf\xa1wL\x05\xfe1\x03\xff\x11\x85\xef\xd8\x855\xddx\x87\x8d\x93\x8f\xcf<\x91\x01\xfb\xd7\xb3w\xd7\xda\xf9w\xe7\xdd\"2\xea\x1d\x7f\x8dg\xfd\xd0x`\x17<\x82\xe7\xa1\x0b\xe2PX.X'\x0b\xcbq1\xd4\xa9\x0bY\x9d\xc5\xbau*\xd4\xe0Cl\x04\x13\xd6n\x05)\xe2\xcf\x16r1.\xfa\xabf\xfe\xec\xe6\x97\xd5_\xd7.\xbb\xc4\xf5\x93d\xd2>A\xd9\xb1\xbf\xe4\x9b\x97\xbd\xc9e f h?\xfc\xeb\xbcSy!Wf\x84b= \xa7i\xdeco?\x189\xf6\xa1l[\xdb\x1e\x1f\x89\x07\x84\xfa\x17\xac\xdc\x13{)v\xcd\x9cS\xfc=\xec)\xd9T\xa6\x7f\xc6\xb3A\x19\xacf\xad\x9a3G\xba\x97br\xce\xfd \x19C\xefb\xfe\xe7\xa4\xb5&\xb3*\x07U\xb5\xc6\"Y\xcc\x89\xdf.\xcbi\xd9\x11\x9f\xc7\x1a\x05\x93Xp(\xcd}n\x9e#\x04\x97\xbe(v\x92\xc5\"\x13!\x88q\xeaa\x88kG{\xe5\xd41\xb9\x80\xecQ\x17\xba\x04U\xc8n\\\xfa\x86\xdf(\xa8'}\x8b \xd5GNU\x84Z\xe6=v2\xb0D\x86\xe6SoNwy\x88\xb2\x98\xe0\xcdv\x88\xdb\x89?}JA\x93\x0b\x16\xf4m\x82\n\xf5\xc6$\xe7\xf6\xdc\xfb\x13\xac\xc3\xdc\xfb\x01\xff\xff\x0d\xfc\x11\xd6^\xb7\x01\xf2\x8d \x8a\x0e\x1b\x1f3\x13S[\xc6\x15\xdc\xfe}\xec\xd8\xf2+\xa6v\x90L\xe0Y\xc7\x87\x8d.%|\xd3\x9e\x1b]\x9e\xbeM\x16\x04\xd2\x13\x15f\x02I\xf4\xb4\xe9V\xdc\xbe\xc3\x14\x16j@\xeb\xacS=\\\xbb\xa4+\xbc\xf6\xda1\x8e\x1a\xf7\xbbo\xd8|T\x17v)\x0eG\xb5o\x870\x81>\\\xd7\x19\xda\x9a\xfd\x9a\xc9\xeb\xb7\x1fl\x99\xa2\x85\x1ez\xcc\xea\xd9\xc3\x13d\xbf\x97\xc1\xc24-?\x8a\xfa\xa6$\x93\xaa\xea[\x8fa-\x9d\xf1\x10\x8b\x86`\x14\xdf$\xbc\x8a^d\x13\x0e\xe7T\x05\x1e\x9d\x1a\"4\x03o\xd2\x90$\x1f\xb8~m\xa4\xa7\xb1\xce).\xa7\xd7\xc8p9\xeb9\x0f\xb6\x14\xae\xaf\xf7S\x80\xe8!a\xe8\x1f\x90\x98F\xcc\xcbP =\x9b\xeb\xebn--\xa3\x10\x81(r\xf8\x08\x01;\xa6\xa4E.\x88\xf4iy\xcc0\xdf\xc6\x062\x18\x99\x1d\xf7Q\x85Z\xa6\x198\x98KM)\xeb]\xeb\x8f|\xe8\xa1-Ub\x87\xde\xf9\xd0\x8b%\xf3g\xbdg\xf7\xae\x00]\x0f\xc5\xc9\nP\xbc:luw\xbd>v`\x90\xe6i\x93\x08jw a;\x90\xd9\x89i\x07$\x14\x84?o\xa4\"dB\xaf\xf6\xd4\x91\xc7\xb4\x1b\xb6]\x05\x8a\xed\xb9\xaasmo\x0f\x98\x84\x07\xc2\xb8f\x0dk\xa7\x8f\x18\xd6\xc1\x9a@\x18\xcf\x92,\xa3\xb7u\x18\x9f'34K\xd2\xb9\x9a\xdd\xdc\xbe\xb8\xa3\x02\x14z~\xb5;\xf7\xf6}\x95\x9f\xbc\xc2\x86\xbb\xe4f\x01m\xcdc\xce\x9bi\xdb\x02F,\xb0W\xe3\xdd\xac\xe5C\xc2u\x1c\xa6\xdd\x98\xbb\x90\xaa\x08\xa8\xc0\x85\x85\x0b\xe7\xae\xb0\x07Ia\xbf_2\xd4Y\\\xf1\\\xa30Ze\xff|\xc5|Fq E-p\xeb\xd4;E\x13\x96\x0e\xdc(I\xe6\xb3\x9b\xfa!\xa20\xd5>sT\xf3C\x9dJ\x802|a\x9d\xe0<\x82\x00\x1e\xc3\xe9#8\xd5Y\x9a\xa2\x95\xe9\x92\x07\x8c\xbd\xb2}\x9b2#dzz\xecL7\x8f]XLG\x18+\xf0\xca\xc6wN\xed\xa7\xba\xc4\x9f\xb3\xca\x0cu\xd9<\x8ej\x13X\xa6\xf7\xc1da\xdcq\xea\x11\xaca\x97\xe7^L.\x0b\xdbq\xbc \x89\x89\xc6\x1a\xb7\x1alb\x9f\xbbp\xe5\xc2\x82\x07\x82\x82b\xd8\xd0\xae\x1d\xef\xeb\xb7\x07O\xfeL\xc9ezq\xbd=8z\xf7\xf6\x15\xec\xc1l\xb5C\xb6\xd3o%-\xe07\xe90\x90JFW\xe0:\xd8\x87\xc2\xa6\xf7\x14.\x7f\xcc\x97\xbfh_\\\x15\xafk\x8c,I<\xd6\xacB\xe6\x87\xe0'\xe1\xaf\x90\xa1\xd8\xb0rhs\xdb\xfa\xc6?4\x7f\x0d^\xab\xae!QR\x1b\x99Hf\xa0M@7Y\x98\x0c3\x1f\xe1+*\xcd\x11\xaf\x11;cv3L\x8c\x87\x86W\xd3\xe4\x98\x0b\xf5n&:\x8d\x1c/a\x98\xc3NuY\xa1f\x0b?\xf3g\x05\xc9\x9e\xf9\x85?Q\xba\x94q\xfb\x9c\xde\x85H\xbd\xc0/\xd0j\x8aNe\xde\x03\xdfJ$\\\xf5\xa1\x9a\x85'\xde\xdc.\xd0TOA\xf0a\x82\xb4\x12\xb9\xe0\xaeK\n\xac\x1aX\xa5\x90\xe3M\x88\xa7u\x14nLo\x18\x89\xfc\xa4%U\xed\xde\x7f\x82Y\x9b\xde?\x9ef\xc7m,\x1br\x16\xae\xef\xec'M3y`\x13`,\xd4\xac\xd3q H\x04\xe3\xaaB:\x1d\x1c\xc5\xd3\x12t\xfc\x01\xb8\xf3C#t\\fg\xde\x1bX\x87\xcc{kP1\xcd\xc3\xd8\x8f\xa2\xab\xa1\xd2w\x9f+\x8d\x93*j0\xe5\x88\xc5\x1f\x1a\xd1{\xacSr\xab\x92\xd9\xb4\xd5\xc7\xb1,\xa7\xd4\x1ab\xf3\xcfJ\xcchj;m\xbd\x8a\x89\xcc\xeal\xb4\xfc\xa8\x8c\xcb(\xebF\xa9\x8b\x8f<.\x86`V\x1b\x96^u\xf9\x11\x81\xb7\xebP\"\x02\xf7l\xb7\xc0\xf1\xd0\x00\x88E6\x18\x08\xf1\"\\\x84\xb9\x01\xdcB\xa5}\xad\xd0J\xc7\x1eACwn\x0b0\xa9\x953\x8e\x1d\xa3\xd2\xa4_M=dAc{\xfb\xc1}\xae\xa5\x7f\xc0\xff}\xd8\x8cj\xc7\xc3co?\xe4Q\xed\x1e\x8a\xf7;\xfc_\xfe\xfdC\xfe\xfdC\xf6\xfd\x0e%G\xf0\xdf\x11\xffw\xcc\xff\xdd\xe2\xffn\xf3\x7fw\xf8\xbf\xbb\xfc\xdf\xfb\xfc\xdf\x07\xfc_\xde\xde\x88\xb77\xe2\xed\x8dx{#\xde\xdeh[\x19e\x8f9\xdb\x0eY\x8b^0\x1aw\xc2x\x87U\x90J\xbc\x92\x9f\xf2\x10\x8f]\x94(WJ\x02\x82\xfe\xc1-\xc8CD\x88\xe6\x04k\xcc\xd0}\x84\xf1V\xaa\xa0\x19Ul\x91\x0e\x82\x94\x1b\xed\x83\xd0:o\x9f+\xb4\xdc8\xe9n\n?_$\xed{\x0c\xbeVL\xc0\xa2\xc2\xed\xc1z\x9d\xc8\xcf\xc78; \xc5'\xa3\xd1h{4\x1a9\"v>C\x18o\xfd\xf8\x8c\xebH\nYG\xe2\x03\xa6\xb3\x84Y\x12\x10H\xe9dtv\x96\\i]\xc0W,\xba%\xecc4 \x0cy\xca\xa2_\xae\x83m\x17\xb0\xb1\xc7\xca\x1dx\xfc\x18\x10~\n\xf8\x0f0\xda\x1co\xc3:\x8b\x99\xd9\x9b1\x17$\xfc\xcb\xb3\x0c[\xb7\xc3a\xbd`\xa6\x8b\x1b4\xda\xdcR`+\x0dPd\xfe\xc5pP`\xb15\xbc\xcc\xbf\xe0LiX\xcbnM\xe0A\x81\xa7d`\x12\xc3c(\x1f9\xc0-\xb9x\xe4\xd6bZ\xae\xaf\x1f;\x18F\xe2+&kiV\xa8\xc1\xa6<6X\xab\xf9w\xb3\xf4\xea\xeb\x83\xe2\xacM\xc7\xb6\x8a,\\Z&\x85y\x9b\x9bV-\xaa`\x059\x15\xb2u\xbb\x01\xf7\xc2\xca\x8e&\xd6\xdf\xa6:\xbc\xd4\xf6\xc3\xf6{\xba}\xd6\xd4\x82u\xf0YD\xce\xaeXS$\xdb\xfa\xff\xd3Z%\xff\xcf\xfac\x9b/\x8a\xea\xaau\xa5/\xda\xb5f\x03\xb8o\x90\x85\x12\x8aT\xb2\xc0\xc7\x1d\x0e#S\x04k\xb2\xe6O\xc9\xb1\xcd\xbc\xf3~\xfb\xf5\xff\xf8\xb7\xff\xc2\xe2\x9d\xf2\x9fX\xa6l\xe3Zs\x8b\xd3\xb5I\x98;s\x89J\xbe9\x86\xe3\xed0\xca\x807\xfe\x97_\x82\x9dLcZ;GWnA\xfbR\x94_\xca\x07\xb9e\xf9\xd2Z\x809\xec\xc1\xcc\xa3\xb0\xda\xc7\xa0\x81\x04\x8er0eT\x05\x8e\x803\xef6\xe1jE\x96]-w\xc1\xc2\xbc\xeccM\x85HTh\x11\x1ej\xc1\x82Z\x0b+\x8fT\xaem\xfdX\xfc\x18\xffx\xfe\xe3\xfc\xc7\x0c\xfe\xed_\xff\xeb\xff\xf5\xeb\x7f\xfd\xd7\xff\xf3\xb7_\x7f\xfd\xed\xd7\xff\xfc\xdb\xaf\xff\xc3o\xbf\xfe\x8f\xbf\xfd\xfa?\xfd\xf6\xeb\x7f\xf9\xed\xd7\xff\xf9\xb7_\xff\x97\xdf~\xfd_\x7f\xfb\xf5\x7f\xfb\xed\xd7\xff\xfd\xb7_\xff\x9f\xdf\xfe\xf3\xff\xfd\xff\xfe\xfa\xeb\x8f\xe5xs\xfc\x00\xff\xff\xf0\xc7rN\xe6sk\xc8\x19\xbb!M9\xde\xde\xc1(n-vF\x8f\x91g\xe2\x8a~\xd2{I\x0b\xd5q\xafm\xf3 $r\xc3 \xea\x02\x8a\x8d:\xe1%(n\xb1,\x8f\xc4\x01\xe6_Q1x\x14\xc8\xe9\xa7[\x8em\x89z\x96\x81\xa6\x11u\xfaVJ\\_\xa1X*\x17\xe4\xf6\x95\xe76V\xdcg\xf0\x18F\xb0/\xa5#\x1e\x1d\xd7\x06\xcc\xcaV2\x96\xf1\xc7\x1c\xd3\xacl\xe9Iy\xee\x1b\x11\xf9\xddN\xd0\xe493 \x18~j\x0d\xbc\x82O\xc7\xcdM\xe1\xd1\x0f\xb3DM \xf7\xdc)a\x03\xeaK\xbbd6\x15\xf9\xef\x02O\xf7\xc7J\xde_\x06\x8d0\x9eEe\xc0\x82]\xe8@C\xd4\xe9\x03\x8d\n\xed\xff\xa7D\x02\x8e\xba\x07\x0fS;\xbd\xc6\x08\x91\xab\x80\xc3\xed\x0ecc\x99\x06\xe3\x8e\x8c\xa4\xc4/&x\x83\xef:+v\xd9\xb7_\xa3\x91\x96\xb6\xb8\xa9\xb4\xb8\x0e\xdcO\x99`\x05x\xa3\xc0E\x91\x89>\xe4\xf1P[\"S\xf48\xe5a\xfaC\xd8\xdb\x83\x11\xdc\x83M\x05Ca=M\xca\xb8\xa8\x1d\xb7br\xe6\x17\xe19is\x12\x0f/\xc9\xdd\x0f\xbd(>\xc9\xd8\x93\xb8\x98%\xd1\xc78\xb2\xb4i:|\xd1\xfc\xc7<\xb6\xb4\xaf<\xfc\x99|\xbcY\xf0\xd6?\xe6$\xc2\xc2\x8f\xc2Y\xbe\xd2\x1c\x86L!\xfc\x14\x80\xb42\xf2\x19\xb4\xfa\x88\xf6\x17\x19\x99\x7f\xe4\xa5\xcf\x97~\x14\xad4\xfc!\xa3\x17\xad~\xf4\xc5\xa7\xef\xdf\xaf\x06\xfc\x83\xc6/\x9a\xfd\xf8\x13(O\xef~\xf4\xe5'\xc1\xfey\x99~\x84\xa1\xa7w4\xf4\xd8\x1e\x8d)\xb9\xbc\xf4\x8b\xd9\xc2rad\xae.\x0dfZ\xd5S\x8a?\xd5k\"\x1e\xc1\x19\x10\x93\x921\x91e\x0f(z\xa8\xd2\x99\xc5\xd3B\x9f\x19C2\xafO`_\xd8\xe11/\xaa \x9a\xc0q)o\xecL\x8bc!\xc8\xcf:qA >\xbe\xe1jrQ\xa3\xe5\xc2\xf8\x06\xeb\x99)<4`\xd0\x92\x86}K\xea7\x964\x93\x974\x1b\xb8\xa4\x12?\x91a\\\xb3\x04W\x95\xbd\xe1k\x19:,N\xd3\xdd\xadhN\xfc\xec\xdf\x01\xf4\xee\x963\x8d\xc2B \x9e\x1d\x03K\xfd: \x0dGl\x8fw\xda\xbe& D!\xdd\xd7L\xef\x86J\xb4\xae\x90\xc4\x9a\xa1\xf1\x8a\xe5\x9f\x9e\xce,\x9ew\xe2\x9e}\xea\xfc\xf1\x9eC\x99\xe3\x0f\x1f`\x1bu\x1e\x05\xc9\x8b\xba|\x7f\xe2\xdcsac$\xc2:\xd1zc\xac\xe7\x9f\xca\xb5|lH\xaa\xc4\x1a\xf3\xea:\xde\xbeC\xffkT\x92\xcb\x1d[*\xa3\xdc;-\xaf\x8a\xbd\xfd\xaaP\x05r\xe7\xdc\xf7Y\x12\xa8\xde\xb3\x9d\xfd\xfd{\x1e\xb9$3\xdb\xb2\xe8\x1c\x15P3DO\x02\x92\xad\x9a\xd0]\xaa\xe3\x06@\xd3'gOx!\xf14<\x95%\\;\x95\x8a\xfc\xedZ\"\xa7_\xab\x83\xe8\xe1\xe8\xd4\x9f\x9d3K\xff\xdc\x85\x08\xc3T\xcfY8}\x93\x93z\xc0B}\x86gq\x92\x91\xa7>\xc6\xf6\xb3B\x0b&\xf4\xda\x83uZ\xb6,\xa3\"\x8c\xc2\x18\x8b\x96\x8d\xa22\x0eQ\x11\xbf\x0fV\xd9(\xc8\x8bp\xf6\xfe\x8a\xbe\xbf\xe2\xef\xf5CX\x98}\xe4\xcf\x9b\xbbY\xc0>l\x8f\x1fn?\xdc\xbd?~\xb8\x83\xe6\xfe\x8f\x1f?65\x80\xd1g\xeb\x03O\xbc\x1c\x83\xa3\xbb\x10\xc0:Xg:\xfb\x01\x94\xfea\xd0\x06t\x8e\x90Z`J\xce%o\x876\xf2\x85\xbd\xbf\xf6\xe3\x8f\xb9c\xb9\x10\xa84\xd4\xd5\x83\xfe\xeeK\x06\x8b<\xbe\xe7\x9amG\x18y\x0cE\xcd\xb0\x0e\xf9t\xf3\xb8\x82\xf0\xc7\x80\xf1\xd5\xec\x94\x07?\xe12\xa5\x85+>p\x1c\x17\xd6\xd0\xb6\xbf!\xf1\xc2\xa4!\x9b\xc7\x95F.s\xcd\xe4O\xe3\xc1\xa9\xcf1.\x01\xcc\xe1\xab\xae\xe4{\x03\xc6\x8f`\xbe\xbe\xee\xc8;S\x8b\xd8\xe6h\xe8k\xe3\x8f=\xa5D\xbc\xf1\\;nw\xf0|9\xbe\xaaC0\xa2]\x00s\x14J\xe9\x07l%F\x0e\xcf.!-\x1b\x8b1\x1f\xb9\x90V\xad\xee\xc1\xb9\xe3|\x00\xbec,\xa3O{\xfb\xe8\xa0\xeb\xc1\xc19\xecC\xca\xcb6]8\xc7O:#hY.3\x8f\x06kS\xa0F!\xd3\xdct\xa4\x15\xb3\x07a\xb6\xe6\xa5\xd9FW\xb0\x0f\xd3c\x98\x08\x1cT g\xdb\xdc\xa0Z\xcc-\xd1\x08\x1a\xa2\xeb\x06d\xd5\x8d\x08\x01\x89\xac\x8ak\xb2*\xeb\x90U\xb1\x8a\xac\xcaV\xa5\x03\xcc\xf2\xfa\xd4\x8e\xed\xedQ[\xec\x9c\x88\x92q\xbb$\x14%;\xed\x12\x9f\x97\x8c\xee?h\x17\x95\xbchgk\xb3]\x94\xf3\xa2\xadNO\x11/\xb9?\xden\x17\xcdz\x03\xf7U)\x98\x88wrB\xf2\x97IPFD\x97C\x14$\x99\xff/\nW\x10\x8c\xbb\xc7r\xe2\xe9B\x99\xd5\xf9\xdex\x0c\x86v\x8a!o\xe1\xe7\xaf/b\x91\xbe\xb5\nC\x17s\x95\x0d3\xb6 \xdd\x84oP\x83\x10&\xa6\xf3\xcb\xa8\xe0\xa1\x99\x9a\xa0A7e\xbb\xb3Ts\xae|q\x1e\xfd\xa1z/\x96\x0eR-\x8b\xdaY;\xcc\xf4<\x18Y\xa3.E\x92\xd6Y0\xde\xdd\xd9\xdd\x1c\x05-E\x1b\xbdv\xad-o\xf4\xc0\x1b\xb7J\xe8}j\x9d\xfa\xf1OI\xab\xe0\x8c\x16\x1c\xfa\x85\x0b\xe3\x1dxR\x9e\xc1xs\xf4\x006\xefOv\xc6\x93\xf1.\xfc\xe9\xe5\x91t\x10\x86\xe9\ns\xb1\xf4\xde9\xc9\xf20\x89s\xbc*;/?|\x80_\xae]E\x89\x97_\xf8gg${\x17*\x9d\x97x\xb5 (\x02\xdd\x9e\x85\xc5[r\x1e\xb2\xf2\x85\xb2\xfcY\x98\x15W\x13\x08\xba\x85\xa7e\x18\x05G\xe1\x92\xe4\x85\xbfL'p\xd6\xad\xb2\xf4g\x8b0&\x93v\x0c\x85.\x07Ph\x1d\xaf\x82dy\x12\x06,\xcf\x94\x1ao\x06\xc9\xf2U\x12\x10S\x95<%\xb3\x89\xde\x88*\x8b&J5,/\xccMMG\xfeUR\x16\x13\xb0\xbe\xf6s\xf2\x02\xff\xd0\xb4\x14$\xb3\x83\xcb\xd4\x8f\xd9r[Q\x98\xebj.\xfd\xcbg,\xf5( \x8e\xfc3c\xff\xf30*Hf\xaa\x81\xe6\xa4~\x91d\xefp\x9e\x8b\xa2H\xf3\xc9\xbd{IL)^\x01=^\x98\xdc\xab*j\x86\xc5|\x97r\xfdB\xce\xca\xbcH\x96\xfar\x9eO\xf5uJX\xea\xaa\xe7A7\xa9N\xab.\xcfz\xf4\xac\xd4%\xbb\xaa\xea\x13\x92\xbe\x08\xe3\xf7a|\xa6\xaf\x94\xb1\xd6\x9e\xc7\x05\xc9f$-\x92\xacOc[\x7f\xc9\xb0\x97\xb2\x82f\xba\x19\xc9\xd3$\xce\xc9'\xea._$\x17\xe8\xd3M\x02\xbejj\x073\xa8q\xeb\xcb$ \xd1[\x12\x07$\xc3u\xb3\xc8\xa5\xbfL#\xa2\x83`\xe9+\x04\xe5\xe0\x19I\x8b\xc5\x04\xb4{R\xd7\xcf\x87|@\xa7ppY\x10<#\xb9~\x1fi\xbd\xa7\xc9r\x99\xc4\x83j\x97)\xc5\xc3$8,O\x97a\xc1\xa2M\xe4\x13\x98Zg\x04\xd5.i\xc9\xfeIr\xfc\x97e\xd1\xa5\xbf\x92\x94nU\x8e\xfa\x01\xe2\x07X\x89\xcb8\xad\"\xf3g\xc4\xd20\x9eiFrR\xd0>\"\x81\xb0u51C\x17\xad\xa9\xa9\x10\xc6a\x11\xfa\xd1!\xddX\xfd\xd1\x9a\xc7\x86c\x99,\xd3$\xa6|\xcb\xa4\xed<\x05jp\xa2\xfc?%\xd3\xe7^\xeag99D\xb9Y'M p\x82\x89x\x1c\x057\xf1:OF\xac)\xa5X?\xe5\xdd\xf8b\x8d\x1c\x9b\xdeq\x05\xd2\xde\xb1\xa2\xb7+\xed5\x91_\xe5\x05Y\xaa\xc8\x08\xf1T\xd8+\xf5\xf8\xcfU\x0eW\xb5M\xa9\xc7\xf7V\x03kl\x9b\xda\xb3\xd2\x8eJ\\\x1ff~U\xd4J=\xf6K\xdd\xb7x\xc4\x95\x90z\xec\x97\xb6\xb2f\xaeP\xdf\x98\xc6~X\x1d\xdd\xc5)\x1e\xbc]S\xaf\xcc\"\xfd84;\x01\xa9'C\x7f\x97@V\xc4&\xe8\xfb\xa4\xa2\xa7O)=\xdd\xaa\xdd\xfa\xbbEZ\xdb\xa7HRK\xfdS\x15\x9a\x078`\xb2\xdc#\xa5\xc0\x86\xb0\x073\xc7\x85\x13/'\x05\x1bCn\x97\x8e\x0b\x17\x02;=\xc1\x99\xe7^\x94\xf8\x01 0\x8fI\x9d=\x9d6\xb5\x16\xd3CE\x7fZ \xf2\x84\x16KQ\xb0\xe9BX\x8f\xb2\xc4y3^p\xd3\x85\xa4S\"%|ck$:.\xd3\xc0/\xc8\xbb,\xb2-\x0b\x07\xd6-|\x91\xf8A\x18\x9fQ\xe8/s\xdb\xca\xcb\x19\x06~\xd1\xd4>L\xc9\xcc\xa6\x83\xc8:\x83\xc0d)\xcdo\x82\xe4\"\xa6s\x07\x0c\xea\xc1g\xaa\x1d\"\xd6\xe8\xf4+\xda\xe0\xc5\xe8\x81#6\xc0\x81\x0b/C\xd2\xa7\xde\x14\x17\xac'i\xaa\x93\x97V\x91J\xb0\xfeI\xa8\x0d\xcd\x0f\x1c0s9\xb2\xc6\xdfK\x92] \xf8\xab\x9b\xd0\x8bR\xab\xe1\xe5bXj4\xc9\xa3\x89P\xe0\xc0T8\xbceL\x06\xd0x\x89`\xf7\xe1\x03\xf04\x1e\"k\xc7\xe1\xfb0MI\x00YM\x07\xc6 \xfc\x0bk\xe5_ \xc9\xf07\xfd\xf8_\xe0\xc2\xcf\x11\xed\x87\xf3\x90\x04\xbau\xe2x\xe8\xa2\x8b\x18\xba\xe7\xeb\x92bB\x0e\xf2L\xa6\xc8~\xbf\xcb\"\xa5\xac\x0d\xe5\x98\x8dM\xee\xbc\xa0G\x9b\x9d\xa8\xaf\xaf\xdeq\xb0Y3\xd6\xf8\xf0\xc1\xd8\x82\xe2\xfa\xc6K\xed\xb2;\x1d\nlo\xc92)\x08\xfb^M\x81\xab\xd8\x90\xd4\xeb\xbeU}\xa9`)\xe8\xa7\x9d\xd7M\x1c\xec\xc2\x01fb\xb0\x8d\xf3\xbc\xa4\xd5\\\xb8\xa0\x87\xf1@r\x03\xba\x96\x91,\xe9\xa5E\x1c2\xe1\xd8\xde\x19=\xe88\xf0\x8ev\x1c\x8f\x8b\xfd\xde\x93\xab|HC\xf5\xcau\xac\xa0\x99\xb6\xf5\xe1\xae4\xe1\xd8\x1e\xef\xdcwx\xbaM\x03\x95\xd1631\xbb\xed4\xb3s\x03\xacnX\"/C\xb3\xa3J8\x18\xdb;\x9d\xc0\xb0\xb5pq\xd2\x9fb\xb3\xb3\x03\xdc\x83\x1b\x1d\xbe[\xfbp\x7f\xdb\xf1\xe6rL\x94!-\x0e\x9cD{\x9bn7\x89\x9d1\xf3\x07\x1f\xdd\xe7~\xe4c\xeeW>\xbe\xaf\x04\xaf\xc3\xab\xe5i\x12\x0di\xbb\xd7J_\x9d\x8e\xb7\x13\n\x83G\xe9m\xe7\xb2\xe4\x913\xda[\xca\x83\xf4\xee\xb4\x83\xf1\xf2\x19\x8c\xb7\x1d\xef\xcf\x07\x7fk\x96\xb1\xd4\xa1;\xed\xf1\x88\xcc\xa1\xed\x011\x81\xf6\xc3vX\xa1\x94{\x87\xb4\x8d\x13x\xea\xd0\xb6O\xc2\xa2\x82\x94\xe6\xfbs\xfe^\x9d9tg\xdc\xae/2\x87\xb6'\xcc\xb2\x86n\xb5G\xc3R\x86\x8e\xdb\xb5Y\xc6\xd0N\xdc\x87\x0b\xbe\x9a\xed\xb9\x1e\xb0%h\x8f\xf1\x92Wo\xcf\xf5\x90\x8f\xbd]\xff)\x1bL'X\xca{\xb6\xe5\xed\xd7O\x04Bj\xbe~\x0d{\xf0\xb4\x9d$\xf4\x0d\xec\xc1\xfb\xf6\xcb#\xcc\xfb\xd9z\xf9\x12/\x08\x06\xd7\xcd\x92\xe7\xd5\xd5\xd1|\xff\x13\xec\xc1sJ.<\xafQz\xb3\x06\xbd`\x02\xdb:Y\x84A@\xe2\xb6\xca\xff-+-\x927Y\xb8\x0c\x99\xbfM\xb3\xc63\xd4\x03y)g(\x9f\xe7\x07q\xb9d!\x91\x9b\x15_\xd0\x1b\xd2\xb6r\x1c\xfd\x06c\x05\xb3\xabvs\xef\xe4Z\x9dd\xc6\x7fg\xa5I\xba\xa1\xa9\xf0\x0d\xecu\xb4I\xcd\x1a?\xeb\x02\xc2\xbcl\xd6\xfb\x1aW\xf4/\xac\xb1f\xd1\xf7\xb0\x07k_cf\x88\xaf\xa5\x8c/\xad\xbf\xbdy\x18\x07O\x17a\xd4R4|\x0b<\x82odvr\xe6w\xce}X\xdb\x83K\xfb\x0d\xf2fh\xd7\xab&\xd0\x87\xc5\xd8\x82\xba\xe17\xb2\xad\xb0Y*\xc2\x93,\xdf\xd7V\xbav\xbcn\xd0#P\x8aA\xae\x9dv\xddkG\x0eg\xa3\xb1]\x03 !\xbf\xb6\xbfQ\x9b\xd3d\x92\xac\xe2\x9biq\xec\xc2\x9b\xaa=\x1e\x10\x92 \xb7\xf9\x0d\xfd\xf9\x06\x9b\xe9\x04\xc0\xbf\x86 \xbcin\xd9\x0f\xbd|\xbb\xe0\xd9\xdf1\xaf\xf1K\xfbe\x0d\x08&\x1d%fL\xef\xaa'\x9b\xdd\x7f\x07{\xf032\xc5\x0c\xea\x1bP\xeb\x89\x9b\xbb\xb1\x88\x06\x80R4B:\x0b0\xa8\xa5F\x94\xfd\x97\xa6\x19\xfcm`l\x80\xaa\xe1=\xb1I\x7f\xb3\xff^m\xe0\x15\xcb\xe2\x02{p\xc13\xd6\xd1w\xb4$\xb1\xdf\xa1\x91\xc4>\xc6\xd7\xa9\x10\x10f\\\xa5\xfd\xbdby\x85\xa7\xaf\x8e\xa7\x053s\x11\xbf\xf7x\x0e\"\xdc\xb4Xw\x10\xea&)\x17\xb1\x89\x89\x8bT\x90\x0d\x93\xba\xc3\x0f\x1f\x18\xf4\xbdr\xe1\xc0\x1ea6uJ\xa6\xd4\xfd\xd2\xe1\x7f[\xad\x06\xfd\xb6\x86V\xd3b\xfey\x88q\xc8\x95\xd2\xf5\xad\xd6\xbc\xb3\xe0\x1fK\x9e\xe8\xb3\xa0CKXj+\x16e\x97IP\x98\x1fe\xf2\xc8\x81\xbf\xa1\xfe\x1d\xc3\x05&\x18\x06\xa60j\xdf\x8d)7\xfe4\xf88=k\x18\xaf\xe0\xc6\x13\x96\xaaP\xdb\xf3\x1a\xd6\xae\x01\x08A\x83\xe5\xf7\\K(0\x11f\xc1e\xaf\xd9\x05\xa2\xec\xda\x17\x9f\xff\xf9N\xfc\x16%\x0cz\xe8o\xbay\xe4\x18\x0b\xdbv4\xcd)~1d\x8f\x98\xdd\x05]\xff.\\\x0b)\x11\x89\xa9\x9e\x94\xff\xc8\x11{\x82\x87\xcd\x17\xb3\x8a9\x04\x7f#v+dSz7-\x0c\xe70l\xce\xaa\xae\xf73nmi\xdb/M\x81\x0d1\x08\x14=N2\xa2\xef&\xc4\xb0\x18IZ\x87{\x92\x92\xd0w\xf2b\x9c\xf3\x8cj\xa9\xca\xebw\xb3\xe1\xf5\xbb)\xf9\xe6\xbb\x9d)6\"B*\xaf\x13\xe0Y\xdajl\xc0SZ\xfe\x9d](\xcd\x03\xce\xfe\x9a\xbe:\x16\xf8\xc2\xae\x8f\xbc\xb8'\xbe\xad\x0d\xe9\x10\xa9\xab\xd2\x1d]+\xa5|H\xf2}O\xff\xf7-\xdd\xc3N.@\x18\x14I5\xa7T^\x8bXp\\\xf8\xa1\x99\xeeM\xce8h\x15I\xe5\xe3\xdd'\x04)0C\xdf\xfb?\xc8M?\xc5\xa4t_\xb8\x94E\x81=\xf8\x1bF\x90\xdby\xe8\xe0_\x87\xf8\xff\x7fF\xae|\xbc\xc3\xde\xfd\x89\xf1\xe8\xbb\xec\xaf\xbf\xf2\xfc\xc6k\x94\xdf\xdc\xc6e-\xe9\xfc-\x15\xc3`\xb9\xf4kD0\x0b\xfc\xbaWR\xf5\x83\x1d4$2t\xc4\xbe\xedc\xaa;\x1fS\xdd\xf9,[\xda\xcf\xed\xf5f ;\x91\xe8\x16Y\\V\x1d\xe7\xbfPva\xe1\xe7\xcf\xf9\x01p\xc3\xfci\x12\xcf\xfc\xe20\xcd\x88\x1f \x9b#(0\x17\x9d\x85\\n\xbd\xeb2\xd7\x0c\x97\x07\xe8u\xd1\xde\xd3\x958)W\xec\xcc\x91\x7f\xe6\x96q>KR\xda\\.LC-\xd7\xa2\x17\x01a8\xe2/\xf5!!\xe4\x91\x03\x81\xfd\x97)!\xcd\xb4\xe65\x12\"\x98\x8f*\xf0\xf2\"\xc9\xe8\xe5\x12\xf3V\nR7\x13\xd3f\xce\xed\x82L\xe3V;t\x05\x0f\x1bk\xc7Ox7B]\xbf\xfdG%;{Ao\xb5\xf5=\xb47\xdf\x87\x17\xf4TM\xd8?{\xdd\xe4\xea-\x04\xfc\x9e\\}\xd3\xdf\x15Z\xe0\x7f\x87\x16\xf8\xc6\x9c=>0\x1a\xb8\x83\x9b\xa0\x19<-\x8c\xe1\x85ZCA{z\x81t\xdc\x9e\x9c\xba\xc3H\xc6\x9799$\x05\xaa\xb1\x8d|\xda\xf7\xaa\xf0\xc0\x9d\x96\xc2e\x1a\x91!-5\x93\xcd^w\x8eJk\xa3\x19\xc3\xdb\x8dq\x84A\xd4\x07$+\xedZ%\x17\xb0\x0f\x976\xa6\xa5\xfc\xb3}\xc9h\x1d\xe3f\x07d\x1e\xc6D\xa8\xa8'\xf07CqH\xf2 \xfc\xb9Y\xe1\x8c\x14\x92\x8a\xfb\x19\xc9gY\xc8\xd4\n_\x98*\xbe\xf2\x97\xb4\xb1\x7f6\xd5a\xc7 \x9f\xc0_\x1b\xeb\x88\"\x96\xe6b\xdakx\xc5\x1a\x98|q\x11\xbel\xc7<\x16\x8c\xda4.\xa3\xe8\x18c\x99\xfdd\x0b\xba\xd3\xfa\xe5\x9a\xbf\xe9\xae\xbd\xdf1,m}\xc26\xb7\x851\x1d\x17\xac\xef\x0e_\xbfR\x04\x01\xa9\xb4\x0c+\x10?\x9cd#\xc7\x8c\xa3\x18=R\xc5\xe0\xa1,\x05\xa7\xc9\xea\xeb>ib!\xf1\xf0L\xde\x9c \x1a\x1d\xbb`\x9f\xda\x9d\xa4n\x9c\xc4\xffN\xf6\xbf9\xe3\xd5\xecb\x089.\xfaRJ\x87X\x987\xa44;\x06\xf5\x8eK\xfb-\x1c\x0d\x1a\x00\x0e$t\xect\x1a.\xfc\xc4\xb5*\xcf\xbb\xc2\x87\x06XIB\x84\xe9[$\xc6c{g\xd3\x91\x85\x0b.\xbcm\xd4cI\xb6^\xcf1_\xe8\xcb\x1aq\xb3\xbf\xfdb\xe1\x82E\xff\xb1\xf8=;\xe7j\xa6\x1a\x06\xd66\x07\xa9\x00j\xe9xG\xca)\xa2B\xa9\x93\xd8QBaU\xbd\x94\xe0\x073e\xda\xb7\x98\xc5\xe5\xed\x1a\xce(2HV\xa0\xea\xbb\\\x00O\xf1\x11\xed=\xf4\xe6,/\xcb\xe6#(kH\x8d\x1e9\x90W\x16\xe8\x94`/\xa7\x11\x12\xe5HN2\x10V\x1f`Ia\xb8\xda\x8av\x84\xdb\xc2\x9b\x90\x92]\xdd5\xfd\xe5\xda\x13\xa4D\xb3\x10\x83\x03\xd5\x86\x14\x02\x96/\xc28H.P\xc9\\\xfd\xe2BS\x05F\x84}C\xa1\xcdZ\xa0\xb8]v\x8b\xab\xb5\xa3\x83\xa88\x0c\x8akM\xd9H\xe1\x07l\xf2\x18G\\\xe58\xeb\x95n\xe9\x93\xd5T\x04\x88\xca\xda\xaa7\xf9\xbb\x18\"w\xf4Q4\xd1<\xc06\xcf\xbf\xdc\xd4\x14\x0e\x02\x00\xa6K\xb1-?\xbf\x8ag\xcfWR\xc8\x89OY\xfa\x12\xa4\xa5\x07}\xa7\xd6|\x15\xde\xe9UA^\xb0#0\xe4\\F\xdas\x89\xe9\xa5:%\x19\x96\xb4}:\xf9Ro\xd1\xdb\x13\x83/9p\x0f\xb6aC\xe2\xcd\xaf](\xbc\"\xf9\xfa\xaa <3\x9catm\x9e\xfd\xa4\xb0\xe7\xce1|\xf5\x15\x8c\x1e\xc0\x87N\x11\xac\xc3\x88\x17\x8f\xd5\xc5cV\xbc\xab.\xddr\xe8JL\xf3\xf5u\xbc\xa60\xb2\xf2.| \xe3\x9d\x9d\xf6\xfb\x07\x9d\xd7\xe3\x9d\x1d\xf8\x12Z\x89\xa4\xc6<\xc5\xb5\xb8:\xd5\x93\xd1\x0c\x96\xce\xe5\xf1c\xd8\xeev\xd2\xc2\xb6\xa3A\xbd\x8c6\x8dK\xb6\xad_\xb1\xc7\x8fa\xa6\x87wZ\xb0u\xfd\x12v\xb7\xe8\x0bko\xcfB)\xf7\x98\xb7\"\xf6\xcbf\xed\x8cq\x1f\x1e8\xb0\xaemx\xb4)Z\xa6\x80Q\xb5\xcc\xbb\x1aK]Y\xed\xa1\x0b)L7\xdc\xf4\xb5\x82\x7f\x16B\xc7D\x12>Ze\xcc8\x8f@N\x0f\xfb.\x8c\x8b\x07l\x1f\xf7\xe5?&,\x9f\x0b\xdb\x14\xeb\xc9\xd7O\x9f\x1d|\xf3\xa7o\x9f\x7f\xf7\xe7\x17/_\xbd~\xf3\x97\xb7\x87G\xef\xbe\xff\xe1\xaf\x7f\xfbg\xfft\x16\x90\xf9\xd9\"\xfc\xe9}\xb4\x8c\x93\xf4\xefY^\x94\xe7\x17\x97W?o\x8e\xc6[\xdb;\xbb\xf7\x1f<\\\xbfg\xf1h\xdc\x0c\x8f\xf8\x95t\xbe\x84\xaf \x7f\x04\xeb\xeb\xa5\x03\x19K\xc6\xedOK:\xf0\xa9/\x83r\xe9`,c\x95[[\xa4\xc7\xea\x02\xd8\xba\x84U\x01\xff\x01\xb6)\x1a\x13\x8c6E\x9e\\\x16\xf8\xc1vn\xc2\x84!f:^9mfw\x1df:\x8c_g\x8cB\xf7S9:z\xc1v \xa6\xff\xac\xef\xc1\x96\x83\x00c\x13\xba\x13\x14\xe5P\xec9\xda\xbd?\x1a\xed>\xd8d>\xf6\xd3\x92\x9e-\x06\xe9\x14\\w\xc6\xbc\x84\xa1\x0fV>>\xa6\xac\xb9\x80|;\xc4\x8cZ\x08\xff\x0f$\x98\x0f\xf1\xcd\xb8\xfdfWz\xb1\xbb\x05_B\xd8\xe6\xa9*\x8a\xa6{\x14\xaa_\xc9\xd4\xda\xb0d\x08\xdaD\x08\xda\x1dS\xd0\xb2NTE[JzC^\xcd\xc2\xcb\x88\x1f(T\x81<(\x8a\x02\x0cCW\x10\xea\x0f\xe0\x8f\x90PZ\x80b\x06\x85`\x94.\xfc\x88\xaek\xe9\xa8k\xa0\xbf>\xaeY\xb7\x8c^\xcb\x1b\xf7\xbb\xef\xd1~\x06\xf6\xb1\xe3\x11LT\x01\x0bR^e\x83\x96+\x9a\x0e\x10QR2a\xde\"w\xb8\xc3\xfe\xfa\x1e\xa4\x0c\xc3\x04\xf0%\x9f\xc3\xc6\x8cM\x02\x02x\xfcx\x0f6f\x94rX\xa7'\x18f\x18\xd8\x14\xeb\x8fwv\xe1\x8f\x10\"\xc2d\x1d\xb8 \xda\x9b\xc1\xc6\x1e\xcc_\xf9\xaf\xb8\x8c\xa7\xc0\xb6\x18x\xec\x83\x8dY\x04D1o\x92!\xef\x19j\xe9}\xd1\xd6R5\xcf?\x85\x0dX\x1c\xc3\x87=\x18\x8d\xe9\xc1:o\xddp7b\x8a\xb9\x10\xa4)\x9c\xb6\x0b\x17\xac\xda\xac\xb5#B\xe5\x96S\xb2\xb1\xab4bAj^)\xa3G$\xbcd\xac\x8c+\x81%[\xaa\xb8\x12X\xa2\x8a*A\x0b:_\xe4\xbc\xa0\x13l\x82\x99\x9a\x8e\xef\xb7U\xaf\xcc\xd6\xb4mf9\xc7ff\xad\xb7)o\\\x11\xe6\x82\xd9\x9a\xee\xec\xb6\x03]/\xaaO\x1e\xb6?\xe1\xf6\xa6\xe3v\xdfK1\xb7\xce\xac\x99\xc5\xa9&\xa0\xc3\xd5\xa7\x0f\xe8p:D\x1a&%\x1bm\x82\xca\x89IU_M\x8b(UA\x92t\x9e\xb15J\xe5{\xed\n\xb8\xd6\x88\x0d\xb4y\xdc\xd5\xcb\xab\x82\x7f\xb4\xdc\xc9\x84a\x8d\x8b\x05i\xbb@-p\xcb\xcd^\xc1\xbd\xce\xc5+\xb8\xcd\x9a\xbc\xe3L\xde\xc7\xd0\xf1@\xd6\xd7\xcb\x92\xa4x\x1eS\xd4\xd1S\x11\xe7\xfdF\xccN\xe1\xd4\x0c]M\x99xN\x932\x0e\x0e\xc5\xc45\x95\x8a$\x89N\x93K\x8d\xc34bz4\x00\xa8\\\x18\xe9\x1d\x81\x16\x01\xd5\x1b\xef4\x8c\x03\x1e\xf0\x87\x95\xa1\x82\x99\xdd<{p\xeaVn\xd63\x14r|w\xc8\xf6\x9ayUr\xe1[\xb3\x93\xfe\xb0\x85\xe2\xa9\x18s\xda\xfe\x99\xc7\xf6\xf9hQ\xc6\xef_\x86A\x10\x91\x0b?#\x8e\x1d;\x86\xc0i \x06\xf2\x12\xe1FNN\xde\x1e<{\xf7\xd7\x93g\x07\xdf\x1f\xbd~\xfd\xe2\xf0\xe4\xe0\xafG\x07\xaf\x0e\x9f\xbf~u\xf2\xf4\xf5\xcb7\xaf\x0f\x0fNNP\x87\xc7\xbcGsE$\x1c\x90\xc8\xc6M\x97\xd6D=\xe9!\xaa\xdd\xf9\x84\x12;b\xfa\x9ez\x98\\\xffS\xa5*wTf$6?\xaf\x8eXk\x0cO\xc2\xbdK\xd1\x1a\x05\xdfVN\xb5\xf8\x17?\x1e:\xadRk\xbce}$\x89\x0b\xd3\xee\xba\xbf'W\x13\xb0\xe8f\xd1\x19)\xdc\xa2\xf9\x05gTCC\xcb\xc2\x04a\xa6;\xdf\xe6\x90U\xe8\x81\x8dFLx\xc0hz}l\xd7\xd4\xa9\x07txp\xc4t\xb0\xf2\x0b=\xb0\xc9y\x80\x81\xd8&\xd0\x16\x0f\xe5}\x18t\x879\xa37\x1cJ\x91b\xc09\xfe\x1a\xc5JNC\xdb\xa8\x06KU\x9b\xdf\x94\xf1\xac\xf1-\xb1\x0b4\xa0\xd5y\xf9\xaa\x1aQ\x8c\xc0[\xfai-:\xd7jW\xe5\xa7\x1e@\xc7\xde\xb5\xfd\\;^F\x82rF\xec\x0b4\xa35\x0f\x957\xacA\xa0\xc0t4mTg\xeb\x02\x00^p\xfc\xc5qU\x8c,\x01\xb7\x06m\x1cH\x85\xfe\x03\x9a\xd7r\x1f\x00\x08\xfcF\x9b\xd6O\xf1\x9c\x07\x17U\xc0\xedX\x0b\xb7\xe3\xe6\xfd=>\xeeq\x0d\x07Nd&\xde\xc2\xcf_\xa0\xb7\xb6yD(T\xd0W\x19\n\xd3\xa8\x07T\xa9\xdf\x0b\xcf\x9f\x17${\xc1\x9d\xa7\x91\x83X\xdbt\xe1\xc0\x96J\x1cY3\x1f\x9bB:\x9a\xcf\x84\xdc\x0c?\x1e}\x1e\x12\xd52M\x14\xd9\x9f\xc5c\x82\xdc\xbb=`\xcd\x99dB\x18\xd1\x7f*\x07\xcd\x03\x00TY\x80\xeb\"\xfd4\x85\x95\x18\xb0z\xd3\xc5\xbb\xa1\xad\xf0\x18T\xba\xe3\xd13\x02\xceG\x16\x82K\xe2o\x06u\xfe|9\x81\xb9XZ}\xb5\xb7\xc4\x9f\x15\x93:H\xa2\x1as\nn\x8cqi\x12\xcf \x18\xc6\xe5\x96p\xce\xa7u{p\x92\x07\xa9\x8bX5xdw9\xb0\x01\xc2\x82!c\x87\xce\xf8\xbbo\x0c3\xcaW\x99\x91\x96\xb7Q\x0c\x14\xf6\x14q\xf7\x06\x0f\xab\x894\x07\x0c\xcdxE2b\xc4p\xef {(b`\x0bLmW\x97\x18\x9f\x99,.a\xbea\x8c|JN\x7fz\xe9\xa7\x0e\xbdA\xfa\x97\ndZ\x89\xf1\x18\x99fW\xb9\x87V+\xd6\x0f\xa9X\x93\x9a8\x1bB\xe6\xf7RH<\xc6-F\x82&\xd3\xf8x\x85H\xe0\x82\x10Y\x91\x0c\xe9J\xf8br\x013\xef\xa5\x9f\x9a\x19\x05\xe0\x84\x89\xcc\x15\xf7s\x93k\x99)\xc2\xb0\xfc\x08\x93\x80lZx\x94\x1d\x18\xd0x/\xa3\x0d\x12'u`\xc7\x8e\xc9_N~\xf8\x88\xab D \x97\x0c'\xc6/\xf5\xac(\xa8\xc4\xbe\xed\x07aO\x0d\x95\xc8\x0f\xbbm\xa8,\xe4\x08X\x9b.\x04\xde,Y\x9e\x86\xb18M\xb9\xc3r\xea\x9f\xf6&\xc97\xa3\xdf\xa3\xabt\x88L\xa8W\nC\xa6\x9b\xc7^\x91\xbcKS\x92=\xf5sb\xa3\x11P\x15+\xbeW\xec\x86\xa7\x9e\xcd\xcd\xb1\xf5H\xa2\x1aP\xacH\xe7!?\xe7<\xb6y\xac\xcc\xf8-\x1eTT;\xf28\x92&}\x9c\xc1:\xc5u\xa1\x9aU\xba\xcd\xa5L\xc9\x13A+\x0f\xd8\x80!\xb72\xdfN\xdb\xca\xab\x86o7@N\xef\xdfbx\x02\x915\xc7\xe7\xf3v\x07\x82\x05^\x06d\xc5\xcb\xa0\x03T\xc4`\xd6\xa2z\x1a\x02\x06\x8a^\x1c\x13\xa0\x14\x9dL\xe0\xf2\xa3a\xb5o ?j\xeel\xc0n\xf5\x9ef\xba]\xc3\x98\xd1\x06_\xa8\xf2W\x07\xdd\x86\xc6\xcd\xfd\xe8\xbfpi\xaf*\xac0\x8d\xeb\x0c\x0e\x1b\xf7\x9dc\xef\"\xf3S>\xa4\xdeK:\xe3\xf8U\x03h\x03\x04\xbe\xe2\x0e\xca\xa6q\xcf\xb5\xc6\xbbD\xe3K\x14\x10 A\x91\x9d0\x1f\x17\xb4UL\x8e\x1d\n]m\x9ad\xc8P@Z\xaa\xde\xa3\xd9~\xc4\xbd\x88\x87\xa3!\xaci\xa9:\x14Q\xc4t\x8fB\xbf\xd8~\x90\x90\x90\xcfY\xe6\xc8\x16\x89\x92\x87\xb2\xb4\xad\x10\x13\x12\xe4P$\x954\xaa\x96\xd2\x16\x0b\xbf\xe0\xafs\xf0\xb1\x91\xaa\xcc\x0e \x14\x0b\x02\x17\xec\xe4\x00CD\x8e\x0e\x11\xc9\x0f\xef\xe8\xc0\xcez$\xdd<\xf0\xe67\xbcO)\x88\x08\xbd\xafM$\x82\xb6\xf8n\xf1\xc4*\xd7\x8e Q\n\xa2\xce\x8c,\xb26\xb2\xa8%D\xfd\x01\x0e\x9a'S\xce\xa5\xa3J\xe7%?\xe2TN3 9<4)\x16A\xb87)qL\xc2\xd0J5\xf8^\xc4\x12v\x10K\xb1\xc2\xf0A\x16\xcaO\xb3a\x88\xc5\xef\"\x16\x9f!\x16\xb4x\xf5\x99M\xaa\x82\xd9\xe9\x1d\nH\x14\xd5\xca\x88\xa5\xb2\xbe\x0d\x15\x1c\x0d3Mb\x83\x0d\x1dn#\xcdlr\xc3GP\xae\xaf;h\x0e\xdd\xe0M\xca\x9e\xe5\x10\x8f@\xf1\xc8\xcf\x990\xda\x94\xcb\x8b\x9e\xc7v\xe2\x1cS\x8e{\xe6\x17\xb6\xaf \xad\xdb\xcfM\x10\\hBp\x02\xc0~?\x0c\x17\xf6\xa1\xb7\xc2\x80\xde\xd4<\x0e\x08\xf4\xa6a\x81n\x87\xdeP\xca7\x08\x99\x0d\x90\x94fM\x0b\x17\x15.X]^\xd0\x14\x08\x10\njL\xec\xad^\x0e\xf7v\xe2\xbe\xa6|\xfd\x1fg]\x06#\x16\xc1m\xb3C\xabr\x11\x15\xcf\xf5G\\\xe3o\xe2\x01K{c\x99\xe5\xc4+\x93\xc7z\xeaV\x83\x92\xaa\xb05<\xb6\xf9\xbe~\xf4\xd0\x96,\x8b\xb2[m\xce\x9d\xd2jJz\xaa\xd2\x98T\x14\x99\xb3\xa2\x84EEa\xf5RFz6\xb0\x97\xc1\xe1-\xf4\x1e/\xf9ix\x84u\xc9\x8f\xb0\"?2\xa7\x8a\xe6\xe4\xc3W\x90=\x02\x9f\x92\x1f\xe1\xd4o\x92\x1f\xfe\x00\xf2\xe3\x9c\xa7C=\xb0cAl`*$\x0d\xa9\x11\x1a\x93W\xf2\x87O^i\\\x81\x89(m\xd6c\xe9\xd8\x85\xcd\xa2\xca\x1b\xdb4X\xd7|\x14q\xc5] )\x08\xc6\xe6\xfa\xf0\xa1\xa3\xf1\x13jt\xf5R\xcah\xca\xab\x85[\xed\xc8\x1d\xe2Q\x9f\x18\x99\x84\x1f\x80nl4(<\x0d\xc5\xbc\x9ff\xc4\xa7\x07\xcd\xa9\x10\x17\x90\xc1\xa6 \xd2\xc6\xd7\xce\x8b\x85\x99\xcd\xe8k\x1a\xe4\xeb\xb4\xe8\xb3\xe1\x82\x017\x9b\xfc\x08\xe9\x1f\x05\xfd~\xf8\xd6\xbb\xff\xb7\x1f\x94(\xdeB*!\"\x06\x0cZ\x1e\xe0\x1d\x0e\xabI\x1f\xba5\x138\xf7^\x1d\xfcpr\xf4\xed\xdb\xd7?\xbc:9x\xfb\xb6_\x03#\x1e\xcc\x80\xa0\xcf\x92\xa5zR\xff*J\xfc\x80\xa5\xf8Y\xc8j\x84AM\x98\xb5\x1bX\x03\xe6a\xecG\xd1\xd0-\x12@\xd5[\xd9\xdc\xb5\xc9\x02\xb0p\xb42\xd7[b\xaa\x97~\xca(\xe8\xe4M\x96\xa4C\x90\xd5\x10\xf9\xb7\x11\xcf\xf4\xb6\x04M\xac\xd2\xb2\xe3!\x03H\x9a\xdb.\xc93\x8e^\x87\xaf\xca \x92q\xd8\xb2\x0c!\xee\xec\xa6\x87\x02\x8a\xe5\x0dVL\xc8\x81\xd5VG:P\xea[\xb6c\xfam\xf5\xea\xdaV:\xaa\\hCG\xddZ\xc5\xab2\x02-\xd4\x0d\x9b\xac\xa2\x1b\x0d\x8fT\xde!\x0dA\x860\x03\x95\xb4\"\x83\xea\xcbF\x9a\xcd\xea\x05\n\xd8j\x96\x04)\x9a\xd6\xd5\xd6\xaa2\x80Z\x15T*\x91\xc8r\xe6\x1a$\x91\xf0*\xf9\x1a\x067\xe8H\xe9\xf7\xc1n}\x89&\xb6\x9c\x8c\x9b\xc6\x14\x18x\xf4\xea\xf6`\xa7\xd91\x86\x95\xc1yu\x1b\x99&.\xc4\xc7\xc6\xaf\x9bp\xa7\xd0\x19\xb7\xbe\x91\x13\xfdk\x9a\xd5\xba\xee\xcb\x8c}w[\xdb\xbb\xaa\x8a\xa1Y;\xddC\x18\x9b]B\x98\xa261$\xe5ow\x18V\xa9\xa3\x1aoe\xd5\x8f6\xc2.\xc8\xb2\xd5a\xca\xa2j.%\x9d\x8b\xdfG6\x9c\xf3,K~\xaf\xa8\xb2 `9\x93\xd6\xd2O\xa7\xf9\xb1+$\x9fye\xb1\xde\xd8\x96\xee\x9bir\xac|)O\xb2\xb7\x02\xed\x13\xe3z\xf4Ub\xf3\x13\xb0\xdfW\xdd LU_\xf2}\x88W\x8d\xf4I#2\xa1*J\xc4\x81>Z\xc6\xaa\x9e$*\x9c\xe9xQr\x86\x02]\x850$\x96\x93\xa9\xef1Ij\xcb\xf7\xc3D\xec\x0b'F#\xb1\xa0'\xa3\xa5\xb0\x98*N8\xab8\xe1B\x84\x12\x7f\x04 |\x05\xc5#H('\x9cQ\xf8\x92W@wb\x05\x82GcpN\xa7\x13\x17\xa6\xf4\xba\xaf\x00&SY\xae\x0c\x8d\xe5\x85\x11C\x9a\x19\xc3\x08\xcfE\xd7\x036\xd7\x7f\xe8\xfe\x92\x13\x8d\x9f\xe0\xdb\xdeX];[c\x85\x17\xb0\x9c\x14\xa9.U\x07\xc8S{\xca \x9dE\xdbI\x99\xb4\xa3\xca_\x0f\x19g=\xae\xf1\xa64\xdc\xcc\xce0\xcce\xc6b\x86\xb2|7\xda\xb8\xa1\xedX\x9e\x98+\xc5\x9b\xd7#q\x86\x0c\x85.\xd9\xb6)\x87\x94\x9f\xe7\xe1Y<\xa4\xa9\xfeY\xe9'\xc3z\x99`\"\x98-g\xc59\x98\x93\x0c\xc9\xa7\xf2Z\xbd\xfb\xd9\xed{\xa1\xeb\xd8\xf6\x9ef\xb1\x055\xc1\x1a\xb7\xd4\xb9\x8cv\xb6\xdaYyJ\xcc\x1aP\\$O\xf8\x01\x7f\x93$\x11i\xa5{\xc3Yx\xf3\xa4\xccL\xb5\"\xd8\x83{?\xde[\xbfw\xa6\"\x86gZ\xbfi\xdb\xb2`\x1d\xd0\"\x13MG\xed\xc8\x05\xeb\x8b/\xefYf\x94>W\xca>Q\xd0C\xeb\xf0\xfc\x1c\xf4\xcfY\x12\x17\xe4\xb2`1<\xf9\x9b2\xa6\x7fo\x1a{Hu\xe7Ul\x0b\xc1\x9e\xba\x18_\xd0\x9e\xd8m\x0b\xd33_\x99\x84\x19\x0f\xb1\x81\xac\xaf\x9bg\x1aHaI\x94\xf3\xcdH\xce\xf0\x98\x98\xf1{r\xf5&#\xf3\xf0R\x9a3_\x94\xb8\xb3(\xd9J\x8b\xb2\xe8_\x146\x9c\xee\xb2\xf8XZ\x8d\xad[\xa14\xaci.\xafi\xb7\x98\x02_\xc9\xd66o\xadms\x03\x9a\xc4WD\xa9\xfbs\nq\x19\xaeo\xe8\x15\x0b\xbfx\xcb\xd4\xac\x02\xd8)\x05\xcf\x13\x9e\x02\xcb\xe1\x98xa\xfe\xbd\x1f\x85\xc1ADh\x0d\xda\x0e}\x1f1\xc6 Jb\xf2$\x0e\xde2x\xfe3\xb9\xa2\x1d\xf8\xb0\x0e\xf6ZD\xe7\xcf\xe2\x9e MF\xff\xa2T\x01{\xbf\x0f\x96\x05\x13\x98\xd9\xf8\xa7\x03\xeb`\xdd\xb3\x1c\x0cU\xe8\xb8\"\xf0n\xe4\x98\xc1\xe5\xdc\xee\x0f\xcf\x04{`Y\xcd\x85\x113dq\xb9h\x8d\x19e\xc0\xd9\x10\xba\x1c\x03\xdd\xab\x802\xd2\x88\n\x02\xbb\xc0([\xd8a\xb3\xb2O\x87\xb3p\xa1\xa4\\\x92\x97\x91\x88\xf89\xb1K\xf3\x1c\x96=We\xe3\xce\xaf\xef\xf4\xb9\x14P7 \"\x95\x81I\xcd\xd88\x1a(\xaco\x9d\x8e\xc6\xcb\xce\x01\xa1\x9b\xe2\x07\x01]\x830>;J\xec\xb9\x98\xe8\x8d\x06R\x1dd\xa9W\xf9,K\xaf\xefp\xcc\x81\x0by\x8b\xae9\xeb\xc8>\xe7Iv\xe0\xcf\x16\x93^b\x06\x84-7\xb3\xb5\x96\xa2\xac+\xec\xc5\xabk\xb4 I*\xb7f\x84\xa3\x94\x85\x84\x9aWp\xd4\x8e\xc3\xdc\xc4\x0cK?\xfdH\x03\x9e*\xa8`\xfe\x15\x9e\xbf\xcc\x15\xbb\xc0\x9c\x8f\x8diJ\x96~\xfa<.\x92\x1f\xc2b\xf1g\xb1\xdb\x98?5\xf6\xa3 \x9c7+\xe3\x8e\x0e\xd0\x00\xf2\xd1\xe0\xb2-\xd9h\x8ckU$\x88\x12\xfb$y\x82\x95\xe8[\x80B,\x80\x1a\xa5vRg\xd5\xf0\xa9\xa6\xa2\xce\xf0\xed-\xa9\xa8\xd1f\x9b.\xc2\xc0\x7f\xb1\xfd\xc0\xe9\xb34\x16)U<\x91R\x85B+g\xa3\x86H<\x9b\xdf\xa5I\xda\xa3\x83b\xa7\x17\xfdjY(\x16Epr\xdd\x06\xc4\xe4\x02\xbf\xef$gP\xd0\x8a\xe6Y7R\x85\xd1&1)\x8fm\x8dw0\xc7\x85\x84\xdb*\x1fN\xc5\xfaPv\x92\x16\xa5I\x12\x1d\x86?\xd7n\x9d\xcd5\xa1\x97\x9b9\x9d\x04\xa5 \x92.\x01\xdb\x1d\xb7\x8c\xdf\x06\x9c\x15\x90\xc5`\xc6m\x89\x1bc\xe61%\xe3\x1a{\x01g\xf0}\xfa\xb6\x9a/K\xc7T\xfd\xb9\x07#L\xc6$\xb0\x18\xec\xd1\xbbS\x91\x9bIAZ\xc6\xa4I\x83O\xda\x0bB\x9f\x0e=?p\x0dn\x02\xe4 \xad\xddJ\x80\x0e*`\x8fyl~\xd5r\x80\x12\xe6A\x05\xf7\x9dT\x15\xa0^\xceb\x91\x91\xce\x82\x0e\xb90\xe0\x96\xab\x95\xdd\xc9je\xae\xf0\xcb\xeb\\1\xe2\x19\xbe`\xcax\x1e\x8a5\xeb\xf2\x81\xdd%3\x98\x91\xdcf\xd5\x92;Y\xb5\xa4Z5FM\xa8\x9d\xc0VZ\xb8NB\x88n\x0b\x9a{\x8d\x99k|\xac{m\x9b\xa5Z\x1e\xef\xdeW\xc5\xa2\x8b\xed\x9d\xadv\"]\xbf\xbe\x10c{g\xbb\x13^\xaed\xe5\x0f\x1d\x17,\xaf\x9d\xc6\x95N\xc8\x9aX\x9ax\xc5\n\xc4#\x08-\x0c \xd2\xcdx\x80\xef\x05cB8\x8b\xe4{$\x9f\xf9)\xb1 c\x92&\x18Z\x9e\xe5Q\xb0\xb7v\xdb\xd22\xb8\x990\xae\xa2\x06y\xdc\xccj\"\x84\xc7w\x9a\xb90\xd7\x11H\xa9\x8bq\xf2\x84\xb9F\x1761_I#05\x86\x91\xfd\x12\xacSz\xa2\xfcX\xbc\x12YP\x90|sk\x07F\xbcd,\x16\xab\xd9\xc27X\xd7\x8a\xcb\xe5)\xc9\xe47\xf5\xaa\xf2.\n\xef\x8b/\xf8\xc8\xd0\x15\xb2\"wg\x94{)\\\xca\x83\xb2\x00\xcd\xfbP\xc2: \x05\xb2\x89L\xb0\xe3\xc2HM\x13/0\xc6\xa5\xf2\xc8\x9c#\xb3)59\x81\x18\xd6A\xa1y\xa1\xab\xd2\xe4\xcf\x0b\x8d\x06\xa1\x92j/\x99\xc4zII\x8c*\xbc\xf6r}\xdd\x81\x05\xac\xef\x01\xb1S\xba\x0f\xd3\xe5\xb1\x0b\xe78\x97\xd4\x85\xa5\xc3w\xaf;\x02Ml[\x90\xd8\xa2P\x99\x8d\x10\xf8\xf0\xcf\xfaP\xd8\x95\x8b\xd1\x04\xcf8m\xd7\x13Z\xe6\x0c\xc1\xa0\xf0H\\d!\xe91s\xa9\x16\xe5\x84-\xca\x9a}\x05{p\xea\xc5\xe4\xb2\xb0\x1d\xc7\x0b\x12L\x1d&-\xcc\x15K;#\xad\xcd\xc9\xfa\xba~u\xc4CW\xa9\x7f$\xda\x01\xe8\x17H\x91i\xd2\x8e\xe1\xae\xcdSU(\x92P\xdd\xc1\xca4\xc7\xca\x0e\xc2P\x0e_\x0d\xc6\xd6\x9e5\x01koS\x03\xc1\xd6\x04\x8b\xc7V\x17J\xb4\xf2\x02\xeb\x0b\n\x93\x1d5\xc0\xbd\xe9\xde\xe4\xf8\xdeY\x1fc.5TL\xc9q\xb7_#GY\xc6w\xb3(\x9b8m\xdd\xa2\xec\x8di\xf1d\x95Ea\xcba[\x1e;\xccd\xba\x89\x1az\xbaV\xeco\xd4D\x13//O\x19\x15`\x8f\xd1\x97Pz1r\x1ci5\xed\xbd\xcd\x0f{c\xe7\xee\x17\xb4\x86W\xf5\xd9\xb9\x13\xfd\xd7\xfd]\x87\xc7\xe8\xfc\xc6\x9f\x15Iv\xd5=\xc5\n)\xc0\x84\xa2H\xbfM\xa5b\xd1\xe9i\xc6JOO3e\x85 \xc8H\x9e\xb3:\xec\xb7\xb2ZFx/\x19Qw\x94\x15\xe1,\"\xbc\x0e\xfeVV\xcb\xc3\x80W\xa2\xbf\x94U\xca LX\x15\xfaKU\xe5\x14\x8bO\x95E~\xce\xda\xa7?\x94\x15\x82\x90\x95\x07\xa1\xba8\xe1\xc5\xea\x9e\xc33V\x1c\x9e)\x8b\xa3d\xf6\xfe\xefeR\xf01T\x7f*+'\xc1\x15\xab\x96\x04W\xca\nl\xeb\xd4\x1bwZ\x16E\x12\xb3\n\xf8SUi\xe6\xc7\xe7>\xdb\\\xf6S])\xa5\xe0\xcak\xe1oe\xb5\x90\xcf\x8a\xfePVH\xf8\xd6\xd2\x1f\xea\n\x11/\x8f4\xc5gYR\xa6\xa2\x0e\xfe\xa1\xaa\x18\xf8\x05\x03F\xfaCW!\n\xf3\xa2\xaaD\xffPV\x0cX\x95@YH\xd8p\x03\xa2\x1cn@\n?\x8cr^\x05\x7f+\xab\xcd\xd9\xca\x06s\xe5\xaa\x06\xa1\x1f%\x0c\xa6\xd8Ou\xa5s^\xe3\\Y\xcc\xc7\xa9\x1e&_\x05\xe5\xfc\xc9\x12\x0b\xc9R]xJ\x02^~J\x94K4\x0fI\x14`\xd2\xe7\xcc\xb6\xc4\x1f\xea\x8ag2\x98\xd5\x7fj*\x97\x19\x11\x15\xcbL L\xf3$\xc1\\\xb5\xff\x1f{o\xda\x1d7\x92$\x08\xbe\xdd\x8f\xf5+\x9c\xf1\xaa% \x03\x0c1H\x89\x94B\xa2\xd8J%\xb3[\xdd\x99\x92FRVMw0\x8a Fx0PB\x00Q8xdQ\xef\xf5\xcc\xec\xdc\xf7\xee\\=\xf7\xd9\xb3;\xf7\xb1\xc7\xec\xce\xf4\xf4\x87\xce\xfc#\xf3\x07\xf6/\xecs3w\xc0\x017\x07\x10$\x95U\xbbo\xf1\x81D\xf8\x05wssss3s3Q\x08^\xe9B\xc9R\x16I\xc81.\x86\x90\xbd\x18\x92\x99\xdb\x98\xb9Mf\xee`\xe6\x0e\x99y\x1f3\xef\x93\x99\x0f0\xf3\x01\x99\xb9\x8b\x99\xbbd&\xf7qB\xc4\x8b\xad\x80\x04\n\xbe\x92\x85\xcaU\xb6\xb0\xae\xb1\x85l\x85n![\"\xca\x89\x17\xaa\x00\x92X\x92\xc0\x06\xf3\xc4_\xe2\xe4\xe2+Yh\x89K\"X\x92\xeb!\x88V9\xe2\x1c\xbc\xd1ERY\x80\\\x95\xefO\x10\x90\xefOH8\xbe\xe7\x97\xa7\x1cQ\x15_\xa9B\xa1\x7f\")\x04\xbc\x91E\xf8)\x8f\xf0K\xf8J\x16Bh\x85$\xb8\xc2 z/\xb3\xa3\xf7T\x81\xa5\x1f`G\xc5\x0b]`%\xf3\xc9\x89^\xfa\xc9{\x99\x9f\xd0\x1f\xe0Q\x8e\x05x\x94\xdb\n\x04\x99$%\xea\x07]P\xd2m\xf1b) \xb1\x17\xde\xa8\"\x91\x8f\xa40\xf2IR\x18\xc5\x18M\x19\xcb\xc8\x1fTA<0B1y\xac\xa5\n\xe1\xf4\xd2\xdbU\xbc\xca\xca\x85\xa4~X\n*\xba\x17[i^\x9cg\n\xa7\xf1\x95*\x84\xdf\"?\xb2\xf2\x13\x1fg\x00\xde\xc8\"\xc14StU\xbe\x93\xc5T\x11[v|Zp\x8c\xea\x07U\xf0gP\xe2gTV\x82\x03I\xc8\x91$\x08\x85\x84\x84@\x92\x9f \xcf$^\xa8\x02\xd8/\xb2C\xa9\xbf\xc4\xef\x8a\x17\xb2@\x89:v\xc4I\xf9\xb4\x98N\xf9N\x17\x0b\x15~\xe1+Yh\xe9\x87\x88b\xf0F\x16\x89\xf3d\x8a\x13\x82\xafd\xa1\x95/;\xb4\xf2\xe9\xdedI\x1c!I\xc5W\xba\xd0\xa5d\xe0\xe1\x8d,\x92#\xeb\x9d\xe6$\xf3\x9d\xe6\xcb\xa5\x9f\\\xca\"\xf0N\x17\x93\xf3@\xaf\x97\xcc?\x91\xfd\xc80R,Q\xa4\xe0\x9d3\x1b\xf3\x9c!\xd9\xcdH\x92\x9b\xf1\x8b\xac8\xd2\xa8\x1fdA\xc1[`)\xf1F\x16Y`\xfe\x82\xceT[vf\xdb\xb3\xb3@n\x87\xe2\x85.\x90)x\x887\xb2\x08R\xcd\x8c$\x99Y\xe2O\xdf\xcb|\x7fJ\xd2x$\xf0$u\xcf\x11As\x12;\xcf|\xfc\xf0\x99O~\xf9,\x98qW\xfc\xfa\x9c$\x11<\x0c\x83\x95<@\xcaw\xaa\x18\xae$\x9a5Y\xfa\xa7\x92\xbb\x11oT\x910\x88\xb0\x84x\xb1\x15\xf0\x93_K\xfcY\xc0\xa3\xac(Z&Q\x95\x96~\xaa\xf6\xf1\x94\x9c\xe3\x95\x82\xd0\xca\x02\x9d\x95\x9fe<\x89T\x19\xf1N\x16\x8b\xc3\xcbSI\x00\xe5\xbb\xadX1R\xf5\x83*(\xc6\xe4\x87\x95\xd1V\x93\xc8J\x8a\xb8&6\xd2\x9a\xc5\x92\xc8d1M\xec\xcf$=<#\xe7Q\x10\x85\x82:\x90\x05\n\xa2\x9b!\xd5\xad\x94\xb0\xc8\x88P\x05{\x0b2\xa2\xaa]f\xb5w2\x1a\xfb\xae\x1e|\xac\xd2 eMv\xc3~\x18\xc6\xd7\xf8\xe1\xba\xe95j`)\xfdk\xe4\x0c\xeb\xe1\xb5r\xd9\xf7zq\xb4\xa8\x7fp\xff\xbeeL\x8df\x1f\xcal\xe3&\xf2s&\x8doi\x19\xba\xfa\xcaT\x94x\xf2\xc4\x8f\xe2\xe8r\x19\xe7\xe9\xd3\xa7\x84\xa8tn\x95\xaf\xfah\x99v\xe6\xf4\xe0\x8dB;\x06\x82#\xc1\x98\x9e9\x85\x12\xd5RN\x0c\x17\xca\x15\xe3\xb6\x14Dm*\x14\x95\x8aUKA\xc55\x9f5q\xcd\x0c\x19\x8e@0\x1cg\x8eR\xde\xda\n\x02\xd0\xb1 \xbc\xda\n\xfa\xd1\xe5\x88-\x9cD7\xb3{ \xdab;(_\xcd\xdb\xe4\xdd\xeaQ\x9a\x9c\xaa\x7f\x1fk|\xcc\xfaS\xd3wh\xb7\x9a\\\xdd\x94b\xe6\xf4\xd4U\x13\xf6u\x8f\xf5!8j\xefk\x16\xcf\xcbx]\x98\x91`\xc6\xc2OY \x03\x16\x8b\x9a\xef.W\x9cEq\xe6\x83\x8a>\x88\xd2`\xc6\xd5P\x07m~\xb0\xce\xe4\xbd\xc0\xac\xd5\x99#\xdcn\xad;[k\x83\x01\x93\x9f\x00+F\xc7\xef\xee\xf4CBF\x05f\x16\xc3\x8f\xc5\xf0\xeb \x12 \xc5\xb4\x14\xd3\xd2|\xb5\n\x03>cY\xacC\xcdc\xfcb\xc5\xa7\x19\x9f1?B\xe8\x0c\x08g\xb1\xfa\xd3|Q\xbfP8\x87\xa8p\x0e\xd9\x13-\xc8u\xd8\xefw\x05\x0d\xdc\xd6p|\x8f\x85\x05f\x89\x1e\x8fE\xdfC\xf16\xe9y,\xef\x0091AS\xddf\x11.\xe5\x95\x16\x0e7\x18,ey^\x7fl>T\xe8\xa5\xc8q\x93\xea\xe0Q\x80\xdd|%\xae\x89\xe4|\x0d\xc4\xce?>b\xe7\x9d\x11\x9b\xa5At\x1ar\x8c\xbf \xd9\x80\x9ba\xf9M&\xde\x16^Ja\xe8\xf7J\x887\x1cp\xba\xa6\xad\x0e\xdey\x8e\xf1\xeeN\xe4/\xc1\x98\x95\xb8\x9fC=y\xab}\xb1\xedA\x1c\x1cL\xe3\xa8\xb8;qu\xc5\xaa)\xd0\x9bri\xb7c\x9fz\x94\xd1\x99\xd1X\xa7\x16>\x00\x14\x7f)\x90]\xcd\xa4\xa8\x0e%|(\xf1\x8bCw\x0b\x17\x05\xfa\xafk\x12\xb9\xc6\xbbL\xf5\x07\xd0f\xe9\xf0q6q\xeb\x0c\x86>\x01I9\x01\xb1\x05\xd8\x91IY\x80\xa4\xbc\x8cg\xbc\x95\xa3\xb8 \x0cm$\x03\xf9\xca\xef\x95`\xfc\xc2875\xd6V@\xeb\xbbZ;M\xea\xc6\x81UL\xba6*\xf1\xec\xd7_\xcb\xebpd\xf8\xcd\xd61k\\\x17\xf8\xa5h\x1d\xb6\x18\x90?X\xf8\xe9\xab\xf3\xa8\xb8[\x1ev\"\xfd\xac\x99A\x1b\x00\x83\xd6\x8d5c7e\xcf\xd8/\x80t\xc5\xd1\x1a[4q:\xd0<\xe5\x18\x07\xb4\x06\xbb\xbe\x9b-\xdd\x02A\x8a\x95\xa1{X\xe6\x05\x83\x9e\xeb\x17\x8fm\x8f\x18\xd4J\xcc<\x07\x7f\x1e:\x8c\xdb\x97\xa6Xp\xbf\xf1\xf6\xd5\xcb\x01\x9eu\x83\xf9\xa55\\\x80z\xd6\\i`\x1f\xaao~\x1d\x96Z\x1c\xc1\x8eY,\xcf\xa6\xfd\xf2\x1a\xe8\xf2\xee\xb2\xdd\x9cL=\xb7\x862\x157\x1f[\x8fYV\x99\xe9\xac\xfd(\xa6dAb\xef\xec@\x1f\xa9\x9d!*:\x1e8\x1bC\x8f\x15\xb3\xa7\x9c\x87T\xe6\xa6\x80\xd5\x80\x1d\xd6\x8f\xa5\xb0},\xf8\xf4}\x01\xc6\xd4c'y\xc6\x12>\xe5\xc1\x19\x9f\xb1_I\x99\x9f\xb1 \x9a\xf1\x0b\xf6+\xe9\xa0\xe7\xb1\x13\xf4\xed\x05\xf7\xa4k`\xb3\xcf\xee\xf7\xb2\x04\xa5o\xd1r:\xfc\xf6\xe9`\xda\n\xe2\x9d\xbc\x8f\xeaWX\xd3jo\x05\x81v;QG\xd6\x99\xc6vY\x9f\x96\xa5x{\xeb-]t0\xddT\xcf\x0d\xa7\xf4\xff;\xac\xc6\xd7\xf8\xc5\xaf\xd7\xe44:\x1d\xe0\nfa\x1cv\xc4\xd9i\x97f\x99lz\x0en n\x85\x0f\x99\x17\xa0\x9e\xb7\xd6i^\x12\xdd\x16\xcc\xed1%\xfc\x02BK~oX\x9fv\xc6\xfa\x10\xb0\xbe\xee`\xae\xfe\x18X\x1f\xde\x00\xeb\xc3[\xc7z\x85\xc2>:\x93\x04\xfe\xa9\x8dk)V\xca\\\xac\x94N(-J\xaf`\xa5\xcc;\xae\x94\x8d\xd5zpz\xcf\xe5\x99l\xdeL\x8e\x8f\xa2O\xfdY\xa1\xc2\x10\x195\x9e\x0da\x80\xd7\xf9{L^\x139\x8a@\xd3\x06\xb7J\xc8Z\xfa%\x13\xe5\xa7K\xd6\xef\xb0L\xcf\xe4\xa5\xb2\x95\x93zln\xae\xf6y\xb7\xd5.\xe0\xb6(\xc0\xb6\xf8\x05\xadc#\xf5\x83vE\x92\x99>\x87(\xfcQR+y\xfd\xef\xa0pR\x7fu\xc5\x86\xec\x1ed\xc0K\xc6F\x8c\xc3\x85I\xb8\xed\x07\x0cZ\xa5\xb5\x0f\x96o\xcfhJ\x02\x17g\x97J\"\x81\xe8\x84\xe2=\xf0\xd8\x1c`\x92\xa37\x1ep\xb1\x13#+\xfa\xdc\x0f\xc3 :-D\x0e)\x83\x95\x03\x8e\xb9\xd9,H\xf84\x0b/Y\x90\xb2(F65N\x04\xd18\xb9\x84\xc0*_\xaf\x92x\xb5)\x88N\xfa5[\xf9\xd3\xf7\xfe)\x1f\xb0\xafR\xce\xbe.\x1a\x1c\x00\xc3Z\xfct\xdc\xaf\xc5:\x9b\xfaa(\x9aX\x0e\xd8\x1b\xee\xcf\xd82N\xb8\xe0\\\x17Y\xb6\x1a\xdd\xbb7?\x19,\xf9\xbd<\xe5\x9bP{\xb3\xfc\x8eu\x91hx(f<\x19\x07\x13v\x007+\x8b\xcb\xa1*\x0d\x89\xc4\xbb\x05/\xcf:\x15\xa2\x19\xa4`\xe5(\x18\xef\x94%\xfcgy\x90\x80TQ?O!\xdf\x1dd\xa9$\x067b\xdc\xa9\xe0H\xdb\xa5k\xa6+\xe61\xbc3\x92\xa1\x0d*\xb4^\xba\xd6B\x1co\x10\xd7\xdd\xd5#\xc6\x10c,\x91\xa4\xdbm\xee\xa4v\x9b\xbb\x8b\x10\xe11\xdb\x80\x10\x91A\xed\x16ucMV\xeaBb\xbcB\xadM\xe4\xd0\x0e\x9a5nvS}\xea\xc8\xf5\x82\x17\x9f\xae7\xbbAx-\xf0cc\xe9\xf8\xe3\xe1\xa4\xd3@X\x17\xd9\x8e\x0d\xa3\xa5[\xd8\xf6\x05k~\xbf\xeeu\x96&s\xa7\xcdWL\x95\x9e\xc5\xba?\xd5\xe5\x85\xec\x80I\xbb(\xe0\xfc4\xf1\xfa\x1b~zx\xb1*\xef\x81\xf7XGG@\xf2K\xca\xf4\x08\xaf\x9c\x82;\x89\xb7ZJ6\xee\xfd\xea\xaf*\xd7\x1b\xef\xfc\xd3\x1e,\xe0\x16k\xb2L\xef &\x9bpD\xa7W\xa2\xe3\xaa\x07\xf58r6\xe0^\xda\xddwiN\x98a,\x05\xb5+UZx\x07\xd9\x84\xbc\x9a\x9bSR~m8\x01ht\xb0T\x99\xa1\xcf\xfcL\xfb\xfa\xcc\xcfx\x8f\xc6J\xa3&\xcemY7\xe1\xa7\xfcbE\\1\xb6\xa1Q7x\x9e4#+-\xd0/v\xec\xe6\xad\x1a\x91\xb6i\x1bn\xdd\xf6\xd4\xe8\xfd\x088\x9b\xc6=\xb4y+\xc620\x03M\x05$\x98;\xf4\xa8\xa9C]iL\x9b\xd3\xb7\xea/YIs>\xc9\xf6Q\xc5V\xa6xl^;\xa9\xb0}\xc1J\xcf\x07z\xc2\xdc\xd3\xa4b7\xf0C\xd0\xe4x\xa7P\xe9\xdfR\xfb\xbd\xe1\x83\xc1\xee@z\x1e\xb8Vkg\xa5\x8f\xe9\xdd\xfb\xee\xa0\x88\x98@Y\xf3\xb6\x19\x1b\x07\xb2\x9d\x07\xa4}\xef\x83\xfb{\x16\x83]\xdfQ\x92\xb9\xdb\x18\x87aG\x8c\x9d\x1fn\xd3n\xa3\xeb&\xca\xa2\xb3\xbdep\x11Di\xc7I\xad/xuf\x19\x13\xd2\xc3\xd4j\xef\x8b\x9f\x1c\xb1\xdeg\x87\x9f\xbfxyx\xfc\xe5\xb3\x97\xbfe\xf1\xad\x90f~\x16L\xbb\x95])\x0c\xefTZ\xfaS]\xa3\xc2\"\x08g\xcf\xd7\xadu\xca\xb3\xcf\x90\x1a@\x84\x9dj\x9d\xe3/\x0f\xdf\xfc\xda\xe1g\xf6\xaa/\xa2 \x0b\xfc\x10\"\x17\xadY\xf5\xb9\xd6\xddu\xaa&<\x82\xbb\xb4\xaa\xc6\xab\x97\xcf\x0f\xad \x94+\xe8\xc7A\x18~\x89\x8eK;\x80\xa4\xa8\xf6Y0\xbbF-\xf1\xb17\xa8($@j\xc3\xa3E\x9c\x0bp\xc86\xbeZ\xcd*\x10\xed:\xc8z\xbd.\xfd\xfd,\x98]\xa7\x1a|.Zv\x86\xcfW/\xdf>\xfb\xfc\xf0\xf8\x9asB\xd5^\x1b\xc8T#k\x0c=\x87\xa2\xc5\x1c\x8dX\xef\xd5\x8f\x0e\xdf\xbcy\xf1\xd9\xe1\xf1\xa7\xcf\xde\x1e\x12\xbc\x8f\xd9Nh%:\xb0\x10\x93\xe0\x8c\xcf`5}\x9e\xc4\xcb\x86\x15\xd9\xe5[S\xeb\xb7fA\xba\n\xfd\xcb\x97p\xe3\xbb\x13G\xce\x80\xf0j\xf5X]\xac\xab\x1e\x8b\xd6H\xd1\xd4\xce_\x13\x1cgK(\xb9B\xed\x11\xa1\x9a;\xaa\xb8a\x8b\xfa}W\n\xb4\xc7\xd1d-\x15\x17AJ;\xf7\x9b\x0f\x8c\xda\xe2\x88.C\xa6\x19y\xa4\xabP\xd6\xd0\xb5k\xf7\xca\xd2\xa1\x1b\xf4\xc5\xd8;\xd6\xe8N\xad.8\x13\xaa\xa7\xed\xb3\x85c\xa4B\xcb#\xb2\xf4Z\x08\xa9\xed\xc6kt{\xa5q\xa9\n\x84E\xda\xba\xf0+\x98\x87\xce\x1d\xd8\xe8^\x94u[C\xac\xba\x8e\x82\xa8\xbdU\xf5(>\xaf\xdd\xa6_=\xd0\x9f\xba)`\xd4\xd9\x14\x90)\xb1\x97\xe0\x16A\xd3\xd9\xed\xb3\xe2 \x9c\x8d\xd8cw\xc1\x88\xf6y\xe8\xa7\xe9\x88\xfdV\x9c3\x1f\xf4!\x19_\xae\xb2 :eY,C\xcf0\x9f%<\xe5\xc9\x19\x9f\x01\xa6\x88\x9ez\xec\xeb_I\xbf\xf60\x16>n\xd8\xd1\xd1\xdd\x8c\x9dp\x06\x11\xf2A\xb4\x0b3\xdac\xef\xf9\xe5\x80}\x86M\x05\x19\xf3S\xe6G\xa5\xc1\xb4j\x11R\xb8?{,\xca\x9c\x07a\xc8\xd2L\xfc=\xe1\xcc\x9fNy\x9a\x06'a\xd1\xb8n.~\x97vRo{\x94\xd8\x0b\x80\xd6A\xea\xa5\x1e\x90~\xad3;L\xe3\xb9Cs\xa2\xd9\x01\x0b\xc7\xd1D\xca\xe9\xbb\xf7\x83\x95\xa7\xcb\xc0\xa1\xb6C\x10{\xe4\x1e\xebu\x9e_1\x95\x02\xb2\x97q\x9eh\xb6\xc2\xa0 \xcb\x16~\xc4\xe2h\xca\x07\xec\xdd\"H\x05\xe4\xe7a0\xcd\xd8\xd2\xbf\x14s3\xcb\xb9h\xc9\xc7Mm\xd0C\x07\xc8gq0s8\xc6\x95_\xc0\x8b\xc7\xa8\x80S\xb6\xa7Y\xff\xab?\xf2#\xb4\xc7\xe5\xfa\xd3\xde\xac\xbd\xc4\x07\xa42\xeb\xd04?\xcf\xe2\x93 \x9aU-\xee\xd7PA\xd3\x81u\x98f#\x98\xd6\x11+\x13\x88\x95\x8e3;b\x9d\x10U\xee\xdc\x11\xc8Te\xe1\xd0Ml\x05\x8f \x12\xc2\xdc\x9fr\x1bB\xc5g`\x87Q\x9a#\x86eXj\xc9\xb3ENDg\x9f\xe5Y\xfci\x10\xcd^\xfbAb\x89TY\x8dR\x19\xd5\x97\x99\x0f\xcbl:@\xee\x1f\xa6T\xbe\xbb\xa4\xbfw\xf5\xc0\x1c\xd7\x1bC\xbb\x8a\x1cC\"\xb6\xedJg\xf2^h4\xce;X\x8e\xad`\xd8\xc6\xf7\xda\xf5\x80sg\x85!w\xa6fm\x97M\xc7\xf9D\x0c:li\xa9\xc1\xef\xb3\xfe\x881\xcd(\x02\xd8\xd6S\xd6d7\x0d\xc6+\xe0\xac{\x05\xb7\xdc\x86H*\x06\x8a\x92w\xdb\xc1\xc0P\xbfmR\xf4\xe7L\xba\xcfN[\x03\x96\xeaO\xe0\x80\x13q;\x13\xb0\xac\x13@\x99\\_\x81_E\x85\x11\x81 \xd1l\x15\x87\xc1\xf4\x92\xfdJ\n(\xfd\x9e\xc3\xeb\xf9\x82G\xb8\x02O\x81\xdd,\x96\xa6\xa8\x02\xc4x\x89\xb3\xdf\xd0\x9d\x03\x96`\xe4\xd2\x85#^\x042\xb0\x11\xd5C\xf4\xe0\x8be\xcf\x8a\xb2\xdd\xa0/\xddA\xcb\xda\x1d8+(\x1ec\xd0\x93\\|\xc7+*7\xd6m\xe0\x15\xcc-\xbe\x13\xa1\x9fY\xf7\xfb\xea\xb1$p\xa4AY\x83\xaf~\"=\xf3Xo\xc9\x93S\xaeB\x1c\xbd\x8c?\xcbW\xa1\xd8\x90\xf9o\xf2\xcb\xd4qG\xec\xb9\x1f\x89m\x17\x8a\xb1(\x8e6\xb1\x99\x14\x08x\xe62\xe2\xc8\x82Q\xca*:=`\xf8Z\xbf\xf5.\x91\x06-\xf8\xb5\xec<\x96\xf4;\xc5\xed^p\xfa\xa9\xbf\xe4\x18\x06]l\xbd\x9dv\xd6\xc7\x02D+\xf0\xf0*\xf6\x044\x92SE\xa7~\x9eJk\xb2\xf3\xb8.\xb6u\\\xb1\xc5\xd5\x0e\xd3\x8e\xab8\x0e\xc9w\x8b\x15P\xe9\xa7\xd8\x1c\x17\"\xf5=\xbfL\x15\x0b,\x19S\xcb\x0dUeB\xd8 -\x16m\x96\x88:{i\xdd\xf70\xb04F\x83\x15\x10\xf1\xcaH\xb2\x96{\x8e\xe2\x81C\xad\xa5\x96]=\xaaL\xe2\xca{(I{\xe1\xd2\xd6#\xb2\xef\xde\xe0^\x98\xf0\xd5\xcc4\xa5\x9b\x13\xe3\x14\xc0\x0b\x1dV\xa4\xdbz<\xbb1\xe0\xad\x00\xb7\x02\xf5\x9a]]\xb6\x1e\x1524\x9e\xa3\x94\xc4\n\xec\xb5/\xd5[1C\xd1\xa9\x87P\x13\xb4\x82\x86)\x83\xd6\xe3\xe3 \x85J`\xe3\xb7\xb1E\x96&H\xaa\x89\xb4\x97\xed\x1d\xac\x88\xea\xaf\xddG\xda\xde\xa5S\x1fO\xac}\x94\xfe\xc1\xa5\x02\xa9\xb3p\x0b\xfa\x87\xf2\xf8d\xc0\xa3\x9f\xe5<\xe7o\xb4\xa6$\x86\xad}z-\x06\xdc\x11N\xca\x16g\xa3\x0e\xb0\xeb\xc3\xea\xd8\x1e\xd6\x97iF\xa2\xce\xb1\xaeT\xd7y{vB\x90\xb6\x12\xb2M\xe42\xab\xa9T\x93\x06sPV\xa2\x89yXP\x91\xd7\xee\xdc\xe9\xf0e\xf5T.\x11r\xb2]\xcf\"\xeag\xfd}\xb6\xdd\xd6>\xab\xc9,\xdb\x8f\x05L\x9e\x88\xb2q\xc4\xfal\xd8\x81O\x85\xe0\x0b\xfbH\x99\xe2\xeb\xfaA\xf8\x00\xe8\xab\"\xda\xad\xa4t\x9b[C\xe7&|\x0e\x0e\xc4\xbc\xca\xbaP6\xeaQi1\x9fq\x19\xcb\xc7>\x90\xc2\xcaWT\xa9\xb1\n\xec\x80Lv\xdcV\x81^\xe0\x10\xacY\x0evuUs2`\xa6\x7f\x85\xf8\xc4\x88-\xc5\xc9W\xa2\x7fq]]\xf0.\xe2\xd3=\xb1\xb9\xe8\xea)q\n@~_P\xc14\xd0\x14w=\xb7\x06\x91\x9c^\xad-'\xde\x04\x84\xe5\x15c\x97\x88\x9f\xb3cOO\xac\xf8\x10\xc1h\xc8Z&\x85\xe22\xa8_>\x90!O\x9d\x95n\x00\x9e\xb9\xae\xc7VN\xe6\xb1S\xf5\xc2\xd5\xcb%\xec\xb0u\xb5\x08\\EP\xc1\xe6\x0bMI\xbd\x98\xe3\x82\xacB\xef\x1c*\xda=\xd6\xc3\xc0\x07pnr\x06\x83\x81`\x98M\xd1\x16NO\xb0\\\xa15\n\xf3\xd9\xd7\xd8\xc0\xd7\x92\x93\x04f:u\xf5\xf1\xcb@%N-I\x86\x9bj\xe4w\x9a,\x93n`\xd0s\xd6\x12\xd3\x0c\x0co\xca\xe2\x91cs\xe6g\xa7zr\x00F\x0cg\xee\xca\xe0\x96\xc3\xfb;\x10\xdd\xf2v\xc7\xb3\xbdG\xdb\xe2)\x1b\x00\xb1\xd5\xc5.Ek\xfd\x12*5Z\x0b\xc1X\x1f\xeby\x96#$\x8f\xf2%O\xd0\x01\xfe\x86%\xd0\xe8)\xef*]Q[\xf3\x80\x96\xb5\x13b\x82\xc6\xbe\x07\xdf{\xbf\x83[\xe9\xb7D\x93\x8e\x9d'\x1b\xcf\xea\x08\xc4\xf6\xd9\xd0Bv\x18uz\xb8\xc1\xfao\xa3E\x80\xb7\x9e\x14A\xe3M\xa3*\xca\x927\x95\xe0&\xf5 >Iyr&\x86.\xce\xdcp\x0bXK\x1a\xc9\xa0\xbc\xe2P\xad\x12{\x10\xd1]+\xb4\x8fvr\x19:\xc7\xd6\n\x92;\xf0\xf7\x02\x91\x8a\x80\xc7\xf0\xcf\x00Bn\xa4\x98[\x8fYP\x11\xf0\x04\xb4\xcb\xa2\xb3\xc2)N@\xc8f\xb6<\x1a\xc4|\xecO\xf0\xe2\xa7xA\x07G\xb6\xbd\x8ai\"\x11\xbd\xc7u\xeb\xab-\x93\xd8\xa6\x16F\x8a\xe6\xbc6:\x08\xca\xaa +\x04\x04E\xc5F\x91\xe9\x99\xe6a\xabY\xf2\x85\x07C\xec\xbamm\xeaO\x06\x1e\xc7\x04;\xfb\xe2\xe5\x8bw\x8d\xc5?\xb4\\Q\xd5No\xb1\xcb\xb2E\x12\x9f\x83P\x05n\x119w\xdf\xf0Y>\xe5 \xeb\xdde}\x96\x81\x1b\x90\x9e\xc4`>c\xc5V\xc9fy\x82*[\x90 \x05\xdfH\xe3\x9b\x17sT\xaf\x81\xd8g\xe5\xa7)j\xe2DZ\"[\x0e\xd2\xb2\x19\x8f]\xc69\xca5\xf8\xc5*\x0c\xa6A\x16^\x16\x0bf\xc1U\xfb\xd8\xe0\x80\xbd\xab'\x81\xfe-\x8a\xc1B\xb0h\x15\xba!\x1a\x9e\xc5\xd1\xdd\x8c\x9d\xfbQ&:\x91\xf2\x8c\xf9\xd2\x01\x81X'\xa0\xbf\x93\xbd\xc2\x8eL\xfd\x08\x0c?\x80\xb9\x91\x86\x83,\x9ek-7\xb9\x96\x11\xd3\x1f -\x10\xad^\xdc{\xfd\xe6\xd5\xa7\x87\xc7_\xbd\xfc\xcd\x97\xaf~\xfc\xf2\xf8\xd9\xf3w/^\xbd<\xee\xb1>\xfb\xd2\xcf\x16\x83\xc4\x8ff\xf1\xd2q+\xa1\xcd\xb5\xe0\x9e{\xee ]\x85A\xe6\xf4z*\x80o\xe3\xe7k\x93\xdb\x15\xbd\x10\xb5\xe8\xed\x86\x01>\xdd\x00K@\xbb\xbfJ\xe2\x13\xf1\x1ed\x0b\xe63\x1c6|v\xc0>\x83 \x12\xcb5\x8b\xd9\xc2\x8ff!z\x99P\x98\xce\xfa\xec.\x8b\x13\x16g\x0b\x9e0\x1f\xd6 \x88\x18z\x08\xe1Ozh\xd6\xb5\xf2\xd1<\x8a_\x82\x8d\xd54\x06/\xa3 X\x96\x06g\x80:\x85yO\x81q\x1a\x9aM\xf3$\x01\xa3\x03\xc0)\x81\x1c~t\xc9\xf2\xe8}\x14\x9fG\xea\xbb\x1e\xcb\xa3\x90\xa7)\x0b\xb2\x1a\x12\x07\x11;_\x04\xd3\x05\xde \xa4>PAZ\x8f%\xfc\xd4Of\xd0X\x8c+\x06\xbf!\xc1\xd2\x0d\xcd\xd1\xa9\x86\xc0\xd9\x13D\xd9\xc1]\x8b&\x86\xd0\xfe95\xd3\xa0\xca\x01\xd3(\x0e\xc2\xf1\x06\xfa\xddEo)\x96\x87\xd83\x0b\x9d\xa4\xd2`\xc6\xb2\x12\x14\xc9\x80\x8f\xb2\xf8*/\xbd\xbc\x88\xceb4\xdcz\xed'>\x84u\xff\xb2\xf0\xb1\x9b\x15\xac\x84\xf4\xf4@\x124\xf0\x16$\xb6\xae]\x97\xd8\xbbD\xd6\x83]#+(\xb2\xf6\\\xf2X\xeb[\x95\xba\xd2v\xa4\xb2\xfey\xf3\xfa\xb7\x1e\xc0\xb5\x05_\x1bj\xa2\xe6\xd8[\x0bd\xb1^\x8d\x82\xff/1\xe9\x15\xbds\x04\xe5%\xa61P3L\xcdU\xf0}\xcf\x15E\x9c\xed\x8e\x9f\x82\x1a\x89\xa6\x0e\xb5\x1b\x81\xa4\xb9\xa5'\xbb\xb7Y\x9cp6\x8b9zc^\xf8g\x1c%\xf3\xc1L\xc9\x1c\x06\xecK\xff=g\xf2*//#\x8c\x94J\x85\xfa\xe6\x1b\xa4\xday\xf7|\x11\xa7\x1c\xa7&\x05\x99\xb0l7\x1d\x10\xc1k}I'\x0b\x14s\x0d\xed\x13\xba\x0d-\xb6\x84\x17\x19\xaaM\x07A\xaa^\xf5\xb8.\x85\xbbd\x1f$\xd8A\x8aB\x91\xe2\\\x9e\xd5\xa2\xa2\xa8\xc1e18&\x88*\x81\xdf^,\x979\xc4\x83/\xbeZ\xdec\x9a\xc7a\x18\x9f\x07\xd1\xa9rx\x10\x80S\xaa\xbb\xac\xcf\x02T\x1a\xdc\xedy\xacw\x17eL\x83\xbb\xe6\xd8\xe1\xc0%f\xef-\xff\x19(#\xf0\\\xe8\x0e\xe6A\x98\xf1\xa4\xe5\xa8 \xc7\xbba\xdc\xdf\xaa\x1da\xeaZ)Y/\xd7e\xc0\x07\xac\xa7]\x19\x04\x81\x04^\x94,J\x1d\xb0\x9e\xf2\xeb\xd0c\xa3\xe2G\xc0S\x14\x97\xe1\xc0ss\xe0l\x1e\xe7\x118\xa5\xbe\xab&E\x03\x7f\x16\xb3y\x10\x15a\x83\x04\\Q\xf0\xaf\xe4_\x853 \xbcC.\xc5\x1a\x0dp\xd6\xef>\x96\x9dD\xff\x13'\\J\xeaf\x83\xbbuw\xca\xb7\xbf\x1b\xde\x1aE\xf3\xd6\"\x0euo\x9c]tH\xa4d\x13UH\xa0\x1a\x12X\xaed\xa7\x97+)\x0bEQ\xe7\xad\xc8?\xeb\x02(M\xb6y+\x13\xa4W\xacB\xab\xa0\xd0b\xd7\xae\x07\x00/\xe7\xa9:#]>\x199\x8fP\xc4\xfd\xe8\xa1[\xedy\xe4<\xd8\xdb\xead\xe0Y\x1e\xa1\x87\x86\xafC\xe9l\xf0\x91\xeb\xf4\x8a\xd8\xe0\xa4\xad\xf3\xde\x96\xc5\x8a;r\x86\x0f\\\x8d\x8a\xaeq*\xb0\x1d\x084ER6\x8e\xd1c\xad\x16\xbb\x1c\xee\x14@4\x81:\xcdJ\x1c]~\xd7 \xc0\xcdV\x86\xf7~\xe2\xfc\xca\xf6\xd6\xd5Q\xea~\xe2\xfc\xd4?\xf3\xd3i\x12\xac\xb2\xab\x99\x9f\xf9\xee\xbd`i\xc2\xf2\xde\xf8'G\x17\xdb[\x9bG\x17{\x87\x93{\xa7\xf5\"\x01\xb69\xfe\xc9h\xd2wG\xf7N\x97\xe6qk\xdc\x1b\x08Bt\xaf7\xa1\xe1]\x05h\xeaGA\x16|\xc3\xbfJ\xc26a\xd5\x99\xb4\xb5\xf1\xe4\x8e!\xaf\x95\x89cA\x8fRKw\x12\x10j\x05\xfd\x010\xec\xaf\xe6\x0e\x1foM\\\xf6\x94m\x12\xee\x97\x9d\xdc\x95&\xe7N\x04\x12\xc0\xa5\x9fM\x17N\xe0\x8ad4\xd9\x11\x873\x96\x0c2\x9ef\xe8\xb6\xa4\xe7\x9f\xc4y6: \xfd\xe8\xbd\xd86r\xb8\x1d\xae'V\xbe\xb3\xa6\x15e\xb9<\x1e\xd8\xec\xff\x1f\x0e]#\xdci\xc3f\n.\xa2\x07Y\xfcE|\xce\x93\xe7~\xca\x1dpG\x02\xfa\xa3\x03&\x90\x94\x8d\x0c\x1f\x1f\x96\xe5\x15\xaf7\x84]\xca\x9e>r\xb6\x1f\xda\x96\xaf}z\x95\xb0\xdbI\x1c\xeeVG\xb3\xe6\x1a+\xbb\xb7W\x17]|/\xa6\xe4`H\xdelF\xde\x0d$g\xff\xbf1y1\xc7\xf5 \x8e\xba\xd9\x8cw\x03t!d\xb9\x96\xe5\xb8\xbe\xa2)\x84\x13\xeb\xc1r\xa3g\x8f\xf2\xaf\x0b\xcb\xea\x9aCh\x96\xf5\x80\xc5\x03\x19\x94@\x814F\x12\x18 \xd1\x90\xe2y\xa34\x93\xa8\x0e\x96\x91hd\x91\x0d\xa6\x0b?y\x969[\x16%L*\xcb'N\xe4\xb1\xa1\xb2P\x82\x08!\xd9 \x0d\x83)w\x1a\"\xb0\xe4c>\x01\xc5wU\xd8\x7fm\xda\xbb\xfd\xb0\x1d\xc4\xf6cl\x0c;\x9a\x14\xdf\x93\x98T,2\xe9\x02\xea\x80\xc5\x82w\xf7\xd8\x06\x98\x01D\xec\xe9>\x8b\x95Ux\xf1\xa9\xeb\x8e\xe6\xc1^\x9d l\xc1\xbb\x9b\xd0g\x8e\x08\x02\x97\xb4\x92\xf6\xc5b\xe3h[\xbf\xc4Ks\xb65>\xa1\x10\xb97>:\xcag\x0f\xb7\xb66\xc5\xff\xf9|^\xbf\xf4\x96\xa8B[;Xhkgw~t\x94\xcf\xf96\xfc\x9c\xf3m\xf1s{k\x06?\xb7\xb7\xcc&\xe0\xc6\x00|fg:\xc6\xcf\x9c\xd8>\x07\x86~\xe3\x9f\xb4t\n.\xf49\x07#\xbd\xd1\x19\xdf\x85\xe2\xb3\xf9|\xe2\xfe|\xfb\x03y\xc5Oo\xf7d>\x9f@\xc2\xd4\xfe\xa1T~\xa8\x08\xe1sU\x84\x01r\xc5[\xef\xa0V!T\x9f\x99\xf3-\x8e\xff\xe6\x93\x03\x15\xe1\xc9\x91\x9d\xde\xde\xda\x9a\xc9V\xc7\x18\x93)\x9f\xc8\x95~\x85A\xe2\\k\x1b=\xf7\x93\xfaY`\xaa\xf5r\x1c\xa8\xae\x1e\xf4\xf0\x1a<(\x08\xa3z\xfb\xb5~\xcf\xd9\xbe\x0c\x8c\xe0\xc0\xe8\x9c\x83\xfdr\xa40\xe8)F\x8a\xec\x9d\xf6\xae\xbb&\xb8\xe4*\xe7p_t<\xb9\xee2\xde~hc\x08m\xcb\x98\xf2%/G\xdb\x1b\xdf\xfdo\xbf\xf3\xbb\x93\xde\x8dF\xd6\xbc\x9d\xa8\xdd\xdd \x1c\xb1o\x14,\xbe\x0f,\xbe\x0b\xce\x1ez\xbd\x1b\xdd9\xd2h\x9c\x058\x06\x0b\n\x87\x9e\xf1\xd1\xc5T\x1c\x8bf\xbbG\x17\xb3\x87\x9bG\x17\xf3\xdd\xa3\x8b9\xbc\xcc\x8f\xf2\xad\xa1X\x19\xf9\xd6po>\xb9w\xda\x00\xc2u\xc9\xc3M`\xed\x80\xd0\x1a\xa4\x82 \xa9U\xd0\x0c<\x96\xd4a{} \xdew\x9d\xea\xd7{\x7f\xf8;\xbd\x11\xeb=\xab\xad\x9b\xde\x1f\xfe1:\xf9\x8f\xd3\xc9\x7f\x82N\xfe\x1f\xe8\xe4?I'\xffC\x91\xec\x1b\xc9\xff\x88N\xfe\xc7t\xf2?\xa1\x93\xff)\x9d\xfc\xcf\xe8\xe4?-\x92\x9f\x1b\xc9\xff\\$O\x8d\xe4\xbf\"\x92\xeb\xde\xf1{\x7f\xf8\xefD\xf2\xccH\xfe3\"\xb9\xee;\xbe\xf7\x87\x7f\x96N\xfest\xf2\x9f\xa7\x93\xffg\x91\xcc\x8d\xe4\xff\x85N\xfe\x17t\xf2\xbf\xa4\x93\xff\x82H~a$\xffE:\xf9/\xd1\xc9\x7f\x99N\xfeW\"90\x92\xff5\x9d\xfco\xe8\xe4\x7fK'\xffU\x91\xfc\xd2H\xfe\xf7\"92\x92\xffG\x91\xfc\xcaH\xfe\x9f\xe8\xe4\xbfF'\xffu:\xf9o\xd0\xc9\x7f\x8bN\xfe\x0f\"96\x92\xff#\x9d\xfc\xbf\xd2\xc9\xff\x1b\x9d\xfc\xbf\xd3\xc9\xff\x89N\xfe]\x91\xfc\x95\x91\xfc\xb7\xe9\xe4\xbfC'\xff]:\xf9\xff\x14\xc9\xb9\x91\xfc\x7f\xd1\xc9\xff\x99N\xfe/t\xf2\xdf\x13\xc9\xf5\xd8\x01\xbd?\xfc}\x91|i$\xff\x01\x9d\xfc\xa7D\xf23s9\xfc\x9eH\xf7\xcd\xf4\xbf/\xd2\xdf-\x8c\xf4\xff*\xd233\xfd\x1f\x88\xf44\xad\xa7\x7fK\x93\xe5oi\xfa\xfb-Mh\xbf\x05\"n\x90\xb7o\xff\x04\x9d\xfc'\xe9d\x80\x80A\x0c\xbf\xfd3t\xf2\x9f\xa3\x93\xff\x02\x9d\x0c\x84\xd6\xa0\xa8\xdf\xfeY:\xf9\xcf\xd3\xc9\x7f\x91N\x06\x12d\x90\xe5oij\xfd-P&\x83Z\x7f\xfbW\xe9d \x13\x06\xfd\xfd\xf6\xaf\xd1\xc9\x7f\x83N\xfe[t\xf2\xdf\xa6\x93\x81\x04\x19\xf8\xf6\xed_\xa7\x93\xff&\x9d\xfc\xbbt\xf2\xdf\xa1\x93a\xcd\xfe\x9a\x91\xfc\xf7\xe9\xe4\x7fH'\xffc:\x19\x16\xe7\xa9\x91\xfc\x0f\xe8\xe4\x7fD'\xff\x13:\x196\xfb_7\x92\x7f\x8fN\x06\x1e\xc0X\x98\xdf\xfes:\x19\xb6Xc\x07\xfb\xf6_\xd0\xc9\xff\x8aN\xfe7t\xf2\xbf\xa3\x93a\xfb66\xb6o\xff%\x9dLo\x9a\xdf\xd2\xbb\xe3\xb7\xff\x9eN\x86\xed\xe47\x8cd\xd8N~j$\xc3v\xf2\x9bF\xf2\xff!\x92\xdf\x1b\xc9\xff\x89N\x86\x9d\xe0\x0b#\xf9?\xd3\xc9\xbfO'\xff\x01\x99\xfc\xdd\x1f\xa3K\xc3.\x13\x1a\xc9\xff\x85N\xfe\xafd\xf2w\xbfC'\xffq:\x19H\xaf\xc1\x8d|\xf7'\xe9\xe4?M'\xff9:\x196\x01\x83\xa5\xf9\xeeO\xd1\xc9\x7f\x86N\xfe\xf3t2\xd0o\x83I\xf9\xee/\xd1\xc9\x7f\x85N\x06Bm\xf0\x17\xdf\xfde:\xf9\xaf\xd2\xc9@c\xdf\x18\xc9\x7f\x83N\xfe[t2P\xcd\xc4H\xfe\x9bt\xf2\xef\xd2\xc9@\xa8\xdf\x1a\xc9\x7f\x97N\xfe\xfbt\xf2?\xa4\x93\x81\"\x1b\\\xc1w\x7f\x8fN\xfe\x07t\xf2?\xa2\x93\x81\"\xbf3\x92\xff)\x9d\xfc{t2\x90\xde\xccH\xfegt\xf2?\xa7\x93\x81\x98\x1aL\xe1w\xff\x82N\xfeWt\xf2\xbf\xa1\x93\xff\x1d\x9d\xfc\x1f\xe8d\xa0\xb1\x06\x0b\xf9\xdd\xbf\xa4\x93\xff5\x9d\xfco\xe9\xe4\x7fO'\xffG:\x19H\xef\x8f\x8dd \xbd\xe7F2\x90^\x83\xc7\xfd\x0eH\xaf\xc1\xcc~\xf7\x9f\xe8\xd2@z\x7f\xdbH\xfe\xcft\xf2\xef\xd3\xc9@L\xbf1\x92\xff\x0b\x9d\xfc_\xc9\xe4oav^\x98\x1b\x0f\xc0*0v\x9e\xef\xf0\xb8fp.\xdf\x01\xb3\x14\x9b\xe9\xc0X\xde5\xc9\x1b\xec\x1bi\xa9\xd9\xb5)Hi\x8f>\xd7\x16rw\x12\xb0\x11\xce\xd4F`\xa3[\xa9p\x03\xc9Z=\xf6\xa3\x12;R\x96\xdf\x84\xc4M\x9am?l\xf7\xbcG\xabT\n\x0b\xc5}\xd0+x\xba\xea\x04u\xf4\xfa\xc0AA%\xd5\x10~\xa9\x86\x80\x00T(\x87\xcd\xba\xc9a)\xb5\x01\x18Tlmm\x1e]l\xcf\x8f.v\xfc\xcd\xa3\x8b\xfb[G\x17\x0fN6\x8f.v\xb7\x8e.\xf6\xc4\xcb\xde|\xd2\xbfw]%\xa3\xeadt\x93N\xfa\x9b\xdfL\xc6\xcf6\x7f{r\x05\x7f\x7f\xbe\xed}\x80\xb4\xab\xf1\xd6\xe6\xa3\x89x\xc5L\xf9\x02\xa9W\xe3\x9f\xe0\xcf\xad\xcdGlr\xef\x9a\xdd\x8f\xd0Pb-\xb5O\xa1\x939:\xba\xf0\xa7GG\x17'\xc3\xa3\xa3\x8b\xd9\xde\xd1\xd1\xc5\\\xfc\x01\x01\xab\x008B\x1c@\x8e0\x07\xa0#\xd4\x8f.NP\xe0\xba%\x05\xae\xbbsvt\x94\x89\xea'GG\xa2\xae\xbf\x05r\xd9\xf9\xfc\xe8(::J\xa0\xd0\xf6C\xfc\xf7\xe8\xe8(\x1f\xee>\x14%\x86\x0fA\xf9 \x1a\xc2\x7fC\xfc\xb7\x8d\xffv\xf0\xdf}\xfc\xf7\x00\xff\xed\xe2\xbf=\xfc\x87mn=\xc2\x7f>~\x01;\xf7@\xfc\xdb\xd9\xda\xda\xaa\x11\x18\xd46\xf5X\x9fE\xac\xcfz\x16M\xd2\xac\xdf3\x17\x1cH\xa1\xb7\xf7\xe4\xb0\xf7Nh\xa5\x91\x98j\x01\xd4\xb9\x80\xd4|\xf7\x08\xa5\xddG\x17\xa6\xea''5Q\xaak\xa0\x18\xa9}\xd0\xda\xf4\xb3\xcd\xdf>BA;H\xdaQ\xd4~t1\xe36u\xd3\x1az\xad\xf0Zz-\xd0\x18\x8d;\xf7k\xae)\x98\xfcB\x0d\x96S\x8a\xa4\x95Vt\xda\\t&\x8b\xae\xa9>\xb8\xb2\xa9\x12\xdd\xba2naU\xc6\xcd,\xca8R\xf5\xc8R\x8f\x85\x9d\xf4s3Z?wV\xd1\xcf\xd1\xed\x89\xbc\xda}\xcbe\xa9b\x19OQ\xa3\xa7\xe0\xdf\x17`\x03\xc5\x95s0\x9a]\x85\xe1\xd5\xf2*\xe1W\xe9Uvu\xc6]\xf7@\xaa\xef\xc6\x89\xc7\xa6\x1e\xeb\xfd\xb0g\xaa\xff\xd8\xcah\xe8\xb3\xab/\xbe\xb8\xfa\xf2\xea\xcd\xe1\xd5\xdb\xabwW?:\xac5\xc4\xfalnk\xac\xec\xdf\xbcK\xffT\x8d\xb6\xcf\xf79\xc0\x1d\xeb\x87\xd7\xa6\xec\x1b\xce\x06\xd8t \xea\xa6l\x10\xc0\x14\x97\x1d\xb0\x15\x18A#\xe3\xef\x17\x0eG\xd9Z\xa8S\xdc\xb5~d\xbdk}o\xfc\x93\xc1\xa4\xff\xc3{\x03~\xc1\xa7N,z\x10\xc35\xb1\xf2m\xf0\xe2\xf0\xf8\xf5\x9bW\xef^\x81\x91~\x0f\xac\xb8{\xe8\xc8\xd1I\x93\xa9{<\x1c\xa0E\xd3\x88\xf5z\xd7\x85\xc4F >\x18@`\xd6k\x8c\x14\x91~\xcf\x1d\xf7\x8e\x8f\xa7q\xc27\x7f\x9a\x1e\xa7\x0b?\xe1\xb3\xe3c\x9b\x95\xfdu\xa5\nv\xdf6\xed2\x83\xf6s[7\xb0\xa9\xad\x01\x88\xcb\xc2\x87\xcd\xe3\xce\x1de\xde[!JcN{\x05)\xe9\xd2\xe6>\xcb\xd8\x01\x1b\xb2\x11l\xda\xd7\x05\xbf\xa0\x9e\xc4 \xeb\xf88\x8cg~\xba8\x16{\xfdqqg\xe8\xf8\x988v\xb5\xb8OX\x17\xb9*PR\xf0\xa8\x02#\x983\xc7pZ\xcc\xb4\xf3sf\xc0\x8fULN\xf7\xd1\xa6\xb4\x98\xee\xa6@J\xb2VPx\x15\x86\x95.\xbeP\xd8\xfd\xde.\xf0\xbf\x7fx\x16\xc6\xe7\x07\xd5+>0\xc4X\x1b\xf8\xed\x0e\xb4\x01\xcb\xda\x06\xd9\xe4=\xacu\x9c\xe5\"\xeaW\x17#rdC\x8fEb\xe8\xfbh\x8d\xaf\x89\xd82i\x9d\x9c!\x83pS\x02\xd1\xc6\x96\x8c'\xb7\xc4\x88\x0cw(\xf6\x18\x83\xd7h\xcc\xd8*\x0c\xa6\xbc\x0d\xf2\x9d\xd0\x8bf}\x13D\"rN6\x9c\x88=A\xc7\x11N\x04\x9e\xa0\xd4\xd5\xd4M6\x14\xebm\xb0\x8a\xd1WD\x89\x8f`\x1e\xef\xb1\xcd\xcd\x02H\x1e\xdb\xba\xd6\x9e[@\xe9\x174z\x1c\xbb.\xba\x1dG\x93\xf1\xb0m\x0b\xba\xd5\xa1\x146\xaa\xd5\xb1\x08rW\xb91\xf6\x11\xba\xd2u5\x9b\x80\x8d\x01\xb0\x91\x15\xb0\xb1\x04\xac\xd3\xefkH\x12a\xec\xd0\xb1\xf8\xf0\xc4\x85\x08P\xe3X\xc0[F9j_\xdb\x0d\xc3\xddn\x1d\xae\x0d\x89\x12\x15\xf9\xcd\x95G+\xdb-\xa1\xebr\x01\xad\x14\xc9\x8e\xdf\xd2S\x1d\xd9\x9d\x1e\x9e\xe8\xd1\x81\x1b\xf0\x9bQ\xbe<\xe1\x89\x96\x90\x02\xe7\xa9%\x9c\xc4q\xc8}\xe9\xf4M\xf0\xa6\xc7\xc7@\x89\x8e\x8f{2\x10\xc0Hs\xce\xf7}\xceFe\x1d\xc0d\x9c\xf2\x0eb\xfc\x8f\xdc\x07\xdc\xa1>f\x1f\x1a\x16a\xd9\x0fz\x05F\x80\x8c4e\x03\xc1\x034\xeeU7\xdeHnk\xc8\x8a\xc9\x8d\xf7fK\x8f\xb6{7\xae\x8eI\xe5\xdc\xfdV\x90X\xa6\xa5(\x80{\x10\xe9u\xef\xac\xe2w\x9d\xbcI\x06\x8e/b's\xa9\xfa\xaa\x8dT\x11\xb8\x1d\xa2\x05&o\xaa\x05\xe0{(j\xec\xbb\xfe\xc8q\xa4N>\xe6\x13\xb8|\x90wu3k\xa6\x9cI\x8f\xbc\xbc\x00\x87\x95\xf3\x0ea'a\x07,\x1f\xa7\xc0C\x87\x82\xc1\x0c F\x9a\xb1\x1bH\x03w\x87\xf5[ \xf2\x02\x84!`AL\xd8~\xd4*A\xb2\x12\xc6\xd8F\xa3\x87\x15&\xe6\xce\x1d\x96\x8d\xb7&\xe3\xed \xde\x19\x14\xef[\x82\xbd\x13/\xc3\x89\xd8\x82\x8ao5\xdd`\x8e\xa4\x13Q\x88\xb6\x16QAB\xaf\x0d\xb5\xa1qwF]\x8d\xa3\xa064%U\xdbm0\xc4\xaf\x0bd#\x80\x99\x02\x1d\x91n4\x8d\xe1\x0b\x04K\xcd\xe4)\xdbg\x1b\xb9y8,\xce\xf4\x85\xdf\x98\x8dZ\xfc\n\x10\xb0\xf2\x8a\xc7\x03\x96nnZ\xa5\xabs\xd1\xbdqjq}=\x85`\xa18\xbbs\xc1G\xc0\x166\x9e\x8f\xb7&\x02\xb97\x1c\xf1\x06b\x92\xd2\x93\xcdFS\xac\x0f\xe8\xdec\xd6\xef\xa7\xec \x0b\xad\xbdZ\xb1}\xe6\xa8\xae\xb9V\xe7i3\x10\x0d\xaf,\xb9\x0b1IV\xaf\xde\xc5\xd0l\x04\xa5\xe6\x90\x04B\xdco8\xab\xe6\xd1\x8aG\xc6}\xb7\xd3\xbe3\x86Q)\x1bBQ\xe7.\x94\\\xb2}\x96;3\x8f-<\xb6\xc2U\xe1\xb13\x0b\xc5\x04\xba\xabwy f\x12\x0b\x8f\xcd<\x16\xb0+y_\xeeL,\xcae\xf3\x08\x1afP\xd5\xba\xc1\xa1\xad\xf5\xeai}J\xea\x07HT\xd1\xacu\x86\xbc\x01\x8b\xd8~\x04\xca:\xf3\xb5\xa2\xac\xe4\xd5o\xbd\xc3\xfa\xc7T\x7f\xbb\xf1x\xb7\xf4\xad\x9b\xf2r\x16\x8d\xe0C\xea~\x9fH\xaf\x97\x07b\xbd\xd5\xead\xa1\xeb\xa9\x8c \xbfLy\xd9\x8a\xe7ft1\xa6\xb1G\x91\xa5\x15V\xf0Gb\xab+\xdcT=a>\xdbd\xc3bM\xe6\x95\x83\\\x15\xd3\xfb\xfdH\xa2\x90H5\x9b7\xc6!\x17L\xe0\xe4\x1d\\M[\xf8Z\xc5\xd6\xde\x90\x93\xb5n\xc5u1\x9ade\xb7\xa9x\xa7\"\x9d\xd2\x1c \x14\xaa\xab?Sl\xbf\xaeq\x08ew\xea\xcdL%\xdfTO\x9f\x9b\x9c\xc1J\x0f\xac\xfaLy\xf0\xac\x9b\x97\xcc\xaa\xa5\x12\xff\xb2^b\xa1\x97\xc0M\xbb^\xe4\xec\xe6\xc2S\xc5\xa2,=v\xea\xb1K\n\xffO\x04+\xe2PG\xa1c\xc8\xc9\x88\x9cs\xb6\xcfN\xd8\x01\x9b\xb1\x11\xcb\xc9\xba\x87l\x9f\x1d\x17%\xa86.\xc4^/\x1a:\x17\x9c\xcd\x8a\x1d\xb0\x05\x1b\xb1sW\xfc\"8\xa6\xb7\xa2\xb8h\xf5P/~h+\xfe\\5|h.\xe7\xe7bK\x0fA\xd7e\xaedX\xa5!\x9cb\x8a\x8d\xd2\\l'\xe0+\xc5\x83A42>\xc5\xf76.\x8a\x06/A*x\xa964\xd7c'\"e\x8a\"\xdb\x98\x98\xb5\x11\x0bd\xeay%\xc3\x1c\xdb\x86\x13\xb1;lN\x0eM\xcc\xf6{\xb6\xcf.@\x0c\\\xb8\x96\xe9\x1d\x1f\x9f'\xfej\x05\x82jb\xa2\xc4\xf3\x8c\xed\xb3\xb7Z\xb5\xac^\x8d&w\xef\xc5\xb8\x9e5\x9d\x07_\xb1}\xf6\x9e\x1d0>\x00Wr \x11mp\x9a\xfe\x9a\xed\xb3g >-\x8bg4[d\x05\xf6\xa9\xf3\xcac\xaf\x15\x1c/\xdb|^\xd3l\xd0\x06L\xaac\xb6\xee\x9b\xd3w\xfd\xad\xd1\xd8\xea\xe4\xc1o\x9b6\x96\xd9\xdd\x1ev\xf5\xe3zv\xcbf\x1du.M\xb7\xef\x80\x02\xfel\xe6\x80w\xe1\x1a0\xc4\xe3k\xf4\xcd\x9f\xcd\xc0\xabP\x99\"\xb6D4\xca\xf0\x0d\xfb\x8b\xa0jj\xe1\x93\xf0\xad\x037\xba\x99\xae\xa6\x13O$w\xd3\xc8\xed\xb4s~\x9f\x8cX\xfb\xb7\xec\xbae\x00\xbb\x93\xb5}\xc2\x8a\xd06/I\x86\xb9\x93d\xf5\xb6(7\x17\x14\xdf\x90K\xfc\xafo\xf8\xa9L\xaf\xb7\x13\x9a\x1b\xbb\xe0\x01\xb6\xcd\xed\xbf\xd8\xa3?E o}\x93\xae\xf0\x03\x9f\xf9\x99aiZa\x05\xc0\xa3e#+\xf0\xa5\xbf\xa2\xf8\x00-\xd8\xfb\xf2\x84\x1bM,\xf5\"h\x97R/r\xaa\x17y\xcb\x0dn\xe3\xb2\x92\x0f\x12\xf0z\x91\x93J\x11\x10\x81\xd7\x8b\x1c\x1b\x8c\xcf\xa7\xf9|nv\xf8\xbc\x066\xffG\x01?\xaf\x17:,\x9c\xaa\x15\xeb\xde\xe2\x9b\xea\x02\x18\x83\x03v\x88\xfb\xc2\xabyg\xd7k\x8aX'\x1e;\xf4\xd8[\x8f=\xaf\xe3~z\x1e\x80\x0f4R\x8e\x05q\xdc\xceGF:\x93; \x1f\x9c\\f\xfc\x0bd\xf77\xc41P\xfb}u\xc50\xff\xd5|\x9e\xf2\xac\xcc\xc7\xdf\x8d\x1c\x88x8x\xa3:\x01\x00{\xd2\x1b \xfe2\xcbCG\x8f\xe9\x8e\x16:\xcb\xb6\xden\xbcu\x04u\x8f1\x18\x0c\xbce\xaeKl\xfe\xf0\xb5\xb9\xf95H_Y\xd2\xcf\x1a{\x178}\xee\xb1>%y\x86\xda\xb3\xc6\xda|\x10\x81Oq1&x\x03O+K\xe53\x1c\xc2\x9d\xe0\x0fK\xf3KK\xa7/\x9b?\x8b\xfa\xa0~\xc5(\xa9R\x7fA\xd7W\xbcZn\xa9vj\xaf\xf6\x0c5\xfd,\xb4\x8b\x8b\x80/sD\xfb)x{\x85\xb3\xde\x86\x12R\x00\xbb\xfa\xac\x15\xfb\x14\xfb\xf6\\\n\x1b\xec\x9f{U\xb4\xf5\n\xe0aa\xd8\xd8\xd5>\x9bz\xecyy\x14\xb5\x7f\xf858\xb4{\x0f\x88\xf8\x1eC\x15\x94\x0b\xb8\x91!|^\nm<\xf6\xda\x02\xde\x13\xfb\x8a.\xf9\xf8\x0b\xe55P\x0cJ\xfe\xb0J\xaf\x99\xb6\xce\xda\x94\xcf\xed[\xf4\xba\xec\x9c\x0c\xe1\x04\xd3K\xcb\xaa\xb8\x195\x82\n\xa5\x0e\x0d\x8e\xfb\xfdl\xc2\xf6\xc1\x86\x9e\xd7\xee\xa2\xb9\x1fC\xc4\xf5q\x86\xd786\xbe\xf6\xb0\xecv\xb3\x8f(\xf1\xc7\xd0\xe4xn\xe9\xb0\x8f\xf2\xde\x94\x02\"\x08@\xd8\x1d\x16\x9bp\x9c\x82f\x8e:\xcb\x0b6hJ\xf2\xffb=\xcc\x05\xe1H\x9c\xcc\xd5tC\x1b\xa1\x95z\x14\xd1\x8a\x04\xe34\x7f\xccV\x0dJ\n\xc1:M\xc7+\x8b$\x7f\xc3 A\xc0\x00^\x9aG\x9aA\xdb\xcc\xed\xa8\x95\x10\xdfX\x80\x190E\xc1\xc47`4\xa9\x0c\x87R4\xba \xa8\x98\x12\xf0o\xd4\xbc\xab\xa6\xba`-U\xf1P\xea\xdf*\xa0\"\x18\xb9P\x1c\x9eV\xec \x9b[!s\n\x1a\x10\x05\x1f\x8b\"\xe4\x12,\x07g\x16\xf0\xf9n!\xfe \xe1B\xe5%\x1cWg\x80E\x1c\xf0g\xc4|G\x9c`!\x15\xd1+\xb5)~u\x05\xc4 ;\x10=\xdc\xdf\xc7\xd3w.\x1bA\xd4\x84vO\xecJb\x90\xa8\xd0\x14\xfc$\xe1\xfe{#\xc7T\xe1.a{\x03\x9exZ\x1a\x92\x83m\xc6\xac\x89>\x83\xea\x07\xf0wi\x03\xfc1\xb0\\Z\xab4\xe8\xcf\x81\x17\xd3\x8a\x99\x03:\x16\xeb\xe6\\|\xad\xda\xc9@F\xec0R3\xd4D\x91\x01\x06\x8fE\xde\xb1.\xa6\x86\x14\xb2,|\xf3\\/{\x8eF\xdf\x08\xfa\x0e\x1bX\xaao\xa1\xc5\x0f\x81\xe0g?\xa8V\\\x9f\xf4\x13\x87\xcfJ|\xc7\xcd!F\x83\xb5 (\xd0\xdc|\x0b\x03>\x8e'b)E\xec K\xacK\xc9\x87\xa5T\x8fZ(\x9e\xcc\xf1\x01i\xd1\xac\xd9 \xc6q\xbf\x0f\xb1\x0e;\x80(\xf8\xde\x00\xa1\xa23\xaa\x91\xf2\xc7.K0(cf\x04'\x91\xbdKZzg7E\xa0\x05\xf9\xf7\xa9\xfb\xe2\x94\x94\xbcm\x0b\xb3\xc8\x1dbiZ\x9eHf\xeb\xc6\xd0\xb5|\xa7\x953[\x170C\xcbMz\x03`>\x84)-\xc1\xe3\x8f\x0b\xf0}\x1e\xc6~\xb6\xb3-\xb5\x08\x80\x80\xb5\xcc\xdd\xfbt\xe6\x8b({h\xcd\x19\xeeZ\xb3l\x1f\xfb*\xb06\x08Y\xcfC\x7f\xb9\xe23{ \xdb7E^\xe5\xa3\x1b[\x9e\x9e\xafaP\xad&\xdd^E\xf0P\xcb+\xe48\xb5\xf4R\x08afp#Q\nr\xea\xb3!q\xc5\xc8\x00\xa9N-MIrj\xc9J\x17TKVB\x9dZ2\x08r\xeaiRxSK\xfe1\xf7\xdf\x17\xfd\xd8\x18z\xeb-\xc1@.\xc1\xd8\xe1E\x94&\xb1\x1fm\xf8c\xb1*o`\xdaK\xfb\xa0\xd85\xac\xdfn\x81C\xae\x8f\x0dc5\xe9\xf1\x98L\xfb'u\xf6\x18O,,[$6\xe7\xc2\xec\xc6\xd5\x9c\xf6G\xae\xb9\x91o\x00\x03~\x87e\xa8\xea\xb5\x10\xe86\xcb\xd7\x86\xb3\xc6\x9e\xebh\x81\xb6<\xd93\x8b\xe9\x05}\xfd\xc8N\xe5v\\\x07\xae8y\xac\xa7\xd6\x8b\xed\xe2\xd9\x0d\x9a~\x9d\xc4\xcb \xe5\x1f\xa1\xe5\xb7<\xfb\x08\xad\xca\x95uK-o\x1b\x97v\xe5\x8aX\xdf\xc0\xb3\x12\x856.B8gE\x00\xda\xa8\xe1\xf4\x15\xc0\xf1!\xb2\x1c.\x90m\n(\xb6 \x99\x0f\xe9\x06\x96\x95\xd2E0\xcf\x9c\x06D\xd5.\xfe\x03k\xd1\xb64E\xf9\xc0\x89\x8b\xbd\xcb\xde\xb2x\x00\xf8q\xc3\xa2\xa2)-\x99\x8aS\xe1$\xec\xa9\xf4%\xa6\xf6\xbc\x91\xd8\xc0Y\x9f9\xd2\xc8\xfd\x80\xf5\x9e\xdc\x13TM\xfe\xee\xb3\xde\xd3\x9e^Jn\xa0\x82\xa1\x8aD\xe9\xa3Hf\x83\xa6\x10\xe4\xa0\xd4\xc2\xb3\xcfb`\xdf\xc2\xd4)kC\xc7\x138J\x96\xbf\x07\xfej\xc5#\xf0\xef\xe0\xe9\xf84\xc0\xc4\xb8\x92\xa8\xcc\x18\x9c\x0dq\x06\xdd\xd8\xeaB\"\xe0N\x06br\x01\xb5*\xbc4pi\x80*W\xbf2s=`=\x86e\xb5\x072\x0e\xd6\xabN/\x8a3\xe6\xa7ip\x1a\xf1\x19\xcbb\xe6\xb3\x95\x9f\xf0(\xdb\xa0\xf8\x07\xf5\x9ci\xfe\x91\xe8^\xaa\xa7\xf4H\xa3 f\xec\x0d\xe7\x8e\xd6[IT#\xaf\xd2\x02\x8a\x80\xfa\x82\xc1P\x94\xd6\xf5\x9agE\x7f\x14{\xe9P\xbc\xa2zlT\xca\xc2f\x08\x9a\xd7uJ\xb4\x0d\x17\x0d<\xc4\xd0\xe0\x84\xcb\x95\xd7\x1d\xc1\xe7\xaa\x1c\xd1\xd3\xce$\xd3*\xfa\xac]d+~}pK\xc7\xc3\xce\x83\x07\xf2\x80\xdd$\xe8W\xdbyu\x80\xbd;\xbd\x11\xeb\xdd\xf1\x97\xab\xc75\xa2x\xb7wW\xe4\xfc,\x8f\xb3zV\xef.VZ\xc5\xa9\x91\xf5\x04\xb2B\xb3\xceS\xc88\xcd\x1ek\xc1\xfa\xda\x04\xe3\x16\xa9\xb8$^\x92\xb2\x01\xf1*\xc4=\xce\xf8N\xef\xc9\xd3\xbb\x18c\xa1U\xd8\xa6\x04\xccFP>\xe0\xd9\xca\x8e\x92\xd0\xad\x91G}\x08\xf1\xe3\n\xdc\xa5\x19\xc1\xa3\x1dwpx\xc6\xa3\xecp\x19d\x19O(o\x1f\xe6A:\x913\xbd\x08\x0cu\xb5x\"\xe7\xe1\xd0ub\x0f\xfc\x97\xc4\x837%\xc5\x14_\xbc\x0f\x89?N\x82\xacH\xdc\xdd}\x00\x89\x9f\xe5\xab\x90_\xc8\xa4]Hz\x97\xf8Q:\x8f\x93\xa5L\xdd\x83\xd4\xd7~\x9a\xbe[$q~\xba\x90\xe9\x0f!\x1de\xe2x\xb0\x8bu\x97\x1f\xc1\x8a\xb7\xe97\xce4\xdf]6\xc9yL\x9fF\xf9\xe0\\\x0d\x07U \xb8\xd5\x88D.j\x80\xd5\xd8\xca\xcfS\xae\xbd\x1a\xc7&\xfa\x93\x01I\x85\xa2r\x1f\x82\x16\x13\x9e\xe6\xcb\xca{\xe3\xa9,\x1a\xc4Q\xc1\x92\xc5`,\x08 \x89\x1fD=\x8f\x05\x90r\x1c\xa4o\xb3Y\x00r\xfcL\x1b\x18\x1e\x9e\xc1\x119\xd4\x12l\x9c\xc7r`\x88\xc4od\xdb<\x96\xd6\xa5xg\xd2Ztch\x83oN\x0e\xd6\x87\x8f\xf9r\xc7\xe5H\xc7\xbaA/\xed\xd0 y\xa9\x8d\x0ff<\xcd\x92\xf8\x12\x17\xb6\xfc\xd1\xf5\xb3!M\xb7\xc5\x16:u\\OZ\x02$\x830H3\x1e\xf1\xe4\xb9\xd8\x87\xa4\x13\xe1\x1e\x17\x9bi\xcfU\xfbk\x9d\xde\xd2_\x9cZ\xd1d\x19\x9f\xf1/\xe4wjsndj\xf3oV\xd5\xe7\xb9\x9eW\xce9Y\x13F$\x98%\xea\xabz\xae\xed\xab\xd3\xc6\xafN\xc9v\xcb\xdc\x86\x95\xa0\xc8-br\xa5\x9f\xf5\x14\x1d\xdb\xa7\x06\xb6O\x8b:\xd5\x14<\xca\x08\x02\x04gL\xaf\x95\x86\xbb\x10`\xa9\x89\xac\xf7\x04!I\xb3$\x98f=\x92\xaa\xdf\x1f\xba\x03\xbc\xadDZ\x08\xec\xb6z\x9c\xaf\xe3R\x81f\x9cD\xb3\x8d\xf6m\x8d\x15\xa6\x91\x9ci7E3Wg#\xdf]\xae\xb8d%\x9f\xfb\x91\xe0&\xc5>\xc3|6\x0d\xfd4e~\xca\xfc\xe2K\xc4\xb9\xf0C\xe9\x86\x1b\x19\x9e\x05\xf7g\xd2LK\xa6d~\x10VS\xe4y`\xdf\xea\\\x99i\xbb\xbc\xe9E\xaa\x99QS\xbc\xad\xe5h\xe9g\xbe\xd5;Y\xc4/2\x94G\x99\xe34y3}(O\xc1\x16\xa9\x18.\x88}@Q>\xaa@%\xab\x82$\xf3\x98\x8c\x01\x80\xcdT\xa1\xe1U\xc6\x9eG \xfc\xfe\xf8\xc3/\xfa\xdb\x05\x062\x06\x89\x06 \x10\x06\xebc\xac!\xc6:c6Fl#\xf0R\x00V\xb6\xdat`\xe5\xeaH#z4\x10\x10\xa1\xcf3\x12\x01\x87\xc6\x10\x0f\xaa\x03\xaa\xe1x}\xca\x8b/ \xf0\x16\x91A\x949\x05a\xce\xde\x04\x11\x15\xf5\xae\x11\"M\xbdkY\x81\xd5\xaf\xfd4\x0e\xda\x1d\xb8#\xfc\xf7\xeb\xf0\x97\xd0\xa3|\xe6Tn4\x15\x9d\xc5kM=\x14\xc7\xc3\xacHoH\x02n\x8f]\x16\xb1\xfe>\xe8\xc03\xcb\x9c\xd1f\"5\xf8\xc5\xd1\xd4o_D\xcdcJ\x06~\x18\xc6Sg\xcbb\x8an`LQ\xb3\x0d\xedJ\xc8\xc0\xb19F\xb3)\xf9\xbd\xaf\xa2\xd4\x9fs\x87\xb3\xa7O\x9f\x82x\xd2\xaf\x82/\x17\xd3\xf9\x98\xf9\x8f]\x00\x9c\x0f\xdf@\xa8\x06x\xa3>\xf7@\x97\xb6\xbaD\x9b\x1fQ\xa5\xaf\nV\x0c||\x04\xba\x0d\xc4\x81\x01\xe2\"\xe1\x83`\xb5d\xf4\xb7 JW|\x9aU~\x0c\xa6y\x9a\xc5K \x13\xa5t\xa6\x98\xa0q\xbd\xe0\xa4 \xd9\xd5j.*\x11r5\x1c\xd6\x88YI\x8e\xe5\xf2\xa6(\xae]\xfa,to\xa0/\xd2\xc6k=rw6H\xa2\xb6\xef\xea\xeeN+nH\x8eD=\xb0\xefC0\xcb\x17\xcb%\x9f\x05~f\x95jH\x05\x0d\x1a\x19I\xbf3\xe6}7\xfd \xe1\xa2\xbb=\x7f\xda\xa0\x9baRw\xc3\x07\xb3x\n\x922{\xb9Uitt\xca\xb3\xd7\nI^\x81R\x83\xcc\xb0\xba\xb0\x12M\xad\xc0\x92D\xc0\xe4]\xb0\xe4q\x9e\xc9\xe8\x88\xdc+\xfd\x1c\xac\x92x\xca\xd3t\xd2\x835\xfc\xf3\x0fEpIy!x \x0b\xa0\xb1m\x1b\x1dQ\x8f\xa6\x07j\xa4\xdc\xfa\xb3p\x88\x0b_\xea\xb1 \xb8\xd8HG\x9d\xa6O\x80\x12u\xb0\x8a\xd3\xecK\xe9@M\x9c6\xf9 X\x8a%\xf9v\x9a\x04\xab\xccj\xef\xa3\x1eE\xc47\xb6\x9a\xa5\x88LJ\x12\x05\xb3nu\xd1\xa6?\x05\xf3W\x94o\xdb\xf4\xeaOF\xeb\x10\xf4\x07\xf7\x86\x12\x02N\xaf\xe7\xb1\xde'=y\xaa(?\x1c\xd5o\xd9UZ\xa1g\xc2qA\"%\x9b~\xbe\xf0\xa3\x88\x838\xdb\x01{J~\xce\xaaY\xee@\xc0}H\x0f\xb8\x11\xb9\x16\x0e\x07\nn\x93y\xae\x81\xa7\x01tb\xbb\x02\x14\x0b\x16\x82l\x0c\x16b/\x8e\x12\xee\xcf.\xd3\xcc\xcf\xf8t\xe1G\xa7\x1c|\xdd\xcc\x07\xd3\x84\xfb\x19\x97\xa2w\xa7\x97\x02R\xf5\x04`\xc0\x8eq^\x90\x00Yd\x9d\xae*\xd4\xb3~\xc5\x8e`\xd9\xc0\xec\xf1:\xe8%E\xbdt+\xc8d\xc5\xf2d\xfc|\x11\x8430s\xced\x9e\x1d\x8fD-\x94m\xabZv\xc0w\x87SI\xed\x9c\x85\xc7\xb6\x8c\x1bF\xea\x11\xa4\x03\xc43=}\xcf\xf8\xa1\xd8\xed\xe0\x16P\xe2G\xb3x\xe9\xc8@\xb5\xc8m\x14=h4a\xcc\x06i\x9c'S.ob\x08\x8c\xd1\x83sI\x1b\xa5\x812\xe9\x93|\x172%A4\xe3\x17\xaf\xe6\x8e\x0f\x02\xbd\x85\xd3\x97\xe9\xa0pq\x14\xd3b3q\x14\xeb\xd8\x9f\xcd@\xd8\xaad\x14\xb0*\xeb\x89NO.\xba\x1el\x7f\x1bC\x10\xfc\x0e\xfc,\xf3\xa7\x0b(\xe9\xf4\x8a\x85)\x052Ig\x00T\x89\x8c/XX\xa43\x96\xf9\xf5p\x93*&\xa1\xf3\\kR\xb5\x8d\x9a\x19/\x97DGy7q\x80\xd1\xe6MF\x7f\x156\xbd48.\x14\\\xea\x10\xb1 \x11\x0f#\xe4>#\xf6DwM\xd0\xef\xbb\xca\x97@Qo\x0c\xaaA\x8b\xdd>\xd3\xec\xbe\x9aW\xa1\xd8\x8fO\xfc\xe9\xfbF_\xe3\xe2\xf1\x93\xd3\x942\xb8S\x0fq\xacU\x8f\xdc\x86\xc2q:A\x01w\xe2\xa4\xae\xc7\xd2~\xdf\x86p+<\xa2\xe9sG\x1c\xa4\x1b\x8c\x08f\x0d\x16%\x18\x947\xac\xdfhd-M6\x18\xa9\x80t\xd4\xa5\x88\x04\x0d\x94\x86\xe88L#\xca!\x19\xebV=p\x85\xad\x8d\xc8N ?|\xf5'K.;p\x02\x1b\x1dW\x8f\xfe\xa8\x81\xa0RW\xa0Y;\x83\xa3\x9e\x04\xea \xack\xee\xbdz\x94\x91u\xd2\"\xbb\xa0\x1e0\xbc\xde\xb2\x1b\xdfRO\xa3\x01%\xf5\xb4\x98i\xd7\x1f\xe8\xd3p\xdd>%\xe3-\xeajw\xd3s\x9d~m_\xa7_\x1eK\xc6\xc3\xef\xa3w;\xd7\xef\x9d\xf8\xbb\xfd\x91\xfb\xd8j\xebM=\xa0\xb0\x0fA\xe4@\xd8{P\x0f\xcdQWJ\xd8\x98\xa3\xa2\x00\x9b\x07\x91\x1f\x86]\xe8\xc3\x0c\xd8\xb9i\x87\xf3\x825\xb7\xab\xe1oM\xb6\xe7\xf4\x8a\x98\x05:/\x94\xf2p^^aW\xf7W\xb3E\x90\xc2\x0d\xd7\x11\x14\xd0\x94\xc0\xba\x11\xc0\x0e\xec\xc5v[\x80\xee\xd7\xa2\x8a\xed\xc3B6\xed\xc4\x17\xadV\x06a<\xf5\xc3\xb7Y\x9c\xf8\xa7\xbc9\xe6\xda\xd4\x07\x02\xd8\xe6\x15\xa45\xda\x19\xd3U\xca\x95\xef7\xc6^\x97>#\xc0\x9c\xac\x97%9\xc7\xc3?\x9e\xfb\x9d\xc8\x1dd\xf1\x17\xf19O\x9e\xfb\x84\x06Y\xff\xd5\xf9^\x1fS\x97a\x9c^\x14\x7f\xc6W \x9f\x82\xe9ZO\xbb\x97g\xf6Wi\x9b(\xd7\xaa\xf5\x9b\x82M\x1b\xfe\x06ycS/\x119=\xd0\x10\xd5\xbaV7>\xb29\xf7f`\x90\xd0\xcb\x12\x7f\xca+M\xb0\x036\x8d\xa34\x0e\xf9\x002\x1d\xf0w\xa4\x92\xce\xfd$B7\xe0\xb0\xf7w\\SL\x17\x17 \xa9\xc9@%UZb\xb5\xadC\xebR\xea\xb4\x86hA\\\xc5\xf9N\x99\\j\x0cw\x86\x96+\xe5[\xbbd\x00\x98\xc0\\\x1f\xa8\xdc\x03\xc2\xa0\xe9\xf7\x82\x12\x890v\x98\xe1N\xbb4%!\x02\xe8\x8b'\x1e\x04\xd1\x82'A&\x1d\xc1\x0c\xc1\xd2C\xa59\x01\x9a\x99\x04\x9a`\xfd8\xd3\x8cF\x9a\xa0\xc5\x007\xf0\x94\xdc\xea/\xa4\xc1\xb6&r\x86\x8f\x1et\x9a\x9fj\xad\xdd\xebT\x1a>\xba\xef\x96f1\xd7\xac\xaf\x19\xd0ti\xa1M\xe3\xbc3\xa4\x02\xe8\x8bt\x8bK\x82\xbd\xf6[\xea\xf5\x89\x92\xaa\x08\xbc\xac]\x1e\xe0\x0c^H\xa2\x9b?\x88\xe2d\xe9\x87\xc17<\x81k\xa9\xa0\x96s2\xed\x8678.+\x95\x0d\xa5G\x0c\x7f\xe0\xa7\x97\xd1\xd4E\xcf\x04\xfe`\x95\x04\xcb \x0b\xce\xc4\xd6\xa7\x8c`\xd8A\xf5\x13p\xb1z\x0b\x0e\xeb\x19\\\xb3\xc0\xaaF\x89m\x17<\x7f\x8f\xea\xb5\xb5vE\xb1\x1d\x17bQU\x13\xf70Q\xbc>\x84f\x8a\xae\x82\xe5\x8f\xb3\xb7\xf5\xc8\x95Q\x8d\x96\x8146r\xf6\x86\xa0\x9f\x19\xcc\x82t\x15\x97\x89\xbb\x90\xb8\xf4/\x9e\x9d\x16i{*M&lc\xcd\x84\xcf\xc1@\x85'*}[\xac8\x81(\xfe\x9a\xab\xa6\x0d\x91v\xf7(D\x02\xa1\x8f\x7f\x92\x9a\xa8\x049\xf30\xd6\x1dbwC'\xa5>J_\xfa/\xd1_\x05\xba\xe8\x00,\x11Get\xa7\nN?\xee\xdcaA\xfay\x10\x05\xe0\xa2\x1a\x1c\x0dq\xf0\xf2\xe1\xc4\xd2\xdfP\x9bQG'0\xd4\x88\xc3\xde\xb6\x0b\x82[\x18c\x1a\x9cF0\xf5\xbb{;\x9d\x88F\xfb'\xac\xfb\xb3Re\x15\x1f&\x17\x18m6\x05h/\x0d\xe0\x9c!z\xa5\xdbT\xbf7\xb7\xb7\xd6u\xe7\xb1\xc60\xec\xb6\x99\xdadz\xe5\x8c\x03Q\xd0=\xb2pi:\x81>pn\xa3\x9f%b?\xa0\xbd\xd2\x0e\xef\xd7\xfd\xdaH\x02Y\xf7\x98$\x03V\xee\xd1\x01+\x05\x9dm\x86\x0e\xe3\xb4\xb3\x81\x08oCUgX\xec\xe5\xe8\x10\x03n^I\x97\n\x15\x9a\xebjtG\xd1\x1b\xc2\"\xfc\xd5J|\x1d\xf3 l\xe8\xca\x9f\xf4\xb4\xe6\xce\xa8\xe5\xcc\x9bbEt\xd8z\xa0\xda =6\xf7X4\xe6\x13\x88\xe9\x81Nx\xc8K\xe5\xb6\xe3\xea\xad\xe0\xf2\xae%\x16\xe0\xce\x90\xf6K9\xbco\x89 \xfcp\xcf\x1d,y\xb6\x88g)Ejw\x0d\xff\xc0\xa9\xe4\xec\xeaG\xa8\x90^\x0cp,\xac\x96\x9cv]6\xf3re\xa0\xa6\xb1\x9a\xad\xd9(\xa0(G\x12\xcb\x80\xd7\x86\x82!1\xe3\x9a\xdf\x80\x05\xa4\xf2e\x90uXX\xc4Q\n\xec\xbb=vVD*\xf5\xd8\x89\xc7\x8e!\xc8\xec\xa1\xc7.0\x9a\x96\xc7\xde{\xec\x99\xc7^y\x10tk\x0e\xe7/\x9a\xe2c\x00\x11y\xa1\x14i\xb9\xdc\xbd\x0b\xf14\xee\xd6\\#\xe8\x1aW-\x10\xff\x02\x9cu\xea\xc9\xae\x07Qq.\x06\xa7<\xf3 \xf2\xcd\xc5 \x15\xaf\x97\xf0\x8a\x9a\x0d\x0f\x02\xd9\\\xa0\x06\xc5\xf5J\xc1\xcc \xe1i\x1c\x9e\xf1$\x85\xe6_\xc9\xad\xa5H\x15\x8b\xfa\x19SA\xf3\xed\"-Vn\xc0\xd2\xb4\xaa\xa0 &\xf9\x10\x1b\xf2+\xf8\x1e\xf8\xbeq\x02\xb7\xec\xd2>n\xd2K\x91\x08\x8aIb\x9b|-f\xab8\x89C\xe0]_Z&\x9f\xf2\xac\x07\xab6@s<\xd7c\xaf\xc9\xe8%\xa2\x0f\xe8tO\xf0LAi\x808-\xe8 \x9e\xe2\x83\xf1\xd6DP\x80\xb0\x9e\xae\xfa\xbc\x8f\x9e\xa1\xecB!bd\x8a\xb7H\x9c\xde\xf3 \x99\xe6\xa1\x9f\xb0 :\x8b\xa54\xc7c\xbd\xe7/\xde<\xff\xea\x8bgo\x8e_\xbc\xfc\xd1\xab\xe7\xcf\xde\xbdx\xf5\xd2\xa6x\x17\xad\x9e:\x01!\x8bA\xa5\x92\xe8C\x03\x18o\xa9'r6^\xa3J2\xf6\xd8s}^R5/R\x89/\xf8\x90*\xfd\xf4\xd8\x99[x\x15\x14\xeb\xa3Q\xe0\x06\xc7gzV-C\xc5\xbb\x02\x8dh\xa3\xae\x13\x14\xa8[\xe2\x90\xc5\xaa\x10\xf4m:\xb2\x97xT\xc7\x97Rf\xc6F5$s=\x1b\x9a\x17\x9d\xbe\xe5IB\x93\x000\x19&\xa6\xa9\xb8C\x8eV\xad\xa6'l\xdd\x93\xfa\xed\x92\x02\xfd\x8e'lyRT\x0c\xab\xd0\n\xa6\xb8qZ\xe3*5\xa0\xfc\xda\xc12\xbd)5h\xe8\xdc-O\xdf8\x16k,\"'/V\xf3\x16U\x82\xf21\\c>\xa9\xfc\x8f\x93\xe04\x88\xfc\x90T\xf8+n}\xc4\x9e\x99\x99\x92\xd5\x7f \xde\x83`\xb7W?\xcd\xb2\xa7<\xebr\x15T\x0e\xf2U\xc1\xe8\xbdr\xb8\x0b\xbb\xdc\x01[\xa2\xb3\x07\x89\x14\\L\x86I\xf5\xcc//\xfct\x8d/[\xe6\x91r\x12o~\n\xf7\xdb._\xb3\x900\x86\xfd\xa5{\xc00\xaa\xfa\x9d;\xec\x12-\xa5\xd8>{\x0d\xbc\xaa\xb4`\xc0\x1f\xefu\xb4\xc0\x9c\x1e\x86\xa8\xa3\x1cE\x99\x83\x006a\xd4\xae\xf2P\xa2\x15\"N(\x83\x80\xc8w\xee\xb0\x13q\xe6\xd3X#\xaf\xe8\x18|\xa5\xd7\x15\xb0q4j?\xb52M\xa0#\x16\x7f!\x10y\x0bz\x0f6\x02\x1b\xac2\xf9y\x91,\xa1TZRA\xfcW\xf0\xe41\xab\x08\xf5i\xdf\x15f\x7f\xc5\x18Glaf\x14\x87\xe1\x0e\x00\xe6\xc8\xd9\xca\xe5i~\xb6\xbe\xbc\x8fMV\xcd~\x95\x05-\x8b\x1a\x883.A8\xe5\xe1\xf1\xae\xe4d2\xe0d\"\xe4\xd1\xfc2\xc6]\xbdC\xeb\xec\xe9\x85\xa8[\xb6&7\xbfj\x93\xacmi\x11\xe4\xa3\xdcTp\x17\xf1\xcb\x00}\xf5\xfe\x9e\x83\x14\xbd\x95\xf5\xe0\xad\xb0\x93\xdd(\x87.\xf7\xdc\x91\xda\xef4\xb0r9k\x02\xa0%u\x8b\xb0\xb3bE\x9b\x82\x97\xc3\x8f\xd6O\x1f\x82\xd8K\xd8\x93\xdd-\xb1\xa0\xa1\xe3\x1210\xe6\xbe\xd9\xff\x95\xf3\xcc#\xfa\xac\x0b\xbfF,\x00\xd7UV\x12\x1b8\xc7D\xae\xa4]\x81\xe3\xab\xd3\x8e\xf9\x15\xd8\x89\x02\xe7\x9c\xca\x83\xbd\"p\x0e\xcd>\xfbE\xca\xad\x1c\xf1w\x86T \x10q$\xb7h\x99\xea\xe2-\xb1\x97\x83`r0\xf5WY\x9e\xf0\xb7\x99?}\xff.\xf1\xa7\x9a(\xa9\xe2\xab\xa3U#\x15I{D\x94wR\xd1n\xf3\x8aphH\x88\x90\xd2\x9a\x90\x89<\x0b\x07N*\xddm\xe5\xb8\xa9I\x8f\xa4\xca\xa9=hdR\x19\xd50\xc2\x9b\xb8\x81*\x1b\x0d\xa6\xf1L\xe0^\x0eWu \x08D\x84\x8c\xea\x9a\x0e\xa8\xd7\x90\xc7\x93j\x05\xdc\x81\xa5\x90\x02}\x85t\xd7.H\xf7n\x0e\xed\x15e\x1e\xc7#\xd6K\xfcozu\x1ae\x96=\x11\x18\xdf\x9b\x9d\xfb\x1d\xcaf\xc97\x97#\xd6\x13\xffz\x06\x8a\xf3\xc1<\x8eY\x9f\xf1\xc1\x89\x9f\xc0\x7fQ\x0eh\x83\xe8\xca\xec\xdc\x87z\xb7,\xb8\xdd5\xa2B5Hn\xd7\x08\x9c`\xd1\x10\x94\x17q\x02\xc3\xe4\xd6c\xdb5\xbe\x1blu\xb9.\xe9\x04n\xb4b\xa4M\x8a\x1a\xedV<|\x9c@\xfc\xd1qBX\x9b\xb6\x9a\xecD\xe8\xac@\xac\xebV\xf3\x0bd\xf8\x87\x8f\x99\xcf\x9e\xb0\xf41\xeb\xf7}y\x85\xadX\xa0\xfe\xc4\xc3\xf8\xd4\xca=Q\xee\x9a\xea\x13\xcd5KT\xe8EHL\xff\x18\xaa\xc3\x87CT\x1dj\"vT\x1e>\xdc\xfe\xd8\xcaCz\x12\x15\x8f\xa1\xf9\x96\xed\x15Z\xf5\x1ex[\xac\xceC\xe3\xa4\xd26X\xb7-P\xa6\x94#\xda\x00\xda\x96S\xbd\xe3\xb2\xd31x\xc3-\xe6\x06\x8fg\xeb\x1a\x9f\\\xab\xef\x04\xc5\x94\x9f\x18\x91\x97\xa6\xf0\x16\xda\xc8\x98\x9ak\x0e\x1c\x86}\xe7\x0e\x8b\xc7J11\x11\xebr\xdd\x10\xb9\xed\xa8)\xd0\xfc\x01\xe2\xbf\xbc.W\xb9s\x9b\xf9A\xa4V\xc3\xee\x0dV\x83\x82\xb6N\xe6\xd7\\+M{]R\xf6Ulz\x1b\xcae\x88Ju`\xf7R\xbe\xeb\xeby\xf38\xee\xdd\x8e\xaa]\x0d\xd3\x00\xa5\xbc\x0es]l\xa8\x1d\x11+\xcae\xf6\xf46\xf5\xef\xb5\xeb\xa4\x9er\xc8N\xe9\x80\xe6\xb4^t\xd5Y\x953\xeb\xaa\xcaY4\xabr\xce,\xaa\x9c\xda\xe7\x96]5>\xa7\xed\xc1n\xab\x15.I\x8a1\x8d\xa3yp\x9a\x83\xf6\x95\xa6\x1a\xbc\xd0\xce\xd2\xae\xaf\x95\xa7\xa4&\xba\x92\x1b\xdf\x164*i\xe3V\x98\xe2X\xac\x87\xb69\x185\x9c\xea\xb8\xd7;>\xe6\x1c\x0c\x07\x0e4\x07s\x90&\xcer\"\xe9rp\xe6\x87\xb9\xe0h\x16J\"sV\xab\xed\xb1K\xd7\xd3\n\xcab\xd1\x98O\xd8\x01\xe5t]\xe6\x88\x7f\xe8\xb1\x0d\xacO!u\x9f\x8dQ\x9b\x9aM\xca$\xe9\xad\xa3\n\xb1\x1a\x8d\x8f\xa6|\x04\x94\xbe\x1b\x94<\xdd'\x98z*\x80\x8a\x95[>c\xb9F]\xee(J5u\x8c5\xe0*\x992\xdah\xb7\x8a\x05\x07;\x02\xba\xaf\xa2i\xe1\xd4\xe7\xf8\xb8#(\xe6\xf3\x11\xf0\xbe]!!\x89\x04-\xe7F`l\xd0hS\xf1\xa7@\xd7\x97q\x80J\xc4r\xc7|\xd2\xa1\x9e\x896\xe8`T\xd46!\xc6\x14\xeb\x1d\xe0\xed71y\xc98\x98\x08\x1e6pY\\\xfa\xe5\x8d)\xb8b\xae`\x94\xb7\x95s*%\xd2\x97(\x98\x8c\x03i%7\x14\x88\x99\x0c\xd2\x15\xdc|\x0c<6\xa4\xee\xee\x81*-)?\x9b4~V\x8ac\xa3&\xeb\xf8\xb6iG \xa2\xdfzG\xf1\xac\xf0j\xd18\xef\x16:!\xb6\xe3\xb8:\xa1\xf6\x19\xa1\xe7\xb1\xd9\x19<\xccbD(\xc9d\xac6-\xde\n\xdew\xcc\xf0\xc8\x92\xb1',\x12\xd3\x9d\xb9,\x18g\"\xb3z\xd91k\xb8\x08\x07\x1f\x8d\xc1\x81\x05^h\x95\xedn=\x06\xc2\x1b\x8b\xca\xd8\xb4\\\xc5I\xa9\xc9!\x1b\x95\xbaTu\xa3\xac>\x96&\x00t\xb9\xb55+\x88\x0b\xe8\xa9\xec\x03c\xedw\x8b\xba\xdc\xc6\xaa~\xaf\xc6\xb0\xdc\xfc\xeb-\xb7\xad\x9a\xbe\xeeU\x84G7\xebK\xa7[U\xbf\x10\xfc\x14\xcf\xaa\x06\x05\x1b\xe6\xfd\x80\xfe\xf5\x81\xf2\xc6,8\x8b\xa9S\x17z\xe2^:u\xe2z\xba\xd8X\xa6N\xe0R\x84g\xea\xe8\xe6\xd0hG\xb8t~\xfe\x01\x85q:{\xdc\xec\xf5G\x19\x8bi\xa1*\x17N\x88\xce\x88\x8bSc5T\xa4\xc72e\xb4\xc4\xf6Y\xfe\x03vS\x8eY\x9e\xa3\xea\xb1~\x1b\x04\xab\x04\xdb,\xf88\xd2=q\xf9\xbdf\xe7\x01\x1a\xdd\x1f,\xfdU\xbb#hU\x81\x1d\xb0\xcc\xe1\xe3\x08T\xcf\xe2\x7f\x15%\\\xe9|\xc9\xc9+Zi\xf3\n\xff\x07o\xbdc\x0d\xc8\xbd@\xe0\xd516O O\xc5\xbe\xa1Zq\x05\xd7u\x12D\xb3\xf6P\xb6\xddg\x16\x8f=\x8f(S9\x9c\xa8 \x85\xff\xd7<\xd5\xc5(\xda\xe0\x10\xce\xfdv\xba\xdd\xe9 \xadD\xcb\xc8\x98\xe2H\xe6I\\\x0b\xc8\xd5t\xdcF\xff\xed\xe0]\x00\xe6p\x0c\x82d\x0fe\xc4\x13\xd7c\x9f\xc6q\xc8\xfd\xc8\x01V&+}.C\x01\xd4\x05\x81]\xf4m\x8cY\x13\xe4<\xdav\x07A\xc6\x13?\x8big\x8e\xc6\\\xca%\xfa\xc8fAN\x1a\x90\x1bK7\xa5\xe5\xc9!\xbd\xfe\xa7\xf2\x9bur1\xaf\xe3U\xa7c\xb5yX\x9e\xdd\xc6a\x94\xc8\xd7\x0f\xa3f.\x1c\xe6\x08\x1f\x8c\x1f\xac'\xf9\xeaQ}\xddET\xb2\xa5V\x13\xcaV]\xd2\xdbF]\x128Z*%\xf3)J\xe6C\xe7B\x06\x08\xbf\x90\x0e\x12\x99t\x19\x0eh\x0e\x13'R\x02\xf4\xf8\xec\x16\xbe\xf2\xaa\x8d[\xfc1\xc0 \xe8\xc2zF\x9c3y\x89F\xaeN4\xf7tN\xb5\x10\xc5\x82\xa4 \x16\xc9\xdb\xdb\xf2\xc2\x9e8\x9f;\xcb\n\xc71t!b\xd9>\xe3p\x19}i\xe1\x86\xf0T'\xbe\xda\xc2\x85W[\xaft\xaa\xe2f\xe4T\xb05\x91\xcb\x96h\xcc\xc7I\x0bJ\xf5\xc8\x91.\xc9\x02\xe6\xa5R3e !\x03\x7f`/\x040\x9f\x1bzdf*'\x9cs\xe8n2\xb1\xc2\x02\xe0p\x02f\xae\xe7\xf2J*\x1a\xd2\x08\x82\xa9\xe0#\x0e\xc8\xe2l~\x02\xce\xc5\x9c\x128\x1b\xc7\x83Y\x1c\xf1\xc7.(\xe0/\xd8\x81b\xe2\xd0\x1a\xf8\x18%&\xd2\x90\xbd\xf8%\xf6ogVHS\x0e=\xb6p\x96\xb02fp\xddJ\x82\xf9\xb0\xfe\xd1~\xdf\x125K\xcc\x1c\x11\"\xa84\xf7\x9c6`\x03@\xe0\xb4\x123\xdb\x1c=\x8c\xd7\x03\xb9]\x0d'\x0e%B\xc8Py\"GZ%\xed\xb3\xc3\xc1t\xe1'\xcf\xe3\x19\x7f\x969[\xae\xcb\x9e\xee\xb3\x07\x0f\xb6\x1f\xed\x82\xc5\x12{\xb2\xcf\x1e\xec\xee\x0c\x1fA\xf9Cp:9\xee\xf7\xa3\x89\xb4g0\xc0y(\xedG\x0e\xad <+Ax&A\xd8\xef\x9f\xd9\x81v\xd6\x82\x8e\x1a:\x89=\xf0\xd4D\xb8\x02z\xbe\xa3\xad\x9d\x1a\x00\x9dS\x97^P\xe40%4\x15o\xd7\x1d_H~\x00\xbb2\xab\xc8\xee<\xb6,/\x89B\x8c\x90\xa2\xe6\x0d\xf6\xf5\x9a\x96\xe2\xd1\x8e\xd4R\\.O\xe2\x10U\x12\x8f\xee\xdf\x82J\xa2v\xc2)\xf48\xb5-\x1e>[\x91\xc3\xb6\xe9vH\xbe\xcb\xdcb\xc8{(8J\xcd\xf9Bm\xf7`\xfb\xb2\x88\xd3\xcbx\x9a\xc9\xee\xd5\x8d:i\xf5\xa22o\xac\x9b>\xddD\x89\xa8\x97\xd9H\xc6\x95Q\x14,\xd9\x04\x953F~\x16\xbfV\xdaM(B\x95\xc0N\xbf\xf3O'\xb7\xc74\xea\xba\x0e\x8b\x8aC!_\xfdZL\xd8\xac\x90\x98v\xd54\xcc\xbbi.V\x84B\xc2d\xfa\xc2\xfa\xed\x90\x1az\xed\x1b\xe8U;\x97\x14X\xb5\x06\x1a%\x8e+=\xda6i\xa5\xeb\xeaf&\xe7`\x81\x9b\x80\xb3(\xbb\xef50}57\xbb \x92\xc0\xc5\x98c\xac?\x8c\xa1q-wF\xe3\xca)\xb4z\x98\x8f\xbb\\\x8f5\x89[\xbd\xb3\xfc\xd6:\xeb\xc3\xcdrP\x04\x01\xf4CG\xf3j!\xc5h\xda^\x0b\x01\x1a{\xa5\x15\xa1\xe0B\xa6ND[ \xce8\xfa\xa2\x0c\xe2\xe8\xf8x\xc4r\xf0/\x9aQ\xe6|\xc7\x91\xbf\xe4e\x993\xa7n\x02\xfd\xa1*\x1f\x99:q\xfd\x93\xf38\x11\xd5\x9b\xb1L\x0ez\x86\x8a0\xf87\xc2\x7f\xfb,v\n\x8anHE*\xbf\xdf\xf3\xcb\xcf\xbb|\xccb:\x0e\x8b/cA\xc4R`jgv!\xfel\x9cM\xd0\xd6\xb9\xd4\xdc4vm\xe1\xa7/$\x96(X&\xa8\x06\xd1r\xd0\xa2\xaf\xa7\xa5\x18\x01\xd3\x83\xf49\xc8\xaa\xde\xaeT\xc8\x97Zsf\x01\xd9\xaa\x99a6.\xf7\xb1z\x932Y5$\x7f\x1a\xd5\x97\x82\x1c\xd6\xeaB\x9a\xac\x08\xefF-\x19\x19\xa9VO\xc5N\xc2\x9a\xf2\x97Q7\xe5~b|\x12\x13eM\xfcaV\\\xf1i\xc0\xd3zMLUU\xf1\x17Q7\x0c2\xa3f\x18dE\xbd0\xc8\x8cZ\x1a\x0fP\xab\xab\xe5\xc8\x16\xb4\x14\xa2\x9d\x82S0\xda)r\x8av\x8a\x14\xa3\x9dW\xddS\xdfoT!\xeb\xc2_E\x95j+\xae\xd6\xb1\xd8\xde1\xfd\xcb]\xbe\xaa\xc8\xb7\x031\xdcQ\xf01\xa8\x91Q\xd6g=\xd70 \xad\xfc\x863\xc5\xaby\xd7\xaf\xa6\xb5\x98Z\xcc\x1c\xe5\xbc:\xcaXG&\xaf\x0d\xac\xea\xfa\x89\xfc\x0e-\x1e\x95\x8cw-B<8\xc8(0\xce\xd1;E\xf7\xaa@D\xe8\xd5\xb4\xe7)\x98\xf6\xb0B\xd0^!\xae8\xe3\xafp\xcct\x13UHPM\x94l\xf9M\x1cj\xe9\x02\xda\xdd\xb5=\x19\xa1\xdf3\x108P\x9c\x03\xba\xf6/\xf8\x06\xfa\x1c$'\xeb\xd6\x8dG[E\xfc\x1b\x1bx\xd9\x87D\x93\xab+\x91\xaf\xc7*\xc0\xb2o\x8b\xb2\xe0\xc6\xb4\x1e\xca\xe0\xce\x1dV-2\xae\x16\xaa\xce\xfcm\x0cYM\xa0a\x12\xa5>U]\xc6`K\x81\x12\x88.\xcb\xb8\x10\xc0V\x17\xb2\xe3\xae\x8d*Uk9\xee\x02x\xe2_,\x04\"gg\xb8}\xed\xa1\xd8\xdd\x06\xfdR\x0d\xb2\x12\xf2|\xbd\x01\xa6\x86CqX\x18\x88\xe6\xa6)\x88\xf2\xcf\xa1\x1d)\xb0o\xa2R\x0d&\xee\xedY\xcc\x9e\xe9^`\xd6\x1d*\xc1N7O\xef\x01\xb1XR\x9e\x91\xd7g\xe1\xaeQ-\xea\x9d8\x12\xd1\x91\xa4\xa0t\xe2\xf0\xc1)'.\xd3i\x01R\x07)\x071a\x06/\xfbP'\xe5\x10\x9d\\\xdenC\x15\xa0\xfa\x81%\xf0\x07\xdc9\x93\x01\x8f\xb0\x90\n~$\xca\xe0\xad)\x88\xd1\x0d\xfd\x94\x1f\xc8\xd0\xc1Dv;\x14k\x8d\x89)\x04 J\xdej\x1eb\xb5\xa0\xff\xbd\xff\xbeW\xcd\x97\x87\xa2\xfd\xf2\xd20\xc8e'\xeec\xb6\xb9\x99@D\x9f\xfe>\xeb\xfdw V\x00q4\x89 \xd9\xf77j\xb5\x19\xea\xf7%Ik\xbfB\xd8\x12\x95\xc3\xcb\xf0\xd6`\x82\xf2{A\x02\xb8\x18h\xac\xc2<\xe1@\xb3q\xbf\x9f48\xf61\xd0\xb5\xcb>Q\x8b'\x7f\xcb\x17\x18\x86\x86\n8\xae\x8b\xf8Z\x00mc\x1f ]i\x06*)3=\x82\xd3\xbc\xdd\xc5\x8beA7\x9f\xe6\x99f\xc2JwG=\x01\xd8\x8bZ\xb3}\xeb\"QOPD\xdf\xf2\x8b\x15\x13\x8c}\xb8\xba Fe\xaf%>-J\xda\x06\xc0\x14>>f1{\xc2|\xb6\xc9\x86\x8f\x9b\n3\xd9\xb0t\xa7\x07\"\"\xb9?\x04\xa0\xed\xe4\xe3x\xe2j\x0eW\xad\xdd+Z\x83.\x0e'\xa0C\xe9\xf7ckaS\x05\xa9\x1e\xf9\xad\x96>\xb1\x03\x15\x8eN~N\x81\x8fl\x97\xfe\x9a6*#\x9f\xb8M\x9eV\xd0\xc8jo)\xd0(@ao\x03\x1a\xe5\xcdh\x04\xd2\xc4\x8eh\x94\xba,\xc7\x10\x0e\xfd\xbe%\xf0PK`\x03@\x1ah\xe3\xeaJ\xbe\xec\xb3q\xe3DS+\xb3\x9ao\xcd\x9e\xc8\xab{\xe2;\xf2V\x9c\xc4\xd4M\xe9\xfc\xc3 \xcaI\xcfa\xd2c\x81\xf6h(\x1b@\xd5-i\xe4\x0e\x19\xa2\xa2\xc7\xf2\xf1P&~\xc4\xae\x17}\x1fN\xc6\x01\xe0\xb8\xff\xf8F\xfdv=\xd5\x18N\xe05\xf0WJ8\xc9p\x8b\xe6P\xd7\xf3\x8e!\xdd\xc74`\xb2\xdf\x8c\xc9\xb9\xb4/o\xc6\xf5\\\xe9\xc1\xad\xa5B\xd8\x0e:\xac\x05\xc9l\xf9\x02\xbb\xec\x8bAT\x81X\x80\xe3\xb4\x0b=\x0d4,\xedNO5\xee\xdf\x07t\xc8\xc7\x81FO\x9bIi\x88\x88\xe2\xa3\xa7&\xec\xebp2\x8e\x01\xe9\x82k\x10\xd6[\xe9Yq\x15\xb7\xe8\x8c\xa8\xaf\x0c\xf7c\x0f\x10Z\xe4U\x92\x1e\xb3\x0d(&\x15\xe0w\xee\xb0P\x117\x176\xdcp\xb0\x8aW\x8e\xeb\xe1\xa4\xc8_n\x87\x96\xd7X.\xda}\x80.\xeb\xa4\xab\x03\x16\xc9\xa7\xe8|\x89\xd9\xfc\x0f\xe8_7\xe0\xca\xaa\x9a\xff\xbd-y?\x11\xdd\xd2\x0e\xc0\xa9\x9dt\xec|\x93+\x89k1q\xfa\xb7\xd79\xca\x81\xc2\x9b;?\xff\x00\x84\x92;/\xfd\x97x\x0b\x91;;\xf7\xbf\xcf\xb3N\xc1\xf5o\xec\xdf\x8e\x1c\xac\xca:_\x13\xack\xf2\xc6u\"y\x1bl\xb1F.2\x0f,\xe1,fpU\xe6-.\xb9\xb4h\x1cwZuU&\xab\xcd\x7fh\x8642\xc1\x03W\x84\xbf\xfa}\xee~\x9c\xbdP\x93XA\x10)\xd8\xf87`\xa0x\x86\xaf\x12\xab\xa8\xf2\x9b\xa0\n\xb7Ct\x08~\xe5#\xd0\x9b\xdb<\x05\xd2B\x06\x1a\xd5#++j\xe3\xe3\x08x\x10%\x83\x1b\x1e#\xad\xbe\xaf\n\x89@\xc1:\xa1\xa142\x11\xbc\x95\x89h\xdc\xa6\xb3\xca6\xddr \xeb\xc434\xb2\x96-\xfd(\x97\xb7\xfc\x8c\xf5\x10\xd6\xba\xd2\xad\xc7\xa9\x02\x9c\xd2\x00i\x0b\xaf\xdcD\x8fY\xae\x81\xb3\xe0\xc0\xfd\xb2\xa7\xa9\xe4\xc0s\xc5\x81\x8b\xbcT\xe3\xc0surH;\x9c\x1c\x9aN\x0d\x96\x13\x03\x9c\x16R\xf8\xe8p\x02N>\xfa\xfd\xbc\x0b\xdd\xbc\xce(\\O}\x06\xce\x11\x99\xc7\x02\xb0/\x10hHxN\xee@\x0b;a8\x1es\x91\xcb\xc7\xc1\n\xb2\x14\x82\x18 \x93\xc7\xbbk\xe3<\x9e\xa1B8C\xb5\xb3\xa6)B$W\xc1\xbf\xe5)\x0d\x91\xdf_\x03\xf9eo6\x1a{\xd3rd\xc8\xf4\xcf\xe7&#\x9b\x13,r^e\x91\xd3*\x8b\x9c\x16,r^\xfe\"Xd\xb3ekO%G,f\xaa#xn\xb0e\xd9 9\xbb\xe6\xf2\xf2t\"nv\xf5\x07\xf4\xaf[\xda\x03m\xbe\xc1\xe9\xcb3;C\xfa\x82\x9b\xe9K\\\x1aY\x1a\x17_R\xdb\xcd\xb7j\xb1\xf5\\\x84[6m\x88\x16!\xe3\x18\xb4\xdcx\x97B\xd3\xb9\xc7V\x1e\xd8WN\xa5\x81\xa21\x1f\x8b\xa6\xcc3\xd0n(\xc7sf\xfe\x12\xf2\x95\x13\xc6*F\x97\xf5\xc0$\xbc\x99\x97S\x9cF\xe9_\x98\xc4\xad\x04|C\xa9\xa8\x0ep\xaf\xd4*\xa9\xa7\x9d\xad0\xe5\xb1/A3\xbb\xb4`\x9f\xb7<\xb69\x14[\xc3\x99\xbc}2/\x9c\"\xac\xc4\x9b\xa9s\xead\xb1\x1c8\x1a\x00\xd9Y\x83\xe1\xf2\x87\x1a\xf8\xe2H\xb9\xe9m\x87]\xe3\xf5v\xf2\x02%+\xcc\xdd4\x17\x05$\xcct\xc3\xbd}6\x9e\x81\xcb\x8aH\x19\xf1!u\x8f\\\xd4\xc1\x01h \xeeM= nH`\x91\x89tb%}L@\xa8|e\x93\xdfbD\xa3\x1e\xe0?\xect\x94\xf2\x15\xbb\x901\x0d`\xbf^\xa0\xf7\x8d\xd2%2\xac-\xf4\x07\x1b\xe0~%\xbd\x19'\x10M!\x8e2~\x91A,\xa6\xe44u\x0b\xfb\xcd\x04\xe3G\xc4\x88)A\x89BbNlq\xa2[I#\x86\xfb\x96k\xab\xcd\x0d\xc7\x19^\x8c\x94F\xe1\xd6E\x11\x89\xa1\xf3jd-\xe9\xffC5\xcf\xb8\x1da\x14\xff\x8c,\x05\x1f\x043\xbb\xe4O\xfa\xc2d\x8d\xf1\xfc\x01\x03q\xbb\x13\xadaOf\xe3\xb4t\xdb\x8b?\xe2R'ct>\x03W\x9a\xa9t\x80\xc8\x0e\x98\xd2\xec:\xe0P\xdcY\xa0\xe0\xdc\xde \x86\xf6lbnG\xb8\xe2\x1b\x8bbh\xe7\x06Q_\x89Ri\x89R\xa9G\xaf\xaeXF6\x88\x8b;\xc9nCI\x14\xc3\xd5/\xc7C\xf5n\xd7\x90\xf5Gk\x8c\xb7\xdc\xb4gr\\\xe8)\xdc\xc2\xb5\xa1\x087wBy\x9b\xd9\xf4\xfeB\x1d\xb6q+\xa6\xa8\x00\x97\xbc\xb4\x94\xb3\xca\xae.U\xb3\x1c\xe2\x03NOp\xc9E\xb8\x00}\xcd\x05\xf9\xb2\xc5\xfd\xcc\x07OR\xd9\xb4\x03\x95\x85\x95#I\xe1\x1adr0=\xa9Q\xca\xc1\xf4\xc4-\x0d\xa0\xc5\xcf\x02\xd7\xf1G4\x08\xc4\x96)\x9d\xef\x001e\xa3\x12\xa9\x89\xeb\xe38\x8a\xc2\x9bu\xfbvA\xb0\xeb\x14\xb1\x9c\x01\xb1\xbc\xba\x02BY\xec\x9c\x0b\xdd\xabv\x95\x84b\xa2FEU$\x19 \x98 n\xb1\xf5^\xb9\xbcn\xa7r\xa2\x0bD\xff5>\xa6\xe8\x0f4\xaa\xba\x13\x0b\x8cl_\x1d\x92\xce\xc8\x9e\xf3\xa2\xe7&\xea\x1ac)~\xde\n3k2\xad\xc8\xcc\xee\x191\x18\x03\x99^\xbf\xc4\xed\xcb\xf4\xba7]\x15K\x8c\x0epc2\xb9\x1dn\x0c\xc5N/[p\xf0\xd8/\xfe\x8fd$d\xb8X\x1fG\\\xfd/\xd2\xdd:[\xabB\x19val\xb5\x0b7\xc6\xac\xc4M\x99s\xea\xa6\x11S\xa62[\xca\xec_]\x0e\xac\x96)\x14T\x1c\xfc\xa3\n\xf2\xb3\x01\x91\x96\xe8k!w{\xac\x0f\xde\x1eX\x9f\xf5\xee*3\xcf3?\x0cfL\x0dv\x19\xcf\xb8q\xf1\x8d\"I \xee\xeb\xb65\x11Z\x02\xf4\xc2\xb0r\xc7/ES1:X\xf5\xa5\xc9\x14\xb1Q%\xf4\xe14\xc2\x8aC\x8f\xcde\x13f\x19\xd1\x95i\xabS&\xbd4`\xee\x98\xb2\xb7Q\x8f\x18BH\x04\x9c\xfb\x12yj\xce\xb8\xf8=b\x9f\xf1\x8cO3>cy\x14'3\x9e\xf0\x19\x13\x88x%\xb0\x8e\xdd)\"sC\xf8\x9e\\t\xcec\xe7\x8b`\xba`A\xc4\x002K\xff=O\x19F\x1fc3hMpC\xf1\x9c\xa5\xf9t\xca\xd3\xf4\xde\xdc\x0f\xc2<\xe1,X\xae\xe24\x0dNB\xce\x9c\xf3\x05\x8fD\x13wu\xec\xbe\x0b\x13\xeb\x1eE\xcf\xe3(\x0df\x80N\x04m3*?\x1c7\x1f\x1b\xc6 \x15\xbd\xc8\x02\x89\xb5N\x0e\x84'T\x9dc\xac\xf0\x96:\xbbh9S$k\x9d)H\x13\x97\x8fz\x8a\xa8\x8b\xa6\xa5\x90\xe0#\xe9\x89\x9b\x14\xb7JOY\x06\x90k\x06[\x86\xe7\xe3\xfa\xc5\xfc\xea\xe5\xf3\x9b\x03\x88p}\xa5NYm\x91\x96\xad\x86*\xe8\xf9\xfdV\xe7Q\x9c\xca\xd6\xbf\xbd\xd1\xe8\xa2\x1f\xaf\xe28\xe5\x15\x19p\xe8\xa6]\xfc\xd3\xa2\x895H\xad\xcd\x89\xa3\x0eC\xaf\xfd4\xe5\xb3B\x10\xa3\x05\x84\xc6K4\xc1\x9c\xcf\xea\xf1\x8cn\x17~{\x86JG\xcc\xf3\xbd\xf1Qt\x94\x1c\xe5\xdb[\xdb\x0f\xe1\xef\xa3\xc9\xbd\xd3u\xc1\xac\xd0_\xcc:\x89\xfb\x85\xc2\xe2)\x1bnm1\xe5\x80.\x93\x0eX\xb7<\xf6\xe8\x11\x1c\x13\xff\xdb\xef\xfc^O\xde\xff\xcf\xd4=iAq\x9b\x97\x8a\xfc\xcao\xbc}\xf5r\xa0\xc0y\xe9pW6?\x04\xc5Fm\x19\xdd.p\xff_\x83\x9cJ\xcf1~\x19G\x9b\xd3\x98'S<\xc6e\xb1DD\x17o\xf2N>\xea\x85\x8d\xdb\x88\x11o\xd3&\x96\xdf\x0b\x06\xb3 ]\xc5\xa6L\x85p\xa9)\xfaV\xb3\x81\x08 6\xa5\xa2\x9dg\xa7]W\xe0\xcc\x03\xa7B\x1e\xab\xf93\x05\x89#\xf8\xe4AY\x0b\xdbg+\xc5\x96.@\x89P,\xd0\xd4\xb2@\xd3\xe2\xc7\x01\xeb\xe1za#\x06\xbea\ny#\xeb\x8b\xcf\x17\x1d%\xf1u\x86\x0e\xd6R\x9e\xbd\x0b\x96<\xce\xb3\xf6sO!\x00\x8aH\xe1\n\xb7\xe9\xbb\xc4\xa7\x06y\x94\xf0\xb9\x18@\xf9\xcb\x81\x88\xa7\xe0UNt\xe6\xce\x1d\xd6\x8b\xf8E\xf6.\x98\xbe\xef\x81u\x90J\x86\x05\xa4\xba)\x12E\xc5\xf5\xfb/\x8f,\xcb\xbasa\xd9\xff3[\xff\x97\x95\xfe/\xb5\xfe\xb7hpj\xf3@.\xfb\xca\xd8f\x18\xef\xbf\xd0\x98\x8a\xb3\x15B\xc8\x80\x0c\xa7 \xa3\xd7^\x92A\x15\x05.\xf1\xcf\xb9\xd8XE\xb3g\x18\x1ct\x7f\x7f_\xcf\xb9\xba\x92Q\xdb\xcb4\xb1m\x0fvvv\xd8\x88M\x9d\xb9\x83\xa6\xe8z>\x1aGmI\xcc^\xb2}\xf6\xf3\x0f\xd2\xaf\xd6\x90m\xb23\x97}\x82\xd2M%\xaa\xa8\x03\x07t\xde9\x05\"\x18\xec\xd5\x15\x83\x01\xb2}\x0dK<\x16\xb4O\xbbE\xda!\x1e\x0d\xaa\xfb\x1aT\x1d\x0d\x84\x9e\xae\xb0\xabl\xa1h\xbb\xe6\xc4\xae\x8b\nA\x08\xe8W\xb1\xb3\x91\xc6\x03\xd2b\xae\xb2\x8c}'@Hu\x12O\x84\x1e\x0b5 \x05\xfc\xa4$\x9c\xa6\xdf\xa7\xea\x1eT\x839\xbd\x0d\xcd\xdaP\x96\xd5\xd1\x96\xdc\x8b\xd0\\I \x01bp\xec,\xbb4\\Ctn`\xb9\xe5c\x88q\xc6\xf8\x8b\xdf\xb7\xb2\x05\x1a\xbe\x98\xd5\x11\xf3\xd1\xda\\\xb3\xe0\xca\xa4\x01\x87\xd8\x0e\x9e\xb2\xb8\xc9\xb7\x08\xbf\x98r>K\xd9\xd2\xbf\x08\x96\xf9\x92\x15z\x8b\x0c\xa1\xf2}9\x1b\xd9\x1e\xde\xdf\xbb\xffpg\xf7\xfe\xde\xf5\xdbk\x07\xe76\xad\x17\xdd\xd5\xafx\x04bG\xee\xb8\x1d\xcb8R\xc4^\x9c\x14{q.\xdd\xc0Kk\xf258\xe5\xe6\x8d\xd8G\x13\x9bf\xc4\xd7\xdd\xfb\x02\x8b0X\x04\x99\xeaZ\xbb\xc1\xc0i\xf9)b\x0b\x12\xa3W^\x11\x0cr\x00\x99\xd2\x1d\xc2m K\xcb\xe46(\x9f\x83\xf6xW\xeb\xae\xb1\xb32\x044q\xf3\x01\xc2F\x9a\xc9y)\xff23\xd3\xa6\xcc\x10\xda*R\x1f\xed\x15\xa9\xc3\xedm\xb8\x0f\np\x02\x18 \n\x8e]\xae&\x02\xdcz\xff\xf7\x1f\xfc~\xafq\x1d\x9av\xef\x84\x1d\x85\x8e\xb1 \x82\xc178j{\x15D\x96a>\xabK\xb5\xea\xbe;\xd1\x05\x87\x1f\xdc\xe2\xc2N\xe4\xec\x0co\xe2\xdb\x93\xf4]/\x1a\xee\x1d\x1f\xf3\xf4\xcbx\x96\x87\xbcW\xa7\xda2T\x90\x1eJ\xc1EY\x0f\xc4\xd3k\xb2UQF\x00\x89*\xec\xb1X\xbd\x96\x1b\xd0\x07\x93\xdd\x08\x1cq\xb8}Pw\xf3\x1b\xcb\xac\xfb\xdb\x10\x95\xb3\xc8S\x1d\xc0\x90cd\x1f8\x12\x99r\x9c\xd2\xef+\xb5Ca\x9c\xc0\xba\x9f\xbe\xf5\x88\xe9/\xc7\x04\xa8}\x87&\x8b\xd3x\xb9\x8a#A\x0e)8\xa8\xe7\xd9j5b\x97\xc5\x0cZ\xcb\xf9y\xb6\x88\x93\xe0\x1b_\xf4\xe4u\xbc\xcaW#v\xd2\xbd\x1a\xff4\x8bF\xecx\x8d\n\xafV<\x81\x8fA\xcd\xf3n5\xd3\x11;l/\xf9,\xcf\x16/2\xbe\x1c\xb1\x8b\xf6\xc2\xa2\xd9C4{{\xdb^:\x16\xc5\xb7G\xecY{Q\x7f\x15\xfc&\xbf\x14}\x19\xb1\xe7\xed\xc5O\xfc4\x98b\xe9\xf7\xed\xa5\xe5\x91\xe4U{\xc908\xe3ox\xba\x8a\xa3\x94\x8f\xd8\xeb\xf6\nA4\x8fG\xec\x8f\xb4\x17|\x11\xcd\xe3\xe7\x18\xd8\x9d'#\xc6y{\x95\xdf\xc8\x97\xabw\xf1k_\x8c2\xebP>\x8e\xc2 \xe2?\xf2\xc3`\xe6gq\xf2\xa9?;\xe5#\xf6\xaeCE\x85]\xe9\x88}\xb9F\xf1\x11\xfbi{\xe9\x02u\xdf\xe6\xcb\xa5\x9f\\\x8e\xd8\xcb\xf5+} A1G\xec\xcd\xfaU\x11~\x9f\xb5W\\\x04\xa7\x8b08]d\x82\xe1\x18\xb1\x9f\xb5\xd7H$\xa6\xa4#\xf6y\xf7\xd2#\xf6M\xf7\xc2\x9f\xc6\xb3\xcb\x11\xfb\xb4\xbd\xc2\xcaO\xfc%\xcfx\x92\x8e\xd8\x8f\xd6(\xfe&>\x1f\xb1\xdfh\xaf\xc0/\xf84\xcf\xf8\x88\xfdV{\xd9\x05\xf7g\xd0\x91\xdfl/\x0bF\xb4\xe9\x88\xfdZ{Q\xb8\xc5\x17e\x82y\x1d\xb1\x1f\xb6\x97\x8f\xcfxr\x16\xf0\xf3\x11\xfb\xed\xf6\xc2\xf38\xce\xc4\xc2\x8c:,\xb4\xcf\x830\xe3\x89\xb6\x9a\x93\x0e\x95^\x0b\x88\xe3t\xc6\x1d\x8aO\xf3$\x1c\xb1\xa0C\xc9t\xba\xe0K\x81\x83~\x87\xc2o\xb1\xb0\xd6\xf7\xbcC\xade<\xe3\xe1\xe1\x85\xbf\\\x85|\xc4\xc2\x0e5\xbe\x145~\x9c\xf8\xab\x95\xf8\xc6\xb4k\x8d\xe7q\x18\xfa+\xb1F\xd2\xaeUFl\xde\xb5h:b\xab\x0ee\x0f\xa3|)\x9b\x9eu(\x8e\x8c\x8e\xac\xb0\xe8P\x01\xcc6e\xf9\xb3\x0e\xe5\x0bg\xf7\xb2\xce\xb2S\x1dd\xb8F\xec\xb4C\xe9w\xc9\xe5\x8b\xecU\x9e}\x9ag\x99 \xeb\x97\x1d\xea|\xe9'\xefg\xf1y4b\x17\x1dJ\x7f\xea\xa7\xfc\x0b\xff2\xce\xb3\x11{\xdb\xa1\xfc\x8fx\x92\n\xde*\xf1O\x97>\xae\xb7\x11;\xe9^\xf1m\xe6/W#v\xdc\xa1F\xb1a\x1c^d#\xf6\xc5z\x15\x80|~\xd5^\xe7\xb5\xa2\xb7\xf0\x91__\xa3\xc2\x8bh\x1a\xe63~\xb8\\\x89\xd9\xfcq{\xcd\xa2{\x10i\xe4\xc5\x1a\x154\xaap\xda^\xed3\xceW_\x04\xd1\xfb\x11;\xef\x00e\xc1\xff|%H\xda\x1f\x1d\xc8\xd7\xe6\xb2\x02ap\xeb\xc6\n\xeaw\x03i;;}\x96\xa6\\p\xf8\x87E\x87\xc8\xd2\x9d\xe4\xd8\xb4\x9frV;K<\xef\xa4F\x88:\xb5\xf5\x9eh\x8b\xd4\x1c\x8dg\x05\xbc\xd9\xbc|M\xcbW\xbf|\x0d\xcaW\xeal\x8az@\xf9\x8a\x87\xbb\xb0L\x88<6-\x7f\xad\xca\xd7E\xf9zV\xbe.\xd5k\xe3\x89\xf7\x15\x87\xe0\x03\x8f\xa8#/\xe6m\xef\x1a\x11\x8e\x8a\xbc\x9d\xedz\x9e_\xe4\xdd\xdf3\xa2\xe5\x14y\x0f\xef\x1b\xf1\x80\xca<\xe3\xf8\x1d\x96yF_\xa6E\xde\xa3\x9dz\xde\xbc\xcc3\xfa\xb2*\xf3\x1e\xd6\xf3fe\x9e\x01\x97\x85\xca\xbb\xbfe|\xef\xac\xcc3\xda\\\x16y\xc3\xadz\xde\xa9\xca{\xb4c\x8c\xef\xb2\xcc3\xc6pR\xe6\x19\xdf;.\xf3\x8c1\x9c\x17y\xf7\x8d\xbe\x1c\x96y\xc3z\xdeE\x99g\xcc\xfb\xdb2\xcf\x80\xcb\xf32\xcf\x98\xf7\xf7e\x9e1\xef\xcf\xca<\x03.\xaf\xca\xdaq\x07\xdc\xebv\x11G\xab6\xcd5\xd9\x1amW\xc7\xceQzs\xa8\xc5\xe8=}\x10\xa0\xad\x1a\x04D\x10\xa0\xadj3b\x1a5w\xc9\x807\xbfU5\xb2\xf5x\xfd]ugDN48\x81\x1eD\x837\xf0\x03tX7#\xd7\x12\x8e\xa3\x00X)\x8d\xb3\xdb\x87.>\xaa\xdd\x02\xb2\xaaM\xf1\xc1\xaf\xf3\x14Y\x11\x8f\x84)\xc3\xf6\xd4j\x82\x10\xaf\xb4F\xf5\x98\x06z\xc2\xff\x8c\xf9H\xf5-\\j6\xaf\xbe&\x13\xc9\xd0\x19\x14&\xc5\x1b\xd3\xd1\x0c\xc6\xc2\x82D\xff\xda\xaalar\xad\xaf\xb54\xe7\x05ab\x9b\xe7\xac5\xd6\x1a\xec\xe4Y\xe5\xae\x1d\xb1s\xdd\xc7\x01n\x96\x06\xb8\xa9\x0c\x106]\xb7_$\xa9\x86;\xb8\xbfg0\x14.\xe7\xac\xa9\xcc\xb93D|\xc1\x83\x0c\x83\x9b\xd1\x1b\x98\xa3!G\xe2\xac\xf3\x00x\xcf!\x85\x97\xb0|\x0e\xcb^\xcf\x05\x8c\xea\xbe\xec\xc3\n&p\xed\xac\xa7\xcbY\x1f\x96\x8c\x8c\xb0\xaf\x86\x10+\xe6^\x99\xf4-\x0e\xc6\xb5p\xf7\xc7A<\x87\x0e:f,\x06!\xbdM\x1d\xd7E\x0f\n\xcd\x10\x88\xb3@\x17\xadi4\xc0\xab\xe8>\xb0\x01q\x8b)Q\xa4\x19\x944b\x924}\x9f5W\xc9%\xa6\xe0\xfd7!\x1b\xd5\x8d\xcd\xc9\xc6\xb3\x9d/<\xc10{6;\xc9\xe3\xc1B\xd4\x89\x9c!\xab\xc8\xa6NyT\xeb\x07\x12\xef\xd0\x19\xed\xed!)\x15\x14\xf5\xd9\xa6 \xac[\xe2\xef\x9e\xf8\xfbTKh?p\xf3\xc46]Y\xc0\x95\x87\xcd\xec\xcb0\xbf\xb5\x88i\xbc\xcb\x9a\x83A\xa0'\xd0\x92$VI\xe8BO\xb8\xd7\x82u\xa9\x14\xcf\xf9zU\x87r)\x1a\xa9\x96_\xf3N\xb7\xab\xe5+A\xe7\xab\xe5KQ\xbe\xe3\x0e\x12ZQ\xcb\xde Z\xbf\xe3:U^_\xf4^\x9d\xda\xb9h\xad*Y\xde\x88\xf2*;u\x88\xb1ws+\xb3\xf2\xc3[\x1eI;\x8e<\x9aT\x82q\x9e\xe0#\xb1\xee\xe5G\xaf\x18\x05\x17/!\x01\xf7\x9c\xdb*w_1\x0f\xa9(b\x0f`\x1fw\xc9\xc5`Q~p\xcc\xd8\x97\x8e\xdd\x04T\xef\xcf\x0e\x8a\xdd\xc9\xc9\x00\xa3\x8f]S\xa7\x8aG\xea\x87QC\xa7\x9cZ\x17\xed\xa6\xa6\xa13z\xe6*\xb9\xcbg\xad\xac\xfd\xe4\x87:W}\xb82\x1b\xc3\x1b\xa2\xe1\x08\xc2\xe5\xbcb\xf4]{>\x8a\xb5\xf8H\xff\xe0\x11\xd3\x0e\xafi\xc8M\xdb(w;\xbbr\xd5\x94\xa7\x9a\xa0\xf7\xe6 \xc8\x9f\xab\xe8\xf7\xa1q\xce\xd7\xf5\x8c\xa5P\xcc\xa3\xe3t\xd6\x0e\x8fi\xa9\x8b\xea\x84G\x11\x1f\xb6p\xa2)\x0f\xa7<\x98\xd3\xa6`\x85 M\xf0\xe9\xe0\\\xebM\x0bH\x83\xcfCt\xa7\xd4/\xc0\xb5\x08xH\x07\xe7\x9e\xbe\xc6]\xb3\xc5-\xa8\xd2#O\x18z~\xcd\xcd.\xd1\xd0\x91\x0e\xce\x93RZ\x8c\xbcE\xa37\xb9\xfc\x08c\xd8\x82|F\x18\x817\xba\xc2\x98\xa5\x0b\xe2[nq\xe4'\x11\xf1.ps4W\x0fDu\x86p\xcd\xb5=\xac=\x8fV\xc4oH\xede\xde\xc1\xea'c\xf2\x0c\x1at:\x9b\x02v\xe8\x14\xfb\x07\xda\xb5\xe2\xaf}tj\x15\x0e\xb2\xac>\x97\x83\xc6\xe0\xa0\xb9\xbd7\xa0aJcG\xf0\x1f\x19\xba\xbap\xdfPo@o\xfd\xd4\x11\xeed\x9d\xa1\xcb\xeb\xb0\xdd\xa6\xd8\xe2\x07\xce\xa1\xd3\x15\xfbn\xc3\xbb$~\x08\xde\x9d\x17\xd0.\x0fI\xcd\xd6\xf1\x83\x13rk\xd8<1N\"\x9cA\x13\x87\x9f\xd8\x81\x13\x9b\xa9\x01T\xf7e#Xp\xfc\x1d\"\xe6'&\x11\xe8\xdc.\xd5\x8f\xde\x95\x07\x9f\xd4\xf8\x8d\xc8\xb7\x08\xaf\xec\x89 O\xec\xa08uR\x94D\xad#\xff\xd8n\xe4\xfch\xd2\x0f\x9e{\x15\x0e\xce\x8d\x01=\xc3bR(`\x8b9\x19\x8e_\xfb\xb1\x8b:q\x19\x98\x99o\xac\xe2\xf0\x03\x8f\x84\x8f1\x8c\x98`\x1e\xe6\xe0\xa7 \x0d\x16\xb60\xba\x08\xe7\x0f\xe8&=i\xcb<\x81\"Z7\x9f\x85\xe77c\x08\x9b9\x93\xf3\xf9X\xcd\xf1\xaf\xfb\x18\xb8r\xf9i\xc7\xb1\xa4\xf9E@\xe0|\x14\x01\x9e\xd9\xf7#\xf1\xfd[\xb2\x01Gy\xbe\x8c/?\xf9]v\xc6\xe4\xe8\x1fr\xf4\x1f1\xfc\x0e\xfb\xd01\x8d\xb7\xdd8\xc5\xf8\xec\x13i\xb1~\x0dk\xf7\xd98\x7f\x8deQy\xbb*\xfe\x11\xb8\xd7O\xac\x1b\xf6RD.>\xe9\x83\xdc\x14\xdd>t\xcf/\xbbn\x1f\xe6\xdc\xd5Jx\xcc\\\xfaU\x17;=\xfaP\x07\xd1\x84\xb7\x9bc\x8a\xfcY!.V\xa0\x1f\x15=\xd7\xe0\xa1\xa8\xbb\xfa\xfc\x107O\x925Ppv\xfc\x97z\xf2\xf2\x92\x84\x8b/\xfc\xc7\\\xf2~\xf8\xeb\xbaV\xf9R\xad\xcc\x19\xc5b@nq\xa5&\xd4\x1d\xbb\xaes\xa2\xc4\x8c\xaa\x8d\x8f\x86\xe3fQP\x8ar\x07\xceJ\xae\x9ak\xd3\x15FWe\x9dtGI\xce\xca\xcey\xb67\x98\x80e\xd4\\\xe3\xd9\xc9jq\xe9\x07\xd9\x18v\x16\x8b\x9f\xe3\nL\xbc\"\x97\x8f\x841k\x80\x7f\xad>K\xd8\xb3S1\x8f\xceH\x0dTS^\xe7\xf2>Bti\xd2\xdc\xcb\xebH\xd6\x11\xaa\x10\xe48\xcd8$\x82\xe8\x18\x89\xb9\xd4\xc1\x84\xf4\xa6\xea\xb8\x89\xdd\x14\xe9\x07\xa8\x98\xa18Q0\x04\xecG\xbc\xaf\x1a\xb9\xf9#\xc6\xa4\xe0\x93#\xf1D\xc5\xe6\x8b\xc1\x82\xad\xb2\x15\xa5\x8b\x08\x0f\xfb\xfb\x80>r\xfc+a\x1c4\xbd\xe1\xbe[c\x0c-R\x9a\xe4\xc2Y\x0c~\x82\x1e,\x06\xbf\xe1\xffx\xbfr\\E\xc8\x0f\x92):)\xbd\x1c:\xcf\xf6\\G%\x15B\xbb\xba\xeb:j\x11\xa9*Xy\xbf'\xa5\x1e\x15rS\x9d\x1a\x83N\xd3\x1aK\xfe\xe8@G\x98@\xd1<1\xf4\x14\x10w\x1d\x1e\x8aD\x8bg50\x15\xc3u2\x06\xe0\xce\xb1k\x1d5.w\xd3\xb0\xc5\xa8n\x9cL\xee\x8d|\xd9Nro_+\x9aV \xe9\x1c\xb3\x86\x1ao\xc8N\x06x\x84\xbb\x03\xdc@\xce\x95\x8a\x15\xb6i\x91 h\x9a\x92\xca\xa9\xea\x0f=N\xb4R\x83\xd2\x92\xbb\xf2Z\xb57\x91\xa8b\xd6\xd8\xf8\xed\x05UIFm\xb9 A4iI\x90\x0f2\x96\x8b\x99\xc5\xbaf\xa4\x9c\x9d\"\xed\xd5\xac\x18|\x01\xf6\xc1\xef\xf5\x9a\x19\xc0\xc4\x90\xb6C\xfd\x88\xec\xc9\x9c\x02\xb2\xbd\xd9\xeb\xf5\x0be\x19\xc3\x88\x96\xa9\x0e\xd4O\x82\x9cE\x92'q\xc8D\x12\x89\x8d\x0d\x94/b'lb\n\x8d23\x084W\x9a\xd2\xd6\xd3eG\x90.\xc6\x03\x1e}\xc2\xf1\x07\xd7m\xcf\x95\x98x\x8d{\xf7[!\xba\x19\x8b\xa3\x07`\xf1\xc3q\xab\xbe\xea\xc5\xb6\x03\x8b2O#\xdd\x82}\x05\xa2\x81\x08\xc0\x1b\xd9V@!A\xf8\xf5KmMtgu\\\xdcuc\x94\xc1\xf2P\x93\x1b\x1f\xb9\xce4\x8f\\P\x87\x9cG\x12\n\xc3\xb1~%e\xb8\xa1 P\x8c%L\x85\x9aT\x03\x12lg\xd4\xa2\x9dt:\x9c\xa9m\xf5!\xd5gd\xc7\x167[\xb6\xc8Z\x19i\xda\x15\xe5\x86\xd6\xb7\x1e\xd4:\xfb\x7f\xd3\xd8\x87xj\xe8i\xfb\x0bzb\xffo5\xf4'\xea\x180N\xe9B\xc4=\xc66\x94SQ\x8b\x91f\xbb\xb1\xea\x8d\\d\xb9\x1d\xc5\x14\x84\x83\xf7Y\x8a.1\xc7\x17 \x8d\xaf)\x06v\x88\x07\xbf\xd1\x8b_\xfc\xb4\xfa\xac\xfc>O#\xad\xbd\xde\xcc\xf0\x91\xf6z3\xa9^o\x86\xce\xb3-\xd7!M\xd7\xf9ZNX\x1ay\xb5\xca+\x19\xf7ui\x13\xf0> \xa5\x00\x94\xde\x88\x90*\xa4\x06\x16o\x00\x9e\x035&\x98\xe6J\xeeE\xd8G\xbe\x9c\xa2\xdd\xc5\x97(\x88\"M\xd2\x0cPEScl4\xc8\xa3\xd5cl\x1c$\x04\xa9\")\xb6\x8d>V/)\xb5\"\x00\xc2\xaf|\xca\xf8\\\x9e\xaf\xbf\x00'qy\"D\xdb\x9a\x90\x81\x0cv\xe9\x04\xd6\x06\xf3D\x1e\x1d\x9fcgH\xae\xfd%I\xa5n<\xff9HR\x12\xceI\x10\x85\x1a\xad\x05\xc6\x7fC\x83\x1ey\xda\x98\x00z-\xf2\x7f\xe5\x15\x1d\x83\x1a\xaeq\x8a\xf2\xe3\x89\xc8\xa5\xadu)|\xce\xad\xda\x8frU\x95.M\xb5\x06\x92\xfa\xdd\xb1\xe0\\\x94\xb6\x8b5\xec\xc3<\xf2x\x94\x1c\x1e\xff\xeb\x94\xde\xa6G\xd1\x9c:]\x9d\x8e\x92\x8b~\x81;\x888\xe5p\xd6\xba\xb0Q\xec\xe3]\x92\x98x)\x8d_\x93\x94\x8c\xaby2@J|m\x00\xb1\x1e\xccI\x8a\xb7\xbel*\x8b\x06\xfc\xd6\x12\xe1\xbc\x0f\xedf\xbb\x16A\x08\xf5\xdd/\xc21\xc4\x06~\x0cS\xb2\xf2\x9d\xd4\xb4D\x80\xfb\x8e\xc7\xb2b\xef\xc1>\x86\xcf\xa5<\xfe\x0c\xcf\x0e\x1a\xa2\x9e\x1c\x1f\x19\xe6\xd4\xea\xdch2\xbd2\x9c&5\x93J_o\xa8\xc5\xc5\xef\x9a!\x8fLA\xae\xda\x804\xd0\xfe\xdaN\x95,\xb0>\xc1,\x8f\xa8\x15\xf1\x88Zq-D!W\x07\xe1ej\xcaD\x06\x8cf\xbapR\x0c\x93\xaaa\xc0\xa2p\xe1/\xb3\x98\\p#\xdb\xfa\x12/i\xda\"\x0c\xa0\xa2\x0djB\xcd\x07\x9e\xff\x8d\xeb\xa87\xa13\xaccm\xd5\x89\xc1\xf2*\xcbm\xa2\x8aNc'\x1e|\x80\x1e\xc4\x83\x8f\x16i^\xa4\xf7j+\xe8\x10\xa1\x9e\x8b$G\xc1\xf6\x82/\x7f\x18\xa4\x9c\xd0\x84\x1e\x9a\xa0c5E]\x08\x93blF\x93\x17\xf1\x1aOH\xe0\xb8U\x11\xd6v H\xe5\xa8\xb6\x82\xee\x1a\x8f1\x99}\xf8\xee\xe3\x12\x91\xd3\x1e4,\xb3\x96\xe8;\"o\xddt\xcf\xcfM\xf7\xca\xe8xbA\xc44n\x8d\x84\x11#\x11\x987\xda\x88n\xbe\xd6\x92A*\x00\xc3\x01E\x93\"\xa1u\x1d\x17r\xb0\xeb\x84(\x9f6k\x04\xdb\x00T\x82\xce\xba\xde&b\xf4\xd9A\xa32\x99_\xc2\xe9*\x15\xbb5+J\x0c\x01?\x88\xe9\x92\x864f\x0c\xd8\xc7,L\xfd\x15\n\xdd\xc2\xa9gIS\xc5\x95\xe7\x88\xach\xe2\xc4\xee\xc0\x0f\xe7\xf4\xf6x\xc1\xda\xaf\xbe\xdcu\xe1eM\xe3\xe5\x83\x08c\xa7\xeb\xae\x809&{\xd1\x0d\xa8\xe0c\xcb\xd6\xb7{\xec\xd4\xc2\xb4\xec\xfa\xb7\x94\xc8\xf9\xc8;\xd5yx\x11}S\xf7~\xb1p\xc6\xeb%\xeb`\x8b\xf7\xb5\xeb\xae\xb6\xa5\x18u\xd6\xeel\xf4;\x0c\n\xa37tU\xaf\xf8`\xd5\xb1\x9c/v\xd95\xab^\xcb7\x91\xdd\x93\xbb\xd5E\x14\xc0D~\x19\xd7\xccVA\x9c5\xfe\xc0O9@\xd0\xbe\xf1?\xffS\xfe\xec\xd6\xeb\xa3\x8e\x92\x87}}[~\xa9T\xa6y3\xc17e\xb0\xc3S\xb2\x14\xef)%\x9a\xb7\xf0\x92*BX\x95\xce\x94zMOX\xf7\x99\x91\x15\x04\xc2z.\x04\xc8\xf0\xa9\xa8\xe9\xb9\xad8w\xc7\xd4\x0d\xecC\x80\xb9\xa6d\x93\x0c\xde\xee\xe0&&\x8c\x99?\xaf\x93))\x03t\x93,Y\xd3pN\xe7')\x89S\x0d\x0c@H\x04E\xcd\xbf\xfa4\x98\x1bj\xa2C\n\x8f\xa9\xe4\x87:\x90\x820\x06\xefz\xd1j\xcd\xf6\x92\xa9\xa5k\x9ePA\xfbl\xa5qC\xc4\xf2)\x995\xd1Bhb\xce\xf4\xc0Z\x16\xbbfI\xd3\x0fr\xe3\x1c/\xf4#\xbc\x83}X\xb2e^:K\xe7\xbd3\x9d\xb9\xbaKS\xf48\xb9C\xb3(\x14n\x85pw\x87I\xb3ej\x91;\xcd\x8blD\x17h\x9c\xad\xde\xf9\x1e\x96~\x95\x028;+M+\xb7\xa5\xfa\x17\x15\xeb\xed\x93>\x9cT\x8an\xfbp2M\x18\x88o1MW@\x90\xc6\xb3\xe5\xfcIb\xa4(\xbf\xf8\xa5\xcf\xd7mp6\xc3\x83\xd2\x19\xb2\x0fW8m\x8c'\xaeu+\xb5!j$n\xe8\xaf\x9cs\xf5\x0d{dh\xed\xde`\xa7\xf9\x04\"t\xca\xe2\x1e]\x0f\xb9'\xcbU\xcb\"\x9f\x0e\xe5\x8e]Jk\xfa%\xd0\"\xf7+\xc4\x8f\x8b*vuY\xd97 \xb2}\xb8\xc8O\xe3\x074\xd6\x9d\xf2\xd3\x18\xf2\x01Ur\x1e\x82\\\xe0+z\xd7\x9c\x8a\x04\x14R35\xa46\xa8\xf9\xaf\xa7\xd2\xa8\xc4\xba\xbe\xec\x94\xbe\xa6qB\xab\\\xb4\xfa\x91\xa3\x83f;>\x91\xd9@\xde\x1d\x19\x15\xd4\xeaG\xca\x06\xe9`\x1d\xadMZM\xf5\x83\x0c\xb5\x98fn\xd0\xc3\x91\x08\xd3h\x84\x1c\xb5\xb8\x91\x92^l\x94\x1f\xb3\xa5\x1c(\x02q\xde\xde\xd0\xd6\x9e\x96Hx|`l\x91\xdf\xf7\xe1\xb4D\xe8\xf4\xa0Q\x0e\x8c1\x9c\xeaW%\xa6 m\xb4\x02\x91\x1f\xccz\xc1\xedp\xe8\xb5b\x9a%\x14y\xf2gBCy\x81;8\x17?B\xf1L\x81'\xffM\x03\xba$\x18\xa5\x84'\x92\xc4\xd2\x15\x86 \x95\xd9\xc0\xba\xa2\x94\xc4K\xa5\xa54\xbe;\x0c\xd3\xd8\xa7\x89\xcc\x97\xec|p\xfb\xd0i\xb0h,\xa2\x9d\xb3uG\x91\x17\xbaiWxo\x88P\xdbCW\xe1N\xb8v\x86;Kux\xea\xb4\x9eL\n;\x12 \x86X\x1d\xe1[i :z\xf0'i\xb4n\xa1\\\x03i\x00\x95\xa3\x8f\x19\xb7\xa5\x0dU\x05H\xd3\xe1l XP?\xb2\xb8\xd8`*}\xd4\x93p\x98\xd0\x01\x1eJ\xf2\n\x86-\x82\xf9eU\xd3\x14_\x93zb\x020\x83\x821\"L\x8c<\xbc\xf5\xe8:\xc5\xa8\xb4\x0f\xc4J\x06\x9c|\xa0v\x00\x156\xdf\xcd\xb4*vL\xa9\xf6\xd5\x8f\xd4J\x0d\xc4\x96\x140\xecC&\xf0\x16m\xc4\xc5NA\xef\x11\xae\x04\xaf\xa3\xba\xc4s\x86\xcc\x1d\x8b_\x85y\xe4\x12\xc5\xfd:\x1aHg\x9d\x0d\x18=\x07\x1fU\x11\xcfacC\x1b\x17B\xfd\\\x8b\x1c\xffU\xac\xf2\x1b\xcc{@H\xb1\xa4\x15\xf2\x81D\xc08\x8a\xc4\x9e$\xac\xb7w\x91\x97\x13\xe8\xd8\xe9\xd2pn3\x1d\x97\xad\xc8W\xe1\xc5>\xe4d\xabi\xa2 &\x8b\xb9kD6\xf4>tQ\xc3\xf1.\xf2\xba\x96\xd3M\xfd\x04\xe5\xd7\x85J\x18\x1bhw,\xe1\x9dm\xd0f\xb4P\xa3\xcc/0=/\x1f\xb0\x02\xb7\xa2\x10\x1d\x10\x9a\xc7\x01\xda\x96\x8b\xb9\x94\xdaV\x8a\x1b\x1b\xfe\\\\z&\xdfs\x8a\x8d\x0d\x7f6i\x1et\x1f\xbc\xa3\x0d\xd4\xfc\x1b\"\xf7F\x1a\xdfA\x92\x92\x94b\xd6\xf4\x1b?\xbd\x8c\xb2T(\xc5\xa2X\xde\x07\xb4Yy\xf8n\x10\xb7\xd6\xb0\x98\xf9?\x84\x84\x93\x8b8[\xa7-l\xac\xe5G\xe15\xed\x94*\xcc)\x95\xf1Z@~r&\xb0B\xa9B\x03\xbf+?\\\xb9\xaa\xa1\x18\n+\x10W\xb6rny-\x96*.-U3VI\"m\x10\xe8\xd5\xcfEL\xc9\xd57]D@}&\xa6)\xc5\xc6\xc5y\x8f\xfa\x02\x99>\xac+}z\xf0\x16Q\x01\x0e\xc8\xd4%\xbe2el\xcc\x17\xac\x9c\x05\xdb\xe5a\xe2s\xd7\xd7\xfc`@-^#wA\xe4\x11K\xfb@\xc4a\x99\xf6\xb11\xc7\xc2=\x8a\xa3W\x1do\x1f\xae]a\x0e,GA\x1d\xf2 \x06N\xbe\xf6\x00\xa4\xff\x16\x1cVi\xc58<4\xcb\xc6\x1fLJ\xf3\xc7\xf6a\x0c\xe2\xea\xa3R\xd3\xc9Y7\xb9\x83\x04\xf3\xc2\xfe\xd6\x98s\xd1D\x19\xc0\xfctf=\x84Q\xbc\"A\xa9\x07y5\xed\xa8o\xa4n\x1f\x0c\x1e\x7fz\xa0/\xfc\xd0O\x1a\xfd\x13\xf2\xda\x05\xc7o'2iNd\xda\xf9\xd3k\x88L\xda\x82\xc8\x84\xea\x8e\x11\xdbKe\x9csL\x0c\x95\xad\x81\xc9\x89\x17)\x8d\x19e\xe9\xa3\xe3\xb8 h\xf0P\xb2\xdd\xca\xdbC~\xfe\xfd\xa0)\xa8\x92\x80d;\xa2\xcb\x8d\x84\xdb\xb2\xa4\xa0\xd9\xb5\xb1\xd8\xb5\xcd\xfd\x81\xa26\x8b\xed\xbb[\xfd|0\xd9d\xab\x1f\xfb\xb1\x0e\x05\xc10\xcb\x11\xf0\x85GG\x8d\x0b\xf2\x03&\xca\x07\x82\xef!iJW\xeb\xb4\xfb j*\xb5\x01x\xe32\xae\xea%\xad&\x82\xea\x0eR\x94\n\xf6\xe5\x91Woc\x8c7`\xe7\xecc\x9adAzDVt\x0c\x0d\x01-\x18]{\x17yc\x83m\"p\x85\x0e?\x9d\xb8\xe2A\xa1\xab9u,\xc4@\x03q\xac\x95VM\xc0J?sy\xf6\xbcA\xcd+q\x95\x9f\xf1\x8a\x9eI\x89\x0fs(\xf2\xe6\x1d\xea\x01Q\xcb\xa7\xe9D\xaa\x82[\xfb\x0e\x11Z\xe5S\x07\xef8\xa7:[f\xb1\xc8\xfe\xe0\xdc\x0f\xaf#\x8c\x02j\xb3\x15P?\xb9\xdd\x80U\x8b\x99\xb7f\x8a\x95(?\\s\xc8\xd6n\xae\x11\x08rm-\xf8 \x90 \xa6d~\x07q\x16\x86~\xb8\xb4\x89\x01E\xabZc\xf9jU\x95\x1e\xe5\x19\xc6\x0d\xd9\xf0\xe5GL\xf4\xadA9\x0e\xcd\x9a\x85\xb0\xe0\x00\"<\x96\x10O\xfd\xe7\x8d*Z\xc9\xf6\x85\xf9\x06m&\xef\xa4\xa9Q\x10\x0dg\xe8\x14B\x18\x064\xd3W4\x96m\xd32\xc8\xca\x08\xe3\xeb\"\xafns\x1f\xa0(\x85\x1a+\x7f\xa9x\x06\x12\x13\nZ\"\x97\xc7\x85Pjb\xc3B\x0d\xdb|\xfe\xe4\x92\xb9\x8a]E\xa3\xcd0+\x90x!q\x92m\xbc\xcb~\x9b\xde\x01\x9d\xa9j\xba@\x07_m\xf0v\xe2C/1\xb6\xa1BU\xc3\x01\x97O\x9d\x82o\xe5\xad6l\x18\xd8\x87\xb9\xbd\x8a\xd4\x17\xdd\xe4D\xa8\x19\xb1K\xdcq\xd2\x9a\x99\x10\xc0\x957 \x13\xb8\x841\xac\xfb \x8e\x8b\x87\"i\xe3u\xa6\xfa\x11I\xfd\xb0\xabvZ06\xc6\xb1\x18k\xe3\x0b_\xb3\x07T\\MrQ\xc3\xc9\xf1\xae\x90Y\xa4ZV\xd2\xad\xc4\x8eX\x06F\xbaV\xfa\x99-}\xd8\x07\xe2\xf6+\xc97M\xc7\xf0\x8d\xed\xc42;S4\xaeX\x8ai\xb5$z\x99\xd7\x89\xc4\xcb\xdc\xb3\x07\x87\xd1v\xa6\x8d\x11\x1c\xda\x0eQ,E\xc3\x08\xdb\x0e\xab\x15\xd0\x0f1\x9e\xa0\xe1\xe1\xad\xed\xe1\x89\xed\xe1+=0\xa6R\x01\x91c\x9d$=\xb3\xfc\xce\xcal\xd8&?\"hg;\xf1Le\x83\x05\x93\x84v\xb2\xadW\xb7j\xee\xaa\x9f\xf0\x95\xc5\x9a\xb4Nu\xd4\xd1\xa83\xb1\x19\x1a\xe4]\xf9\xad,\x8d\xe9\x8dt\xa7W \xda\xc0\xc3A\xc9\xb2\x90\x07\xbc\x8ey\x90\xbc\xa6\xd7@\xe1:n\x1c:\x0dg\x18a n\xc9{Hr\xd5\xd9\xdf\x177Fm:\x04\xe5\xa8\xc9\xda\x13a\x10\xd7\x11 \xbf@n\x1e!\x14pE\xcb=\x8dE`\xa0(E\x03L\x05\x8bV/]\x17&r\x1dr\xef\xa2` \x9e>\xc8\xb8\xa3\xfaI\x1d\xb9\x99\xa8X\xa2V\xaf~~\x88\xeb\xae\xfaI\x9d|\xd3>\xacC\x17\xc6u\x10|\xd5\xd4\x93\xdc$\x01C\xc9'-\x07\xd2j\xc8\xcd\n\x04\xe2d-x/\xb1w\xd2Z\xb0\xf8R\xad\xb6T\x08\x14J\x06\"K;\x87\xa0\x8f{z\xcc\xa8B\x9dv\xb5\"]\x07\xd6\xc8/<\xec\xa6\xd4\x0bL\xe5\xfd\xacF\x11U\xb0\xb9F\x99\x13or\xea&\x0e*\xb3\x92\xb6`\xac}L:/\xc74\x10\x80\xa9^\x1f\x17\xca\xd8\xc2PB\xcc\xd5\xd0e\xaev\xbc6\xd3\x84T\xc3:\xe5\x1d\x943\xd0\x9f^\xd2\\\xa1\x02\xf3\x88&\x10F)\xac\xe3\xe8\xda\x9fS \xf0\x18\xdf\x7f\x0c\xbcA\x93b\xc8\x86\x0b\x9aH}\xdaE\x8c\x90*\xc7}e%\xc5\xa85\xf4\xb9&H\x0bz,\xf1\xcf\x02\x80Hh\xc5\xebK\xac\x81\xa8\xbc\xeb\x89\xf4B\x90Tm\xe0\x95\x88\xe0\xed\x9dt\x8a4D\xe8\x9dfx}!\xe2\x99\xa7\x85B_\xa8\x9b\n\xee\x02\xcf\x95\xb4\xa4P\xb2\xdb\x19\xe8f\xc0\xb3\xcd\x8f\xcb\xef6\xa0@\xbe\xfc|\xd0\xe0s\x1c !\x88#\xc4\xd4W\xab\x9d{lwa\xd1o \xae\x1d\x1e\x03\x9d\x0egu\xf4\xa9\xaf\xc3\x88\x9b\x9ar\xa0\xc9\xcbd\xcc\xc72\x9a\xb9}\xd8T\x1f\xabz|\xa0\xdc\x1d>\xd7\xd2c\xd1\xd6\xcc\xad\x9b+\xa19]\xdan\xce\x1f\xecs\xa6\xea\xed\xd9\xfd\xbd\xf6\xfa,\xcdMR\xa4L \xbd:R\x8e\xbf\xa5F\xf6\xab\xd1\x94\x0d\x03;\xd5\x0f\xac2W\xd8\x87\xa9}]\xb8\xa9G}e08\xacd\x92\x8f9\x10\x8b\xc8N M\x9d\xea\xfd\xbei\xa4\xef\xf5#E\xaaj\xd3\x16\"|\xa7\xc4p\x07\x81\xb4]\xa1\x12|\x7f R\x9fom\x8fJ\xcf_\x1d\x7f<,?/eU\x1a\xbc>|s\xf0\xe9\xdd\xe9y\xb5\x9fQ\xa5\x1fY\xef\xcd\xa7w\xefJ\xf5\xb6wJ\xf5\x82\x88\xcc\xf1\xc2\x94}\xa9>8\x08\x82\xfc\xd9\x01\xe3 \x8a\xc7 Y\xd0w\xf2]\xf9CWA\xb6\xa1\xfcV\xab\xcd\xb3\xd5\x1a\xb95\xf6\xa5\xfa\xfek\xf9P\xfeP+\xfc\xf5\xe0\xfd\xbb\\q-`\xb0W\x9a\xdb\xfb\xb7Go\xdf\x1f\xbc\xb3-G[0Z \x98x\x84\xbb\xedv\xd9\xb7n\xe9\xd9\x9a\xc4\x18F\xd1w\xba\xf8\xb5\xfc\x14\x93\x19\xcb\xe7\xe2G\xb9\x06\x99\xcf_\x95<\xa5|\xa7[.\xeb~\x93M\xfc\xb4\xea\x06\x1d\x15\x00-\x95\x8b\xb4Z\xdb\xfaDq\x08\xbdRyV\x80\xacT\x9eh\x9cE\xad^\xa1\x01F\xbd-\x15y\x18\x07\xbaL\xaba\x1f\xb6\xcaE\x0c\x81\xb6\xcbE\xf3z[\x97\xf5\xb6\xae\xebm\xad`\x1f\x9eL\xcfn\x87\xc3\x8d\xb3\xdb\xe1\xd3\xb3\xdb\xe1\x8fg\xb7\xc3Wg\xb7\xc3\xc3\x8d\xb3\xdb\xd1\x9b\xb3\xdb\xbd7\x1bg\xb7O\xb7\xcfn\x9f\xeen\x9c\xdd>{s\x96\xbdy\xf3\xe6\x10\xff\x7f3\xbb\x9f\x9ee\xaf\x9f\xb2\x97\xb3\xd7?\xbey3s&\x1dV\xf2\x8a\x97\xb0\x1a\xee\xbd3\x19O\x7f/W\xbb\xff\xdd\xadT{R\x1e\xd6R\x0c\xeb\xe9\xceY\xb69\xdc|\x8a\xff?\xab\xd6\xba\xc3Z\xfd\xb3\xe9\xd9\xec\xec\x1fg\x9f\xab\x8f/\xd8\xe3\xdf\x9d\xc9\xb8s\xdf\xe9\xdcw\xa6d\xe3\xefg\x1b\xb3^\xc7\xfd\xf3\x13\xbf\\\xf3\xbc\xa89\xfd\xbdh\xcfu&\xe3\xff\x98\x0e7\x9e\x91\x8d\xc5\xec\x1f\x9b\x9f\xef\xf9\xf7\xbf\x9fm\xfc_\xcf\xcf\x9e\x9cM\xc6\xff\xf9h\xff\xacw\xf6\xe7\xfe\xf9\xd9\xa0\xf3?g?<>s\xce\\\xf6\xf6\xcc\xfd\xe1\xcfO|\xddYqc<+F\xc3\xc2\x8an\xb4\xc5\xbf+\xd4\xbc\xde\xd4\xa1\xb1\xa9gEK[\x9b-Z\xba}HK8\xbe\x87\x8e\xf5\xc4\xd8\xc3\xf6v\xd1\xd4\xb3\x91\xf2}K\xe9b\xb3\xf4c\xa7E\x87\x1a\xbd\xbaF\xc5,\xc7\xf0\x14^\xec\x0bgI\xf6mg\x0f\x13Zn\xb0\x07cx\xb6\xc7\xca0\xaa\xf8\xd6&\xdc\x0b\x9bF4a\x1c\x0d7\xd1\x9ca\x83U\xea1\xb0\x8cacd\x1d\x98F\xff]\x8c\x82Or\x02\xdd\xb3a\x97\xf7\x9c\x97\xfc\xff\xb0@\xadr\xc1JF\xa3]\xa5(\xc5J\xd5\x82Q\xbe\\\xac(\xe4EjK\xd7X4\xdcT\x8a\x16\xbc\xd6\xb6R\x14\xf3Z\xa3\xa2\xe8\xff\xcfJ\xb6\x94\xd7\x00\x0b\x8a\x97\x1ew\x1f\xc3\x18\xb6\x95i<\xc1\x11\xaa=\x9d\xb1\x92=e8\xff\xe7\x7fc\x9d\x1d\xa5\xe4\xff\xc6:\xeaL\x91*\xb0\xd2\xa7\xc3J\xe93V\xda\xedZ\x17\xe1\xc0\xb8\x08\xb8\xfe\xbb;;[;0\x01\xeet\x87y\x0b_]\x92\xf8U4\xc7\x9c\xa8c\xed\x83\x9d\x9d\xcdg\xbb\xd0\x03\x87!\x0eka\x17^\xbe\x84\x11\xe3uvv\xb76\x87\xe5G\x8f\x18\xbc\xb7\x14o\xd9\x82_\xcb\xed\xe4\x8e\x85\x9a\x043\xee9\x9b;\x8c5\xfb\xa0);\x054\x97;\x85\x17\xb0\xb9\xb3\xfb\x1cN{=\x17\x8e\xa7\xa73\xd8\x87+\xe7\xd4\x85 \x8c`\x0c\xc3>|(\nu\xc4\xe9\xbdV\xc1\xa9\\\x94Dx\xdf\xc7\xc3\x17\x0f\x16~@C\xb2\xa2\xa8,\x0b\xd7Y\x8aN\xb4Q\xe2\xa7huH\x07\x81\x1fR\xb5\x0c6D!:\xd0\x97\xe6^\x1f\xcb[\xedX8\xcf,\xc6i}\xff\x0f\xed\xfbt\x10\x85\xbf\x918\xf4\xc3%w\x8d\xce\x7f\x8a@\x85\xa8U\x12\xed\xeb\x16\x87\xad\xcbQMe\xc4\x18\xb7\x9a\xd1\x99V\xb9{]$\xa4\xab\xcb\x8e\"7\xf0>\xd0\xc15\x8d\x136\x8dG\x8f8$\xba\xf3l\x1d\xf8\x1eF\x1d\x84h\x01\xff\xc1\xba\x84\xb9\x1fS/\xf5\xaf\x91\xc7\xe2IC\xf2\xa4:\xf9\x9b\xe5\x9a@<\xc6`&@o\x89\x97\x06w\xc0d]\x99\x03\x12\xe3E\xb3A\xb0-\x85w\xe0O~w\xd8\xa17\xeb\xb9g\x03\xf9\xed\xcfO\x06\xf4\x96zN8\x1d\xce\xb8\x17\x1b\xef\xc8\x0f\x82\x8dE\x14\xaf\x98\xa4\"\x1a\x04L\xb0I\xa1>Z\xc6\x8e!\x03\xf96L\x9d\x18\xc3B\xe2^\xf1\xcb\xe5\x9b\xb2\x9c\xcf.*z\xcbB>\x13r\x11\x88\xf6%\xccD\x9f20\x1b\xe7?\xe5\xc3}\x081\x12%\x1dx\x97\xd4\xbbz\xe7\x87\xf4\xc7\x98\x92+\x0c{\xc1v\x90\xec\n\x0d\xdc7\x8b\xaf\x7f\x88^\x93l\xcd8Y:o\xe8\xb4\xb4\xba\xd5\xccb\x07?=\x0c]\xea\xb8\xb2iX\xed\xd3\x83\x9f,\x8b\x9d\xdeDE\xc2O\x06\x988\x07\x08\xf2\xc7\xb8\x0e\x17\x83\x94&\xa9\x13\xa3\xa8][\xda\x94,\x81'o\x01g\xe1\xc7I\x9a7\xe8J \x94\xc6\xc0zI\x84\xeef\x90\x92\xe5{\xb2\xc6\xcb[9\xe2\xc7\xe9%\x8d)\x9a\xbb\xc1:\xa6\xd7~\x94%\xc1\x1d\xcc\xa9\x17\x90\x98\xce!\xc9\x16\x0b\xff\x16\xa9b\xf71\xf4 \x86\x1e<\xee*\xc3x\xec\xf6\xe1\x9c\x0f92\x0fy\x1dS\xd6\x8c\x93P/\n\xe7-\xc6,\x07;\x8dg\xb6xr::\xfa\xd1b'\x89\xb7\x0cy>\xb5\xf2\xba\xa2f\x10^\xe8QA\x18\x93Ib+\xdcH\x11q\x8c\xd1\x81\xf1(\x89\xb8\x83\xad\x8fw\xbfB\xed\x06\x11\xbc\x00\x9f\xfd\xe9\xed\xc3\xc8\x15<\x83C\xb0\x8e'\x8e\xb4\x03\x06PW\xf0~/\xf6y|8\x82|\xcfh\xb4=\x1a\x8d\n`\xd3\xdb5\xf5\xd8\x9e\xb8&\x81?\x87\xbf\x9c\x1c\x1f\x15\x11\x0cuv\x8bhp\xb5\xe2\xab\x96)4\x84-E\x92\xc6\x94\xac\xd0\x16\x89\xf8a\x02a\x14n\xacc?\xe4[=o6\xd1\xb6+n=\xd8\xbc2\xd3\x9ai\x96\xecu\xb1d5\x87M\xbc\x7f\xe1\xeb\xd5\x87\xa0\xdc'B8\x1e\xf8 \x17\xfd\x9cP\xc1@\xa1\xaaY\xd1xIaE\xd6k?\\&\xcf\x11\xdb\xc4\xdd\xd6\x1c\x92(\x8b=*.9\xd8&P\xc9\x1aC\xc3\x8c\xaf\x1e\x13\x16\x1d\xc58\xf6\x8a\xdea\xa2\xb7|A3x\x01\x01\xfb\xc3\x17\x14\x9dd\xa6\xd9,\xdf{)\xda&`r!\x1e\x95 \x9c\x12\xb6\xeb\xf9\x0fU#\xae\x03\xcf;\x05\xa3\xd5t\xaa:P\x05}\xf0\xeax\xcd\xb0\x90\xb3MN\xa4\x9e2y\xc4\x11\xf8\x07\xe6\x83N\xc9r|GV\xc1 \x8a\x97\xfd\xcd\xe1ps\x8c\xf0\x13\xa6\xf3u4gm\xf3\xf4\xd2~\xc2\x99\"\xdf\x96\x958\xe0\xe0\xf4\xf0BL\xc2.\x80\x17\xe0\xb1?\x1cv\x12\x17\xfci0\xd3\x9b\xe4!\xf6\xe6\xd5\xeau\xf09\x1d\xfc\x91\xf0\xbb\x95$\x8f\x82\xcc T\xa7X\x13^\xe0p\xbe\x08\xd8\x1e\xc3\x0c_5\xd6i\x1f2\xfe\xa4`\xb0\xca|\x01\x9dK\x14\x83+z\x87!M\xd2i\x84\x17\x7f\xf9\xadM8\x8dfZ\x01(\xb5.\xfe\xa7V\xb2\x94\x102D\x8aMN\xa3\x14JR\x8c\x1c\xf32\x15?{=&Vl d\x98\x80\xa3>\xea\xe7\xa2\xa6\xb5E\xce\xcb\x15\xaf1\x1e\x9d\x83\x87\x00\x02\x16\x9d\x9e\xd8\xf6\x92\x84\x8aSx|\xd6\xc3\xe4C\ng\x8a\x13\x90\x8dY!\xf37\xd3\xd9]J\xc69\x94\x19\xfflSx.\xb2~GZchqyr\xe8D\xees\xd7\xd4Z\xaf\xa7\xb6\xa7\xdd)\xb8\xdb\xb6\xb8he\x08\xf0?\x8f,\x979mz\xd6\xbe\xfc\x19n.}\xc62\x8c\x86\x05#7\xda*\xbe\x8bb\xc3\xb8;7x\x14\xe12\xd6k t>a\xf2\x90f@\xf7!fx\xc5\xd7\xfbm8\xe7\xe6\xcd\xc3\xe7R\x90e\x0b\xa0>d\x95\x1f<\xed\xcf\xba]\xb6!8\xf4b\xba1G\\e$/\xf8c\xcel\xce\xe9\xc2\xf7|V\xec\xe3S\xe4\xfe\x91k\xb3b\xe5\x1b\xc3~\xed\x8bD\xb3r\xc8ZR\xd0q\xb6wpl\xa6\x8d,2\xe7n\xefr[\x01\x0c\xfd$\x84\x96z]\xe81\x82\xdaTe\x93\x13\xc1\x90m\xc5\xad\xbe\x80MC\xff\x9d['u\x1bd\xc8\xbfke\xc0QNjTf\x81\xeb.R\xcc\xda\xcfc\xce\x15\xcf\xe2AL\xd7\x94\xa4N\xf7\x0c\xcdd`\xa3\x94(K\xd7\xf5\x8f\xda\xae\xafE\\A\x89Q)\xd1X\xe2\xf9\xdck2\xf4.\xaby\xb3A\xa8\xa5u\x99Q2M\xae\x11\xeetQ\x08\x95\xbcM1=\xfe\x831\xb8\xf2;;,\x88\x90 \xda\x11+lk\x9b\x93\x13\xfc~\xebX_Dtp5\x97\xbe\x92\xb9\xed\x0c\xfbP\xa6\xffHbY\xf1\xc6\xc8\xad\xef\x96}\x06c\x99\xbb*\x0b\x82v\xa3\xafu\x9f{.\xf0\x0d\xc2O\xdf\xdf\x04q_\xf0<\x1e\x1d\xcc\xce\xc2\xbb\x92\xc8\xe1\x96\xc7\xd7\xa6\xf3~q\xd8#-\xc8\x8f{1\xa5\x97\"^\x8c\x00\xb0+\xce\xb1\x0b2W\x89\x00\x93Z\x08$\xf4o\x19\x0d=\n4Lcm\x94\x80|b\x15\"\x93ji\xa9$\x01\x9dL\xe0\x08\x13\x9c\xd0W'\xc7\x1dd'\xe8\xe0\xca\x0f\xd1\xaaG\x8e\xa0\xdb/6\xd3>\xe3\x0c\x9b\x18\xca_\xcd4*g1\xf95\xbev\x07T1\x9dMq\x8b\x9f&N\xf3\x11P\xd8\x0f\xe8\xdaQ6\x0c\x9b\xbfI\x03C\x84X\xc9\xafv\x18U\xde\x15\x1cP\x9b\xd3\x82\xf1@\xc8\xcfw\xcc\xdcA\xe5\x851lq.)b\xef\x12%\x01g\xb7\xd3\xe9\xb6o\x85\xbf\xd1\xedC\x99\xd11\x98<\x1b\xd9\x816\xdd\xd5^\xcc\xd9\x00\x85\x0b\xd8\xdd4\x1e\xfd\n\xe5(lF\xd8\xecc\x9d \\\xdaem\x86W\xb0\x89Y\x98K\xb04\x9cK\x9d\x80\x10Do\xfc\xf4\xd2\x0f\x81\xc05\x8d/H\xea\xaf\xd8\xcaW\x15<\xa6p \x82sS\xe6\xdb\xb9\xe5\\\\\xbe\x9al\xaf\x11\x98H \x98,\xa5\xceC\x08\x90B\x10\x06z\xeb\x05d\xc5\x11pE\xe2\xab\xa4\x9b\xa7k\xae\xc0\x82\x1dP%\xf1\xa1\x87\xc9\xed\x84bG\x95QCR\xd1\xe9T\xfaL2\xef\xb2$r\xcb\xcc\xe5U\xf4\xe1\xa4\xbd\x1d\xdc\xeb\x0b\xdd\xbc\x9ew\xb9R\xaa\xd0\x15\x18!\xb5\x08\xa2\x1bF.\xd9v\x8d\xe2\xd2\xf8\xcb\xab\xa6#\x7fx\x90u\xce\xf5\xfd1x5\xc0h\x8c\xf6\x1b\xb1\xcb\x03KH\"\x1a\xc3\xb8\xae\x06\x0b]\xa5F\xaep\ng\xa8\xe6\x1a\xb3]*N\x89\xa2\x16+\x93Ou\x8f\xeb\xf2\xb3\xac\xcf\xb5mY\x98k\xd6\x94UG\xcdZ\x88\x9a\xb5\xc7\x98\xda\xdeJ\xbc\x7f6\x13o\x0dY~\xca\xc9r\xf8\x15d\xd9\xcc\xc8\xe8Is\x08\xa2\x86J\x9e\x0d\x03(af\x15\xab\xe5\xc6\x0d\xc5\xc6\xe5\xa2f\xe7\xc4 \xd9\x0en\xd3\xa2\xf6\x84U\xb6M\xae\x03)\xf6cy\na4\xa7\xb0\xca\x92\x02\xdfH\n\x01%I\x8a\xaa{E\xcbV:\xa6\xed\xbb\xa9a\x81\x7fS\xb4a\x9as\x01\xddqQ\x1b\xb6\xea\xc3\xb2\x0fw}\xb8\xe8\xc3y\x1f\xae\xf8e\x94\xe6\xd0~o8\xcc\xff0\x1c\xe6\xcab\x07~\x92\xd2\x90\xe6\xb2\x12\xff\xe5t\xa35\x0d1\xbfx?\xc7~~}\xa3@A\x16\x08~E\xfe\xcc9\x15^\x80jO\xd8Gc\x88u\xc1\x97-\xf8W\x11q\xad\xca\x88:\xefs~\xb5\xcc\xbe\xc1\x84\x03\x01\xd3_\xa9B\xa6\x90:\xf0\xba\xae\xfa\xf0\x85P\x84\x9d\xa2\xf1\xa5\x8b\x17\x1e\xec\x85\xd3\xfa\x19*N\x14\xe4\xa0\xee\xefq3>w\xcb\xc3\x9b\x14\xa3[q~\xec\xbb\x0c\x12\xc6\xd8\xbcn\xfdV \x832\xbfg\x83\xf4\xf3\x1b\x9cS\xf6`-6\x15\x93\xfa\xce1\"w\x0et/'i\x98\n\x80\x1d+}\xb8*\x1f5\xa5{\xc4\x1cR0\x01\xde+\xca^W\x08\x9c\x87\xdc\xb1\xf4\x0b%ob\x96\xce@X\xee\x98%4\xf6YXBr\xcf-\xcf.%Nj\x9f^[\x9f\xae\xacO\x97\x86\x0d\x08\xc2\x8eF\x97\xa7\xf2\x0b\xe4\xc7\x85PY\xb7\x93\x1f3\xa3\xe7\xbf\xf4Vn\x16'\xfbB`\xe6B\x1b\xa9\xf0\xb4\xbb\\(@\x81f\xe7\xa9\xf8~\x7f\xcfhyl\xb5\x84F\xad\x13\xd2\xc1\xb0\x0f^.\x02\x1auP\xea{\x8a\x80\xd7\xe8F\x880n\x03\xb1C'c\xfb\xdcP\xb5\x81\xbfR?l\x84;\xdc\xde\"s\xe1\xd6\xd4y\x85S\xce9F\xc2X\xf8\x94&k\xe2)\xa7\x8f\xaa[\x05td@\x0e\xfa\x8a\xdemp\xd3\xea\x84\xae \xf7\xf0\xc8\xd9\xe9\x8b \xf2\xae\xa4\xd6\x9a\x1d_(l9x\xd7\xb0\xe8\xc3\xbc\x0f\x97}\xb8\xe6w\x05n\x1f\xf7\xc6\xb5\xa0\xd2\xa2\xe8N\x109\x81\xdc\xc8|\xb2\xbf\x97\xf9\xfe\xc57$\xc1\xb7\xc3\xa5e\xf2+\xa6\x04\x88\x97vF\xe9\xba\x91Q2\xe5'a\x80\x17\xe6\xa0\xce\xba\x19\x17\xf8\x9d\xd8\xb3\xad\xbe\xd0\x83sM\xac.P\xbd\x85\xf2\xb1>G\x9b\x9caX\x1beQ\xf9a\x1d\x8e6wD\x8fC\xde\xe3?\xda8\xf4|\x01[\x15\xbb}0\x80\xa1|\xf2\x0b\xfc_[\x19\xab|\xab\xb1\xbd\xda\x06\xbc\xe2\xbe\xb0.\xbe\xf2\x9b4\x8e\xbb\x97%\xdc\xbdVp\x97\xd1\xdb\x1c\x7falR\x1b\xc7\xe6\xc3d^\xf0\x1f\x9c>\x82\x17\xadV\x04.hzC\xa9P\xf8xQ\x10P.\xc0R\xeeD\xc8H\xa3\xc7\xb6\x95H~\xc9\xc5=\x1f\xef\xd99\x9a\x88\x13a\x0dm//@F*%\xf6\xeb\x8a\xd4\xcdU\x0e\xe5\xeb\x84@\xb9N\xf0\n>%Q(h\xa9\x19\xe3\xc2\x97\x05z\x02\xf9\xe5H!\\ \x8ew\x8d\xe4Xj\x9b\xdb\xe0Qe\x04\xba\xb1/\xca$\x9f\xad1\xd2\xb8\x18\xe9\xbc\x874d\xc1]\x81'\x10\xf3{\x13\xac\xc0\x17A\xa9\xc3*\x89\nI\xb5ga\x1e\xde\nI'\xe0\xcc\x1f0G\xd6-\xd6\x1f\xb5\xd8\xb3\x0fQ\x13W\x90\xb1\xaasd-\x9d\xb3\xd1\xa2\xee\x83 \xd9<\xfdn[R]\x15T\xe7f!\xd5$\xf0y\x96g\x0b\x0c\x8a\xab}\xb4\x86Z\xfe9\xf9\xd1\xe9\x01 \xa7\xa9b\x11I\xf3\"\xba\x82\x87\x7f0\xe1\x16\xb7\x08\xa4\x15\xddntP\x04I\xa6\x95\xab.\x8f\x04$.S\xacnW\x12\\b\xf0deC\xdb\xde\xb2N\xbf.h\x89\x1bU\xe22\xfc\xdcg\xe4k\x82+-\x1a\"\xc8\x7f\x8d1\x80\x17\xc7K~=\xcd\x99\x1b\xef2Z!w\xb3B\x86\x92q-\xfe\xc2\xd7[\xe1A\xb3\xd8\x83b\x80\x83\xc4\x83\xbbI\xa0\xbc\xc8\x93ne\xb9\xb3D&\x9d%6F\xbfF\xf1`\xdf\x18\x11\xbe\x8e5\x0c^\x87\x0e1\xea\x16\xac\xe65m0D?\x0ey\xaf\x86]\x9b\xf9\xfe-\x89Y\xc6!X\xc7\x07_3FP\xc7\xd9\xb9q\x88r\xcf\xad\x19\x90aC*\x1b\xce0P\xc5\x1a\xa8j\xe4\xd37\x8d\xbe\x9d\xf2\xc4\xe9x5Y\xe9\x05;\xe4\x1e=\x92\xd6CDc=\xd4\x06b\xe6%\xebxP5{x \x0bdC\x169{\xc1\x1f\xb8}\xb8A\xd4[\xf7z_\xbc\xd9\xeb\xb3\xb3\xe3C\x82\xf3\xbe\xae\x98\xd3TLf\x02\xf4A\xe9\xc1\x1a\xc6\x8c\xb5\x1e\x8b\xb70\xc4\x88\xcc\xf1\xa8\xd8\xe2\x9c\x85M)\x0f\xecA\xed\xcd\xaa\x0fa\x11=\x01\xb6Q\x18\xc7\xb0\xca\xd9\xb8\x96\x83\xe7Zo\xf9\xe6\xc8\xfa\xe6Z\xf0\x8ccA\xed\xd60\xd1M\x17\x90\xee\xd8\xdaix^\x1e!\xb7\x16\xee\x0c%\xe9\xea\x8b\x83\xbbj\xfe\x05\xd5M\xf8\xdc\xfd\n\\e\x9f\x8fB_\xaaj`;\xa3\xb6\xa4\xd3(@W\x8ek\xc9A=P\xbc\xd53'[\xcf\xbe\xfez\x12\xdar\x0bUi!\xc6\xec\xbd\xfb\x9a\x0b\xc76\xe3\xb1\xb0\x1c[\xdc\xa0\xdf\x9a\xf2\x82\xd5\xfb(8\xf6\xd2\x821\xee\xbe\x01,e\x9e\xa5\x00\x8cE\x17\x18\x97\xe6Y\x85D\x19\n\x863\x0e\xa9\xd7\x8d\x83\xb7\xe6\xf9\xd0#1b4\xf6\xe3\xb2\xc3H\x88_u\xf0\xf2}\x94Kt\xfb\xfb\xfb%\xc3\xdfG\x8f\xb8\xf1\xe4\xc4\xca\xefK\x1f\x9f\x82\xe3O\xfcp\x19P\xf8[\x16\xb1\xaab\xedEBJ\xf3,5\x1b\xe9!b\x86\xbe\xd3o\xb1ST\x01\xc3\xb0k\xb69z\xb4P\xd3}\xfb]\x13\xa29\x85v\xd7\xb4\x18\x8fU3\"|W\xb3|\xd0Z\x8a6t\xabC2!>\xaa\xb16e\x9b-\xf6\xa2\xae\xab\x9bvW4\xae\x8a\xfd\xe6}\x98\xeb53\xee/\xca\x90\xfex\x9a\xcd\xdc\xd2\x01\xf3\x01}G\xd4I\xb6h\x11%\x9c\xd1\xa60\x83\xc3`\x93l/m\xa2+\xf1^.\xcal\xc3\x18\x9e\xee\xe4?\x99\xd80t\xe1%\xfb\xaf\xc5]Y\xc4/\xb4}n\xb4\x1d\xb1\xf7\x9eC\xb4\xb1\xe1b\xef\xaf\xda\xc2\x8a )0\xc1f\x1c\x1f^\xbc\x80m\x17z@r\x91*\xdf\x81\x97\xf4\x96\xcc\xa9\xe7\xafH`wiR?*(\x0f\x1c\xbf\x82/f\xbe\x85\xc3RR\x81\xab0\xba \x81&\x1eY\xd3\xdc\xd8\xd3\xd6u}g\xd8)iVPR\xbe\xf5M\x94\xb4\xde\xf0w\xa2\xa4\xf3(\xbbhCI+\x83i\xc1K<\x84\xb4\xeaG\xa1%\xad\x8a\x1aG\xc95o\x0e\xbd\xc6!\xad\xa7\xaa\xdb\\\x87\xd1|\xf1\xdd\x86\xaa\x1a\x1aie\xee\xc4M\xe0n\x85\xf5[\xe7\xc4\x89\x19\xd9l\xd3b}0\x0f2y\n|\x92<\xc8\xe2Ic\xfc\xd8/\x9b:)*\xf5J8\x16\xd5\x10\xf2q\x16\xe6j\x80\xb9\x18G\xc5(N9\x93T5}8\xab\xde]\xd5\xd9U\x86&_j\x8a\x82ZWO\xea[\xd9IiV\xce\x99/\xba\x19z\xdd:^3b1\x88\x9c8\x1ew\xfb\xe4D\x1a\x85\xde\xad\xa7\xc5\xf7\xedM\xa5|\xab\xf8.\x15}\xf8cW\xad\xf4L\xf9\xae\xd4\xd9\xdaS\xea+\xe5\xcfx\xa8\x07\xcf\x8a\xe5x\xe2\xec*\xdd\x0b\xb5\x99\xc7u\xf4\xb7\xcd\xdbHHg\xf7\xf7\xdc\xbe\x8f\xa1y\x8b\x8d\xd5\xcc\xaeD\xe8K^fw\x85\xd5\xba\xd8`\x9e\x95\x0b\x11\xd6\x19\xd6Dp|A\xbfh\x8a\x16\xe1YI\xaf\xb8\xb5\xd3v\x10\xf6\x01\xa0\xafL\x8b>\x9b\xb4\x12\x8dGM1G\xafY\xfb\xc8\xda\xbc\xc1\x8a\xcdV\x10Y\xaef\x91\xd74\x8a\xf1Y\x90\x17p\x95\x89rrn\x8cjw\xd4\xfb\xf6\x04o\xf2C\x14\xf9\xfd\x8b\xb5U\xe2#S:X+\xda\x839\xab\xc0\xe7\xfe\x1f\xdcx\x80\xd1'u%\xc4\xfduI\xe7\x16|{=\x8e\xbe\x14/\xc08/\xc3\xe9gg$y\x191\xde\x0d\xc8\\\xdb\xe6t\xfbp((\x9fS\xae!\x0c\xcd\x0c\xcb\xd1\xe0\xf2`:\x11\xabC\xedtr2\xc2]\x82\x05\x99Y\x94\xe8\xcb\xba\xaeQ\xe1\xacH_ZQr\xf2\xf7\x87@\xa1\xdc\xd1:\xf7f\xc9\x8d\x0d\xba\x93.\xea\xa6,u\x95\x12q\xb3[\xd8\x81\x15gur\x19e\xc1\x1cmu.\xc95\x05\x12\xdeI\xcbk\xbc\x84\x95\xfe\xde\xad\xaf\xbb\xf3{\xc5Buv\x9a\xcf\n\x8d<\x85\x8dg\xa5i1\xean\xa7[\x14\xe8\x9d\xcd\xba\x93n1S\xab&y\xc9ugw|\xed\x85\x11\xd2\xe9\xdd:OZ\xf7\x1c\x96\xf0\x02\xee\xd8\x1f\xf4\x1f\xb7\xd2\x1c\xe7\xa2\xde\xcet9s\x072\xe0\xbb2u;\x9dPp\xe2b\x90'lW]\xd3\xe4:_\xf0\x1b\xe6/\\\x82o\xbb\x7f\x05\xb1/\xb1t\xe7\xb6`T\x0b\x86N\x19\x13\xbfw\x16\xc7\xdb\x91\xf0\xf0;\x9a\x863\xa9cc\xf4\xf4\x0f\xa1q\xe0\xf44W\x82\x15hZ\xd2<\xfc\xc9\xdcy\x99\x1e\x0c\x15\xd1H\xec\xf7\xc2=\xdfN(\xdaV\xe4\xf1\x1c\xdaW\xdet\xcb\x11]D\x84\x07u\xdc\x0c D\xb3W\x13T\xd0\xadH\\\x8b\xdb\xf2[\xc1\xd3\x8bi\xa2\x9d\xc6Z1N+\x03\xa6N\xa4\x1f=\x82%w\xf0,\xaf\xbd_^{\xc8Cq\x84Q\xb8qp\xf2\xea\xed[%\x9eL\x02$\xa6\xe0\x87)\x8d\xd71E\xc7\x87\x04\xc5\xad<\xe8\x9c\\\xda\xa4\x166\xa0\x85<;\x81\xed\xddf \xbb\x82\x15h\x80\xb0RA\xf1\xa4\xdeP\xa9d]\x1f\x1a\xc5\xa8\x0b\x15\xe8Yxp\x94\xd6\xc3z\x18\xff\xd5\xd1Fa,bAQqv\xa0\xcc\xc3\xce\xc8\xa1\xe4\x17\xf2\xb8v2d\x0c-\x03\xa0\x98\x02\x82@\xc4\x92\xb1Wrhn^\xd0\x87\xdd\x9d\xcd=\x11+U}i(k\xb2r\x8e\x15#\xb7J\xfb\xaeE\xde\xe9\x90\xde4\xdf\xaca\xe6 \\B\xc0DL\xf8[F\xcfds/~\x08\x96G\xd4Id\\\xf6T~\xbd\xbfg27>,\x02Y\xb2\xe7\xc5\xafr\x13\x9c\x13\xc1*\xe2\xeb\xfd=W\xeb\xb3\xa7\x18\xa0\x8a=\x93\x91\xaa\xf2'9\xbb\x86o\xca\x1f\xe5\xb6KB\x8cL\xc2\xcd\x07\x8a\x81\xc0\xfd\x80\xce\xdf\x8a:2\x97 \xe7\xdf\x0d\x95O\xf9\xd3|\xe8\xb8v\x052\x88rE\x171\xccG\x8b\xea\x08\xf5\xa7\xd4H\xa8e\xaa!\x10O\xf7,\xf7'\xf2\x17eB\xcb\x97S\xc3\x04\x86b-\x11\x93\x86\xdd\xaev\xe5\x97s\x93t\xf2\xdc$EZ\x12_3#%$V\x11\x82-\x86\x17\x10\xb1?<\x04[\xea\xf8\xd3xf\xa7-?i7\x9c\xdc\x99\x7f\xd5\xad\x1f\x1b\xb1p\xe8\x96\xd9P4\xfb\x95\xd5\x1a\x89%\x95\xb5$X\xa7C\x8dOA\x91\xc9!r\x8a\x8b\xc3\xfc\x86>\xa7\xa0~\xa8P\xd7>\\d),\xa2\x8c\x9drQL\x1f\x94\xc9\xa1He\xf0K\xbf\x9e\xfa\xe0\xa7\xbe1kA\xd3-D\x8b5E\x94\x89\x07\xf46\xa5\xe1\xdc\xa9\x83\x8fo\xea1\x90\xf2|Xg\x95\xe5\x90\xc8\xf7\x85\x8d\xfdI\xf9\xa9M\xe3`\xa5\xccb6?}\xe9l\xea\xf1\x81\xbf>c\x81.\x98h\xe4\x94B/V\xa7\x81tL\x1c$\xf2l\xb9\xc8\x16\x0bN\xba\xeb$3,\x93\xccX\xfc\xf4\xa2 [\x85\xa5@\xa7\x05\xde))\xd8\x07K\x9a\x9e\x84\xfezM\xd3&\x00\xd7\xcc\xd5\xeb{\xb1\xa3\x0c\xd7U\x95\x06:\xd9\x1bD\x00\xf8m\x85c\xd8\xdb\x11\x11p\xc4\xadKi\xb6\xc2:\x80\x1d\xe7\x1b|?w\xcf\x86g\xf1Y\xf8\x7f\xfe\xb7\x9aU\xa0;\xf0\xc39\xbd=^8\xcah\x90\x8a\x1f\xa4N\xc4\xef/\x0c!\xab\"\xd8@2^\x06\xf2\x06\xf6\x9b\xc2\x13\xd8\xe4\x9c\x87^X\xc3q\xc3`0\x00\x1c|o\x1fv\xf4RJ\x1bw3\x04\x91/ A\xea\x90 \xf0B\xc5\x0d\x85\xbd\xfab\xd0\x10#X\x1c\"\xc8\xf8F\x052-\xa0\xe2\xabP!\x0c\xbe_\x01\x15\x81Q\x99\x84\x87\x98\x00\xe7\xea\"\xee\x8aX\x98R\x02\xaa\xa1\x84\xe4\x95\xa1\x01x\x8f\x07\xcc\xefUkAO\xb3\xe6=\xe5\xbc\xe8A\xf7\xf7\xaeJ\xa0\xd4=\x94F\x9c\xfb\xb5\xe6\xe6UB\xf6u\xbb\xda3\xbe\xd8\xfa\x8caE\x0e\xe2\xb1\x1fr\xe1\xb1x\x86\xd1\x92\x1f\xe3U9\xe3XH\xca%\x186)\xa7\xa0\x04(\xd7\xf5\xd8\xdc\x04%(\x9e\x8b\x02~\x05\x82;\x10\x85r|VP\x03G\xa8\xa8x/c\x0e5\xd4]j\xc9tNi\xbe\x92h\x8ev\x953Em\x9d\x9d\xc6\xb1\xa3 \x87\x93\xa4q\xb7_\x81\xf5\x95\x1f\xce\xc7\xc5}n\xe9Y\xae\x90\x1d7\x98w\xd4t\x9e\x98D\xa2\x94\x8b\x00\xca\x07\xbb\xfb/\x82\x00\xfd\x9b\x11\x02\xb9c\xde\xb7\x85A\x95\xb9\xfe\x97\xc3`E\xd6&\x18\xe4\x8e\xb6\xdf\x16\x04\x15\xd7\xd0\x7f=\x08\xd8\x08\x1f\xb4\x13\xc4\xedA\x13\x00|\x19\xbe\x07Ek\xabm\xf0u\x9e\x8cR\xc8\x01&h\xca\x98\x9d\x8f\x1eA\xf7\x7f\xc4\xcd\x1d\xf2\x02E\xb9\xd3\xc5 \x15\xcf\xbaG\xd5\xdf\x9f\xde\xbd\x13\xbf+\xbcv\xf3R7\xac\xb4\xad\xb9uL1\x10Y#\xe0T\xcc\xc1Q\xdaZ\x8d\xe9:\xa6 \x0d\xd3\xb1\xa6%\x8f\x84Q\xe8{$h\x98\x01\x14\xbdv\xffG\x93J\xb3~5\x12D74\xf6HB\x1f\xd02\xaeK\x9b\xc6\xb3\xf5\xfa\xc1\x8d\xe3\xa2\xb6i\xdc#+\x1a<\xb4q\xfd\xc8m\xeb2\xa7\x0b\x92\x05\xe9Iz\x17\xd01tsxu\xff\xe5\xfb\xfd\"\x8a\xfe\xa9\xfb]c?\xd5z\xbf\x97\xf6u\x1agT\xdd\xc7\xa7\xd5\xdf\x1f?\x1d\xca}\xcd\nv\xd4\x97\x17$HJ\xb5\xdf\xd4\n\x0e\xde\x9d\x1c~)]\xb0m\xe4\x87\x0c\xfc[\x12\x90\xeeT\xa4\x13\xf81\x8a\x02J\xc2\x19\xef\xa3\x96\x9cN\xb2\xa12\x03\xed\x17\x93\x1b\x1dQ0&\xc8\x95\xf6\xa00\x91\x00\x1a\x83X\xa56\xdbXG#Z\xf5\xc5\x81=\x96\xeb\xdd\xa6/\x1d\xc9h\xd7\x97\x9c\xd7\x1b\xc3\xbc\xfe\x1d(\x88)C\xe2\xee\x03\x93\x9c\xd6\xb2\xa7\xed\x14\x03\xd54D\xda7\xb4\xa74$\xbfUI]\xa4#u~\x98\xfe;P:\xae\xb4Q5\xd8Z\xcc\x89\xccn\xf5\xba\xa8\xde \x95'q\xa3ylw\x83\x1bB\xf1[\xd4i4C\x19\xad\xdb\x13y\xdesY\x8eN{\xbdh\xe6\xf6\xa1;\x14\x99\xfe\x8d\xe29j=z\x82!\x8b\x1b=\xbfp\x14\x17\xbcQ\xb5+S\xfb\x90\xbby\xf4z\xa4\x9fb\xe6\xb7\x959\x8ev\xddA\x1a}b\x02\xe9+\x92PG@\xa2\xb1\x9a\x0526\x1c\xab\xc8\x85b*\x15I&aO\x0f\x02\x9f$4\xb1\xe1\xe2t\xb3\x0f\xdd\x0b?\xecjR \xe4\x98>\xedC7\xf2R]\x95\x1c\x8e\xd3\xd1\x10\x13Uy\xbaZ%\x88OG\xbb}\xe8^\xd2\xdb\xee\xf7\xbd\x0b0\x8b\xb5\xe5b_\x08\x90\x1f\xe9\xf2\xf0v\xedt\x7fw&\xe3\xe9Fo6q&\xe3\xe1\xfdt\xb4\xf1l\xc6\x8e\xd8\xf3\xd9\x0f\xae3\x19\x9f\x9d\x0d\xe4/VaJ\x0fgXY\xa4\xc4\x9d\xdc\xe7\x15z\xda\xc7\xc5/\xd1\x8c3\x19\x97\x0f\xf2\xa2\x07^\xf9\xecl\xe0L\xc6~\xb8\xb8\x7f\xcb\xfe\x1d\xbdq\xefyQH\xc2\xfb#rt\x7ftp\xe4\xba\x7fV-\xef1.?&\xedU:\xa7O\xcczB\xad\xf0\xbc\x08\"\xf2]\xc4gU\xbf\xcdoF\x18\xa5u:\xbe\xe0`\\\x95\xf9\xa1S\xd5zo\xf6\xcdy\x1am@\x189B\xd8\x07\xc9G\x08\x03\xe4\x1a;2H\xa3w\xd1\x8d\xdc\xd2\x8c\x97\x80 ;\xc8\xc7 b\x00Og}\xe8\xf66\x94+tdX^\x8a\x13\x86\xdf\xa1\x16\xccH\x1fX\xcdE\xc1{\x08\x0b$\x98\x88\xc3l\xf0\xe1\xf8\xe4\xed\xe9\xdb_\x0f\xcf\xdf\x1e\xbdy{\xf4\xf6\xf4\xaf0\x96\x8f\x8e\x0e\x7f:\xa8>\xea\x0eB\x12\x16\xcd\x1d\x91#\x18CZf1\x04is\xd2/\xe33\xa22\x9f\xf1\x86!\x8e\x95\xd3\x10\xb6w1\xe74\xa2\x07t\x95JN#f\xaf\x9b9\x8d\x10~`|\xf3\x18\xbf(\xa3J\xff\x9dx\x0d\x873\x1b\x9d}\xee\x8d\xa1\xe15\xda2\x1b%Bi\xc2\xf8P\xaf\x1c\xf2\x93#r\xc4\xfa\x82\xe4\xc6O\xbdKp\x8c\xca\x03\x8f$T\xd5D\x8e\xb5\xb5@\x01\x0e\"\x9f^<\xe2\x8d\xe5z\xdc6\x8d\x1d\x1d\x1cY\x1b\xcb\x15\xb5\xad\x1a#G\x1a\x8dl\xe1\xf8l\xdcnB\xeb\xf7=\xa0\xc5v\xfe7\x83\xd6\xdb\xa37\xdf\x0eZo\xc3E\x1bh\xd5)\xd0\xf7\x83\xd6\xc67\x05\xd7\xc67\x85\xd7F#\xc0t\xbb\xbdx}8\x18j\xc6\xa2\x9cKe\xbe\xb7\x0f$\xcf\xe95\x810?\xa6\xba\xb4\xcb\x0e\x14\x1e\x083\xb4\x11\x93\x7f\xd6mC\x8d\xff\x8aj\xfcW\xce\x1e)\xff\xb9\x1b\x8e\xe9\xc7\x9f\xbb\x8d\x1c]c\x8b\x93\xca/\xc6\xbb\x9d\xa6\xb3\xfb)\x9c\x9d\xa5\xb3\x9e[z8V{/\xfd\xe0\x0c\"/\xf9\xc1\xe5\x1c\"\xb6\xf0\x83\xf3\xdf\xf7\x0ec\xc6\xdcj7\xa5\xf7\xdd\x89\xebNJ\xac\\\xab\x1b\xdd\xd4_\xd1$%+\xa3)\xcb7\xe7\xd6\x8a\xb0\xe5\xd1\x80\xdeRO0my\xa9/K\xbf\x03\xbf\xa6\x89\x87b\xb85Y\x0b\xf7L\xfd\xb9\x97\xdf\xe0 \x0b\x96\xcf\xc3\xcd\xb9\xb2b\x12j\x9erW1\xf3>\x8c\xe3(v\xba\xafIJs\x9fZ\xca\xcat\xc1\x99|\x91W\xb4\x97NG3\xce\xfc\xf4\xd2\xe9\xe6\x8c{-\x11\xfesk\xd6\x87N:\xdd\x9e\x15f\xb0\xf4\x06X\x07\x0e\xfbo\xf0\xe9\xf4\x95#\xc0\xa0\xf3\xc3\xf3E\x98\x8a\x1ek\x82G\xa9\xe8\xa5\xd3\x9d\x19\x8fO\xd1K\xa7\xbb\xb3>\xa4\xd3\xbd\x99\x89\n\xa3\xca\x15\x03\xdfN\xf7f\x82+\x1d\xf6a\xcb}\x0e\x8b\xc2\xa7r\xeb\xb9\x0b\x0b4\xf0\xd3Q)l\x87u\xb7\xa8\xd3?\x13z\xa5\xd3g3\x04<[\xb3]\xba\x0d?\x80\xb3;\x84\x1f\x10Z\xc3\x19\xf4\xa0\xe7\xa4\xd3\xd1h\xc6\xd0l(\x95\x80\xb8 \xea\x9b\x1bkW\xc4g0\x82M\xc1\x9e\x85\x8bQ\xd5\x1f=\x02o\x90\xd0\xf4\xd4_Q\xc7\x1b,\xc57\x1760\x88\xa6gCa?LR\x12z\xf4x1\xc6\xeeZph\x96M\xc6\x88\xfa\xdb\x93cA\xd7\x8d\x8e\x00\xdf\x8a\x10?\x90\xcc\xf0\x04\xfc\xdf\x8f\xc4t_\xbcP\xac\"L\xe6O\xdf\x0e\x0c\xc5\xcf4\xbe\xab\x0c\x8b\xc3hg\xdb\x1d\xfc\x88\xb6\xc2E\xaf\xe0\x11dd\xd8L>\x97\x1a\xb4(\x18\xba\x07?\xbez}\xf8\xe6\xa7\x9f\xdf\xfe\xe5\x97w\xef\x8f\x8e?\xfc\xd7\xc7\x93\xd3O\xbf\xfe\xf6\xbf\xfe\xfa\xdf\xe4\xc2\x9b\xd3\xc5\xf2\xd2\xff\xe3*X\x85\xd1\xfaoq\x92f\xd77\xb7w\x7f\x1f\x8e6\xb7\xb6wv\xf7\x9e>\xeb=\xd9?\x0b\xcf\xe2\xee\x03%x\xae\xe4\xf9\x1e+\xf6\xc57\xe0\x06J\x1d5^\x8e3\xfa\xe8\x1b\xae\x88B\x1e\x030\xe4\xbeC\xa1\xed\x9e\xa8\xe3 i'\xb9\xfcK\xa5\x19;\x8f\x06\x08\xbb\xdb\x8d7G)\xbc\x80a\xab\xdb\x1f\xd4\x8b\xefj\x1f\x1b)a\x0c\xff\x01OQ\x01]\xc6\xfb\xaf>:\xa3\xb2\x02cz\x16\x9f\x85\xfb3\xa1\xc60\x03=\xb2.K\x86\x91\x80\xb4\x8f\x12\xf3r\x07\x86;\xa1\xdc\xd3{\xf8\x1c\x18\x94\xc9sH{=\x17R\xf8\x0f4\x05\xe3*\x13~\xa5\x13\x88L\x11\xf0\xf2%\x8cv\xe1\x11l\xee\xec\xb8}P\x8b\x9fVK7wv\xe0\x11$\x8c\xec'\x98\x0e\xe4\xc5\x0b\xd8\x85{\xc8rt\x88$:\xa4\xba\xe3U,\xd1\x10dH\\\x82\x03\xfb\x01v\xf1\x9a\xe6\xab\x86\x04c\x18=\xcdu=\xe5\xb6\x86\xda\xb66E)\xbe*|\x0f\x19h\xd4:\xdb\xf9\x9b1\xa6\xdfX\xc4\xd1*\xff\xe2\x04(\x16 \xbd\xc7\xaf\xdf\xd4~\x15C|0)\x87S\xd0\xf67'm\x11:\xe6n.F\x82b@>\xd2Hk2\x0b\xad1`\xe7V\x05;q\xe7g\xd3\x08\x97\x8f-\xfa\xee\x16\xf2|J\xe9\xa6\xaet\xb7R\xb8\xbb\x05\x8f\x00Mr\xd8\x8c\x9c\x88a\xecS\x17z@\xa7\xa9\xf9R\xb5\x8c\xa0[\xfc\x0e\xf1\x1b\x8f\x08\xc6\xb0Y\xa0k\xa9\x9d\xa1\xae\x9d\xedZ\xe1\x8b\x17P\xedqw\x1b\x1b\x1e\x15\xc8\\j\xb9>\xc0\x17/j\x0d\xefn\x97\xdb\xebC\\F\xbc\xfc\xd7Ws\x10f\x89\xb6\xa6\xff+\x87\x9c\xacs\x08F\x85\xe1\x03\x99\xb4\xc8\xe2\xd1`\xf0\xea\xf8\xca3\xdfd\xcf_\x91\xd7\xb8*\xdcx\x1cP\xdb~\xe3\x97\xd2A\xee%\xccv_\xf8\x9c+\x83\xcd\x1ed\"uh0MgE>\xb0\\]\xcb\x01>\xeb\ny\x15\xd5\xb2q\xb3Q\x87\x88\x89\xe3\x87\x10\xdb\xadx\"\xd1$Jj\x16\x8eB\xd6\xcf\x1a\xbb\x96\x9f/\xb2\xd6A\xe6\xa7\xb9\x0fVM\x98!$\xf9\xa1H\x9a\xc1\"\"[\xb4\xca\xdf\x91#Ny[~!\x83S\xd7O\xfc\xb3\\\x8dZ\xec\xfa/\xdc\xc4k\xe2\xc7\xc9\xbf\xd7.\x16\xbe\xbb\x96\x9dJ\xc4\x8c\x0e\xe2\x98\xdc9\x99t\x81\xcco{\xd8\x16\xce\xbel\x0bg\xb8\x85\xf5[7j\xbdu}\xf4\xe7G\xc3!\x85\xe2^\xd1\xbb\x84\xbd]u\xf17\xb5B\xa6\xe9\x8c\xd12\x7f:d\xe7\x0c\xfe\x9d\xcd\xfe\xe9hoXG\x1dW}]\x0d{&R\xd1\x18\xd6\xd1/\xad#\xd1\xae#1\xad#[-\x82\xab\x15\xd5@\xdc\x07_\xc0.\x12\xb0\x8b\x10vF6\xc6\xff7\xd8\xc1\xe5s\xfb\x81\xfb8\xa1\xc6\x0bt\xbdw\xe1\xf7\xdb\xc4\xd6#\xd6\x0f\xc1\x10\x08L9\xc9\xc2\xbe\xb0D\xccIm8Mg\xd6\xfd\xf2mQ\xdeD\xe9\xff\xed<*\xffH\x9ed\xe1\x9c.\xfc\x90\xce\xbfR\xfbb\x81\xc3\xc3\xa1\xea\xd6\xf2\xcd?T\xa6\xbb\x8e\xfc\xb9\x8c/f\xeb]'\xcd\xd94\x7f\xffn\xae\xd1\x7f$Ob\xba\xa4\xb7\xdf\xe5F\xe5\x01\xca3\x1f\x03\xd5`\xbd6\xe7S\xeeW\xa7\xe7\xb3\x19\x11xr\xf6\xc4\x99.\xfd\xd5\xec\x07\xf7\xcfO\xe4\x05\x87\xbez\xac 9\x00\xd2z\xfa\x89\xd4\xbe\x0f\x8dw \xfc\xc2C\x9a\xf2\x86\xd3\x11\xcab\xf2\x16\xe1%\x93K[\x9c\xd8\xac'4\xeb\x9d\xa6\x85!P\\\xb2 *\x9a\xa9\xb5\xf2\xbd\x8f\xe1\x7f\x0e\xc4\xe56Q\x80\xceo\xe1\xaa\xd0-\x19\x13\xf5\xc1\x001\xbc\xd0*.H\xd3~U\x96\xf9J*\x913j\xbc\x83\xb6&1\x0f%(\xd6\x05a\xb0\xea\x01\x1d$Q\x16{\x14z\xac\xc0\x08X:X\x06\xd1\x05 \xc4\xd5_o\x1f\xbaK\x1e\xb9\xaf\xc8D_\x11\xf5\x9fV\xca3\x9b\xd2\xaf\\5i\xd6.\x94_\x08`\x1f\x9eU\xc8 \xec\xc3\xa8r\xad\xb5\x80}\xd8\xda\xac`\x03+\xdb*\x97\xcdY\xd9v\xb9\xec\x92\x95\xed\x94\xcb\xaeY\xd9^\xb9l\xc5\xca\x9e\x96\xcb\x96\xac\xac2\xbe;\xd8\x87\xed\xcaX.XY\xa5\xdfsVV\xe9\xf7\x06\xf6a\xa7\xd2\xc7!\xec\xc3n\xa5\xbd[VV\x99\xdb +\xab\xf4\xf1\x8a\x81\xaf\xe2\x93x\xc5\xca*\xef\x1e\xb0\xb2\xddr\xd91\xe6/\xacT\xfc\x80\x85\x95^N\xb1\xb02\x95\xf7\xb0\xafA\xfa\xe1\x18\xbaggC\xcdQ\xb4\x87O\x88\xe6\xc9S|r\xa1y\xf2\x0c\x9f\xa4\x9a'#\xdeQ\xa8{4\xc2G\xd7\xbaG\x9b\xf8h\xa1{\xb4\x85\x8f\xaa\x0c\x1d\xfbl\xf2\xa1Wu\xd1\xec\xb3\xb5=\x86\xc7gg\xdd\xc7\x9a\xb1\xf3\xbe\xce\xce\xb4\x9d\xf1\xde\x8et\xcfv\xf9\xd4\xceu\x90\xda\xdc\xe2\xad\xbe\xd3?\xe4\xad~\xa8(\x1a\xcaU\xdf\xb2\xf3\xba{\xd7\xedC\xf7\xaf\xec\xbf;\x9a\xe0w\xf1\xe7\xf0\x84\xfdA\xb6\xb7{\xcc\xff?b\xff\xe3W\xfe-\xc2\xaf\xfc\xffc\xac\xbdX`E\xf1\xe7\xcd\x9b\xeeL\x17U\xe3\x8f:\x9d,\xb4\xb6\x95\xabhn\x82\xb2ou-\xeb\xf3\xc8\x19\x9b;;.\xe7\x85n\xbb<\x80\xeff\xb9\xad\xdc\x1a\x19\xab\xef\xee\xecl\xc9\x172\xf1\xc2\xb6\xe6\x05=\xd7\xde\xe1\x8dlo>\xdb~\xb6\xbb\xb7\xf9l\xc7u\xcb\x11q\xbdhNa\x1d\xf9\xa5\x8c\xb9<\x00\xe2\x8a\xdc\xc9L\x0c\xcb\x98\x92\x94\xc6<\x19\xc3\xf0\xf6\x8d\xf8\xe8X\x07\x1c\xe8'1\xd0\xa7\xe5\x95-\xfd\x92\x87\xde\xd9YW\x84u,\xe28\x0e\xf1\xfd\x8d\\Vv\xa1\xa7\x08p\xba\xc8%G\xf5\xc5R\xa2X\xf3x\xe1y\x98n_\x06\xc9\x961\xa7\xdf\x93\xf4r\xb0\"\xb7\x0e\xa6\x0c\x17\xc5\xf7\xf7\xb0\xe9\xcah\xdfW\xfe\xfamxM\x02\x7f\xce\xdbR~\xab\xa1\xb9\x17At\xf3\x8e^\xd3\x00\x99X?9\x8a\x18L\x97\x0e-\x9e\xb8\xd2\x17I)\x93\xbd\xa4w\x81\x08\xc1]:YMLu=%p\x93Ym\xe1\xdb\xff\x8f\xcf\x06\xcds(\x12\xa2pk\x0d\x9e\x845\xae\xdc\x1b\xa4\xf9\xd5\x0c\x8f\x04\xe0?\xe7ARG\x90\x89\x86X?\xac=\x91\xe4!\x18\xa8>\x97}\xc8xg\x19^\\\xab\x8f\xa6\x19\x1b_8%3\xd8\xaf\x06\xc3\x05E\xcd]\xc6gGA1\x868\xd8b\"\x0d%s\xdc\x89\xe2\xf4\x17z\xc7\xb3\xcf\xe4?\xca\x01\xddC\xfa\x9b?\x97\x01\xd5\xf3_\xf7\xf7\xf0T\x86C\x0f\xa3\x8ft\xc1\xdb\x10_\xd5\x16\xc2\xe8U\xb4Z\x93\xf4=\xdb\xce\xbc\x8eR\xa0\xd6\xf4\"\x86\xdd\xe8zu#@\xa9\x14\xa85\xbf \x84\xbcLOd{\xe5\xf0\xb6\x1cu\x1e\xd3`\x85E\xe4\xfaR\xb6F,\x99g\xec\x0d\x92Ra\xaf\xc0K\xb3\x84\xce_\xabOJ\xb1\xfet4\xe2\xa3v3!\xd2\x8b\xdd\x14\xc1~%\x9al\xea\x8at\xc6\xfc~nc\xc4\xf1\x9a\x8d-Q\x83\xa5\x81\x0f/ y\xeeb\xda\x064`\x97\xd9\xfa\x85K\x1f;\xfb\xc1w\xd1\xec\x87\xfb\x8a\x88\xac\x16\xa2\x83\x04\xb3\xbd\x95\x9e\xb0.ydW\x1f\xad\x86\xf8\xf7P\xd5C\x9c Q0\x14x\xdd\xdb\x87\xc8eC\xec\xedW]\xcb\x04\ngV\x10\xbd\xb6\x85\xe3\xd6\x87\xdb\x95\xe4\xf2\x07H]k\xdb\xef\xea$Z\xca\x1c\x08\xb1\x05\xc3>\xfe\xd5\xbe\x8e\x9f\x8c\x0dmm\x96\xa3T\x8d6wQ~\xdf\x1dU\xc3`m>\xdba\xbf\x18\x87RxP0\x96D\xfc\xba\xbf\x87\x9d\xbd\xad\xed\xed\xf2{\xec0\xdeb\xbfx~\x8a\xbc*+\xdf\xadt=\x1am\x8fF#\xebD\xfef\x9c\x08N\xb1\xd2\x0f\xb6\xcc\xbe^\x14__\x15_\xaf\x8a\xaf\xc7\xc5\xd7\xd3\xe2\xebM\xf1\xf5\xd2:\xac7\xc6a=\xf9\xfd,\xfc\x01dT\x13u\xb9\xe57\xb6\x91\xfe^\x0f<\xf2#cs\xcaE\xbf2Y\xa5\\\xf43\xe3m\xcaE\xbf\x01\x06\x99\xae\x0f\xf2/\xf6\xd0\xebl\x1c\xbej\xe7\xd4\xd1\x84B \x0c\xe5\x0b\xdc\xe9<\xeeG\xfd\xe9{N\x07j\xe5\x8cS\xfd$\x12\x92\x96r\x96TV\x12\x83\xf3t\xde9\xfc0\xca\xb0\xec\xbc\xf8z[|\xbd)\xbe^\x14__\x15_\xaf\x8a\xaf\xc7\xc5\xd7\xd3\xe2\xebe\xf1uU|\xbd+\xbe\xae\x8b\xaf\x1f\x8a\xaf\x87\xc5\xd7e\xf1u^|\xbd.\xbe\x9e\x14_\x0f\xc4\xcc\xcc\x89^49\x1f\xd2\xbaJ(7y\x18r\xba\xaaP\xd9^\xcfv\xb3\xd5\xf9$\xc8\xae\xd2\xbf\xafD\x05\xfaM\xaf\x04f+\xf7\x96\x8d\xfdoZc)\x13\x83\xfd\xc5\xc3\xd4\x0e\x12 \x9f\xe7rd\x1d\xf6a\x01hQ\xcdX\x15\xe4Ya\x03\xde\xe3\xe9\xf2\x92[\xf1vA$\xd2\x9c\xbeg'\xc3\xac\x8f\x88\xe9\x1b\xf4\xdc\xb9P\xc1@\xf4\xb5\x00\xd1n$\x1c%\x0e\xbaq\xa8\x7f2\xb7&\xc6\x85\xdcM\x00\x13\x08\xe1%<\x83\"\xed\xd2o0\xc6\xf2\x9fa\x0c\xbf\xc2\x98\x8f\xb2\x13\xf1\x87\x7f\x871\xfch%m\x7fU\xa8Fu\x85\xe8`\x9e\xadJ\xbc\xb7\xe9.\x84\xdf\xfe\xa6\xd5\xdb\xdf\xee\xe3\xc7\x86\x9b\xd9N\x85!\xe3\xa1\xfd\x19H\xde\x16!\x08\x14W\xd3\xc7\x18\xa0\x1dz\xec\x9b\xfeF\xd9\xcf\xb9\x0b;\xe9\x94\xfc\x17'\xed\xf3$\xc6\xbeH\xdeL\x14\x85\xa3\xd1eY\x80\xb0Q~\x92\x1f)G\xe97\x02\x94\xdcYd\xc0H}\xa6\xd9\x90\x87D\xe3\xd9\x82\xccv\xa8 p\xa2\x9ah6\x9c\xe5\x19H\x15T0\xc5n\x04\xeb\xbd\x0d@\x9e$\xa9\xbe{\x8d\x96\xaf\xe8Q\xfd\xf7F?jM\x06{\x90o\xff\xd8\xf8\xb6\xc0\xed\xc2\xe7\xe51z\xbb<~\xdcuM\xf8\x0e\xb2\xf5_\x9b[\xbfg\xad\xff\xc2\xf3\x04r\xbca\xcd\xfe\xe4|dE\xbe)M\"\xb6\xfess\xeb/\x8d\xad\xb7\xc67(\xcb\xee\xb0\x0fO\x9c\xb3\xb0\xe7:\xd3\xdf\xcf\xc2\xd9\x0f\xee\x93\xa5~W\xa9\x1f\x94\xc9\xb3\x9a|\xe1r\xd9DP\x96\x0c&\x90\xa1\x9aA\xb8U@4\x08H\x92\xbeeo\xf0\xfc\xe0\x7f\xce#\xd3\x0d\xfb\x98\x7f;u\x0d{Z\xfd\xa0\xa8~\x16\xcaP0Ct\xffd$^\xfe6c,\x88\xc9k$l\xf5#b\x0c\xc6\xaa\x0b\xb01\xc1\xa7\xfaam'\xc0\xc3\xbc5O\x04\xc4\xc9\x15O7\x1b\xc6\x0cyJ\x18>\xcb\x00o\x80|\xb6\xd3\x13\xe81Y\x0f\x13\xdc38\x88\n0a_\xc7<\x9f\x1d\xf4\xe0\xcfN\xc0\x85I\xbc\xb5\xb0vf\x8ey \x05*\xfa\xc6J\x9f\x19z\x12\xb7 \xdb\x7fk\xc4\xf6\xc7\x98\xac\xa4\xf9~O~rA\xba\xe0\xca\x85\xa4l\xe4\x91\x84\xce\xb4\xc2\x08\xbd\xe4\x02\xda.\xa0\xe7\x0e\x13\xd7v\xb7F\xc8\x04\xd4\x83\x95\xfa(\x15\xf3wv\xb76\x87PD.\xdd\xda\xdeb\xc26*\xa6\xfepF\xc3Mt`Na\x83\xb7\xce\x93\xc9l\x88\xd7z\\\x86c`c\xbc\xdb\x98\xeb\xbc\xde\x0b\xab\xd9\xde>t\x90\x93\xf9\xe4`Zh:\xf5g0\xe6\xa7\xdc\x1fz\xb74\xf5#\xafSmk\xe6\xf2\x8c\xa2\xfa\x86D \x08\xf3\x92\x95t\xba\xfej\x1d%\x89\x7f\x11\x08\xc7\xf71\xf8BU\xc9\x8d@x \xb2n\x13c\xf7\xd9\xb1\xcb\xf3\xbf\x983K\xc1\xbe\xe4\xd7\xa4\x02\x10\xe3\xafin\x01\xe221)\xc5\x95\xd2\xea/B\xb6\xdfx\x8em\xfd{\x9b\x9c\x1e\xe5\xcf\xd8(\xba\xbd..\x97\xdc\x94\x1b\xfc\xb09\x0b\xbb\xd6\x19\xfed\x14\x84MCf\xb8Q\x90\xd4\x8d\x11\xa6\xf7\xb4\xf6\xf1g-\x14\xd1\x1aAq\xbcV\xc9k\xce\x1bTl\x87UE\x96\xe2CY+:\xae2\x90\x85*\x9d\xc0\x0b\x08\xd8\x1f=\x07\x89\xa2\xa3\xe31)oJf\xee\xa0\x88s\xc0P\xc4\x1b\xe4\xf6\x06\\\xcb\xdd\xf1*5\xba\xdc\xbc\x80aR\x9e9\x90\xd3XY/Z\x80\xfaR\xdeN\xder\xa5#F\xfal\x82.\x95\xea]\x98\x80\x87\xdf\xc7\xd0\x9dt\xfb\xe0\x0dr\xbb\x04\xdb\xb1\xc2\xdaXp\x95\xa8\xb8\x1a\x99b33>\x0e5>N\xdfh>\x91\xf1\xbb\x00\xb5K\xee\x13\xa1\x94\xb03sa\xa1\xe2\x06\x0d\x80\xfaA9/\xa9\xf5\x85\x11-\xca\xf4\x99'\xe8\xf7D\x82\xfe\xc7/1k\xbf\xe0\xfdc \x9eG\xd7i\x82Wo\xfc\x04\xe6i\xc2\x10\x02\x8f\x9bN\x9a\xf2\xb4\xa6\x8b\x19\x9f\x99\xf9\xe41OY\x8a\xc3\xb1\xb6\x8a5\xfe\xb4\xc6&K+\xe6w\xec\xfa\xd1\xffU\xd2\xf1\xf1M_\x95\xd9\xd5\xfb\x83|\xc8a\x9fo\xe5\xb0\x0f\x9d\x11F\xc1\xc9\x7f\x0e5\xd9\x82\x13\xc8\xb1\x847Q\xcd\xdb\x9a\x13?U\xa4}\xc1#\xc4\x95\xa5\xdcjVS\xd6|\xd0\x87E\x1f\xed?\xea\xdeR\x0cAQ\xd9\x91?B\x17\x1f\xf9\xa4\xae.C\x85\x9d\xa3h(\xc5\x8dXqI\x92\xcb\x04\xa1\x8b7f\x85o\x06\x02\xeb\xd1#\xb6\x05\x95\x02T\xdb\xdc\xdf\x83P\x84K\xa5\x02\x12\x86\x97 R.\xfb\xa8*u\x85Z\x8aVn_\xa6\xc1\xcc-\xa0\xdf\xfd!\xa6\x8bs\x86\xe3\x15\xf1\xderQ\x8d\xd3\xc2\xb6;\x9a\xc6q\x08\xba\xf2}\x9eR\xdc\x00W\x97\xaf\x1c\xcf*\xab\xde_\x8aU\x96\xc7\xcd\x04\x9cN\xcd\x96I\xa3!\x92\x9f\xb2r\xb9\xaf.\xb0\xc5\xa2\x95\xdf\x1c\xa7\xc4\"\xe0]V\xeeYM\xb9\xf1\x91\xd6H\x1f\x04y\xa5\xe8\xc2%~w\x9aT\x80J\x0e\xd9\xe2$\xd0\xb4\xa3\x145\xb4\xa8\xbe\\\"u\xf9u\xe7*K\xd0\x92\x80\xc0\x05O|\xc3\x13\x98\xdb\x8c\x10\xa1\xa4b\xe5,\xc4e\xe9\xbe\x8d<\xe72\xd8\xc8E\x95=\x135\xc4\x823\xc8\xf8\x0c\xa9\x1d\x0c\x89$\xae\xb5D\x88\x89p\xca\x18\x9c\xcb\xa9?\x9b\xf5\x05\x8d\xe1\x96\x80\x19O\xcb\xce\xffq\xbc\xc7\xdd\xd5b\x07 \xe4\xc7\xbd\xc1\xbe\x15\x1e\x15L\xf0\x90\x89\xe0e\x1dO,\x1d\xd6,\xe77\x9f\x88 N\x13\xc6\xa8\x8a\xaf\xd0\xc5\x8d\xd7\x93\xaf0\x0e\x83S\x81\xd2\xdc\xd4\xa9$|\x1a\xc1\x17\xf4<.z\x1eC\x97\xe1uo_\xed\xdd$\xedHZk\xa2\xee\x89}&g\xe4K\xda\xe2\x14t\xe4QNG\x90\xc9\xe3\x9d3\xd9\xac\xbe[m[\xb5b#\x914\xec\xd3\xa0y\x9fz-\xf7i5\xa7\xb6\x97\xa3o%\xa7vV\xbf\x8a\x9f\xa0\x00\x8eR\x93\xa0`\xfc\x18\xc2\xbb\xddn\x1fq\x02\x95 S\xb6?\xbci\\`3N\xb63\xe2\x87_\x01\xd22N*\x8dq\x04\xcb\x8a%f2\x96q8\xc8x\xa3eF\xbd\x0e\x17\xaf\xb099\x14R\x1e\n\xb2\xe6Y{lR\x8f\xf5\xee?X\xaf \xeb\xbf\x11\xa3\x9a\xd0\xa9\x0b]\x05\xa9\xeac(\xa8\xa5\xf6`.\x1d-e\xf0~\xc9iRx\x00\xdb03\x93\x98i\xc16\xc5l'4\xd9\xe8\xa8\x84\"D[\x1d\x95\xe4)$4B\x12J\xcad\xa6%1\xc1\xb7\xba\x1b\x0c!\xc4W\x9e5\xb8Xy\xfb\xc2g\xca\xc2\x13\xce!\xcd\x9a\x16\xfd\x9fAF\x1a\xd6\x88\xb4X#\x85\"\x84&\x8a\x90\xf3\xbe\xd3xV\xdeA*1\xf091h\xd8\x8c\xae\xd0U\xb6\x82;Q7\xdc\xb4+S-7\xc2\xbe \xf0\xad6\x9cY\x94\xcc\xb7!\xd7(\x89@\x03I\x93\xf4X2\xd5k\xf4m\x84\xaa*-\x0b\xb98F.\x02\x8a\x9eT\x10-\x801/|,i\x048W$Kz!K/'\x95\xf9\x87G\x8f\xf8\xc5\xa4DbT\xe0\xd6\xc1]+i\xe2K\xca\xab\xc1\xc5N*\xc4\xce\xeeKu=\xfed\xee\xa8.\xd2\xe9D\xb5\xff2+\x03sm\x94.\xd4\x8c\xce\x1d\x87\xc7\xbb\x94-\xa3\xfb\x97\x89~*\xb4\xb3\xbe\xa2\xb9\xe5c'O \xa6\xd1\x80\x98}\xec7\x94\xc0\x14\xa1zO[Xy\x15ia|\xdc\x9c1\xf7ui\xbc\x85\x0fy\xbd\xd4\xed\xf3ce\xe0'<\xb4C\xaa\x89\xce.?Uf851\xc3\xd4I\xa7\xfeL@\xcd<\x12{G\xd5X\x11\x15K\xb8\xc8\xd6y\xc4y\xeb\xb0\xee\xc4\xca\xd0$\xe2dZ\xb9R\xf5\x0d\x97\xa8\x90\xaar-\x82,\x9a\xfa\xd3p6\xabL+\xd5\x98\x03\xe6\xe12b\xbb\xd2\x8fR\xab\"\x9b\xb5s\xc43\x02\xb0S\xe8\x1fUOB\xa9\x97V\xcc2q3\x84\xc8\x03\x85}6GZ\x9c\xb0\x13\x08%\x8b\x85\xda\xcbR\x0e\xf2b\xe7\xe5n\x9fr\xfbR\xaadh\x1f$dA_W\xac\x15,\x96{|\x8a\xf1\x80\xde\xa64\x9c;\xf5}\xc4m4\xc7@\xca\xab\x85'~et_\xe4\xf6\xa3z\xb1Z\x07,\x0d\xe9\xd5\xac\x07x\xd9\xd6q(\xecC\x8f\x9aC\xcaX\xa3\x99\xf3h\xe1\x97i\xba\xd6\x04\n\xe7\x0fo\x12C\x0cq\xd1\xdfS\xc1\xec\xd57T\xd1\xb8\xae \xd9zC\xf3\xdb\xdb[\xf6\xf6\x17\xda\xb1+-l\x8e\xec\x0d,\xa3\xf5%\x8d\xedm\xec5Lr\xe1\x07\xa6P\xebzs\x04\xeda\":\xf9\x16\x98%\x1d\xca\x1a\x83\xc4\xd47~d\xbc\xde\x99S/\x9a\xd3O\x1f\xdf\xbe\x8aV\xeb(\xa4a\xea(Q:\xcfzh\xb2\xc0\x18+\xcd\xceM\x07\xdc\x7f\xc2_\xdc5!{NT\xaa\xf1\x05$\xed\xd1\x9e\x8c\xdcQ\xdc\x0f\xa1\xcb;R\x9d\xcd\xf95\x0dZOO\xd0#\xde\x85X(6\xd1H\xf2\xd1#\x10G\x0f\x0dkS\x8cP\xb2\xdbG\xb6\xa0\xfe\x94'\xf03\xd0\xbe\\\xf4I\xd1O\xf2\x8f\xc8\x0f\x9d\xee\xa3\xae[!o}H\xb9go 2U\xb0\x94.\x92\xd1@b\xfa\xfb\xfe\xe4\xd1\xac\xe7\xeeO\x9c\xe9\xef\x8f\xb8\x95\x04\xae\xfa?>?G(\x86V3\x01i0\x159\xe8\xb4i6\x8fb\x156\xabg\x0b \x9b\xe2\x87\xfc\xba\xd7\x89\xa7\xfe\x8c\xb1\xc9-x\xa6\xf8a\x08^\xf8FnU}\x1a\xb9o\xe4\xde\xee\xb6\xd67rk\xb8\xa9\xf1\x8d\xec\x1e\xde\xae\xa9\x97\xd2\xb9\xaag+W\xcb\x14\xdf\x97\xf2\x93$\x7f\xe2\x87-\xc8\xb8\xe1\xcaL\xdc\x94\xf5a\xdd\x87y\x1f.\xfb\xe8\xc9\xa8\x89\x01\xba2X\xe2.\x0d\xe5w\xa8\xf9-\xafSE\xb5Yl\x8a\x92?\xf4\xe9\xdd\x9ar\x9fh\xa2\xe6R\x06\x950\\\xe8\xcf\x10\xb9+\x03=\x02\xe1\xddK\x1du\x04.\x04\xec)\xec\x8bh=\x1c\x10)W\x1a\xd3\x01Y\xaf\x83;'\xeeW#>}6\x0c\xf0\xdc\xech\x8f\x16\x12\xb0\x01\xe6\xfc\xedJ\xbc\xa0Kn\xb7\xf2R\x90\xa1P\xdei\xa0\xe8\xc0Z\xb9f\xcf\x16\xad\xc6t\xa35\x97dC\xa2\xb8\xb3t\xbbj\x01\xce\xb9\x9ac\xe3\x90\xed\xe0Z\xb59\xec\x83\x08\x05\x1fe\xa9s\xd3oa\x94\"A\x91\xc2\x068\x08\x0f{\x00\x88%L a\xdc\xdaB\xbep\xed\xd6\xf3s\x00ga\xabn\xdf\x06\x88\x1cZ\x1d\xad\xe7\n2\xa0Av\x00\x13\xb8`\xaf\x8c\xf9\x9d\x8e\x8a-5 M\xdf\xe3m\xd3\x1a\xe81\x97\x01\xea\\\x0bz\xb6Bl,$^f+\x1a\xa6 \x0f\xe4\x9f^\xfaI\x1fo+\xa8Ei\xc2^V\x90\xad\x10\xbf\x9b\x97\x0f\x14t\xe5\xbd\xd4\x91\x80 $\xab\x02fkmC\x9f\x1d\xd3\xc2\xb3\xd1-]u5\xea\xcd_8\x97m\xe4\xf0\xfa\xc6BSyG\xd7\xa8\xdb\xaf\x8cT{r`\xaa\x0bF\x85\xee\xefQFrB\xae\xfbA:\xd9a\xe7-\x99\xfb\xe1\x92g\xdap\x18\x95\xec\xae\xc8\xedo\xc4O\xbbty\xbb\xb5PS\xe5~p\xa2{#\x97u\xff@ *\xdd\xeb9\xe1-]B\x0f\xab\xac\x05\x82\xe43\xa1\xaf\x0f\x9d\xd8\xa9\xc4\xcd\xccs\x08\x15\x0c\":`\x8c\xc1#\xe1\xe3\x94\xcd\x0dH\x02\xb9|\xd9\xa9\xd8O~\xd6\xef\xd0\x1a\x80\xc6\xa0]\x14\x14-\xba\xe7\xe7\xd8\xfe\xf99R\xe4\x7f|\x86I\x15LZ-\xa89\xe8\x16\x8fC\xe7l?s\x1di\x15\x85\xe2`\x9f\x81vw\xe8\x0e\x16NUp\xee\x832\x0c\\\xbc>l\xba.\xeb\x7f*\xc3\xd9u\x1c\xaa\xda\x8c\xa1\x9aM\xe78\xd5\x14y*\xd5G\xcd6\x9e\xb0*0\x8cl\x87\xa8\xebK%\\\x8aFx\xf9\x9c\xd0\x1cM\xd0@\xf6\xb8\xae\x06\xad\x9a\xc1\xfe\xe33\xbf|\x19\x8b\x83\xa6\x82z\xde%\xf5\xae\xc6\x8aEv\xebM\xab\x92\xf5\x02\xe5\x8b\x8d\xdb\x82\xe8\x1b\x8f\x1d\x0fC6\xf0:\x0f\x1b\xd9\x97\xed}\xde\xdf\x18\xc7\xff\xcc}\xe0~oV\x1a2p\xed|E[\nx\xab2\xb4\x90\xad\xf7\xb4I\x88\x9d\xad\xbd-m\xdc\xa1\xa7\xba\xb0C\xa1\xb3]\xad\xcd\x07\xfft\xbbZ=\x10\xe5\xd5\x83\xc0\x13\xbdVG\xb9\xe0\xf5w\x86\xa5\xd3\xf0\x99\xf2+\x1a\xf8![\x1a\xa7\x82U\xeb\x1a\x19Z\xf8\xe1\xfc\xf5\xf1\xfb\xa3hN\xc7Ui6\xa6\xe1\x9c\xc6c\xf0\x07\xfc[e\x92\xe1*\xca\xc24\xd7\n\x1d\xa4\xbc\x11\x7f\xa0\x7fR~\xfb\x9a\xc6\x89\x1f\x85cH\xaa\xad&x\xc3v~\xc1\xe8\x05\x9d\x7fZ\xcfIJ\x931d\x83r\x89\xe15>\xd2\x93\xec\"\x8d)}\x1b\xa6\xd1\xab(L\x89\x1f\xb2y\x14\xc2\xabB\xa1\xf5\x91\x1a\xcf\xcf?\x1e\x1e\xbc:=\x7f}\xf8\xeb\xe9\xf1\xf1\xbb\x93\xf3\x9f\xde\x1d\xffx\xf0\xee\xfc\xe7\xe3\xe3_\xce\xd1CWk9e\x7fM,\n{\xbbU\xc5\x8ar>\x87\xe7iL\xa9.i\xf8\x92\xa6\xaf\x82(\xa1I\xfaV\x10\xe47q\xb4\xe2\xab\x12\x0f\xccO5\xba\x16\x8aK\xc6*\xc8\xcaM1\xc3@\xb9b\x18\x88e\xa0\xf3|\xcc\xfc\x02\x921\xfbR/\n=?`\xcb_\\h|\xaepH\xeboAL\xf6\xf6\xaa\xd1\xca$5\xa9\xeewNM\xf6\x9e\xea4u\xac\xbc\x1a\xdd,\x13\xe5U\xaa$\x88\xe1\xd3j\xbf\x81(\xaf\xf6\xcb\xe9\xc9\xde3==\xa9\x11\xc35'3\xa3*Y\x9a\xf3\xf2\xcd\xea\xe1w)\xcaG\x95\xf2kQ^\x9d\xeeJ\x94W\xc9\xe4R\x94W\xc1p'\xca\xab`\xb8\xe0\xe5[\xd5\xf6\xcfEy\xb5\xfd\x1bQ^\x9d\xef!*\x18\xdb\xf0n|{6\xc4\xce>D>\xeeP\xb8p/\x07\x87\xd74L\x0fW~\x9a\xd2Xl\xf0\x8f\x94x)\x96\xbf\xf3\x93\x94\x864vVn^\xf7C\x90-\xfd\xf0\xe7\xecB\xd4V\n\x8f\xe39\x8d\x1dR\xad\xfb)\xf5\x83D\xd4.Q\x0bga\xab\xcaj\x9c\xc6\x84\x91d\x12\xa0\x80\xde<\x82\xe4\xc7\xbb#\xb2\xa2\x9a\xfbC\xf69\xf1W\xeb\x80*\xd5\xc7pS\xa72\xecs\x18\xa64~G\xc9u\xb9v\xa6\xaf\xfd\xea\x92\x84\xcbrMCv\xb3\x13\x1a\x94\x07<\x86s}\xcd\x1f\xe9\"\x8a\xe9\xdbp\x9d\x95\xab\xd7]\xb4>#d~\x8e\x92\x02\xb8\x020?\xb1\xb5\xf3\xbd\xbc\xf8U@\x92\xc4\xf1\x8c\xf5O\xe9mZ\xa9|\x89\x95_\x1f\xbf\x97\xd7T\xa2\xaaR\xf2*\n\x17\xfe\x1235\xb4\xab\x99\xb4\xaey\xc1\x17}\xb5f%\xe5\xb1\x96\x0b\xdf\x10/\x8d\xe2\xbb\x16\xb1>\xa5\xc2\x81\xde\xc0\xba\x1a\x98\xb2\x80\xa68\xcd\xf3\x0d!\xc8\xf5iL\xc2\x84\xf0\x1e\xee4\x15\x7fd\xbc\x80\x1f.O\xd2\x98\xa4ty\xe7\\c\xa5\xda\xd8\xc3k?\x8e\xc2\x15\x0dS'0K\xf3\xf8\xed\x8b\xc8\xbf\x99F\x08\x00\xfb\x8cw\xa9\x03\xa8Kb\x9flxY\x1c\xd30\xed\x8eu\xf7 \xbc\xca\x9c\xa6\xc4\x0f\x12k\x15?a\xac\xcf\xdcV\xe7\xd2\x9f\xcfih\xab!\xfc\x02mU\xae\xe8]r\x19\xc5\xa9\x97\xa5\xd6\x01\x05\xe4\x82\x06\xb6\nq\x14\xd09M\xbc\xd8_#\x07e\xa9J\xb24\xf2\"FMRj\xab\x87\x92\x97\x1d\x06\xf4vM\xc2y\x03\x9cH\xb2\x8e\xd6\xd9\xda:=zm\x9f\xde*\x9a\x13{\x05\x19\xb5\xbc\xb1R\x82d\x8c-\xaf\xadj\x14\xfb4LI\x13,\xf1\xce\xfa2\n\xe64\xb6V\x8bi\x92\xd8\xc1\x14S2\x8f\xc2\xe0\xce^\xe7o\x99\x1f\xdb\xdb\xe1\xd3k\xa8\x13\xc5\xd6\x1drM\x82\x8c\xae\xc8ms\x1d\xdf\n\x1d\xac\x13F7\x8duRzk\x1d\x10I\xa3\x95\xef\xd9j\\d\x89\x15t\x81\x7fm]\xef\x98\x06\xf4\x9a4\x10\x0eF\x7f\x16\x0b&\x9f[j-crqa\x87?\xa3\xc2\xd7\xb8]i8o\xe8\xd4\x8b\x02\x8f\xf1\xe1\x0du\xd0P\xae\xa1N\xb2&\xd6\xe5\xf2\xa20\x8d\xa3\x06\xca\x884\xe6\x82\xce/\xac\xe0F\xcf\xe8\x15M\x12\xb2\xb4\x82}\x11D7id]8F\xf9\x82\xa6\xfe\xa2\x9b\xd0:\xecu\x94\xf8aB\xadP\x8c\xa3\x9bFH\xc7\xd1M#\xa4\xe3\xe8\xa6 \xd2 M\x13\xff\xef\x08\x99R\x8d\x8a\x00\xf6\xfa\xf8\xfdA\x9a\xc6\xfeE\x96R\xc6\x1a\xb2s\xaf^E\xf2\x1dy\x8d\xbc\xc2W\x9c\xc2\x8aFgX\x95V\xc4\xd5\x81^\xa3\xb3\xb7W\xad.e\xb0\xaap#e\xb0\xaap\x83q\x08\x9f\xf5a\xb4\xd5\x87\xcd\xbd>lmV,[\x990\xb6\xb9\xa9 \x14\x1d\x0d<\x12~J\xe8\xeb\xe3\xf7\xa8O@\xde%\xf1\xd9\xcc\x91\x0fE\xbd/O\x11Q~\x19\xc5\xb5R\xda\xfcjS\xf3\xc8\xc3+\xda\xf7\xd1\x9cb3\xb2\x00\xa4\xc3\xa0,\x18\xa8U\xab\xca\"~\xd3Zm\x9c\xf1\xae\xd5\x01\xb2\x07\x1d\xee\xb2\xe7\xd4\x0dk1\xf5\xbbHv\xc1V\x9f\xb8F\x05\xcaz \x14C\xac\x06\x9a\x07\xbd\x0dS'/u\xdc>\x8c\x86.\x8f\xe7\xa7\x11?+cu:\x1e\xc8HT\x0b\xc0\xec\xbe\xec\x0b\x86\xe4\xabL\xf6Z\x13\xa6{\x95G-\xc5t\xbc\xaf\x84W\x03\xe35K\xf5\x96\xdax\xd2\x17\x85\\\xa1\xe3\x00\xd9g}I\x12:\xffH\x97~\xc2\xf8X?\n\xe5\xb6\xd0Vg\x9f\x8b\xec\x82\xf1zc\xe8F\xa1\"\xb9X\xbc\x10<\xb2N\xb3\xb8\xfe\xca+^^\xb7\xe5\x87\xfa\xde\x96\x9f9]\xd3pNC\x0f\xd9\xdai7\x8d\xd6*\xda\x86\xf3n\x1fX\xe1/\xf4\xee\x03\xe3\"\xc4O\x862b\x98\xf8\xfb\x03IR\xda\xd5$\xe5\xab\xf7\xea\x95\x9a\xffN\x80\xac\xce\xa1\x1d,\xcbo}#p\xfe\x18d\xb1\x80\x92 \xb2\xaf\xa3\x9bP\x0f\xe7_\xe8\xdd\xa7\xb5\xf8\xfe>\xca\x12\x8aU\x1f\n\xe7\x93\x94\xc4\xdf\x0be_U\xba\xf9\x02X\xe3{\xdf\x15\xdabd\xff,xs\xc9\xf6\xfb\x03\x9c\xf7\xf3\x05\x10\xe7/~W\x90\xcb\xb1}C\x98\x97J*\xe3\xbb\x13\xaa\xbe\xbc07\x9b\xba\xd0^\xa5I{r\xad\xb2\x83[C\xe7C\xb3ZD\xd7r\xf7\xa2G\xc5\xab\xf2\xe1\xabk\x18gim:o {\xd0D\xd3S\x9b\xe3\x105\x19\xa8\x97@k\xa9\x84ki\xb7\x00\xd7\xc4\xac\xb3F0j\xb2\x1c\xd7ymhL \xafe\xde\xb7\x01W\xa0\x94G!:1\x05A\xe9\xceIJ\x90\xbbIa\x02\xe9\x80\xfd\xac\xdeI\x14#b]\xdd\xe4,Y}t\x87\x92\x8f5\x84\xa6\xcd\xfa\xba\xd8\x0e\x1e\x86l\xb3\x99FC\x13^\x82\xbaT5\xf2\xd6\x18\xf3k9\xa8\x9e z\xe39]\x17\xec\xbczX\x07\x87\xe1\xbc}\xf3\x82Z<\xac\x07\xfeR\x13\x9d\xe0\xd7O7\xdc\x96\x10\x85\x8fG\"J|u\xb8h=\xd7df\"1M\xd9\xc4\"\x92\xd3\xa3G\xca\x8e-\x07\xba\x16\x031\xf7\x8e\xab\xe1\xf6AI\x18^\x16\x08\x00\xf9a\xf6.\xc6q\x17\xe1{kMp\x1c\xab>:\x0c\xd1j\x8f\xe7\xa9c\xf2\xcd\xcd`I\xd3\xd7$%\x8e\xcb\x81\xb3\x0f>\xdawEQ@\xe7NTu\x05`X\xbd\xc0,\xc4E\xa5\xac\xd8\x03udO\\X\xf0]V\x8bsbp\x05\x95\x97\xd9\xe7Z\x7f\xfb\xdc\x92GDH\x91m\xb7qn\x8c\x07\xc4\xf3\xb2U\x16\x90\x94\x9e\xdeD\x1f\xd8\xf1\xfb\xdaO\xd6x\xf9\x9c\xe0E\xca\xc2J\x8dn\x1b\xf6;\xa9\xcf\xbf\x83\xd1\xa2\xe6U\x13\x9fo\xb6\xe3[m\xc7s\xa7\x1a\xb0F~\xda\x1c\x1c\xf2\x93\x1fF7\x97\xbew\x89\x8bp\x0d\x13\xbe\"cp\xee\xc4u\xd8\xaa\xa9\xabBd0\xf7\x95\x1bv\xe3\xfa\xea\x1b\x04\xe5&\x02Q\x1dc_\xdf\x15C\n\xf5\xef5\x86\xd9S\xf6]3M\xc1\xad\xdc\x82\\0d\xb81\xad,:5\xd4\x17\xb6\x88\x0c\xd7\xf1\xd8\xdc\x04\x07cj\x05\x14\xc0)\x1b\xbb\x11z\xfe \xa6\x01% un\xdc~~\xe0\xf5\x0d\x01,\xf5\xae\xce\xeda\x06\x0fBu.O\xb6Z\xabo\x8e\xe1\x8f\x1eA\xa7\x85iD\xe5m\x87\x0e\xbc4\x0e~\xa1w\xb8\x1ayJ~\xd8\xd0\xd1\xa2\xcf\xd1s\x80\xf2\x83\xf7\xba\xf9\xbe\xb9t<]XD\xa8\xb1\xa8\xf8*\x1b \xba1\x8b\xdcQ\x1a\xda\xd6HX\x01J\x810\xc1\xaa\xac\x96\xbc\x0d\x1d\x9c\xdf\xc4d\xbd\xa6\xf1I*\xb2~\xa4\xe5\"\xf3\xd5\x01gT0\xd0\x980\xd7\x0d8\xaf\xd3\x0d\xb3\xd5\x05\x8d\xf3\x95c\x0b`\x19\x0b(\xacw\x97\xe7\x8c\xc3\x03\xcc\xdc3`\xf4\xb5%Ms\x93TG\x9cyn\x112\x17\x1d\xefk\x15\xb4+\"?\xfa{\x8dz)\x9eB\x81\xd1\xe1D\xafp}\x8f\xa5_)*\xef=\xd595\xab)\xde#q\xa4\x8a$\xe2V\xb4i\x197\xd5@\xe0\xf8\xe5\\L\x17\xf5\x85\x928\x18\xd60\xd7\xe2\xce\xaf\xcfV\x00\x13\xa0\x0e\x0f8\x92]\x04\xbe\x97SMd\x02\xe2\x01\x99\x17n\xa8\x07\xc9G\xba8\x8d0m_\xbf\x1ab\x0bp\xe1B.\xc8\x0d\xce\xa3\x9b\x90Vc\x96\x16K\xc8\xc4\xb7\xe42\xca\x02!\x06\xb5\x81\xa6\x84I]r\x03\xa9\xae\xac]a\xe4\xd0\xa7\x06\xe8c\xb9\xc8\x86\x16\xd3\x85LL)\x86_\xbf\x0f\x89\x8c\x03\xf0\xb5\x03P.W\xecX\x90\x13\xcb\x94\x8f\xc3\xc7\xafb\x1c}\x08\xf1m\x0c#\x9eG+,\xde\x8e\x90\xc0\xf1\xbdY\x062g\x89\xdb\x80\xf7\xff5\xc8\x8a<;\xe2fLW\xd15-\xa3';\xf9\xbf \x82~\x075\\)\xe2\x80Q\x03iP\x8a\xfc\xe6\xc1^\x0b\x13G\xedR\xa7\x91Xh\xf3\xfb\x1e\xe6\\\x9a@d\x89\xfc\xe2\xac\x8d\xc1V\xd8\xe73_\x81 W8z\xe6!\x8b\xf0\xa0\xfb\xfb\xe0\xb5\xc4\x94\xb9h\x16D\x92\xe4\x04\xc6|\xb05\xf5G`\xb8\x96\x07\x19uD\xb4\xe2Y[\xf1,\xad\\WlZ\xc9\xa0 P\x88\xd0\xb8S\x0ds\xc9ov\xf0\x9d\x80S'V\xcc\x17\x0c\xd3`]WVq_\x17\x95\x17\x04dV\xfa\xd1 \x81\xc60\xca\x96\xd1\x08\xd0\xaf\xca\x83\xa2\x9c\xb6\xb3\xe2\xbc\x7f\xf6\xab:\xa8y\xd9\xce\xa98D\x95{\xa9\xeb>\xac\xf8&w\xfb0e\xbf\x1a \xa9\xfe\x8c\xcf\xb0\xf4+\x0f\xd2Z\xf4\x1bv\x8e\xca\x00+~\x14\x0e\xde\x7f:9=\xfftrx\xfe\xe1\xe3\xf1\x87\xc3\x8f\xa7\x7f\xad\x9f\xafj\xf5\x9f\x0fN\xce\x7f<>~wxpt\xfe\xeb\xc1\xbbO\x87\xf5c\xb7Z\xfd\xe8\xd3\xfb\xc3\x8fo_\xe9\xaag\x9a\xea\x1f\x8eO\xde\x9e\xbe\xfd\xf5\xd0\xf6^\xa2y\xef\xf8\xd7\xc3\x8f\xef\x8e\x0f^\x1f\xbe\xb6\x0d0\xd0\x9eR~\xf2*K\xd2h\x95k;\xc6\xf0\x91.\x0fo\xd7J\x94\xfc\x94&\xe9\xe0\xc2\x0f\xe7NHo\xc4c\xa7\xfb\xbb3')\xb9'\xb1O\xdc\x0d\xcc\x01\x14\x0f\x0eNO?\xbe\xfd\xf1\xd3\xe9\xe1\xf9\xd1\xc1\xfb\xc3\xf3W?\x1f|\xc4\xbc@?\xfc\xb9\xab\xcb\x1ao\x0f\x85\xc1><\xb3\x8e\xd6\x07\xb9x\xfc\xea\x92\xc4\x185\xd1R+I~\xa1w\x96\x1a)\xc6\x1c3=\x0e\x82\xe8\xe6M\x16\x04'^L\xa99\xb6\x0c\xd6\xc3\x08%xjx\x96\x0e\x03\xcbp\x13\xcb\xa3\xbb\xd03w\x9f\xa5\xd1+\x11\x12\xc3\xdcD\x96F\x1f\x02rglE\\\xec\x9b\x9f\xd3 \xf8@\xe6s?\\\x1a;auN\xd6\xc4\xb3\xd6\xb9$\xf1\x89e\xd5\xbcK\x12\x04\x14-\x1c\x8c50\xb4\xc7\x18\"\xb87\x8e\xd6\xb7\xc0\xc2\x0bH\x92\xbc}m\x7f\xceYLS\x8d(H\x8cA\x89\xbc\x88\x01\xc1\x8cV^\x14\xa64\xb4@\x80??\x9c\xfb\x18\xe8\xc3^\xef6}O\xc3\xccZ'\xc6\xc1\x9a\x00%*\xbc\xf3\x13\xdb\x88\xa2xnFO/\x8e\x92\xe48\xf61L\x92\xa1\x0e\xb7\x0c2?\xa4\xa7\xbe\x05\xdey|\\\xc3,\xe6t\x81\x81 \x0dO\xfd\xd8\xdc\xb2\x08\x96c~9\xba \x83\x88\xcck\x91 \xf3\n1Y.\xad\x0bEC\x8f \x04\xc6\xe7\x8b(^Y\x1f\x1e\xd8\xe9\x14\xabr\xd8\xa2\x8f\xf74\xbd\x8c\xe6\xd6*G\xd1\xaf$\xf0\xb9\xff\xa9\x01 \xac\x1a\xe7\x0f\xcc-\xc5dE\x7f\x8cb\x8c\x16i\xa8sI\xc9\x9c\xc6f\xa4\xba\xa4\xfe\xf2\xd2\xdc\x05\x0f`d\x1c\xe4\xa5\xbf\xbc4\xbf\x1b\xd3\x85\xf5\xe1;b!`\x97\xe9*x\x13Y&\x96\xa6\xeb\xc3\xbfe\xfe\xb5\xb1\x86\xefY\x16\xd37/\x10\xden\xbd\xc7\xf0\x8d\xc6\x1a)]\xc6~j>\x81|3\xc4\xaf\xe8\xdd\x07\x12\x93\x95\xb5\x86\x15\xc9\xae\xfc\xd0d\xeet83ov*nd\xd9$e\xba]D(4\x7f2\xec\"~]\x19\x95\xea3\x08a\x08|\xda\xd7\xed\xbe\xca>3$WK\xbe\x052\xd5\xd0C\xe4\x87xVE2\x11\x9b\xf4\x99>?\x84.\xd9L\xac\xac\xe8\xa40\x9d\xe7\x89x\x04\x85r\xbas\xff\xfa\xffa\xefM\xdb\xdb\xc6\x91E\xe1\xef\xf3+`\xde9ij,)\x96\x9d\xc5Q\xe2\xf6u;\xce\xe9\xdc\xc9\xf6\xc6N/\xa3\xf6\xf8\xc0$$\xf1\x84\"8\\d\xbb;\xf9\xef\xef\x83\x02@\x82d\x81\xa4lgf\xeey.?\xd8\"P\x00\xb1\x16\xaa\n\xb58\xfa\xbe\xb7\xb9\xf2\x1e\xfe\xfd\xb7\xf4//\xdc\xdf\xae\xb6\x07\x0f\xf1Q\xe8\xa5\xdbX\xbb\xca\xcf\xc5\x9a\xa2\xee\xd6\x04\xd1DL:\xfd[\x91\x8ab\xf8\x8af\xde\xd2M\xdb/>\x01Ug\xb3\xc9yU\x1f\xbc9\xf1\xa8yVH\x94np\xe0\xd6u'\xe1\x82\x1bkd4\x0e\xa2\x88%b\xbb\x08\x9c<\x9b\x9c\x93m\xc2\xc86 g\xbb\xc8\n/B\x1a{\x00\xbds\xfe\x9cx\xa3\xd1\xf3\x81\xd4\x0c\x1d\x874\xcd`\xe1V\x17\xa6\\\xda\xd5O\xb1\xe6\x90\xce\xb5B\x98\x9a\xf4\xf4\x87\x9b3\xba\x80H\x0d\x8e\xf4\xb7^?a\xe7:`\xb3\x8c\x16\xadgkH\xb8;\x1f\x8c\xe7<9\xa1\xde\xd2\xcd\xeaF\x80E/br \x83~\x81\xfa\x89\x1b\x8d=\xd1x\xb1m\xd3\xc1s\xb3?\xa2\x87Z\xdfQn\xe42\x0f7\x99,\xf1\xfc\xd7\xfb\xd8\x7f\xfb\x96\xcdm_\x82\xaa\x1d\xedkT+7nI\xcd\x1cTC\xb7\xaa\xd0x`\x86#~\xf0\x808r\x06\xc05\x03T\xb2\xe5:)\xcb^G\x19K\xd64\x94\xe9\x83\x8a\xde\xbc\xa9\x13)p\xb3 \xcd\xe1\xf3r*\x82\x14\xfe\x8b\x06\x8bO{4\x0c\x19S\xf5\x83\xa9G\xc6V\xaa\xda\xea2\x13%\x0eI\xa3\x12 \xa2\xc0\xf6\xbf\xdb\x98\xa3\xdc\xaf6\x7f b'\xe1\x0d\xd5c\xb7U\xd5n\xb6\x85r\x86\xc3\x08\x16+20\x99\x91\xad\x0c.\xc1x\x81\x8c\xc8\xa4\x18 ]\x1c\x9d\x9c\xb1\x1c7\xa3\x9ez(\xf9AK\xbc=\xb5.d?\xcb[v\x18F\x15\x87\x1d\xc1Jf\x9c\xbc&UX\xec\xbaH\xef:7\x13[U\xfa\x9e\xe0\xe4\x05\xc9\x9e\x13\xbe\xbd= \xd1\x8c\x9f\x8bI\x98q\x04\x05i\xf5\x9c\xe6\xdcO\xc9\x8c\x9d\xdf\xef\xb6\xb3\x1c{XP\xa4\xbb\x1ec\xa0\x13\x89h\xed\xcd&C\xf2\xdd\x0b\xc9\x1f\x16\x02\xec\x03'Kr\xe6|\xff\xdd\x908/\x1e\xca\xcc\xef\x9d\xf3\xe6\xc1(J;/\x80\xb1\xfc\xde\x01`\xf5\x1b\xf1\xf4=\xdb+a_d\x97\xdc\xbf\xf9\xfeE\x96\xe8b\xc9\xf7/\x1e\xaaDK\x1d^\xd9\xda\xf5\x82\\\xaf\xc2(=\x00\x8eo\xfa\xf0\xe1\xd5\xd5\xd5\xf8jo\xcc\x93\xc5\xc3\xdd\x9d\x9d\x9d\x87\xe9zQ\xb4~\xbdhT5G\xa9x\xe7/\xceT\xf6\xe8\xf0\x85\x1f\xacU\xcb\xe0\xd7y\xf38\xa4 \xa3\n\xfc\xc5\x8a\xc6\n\x1a~!\xd0\x1e\x0f\xa7d\xb6\xdb\x1c\x01\xddi\x8f\x87\x8b\x84\xe7\xba\x9e\xe2\xd56\x1a\xe2 \xd9\x82E\xben\xc4<`\xa1\x9f\xb2L\xd5P\xbe\"%c\x9a\xd0\x95.(1\x8b*\xa6_\x90BY\x82vAM`\xeb\xdc\x11y\xb7\xb0\x90\"wDn\xcacy\xad\x8bdyT\xe5!l\x92\x1e&4\x13\x9a\x84\xe7\xcc9\xcf\xf0\x9c%\xb3\xdcog~#\x08\xa0,0\xad\xbb\xa7,w\xfa\xcc\xf1\x82\xc4\x0b\x81\xc5\xf5\xc2 \xfe@\xb3\xa5\xf8\xed\xb39\xb8n`a\x18\xc4)d/\xc4\x9f`E\xa5\xaf\x07\x08\x80\xa2\xfe\xd3\xe4?\x13\xea\x07,\x02-\xdd\x15M\xc1\x03D\xac\xaaR72\xf0\x93\x877\x0b^\xfc\xd4u\x88\xc244\xebHddJ'\xcd\xb8\xf4\x0d\xc1\xae\xa5\x060\x84;8/(\x1b\xfba6\x07\x0f>\xc4\x1b\x12*\x7f\x99\xc1xk^N:i\x88@\x9c6\\\x9e\"\xf3\xda)\xa2N?p!\xe4\xfcEpV\xd4\x02\x11T\xe8?\xe7/\xa5m\xb5\xf3\"\x0c\xa2\xcf\xe4\xe1\xf7\x0e\x99\x12\xe7\x85\xa3HP\xe7\xfb\x17\x0f\xcb\xdfN\xd9\x95`<\x0f\x12M}\xa9\xe4C\xd9e\xd4\xd3\xed]\x0f\x01T\xc8`Qwoe~q\xe1BO\xeeW\x1f\x9d\xb8\x82(\xe6\x83\x99\x80\xab\n%\xfb\xd0\x0e/\xa2>\xac$Nl\xde\xc1<\xa2S,\xd1p@\xa3\x19\xc9z$=-\x97\xa8\xcfI\x8eK7R5\x85x\x9c\xc1\x86\x02\xa6\n[\xfa\xa4\xce\xbe\xaa0\x83\x0dW>\xb1\xaa\xbe\x9e.\xe3\x0cN\x1e\xd7;+\xe3\x0c\xee=\xae\xc3\xaf\xf1\x15\xa5\xc2\x0c\xee\xd4;\xab\xc2\x0c\xee\xd4 \x91\x1b\xd5\xfc\xfa`\xaa0\x83\x0d\xbb\x8d\x0b)\xb5\xd9{6\x18B\xb8\xc4\x9d\xba\n\xa4\x8a7\xd8\x18\xbe\x13U\xf0\x11\x14\x9c\xf8\xeb\xebB\xa2`r\x0b\xa2\x85\x16{\xf7\xa8\x10\xf9;\xe4l\x19\xa4D\xd0\xf6\x82c%W4%:L,\xb9\xbc!\xff%\xce\xa9H\x9cS\xff5Fn6\xfed\x7f\xd3\x1f(Ka./\xde\xa1'\x83\xb4Z\xfd?36\xbe\xc8\xe8\xe2\\\x1a\xd7(s\xcfl\xac\x97\x85\x1e)\x99jY\x0c\x8a\x1fu&{O\x1dA\x1d\x88\n\x87\xf6\xc1?$\x0e\x81\x0btA\x8f\xa9\x91P\xaa;\x84\xcf \x9c\xda\x96\xb2\xe5\xc0\x8b\xe1\x1a\xc3\x91\x0f\xf6\x89]M\xb4uO6\xfc\xc9\x0eHu\x11\x9b\xd9\xb6\xfa\xce\xc0\xa3\xa4\x15B\x8a\x94\x9fL\x9cA\xa5\x81p\xcf^1\xd158\xf72W\x14\xddu\x86\xb0\xec\x07\xed.M>\xb6x\xdc\x90N\xb6\x133P\xfd\x15\xea!\x19\xf1\x88\xa8m\xa6\xd9\xf8b \xa1!\xda[\xe4\x05\xac\xf2\x07\x0f\xf4\xcfRN#h\xb6\xd7`\x99#a\xa6\xe2W\x87 \xd3\x91\x9b\x0dI\x00>\xb2\x16L\x06\x8e\x85\x88\xc7\x1f\x19\xf5o\xdc\x81v\xa6\xe5\xbe\xc4\xee\x0e\xa0QQ\x9aM \x12\xeb\x99\xa0\xb6v\x16\x97\x9a\xa1:3\xa6\x88\xdf\xe7\xafVKQd\xb6^6\\ \xcd\xc7q^\xc6\xc1\x05\xe7\x92\xa2\xcd\xca\xcfd\xbd\x85*Y\xb7\xa7}i\xbci|l5\x8ey*G\xf0g\xe9\xca\x02\xbe\xd8^\xcd\xa7F5\x97\xb7\xa9\xe6\x1f\x8dj\x16\xdd\xd5\xe8_b5\xbej\x1ca\x19\x8f\x8f.y\x02w\xd3\xe2\x7f\xed\xcc\xcbx|L#i\x0e\xe0x4\x8aCzc\x05)\xfc\xe1h\xc8L&4\x0b\xbc\xcc\xe5|\x1c+\x0f\x85\x8e\xaf\x12<\xcc\xab`\xc6\xe3\x93U\x9c\x05\xe0K\x90\xc9_\x08H\xe4%7q&\x81\xf4o\x0c\xccW >\x9a\x9d$p\xa3\x0e\x91\xfd\x9a\xd9o8\xf5\x99/\xfd\xd6:!\xbc@\xc8\x0f\x0b\xe0[\x96Q\xdf\x04^\xa9\x04\xbc\x80\x8a\x9f\x04\xb0)\x12\xe4\x08\x1c\x96\xe7\xa9\x18\xb0X\xfcG\xb2\xe5L\xe1\xd3$2\x81\x88\x80\xfc Z _$\xa0X\xe6\xc4\xeag\x13\xe8#\xcdX1s \xcd\x98m\xd6N\x19\x03\xf3\x0b'\x85\x1f8\x80lQ*\x7f! \x19\x0d\xa5\xcf\xc9T\xfeB@\xf24\x06I\x8f\x93\xca_M\x90\xb3`\xc5t\xb4$'\x0bV,\xc7B\x1ae<\xfe\x89\x87\xf9\xaa\xec\xdd\x1a^m\xfd\xfb\x99\x06\x99l\xfe\x95\xfce\xd0\x11\x18 \xf6{c\xff^\x8f\xb3\x84z\x9f{\xec\xfd\x1f\x1aeK_\xcb\x82\xe0~\xfdR\x1f\x98{\xf5\x8b\x1a\xb1\xf3\x199 \xea3\xd5\xcc\xc2W\xbe.\xfe\xc8)<\xf4ft\x81\x1du\xd2\xd3{\x00\xba\xfb\xd6 ?\xeap\xc6\xdd\xb5\xcb\xeaMW@\x05>\x06\xb9\xa9/\x86%\xfeA\xba\x1bU\x0e\xdc\xd4\x1e\x01\xb9\x8f\xfc\xcf\x06\x96k\xe0\xcb\x84\xd1\xcf\xcd,\xd9\xb0u\xe03nm6\xcd\xfd\x00\xcb%\xa6\x0c=+]a\xdb\xfbp>$\xaf\x06\xe4U]\x1e\x93\x01\xb1\xd7Vx\x1c\xe7\xe9\xd2E\x86 \x1b\x92W\xb3\xec\\t\xdcB7\xb7v\\j\xac\xdd\xef\x8c\x9cH4Y\xe0\xcb[\xceI\xb0Z|\xf3v\x0d\xc9\xb7\\Us\x9e\xac\xee\xb7\x0b\x1f\x19h\x88\x11'Q?Z\xbap\x9a_\xae\x02)\xb4\xd4\xbfn\xd7\x8d\xc0\x128E\xad \xe9*\xce\x1a\xd7\x8b]g4a\xf4~\xc7\xe1\xb5\n/>\x14\xad\xd3?\x99=$\x01\x82;\x7fj\xe0\xce\x1b\xa0\x9b\xe4\x89\xd0\x87p\xfa\x11\xe5\xfd\xe5%\x07&k\xb8\xa4\xe2\x94Fs\x12<\x1d\xae@\xb0\x0c\xb6\xba\x14\xc7\x1f\x96\xb5\xb4\xd4\x15\xac,\"\x90@\xc6\x14\xc5\xb2>\xb3\x9b\x05\x8b\xf0\xbc0\x88>\xe39\x82\x9e\xc1s\xd4\x1d\n\x96\xa5Ug\xb1<8\x0e\xf1\xac\xab\xcbN\xe1\xcd\xcf\xe84\x89Uf\x95\n\xc5\x89\xad%j5w}\xf3\xff\x80\xff\xbe\xe6WW,\xca\x83\x8c\xad\x90\xf2\xe4\xc7\x9ap\xedW\xd0\xa2\x99\xd1\xd1\xefG\xa3\xbf\x9d\xab\xff\xd3\x8b\xdf\xc6\xbf\x8d~\xf3\xcf\xff\xf2\xe7\x87U\xf0\xbf\"\xb7\x95\xff i\xb5\xd3\x06#B\xfe\x8cJ3\n\xedJ\x1d^\xd0\x199\x03\xf2\xfd\x01\xd9\xa9J0\x02[\xa4\x92\xbfA\xb0\x01\xe4{\xbf\xb4\xc5\xd8\x13|{\x15\x17u\x85\xc4\xf9Oy\x03\xfeW\xf03\xfb\xe5\x0bq\x7f\x05\xf3su\xcf!\x08\x98\xc7\nW\xfeU\xdf\xbd4\xdc\xbc\x16\x04NUFb\x86\x03\xc9\xe8\x824\\C\xea\xcc\x88\xaeX\x1aS\x8f}\xfa\xf8\x9aT\xe3ph\xb9\x94\xbee\xa8e\xc7 [\x07r\x9e\xb9e\x9dRZ[\x1a\xa4\x05,u%\xa99\x17\xb4\xbe\xa5\x9d*\xbcv\xee\xc6\x16\x08\xd5s\x18\x92\xd7Q\x90\x054\xd4t\xbb\xa0%\xe7C\x92\x0c\xc9\xd5@\xfa\xd8o\xfa\xf4\xfb\xda\xe6fP|\xfd\xa4\\\x98\xf0\x8d\xf71\x8b\xce\xe8B\x9a\xdd\x1cE\xfe\x87\xf2\xda*\x85\x0f\xb6,\xf6\xebZ]JA@\xd6\xa5[k\xe9\xa7h\xfe\xd6\xb5@)?\xce\x8a]yN\x0e\xc9\x89X\xdeR\xf3\xebD\xaet\xb2M\xae\xc5/\xb9\xfc\xadKC\x02\xf7@\xe0\x1b\x92\xaf]\x14O\xc7\xc9\xf2\xa68\x82\xe6c\x9ag\x1c\xc2\x88H\xd3\xba\xd6r\xc1x. M\xfe\xe3\x9fr\x14w4\xeb\xd3\xbfSwZ\xa9\" r\x99gY+-\xf7o\xd0\x8dNz\xb3\xa3Q\xff\xe8O\xbc(\x99J\xab\xbeN\x0f\xcc\xd0CCQ+\xd6\xc8\x03l\x83\xb3\xb0\xb8\xd2H\xe0J\x03?\xc7@\xa7\xa7~\x8f\x91t\xc6\x89\x06/\xee\xb3\xa4\xc5T\xcf\x0c)\x11\xd8\xcfP\x0d\xfa\x1ek\x03x\xa7\xfe\xa8N\xa1\x04\xe2\xa2\xd8\x0e\x04\xfdt8\x87\xd5\x8f\x03\xba$\x92\x96\x01\xcb.7P\x7f5&\xc6$6\xdc\xfd\xe3\xebP+\xa2\x08\xa2-\x80x\xf6r\x9a\xe5\xfc\xbe\xe2 \x94H\xdd@-\xa6\x8e\x06\x135\xa29\xc1\xdc\xeccOA'\x9b\xf4\xe4\x9fK,\x0c\xeb\xe8\x90\xbcm\x8e(\xc8\xd4\xc4\x87\xbcz\x9bk~ ]1\xd8\x10(\x01\x85.\xab\x94\xda'\xb9\xd4 \"\xdb\x07\xc4\x01\x15\xa5\xbc}\xc2\xfb\xc6\xcb0\xcc\xc2#\x9f%g\\\xf0\xf9\x81'\xdbA\x0eID\xa6\xfa\xf4\xa9\xd2\x1cf[\x1a\xad\x07\xfa\x03\xf4\x8eZ\x80^\xbfT\x15\x83\xech\xd0\xea\xd3\x1d;\xb5\xfb\xf9s_\x17\xe1Kp\xe2\x80\x93\x16\xb5\xad\xe6J1\xf7\x1c\x1f\x14\x0b\x85\x8f\xa5\xce#\xccRB\xca\x04divP=b\xc1\x7f\x98\x15\x1aYZUL\xd0\x1b\x86\xe2\x98M\x01R?T\xadu\xc0\x0df\x84p]\x83\x9d_)Q\n\x0c\xdc\x89\x1b\xb4\xd1\xc5f \xda\x86\xd3\x12\xbd\xef\xa5\xfcQ\x13\x8aT\xc5[\x18\xff7\x0f\"\xd7qng\xa7O\xca\xa5\xfc\xb3I\xa3 \xce\xf37\x15\x02,\x19{K\x9a\x1ce\xee\x8e\xd8\xbb\x90\xbcM\x1225\xe2^\x10\xeb\xca\xab\xd1\xb7\xbd\xa5\xa6Z\x89\xed~\x97X>\x86\xd3T\x94\x17\x08\xe2\x7f\xc6bs\xa4\x83\x89\xc0\xe8 \x84\x86\x06\x0c\xd8{\x05Z\x1bY\x9c\xd5i\xfbB\x94\xec\xca\xces\x12\x92\x17$\xd5\xb6\x94$\xdc\xde\x1e\xe8fI\x0e6\x19\x92t\x16\x9ew\x912\x8d\xe8\x14\x1e\x0b\x8c\xf0\x14\x9ba1\x8c6i\x0e\x0d\x06e\xdc\xceHv\xb0h\x81\x9b\xc1\xc9\xdf\x8czR7\xe8\xab\x16\xbb\xc5\x16\x00\x19=\xbe\x8c\x82o+\xd7\xefb\x8c\xb8M\xdc\xcb\x15 \x82f\xda\x96%\xb9\x17J\x9a\xdb\xa4\xb3\xbaMh\xe6\x9d\xda\xd4)\xba\xe56\xf1\xacn\x13\x9ay\xa76\xf5\xe0\x03\xb9M\xec\xaa[\x85f\"$\xb3\x9d\x01\x7fW\x14j\x13\xaapE@7`\n,\xa3 \xc4V\x19v\x8b\xf8\xfa-\xde\x95\xda\xd1\x15M\x8c!\xb9\xc6\x83\xe3\xde\x95\x03\xec1\x1f\x97X\x83\xee\xf0\xc9\xcee\xd9\xc1t\xfe\xd4\x8f\xe9\xac\x9f\xfc\xc8\x0co\x80\xade\x8cI\x0b\xcf\x98 >\x00\xf4\x03:\xf3\x08\xc3(Y~4Y\x1f\x7fl\x96 \xe7\x91Yq\x85+\xeb#YN\xed\xecZ;\x1f\x05\xfd\x0cD?\xd3\x01I\xeb\xed\x0e\xa4\xec\x1fX%pU\xf2\xc7\xd7\xc1,8\x07B\xbd\x83\x9d\xb33\x8f\xedW\x8e\x92Z@\xb8`r\x08\x03G L\xad\xdc\xe6\x89`\xcc*\x0c\x1fka\xf8f\xd8A\xecB\x11\xd1\xed9\x90\x81q\xc5dfn\xaa\xd1\xc4\x83M\xd6x\xebZ\x12\xe0\x10\x98\xa6\x87Pb.\xa6\xb0}\xf1\x0dI\xdc\xb5\xa7Hek\xc4\x03\xb2\x15#{\xe3\xcb\x172\x87\xb1\xc0\xf3n\xb5o\xaa_\x9e\x0f\xd0\xca\x1f< \xb1\xa8OL\xc1\\\xfc\xb0\xecR\x91\xd7!\x81\x90\xfbM\x14E\"\xfb\xe9\xa7\xa0\xe0Q\xe9\x94\x98\x1aC85\x07|;\x95k\xa3\xdc\xaa=j\xaf\xc9n\x06\xf6\x9d\x9c\xb2\xacm\x1b\xb7\xdf\x8d\x17\xdf\xdb`\xa3w\xa3`\xdf\xa6|^\x7f\xca\xddrX\xedI\xd1K_u\x81L\xed\xd8\xc5\xdf0\x10k3\x05\x84U\xd4l\x80\x12\xd8\x15\xe3\x98c'\xb2\xf5\xfc\xbd5\xd7]\xb0\xb6\xac\xc2\xda\xb2~\xac\xed\xdd\x99c\nZz-6|\xd6L\xc5\xd1\xe3\xd5\xe6m\x02\x05\xd0\x8f\xbfU\xb5\xa9\xc1\xc6\xf3\x92\x8d/G\x0b/\x16vq\xffx1\xaf\xf25\x03\xbd[\xbc\x07\xcf+\x9f1\xe0\x11\x1aKg\xa5\x05q\xa4B]e\x06\xff\xabIr\x89\xb8#uF{\xa2\xc8\x16 _\x03\xf8\x8c]gJ\xf8\xe8V,>\x03PF(\xe4\x16\xd6\"d\x9b\x04\x03\xe3\x98\xcc\xc9!\xa1P.\xaf\x95SW\x92\x8e\x14\xf2\x1aE\xc2\x1a`\xd1\x81\x10\x0bg]\xdbL\x8a\xffy\x07\x0e\x85\x8b]\x84\xed\x1d%F\xab\x1b\xd5 u\xe6\x91]\x95\x10\xabyC\x9e\xfd\xff\xe9\xe2\x19\x8f\xd6\xf9\x95c\x87[\x01\xd8\x0f\x07iV\xdezvT<\\\xed<'\x11yA\xb2B\xfa\x15mo\x0fH6\x8b\xce\x95\x0e\x87\xcd\xf2\x9c\xf4a\xe7\xda\xf8\xd9\xde<\xe6\xf58\xcdx|\x96P\xefs\x10-\xbaN\xc7\xce6\x81\xc3\x82\xb6&-\x19\xf5\xdboo\xb9\x7f\xd3\xd2\xde\xc4u\x9e6\x1f\xe93\\\xf6\xd9i*C\xea\xa7\x8f&\x8bA6\xe0\x07\xa2\xf4h|\xc7\x03\xf1\xe9\xb3\xba\xcb2\x0e\x86\x87\xa3U:\xea\xf4\xdc]_\xeaj\xeb&n\xe1e\xdd\xe5C\xe2\xac\xd2\x913\xa8\xe3\xda;\xb5\xfb\xe1\xc8\x1d\x0f\x1e.n\xd9\xbe\xb2u\xc9\xb0\x1b\x85kW\xe0\xe3\x8c\x7f\x12\x14$\xe2\x02\xfc\xeb\xbdv\xceF\xa5(\xaa!\x19\x07\xe9\xa7(\xc8B\x96\xa6\xef\xc0\x7f\xd9\xa0k\x1cZ]\x19iQ\x02h@9\x97\x9c\x87\x8cV\\\x17\xcb\x0c\xa5\xc0_z\xe0\xaa\xed\x04\xady\x11\xa4\xef\xe8;7\xab\xa1\x07\xbd2DU \xe80\x9c(s\xc4?\xe5\x83\x07\x84K/\x922\xd2\x05\x99\x82\x08\xbc\x11!\x80HG\xe3`\x96\x99\x04+\xd0\xcf\xca\xc4y\x13_7N\xf7;N\xca\xfe\x0e6)\x0f\xff~\xb7\x8d2\xa8\xec\x94\x11l\x95\xfbl\xf7Cwv4\xfa\xdb\xf9=m\x16g\xf4\xe7\x893\xb08\xc3\xbfCk\xfb\xb5H\xcb\x0b\xfe\xf8\x8a.\xae\xa2 z\xe6\x17\xdb\xb8\xb6\xd8\"y\xf9\x90\xcd\"pq-M\x89\xa5\x14>\x82\xd54\x8b\xec~\x05\xc8m;lpg\x8fw:\xf7\xafej\xbes\xbe#\xdb\xb0\x88\xc8\xb6x\xb9\xe7\x86M\xcc\x86i\x92\xa9\xda\x10q\x08\x87\xecL\xd9\xfcb\xa2l\x8e\xcdE\x97A7\x01?\xa9\xea\xa6\x1b\xdc>\xa4 !(|\xa7B\xda\xff\x07\xf7\xe0[\x13\x84\x9ft\x931\xbb\xce\x12\xeae\xbat\xd9\x1e+s\x8e\xcf\xc2\xbd\x84~\xd9}2\xc0\xec\xe09z\xe8h\x9e\xc1\xb2\xcc\xa3\x19\xabn\xc0s\xcc*=\x9a9?\xb3\xcb\xcfA\x06\xae\xff\x80\x1c\xb9*\xde3\xc8\x7f\xcb\x7f/3W\xf2E\xe6\xac\xd22\xe3\xedi\x99\xfe\xbeL\xe6\x90\xda\xf8jm \x12\xe3`hN3\x8d\x82\x15\xb8\xf8\x02OM\xdcu\x8et\x823$\xe5\xcbI\xe4c|KQ:\xc8\x98\xf4\x14\xd6R\xc7k\x0d\xd3Z\x93\n\xf5g\xad\x05\x9cqa5d\x89\xa0?\xcd\xae\x9c\x15)\xa2\x86\xf2\x0d:S]\x81My\x02\xe6v\xde\\\x0d\xa6k{q\x00\xe6\xfd\x18\xf6\xca\xa0\x8a}\x01Q\x1b\xae\x82\xc8\xe7W\x80\x04\xa5\xa8\x8d\x04csf\xca\x97!i\x02\x14\x83\xdf\x0e\x06#[\xbe\x0e\xaac\x82\xb4\xa5\xa8\xa22\xb4\xc6[o\x9f\xd9\x82\xc6\xa13v^P.\xe2\xe5y\x03d+0a\x90h(\xe2\xe4 \x1aE\x0d\x113\xce)\xa2\\b$5\\D\x91\xbc\xd2.P`\x88\xce\xd1\x8d_qIJ\xee\x8e\x946s\xfc\xdct\xc1,%_\xbb\x93\xba\x0f\xe3\x1c\x97:J\xc7\xcf\x8f\xf6\x8cCE\xbb#~\x86b\xc7\xb0\xdb\xbd\x19h\x13 zY\xc6@5\xeb\xf5\xac\x07\xaa\xe3-\x99\xf7\xf9\x92_\xebHU:,\x1c\xb8\x84\xe7\x95\xd4\xc3R;d\x0c\xc5\x98oj\x8c\x8c!R\x9b\x05\x1d6\xa3)\x98\xaa|\x1b\x88\x95\xe8x\xa1$ nf\x11\xed$\x1a\xecX6\xb2A\x9a\x93\xb2\xff\x98\xcf\x1a\xf1\xc8\xb0\x9aR\xe8f\xb9f\x850\xa8m\x10\x10(\xba\x15\x80^k\x80F\xfeWX\xddx\xe3Tx\x7f\xd5\xbd\xf6o(\xd8\x9fd\xd8\xc16H\x15\x99P\xcfg\xa4\xccFX\xed\x9e*\x90*\xf4P!^\x91\xa7\xdb\xa5\xabJ\xc8!h\xe8[\xaaR\xfd\xc0++\xddc\xd6K\xeb\x9c\xe6\xd0\xb5\x9e6\xa6\xd9\xff\x06\xeb.\x1b\x9b#\xd9\\O\xac\xa7\x8b\x8dj\x9f\xcb1\xca\x8a-uh\xfc\x9e\x96\xdfm\x1d%sR\xcc:aN\xa1F\xf9kJl\xb7\xffU\x8f\x1f]s\xd1M\xcc\x92\xc6m'\xa6\x11\xde.\x9b\x95\xfb\x9d]3/\xcf\xd8{\xf5q7k\xb7mK\xc74\xa5\xb1\x1bv\x1aI\xae\x0b\x85\xf6\x88\xaeZ,\xe4Azh`Ce\xfbk\xe8k\xa2\x14\xbf\xf9\x14G\xa68Xr\xfb=\xd1\x10\xee0\x82\xe7\xc43\xc2\xf7=\x1f@j%\xa9\xdf\xd7\xe6P\xec\x1f9KnNA\xf7\x96'Ga\xe8\xca\x9b\xdb\x99\xe8\xf5\x81\xa0i\xff\xcf\xe9\xfbwc)i\x08\xe67Re\x01D\xd8\xdf\x9d\x83\xda\xcc\x81\xea\xfd\xf9w\x03\xe9\x02`\xe79\x89\xc9\x8b\"\xf4\xd9s\x12oow\x0d\x01Q#\xee\x83\xd6Y\xdc!\xb3$j\xdc\xfdR'\xc3\x1f\xcfy\xb2\x82\x19\x08\xe0g\x9f/\x12\xf5\xd5\xa5\x1ew=\xdeb\xec\xe1\xd2\xb5\x1e;\xcd\xf6,\x95c\xadg\xe0\xe4\xbb\\d\xcbn\xc9*.\xfa\xec\xce\xb5\xe7\xa0\x01\xa8\xf4\xf3u|\x19D>\x1a\x9eO<\x1e\x8f\xb2\x84Ko\xb2\x1e\xa6N\xd0\xaaM]\xa1<\xba\xf0\xc0\xda\xea@\xbfe\xf3Kd\xab\x10`sn\xca\xe3\xe9\xc1\x03\x12\xa0\xdaq\xf8\x06\x13\xdc\xb4\xa3\xaa\x85;\x1b\x88}\x8b\xcc\xbe&\x17\xad\xd5\xe0\xb8\xb1N\x9b4+\xaeZ\x84\xe1x|N\\)'\xe4pG\xa1M\xde\x00{\x0f\xf4\x0f\xc1\x8d\xeeX\xc4\xf2\xc5MD\x11\xd2\xad\xc4Y]\xb8\x1aD\xec4I\xe5]\xa1\xab\xbe6$\x93\x1d\x90\x18\xb5\xdc\xc9\xb8\\\xeai)\x8f1RcK\xb7VbH0\xa9,\xdb/\x91\x0c\xbe\x80e'\xca\xe2\x1a\x1c\xaf\x039\x8b!\xd6\xa3\x16\xf2*x\x03_W\xcfr\xd9\xd4JJ\xf1\xc9&\xa4[\x03E\x01\xb5f\xd9\x81y\xaec\x0d8.\xf3\xca\x8au\xe2\x01\xd9\xda\xaaC\xb6\x926u/\xe8\xdfl\x7f\xda\xb6Fs*\ne\xb1\xd6\x05\xa8\xf4\xab\xa4\xd7\xd66\xed\x1c\xe9\x05\xb6\xc5d\xa5KA\x08\x02\xbd\xb7~\x02\x9a\x06\x1a\x85\xdc\xa3\xed*I+\x1ee\xcbv=\xaa\xae\xaf]1f\xd3n#\x10a\xb5\xdc2C\xe3-\xea\xa0i\xf5\xd32\xaa\xaa\x82>\xdf\x8ej\x0c\xa2~\x9a\xc7\\\xc1\xb0[(3eb*\xdd\x11H \xa99?,\xbbdl\xa2zZ_(\xfc3u\x05\xcd\xe2\xcd\"M\x9dC\xea\xad\x04\x17f5\xce\xe9\xc9\xf1\xc7\x93\xb3\x8b\x97\xef/\xde\xbd?\xbb\xf8ptzzq\xf6\xe3\xeb\xd3\x8b\xf7\x1f/~}\xff\xe9\xe2\xe7\xd7o\xde\\\xfcpr\xf1\xea\xf5\xc7\x93\x97\xce\xed\xbfi\x08K\xeaR\x11\x15o\xb9\x1e\x0d+\xc0\x85\x1f\x94\xe0q\xa0\xf2\xf2^\x0f\x8e\xdf\"\xb3\x90V\xa4\xf6{\x90\xfa\x15\x9c\xe6\xe2\xc7Z\xad\xae\x88K\xc7\x86\x1d\xc8\xaf\x90[\x10\xe9\x9f\xacq\xd3&\xc5 \xe5)Z\xa6\x1f\x92\x8cl\x8b\x92SiN\x01\xd2\xc8\xad\x9d\xba\x9c}0$Y\xb9:*#\x1c\xe2\xee\xd9\xb8\xe9K\xc2\xd0\xa5\x96\x94\x8b2\xf6\xab\x17,d3\x92!\x01\xc4\x03\xea\xd5\xd7\x99[\xbf\xa8 V\xe4\x10\x0c[\xbc\x80\x98=\xb7X@\x08\x90\xc0PDo2\xca\xdbb\xf7OI\xea\x96\xfa\xef\x03\xf9\xd1\xad\xc9\xb0\x16\xe0\xb7]7\xa9\xe0\xc6\x0c{\xf4\xa4b\x8fn-J4\xf7 .\x0ef\xe1\xb9\xe4~\xfa0>rEv\xb36\x80\xda[\xa1,\x8a\x1b\xa5Y\x90l\x9dl\xda\xed\xe5\"r\xbd\x08\xa6$\xefX\x04\xdf\x96\xe8\xb1s\x1c\x06!\x19X\xe8\x9f\x8a\x037\xd7\x01xg\xa8K\xb6\xd2n\xb7\x14\x87&\x16\xf9e9\x9cm\"\xbf2l[\x8b\x14\x12\xa1\xeaJ\x99oU$\xa7\xbf\xaaN\xcc\xe2\xd5\x0ei\xe1\xbf\xc0\xe7\xa3\xb9\xf7\xec\x02\\\xf5-\xaft5\xcd+\xd7r\xa4\xcf!-U\xee\xeez`nt\xbb\xd0\xbcE\xa0\xf8A\x9aoz\x8b\x90\xf6\xbaE\x08;n\x11\xf4/\xfc\xb8\xdap\xb9j\x81E\xc9\xff\xd8\xad\x9e\x12\xd7y6q \x82\xfe\x1fmRp%\xaf\xbe\x1f\xe1w\xb9\x13\x1c\x159nC\xa1\xf7\xbf\x8b\x9c:\xe8\xbe\x1f\xb1\x9c\xf8\xa6fT+\xc5@\x1b\xe2p\xbb\x187$\x07\x9d\x0ed*\x96QnE\xd7V\xac\x85]\xb1\x16\xaa'n(\xc5 \xa1:F\xc9\x8b\x032\xd1\xf2\xb9=G\xf9~ g;\xe7\x03\xe9\xdc\x16\xe644\xb8r\xa9\xc8K5\xd7\x00\xc2\x9b\xe6\xfc4R\xfa\x1efUq\xbc\x94S\xfc_&w\x0f6\x95\xbb\xab-\x9eK\xc9hZ8m\xec\x10Rv\x8c\xfa\xbfD\xfcH7\x92\xfc%\xf5]\xd7E\x92v\x10\xe3\x92\x9e\xc2\x07Z\xda(F%%\xe2\x96\xfc5\xafH\x9d\x1ar\xab\xa8.\xb7B\xa4o\xcd\x15o\x17\x995+\xac\xc9\xc0\xda\xe6\xf1\xb6D\xdbf3#E\xc9Yi\xc1\x89P2\xea\x82\xdb\x8e\xee\xa1\xafY)\xc5\xd8\x90\xfd\xff\x96\x94\xc5\xee.f\xcf\xe4\n\xf8]\x19\xe4X\xda\xf2l\xaeg\xa3A\x9f*v\xc3\xa85\xfd\x90\xf0\xa1\x9dQ\x04Y\xbfv\x90\xd6\xd6\xec\x14\x1cGgC8;i\xdd`\x99\x0dE-\xc5\xe7\xa4\x06\xa9\xbd\x86\xf28B\x17V\xc7\xaa\xe0bU\xd0\x86\x05q\x04\x12T\xd8\x0fQ}M\xf0\"\x9a\xf6d\xdffg\xa5\x95\xbeg\xaer+h_DR\x1d\xca9;\xf9\xe5\xec\xe2\xf8\xfd\xbb\xb3\x93wg\x16G\xacD]1\xc3\xd0X\xa2 \x8bg\x0e\x07\xb8\xcf\xae\xbb\xbcR\xce\xd5M}\x17\\\xc6{UG\xe7\x19K\xca\xfaP\xb8\xaf\x03\xcc\x1d\xa4m14\xdd\xd8\xfe\x8f_\x07\xa7'g\x17o\x8f>\xfe\xf5\xd3\x87\xff\xb7\nH\xdeq\x1c\xdbVCf\xf8\x16\xbc\x1dIp\xdb/\xd7\xcf\xc9\xea\"\xb4\x8f\x1aG\x14\xb5\xcd\x87v\x9c\x809r6W\x89\x19Wz0\xa5\x92\xa0\xb0\x9f\xcf\xe2\x1c\x84\xab\x97V\xe7wp\x0c\x0d\x0b\x973\xed'\x1f(6\xb5\x83\xf8\xdd \xcbn\x90\xb5\xf5\xe6B?\xb0\xe1=\xa9*\xddZ\x15\x0cC}\xcb{\x9d\xe4\x00Qc\xb3\"\xeav3\x99y=\xe8\x02\xf1,\x04E8\xf3z\xa8oIU\xad\x059$\xee\x1c\xa4\xb9su\xe4\x97\xc1cVC\xb2\x1eB$\x9e\xc1@\x86\xe3yK\xb3\xe5xE\xaf\xdd\x95y\xc0\x0b\x80!Y\xd5\xce\xfc\x18|\xf1\xad\x80\xb1h/\xabB:\x95M\xb8(\x11\xe8\x91\x04s\x17CBg\xcbs\xdd\xa2L\xd9B-\xb7\xb7\x07C\x12\x0b\xf2b\xad\xf9|\xed\x81\xc7E\x9c\x7f\x98\x8f]\x7f\xab\x9c`>h\x1a\x03zR\xbaUk\xb2\x89\xf5]\x980\xc2g\xde\xf9\xa0\xcdm>\xf8?\xd2\xe8}^\xfa\x0fi\xd2\xb5\xcdK\x17\x82\xf6\x00\xc3\x7f\x91\x95\\o=\x087<\x05\x9b\xe7^f\xfah\xb5\x84\x9c\xec\xd3\x81bA\xf6vLF\n7\x05\xe6\x92|!\x80\xeb\x96y\x1d\xa8\x98\x94\xf4g\xfb\x9eU'\xef\xdb\xf7?\x9d\\\x9c\xfc\xf2\xfa\xf4\xec\xf5\xbb\xffl9|\x89y\x00w#?\xe3\x1c\xae\xf4\xa9\xbb\x94{\xcd\xae\x11\xaf\xac\xc7E\n\xb1L\xed}\xcd\xeb\xc7\x13\xd8\xc3\xef\xde\xbf<\xe9;\xab\xdd\xe3\x7f\xd7\xfd\xdbB\xa2\x93\xfeT5\xe9IY\x93\x8em\xdbkV\x9bg\xf8-$a\x85\xc5w\x95\xb4H\xd4\xa9b\xe0\x05Qe\xd4\xbbm\xe6Q\xd5s\xcd\xe9\x0b<\xf8\xb0\x19b\x8f\xe1w\xf0\xc4\xde\xfcH\xbaBl\xb6\xf4O\xf8\x9bEt\xedA\xea\xadD\xd7\xa5\x9b'\xd4\xd6W\xb9\x17\xa8\xfb\xe1 \x86\xa7\xae\xfa-8)\xa5\xdb\xbb\xbb{ \x97\xde\xdd\xdd\xad\x0b\xb4\x89\xa1x\xb6_\x1b\xb4\xdau91\x85\xccy\xc7\x81\xbfV\xb6\x1b\x86\x17&\xd60Z$\xe6} \xa8\x89H\xa1\xb7\xb4\xb3\xe7\x82^i*\x89U\xc7FV\xbfu\xa0*x\x0fN \x11\x15\x0f\x81=.N\xde\xfd4%N\x9cp?\x87^ \xe8\xe4\xe7\x93\x1f>\x1c\x1d\xff\xf5\xe2\xf5\xbb7\xaf\xdf\x9d\\\x9c\x9e\xfd\xfa\xe6\xe4tJ\xb6&\xd5F\xd4FJ\x8b\x0b\x9b\xdfE\xa4\xd8\x1b\x13M\xfa\x8e\x8a\x0dL\xb5\x80v\xb9j\xdd0\\?Z\xbc.>\x9d\xcb@\x01\x1b\x88\xf1\xda\xba@\xa1\xc2\x14\xa2U{\xe0k\xd7\xde#\xf0\xe9\xd1y#+\xf8\x9c\x0e\x9e/n\xf1\xbd\xa4\x1f\xd4\xba6\xee\xcd\xf3 \x06\x15\xd8%\xb8\xd8b\xb3\xf8\x1c\xb8\x0d\xbf~G\xda\x8f\x1d\\\x83\xf5n_k\x1e\xbd9@?(p\x97C\xb2\x1e\x0cH2\xae\x07Sq}`\xc3\xf2!\xf8b\xca\xa4\x1f\xa2\x96\xb1\xd3O\x0f\xbfJ\xfa\x91*JTV\x9dT\xa8W\x1f\xdc.\xd4\xbd\xa2\x8a6mM\xfa\xc4(#\x06w\xcd\xdd5l\xfa~\xa5TOW\xfd\xa0\xc57\x16\xd0\xfaZKW\xf5\xa5\xdb\xaf\xbeH\x8a\xcf;\x98Z\xd2\xca\xd8\xb6\xe7\x96k\x9c\x0d\xc8V\xc3\xc7[\x0cV&\x80\xf8\x90\x05.\xcd\xf5\xc1[[|.\x98\xf5\x8d\xa7\x0em\xd7]Y\xdc\x96\x13\xbdj(o\xf1vG\x88\xc5\xe3]\xd4\xb9\xa55r\xc4O\"\xf3A\xc6\x84\xa3\xb4\x8c~\x90Q\xa9\xa4\xd4\xd0\xb1I5\x94\x17|_\x07\xca\xb5\x8c8\xac\x1f?V\x13p+z\xa2\xf3*\xdc\xa2d\xd7PV\xa7\x96\x8bs\xa5dW\xf7\x89\x99*U\xbd\xba#\x80P\xb5\xa5\x9e\xeeU|h\xee=y\\'P\xe68\xe5\x13\xcb\xfa\x1a>9}Y\xdf\xbe\xa2w&\xf5\xea\x96\xaa;\xf5v\xacK%\xfbzO\x05Z\xaa9\xce\x14Xd\x17\xbb\xd2\x07\xc7T\x7f`\xb7\xf2\x97\xe8\xca/\x15H\xcb\xe5rS:\x7fU\xd1 M\xdf\x15\x18u\xc8\xc8\x01 \xc5\xbe\x96:\x89xX\xe8\xc6\x02\x85\xbb\x0b\xe9\x94Z\xaa\xf7(\x12^*\x97Wbf\xd5c\x0d(*B\xf5\xa9\xa2\xb5_]\x82\x17\xcd\xb1\xbbB\xe9$\x8fGi\x96\xe4^\xaf\xebALM\xcb\x88\xf3eq\xf7\xeb\x89\xad\x9c\x06\x19;\xbb\x89YA\xf4\xcb\xbc@i\xc6\xd4\x92\x8d\xd0\x8f\xcd\x8c\xca%l-_\x0e\xdb\x0f4\xf3\x96\xd2\xffZ-?f\x91\x1fD\x8b\xb2\xedH&h\xd6\x80\x03#<\xff\xa3\xf4\xb9\xa5\x15\xeb\xb6&\xb5\xfcW<\xf1\x98\xbc-\xa8dk\xc1\x9f\x18!d(\n\xb9\xa0\xc6|\xb5|\xb5>j\xa9\x80,\xdf'r\xb1\x16C\x9e)\xafOJi \xef\xc71\x0d\xc3K\xea}N\xeb\x1f\xa2ah4\xe3\xe7 \x0c?I\xa4\x0c\xddi\xac\x0c\xabZD[\xe46\xab%z\xbd\xb3\x1c\xed\xe9\xc5\xf66\xbaV\xb2\xd6\x85b'\xdd\xe9\xd0\xb8\xf3\xe9\xaf\x83G\x14\xe6U\xe3\xaa\x14}\n+\x11{!\xcf\xf61\x1ce\xe8g\x0eJ\x82\x0b\x96\xc9\xe5%\xbdl\xb5|\xc6o\xf5\xbeS\x7f\x14v\xd9r\xb7X\x89\n\xc1\xfa\xd8x\x1f\x07)\x04\xbe*f\xb7\xe5lv\xbd\x96\xb6-\xcb!\xd08\xa8B\x08I\xca\xd0F\x13\xfafD\x86%1LV\x97\x1ay\x1f\xf6\xf2eF6\xe8\xf8\x87\x9d\xe9\xb3tl\xb2\xeb\xb6N\x05\xd2\xb8!\x91\x1e\x06b\x1eD\x99-\xa0\x07\xee\xaa^?E\xd4Vl\xa5V\x9b\x83#f\xed\xda>o=\x0e\xc6 \x97\xa4\x91K\x07u\x1c\x86\xee=7o\xd9\xf9\xa0\x96]\xadC#\xa7\n\xdd\xf0\xc1(Y/`2\ne\xaa\xc2\xc2\x83\x016\xbeV\xba\xb2\xc9bo\xed\x808\xa2\xd2\xeb;\x0fu\xdbZ\x0dn\xb9\x1ao\xb5\xf8\x8aq\xd6\xe3f\xa7IZ4_\x83\x12\x83 \x8a\xb8@|.\x96\xe1v,\x87\xa0\xc7\n\x08\xf4\xa4\x07\xe5<\x0f\x86\x15\xc1~\xa1\xaan\xce4\x90\x0543&\xdc\xb5 \x03\xd7\xca\xe5\xbd'\x90\xb78\xecQ\xcf\x18\xa4\xa1flp0H0,b\x08\xe6\xcd\x81\x07a|\x95|\x02i8\xdc\"x\xe3\x93\xb7\x1f\xce~m\xbf>\xb2,hI\x85\xcc\x11\x15\xdeD/\x92*\x81\xbe\x0cB\xdf\xa0\xd2\xb1(\xde\xc8z\xec\x1f\xd2\x8a\x187\xb3\x15\xb1\x9f\xa5\x03\xbd>\xbfi\xf4+\xa2E\xf0\x96ov\\\x02d\x8dmc\x97\xdcII\xbf\x87q\x8c\x0f\x1e\x90\xad\xac\x8d\xa7\xecs\x87\xd0\xc1\x92\xee\x0c\xdb\xef4\xf4S\xb9\xb8, \xbam\xe2\xa0mw\x07\x1d\x01\x05\x08\xe8w\x07\xd1\x9a\x7ff\xff\x99\xd3\xc4g\xbe\xe6\xa9A\x05\x00\xadU\x9a\x93e-!E )\xac\xd6\xf1*\xda\x82a\xd9\xb6\x08\xe8i51\xbf\x05\x1c\xd3W\xba\xa5\xd8\xa2&\xe1\xf9\xf6\x14r%\xdb&\xe3h\x95\x03\xe1\x92\x16\\\xb8e\x93\xb4\x84:p\x99\x8dE\xec\xb3\xe5/V4\xfd\xac\x10U\x9f\xed\xben3\xa7\x04\x1eVuM\xcc\xa3%\xec\x07\xf8\xdb-C \xc4v\xfc\x8e\xf9\xc1\xd6O5~N6 \xd1,9o\x0d`c\xf5\x14\x87\x8dKU\xd2\xb2\xf9\xd0\x18\xe3j=\xf2\xf4\x99\xb3Q\x83\x8c\x93\xa5w\xabL=\xfb\x8d\xa4AM\xca\xc6>\xa5\x81t3[6\x8f\xe8\xe8\x0c\x8d\x1c\x19\xa8\xa1\x0d\xa1VC\xf0 \\\xb5\xf2rpl\xac\xb6\x82\xa5~\xba9K=\x90\x1f\xc2j\xd5B\x8f\xfd\xcdj\x15g\xbe\x1d\x89\x96.w\xbf\x02\xdf\xdb{\x0f\x13\x83\x1d\xeb\xb5n\x80`7;\xd4_\xab\x0f\xf3\x81\xd1H\xaa_X\xf7\xaf~]Q\xbd\xef{\xe5\xceM\xa1\x9e\xe8T\x1b9\xd9\x86\x84\x95\xdeCyP\x011\xc7@I\xaa\x9f\xaa\xa4b\x1f\xe4\xd9\xf0z\xfe\x8e\x89\x0dJ\x93\x9b>\xfb\xb2P\x8e\xc1\xdayH\xe6ME\x80\xcc\xb0\x14\xab\xc2\x0f\xcb\xfb\x11M\xc7\x97\xce\xa8\x0f\xac\xa7\xe1\x97/\xf6\x83\xee\x10\x1f\xa3\xf2;\xd5\xd9jO\xad\\;\x99M\x94 \xb6\x1b\x95>SPk z\x0f\xd0a\xfdI{\xe2\xb8\xc8\xf4\x97 0\xc2\xde\xa6\xa2\xbb\x16\x16i\x08\xbc\xcc\xd6\xa4m1\x17D\xc3\x81\x0c\xd2\x9b\x83\x11\xb8N\x9dJ\xd7[jF\xab\xf7\x04\xc1@\xd5o\xd3\xbeX+\xc7&\x9dW\x11\x10\xe2\xd8\xe6\x1d\x88\xc0\xd5#X\xe5\x03\xeeW\x9f\x1cJ\x17\x98\xb4Ji~\x94\xeb\x1b\xbc\xa6td\xbb\x9e=\xa6\xd9Z\x07\xfe7\xfb]\xe1r\xa1\xb0\xbdGq\x8bw(\xeb\xf6\x80\xf8h\xe3t\xc9\xf3\xb0$K\x8b\xad\x13\xc3\xc4\xa0\xb9\xa25\xf3\xa1\x8c\x82\xacg\xb5\"\n?8 \xd2\x8c\x03\xda\xe5\xbb\xe1\x90x\xb0\xac\xb6|\xf1E\xd1\xa3!\x99\x03\x9f\xde\xbe{\x86$&\x87\x9a7\xeb$e\x01\x91\xd5\xdb\x1aI\x9d\x19\xb8(ab\x17\x81\x95 \xb6\xd5\xc57\x9b\xb4m0$\xb4\x10\xea{\xe2E\xcb$\xe6Cc\xe5\x1e`\xa6=-$\x909\xbb=\xd5O*|Y\x0f)My,5\xd0f\x1fb \xe1,\xect\x93\xb5\x08\xc6m \xcc\xccVii\x11\xb5]dHGo\x0f\x1e\x90\x89r\xa4+\x1d\xc6\x14\x85\x93\xd9\x8e\x85p6\x88\xb1\x03E\xb2\x08\xfc#\n\x88sF~T\xb9\x84\x13\x19\x132%;\xcfI^\xf1\xee\x96\xb7\xfb\xc5^\x1bf\xd9v\xb2\x89\xbbtH\x1c=\xe5\xa6'\xc2\x94\x1c\x92T\xea\xd8H\x8dE\xb9\x1c\xa6$\xbd\x05e\x85\xf8\xbf\xc1\x96#\xbakn\xa1y\xad\xaf\x87\x87\xda\x13A\xdfe*\xb0\xf1\x0f2d\x9b\x1bV\xee?d[,8\xd3#\xda\xe3O\xa8%\x809\xbc(\xf4\x02\xbe:\n\x91\xe0\x90\x845\x19\x81D \xe07\x0b\xc9(\xee\x03p\xaa\xc0\xd4\xe6\xa8\xa0\x8a\xb0@\x15\xd9P\xb7E\xe2\x95\xd0@\x15I\x15\xef}\xac\xcb\x06\\\x18\xe8\xa1\xec#o\xbf2\xc2\x86L\nO\xc2B\xe9Ut\xbf\x1fv\xb24\xe8V\x18\xaa).iEU\xd1m\xc8g\xbb,\xb7\x1d\xc5\xd9\xa4\xd7s\xe2.]\x10\x95\x0f0\xf2URb\xacMP\x9a\xd9\xa4\xc8\x1d\xca\xac\x1a5U%\xa16{Y\xf1 r\xaah\x88\xbb@\xd7OS\x92\x8d\xb9\xdb\xd6Ou\x1a\xbb\xa5\xd9d\x03\x896\xef'\xd1&-\xb2\xba\xd6\x90\xac\x9a\x18\xc4\xc4\xdd\xc5\xfc\x95:1fJ\xcd{E\xdbT\x8bm\xda\xddp8\x0d\xc5\xf0\xfd\x1cdK\xe9]@\x1c\x01!\xca\xa2\x91\xdeR/\xb4\xe2\xfe\x9c+\x1d\xe3-c\x1b\xd8\xd9Y\xf7\x9fy\xb9\xfb>i\x8az\xda0\x08\xeb\xc9\xcb\x14\xc62\xb2\x11\xee\xddZ\xdc\xb7q]4P\x95\x14\x16+|\xd1F2\xe4c\x85\xf4T\xa7[VS\xeb\x95\xafx\xba\xaf\xb8\xd0iA\x06N?_\xc9<\x88h\x18v}\xd9\xec\x05\xca\xf5\xea\xa7\xd5\xf9\xec\xad\xdb\xdf.*\xd5\xdaA\xcc\xd0\x0eb\xa8v\x10+\xb5\x83\x9em\xc8\x16\x0f\xfbI\xb2h\x96Qo\xf9\x91\xcdos\xa2.X\xf6!\xbf\x0c\x03\xafp\x94f\xe9\xb9\xe6\xf2#\xcd\xe5Ov\xda\x18w\x194\xa7w\xedn\xa4\x14\x99\x0e\x0e\x80=\xd3\xaf\xe4\x8f\xaf@I\x8b\xb7\x81\x0c\x04\xd7\xcbv\xc7g\xc8\x98\xd8\x06D\x05\xd5\xb3\x8d\x07||\xc6\xce\xfb|W\xcdl\xdf\x8d\x7f;\xe1s\xf3~\x10\xcc!*)\xe3B9\x86[\xdcQ\x15\xa8\xae\xa6\xae\xa6l+j\xa9\xacPbS\xf9\xfa\xb5\xaf@\xaa1\xb0\x1b\x8fQ/\xcc\x8d!L\xedc\x02\x96\xf0\xb4\xdf\xa6\xb2\x93\x19\x88\xcd\xaa\xc56R*X\xdd\xc9\x96a\x82\xd7l\x1d9\xcd\xb2no\x17\xc9_\xef\xde\n\x94\xb1<\xbdY]rp\xc7*\x7f\x8d\x057\\ys\x9dD\x8c\xdc\x98\xc9U\xed\x00\xba{\xb23\xd9\xd9\xc3{\x95\xfc\xb3Z*\xa3s\xf2\xa4:\xed\xe0W\xf3\x7f\xffo\x9dy\xeb8\xcc*\x04\x0c\xa8\xe6\xcd\x92s\xd8=3~^\xc3|\xe0\xb3\x1dkmy\x01X\x0f\x0cp\xab\x91i\xb1\xb2\x95V\xb2\xcf\x1b\x9d\x90F4\x9b\x19\xc7\xf2\x0e%;0_\x12CR\\Y\x19\xc1\x12\xda\xf6?\x18/\xb53^\x86^\x0e\xb7\x9a9\xed\x0c\xa5\xa9md\x1a\xdf\xba\\\xda\xddvG\xb8\xaa\x0e\xd2\xbf\xca\x04\xd7\x16\xdc\xd5r\xda\xe3\x96\xb4\x08\x02m\xbbS\xd6(\xc5\xd57@-\x8e\xd3\xbf\x891\x17\x1eb\xe4I\xdd3\xba\x0e1\xf2\x14\xb1\xe6*\xcd\xad\xf6'\x0d\x07\xa79x\xa4\xaa~\xbai\xd9\xacd#\xd5S\xabb\x1e_\xfc.6E\xd8D\x12p>%L9\x8f\x0d~g\x10\xef\x97\xaa\x1a\x87:_\x90\xaag\xfc4\xa3Y\xe0I\x1e\xca\x10\x0f\xe5);6\xa3\x19\x9b\xf2\xd0\xbc\xb4NP\xea\xe5\xb4\xd5k{\xd3\xdd\xa9\xe0\xe2\xcb6)\xe5\x8a\xb4\xe3\xb4V\x8b\xa4\xea!\xa8v\xac6EN\xfd*M;*5\x0c2\xfaUX\x1f\xa8\xb6\xfa}\xa6\xa9\xa8\xda\xccW\xc1J\xed\xcfV0\xad\xe6\xd9\xb2\x8a\nP7,\x0d \xc03\xaa7\x18\x12>\xa6\xbe\xff\x81\xf30\x88\x16g\xdc\x0dk\x18\xe1^\x1c \xef\xee>2\x10\xbfD\xfa&\x14o#@\x8a\xb5\xcf\x9a\xe7\x0d\xa9\xc5\xb8o\xe1Q@\x15\xc6eD\xd3|p.\x0eH\xb6L\xf8\x15\xacjA\xd8I\xfd_\xe7\x98F\x11\xcf\x88\xc0<\x84\x12/\xa4iJhJh\xf1%\x07\xc1\xee\xea\xd6\xb8\xd0\xb5\xca\xca%/\xce\x83\xea\x92\xa8\xce\xa1\xa6\x9bM\xf3\x14X\xd3\xac\xdb\xe6G\x9b\xbb\xd4\x10\xfb\xb0R\x9dB5Z\x81\xaa\x8e\xe9-\xf2\x97z7\xc6A\xfa:\xaa`\x17\xe0\xdc\xea\xb5\xe3\xb2\x19\xbcE\xd5k\xb2\xf6\x9en\xd8\x1c\xa3\xea\xba\xc3w\xbc-\xb5\x0b\xa1\xceU\xb5a{\xcc\xea\xdd\xa6\x1e\n\xde\xa6S\x96}\xab\xf6\xe8\xaa-m)1\x88\xc9a\x9b\xa8\x81\xdf\x07j\xb0\x9c\xc5\xfb\xb6\xb3\x189\x8a{\xac\x1a\xe4\x0e\xb5f\x87\xfa\x8e\xfbu\xa5\xc5[\xdb\xad\xfa|%\xf5\n\xab\x83jbbjb\xe2j\xa3\xbb\xcd-\xad\xbeb\xa8\xbc\xa0\x08\xfcc@\x1e\xc9\xf6v\x93\xf8\xaa6\x91\xa2\x9d\xdd\xd4\xf0R\x0b\xec\x1d\x02\xec\xd9\x88\xad\xe2\xecfJ B\xa5\xf1\xb9m\xe2\x10D\x0bW\xfa!\xa8\x93 m\x14|*\xfb\xc9\xaf\"\x96\xbc\xe4^\x0e\x12\x0e\xe55\x89\xaf@HfSb\xd06\x0b\xe38a\x1e\xf5\x96\xacP\xe5\x967P\xdcEn1\x9b\xf2\xc0\x9aT\xb7FX\x1d\xca0^\xceo\xd7{\xde\xd6h$\xc6!\x17\xbd\x1f\x8d~\xbb\xdecNm\xaf\xd5\xce\x02\xab\x8eW\xf3\xf0\xef\xaf\xc4^t\xdb\x1a\x04\xba\xadQ-\xda\xea(\x930\xce\xa3\xea\xd8\xd6j/qK\x8d\xda\xa0\xf7\x82R&\x15b\x03\x0f\x1b\xc0Q4\xea\x14\xb8\xc0\x01\xe7\x19J\xd0\xba\x07\xd1]j\x99\x99\x91Y]k\x86\x07\x0eP.\x06\x86\xf39\xe1\xcfI3\x80\x1d\x89\xea\x9b\xb4\x12\xb5{G\x1a\x03e\xcf }\x0e\xbfh\xb5t\x80\x96~N\"2\"\x01\xf9\x9e\xec<\x1f\x80\xbc\x8bU\xaf\x91\xa2\xd1\x08-\x16\x90\x11\x89T1@\x04\xd5b\x01ZL\xef\xfe\xe89\xc9G\xa3\xe7v^\x1dB\x02\xb71\x8dHK\x1b\xad\xb0\xac$R\x15\xa5\xff\xa9 a\xae\xb3j\x0b\x83\xf4(\xf2XZ\xa5\xc8m\xa7\xacm\x89$\xc9lr\xbe\x89\x96W\xdb\xdc\xf5gIk\xea\n\x06\xea\xb5\x88\x08\xda8\x07i\xe8\x88\xec\x0e\xbcS\x05\xd1\x01*\xf1v\xa6x\x1c\xb1\xeb\xec4\xb8\x0c\x83h\xf1\xdcJ\xa7\x93\xda\xc5X\xa6\x14Z\x9e\x14\xd6q\x12\xe9\x0e\x86d_2A\xe3H\xab)>x@j\xf8\xcc\x80\x90\x11\x0d[\xbeJ\xcaE\\\xc7 \x16c-\xfd\xb4G\xe0\xb6;\xd3\x94\x04\x981,=\x17\x8d\x9e:A\xe1U\x0fx\x1c\xab\x9d[\xcedVWa\xba\x9b\xa8\xe2vD\x81\xc0\xd0\xb7\x15q\xdc\xcb\x85\x8aEj\xfa\x08'\x07\xf1\x1bL\x19h\xb1:x\x16\xef\xcb\xfafqJh\xf3\xb0\x15\x83\xd7\xb5\xd7 (\x02\x07)\xd8\xce\x04\xd1B\x85M\xb4\xb8\xa0k\x9b_Qfv\xdb6\xf2\xf1<\xcc\xd3%\xb4\x82)-\xf4T\xaa\xa1\xf3\x86\x04Gv%+\xbb!e0\xc9`\x08\x85A\x17m\xee\xd6<\x91}%W\xcb d\xc4\xadKT\x8cX\x82 \x97\xe1\xe4E\xa5n-b\xe1 \xa1\x81\xc5Qd\xce\xf8\xf9\x90,\xc7\xcaC\xd7\x99\x9a\x03\x97U\xa6C:\xb53\x87j\xd8\x18;\x1c\x17\xc7v.\xde\xa6\xa9\xd1\x18&lu\x18$Du\x81\x18\x19\xf5\x01h\xde\x19\x96M\x06n\xb1\xa2\xaa!\xf8\xc5qv\xc5\x8f\x92\x05\xf0\xb5\"\xa7\xe2dx\xad\x1c\xefW\x1b|\xc1\"z\x192\x7f*0d5\xa7:\xc4X\xdc\x95\x9f_\xbf{\xf9\xfe\xe7\x8b\x1f\x8f\xde\xbd|s2%\xc1\xd8\xa3\xd1\xa7\x94\xbd|\xff\x96\x1c\x92\xab \xf2\xf9\x15\xc1\xca\xa5,\xfb\xb1Vy\xbb\xe4\xa81\xe1bQT\xc7\xa6\xf1\x85\x13\xdd\xb1\xce\xaa\xd5\x10\x88Sb\xab\xb5\xd6 mV\xdar\xfc\x96U\xb7U\x9a%4\xfeAJ\x1faQ\xf4\x13V\xeb\xdb\x0drH\xf8X\x06\xf0W\xb1\x89\x96\xa0Z-\x0e@\xa8N\x124r\x99\xb1\x81\x16\xd7v5\xe8X\x892o\xdb\"%\n\xbd\xaf&\xadx\x14d<9\xf5\x12\x1e\xca\x88\xe8]\xd3\xaaQf;\x94x\x98\xeb\xb9r\xad\"\x8e\x9b\xbeV\xdb\xda$<\x8a\xc1\x97U\x0c\x89\x93B#\x1dD\x8d\xa2\x8aN\xcc\x11\xe9)\xd3(\x17T\x1b\xd1$0f\x0c\x86\x06\x02\x05\xb4\xc6\xeei\xb7\xcfI\xc7U\"\xce\xf5\xedr\x81\x1eF7\xf18a!\xa3)so+\\(\xde,$\xd7\x12RoEr\xf5S\xc1.\xc4`?K\xe4\x067\x1d\x86\x0eY\x91q\x88\x8c\x03\xc4\xc5\x8a\xe9\x82\xfd\xf2~>O\x99\x0c\xd82\xf6\xb5\xc6\x82\xfe\xa1m4\xe4:z\xc3\xe6\x88\x00\xf5FW\xf5\xeb\x06U\x9d\xf1\xaaX\xf0+\xc1\x82\xceC+;\xbfm\xa9\xf1O\xd5_\xb7\x9a\x89\x92\xf8\xdd\xaf3\xaa\xea\x9acb!~\x1b\xd7\"\xed\x81\x16\xf6\x9e\xe0\x91\x16&\x8f\xeb\xf5\x84\n\xbe\xde\x1e\x0f\xa7\x97q\xbe\xc9\x10B\xd0q\x10\xfd7\x83qi\x8e\xef\xcb\xf7ou\xfc\x8d)I\xda OVqvcT\x9b\xb7\x02\x0b<\xf3!\xcc\x17A\xf4c~)\xb8\xdf~\xc0\x9f\xb2 L\xc5\xd9\xde\x05~\xb2\n\xb2\x8c%S\xf0\x9bg\x05\xfd\x11t\x88\x8a&\x87m\xb0\x05\xef\xe8\x95P\xd5\xf5\xf6/\xe0\xbc\x1e\xd7\x99\xa6\x00g\xb1\xa8e-\xa9\xb5\xf7\xb4\x9e\x9eV\xd4\xc8'\x8f\x9e\xd6\xd5\xc8\x15\x17\xb6[\xff\xbe\xd7-\x03\x01\x8e\xe0\x94\x85r\x08_G\x82\xd9\xa5\xf8\x98+\xd9H>N\x80\x16eE\xa9\xea\xc0c\xf1\xb9\xcd/v\xca\x7f\xb4\xbc\x97\x8e\x0b\xa2\xaa\xc3&\x92\x8eK\xa2\xce\x85X\xe3\xbd\x0c\xad\xea\x02)+\x1dP\xa9\x1f \x94S\x17D\xddu\x04\x94\xa4\xa8\xa2\xb0.F\x9da\xc6\xad=:\xb6\xd1w\"\x9e\x05\xf3\x9b\xa30\xc4\xbeU\xed(*\xf8B\x98\xfbv\xc9W\xbb\xe5Aa^Pk'\xa8Q\x94\x94Ldx\x99D\x8c\x14\x0c-\xd5\xca\x86\x8e\xef\xd5\x06\xc1\xab\xad\x83z\xc5\xb7\xb2A\xc0:\xdf\xf1\x9d\x8d\xcd\x12Z)l\x9b\x81\xc1&\x0d\xae\xf8\xa8n\xfb\x18b\xa6`W\x18hl\x11\xed\xca\xba\xa1\xc6]y\xed\xcd\xae\xf3\x82,\xc5>7\xb0.\xcc&\xcfR.\xbf\x12\x91%\xee\xdc\x14)\xa4C\x12\x0f\x86$\xa8\xf2\xee\xf3\xba\xe1\x15\x14\xbf\xe3\x01\xd6\x90\x05*]\xea\xddz\xdc\xa7@\x1dl{\xa8\x18\x8f\xb6h)\x94\xd78\xdap[*\xa8%\x96\x8d\x98KO\xe6\x85\x90\xe0\xc1\x03\xe2\xa4\xfa\x80\x01\x85/M\xb9\x8a\xac-\xd71\x8f-\xc8W\x8cZ\xf3\xe8l\xce\xeb\x82e\x928N\xa7$'\x87=N\x00\xcd3\x16tt\xd16u}\xff\x91F\x8b\xd6\xa0,`\xdb1\xce\xd8u\xa6d8vP\xb8\xb3\x1d\xfby\x1c\x06\x1e\xcd\xac\xd7\xb5 \x84\xaa?\xe3\n\xcb\x9dI\xb7\xa6C\x92\xc8\xd3\xca\xff\x00\xbb\xcd9\x89|@\xaaI\xe6\xd8\xb9=-rK\xcc\x16\xb6\x9e\xb9-\xbc\xa1\xf8VC\xed\xcf|X\xe4OA\x03\xa5\xe9\xf7\x95\xe0\xcc\x1e\xe9\xc2\x07\xc4\x98$\xb9\x12*\x84\x8dX4H\xb2mh\xe5-\xb1`\x9dv\xd4-k\"\xe6\x174mz\x86\x05\x95\xf3M#o\xc9!\xdep\xd7tKH\xb9,\xed\xb0\xd2\xb7\xc1\x9c{y\xda^iP\x02v\xd5\x99k\x7f \xb0\x86\x8f2\xd7\xe6\x91\xb0]$\x90\x8fa\xe2\x0b+\x80\xe2\xeazH\xf21\x8b\xfcf\x06>\xf9:XC\x9f\xd8=\xa8\x07\x00\x82.!b\x98\x04P\xb723\xf5\xd1\xaf\x8cpu\x14\x07\xe4\x90\xec\x10A\x04g\xfc\x14\xd40\xdcA\xe7~\x0eA\xf2\xee\x85<\xd2h\x02\x1f\xdfPa\x15\xf1]p\x06\x12e)\xec\xe8P\xedh\xb7>\xc6C=\xea\xaau\xf6\xe5\xe8)\x0d\xa7z\xf9\xd0,/^\xcd\x99R\xef\xd5\xae\x87\x9bt]\xf0\xbb\x1e\xd9&-\xee+c\x13\xadV\x90)\xde\x9bX\x0c\x06\xe03W\xb94\x8b\xf5\xf0p\xbb\x03#\xad\xd2\x14\x8f=\x1e\x864N\x99%`k_\xf4\xe6\x8bs\x83L\x89\xd7\x81\xe6\x04\x9c'\xd0W\xcfu\x8a\x90\xf3\xa9\xf5\xb8\xear\xb52\xd4\n\xcb]\xe7V\xf7icX\xbagbQ\x90CIL\x00\xf2\x801!\xd3\xe2\xd7\xf7\x05\x8c+\x01X\xe4\x0f\x15\xa2\x03\x08\xf0Zi\x94\xd5\x99,\xf2\xc1\xd4\x14?\xd9d\xba\x9c{\xc7[\xd2\x84z\x19K\x1ci\x19\xce[\x8e=^\x14\x16\xcb\xa4R4!\xa3\xa2\xb8\x18\x1a\x8c\xeb!=\x84\xb0D\x1d\x1b\xc8)\xd3\x86\xc8\xf4Q\x81\x1eN\xf6\xa5E\xd4\xb9\xc1f\x81;8\xef\xdc\x86DI\x1d\xde\xd2l9^\x05\x91[\x0e{\xc7G\xf2\xaa\x93\x03=\xad\x94L\xcd\xca\xe4\xf4\xb6\xa9\x95\x89\x035\x1a\xb3\xebL\x94\x7f\xf0\x80P\xf2=i\x0d\xc7C\x0c|\xdd\xe2\xa0\x8d\xa86Ri\xff\x92Z\x01\xed\x9aJZ9\x15\xb4\xd6i\xc7xx\x1a\xd0f7FTo\xc1\xe9\x87\xd7\xa7\x87\xf3\x0d\x11\xa0~\xe6%\"\x0c\xe1L\x15\xe8\x9aK\\=\x04\xc7Eb\xc1\x1f\x85!\xd4\x96\xba\x10/\xe8{\xc0 n$\xb8\x0c\xf9\x959\x00\xcb\x99q=U\x91\xa7+\x82\x8d:\xd7\x08\xb6\x91-\x8a\x1a5\xe1\xc2{b\x1d\xfeN\xb1>.\xc5\x93\xb3\xbc\x11\x13T$\x17\xdcKbWB\x00\xe1\xfdx\x1e$\xa9t\x91_(\"\x18I\x95\x82\x9a\xdb)\x12\xb1\xdb{n\xff\xa0\xdd\x16\xca\xd4\xa0+\xf5\x1a+\xea\x86\x8d\x82\xb2\xad\xa5\xeaCuH\xff\xd4\xfc\xd5\xdb\xb3G\xc5`-\x01\x9cl\x18\x9f\xed<'\x91\xb5'{\x92\x13,\x88\xbf6\x1cJ\xc1i\xed6\x89\x80\x1bQ\xa4\x90Fr$ /\x94\xea$%\xdf\x9b\x86b\xf6\xad\x16\x81\x96)\"\xd3\xd4\x8f\\\xceS\x92\x91\x11\x12\xa6\x8a\x90FHi\xfd\x04\x851b\x05\xb8\x91\"\x07\x8c\xbb\xd1\xe0\x9b\x9a\x7f\xec\xef\xedX\x8c\xb0\x8be(\xd5\x9c,\xfc\xfa\x96b{\xb6\"\xb0\x01WVe\x11$%n&\x13\x137\x1a\x14\xfaR\xc6:\x13\xb8\xc2\xf1$\xf1\x98*\xbb\xb6C\x88f#\x93D\xb1)\xd9\xda\x92\xf1mhR(\xda\x7f\xe0i\xa0\xb9\xb4\xad-w\xf2\x84< V 1\x84\x0d\x15\x8d;\x0f\xdb\xa4c\xd8\xac\x17~\x80F\x1e< {\xe0\xe9\xa6\xc9\xdb\xdc\xa1}\xfd\xda\xa1\xb9^\x97\x899\x19W\xec+\xe0\xf2\x8fL\x8b\xe3e0\xf6\xd9\x9c\xe6a\xf6S\xc0\xaeD\xa6$;Pd\xb6\xe5nI\x17\x83\x16_Qc0\xba9\xac\xder\xaa\xd4)\xeak \x84:\x118D\xaf\xa4W\x95\x9c\xa5v{\x13\xe0\x1d]\xb1\xfb\x9dwg\x99e\xf1\xf4\xe1\xc3\xab\xab\xab\xf1\xd5\xde\x98'\x8b\x87\x93g\xcf\x9e=\xbc\x0e\x83\xe8\xb3\xd3\x94\x90!\xf0\xbf\xbc}#\xca\xec?\x8c\xe8\x8a\xa51\xf5\x98\xd3\x94\xa05\xf1\x12\xf5<\x16e?\xb2`\xb1\xcc\xa6\xc4\x91\xaf\xa3%\xbc#>\x9a\xa8\xe7\xe5\xab<\x04O\xd6;H\xb6\xef\x07Y\xb0\xb6d\x86\xc1\"\x12s\xff\x03MY\x18DL|O\xa7\x8d.U\"\xf6\xd10\xe4W\x1f\x19O|\x96@\x99\xf2\x15\x85\x8e\x97\xf4\x92e\x81\x87\xb7b\x15\x87A\x96\xfb\x966&\xf42\xf0^\xf1d%>\x04/\xa39OV\xd8wR\x0fn\x07\xb1Z\xb2, .\xf3\x8cI7\x88N\xe5\x1d\xabJ\xe7\x8b\xa5g\xc2\x8bw\x0c>\xcf\xf8G\x06\xc6\x92\x02\xba|\xc3`\x7f\x0fVy\xb6D\xdb)\xc6\xfcU\xc2\xfe\x91\xb3\xc8\xbb\x99\x12\xa7\xf2\x8e\xd4%\xf2?$|\x1e\x84LA\xab7\x0b\xac\x98\xcf\xd3e0\xcf\x14\xb4x\x1f\xa5\"\x01+p\xc9\xaf\xf1V\xb2E\x10\xe19\x01M\xf1\x8c\x1b4\xd9\xa3\xa1\xf7\x16\x0e`G\xffD\x1a\xe2\xd1\xb8\xd8\x0f\x1e\x8d\xed\x9b\xc1\x0b\x83\x18\xffN\x18\xc4\x1f\xa8\x18tG\xfc\x1c\xc54[Z\xca\x7f\xcca,\x01,\xc9\xd1\x91\xd4\xb5}\x8a\x02\xc1w;\x95w\x0c\x9e\x87\xb3#\x1b?\x98\xcf\xf3\x94\x1ds\xe9\xabsJ\x9cZ\n\xd2\x1b?H$go\xa9\x11\xbc\x9eZ\xf2\xd6\x81m |\xbe\n\"Z\xc1\xef:\xa9\x0d\xbd\xfb\xb9\xa5:|\\}\xbca\xcc_0\xb5\xb7\xf5O\xe4[,dkj\xed\xb8\xd4[\xfb\x81z\x9f\x17 \xcf#_\xd4\x05I\xa3\xcb\"\x0d\xab4\xc2'U\xd0L\x91m\xda\x04\x9b\x9bD4\xfc\xc8R\x9e'\x1eK?\xb2\x7f\xe4A\xc2\xe0\xa3\xb6<\xe4\xe3\xf3 \x0c\xd1\x0f\x88\x8c\xf71\xf5\x02\xf0k#\xdeF\\\xbeZjQ\xa8\x08 -\xa8H\xeew\xdb\xe72\x96|d\xa9\xacB\xfe\xb6V\xa1q\x99\xf1\x86\xc1\x86\x9c\xfb\xc7\x02\x13\x08P\xf12\x02\xbc`\x035\xba\x0b\xc0-\xfd\xe5^\x9e\x8a\x99\xc5\xfb\xc2\xa3\xec\x15]\x05!T\xc5\xa3l4\x877\xb4\xa2(;\x05]\n \x98\x06\xbf\xa3\x03\xa7\xc0\x8e\xfc\xff\xce\xd3\xcc\x04\x1eQH\xb2\x95\xc9\x12\x96y\xcb\xa2\x80|\xb5\x02\xdf\x84eC\xc4\x8b\x05\xf0'\x9a\x04\x12U\x00\xe8Z\xbeZ\x80\x7f\xd6g!\xc0^\xd9\x0eC\xa9\xae\x83\x0fg\xc2Wx\x06\xbe\xc3\xe7\xf8\x0e_L\xf0\xe4]<9\xbc\x89\x97\x8a\xfe\x82\xdf\xa3\x08'\xbe \xf3}\x12\xb0(\x03\xcc\xf0#O\x82\xdf\x05\x9f\x18\x16%y\x99;Z\x16\xd9=\xea\xfa\x89%Y\xe0YjZ\xabL[=\xe0\xb8\xdb\xd1?1\xa8\x84\xfa\xa2:\xd0\x12\x99K\x9a\xb5\x91\xd6RNo\xc2\xca;\x02\xbf\xa4\xd1\x02Ned\x98a8\x8e\xfc\xf5/S\xe2\xc0\xef\x11\xf5\xd7\xa3k\xac\x16\x91\xfb> \x16AT\x02sxG\xe1\x03\x9f\xf1EB\xe3\xa5\x85\x90\x0fVt\xc1L\x92\x01\x12ZI\x86 \"xU\x11\xbe\x86\x80\xd8\xf1X\x8c/\xeb\xcfx*\xbeJ?\xe3_\xf8\xbc\x87'?\xc2\x93Y\x12\xb1\xf0-\xcd\x92\xe0zJ\x1c\xf3\x15\xe9\xad\xcc\x16\x93\xfa\x06\xe4UE\x892\xc9R\xca6\xd9\x9f\xd9\x0d\xdci\xa4P\x95\xfa\x8d\xd6qs\x1a\x8b\xd3^\x01\xaa\x17\x1c\xf2,Xi8\xf8\x89@Iy[\x81;\xcdW\x14:\xcbXr*p?\xac\x0b\xf9>Je\x02V@\xa040\xa6\x95'\x8d~\xb7\x1e6`\x8f\x0e\x05\"v\x14-\x00\xe96\xd2\xb0r\x1cp\x012\xb2+\x9a|f\xc9 \x90\x1c\xf2\xf7\x88\xa1\xb4\x86\xcc|\x1b\x18\x80\xab\xc0\x0ex*\xaf\x085h*o\xa1,\xc0\x05\xd7c\xbeZ\xa15\xf60\xde\xac\xb0?\x07>\xac?\xe3\x0d\x85M\xf1=U\x84\xcb-qV=\xc9R\x9d n\x87\xcb\x96lE\x15\xa2\xc6>\xcf-\xd2\x82(_\xbd\xf72\xba\x86\xf5[\xbe \xdf\xd0R]\xa4\x12\xae\x89\x164O\xbaa\xc73\xa5<\x04\xcd ld\xa7q\x00\xd9\xf2m\xdc6_\xb3d\x1e\xf2+k\xa6\xd8\xe4Z6:%\x8eN\x1a\xc5*\x0d\x1b\x17\x05s\xb6\x0c\xbc\xcf\x11KS\xb3\\\xa6\x13\x91\x821\x0d\xa2\xec\xbd\x92\x08\xc1\xcb\xc8&\x10\x8ai\xc4S6\x018\xf1k4A\x81\xb2e\x81&\xcb\x17\x1cRP\xe7\xb5\xf5\x88\xa4\xda\xcb\x9a\x07v=\xc9^\xaa\xf6)\xeb78\x1c[\xa0\xee\x0e\xe0\xf2}\xc4 \xc1V\x00\x97\xa3\xc8\xac\xa3\xec\x17]\x8f\xf8m\xad\xe2(\xfb\xd5\x80\xfb\xb5\x05\xeeo\x06\xdc\xdf0\xb8\x84\xa5,Y\xb3\xa30^R\xf0\x1bo\xbc\xb7\xc1\xa71\xf3\xb2\x8fby\x9b\xa5\xcaT\xb4,`\xee5+\xc6\xb7\x92\x80\x94\xc07\x9d \xa2r|\x18\x136\x17#(\xfea\xd5\xb1\xf9\xaf2\x17\x1b\xb2\x82\x9ey\x0d+\x0b\x00U\n\x08cP\xba=a1\xa3\x19(\x89A\x81\xe2\xcd\n\xfbR0\xe1N\xf1\x1b\x85\x93<\xe8\xc9u\xc6\xa24\xe0Q\n\x05\xea\x89-%_1\x9a\xe5 3\xcb\xe9$\xb4\x94\xd2oA\x074\xcdCK\x16\xcflR\x94\x04g7\x12\x1c\xf7\xa6\x1e\xb5\xb0\x87)c8\xc3\x9f.i\\!I!\xa1\x95$MC\x1e[\xbe\xa2 \x184\x8fyyH\x13C\xe8SO\xc2\xbe\xa5@N\n\xb9\x84SO\xc2K\xd9\xba\x1b'\x8c\xfaoY\xb6\xe4>\xd4U\xbeb\xf5\x94\xda]\x02\xb8|Ca\xfd\x97l\x1dh\xe1\xa5\xf9\x8aB\xb3\x15.\xe0\x169kKN\x90y\xcb\xb3 \x84\xe5h\xbc\xa1\xf5\xf3X\xd3\x86\xe2\xb7\x95.\x14\x99\xa5\x0c\x02@\xed\"\x884K\x82\xcf,[&<_,\x8dc\xb3\x92\xdevvV\x00\xcd\x03\xb4ZC\xdb)*o\xb8,\x03\x94\xf0\xcf\x96\x95 Y/i\xba\xa4IBeWE\xca\xc8\xd7I\xf8\xa7T!^\xae\x81\xa2\x14\xb7\xaf\x04\x01\xf3&\x88\x98G\xe3\xb2L(\x13Z\x0b\xfc7\x0f\xa2j \x91b-\xf26\xc8\x04\xdd\xb1\n\x8c\xa6\xad\x8a4k1s\xbe\xa1L\xeb\x8c\xf3\xcfL\xd3\xc2\n\xfc\xcaB\x0c\xa7y2\xa7\x1e;\x95X\xc81_1\xe8\x1b\xb1\xd4\xdf\xd0h\x91\xd3\x05\xc0W\x12\x90\x12\x19\xbd\x0c\xa5\xb7&\xb1d\x8c7\x146Y0 \x02\xd4/+\xcc\xaf\x05\x0cv\x96e\xec:;\x02\xfdV\x01\xc6\xae\xb3\x91\xd4v\xb5\x80\xbed\x1eO4\x0e\x00p\xbfH\xb1\x141\x91/\x94h\xc3\xbd\x02\xa0\xa0\xf9\xca\x17\x0c\x92\xa3\x1b!+\xe98$7\xc7%\x019. \xc8E;k\x14t\x91\xd6\x86\x06\n \x13\x05\x94%\xdb\xb6\x7f\x1e\x05\x9e\x8d\xb7Qy?\x04~\x00\xf5\xc1\xdb\xe82\xf0\x03{E\xa0|e@\x83\xaa:\x0e\x9e\xa5\x1fXr\xb2\x92\xc0Y:\x8a\x05\x85\x8a\x11\xbf\xeb#\xe3>\xd7Y\x8f\xca\xeb]\x0c\xf8G-\xaar\xd6#%\xb6\xc2\xc0^\x9b\xb2%g=2dM\x18\xf8\xdb\n\x87\xe8\xacG&\xcb\x88\x15P\xdb\n\x19\xd65\xf32\x9e\x9c\xcc\xe7\xcc\x13xF\xbe\x8e\x18\xbcc5\xb1$\xb5\xb1jk\x96dG\xfe\xfaW\xa8&\xc9@\xf0\x86\xa1\x1d\x91Y\xca\xdd\x00\xb4E\xecVB\xffZ\x83F\xeb\x0e\xd8\xd5\x0f\xfcZ@\xca_\x16\x983\xc0 \nL\xbe\xa0\x90ip\x19\x846n\x18P%>\xacW<\xf1K\x89\x8fxk\x91\xf7\\% \xa9Q\xb7E\xeam\xb4\xc2o\x8cp\x9a\xf1\xba\x90\x95\\\xdb\xef\x87\xafq\x04p\x8d#\x80\xeb\xe3%\x8d\"\x16J\xad[@\x91\xf5$\xec\x1ba\x10}>\xf2\xb2\x1c\x88^\x07^\xa7T\xbe[\xc1\x13/\xe1\xa1\x01.\xdfm\xe0?& \x88\x96\xb0\xcb\x04\x15EC\xe6G\xb3\xd2\xb6\x1aO\x97\xfc\xaa\x00L\x97\xfc\xca\x06x\x16dF\x95\x99x\xb3\x82\xca\xab\\\x05\x89_\xe2^\xaf\xc2\x1f\xc0\xd3\xb6s\xbd\n\xa7\x97\x14U\x98\xb8^\x85\x11\xbe\xc8 \xe7\x17\xf8\x00\xd4\x10\xa5SLAG\x81\x8a\xb3W})\xa4\xe8:\xbc^\x85b\xcd\xea\xf6`J;D\xfa2@\x1as\x83/\xae\x1b|q\xdd4\x17W= \xf9\xf2\xefh]\xbfs\xbe:\x8a\xfc\x0fT\x1cQ\xe5K\xab\x7fT\x8a*\x1f)\x17\x02\x81\xc0\x95\xf5@\x11Dz\x1982Ug`\x84R\xcc!\x04il\x85\xa4Y\x1dil\x806 \xb9\xec\xdb >v\xd6!\x17z\x1b\x84Z\xe1\xad \xb0\xb2m\x10zI[\x8c\xdc\x8a\x85h\xcfWk\xb0WH\xd9\xc6\x8cL\xcd\xc8]\xa4\xaa\x9d*#\x02\x8e?\xb3\x9b\xd4\x0d\x06\xe39ON\xa8\xb7t\xed\n\x84t\\\xae\x08\x19\xe7vgH\x02\xf1\xeb\xc1\x03\xe2\xd2q\xe3\xeb\x12H@\x18\xeax\xdf$@\xc7N\xddu\x02\xc7\xedW[\x82\xfe`\x0e\x15\xa4\xa3\x85Guk\xd7T\x81\xef\xe2>>\x1e\xe3>>vw\xeb\xd5\xcf\xc16\xbdj\xcb\xaa50\xdf\xea\xf8\x05\xa69k\xc3;\x8b\x80\"/\x0e\xc8\xa4\xe6=\xb1i\xaeN@2\x12\x02]\x83o\xd0xIS\xe6\x7fd\x8b \xcd$\x15\xaf\x97\x10\n.\x1e\xe5\xf1~J\x1c\x1eID\x85\xa0)\xfdh\xd7\xf6\x06\xb4r\x11\xe5\xa0e\x90\xf5M@\xd9&\x16LC\xe4\x01^\x9a9\x19\x8f\x7f\x08\xf3\xc4\x19\x12\x07\x04\x01\x10\x1b\xfb-\x8br\x95\xf2\x8a{y\xaa~\xff\x95\xdd\xbc\xe4WQ\xf9\xf6)V\xbf\xdf\xf2\x06\xe8I\xe47'\xab\xa9\xa2\xbf\xa1EV\x8b\x05q\x87\x0b\x12\xfbf*\x0dM\xa7=\x0d\x82Mc\xd4io\xd3\xe0\xc2du\xda\xcfB\xd8\xb0j\x9dV\x8d\\\xf1m\xdb\xb17\x88\x1a\xed\xa6\xa5a\xab\x85b\x0f\xdb\xc4[\x8e\xbb\xb4KP&\x84\xd3\xc2PA\x07\xc7o\xb1\xf3\x92Q\x12\xa4\xf1I\x0b\x14\x8f\x05\xd0%\xcf#\x1f|5\xc4v\xd8\x90\xcd3\x13\xf8\x0d\x9b\xdfn\x94\xbf\xba~m<\xc0\xb2n\x0d\x8a\xfa\x9e\xbb\x16\x07,6\xde\x80~\x9a\x03\xa9\xcd\xfes\xc3\x93J\xac\xe6aH\x96Cbq\x10\xa7\x06\x9fC\xb4xr\xa0]58C\x91\x04|\xa6\x98\xd7!I\xc6\xa5\xea\xba\x8e\xb8\xf3Ry\xb7c\xa9\x0bf\x99\xd5\xfe\xfd \xf9\x8c%N\x93h\xfce3X\xee\x9aE\xa0\x84\x9aNImF\xd8u\x96P/\xd3wtu\xca\xa4%|\xf4\xd6\xa2\xc3\xea_\x0fdF\x0em\xb1\xd3\x06d\x8a\x9a[\x88'\xbd\n\xdam\xde=\x9a2\xe3\xd8\x9bZW\x9a\x1b\xba\x1c\x82\x9d;Y\x923\xe9#\x9e\x8f\x95\xaa\xed\x89\x1f\x80\xc8Q\x9a\xf1\xf82\xb6\xc7R\xfa\xa2\xd5\x07T\x8b\xd1!\xb8\x82\xc7\xb3\x8b\xf6\xc1\x99mo^qd\x96\xc7d\xf1\xe5\xbb}\xb8<\xe9\xed_\x87\xe3\xd6\x12\x17\x8b\xf4\xfc\x8eI\x89\xe0_\xaa6\xe9S\xdc\xd2 \xb5\xa6\x14\x19@n\xa4E{G\x0b\xeaT\x8b\xbdz\xb1t\xe7\x83^\xdd\xd2$TG\x97$m\xd5\xd9!\xd5\x91\x0edFZ\x1c94\\b\xfa\x1f\xf2\xec\x0d\xf8\xd3d\xf5\xe8k\x16\xaf\xa3%\xf1*M\x97a\xd1\x03u\xb5c\xb5\xc1\xc3\x8d\xaf.!\xf5\xae\xcc\x0c\x1e\x99\xc9\xe6\xaf\xbb\xc9\xfbP\x9c\xc9\xc9\x95\x05\xdbc\x94\x9b\xd9\xdf\xab\xf3J!\xce\xfc(\x8f\xdd{u&g\xae\xd2\xeb\xf0\xb1jM=\xdd\x97\xf0\x8f\xea\xbdZ\xaa\xf4\xfa(\xacUz\x9d\xe9Z\xa9A\xab\xc3/\x14|\xdd\x07\xdf\x8d\x1c\xcd\xfa\xe8\\*\x1e\xad>\n\x17e\x84\xaa?\xbe\xd6\xf2\xaej\xe1\xe8g\x0e\xbd\xe4\xe0G\xc0\xa1Q \xdd\xe3\x9dD~\xe5\xfdu\xc6\xf4\x15\x89\x91\xaa\xfd\x0f8\x97\x8a\x95\xf1h\xf4!\xa47\xc6\xcf3ya\x08)a\xe0}\x86\x1fUn\xc7\xe3\xb1,\x91C]>\xcf/Cv\xac\x81\xfd\x84.\xf4\x7f\xd5*\xf9S\xfa7\x90/\xd7A\xa6\x7fC\x8c7\xfd\xf2~]\x02\x15\x8d\xf5\x13\x0e\x1c\x92\x9f\xcb.)<3$\x0e[\xc5Y\x00Q\xcc\x1c\x16y\xc9M\x9c\xe9\x17_\xfdH\x12\x0e\x15\xce5{\x16D\xb1lv\x10\xadi\x18\x00\xd4\xe7\x92_\xfb\xccn>$pO\x02\xbf%k\x16r\xea\xeb\xff\xcc\x7fI3Z\xbe\xbde\x19\xf5\x8d\x94\xa2\xd5+\x93\xd5\x83\x97\xb7\\v\x14^\xde\xe7%\x94\xee\xf5\xaa\xe4\x06c\x9afL\xfe\xc8S\xf9C\xcd\x93\xf8\x0f\x12m\xe2\xc4 _\xe8\xc6&4c\xe5\xc0\x80s>\xc7t\xf1\xeb\xa4\x8c}\x96\x83\"~\xa9\x1a\xd2\x8c\x86\xa1J\xcd/WrV\xd2<\x8d\x99\x9c\xb9,X\xa9P\xd4\xf0\xc6soy,\xc8\x87\xb0xUS\x0c\xbfu\x07\xe1\xa5\x18\x08\xb8\x1f\x0b\x8cE\xba\xe6a\xbe2\x1a{EA\xf6\x0e?\x97\x8c\x85\xcey\x0f)\x91f\x8d\xd8l\xe7|\x9c\xf1Oq\xcc\x92c\x9a2w@\xb6\x05c\x16\x06\x1es\xeb\x9b\x95(\xcbg\x87G\x10\xe3\xb7\x99\x0bv\x98\x19\x8f-\xd9\x1c\x15x\x90;\x8a5Z\x0c\xc1KiFD\xb6\x89s\x0f\x92\x8c\x04\x91*T\x0f\xe3\x0b)P\xe3Cr5K\xce\x8b\x80\xd9\x00Y\xf3\xd2~\xa2PS\x91X\x08\x07\xae\xad\x16\xca\xce\x18\xe2P\x8d/\x12\xce\x81.}\xfd\xb2\xac\x1f\xa9\xe9\xd4^\xd3e\x9ee\xd2\x0c\xf8@\x06\xe0T\xdb\xdbHH\x8d#W\xa6\x08TF\x13FU\x9a\xf1m\xfdK\xf4\xec\xb8\x95\x92\xbf\xd8\x90\x92\xe7(\x13D\x13B\x87pR\\\xcd\xd89.-\xd8\xba\xe9 \xf5\xfb\xd3\xeaGpjtPT\xc7\xeaD\xe8\x07\xa6O\x8b\x0e\xe8\x97U\xcc\xdd\x01}\xa2\xb0z\x17X\x81\xf1;\x01\xfd\x1e@pRt\x00\xbd\x86\xd5\xd5 $\x0f\x96\x0e\xb07\xe2P\xe9\x01\xa3\x0e\x9c^\x90\xc5a\xd4\x03Z\xe2\xe7\x0e\xc0\x0fp\xfat\x01\xf5X/\x1f\xd4\xa9\xd5\x05\xa6O\xb4\x0e\xb8\x8f\xe5i\xd7\x05 'a\x07\xd0\xa9<\x1b{@\xf5\xe8\xc3\xa9:S\xbb\xc0\xe4y\xdb %\xcf\xe2\x0e\xb0\xb3\xf2\x9c\xee\x80\xfc\xc9<|;`\x7fV\x07\xb3\x9d\xbf\x12<\xc0\x1d\x19\xe5\xbfj\x8a\xab\x9do\x94\xfe\x9e.\xdd\xa8M\x82\xac\x9f\xfbf#!\xb8\xd3\xdd\xba\xd9\"\x88(`\xba\x84)\xa2\x19\xde\xdd\x9a!\xc9\xf4\xf6\xa1\xdeU\xaeq\xe4\xe9\xba\xc9p\xbf4X\x81\x8e\xbev\xc9G\xaa\x80@Y\xf6\x01\xb4Nc\x15\xec}7\x1a\x7f[P\xe6\x1d\x80\xdd\x12\x18\xa2\xe6.\xbe\xdb\xdc\xbd\x14\x9cUGc^*\xae\xab\x17X\xd6\xdd\xb9\x97\x9a[\xeb\x01'9\xb9\x1e\x80}F\xf5e\xc1\x01v\x02\xf2\xae\xadkq\xadHz\x8e\xfb\x99\xc1\xf6t\xe1a\xcd\x12\xf5\x81\xeb\xb3\xa8\xcfJV\xaa\xbd\x8f\x16\xef\xb8\xa4g\x1f\x8fLABG\x9b\x8e\x9aB\x86\xbe%\xfa\xf4\xa4\xc5\xbb^\x9f\x9e\x9cU\xd8\xcd\xf6O\xad\xef\xf6)\x19\xe4\xa7\xe3\x1b\xab\xbb}\xe3g\xe0\x88\xdb?\x81\xf8\\\xd3O\x9fO\x1c\xf3\xb8\x93~;\xeeF\x98\x1f@d\xd1\xde\xd2\xa6?\xc4\xa6\x08\x96\n.-q\x9d\xfd'\x0e\x1e\xc8H\xf0M\x17\x10\x90\xa1\xbc%\xba)9\xadf\x01u\x80\x05\xed\xb7?\x17\x83!\xb9\xa8\x94\xbd\x07\xa1/\xdcV\xf3H\x1e\x89\xa5\xdcw\xeb\xd4e\xe3\x8b\x8c.\xd0\xdb1b\x08j\x05\x1fm\x17\x0f\x04z\x18\x90`\x83\xf8\xac\x9f\x08\x96\xfe\xcb\x17\xe2\x9e(\xde^G\x85\n\x0c\x89\xdf\x0d\x16_\xaamh\xae\x820|\xc9B\x961\xcb\xf0\xdc\xfb\xd8Djll\xbd\x8c\xce\x95\xc3Iw0$>4\x0dR\xbb\xfaU\xbcYd\xef\xc7\x90zG\xd9\xfb\xa3}\xd4\x81=o\x11\x18h\xf7nc\x8f\x86\xa1\x8a\xacn@\x97\xcd.~%c\x9aC\xbc\xf8\xe3\x90\xa6\xa9\xcb\xeba@\n\xa9\xb0\xf4\x8f\xd0\xd4\x06a\xd2/\xb1\xe0-\xb0\xec8e\xb9\xcf\xcb\x0b\xed\xca\xadhM\xfd\x8a\xdf\xd3\xa85o,\x9a+\xc4\x0b\x83\xf8\x92\xd3\x04\xf8\xe6>~\xda\xb54\xa9RP\xe9\x94\x1c\x126\xae\xa4\x17\xb7\xa6\xd5\xe4\xaee\x85Mw\xf0-\xa7;\x90^\x86\xcdI\x08\xeec\x12&\x93\xc9\xbf\xc1\xdaM\x98@\xe2\xbeV(\xff\xf6k\xafy\xf1\xc3-79\xb8\x87\xbd\xcf\xecf\n\xf7V\xf5[4\xa2<\x02d\xa0\xe0\xdf\xdce\xe2\xf1\xb2$\xfc+T\x80f\x83/\xb5\x96|\x1a\xb6\xe5\xaeXF[\xb2\xa51\xa8-\x17|\x19\xa0\xd8\x81\xc8\xb8\x16o\xb9\x1f\xcc\x03pA\x90 8wwR\xbf\x18\x14\x8f\xb7\xa4\xc9q5\xf4~\xe7v\xfd\xccnb\x10\x1cH9\xae\xd4\xfd8\x94nm\xa7\xb5x\xa4\x04\x17\x8f\x7ff7\xb7\xf8\xaa/\xb8V\xf3\xa3_\xbe@z\x1e\xd7\x9a\xc2\xc6\xea\x03}\xdbs\xb5\x0c\xbc\xe5\x86\xadi\x19\x83\xfbll%\x05Eg\xf4[b\x00:$\xc1\xb7P\xe9m\xee_\xfcP9I\xbd)qNR\x8f\xa26\x05\xa0=}I\x93)q\x08\x92\xfd\x06\xf4\xad\x9c\xa3$\xe1W\xe27\x02\xf2)\xd6\x00\x9f0\x83\xc6\x8f\xca\xd0\x04 >ZLM^\xf2\xabH\xc3\xc8\x9b\xc7&\x08\x0b\xa7\xc4\x91\xa4\x1a\x92\xfd3\x18K\xbe?E\xb2\xde\xb2(\x9f\x12\xa7\xa2\xf9\xda\x00:\x8a\xe3\xb4\x13H\xb2MS\xe2\xc8\x1fo\xb8\x87\x19O\xbc\xe5\xbf\x7fH\x82\x08\x14\x84\x00?9\x9f\xa2\xc0gQ&\xf0\x89\xdfjg\x80\xa3\xe0\xfd)q~\xa0\xdeg\x9b\x85\xc5\xb3)q\xce\xe8%\x923\xd9\x15}\n\x19\xc5\xcc#&{ba\xc8\xdb\xedf\xe6\x13\xd1M\x8b\xaf\xcb\xc9S5T \xc7\xec\xc7&\xa2\xc1G!ZR\xb4U\xca\xe6\x9b\x99\xbb;S\xb8(L-\x03\xbb\xfb\xb4m%\xef\xedZ\xd6\xf0\xde\x1e|s\xc1\xd0\xf5\xb9\xf7H\xe5Z\xd6\xdd\xdec\x18%\xcc$|O\x8c\xd1\x8f\x1cu\xcb\xb5\xf7\xb4c\xdb\xec\xed\xb7n\x9b\xbdg]{\xe6\xd1N\xc7\x8ey$Z\xfe:J\x19\xea3\xe7\xd1\x93\xb6\xed4\x81\x95\xf3\ns52\x81u\xf3j\x17\xcd\x12\x83\xf9j\x0f\xcd\x12\xady\xf5\x08\xcd\x12My\xf5\x18\xcd\x12\xc3\xf8\xea \x9a%\x06\xf0\xd5S4K\x0c\xde\xab}tC\x88Q{\xf5\x0c\xcd\x9a@\x97w\xd0<9\x1c\xe8x\xec\xc2xL\xd0\x01y$\x06\xe4]\xbe\xb2\xac\xe8 \xccQ+6\xd9\xdd\x15U\xbce\x19\xada\x0e\x9c\xcb\xb3\x9f\xc0\xd2\x0b\xfegvc\xbb\xd1\xcd\x04\xc99\x03\x90s\x19\xec\xf63\xbbir\xa9\xc0\xfcV0\x1ah\xc8\x97\xde\xe3\xab\n\xb9_\x1b\x8d@\xcf~[\xa3\xb4\x7f|\xabld\xa2\xfc\xe1\x93C\x8d\xcc\xc8\x94\xc8\xb0:\xe3y\xc2W\xc7\x8a@\xab\x07DF\x15d7\xa2;\x82YAy\xc0x\xd5\x06eJ\x9cr\xc6\xee\xc1\xc9\xb6\xd4\x11\xfb\xd7s0>\xcd\xa8t\xf7\xc3\x92\x7f\x1d\x03\xd3\\-\xa0\xbb\xc3R\x1bI/\xb5\xa9\xcf\xda\x81<\xb8]\xf4;\xa0\xee\xc4\x96\xdc\x91%\xb2q&\xd5\xb5\xfd?\x86i\xff\xb7X\xf1\xb1\n\x15\xfd\x7f\x8b\xb8\xe9\xdf\x04O\xb00\xa3\xbft\xf1\x84\x1a\xf1JhCv%\x13\x04\x16\x05\xd5\xba\x97\xd5\xfc\x11\x1b\x1b\xc9\x0d\xc6\xaf\x11\xa74\xcc\xe8\xaf\x1b5\xe5\xd7zS~\xad6\xe5W\xbc)5(\x1c\xa8Ws\xff\x86-%\xc8\x91\x86\xff\xdfj\x19 \xce\xf2\xf1\xa0\xb9\xac\x9eu\xd1\x1b\x88\xac\\\x1f\xe0\xcd\xb1\xbe\xc8x\xfc\x86\xadY\xa8\xe2\x02O b`u\x11\xf8\xe0\xf5KdO\x90\xecJ\x84\x8e\xa9\x8a\x91R\x84\xc0\x80 \xa9\" \xc2\xa9U\xa3y\xd8\xb0\xeb\x85\x8co\x83\xe8O^dta~B\xe0\x82q\xc6\xdf\xf0\xabB{\xd3^\xa9\xb6\xfd\xfe\xf4\xf1uQ\x87\x91F\xa6\x88\xda\xfesl{F\xb5}x\xab\x196\xa7\xaf:3\xf5x\xcfS\xb2U3\xa0\xcfS\xf6*\xb8\x14\x13\xb25\xb9\x8f\xb6\x18\x91c\x1e\xd5\x15\xe6\xc51\xff\xf0\xb7\x87\x87\xdf?\xac\xa6\x0b&\xf9\xe1\xdf_\xfc\xb6\xf5\xdb\xe8\xb7Q-\x0f7\xd4?\xfe\xf1\xe4\xf8\xaf\xa7\x9f\xde^\x1c\x9d\x9d}\xbcxw\xf4\xf6dJ\x1cA\xc7\x8c \xe4\xf0\x08b*\xa79\x1a&\xc3\xf7\x8fU\xee\x19\x97\xb1\xb4\xbb\xf0\x081\xe8i\x9ct%\xe6\xd5^\xc6\xd2LTt\x08\x01f\xd88aqH=&\x10\xaaC\x1c\xb2M\xe8\xb8\xd9~\xb2M\xbe;p\xbe#\xdb$\x13?\x9d??\xf8\xae_@s\x1a}dy\xca\x9a=\xe9\x8a\x80\xa8c\x9b\x16\x16\xec.\xd6\xae\xf6\xce\x8aJ 6QL\x93\x94\xbd\x8e \xf0\xe4dg0\x94\xc1\x7f\x80\x8eo\xf6\xc2\xb6/\xeeY\xa4\xf6\xe4\xf1\xe3\xddI\x17\x92\xab\x0fQ\x11\xc7KL\xf6d\x08=\xdc\x91\x91\"wdH/V\x84\xdb\x12ks\xf4\x88< \xc1s\xc2\xc9\x0bB\xd1\x10_E\x8d\xb9\x19f\x90\x93m\xf2h\xe7\xd9\x93!\xa1\x03Y:\x17\xff\xb6\x0f\xc8\xa3\x01\x89\xc4\x7f7\x13\x7f\xd9X\x0b\xa4\x8f2\x97\x0f\x06d\x1b\xcd \xdbd\xd2\x96\xb9\xdb\x96\xb97@f9#\xffq@\x121\x00\xffa\xc6\xa6&\x8d T\x91\xdaD\x17\xc48lo\xab\xf6c\xcdGq\xa0+?5 _\x88\x1b\xa9\x9f/^\x90\xc9\x93\xfb\xc0G\xe6\xac;\x93\xc7\xe3'\xe3]\xe7\xf6\xb5u\xd8,\xb9\x91\xfb\xe8\xc9`(m\x91p\xdb\xa5I\xdd\x9aG{bx40\x8f\xec}\xa8\xe5\xd9\xc6\xa1\xb7\x04;\x1e)kw\xd6\xa2/'\xe0&\x8a\xfb-\xe3\xce)pV\x85\xd5\xbb\x01\xac7\x1b\xe8O\xd4T\x8a\n\xdcL\x06\x11\x1e\x08\xf4\xc7\xed\xe6\x9e\xcd\x16\xa1\xa1\xb4\x04\xf2\x8c|&N\xfd\xc4u\x1e=rDY\xf1\xeb\xb13\xac\xb8\xf3\xb8\xe7\xf8WbB\xf6,\x83\x9f\xa86\x9d\xe6\x97Y\xc2\x04\xd2\xe3EX\xe0\xdb\x7f9\x1b_\\\xb0\xf4-\xf7\xf3\x90\x81!\xdeP\x86\x87\x8b\x98\x97\x01\xa6\xfe\x90\xf0u \x86BG\x1dm\xb6:p#w\xff\xf1n}\xe5\xf1\"\xeb\xd1\x00e#\x02\xabY\x83\x8a\xf7h4M\x1ejM,\xa7\xa2\xa7MIwL\xc5J_\x12\x1dw\xad\xda_\xae\x93\xefyDU\xad-\x83\x18\xb9u\xfb<\x0eK:r'\xd8\x96\x16\x19{O\x1f\x9b\x18T&=\xc1\xc7\x9a\xfes\xc7Z\x9f;-\x07\x9en\x99\n\x1a\x8d|o\xab\x1fU\x016\"n5\xe8\xdd`@\xb2e\xc2\xafH\xc4\xae\x88@2`\xdc\xe0:\xc74\x8axF\x04oJ(\xf1\x04\xc3IhJh\xf1%\x07\xa1~\x14\x17\x8b\x99\xdd\xaf\x95\x95y\xff\x862\xb3e\x1f\xd9\x9c%,\xf2t\xf3\xc4\x87\xc8\x92\xa6\xd1w\x19\xb9d,\"A\x14d\x01\x0d\x83\x94\xf9dD\xd2\xd3\x05\x1b\x93O)+\xeb\x1b\x83\xb4\xa2xu\x07$\xe3\xf2d\xcc\x96l5&\x1f\x19\xf5\xc9J`m\x9a\x11\x15hu~9^\xb1\x87y\xca\xa4\xa8cT~\xc5\xa9\xdf\x8a\xe1\xa3\x91\xb5-~\x1b]A`\xd0\xcb\x95 \xb8\xe1&\xaf\x80\x0b\x08\x95kn\x04C^r\x1e\xa2\x19\xa2\xb1h\x86\x8c\x94\x8bf\xc9\xa3\x15\xcd\xd2\xce\xc5\xb1\xac\x9b\xd5\xa5\xa5\x114\xc2[\x0d\xfdy?Ge\x8bLK\xdb\x90r\x9a:\xb2\x14\x95\xf2Jk\xc7,\xa5xd\xab\x0fr\xa4\xc7F$\x17\xe2\x01\xe0]\xb8\xa6b\x18kW\xbf(\xff\x1e\xd5\x160\x91r\x83\xb1\x99 \x0e\xec\xa2\xec\x1d\xf0F\x83\xa8o\xa2\x14u\x82\xd14\x0d\x16\x10\x9e\xbb\xaf\xb0\xe79\xc9\xc8\x0bB\x93\x05\x88\x94S%\xe6yN\xb2\xedml\xaf\xe8\xa5^\x14\x98e\x88\xe1t\xf1\x89\x84\x04\x91\xe8\xa1j^y,-i\xfa\xfe*R\x8e&o$-')qqN3\xa9\x1b\x1f\xcd\x92\xf3\x1e\xd7\xdd\x86 9~\xe8\xb4\x8d8Q\x9d\xf2\xccN\xa9Q \xdf\x93=\xd1\x1e\xc95\x01\x8e,\xfb\xbdwN\x0e\xab\xaf\xb8\xfb\xd4\x159 ?p\x1e2\x1a\xa1\xa6\x04\x0b\xa2\x0c\xe3\xe7\xcd\xbc\x1b\x84e\xd3\xe9x\x14n}S@\x0e\x89\xbb#\x0e=5\n\x03)\x81\x88\x9b\x88\x0b<\xa2\x80\x8b\xc0\xe6\xf7\x05\xbd\xe3\x8d\xe3H\xf2z\x1dNb\xdc\x99^u\xcd]Y\x8a\xe6\xd58\x00\xe5\xdb\xbdp\xd4\xeeJ\xcb\xd3\xe8\xcb\x17\xb2%\xe8oZ\xd2\xdf\xba\xce\x12j e$\xf5\xb2\x07\x82\x0d\xa8\xbb\xb2\xd5\x0f: \x95\x11\xbd\x8f1\xa9N\xd1\x1d\x87\xc5\xaf\xe0\xad\x96\x91\xa9\x00\x9a\x83\xe3\xd70\xdf\xa6\xe3\xf3\x96%\x0b\xe6\xdfit\xba$OX9\xb1_/\x8b\x02\xed\xacf\x8b\xf3j\xd2\x85\xa1H\xc1N\x1a\xcb\x08\x1b\xd3\xcd\xa6oKV\xb9*\x07O\xcc\xc8)L\x0b>\x81\x06\xa89}f\x0d\x9bL^\x90\x9e\xe6\x97\xa9\x97\x04\x97\xfd\xe7K\xb5\x1d\x97\xa9\x89\xc6\xe4Q\xaa+\xed\xd3\x86,\xb9)\x1a\xd1\xb7\x0d+p\xbeQ\xffZ9\x1ef\xe2\x81q\x1f8.\x92%\xdc\x92F~\xa8\xa8\xe2\xf1e\x10\xf9\x90<\x18\x0cI#\xdbE\xfc\x8c\x10\xb47\x9f*\x1f\xef\xd5\x9f^=qu\xb3\xaa\xbd\x13\xecd\xaf\xa6\x15\x92\x83\x97\x81\xff\x96\xe7Q\xe7]\xab~\xe0\xa3\xe64\xb9\x9b}\xef\xe7 \x0c?2\x8f\x05k\x84\x93h\xfb\xf0U\xcbN\x90[\x0c\xdc\xc3\xa8\xb9j\xf2@M\x7f\xe5\xfaik\xea\xa7hu\x9b\xd1\xf9\x84\xcc\x94)\xb3\xe8\xd5\x8e\x02~\xa3\xaf\xd7\xb17h\xa5\xd7\xcf\xc2jz\x15c\x18\x19\xb6q,\xb2\x9b\xecd5\x7fm\x9c\xf7?0\x16}H\x98GC\x0f\\\x19\xf9\xca[\x7f\xadi\x06H\xc0#\x10\xa3T\x1b%o\xe6\x99\xaf\xb4\xd4\xab\x99v\xa2\x0b\x01\xaa\xf1%\x0d-|\xfd\xd4&\xc6\xc4\x04}\xa7\x06\x14\x1fk\xfb\xb5\xcf\xa1VCY}\xf9[\x02:\xb9\x07\xc6\xd8\x8eK\xe9Z\xfb\xd9\x07\xec\x8b\x14'\x00\xd1\xd9\xd9L]\xe8\xaa\xc4\xc3m\x1c]\x9f\xea\x08&\xcd\xef\xa2\xf2\xebO\x96\xdcl\x00M\xcc\xab \x1a\xc7\xe1\x8dk\x11\xe2`\xcfW\xe2\xd1vo\xc6\xb6G}s9\x06y\x9a<\xb0\x97\xbdk\xb0\xcb\xb3\xccGQ+6r^\xee\x8a\x0e\x8aI?\xb0<\n\xe7\x9a\xfd\xcaDp\xd3\xb5\xc4\xc8o|\xb7\xab\xd1\x18\xf4\xc7#\xedb?\xd2k\xa8z\xe1\xb4T\xef\xc0~\xd3l\xca\xb4q\n\xc8|\xbe\xb6\xaf\xb8\x16\xe9e\x1f\xbc\xb5`\x99\xb4\xb7\xf2\xb5zu_\xec\xa59\x8c\xea\x15\xc7\xf5\x908g\x9cP\xcfci\n\x97\x12W\xb2\xfa\xe2\xf6kHnxN\"\xc6|\x92q\x88\xe0\x1f\xcco\xc8\x1fD]kNI\x96\xe4\x8c|%T\x16\x9f\xf3<\xc9\x96\xc5\xe50\x01\"\x12\xeeF\xe0~q\x00\xf7HcgP\x1c\x04\xf3t|U\xedQ\x9fq\xe8\xa7\xda\xa5\x1f}\xcdi;\x10\xdb\x11qT\x96l\xae\xab\xf6\xa2\x81\xf9\xd1\x96\xe5\xdf^\x0b\xad\x9c\x02\xb6=\xd7^G\xae\xeb\xa8\x1d\xbd\xf6\xdd_\x1cw\x16\nb\xd2AAL\xfa\xef\xfc\xcd(\x08\xaa\xefih\xbb`-\x95{\xbeuX\xc2\x8e0Hp \xe6\x80\xf5R\xad, /e\xba\xce\xc8!\xd4m\xc2\xb6\n\x88:\x84\x84\x1e\x12\x1d\xb1\xfe\xccU\xb4D[~@\x0ee=;dJ\x803u=\xbd*l\xe7\x8a+x\xa7\x10`\xe7UXT\x82\xe2\xb6]\xc5\x16L\xf2\xd6\x96\xeb\x81\xd6\x07\x8c\xe6\xa0\x18\"\xab\xe8\xc1\x95\xbcqN\x0eIN\xa6jY6i\xc8k\xa5\xf9\xc1\xd5\xf5\x99\xca\x01\x1e#q\xff\xf8\xda$\x95\xbb\xee\xd3d\xe0\xe9\x1a~\xc2#`\x10\xc0\xfd\x03\xd1\x88TX\xc7j\xc5\xd5U\xb4l\xac^um^\xb5\xdf\xaf\x16Z\x93\x03\xe5!\xe0~\xb4\x1e\x87v\xa5\xbez'\xc1K\x90ti[\xdcR\xd5\x8f8\xcd\x98U-\xea\x9a\xc7KR\x83\xa9#\x19\xb0>\xd4\x1a\x83\x82\xd3L\xd4K\xf9\xe5\xda\x81T\xa8G\xf2\xb2j\x9bj\xa44\xbf\xddyN\x02\xf2\x82D\x85zf\xb0\xbd\xdd\xc4\x91\xc0\xd3p\xa5\x194$\xd1,8\x07a\x12\x9b\x89\x9f\xe7\xf2\xeeE\xfe\xb6\xb6\xad\x18\xac\xda\x0e\xf9\xb6Sh\xd9\xe7\x05\x00\xca0\x1b\xd4|\x02\x82\xce#\x00\x06\xdb\x7f\x9e\xa4\xf2\xbc\xe9\x89&\x957\xc2\xa7J\xb4\xd6\xd1[(QV\xd0J\x83\xe3#C\x0c\xb9\x08\x8e\x04\x1a\xd6\nv5\x12\xaf\x17\x94\x1aw8v[\xa0\xcaS\xd2\x0e\xb4`\xd9\xcb^\xb5\x01`\x12\xac\x99\x0fd\xd5\xab\x84\xaf:J\xac\x82\xeb j\xc9/\xceS;H\x06\x8a\xdf\x08+\x8dh\xe7f\xd6\xf1\x8fZG@\xee\xc3\xd6f\xca\xed\xdc2k4\x0c\xc1\x05E[~K\xf9B\xf7\xb8\x0d$\xc8n\xfa\x0e\x85\x81\x0b}6\x0f\"V\xa0\xa0\xe6\xce+A\x17,3\xb0\x15\xc4\\k\xc2s\x1b\xfc)\x98 %\x02[\x89\x97,\xf5\x92 \xce0^\x8fV\n\x19\xdaMMPA\xcaPAEP\xa5'\x85[\xe9\x17\xb4H\xea\x86C\xe2\x0d\xc9\x1cCD\xa0['\x0d-L\xcd:\xcf\xc6\x8e\x0bx\xd4\x0eG?\x023\xc4`g\xeb\xb5\xf0\x12\xb1h\x7f\x0cX\x1d\xb83hc,\xda\x88\x16\xc1e+\xe2S>\xb8\xf8\xb0}\x8a\x13\x1d\x1d\xd8\x17\x84\xb1G3\x97\xbb\xde\xc0\xc6\xe5\x14\x87\xdbR\x9e[K\xf2\x82\xf8\xc5\xb9\xb5\xbd\xbd\xec\xea\xb8 \x1b\xfc\xd9\x121+\xd0\x8fRN\x9e\xad\xc1a]\xa6\xfe\xcfE;\xe7\xb3\xf5\xb9\xd5o\xbd~\xc4WV`\x1f\xee\x0d\xc9\xbaC`\xd8O\xfc\x1a\x89\xb1_\x0f\xc9\xaaC\xf2e\xcaW7\x16\x83\xa1\xa9j\xa56%\xfeMp\x14\xd48\x12\xab\xde\x97\x12\xb7\xd7Y\xd8\xed\x81\xa2^\x1aL\xd1\xf8\x90\x04\xb8A\x9a\xd6\xdcn\x0e:\x084\x9a\xb3%\n\x18\x96\x08\xd9@\xc6\xbaeWD)\xaf\xbe\x0d\"\xf0fH\xd8\xb5\xc7b\xd8\xcf\xdc\xf3\xf2$a\xfes\"\x9a\x9f-\x19\x89x4Zi@\x9f\xad \x8b\xd6A\xc2#\xe0\xab\xc5\xa2\x06\xc9^\x1e\x86\x04\x82\x9a\x92\x15KS\xba`\x84F>\xa1\xbe\x0f\x11OhH\x96,\x8c\xe7yH\xaeh\x12\x05\xd1\"\x1dc\xda\xe2,L\x99eQ\x89>\n\xcehV\x1f\xa6s\xbb\xe0\xc3\x83\x9d\x86f\xbb\xd5\xa1\xc8\n\xbf<\x0f\xff#}\xb8\x18\xf6\x13\x1d\xeau3\xf3\xb6\xb7\x9b\x01\x1c\x88d\xfa\x07\xd2\xee\xe1\x808\xaf\xa35M\x02\x1ae\xe4\xa7\x80K\xe1\x15b\x00\xd1H\x91\xf2\xact\xd2\xec\xcc\x1f_\xf1\x1d\x828Hi\x02\xea\xd5\x87\x89\xd0\xa4#\xa8l\xd8A\x95\x13C}L\xbaE\x91\xf6\xd1!\\k\x83<\xb04\xaf\x9a\x0c\x86\x98\x8d\xff`Hr\xd1QO0d\xa0h,\xc5o\xa2\x7f\xdc\x8d\x86\xe4\xe9\x90\xa4\xd8\x01T\x1c>s\xe3;\xcf\xc9|4z> \x01\xa8\xfc\xcd\xe6\xe7-R\xa2\xeaR\xb3\x99\xdd\xa2\x0b\xcf\x1c\x8c\xde\xbe\xe5\x8a\x06\x8b\xae\x8d&C\xa2E\xbc0U\xe4\x90\xec\x80Nvy|F\xe4\x05I\xe0\x86R\xe9\xd2\xb9l\x16\x9dK.~\xf0\x1c\xa7b\xea1V{o\x99\xc6\x9a\x96;\xe6\xc9\xa3.{d\xac\xab\xa6\xec\x06\xd6\x11w\xb3AE\x90u?\xad\xdb{\xba\xffo\xd1\xbcF\x88t\xd9\xbcI#\x02\xbbB7O\xea\x88\x82vK\x07\xba\xfa\x89\x9e\xad\x89\xcb\xca \x8eA\xc3\xb7\x91\xbe(\xe2\xa84D\xac\xd3\xd9\xb9E\x9e\x91\x835\xd0\xc0u\x0c\x1b\x0c\xa0\x88sP\xe0\x83\x8b\x00*\xe5\x13L\x9c\xfc \xd1\x8e\xc6q\x9e.\xdd\x1c_\xbb]\x06\xb4\xdd\xbb\xae>\x06\xba\x7f\xf5^\x14Hr\xeb\xa0.]%\xd5\x9d\x1aDj^` 3\xd9\xfe\xba\xaa\x9e\xc6\x81\x9b-\x9f\x8e\x88\xdb\xdaM\x1321\x1c\xe2j+c\xb3\x83\xaay\x8f\x8c\xebdx\x95\x14i8\xd3\x05\xd4>R\x8f\x14\xb9B=\xacR\x0ff%N\x943\x81\xa0\x9c\x90\x03Q\xf5!I\xc6?\xe4\xf39K\xc8T\x99}\xdaX\xb3CB\xc74\x0c\xb9\xf7)J\xe9\x9c\x15\xf0\xd5A\xee\xbd\xbb \xa9;\xed\xd21\xca\x91\xc3`]h\xa4+e\xe4\x06\x04QL0\xdc\xc6\xb8\x11h\"\xb3+\x02z\xdez\xe1\xa3\xba\xe3\xc5\xc7=\x1e\xdf\xb8\xc9`h\xf52\xf7uP\n\xf2\xdc\xc9\xde\xa3A\xe1\xeek\xf3-\x80\x0c\x88q\xe64\x1bi\xf4\x1d\xd9\xe9\x99TP#\x07\xe4(I\xa8\xe8\xc5\xa08\x99\x9e\x0fH6\x8b\xce!0|t~\x1f;\xa2\x13\xdfO\xf6\xefr\x1c%\"\x13P\x9d)+\xbc\x9f\x96\xed=\xedt\xdcqO-\xab7+\xba\xff\xa3C\xa3M\xfb\xa6H\x14\xabQ\xdd\x05\x16\xc9\x8a4\x82\xd5B\x13\x03\xcf\xccv\xce\xe5\xa9\xa0\x8f '\x88|v\xedH\xcd\xe0d\x0co\xd0\x0e\xf85$\")\xce3\x95\x14\xe7YeSm8\x93\xbb\xbb8\x93\xb0\xff\xb4N\xae\xabS\xfb)\xee\xdap\xff\xe9\x1e\xca%\xec?\xad\x9f\xf2b\xd4\x9d\x99D\xb8\xdaQ\xc0\xb9\xd3d\x19\n\x98\x974cu\x00\xcf\x04xK\xe3z\xfe\xdc\xcc\x7f\x07\x8eD\xea \xb1 \xf2\x91-N\xae\x1b\xb5\xf8&\xc8)\xcb\xea\xf9\xcbJ>Lm\x1dd]\x01\x01\xe9_\x1dde\x82\x00\x86\x91GF\x1dnQ\x1b\x14\xfaS\xc0\xae\xea@7&\xd0\xab\x90\xd3lo\x17\xea\xac\x03^6\x00\x9f\x01\xd4\xb1\xbbA\x1d\xe2\xef\xc4Z\xd3\xde\xc65\x89\xbf\xbb\xbd\xbc\xe7j+a1\xd6\xb7]\xa9\xfb\xb6\x1b\x90G\xf8R\x9d<\xc3tk\x04\x1b\xdbzH\x90\x9aL\xcd\xc9\xb8\x143;-\x91\x0c*^\xf5\x9aHH<}<\xfb)\x83\x07\xc1~\xe0\x00\xa6\xbb\xbf\x06@\xcd\"V\xb0i\x01\xbe\xf3\xf0\x18`\xdd\xbb\xc5\xb2O[93\xbd\x04,\xab\xa4{\xe3j\xd6h\x7f\xa76\xb2bYL\x9e4\x97\xc4K\x9a\xb1q\xc4\xaf6\xc5:\x9a\xdeA&0hj\xbf\xf5\xe9\xfbZ;\x02\xb5\xf9 \xc8\x01{\x8e\x88K\xc9\x08\xf5O+\x98L\x88\x86#\x0e\xa7\xef\xc9\x0e\xf6\x15\x0d\xb7\xbd\x9d\x91\xef\x0fHapnx\x8e\xdei\xaa\xd4}\x95\x1a\x82\x19\xae\xd7W\xdb\xb8\x9a\xcd,j\xbc'\x89\xe1\xe4\x11.\xe3hluEn?\xc3\xc9\xed\x06S\x9a\x93\x03T\x0d&\x85\xf4\x86\x16L\xd8}\x95Y-\xe0\x011\xde\x89G@ \xdb\xcd\xe0\xf0\x92\xb1\xbb\x80\xc6L\x95\xd6Os\xd8\xc5\x94\xa0\xf3[\xd5\x0c\xc9\x06$,\xf1\xb1\xe6|\x80D\xcafQ\x1d#[\xa8+o\xb3\xa9\xda\x7f\x86\xc7\x93\xd8\xdb\xe9\xbe\x1a\xb7R\xbc\x05\x08v\n\x13\xe3\xfb\x18iG\xf4\xbahU\xa1\x90\xfc\xaf$\xbf\xa2YPeL\xec\xbbR\x14\xd9\x85\"\xbb\xe7\x16\xc5\x10\xa2\xe7\x85\x1aW\xd6\xda\x9f;\xea\xe6Ip\xdan0\x1a\x81mu\xd1\x06\xa9Y\xcf]\xf3`\xcd\xe5U\xb4l\xfc\x0b\xb2g2\x06T\xdak\x81^c\xb1p\x05\x95A\xb6\xb7\x13\x08\x16h\xc3\x12\x9aP\x8ef\x89E\xf5\x1d\xcc\x95\x81\xdcNe4\x8f\xa6\x92\x92U\xb8V\x0bip\xeb\x83\xbeyp\xab\x95fa\xc2\xf7\xf6m\x11\xe5\xfap\x83\x81\xab\x83='bS\x92m\xe28\x1b6\xbd+\x12\xcb\xfe3\x1c\xcb\xed?{j \x1bWo+\xd8/\x03j\xf2xH\xaa\x8e\x8aB\x9a.e(\x882\x91\xe6\xd9\xb2\x9a\xb2\xe4i\xcd\xfd\x8f\x18\xa4&\x8cR\xb0\xae86Jku\xa5\x8c&^-\xed\x1f9Knj\x1f\xa0\xd9\xb2Y\x9dH\xad} asRs)T.\xb2l\x0c!P\xc9\x01\xb9\x1c\x92l\x9c\xb0\x94\x87\xebN\x97\xaejr\xc1\xc7\xdd\xd6\x04\xfc\xba\xe9\xa2\xa6\xaf\x9a\xafF\x95r\x1f\xf5\xac\x98\x91C\xb4\xf2b3V<\xac\xc3g\xe6\x0eRIl*y\x16H}.\xad\xd7D\x15\xdf\xf9\x01D\xe0\x96_\x81\x18\xcb\xa6\x1f\x0f\x99\xac\xafZ\xaa\x0d\xfb\x94\x88%\x15TW.\x85\xd0\xc1\xee\x8c\x8e~\xdf\x19=\x1bo\x8f\xce\xb7\xa7\x83\x87A\xf3\x98}8\x9d\xed\x8c\x9e\x9d\xff\xe5\xcf\x0f\x9bG\xed\xc3\xbf\xbb\xbf=\xfc\xed\xe1\xa1{\xb8\xf5\xdb\xc3\xc1\xec\xef\xbf\x1d\xfe\x96\x9e\xffe\xe0\xfev8\xfb;\xfc:\xac\x97\x02\xb3\x04\xe7\x0fgH\x9c\xaf\xe2\xcf\x17\xf1\xe7\xb7\xdf\xc4\xdf\xbf\x8b?\xff\xe5\x9ck\x03\xa1\x99\xf3B\xa4|\xef\x0c\xc9w\xcew\x90\x07q\x80E\x81\x04\xfeF\xf07s\xce\x07\xcd\xd3{\xe6|WV\x15\xd6\x00\xe6\x00\xf0\x1f\xa2\xf8C\xf1\xe7P\xfcy.\xfe\xfc\xaf\xb2\x90W+\x14C\xa1\x12\xfe\x7f95s\n\x1fFd\xb6-\x87\xf4h\xf4\xb7\x8b\xd1\xf9\x1f;\xc3'{_\xeb\xa3\xb0T\x83\x8f\x80\x0e\xdc\xf1_\x06u\xf85ja\xf8\xdftM\xa5!\x1b\xce\x958\x06\x80\xd3\xe0(j\xd6{\xabo\xff\x89\x05\xfa \x88\xcb\x84V.r,\x86\x89s[\x99\x05\x8f\x976\x83\xc8y`\xe3\xdf\x1ch\x84\xd3\x92\x99Zs\xe7-%Uk\xacEE\x83:\x87\xedF\x9d%\xfb\xe8Yri\x93q\xfc\xff\xec\xbd\xeb~\xdbF\x928\xfa}\x9e\xa2\x84\xec8@\x08R\xa4\xe4+mZ\xeb\xc8\xcaF3\x89\xedc\xd93\xbb\x87V\xf4\x87\xc8&\x89\x18\x048\x00\xa8K\xc6\xdeg9\xcfr\x9e\xec\xff\xeb\xaa\xeeF\x03\xe8\x06@\xdb\xc9dv\x07\x1fl\x11\xe8{\xd7\xbd\xab\xab\xe8\xfa:\x17<\x06a\xa6\\\x8d\xc9\xbc\xa2S\x95\xa6\xe4\xb5\xd2\x1b/4R\xa7\x94(\xb7\x1a@\xdde\x0e\xc7\xa1Q)I\xe9\xdb\xec3\xe2\x12\xbaF,-)\x05^\x05i\xb0f9K\xe1\xebm\x1a}M\x19\x05.\x19\x04\"gU-\x81\x80\xc9Q=,<\x01_.\\\xe7\xc81(s[\x94Q\x8b\x14g\\h\xd3\xea|\xe5xp\xc4\xe9\x02\x8c9a\xa8\xd7\x8f(S\xc6&\n\xf3\x9a\x97z4\x1d\x9e\xc3\x04\xff+\xaeV\xbd{\xb7\xbfD\xf2d\x18\xf0%\xa6\xfb\x99@4\xf89 \xe3Z{|\xf5x\x91\xcbA\x9e\x86k\xd7\xf3a\x0fS\x8d\xcb\xb4\xc54\n>\xe6\x06\xf3\x17\xef\xe7\x02&\x90\x91#\xc3\xa5Ew\xbd(\x07\xf0\x16\xcc\xff\xb2\xcc\xf9/\xeb\x02\xc3\x05J\xc1\x17\\\xf8>\x92\x81\xd0\xa4\xd4\xc1\xdfV\xa4\x8e\x1c\x8e\xe0V\x80\x9bV\x18\xc3\x96\xe6\xa9;\xf2T\x10n\xe3\x07(\xa2\xad\xc9N\x1c\xa7\xd2\xc5\xdf?\x8a82e\\\xac-\xfe5\xd7\xd6\xcd\x8b\x82\x91\xffl\x8by\x02\x13py\xe5\xeb\xe9\xf0\xdc\x1b\xe4\xc9\x0f\xc95K\x8f\x83\xcc\xe8>^\x15\x08O|\xa0-\x15\x13\xbb\xaey\x1f@m\xb4x\x19\x81\xab\xa6\x18\xc1\xf0r\xb0\xc6H\xea\xfb?q\x96=\xfd\xe9\xdf\xdf\xed\x9f\xf7\xfe]\xfc\xbfo\xbc\xef\xca\x87\x8dn\x83\xfb\xfb\x0e\xc2\x8e\xea~\xe8\xc3\x81a\xd4{7\xd4\xdd\x9d;\xb0\x9e^\xe3\x8dZ\xb74\xec\x03\xaf&\xd5V#\x91\xd6\xe7\xb0\x87m\xf1-,\x9a\xdf[N\xaf\xcd\x97t\x95&}\xe6\xc3\xb1\x8f\x9e\x87\xfd\x91\x8f\xde\x82\xc3\xc7\xf0\x0c\x9e\xc0F]\x85zfNP\xc6\x1f\x81\xec\xeeK\x1c\xbeD\xf4\xcd\xf4\xd9\xb9\x88/\xdc'tz\xcf\x87\xf4\x12\x9e\xc0{z\xcd\xfb{iP\xaa\xb8^J-\x1e\x13)\xa1\xcaGpY8\xffpJ\xf2\xef\x98\xa9\xbb\xf6\xd2\x87\xf7\xa2\xdf3ZO\xbcw0\xf4\xe1\xd8S\x90\x81\xaf\x8e1\xa1}YM\x98\xb3Y2go_\x9f\xaa E\xee\x99\xe7\xc9\xb5\xb1(\xbd\xda\x82-\xba,\x18_\xf2\x97\x8f\x8bi\x96\x17n\xf1y\x0bG\x15d\xb1K \xfce\xddG[\x95\xf7\x95Uy\xef)\x12\x94f\xec\xfb$\xcb]\xaf\xae\x14\x95\x7f\x7f\xf8\x00\x8e%\xb3\xd6+<\xd7&\x9c(U\x12\x8e\xe7\xce\xb9\xe9[\xe9\x974'\xf4adP\xd5\x11\xec_\x99\xef\x81+\x00\x7fS\x1d\xb2\xa0\xec\xfb\xef\x06\xfb\x9e\x0f?r\x82\x83\xbb\xe8\xc3\x1b\xb9b\xb4\xa1?6\xee$\x88Y\x9e\xc2\x04\xdeL\x9f\xb5\\\xa2?Et<\x15\xd4e\xdezq^\x0d\xffgA\x85_\xd0\x10_\xc3\x04N\x15\xa0\xbd\x80'\xf0\xfa1\xbc\xe0\xa3<\x1d\xccVAz\x9c\xcc\xd9\xb3\xdc}\xe1\xc1S\x18\x1d<\x80#\xf8\x19z\x13pn8\xcf\xc5?O\xa7/\x1a\xc6\nrY\x7f\xee\x97\x8b~ \x19\xc2\x198\x1e\xf4\xe0\xd2\x80\x15\xcf\x8b\x12\xedc\xb9LY\xf0\xbe\xb1T\xdd\xbc\xd4\xfc\xa5\xfe\xd6\x88GO\xe1\xe0\xde=\x99\xeeA\x1b\xbd\xe3H\xc9\xc0\x86\xe8eV\xec\xc3+-vvQ%\x1d\xe4\xc9\xb3\xb3\xe3\xd3\xd3\xf2\x17\xd3\x05b\x0e2\x7f\x93\xbd\xa0\x15\xe6\x08\x9c1\n\xa1\xea\xcd\x98\x83\xbeq\xbe\xdfu%D:\xe9\xfb\x0ez\xf07]\xe8\xeai\x8d\xf0))\x01\xc8\xba\nRb\xf2\xcd\xeb\xdb\x07\xce\xbb9\xccp\xea~)\x08\x9d\x06H\x97^+\x1f\xbf\x9a\x9e\x9c[.E\n:\xc5i\xd6\xac\xe06\xad\xa4\x8a/\xf5/\xbc\x8e\x95L\xf1\x8e\x05//\xb8\xd1/\x8d\xa8\xcf\x1b\xfd\x96\x8b\xd8q\x8dm\xfe\xd2\x80\x02\xdf\"\xc9\xff\x05\x97\x05\xabg\xb3`\xc3x_\x8a\x17!y\xfe\xc5#\x84\xfa\xd6L\xde\xeb\xf0^\x97A\xffR\xe2\xad\\\x92/\x18\xef_\xb4\xbd&\xcb\x9e\x92\xbe\xfeR\xe1\x8aC\x1f\xfeR\x05`\xde\xfc\xf7\xe5\xe6\x8f\xaa\x88\xaf\xad\xe9\xf7u\xf1]u\xf7\xbdW\x11\xb1\x8b/RH)\xc6*\xcb\x94\xa4||\xe9\xd5G\xfd\xfd\x8eb\xfdeQR\xd3A8\xb1[NO\x10\x90\xcb\xb8\xa1\x82w\xab\xd2\xa6\xfa\\9\xabj62\xbb\x18\x0d\xc8\x04e\x05e\xd0\xea\xd8\x04\x8d\xbf\xaa\x88\xb54\xc1&R t\xaf\xbfA\x0f\xfe\xda\x80\x89\xba\xba&\xf43\xfc[\x1a\x16+JP%^p\xdd\xc8i:eU\xd4\x05\x05P\xc3\xa0\x992~\xe2?\x06Lc\x9e\xa7\xc5\x199|\xb6\x1f\xfa\x9c\x88\x92 \x7f\x02\\N\xae\x03\xae\x8aM\xac4'\xec\xbbNhc\xf3&\xd4\x0b\xa6Z\xcc\xe2\x95\xadPh *\x1b @\x96\x87YP\xed#2\xcb\xdd!\xf5\x14+\xe6\x18#\xc1*\x9c\xd1\xb0.\x86\xe0p\xberD\xc0\xc7r]\x0ex\xfc[\x0f\x8f\xad\xb6r\xe2\x18\xa8\xabR\x94/\x14-\xca\x16ij\x0fB>Ht7/phz\xf4\xd5y)ZOSLQ#B\x96\x89\x8a\xc7\xe5E\xec{\xab:q\xber|p\xfexp\xe8\xe0\xd7\xd4FEL\x87<\x96\x83\x18\xdc\xa2\xf2\xe1\x8b~.\xe3)\xba\xd5\xd2\x97\xe1\xf4\xc7du\xac\x18\x1d\xcd6\x91\xdcl\x16\x85\xe24K\x1b\xa1O\xd4\xb0\x81\"\x97\xe2\xb7`\xbb\x14\xc2\xa5\x8aQ\x9e\x8f\x14e\xf8\x18\x02x\xa2\"\x84>\x86\xc0\x9ef\x1d\xfdO\xa6\x81\xc9\x83q\xba=\x17\x086\xdd\x9e7\x8c\x8eB\x93\nQ\x02\xbd&V>\x97\xaa\xc9\x96\xc89H\x11\x0cH\x1d\xf5i\xdc$\xae\xcb\x0eL\xe1\x1c\x85\x82\x90\xd4\xba\xd1\x9c\x93\xd5\xc3\xac\xa2Uu\xf8\x18\"x\x02E\xd6\xf9\xa8Y\\\x9c\xc1\x04\xb2id\x11\x17\x1d9\x16B\xb5\x19\xe1\xf1tF\xd1\x08f\x06\xf1\xd5z\\\xbe\x9c\xc6jf\xe2:zI\xc0\x88\xcb\xd2E\xacNN\xeb2\x86ya[6\xadXW@g_\xf5\x8bHU\xd3\xa2\xa3\xb4\xbe\x9c\x16u\xcem+Z\n\x96T\xdd\x9e\x0dm\xcf\xa6dB\xda\xb4\x1b\x1e0\x04\xf1t\xd3\xa0\xcc\xc7\xd39\xed\xc8\xdc\x12K\xcc\xf8\xb6\x11L;l,\xa1\x82f\x95-\x16\xc8\xe7\xb8\xc09\xf8\x87\x0f\xb0./\\i?\x99\xfaQ\x9f\\CD\xb7R@D\x97U\xc4\x16O\x9a\xf4\xf7\xb9\"\xb0\xd2X\xee\x9e\xcb\xa4\x8a\xb8\x1a\x90=\xc0\xabEx\x92O1\x83\xa2\x162*V\xd2E]V\xd6\xaf=$\x07\x1c\xa8VB+\\)\xe3\x03~]\xe9\xfe\xf8\xf5\xcf\xa5\xf5Y c\xc3\xbe!\xdf\xbbmC\x94\xf0\xcf\xc4\x9f\xbcM)\xff3\xfa\xcb\x17\xd8G4LL\x93+\x0b\xb14\x922\xfc\xc3\xd7\xb1tR\x999\x13\xeat,}+\x18\xfeQ\x9a\xc2\x87\x0f\x107H\xff @\xfc\xaa\x8c\xe8\x16\xc1R>x\x04\xd8\xa2\x03\xf0G\xd1\x90+\xe8\xc1m\x87\x05T\x18\xa1y\x99\xe8\x02\x91\xa2\xd4\x9f@\x83\xe4IU\x99\xce9\xe2(\xa1x[H3\xf5\x05\xb8(\xed\x173\xb6\xc4:\xb5t\x0d\x13\xb8\xe0\x8d\\\xd2\x16a\x9bD\x17E\xedz\x9d\x13\x98\xc0u\xfd\xf5MmR\xdad\nL\xe4\xfdL\x0d\x11\x17\xcf8\n\xafJ\xb4\xa0<\x90z\x1b\x1a\xb9\x06:\xfc\xd0X\x8bA9?\x13\x1c\xa5\x84\xa7\x1a\xdc\x92sN\xb1\x08\xae\xe0\xe77\x1c\x81\x8f\xe8\xbf\x89\xfc>\x86\x1b\x85\xb0\xf4\xca\xf34t\xe2\x0d\x97YM\x99@P_\xac\xdc5\xabu\xbd\xa2\xaeW\xd45\x93]\x17\xb4\x82\xa9\xae\x15q\xc2\x0c\x7f>n\xedu\xad-D\x135+^\xef\xc23\x13\x01)\xca\x90R\xa6\xba\x8e\x15\xb6[ B\xa9.\xbe<\xd2\x7f\x8c\xb5\xba>t%T\x1c\xbc*WY\x903\xf0\x8d]\xa9\x13[<\nso\xe8*\x8b\x0f7\x83M\xb2\xe1\x18\xc9\xdf\xdcH\x17\x96\x95\xd7\xb5[K\x7fx\x08\xffb\x1bE/\xd3\xb71Et\x9e\xbb\xb2\x19\xa3|\x8c\xe0\xe7\x95\x17M\xad\xfa\x8d\xe4A>\xb8\xaf\xb8\xd2\xbc\xe7\x16@H\x7f\x15\n\xed\xbf;\x1eyD\x17\xdf\x04b\xfc\xbb#\x8e\x92\x14\xf1~U4\xac:+\x0d\xe1U\xc1\xfd\x1a\x88`\x87\x85\xf2A.\x89[`=\x8eF{/\xe9?\xdf\"E\x93\xb5\xf2p\xa4\x13\x901g\xa2\xa8\xb1\xc9\x11\x1c\x15\x83\xc1\x8f\x9f*\x02\xee\xdd(xQ\x93\xdcT\xbd\xf6J\xbd\x8a\xb1\n\xad\xb5\x18D!\x9dJ\xd2\xd1*\xe9+\x99\xe5\x98v\x1e\x8dw\xfd\x91\x87^\xb0\xefiA\n\xca.\xff\xba)\x0c\xfaB_w\x06\x84e\xc7\x88q\x03\xf9\xcb\xd3\x10\xf0X\x9c\xef\xfa\xf0\x12\xfb\x92\xb2\xe6Kx\x8a\x12\xe8\xcb~\xdf\x03\xd9\x0e\x1e\xc0\xdeL_\x9e{\x9c\xd4!L\xcd\x98\xfbR\xdc\x7f+:\xe0J\x7f\xf9\xb3O\xa6\xe81<\xc3\x81\xd5>\xf6\xfb\x06Z\xbcG\xe7\xd5'\x16\xc3\xf7c^\xed1<\xf34*\xcb\xc7Pi\x89\xb2\x10\xead\x9a\xaf\x95\xb8\xfb\xf0\xf0\xfe\xdd\x07fM\x8ck\xfc\x87\xf7\xcd\xdff\x18f\xdc\xf8\x89\x83\xf9\x81\xa5\xda\x867\xf9\xd0\xfcm\x0e\x13xP\xbd\x13'\x1f\x8ez\x0f\x0e\xcc\xdf\xb8n9:\xb0\xb4\x8a\x91\xf1\xfa\x16]s\x89~\xc97q\xbf\xbfo.\xc0\x05\xa1\xfd\xe9O\xefn\x0e\x86\xfdw7\x0fN\xce-\xe5.\xb1\xdc\xbb\x9b\x83\x93w\xdb\xc3\xe1\xf0\xe0\xdd\xf6\xbb\xef\x86'\xfc\xdf\xfb\xa3\xf3\xfd\xa5\xb9\xd2\x855\x8f\n\x7f\x92+\x96.\xa2\xe4z\x0c\xceK\xf5'Em\x8c\x19\x9bgp\x1d\xceY\na\x9c\xb3%K3\xc8\x13\xd8\xa4\xc9\x8ceY\x83b\xed\xc4I\xde\xbf\x0c\xb2p\xe6\x8c\xc19\x8d\"\xb6\x0c\"\xd1*\x17\x1dn\x1e\x0e\xc1\x8d\x93\x1c\x02\xc0R\x80h\xb4I\xc28\xf7\x9a\x9a\x0d\xe3\xab \n\xe7}l \x9b\xa6\x17\xd4\xb49\xf1\x9d!\x9d\n\x08\xc55\x82>\xcc\xcc\x9f\xb9\x8e\xfac\x90\xaf\x06\x8b(\xb1\xe5\xae\xe4:\x01\x19\xb5\x07\x8b4Y\x1f\x0bo\x1a\xcd\x9dX>\xca\xad\xf8\xcc|<\x00*\xc6\xfe\xeb ^\n/\xdc\x8b)3\xdaE\xed\xad\x1f[o\xd4A\xd5\x1e\xaeB\x85\xa2I|z\xfe\x18b\x0c\xc4\x9eR\x84X\n]n1hI?\xe5\x9d\xc6\xf6\xbeql\xc5\xb0\n\x89\xc2\x0e\x07\xa9\xe1\x00P}\x93\x02y!\xef\x82<\xf8\x89\xb98\xd5\x03\xf4\xfbC\xceON=)\xf4\xe0\xd8\xa5\x13Su\xe6r\xe9s\xc9\xd6S6@\xca \xeb\x15N;;\xcd\xfe\x99}\xdf\xd5\xb6P\xac\x06\xda\x0e\x1f\xaf:\x0d}\xe1D-\x05\xef\x84\xae\xa9\xb9\xa4jk\xee[I\xaf\xe7y\x1c\xb5\xee\xdd;xt\x9f8\xc7\x93 \xdc\xbb\x7f8z\x84R\x0b\xaf\x08G\xfc\xc5\xc1\x10\xe3\xa2\xdc\xbf{ot\x00\xe24\xad\xde\x96G\x01\xce\xb8\xbc\xea\xba\xa3\xe1\xc1!\xdc\xe1\xbb\xf7\xe4 \x8c\x86(\xc5\x88w1\xffq\xff\xde\xbd\xc3\xfb(X\x89*9\x17\xa0\xb8r0\x06\xf5\xe6\x0b\xc2\xd2K\xfbj\x8a\xf6\x10\x13\x9a\x8f\xe4\xe4#O\x9el\x00\x05\xfa\xbd\xa1\xa78\xd7{\xa0\x0e}\n\xa3!\xdc\x01\\\x9e\x0f\xb4\x1dB\xa0\xa1\xb5\xff\x00b\xe5\x18\x1d*\xf2&\x0c!\xcd\x01\xcf\x02\x05\xb4\xed\x08l\xaf\x1aQM\xcd\xa5\x07\x07\x07\xd0\x83\x07\xf7\xe0\x1bp\x19<\x81\x83\xfb\x1e\xf4\xc1u\x87\x18\xcd\x0c7\xfb\xden=\xbf\xb1\xdd<\x90\xcf\x95\xb8\xfd`I\x89\x82\xb8\x80\x98 Gp\xe22\xd8\x879\x06\x95\x03\xbe\xae\xc2G\x81\xde\xe7\xdec\xdc\x8fk\xf8\x06\x16\xf8\xf91G\xe4 D\x1e\xae6\x95\xban\x06\xbb\x13\x97\xe3\xbe{\x8d~3\xf0\x0d\xf0*._\x99\x8d\xb7\xdb\xc4\x7f\xb4\xc3\x98\x86\xdaz\xce\x18L\x075\xf7a\xe9\xc3-9\xe2\x98\x8c\x9a\xf2\xb9\xd0I\xb6\xb5\xd4\xb5\xf9\x16\xbe|8\xbf\xba\xb2\x7f>\xae\x1b\xc8\xe4\x83\xfb\"(\x85\xeeA\xbd\xf6f\x82\x82\xd0\xf3\xe1\xc4\xbdF<\x86\xa7\xc0'xc\xe8\xea\x86\xf0\x9d\xca\xf1\x89\xfe\x11\xb3\x03_J\x0b\xd1u\xaf\x87\xa1\xa7n\xba\xfa\xfcA\x81\xfb/\xdd\xcb\xddp\xfc\xf4sq\xdc\x87\x0b\x9fC\x9b\xb8>QMr!\x1f\x04\xccK\xe9\xc3\xf5\x0c]\xb6\xa4\xb0\x96#\n\xa3\xa8$\x84\x83U\xc9{\xe1\x92c\\\xe0\x11tN\x83s\x8e\x9e\x02\xd5\xde\x13j\xdd\xb85\xaf\xa0R\xc7)\x06{\x99\xc0{\xd5g\xa2\xd5^{\x84\xd9\x97\xed\xa8\xc5\x91)k\x19\xdcS\x91\x81\xfc\x16\x9e\x88,\xe6\xbc\xd6m\x837\xa8h\xba\x0fy\x81\x1a1G\x0d\xf7\x02c\x82pBn\x02\xda\x98C\x12U\xe4\x84\xfe\x82\x96rk\x1a\x9f\xb5o\x10\xa6\xc7\xd2\xea\xe2\xf8{\xbd\x18\xa1\xb8\xde\xef-P\xda3\xfbb\xc9\x07g\xc6IK\xec\xa3\x8e\x1a=\x96\xc8\xcc\xd1q\xce\x919\x14\xc8<\xe7\x0b\x17j\xc8<\xc70(\xdec\x98\x0bd\xe68\xb8\x81>\x87<\xa9\xe8,\xfd\x02\x04^\xb9K.\xf3\xc2\x1f98\x0e=O8\x15\x9c\xb8\xc7\x0dF(O\xf9\xb4\x13OAj\xafW\x97\xf0\xf4\xe7c\xaf\x17\xf3R\xf5\x84S\xd0\x86\xc7\xef\x9b\x84\xa4\xea\x9b\xadU\x17\xbebi\x16&\xf1\x18\x1c4\xe6X\xb4\xd0\xed,;0\xe5\xb2\x96\x0f] \x1a\xc33;\x9b%\x1f\xb01\xbc4O\xd5b\xb4\x10\xed\xfeh\xfe,\xdb<5\x7f\x16.\xf6\xe3\x8e\x12\xb1\\\xd8\xee2\xb4V\xebv\x90\xb3,\xa7\x98|\xceM\xdc\xef;\xd0#\xd2iJ\x99-\x9f\x8f\x16\x02n\x9b\xcf\xdb8\xa4\x19w\x1b\xdfg\xcdh\xa9\xcd\xe8GW\xe6\xa6\xb9[\xb9k\xf8i\xf3\xab\x83\xac\x0fZ\xbeD\x94n\xac\xa6Y\xf9\x88qn\xeb\x8d\x15\xc1nP,g\x14\x02\xd3\xd5c}$\x15\xffC\xdd\xe3\xcf\x90\xe6\x86\xffy8\xb2d\xbb\xe9\x14\xdfC\xef\xbc<\x1f\xe9\"\xd8\xb6\xabb\xbe\xa6\x0c%\xe5\xb9\xf8\x95\xe6\xc9\x91\xaak\xf3\x16K\xab\x88\xf58i\xeb\xec\xc56\x8a:v%\"\x85vjR;1\xde\xad\xf5\x1dC\x89u\xda\xcb|@\x84 \x0d\xf8\xf2\x16z\xec>|\xf4\x88+\xb7\x03\"Kd\xdd\x97\xde\xc9@q\xaa\xba%\xf3.\xf7\xaa^+\x91,m\x8a5\xd2\x12\x99J%\xb1\xa9e\xf0\x81\x96\xb0\x87>\xd4l\xf8x\x84\x81G\x89w\x1cbzxC\xd8\x99\x18\xf2\x8a\x07\x86L\x90\xa19M1zC\x0c\x853D\xe5\xc89\xa8\xb7\x8cqE\xde\xf5\xf6+\xc29\xd3\x0ckU;\x8ct\x01\x1d\xb1\xc3\xca\x888\xac;1\xe6\xa3\xd1q \x1c\xac\x83\x9b?\xb3[\x14v0\x85\xa9zch:\xd2\xcdW\xa5\xaf\x99\x0c\xf5\x19I\xc9 \x13PV\x1bQ\xd61J\xa4\n3\x8c,\n\xbd\x9e1\x833zLJ\xa9{\xe5\xa3\xc9\x9eMg\xc5\xfd\xff-\xfaQ\x0fm\xc6\xc55\x17\xaf\xd5\x81\xa7)5\xc6\x1a\xed\xd7p\x04\xee\x02\xcb\x16gTk!D\xa9wk!\x8c\x8eEY\xfa\x8c\xc7\x94s\xf3\xed\xe1\x85\xe7\x83\xe5b\xf1\x86k\xd6n\xe0\xc3\xdc\xa3\xb0\xd3\xd39\x1e\xb4\xf3\xffI\x16[a\x1cTr\xe0\x9c\xf2\xff}X\x9d\x17\xafV\x16\xec\x87\x02a\x82\x02\x0f\x8a\x89\xe3\xf9\x97\xcc'6\x083\xfc\x9f\x83e\xab\x8by9Q\x90\xb8\xba[CJ\x19&\xb2\x1ecgw\x02\xa1\x8f9m\xf4IWYld\xf8\n\x030atO\x89\x94\xcdA>\xebpB\x95/)gTKm.)\xe5\xe9\x96a\x94\x8bE\x10e\xcc`\x8a\xa4\x06\x05>6\xe7B\xc9\xbe\x0b\xe30g$\xb1\xd0\xc1s\xbd\xbd9[\x04\xdb(ol\xc9q,@\xf3\xd1\xcc\xce\xeb\x84\xb2\x16sX\xb4l\xa7\x97\xbe\xc6\x0dA\xdef\"\x91\xc8\xb3\x1c\x7f\x1eA\xe8\x06(\x9b\xa8\x01\x046\xea\xc0I\xa4\xe1\x16F\xea\x06x\xb5\xc2\x90wW\x8c8qI\xe3\xe3\x9d\xf1\xbf\xba\x08\x92R0\x83\x9e\xb9Of\xb22\n\xa3/\x86\xc2\xb2\xd7\xe4c\xa9\xde\x1c)U<2W\xdc\xd24\x1bF\x84\xf0\xf2\xfb\xa2\x04\xe6`o&\xd6O\x0e\xfa\xeb`\xa3\xe5\x92\\\x07\x9b\x1a\xdb+\x9d\x85M\xcfKV\xcb\xe2\xb8%\xed\xf5<\x99\x035w\xd94\xe5\x05-\xfe*\xd5d\xa8\xa0q{\xcd\x81\xbfy\xbd\xae,\xf9O\xcba,\x99\xd7Y\xb6\xa1 \x97\xbfR\x1a\xd4\xda\xea\xef5\xeb*fb-\x9fn!0\xe5#\xc6\xee\x96\x82.\xe5\x82\xde\xc5\xec\x1ar\xb7\x80(\x97S\x8e\xcb0\x0e\xd2[\xc7\xf3\x8a\xd7\xcee\x90\xb1\xfbw[-\x07V\xa5\xe8\xde]O$M\xed$\xce^iY)\xcdA\xdd\x0f, \xcf\x0f\x87\xe6\x84\xe7\xf7;\x05\xf47\x1c\xc8(\xde3\x01\"\x9d1\x14\x19\x0bb\x91\xb1 uC7\xf6\xd0\xc2\xaa\xc4O_$ \xc6P\xacB\x17\x8e\xd1\xbeV\xb8\xe6 un\x81*}@\x9f6p\xc9 \x84\xbe\x8c\xd7o\x14\xc7`\xf0\x84\xe6\x81\xf0\xe0)\xad\x1a\xaf.j\xa5\x9eN\x14\xd4\x90\x13\xf4n\xc8p\xa5%\xfe5E\x84\x1f\xd57\xf3n\xdb\x86YfL\xb9\x16\xe0\x03\x84m2\x92\xde\xc0^C\xc3\x16\xed\nt2\x9b\x9bQ\xd0\xaa\xaf\xc8\x95-.\xfb\xf9\xb0?\xfd\x89\x02\xf2\xbd\xeb\x7f\xf5o\x7f\xbc\xf3\xf57\xbd\xc1\xbb\x9f.\xfe\xcf\x87\xff>\xdf\x0f\xa5m\xc5\x12\x88L\xfaw\xccVA\x1a\xccrtD\x81\x15\x0b\xe6,\x85E\xc8\xa29\xc4\xc1\x9a\x99\"h(\xf2_\xb2\xd2\x94\xd1\xda2\xe7\x8ef\x87\xb6iW\xf5msg\xa9\xb93\xc9 \xcc\xd4/f7\xba\x19\xc3F$Ak\x88I\x7fK\xbbqWL\xd0\xde\x16\x7f\xe6I\xcc\xc6\xba\x8d\xca\xe0\x10\xa8?\"6\xbb\xd9\xb0\x0b5Rk\x7fkH'%\x06\xbc\x1a\x849\x85\x88\xa7s\xf9)%/\xa5\xb7y\x92\x9e\xef`D\xab\x8f\x13\xe3\x97u\xda\xca\xc4\xbc\x95\xe8\x9f\xb8\x0e6\xa8\xf6\xfb\xe50\x81\x89\x0c>z\x12\xccV\xed\x81\xb1Us\xc1f\xc3\xe29%\xbb\xa9\x8f\x98n`\xa3G\xb5.\xab \x85\xc0\xd0]\x97\xbe\x18:\x98\xb3\xe9\xc8\xe4\x94T\xf4\x88{ \xc4\x93%\xcb5\xa1\xe4E\xb0f\x99\xcb\xbcz\xff\x9d\xe7:\xcd\x1b:\xef\xb4G\xa1\x9d\x9e\xb1\xc1e2\xbf}\x9b\xb1\xb9\x12\x1e_\xa5\xc9:\xcc\xd8 exC\xbaB\x9c\x9eE)\x0b\xe6\xb7\xc0\xffuL\x87jE\x8b\x18\x90\xad\xd3\x00\x83f[\x1e\xbb\x96\x83j\x0f\x02\x0e8\x84$\x8e\x92`\xde\x05\x05\xf8\xc3\xc5\xa6\x94e\xdb(\xb7Y\xe4\xb1I\xc6W\xa0k\x9b\xb1\xcb\x06X\xa1\xb3\x11\xbc\xdb^n\x9bI'_\xab\xef\xc2\x88\xbdFva\xa6R1\xca?&\xe7$I\x0f\x06|w\x9feZ\xb2c\x12\x97:\x8d0k\x826\x94\x9dj9\xef\xabn\xfdP\x99Q\x91b\xd8-\xa5\xe9l\x98A\xc6\x08t\xf5\xaa\x18\x82B\xa4j\xec4\x95\xa8)K\x05\xe2\xa9\x0e\xeb2\xdc\xd1E\x18\x87\xf9\xb7\xc9\xfc\xb6\x93P\xcf\xd7\x85\xaa\xf1\xb6N\xe3\x10\x19\x97\x91\xc6\xe9UL\x07\x01\x1e\x14\x0d\xbda7\xd8\x90\x9d\xf3i\x17\xc1.\xa3\x04\xc3\xda|\x1b%\x97\x9a~\x15f\xaf\xe4\xdf/\x17B^\x91\xed\xf3\xa2\x9d\xdb_$\xe9\xfay\x90\xa3\xf3\xf4w\xe2\xef\x8e\xfd\xc8\xe2\x9d\xfb\xa2\xcb\x05\x18\xcc\x15-\xaco_\xffp\xa6\xbd\xea\xd8\xad\\>M\x9d\xea\xd4{P\xa0\x0c\xe0\xf5d\xb9\xb4\xebJ\x07\x1an\xc1\x84\xe3\x8cL'\xeaC\x0d\x1a8\x1c\xf3\xf5v\xa7\xc6\xfa6\x97Uh\xbe\x07.\x1f\xbcXT\x1e\xf9\x87\x0f\xb0\xa7u\xd0\xb0f\x80WH+\xb2\xac`\x15\xdb8\xdbn\xb8\xa8\xcf\xe6\xf0\xad\x9c\x0d\xaf\xd9\x16\xfc\xada\x95\xecH!s\x94T\xb7\xd0\xe6\xe2H7(\x90Lf\x9ci\xbb\xce,\x89s\x16\xe7}\x1a\"\x1e\x1a\x9a\xb0LE\xc6\x11u\xb3Z]\x1f\x9c\x9c\xdd\xe4\xfb\x9b(\x08\xe3\xc7\\\x8c\xcfX>y\xfb\xe6\xbb\xfeCG\x05\x97-\xb0H\x86\x8cRo\x06\xbc\x95.\xdd\x18\xaayx\xd1\xf5\xd3\x91@\x8d\xa6qz\xc1f\x13\x85\xb3\x80S\xb6\xfd\x9b\xfe\xf5\xf5u\x9f\xa3x\x7f\x9bFda\x9bWgm\x94`\n\xec \nxI4\xa5\x95\xbf\xca\xeb9!\x8521\xef/\xf2\x1b[@j\xbdPy\x11\x0db\x90\xc8\x04P.\xd6\xa5=\x0dz\xad\xcd\xb6\xe2v\xa7\x9e$\x954`\xe1,\xd9r\x8d1\xc9QdS\xe4\x17x5\x082\xe0\x8bnC\xc8\x1d\xc6\xcc\xb1\xadj\x9d\x85BP-\x91\x97\x0e[\xac\xf3\xd8\x1a%8\x92;\xcfq\xd4\xbeO\xa5\xe5\x17X\xc7g\xebz\x83|\xc5bwk2D\x8b\xe1\xe6D\xfeZh\xd2m \x8ak\x05\x06\xc1Q\xda\xfb\xd85i\x88n^\x98\xf74Kx^\xb1\x84OQ\x956\\yq\xf3i#\xeb\x95\xda\x8b\xddU\x0b*+\xa6/D\xa7\x95\xfb\x0c\xb4\xe7\x00\xbe#\xda\x97\x91\xddB\xd1uQ\x8fj,\n \xae\x15\x9dt\xb4\xe7#\x94\xa8\xbah@\xd5\x9f\xb3$\xfe\x9c\xb6\xfft\xf6\xf2\x05\xf9qX\xa9W\xe9\xbdMY\x98Y-\x18\xf2\xcc\xc5U'\x80\x7f\xff\xe8\xa1\xeaP_\x7f\xa4\x15\xba\xb5\xc4x\xe6\x0f\x06\xf5\xddhK,\xab\xeb\x0d\x92\xd06%\xb7\x85m*S\xed\xccR6gq\x1e\x06QFn\xdf\xc5o\xaeF \xf9\x00\x8a\x00\xb7\xe2\x05\xa1X\xe22\xf9FE\xfe[\xb3|\x95\xcc\xb11\xfaS\xbe'\x87\x19\x86\x7f\xf8t*\xaa\x1cx4I\x18\xef\x1cC\xe9\x9d_\xb57\x18\xf6P\x13\x0ci\x96\xca`i^~\xc3\xec\xf3\xd2o\x19\x98\xb3\xf2\xceI\xd6a\xee\xf8\xb0W,NE\x98\xb2/Vn_\xacv\xd2W\x98;\xf3\xe4\xedfc\xcf\x04\x00\x05\x1a\xdc*\x8f\x0ftF\xef\x8f\xb8\xbcit\xe7\xfb\xe8\xe6r0r\xe2\xc5O\xe7?N\xde\xa8\xe8\x87k\xe9\xf8\x84\x7f\xa8\xc2\xe2\x87\x96\xc5)e\x0b\x96\xa6( \xd0[\x17\xdb)BRj\x1d|\x7f\xf2\xecy\xed\x0b]\xc7\xb7\xc0<\xaa\xdex\xd12\x8a\x92k6G\xb6\xf0\x1f'o I\x81\xb7\x06)\xfb\xdb\x96eyfB\x08\"rR\x83w\xe3nV\x99E\x07\xab\x8c \x83MV{L\xb1!/\xdf\xddq\x0cV\xc3F3B\xabxP\xbam8i\xbam\xc8\x9f\x94.\xdd\x93\x05]\xcb&\xd2\xc3l\"\xd0V\x1d\x0f\xf7\x04\xf3\x9b8\xc6\x06\xec\xcc3\x97\x16P\x83[\x10\xd7\x91\x0d\xaf\x13\x83\xf4 \x16S[W\xeb\xf6\xa6}_\x93\x86\x0d\x951\xf4\xd3\xa3w\xf1\xfe.\xbbY\xdb\xacq\xdb\xd5\xd0b\xa3\x08\x8a\xec\xe2C\xed\xb6\xbf\xfeH\x7f\x07\xb9qc\xa7\xb9A\xd0\xf7*\xf5\xab\x9e\xb5\xf2\xf9\x9c=\x98[\xf9*q\x84\\O\xb8B\xaa\xf3\x04\x1c\xe1\xea#\x95\xe4,\x0f\xf2-'\xb7\x0e\xfd\xe5`jLN\xf3\xe4\xa71\x1c\x0c\x87\xa2t\xf2^\xc5\x8b\xa5\x8fO'\xfc\xab\"\xe7\xe2\xed\x138TU\xe8\x95\xb49\x14\xbfj\x1da\x9118/\xff,\xc7f\xe7\x05\xbe\xce\xb5r\xfc_\x84\x9a\xab\x90\xa9j@\xd5\xd2/4\xf0\xb0\xc1\x82\xe5\xe68rW\"\x16\xa0\x19*tS\xc2\x18\x9c\x8a%\x01\xa7g\x08w\xc6\x1fy@5\x06\x87\x0e\xa7\xa80\xfaX\xcac*|E_\xcd\x8dp\x85m\x0cN\xa1\xd0h\x8dp\x0d\xa3\xf8\xd9*\x00\xf2'Oo[\xcca\xda\xa1\x03o\xdf7eO\x96\xcfG\x98\x05\xe8R\xd7\xd5\xad~odo\xcb\x8c8\xb6l\xc0R\xaa\xe6k#\xfel\xda\x0bM\xfd\x1e\x83\xa3)\x1aT\xa9\x8e\x9ef\xd1\xa8d&\xf4\x10r\xae0\x95\x9dtv:\x95\xfa\xd6\xb9\xe3\x17.P\x85\x1aV\x7f}\x1c\x05\xeb\x0d\x9b\xd7\xbf\x9e\xc6\xf9\xe8\xbe\xb9\x92\xe9\xfdi\x9c\x1f\x1e\x98\x8b\x9b\xde\x7f\x17%\x81\xfd\xc3\xfd\xbb\xe2\x83\xe5z\xea\xba\x93\\\x06\xba\xeb\xc6\x9d;\xc07\xe9/!\xbbn0\xbf\x99\x81\xc0<\x88\xa5\xf4K\x13V\xda0\xe3\x8d7;[\xe9\x8f>\xb4\xc2\x01\xb8\xd5E\x8d\xc4E\xf3@\xebP\x93h-\x11\x9b\xa8\xf8\xbbX\xd9\x11\xa3\x90\x0cB;\x8f\xdd\xd4\xc2\x82$\xcb\"\xf10\xd8L\x99\xe5\x8e\xa1V@$wO\xa0\x07\x8e\x8f\x81\xb1al\xba\x8f\xef\x97\xc6?g\x11\xcbY\xa7\xad\x17EU\x97|\"\x86\xbc\xda\xe5\xf6\x97,\xef\xd4\xb8\xda8\xb9@\xc4F\x82\x8c\x0e\xbb\xf5y\x8e\xcb\xa9R-\x1d\xaf\x82\x9d\x1c\xd0d\x07\x15\x07<77;w\x96\xfb\xca*\x93l\x80\x80\xf2\xea hk_\x08Ym\xb9Y\xe5SI\x96-z\xf4\xacs$\xe7B\xa6\xfc\xe1\xd4\x18\xe3s\xbaqT;\x957\x8c\x11\x9d\";\x98,\xa4u\xd1vkV\xdf\x8f\xba\x83A\xc3 9\xe0)\xb9p\x904\xa32\xfa\xde\x9bM\"\xfaT\xd0\xd5\xe57\x98L\x87\x99\xd8N\xef;\xce\x84\xc5y\x1a\xfe\x16S\xe9\xb6/S\x0eL\x06\xcf\x0fh\x99R\xc51H\x9b\xa1\xc9E\xc8\xb0\x00\x96\xb3\xf8[\xe4\xf3\xcfO~8ys\xc2\xf9%W\xd8}\xa1\x9e\xfb\xe0\xbc|\xf5\xe6\xf4\xe5\x8b3\xfe\xe7\xab\x97g\xf8\xe9\xd5\xdb7\x8ea\x81fZ\x97\xb3(\x89Y\x97\x15\xd7\xa4\xb2\x19ZP\xfc\x86\x15\xbcL\xe6\xb7\xfa)\xdbi\x1cZ\xee\xd8\x1aWP\xa4\xcb\xd7\xc6\xe9\xa9\x97\xf3\xd2\xcb\xf9gNe^9\xf9o\x9a\x14i\x0fc]\xdb\xb0k\x84\x85\xaa1\xae\xaa'\xf6JB\xeb\x18K5D\xd3M\x1a\x94\xcfm\x1a\x8d\x95\x9a\xb2\xc3*\xcf\x07\x9d\xfdi$\xba\xd1\x92\x91\xc5\xa8}\xa1\x1a\x82\x82\xe8\xcb\xe3X\"h5\x9b\xcf\x98R4q\x16N\xd5\xf3\x11\xcc\xd2\xd0\x95\x88c==\x1c\x8e|8\x1c\x1e\xf0\x7f\x0e\xf9?\x0f\xf8?\x0f\x0d\xe82\x1f\xa4l\x1e\xa6\x1d\xd2\x8d\xcb'\\\xa8\xfc.\x97\x9a\x95O\xb7\x96i\x11\xb7\x94\xbb\xa9Pjg\xc9\xdcz@_\x02\xdd\xae\xfb\xd0\x05\xe2\x9a\x95\xa7(\xa1\xa3\xe6\xc6\xcb\xc6;\x80\x1e\x1b|\xafT\xee\x84\xff|M\x06A\x98\xc0\x8c~f\x9b$\xc6{\x9ds\xfe\x1b5\xe7\xae\xab\xaf\xadQ\xcdi-n\x10v@\xb7\xbe \x99\xc3^\x9aml\xa1(\xfc\x9f?\xfe\xf0}\x9eo\xc4<\xec\xa6\x9apG\xcf8\xd0\xb0\xaf\xb9\x14h;\x1e\xb6\xd2\xa7r\x0dB\xc4\xb0\x13\x91\x92\x8f\x02\x9d\x8d\x1br\xc1\xf9Y\x14\xc9m\x13\x9b\xeb\x8a\xa8\xbev\x97\x110#\xa9\xfe0a|qR\xd1\xf8\xdb\xd7?\xa0\xca\x1c\xc2\x11\x84\x03\xed-\x8c\x81\x95\xfdI\xfe\xb3/\xf6\xa3\xcf+\xb5\xf8\xbcH\x93\xa2\xea\xc8\xd0\x0b\xe6\xe9\x97?\xf8257\x19\xbb\x82\xc7\xe0%x;\xe6\xf8\x08\x16\x9d\xa9\xb1|\xd2\xaak\xe8\x0b\x96_'\xe9{i^\x87E\x10Fln\xf2\xfd\x90\x8f\xe8:\x0f\xd7,\xd9v:o\x97\xcf\x17\xeb|\xc3b7Q\xc7Q \x9d\x7fa\xaa\x1d'\x8cg\xd1v\xce\xe8\xf0!)\x9d\xf6p\xc9*\x1c\\\x87\xf9\xea\xb8tND\x15\xd5\x16\xddn\xe46\x96|\xc1\\m\x17\x05\x17!/\x0c>\x00 B;\xf9G\xcb'\xe4\xea\x95\x80:B\x03\x8b\xbb\xb4|\xb8$\xc9+\xc5sWsoO\xb4C\xb7#:\x8a\x1b\xeb/mR\xa9\x99\xd8\"\xf9\x1cl\x92\xe8v\x11F\x91\xc9+X\xfd\xe5:[y\xd1_\xbfk\x90\xb1h\x01G\xf4\xdfXS\xb1>\xeb\xa2l\xec>\x1a\x9a\xae\xaf\xf0\xf7\x0f\xcd\x17\x92\x1e>\xb2\xdc<*\xef\n\x85!\xe6\x84\xb0\xdc\n\x1e2\x8f!)\xbfUQ\x02\xc6\xb5\x9c\xf7\x9f9\xbf\xc3\x87\xd5y$j\x1e\xf5\xf9\xd5!\xeb2\x0df\xef\x19\x9fHg\xd3\x00f\x84\x9b\x9e\xd7e*\x83\x0d+\x8c\xe7\xe1\x8c\x95Zo\xe7\xab\xd4\x01f\x96\xa3\xe4s]zJ\xd9\x86\x05\xad10@\xeb\xa5\xdej\x19d\xeb\xf7\xd2\x9e\x079+Y\xcdN\xcf^\x92\xe1\xac\\\xd6\x1c\x8dg\xce\xa2p\xcd\x15\xb31\xde\x0e\xae}\x97\xc1n\xf6\x0cR-}K\xc7\x90\x8a\xe0\x13\xb6\"\x7fA]\xfde\x1c\xdd\x8e\x8d9\x063\x96\x86A\x14\xfe\xc2\xf8\\vX\xad\xa0v{U>\x86\xbd\xc8\xde\x87\x9b\x17\xdb(\xca,c@p\xe6\x05\xbe\x0f\xe2y\x84\x91Q*V\xf3J\xa3\xba\xc6\x0eL\x04~Q\xf1\xc82\x1f\"\x9f\x8buE\x88\x04\xd3l\xa4%\xdb\xc0R\xd1\xdbZv\xa0{\x82F\x1eV\x89\xb8Xwe\xba !\xdd\x82\xaft\x7f\x0e\xbe\xb6Tq\xe36\xd6RW\xc2\xaf\x9a\x04\xfdP\xb9LQ\x06\xb4\x15\xa7\x93|D[\x01\x0c\xe8\xfbf\xb8\xe2\xcd\x9f+\xf4\x8fm\x81u\xb0{\x9c_\xa1\x84U\x8f\x97A\xefe \x80\xea\x87t\x10f\xe2V\xc1\x95\xa7\x0d\xff\x08\xa6s\x17#\xc4\xc3\xb8:\x07\x8f#\xfb\x84\xa3\xfd\xdc\xcd\xdc\xab\xd2\xa7s\x18\xf3\x9a\xb1^F\xb8x\\y\x9eA\xa5\xe2\x9b\xbd\xf6\xd1~n\xb2\xe0\xe0\x96\x15\xcc\xf0J\x0d\xd1\x10\xff\x8f\x97-\xdf7\x8a<\x0f\x8f\x07\"\xcb\xd6\xdaU\xdc\xdbJ\xda3\x13t\x808|\x98\xc1\x11\xdc\x0e\xb2$\xcd\xdd\x19\xdf\xe0. \x9a\x94\xa9\xf3\x92\xbc\xdd.\xe1 \xac\x95\xb7[\xafw\xd9\xa4\x7f_\xc0\x04\xd6\xd3K\x8b\xc1\x0b\xdd\xbd\n\x80\x9d^`&\x07wY\xbd9\xef^yp\x04K\x99S\x86\xb9\xbc\xa8\x0f FP\xf3Z\xd0\x96\xcf\xb3V5\x86\x1e\xb8\\8p\x06|\xe7/T\x9e\xd2\x0b\x95\x9b\xb4\xb9Q\x03\xd1\xaa\xbd\x91\xfb_&CfQ\xa0\x91\x99\xa9s\xfd:\xe1\x0b\x80n\xe5\xa6\x83 \xcb\xc2e\xec\xfe\xfd#606\xc6\xcdQ\x01\x99\x02\x89\x07x\x8aS\xdc\xf7-\xbd\xd7\xc8W!T\x05\x05\x810\xba\xd1\x9c\x88\xfa\xab\x00\x03\xa0_2\x08\xd4\xe4j9E\xaeD\xdc\x1b\x0do\x82\x81bjp\x04[\xed\xd7X\xffV_\x89\x19\n\xc4u\xe2\x11\x0c\xea\xcc\x01\x8e\xcc\xaf\xc7\xb05\xbc\xae\xf7\xb5\xb0\xf7%\xf9\x14u\xa1~a\xcb\xf2W\xbd\xc1\x8d\xb5A\x11\x18\xea\xa8\xf8s\xac\xa8X\xbd\x1d\xae\xa2\x1b\xb9N\xb1\xb1G\xda\xdfES\x86\x05]\xd9\xdb\xca(\xa5\xbc\xf8\x83N\x8b\xea\x0d\\\x15;K\xb0\x85\x9eU\xcf\x93\x1cy\x8e\xf6\xb3^u\xdd\xd0\xb7.n\xd0 Jop\xa5\xf57\xf5\xd6\x97-\xab]H<\xdaji/\x8be+^\xd6\x91\xad\x04\xd4$\xdc{\xea/4\xa2\x0bo\x93r\xd5\"\xf3U\xa7\xc8\x15\x89h0gi\xe6\x17\x1dY\xb0\xf3m\xfc>N\xaec\xa1k@\xb2A\xf1g\x93&W\xe1\x9c\xcd\x8d\xf8)\xc2\xb1\xe2\x80\x8b\xae\xa6\xb2\xa7\ni\xb7l\xda\"\x8c\x08\xa1\xd1\xa1\x95s\x12\xf9\xces1/\\\xfd\x06\xae*\x80\xba/&o\xd7\xab\xd5\x07z\xedc*\x82*oF!D\xc6\xc2)\xe8\x98\xee.:\xe1\xfd\x0bj]\xbd\xf8s\x8d\x9d\xa2\xff\xc2w\xb4h\xc2\xc0R~9\xe6\x8a?*&\xa8\xba\x07X@\xbc\xe1lF}\x1csE\x9f\xeb\x15\x8e^\xa7>\x9b\x1b\x98@8\xbd\xaeL\x06\x83\xc8\xb8U\x96\x1f{\x18\x0d\xeb\xce\x1d\xc9\xdc\xabw\x1c\x15\x0f?#\x1e~\x06O\xe0V\xe3\xe1g6\xe1\xf6\x18&p;=3\xf0\xefE\x89w\xc7\xd3c\xe2\xdd|\x07N$\xb7\xcd\\\xfe\x1e\xa3\xf8\xde(\x0e\nG0\x97$\x83C\xd6\xca\x87+\x9f\x0bV\x17>,\xab\x8c\xf5cm]\xdec\x07\xe8f\x16\x19\xcc\x9c\xcf\xd0P \x90.\x98\xcf\xff\x9f-Ko_\xa5l\x11\xde\xf0m8r\x0c1\x9e\xc4\xce\xbf/\xf2 \x0c\xe1\x08\x9eA\x0f\xdeW\"\xfc\xe0_\xbf\x8az\xdd\x82\xeb]\xf4nEN\xcd*\x12~Vn#\xb6B\x1c\xa4\x7f\xe0,v\x0c\x07\x06\xa5\x91\x1c(Qi\xa4?ME\x9au\xd29\xdb\xe4\xab1\xdc30\xc1 \x0d\xd6,g\xa9\x18\xc0\x88\x1d\x1a\nEA\x18\xd3j}1]0\xe8\x10L\x05\xda\xbce\xd5\x0ekl\xeeH\xcb\x92\xb1\xffn\xe0N\x7f\x1aL\xcf{\x1e:\xb2N\xffmt\x8e\xf7\xfa,\xbeW 6z\xdf}7\x9d\xfe4}w~\xfe\xcd\xb9gK\\\x03b\x16\xe5\xc2\x94h*m:\x86\xe3\xd4\x0d\xc5Gq\xa5\xda'\xb2\xc5n0!\x85\xbdb\xd6p\x8e\xcd\x97\xa9\x16\xcd\xacZ`/\x1e\xe8[ \x98/\x0c9Z\x15\x1504\x1a\xa5\xab\xae\xc0\xb0$\xdav\x83vF\xa7\xe2\x86;[`=\xfdQ\xc4R\xe4\xf6VB\xb3\x1b`\x08G\xb1\xa88\xa6\x08\x9e@<@\x90n\x0c\xf3\xcdg\x1cA\x0fC\xe7\xef2\xf3`::\x17[3\xf2\xa1/\x02v\x7f\xc6J\x04\xc6\xa0\x14`]\x0ci\xab\xe1\xdd\x8a&HQ\x92\x10\xa3\xc0E\xe8M\xd6\x01tA\xb0Ry\xb9\x0d\x1c\xa9r\xca\xf2\xa2%7\x1b\x89\xe4\x03\xc3\xc7\xd0\xef'm\x8d\x81@\xd0\x90\xa2\x98\xb3i\xd2\x90\xda[>(9LE\x0c\xb6\xc0Cl\xc44\x08\xd3sO\xb28\x9b{\x99\xfet\xb8M-\x1f\xb4\x18\x97\xc1\xe3H\xf2\x86Y\xca\x82\x9c\xa1\x0eg\xd2\xefl\xcf\x95\x08\xe5\xc7\xb7\x8d\xd8b\x91\x9f\x91+y\xe7\x95\xd7\x81\xb6\xc6\x1e\xc9\xd7\x1a\xfcq-\xcc\xbe\xc7\xd5\x87S 4_\x9f\xc6\xb9\xbb\xf5ad\n\xd9`z\xf6\xc2\xecE\xf0\xc2\xcdp\x88\x01b\x1f\x06\xbd\x17\x06\x9a\xcc\xc31\xe3\xab\x8c\xc2\x8c\x8a\x1c\xc8i\xc6P|\xcc\xe8\xd3\x13\xa4\xc7\x8a\xa9\xc1\x91\xda\xc0iv\x8eQ\xf0\xc7\x10N\xb7\xf8g\xeb\xc0\xcc\x18\xa2?\x1cT\xc3\xc6R\xcdm\x08l\xb3\x0f\xe5\xa3\x9b \xec\xa9\x15\xa9\x98\x9a?\xc3\xcc\xf0 \xf6\x84X\x88\x03U{B\xe9\xbd\xd1\x9e\xa0JX4\x96\xe7l\x07{\x02\x8ei\x10.\xe3$e\xba\xe4\xa7dB\xc3G\x1f\x87 \x8d\x0c\x13S\xacl\xbd\x80\xb0D\xbef\xcb\x93\x9b\x8d\xab}\xf10I\xa5n\xae\x085s\x85\xe4\x12\xbc\x83\xba\xe5S~\xc3?eI\x8c\x83=\x11\x9eZ\xc1\xa0\xf8\xe9#f\xb1\xcd\xb1\xf0B\x0e\x06\x17\xea'f\xa5\xc8f\xc1\x86\xbd\n\xf2\x95\xba0\x8b\xa5\x0c\xefy\xf1ml\xab`\xfcR\x1e\xfe\xd6\x90\xd7\xaf\xd5\xad^\xc0c\xbb\xcf\x01]\xd0\xbc\xccXzE\x1e\x9c\xd3syk\xf3\xf2g\xa8f\xfc\x80\xba<]\xbdQ\x17\xed<\xb4\xb6@\x95\x9cv]\x06\xb3\xf7\x14\xc8\xad4`\x98\x98\xa2mV\x07h\x8a\xfd=\xab/I)\x8b*\xe5\x9cJ1-\xb9\xa471<\x81\xf41\xc4\xbd^]\xcb@\xdb\xce4>\xa7e\xc3H\x0bd[\xb7N\x0d\x19VlQ\xb7/S\x16\xbco\x99\xd9\xc2\xcd\xe9\xbe\x88\xaf:\xe3\x7fm8\x14s\x11\x0b\xd3D\xa8\xdfR{E\xabJ\x81\xaaz\x1b\xa2\xa4\xe1\x08\x81R\xc8\x8a\xefF#q\xa8\x1b\x891\x94\xad,.`\x8a\x15\xfb\xa8n\xfc\xf0_n\x88\x89\xbf4jY\xdf\xac\x85\xab\xb2\x01\xd4,\x1a\x18b\x82\x92\xe9\x98\x96\xda(\xa4\xe7\x83<\xf9\xd3\xd9\xcb\x17@9X'\xea\x85k\n\x14\xa3\xe0\"D\x9epAK\xfdg\xce\x9ar\x8f\x84\xa1\xf2[\xe6\x91\x98\xb37\"\xde\x17\x94\xac3\x99\xb0\xced\xfd~\xa3X\x83\xe6\x18\xe4T\xd3\xec\xbc\xc1\xa2\xb8\x97\xd6.\x8e\xf9\xb0\xf1*\xd2g>\xdd\x9cWt\xd0\x08Mf$\xc0\x94\x8f\x98rO\xc5\xac\xb7\x9bg\x92\x0d\x1e\xd9\xac\x93+\xd6\x90o{\x13\xe4\xab1\xdd\x0c\xdc'\xf3\x98\x81\xe0\xb9\x1b\xfb\xc5\x1c\\HK\xae\xd7\x16\x03\xd2\x95\xc8\xf9\xc2\xe7n7\xaf\x18\xf2ADP$i\xa2\x1f\x86B3\xbd\xd0\x8c\x0b\x89.\x89\xa2\x1cJ[\xe7\xcb\x85\x1d2\x11`;\xee\xde\xd0o_r(\x96\x1d\x05\xf3\x86u\x87\x1d\xd6\xbe\xb9\x15\x11}9\xd5X\xa0;kr\x81\xedjF5\xfbEm9\xe0*j\xb2W`\x8f\xb9YDNMm\x08\x15\xb5\xcez\xbd&\xeb'\x07\x8e\x0d\x9e%f\x0d\xc0Q\xc3-f\xc3-\xae\xfau\xde\xbf`>\xff\x87\xed\x1d\x1fm\xd3\xf6u\xd8=\xcd\xc5X\xfd\xc5\xa5\x1c\xc1\x96\xdb\xeciZQ=+\x02\x97\x94:\xb6\x80\n,\x99\xbe\x9bE\x9cR\x08\xb3!\xf1\xf5\x82\xa1\xe7\x94`871tPL=\xd7\x98\xba\xd2\xe1\xf9\xeb\xf2\x9a\xd4\x02 \xf1\xda\x898\xdao\x95vJz\xb9\x90?\xb9bq\xfeC\x98\xe5,F\xfb\xa3\xed\x93\xeb\xac\x93m\xc6\xb6\x1b\x87\xac.\xd6b\xef\xd9m{!lk\x9e\\\xc7m\x05\xdf\xb3\xdb.\xc5f\xab ^2,\x85\x807Of\xdb5\x8b\xf3\x81\xfc\xe3$b\xf8;\xc8\xf3`\xb6\xc2\xda\xae\x93\xc4\xe59u\xad\xa5O\xb1k\x9d\xea\x8c\xbb\xd6+/@\xd7Z\xfazt0A\xc4\x15\xb9;\x16\xaa\x01iO\xb1\x99J\x9b\x80z\x86y[\x8c m\x84\xddV\x12\xa7\n~!R'\x1f\x03\xc9+\xf4\xc3\x12\xc9C\x9e\xadw%r\x80\xc7>\x8c,\x08\xc9 _\x87\xaehH\x02\xb1\x0d\x13\x0d_-\xc8h,i\xc0G{\x8bu\\\xb3\xb5\xa9J6\xe3\xdb\x9c}\n\xbeUju\xc27SO]0\xa7\xdeW1\xb5\n\xeap\x8eT\xc0\x01\x85n`\xd7@I\x99\xbcRD\xd6\x8fd\xad\x8aYJ&\xa8\x19\xff\x8dv\xbe\xb4\x9b\xa0bp \x91F\x90B\xb1Em\xbd\x9a\x01\xac\xc9h\xa8\xb4\xe3\xcfI\x02\xd69\xadW)\xe1\xafQ\xa9\xd63\x94\x1d\x95~\x8d!\xf6\x06\xd9*\\s\xf6\xdd:/\xb9dZ\xc6\xb7%\xeer\x86'\xf2v\xa2%\x06\xdd\x12q'\x90\xadi\x92\xa7\xd9DdH\xab#}!-Ck\x0d\xf6\xa3mo\xbd?C\xee\x17uK\xcb\xac\x82\xd2\xfb\xfa\xb1\x19\xd3\x8c=\x9d\x9ce\x99\x0f\x0e\xff\x831\x87\x1cij\xb56\xa2\xfciv\x12o\xd7\x14\x11\xc3P\xf7\xc3\x07\xdd\xa5\xec\xa3Kq4\x0b\xc8\x89\xe1\x08}\x0b\x12oPD\xb3\x9f@JVR\xfdUb\x04\x94\x9d|\n\x8d`JQ;p\xe12\x11F\xad\xfaQ\x85\xf4(\x1d\xa8Y\xf6F.y1ih\xba\xebU\xda\xd1\xe6\xf1\xb1\xc1,\x89\xb3<\xdd\xce\xd0\xc0=\x99\xe8\xdf\xd0t \x86\xabv \x8e\x8aI\x8d\x0d#3A\xb9\x1d\xea\xb4\x93\xcc#\x0ee\x11\xb6\xaa\x9fh\xf2\xf7\x1a_\x1c\xeb0:)9z\xd7\x8bR\xa2\xc8#Sz!\x07\xcf\xe5K\xed\xb5\xf4\x9b\xb6\xe1\x96!g\x8f\xc4e}\xc8 \x0d\x00\xb3\xc2\x8c\xd58\xb4/\x81[\xc9Bo\xea\xcc\x90\x7fG\xe9\\\xeb`\xe3\x86\xcdc5\xe4\xa4\x91\xf4\xdcz$,\xe9y\x15\xbdE\x80%7\x9f\xc6\xe7\x18W\x9dM\xe3Z\x10\xfc:\xb57\x8c\xca\x90\x87\xa6\xa4\\+\xbaZ\x18\x82G\x15\x83\xa3*2\x1d\x9d\xf3\xb5\xd4\x7f\x8eIX5;\xf0bT6\xb6\n\xae\xc2d\x9b\x8e\xc15\xf4u`\xed\xeb\xa0\xdc\xd7\xc19\x1e3z\x83r\xabx\xc5N\x9a\xd5J#Pg\xe4|\xeb\x9a\xad\x0d\n\xb91&u\xb9\x15\xcf'+:}\xf3\xa5\x13e\xc4\x85\\%\xf2F&Y\xb7\x94\xbf:\x9dF\xe7t\xda\xad\x1f\x91\xceD\xe2\xe8\xe1c\xd8\xc0\x13X\xa8\x067v#\x18o\x11#WL7\x0d\xa7\xe6+.\xf0L\xe7\x0d%\xae0\x97\xe3\xaa\xc1\x12\xb5\xc6\x12\xe1tn\x8b\xef^\xba\x8a\x80W\xde\xec\x12?\x96- \xe3\x13X7\xa9\x1b \xe6\x8a\x0e z'k8\x02>\xa8\x0e>\x83!%\xc0\xce\xd0\xebk\xba\xf4a\xeb\xae\xbcs\xa3\xbb\x99|D\x9clQs[\xbbz \x1fu\xadE\xa76m\xf3\xd7\x8av\x9a\xfb-\x1ex\xdb\x86 \x1f1V\x07O\xbd\x1d\xe1\x17VA\x13Z2\xe9+pk\xbe,)\x9f\xf2\x1a\xd8\x07\xa0\x97Z\xd5J\x18\xd5\\\xfd\xc0H5\xd3)\x17f#\xd5\"\x12$NA\x90\x84\x1dA\x8en\x1ecL\x1e\xcd)\xc1Hd6(R\x1a\xf0\x02\xe7zk\xd3\xd4,\xefg\xe4\x16Q\x8c\xdd/\x06=\x88\x93\x1f\xb7y\x907*\xe6j\xf0\xcc8\xf8\\\x0d^\xe6g\x18\x92\x1e\xcdH\x8f\x06\xc1\x07\x8a\x81V\x0f \xd5@\xc9\xbf\xd1<\xd2\xeb0_\xbd\xc4+R5\xdfI{\xba\xd5L}\xafl]\x8b\x8cg\x0f\x0c!\xf3\x8fC\xec>\x1a\xdd\xab\x10\xa0\x8b\x0b\x96\xfd\x98\xcc\xb7\x11^\xf3\xdf\xad\xcb\xd8\x1d=x\xc0\x17\xd0}t@\xff\x8d\xee\x8b\x9f#\xf1\xff\xa1\xe7\x97\x05[wt\xcf\x1b\xfc\x95\x05\xef\x7f\x0c6]\xfah\x10]}\x99\xc9\xf7p\xe4\xb9U?\x8ePtV\xbd,C^\x0e\xa3\x83\xbb\x95\xf7[j\xea~5Y0\x0d\xfa\xd1\xa8\x1a\xbb\"\xa2\xf2\xd5\xe6g\xf8\xfa^\xd5{d!\xbcG\x0e*\xef\xf1\xdcr\xb0d9_\x91\xf2\xa7y\xc1\xbb\xc2\xec\xe4&gq\x16^F\x95\xcb\x1e\x9c\xedd\x83\xed\"\xcb\x93\xb4\xf2\xe9\x8a,\xca\xa5w\xed\x01d\xab^\x076\xaa)Y\xb8\x88\x8ag\x904\x86%qbx\xaed\xd3V\xd7\xe3\xf2\x98\x97FYg\xc9:\x05\xd6\xc0{\x13(A\xdb\x89\xbf\xa4q\x1bcj\x06\xf9\x88 \x0b?\xe0\x1c\x8e`\xe5.\xc4\xec\x1d\x01\xcf\x8e\xe7a\x0c&\x94}1\xfa\xb6HU\x14\x16\xb37v`8\xf4\xab\x8b Yy\xca\xedAK\xb2\xc1\x9c-\x0c\x83\xf4\xd1?d\xc7m\xb8\xadj\xa8\xee\xa3\x83\xa1\xe7\xaaV\xf1\n\xde\x12o\xbb\xef\x0d1\x96Q\xb1\x963\xb7\xcd\x18\xf1\x00\xf6&\x80\x96\xa5[\x0fs\x7f\xc9\xbb,\x8b\x94\xb1_P\x18\xa4\x17\x9e{\xe5\xf9\xf0\x80\xd6Yc\xff\x1fI~\xdf\xba.\xa6l\xe3\x9f\x8f\x0b\xad\xd0]\x977I\xbb!\xb3\xf4|\x08\x06/NN\x9e\xe3\x01\xba\x0f\x89;u(\x8e\xae\xe3\x83\xb3\n2\xfe\xdf\x92\xe5\xfc\xbf\x8c\xe5\xce\xb9\xdf\x00w\x12\x96n\xb5.j\xeb\x8c>\xf2\xb5x\xc1!\xc6L\xd2\x1a\xcf\x0d^\x1c\xa0`:'\x03\xc4\x1c\x9d\x10\xcc`@\xb0\xb7(\xd2\x7f\\,\xc4\xe1TSP\xe3P\x065\xbeXL\xd99\x8d\xc2\\Zj\x86|U@\xe8\x9b\xbc&\x8c\x0d\x97\x18\xec\x0e\x91\"\xa8-\x02i^\x8b\xe5\xffQ\xdfc\xfa\xbbs\xa2\xf0G\xa3\x87\x96\xc8I\x8dh$\x07\xc6\xae]\xd4\xbe\xf5\x10\xaf\x9d\xf8b1\x82\x1a\x7f\x10\x1c\xab\xc6\x96\x04\xbbz\xe4\xb9N\xb6a\xb3\x90\x95\xd2\x84t\x93\xd8\x10\xf8\x8cb\nj\xe5\x1c?LW(\x84\xf1I3\xa2\xa0}\x8a\x9c\x85PJBHK\\\xcd\xce\xe5\xa9\x1c\x08\x82\xa6\xfb\x90\n\x90T\xe6\x10\xf2\x18\x9a\x86\xe7\x9e\xf2\x1f\x12\x85\x8b\x1c\xf1\x92\x96R7\xe3\xd6T\xf6\xdd\x85\x03Z\xe7\xe1}\xe3\xfas\xf6o\xe6\xba\xc2\xcd\xb3Z-0\xef\xa6\x10\x1a\x86UaBH:w\xab\xef#%\xaf\x18\xa5\x86\xaat\xd0$5DnU\x92\x9b\xe3\xdb\xea\xc8WxxT\x86\x93\xaeR\x00\x1b\\`\xea\x07\x17\xff \xd2\xb1\xae\x1e\x10\x94~\xae\xdbN\xcb\x90\xb2\x04hrojg\xd9\x86\xa3P\x8cr\xe3\xb2A\xd0D\x94+\xe5\x19\x17F\x10\xf0j\xa5\xaa\xd9\x90\x0b\x98Zk\xd6\xc3\xaa<\xd2A\x16\x91|a)\xe8\x9c5 \x94:\x83\xcb\xa7\xa3\xc6\x15Z\x05\xad\x01\xd2\xa4\xc8\xb2W\xf4\xda\xd4b7\xf9B\x1e;4\xcd$F\xe7yT\xf5r\x99\x021\x10\xf1\xa5Y=\xbete\x1c\xc4|\xdb&'WT\x043\xd6\x01\xa0M.\xca%\x00\x18\x9cv\x0d\xb3\x11\xb5\xfe;\x07\x99\x88%\x90\x07\xa2\xb9\x8f\x97\x08\xf6\xf6\xfe\xbb\x9aTF\xfd\xe57(fe!e\\#u>\x84\xb6\xa9\xa3\xdbc)J\xa35\xc4\xeb\x96\x7f\x8d\xb0E\xe7\"$g\xd7\x8b\x9c\xdcE\xd8\xe0\x82S\xbcU\xaf\xe7\x83@r\xa2\xcc~a$\x04\xbc|\x97\xb9)\x8e\x88M\xc3ss*|\xfb\xd2\xa5n\xa4\x8b\\\xe6av\xdbv\xf9\xa0Gg\x80\x92\xbd\x04\xf3\x91]x\x97@\x9b\xec \xe2s \xbeR\xd2s\xeey\"\x11\x03I\xf71_\x93\x99\x1b\xab\x9c8\xc8\xe4D\xfe\x85X\x89\xfd\xc6\xbe,\xee3\x1d0Z>\xff\x88\xd9\x8bD\x0f\xa6\xa9\x9bgi\x80\x10\x1f\xa2f\xcc_\xd4\x91\xc0\x86\x01)YK\xd1\xb7x\xcft/\xb8<\xa1\x14'\xc4H\xbb\xc8\xc5\xa5\x9bt\xcaP9\x9b d7\x0dM\xa8\xd8c\xb8*P\xfb\x0f\xf0\x05$\x94\xaa( \x04D\x8b9\xa3f\xb6\x08\xcc\xf6\x06\x12L\xeeU[\xc9,RQd\x91Wf\x16\xf9fa\x16\x876$uW\xc3\x9b\xce\xf1\xf5\xdd\xa17X\xd4e\x13\x8b\xf9\xe6\x8a\xea\xdcm\x15\x82%\xa5$\xed\xf3\xd6$\x13_\xe2y\x003\xd8\xe6/`\x02\x97\xf5\xd7\xd7\x9c\xbf\xe1!!\xa30;f?\xd4\x13\x98\xc0\x05G\x86\x8b&m\xef\xc6p\x1e%@\xf3\xcaz\xba\x89\xcd\xba\x18\xad\xe7D\xe5\x16\xe1Rx`W\xa5\xf9\x83*\xf4\x85'\x93*\xb8\x1ez\"\xb9U\x95\xca\x83#p/0\x91\x8b\xaen\x1aqm\xc6\xbf\\\xa0j\xea\\\xcc0\xeb\xe2\xe0b&\xa4\xc1K\x9dO a\xc0\xebsK\x1f\xf2\xe9\xf5y\xcd\xca\xc0)\xc0\xca\xe5\xcb\xe9\xa3\xc3\x94O\x04\xd3\x173\xf4\x97,\xf7WA\xe6g,\xf7\xdf\xb3\xdb\xcc\xa7<\x1f\xbe\x98\x8eO\xb7\x0f\x1c\x99\x9e\xce\xe7\xa3\xe9&&\xe0\x16\x82\xbcnZ\xa8\xacu\xb2\xc1 \x8c\xe1\x84\x9c\xcdq\x03\x1c\x1c**L\xa4Em]}\xc3K:{S\xa8uN\xb4e\x16 \xbe\x9e\x9cn\xa1LA\xfa\xd5\xc2\x8d\x0br\x8e\x06\x07\x1a\xae:\xaf\xb3\xab\xec*\x0f\xd1\xc5\x8c\xab\xec\x05\x05\x1frr\xed[\xd5})\x0f\x15z{R+W\x15\x89=\x9f\x82H\xcd\xcb\x8b\xe0d\xe1/\xcc1\xf1\xf6\xb2t\xdc&\x9a\xd1,\x06\xbc\xb5\xfaPjP<&(^W\xcd=dIY\xfap\xed\xf9\x90\x95G\x1a\xe3\xadOe\xf0\xf1|\xd8\xb8b;n(G\xd3\x85\x0f\x89\x9b\x0c\xfe\x03z\x90\x0c\xfe\x8a\xff~\xe7\xc3\x8d\x9c\xf9\x9a\xb3\x90\xb3\xc9J\x98\xa4\xcd\xb0\x16\xa1\x1eTy\xaf\xec#\xe72=O\xb5\xe7\xc3\xfe\xf4\xa7\xa0\xff\xcb\xb0\xff\xe8]\xff\xab\x7f\xfb\xe3\x9d\xaf\xbf\xe9\x0d\xde\xfdt\xf1\x7f>\xfc\xf7\xf9~8\xc8Y\x86\xb9\xd7\xcc\x81Wd\x82\x97\xd9*H\x83Y\xceR\xceW)\xcd\x00,B\x16\xcd!\x0e\xd6\xc6\x9c/\xca\xfa\x94'?$\xd72\xaftyq-sn\xb6\x84t\x9e6\xeb\xd4\x99\xc1\xf1\x11t'$#p\xc5\x98u\xa4\x95\xac\x82\xd6\x10\x93Iv[\x957{[\xfc\x99'1+9\x88\xb5$<\x11\xb7\xa2\xccI\xac\xc0\xa8\xe2\x99\xdf\x1a\xbcF\xc4\x80+i\xc3rS\xb2\xb0\xd6\xb5\x92\xb2C\xbd\xdf\xce\xd9~\x0d\xde}\xa0\xa5\x02\x14\x97sJ\x19\xf2\x13\x0c\xfd\xb1S\xbe\x0c2\x1eQ\xd6bs\x82\x0c\x91\xf9\xbf\x1e\xcd\x14\xbd\xeaL\xddu\xe9\x8bM\x87\xe7>0c\xe86\xadG\xdc\x03q\xee\xb6d\xb9\xe6\x1e\xf7\"X3\xae\xfd\xef\x90!\xaf:\xd7\xa9)\xab\xdcGS\xe6B\xdb\x1e\x19|\x13A]k\x90\xd9\xf8\x95\x04-\xb2 \x0dR\xc6\xe7S\xcd\xdb\xf2,JY0\xbf\x05\xfe\xafc\xba\xcc\\\xc9\xef\xdfi\x80\x06\x7fF(K0\xb5\xd4LM\x81\xec\xd8\x8eY\x93r\x97\xcf6\xdbF\xb6D)x\xff}\xb7\x8c;\xb1\xcb(aZw\x1bO\xa7\xa52\xf8n\x82F\xf1\xf8Z\x15\xb9\x97\xcdT*FW\xa9\xdc\xce?\xf2\x01\xdf\xddg\x99\x96\xac\x96\xdc}:\x8d\xd0\xe0\xc7 \n\xda0\x86\x8cvCP\x04\x9f1\x8cE\x9fQ\x91\x8f\x98\x03\xecm\xce~\xa0\x0b\xbb\x0d3\xc8\x18\x81\xae^\xd5C\x15\xfc\x12'\xd4i*QS| \xc4S\x1d\xd6G\xd54\xdf\xad\xa7E \x0f/JY\x05\xe9\"UC\x12\xa0\xd0\x9c\xdd\x81yZ\x0eE\x91\xd9\xdc\xa0\xa6\xcbG\xf9\x05\x16\x89\x8e\xbe\x8d\x92K\xcd%\xbf\x9a\xecXo\x9f\x17\xed\xdc\xbeL~\xcd\xfb\x90\xe1g:\xf6#\x8bw\xeeK\xcf\x7f\xce\xfb\xab$@\xef\xd8\xad\\>u\xc1\xa2I\x86\xd0z\xd7\xd2mC)\x87\xd4\xba\xd2\x81\x86[\xe8\xf7\xc9\x04\\\xca\xec\xc0:4\xc4\"\xb7\xb9;5\xd6\xb79\xbdB{\x00\x03\x90&\xf1\xf2\xc8?|\x80==S\xb5}\xcd\xd0\x00\xb3\xac\xc8\xb2\x82U\xe8\xd7-\xbe\x95\xb3\xe15\xdbr\xab5\xac\x92\x1d)\x84+hm\x0b\xab1\xa7\xe5\x83\x05K\xf9\xdffI\x9c\xb38\xef\xd3\x10\xf1\xf8\xd6\x12\x04\xadT7\xab\xd5\xf5\xc1\xc9\xd9M\xbe\x8f\x01\xa9\x1es1>c\xf9\xe4\xed\x9b\xef\xfa\x0f1\x04W\x05\x8b\xe4\xe1\x98z3\x10W-Z\xbb1T\xe3\xed\x7f\x0e\x12\xa8\xd14N/\xd8l\xa2\x90\x92<\xee\xdf\xf4\xaf\xaf\xaf\xfb\x1c\xc5\xfb\xdb4\xa2\xe8\xfc\xf3\xea\xac\x8d\x12\x8c\x96a\x8d\x88)\xd1\x94V\xfe*\x8d&!i\xcc\xe6\xfd\x0d)d\xb4\xe44\xf6B\xe5E4\x88AY\x12]\xb1j\xb1.\xedi\xd0km\xb6\x15\xb7;\xf5$\xa9\xa4\x01\x0bg\xc9\x96k\x8cI\x8e\"\x9b\"\xbf\x98t\x17\x82\x0c(\x93]\xa3e\xa2\xcb\x989\xb6\x9d\x9b\xb7\x99\x04\xda\x12&\xb7nq\xc9\xaaY\xa5\x04Gr\xe79\x8e\xda\xf7\xa9\xb4\xfc\x02\xeb\xf8l]o\x90\xafXl\x8aM\xfdQ\x92\xdf\x9c\x88G\xeb8\x7f\x13Pl\x17\"`G\x11P>vQP>\x15\x91\x90o\xb3A\x16\x94\xcf\xc7_\x0bM\xba-A\xc9\xf3\xbe&\xfd\x91\xbfzaS\xcde\xdc\x17\xf2\xba\x1f\n\xaf{u\xb5E:\xdf\x9f+\x1b\xc7`\x91&\xeb\xe3U\x90\x1e's\xe6\xe6\xd3F\xd6+\xb5\x17J\x99`\xcbk\xfa\xd1\xb2\x10\x9dV\xee3\xd0\x9e\x03\xf8\x8eh_Fv\x0bE\xd7E=\xaa\xb1($\xb8Vt\xd2\xd1>\xc7\xf37B\xd5E\x03\xaa\xfe\x9c%\xf1\xe7\xb4\xfd\xa7\xb3\x97/(\x06\xaf\x95z\x95\xde\xdb\x94\x85Y\xab\xe7\x0f\xf9\xf5\xd1\xfd,\x0fU\x87\xfa\xfa#\xad\xd0\xad%\xc6\x08\x94`P\xdf\x8d\xb6\xc4\xb2\xba\xde Q\xda\\F\xf9T\xf1\xcd\xac\x94)\x95\xe9\xbf\xb9\x1a%\xe4\x83\xc2Gv\xa5r4\xc7\x98\x8f\\e\xd7\xf5\xe4NQ\xd6VlL&p\xa5\xf7\xc9\x9c\xd1\xdbd\xce\xfcR\x82\x18`\x9a$\xcc\xbb\xc2l\\z\x06\xf6\x8a\xbd\xc1\xb0\x87\x9a`H\xb3T\x06K\xf3\xf2\x1bf\x9f\x97~\x7f\xf8P_\xa1\x0f\x1f\xc0I\xd6a\xee\xf8\xb0W,NE\x98\xb2/Vn_\xacv\xd2W\x98;\xf3\xe4\xedf#\xed\xbe\x8d\xc8}\xabe\x1a\x87\xa7\xd0\xa7{H\xa6\x8c\xdd\x1f\xdd\\\x0eFN\xbc\xf8\xe9\xfc\xc7\xc9\x1b\xc7+\xefcN\x7f\xa8\xc2\xe2\x07\xe5\x9d\xc1W)[\xb04EI\x80\xde\xba\xd8\x0e\x99V+\x1d|\x7f\xf2\xecy\xed\x0b\xf9\xcbZ`\x1eUoN\xf90&4\x9b#[\xf8\x8f\x937\x90\xa4\xc0[\x939\x873\x13B\x10\x91\x93\x1a|5\x8e\x8f\x0d\xf7\x17\x1d\xac2\x82\x0c6Y\xed\xd3p\xedz\xf2\x8c\xfe\x8ec\xb0\x1a6\x9a\x11Z\xc5\x03B\x1e\xd1~cxb\xfe\xe0\xf6H\x0b\xba\x96M\xa5\x87YT\xa0\xad:\x1e\xdc \xe67q\x8c\x0d\xd8\x99g.-\xa0\x14d\xf8\xed\xeb\xd3\"&\x19\xd7\x91\x0d\xaf\x93\xeeq\xe1:[\xb77\xed\xfb\x9a4l(\xad\xf4\xfe\xbb\xf4\xe8]\xbc\xbf\xcbn\xd66k\xdc\xb4\xda\xe5\x8d\"(\xb2\x8b\x0f\xdd2\xda\x8b\x8d\x1b;\xcd\x0d\x82\xbeWi\xed\x0e\x82|>g\x0f\xe6V\xbe\x9a+_\xfa\xbf\x17\x82\xbbH\xd0-\xae\xeeI%\x99R\xd5SXs\xfe\x17\xe6\nC\xf7\x0d\xf9i\x0c\x07\xc3\xa1\x8c\xfe\xfa^\xfa\x85\x88\x8fO'\xfc\xab\"\xe7\xe2\xed\x138TU\x8a\\\xf8E'\xfcW\xad#,2\x06\xe7\xe5\x9f\xe5\xd8\xec\xbc\xc0\xd7\xb9V\x8e\xffc\x8a\xfc\xaa\xa1\xb1j\x17)/7\x1axDZo\x1b4\xaf\xac\xc7n\xba)a\x0cN\xc5\x92\x80\xd3\xb3\xe4Q\x92\x07Tcp\xceD\xcc\x88P\x06\xa6\x90\xc7T\xf8\x8a\xbe\x9a\x1b\xe1\n\xdb\x18\x9cB\xa1\xd1\x1a\xe1\x1aF\xf1\xb3U\x00\xe4O\x9e\xde\xb6\x98\xc3\xb4C\x07\xde\xbe_=\xc3\xd0\x9f\x8f0\xc3\xe0\xd4\xcd\x94\x174\x97\xca\x91\xbd-3\xe2T\xa3\x1f\xcbGJ\xd5|m\xc4\x9fM{\xa1\xa9\xdfcp4E\x83*\xd5\xd1\xd3,\x1a\x95\xcc\x84\x1eB\xce\x15L`\xaa\xe2\xd5\x9cJ}\xeb\xdc\xf1\x8b(6\x85\x1aV\x7f}\x1c\x05\xeb\x0d\x9b\xd7\xbf\x9e\xc6\xf9\xe8\xbe\xb9\x92\xe9\xfdi\x9c\x1f\x1e\x98\x8b\x9b\xde\x7f\x17%\x81\xfd\xc3\xfd\xbb\xe2\x83%,A\xfbuP\xf9H^\xc0!\x94o\xd2_Bv\xdd`~3\x03\x81y\x10*[\xaf\xb0\xd2\x86\x19o\x9cS\x88\xdd\x87v\xa5\xc4\xc1\xd6\x10C$.\x9a\x07Z\x87\x9aDk\x89\xd8D\xc5 \xd5\xca\x8eP\x94D\xb5\x9d<\x83\x9a\xae\xde)?\xbeu\xb0\xb1:Di\x05`\x82\xa7\xd0\x18\xfd\xd4\xc7\xe8\xa706$\xff\xc1 ^\xc5\xf8\x85\x93z\x97\xad\x17EU\x97|\"u\x9f\xf6J\xfbK\x96wj\\m\x9c\\ b#\xe4f~T\x9a'\xa5{l\xebx\x154\xfbFU:\x96\x1d\xd4\xc2Bs\xe8h\xeb+\xabL\xb2\x01\x02\xca\xab'\x80\xa0\xad}\xe9\xf3\xdb\xe1\x1a\x14\xd4\x02\xdc\xc8\x1e=\xeb\x1c)\xdc\x8d\x88L\x95\xfb\xc5\x18\xe3st\xfc\xcak\xa7\xf2\x861b\xd0\xb2\x0e&\x0bi]\xb4\xe5\xfb\xd3\xf7\xa3\xee`\xd0\x92\xea\x8d\xc9\xc8lfT\xc6\x8b\x89f\x93\x88>\x15\xf23\xfe\xf5'\xd3a&\xb6\xd3\xfb\x8e3\x11\xae\xd2\xbf\xfeT\xba\xed\xcb4\xae\xdf\xf7\x92O\xd3\x94*\x8eA\xda\x0cM.B\x86\x05\xb0\x9c\xc5\xdf\"\x9f\x7f~\xf2\xc3\xc9\x9b\x13\xce/\xb9\xc2\xee\x0b\xf5\xdc\x07\xe7\xe5\xab7\xa7/_\x9c\xf1?_\xbd<\xc3O\xaf\xde\xbeq\x0c\x0b4\xd3\xba\x9c\x89\xf4\x17\xad+\xaeIe\xd2\x13\xdc\xbe\x82\x97\xc9\xfcV?e;\x8dC\xb3+\x96!\x16\xf5G\x1f\"Bnm\x9c\x9ez9/\xbd\x9c\x7f\xe6T\xe6\x95\x93\xff\xa6I\x91\xf60\xd6\xb5\x0d\xbbFX\xa8\x1a\xe3\xaazb\xaf$\xb4\x8e\xb1TC4\xdd\xa4A\xf9\xdc\xa6\xd1X\xa9);\xac\xf2|\xd0\xd9\x9fF\xa2\x1b-\x19Y\x8c\xda\x17\xca\x90D\xb7\\\x84\x96\xc7q,\x83nDm\xa6\x14M\x9c\x85S\xf5|\x04\xb34$/\xd5L\x0f\x87#\x1f\x0e\x87\x07\xfc\x9fC\xfe\xcf\x03\xfe\xcfC\x03\xba\xcc\x07)\x9b\x87)\x05\xd8\xed\xc4\xd2\xb8\xa0.RK]jV>\xddZ\xf6:\x88\x97UwS\xa1\xd4\xce\x92\xb9\xf5\x80\xbe\x04\xba]\xf7\xa1\x0b\xc45+OQBG\xcd&\xeb\xa4|,\xea\x93\x11\xf4\xd8\xe0{\xa5r'\xfc\xe7k2\x08\x02\x86^\xe5?\xb3M\x12g|{\xe7\xfc7j\xce]W_[\xa3\x9a\xd3Z\xd3%\x17\xd0\xad/H\xe6\xb0\x97f\x1b[(\n\xff\xe7\x8f?|\x9f\xe7\x1b1\x0f\xbb\xa9&\xdc\xd13\x0e4\xeck.\x05\xda\x8e\x87\xad\xf4\xa9\\\x83\x101\xecD\xa4\xe4\xa3@g\xe3bN\xa7gQ$\xb7Ml\xae\xeb\x91\xb1\xc4\xee2\x02f$\xd5\x1f&\x8c/N*\x1a\x7f\xfb\xfa\x07G&\xa2\x0f\x07\xda[\x18\x03+\xfb\x93\xfcg_\xecG\x9fWj\xf1y\x91&E\xd5\x91\xa1\x17L\x0f(\x7f\xf0ejn2v\x05\x8f\xf1\xc1$\x97\xcb\xe7\xa3\x8f`\xd1\x99\x1a\xcb'\xad\xba\x86\xbe`\xf9u\x92\xbe\x97\xe6uX\x04a\xc4\xe6&\xdf\x0f\xf9\x88\xaes\x8a\xfe\xfd\x0f\xe9|\xc3b7Q\xc7Q \x9d\x7f\xe1\xe5&'\x8cg\xd1v.\xe2\xd4%\xa5\xd3\x1e.Y\x85\x18\xa5\xec\xb8tND\x15\xd5\x16\xddn\xe46\x96|\xc1\\m\x17\x05\x17!/\x0c>\x00 B;\xf9G\xcb'\xe4\xea\x95\x80:B\x03\x8b\xbb\xb4|0j\xe4 c\xf1\\\x0f\xa6\x9ah\x87n*}\xa0\xf6\xd2&\x95\x9a\x89-\x92\xcf\xc1&\x89n\x17a\x14\x99\xbc\x82\xd5_\xae\x9e\xc1\x163[\x90lQ\x8d\x85\xf6\x07\xd1xiqv\xbai\x94\x9bn\x19\xdd\xbb\xeb\x0d\xc8\x98b\nd\x1b\x1a\xb7\xc0lQ\x14\\\xc0pLQ5\xd5J\x13\xa2Q'\x10\xcd\xa4*\x8d\x9b\xf4\xc6\xe5\x03\xd1|\x13m\xeb\xa9\xfe\xaa\xb6\xd0\xc6\xcd\n\xb5\x18\xef2\x89\xec\xdd\xf2`W\xf9Ml\xe9\x9eQF\xffE*KN\x910\xdc\x9a&\xe7J\xc4\x1b\xcd\xe0I\x11N\xfa\x88k\xd6\xc2\xbf\xe2Y\xee\xa2s\xfd\x8b\xe0E\x9d\xcee\xd7!\xae\x9a5\xdb\xfd,\xc8\x18\x0c\xc7V\xc0\x97\x0dX\x8f\xd7\xe5\x83\x0d\x1d>\xb0\xb7$\x1f-\xd9\x80\xb8z\xd5\x10Y@>\x98\x86\xad\xb9\x18\x0e\xe0\xeea\xfb\x00\xf0J\xac\xcb\xd7\xf4\xf0\xa0\x85\xdb\xc8\xc0\x86\xadm\x06\xd3\xa8\xd73'\xea\x94\x8fY\xf2\x82\xe6\xc9\xe1\xa4F\xf6\xfe\xb9\x0c\x1b\x92<6\x83\xa7\x13\xb8\xfb\x90On\xc6!\xeb\xde\x03\x0f\xd7z\x06}\xb8\xfb\xd0>O\xe5\x95\x8b\x0d\xdc\xbf\xa7\x1ax0,\x1a\xb8\x7f\x0fz0\xb2\xdc\x10\x86\x1d\x1ch\xa9\x97G\x0fT/\xa3\xe1Ac\xf0<\xf9\xa8\x15>|\xe0k\xcb-p\xab#\x045\x96\xb2o\x10\x08\xb0\xe5+\xf1\xe8\x01\xae\xc4'l3\x1f\xe8\x81}\xa0mPp\xd0\x0c\x05\x82\xc4\x98\xa0 \xfd\\(H\x7f\xe7P\x10\xea\x10\xf1\xeb\x83B\xfa\xd9\xa0\xa0F;\xba\x0f\xdf@\x0c=\x93Q\xfd\x0f\xf6_\x82\xdf\x05ER\xe2\x08\xfaz\xea\x94\x8f\xbe\xc6\xca\xf8\n\x15\xab\xa2XVP\xf2\xf2;\xb8w_2\xaa\xc7\xb0\x85'pp\xef\xfec\xe8\xf5\xb6\x1e\x04\xd3-\x86#\xfe\xa3\x03=p]\xfeqt\x1f\x8e\xc0\x19:\"]r\x0f\xb6\x05\x97\x1d\xdd\xf7<\x9b\x87\x8d\xcc\x9e\xd6hFo\xb8E\xd9\x9b\xf0\xfe\xca[\\\xf2ft\x9cR\xceP\xe1\xac\xc8\xb4T\xc5F\xcdRj\x94%\xb6j:I!\xf0=<$\xf9\x8fkNw\xefi\x7f\xdf/\xfe~\xa4\xbd\x1f\x1dh\x1f\x12\x0e\xfb\x87\x8f\xf8\x8c\x12\x0e\xfbw\x0f\xd4[B\xdc\x84\x10W\xbd%l\xc4\xb7\x8f\x86\xea-a\x0f\xbe\x1d\x1d\x1cX\x04xtd\x80>\xc4*\x1dh\xce\xd7P^(BE\x9b\x8b\xd3|K\x0f\x1e\x12\xbdO9T\xfb\x80\x05\x83ib\xb1\xdd*\x82\xc1\xeb\x1e\x0c\xef\x1a+\x8f\x1e\x1d\x00\x0e\xf7)\xdc?\x87\x1e\x7fs\xf0\x10>\xc0\xfdC\xb8\x03\x9dZ\xbew\xef\xe0\xd1}5\xe7{\x0f\x0e\xef\xde5utppWv4:\xd0{\xa2\xbe\xe1\x0e\xdc?\xdcm\x00\xcd\xd6\x87\xb0\xc1v\x80\x10\xd2\xeb\xe9pW2*\xbd}}*\x94\xb1\xb7\xafOa\x1dD\x8b$]3\xab\xdb!\x08\xfb\xc5hx\xc0\x07]\x81P\xdf\xb4\x18w\x87\xf0\x81\x12\xc5\xdd\xbfw\xef\xf0>b\xad\xa8\x9ex\xf0\xe4 \x8cx\x81\xd0\xf3p\xbd\x1e\xd6\xd6ktP[\xb0\xe6u4\x0e\xbc\x03\x01+\x02\x890\x8c\xfbT\x12qs\xe8\x15\x80\xea\x95c7\x96\x15\x95\x96\x88\x05\xd4\x97\xe5\x8e\n\xef\xd8\x94\xb9\x85#K\x98}\x17\xc6!E\xe4:\x02\x87\x93?,~\x99$\x11\x0b\xe2zSG\xe0\xe4\xe9\x96!Y\\\x04QF\x7f9\xfa\xb8\x0b:,\xf5\xa5hw}\xc9\xae\x1e5\xc51,8\x02F\x1e\x18vQ\x87h\xd1\xc2\xc5-&\x0c\xa4[+U\xa5\xc8\x9c\x0fX9\xf1:w\x04MF\x87UgR\xb9ht\xa5\x12\xfa\xd2\xd8\xca_\x89\x0e\xd8\xa2\x18%bD\xba\xe6H\x96\x03<\xb3\xa9\x7f\xe4\xf8B\x99b'\xf6d>\xa6%,qM=\xe3\x83\xcc1\x1c\xa8\x88$\\\xbd\xdbrvL\xd9\xf29GZ\x10+Z\xc0\x13\xd8r\x1e\xb4h2\xe1S\xaa\xe1EC\xa6\x879\xa5$n\xc9\x16\x11\xba\x19\xe6\xb7\xedU\xd3A\xca\x87\xafm\xf9\x12\xf8\xbcQ\x08Skp\x05\x13\x98\xab\xf9\xaea\x02W4\xdf%\xcds O\xe0\x8a\xcfs\xe9\xc1\x8c\xd3\xa4\x15\xf4p8\xf3\xe9\xf2\x9c\xf3\x1b^`-\xd4\xb0\xde\x04\x9a.V`\x08+\xbep\x91^\xdeLp\x88r\x97{\xe4\xdd\xb5W\xaf\x8bj\x02gf\xedDL\xc7o.v\xa1\x8f<\x024\x995\xbe<\xba\x04\x86\x88_\xa1-\xea\xc6\x87\x0f2[\x8fdFJ|,\xb7`\xa8\x9d\x17\"CM\xec\xba\x12)\xf1c \x08\xb5%$\x8fp\xdbW\x8e\x1b#vXn\x94P\xbdN\x8e\x93\xc1:\xb8\xf93\xbb\xcd\x94\xee\xae\xde\x18\x86\xc5\xd1m\x04\xfbU\xb5p\xa6\x84 ^`f\xa8\xb8\xc1m\x93T\xd2443\x15\xaa\xdb\xaf\xb0\x9b\x0d\x8e\xb3\xfe\xd1&\xc0r\xbc\xde m\n}D\xe1\xe9\xb9\x8f\xc86$,\x1b\n\x0c\xf3\xf1\x94\x99\x13\x96K\xf1\xff\x05\x9d\xc1\\\xd3\x7f'T\xe8\x86\xb0\xf1\xa6\"\x00\xdf\xd8\x04\xe0\xb3\xaa\x00|c\x11\x80\xcfp\x8c\xb9^tm\xa5\x1c\xbc\x82\x18<:]\xb9\x87\x0f\x10\x1c\xcf\xe0\x08\x07:\x821\x9c\xa8\x9d9+\xc4\xe0\xb3B\x0c>+\xc4\xe03RJ\xd5[\x12\x83\xcf\xa4\x12 G\xc0es\xe8\xf5(\xc2\xda5Y\x9b\xb1\x8f \x86\x91\xe6\xb4\xc7j\x0e\x035CJ\xba\xa2\xcdp\xd9\xaa\xa0\xf2\x8a\xbd\xde\x12\xabn=\xb8\x82'\xe0\xbe\x87 \xdc@\x1f\x96\\B\xa38\xd5\xb7\xba\x04~\xe5\xc3{N\xa2\xc4\x96]a\xf1^\x9bIl\x96\xc4y\x18ow=\xe6\x03\xe1\x0d7\xe4\x00\xf3\x9bo\xc5Ee+\xcc4\xdc\xf8\xf6\xee\xa1\x18'o\x077\x10\x8e\xc0\xe5\xebz\xa5\x86[]\xd6\x1b\x0f\xe3\xa9q\xd2\xf5\xc7\x83\xa1\xc0\x11\xea\xbfR\xf3\xd2T\xf3R\xaby-\x8f,\xd4\xf6\x188H\xa1\xb7\xf4zk\x1cn\xd6\xc4\xe5\x8f}\x90\xb0\xb1\xb6o8oN\xce\x97\xc3\xd3{\x1b\x04\xc1X\xfb^\x9d\x10B\x98\x8c\xf88\x81\xc8\xbd\xf5a\xc3\xdf]\x8b\xe2\xfc\xdd\xa5x'\x8e\xc4W\xeaH\xfc\xd6\xf3 \x98\xde\x9ec(KXMW\x82\x96\xf0\x17\x86\x9bY 4(\xf7\x18\xe5\x98\xdbsO\xbf\xa6\x85r\x06\x1c\xc1\xf1\xf4Xk\xe6\x12\xc6\xb2\x8b\xe9\xb1\x0f\x97\x16\xc5\x8c\xaf\x06\x06\xf5\xea\xf7\x17^\x93\xc1\x8cou\x99\x16\xdeb/D,\xd5.\x12UE\x8c\xa8\xef\xe7\x1f\xec\xbf\x16\nt\xaet\x95\xe5\xc3\x07X\xf2/^\xfd\x93\x0e\xb7\xe5\xdd\xe3;\xb7\x86'\x90\x19v\xce\xfb\xcc}\xe3Hb\xdd9D\x84\xcf\xd9\xa3\ns\x90B\xc5\x1f\xcak\xd69\x93\xc1#K*\x83\xc3\x87#\xaf\xfdtO\xba\x13\xc8\xebpp\x04\x7f\xffH \x0dAB\x8b\x91\xeb\xc7e\x9d2]\xea\x03\xaeF\xd5\x13\x03\x1e\xb6GI\xb4'\x85HE\xa7\xad~p\xa2|\xe2\xb2Z\xfa\xb3\xd6\xc8p\xd69\x8d\x0e-s\xba[M[D\x81\x05\x1f<\xea2U\xc3\x0cJ\xfaT\x7fD:\x94\x12\x16Qt\xfc\xfbG.\xad\x04\xa83\xd9D\x16\xbc\xf01\x0d,\x9a\x10\xe6\xe9\xe3#\x88\x0c\x82L\xec\xce\xf8\x07\xa0\x98\x81>\x84nDA:g6\xbd\x18\x8aU\xcfv[`\xf3\x19\xeb\xfe7{E\xdb\xdf\xc0,I\xde\x87L\x7fs\x9cln\xd3p\xb9\xca\xdd\x99\x07\x07\xc3\xd1A\xff`8\xba\x0b\xaf\x93u\x10\xc3\xd9*\xbf\x8d\xd6A\xdcT\xe1\x1e\x1d\x9e#\x0f\x99\xa3*O\xfcf\xc4\x99H)w\n\xc4\xd3\x0d\x95\xc3?&\xb0u\xe7>d\xed\xa1)M8SI\xe4\x9d\xb14\x0c\xa2\xf0\x17\x93~\\],E\xa0\xc4v\xd7WZ7O}\xf8P\xbdm\x88pY\xa8n\x05d\x86\x16\xc8L0\xa9\x1e\x88\x06\xc3\x0cB\xf2\xfe\xab\xee2\xeep\xd0\x12\xa8R\x81y\x1c\xac\x9b\x1a\x93\x1auX\x8b4A\x07|\x18\x9e\x9b\xfa\xda\xb6\xf6u\x15D-]\xe1uu\xe8\x813q\xa0\x07\xdbz\x8f\xc2R\x06)W\xb5\x9f-\xadW<#(\xca@\xdft\x18\x8b\xc7\xd4\xd9\x8b\xe0\x85\x1b\x99\" \x89\xaa\xd9\n\x831 \x0dxA&\x00\x03\x14g(\x98?\x86\x1f\x83\x9b\xfe\xb3%\xc3\xc1\xff\x18\xe4\xab\xc1\"J\x92\xd4\x8d\x9a\xa87\x1e\x87\x0c\xe6\xc9:\x08\x8d=\xe8o\xb0\xd7\xe4\x15$'(\xfa\x98\x9cUe\x9b\xea\xd3\xe6\xdd\xe0D\xc1\x8d\xb3C\x87?\x047\x9f\xd3\x9b\x90\xc5v\xe8\xf0sf\xd8\xeaF\xd4\x04\xf4j\xbfu\xa8\xaf\xb5\xd4\x81\xffj2k1L\xc9Y\xebF\xca\xba\x1aP?N\xa9\xab\x04\xfb\x8f\xe1\x9b\xfd\xf2k.\x9a\xed\xff4}\xb7\x1d\x0e\x87\x8f\xf8\xbf\x07\xc3>\xff\xef\x01\xe3\xff>\xa4\x1f\x8b\xc5y\xef\xdf\xf6M\xc7c\xdb\xdf\xeax\xac\x1a\x93\xb9\xfc\xd7'I\xf8\x1dC\xaa\x8b\xfek\xcb\xeb2-\x1c\xc4t\xefk\xd7\xfb\xe6|\x7f\xd9\x16\x8b\\\x1eK\xa0\xbbF\xc9\x9e;\xf4J^\x1ae'\x8d\xf2\xec\xdb4H\xbd\xe3n\xb3,\xb9i\xc8\x1c\xf32+\xb2\x92\xc7c\xbb<\x9eV\xcd\xd3\xb1E\xe4N\xd1U\x00\x1d\x07\xee\xdc\x81\x14m\x97\xf7\x0fG\xe8q\x11C\x0fF\xfa\xc9|\x83X^s\x08\xc1\xca\x16\xc1\x9a\x0e*\x9fbW\x07h\x1c\x12n\x1c\\un0\x1c\xcb\xe3\xcf\xd1\xf0\xe0.|C\xde\x1a8v\x0fz\x90\xf0\x1f\xd8^\x8f\x8e\xf2\xed\xe4'\xa7\xebp\x07w\x87ey(\x84}\xb8\x7f\xb7\xf8\xc7\xf3at\xf0\xd0Z\xc6\x83?\xc2\xfd\xbb\xd62\xe5\xcf!\xfeB\x1f\x84^\xa3\x1bg\xa3\xbd\xban\xf25\x9c\xc6Qh\x89\xbb\x0f1B\x04\xcd\xf4\xe0ny\x84i\xf3$S\xc3\x04R\x9a\x00\xe7\x97\xbc\x03\xfeR\xb5?zt`l\xa0^WTH;\xd8\x0d\xda\xd2O\xea\x90\xb2gw\xf3\xe7@\xc3la\xf9\xedF\xb2J\x91\x86\x0b\x96(\\\xa6z\xfe/\xcb\x19\xb2\xc4\x93\x86[d\xa1\xddAs\x9e\xb4`F\x80V!v\xc3f\x8d\xa9\xc5\x94\xb62\x99L h4\x0d\x83\xd2\xcbCx\x02\\\xbao)\x9c\x90S\xcd\xf0\\\x19\xa7\xc2^\xcf\x0c\xc8p\xbd\n#\xa6\x14'>\x14s\xbb\xd2v\xc7\x81N\xf3x\xe9\x8f\xcc\x19r\xfe`\xdfIK\x8a\x00\xd0\x9d\x04\x85v\xbaS\xbb\xc2\xach\xa3\x8eZz\x8d;\"\xbd\xc1\xd4\x99\xfet\xee\x9c\x97\xcd\x07d;\xe0\xa2l\xcd\x9e\xa3\xda\x12\xa4\xbd\xed\x92\xf0\x0ea\x81\xb0\x1a!%\x1bd\xc96\x9d\xd9\"Fx\xbe,\x18\xca\x82\xe48\x98\x0efI<\x0bD\x10Gv\x0d\xaf\xd9\xf2\xe4f\xe3\xa6\"\xe0\xcf\x07\xc7\xab\x99]\xc1H\xba\xd8`\x11\xc6\xf3\xe3U\x90\x9e\xc6sv\xd3fB\x93\x0f\x87\xd1\\\x87\x0f\x85\x89\xfd\x86\xb3\xa22\xceZ.>\x95,i\x89\xeb\xf9\x02E\x0b\xd7\x98X\xa2\x1c\xda\x1c\xdcx\x10\x05YN\xc3\x7f\n\xb9\xf7\xd8\xe38\xd0\xb8]\x86\xfc\xcc\xbeX\x8aoos\xb6\xd3R\xc8\xd9\xf0\xd5\xc0\x1b\xb4\xb4 \xe4\x95\x858\x83\xf5q&\xe6x\x8b\xc4\xc5\x9fu\xbe\x1a*\x17\x87n\xa6\xebc\xa6j\xf6\x0d\xe0\xd2\x0c\x9e\x88\xc6\xc6\xbd\xb3EY.\xe4\x1b\xe5\x98\xc9\x85\x8d\xea\x89\x88\xfe$\xe8t\x84\xfb\xd4\x92~KQ\xc6\x84\xeb\x8c\x94)?\x99\x0e\x8dq6tyg\x97\xd5j\xbd)\xa3?r\\Hc\n\xdc\x92(\xe8#\xb50\xee%\x7f>\xb6\xedA\x8a\x06W\xd9\x8b\xf1^\x0c\xd8D\xbc\x96\xa5$\xa9\xf2\xc9\x84\xbcA\x92B\xb4+\xcd\x89\x8f\x15}?\x87\x9e\xafdN\xe95\xca<\xa7\xd0=\xa8\x07\xee\xa2Q\xe0\x10\xde$\x9c\xf4\xbdJ\xc2\xb8\xc5\xe6!\x9f.\xb6\x0f\\\xdb\x99lW\xae\xb1\xc6=DjIU\xc4\x13\xd6\x12\xa1~j\xef\x1b\xa7o\xe1\xfajBo\x84\x85\xe8\x8bM\xac?\xb9\xcf\xd7\xf2\xf9w\xdf\x9d\x1b_\xeek\xbb\xfeQ\x1c\x16t=\x13\xf8\xba\xdf\xef\xbf\x8b1\x00\x96\xb3\xca\xf3M6\xde\xdf\xdf\xb0\x1c\xf3\xdd\x0f\xb2\xeb`\xb9d\xe9 L\xf6\xaf\x0e\xf6\xe5\xaf\x9f\xb3$v\xde\xc5\xf3d}\x11\xce\xc7\xe0|%>\xf4\xb7\xa1\xf3\x8e\x0e\xc1\x82\xd2>\xab\xa60\xf2\xc15-\x07\xf4a\xe6\xc1>$\x1dg\xa5?ie{\xb4\xa3\xc0\x0cz\x10\xc17d\xee\x1d\xdc\x83#8\xc08\x0e\xdf`$&\xfe\xbf{\x17\xfa\xf4\xd2C\x95\xd2\xa6\xe0\xd8\x9e\x02Py\x17#\x0e\xac\x08\\\xdf3t\xef\xf5\xf0\x00\xf2 \x10`\x0f\x88L\xd37.\xb1\xa0\x0b\x90\xbe\xd2\x81\x0f\x8f\x1eiPo\xc7\xce\xea\xf3\xd1\x87G\x1d\x8b\x7ft\x9b\xcb\xd9/%5\x90\x84h\x07S\x85|2wK\xf1\x9e\x8dG4\xf2\xb1\x84\xb4\x93\x8c\xc8N\xa4X\xbe\xdd\x8c\xbb[\xbb\xa1h\xd4\x1571\x91*y\xeap\x8c\x8fU|B\x87\xe6\xdcS\xc6\x9d\xdck\x8a\x1d)\x1f\xe1`\xf4|\x9b\x8a\x00\x90q;\xb8\xb3\xf9\x92\xbd\\,2\x96\x9bBz\xeb\xcf'\xed[\x9e\x8c\xc1\x92\xab\x80>\xff\xd7\xb8\x89\xd6\x85q\x9e\xfc%d\xd7\xe5u6]\x9c\xad>\x92Wc\x9c\xf0o\x93m<\x0f\xe3\xe5q\x14\xb28\x7f\xcdf\xb9\xeb\x0dV\x88'\xed+\x14H\x8a\xae\xf8Z\x0f\xc2\xf6j3YM\xe2j{\x95\xc5N\xbcc\xc3Q\x02zm\xa1n0\x05\xf2\x13Xp\x88\n\x91^<\x85\x19\x1cQ\xbc\x01Z\xc91\x04\xe2\xc3\x06\x8e s\x03N/\xf9\x9b\xa2\x00\xb1\xd2\x06\xccn\x80\x81\x19\x8bs\x96\xd6\xb60\xed\xb0\x8b\x99\xdb$]\x94I\xe1>\x1c@\x8f\xa3\x0b\xc7\xaa\x96]\xe7\x85=OL\xefS\xe6\x94\xe5\xc9f\x0c\x81\xbd\xc0:\xb9\n\xe3e\xc7\x0c\xfcP\xd0\x86\xbd\xbd\xfa!\x90|\x1a\xc6\xc3\x81f,\x80\xa7\xb1\x14.\xdfX[Jca\x833N\xbdUN\xb3\xa4\x14?\x90\x7f\x9cDl]s \x04\xc1G[\x17C,\x82\xd0E\x88\x9f\xfd\x17\x1a\x91\xc5\x8f7\xc9\xa6\xcb\xd0\xd0j\xef\x9a\xfb\xa0x\xd7j\xe0\xd4n\x18/\xc5\xc8yo\xea#/k^N\xa4\\\xddd\xe5\xd2l\xde$\x1c\x92wL]\x81\x9bkIN\xa9P\xa0#\xac\x95\x978\x8cc\x96\n\x89\x01\x97y\x86\xc8Bov\x1c\xa3\x00\xadn\x8b\"\xf5T+\xa2\xe6\xc9\x86\x93 \x14\xde\xe2A\x82,\xca\xb4\xfb`\x06W\x83\xb75\x06%\x0drv\x86\x1bQ\x8b\xeah\xa3G\xd2N\xd5\x08N\x96D2e(i \xcb\xaf \x9c\x03\xef\x8ek\xff_\xbb\xed>k@'h\xec\xe8S`M\xc9\xe7\xac\x04^~' \xdc\x15S>\x0d\nw\x86/\x01/\x7f\xa8\xbct\x82\xf9\xfc\xe4\x8a\xc5\xf9\x0fa\x96\xb3Xd\x0c*L.{b\xcaq\xf2\xff\xb2\x98\xcc/\xf8\x9a\xb9%\x9ac\xbc'&E\x1ag\x15fy\x92\xdeV\xad9\x9bm\xb6:\xcb\x83\x9c\xcc<\xa2\x90y\x9d\xb8L\x13\x92 \x08\xe1\xe05\xe3\x85Qj\xd4+\xd7%\x0b\xcaT*>\x0fj\x95\xf9\xe8\x82m\x9e8\x9e\xda\xdc\xea\x82\xb8N\x94\x04s\xc7o\x87 \xeakWE\xb1ql\xeb \xde\x06\x91%\x86=Wq\x1a\x86\xbdI6\x19\xaen\x9b\xe7\xb5|\x18\x86\xe8&K\xdc/,\x16\xdc\x8cRH\x15\x9f\x12T\xf1\xc4\x8bAQ\xce\x06\xf7\xb0\x87\x97\xf3\xc40e\xb0\xf7\xc1*\xc8\x10\x92v].iUL\x06\xa8\xd0\xb8\xde\xa0\xd0\x08\x9aO\x0dZ\xedC\xd2h\xa7 {\xc9\xa4x\xf0\xed\xed\xe9\xdc\xadM!e\x0b\x99\xc1\xef+\xc7\x9b\x8e\x9a\xf2\x05\x83t\x8ek\x1b\x05\xd4\x0c\x05$L&\x850\x99s\x1e\xc3:\x88\xdc \xe4\x98D\x08\xe9\x9c5\xb5+\xf4Cx2\x81\x14\xc8 \x1d\xd0\xff\xdc \x124\xa8\xa8\xd0\xac}\xd9\xa1\xd9D\xb6\xf6L\xae\xebW2\x8aO\xe1\x86\xe5\xb8?}x\xf7.\xf34J\xe5\xbe{\x97}\xf87\xcf\xe4\xc2i\xc5\x9aY\x14\xce\xdewB\x99\xd2\xb1!\x1b\xe4A\xbad\xf9c:\x89q\x9e9\"\xd8L\x1e,_\x04k\xf6\xd8\x13G\x9f\x9b eq\xfe\"\x997$\n\xdfs\xf7\x90\xb1\x8c(\xe0\xd7\xe0z\x15\xceV\xa4&`\x1a\xc8?\xb3[\xfa\xb5fy\xa0~\xcc\xf24R?\x82\x88\x97j\x8c\xfd\x82\x16\xc86h\x94\x90\xa8\xa8\x94\xa2\x10\xf5\x08d\xe52G\x95\xdf\xe3\x9a\x91\xbc\xfa\xc4\x1a5\xd1\x80\xb6\xb9R{\xca?\xd0\x88\xac\xb8\x96\x82\\\xc7\x8d\xeb\xe7k\xd5\xa7\x94\x02pW\x90\x06\xdd\xc5\x0b\xb3\x18\xe4y\x1a^ns\xe6:\x9cv8\"\x85A3\xd9\x12\xc6\xfe\xe2\xce\xf6W\x0e\xf9\xb7n\xc9C:\x1f\xcc\xa2 \xcb8\x90\xb5\x86\xfa\x91\x06\xdf\x06\xb7w\xf9D\x0d\x840-\xdcZ\xdcQ\x9b\x89\x10\x8fW\xber\xc4\xd1j\x87\xbdB\x0c\x88\xe4\xd1J;\xb9\xca$\xac\x10q\x8c>\x95.\x01egJ\x19'\x08\xcf\xc94\xd5\x06}W\xe2\xcac'\xd6\xa5?\x15^\x02\x93\x16c\x164\xab\xd3\xf2Y\xec\xcc\x19\xa9\x16]\xff,3\x9c\x0c\xfa\xb0@/\xeb;\"x\xd9N\xb3\x94(\xa7\xa4<\xf7\xef\\\xdet\x8c>^\xfa\xf3\x11C\xbb\xa2\x94\x91\xf9\"\x83\xf4\xac\xc1\xe8af'\x16V\xf2\x07{!\xe9\x07\xa7^~t\xcb\xdea\x18\x9e\xd1\x18J-\xc5[\xad\xc1f\x13\xdd\x92\xa7 \x8c9\xac\x7f\xf8\x00\xae~\xa2\x1c\x9a\x0f\xa0;\xdd\xc9\x13\xc1\x1b\xe9\x94\xb2\xc8\xc9\xe7\x83sq\xc1\xb2\x1f\x93\xf96\xe2\x92^y_0}\xdbX\xcf\xc8\xa0\xeb\x99\x926m\xdc\xd8\xbd\xeb\x19\x02\xa8\xf0\x0f\x07\xd5\x0f\xa1\xf8pX\xfd\x10\x88\x0f\xf7\xaa\x1f\xb6\xe2\xc3\xfd\xea\x07L\xf6\xe0\x0e+o#,^MJ\x85'G\xbc\x15\x94&\xf1\x0f\xb2\x88\xb9\x87\x0f\x1fT\x1b^P\x94\x17\xcft1\xd3\x90\xf4Y?\x83f\x83b=E\x9c\xd5:\xac\xcb\x9b\xb1-\x97/A,2E\xbdX\xb1h\xc3\xd2l\x90lN\xe7\xe5\xe1\xb6;\x02\xaa\xd1\x0b\x7f:\x0b\xfe\x91\x9c(F\xe7\x89Lj6\xcf:\xa9\x9e\xf1JA\xb5\x92\x9b\x0f..0\xfd\xd9\x05\xc5\\\x1b\xfa\x18\x19R\x16\xf2<\x91#\x11K\x93{g\xe3\xc1D8\xc8\x93\xe52bg\xab\xe4:\xeeJK\xa4\xb0\x1f\x0e6i\xb2i9c\xcc\x85\xd3\xeem\xb2\xcd\x9fa\xdb-\x15b!\xb7-\x9b\x8b\x91\x97\x1cG8$\xd5\xd5\xcd\xab>\xc25;\xc3\x896\x17E\xad\x96s\xae\xd7,K\xa2+6?\xdb^\xe6)k<\x0f\xc53P\xcd?'@;\xf9@$\xc6\xa95\x84!KV\xc9\xb5;u\xd4\x0c2\x87\xec\xd9\xe7>\xec\xd9\x9c\x9a)u\xcfq\x10\xcfXt\xccE\xe2\xae[\x869j\x04\xbdo\xde\xae\xf4\xf64\x7f\xb9\xcdO\xe2\xe02b\xf31\xec\x85B\xa7\xac|\xb1\xb6b\xc8H\x03\xc5\xd8\xdf\xa4\x1c\x10v\x1a\xfb'\x80[\xb6a\xb3\x1d\x80m\x13\x98b\x8a\xea\x0fA\x1be,j\x10\x0c\x7f\xcbU\xe60\x84.\x1b\x7f!\xbf$F\xc9\xc11\x87ejs\xab\xa3M8\xb9a\xb3m\xde)q\"\xec2-F\xed\x9e\xc6\xaf\xd2d\x99\xb2,\x1b7&\xf2n\x18c\x1d\xfb\xba\x0e\xf6\x13\xa1\xe5\x8cEl\x96'\xe9\xaf\x00/]\x08\x13\x1f\xc2\xab _\xd9aK\xdd\x07\xc0\xac\xf6\x1b6\xab\x12\x15.\x9b\xfd\xe9\xcc\xf5\xe8\x12\xb1\xa9\xc4\xd4\xe1\x03Wt\xa6a\xf9\xcdt\xebW\xde\x82_\x0da\x7f\x85\x0d\xb0\x10\xf6\xf2\x1eX\nu\xdf\x06R\xd1\x9b\xb2\x00\xd6 \xc9\xc8>[\x13zZr\x8a\xfb\xa6;\x97\xb57\xca\x11\xc1\x87\xad&\x85\xf8\xc2\x07\x81OA\x7f;5\xcf\xe3=\xbb\x1d\x83\xb3\x0e6Hb\xde$\\\x8c\xce\x1c\xf34\x84\xe8\xdc\xd9]B\x1aJ\xf2A\xb2i\x07\x98\\\xc8)\x1d\x89A\"\xc4\xb4\x9c\xdc\x1d\xe3E\xb8\xcc\xbc\xb63w\n&?Of'7\x9b \xce\xc2\xa4\x834\xc2\x85G\xb6\xf9!\x8c\xdf\x87q\x8bX\xb4\xa5\xe2a\xb6\x89\x82\xdb\x97]\xa5\xa3L\xaf%R\xd9I\xff\x8f\xe6\x9a\x11\xa9\xb6\xdb\x0d\xd7\xa6\x10\xc6\xd7a\xfe#\xa2]\xcb\xeaa'OO\x16\x83\x1f\x83M\xab\xd2\xfe\xb3\xd0\xf4\x17x\x13\xfcOg^\x0b\x8b\x03T4\xc6p\xda\xdc,\x7f\xf2`\xd9\xe9\x86\x05\xa7\xdfV\xef]\xfd\xc9\xa4\xee\x91[\x14-\xfa.\xf4,\xc7\xc2\xdd\xf4g\xce6)\x9b\x059\x17\xf1OI\xf3-^9B]3\xf6\xa5\x15\xa3\xee\x9a\xccS\xf2!\x0e4\x86\xa4\xbdh\xa1\xa7t\xb8JQ\xd6UZTi\xa8\xaa\x8a-j\x19\x96\xaf\xdb \xc4\x82u\xb7X\xb4\xf7R\xd2/;\\\xf0SzU\x8b.\ne\x15\xaaE\xf6\x80\xbaN\xd9B\xf2AW\x81Z\xf4O\xb0\xe8\xc6-\xda(4\xe8\xc7-B\x12X\xd5\xfd\x16\xce\x0ff\x89\x96\x04b<\xd2\xa9}mo\xb0f\xd6\xd5\x9a\xebzB\x04P\xf7_\xd7\x1fa-\x89\xa4\x89V\xb8\xb5\x0b\x8f\"\xf7\xc7\xb6\xabb\n\x9c\xc7\xf0s\xf3\x8c\nm\xba\xcdh\xdf\x11<\xba\x82\xb4v\xb6-\x96P{\xd3\\\xb5tR)*\x97\xde\xb5U\xd7\x0eiUu\xed][uqD\xa7\xaa\x8a\xdf\xcd\xd5\xa4<5\x86\xcb\xf6\x82\x82\x95\x8f\xe1\xba\xbd\xac\xe2\xe3c\xb8h\x19y!$\x8c\xe1e{Y\xad\xe5W\xcd\xa5K\xf2\xd0\x18\x8e\xbb\x94\xd6Z?k.\xaf Och\xd9\x9d\x92\xe44\x86g\xcd\xa5u\xc1r\x0c'\x1d\n\xa3T9\x86\x9b\xe6\xa2\x8bx\x0co\xac%l\x87\xab\xb5\xb7\x1f\xcf=\xbfrO\xe4\xa3\x9b\x0d^mSfJ1\xb9\x92\xe4\x02-\x1d\xb5\xb3\xa9\x12s\xda\xab84\x16t\x00\xdd\xc7J\xdf*\xbc\xa4Z\xd5\xc4\x0c\xaa\xb2\x84\x8d\xf2k\xc6\x05\xcc\x15#&\x00\x13\xa0\\\x14\xbf7\xc7\xaf\xc8\xe6\xf8\x15\xd9\x1c\xbf\"\x9b\xe3Wds\xfc\x8al\x8e_\xfc\xc3Pw\x1a\x8a\xc8\xb9\xcb\x92k\xfa\xb7\xf6\xd9\x9a5\xfadi\xfeX&k\x8cv\\ip\xc7\xf2?\xd9\xe5Jx\x18bq\x992\xa7\x9a\xd6\xc8\xe8\xd4\xf8\x19\x07\xa7d\xa0Z\xb2\xfc\x07$t\x06)\xbe\xab}j\x17\xdbT\xbe\x83\xaa\x1c\x9b\x14\xdf\xc1l\x9b\xa6\\\xbch\x10t\xd1>\xe9\xc6\x98T\xbc\xd1y\x0d\xef\xe8\xb6\xceO\xab\x90Yd\x1dg5r\xa4O\xeb\xd7\xf0\"\x11\xdc\x03D\xf0\x19\xbcS\xe0|\x8d\xe7\xf5_;\xf0ug\xd2Z\x86\x00\x93@\xd5bg\xfc\xa4=T@a\xb3\xe6\xb6\xac\x06\xa3\xa50\\\xfb(\xcf\xa7\xcc88\xd3\x90\xed\x99\x18\x87Nwg>\xccj|\x84Z\xff\x171\x16\xcf\xfftb\x8c \x8b(\x15\xfa\xd5|a\xb0\x8b\xd3\xac\xba\xf0\xc3WL\x91_\x15_?\x82 \xe5 u3\x8fr\xe8\x0f\x1f\xc3\x0c\x9e@\xf6\x18f\xbd\x9e\x07\xd1tv\xae\xd7\x9c\xce\x0ca\x01\xc5R\xc6x\xe1\xd1\xe6\x9c\x8b\x18\xd8\xca-fA\x14 \x96\xc1|\x98\xf2\xba\xe72\xf4b\x84IZ\xc3\xc1,J\xb2N\xeeV\xc2\xc5J\xb7\xfd\xa11\xfc9G\x85\x10\x7f\xbbU\xffz 4\xc3\x8bZ5\xa6\xc77\xe3\xb7\xe0\\_\x96\xe4ub[\x1d\x0d\x9eqwcj\xba\x03;\xa4\xd3\x15\x96\xa6\x1d\x86\x10\xeeb\xf1\x0e\x84\xf1t\xf0\xec\xec\x8d\xbd\x14\xdfm\xed\x04-\x90)m\x1b\xcc`\x98\x0e\x15\xa1)\xd6\xc1\xa9\x81sS\x8aT\x87\xaf]f\xcb\xd0\xd0\xc6\x8a\xe7\xe1U\x8dT\xeb\x8f\xbaV5\x06g\x1e\x06Q\xb2\xecoo\xacWq\xbfH7\x97\xc1\xec\xfd\x1f\xea\xe57Z<9\xa5>^\xcf\xff\x8d\xfaZ\xb1`\xfe)\x9d\xad\x0e\x95\x1c\xe8<\xbb\n\xc2(\xb8\x8c\x18\xea\xfbI\x1a\xfe\"\\\xb8\x9a6\xfbr\x9b\xe7h\xe0\xb5\x0f8\xbf\xdd P\x89\x92\x9d&\x86\xfc\xa0\x8f\xd3k\xa8\x91\xc4\xba\xb9 \xeb\xec\xbc\x02\xd9\xd5\xb2q\xf4\xd7\xe1<_\x8d\xc19\x186\x0cd%\xa2;\xf0R;\x8f`\x9b\xd5e5\xfdY\xa5l1\x06\xe7+\x9c_\xc3 n\xa20~\xff}\xa9\xb0\x05y\x91\xe9~Y\x00\x9c%q\xce\xe2\xdc:\xfbh\x80|\xee\x8c\xfd\xcd\xf5\x06\xeb`S\xcaI\xdex\xfd\xb7\x85~\xce\xda\xcc\xb6\xc8~[\x0e?\x9e\x9d\xbdi=\xf0\x98\x17,\xc1\x1a\xb7D>e\x13X\xcb\x19\x96\xce\"[\x0f\x81*\xa6\xb8\x96\x93\xdb\x92\x91\xaf\xc5\x00\\1{\xd6\xdd\xa1\xe5c\xb3\xb4y\xf8\xd4\xbe}9%\n\xdf\xfeK_\x12\xcf\xbf\xf4\xa5\xff\xc5\xfa\x92\xe0|]4\xa6\xce\x97S\xf2\xeez@\\\xd7/\x06\x1a}|\x93\xa8\x83g\x9bI&\xafim\xe6\xd4\x15\xffR\xda\xccO,\x80\xac\xac\x8dy\xa4\x8b(\xd9\xedU\xb2\xd9n\x1c4,6+u{{\xbb)>\x89\xa8\x13\x14\xee\xce\xde \x0b\x7f\xb1D\x13\xf9\x92:\x10\xef\xb2\x7f\x9d\x06\x9b\xcd\xa7\x08\xbc\x1d\xe4U\xad\xb3\x04\x8e\xc0\xb9\xccc%\x113\x88\x92\xd9{6w`\\\xfd\xb0\x8d\xc5\xa7\xae\xf2\xaa\xf8\xb5\xf3\x14\xb2M\x10kR\xbb\x1c@\xa3\x98\xfe\xcf\"\xe5\xe2\x82\x7f\xa5\xad\xf1W\x1d\x96U\x13|\x1b\xea\x9bG\x8c\xf4\x14\xddkm#\x8f\x85u\xf8_\x92\x0d\xfcK\xb2\x81\x7fI6\xbf\xbddc\xbd7\xc0\x06Y\x9el8\xd4\x07\xcb\x80\xf8\xb0\x99\xff\xc8\xcb\x05\xd2z,:\xb1\x88&\xe8lop\xa9\xff\x9f(\x8e\x94\x1c\xd5?\x8dy\xef\xc6R9\n\x96\x85\x94\x8b\x0b\xceH5\x9am\xf8\xda\x81\x0b8A\x1a\x06\xfd(\xb8d\x91c\xea\x06h\x9c\xd6\x8e\xe4\xf7\x0e]}!>\xfeO\xc2\x93\xd9g\xf2\xe4\x86\xfa\xe6\x11\xff/\xb4\"\xcc8K\xad\xf1\xd4D|\xa9q\xe1PV11\xdb\x99\x89\x0bo\xc5\x87\x1a\x17\xce\xc4\x87\x1a\x17\x8e\xc4\x87\x12\x17\x9e\xc9\xc8G3\x11\xf9\xc8\xc4\x8fg\xbf=?^t\xe5\xc7\xb6\xb0EU*l\xe5\xb9W\"\xafz\x95\x98[}g\x92:\x0fl W$\x16+\x18$1\xa7\xcd\xc7\xab ^\xb6g0\x02\x8d\xcf\xb1A\x1c\xac-\xbaXP\\[\xab\xb0\xe8\xbf\x7fDL`&\xf4\xe3\xfc.\xc3\xbb\xee|H\x9d\x06S\x0fb\xc7\x1b\xa9\x1f\xdf*\x15\xca\x0d\xc8\xe3\xd7\xd2}\x94,M\x91tv\xe8\xbfY8\x08\xda\x14t\x8a\xab\xd0\xc9@B\xc1\x154\x93H\xcd\xe6\xdd\x1a\x80U@\x819\xa25 \x1d\x19\xe4 \xc9w\x96\x99\xc5b\xcd\\s:\xd3\xa0~\xec\xbe\xc3b\x9a7\xb3\xe3Y|P\x84\xfa\xe0\xbf,8\x0ee\xd9)3\xcaN\xc1?@vj6\xe2t1\xf6\xc4U\x00i\x83\xa5\xee\x87\xeeyW\x1bR\x88\x85\xbb\x9d\xd0\x07t\xd2\xcd\x91\xff4g\xeb\xa6\xabH[*Jy\xe0\xda\x8cO\x19\x15\xfe\x96d\xc8\x96\xa3\xf6\xa4do\xb2\x97\xa5\xc0\x19\x8b0\xcaY\xfaIH\xb7\xb77\xc3k?\x96(\xea\x80\xd8g\xef\x7fc\xee\xbfc\xe7r\xe5D\xd4]\xbc~\x94\xdfnXC\x8c\xd8\xa6\xc1\xcc\xbf\xcc`&;\x0c\xa6Q\x8f\xb0\xdd\xbf\xd8\xdd\x088K\xe2<\x08\x9b\x0e\xd9\xf7\xf66h\x95\xe4b\x87\xb5\xdfE\x92\xae\x1b;Nb\x8a\xf2\"o\xa5(6h\xebvS\xa6\xf6mI\x97Z\x16&\xe8t\xc2\xd9v\xba7[\xb1u\xd0z`\x18\xe3\xf2\xb6\xb4\xb5\xd3\xe9\xa6.\xc3\x8c\x81\x95d\x9a\xe6\x9a\x81vy\xad\xe5\xdeK\xf9\x08\xf5\x13\x8e.\x0bN\xea\x7fA\x00\xbd\xcc\xe3VK\xb5\x00P\x8e^\x0b\xfa\xf3\xc8:\x82\xack\xef\\e\xa6\xa3yi\xa3\xee\xac\xcdjR\x96m\xc8\xce\x0fX\xc6\xf1`\xfciC\x15\x1e!\x84H\x1d=B\xeaS*\x00\xc4\xba\xb8e\xeb\xf8'\x8d\xb5e\x0c|\x8b\xe7I\xdc\xe4\x97\xb1\x83\x97\x8as\x8cn\x1bh\n\x9bs\xa25o\x03 \x01\x94t\x18\xf0E 7\x9b%\x1b\xd6\x9f\xb3E\x83/\x87\xa5\x9bMq,q\xc6[\xc9 H\x19l36\x87<\x81e\x1a\xc49\x041\x04\x9bM\x14\x8a\x80\xd3\xf3p\xb1`)\x8bs\x88\xd8\x15\x8b2H\x16\x10\xccf,\xcbx\x95y\x90\x07\x90\xc4p\xc9VA\xb4\xe0\xdf\xf2\x15\x03\x16\xcfy\xa3\xe9\x00N\x82\xd9\n\x9e\xbd:\x85up\x0bs6\x8bx\x7fI\xcc Ia\x9d\xa4\x0cp2\xd9\xa0i\xf7\xf5Q\xf3\xa6R\xf6\xb7m\x98\xb2\x0c\xbbZ$Q\x94\\\x87\xf1R\xb6\x04Dg\x80b\xe1'1\xcb\xe06\xd9\xc25\x9f\x9a\x9ac\x9e\xc0\x19\xa5\xd1\x85\xb7\xa7\x03\x07\xe3\x03\xef\xc6\x81?\x8d\xfb~\xac\xbb\xd64J<\x9f\xcb\x91A2\x9f\x06%\xc5\xbe\xf0\xdb\xb6\xa6w`\x00\x92\xbd\xb5\x05\x8dA\x10oR\xa9\xda\x19\x04\xa7z\x9ft] \xeal\xa3\xa2\xe4b\xbf7\x1b\xd5\xef\xf2<\xc8\xa7?,\x96\xa8\x7f\xb6\x93\xa1\xffy\x17\xb6\xbe\xa8\xda\xdd\xa6T\x8b\xd0\xaaH\x0b\x9aUo2\x905\xeb\xdc\xbb9\xbaw\x93kC\xe5\xe3\xd1\x16\x1a(\xd8\xc1}^h\xdc\xc1&\xfc3\xbb\xe5\xc3hR\xa4#*|\x19d\xe1\xac\xad\xecL9\xd17+\xdb\xb9\xce\x9a\xcc\xda_v\x1db\x06\x93E\x13C\x9a\x05\x19\x031\x0fgl-\x06bh\xb6\x83\x8dV\xce\x02\x1d\xb5&\xe8\xae9AW\xed j\xfaJ\x87\xc8\x1c:+\xec\x10\xf9c'\x0d\x0dHF\x15\x1a\x9a=\x8d&4\xe8\xf6\xf2\xb9LY`9V\x05\xb5\xbf\x08z\x9f\xb1\xbd\xd1\xbf\xb6\xf7\xf7\xb9\xbd\x92U~\xf2\xcev\x928A\xedn\xf3\\|p\xde\xc6\xef\xe3\xe4:Vas4'nTB\xc1\xf1a\xd1\xf5v+t8\x0bo\x1b?\x8d\x1bz\xe0\xf4\x7f\xde\xae7V\x15\xcb\x90h\xe6\x7f\xf8 \xe8\xefR\xba\xfc\x97L\xf9\xbfD\xa6\xe4\x82V\xd2@HU\x1c\x00\xd7A;E\x93\xd0\x14\x17e\xd7,\xcb\x82%k*\x9d\x16\xa5\xb3d\x9b\xce\xac\x02\xd4\xe7\x92\x1e\xdd\xc6\x83\xb3\xb5\x85m\x05\xcc\xd3}\x1b1\x13\xe4\xea\xcfe0{\xbfL\x93m\xd4)\xd5\xe7\xfbm\x80\x1e\xf5\x07\x97\xe7\x1f\x16\x98\xbay\xa7\xa1t#\xaa\xc9\x95\x16t\x7f\xea;w\x8a\xd4\x10\x9c\xe0\xe14\x1c[z\x9c\xfa\x92\xdbX\xd8\xef\"\x94w\x1b\xdc\x83.(u0\xb2\x81\x12\x95\xba\x99\xc4@\x19\xe6\xda\xf7.\xc44\x8d\xcei\xbc\xd9\xe6m1v\x03*\xfb:\xb9n+\xb9\xa5\x92\xc7I\xa3\xb0\x08*\xff$\x1e\x19\x9fp\xc1\xac\xad\xfc\x8c\xca\xff\x18\xa4\xef\xe7\xc9ukX`\xcaB\xe9\xfc C\x9d\xbe\n\xf2U\x9bO\x0e\x08\x17\x96\\\x04W\x12\xa4\xa9\xb9\xc2\x1c Y\x10E8\x85\xcc\xf5v;\xf0\x92\x8fdo$\x11\xf3%9\x9d;\x1e\x9e\x7f}\xba\xe9\xa2\xdb9W\xcb\x19\xea\xean{\x99Y2g\xaaT\xa2\xe2\x04\xbb\x0e\x07B<\x07t\xfe\xff\xff\x0f\\2pz\x8e\xbd\xa5E\x9b\x11\x84\xa2#OU\x16\x19\xcd\xe7\xce\xf1!9\xb7V\xc6\xb4\xb6\x9bF\x87\x98\xd5}\xc3\xf5\xb2y\xd3\x19j\xd0\xb62\xad\xb7\xf4I\xf7\x19\xcb\xf5\x9a\xb3l\x96\x86\x9b\x1c\xa3^7\xcf\xe5\x93\xc7\xa4\x1f\xfc\n\xbd\xa8\xeb\xd6\x96w\xf5\x8b\x8d\xe24\xde}\x0ca\xfc\xd9#\xa0;\x13j\x14\x88\xeec\x07\xc1\xa4\xc1\xf1\xa04\x18\x07\xbe\xc1\x07\x1a\x9dB\xb6mC \xdb\xc0Dx\x8ep\xe5\xabE\xcd*L\x9e\xf2\x92\x06\xfel\x82%\xcf\x87yS\x98\x8a\xae\xde\x83\x9f\xe4g\"\x1fT\xcd[\x0f\xb2\xa1\xfd\xe4\x1d\xc0\xea\xefD\x9f:\x0b\x1a\xa6\x80\xa9\xa6\xc3\xec\xf2\x907m\x97\xd3u\xc1\xa2N\xbbK\xbb\xa67e\xdd\x85+\x91\xfa\x8e\x15\x97\xbcZN\xe3\xc8[6\x0f\xd2%\xcbi\xe3\xede\xe5\xdd\xb7\x8a\xbf<#\x91\xbcmg\x85\xc0ega6\xf6\xc5\no\xfd\x10\xd3L\x87\xadz\xfc\xbf|\n\x8a\xe7\x93\xac\xbe\xffd>\x05\xb0\x9bN\xde\xe9f)\x88\x9e\x7f\x83\xc4\xdc\x0b*\x186\x8cb\xdb%|\x05\xdf\xd1m\xab\xde\x11a\xa9f\x9d`&\xf3a\x0b\xc1w\xb0\xcdXj\xbfP#v\xbfK\xf6RR\xce\x1b4o\xa9\x9c7\xccS*\xe7p\xd4Bs\xe4\xa8m\x8a<\x7f>r\xf0\xb4\x9a\x19\x7f\xeb\x94\xa8\xffp=\xbf\x8bc\x06\x94\\HZ\x95\x0e\xbaM,\xf5\xfcX\xd3\xf39\xda\xd8\xd6\xbe\xbe\xf0\xffK\xb5\xfdv\xed}\x978\x93\xf0;\xd0\xf6\xa3O\xd3\xf6wS\xdf\x17\xbb\x99\x08\x0c\xda\xbe\"z\xedj\x7f\xf2\xab\xaa\xfduc\xa3\xfetP\xfb[N\xccH#\xb1GH,\xd4~\xe7\xdb \x0bg\xe5\xe8\x88\x8e\xbdj\xab\xce\xdb\xac\xc3\xa7]tx\xfb\xb0\xad:\xbc\xadJ\xd0\xb6\x14\xad6\x89O\xd7\xe1?yLU\xdd\xf5\xad\xe4yR}\xb5V\xac\xa8\xaf\x8e\x0f\x1b\xfc\x9f\xeb\xaf\x0d~e\xcd\xc3\xf9\x82\xfa\xabpC\x9f#q\xa7?[j\x10\xafw$\xde\xfe*\xfa\xf1\x17\xdb\xa8WA\x96]'\xe9|\xe7\x8d\xd2\xed\x0c\xbf\xde>\xed\xbe\xfa\xc16O8g\x8bX\xcew!f\xd7\xfd\x8d\x98c\xb7}\xebXZ@P\xc7\xd2\x9f\xb6\xcb_\xc4\n\xf2Y\xde{\xff$V\x10\xd3\x11yy\xc8\x8b\xdf\xbf\x15$\xd5\xac \xf6R \xda\xf7;\x18I\xd2\x16\x99\x8d\x1c\x9b)\xb5\x176gf\xe0\xc14<\xe7\xb2\x85\xaf\x9b@\x9a\xe4V\x94q\x03\xf3n\xa2\xe5\x84Y\xa3\x0b\x94w\xf5\x9f\xc9\xc7aa\x8d\x1b\xb2\xb0\xf98,l>\x0e\x0b\x9b\x8f\xc3\xc2\xe6\xe3\xb0\xb0\xf98,\xc8\xb2R\xfe\xc0\x05Yw!M,\xfc\x8fGw\x1fxf#\xcb\xe2\xb77\xb2l\xbe\xa4\x91\xe5\xf7\xe6\xf80\xff]:>\x04\x9d\x14\xee\x85*\xd9A\xc3\xe3\xbb8\xe3 B\x17\xf8\xb3\x06\xc5\x07\xa3\x98\x0c\x8a\x04d\xae\xd0\xc8\xed5\xae`Bb\xf7\x86$\\%j\xb5f\x16]Wj\xce\xa2\x90\xc5\xf9\xa9H&\xba\x1a\xc8\xdfm\xed,\x8d\xed\x9c\xb1Y\xca\xf2r[\xf4\xae\xad\xbd\xdbJ{R\xacx\x8379\xb0\xb6\xc8Q\xd8\xbfL\xe6\xb7\xceg\xbb\xa7\x04\x9b\x0d\x9d\xb5\xad\x06\xe2O\xfb\xe0\xbe\x84+\x0b]\xdb\x1c\xc3\xf4\xbc\x01\x14\xc5\xe27\xa6\xdb\xd4W\xb51\xb9favkH\xea(\xd7y\xdc\xb8;\xfan\x8c\xe1\xd6X\xee\x1f\xe0\x8e\xf3\xab\x18\x9b\x9a%\xbd\xaeaU@\x85Vi\xa3?\x00\xbbEV\x81]\xa3\xab\xc0\x8e\x11V@\xb0\xe1\xbc\x83\xcdkKS\xec\x96/\x05\x8a0+\x9d\x8c^\"\xa9I\x07\xa3\xd7\x82Jv0zm\xba\x86y\x01\xe9J\xb2\x83\x85lE\xe5w\xb3\x90]Q\xa5\xae\x16\xb25\x9e\x1b\x84\xd9\xcbgg\x87\xcd%9\x89^\xbb^-\xfe\xe01\xd7c1\xea ^o\xc7\x9f\xcd-\xdd\x16-\x11\xf59N\xd9\x9c\xc5y\x18D\x19\xb5T\\\xa4oi\xea\xff\xb2\xf7\xef\xebm\x1b\xc9\xa28\xfa\xffz\x8a\x12fN\x06\x1c\x93\xb0(\xdf\x99(>\x89-\xef8c\xc7\xde\x96\x9d\xcc\xda\x1ao} \xd0$\x11\x83\x00\x02\x80\x944\x89\xdfe?\xcbz\xb2\xdf\xd7\xd5\xdd\xb8\xf6\x0d\x94l\xcb\x19c\xd6r(\xa0\x80\xbeUW\xd7\xbd\xe6\x98\x04\x06I\xfc\"6/\xeci\x0d\x8eu*I\xc8\xe2\xf9\xd9\x91\xc0\x9f\x14\xfc\x96\xfeSg\x98)\xba\x9d\xb9\x07\xdf\xf7\x0d/\x1e\xa1\x15\xe6Cj\x16\xe5\xc2\x82\xb8t9u\x80W\xc5\xdf;\xbaT\xa7\x9c\xad\x1fG![\xbff\x88\xbf\x08\x040\xf4\x0fsC\xe8;y\\/dK\x1dgT\x9a^\x99\xaf\x94?\x06\x07\xdc\x17\xdfm\xca\xd5\xc1\x18\xe8\xed\x16\x1a\x823\xd2\xb9\xbc\xacL\xca\x02\xbd\x0e\xd57\xe8P\xcb\xba\xca4\xe7Ft\x1e/\xab;\x0d\x9dj\xbd\xf5\xd0g\xa7\xff\xa5J\x9b\xc8\xde8\xd6\xb9\\mM\xc3\x14\xaaU\xd9Zj\x868\x86\xb3\x1d=\xbd\\'Z\xd3\x11F%\xc3\xcc9\xdd\xf8s\xfc\xb9\x1ci\xbf\x99\xf5?\xc9R}\xbcy\xf5l\x80{SRo\xd8\xea\x13o\xf2\x98\xe5F\xa9\x19\xd5~\xef\xea\x9f\x17\xd6\x1d}\x9d\xbe#\xac\x83\xd6\xfds\x1a\xb8\\\xd2\xd7\xab\xcei\x1b\xd4/s3F\x077\x88zm\xc7\xe0<\x89\xd3\xb3\xe13\xca6\x1e\xfa\"\xd6\x93\xb8\x87\x93\xf8\x10!5\x0e\\\x81i\xe7\x1b\x01*=\xb0~\"V\xe5:~\x82AB\x98\x01\xe5\xb4\x92\xb4\xb4\x13\xb2ij\xff\xcf\x068\xaf\xb57pe\xf9\x12;X\xf5\x19\xa3E\xa4\xf4\xe71\x15\x17\xa6\x9a\xf8y@UE\xf1\xaeL3\n\xa8\x1b\xa0r8\x11\xf2u\xa6\xdeDa\x7f>\x0dl\xb7\xb5\xb9\xc2 \xfd\xd2\x9f\xe0'/a\x83@\xfe\xd4JE\xfd\xb1\x11\xb0\xda*Z\x04\xcc\x9aV\x8d!\x08h\xe3=\xf9\xf9b\x9b\xa5\xb1b\x98i\xa3\x8dq\x96/}\x16\x18'\xc6r\x8a\xf94\xb4\x08\x87S6\x14\xd9\xda\xd4\xae\xa9d\xf8|(^\x81r\xafqR\x11 \xdb\xf3\xb9\x0bV\xbd6\xbf\xb8\x1bfiF\x98f\xdc\xbf@?B\xaeoi\xab\xe9\xb48\xf3\x8aA\x02B\xea\xf8\x95\x81=`i=\xb4M\xd7\x0e\x14W\xd9\xf0o\x1b\x92\x1b\xc6\xfc\xbf)\x08d~\xee\xafII\xf2\x02}\xe6)#\xc99E\xd4t\xaa9^|\xdce9\xbf\xfaJ\x8c\x19\xd9'\xc5\x96B\x1e\xd4\xdd;\xa3\x9f@f\xbc\x01'\x14\x8fZ>\xf5\xea\xe9\x0bk\xf642\x1cf\x15\xd8`\x02\xf3g=\xcd\xea\x89\xb3:\xc8,\xd8\xa6\x86\x9fA\x07\xbd\x0c\xda+\x86\xfa\x12\\\x1aB\xde*+\xc4\x87 m\xbd\xfduE{\xe9\xa3\xef\x93\x82YWl\xf6\n\x03\xfd\xb2_\xda\xfb\x85O\xe0n\x18\xcd,.W\xb5\xdfd\xf8\x7fl\xd3\xbdK\xec\x81=$\xfb\xa7\xf8\x8fe:W{-\x01W\xc2\xee\xb4\x92\x98\x9d\x9d\xe3 \xd3\xef\"\xe6\x9e\x0e\xcb^\x0df\xa5\xa1\xd1\x13\x12\xacS:]j\xe2\xa03y\xc1\x8a\x04\xef\xe6\xa9\xa2 \xb8\xb84\xadZEt1\x9cc^\xdfV\xe9\xc3\xe8\xdea9\xa2\x1c\xb8\x01s\xfc%\xba\x8a\xb7\x84\xfb\x8c\xd9PD\xaf0*(i\x08gpf\x06\xe6[\xa9\x9a\x19\xf3\x1b\xf5\xce ^\x9a \x1e\x19\xb6\x05p\xdd\xe4% 54\x89\xb5\xf5|\xed\xba\xd4\"\x9d\x8a\xb9OM\x0c\x8bJ]~\x170M\xc4.H\x8dTp\xe7Q\x9au\x94\xd0iO\xaf\x96\x03\xd6^r9\xbd(t\xdal\xea\xbfMM\x97\xf2\xb2\xd4\x15\x84$\xb5\xef\x18\x8e\xae\xc2\x03R5\xe0\xd0f\xb8\x1f\xcf\x03\xf2\x92\xf87<\xeb=\xb0\x859G\xc9H\xc7'eC\xda\xd6&\x887\x1e\xee\xbd\x0c\xf8\xba\x9e\xdb$\xc0\xff4}\xaf\xde\xd2v\xbf\x91\x15_\xb3\xfa\x97\x1d\x81Ej|\x18\x90\x1e\x1fx\xe7\xab\x14\xf9R(K\xc7\xddz\xcc*\xc7\xdd\xf0\n\x1cw{\xe5\x95\x94\x94\xa3\x94\x94W\"\xbb\x97Wj\xe3\x82i$\xc0GS\xd6n\xc3\xea%\x1b\\\x04\x8b\xe4\xb9\x112\xad\x1dq\xd0\x15O\x0d\x19\x0dq\xc1\xf1\xe1\x10R]\xe2\x92\x8d\x88\xf4\xac\\\x00\x15\x0en^\x10\x13?\xd7\xf8\x1f3\xc7\x82\x19\xe8Y2\xce]\xf9\xfa\x82\x1c\xc2\xd8\xcb\xe0\xe4h\xce\xbd\xb6\x02\x81\xc7#C\xdffU\xa4\xba\x16\x8c\xaf\x94\x96M\xad\x17T\x9b{6`S\xaa\xcd\x7fK\x9b|$\xe06\x8a\x91*\x11\xbc\xc5mZm3\xe1\x1covw\xcf\xd1q\x02\xb9H\x9doj\x8a`\x94\xc1/D\n\x019\x06E\x0bp\xb1\xcc\xf4d\xca==\x18K\xca\xcbJDIH\xce_,\xdctd\xf2\x97\x8b\xa0\xf72\xaf\xa0{\x92\xbe\xd5\xf8uXy\xd1C\xc3crx\x15\x1d qA`/g\x1e\xda\x8a\xf1\xc1\xb7t\n\x18\x84\xb9C\xa23\x9d\xcf\x0dv\xba\xa9\x9c\xc7\xf7\xb4\x89\x84\x94\xf5\x8148\xd8P\x04\\1\x0e\xb6\x91KOY0\xaa\xd5\x14\x9e\xe1\xcbsX\xa4cPE\xdf7\x16\xc9WO\x02\xe3\x98\xacF\xdf?\xe8\xd4\x1e\xe9\x89\xcdy\xc46\xaa\xd5y\xc4\xe6\xd3\xe6_\xfb\xe7\xca\xbf\xbe\xf2\xb2M\xb1r\x9d\x9c\x14Y\x9a\x14\x04\xed\xca\x87\xa8\xd3WP3E\xde|\xd6^ev\x1c\xd2\x1a\xba\x9c\xed\xd4\\\xdf\x95\xf8C\xcca\xcf\xf3y\xc8\xe0\xd8T\xb6^hS0\x87R\xa0d\xe9\xc0\xe1!\x92\xd1t\xc1\xa2X\xc4\xe7*C\xdd!\xaa\xff\x12\xfa\xc17\xaf\x9eV\xb2\x9e\x9bu\x03\xa5(A\xd9b.\x03Vr\xeb\x15 \xa3\x9c\x04\xe5\x9bZ\x9f\xd1\x13\xe8t\x0c+\xfe\xd1\xaf\x9c\xd1[\xf6\x93\x8bS\xa7\x95\x84\xe1\x8b\"9\xa6@\xb09\x8b\xe5\xd4\x19\x89\xba\x06\xa2y\x99Lp\xee \xcd\xe6q\x1a\xbc\xc3\x12\xeey\x1a\x9f\x9e\xceK]\x08c\xdbF\xc4\xff\x92B3\x0b\x11\xf1sI\\\x94\xb1\xde\x89\xa9\xce\xc9\xf5\xcc\xa1\x8aD_\x9a\x03\xe4Z\xd69\x19\xb3\x1f\x07X\x15\xd9\xbd\xf7y\x9c\x05\xd0\xd29\xad\x88\x1f\x92\\b\xf53\xed\x19\xbb\xe0\xc9F\x98\xa1\xa0=\xc0\x9b\xd4\x17\xb2\xce\x1b\xd9\xc1\xbb\x12L{\x81\xcc\xc9N\xea\xd1\x86\\d\xfc(\xc3e\xae\xe9\xa2I\xfb\xe1\x8e\xc1\x81u\xe1\xe8G\x1d\x1aGm8\xf3\xa1M\xa0%Y^\xc6;gr\xb1\xa9\xa7\x06=*\x06W\x9c\xdb\xa1X\xa5\x9b8\xac\x08\xe1\x9b,\xf4K\xdb|\xac6\x15\xcd\xeb$\x0e\x9e\xd0\xf9\xa0tI\xea?\xff\xf8\xa3 E\x0fq\x0e\x81?\xdbO\xd9\xf1\xcd\x9f\xf3?\xda\x10aTd\xb1\x7f\xc11\xeb\xb1P\x7f\xb07\xe4\x0f\xa5c\xf8\xdcR\xb2\x8a\xe9\xd4\xc3\x0eM\xca\x9a\xd6\xf0\x06C=T\xd5\x8e\xe5\x93\xac\x7f\xd3\xafx=\x0b3?T\xcax=\xc7\x07\xfc\xc8\x12\x98\xa2\x87\x0c\x98\xf3\x00\xba\\<\xdfPi8\x14\xe4\xe9!\xf8\xde\xbau\xebI\x9a\xbb\x9b1\x14#\x98\x81\xef\xe5\x9d\x9b\xfa\x86B\xa8\n(S\xa1{cL\xa9\xb0\xa2\xa7+\xcf@$\xd7\x974\xafm\xfd\xf9\xea\x10\xf1\xca\xf4\xc7cSE\x97u\xfdb\x92\x96\x8f\xd3\x00I\x12\x86\x87k\xdf[\xd6\xef\x11\x9b\xf4\x1d\x175<\xfa.\x1a\xc0\xe75x\xe3\x98\xd0\xber\xda\xb7{n-\xd2VlO\x1c\xca\x9f\x92\xa4\x9c`\xe4\xd8[JZ\xb6'\xce#~\x13\xa3\xc24y\x85\x80\xeb\x94\x12\xd7 ,\x16\xea\x9c\x81\x8a\x8d\xfb=\x0b\xcf\xd2\xber\x0c\x87]wm\xa3)\x1c,\x0enk_W\xe8p\xf9\x0c\xc3\xe2\xc8\xe8\xf5%.\xa4\x95z\xa7\\\xe0l=8\x98\xe3\xcc\xc1\x90\xf7\xed y\xcb\xa2\x15\xb5\xef\x9a\x92x<\xa2\xe24\x1e\x06\xc7\\\xe0\x96\x8b\x82`1iMn'\xd0E\xaa\x1c\x99f\x96\xd3\x0fm\xe2\xf6\xd1\x18V\xda\xf4\x06v\xcc\xd7\xed>\xf3\xf5\xe6\xd53-\xdf5\xd4)TD&\xd2-\xa0\x1e\x8f%\xa3\xb7\xd2\xa7Xh\x8e\xe7\x98\xe4[\x92\x83\xd8O\xda1a\xf0\xcc\xc0Q\xb1\xcf\x16\x13\xf6\xeeN#+\xe9~1\xafR\x99\xef\xd85\xb6\x1dw\xec[8\xa8\xd1 \x8d!H\xe3S\xd6d5\xeb\x13z\x8f\x1fk\xban8h$\xd4.\xd1\xd5\xf5\xc7\xca}\x9cv\xea1)\xfd(.\x0cy=J\x8c\xa4\xfdP\xab\xf8\xd1Vo\xe8\x92\x85cX_e(S\xd5\xfe& kfc\xa7\xd1G\x8d\xe0\xba7\x8d\xaf\x81S\xf9\xf8_1\xaa\xed\x84_K\xdd\xf4\xb5\xca\xf7\xb6\n\x8e\xc1\x0d<\x04\xe1\x86\xb8]\x95\x99\xae\x03\x18.4\x9f>7\x0e\x8e183\xb80\xb0\xc8\x0c\x8e\xa5'4\x04\x17m\xf2x\x06\x06\xe6\x9c\xf3\xa7\xda\xcc\x89\xf4j\xca+\xba\x98\xb1\xf7\xf5|<\xd2\xcc\x871\xb4\xb2\xea\xd7\xb1MS\x11=\x96\xe7\x97 k\x10|\xed\x0c\xe6\xe6\x06\xd5\xe1-\x97\xf0\x85\x97\xeb?C\xbc{\xdd\xf4\x9f+\xa5\xfe\x13\x9f\xf4\xb4\x96\x91x\"S\x80\xaed\x9a\xd1\x0d\x7f\xd0\xd3\x8c\x16\xfcA\xaf\x8d\x98?\xe8iF\x03\xfe\xa0\x97\x1dy!\x1a\xdf\x7f\xd0}\x94Q\xf1e%\xb4\xa7h}\xec@\x84\xa2\x83\x8a\x9aU\xab\x8f\xafO\xdd\xda\xda\xd6T\xa9\x94\xa5&*\x99\xfd\xac\x99B\xb9\xb0Q\xbcEm\xc5\x9bE\ne\xac\xd0\\\xc7]\xbc\xc9\xe3!\x96-\x9eU\xb9\xad\xce\x90\xcb\x19\xc2LG\xce`!z\xe9\x12o\x93\xc7.\xe6\xe5\x17;5N\x99\xa3\x00\x95\xe4\x99;\x87+\xd1\x14\xca\xe7*\xe5s\xd5\xd4\xe3\x8c\xdc\x91\xc7\x1d\x8f\xd2\xbc\xe7\xf3\x04`\x9d\xe3\x17\xc9|\x7f\xbaT\xba\x86f\x9b\xb3\xa6\xabd\n\x0f\xc1Y\x95eV\xccn\xdeL\x13*Q\n\xbf\x06/JoV\xef9 \xab\xaa\xd7K\x8a\xab\xb4\xb1\xc5\x0d\\\xa8\x15\xa6m\xcb\x9b\xd2\xc6\x16\x08z\xf9K\x14\xc7\xafH@\xa2-\xd2\xb6\xc2\xc2\xec\xa6\x94\xd3\x85\xe2}\xf8\x12\x81\x88;\xb2p\xac\xc7uB`\xdb\xa5\x02\xddr\x95\x03\x96K\x1eZ'\xf3\xb1o/\xa1\xec\xd4\xbc\"[\xa7\xd8\xa9t\xce\x1b\xba\xe3\xf6\xe4\xd3\xed\xab\x9e\x1a\xb1d\x99W\xf8t.\xffM\xde\xe41\xa3Bu\xb1\x83j\xf2TqF^\xb0\xc9s\x92\x94OXj\x08s\x85\x93-%I{\xcc\xf9\x03\x7f\xbb\x1b,4\x97f\x05\xff\xc6f\x0c\x18\x9f\x88~\x16{Q\xf1\x93\xff\x93\xbbB\xfd\xca\x8a)0\xc4K\x1b\xaf\x88\xa3\x80\xd0M\xb2\xd2U\xc9m\xf9dlzy\xc5|\x13\x9fDw\xc3F \x87\xeb\xa4\xd5:\xea\n\xba@=dU\xbf\xac\x12\x92\xb1\x9d]\xb5\x89\x89\xf5\x0c\xf5\xb5\x00\xb5 \xcb\x17\xf3_\xad\x12\x99\x95\xfeR\x9b-F\\\x9d\xdd\xa7\xcdB\xd3~\xa7\xca[\x93\x9a\xdf\xa8\xf7\x9f6\x8bC\x0b\xdc\xc2& \x8c\xe7\xe8\xae\xbei\xe9\xa1!,\xf0\xe5\xcf|L\xa3m|\x0d*\xb2\xc5\x8d\xc5\xe5*5:\xf1\x89+\xc5@M\x816\xcf\xa2\x82\x9e\x8b\xb4ez\x98&c\xc8u9g\xc4\xc5\xd1\x8f\xc7j\xba%\xaf\xa3\x85\xa5\xad2\x98\xc1bTi \xf3Q\xad\x16\xdc\xb9\xb0\xba\xb8XJ\xd1*3\xa4\x05\x9a\xd0\x8b\x9e\x1e/\xb1\xac\x90\x05\x96\xd0+\xcd\xac\xd0\x1b\xaarE\x169@\x01\x83\xb9\xe9JY\xa17T\xdb\xc7\x08\xaa\x91\x8c\xd8\xe3F>D%d\x13\x8a\"3\xa6\xb5\xfd\x06\xa6\xbaB\xde\xab[\x0d\xaf\x8c\x9fR\xa8\xc9\x17p\x856D \xce\xfe^]8\xe9R\x96mYy\xe6\xcf\xc9\xb2-\xad\xe1\x9b\xaaj\xf8F\xaa\x1a\xbe\xbe\xaa\x86\xefFU\xc3\xb7P\xd5\xf0\x8d{5|Y \xcf\x82K\x05m\xe8@\x04\xcb~\x16%~\x0d\\\xfb\xa7\xe4\xd8\xafi\x88\xe0\x10\xee\x9cq\xe6\x8c\x1bPC%\x02J\x0d\xc2\x8e\xb2`\x15\xc5aN4\x944\x1d\xc6\xa9GC\xb8t\xdf\x9aC\xdf\x0c\x90/\xb0p\xb2\x8e%_\xb0\xc38\x0d\x8e\xce3?)\xb4Q\x14\x19?\xb8I\xf6,J\xdeE\x89fFCQ\x04\xd8Y\xf8qAX\n\xfeL\x0dO\xb9\xf4\x0d\x96\xfd\x8c\xfd\x0c\x1dk\x95\xa0[\x06jSes\xcd@\x1f\xf3\x1e\xeb@\x97\x0c\xd4\x04V\x05\x164\xa1\x1aJ1\x9cb\xab\xb7\x15\xb5r\xc8\xe7yz\xa6\x19\xdcY\x14R\xd2\xe0\x1c\xec\xeb\xbccH\xb4\\\x95\x0cjpo7\x85>\x14\x88\xed\x08\\\xab\xbf\xc4\x14\xcf&\xd8\xe7 r8t\xa9\x9aw5\x9d<\x8f\xa3\xe4\xdd\x0f\x83>\xa6\"6:\xad\xa3\xb6\x86rT\xbc\xc8HB \xf6\x91j\x9er\xa3\xf9@\x92JC'xg\xe2)\x1a\xe6{\xce'BcX\xab\x9d\x16y\xba\xfe\xf1\xd8\xfd\xbd\x1b\xcd\x87\x1a\x0f\xa7\x9e\x94\xf7\xe3k\x97\xd0\xb4/\xd4g*\xa1>S \xf5\x99J\xa8\xcfTB}6,GS\xe6vc\x94\xa9\xe4\xeef:\x97\xf3\x05~\xed^sY\xb96@&\xecg\x1f_\xd8\xd7\x9b\xe9\xbe\x08\xfb\xe2\xfap\xc2\xbeP\xa4\xaa\xe1r\xcbT\x05)\x87\xc3@R\x0dc\xc9\xb4\x07\xe9r\x19\x13d1\xd5\xa0L\x82O\x93\xd79\x15\xf8\xf1\xb8T\x03o8\xf0#? Hl\x00.8\xf0\xd19 6\xba|\xfb\x0b\xa3\xe1.\x1b\xa0<\x08\xadU\x12\xabjq\x8cz\x8e\xed\x10s\xea\x1a\x81\xad2q/+P\x8b\xef^\xb0 \xf5\x8b[\xc6\xef\xce+P\x8b\xef\x9e\xb6\xdd\xce*\xc6J\xc3z`\xb8\xbd)w\x02\x15\x9f\xcf\xbc\x90d9 \xfcRW=\xe0\x1c!\xb98\xa4\x06;F0}n\x8bG\x08c\xcak\xf1\x0e\xa1R\x8dn\xe7;\x84\xd0*\xe0^\xf0\x8f\xf0\xe9\xd2\x95\x9c|\x89\xa0~\x1c\xa7g\xaf\xf3\x8b\xa7\xe5\x8b\x8d\x06\x83_\xb3y\x1b\x98-\xe49\xeb0\xff\xfa\x11\x13?\xd5\xe0O\x11\x9c\xb0\xbd\xf94y\x99\xa7\xcb\x9c\x14\x1a,\xf9\x15\x0e\xe1\x9d\xd7P\xea\xa8A\x7fB\xd0\xa6\xeeF\x0d\xfb\na1\xdd\xb7,\xa3\xb7\xb8\x1e#\xc6 %Q\x9ai\xb5@\xcf\xe0\x10\x1e3#_\x15\x02\xae\xd3\x8f\xbd\xa9\xe1\xb3<\x0d7\x81\x1e\xfc7\xee\x8f\x8c\xa9G\x9eEE9r\x1f\x8f\xe1\xc4iT\xd5\xd5\xf5\xee \x1c\xc2\xb6F\x9bc\x1c\xba{<\x86G\x9a\x97\xfe\xddQl9c\xf8n\x0c/4\xca\xab\xef\x9b\xbd<:/ \xeaI\x8b\x91\xfbX\xd3\xcc\xcf\xc8\x04\xd9\xcd\xda\x0f\x0c\xb6YKX\x0d\xfc\x0b\x03\xe6\xf8\xa6\x83\xfc\x91A\x06,w\x9d\x1a\xee\xbf\x19\x9c\x8d\xf2\xf5\x1f\x0c\xd4F\xf9\xfa\xbf\x18(\xc7G\x1d\xe4_\x19d\xe5\xd5\xc1\xb2,h_\xf9?\x9dW\x8e\xf4I^\xfe\xd9ma\xb3^\xfb\xb96\x17\xca\xfff\xaf\x98\x14\xc2\x84\xf2/!\xcf\xe9S\xe3\x86\xda\xa5\xf7\x19f\x8fe)d\xd1\xc4\xf9-\xec\x9b\xdc\x95\xd0\x9d~\xef\x19\xee+\x1e\x9a\x97{\xad\xec>,F\x87\x838\x9c{\xd3\xb9p\xe4\xe8\xe0R\xf43\xf1\x8c\xa1$\xb6\x16R\x10\x1e\x04\xb4\x7f't\xdfI\xd2\x84\x02\xd8\xe69\xb1\x12\xe6\x9b\xaa\xdb*\xe7c}2R\xf9\xf6\\\x06\xe2\xc0\x0dx\x047\xc0\x91\xe9x\xdbP\xea\xd5\x8e\xc2\x99F\x03\xfe\xefZ\x01\xaa\xd4\x80\xaa\xa6\xe0\x9fZ-\xb1\xc0[\x94ngp\xaa\xeea\x83S\xd5\xfa\x98\xb4}K4\xa7w\xab\x84\xd3Z\x0f\xd7\xf0\x9f\xd1\x1c\xf6\xb53\x84\xca!W=M\xffm\xa7x8\x1f:\xfdC0\xb0R\x8d\xab\xeb\xe2\xbf\x1f\xc3c\xba!\x1f\xb3-\xfe\xc7\x1f\xcc\xff\xe4\xf0\xf0\x10\x1e\xd7\xce(\xea\\\x13\x06?\xe8J\x15u\xeb \xd3\xd5S\x15z-\x03\x18\xbaU'\xee\xed\xe9TC\xe8d\x13\x10\xa7~\x18%\xcb\x89\x9fDk_c\x1f\x19\x8d\xe1H\x9bX\xc8`%\x91\xb5\x8d\xea\xcd\xd3$\xcd\xd7\xbe\"\x07\x10&x\xfa\xc5\xcf\x93(Y\xce\xe0qM\"Fc\xf8\xd5\"\xcf\xd1\xb0\xfe4\xd89}\xa9\xca\xab\xc6Bcf\x10M\x83\xff\xb01G\xfc\xaaX\xd4\xd1h\x0c?\xd1y\xfc \xc3=/\x91\xb6E6,\xc1\xf3N\xc24(v\x9f\xd1\x0f\x86YO\xa2$\x84u\x9a\x13\x08EF\x9f+^\xd8\xd6\x0c\x0c\x1f\xb91\xd0\xd5\xd8\xe6\xa99\xeb\xcceq\xeb\xa7\xa6\x18\xa4\xc23u\x1b\xff[\xd7\x86}\xb0\xac\xc5L\xc4\x91\xf6\x0bJ\x8b\xd6O\xda\xe8X\xf6\xb4\x91c\xa7yj\xa87\xd4\x0f\xbaa\xd7R\xc4\x0c~\xb3:\x85yA\x10;\xf1\xa3\xe2Ef\xf0X\x03\xc5+x\xff\x03\xdd%uj\xb8\xa6\xbaL\xeb\xaa\xdb\xd2\x95I\xeb]\x89\xab#\xb9\xcf\xe0\xb9\x86mi*\x12f\xf0R\x0d\xb9H\xa4Ev\xc4e\xcdP5\xb4d\xda\xecE-\x15\x996\x7fQ\xe6\x97\xab\xe7\xdc\xb1\x93q\xe1\x86nr\x17\xe4P\xb1\xe1*l|\xae\xc1\xc1\xbf\xeap\xd0z2\x98M\xfeX\x0d \x1cV5Ly\xda\x91\x1bgB\x03Q\x98\xe5H\xda~\xf5\xda\x16\x15b\x85;\x12\xda\x91\xe31T\x1f\xd1\xe9!\x96\x84\xbb\x83\x91\x90}l\x06s\xafh\xdd\xd1\xacs\xff\xe5\x0b\xafw\xd3\xf0>\x05\xf9\xd9\xcf#\x8a\xf0?3\xed;\xffH\xef\x89a\x18Mx6\x8ca_8Z,HPF[\">\x85\x9d\x11\xdf\xa9\x9e\xe2}3\xfe}\xf5\x15\xbc\xa4\xff\xbc\xc2\x7fLtq\xa7cV((T4Z\xd5\xd8\xff\xd2\x9eo\xec\xa33x\xf5aq\xdf\x96\x98\xf0H\x16\xa6!\x9b\xc1\x13\xc5\xcc\xd7S\x7f\x15S\xfc\xbcRu\xbc\xa4\x12\xf9\xbcL&\xcb<\xddd(ys\xfd\x95\x91\xb3{.\xdeW\xf5\xe8\x17+\xc9Y{Z\xd9\xce\xe20\x92|\xd9\xb5\xad\xec=3(\xacvJn\x9a\xaa\x1f\xb5(k9 \xf6C\xd3wz4\x86\xa7W\xb5\x97\x85 \x1aT\xc1dCw\xf3.\xcd)]'\xaaey\xa6\x19\xe0\xcf\xba\xd6*\xb5\xf1\x0c\x9e\xa9g\xbaJ\xea\xab\x89*\x11\xcc\x90(\xfb\xa0\x8d\xfd\xb0>\xb7[l\xc4Ul\x98\x86-N\x9b#\xd2\x1aK\xb9\xf5a\x06o\xcc@\xfc\x90\xda\x8a\x80\xbf\x97\xfc\xfe\x934w\x19C\xa59\xfc\xfb\x8c\xb4\x95\xce\xdf~\x1b\xa9A\xe4\x86\xad\x19\xbcV\xbf\x82\\\xac\x89\x9a\x10\xf4\xa0\xf8\xdet\xdc\xfe\x1f\x1d\x06\x93J\x17>\x83\xef\xad1\xce@2vq\x1bz\xb9\xc9\x89\xcce\xa8\xca|'w\x19j\x9c\x1c8)\xad\x87y\xb5\x99d\xcf\xf8\xa6\xec?\xaaQ\x85J\x8a\x0b\x8fY\xbc\xba>5\xcc6\xa1\xf3B\xfa\x12Z\xd4\x9e1\xa5\x17\xd2B\xee\x85\xb4\xa8\xbd\x90\xee5S\x19-4\xeeF_b\x8b\xfe\x03\xdd\x8d\xac\xfc~\x86\xc4\xfb\xe7\xf6\x0e-\xe9\x10\x87\x16\xe6\xa6\xd4\xb6\x13\xa9\xa1}K_\xaa\x0d\xd6\xd039\xa7\x14,\\\x9d\x91-5X\x80`QQ\x95=\xd5\xf0\x0d\x0b\x845\xb9\x9ed\x08\xa5s= Y\xd7V\xe9\xd9\xb1\xa9{+\xfe1\x0b\x17\x94-\x03\xcd\xa3e\x94\xf8\xf1\x0b\x9bW0\x12I8\xa2X\xbd\xb1\x84C\xc8\xcc\xb3z\x81K\xc4\xd5\x1d\xc1&\x8fJ\xadU{\xce\x12(Tu`\xab\xae|_j\x8d\xf9\xa7\x9d\xc4\x0b|:\x9f\x1b\x03\xbf\xcf\xe4/\xbe4\x04\x9a\xf3\x1a'?n\xd6\xd9\xeb\x14\x811;\xc4\x07\xb7.\xd7Z\x01\xd6O\xe8\xfc\x8d\x06b\x8d\x16\xb0\xae*(\x05\xd1\x08 \xa7\xba\x1e\n^P\xc5\xb9\xa9?{f\xaf\xa6\xd3\x05>v\x0c\xd0\x1a\xc3r\xcd\xe3\xc8\xe3\xc6ig\xc3\xab\x92\xfb\xba\xabcc\xafX\xd2\x83\xad\xa8\x99],\x8a\xedn\xe9\xdd\xd5\xc8\"{\xfen=\xab\x93\\D\x8a\x02\x04\xef\xc7 :Qg\xdc\xff\xea+\xb8\xf0\x82t\x93\x94\xae\xaeos\xbdY\xbc&\xb93\xd0d\xcc\x1a\x1e\xe3!N\xd4\x941\x94\x98\xef\x97JMT\"\x89r\xec[\xe1^\x982\x89 \x81\xae\x13\x06\x17\xae\xc2\x01\x05z\xacEu\xd7\xac\xb8\xd2V\xc8\xc9\xb4\x08{\x85B\x87!N\xa1\xbb\xcfL\"D\xb0\xb3\x08q=\x03\x19>i\xa6\xb2\x01\xc5\xa6?\xa32\xa3_\xc4\x04q\xed.&hK:\x9b\xb8\x8fK\x1d\x1b<\xb3\x8e\xf4\xdd\xf7c\x94P\xded\x19\xc9\x1f\xf9\x05\x91%W\xd9\x99P-\x86\x13\xaa\xfa\xbb\xe3\xcf\xa0\xc4\xf1g\xaa\xad\x10\x91S_\x94\x16\xff\xb1\xd4H\xcd\xc0\x95\x034\x11\x89Dc`\x14\xf5\xe9\xc6I\xac\xe2PR\x844\xc6\xa1D\x08\xa6\x8fC\xf1\x11F\x1b?\x82u\xf1\xed\x84\xf7\x82w\xecq\x9d\xc6\xc4\x18\xe1AO\xd8\xb2\x99G\xe4\xc3\x9f\x04y3'\x838\x0d\xe8<\x9d\x9e\xb6\x9d\x9d\xa5@\x83\xcd_\xdazUU\x02\x06\x9d\x02J$`\xd0\x98\xa2\xb2\x06\xdf\xca\x9ao\xfbO\xfbXy\x80J\xd8\x1b\x0d\x0e\xb2,\x0d\x91|\x84Wy\x04^7v\x99\x9e\xaa\xcd\x80\x078\xe4\xe5R\xfa\x87[D\xcf\x84\xfb\xb2\xd3-\xea\x96\xd0\x8f\xd8\xe9\";=\xa2\x8f\x7fz\xf8\x98\xc1\xa63J\xf5q\xb2\xad*\xca\xd7\xe6\xa6>\xe6$\xed\xd27b\xa5\xdb\xe1#\xaf\xd2\xb3\xee\xbe\xe6\x83M\x87j*\xa4\x0c\x9d,\x81\xcc\xfb\xf1\x95~\\Z\x9bS\xd7F\xb3\xb4i\x1d\xbb\xe2P^\xe3R\xfd\xc2\xf2\xa5*c\xbc\xaeC\xa2f*\xeb\x93\x1a\xacU\xe3T\x0d\x96[\xc0\xc8\xeb2\xaa\xcb~\xf6\x06\xe3<\x89H\x8cN\xe5\x1f\xb2\x114Q\xb3\xa2\xa1\xeafZECK\x8f$e~qL~\xc3\xec\xb7\xa6\xcc\xa0\xdbF\x8d\xa8f\x9d\x9f1\x1c(\x881=\xbb\xcb\x93}\x85\xb3!\xee\xe4\x93\xa9$ \xc8\xb0\xad\x12\xd5Q\x84\x0cUT\xa5\xdeT\xb8\x8a\x9e\xa3\xcb\xa9BAy\xfe\xb3\x1f\xcb\xf4<\x9d\x04\x96\xef\xdb\x05\x10\xdf\xcb\xcf\x04\xf6\x99\xebu&\xbcJ\xcf\x0c\xc7\xc2\xed\xe9\x9f\xe2X`\x03\xb59\x19(B\xc8\xcf\x04\xe2Q|\xe8?C\xa6\x14\x1eR\xa63\xfd\xf1\xb8\xfa\xe1\xa2\x92\x91+\x1a\x87\x9d\x14\xd6\x94\x88o]#1ap\x9d\xbd\x1a}&H\xdbG\xcc?Q\x02\x13\n\xf0\xe0\xee\xfe\x9f#g \n\x9f\x98\x949\x1a\xc3\xa6O\xca\x15\x82z\x1fp\x91\xe6\xe0\xd2\xaf\xd1 \xaf$p^Bn\x8c\x13\xceR\xff\x16\xa31N\xf4\xfe\xd7\x10\xc07P|\x0d\xc1\x8d\x1b#\x88O\x82\xb7\xcd7O\x02\xf5\xc1B\xb7v\xc4O\xb2\xbe\xb2\x00ei\xa3\xc2 \xf0\xe3\x98k\x0d\xc8\x18N\xe8\xbboE\x11\x87\x18O\xe1\xc8Cs\x85\x1fG\xff\xae\xa5\x07c\x19\x07zE\x1e\xa1\xe3\xed{?\xbfG\xadBz\x865y^\x936\xef\xab\xfa\x1a\xf3$\xaai\x00\xd7X\xe2\xbe\xa3\xdfc\x7f.\xa2\x98PN\x03S-\n\xef%\xaf|\x0b)Z\x0dY E\xac\xce\x9c\xc07\xacVa\n7 \x82o\x0f\x99;n\xc2\xe2\xbbqs\xf39}\xcc\xd6JV]u\xcc4\x19=E\x17\xdd}\x1fC[u\x95\xb5\xcf\x98\x9c\xbf\x8a\x96\xab\x98\xce9\xaf[I$\xc1P\x1d ]\xc6\xff\xf5\xbb\xf7&\x0b\xfd\x92\\\xaf\xfe}\x02e\xdfV\x1f\x90\xc1vV%h\xe87\x14\xa9\x88\x0f\x15\xc3\xb4:.,0\x86\xc4\xc4\xb9\"\x9f\xeaj!&A\x1a\xaa\xca2\x8eQ/v%\xed\x89\xa1Nx\xc5yY57q\xd5^\x1dt]\x9a\x14Z\xd5M\xe71\x07r\xcc\x96i'\xcb\xf5\xc9\x01YYN\xda\xb4\xe4\xc8\xd1\xf5\xfa\x97\x15!qU\x04KG\xd0\xd5_i\xcc\x19\x96=\x80uD\xbf\xa0\xae{\xfa\x9er\x00\xc6M\xd4W\xc3\x99Tpr\xa7\xd7\xe6N\"\x1e9\xcf\xd2\xbc,Z\xc7S\x9f\xbd\x85\x06\xe7\x99\x903\xf8>N\xe7\xee y+[\x83\xf2\"\xc3\x91ST\xa7\xfc@\xc4\x8ad\xdfL\x83\x92\x94\x93\xa2\xcc\x89\xbf\xeeH\xeb\x1d\xf6'ZT\xf5v\xf7\x0e\x0f\xe1,J\xc2\xf4\xccK\xfcm\xb4\xf4\xcb4\xf7\xd6\xc5\xb1\xbf%\xb4\x0f#\xddC7\xefsV$.\x88\x82k\xa3\x87\x1e\xff\xda\x9bW\xcf8\xc61\x0e\xfe\xcd\xabgn\xae\x91\xe9C\x9e\x0c\xa4\x8b\xa6\xbeL\xef\x1dyX/W\xb8\xb6\xc1!8I\x9aP|\x8e\xbcUN(G\x9c\xd2\xdf\x05)\xbf+\xcb<\x9aoJ\xe2V\x9b\xcfa\xb2N\xa3\x1cq\xcd\x00\xd13\xb3\xfb\x1ec$\x9cq\x15\xd3;\x1a\xd7\xdd\x9d\xa7\xe1\x05\xe5\xd9H\x12>ZEq\xe8F\xc8\xa6\x05t\xeb\xba=\xc0\x9c\xac\xd3-\xa9\x01\x1b\x93\x95\x93m\xfa\xae1Y\xa9\xea\xe8}/E\xc9\xeb L\xc9\x95\xbfR1+R\x89Y\xbeJ\xcc\xda\xa8\xc4\xacB%f\xc5\xfcAOb\nx\xca\xc7\xbe\x1cUKZYU\x12B\x98>+\xe0?\x81`\x95\x8f\xc1\x97\x0bV\xd1u\x14\xacr.Xml\x05\xabt\xa8`\x95{\"x\\\x84\xe1\xfc\xc2B\x04\xad\x84\x0e\xde\xd5\\T\x88\xac\xc3\x85\xbc\xa0\xf5QT\xa8\xba'\x02\x10M\x90\xd5k\xcc\xed\xe2-\xe5\x9f{\xad\xbcg]\x14\xf1T\x8f\x18\xfb\xf0\xfa\"#\xac\xd7V\xdd\xace#\xca~\xe4i\\|\x17\x04$+\x7f@\xf5\xaf\x89\x9f30})\xe6v2\xb0\x8f\x11\xba\xedY\xa5@\xf4\x11To\xa4\xdd \x8c\xceO\xa6\xac\x08\xbad\xea4EZ9\xd1\xd3\xe5\xb4d\xde{j\x00\xe1>\xbb\x91BH\xaa\x17\xbd\x1f3\xabs\xafp4\xdd\xad\x96\x82X!\x15\xc4|;A\xacX\xa5\x9b8\xacX\"ka\xc7\xb4/\x1a>M\xdd\xc0@\xe4NH\xff\xb6(\xbf\xcf\xde\xaab\xdb8x\xfdw\x1bN\x84\xd6q\xb0\xeaO9\x14n\xc6\x0e(\xbb\xd7\x86\x97\x07\xbc\xf1\x17\x15\x0f;-\xfa\xe5J4D\x7f\xb6\x9f2D\xe1\xcf\xd9\x1f}\xdch/\xffG\x92\x06\xf5$\xc1F^d\x1e\x19\xd5z\xe9)C\xd2\xc3\x03=yH,\xbdN65\xac!\xa5,\xf3\xd3\xb0\xcc\x13\x8bl\x841\xefm\xd2\xc6-5p\xc8\xdc\\\x06\xa6\x0d]U=\xd6G\xd5l\xf9\x11Zi\xed\x8e1\x89\xdf\xa34$#7\xd5x>\xac\xb1\x98\x8f\x13\xd4d\xd3T\xd1\xc6w\x9d8\xda\x12\xb1\x86\xa6\xca6~\x1d\xbbj\n\"\x91m\xf5\xaf\xbe\x92\xdd\x16Q\xa4\xb27f\xb5\x84\xf7\xb2\xf5D\xdd\xf8)\x1cB\xd1\xac\xf6\xc7\xa6rIJv\x82>b\xe7)\x95p\xc5\xb0\xe9\xacJ\xcd6\xe229\xee\x0c\xd1+T\x1b\xcc\x98\xd9\xe0J\x9a\xb3q\x01\x10\x971O\x16w\x05x\xd5\x88_n\xcf\xb5)q]\xec\xcfI]3\xc4\xe4\x08\xd5i\x0e8b\xa3\xcc\xad\xcb\xa6\xa5\xad\x16\xc3\x89\xab&(L\xb0\x97\\1\xa2\xe065\xc4\xa6\xde\x7f\xc5\x0c\xe6\x1a\xc0\xc6:\x89t\x17\xfc\xe5 \x8eQ\xbeJ#]\xc6\xabA\xc8Q\xe3b\x94\xe8\x92\"Df\xa5\x9a~E\xb5\xd5^\xea`i\xeb|\x94\x1a^\xae\x99y@\x93\x03\xaa\x93y@CP\x18\xf7\xd8a\x11\xcc\xbcd\x8fk\xd0\x1c'\x8a0}U\xfe\xa5\xe1\xdb\xd4B\xc9(\\k\x86b\x0e{o0=i\xbb\xe8\xa8\xc1\xf2\x1d\xba\xb4+\x8dS\xb8\xe1\x88K\xed\x8eS\xa1\xf0\x84\xde\xe39wU\xcd;\xf4 \xd7&\x03\xbc\xa2~\xd8\x04\xbb9\x8f\x1b@]j\xfe\xa1;\x18G\xc9;\xcd<=\xc3\xc7un\x07\xdd\x8c\xb5<\x9bR\xa5gS\xa9b\xa5\x81\xb3\xd3I\xdf\xc3\xa9T{8\x89\x0bYg\xa5\xa7\x93\xb8\xb0|\xc9\xc9\xd4\x00\x15\x027\x18F\xed\x0c\xcepx\x08)<\xac\xf1\xfc\x94'#A'_G\xce\xb8\x80\x99y\xb9\xd0\xad$\x08a\xc5P\x96\xb8\x8e:[\xb1\x1c':6\x15\xd0\x1d\xf8\xb1\xd0\xa6mQ\xafkh`\x91h#\x13\xa1\x8du\x1aZ\x8b\x90iH\x8cC\xaaO%M8/\x0c:I\x803\x07]u\xce\x8c\xa2\xc6\xe1\xa1.m30\xbe\xa4\xabK\x9aa\xd9\x0f\xa5\xaa\xc9\xdc\x15\x0e\xae\xe5\x87\xc0\xfeT\x85\xfeI\xad\x84U\x14\x85n\x15\x83\xde!\xa1K\x8d\xe7;$u\xe9'C\xeaGX\xd6\x99\x83\x98\x85\x98U\x8a\x1a\xb9'-\xfb\xcf\xaf\x85\xa4\x16\xa7\xea\xa0\xdf\x9b\xd6\x03\xf8\x1c2\xb9\x84*w\xacP\xe5\x8e\x15\xaa\xdc\xb1B\x95;V\xa8r\xc7\n\xa5\xe6\x8b\x98?\x91Z\x10\xdcP\xd8\n\xc2\xcaV\x80\xbf\xa6\xb7z\x05\xa4\x17R\x8b\x03\xaa\x07Te\xa5\xc3\x8fo\\X\xd9\x1a\x17\x88\xc4\xb6 C<\xb3hkjo);O)\x0e\x8d}\x914\xc1'+\xf2N%$n\x90\xba<2)\xb9\x12\xe6\xeb\xd3oF\xfd\ns%\x92\xd1m\xf9\x99\x8b*\xec\xe3\xd2/uJ\xeb\xbcO\xb2\xbbK/\xae\xf7h\xd82\n\xb4\x9a\x11\xc8\xcf\x9c\\\xd1Z\xef6\xfa{Q6\x84\xf4\xe8\xa5\xb8\xa4\xc3q\xfa\xac\x1d\xfd\x94\x02\xbf\xe1\n\xdd\x94\xaeF\xb3\xca\x08-Z\xe0RK\x1d*3\x9aP\xfeB\x0d\xc3\xac%\xe6\x02d\xccbb\xe1\x9a\x13\"\xa0Y\xaf\xb8B8\x9d\x12t\x8b\x10v\x9a\xdau\x0dk\xd0\xd4.\xab\xfeYhj/\xf8\x0cVx\xa4\x06\x9dW\xa0\xf6\xf6\xb1S8\x84\x95\x17%\x0b\x92c\xaeS\x8d\"\xe1\x0c\x0ea\xc9\xc5!5\xd4\x11\x1c\x82\xcf8u&\xe2h\x93\xfa\x9d\xd7\xd0\xe4\xdc_g\xb1>\x07\xe0q\x0d\xced%\x0d\xec#8\x84\xadU'\xdeqH\xe1P\xc5\xe5Q%\xfcw\x0c~\x9d\x86$>b\xbd\xd6\x81\xbf`\xe06%\x80^2\xd0*.\xd3TL\xe75\x83\xb7Tp?\x17\x9b\x16i\x97'\xa1Q\xf4\xc8\xbaPP\xf1\x05\xb8g\xee\xc8$/>\x15+\x84\xc5\xb2x\xc7\x9c1<\x7f;\xe6\x8a\xe7\xe7~6r\x7f\x7f\xdfe3\xba\xd7\xafp\x08O\xb9\xc4\x87\x88\xe9\xf4>\xa0\x16\xf1\xeaP?4M=ma\x98#\x94\xe0\x99W`m\xa0hq1r\xbb0T\xccf@KR\x1e\xe3M\xb6AF\xee\xaf\"\xec\xd70\x9b&A2J\x82x\x13\x92W\xc4\x0f_$\xf1E\x8b\xcb\xec^\xf4\xd0\xa3\xc7\xcd\xaf\xf0\x10\xcaJy\x95\xf0;\xa7U\x9fj\xc5V\xce\x9f\xb9\x8d\xcc\x89\xcd\x151\xf5]L\xfb[\xfaI\x85\xe6\x8d9T\xd1^\x9c\xba\xbe\xe8\x01k\xda\xf7V~Q\xad\x1d\x9d\xf2\x90g\xfb\xacnQ\xb9\x14\x07\x95T\x0b\xd2\x9b\xebd\x0c\xcfu\xf3(\x99C\xcdi\xc4\x80\x7f\xc9\xa3\x92hg\xfc\xbd\xde\xfcq\x8e\xbe\xcc\x94v\x9d[\x04\x8a\x89K\xb0\xc0\x94\x1d\xa2l/+&\xf5\xd7\xbf\xe6d\xe1\x08\x97.\xda\xae\x8a\xebQ\xe0;\xddu?Y8\xf05/a\xdcF\x0bTeo\x1a\x16\xff\xd6\xbc\x9a\xb1p\x0d3\xbe&\x16\xaey\xe5\xda\xb8\xb8\xe6\x95\xf2\x1893\xa4\xe0\xd0[{<5%V\xba\xa4YK\\\xc8t\xc9\xd9IqiMKw*\xcd]\xaeQ\xf2)\xe3\xfe\x9aW\xdb\xa4\xc2h\x9by\xf68[(\x8f\x19\x17\x97,v\xbc~V+-(J_\xd6^b\x1c\xeb\xf0q\n1A3\x06A\x05\xe4\x1b\x92\xa2\xf7\xf9\x18\xde\xed\x98\xdc`\x07M>8p\x03\xdc\x0ds#\xd7l,'\xf4K\x9f\xb9\x85+\x03\xff\xafN\xdd>D\xd7\x1f]\xa1\x9a\x7f\xb0n\x7f\xe7}-[\x8bn\xab\xa7\xa7z\x93\xa1\xaa\xf1\x17\xba\x86E\xd5\x1f_\x94)l\xd8&T\xa7\xc4\x18\xce\xcc\xbb\xcdj\xacL\x9dWQ\xf3\xe6\xd0\x1b6Y\xd3\xcet\x84@2\xf1Q\"\x11\xd6\xa8\x19\xcc5[o\xe84\xbe\xb60q\x1b8\x1e\xf5\x94\xb4\xec\xd7|-\x04#E9\x9b\xee-\xef\x1da\xc7(\x88\xc4\xd5\xc7\xe4\xb7^\xd2\xb9\xe6\xd51\xb1\xcb\xf4>\x8a\xf5\x1e\xc3\\\x9b\x83q\xed\xc7\xb5\x83\x81\xc3\x9d=\n\xd0E\xa1 \xe1\xa8^ar\xa43\x1a\x83\x03l\xe9\xbc\xda\x06Uq\x9b?i:\xf1\x9d\x16\xc5+K\x89u\x9a}MV\xfc\xa6Z^S{\xb1c\xa2\xd0\xd5^D>T\x88\x02L\xb5\xfd\"\x0fIN\xc2\x91\x9bhV\x94\x1fB3\xf8I\xb1p\xd5\xd4\x1di\xa6\xee\x91n\xea\xb8h;\x83#\xeb\x99\xd3\xf7e4\xae\x04\xfc+\xb5w\x0e0r\x1e\xc3C8\xf6\xcaT\xc6\x85v\xa2W\xba\x97\xe1\xc0}i\"T\xc8\xb5i\x14<\xf4JpP\x06 :B\xad\xfe\x11,\x17\x064\xa4p\xa4\xad\x87Yo\xdf\x9fR\xe0\xaa\x92j\x95{\x1f\xbc\x94\x05i\xa5\xb7 \xd5fCF \x85u\xe8\xf7\xf7]s\x89\xcc\x9a\xd7TL6T\xffm\x9b\xd0\xea\xbf\xf8\xcdke\x13Z)sG\xacTQ%+UT\xc9J\x15U\xb2RE\x95\xacTQ%+\xa5Mh%lB+\x8c\xc8\xbf-\xb5\x04\xb1g\xbd/W\xe6\xa0\xf6\xedP\xf4]\x91no\xf5\xf1\x0dE[[C\xd1\x97(\x94\x8e\xd1\xca\x14\x85\xa2\xb7\x88d~^\x90\x90oq\x85X\x85\x91\"\x1bt\xdd\x7f\xd9\x04\x1fd\xf2\x12!)\x9c\x1bSk3\x99\xff|\xa9\x16b)\x10S\x91@\x94\x14\xa5\x9f\x04$]\x00\x0b<4\xebC\x12\x1e,\xf9$\x8aQ=\xa52\x8f\x89+\xf1R\x16\xc6g\x91\xc3\xa0y\xe56\xe6\xb5\xe6\xd5] \xca\x0cobydn\xf3R\x9cD\xd5\xe31~\xca\x0f\xbf+^\x93\xf3\xd2\xd5L,\xd7\x1bZ\xf7\xbc\xd3\xe3\x92\xf2\x07\xac\xaa\xbbN\x03!C\xafO\x1b\xa4r\x95\xd9\x02PN\x90\xec\x15\xd7\xea\x88W\x07a\xec\x942@\xb9)\x95\xbd$b\x7f^\xa2\xabWc\xd5\xb4\xb4d\xd6\xc1g\x16YB\xad\xccu\xac^\xc9&\x97$T\x12\x17\xabR\xc2\xf9|5\x98_\x9b;Xz\x8d\x87\xf0\xfb{\xd0\xba\x0fo\x06d>-\xdav\xa3\xd6nT\xbf\x85\xf5A\x06X\xd5\xe8\xc1\\\xfb\xf2\xa1\xa6\x8b\x92\xcf\xc7~I\xb0\xbe\xe8\xebhMt\"\xf4\xba\x9a\x04\x8d4$\xc9\xf5\xd5\xbc(\xc5\xa7\xcb\x92\x8aL\x0d7\xffo\xc3\x87\xe9_\xad \xf6\x9b\x91W\x92\xa2t\x93\x11\x05\xf6O\x1c>#\x93\xc7Q\x91\xa5\x05f\xe6w\xde\xd2\xe3\xe3\xa6_\x96~\xb0\xa2\x07\xb5xI\x05.\xbe%4,\xa1\xdd\xb7\xa4\xe0\xbd~5\xb4G\xec[\xf4h\x82\xd7\xb9\x9f\x14\x0b\x92\xcb\xba\xd6|\xa3\xd75\xeb\xcfI\xdf\xd0(\x8f\xe9*8\xf4\x98u Jx\x9c\xb9\xe9$\xa4[\xf9\xa2\xca\xb1Q\x92\xf3\xf2\xe6\xaa\\\xc7\x16\xban\x0c\xce\xe9\x1e\xf0\xc2\xcaV%;(\xa5\xc9\x0ed\x17K\x80pa\x84\xed\xca?\xb2\xebT\x9f\x94`n\xf1\x8938\x84\x93\x0b\xca\xd0\x15\x9byQ\xe6n\xea\xc5~Q>MBr\xfeb\xe1:7\x9d\x11\xdc\x80\xe9h\x0c\xa7o\xbd_\xd3(q\x9d\x99n\x9b\x8a\x0b\xed\xfc*D\xd5l\x08=\x13\xd4\xc9\xfdpdZv\xe0K\x7f^\x99{\xc8y\x99\xfbA\xf9\x84\xe7oz\x92\xa7k\xde\x8fF7\x98W\xc4\xc8=2\x18\x84\xe8\x85!<\xb43\xcc\xeaG\xe7\xf3\xdc\xc0 i\x9fR\x1aTy]\xd6\x99+\xe8\xc7%\xb7yB\x8b\x17\xf9\x8b\x8c$\x1c3/eIq|\xa3\xc6\x16\xaa\xfa\xec\x06\x07\\\xd8\xa9\x06\x8a\xb88We3hw>\x863\xfd\xa4\x83q\xe2\x9bYf`\x11 #\xff\xb5\x9aM\x91\xcbc\x06g\x83\xc7\xa2|\x81\xb3\xdb\x14\xf1\x94\xe3`)u\xb8\xce\xa8\xfa2\xe7< $%\x96\xd6\x86\xf9\xa6\x84\x8bt\x93\xc3\xd7r/\xda\x99f\x96k\xda\xe7\x06'\x84\xa2\x81\xdbN~\xc8x\xd7\x9b\x14\xe8_7\xb3\xd8\x8f\x92\x9b\x8d\xd9\xff\xc8\x036\xf0k\xc2\x88\xa7\x181\xcc\xe0\xe6\xff\x8d\xd6\xfe\x92\xfc\xebf\x0b\x87\x12\x8f\xbb\xfd\x14\xaeSl\x97\x8e\xd6\xb0\xd1\xa4\xf9\x0e8\xa8Fv\xc0\xd1+\xdb\xd7K\xed!\x80\xf9\x9ed\x9a\xcb\xe6\xb5\xf6\xcf\x7f\x89\xc2r5\x03g\xba\xbf\xff\xff\x93c\" \xe5W7\x94\x073\x1d\xbb\xa8\xd0\xc8\xf0\xb9\xf37a\x94v\xe6\xce\xea\xb8P\x9f\x8d\xf4\x8bzC\x117G\xaa\x1d\xb1tA\xd1h\x1c\xd7O=\x9d\x11]\xado\x96\xacL\xb5\x89\xe8\xc48\xcc\x7f\x88n\x1f\x04O\x17P~\xfc\xbdQ\x9e\xcbtE\xe22o\x0d\xee\xe4\xf5-\xec\xc3C(lw\x80z\xf9\xad\xcd\x7f\x91:\x9c\xf1M\x92\x93 ]&\xd1\xbfIX\x99\x89p\x8e\xbf\x16\x81A\x94\x89\x10A\xee~\x81\xd4\xdd\xd3E\x8a~\xca\xd9/4\xa4\xf8\xd3M\xe4\x06K\x91@\x99\x8a)\xad\x8d\xf7Z\xb7\xa5\xe5\xa5q\xa4\xe1\xc5Vg,\xc0\xb0Tz\x9e*]\xab\xacm\x916UH\x98Yu'\xcb`\x95\xef\xd0}p\xf7\x8e\xc4\x88\xa7\xd7}\xd6\xbe\x9eY\x1c\x95\xeeM\xf7\x9b\x7f\xdd|x\xf2\x7f\xbf}{\xe3\xdb\xd1\xcd\xe5\xc8[DqIr\x0b\x0fK\xfe!\xc7\xa9\xb2\x0dEkY\"\xdc\x8e\xfa\xba\xdd\xdf\xc8\xb6\xbf7\xbf\xf9\xd7\xcd\x1b\xac\x9b\x9c\x11 \xda\x0f\xfb\xf6\x1f\xc6\xaf\xfe\xeb\xa6\xddw7\xb6\xdf\xb5\x9e@\xec\xc0\x9er\\\x80\xc8E0\xef\xf0^$~\xf8\xbdn\xd6\xf8!\xcf\x9d\xd9\xed\x850JuM|\xf0-Li\x13\x0d]Gm\xcb\x9b\xbe\x85\x87\xed?g\xf0\xbb\xe4\xdcg\xb1[\x82\x83\xed?G\xbd\xad'a\x89\xfb\xa01\x1c\xca\xf4\xa6\x01\x1c\xc2IGeSg\xb2\xa5\x7fu\xe2\xac\xe9x\x17c4\x07\xbb\x0b8\x042\x86\xd4]\xd8\xb8\x13\xf3uR)\xeau!]\xec\x14wK\xd6^\xe4\x96\x94uq\x1e\xc5i\x11%\xcb\xd7\xfe\xd2\x81\x19l\xf8\xdd\x17\x19I\xea\xbb>\xbf{L\xe2E\x1b\xdeyM\xe4\xb9\xbe\xe5\x01\x81\xed\xa3\xf7\xfdH\xe2\xba2\x86TeR\x8eLI\xeaX\xfdq\xa4\xe8\xbd\xe7\xad\x81R\x1e\xdf\xa7\x88\x15O&\xf2\x9e\xd2\xad\x95\xbb\xc9\x18b\x85\x92\x0fK\x89\xc3\x0d\x88\xfa\xef\xa3b\xb69\x83us7n\x8c\xa1\xd0\xd9Y(J\xa4'%L@\xe7\xbe\x1dVP\x07\nM\xa1|\xb8l\xb9\xf0\xef\x0c\xe7 ov\xbb\x1aV\x8f\x109\x1d\xac\x9c\x057 ds\x0f7 \xab~ET\xe8\xc4\x80\x05\xec\xcd\x18\xb0\xeb\xc6\xf0kh\xd0\xa6\x0eN\xb4\xc7\xc3\x81\x02o\x91\xe6G~\xb0\xb2\xdb\x1e\xd9 yK\xf7_\xf7\xe4\xa42jfw\xaa\xf0/\xed\xedu\xfc%F\\\xfb\xfb\xaf\xa6o\xe9%\x12\xb6\xde\xfc\xfb^\xdd\xc0\xdf!'\x19\xf1\xd1vB\x99\xbaoVe\x99\x15\xb3\x9b7\x97Q\xb9\xda\xcc\xbd ]\xdf\xfc5M\x8a`\x15G\xc9;\x92\x977[\xf0\xdf6\xbe\xd4\xfc\xe8\xa34\xbb\xc8\xa3\xe5\xaa\x047\x18\xc1\xc1\xfe\xf4\xf6\xe4`\x7fzg\x0c?\xa6 \x1cW\x1f\xf3\x9a\xef<\x8b\x02\x92\x14$\x84M\x12\x92\x1c\xca\x15\x81\xe7O_\x8b\xdbM\xd0\x9b\xd5od\x06X\xd4c3\xb3\x842\x7frw\xdeq\xe3\x08Ab\xaf\x12$\xc8\x08\xcaU\x9e\x9e\xa1\x9d\xe1\xf5EF\x8e\xf2<\xcd]\x87\x9cgL\xdd\xe6\x03\x7fI\x92\"y\x8a(]\x8e*^\xa3\x0fr\xd0\x05\x81\x1b]0\xe1\xa9@\xc4\xc1\xf4w(\xfb\x1f\xca\x19\xf7A\xa9~\xc3\xce\x98\x8fX\x16\xf4\xfe\xc4@S\x9d\x97Vg\xde!\xc5\x1b\xde\x97\xca\x1e\xb1O\xb1\xa9\xfd*z\xc7|\x8d\xa5\x00\xaa\x97\xd1\x0d\xe3[\x98~=\xa2''\x0b]qS\xb8q\x88F\xf8\x12\xbe\xfd\xf6\x10\xa6c:\xc4\xc3\xee\x18E\x8b\xf4P\xe2o\xb4\x1a\x1f\x86\xed5cxw:2\xe1\x82\xc2\xbb)w\xc9\xc8+\xd3g\xe9\x99\xa8D;\xac\x0f\x1f\xdd\x99\xed3,\xfe\xba\xa82\x1b\xd0_\xf7F\x7f\x8e\x82\xaf\xdb/\x05f\xd4\x05f\x84\x17\xfd\x80h8\x81\xe0\xb9\xaa\x8a\xf6\xa8\xe2\xa8\x8e\xceKM1\xef\xb4[\xb2;U\x97\xecN?\xbeZ\x88 t\x9d\xb1\x98-\x8b\xe6z\xddReh>t\xb7Jy\xa7\xd3Sr^\x92\xa4\xe8\x1d\xf6\xef\x99\xe7\xd4\x0c\x9c1\xf0\xa3)1\xd7\xda\x8e\xae\x1bB=e\x9ecG\xeb\xac\xbc0\x94\x89\xef\xc5\xd4\x8a*\xf1\x98S\xb5~'\x12\xfa\xc9\x88\xeb'\xafU\xc5x\xd5\xc8m\xf0\x10\xb1B\x85\x88Q\xc1\xbf(9\xea\x98\xf9S}\x02\xfb\xfc\x0b\x8f\xa3\x02)\x9d\x14\xa1\xf9\xb9\x8f4\x0f{\x8d\xda-\xf4\xf6\xbb\x0c\xaew\xf4\xa9-\xd4\xa7\xad\x9c\"\x0e\x9d\x96\xe9r\xa9\x11>B\xdesY\xfa\xe7\x9e\xeb\x86\xba\xbfQ\x92mJi#\xcc\x04\xee\x04+\x12\xbc\x9b\xa7\xe7\x12MY\xa3\x0b\xfd\x87\xf8\x1e\x1e!\xa8t\x90(tj^\xc9\xac\x9c\x8c\\Q\xc1\xda\xe3\x1f6\x1e\xb7\xa318\xc7$ \x01'\x95mL\xa7\xe7#\xf4Y\x95\xe8\xff\xa49\xa1\xe5&\x93Pj2Q\x94\x93T\xa4\x88\xbeu\xd0\xcb\x0b\xf0%\x17\xb4\xdc\xb0ag\xd4\xb0\xcd\x05-v\xe0.f\x82\xa1\xeeG_}\xd5\xfa[-F$&\x1bD\xc3\x02\x90TC\x18\xb9\x89'$\xc618\xcc9\x03\xad\xcb\x88\x13\xcc\xbaLD^\xc2\x84\xd5PB\x91\xbfOG\x9a\x96\x14\xebCK\\\xdbai\xb2\xad\x94\xc8y\xad\xc2W\x03\xa5\xd6\x9af\x1fS\x1aX\xc9\xb4\x9b\x1a\x94\x8a\xc4\xda\x05IxT6\xce\x15.\x04N\x1e\xe5\xe4\xdct\x0c\xfe\x186*S\x10\xe6\xf3\xe6\xd5*X\xcdA\x8b\x8c\x05\xc2\x00c\x9ci\xc6KX\xea\xf6\x13\x10u M\xd3\xc8\xca\xb5WHg\\\x18\xb5r\"\x19C\xae\x98\xdbF\xf4\"\x96\xf0`k!\x0e\xb3\xaf\xbe\x02\x07\xb5Y\xb8\xdf\xd2z\xa1t\xfa$\xc1\x9a\xe9\xa2\x96\x01\xcf\xc3\xa88>\xf3\x97K\x92\x1f\xa0N\xd6\x87\xaa\x8d\xf3I\x9d\xf9\xf6\x8f?\xd8]L\xcf\xcbi\x11\x8f\xed\xad\xefW w\xabT\x8aj\x88\xc67f\xd8\x0b\x9e=\xea\xab\xaf\xc0m\xf4A\xd1\x83\xddZ\xaa+`\xef \x07\xb0\x1e}tY8h\xb2Y\xcfI\xfe\x9a\xeb\xc7F\xae\xaf\x88\x93\xeb{q\xc90\xdd\x1d}\x9c|\xedU\x12\x86_\xa28~E\x02\x12m\x91;\x91\xd5\xdc\xb7\xce\xc5Ps\xea\x9fxw\x99R\x88G\x97\xda\x83Hd\xa2\x02 \x1b\xee\x84\x1cf*3\x9a\xcd\xeeJ\xab\xed\xe4F\xad|\xd4#q\xa8\x07,%\xf5h\xc4Q=\xd9\xac\x91w\xf5\x81\xe5b\x88:\xf7u\xad \x17\xcd\xc6{53lJoP\x18\x86\xd2\xd84\x1b\x8c\x03\xa1\xff\x9d\x893#'\xbfm\xa2\x9c\x84\x8cT\xe1\xae\xf2\xd9\x19L\xf72\xba\x89x\x8b(/J\xb7\xb3\x01\xb1\x90e\xc1?+jZ\xdam\xc7bTe\xd1\xee\xee\xb4\xfe\x86lo<\x99\x18\xf4\x01\xbc\x05\xec\xce+\xc3q\x9fX\xee\x8f|@V\x8e\xb4\x865\x98\xcb#.?sm\xaf\x9e\xd7 Z{\xfe\xa6%\xaa\x0b\x95\xb7\x1e#\xad\xe9M`Mo\xc2\xea\xb3\xe6\n\x0f\x85\x91\xde`\x95\x07cj\x11\xafX\xa5gGB\xdde(\xef\xc0\xa0\x1f\xa5\xebu\x9a\xd8\xbcs\x81^\xd9\xce\x8fE\x9a\xb0\xcc\xe7O\xd2|m*)\x9b\xbb\xcc\x98\xfc=\x0b\xaaQ\xc2\x9e\n\xc7\n\xc6n\xa8\x01\xcf\xe0\xb0\xc9\xa2\x9c\x9a\x0b\x98\xceM\xf6\xac\xb6\xc1\xc9`\x15Y$Zk6\xd4\xf6#\x83\x95)\xa8\xec3\x85W\x15S\x10\xd8\xea\x06\x06\xbbP\xd0\xf4\x8f\xa2\x9fh\xa4\xf3\xc1{\xf4\x135\xcd$E\xd9\xc8\\hot\x92\x91I\xbbwk\xf3\x93\xa1\xf4X\xc3\xc2\xa3\xc9\x05\x04\x83\x8b\xb65\x8dL\x81\x12R\x97\xe1\xe4\x88\xe1\xafm\x0d\x8ds\x06nSC\xe3\xb8\xb13\xb8\"\xddT&\xa4 \xde\x94!MEC\n-\x93\x12P\x89^\xfd\x81\xef\xea]\xb9H\xf3\xb5\xaf\xed\xe5\x0b8\x04\xf4\x81^!7Rv\x18\x11\xed\x86x \x87\xf0\x82\xbdP\x1a\x10\xf45%\x00\xb47\x8f\xfd\xd2wL5\xf8\x9eS\xe8'\x15t\x94\xd4\xa1\xe5\xea\x97\x9e\xd6\xc3\xae\x19\x0e5\xf8\xaf\xa2\xf3(\x0cD%Y\x17T\x16\xc0\x81t\xab\xc95\xaf\x9f\xe0\x10\xde\xc1Cx\xd7\xe5\xa1\x1cM$\xe7+8\xc4\xc0GW\xd4\xa2\xe8\x12\xf0\x91[Vy{\x95_y\x0c\x87\xb0n~e\xe0\xfb\xcf,\x12Y\xbd\xb1\x80\xf9\xcd\x02\xe6 \x1c\xc2\xdeT\xab)h0z\xcc\xe9\xfeY\x8dOl=:\xec\xe03:v\xda\xc1gM\xbew\x8c\xfd\xe1\xb7\x84(\x87\x86\xe37\xf5\xf7\x04h\xe3koh\x9bo\xea\xf0e\xda\x03\xec\xf5~\x1b\x8e\xf5\xed\xb7\xfa[U\x1b\xe3f\xccB\xd9\x15G\xb1\x02FWL\xd6z\xa4\xe8\xf3\xf6\xb3\xdc\xfbH\x17&\xa8\xb0\x99\xd9\xba$4\xdf\x8c\x12\xa7\xe5\xde }\xe9\ns\xf8\x0fq&\xba\nC\xffSx\xd82#\xd2\x06\xa1\xa2\x070\xeb=T\xf6\xa6=\xb9\xf8au\xc6\x00VF]\xddC\xabT\x0dA\x1ac\xbe\x10\xdaS\xf5\xd9\xa7\xea\xaf\xf3?\xff\xef\xefN\xc3\x8f\xee*f\xb39Y\x9a:\xe9cx9\x86_Q\x0fu\xe2\xc0\x0d\xf8\x15n\x80\xf3\xd6\x19\xc3w\x18\xc2\xb7\xf3\xac\xb5z\x92\xa7\xd9\x84\x9fg\xca)p\xffJ\x1b\x1d\x833\xd2o\xb5\x1d\xa7 $YN\x02\xbfT\xad\xcf\xfbq}\x96\xd6\xdb\xbf\xf1\x16\xc6\x846\xfe\xfep\xab\x15i\x9c\xe4\\g\xdcb\xdbq\xba\xc6\xb0\xa4}~%\x94\xe3\xaf\xae4G\xfa\xb1\x89\x9dgnW\x14o&\x14\x83\x0c\xeeR\xe7\xff\xb0H\xa9~\xfe\xb3\x1f\xeb\xcb\xb0\xc8g\xa8N\xa0\xbf\xa63\xf2X\xcc\xc8\xe3\xff\xf8\x19\xb9\xc2\x1a+;8wV\xdb\xa9\xe1\xe2\xa9!\xca\xe7Zz\xcc\xeb\x9f\xc8\xbei\xc2\x8a\xbd3\xd4\x0b\xc3\x1f\x7f\xc0\xde\x13\xb3$\xab\xed\x87\xca\xf9\x85\xb2+\xea\xb5\x14\xbdw\xbe\x89\xbe\xfdn\xebG1\xa6\xe2@V\xb4\xf8\xe6f\xf4-=\xe6\xe0\x06\xbc\xb1\x88\x8eo^\xc2|\xaa\xc1\x8f\xda7\x8f\x07\xf5\x8eU\xc9\xcd\xde\x8fZ3\xd5\xe0\x94~\xfb0s&\xd82\xbbi\xe3*A6i\x8d9\xfbM9\x98\xd7t,{\xcf\xb5'Z+\xcb\x13\xc6\xdc\xce\x0cY\xed*)\x07\xcb\xebP\x94\x8a\xcc\xd3\xa3\xad$o\xd0uX\xebM\xb8N\xf3'5\x84`\xabf\xf0T\x0d\xd4\xd8Z\xf2\xedVK\x9d\x8c\xd5\xa2\x14\x0f&\xd0p\xb9m\x83\xcfXx\xbd%\xef\xbb\xabV\x84\xd0\xc5+fB\xccc\x7f\xea\x1a\x12\xf5\\^(\x11\x087\xc3\x0b\x0d\xc5:\xd2-\xab\xf5\xba\xd5\x0e\x96\xdd\xba\x88\x06\xa4\xe0\x0e\xd9\x9a\xacVvZ\x1f{\x8d\x8f\x98\xb3\x8e\xd6A\xb3*\xa2\xf6\x8d<\x89\xa5\x84H\xefX\x01G\x816M\x1d\x8en\x9a\x84K\xda\xac\xa9\xc9\xa9\xec\xe0\xc7\xa4,\xa3d\xf9$\xcd\xdd\xa0'g4\x183\xcdD\xd4>k3\xf8\x89\xb96PY\xf5'\xe4U\xd4\xaf %\xa7~\xf6\xae\xca\x89\xf9\xfa\x97R T\xaeT\x81\xca\x95*P\xb9R\x05*W\xaa`\x98+U\xe0\x16\x8d\x8e\x06jO\xe2\xe0\xe3\xfb?-l\xfd\x9f\xbe\x04\x98\x0b@\xfb\x00\xf38\n\xde}j\x87\x17k?$R[?4goevS\xc30\xcb\xe0\x1aU\xferma\xe2m\xfd8\xe2\x85\x1e\xfcu\xe1\x9e\xa4c\xf0\x91\x02UO\xbe'\x8b4'\xfcp\x12\x00\xa8\xb7\xe3\xb3\xe4\xa5 \x7f\xca|::7\xdd\xd1\x18\x12\x8f\xf0?4\xc7\x82\x18\xb4\xf6\x04\xce\xf0\xf4\xd5\x9c\xa3kn\xe1\xe8\xfb\xec\x02\x12*\x837\xda\xcb<\x0d7\xc1\xb0\xb8\xfe\xca\xdb\x8f\x8d\\\x92r\x80\x7f\x94\x19\xc9O\x04 \xae^\xf5\x1a\xeb\xf8\xdb?i,\xbf)\xf6y\xce\xa2\xabme\x93y\x99\x00G)\x10\xe1G\xfc\xd8f\xa9\xa6\xae\xdb\xb1\x8d\x19X\xee\xab\xb2\xc6H+\xa0I\xd3\xc9\xf8\xaat2\x1bU:\x99B\x95N&\xe6\x0f\xe4\x15\xd0Z\xb9c\xaeY\xc6\x98\xfeG\x84\x1e\xfa/\x0f\x1e<\x90 \xe9\"M\xcac\xa6\xcfv\xa2\xd2\x8f\xa3\xa0\x1b\xa2\xd3\xfa34\xd2'\x03\xe3\x00m\x1a!)\x83\xd6\xab\xbb\xa4\xf6\x93\xee\x94\x1fc\xc72\x03\xaf\x18\x02#\xff\xdb\xe9\xd1\x8e\xa5\x9b\xc0L\xb9`\x00\xf5\x82\x81\xfeEP\xb1\x08\xc62@\xc0\x19\x04:\xac\xb6\x17\xd1\xc8u\xc4\xd6V\xf9\x05C#\x94\x06\x9ae\xe1wVyC\x87\xd0\xf2\xfe\xeb\xe39\x01\xf46&C>\x06\x90\xb7yz\xaaI\xca\x00\x9c>\xff\xc0\xcb\xa9\xea\xe3\xe4\x8dI\x06@\xde\x85\xdd\x86;$\xd3\xc0\xd0.M\xf2\xf4l\xd7^\xed\xd2\\\x90\xc6\xfa\x05\xb8l\x92\x02\xd8\xb1\xddV6\x82\x8f\xdf<\xf3\x1a\x1a\x90\x05\xa1\xf4HR\xe6\x17\xb2\x12\xb9&\xdd\xb1\xf0\x01\xee\xc8?d\x0c\x07\x06\xbf%\x10\xee\xbb'\xfb\x9ax\x10q\xa1\x0b\xef\xc9\xd4\xa2\xda\xcf\x9e$\x1f\x83\x1b\x8d\xaa<\x81\xeaL\xd5\xe2\x12N\xbc\x91\xd7\xf1\x19\x7f;\x12N\xb4\x1dOr\xee=\x02\xb3\xc6S\xa3G\x89\xb86\xb2\xa6Z\x0e\xec\xfa\xee\x9a\xd8W\x8b\xbd\x0c\xe2HJ\xb5`\x97\xf0\x0f\x10\xd7P|\x06\xd6lz \x13\x94\xb8vl:\x92(\xa3?]o|^Fb\xa39H\x13\x9b\xf6)\x97\x80\xb6CGx\xcb\x991\x95\xbe\x83\xa6D\x83\x97\xa0\x80\xe5\xdcb\xa6\x1f\x94F\xfdX\xc3t\x93CHS\xbd\x83\x94c\xeb\x88?x\xcbP\x82\xba)\n\x85x\xf7\xba\x89B\x9fT\x83\x19\xc8\x04\x1e* \xb9\x81\x10xP\xdc\xf93\xa8/\x1b\xfc\xbeDK\xd9g\xf9m#5m$\x90k\xaa/\x19\"m0I\x83\x84Q\x99\xe6F\x0d#SF\x92<\xb7P\\2md\xec_\xa4\x9b\xd2\x02\xbf\xb3p\xb9#\xcc \x884\xdcH\x18\xe55\xf8\xf3\xd5\x07\x84\xcaL\x04\x82gv\x8a\x8c\x04\xe6\xe1\x84W9\x9c+\xeb<\xf3\x0b\x93#\xc8h\xa7tj\xb6\xfc\xfc\xa2\xcdL\xeb\x93\xa7C+\xcc\x19gA>\x05\x0c?u\xc7;\x9e\x95\xa5\xe1h\x14\xec}\xd9<\xa2\x94V\xea\x9d\xf6jo\x9f\xaa\x8f\x9f\xf7c,Mgh\x86\xe9\x90\xf4\xa7\x87\xd031\x7f\x1fVg\xaf\xe9+\xcd\x99\x0fx\x08+\xb7\x03\xc5\x1c\xc3\x1a\xae_\x02\x16Co\xc4\xcd\xcc/W\xf8\xbe\xb2\x1f\xc5\xda\x8f\xe3F-F\xbf\x84\xee\xeb\x0d\x7fW\xf5gt\xce\xebFw\xff\xb3UT\x92\xe3\xcc\x0f\x98k;\x99\xe0\n\xabw\x95U\x15Gi\xaa\x01>\xb05)\n\x7fI\xb4\x07\x8b\x16]\x8cC\xc2\x8a\xa0\x93\x90\x04)3\x91;3p\xb0\x12\x8aah\xc1&/\xd0\xdc\x94\xa5QR*\xb9\x1f\xd9\xd8\xb0\xb6\xb5\x8e\xe6i\xaa(W\x07\x7f\xe2\xcd\xa3$t\x19:\xe4R\xbb\xb6\xf3\xe3f\x9dA\x99\x02\x1d\n\xc5\x96\xbc\xd6U\x88\x1fm\xb24\xd4\x04\xb6\x13m\x91C\xe5\xbc\x8c\x8f\x92ZtwJ\x8e%h\x9fEE\xe9E\x05\xfd\x8f\xdb\xd9\x0c\xf6\x9bI\xb2\x97\xb8\x9f\xb0\xc7v\xd5%>\xc4\xd2\x804\xc8!\xfa\xe3&\xe8\xe5\x91c\xcc\xa4\xdd\xa7\xd3\xa4Z\xc6\xd6\xe7v\xde\x19\x9f\x90\x90Z\x13I\x0c\x0fB\xc4\xfd\xc8$\xcd~3\xff\x99 \xd5\x95\xd2\xa86\xd6Z\xd1\xab\xf6+\x06\xda%\xd3\xd6\xad\x94\xda:\x17\xd3k9\xce\x88W\xa4t\xc0\xb1\xb1\x1d \x11\xfcd\xff\xadW\xa6o\xe8va\xf5\x8a\xe0\x06\x10\xaf\x88\xa3\x80\xb8\xd3N\xc7\x04-\x81^\x1d10\xa7\xccm\xf2\xa4-\xa51\xfb\xc2\x17\xbd.\xbf,\xf5\xbaA\x95\xbb\xefO\xa3\xe1\xfd\xe2\xa0jQ\x01\xe9\x12>\x87\xe2\x13u\x12O\xdc\n\xd7\xd0\x93\xb0\xca\x92\xf58\n\x9f\xa7\x9bD\x16Td\xab$\xaf\x95\xe3\xcdl\x1fE\x95\xce\xa837\n\xf0*?R\x7f\xb2\xda\xf3!;J>`\xea/\xd2\x1bT\xfbN\x9d\xe6\xa9s\xbf*\x9d\xcf+)0\x9dH\x13G\xa4\xc3\xbf\xc4\xf8?\x81\xb9\xa39\x04\x93\xb5\xa3\xe2\"M\xa6\x0e\xec\xaeV%\xddv\xb3\xda\x89\x89\x82^\xc8&\x8edR^dD\xb0\xb7\xc8f\xba ?\xfe\xa5\x9f\xd1\xe9\x11\x0b4\xd6\xec\xd4\x03s\xcd\xf4\x9c\xf5J\xab\xf7\xd5\xc4\x85\xa9\x06SZp6\xe22\xe9fR\xe6C`\xa5\x953\xe8\xdb\xf8\xa05\x81\x9bR\x8fm\x80\xaeE}\xc7\xda\xe9z\xa5\xdbB\xcf\x98I\x12@\x8fzU\xa9\xf9\x08\x93^~\x93\xe6\x16cI\xb5co\x91\xa7\xeb\x1f\x8fG\xee\x89C\x0f\xb5(@.\xff\xe6\xafE\x9a8o\x1b\x9c\xe3\xf8\xday:\xd3\x1e\xbd\x10!\x06\xcf\xa2\xe4\x9d&5\xfcug\x10\x13\xf7\xb6* \xfdg\xc9\x18^\x05?\x98H\xf9\xc1\xa8\xe2\x07\x93\x11\xe3|\xf6\xbf\x86\x0d|\x03\xc9\xd7\xb0\xa1\xfc`t\xb2i\xf3\x83\x1b ?(\xf8\xcd\x0f\xc5\x08F#M\x12i\xcc\xb2\xf8\xda_\xa2\x05\x17u1\xa7\x8d\x1bLx\xa5\xccn\xa1X,\xb8B\xe6\xad\xd9\xb2\xc5i\xaf3:5\x98\xb1\x96\xc7\x003\xfd)\xf2F\xb7\x87\xa8\xe6G\xe87^d\xd7\xb9\x87\x9f\x80c\x1a\x14\xadf\xed\xf4\x91\x0fq\xfaH\x07\xa4\xcad eK\x7f\xb9$aE\xb8\x0b]\xc6G\xcc\\lv 11\x0f\xf6\x8aB;\xee*\xdd\x92|\x1b\x913S\x8d\xc1\x17\x1c\xceA\xa1p\xb0\xf56\xad\xad\xb7U(\x9d6\xaa\x1e\xf8$\x9f4z\xe8/\x0bg\x0c\xa5\xc1Y\x98y\xcf\x08\xa7\x92\x08\x1dI\x8c\xb6\xe2\x9dye\xa86M\xd5OT\xc2*_\xb8\x84\x9f\x05\xec\xe4\xb6\x00\xf5(sF\x1d\xe8\x9cl\xd4\xee\n\x00=;F\xf7jbPL\xd9\x95\xe6\"\xe9}\xd3\x85\xef\xaa3A\xa7\x87\x1b\x0e\xf3\xa2S\xcd\x89o\x9a\x90\xda\xef\xc1\xe0\x93j\xf4}\x00\xd6\xc3t\x00\xab\x0f-\x0bN\x992\x86PG\x06\xc4U\xa7\xeb7\xc32b\xb36d\xb0\x15\x17\xf33\x8b, \xe9N1$G\x05\xce\xde%\x0d/\xad\xc6\x06\x1e\xc3\xc6\xd29}g_\x0b\x10\x1b\xcc\xa2\xa7\xc6\xf8[q\x898\\C\nSzE\xe1\x0c\xd2*\x19\x93\xc5\x0bt\x8b%Z/\x9c&\xe4\x8b\xec\xa9\x19u\x9b\xc0/s\xb2\x88\xce\xb1\xb0]\xbd\x0c\xc6\xb7W9Y\xcc\xc0\xf9K\xf5\x12\x8e\xc6\xa2\xd9\x8a\xde0\xda\xa1'\x1a\xb6\xfe\xdbR\xb0&\x08&\xca\x8f\xfeM\xe0\x1bVUDM1o5\x0c\xfa?\xa5u\x9cv\x01L*\x0b!J01\xc9\x1eHm&\xad;\x03\xe5[\x83SI_\xa4\xb3\x12D\xa4\x04\xc7Z\xe4\x10\xd2\xc6\xae^\xc9\xcd\xfa1\x1a\xbe?i$.H\xbcS\xfe\x077VQ!\xb0=\xaf\xff%\xf9\xc4\xe5\xf9}\xde\xea\xc7\xe5S\xf964\xb1\xa8\xed\xed*'\x91\xcc\xc3\x98\x8fb\xe4\x9e$\xc8\xdc\xc0\x1e{[V\xe4\xbf=\xab\xd7\x8a\x81\xd7\x1d8I#\xd7\x83\x89Y\xc7\xa1\x9b\x98tJ\xcev\xe2\x9fc\x8fnE\xdd\x99\xc3(\xa5\xe6\x0c1\x9a\x99\x81\x87J\xffB\xa2\xe5\xaa\x9cAN\xb9\x9dy\x1a\xb3,\xa4I\x9a\xaf}m\xfc\x9ez\xec\xb2\xe4\x00j\xf0\x96wl\x9c\x06\xef\xaad\x04\x94e\x1b\xee\x05l%z\x08\x9f\x0b;\xe9\x83\xce\xca$\xf6\xe7$\xc6\xf3HQ#|\x0cI\xdbT\xbc\xb3/\x03(\xdbW'\x1f\xb4\xb0=\xd8\x1c\x1b\xff\x05\xd7B\xcb\xf84Y\xa4o\xf2\x18\x8f'\xfa\xfb{\xbf /\xfdr\xa5Q8JS+\xa4\xaa\xd4\n\x91*\xb5\x82\xafJ\xad\xb0Q\xa5V(T\xa9\x15\xe2Vj\x05\xb4C\xb7\x01\xea\xdc\x0b\xdcR=\xdd\xbf\x16\xa9\x17zsn\xc5\x11h\xdc(\xbeD%5\xe1\x86\x9eY\xab\xb4\xd0\xe8x\xd8\xa95\xe7\x8b\xb5\xd3q3(\x16\x84\xb64\xd9\xe4jR\xe4\x9c\x00E\x1dx\xf3\xea\x19\x96\xc1-\xd1g\xc1\x81\xb7\xbb$\x80\xd11\xb6vn\xd1\x06\x0c\x85O\x8c\xa5\xd0\x9b\x05\xb8\x12l\x053\xc6\xc2\x00\xac\x85\x81\x98\x0b\x15\xf6\x86~i\x90\x89\x93\x01\x1aM\x00h:\x9e\xf3\x94\x9c\x7f\xfc\x01N\xb9\"\x10\x92-\x89\xe9\xc9c\x905\xd3\xfa\x0b\x14\x93-\x14|\x1c\x9a\xac\xfd\xc8\x08\xefc\xf2<\x87\xb2p\x16\xf1\x1fV\x8cL\xaa\x15/mX\x1e\xa3\x86\x8aq\x94.\x96\xf5*\xfc$*\xa3\x7f\x937y\x99%r\x90\xfb\xbb\x9d8\xc5\x14\x9e\x945\xd4\xb1\xf3L\xb5\xb9\xc9c\x1d\x10\xb3\xd3\x08\xee\xc4\xe4\xe5^\xa2\x0c\xa9\x83bR[S\xca\xd3A\xc7\xcc\xea\x83L\xee\x15x\xcdc\xee\x98\xbc\xcaV\xa8\xa6\xe1\xb1\x8e\x86\xd3\xdeh\xf99\xe4\x984\x829c\x085\x06\xbc\x9a\x19\xd4\x9cZ\xcd9\xd4\xba\x91\xb6\xcfA\x85\xa3\x8d\xfa\xa4\xb8\x949\xb9y8\xb0\xda\xfe\xd7\xedp(T\x87C\xa1:\x1c\n\xd5\xe1P\xa8\x0e\x87\x82\x1d\x0e2\x92_||\x92\xaf\xd7\xa0\x7f!\xf9\xe2\xb2%\xf9\xc2/v\x97 Z\xc6\x1cXo\xa1\xf8Zn\xa1\xeb\xc1_\xf5\xf7\xd6\x17v\xea\xcf\xb2\xb7v\xd6/4u\x0b\x8b4Ugp\xfa\x8f;\xf7\xae\xc7\xa6\x157\xffDB\xd1\x97\x94B\xda\x94BO0\x9f9K\xff`4\xe5\x03\x9fO\x1ed\xd7\xc8 $\x17\x06\"i\\\xf4&\x0b\xfd\x92\xb0\x86e\xc6\xdbO\x9e{\xe8\xd2d\xf2\x03K\x9d\x83\x82\xae\xa5\x96\xfdG\xa9\xd6\x90B\xe9\x8e\x13\xa7~\x18%K\x96\xd5\xb8\xf4\xf8\x9f\xc7\xa5_n\xb4B\"\xc5[g\xe1G1 \x07\xbf\x8bn\x85^\xb0\xc9s\x92\x94\x1cC\x0c\xd2\xeb\xef\xef\xb5\x82(\xba\xde\xb9\x1b\x0f\x0b\xea\xd1\x9e\xe5$tF\xdc\xdb\xb0y\xff/\xbe\xefk\xb3\xa07%W\xfa/\x8e\x0dmw{S\xfe\xbb\xaa\x1a\x7f5\x07$\x8e\x1f\xebU\xfaQ\xb2CN\xfa|XK rf\xaa'|\x9d\xce\xa3\x98\xcc`z0\xb4/N\x94d\x1b\xfbTCut$\x9f\x05\xfe\xba\xf2\xe5,\xf6\x03\xb2J\xe3\x90\xe43p\x18\xea\xc0\xfc\x02J\x7f\xa9y\xab\xbc\xc8\xd0\xbeE\xceu\xdf\xee%*j\x12M\xf5k\xd5\xc1_c\x8aS\xe6\x1b\xe2T\xd8\xe28\xa0U<\x84U\x81qs\x14\x94\xdcn\xf6\x81\x13x_O^*S\xf1R\x99\x8a\x97\xcaT\xbcT\xa6\xe2\xa5\xb2a%\xc53\xca\x15\xb4\xeeb`L\xa6\x89\x9cY\xe0\xc7\xa6\xfbR.,\xfb\xf8\\X\x08\x87\xf0\x84\xb7\xef!\xebAwO\xbb\xcf\xfa@\x1a\xe8\x84\xd7v\xf0\xa4yYse\xc0{\xa7\xe6\x96\xec8%\x11iK\xfb\xa4Wmn\x19|\xc4B\xa3K\xbf$\xd2\n\xae\xe2\x8a\x8a\xa30*\xbfO\xcfg\xb075\x12\x0bGI\xe4#\xc3.\x86+a\x80`P\x02F\x18\xc0\x13\x81H\x95\xc3\xd8?\xacq]4\xa7\xbef\x96\xac\xcdc\xaa\xd3dx\xb6E\x90\x8cD\x9boB;\x14U\xa2\xb7\xa1#\xf8d\xfel\x8c\xcf\x14\xe7\xde\xa34)6k]\xfeD\xa8\x9c\xd62?\xf7\xd7z@\xe6\xb5\x16\x15\xbcf\xb6\x1e8\x1a\xc2\x1eC\xe5\xb7\x96\xf9\xe5\xea\xb9E\x9a\x8e\xcd\x003\x0ep\n\xbfq\x9d\xefYE\x1c\x0dk\n\x9c\x82o\\\xe759/\xbf\xcb\x89o\x02\xcf\x18\xf8*Z\xae\xe2h\xb9*\x1f\xa5\xa1\xd1\x81,d\xef4R\xf0\x99\xde@\xef\xed\x08\x8bg\xe2Z\x91\x92\xe4\xbfD8[\xfe\xf7\x17OC\x92\x94Qy\xe1\xfa\xdc\xe7<\x1fyu\xd9\x94\xc2\x19s\xd3\xf7\xb3\xa8(Gn\xf7\xc8\xea^[,\xa7\xd9\xe8\x1c\xdb*\xae\xcf?\x9a\x93\xdf6\xa4(\x1f\xd9\xf7~\xddBb\xfai\xc4\xccN*Wq[\xf8,\xc8\xde\x98\xd5\x8c\x0c%\n\xd5\x03}\xfbK\xd1>\x12~=\xec\x05\x1c\xc2\x92\x89\xc7z\xc09\x02V\x07\x85\xd1[\xed\xca\xaa6\xcf\xd3\xf0b\x82X`\xf0zpB\xbf\xf4\x19\xe4\x04c6f\x907#8\xec\xdf\x8e\x92\xfa\xdd(\xd1\xd5\xfc\x1a\xc3\x9c.k\xaa\xa9\xae\xb9\xd8m\xb0\xa7\xa7\xc8\xf0\xc3\x0dpW\x0d\xeb\xa3\x03Q\xb2\xf5\xe3\x88e\x070\x0d\x8a\x93\xdf\x0b\x03\xadk\x8b\x0e+? c\xf2\x82\xdfT\x8f\x9d\xee\xbc\x0b:z\xd5\xc8\x8d\xce@\xaa\x91\x13\xab\n\xa3bp\x9a\x1ej\xca\xae\xee\x8e\x86\x13\x96\x91U_P[\x87\x11\x97i\x9b\x84Q\xa9mX\xd5h1\xa0\xc19\xa6\xa0(\x13\x08\xfc$ 1H\xd6\x86u\x04D%\xb50*\xd5PF\xeck\xa4\xa9(\xd3\xe52&O\x05\x99\xd1\xef\xbc\x87\xe0<\xc2\x1ebG\xe8+u\xd5\x02\xcd\xd2\xb3\x0c\x0e\xa6\xf9X\x95\xeb\xf8 \xd6q\xd8i\xbe\xdb\xf1N\xceKq\x8c\x89L\xb4\xc0\xca\x92\xa9?`\xf4U\xe3\xf8\xbf\xd5Oo;\xf1\xad\x89\xeb\xa9(\x81\xc1\xf9Z\x81\x9d\xad\xe4\xcb\x9a}\xa9L\xea\xd4\xbb\xab\xf0.k\xc7\x9c\xd4\x87\xd1\xaay\\\xf6D\x1eq|\n\xdf8m\x02\xe0\xf6\x04\xe0\xf8\xba\xef\xfd\xfe\xbe+\xbfW\xf3\x17\xca\x1f<\xaaz\x10V\xcf\xdf\xb7\x95\x03\xdb\xa6x\xda\xe5\x97\x9b\x98y\x05\x89\xd9\xfdY\xcdLDU\xde\x10T/\xa5B\xbd\xa4\xd0\x1cQ6\xf9\xe6\xf9:\xbe\x19y%)J*\xceJ\xe1(\x83\x8c\xcbf\x02D\xab\x08<\x84\x84\xc7\x80\xd0\x9e\x9e\x9e\xafYu\xb0\xe6M\x99\xe7P\xb4\x00\x97w~\xef\xf0\x10\n\x9db=\x86C\xd8C\x8e\x0f\x93\x17\xfe\xfe\x9e\x8e\xb2\x903M\xc4+HyLY5W'\x1c\xe1fW\xd4\xb0\x1e\x8d\x9b9\xf1\xf5\x9eH\xc5?\xd7\xb1V\xa1\xd7P\x06(\x12\x9cK\x94u@\xe2\x82\xe0\xdc\xb6\x92\xf3\x17x\x0c\xb8\x0e\xce\xb1\xaa[\xfa.i\xbb\x83L\x88\xacEMc\xda\xcf\xb5)\x0d\x17\xf8\xd97\xad7\x14\xd1I\xafXvK\xb7\xe3R\xae$J\xbcE\xe2E\xc9\x82\xe4\xc7X\xe2\x7f\xe4\xe6<\xdaF\x9dg\x8d\xbe\xb7\xa0h|\x8c=\x16/\xa6\xa8\xefT\xcc\x07+\xb0\xf0K\x1e\x95\xe4E\x12_H\xf3]*\xe6EL{kf\x14\n3\xa1\xf7Lj\x19B=~\n\xf4\xcf\xb5\xa44\x99q\xaf\xf0}\xa2\x90\x90\x0d\x8bOw\xd1i]bc\x0c\xa9|\xdc\xa7C\x06\xee\x92N\xed\x0e\xf8\xe3\x0f\x08G\x0c^\xfa\xf96\x03>\x14\xedl\xe8p\xde%\x98\x89\x82`\xa6\x1d\n\xac\x82\xa3\x84=\xa7Bl\xcb\xe0\xea\x95y\xb4vYA6\xbd!\xb6\xb1\x85\x95ek9\x99\xe8\xc7\xba(\xb0\xb3\xc3J\xea\x8eUh\xa8\xa6k\x0c3+\xd9\xf8;v\x8aURc\xbe\x14^\xc2\xfc\xa8\x0c\xc9\xef\xe5\x96\x8e\xeb\xe9J\x7f\xdd+\x10\xd0\x1f\x0f\xee\xdf\x1a\xfd9\x8a\x10\xfc\xf9\x1c\xc2\x189|\x92\x06\x9bK\x96 \xe2$\x88\x15\x94\xa1\x1cB\x98\x068\x0e\x8f\x9c\x93\xe0Q\xba^\xfbI\xe8:A\x9a]\x98Sd\xc9\xa8\xd4\x07\xf3\xcc\xf0\xb8\x12R\xcd\xb4\x95\x9ck\x88\xeb9%W\xe0\xfd\xae\x0e\xce\xac\x8bK:\x8fX\xee&\xd3\x17\xd5T\xb2]\xbf'\xa3\xd2dQ\xaa\xb3\xcb+\xdb)\xc9y\xe9\xe7D](\x11P\x14CTj)\xbb\xf0\x8ezrs\xe2\x87\x8c7b\xb6q5dk$tZ\xd4\xa0V\x89A[\xc52/\x91\x0bT\xb0E\xf2)\xfd\xa0\xe6\xf7\xebP0\xa7\x7f(m\xe8\xa14\x95\x9dJ\xf4\xc9\xf4\xbe\xecX\xa2O\x1eLUqlj\n$\xbc\xd1N$\xa5\x08(\xe3&\xab?U\xd9|\\gE\xfc\x90\xe4EW$\xa5\xe2h\xe9e\x9bb\xe52T\xc3\x84\x9d\xec\xef\xc9?\x9d\xb1x\x9d\xe5\xd1\xc5\x18N\xfe\xf8o\xce\xdf\xb0zf\x9d\xa1\x08n\xc0\xdf\x9c\xbf\x8dx|\xf4\x06M\x12*V\x93\x9e\xaa{\xfbrTC\xb1Wa@\x0e$9C\xc5U\xe6\x17\x8a\x8dP94.\xc6h{\xea\x9c\x1b\xdd)\xf2HR\xe6\x11)\xa8\x90\x04{.\x16\xba\xa1\xc7i\xe6%\xe4\xbctG#/L\x132\xfa\x9a\x8f\xc2d\x8e\xc4L`6\xd6\x91\x15\xefZ\xe3\xc8\x0d\xc7p`R\xcfS\x9e\xedd\xdfP\xa1b\x8dPS\x89#\xa6\xb8(\x12\xad\x1b\xab\xff\x038\xdd\xd5\xde\xc2\x0dpf\x98?m\xcdW[N\x0b\xfa\x84\x00\x02\xbf\x0cV\xa0>Yc\x86\x11\xb8\xc2}{\xc1{XD\x89\x1f\xc7\xaa\x15V\xaf=\xbd\x98\x12%\xf3\xf8\xa1\xd5\xf8\xed*\x06`h\x0e\xf8\xd6\x89GP\xae\xf2\xf4\x8c\xbb\x07u/\xc9<\xfc\x97\xfa/\xfaA\x8e\x8a\xf34\xbc\x90\xa5\xd6\xa1 \xcez\x13\x97Q\xe6\xe7\xe5\xcdE\x9a\xaf'\xa1_\xfa\xcc\xd1\nG\xe6\xbc|q\xfc\x9a\xfd\xdd\xdd\xbb\x1aNa\xa9\xd9\x8f\xc0-|:\xa7\x8e\xb9f_\x82q}\xaa\xfdy:\xc6\x8c\x1c\xf2\xfd\xc9&\x057\xe7\xc51\xf9\x8d\xefN\xdas\xf7\x14\x0e\xe1\xac\xbb;\x97\xc6\xdd |\xf4G\xfd\x8dw\xca7\xacq\xfb\x01\xcf\xf5qd\xdc\x82\xc0\xb7\xe1\x91v\x1b\x02\x9e\x08|\x0f>q0h>J\x8a\xd2O\x02\x92.j\xae\xdb{\x12\xa1\xb0\xd0\xda\xa0\xe7t\x83\x1e\xfe\xffq\x83z\x89\xbf&\xf4\xef\xaf\xcb\x8b\x8c\x1c\xb2{\xf4'\xdf\xb9(P\xf7\xde5\xeem\x90\xe25X\xedq\x10\x98\xb4?F\x8c\x91\xdb\x05m6\x9f\x1e\x9f\xe8\xb5\x87\xc1\xfcg\x8d=\x7f\xa6\xdf\xf3`\xd94\xf0}x!\xf6\xfe|\xe8\xabe\x0f\x1b\x94\xb7#E\xb5 \x84\x97\x13t\x07uo\xfe\xeb_\xc9\xcd\xe5\x18\x1c\xa7\xab\xd8\xe3\xe3/e\xe5\xac\xdb\x1c\x8d\xcf\xb9\x93[\x8aJz\x9b\x8f'\xc4^7F\xefK\xcc\xca\x97\x98\x95O\x11\xb32 Z%B\x95c\xb0\"k\xab\x9a\xd7\x0dp\xab\xcf\x0b\xf1#29\xd5 c\xa0.K\x1b\xb3\x072\xbeD\xc1/\xa0#\\U_\xb0\x1e\x19\xe2J~\x0dCiZ>\x98\x97\xad\xe3-Q\xde\x148\x01\n\xeb\x1f305\xd6\xff\x9aV\xf0n\xba\xa7\xb1\xd0\x17\x8e\x82H\x9b\xf8\x10\xebr\xdd*p\xcc\xa3\xdb\x1b\xb3x\xfd\xf2c\xff\x00\xca7\xbd\xd2\xad\xea\xbc~_\x91\xf64\xec\xa6\x993;\xae\xd4N+\xbcW\xc3\x95h\xc6\x94\xa3M\x1d\x17o\xc5T\x0e\xf2\x98wF[\x89\xc5\\\xe7[Q\x8c\xdb\xa8\xf6R\x16\x8a\xe1d\x16E\x92\x01u\xfcL\xebdY\xb2\x9b\xf7\xce\xa0Z`\x85\xbd\x95 \xb6%\xbbM[jw\x05\xdf\xf5\x8c\xaf\xf9\xc2\xf7} \xbe\xef\xcfg`\xfa\x14gF\xcd\"\x99\xce\x0d\xcb\xb0\x82|@\x90\x00s\xb1\xa8\xc2\x17\xf91\xac\xd1\x96D\xf8\x02'\xf6\xe6\xd8\xd8\x82\x04\x9b<*/\x1e\xd3}\x1d\x95\xa6Z\xc7t+\xe5\xc6x\xdf\x98A\xf9\x9br\x95\xe6\xd1\xbf\xc9\xf7%\xa5\xb0{\xdd@\xb6\xe6\x15\xb0W\xc4Qx\x05\xf60\x8c\xd4\xe5\xc5&\xff\xf8\x03\xfd\x9d\xae\xc4\xea\xc5\xbax\x890\xda\xcd\xb0\x96\x8a+\x89\xa3m\xce\x86z\"\x02m\xd7\x9a\\\x91>\x84\x94u\\\x9b\xdf\xaa\xb1\xad\xd4\xc6\xae\xcaAX\xb7z<~\xbaJq\xf5\x1f\x9b\xeb\xea\x93zo\xc8\xe3T\x03\xb7ht4P\x1f\xad\xd7\xd9wC\x15Xj\xad6\xd9~\xf8\x80\xd2\x88\xfbP\x89*\xf4\xa1\xc9\x87\n\x1a\xf94\xd2\xe45\xbe\xcchD\xfb\x9e+n\xac\xd3\x90\xc4\x942\x8da\x8f\x07\xaaz\xe4<\xf3\x93\x90\x84#\xa1\xea0\xb8\xc6\n\xf8Y\xff\x13\n\n\xd0\xdf\xc3\xf2\xe9\xdd\x98\xb4&\x18iW\xb5&\x87\x89\x11&\x10S\xc8\xe3\xc8\x94\x1a*S\xb8n=ZE\x9f\xba-\xcd F\x99[\xac\xfeK\xee$\xd8\x86\xeaOI7\x9a\xf7\xc3\xf0^6\x11\xbc\x1f\x8e\x0d[E!9&\xf1\xe2Er\x84\xd3j\xe2\xc5\xf4+\x0d\x15\x1bV\xa1\xb5B\xe7C\xf7D\xd2\x89\x07\xac\xf6F\xdes\x0c\x85!\x1a\x90\x0f\xad\xfd\x11s\x80N\xf0\xf5\x94T\xa3\x19\xb4cw\xd8\xaa\xb6\xf3\xf0 \xb8z\xd4\x82\x98p\x08\x991\x956P\x98|\xaa\xe8\xcd\xfe\xfc\xb2U\xe8b\xae.\xdcl\x88F'\xc1\x0c \xea\xf2\xb6\x0d\xb5\xde*\x8a\xc3\x9c$\x943\xfa(M\xebB\x0d\xcd\x0d\xc9\xc2\xcc\xaasM\xc3Q\xdaxi\x05\x9b\xbc@\xa5[\x96F\x892_\x1c\xf4\xb0\xb7\xba\xcb$\xe7?\xed\xe0v\x1fX\xab\x92\x04%\xaa\x1368\x8c\x8b\x95\xed\x12\x1eP\xe4\xd4\xc7\xa0\"|\x17S\xf6\xcb\xbf Ar\x985a\xbb\x87\xa7\x91J\xf5\x85\x02\x990\xb0h\x1d\xd1\x92\xe8\xb5\xee\xc1\xee\xfc\xeey\xde\xfb\x0e\x89k\xb0C\x1d\xaf\x0f$O\\\xf8i=\x10GO\x9b(v\xdc \xbb\x14\x87~\xbf\x1e\xd2\xf83\xf0\xf9\xbb\x96*\xc11\xfb\xa10\xdc_g\xe5\xe0\xe7!\xc1\xf8A\x19m\xc9k\x7f>\xc8VZ\x99aC\xbf\xf4\x0bR\xa2G\x8e\xfc\xc8\xb6\x92Q\xaa^\xa8\xd5\x12\xbd\xdb\x97\x13JP\x13\x98,\xa2\xa5\x02\x8a\x89%\x86\xc0\xce\x00\x13QW\xb9\x86\x9fS\n\xfc\n\xf9\xaa(Y*E\x18G\xc4\xef#\x8b\x18\xa0k\x1b\x12\xef\xc6\x0d\x97~\xba\x02\xb4HS\xd4\x98\xc1\x98R\xf9\xaa\x8d\x99\xc4\x83\xefc\x0b/W\xc9j7\xb2\xce\xb0-^\xffIg\xafq8\xb5\xe0ly\xef\xc6XG\xee\xc4\xd1\x90\xefG%Y#\x9fY\xd3\x9a\xc3\xc3ff\x9d\xc6\xd9\xf2\x10\x1c\xbe\xb3x^\x96\xc1}\xd3\x07\xadt\xba\x16G\xc9;U\x860\xa8\x92\xd9\xf0$8\x8e9\x9dJ[~\xa8\x86\xa5\x1aDD\xc7{\x14F%`\x8c)\xcb\xbe\xc1\x1a\xe1wX\x154\x8dqd\xd7\xa5\xe0\xe7\xc8\xf5Z\x08\xda\xb3\x88'\xe7i5n\xbbBlTW\xb6>l\xc7\xd6\xb9P\xcc\xb1Y<\x92\xcb\x8c\xe8_}\x05\xe9\x18\x8c\xcb\xa0\xa9\x84\xa65\x071b\xab\xad\x94\xd2.M\xa2\xa1\xf55 \xd5\xa6;h\x1d\x06\xda\xc4'\xa4\xa6\x993\xd0\x14\xb3\x14\x14Y\x97\xef\xb4\xf7\xc0(1~\xdef\xa4\x05\x15\xb1z\x12S\xca\x9f\xf4\xa4\xb2H\xbc\"\x13\xbe\x162\xa9l\xc3\x1f\xf4\xda(\xf8\x83\x9eT\x16K\x0dL(\xfe\xb8qS,W\x1b\x98\x16\x1f_<\xcbl\xc53\xbd\xcfn>\x06\xbf\x7f\x92wy\xdfk\xe3\xb3+\x92\x84ozb\xa2\xc2g7\xed\x8b\x8az\x9f\xdd\xbc6X\x1d\xb6\xb7\x8e\x8aG\xcde\x89\xe3\x01\xabE\xc92\xca\x17\xab\xf4\xcc=a\x94\xb3p\xc6@\xde\xd2o\xf7\xe9\xc0\x989Q\x8c\xbb\xe3\xa5+f\xe9\x0dSH\x85\x1a\xdfN\xa8\xb9\xe6\xbc\xbb\x0dc\x9c6\xf8V\xdd!\x1c\x19B\x9f\x9a\xda\xf8\xe6\x92V\xc7\x05J\xb2Q\xdb\xdb\xb7\x03\xe2E\xc5\xf1*=K\x9aK\xdf\x80\xa6\x1c\xc0[\xccB\xa0?\xa0\xed8\x12\xa6\"\x9d\xa7\xe7J\xdeX\xd5L:\xeejX~o\xa9\xfbu=h\x1e\xb4\xc6\xe3\x93\x84Z\x0f\x8e\x90\x9d\xae\x9ax\xb5ZYY2'P\xf6\xa7\xa9]~l\x97]C\x16\xde\xa7T\xa3\x9f\xf5\x06v<\xabc\xe3\x19\x9d\xe1]\xc3\x19\xed\xea\x1e\x82\xf2\x10\x07\xbe\xad\xd0^\xe2\xf06)g\n%\xc6\x9c\x89^\xcc\xa0c\x84\x16G5\xe7\x02\xfc\xa2\x88\x96h\x931\xeb,\xaa\xe3\x806<\xfd\x1aJ\xf8\xa6w*|\x0d%\xa5\xfcj4\xda\xf2<6\xf5\xa1Pj\x82\xed\xaa&s:\xb4d$\xba]%\xfd\xf6V~\xf1\xe2,\x11l\x0c\xd3\x16b\x04\x02\xeeZr\x92\xd3\x13(9\xc9\xdf\xdaF\xc2B\xe3x\xef\xe3D\x1f\x01S\x1bw\x89\xea\xc4&\xda\xc3\x06\x9aCN\xd8\x81\x9a\xc07PV\xb3\x9b\xe8g\x17\x1a+\\\x9e$\x860\xc6\xdc#\xc9fMr\x7f\x8e\xe7a\xebO,&1\xc6\x9a\x88t\xd3o\x04\xd0\xde\xfe\x18x\xf64\xba$X8\xd1\xcd\xbd\xb3<*+\x88\xd1X\xc1d\x12\xfa\xc1w\xe4B\x1a!\".\xdb\xa0<\xa8\x17\xaa\x9a\xff\x92\x87\x9fh\xa6\xa8\xe27(\xeb\xe66P\x89\xee=^ \x12\xd3B\xe5\xbd\x9c\x84\xe2\xea\xf7\xe5\xbd;\xeao\xb3\xc8\xa8\x8c\xae\xd0\"2\xd5\xb9\xb2\xe2U\x80G>\xee\xb9\xa4\x19\x92Z\x8eD$dB\xce\xe0\xf5EF\x8e\xf2<\xcd]\xe7\x91\x9f$i t\xcf\x80\xcf\x8e\x18\xf0\x0b\xf0\xab\xd6T\x825g\xcbT \xf8\xa014c\x87At\x9a4{\xf9\x8a,HN\x92@t\x956\x08+\xbfH\xfeV\xc2\x9c\x90\x04\xd0\xe5\xd4\x8f\xa3\x82\x840\x81b\x93\x91\xdc\x1d\xb5 \xe8\xb0H\xa8+\xb9\x0f\xf5\xfc\xee\x95h\x97N\x11m\x1d\xd8;\xc4\xcc\x9dt\xf2\x90\xc0V\x13\xd2z\xc2\x98}9\x8e@c\x9e\xdc\xa8\xcd\xba\xf2\xcd\xb1$\xe5K\x81|/\x16nd\xe9\x1e\x0dR\x0c\x1c\x82'\x18\xa5.\x1f\xd2W_\xb1\xc21\xa8\x84V\xa0\xcd1\x9dlz\xe0\xe6\xa4((\xf6\xae7E $*W$\x879a\x1fH\xf3\x06\x1e\x8d\x81\xe2\x99\x037\xaa\x86\x14\xabB\xea\xedX\x9fQ\x8c\x87q\xb1s\xad\xfd\xaaa\x97\xd2\xa4(\xf3\x0d\xe5\xcdL\x96o\xbb\xf8\x8c\x9a2\xea\x8b'\xd0K\xd0\xc2\x996b\x1fX7+\xda*M\xc9'.\x05M\x1cq\x87 \x97\xcfT\xd1\xc2(x\x08\xd2\xfb\x1c7f(\xb9\n\xb4<\x94\x8a)n4\x86\xa62b\x0c)\xbd\xa5-\xd7P\xac\xd2M\x1cV\xef\xbc\xc1l\xa5\x96\x95\x03\xb4\x019\x82\xf5\xc0\xed\xa1\x9d\xd7T\"\xaf\xc2\xb70\xa5s\xd5H\xeeY\xf3 \xd3\xb7\xf0\xb0\xfd\xe7\xacg\x1a\xef^Q+\x01;\xdd\xd7\xaa\x02P\xd0\xa03\xcc\x9f\x81\xa5p}\x910\x1f\x80\x9a$\xbc#\x17\x85\x9b#WNZu(F#\x8flI~Q\xb3\x8b\xdaC\xae\xd1b\xe2E\x05\xf2Ac\xb6y\xb2B\xc9\x0c\x01\xe2\x14\x1e\xfd\xedn\xa2\xb9I\xd1\xcf\x94\x9e\x03\xfd\xeeiW\x12:\xddKO\xa8\x9c\x1c\x9d\x10m\xc7\xe4{\xa0\x8f\xb4\x94S\xef\x18\x06\xbb\xc73\xf1\x9e\xae\xd7\x1b\xdc\xa5\xad$\xc3p\x08\xd1\x18H\x83\x89\x8f4\xbc\x8cNa\x06R\xa5\x19\xb4\x07\xf2\x9e%\x88t\xf7E\xdd\x1d|r\xdd\xb4z\xa14WR\xca\x9f\xdc\xef)\xe9\"\xfe\xa4\xa7\xef\xf3\xf9\x83\x9e\xbeo\xc3\x1f\xf4>U\xf0\x07=}_\xcc\x1f\xf4\xf4}\x81T\xdf\xb7@\xf0\xa0s7\xe3\x1f\xb9\xd7t*\x08\xd5\x8a\xc0\xf0\xe3+\x02\xf5e\x8c\x86(\x02\x15\xc1\xfb=\x97\x0c\xad\"0\x96*\x02\x83J\x11\x18\x8f\xc68\xd7\xfb_\xc3\x02\xbe\x81\xf8kXP\x81%8Y\xb4\x15\x81\x0b;E`a\xab\x08\x8c\xec\x15\x81\x01W\x04.yd\xb2\xff=\xaf\xa9n#\xc7\xf1>\n\xdd_\xcb\xaa\xe0E\xc5\x8b\xef\x8eoa\x01\x87\x93\xdak\xa0p\xc6<\x1e\xc7/\x1cz\xae\x9c8a\x1d1\xe5\xbc\xed\xb5\xf3\x9e\xf7\xeeQ\xc7\x13l@\xff\x1c\xe8\xab\x86\xf0\xb3,\x11\xde\x15h@\x15\x8aN\xce\x8f4\xe7G\xbc\xc0\x93\x1b\xbe\"E\x1aoIx\xbc\x99\x979!\xeeI\xb50\x1d\x85\xaed\x85\\\xbar\xf4\x900\xa5\x17(Z\nU\xdb\xf4\x02\xb1T\xa1\xba\xf9\x04\nU\xbd*\xd5F\xe5\xca\xb2\x1d:\xfaa3<\xcf\xfd\x80\xa0\x8d\x18\xb8#\xb9\xaa=F\xb8,\xa9\x90\x1dE\xb4\xebb\x94$$\x9f\x18z\xa7l\n\x1d&\xad\xdb\xda\x0d\xe1\x9c\x12k' z}\xa4\x99#\xa7\xcc\xb5\x9d\xb1\xcb|\x96\xc6\x98\xf8\xec/w\xef\xde5h\\\x17iR\x1e\xb3o:Q\xe9\xc7Q\xb0C\x9a4\xf5`\xc2\xfa\x90jp\x893GG\x99\x1a/\xa9`^h\xa7(\xdd\xe4\x01\x99\xc1\x91\xbc\xbb\xa3Q\x8d\x80\xe7\x94H\x9f\x8b<\xd0\xe7J\xc3\xb4\x95\x0fw\xc7i\xcf\xa2\x8e\x1b\x0bi2\xd9\xae\xd1=\xe9dj\x80\xa2\xf2\xe4\xa9\x8b\xa7\x8e/\xd8\xf2,'\x81_\xea\x99X\xe0\x02\xe6\nm\xa9^T\xa0I\xf5\x1d~\xe8\x9d\xc7\xad&\x85\x9b\x1b>\x91)\xf3\x1f5\xaf-\xe5\xdc\x03?\xfe.\x8e\x96\xc9\x0c\x9c2\xcd\x0c\xf8I\xaf\x8cr\xff\xc9\xf2\x15\xf7\x9c\xd8\xf7\x0e\xc8\xda\xc03\x1amQ,\x026\xf3(\xfe\xff\x82>\x19p\x08\xce<\x8dC=n\xeaw'\x08\xad\x84&\x0d\x04\xb4I\xca\x86G;Vk\xa5\xde~\xa6=\xa3\xef\x17\xa7\x1c\x99\xee\xfb9\xe7dv'\xcc`K\xa3\xa0A\xa7r\xdd\xb0AIy\x80\x1f<\x7f\xd7s:\xf6sc\xee\xb1\x0c\x81w\xef\xb9\xaa\xcb/\xc7\xddT\x00\x16(\xc7\x03\xbd\xd0V\x99\xc0\x0dp\xf0WN\x7f\x9d\xd2_\xbe\xae'F7\x07!\x0f\x1b-\xf1m\xbf\x00\x83\xd5\xab!\x9b\xf1:\x84\x0d\xcd\x00\x86+\x9a\xdb\xe2\x0e\x02\x81\xa1%\xeeIa\xf0 \xe0Q\xdc\x0b\xb8\xa1\xb3\xa8\x8dd\xd62\xf6\xa46\xa8U\x87\xcc\x99\xf1\xb8\xe7'\xe4\xff\xfc?\xa7\xfdV\xf9\xb1\x0f\xa4\xc4\xea@J\xf9\x81\xa4&\xb2\x18\x8dw>\xe1%b\xbd\"\x8e\x02B{s\xa0,\x08+\xae-/\n\x99\xc2CH\xbd2\xfd\xf1\xb8\xfa\x81S\x9a\xf2 \xb2\x8a\x80\xbc\x0c\x19\x07\xb1\xaf,\x1cU\xac\xc9\x074\x99\xb3{\xf7\xee\xe9i\x07h\xe9\x07\xd8\x1c \x0c\x97\x92K\x92G\x18:\xc6\xc1d\x12l\x86\xda\xf1\xfc\xf3U\xbb\x10\xd4\xbc\xaal\x7f\x1e\xd3\x13\xefX0\x816;\xd5f\xce\x9do\xe0\xef\xf0\xed\xa59]\xc9Q`\"\xd75\xa9\xd6EuZ\xd3\xe9>\x8d\x1e\xaa\x8c\xb5$\xd3\x82D\x1f\xabA\x8c\xe4\x19Is\xb5\xb2\xbf^\xe5z\xa2\x0e\x0c&\xdf\xda\xae\xe8\xaf\x1d\x8am\x88\x197\x91,\x1b\x1f)\xa4W\x9a\xd8\xed+E3\xb0F5\x18\x82n G9T@\xa2\x89\xd2\xdc\x8c\x19\xd5\xa0\x81n\x06\xa7 #\xca\x01(\x92\xad@W\xda\xfc\xe9*\xd1\x11U\xaa\x03\xd0\xf1\xa7/\xe8\xd8\xb8.\x89\x8eL\x9f\xfd\x99\xa3\xe3\xab\xabD\xc7$-\x07 \xa3\x01\xad>\xbf#\x11\x0d\x14Wv\x02\xbe\xba\xec XW\xff\xba\x94 \xa0\xaf\x08\x0e\xe2\xb4\xd0\x94K}\xef\xec\xe0G\x98\x19\xfd\x08\x99\xe1\xee\xba9Pe\xca\xcc\x90\x99\xd4M*\xe2O\xa41\xe4\x99*\x86^z\x971\xa8\xdc\xbc\xac\xdc\xc6\xa0\xf2\xf42\xbbR\x01W\xe1G\x83E\xffd&\xf4\xb7^\x94\x84\xe4\xfc\xc5\xc2\x95\xa4\x12j^\xa6\xd8\xa0%\xcf\xeci\xe1\xfa\x03\xdci\xac\x1c\xe0\xd6\x03\xdcw\xcc&y(p\xe7\xb1\xd2u\xc4\x81h\x02?\x83C\xd8R\xd2~\xb98\x17\xd8\xc5\xbb\x02\xe0\n\"l`wg\x06`\xedo/\x13\xe0d\xd5GK;3\xe8\xe7C\x1b\x9d\x0b\xb5\xeb\x82!\xc4\xaf\xf6L\xf0\xe1\x9bC\xd8\x18\xc8L\xbf\xc2\xd3\x89\xe7yo\xb5#pN\x9c1\xac\x85\xdem\xbd\x9b\xae\x1b:\xfa\xeef\x90\xa9Y\xdf\x0d\xd6:o\xa8\xcc\xb5:\xbd7\x98q\xc1\x18\x97\x05\x95\xe2\xb96\xe2\x98\xfbF\x8f\xd0\x7fX\xaa\xab)\xec\xcf~l\xb4R\nX\xceB\xc9+\x1d\x8aK\x91\xcb\x8a=\xaad\xce\x0c\x1e\xee\x1ej+\x0c\xfb\x1a\x13&m\xa9B\xa9K\xc5\x1b\xb6v\xa3\xa0\xda6C4\x11\x01=\xd4\xfc\x12\xe9\x8c\xc1>\xa51\xb4\xa4\xd8\x80K\xb1V\x078\x0bvN\xb4\x9ex\xd0\x10f\x0d\\\x87\x9dh\x0e\xb5\xe8\xeb\x1bU\x1fcpZ\xf17\xad\xe7\xbd\xbb\x1dy\x14o}\xb6\xb1mr\xc93UI\x9e\x91J\xf2\xf4U\x92\xe7F%y\x16*\xc9S]\xad \xeb\xc5qRy\xd4\xcd\xea0\x9c\xe9\xfe\xe7\"\x80\xde\x9d\xd3\xff]?\x19TR\x14\xa1/\xf4)e\xd0\xf4\x03\xc8\xa0;\xe6\xf8\x87\xeb\"\x83\xdaH\x89\xc9@i5\xddAZ5\xcb\x8a\xfe0Yqc+\xda\x16\x18D\xdb\x0d\x15\xd1{\x03\xb0d\xc4{\xe8\x9f\\E\xa4\x18J\x07\xa0\x06S\x9f\x0d$n\xc4yP\x81\xce\xc2K\x8d\x83/\xd2|\xedk\x95\xb6\xc0\xb7#\x7f\xe1|m\x94\xaa\xb654F\xaa\x1a\xc0\xd7\xd2 \x15\x9f\xfec\xc8\xa7\xb1\x1c\x1c|\x03\\\xa8d\xe1vKR\xd6\x0bG\xf7\xb6\xfeE\x94,\xafL\xf2\xc6\xa9\x19C%\x81\xf3\x95\xb8\x02\x11\x9cw\xf1\xa7\xb4\xdc\xb9\x97\x17\xde\xca/\xcc-\xe9\xe7\xeb\x14\x8fe\x18\x83i.)Y<_\xc7\xe8\xfa\xb7\xfa\x0f\xd9\x13vS\x07;m\x0c\xe3\x84\x83\x81\xf1h\xae\xbd\xf3?\xff\x8f\xfe\xcf\xc1\x14\xe2\xce\x0c\x9c1\x1c\x97y\x94,\xddT\xe7M\xdaL\x94T!\xe8Vw\xe6\x9e\x99&\x83K\xaa[\x03\xa7\xdf\xf2II4=\xbc\x9c\xc2\xcb\\\xfa\xeb:(\xbc\xc6Pz\xe2}I <}\x86\xa7k\x91\xe0I\x14Qj\x8d\xc3&\xd3\x13?\x1e\xfa\xd8\x92T\x8f\x7f\xf6%*\xd9\xb4z\x8c\x87\xc0\x15ef\xe2{\xb2\x97\x0d\xc9*\x05S\xd9\xd9yI3W\x92\x1c\xf9\xa2k\x80|}<\x8be:\xd5\x94?\xe8\xe9T#\xfe\xa0\xa7S\xf5\xf9\x83\x9eNu\xc3\x1f\xf4t\xaa\x05\x7f\xd0B\xf2X\x8d\xe4\xf1\xc7G\xf2\xe0\x8a\xb2\x14\xa5*\x05f\xcf\xbbF\xa6\xc0\xcc\x87+0\x95Y\x8a6R\xc5edR\\~\xb2,Ei\xf2:\xbfH7%\xa6\xdfV\x03'\x1c\xf8\x91\x9f\x04$6\x00\xe7\xcc\xab%\xf1\xe71 \xb5\x01\xfe\x86\xba\xdd\xea\xb3\xb1U\xa8<\xbf\x98\xa4\x1buT\xb7\xb6R\xfb|S\x96\xf6Y\xd1\x9dy\x99\x00o\xef\xf4\x94\xfe\x11\xe0\x84\xd8\x147\x97\x1f\xcb\x94\x0fd\x93\x8aa]\x1f\xaa\x9f6\x1dT\xd4\xfc\x1b\x83\xf3:\xbf\x80\xa8\x84tS\x82\xccdfp\xdd\xd4\x17\xf7\xaeX#V\x12\xaak?i\xe1\xe7\x0c\x9e\xf0\x1d\xd0\xa8\x86\xd6\x01o`\xa8\x19\x9c\xe3\xe8\x0c\xf6jc!&\xc8\xa8\x0f\x95\xebYp\xfc\xcb\xa1\xf2\xe5P\xb9\xbe\x87\xca\xfc\"\xf3\x0bC\x91\x16\xe2E\xc5\xf1\x99\xbf\\\x92\xfc\xc0t\x94\xb0\\?\x1a\x12\x86P~\\\xa4\xc7\xab\xf4L{\xe2\x94\xba\xc3\xa0\x19XP\x8f\xd6\x0bVQ\x1c\xe6$A\xa1\x0e\xcb\xfc\x98?bG\xa6\xb7$/\xa24\x99d\xb9\xbf\\\xfb\xca\x13,\x1d\x7f\x88\xe6NO\xd7\xa4(\xfc%\x01\xc5\xfd\xc9\xc4_\xcf\xa3\xe5&\xdd\xa8\x0b~X\xcd\xa5\x12hu\xab\x0e\x0ey\x83\xb4\x18\xca\x14\x18\xc6\xe2\n@]\xea\x06\x13\xc7\xa8>\x94\x99\xdb\n\xd2\x90\xd4\xad\x15\x0c\xf5X\"V? \xa9\xa4a\xf9j\x9a\x91\xc4\xcf\"\xf6\xea\"\"qXP6 IK\x98\x13\xc8rR\x90\xa4\xc4\x8a\xd4+\x02\x85\xbf&\xc0\xf1\x1c\xd2\x1c^d$\xf9\xee\xe5\xd3\xc6\xb8\xeeY\x8e\xdc9\xdedY\x9a\x97$\x14\x0b*z\xe7\xe7d\xc0\xf8\xf8\xd4\xa0\xf0\xf57\xe7\xc0\xdbw\xfeV\xcdR\xb9J\x0b\x02\xe5\xca/a\xed\x97\xc1j\xc0g\xf9\xb4\xcd\xe0\x96\xb7\xef%l\xf6\xdcE\x9a\x039\xf7\xd7YL\xc6\xbb~k\x1f\xbf5\xf2\x1c\x11\xd3BI\xb0\xc5\x16\xd5\xee\xf3\x0f\xb0\xdf\xae\xdf\xf6^GE\x11%\xcb\xcfgs;\xafWt\x87\xa5\xdb($a\xe3u\x08SR`\xad\xdd\"#A\xb4\xb8\x00\x9f\x1eoQg'X\xef$\xbe#\xa3$\x8c\x02\xbf$\xd5\xd7$\x1b\xb9\xdd\x00|\xd9\x83\x97\x11\x10Z5I\xed\x85\x04q\xf2\xcb<\x0e\xc5\xa6\x96=c|\xca\xe7\xc7\xfd_c\xd5\xe5\xe0\xdc\xf4l\x97\x0c\xd48\xae\xfd8\xae0Q \x96\xe5\xf2\x9cm\x12\x9a\xd9u\xb7\x03\x07\x13\xb6\xe3\x7f\xafY\x92v\x8a\xa0\x8f \xc9\x9eE\xc9\xbb\xcf]\xbd\xdd\x18\x87\x0d\xb2pq]\xa9\xde\x96F/1\xe1\xa0$\xe7\xe50$\xf3\x8d\xb8\x93\xa4\xa8\xe1\x96\x88V\xb5N\x05\x1e\x1a<5\xa11\xd9^\x96\x93-I\xca\xc7\xacG\xae\x84\x92*\xf3\x9b\xae\xb0\xa2[\x89\x15\xddn\xb2\xf4N\x0c\xb4\x8b\xd9&=>\xdbT\xe9g\xa9n\x1f\xe3j\xf7\x1d\x89)\xb6\xb9\xb8+F\xacLk\x0b\xa1s=B\xe7\xed\x19\x94O\x86R\x8a\xe6k\x1b\xd9\xb0RJ UU\xc1\xf3u\x9c\x143pVe\x99\xcdn\xde<;;\xf3\xcenyi\xbe\xbcy\xb0\xbf\xbf\x7f\x13_\x93\xbf\xf4\xcf8J\xdeI\xdf\x9c>x\xf0\xe0&\x16 \x94\xbc\xabM\xf0\x93\xa5\x05rc3p\xfcy\x91\xc6\x1be\xf9{^\x05QQ\xbcF\x94?\xdc\xef\xa3\x7f\x17\x99\xd5\xd3J\x16\x85\xc5\xbc^\xac\xe7i,\x9d\xdamD\xce\xbeO\xcfg\xe0\xec\xc3>\x1c\xd0\xff\x93\x0c\x06\x0bNm\x928\x0d\xdeu\xd3\xd3\xe9z\x97\xb1<\xe0\x12\xa4\x9b\x81\xf3|z\xc7\xbb\x0f\xf7\x7f\x98\xde\xfe\xf9\x8ew\xf7\xd1\xf46\x1cx\xf7\xf6o\xc1\xf4\xc0\xbb{\xf7\x0eLa\xba\x0fS\xb8\xe7\xdd\xbau\x1b\xa6p\x97?\xbd\x0bw\xbc\xbb?\xdf]\x1dl'\xde\xfd\xfd\xe9\xa3\xfbp\xcb\xbbw\xe76\xdc\xf7\xee=\xb8\x07\xb7\xe8K\xb7\x82\xa9w\xb0\x7f\x8b\x0e\x07\xf0\xd9\x01\x1cx\xd3\x07\x0f~\xbe\xff\xc3\xed`\xe2\xdd\xb9s\x0b\xf6'S\xf0\xee\xde\xbe;\x99\xc2\x14\x1fM\xef\x05\xfb\xe0\xdd\xb9\xfd\xc0\xbb}p\x9f\xde\xbb\xf5\xc0{p\x87>\xbd\xb5\x7f/\xa60\xf7\xbc[\xf7\xef=\xba\xe3\xdd\xbdw\x00\xd3\xfb\xde\xfd\xbbS\xb8\xeb\xdd\xb9\x03\xd3\x07p\xcf\x9b\xc2\xf4\xc1\xea\x8ew?\xa0\x9f\x80}\x98\xd2\xcfL\xe8W`J\xbf3\xa9>swB\xbf\x13xw\x0enO\xbc\xe9\xdd{\xde\x83;\xb7&\xde\xbd;\xec\x07m\xee\xee\xcf\x0fh\x97\x1eM\xef\xc1}\xdaG\x98\xde\xf5n\xdd9\x80\xfb\xc0&\xec\xdf\x9d\xf9\x1f\x8d>\xf8\xca_\x9bu\xff\x93\xac\xe0\xf3\xe9\x01\xdc\xff\xe1\xfe\xcfw\x10l\x10\n\x7f\x82\xd5\x97\xe4\xb9\xb8\xc4\xe2\xdf\xf6n\xdd\xbe\x0f\xd3\xdb\xde\xfd\xdb\x0f\x82\x89w\xfb\xee\x03\xfa\xff\x93\xa9wp ~\xdd}p\x0f\xf6\x9fQ4\x98z\xf7\xa7\x0f\xe2\xc9\x81w\xf7\xce\x94\n`\x07\xdaW\xf0Q\xe3\x1f\x04\xa0\x98B\x1f\xc7\x07\xde\xbd;\xf7'\xb7\xbc\xe9\x9d \xfd\xf9\x00\x7f\x1e\x04\xb2\x97\xee\x8b\x97\xaa\xdb\x80\xb7\xc5\xcf\xaa\x83\xf7\xbd\xe9\xfd[1vor\xcb\xdb\xbf5\x0dto\x80\xe8z\xf5\x9ca\x1a\xed\x1d\xf6\x89b\xc2\xf4\x0e]k\xf1;P\xbe\xf2)0AY,\xf7\x12\xf8p\xcb;\xb8\x03\xd3\xfdgw\xbd\xe9\xfe\x038\xf0\xee\xdc\x0f&\xde\xc1\xdd\xfb\x13\xef\xe0\x1e\xffqo\x1f\x17\xf7\xc1\xbd\x07\xe2\x81wo\x7f\x8a\xff}p\xf7\x01\xec\xc7\xf7\xbc\xfb\xb7\xe0\x9e\xf7`\xff~@!\xbc\x83{S\xfc\xef\xbd}:[\xf4\xc5x\xd2\x80\x99\x08 \xfa\xe9)\xb6\x83\xdf\x11\xed\xd2\x15\xec4\xfcL\xf4\xf3\xd3\xce\xfa\xa4\x1fyy\x89\xa9\xbf\xe7\xdd\x9e\xde\x07\x9c\xf8\xc0;\xb8w0\x11\x93\xc6~<\xb8\xf7\x00\xf6\x0b\x9c\xcc{\xfbS\x9c\xc8\xbb8\x91\x0f\xf6\xef\x03\x9d\xce\x00\x97@\xcc\x14\xfb\x81/q\xa0I\x05\xd4XQ\xfc\x14N8[\x81~\x93\xb8\xf3\xe9t\xc7\xd8\xc1\xc9=oz{\xfa\x81\xe6\xfd6\x1c\xdcV\xcd;/\xcbqe\xd3\xfd\x00\xeemo\xffp\xc7\xbb\x7f+\xbe\xe5!)\xba\xf3\xe0\xd9}\xb8\x1bO\xee\x02\xfb\xdf\xd4\xbb=\x9d\xd0\x7f\x9eQ(\x98\xde\xfa\xe1`\xfa\xf3\xbdO0t\x16\xf1~e#\xdf\x87\xe9\xfd\xd5\xed\xed\xe4`5\xb9\xbd=\xf8\xf7\xf3[pw{\xb0\x9a\xde\xff\xf9\xee\x0f\xb7\xfe\xbd\xbe\x05\xf7V\xd3\x83\xed\xe4\xe0\x87\xbb\xdb\xff\x8f\xbdw[r\xe4F\x16\x04\xdf\xfb+\x90l\x9d*\xb2x\xc9d\xd6E\x123\xb3\xb2\xd5j\xe9\xb4\xd6T\xdd2\xa9\xfa\xcc\xce\x90\xacj0\x08\x92\xa1\x8c\x9b\x10\x08ff 5\xd6\x0fk\xfb\x03\xbb\x0f;f\xbb/\xfb0k\xf3\xb2f\xfb\x0b\xf3)\xfd%kp\x07\x107D0\x98U\xea\xd3\xe7LS\xb2\xca\x08\x04.\x0e\xc0\xe1\xeep8\xdc\xcf\xeb\x9d\x1d|\x1c\xc5\x84Q\x18D\xfd\xf3O\x07\x13\x9a\xa6\xfe6\xaa\x9f+G\xfd\xe9\xd9Y\xd5\xa6\xd47\x1f\x9e9\xce\x95\xd5\x87\xe9s\xc7\xb9\xb2\xfa\xf0\xb4\xbaCK\xf1\xc3\xf3j\x13\x81\xf3F\xa5\xdd\x9b\xa9\xba\x9e}\xee0u\xdddA\x80\x9f\x9f\xbb\x82\xedxq\x18\xc6QH\xf9\x8d\xce4\xad\x1c\xc5\xba\xd4$\x9ekP\xd5\x0f\xce\x10R\xee\x91+\xf5\x19\xdeX\x04\xd1\xbb\xf5[\x0c\xd7\x95\xd0}\x8b~\xd6_D|\xc3\xe0\xc3|\xa9S\xfc(\xf0#\xf6*^3rEN\xa6\xa5T<\x0d\x85G\x9d\xbeR\"(\x1e\xba\xaa'\x9d\x8aJv\x86\xa7\xa7\xe6\xc5\xb4x\x9f\xc4[N\x93\x9d\xfe\\x/\xa0S\xbd\xf7\x1b\xe7-\xa9^\n\xe6y=rrE\xc4}\xc2\xe2\x0d\xea\x8c\xfa\xa0\xb1\x19\xc1\xc1qOOWoP\xedL\xc4nIV\xe9\x89J\xa3:\xcd\x8b\xb9\xc9\xe6\xd7\xbb\xa6\x92c\x93\x9c\x056-\xad\x8d\xba\xbd\x1e\xef\xc1\xd5\xc9\x8c\xb3~0gK\x03O\xcaD\x1f\xae\x1e\xfe\xfc\xbe\xba\xa4`\x08r\xf3\x11\x95\xb5UY\xc5\xfb\xc5\xa6G\x84\x15*\x1c\x95j\xb2\xa0tR~\xa9Z\xcb\xfa+\xb80\xc9\x06D\xecx|\x0b\xfd\xfe\x8a\xf3\x98\xf7{\xff\x81\xc7\xd1\x96\xfc\x993\x85\xdet\x15\xb0?\xe3\xa1\xa4\x18\x11o\xc7\xbc\x1b\xb8\x9c\x7f\xea\xa1\x13\x8e\xea\xbd0\x8b\x9f\x18\xabF\x8d\x8cM\x1a\x8c\x88\x02[\xab\xe7!\x87V\xe4\xdc\xb0\xfb\xb4_\xfc6\x98lb\xfe\x15\xf5v\xb9-{m\xd5`sy\x99y\xb4\x84i\xc4\xa6\xcd\x1b\xd7Z\xbf\xbe3+\xc4\xd2\xaa\x10\xc6\xa6\x01W\xd4\xef\x8a\xb4\xde\xf93\x8a\xb8\x82\xc1\x87zj\xaa1\xa1\xfcp\x9dj\x06#\x8d\x99\x9e\xae\x18\xf29\xd5\x91\x16\xedU3\x1eK\xd3~4\x18\x91H\xd3\x89&@\xf4\xa1Z\xb7\xde\x01:!\xb6W\xd6\x94~@\x14\x86\xcea=\xe5\xf5\xa4RZG\xe4\x1b\xb3\xbc?\xe2\xb8D\x15\xbax6\xfa\xa0\xa1\xea\x06\xe2\x03\x06\x0c+\xee2l\xe0\xf7+\xe6B\xd1\xa7M\xe1u\x92 ?H\x0dC\xfe\x15\xf9(|\xbd\x81\xa1?u\x1e\x07\xf85%\xa6%\xb1)D\xfeE!\x01\x9c\x8e\xc4\xa6\x97[&~\xcb\x19U\x14<\xb6/\x0ebZ\xec\xb6\xaf$\xa7nS\xe3\xe0\xba\x9b\x98\x93\xbe\xe9e\x0e\xe1Hk\xfc\x03\x16m\xc5n\x04B\xca\xd9\x08D\x92^\xef\x82\xc4\xe3\xf1\xc5\x80P2\xbc\"|\xce\xe6\xfeR1@\xb6T\x8d\xf8\xc3!\xb6\x84]r#\"-\xcea\x1d\xfa\x8f\x0b\xf7x\x9a\x03>\x1c\xfa\xe4\x92\xc4\x17\x03\xd2\xc3\xa5\x80\x8e\xf3m\x17\xc85\xf6\xaa\x80\xa0\x06\x19U\x16s\x0ej`\x9a5\x8c\xc1Q#\xf0\x91\xb0s\xb2\xa3\xa9\x0bC\xd5\xa7,b\xa9G\x13\xf6j\xed\x92=U\x0e\xce\x92\x80z\xec\xabH\xf8\xc2g\xa9K\x12U\xd9\xb0\x9a\xdf\x8b0\xa8\x8b\xa4?\x17\xb4\xfa\x19J\"?e\xb1`o!\xa6\xd5a\xed~\xef2/\xf3rQ\xd8\x88\xbe\x1f\x95\xeb\x03\x95QG\xb2\xd3\xbb<-\xd4\xda#C\x92b\xf6r\xed\x1eR\xc4.5\xb2\xb9Xj9\xeb\x9a\xf4.\x13\xce^^\xaa\xe2P9\xed\xc3g-\x17\xc0u\xe6\xcbS\xf8zy\xaar\x16\x00 3\xd2\xebR\xb02\x0e\x1b\x16y\xae\x85=R2`\xe0\xe2\x0f\xdeH\x91F\x08\x1d;\x17\x8ekjkX\x1b\x8e\xc305\xeb\x93\x80F\xdb\xef8\xdb\xf8wu\xc9)Q\xe4\x9a\x86\xa9K(Q\xdf\xc1\xc9\x0c\xf8\x9f\xd1\x19'i\x12\xf8\xa2\x7f\xbaH\x87\xa7\xdb\xc1@\x87\xf2\x86H\xde\xbc\x1f\xe0\x12\xc6\x1e\xbe\xf5\xb2T\xc4\xe1\x88x\xf3\xb3\xe5\xc0\xfa\xb1p\xe5\x99\xab,\xcb\xca8\xd4\xed\x17U7\x1f\xe3\xd1\xe3U\xef1\x19\x92\x1d\x0c\xbb\xdf\x8f\xfb\x9b\xc1@\x8d\xf8\xe3\xde\xe3R)\xa7)ia\xc6\xd5\xbc\xad\xd5L\xc1\x0c\xf6\xa3\xc9\xce\xdf\xee\x02\x88p\xf4\xe8\x11)\xbcj\xc3\xd5B\xca\x88\xcc\x133\xd90\xeb\x1e\x15}o\x80n)\xfa\xf6\xd3\xa0\x15\x83\x1c\x88\xa1\x87DK\xeb\xd9d\xc7\xe8\xda\x8f\xb6\xb5%\xd8\xbabv\xaa\x0d@\xc7\xdd\xb7l\xcf\x02\xecb\xb95S\xf1\x91k\xd1Yum\xad\xef\xbap\x00c\xda\x1bM\xeev\"\x0c\xfe\x98\xc1\xb1\xed\xe5\x8e\x93\xd3\x97=X\\;\xfe\x12<\n8\x87k\x95\x05\x01\x13o\x03?\x15\xdd T\x168\x08S\xa1\xa2#G#\x0b\x9a\xa7\x13\xea\xf3\x05\x0b\xbbC\x17\xf8\xd5Y\xca+\xa9A\xd6\x0cU\xe0\xd7;\x19s%\xaa\xad\xdd\xc3\xd5&\x98\xaa\xb9v2\xc0\xdee\x1c\xe8e\x03\x95\x93\x97dJ\xae\xc9c\x92\n\xca\x05\xaeP\xf3 \x96&FTu#L \xbc#'!n\x99\x04E\xb5`[\xdf\xa9\xcfE\x06!\x80\x0c\\\x93\x1e\xa2bR\x9d\x99\xbc\xe6N\xe0\x9a\xe1<\xe9\x17jW;\xe659\x07\xe1\xf1%\x05\x1b\x10\x03\x07R*\xce6\x06\x06\x0c\xf3\x15\xbb(\"\x8c\xc1\x11\xcb\x8cV+\xf0C\xba\xed\"\xb2\x9b\x01|LR\xee\x95 M\xb9\xa7\x01\xad\x8fS\xf6\xd0!oX\xbd~\xb85Q\xcf\xfa\x8f \x0d\xf4hc-4P\xf3\x80\xcc\xd5$\xa0]1.\xe1\xc7\xbd\xc7\xeaO\x86\xeb\xbfH\xbf\xc9i\xaf\xb0\xd0+#\x04\x11D\xbb\xd3C\xc8^'\x16X\xcb\x113\xd5T\x8f\xe2\x81G@\xa3\xb27\xd5r\x0c4\x0d\xf5\xac\xe2\xf5\xfd\x11\xd0\xa8\xecM\xb5\x1c\x03MC=\xfc\x08Pxm\x9e\xf9Q p\xd7\xa8v\xa2\xd8\x1d\xb8\x94\xd8i.E\x03\x7f\x1bi\x0eu\xaf\xd6\x8d`wb\x0c\xa93\xa43\x98\xa3\xca\xac\xea\x90\x1d\xd3\xb7]\xad|\x1d\xe5\x1e\xda\xb3\xf5G\xee\xd9qh\xbc\xae\x96O\x05\x8f\x1d\xa2jc\x15\x98\xbf\xa1\x96# q\xd7s\x8c\xe0\xc5BG\xe9# \xa8\x97_\xb3\xa0{\xf3k\x16\xb8\xca\x1f\x01\x80\xa3\x06?J\xbbC\xe0G\xa9\xab\xfc\x11\x108j\x08)\xaf\x0b\x15\x8d5\xa8\xdc\xce\x1a\x8e\x00\xc2UG\x9a\xad\x0e\xad\xb5\x1c#\xb3U\xf3f\x1e>V\xebN\x8e\xa8;i\xab\xbb&`\xee(_\xaf\xb4.\xf1\x90D\xa1\x1b\xa9\xec\xa4Vj'\xb5\x88P\x12\\9\x88l\x1ao\xc4\xd1M@\x81\x94\\whM=\xd6);\xbb\x13\x1d\x07\xad2T\x95\xf1\x11a`N\xcb\xbaTV\xac\xaa^\x93\xa0\xdb\x0f\xae\x87\xaeVu\xae\xd9R\xd3\xe3KU\xe2\xa0\x14\xf7\xf2\xb1\xa3\x99#\x16\x85\xca_SB\xc5\xb1\x88b\xc1\xder\xb69\x04\xad\xe1D\x7f\xc8\xc2\x15\xe3\x08\x9f\xbf&C2\x1dLD\xac\x1d\x938N\x97\x95\x88\xdb\xdbD\x9cm\xc0\x10\xdb\xc9\xc4P\xea\xcdV\xdf\xac\xc9Kr\x06G\xa6\x9c\x0c\xafHof\xf5\x0c\xf0u0\"\x8f\xd5\n2\xea\x1f\x03\xffX\xd5\xfe\xd2\n\xfd\xbf\xdeD\x8fuL\xdf\xc7=\xe2\xaf\xaf\xac\xc4\xff\xb8\xf7rn>\xf5\x96Jxw.:;.\x80Y]wD\xba3eI\xf8\xf1\xe5\x8eW\xc1M\xc7)Kz\xb0N\x14\x1fn\xce\xa22\xc0\xec_\xa6\x0c\x9a\xaeeSY.\xe3\xa0^\\m\xa1\xa1|k\xcf\x8e\xc0\x9f8PM\x9dj@\xeaT\xc4\xd6|\x14\xea\x07>\xcc\x0fNX;j\xe1l\xd6\xa6\xde\x17,\xac-\x0e\x0b\xcc\x11\x1dt\xe9Kl=4\xf2v\xf1\xc1CE\xb3Fr|o\xefR\xd7\xc5\x105-\x06\x92\xe3|\x01\xe3\xabC\xb4\xa2\xde\x0d\xac\x90\xbf\xfe\xaf\xffM\xe1|e\xb0\xd6\xc7\xc8(\x0e\xcd\xd9\xfa\x08\xcd\xdbZ\xd4D\x9c#\xf6^\xeb\x9a\xb0\xb9>N>rC\x7fL\x0d\xc2Q\xc3Q\x02\xf3\xba\xb2\xe9+\x1f\x03\xa5\xe4\x8ad\xc5\xf3\xc3.\xcb\xa8_\xe4\xa4\x84\xf5]\xc4\xa9\x90}8\x8c\xc8\xcb+\"\xf4\xe9\x1a\x19\x93s\xc5\xc7\x15\x9b.+\xcaP\x13\x05\xd6\x07F\x0b\x85/FmU\xd2X\x89\xb9B\xbf\x82\xc6\xea\xac\x9c\xac\x99\xa5iU\x15\xafh\xcf\x8a\xf5\x9c\x97\xda\xd4 Z\xab\x85=Tip\xc5\xb9\xd4\xcf\xf78P\x03ri\x8f\x0f\xa1\xa9\x8a\n\xd5*\xd9\xecya\xaf.\xa7\xe4SS<\xa8\xcd \xf5\x03\x0f\xfa\xea\xc6]1\xb9\"\xf3\xda\x94\xcd{@\xa8{\xe8\xdb\xff\xec\xf9\xc0q\xf03\xef)\xden\xb2\xbcpg\xe1l\xc38\x8b<\x08\x13\x0f\x19?ug\xd4S\xaa3}\xe6\xced\xe9\xa2\xa0~`\xf2~\xde\x0c\xdc\xb9\xce3=k\x82\x0e\x8e-C\x16 \x03\xdft\xea\xce\x9a\x86\x94\x0b8\x06\xb49\xcf\xdd9\x03?\xba\xf17\xf7&\xd7\xd3\xc1\xb2\x94iy\xc4q\xbf\xc3z\xaahd\xc5\xcb\x84\xdc\x1ej+\x92pvA\x18\xb9$\xb1F\xc6\x0b\xc2\x86\xc3A\xa1\n\x8c$\x12\xcf\xd9r~\xb6\x1c\x11x\x98.]\xa6W\xc5\x03vm\xe5Q\"\x10.n\x84Gi.\xf8\x04\x9a\x02D\xe66X\x01\xa2-\x13\xdfg\x01K\xfb\xbd\xde``\xe1\x16\xe4\x92D\x17D(\xf0\xf9\\,\xfb\xac\xd1\x84\xe3\x03n\xc3\x95,A\x1a\xbb\xc6\x8a\x160\xd7\x84i;\x17\x1c\xcb:\xe1SC6\xb3\xd4\xcae\x01\xa9\x830\xb1I\xca=s\x88\xde?]D\xa7[\xbc\xf6:\x11\xdc\x0f]\xe2m\xc0\xf6,p\xde\xdeRm\xa532?\x1b\x91\xa9\x03?\xf3\xbb\xd8\xf32^\x82CWm\xc2h\x0c\x8f\x14X\xa3\xa2\xbd$\x9b\xb0h?\xb2\x1d\xff\xd8\xc6\xafO\xab\xb6\xaa\xdaJ\xe6y\x93\x91\x0c3\xa7\xb6\xbe\x0b\x0b)\x9c\xe6\xa6#\x12\x8c\xe0\x18\xbb~\x04\xfd\xec\x9c\x9c(\x82<\xf1v\x94\x7f\x19\xaf\xd9\x17\xa2\x7f\x96\x9f\x17\x8f\xa7\xf5\"\x9fO\xebE\xa6\xedE\xb4G}f\x1d\xe4\xf7\x96\xb3^{\x11j\x96x\xa1\x8b#2_\x0eF\xa4\x9f\xc1\xd5b:\"S\xe07gDJ\xf2\xfc\xb3:T\x19\xc8}\x8d\xcd\xc0r\x0c\xc8\x15\xa1\x93$N_\xd1\xbb\x11\x8a\x01\x8a\xc1]\x90\x94\\\x92@\xb1\xb0\xe9\x19\xd4L\x01E\x0b\xb5\xa7\x83\x0b\x92\x0e\x87naR\x873\x0c|\x8f\xf5\xcfG$\x1b\x8c4[\x86C}\xf3\x05\x9a\x1a\x91\xd4\xa0\xb9Y\xf4\xe4\x9a\x8c\xa7dF\xfa>l7\xd9\xde\xa7H\x07\xa5\xac\xa7)\xda8\x18\xe9;\xd8\xd0F%\xc7\x1c%Xo 2m\xe3\xc7+\xb2\x19(X\x1c\x14\xb0\x1bq(\xd0=\xf0'\x82Q=p\xa1\xb8\xccF\x0b\xb4\xa4~\xc9\xd8\xd2\xca)\xd2J\x9aKM\xd3\x12M\xac\x954\x0d8\x85*Z=\xde+\x89R\xd4\xca%\x8dR\x92\xaa\xc0J[.a\xcf\xfc\xa0\x03jY\xd3\x82\xc6\xe2\x82\xf0\x82pt\xd2\xef\xab\xf5\xed\xf7\xf9\xa8`R]\xa56\x88\xe3\x83\x8b\x01\x10 \xaeQ'68S\xb7\xd40\xbfb\xc3\xaa\xe4(o\\\xe1Q>\x14 \xde\xa1=c\xde=\x9bx\xc8[\xef/N\xf9\\6W\xcf\xa6U{B\xaa\xd3\xab\x86\xf8h\xed\xff\xec\xfc\xccIA\xd3\x9c\xbc\xd4\xccp\x14t\x9apB\xe4\x80\xf5\x88\xecFd?\"\xe1\x88l\xbb\xd1\xc5\x03\xa4\xf4\x01t1\xa8\xd3\xc5\xd4\xd0E\x0f\xe8b0\"g\xedt\xd1\xeb@\x17\x13rE\x02K\x17\x15\xd1\xf2\x90.n\xc8%\xc6p\xe8?=G\x8a\xb6\x86\xac\x15\xea\xb8Ac\x9c)R\xa4\xf5\xe0\x82lj\xb4\x12\xc8\x80\xaf\x00\xde\x1c\x80f\x0fM(\xc1R\xc7m\x1ca\xfc)\x03\xa4\x82px\xa5(\xc3G\x04\x0fZ\xb6\xf5\xed`\x1c7\xea\x91\"\xc8\xe4\x9a\xf4\xc3:`\x16(%O@\x86^\x0fSw\x83\x02|\x1a<\x07d\x17\x03\x05\x8c\x93\xad\xd8\xd2\x9a)9J[\xde\xb1U\xbc\xacoX\xcdtD\xbcA\x99M\xa4\x93|s2\xdf\"w\xa8\xa6\xb9.\xbe\xe8\xb8\x9c\xa1\xc3\xe4\x0d\xfc?\xecK\xe9\x8a7m>\x1eS\xf1[\x99\n\x10\xccB\x17\xb4\xc7\x8eR\x92\xb6\xa1>\x92\xff\xf8\xc7\xf3\x9f\"g\xf1\x1b8K\xce\x99\xfc\x1agr\xf2\x1f\xffh\xfe\xe3\x1f\xe2?\xe9/\xc4\x7f\xfcv\xfe\xe3\xbb\xf8\x8f\xff7\xe5?\x0fA\xc1F\xfc\x83\x01\x8fpw\x07n>\xec\x0e.\"\x97\x84_\x90H\xed\xe0JX\x01\x08\x16\xcf\xa3\xe5\xc0\xce\xba\x99\x07\xbd\x03\x11f\x00]\xbb\x10\x91{\x8b\xfb\xd7\x1a\x0d\x90\xcaK\xdb\x0c\x18\x80\xfar\xc2{d\xb5\xf4\xa4b\xf8LJ\x0b\xd9\xaa\xd5\x816\xb1\xfc\xa2\x9a\xddx\xd6B}\xb5\xe8\xdfz\xc5c\x17\xa4\x06\x85\xf5\xc7\x8cB\n$t\x85\x8b\xe6F\x1cF2\x0f\xe8\x8a\x05#r2\x053\x1cGUE\xfdV\xb9\xae\xe9\x88$Z\xce\x0e\x14IMM5}`'z\xfb\xcc\x06#r\xb2\xa9^$\xd2\x93\x9d\x0f\x05\x18%\x0e\\\xdd\x04\x04\xa4\x96\xe4\x95K\x8c\x0en\xd6I\xbeaw\x9c\xc348Q\xd1\xdbpo8\xac}\x06/Q\xb9\xb2\x83:\x15\x1an0\xa0']\xe0%\x0e\x98[\xa0%\xfa\nmK\x90\xc3\x96\x0e\x11\xdd)\xdc% *^\x93>lG\xe7\xcbAG8+\xb4\xbf\x19\x12\x81\x0eh\xda\x82\xcdv\x006\xeb\x08V\xa3\x8e\xc6\xfc\xac\xae\xc6eEh~\x06\xa0\x96j\xac\xfa\xa50\x8c\x1f\x0c}\x95U~\x8cQ\x1d\x8f\xbd\x06\xb8\xe0\xe2\x8a\x82\x1eh\x02\xd0&\x886\xab\xd7x\xfei9\xc8\x97]\x91ji\x83\xf5l\x80\xf2\x8c\x9b\xd3\x9b\xdcs[,\x97@\xac\xf6<_$q\xd2\xcf\x03\xbe\xc4\xf9\xbe3\x8b\x04\x9cg]\x17\x13fJ\xac\xe1\xa8%\xe5p\xa3\x87p\xb5\x1c\x1f\xba\xe6\xf0\x98\xee\xe1\xab\x0e\x0e\xd6Z\xc3|\x1b\xccj\x98\x12\xb7\x14\xe2#G-\xf6\xc9\x1ft\xa3\x84\xc4\xd1\xcbC\xb8u\x10q\xea4\xb2\x96\xd2\x0567\x95n\x83\xae\x05\xb2\nT\x1f$W\xd9d\xbb\xbf\xe6\xcd^\xfdruo\x7f>\xee\x0f\x16\xf3\xc5\xf2\xe7\xf7\xc3\xeb'\x93O\x16o\xe4h\xf6\xeb\xcb\x93\xc5b9\x00E\xf0b\xf1\xc9\xb4\xf71\xf6\x10\x0ey\xa5\xb8\xbb\xef\xb0\xb7()\xcf\x1a\xb6\x0dy\xce\xef\xd9\xf6\xab\xbb\x04\xc4]\xb8&\xd4\x7f#\xe7=\x08\xd2\xb8\x88\xfa\x83\xf9\xf2\xf1\xa27\x19\x9d\\\x8f{\xfafO\xaf\x87\xc1\xb7\xb8\xb9\xdb\x83\xa6\x82\xcbA_\x95*_t\xaeC\xd31n\x97\x9d\x804[\xa5\x82\xf7\xa7\x0e\xbc\x1cL\xd2\x98w\x0cN\xaa\xeb+\x9ck\x9a\x13@W\xbd\xa5\xeeI\xec\xdf\xa0\xff\xc9\x03\xc7\xa5g\xe4\xa3\xc2h\xa3\x82\x04_\xfa\xeb\x11\xe9m{j\xe7\xbb\xb1\x92Q\x9e\x17E\x933$\x98\xbb\x92\xc0\x1e\xa3\xc0\xee\xa6+\xd5\xed\xdd\xce\x9c\xd5\xba\xf3\x93\xe2\x86\xb2\xafH>\x14\xb0\xd2{eo\xf9\x12\xe8\xb2\x18\x8f\x9bk#\x06\n\xc1\xee\x84\xdeLP\xbd\xd9\x1b\x1c\xdc\x1b\x9a\x9f\xd5\x80\x9f\x8d@OF\xf3\xdd\xc6f\x12\xd0T|\x13\xad\xd9\x1d~\xf7\xb4\x0c\xb7g\x81\x11\x8d/@|\xdfL\xd8\x1d\xf3\xfa\x19\xe8-\n\xa5^\xa2\xfa\xfc \x95-\xfe4e\x83N5\xd3\xd9\xe2\xcf\x8a%\x99\xde\x98\x06#\x92\xa0>\x8d\x0cI2\x9f.\xf5\xe0v\x08EG\x0e\xf1\x99\xe2\xef=\xb8q>\xbeo\xd6L\xadc\x07\xb5\xb6\xc5\xb1\xde\xb5\xb8\x91\xcc\xcf\x97\x1d\xa2\xe7\x91\xc3\xf2b\xf1\xf7\xd0\xee=d\xeaT\x0f\xba\x15\xf9\xdb\xcc\xce!>_\xfc\x1d\xe0\xf9\xc5\x9f\x82)\x80\x05\x93/\x921I\xe6O\x0d\x8a6\xabR\xcc/-ho\xfa\x01\xb9$Y!\xe1!\xfd}\xc8t\xd9\x95\xf6K,\xa9\x12aT\x04\x0d(\x8d\x91\x98}\xdd\xf4\xd9\x08\\\x1b\xa4#bR\x04\xea\xb4\xdb)\xe6\x07 7&\xd5\x1cZ\x9c.\x86c\xb9\x98,&rq\x8d\xff\xc9\x93\x93\x93\x139\x1a\xc9\xf1\xf8\xb4~\x98q\xba\xe8\xf7=)B\xc9e2X\x0cN\xb7~\xfd`\xa3>w\xde\x8c\xf4\xfe\xfb\x7fsL\x11W\x1f\xfe_\xc7\x87D}\xf8\x7f\x1c\x1fD8#\xbd\xbf\xfe/\xffw\xaf\xf4\xa5\xc1\xda\xa6\x8b4\x95\xcbQ.iIk\xab\x8a\xbe}\x1a\xe4\xa5\xd2\xde\xa8\xc8\nS\xcd\n\xd3&VXc\xc4v\xd3\x94v\xe7\xc7\x19)\x97;\xcc\x96I\x91\xed*,\xcd,\xdb\x85\x95 gQ9/U\xafx\xd0<\xc8Oz\xfa=<\xa3\xb9&\x01\x99\x91\xc0J\xc3\xf1\xa8\xdd\xf6\xac\xfa\xd3\xd2\x97?\x17\x13\x11\x7f\x1b\xdf2\xfe%MY\xbfbtS\xfc\xa9e\xc6'\x82\xa5\xa2O\x07\x16^Z0\xbf\x18\x8eA\xec\xfe\xef\xff_oPH\x9d\xfc|>z\x0f\x1f\xfe\xfa\x97\xffZ\xfc\xd2\x9f_\x9f,\x07\x7f\xfd\xcb\x7f\x85\x8f\x9fL'\x93\xfa\xd7\x9f\x9f\xe9\xb2\x9fL\xd5\x7f\xc5\x0c#[\xef\xa8T\xee\x8d\x9c\xbf\x19/\x07\xe3\xf1\xb8\xaf\x1e\xe4'\x83\xd3m\x085\xfc\xf5/\xff\xfb'\xe7\x95\xbc\x8bt0\x1e\xf7\x17i)\xdb\xffV\xcb6\x7f3^\xa4\xaa\xd2>>\xd5\xb3\x83\xff\x96\\mM?\x8an\xd5\x12\x8d\xf9\xe3\xde\xd2E\x1c }[\xa7\x08\xa7\xf3\xf1\"\xc5\xdd\xd1\xf2\xd4\xb5\xc3\xa2m\x16\x8a'}a\x0e\x02\x01\x7f\x8d`\x0e\xd3~\xe2#\x120\x85\xbc\x85N\xd6\xdb\xc8\x0e\x98^\xdb\xad\x04\xd0em\x10k\x13\x914WF\x91<\x80\xde\xf8\xceM\x9b=\x92\x1d\x91\xfb\x11Y\x8d\xc8\xdb\x11\xb9\xfd0\x82t\xab5\xbf\xab&\xc2\xb4\xd2\xc4`u.\xc5\x9a\xccFaK\xaer\x88a\xe8\xb60tx\xfct;\xdf\xea\x9c\xe4\xf2\x8al\x06\x17d;\x1e\xb7\x9c(\x99_a\x0c\xb6\n\xb9P\xae\xd2\x9b\x14\xd8_\xd9\x15<\xe8,[\xb1\x19v\xe1\x82(\xc1\xca\x03\xc2\x18\x97vAz\xe3\x13\xe3\x86\xc7\x1f\x0c.\xda\x87\xd9\xfc\xc0\xd7\x07\xb9\"'\xb4\xafPX\xefN\xc6d\xaa\x05\xc2\xd4\xeeW\xa6#rO\xaeH\xef1NL\n\xa6\x89\xa0:\xc0\xb2\x01\x1e[']\xe6\xc3\xfcT\xeb{U\xc3zDB\xf57\xe9\x06\xb5\xf9\xc1\xa0\xb4\xcdc_\xcd\x83\x9a\xcaQeJ\xc9f\xa0\xa7\xf4\xa8\x06\x89\x06z7I\xfdh\x1b0\x18\x8a{\xd5R\xa1r\x95\xb69f\x18\x8a\xbf\x1c\xe0{rM\xfao\xe7;\\j\xc5\xe3\xca\xcc\x91<\";\xb46\xc8\x89 Z\xc4\xce\xcf\x97\x15\xb6\x91\xf5\x0b\x02\x80\x9e`G\xb9\xa7K\xd0&\x7f\x0c\x10\xce\x1e\x08\xc2t\xa9X^qI\x1d^+\xae\x9fj\xca\x8f2V \xbe\xd1\xe5WW\x836\xfd\xf6\xe4\x9a\xdc\x1e\xb3\xcf1?\x18\xc5V\x1d\xb4\xeb\x97\xc4\xe9\xcc\x0e\xddQ%\x11ug\xc4\x11\x07\xbb\xed\xa7\xf7J\x9b\xce\x85\xc0j5T\x8b\x03VH\xff0\x02\xf4\xfe\xfa\x97\xff\xe2\x8a\xa0\xea\xfa\xbd',H\xd9G\xad\xfa\xa3\xee\xc1\xc0\xc0\xbc\xea\xf8\x15\xe4\xa9\xdb\xdb[\xf9\x1b\xb9\x98-N\x17\xa7N\xb9\xc9o\xd4L\x9f\xbe\xb9\\\x9c\xd2E\xfa\xe4\xe5\xa9\x91\x90\xda\xc5#Z3^7F\xe8s\x87^CX\x0b.7\x06\xab\xce&\xe82\xaa\xf9\x9c*\xe3\xc1\x8c\x9c4\xc4\xae`!\xf5[>\x8b[_\x08\xc6\x9b+\xd7\xf2\xf2\xd7Q!0g\xd3\xdd\x16\xf3Ko}\xe1\xed\x14\x92l\x99x}\x9f\xb0\xfeA\xa1\xc1\xa3)#\xbd\x8c\x07\xbd\xd9Add\xc7\xacy%\xb2\xccH4\x81\xc8dl\xfd\x9a\xddu\\\xf60\xaa\xd0\x83?\xf1\xc0\x11\xf9\xa6\xfak:w*\xfe\xe0\xc2n{6\x1c\x08\x98\xb5\xbf\xaf\xa1\xe8)\x90D\x0cjF\x18\x96\xafTB\xbf\xb0\xa3z\xa3s\x9c\xfa\xa3\x92[\x9b\xa6\x9f\xe3\x0c\xcc~j\xfcb63Sg\x8ez\xb9\xea\xb4\xe8\xf2\xf5\x11\x0b\xfc\xe8&\x9d\x11V\x1f\x12\x9a\x89X}U\xcb\xa4\x1c\x93\xda\x15L\xea\xd8\x8d\x0co:\x80*\xeee\n;\x80:|jg\x12eA\xab\xe2E\xdf\xc3i\xd8\xe3\x14,\x95\xee]\x96J\xce\xb1\xaemk\xee;\x1e|\x14\xb6+\xa0o\xb9\xffX\xe7\x1f\xb9\xdb\xa0\x1eXD\x822);\xea\x14\x04\xea\xd1\xb7\xd0\xb5\xdc\x9d\xabr\xb6 \x9f[Vw\xfa\xe6\x92\xce_.\xd2\xa5a\x0d\xdb\x01\x1a\x87\xea+\xa3\xbb\xf1xD\xfc~\x9a;\x18P\x89\xc3\xe1@\xc9\xc6\x90\x0bR\n\x9b\xaf\xbc\xad\x18k\xcc\xcbv\x01\x9e\xe8\x0e\xac\xe0\x90Q\xc9\xf9}\x85\x1b\x14.\x13(\xf4F\xa1\x7f5\xc91\xda\xee:l\xaf\xf6\xa5=e\x08\x05\xfb\x81\x82yo\x15\x06F\xbc;L\xf1\x88\x99tOo\xa3\xd7\xd0\x9a\xde\x11np\xc7\xba!\x97\xb6Y4\xbe\xcdM\xdf \xce%\x15\xec[\x05\xc6~\xbeYN2\x1e\xa0\xa6J\xdb%\x1b-\x1a|\xd4;T\xf5Y\xb5\xb4\x1e\x11\xef\x18\x12I\x1e\xa4\x0d'E\x8dx\x90\xab\xa5\x93\x8eJq\x92\x0b{\xebN\x05 \xb2\xc0C;f\x1d\x8c\x1d\xd1;m\xcc\xab\x87\xbf{9}`\xd5f&T\xfd\x99\x81\xe8p.E\xb4\x02\xf3\xa1#\xf1\xd0)\xb6\x98\xd6\xbd\xec\x91\xd3\xfb\xf0>\x15h\xe0\xd1\xd0\x8d\xc7\xdd\xe1\x0b\xd0\x92\x1eP=!\xc3|L\x0c\x91\xe8 \x0e\xa9_P8\xb4zh\x9f\x1f:\x8fG \xf2\xd1\xf3w_9\xbb\xcaJgWY\xf9\xec\xca\x1b\xd9\x834}vu\xb0\x9d\xf6m2\xee\xd5\x0eV\x82\xe7\x1e\xe3\xf1\x05pI\xadM9\xb9\xb2\x14\x9a\xe0\xadmC/\xe0Sf\xac\xd7/\x06\x8a-\xdb6:\xed\xe0\xf6:(\xe2\x88\xf89z\xc4\xfa\xe6+\x1a\xc0\xd9\xe2U\x8ew\xfa\xe4\xa4\xdc\xa1'\xe4\x0b\xcb\xc7&?\xa6\xd5\x8fg\x93\xe9\xf3\xc9\xd3Jj5\xd3\x97qr\xcf\xfd\xedN\xf4\xbd\x019?\x9b>'\xff\xcc\xd96\xe6\xf7\xe4\x7f\xa2^\xbcJ\xc9\xe5\x96\xb3\xedo\xd4?\xe3\x1f!e\xe2\xc5\xe1\xcbj5\xaf\xbeyM\xbe\xf5=\x16\xa5l=!\x85\x18\x86j\xdc\xd28\xe3\x1e\x83X\x86\x01\xe6IOC_\x8c\xf5\xcb$\xd9%\x07\xa0T\x15\xa6\xb3\xd3\xd3\xad/v\xd9JAp\xaa B\x80N\xdbF\xe1\xb4\xf4\x0e[\xd1Q\xd9\x80\xbd\xddF(\x9e\xfcI\xf8\x81q\xb0\xae\x9d\xe2W\xac\xc4\x9c\x02v\x9c_\x94v\x9fe\xc6Q*x\xe6\x89\x98\xcfH\\_\x88\x19\x0fR\xf7\xb6\xb5eG\x9b\xeff\x1d\x1f#v\xfb\x1f\xfch\x1d\xdf\xba?\x97\xb7\xda\xae\xcay\xa6\xd6.\x9b\xe9{3\xf5\x1c\xc5X\xac.'\xd0\"\x0c\xbe\xa3\x14\x9d\xf8\xe9\x97A\x9c\xa2\x13\x9ck\x18\x89WT\xec&!\xbd\xebGj\xaf2R\xd2\xfc\x0cvK#\xa2\x1d\nT\xfd\xd5\x17\x7f\xa0KC0\"\xe1\x8b{\x0b\xc51e\xf1\xeeV\xab.\x86\x98\xcb\x8bfz\xf5N\xf0\x07\xc1[\xdbP?\x0dJ\xd0\xb2OGX,\xcc\xce\x8cnV\xa5\xe9\x04\xb7F|\xb5\\\xef\xddX\x8d\xc0w\xc1mc\x8c\xa8\xb1\xfaU\xbe\xb6\nj\x0bf\x02w@\xa0,\xc8\xf3=\x94\xfb\x17\x1a\xe8\xa8\x03] s\x15\xef\x02#,=\xf74\x14\xc1\xb7j8bb\x19\x95\x93'\x1e\x0d\x02\x13%FS\xe9\xc1(\x8f\x86te\xa3! rM\x04\x99\x91\x13\xbco\n\xbe\\\xec\xe8\xa0V\x08\x8c\xc7\x05\xf1\xa3T\xd0\xc8S\x85\xe2\x89\" \xaf\xe9V\x15.\xfa\x83\x9a\xd9\xd1}m\x89R\x7f0Y\xa9\xa7>+\xfaY\xea2\x88%\xd23k\x16\x05\xcc\xcf\xa8V\x01\x86\x9c\xbc\xb6\x0e'\x83\xcd\xb1\xa3\x94 \xe0TH\x9a\xe4\xd0\x0cF\x8e\xb3\x0cw\x17^\x15i\xf8q}(\x90\xffc:Q(f{QH\x9b\x141\xbf\x99T \xcb\x85\n\xd5c3\xa9\xd5\x1c\x18r\xc2ssV\xcb\x91!\xb3~k\xce^b\xc2P\xa4\x90\xe2&.\x83#f\xe6u\x81q\x1e719\xcb=f^\xf2RvZ\xbe\x80\xdb\x11\x85\xc5\xd2<\x1f\x05\x81\x05j\xb3\xef-\xc3me\x14l_\xbf6\x17(\x88,H\x05\xcd\xfbQ\x83]Jy?\"1p\x99C\x9e\xb3H>n06}\x81j\xaa~U\xc0\x1c\x19t\xd6\xbe\x7f\xe2\xf2\xaa\xfd9\xcfPIS\xb2\xabS\xfa\xa4\xabTp\xea\x89WL\xec\xe2u\x07d\xc0\xa0f=S\xae\xd7\x05\xe1Ph\x9e\x1d\x1e\x04R\x94\xc3\"\xe2G*\x9b\x98\xech\xfa\xc7\xdb\xc8F\xa3\x8fP\x14a\xf3hI\xd0#X\x03\xfb6\xb8\xd8\x05Fv'X\xb4\xee\x08#\x80\x87\xf2\x1f\xcb\xc5\xfbf\xe4\xaan\xe7\xde7\xdc\xcc)m\x15\x1a\x16\x98\x91\x18AW]\x1b\x9b^a;\xd1\x1b\x00\x93*\xa4\x90\x0e\x13L@\xde)\x14\xd2\x81F\x90\x99R\xbe\xcd\xc01V\x83\x843(u\x01\xc2\x03\xb6\xce\x0d-\x81\x07q\x19\xe9$\xcd\x12\xc6a\x01\xe2\x0d\xe95\x0b\x98`\xe5\xae\x8c*;2\x8a\n\x84\xa8\xd3\\\x07\x81\x9f\xa4~:k\xdd\xa2\x17\x7f\xd6\xa4K\xebh^b\x90\x04\x98\x83(\x0b\x02%VD\xe4\x9a\xf4&\x93\x9e\x12~1\xbc\xa21\xf6Rl\x1f\xf4\xfcc\x12Y\xd5\xf1\x90D] \xb6V\xecvDN%\x0f\x7f\xc19\xbd/x\xe8\xd25\x0c\xf2\x8e\x18eq5r\x83\xf9\x15\x96\xa1\xdd\xeb\xb0\xceG\"\xc4\x9c\xbb\xc0\x1aU\xd2\x95m:j\xc5\x87q\xfd8\xcb1 p\xff\xe5\x8bh\xfd%MD\xc6\xd9\x11\x03s\"&\xdb ^\xd1\xc0\x11\x9e\xf1\xcfP\xed\xf7l\xcb\xee\xfeL\xc2,\x15dG\xf7\x8c\x88\x1d#\x8f\xb7\x8f\xc9&\xa0[\x92\xb2Z`F\xf3\xcbG\xac\xb23\xbc \xb8T\xc1@\x8a\x81\xcf\x00}\xb9\xb9\x80\x1f\xf1\x08\"\xe9\xad\xd9\xdd \xdf7Eh\xbf\x82\xe1(\x8c9\x94Jl\xb5\xdf\xb2\x1b\x8az#Pw}\x84\xeb\\\xc6H\xb9Wf\x99!}\xec\xe3m+W\xdc\xdc\xdb\x9d/X\x9aP\x8f\xc1\x08\xce\x08\x04dr\xec\x0f\x8a\xfa\x8e\xc3\xdb\x02\xb7\xde\xc5\x86+\x8d\x18W\xa0\x1a9#O\x90\xb2\x98\xf2\xfa\xd5\xb7\x9d\xf0\xcanw\xbb\x80V\xdc\x96\x08,\x86\xa1UE12\xa5\xf95\nb\x95\xe6\x8eiMJ\xd2\xeb\xc4\x81S&\xbe\x10\xe5\xbdb\x87\xbbkzC\xa3J\xa6\xfd\xc1\x9c-\xf30\xba]\x1a\xdd\xd6\x1b=\xba\xc5.\xed\xe8\xce\xa5]\x1a\xaa*xtK\xad\x0b\xa9\x82\x829\xfeu\x01n[\x07\xae\xcb PU\x06d\xe8\xc2\xebU)\x0c\xae\xf9\xb9G\xe4K\xc5>\xbb\x8cH\xb1U=\x92\xfd\x1e0\xdf^M\xc3I\x1a\xe4\xbb\xf5\xbass\xb9\x9a\x0d\xd5hf\"\xa0\x82\xfe`\x94\xc7^\xac\x10\x14\xd4\xaf\xe9\xb9\xd0\xdc\x0bo\x11D\xe0\xf8\x1d\xefDr\xb5\x13W\x94\x17\xef/\x98\xc4\x0b\x98\xf4l\x92\xee\xfc\x8d\xe8+\x12<&\xb8\xed\xf7QrP\xdc\x9c\"\xc1l\xe2\x88n\x1c\x9d\x189\x85\x16\x03\xcfu\xc5\x0e\xce\xc2x\xcf\xfe\xee\x07\x8f\x16oX\x95FR\x0de\xbbv\x13\\p\xe2 _\xc0\xa8\xc3\xb1\n\x8e\xb7j\xc1c\xfdtD\x1c\xd7m\xc9!\x8d\xd9G\x9d\x89m}\xc9tY1\xb5\xe6;\x93\xe4\x1dM;\xcf\xbb\x15\x8e\xd0\x9a\xa3GzdX\x9d|\xb8(\xdc+\xdc\xa5\x81LL'w\x81(e\xe2\x1b\xc3?\x8f\x80\xaa\xc6\x89\x8f\xe3\x80\xae&\x8fk\xb1\xf3\x90\x1b\x1d\\\x87\x96J:\x8f\xa2\x16\xbcE\xe5`\xb2\x83\xce\x0f\xb0\xe2\x07\xc1\x0f\xf0\x96y\xef\xb2\x87\xd1\x95 \xaa \xf5\xdcb`2\xd2{\xd9\xcb\xa3\xf8\xda\x91R+\xbdwy\x8a\x05{/{\xcb\xa3T\xc7%\xf0:\x0c\x05\x8a\xcd\x96\x0bYA\xbe\x1a\xc5\xcb\xfc\xaaC\xa7\xd7G\xfb\xc0\xcd\x97\x87\x84j\xe2G\x84\x0d\x08sk\x03\x84\x16\x98\xc9\x90<\xc6\x08\x0b\xb0\xf5\xc0\xa8`\xed\xf4<\xa7\x16\xf5\xd1+\xa5\xbcW\xa2xMou\x84\x88\xfcQD\xdf\xceS\xdc\xa5\x89\xa2\xd6\xc9\xc8\xfcm\xbe?\x8c\xb4\xda\xa3-f\x06\x14\xe5\x1d\x98\x7f<\x0d@\x14`\x85\xd3+T\xb5\xe3X\xfe\x9e\xb3M\x7f\xd0\x82 ~N\"\xa0R\xedoZ\xcf\x04\xbb\x13\xfdBm\xa8\xb7oROt\x19\xbd\x02\xcc\x1d\x05f\xb3On\x1e9bm\x87Dc\x1e\x07(\xe6g\xf9:\xc2\xf6e\x8a\xbcC\xed&\xdb\xe6\x95\x1b\x13u\xa3K1\x1b'\xabA\xd5\x190\xb6!\xb9\"\xbd\xb7\xab\x80F7\xbd\xae\xaa\x942<]P\xae$\x81[-k\xfb\x12\x85\x93\x9a\xa1\xa5\x8dC\xd2\x1b#s\x9bu\xa4\xfc5\x8c\xe9\x02\xa9Uek`\xd7\xf1k\xadF\xae*f\x89\xbb\xd5\xbc\xc0\x11\xcd\x19b\xa2uT\xf6X\xce\xa8\xb0\x15\xbb\xc3@\x1e\x93\xef\xfe\xf8\xc37\xaf\xbf\xf9\x97\xaf\xde~\xf3\x87\xaf\xbf\xf9\xc37\xaf\xffc7\n\xe6<\xd69\x82\x8c\xa9\xf2z\x8f\x0f\x1a\xfe\xd3\xfe\xf5\xac7\x7f\xd3[>\xb9\xee\xc9\xc7\xf37\x8f\x97O\xae\x1f\xcb\xf9\x9b\xc7\xbd\xab\xcb\x97\x7f^\xa4\xcb\xe1\xe0\x14\x19\xdc\xe9\xfc\xcd\"]\x9c\xf5\x1e\xbf\\\x9c^-\xee\xce\xa6\xe3\xc5\xdd\xf4\xeb\xc5\xdd\xa7_/\x87\xa7\x134\x0fQ\xb3\xdb\xbf\x9e-\x16\xe9\x93+\xf5O\x0foM\xdao\x83\xeb\xde\xa8\xe8\xcbd\xaer+Vy\xd9?\xf9\xdd\x1f\xbf|\xfd\x1f\xbf\xfbj\xa0^u\xeab\x91\x0e\xf3W1\"= \xeeQ\n\x15\xaa\xcf\x83'\x86\xdb\xe2\xbb,Tq\xd9?\x85F{\xe0o\xe6t~6\xfe\x9c\x8e\xdf}1\xfeO\xcb\xfcq\xb6|rZ\xad\xb3\x0c\x81\xb0\xad\xa8^\x9d^\x17\xda\xcb\xf9\xf7\x88\xf4\xb6~\xcfE\x0b\xd5\xa0\x7f\xb9\xa3\x9cz\x82q\x13Q\xddhZ\xfa\x8f\xa2U\x9a\\\xc8G\xbf\x9e\xbe8\xbb\x90\x8f\x02\xa1\x9e\xe1q\x8b\x8f\xe7\x17\xf2\xd1OY\x0c/O\x9f\xc1\xbf\x9f_\xd4\xaf\xdb\xab\x1f\x989tA\xd8\xd2n\xa4\xb0\xf7\xb0\xf8Q\xb2\x8c\x98//PUzb|]\x82\xf2g\xfe\xf4@nE\x10ON\xc4A7\x1bAE\x93\x1b\x8f\x88\xd0\x9a\xbaf\xab\x81\xc0\xaa\x87\x91c\xa91Ut\xe7\x8bh\x0d\x93w\xff\x87x\xcdR0'\xf6At\xd1Zv\x7fD\xa2\x81M\xec\x17h\xfeWh\xa4\xa1\xca\xf5\xb5\x8f\x81\x81\xd6\x0d\n\xab\x1b\xa4M>\x86H\xe3fJ\x89wq!@\xc9\xa1\xa9\xf0\xaa\xc3\xd12\n^\xb7Q\xf0\xdc\xa3pD'4\xed\xf4\xbbP\xe5\x06(\x8e\xc3x\xad\xdf\x8dr\xb2Y\xd1I[\xba\xdd\xbcp\xf5~]\xaf\x8f\xc8*\xd79Z\x0eA\xd0\xb1\xf3C\xd3\x01{\xf89\xef\xb02\xa29\x07/\xb2\xcd\xd3E\x0b\x92t\x01\xf3\xd4X!\xda)\x84\xcb\xdc\x99\xf2\x91\xecg\x0f\x99\xba\xbaX\xd4(m\x14V\xc2\xd1'85\xc3\x86\xe2\xb2j\x11|Adh9\xe1\xb3\x92q\xc5\xe1Ds \x0f\xad\xa8\xaa!\x83\xcc\xef\x18Q5\x1f\xfb.H\xdc8\x12\xf9\x0c\x1e\x1c\x88\x0f\x06\xd9\xe0\xd4\x87\x00l\xf1\xf2\xe3\x81\xfb\xabr\x06\x87\xb4\xa4\x1a^\x9e\x8e\xb4S\xb0I\xffz\xe6G\x82\xf1\x08\xbc\xf4\xd1@Z\xf2\xe7\xc7\x91z\x01\x92\x14\xf3T2\x95-\xe1~\xcaR\x99\xecb\x81^i\xeee\xc2\xe35fO\xe5&\xce\xa25\xd4$\xfd0\x8cW~\xe0\xb3H\xfa\xd1:S}`\xa9\x0ciD\xb7\xb0VU\xb9\x84q%tI\xc1\xbc]\x14\x07\xf1\xf6^z;\xee\xa7\"\xa4\xa9\xf4\xe20\xcc\"_\xdc\xcb\xb5\xcf\x99\x82\xe1^\xb2u\xe6a\xf5\xec\xa7\xccO\xa0\x1e?J\x85/2\xc1dH\xf9\x0d\x13~\xb4\x95i\x1cd\x08\xd1\x9eb\x81T\xae(\xdfR_=\xc4\x99\xf0\x7f\xca\x98\\\xa1\xa20\x95j\xfb\xaedf\xe9\x05\x8cF\xf8\x10\x8b\x1d<\xc4a\x92 \xc6\xe5\x9a\x85\xb1\xc7\xa9\x90k\x9f\x86q\xb4N%\xf4\xdf\xf7R\xb9\x8b\x83\xb5\x1fmS\x19\xf8\xdb\x1d\xb4\x9fP.\"Us\x12d\xe1\n \xca\x92$\x80\xber\xeaC\x13{\x16)y4\x95\xd4\xa3k\x16\xdeK\x8fr\x06\xd0\xc4aB\xa3{\xe9\xf1\x0c\x06{\x1d\x87\x007\xbbK\xe2\x94\xad\xe5\x06\x9aI\xe5&\x88\xd5X\xc9-\x0d\x02\xc6\xef\xe56\xf3\x05\xe5\x00\x8e\xbf\xa6\xf7\xf2\xc6WX\x11\xc9\x88e\xa9\xa0\\\xc67~Do\xa9\xe4\xcc\xf3\x13\x96J\xce\"A\x03\xf5w\xef\xb3\xdbT\xa6;\xff&\xddQ\x89\xce R\x009\xe6B\xa6\xf7\xa9`a*\xe9\x96E\xde\xbd\\1\x1e\xf8\x91\xf4h\xc88\x95\x1e\xa0\x85\xf4\xe2\xcd\x861\x85/\xeb8\x95\n\x05\xa2\xadd\xa9\xa0\x82I\xa6z\n\xe03.\xe4&\x13\xab8\x9074\xdb\xb0H\x06\xd9]\xc6\xefeH\xfd4\x8ed\x18G4\xdd\xc90KY\x16\xca\x88n\xe3{\x8a\xb8\xa6\xa0L\xa8\xcf\xd5\x1f\x80)\xf6|\x1a\xe0\xa8\xdeKA\x85\x88c)|\x16\xad\xa9\x1a\xe1=\x0b\xe4\xde\xa7?\xb2T\xee\xfd \xa0\xeaO\xaa\xd0f\x1f\x03d\xfb\xf8\x9en\x99\x04\xccF4P\xa3\xbfN\xa5\xb7c4\x91\x9e\xdaw\xc85\x8d<&a\xd1\xcam@S5\xb2Y\xaa\xd0,\xda\xc62\xf2\xa3\x1f)L\xb4^\x0e2\xdd\xc5j\xd4\xe2\x80r)b5\x03\"\xbe\xb9\x8f\xa5\x88\xe3 \x95\xb7j\x8d\xca\xdb\x98\xdf\xa4\x922\x1eK\xca\x13*i\xeaS\xb9b\xa9\x90+\xff\x86\xc9U\x00h\xf9\xee\x9d\x1a\xdeDzA\xb6\x92^\x1c\xabU\x19'rCy(7~\xba\x93[\x7f#\xe46\xe3\x99\xf4\xa3M,\x7f\x8cW\xa9\xbc\xf1o}y\xc3\xd9Z\x064Z\xcb\xc0\x0fc\x19\xf8\xd1\x8d\x0cY\x94I\xb5\x18e\x18\xaf\xa9\x8ch\xc8d\xa2\xf06Q_\x938\x15\xf2\xa7$\x8e$\xf7\xbd\x9d\xe4\xd9\x8e\xcb\x94\xdd\xddK\xe1'\xa9\x1a/\xa6\xfe\x89\xe5-\x8d\xb6\xf2V-\xe7[\xff\xc6\x97\xef\xe2\x88\xa9%%W\xfeZ\xae|\x05\xf0J\xad#\xe9\xb1Xa\xb0Z\xaar\x1b\xef\xa5\x1f y\xe3\x872\xf4\x03\x191!\xe3(\x901\xdf\xaa\xe5/\x93l%\x15\xc0\x82\x052\x8bby\xcb\xd6\xf2\xee\xeeN\xde\xdd\xbf\x93\xd4\x93t-)\x93t#\xe9VR_\xd2@\xd2P\xd2H\xd2X\xd2\x9f$\xe5\x92\xa6\x92\nI3Io%\xbd\x93\xf4\x9d\\Q\xb9Z\xc9\xd5Z\xae\x98\\m\xe4j+W;\xb9\xf2\xe5\xeaG\xb9\n\xe5*\x92\xabX\xae\xb8\\\xa5r%\xe4j/W\xb7ru/W\n|\xe9y\xd2[Ko#\xbd\xad\xf4v\xd2\xf3\xa5w#\xbd@z\xa1\xf4\x14)\x94\x1e\x97^&\xbd\xbd\xf4n\xa5w'\xbd{\xe9\xbd\x93k&\xd7?\xca\xf5\x8d\\\x87r\x1d\xcb\xf5;\xc9<\xc9\x98d[\xc9\xb8d\xa9dB\xb2Ln|\xb9\xf9Qnn\xe4&\x94\x9bXn\xb8\xdcR\xb9]\xc9\xedZn\x99\xdcn\xe4v+\xb7jb\xe56\x90\xdbPn#\xb9M\xe4\xf6'\xb9\xe5r\x9b\xca\xad\x9an\xb9\xbd\x95\xdb{\xb9\xbb\x91\xbbP\xee\"\xb9\xe3r'\xe4.\x93\xfeZ\xfaL\xfa\x81\xf4C\xe9G\xd2\x8f\xa5\xff\x93\xf4\xb9\xf4S\xe9\x0b\xf9#\x93?\x86\xf2\xc7X\xfe\x98\xc8\x1b&o\xb6\xf2f'o|y\x13\xca\x9bH\xde$\xf2\x86\xcb\x9b[ys/o\xde\xc9\x80\xca`%\x03O\x06\xbe\x0cnd\xc0e\x90\xca@\xc8 \x93\xc1^\x06j\xa9\xca\xd0\x93\xe1Z\x86L\x86[\x19\xeedx#\xc3@\x86\xa1\x0c\xd5\n\x96a\"\xc3\x9fd\xc8e\x98\xcaP\xc80\x93\xe1^\x86\xb72\xbc\x93\xe1\xbd\x0c\xdf\xc9\x88\xca\xc8\x93\x11\x93\xd1FF[\x19\xf92\nd\x14\xcb(\x91\x11\x97Q&\xa3w2\x0eeBe\xc2d\xb2\x91\xc9V&;\x99\xdc\xc8$\x90I(\x93H&\\&\xa9L\x84Lner/\x7fR4M\xf2X\xf2T\xf2L\xf2[\x99R\x99\xaed\xea\xc9t-S&\xd3\xadLw2\xf5e\xfa\xa3Lod\x1a\xc84\x94i$\xd3X\xa6\\\xa6B\xa6\x99L\xf72\xbd\x93\xe9\xbdL\xdfI\xe1I\xb1\x96b#\xc5V\x8a\x9d\x14?Jq#E E(E$E,E\"\x05\x97BH\xb1\x97\xe2V\x8aw2\xa32\xdb\xca\xecFf\xa9\xcc\xeee\xf6N\xee\xa9\xdc{r\xcf\xe4~+\xf7\xbe\xdcGr\x9f\xc9\xdb\x8d\xbcM\xe5=\x93\xf7B\xbe\xa3\xf2](\xdf\xdd\x0e\x16\xab\xd3\xaa\xe6\xb47\"\xe8\xffoq\xbb\x1c\xfc\xa6\xbf\xb8\xfdy:\x9a>\x7f?0\xba\xcc\xb2:\x14r_\xcf\xe6\x8b\xf1\xc5\xec\xd1\xd5b\xb8\xf8d\xb4\xb8]L\x96\xc3\xdf\x14\nD\xf6\x897Ub4\xa3\xb6B\x94\x19\x96\xf3\xf1dh\xc5\x87\xe5p\xd6\xbf>i\xfa\xb48]\x9c\x0e\xfa\xd7'\x8b\xf5pqz=\xe8_c\xca\xb5\x13\x90\xbaJ\xb7?\xb9>E\xa5\xaej\xff\xf6\xf6v19\xbadsG\xad\xf6\x17\xd4\xc5\x8b\xb1\x05|\xf8\xe87\xbf^\x9c\xfe\xd3\xd5\x7f~\xdb\x1f\xc8\xc7\x9f\x80@Tg\xe1O\xbc\x0du\xc8\x11\xb3@\x8c\x0f\xaf\x03y\x12=\x1a\x7f\xe2\x81&-''Y\xb7\"\xdf\xb3\x80\n\x7f\xcfl\xb9\xcd\x81S\xc8\xa3/\xfa\x117\x99$\x87NX\x9a\x87\xd0\xd2\xf7\x19I\x9a\xa1\xb54\x7fF\x1cZc\xf3\x0b\xb1\xdf\x0d\xc1~\xba\x10\xf7vj\xd4E\x08\x81\xdb\xe4\x03\xe3bX!\xf9\x17\xa2_\"W\x87\xf8\xb4\x00$\xc6\x95r\xba\xe8\x9fn\x0f\xdc\xb7\x8fJ\xf9\x07\xa7\xdb\x03<\x1b\xb9\x80\x0d\x0e#%9\x1b\x90K\xd2\x07\xf2\x14\x95\x92-!?9\xeb8\xa6$\x9fs\x87w8\x976\xf2UU0\xeb\xaa\x84\xf4#pK\xd5(X\xce\x17\xb7\xcb\x06\xc1rG\xd3\xaf\xb3 \xc8\x8b\x9a\"-\x12\xbf\xa3\x9a\x8c\xfb?x;\x16\xb2\x83\x15\xb8a\xf8\x0f1_\x7f\xa90d#\x18\xaf\x023\x9b\xbfY\xa4\xcb'\xd7\xa6JG\x15E\xe6\xdb]\x1e5\xd3S\x94\x06tM\x7f2\x1dR\xec\xca\xdcb\xc94!\xfa]\xcc\xd2?\xc4\xe2\xf7to)\xf6\x1f\xf9\xefb\xa1\xad\xd3Z\xb2\x7f!\xbee4\x15\x7f\x8c\x98\xe9q\xa5\x8c\x9f~S\x9b\xcc\x9c\x92\xf5]\xe7\xf1\xce\x13\x89r'\xba,\xd7\xea\x82\xd3](\xce\xeb`~\xb6,\x1f\xac\xb6J\xf1\xbd\x1f\xe9\x9e\xa6\x1e\xf7\x131Cg=0\xce\xbd\xfd\xaa\x9c\xd8\xa5G\x87\x86\xbe\xa3\x89\xa0\x9d\xf1\x13\x86\x8e\xe7\xd5\xfa\x07\xfb\x00\xc7:@\x9fw89c\x13A\xdb\x1avO\\\xded\xbbA^\xc7\x82\x87\x81\x7f\x827&NL\x0f\x9aWQ\xcdW\xac\xf99\x91\xa7\x0d\x05\xbb\xa0\x92\x01\xf3\x84\xd9\xf1m#Q\xcd\xc09\x88$\n#P\xf8\x08\n\xf9Q\xf6\xcf]\x06\xef\x01\xc7\xbc\xaf\x8abS\xd7C\xae\xc2\xbe\x18Jv\x84-7\xf5=\x06\xc2\xa2\xc1\xa6\xb3T\xe3<\xc1\x8e\xc3q\xf6W\x98\xc5\x8fs\xe6\x87\x1ej;\x8e\xc2W\xb8\x7f\xe9Zy\xbe\x1f\xecX\x7fq\x94\xbb6R\xf4g\xfb\xc0\x06\x1f\x80A\x0d\x8d4\xce\xa7\xde\x8a\xfd-fT\xef\xd5\xba\xce\xe9\xeb\xf2\xd6\xaek3E\x0d\x00\x96\xed\xd8\xde\x83\xe6\xd88N\xd3\x0d\x82\xe74;\xe1\x0f\x87\xe2\xb8\x89\xef\xfd\xa6k\x93\x8dh\xf0'\xfe\x80E\x9d\xf1\x00\xf7S\xb9\xc2\x13\xc6\xc3(\x8d\xfb\xa8\x00\xbe>uY\xc3VX\x91\xad\xa2A\x1e5\xf9\xbf\xe3,a\xd1\x9a\xad?\x96\xedI\xc6;S\x99?\xf1.4\xa6tO'\xe3\x0dJ\xa2\"\xb6:\xf7\xb8V\x80\xacn\x9ak\x1f\xec\x90\x94}\xc3d0\xa5=\xed+\x10\xcc\xbdGM\x05!\xf4}G\xaf \x0f\\*\xd0\xb2qv\x9e\xfb\xf4~D\xc3\xe4\x02\xe21=\xeav\xcd\xea\xd85R\xbd6\x05\xed?tN\x8c\xbe\xae\xa8P(\xe7\xc3\x05\xd1\x07\xe7XU\xb5\x83\xa3\xf8\x9f\xcc\x12\xc2\x12\xf6#^`}\xcd\xa9\x1f\xf8\xd1\xf6\x87\x80B\xcc\xf6.\xe3S\xae\xb6\x8bl\xe4V\xd1\x97\x17\xb7\xdb\xe1zS\xf3\xeeAy8,Nb\xd1\x19$\xc7X\x1e\x01J\xef\xb4M\xe1Q\xd4\xe0\x1a\x87\xab\xe3i'/F\x8a\xfa\xda\x94\xf7#\xedh\x11c$\xf16?\xa5\x1a\xb0x\x92\xfb\xe5\x84\xbb\xc0\xf9`\xbc7\xbeeFd\xbe\xc4(>\xfd\xa2\xdbx\x1d\x8a\xeaC\xa3a\x1b\x8c\xc8<\x0fa\xde\x1b\x91\x1e\x04\xa4\x86\xf02\xea-\xf0S\xd1s\x85(\x9d\x973Bm\x9f\x7f@m;\xaek9?\xfb\x80Z\xe0\x93\xaeg\xdaZ\x8f\xbb\xbc \xcbm\xea8\xaf\xd4\xd1\x00;\xa3k?\xda\x9aBO\x1f\xd0pP\xa9\xe3\x99{\xf6v\"\x0c\xa0.\x93\xef\xf9\x03\xda\x12t\x15\xd8\x1e~\xda\xa9\x87k\xb6)\x0em\x15m\xdc\x85\x8aPA\xb1\xcf+\x81\x0d\x97\xee\x98x\xd5\x05\x8a\x14<\x0b\xacW\xb6\x8a\xcb){\xdd\x81\xa1\x1b\x1bF.\x89o\xaf)\xb0\xe1pP\xa8BG\x92\x9f\xb3%\xc4\xe7\x82\x87\xe9\xd2%\x8e\xd1@\xcc\x08\xe6<\x87\xf3\x85\xf9r\xa0\xa9\xd2\xa0BzrJa\x9fh\xc1\xad\x11\x04\x82\xf0\xdf\xb1\xaa\x835\x87\xe6\xcd\xf6E{\xfb-\x00\xbee\xe2\xfb,`)\x1e\xa3\xa3\xa3\x04\xec$\xbaH\x10\xe8\x10\xe1dzA(\xb9\xd4GHl\x12\xf8\x91j\x98\"Q\xbd\xf1\x93\xaf\xc2D\xdc\x7f\xebG,\xedS\x08m@\xc9\xcb+\x12\xa1\x17\xfe\x93>\x9b\x88\x1fv\xfeF\xcc\xe9\x12\xae\xdb\xac\x82\x9bo\xa25\x8b\x84\xfb\xfa\x13\x00\xccq\xe0\xe1F\x08\xd4\x12\xcf\xf9Ru\x91\xc2\xf1\xe6\xc9tpA\xf8p\xe8\x90\x130\xea\x85\xf0\xb7;\xa1`\xcfF\x84M\xfc\x14@4\xb0[\xbe\x90\x19\xb9\xaa\x8f\x9dQ_\x07\xa6\xa7y1\xda\xa86W\x8da%#2\x1c\xdaAB\xaa\xa1\xb9RB9\x8b@\xe8\xad\xd7\xda\x12\x0e&\x1f\xe7\xda\xe7\n\x9f\xcaq\xa5\xcc\x0420S]D\x0bQ\x8b%\x99\x82q*W\x1f\xb3\xb3\xb3\xcf\x9e/\xe5|\x91\x9d?;\x7f\xb6\xc8\xce\xcf\xce?\xd3\x89\xd5R\x01\x94\xca\xce\xce\xe8\xd9i!,X\x111\xe1\x8e\x91\x03+G\x84W\xc7P\x81\xe8#\xa2\xb9<)\x03\x02\x94\x92\xe1>>\xb3\xc7\x02\xd5\x9b\xf3\xc0\xe55\xab7\xc2I0\x02'\x10\xb98\x9b\x8eHo\x11\xa9\x14\xabU\\\x88\xde \x8f^W.\x9f\x15\x18p\x93Z\x1b\xd6V}\x0e5\x94\xd3\xb3\x82p\xf2e\xbcf_\x88~4 \xd7:,,F\xf9\xf3t<\x14\x08\xfe\xa6P\xbf\xa7j\xe8i\xda\x00\xee\x85)\x19\x13o@\xfe\x89<3\xc7\xb5\x90\x08\xc5y\x95z\xe8\xd5\x8c>\x15\x99\xf1\x07k\xe6\xc1\xdc\xab\xd54\xa4\xef\x8f\x14q\xf3#f\xfe\xbe\xa2w\x05\x024*\x05\xb4Al\x1fz\x1epZ\x86U?@e\x18kM\x9a\xeb\xae\xae\x96\xab\xdf\x8a\x00\x9c\x0dj\xa8X\xac;\xdf7\xfd\xaa\x0e\x08/\xbaUD\x1e\xd6\x1a<\xa0\xb8Y\xc7\xfa\xe7li\xd5`(\x11\xb0\xa5\xa2\xbc\x85.\x14=\x9f\xbd\x1f\x95\xda,K\x1a\xadM\xd7]\xda\xeb\xfe\xa2(\x87g\x8f\xfdC\x90]V\x00\x1b\xa0\xe8w\xe1\xea%k\x83\xfa\x87\x84zGC\x9cr/\x978\x0d\xd0z\x15\xd9\x0c\x85%\xc8\x1e\x0c\xde\x97;\xca\xd3C\xaezKn1\x9d\x00F\xf6\xe4\xa9\x06\x19\x02\xfdA\xf0\xfd\x96z5w\xc2\x0e\x86\x0c\xd2\x1f\xb9\x04\x97\xf8\xa6n\x07\xdfP\x10\xbf$\x91#b/Z\xaa\x9d4\x0c\xf2x\xccr\xbb\x04\xa6\x96\xedq\xdd\xd92Q\xc7\xdeV \xa9j\x19\xa98]],b\xb0\x8c\x1a=\x14\xa9,\x81\x82\xb6\xe2\x92\xd4/\xaf\xffy\xa0V\x01F5\xf0\xf1\x10\xce,\x87`9\x02\xb7\xad\x8acpr]Z\x19Pjj\x1c\xc1\xdb\xc4Q>\x82(\xc7\xa8~\x0c\x1c\x93\x91iQ\x05|\xb7\xf6\x05\x19\x83\xe1\xac\xf6 \x1a(\xd4\xbf \x81\xa2\xbc\xf1p8\x80\x88ne\xc8\x06j*Ax\x03&?\x18\x01\x07;\xb3)gZ\x1c\xaa\xf54\xc5\xfe\xe0\xc8\xa8\x15&e\xf7\xcee\xf3xY\\\n\x8d}\xd4c\x9d\xd5}UUD+\xb4\x8d;J\xb42\xa9\xee\x90\x83\xee%b\xf6\x82\x0e,2c*\x96j\x12\n\"\xcd%y\x96\x9b\xe3L\x1ds\x18\x03^\\\x81\x8f\x9a)\xee\xdb\x9aVW\xbe\x03\xe2j-\xb9x~\x8b\xdd\x1fl\x02rHy\x15\xd2\x97W\xe4Y\xfb\xc6J\x81:\x1c\x1er\x06k\xf5\x9cZ\x86\xe3\xa3<\xf6{C\x8c*\x1d\x8b\nUf\xb5\xaf6\xe6TN\x05\xd4\x96\"\x1e\x91g\xe0\xe8\xc5va\x04[\xd2ZyP\xc2\xb8\xaf'*\x10\xd3\x19\x99\x8b\x91\x86\xd7\xa1<\xd1\xe1\xab\x18\xca\x8c\xa5\xcf\xef\x95\xf0\x96\x8bI\xef\x7f\x194\xecN\xdf\\\xc7F\xe8|C/^\xb1\x84\x11\xb3\xc8Z\xcf\xbe\x81\xec\xccd\xaf\xa3\xbaG\x86\xe4)yI6\x8dh\xadrM\xcf_\xa0\xd7\x96\x18u\x1def\xe0\xa1\x82\xe3s\xcc\x13\xb7\xd6\x04\x92\xf7\x08%\xe7\xbeg5'\xc0\xda\xfa\x9e\xda\x03\x0d\xc8\x98\xa4\x03rI\x9e\xb6V\xa45\x159\xc5\x01C\xf9\x89\xe0~\xd8/\xeej\xff\xac7\xb5\xad\x95\xf1\x82\x8d]\x03a\x16\x17\xe4\xa4?\x1cf\xa8\xd1A\xc1 :\x90\x16g$+\xcdH\xb6\x04\x9b\xbe\xd2$\xa84P\x7f\xd8<5]P\x03\xb5\xa8\x8d:0\xb1\xb8\xa2[\xca\\\x84\x00\x04\xf8\xe6\xd1\x06\xe5R9\x0b\x8aj0\xb5\x10\xb0\xbe\x81\n\x01\x9a\x9e\xb9\xe9\x0b\x90\x9en\xd4\xc5\x87vs<\xce\xc9MF\x86\x8ae_\x03\xeb\x81\x93\xbfn\xc4\x07\x94\xf1\x0e\xea\x93PN\xc3tFhG\xc2\x84\x8a\x85\x0c\x16\xa7\x93\x1c\xfd{\xa29\xf5\xb0\xbb\xc7Q\x9b\xf0\x10\xb5\xd9\x93\x97$l]\x89/\xce\xb5\xb1[\x05\xdb\xf7\xc3\xe1\xa0\xb5\xa0\x1e\\\x85\xeey\xac\xdf\x90\xde\xfd\x81\xa5\xc2\x8f\xb6\x1f\xb2\xfc\xf5f\xa3\x0e\x13\xac\xe4\xbd\x92\xc84\x11\xc8Y\x17\xab\xeaA \xeaaa,\x01\xc9\xf3\x91\xbd\"{\x14\xce X\xed\x9e\\\x92\x10\xc2\x11\x15\xd6\xe2~@fd\x0f\xd4,D\x81m^\x98\x0d\xa8/\x17[T\x1d\xe3b\x0b#\xcd\x0bP-TS|\x17\x8e6\x8cO)\x94`b\xb3\xa39\xe9\xf7K\xe8\x10\x97\xd0!^\x02`\xfd\x12\n\xc4\xcb\xc1\x00\x03\xa09IZ\xfb\\7\x8b=~\xabXc\x03+\x9fLGpW\xe7\x0c\xaf\xa6l\xec&-!\x97d}A\x92C\xb1\x0b6\xf3d\xa9/eE\xb0\xfa\xdbt6\x04\xaeA4SC\xf3sSE\xf3k\xf6\xd0\xb5k\xedtf\\\xfd\xdb\xc9Q{\x14\x93\x98\xcf\xd1\xa88c\xa0A{\xfa\xf4\xd3:\x8dF\xc1\xb3\x03\xde;\xdb-\xa2\xc8\xf1x}\x18\xe8\x12f\xc7K\xc7\x8a\x0dH\xf9\xc0aT>~\xb8\xaa\x9c{v\xe4)y\x99\xa6\xa0\xc1\x9a\x19@\x84g1\".wue^P \xed\xfb~0\xca\x97\xa8\xd5K#\x11\x8f\xbb3\xbf\x02\xa0M\xf1om\x9c\xdb&\xa6T\x190\xc5\x1b\xe6\xd3\xa5=\x1d\xd2K\x0b\x17\x13\xcd\x97\x16F\xac\xd6s\x93\x90!\x01Z\x94\xcd\x93\"}\xb2\xe9t\x9e,\xdd\x8a\x83\x12\xf9L\xff.xd\x99\x17:\x0cJ\x0eq\xbf~F\x86%9Gm\xd8\xd3V\xce\xf4\xec\xbcE\xee\xce\x80N>zD\x9e=G\xc9\x1b\xa4\xf0\xe7\x07\xa4pX jEN/HF.I\xea<|\xac\x88\xd8\xb5Vm{O\x11B\xda\xd8\x1e\x01\xbfrVT\xf5\xab(\xef\x9a\xfe\x93\xbe\x8f\x1b\x80G\x8fH\xff\xe4\x84k\xbb\x10-\x13j\xa1\xac\xe3b\xd8\xf1\xe6\x85\xfaaR\xdb\xa0z:}\x14N\xda\xe4\xcai\x90\x0b \xf5\xf9\x90s\xa9\xf4y\x9b\x90\x86\\9.\xa3\xe6\x80\\\x93\xb1\x12\xa8\x0dzE\xae\x89\xe6\x15\xf4\x02)\xe0\xd9S\xfd\xack\xe0\xe4\xb2\x84\x07\xf5Zlc\xbc0Z\xf5\xce\xc7\xad\x9d?N\x0e\x8d\x0f\xadD\xf0\x83\xa8F&_&c\xd7\x1e\xb3e\\.\xc9\xb3\xcf\x14ZF\xe4%y\xfeic5\xa8em\\b\xbc\x1d\x08b\x15=m\xa0\xa8\x1d\xdegj\x0e\"ry\xa5\x80i\x13\x9e\x9e\xa1\xee3R\xb0?{a\xa2\xa6\xb6\x88\x16\x16\xb4\xda\xd7\xa6\xe3\xf7B\xa9\x07\xa2\x87yj\xa7\xd7\xb534p\x87\xd9\xb2\x9b\x19)\x01c;\"\xf7#\xb2\x1a\x91\xb7#r;\"_\x8d\xc8\xdd\x88\xfc0\"_\x8e\xc8\xcd\x88|\xe1\x10\xe1\x00\x15\x94\x08\xa9q\xd4(\x14\xb6\x8e\xbc\x0d\x1a;=\x89\xaa\x12^\xaa\xa4\x95lB\x03\xd3\x96Q\xfe\xd0\x8dO\xe8B\xaa\xb5\xbe\xcf\xed\xb7\xef\x8aV\xb8gG\x12l\xace\xb6\xe4\x1a\xef\x017\xafV\xd8T\xa2\xffj\xad\xd4\xd07\xca\xd5<\x911I\xf0~fg\xfa\x1e\xf35\xe3l\xfd6\xf0S\xd1$\x97A\x9e\x19\xd972\x82\xdb\x87KlJz\xed\x08\xea*\x0b\x02&Z!\xfdpx\xac\xc9\xd2[\xbd\x07\xbak\xdb\xf7\x81\x81\xce\xe0\x82\x9c\xf4O\xfa`\xb6\x836\x98\xb0\x81\xea\xdfW\xd5AkD[K[\xe9Rkf\xee\xc9\x98\xac\x958\xf3\x0cX\xb6*\xadPhG.\xc9\xb4\x94\xa2\xa4\xa8uQ~\xa7\n?v\x9dg\x1b\xc6\xce\x17,<0\x80_}\xc8\x00\x06\xd5\xdd<\xea\xc5\xc0H\xc1\xec\xf5\x0b\x08\xbdq\xec6\x8a;\xf1\xfb\xeaN\xbc,\xdd\x82e\x965\x808\xab\xefU\xb4}`\xd3\xc6\x00\xf7\xa6y%j\xaf\xfe\x16f\x11\x88\x99\x1a\xf5\xb7Vn'c\"\xc8K\x9c\x14\xa7=X\x15\xba\xa0\xda\x9b\xb4\x08\xaeW\x83v\xf3\x80\xa9|\xf0&\x050\xbd\xb0'\xf9\n\xb7(tD\xee+\xd2:\xd1\xa6xj\\\x8a\xa6g\xf8~\xbc]\xde\x8d^\\?\xa0\x82\xe1KrE\xee\xec.\xe8\x07rI\xbe\xbc ?4)\x18\x14\xe9\xbd\x9b\xffP\xb4\xe3kW.\xdc\x1cP,4+\x15\xea\n\x05\xd5\xf8M#\xc7W_\xb7m\xf2C\xce\x08)HAg\x83&Eo\xeev#\xe7{\xe52\xee\xe6C\xb7\xa4\xb0\xd6\xf7\xf6\xeb\xad5\x1cXuAB\xc5\xaf\xca\x1c\x04q\x91T\xa8\xf5\x831\xf4\xd6bdn\xc7\xa8\xa4\x8cG\x8f\xda\xcd\x0cHY\xf2G\x1c\x07>?$\xe7\xf5q\x03\x9c\x8c\xf4\xde\xe8\xdc\x08\xcc%\xe6L\xc6\xe4\xbc\x14\xb7\xd3f\x98GKcAevi\xb9\x851\xd2Y\xad\x08\xca\xf3\x0bm\xc6\xd9\xcf\x13U\xcb\xcb\n!+\x14(\xa4G\xe8\xd8\xbc1k\x97\x82\xa1\x7fO\x9b\x8bv$\x08\x99\xb6g\x1b\x92sT+\xf43\xb3\x0b\xf4\x14\x17x\xfe\x99{\x08\x87\xc3lPVDd\xc3\xa1\xc2m\x16\xed'\xe6VCjn\xae\x94\xd2 \\c-\xeb\x84\xb3\x8d3?~\xd0\x85R+\x9a\xe3\xf1f\x80\x0b;S\xcb\xb8\xa1\xcey\x0f\xae\xf0\xa6Km\x1a\xd9\x8d\x04\xda\x9b\x19o9\xdb0\xce\"\xafY\xbdIW\x8a\xda9\xe2\xe1\x1f\x14\xa9\xe2*?\xae\x1d\xf9\xd1\x03RTI\x10\xcd\x06d\x8c\x82S\xf1\x08%+\x0b/\xc3+\xf2\xac.M\x15.\xa2\x14\x1b(1~C\xd9\xec\xd7\xe1U\xedx\xc7\xb6;.}k\xd1\xe0\xe6\x82Z \"Z\x86z\xac\xa1.\xf6\xdd\xaf\xf64\xfe\x90\xd9}03SR\xca\x07\xe9\xbcL\xea\x07Q\xe7\xe3\xe8\xf2A\xad,\x9c\xe8\xb7ka\x9f>o\xd3\xc2\xe2\xb5\xb5\x03\xd5\xe4ZW\xb3\x16\x1cd\xe6\x82<}\x9e\xf3`P\xce\x82\xca\x94\\^\x91\x17\x17\x03\xe2\x83\xf1Wci\x17\xd5;\xe9\xfb\xe4%y\x81\x10\xea\xfa\xb4.&.S\xb5\xd4\xae1kg\xd8OG\xe4\xa9\":\xf9\xcd\x90\xfa\xf7\xe7\xea\xbb\xda\xfae$7\xcc\xac\x01H\xf3\xcb&`=?(\x08DG\xeas\xf1:W\x13\x8d\xda}\x8bX\xec\xb8\xc9\xfd\x11\x94\xbev\x0c;\x02\xebG\xaa\x9dv+\xa8\x9c\xc6CH\x1fm\xc2r\x084\x18\xb3\x07u\xd1\xdb\xf9\xc1\x1a\x1ci\xcd\x97\xb5\x0ev\xec\x97\x99\x84&R\xd26\x0b\xbf\xacZ\xdd\xa4>\xc4\x12pd\xee\xe1\x88F\x8bV{\xa7K\xcb\x10\xcd{GG\x86\x8aa\x8e=\xe0\xe8\xf7K\xec\x91\x96\x88\x1a\xd5:|\xbfH\xc8\xe8R\xcb$\xfdg\xcf\xf3\x8b\xb8\xb5U\x17#mz\x81:_\x8eE\xe2\xf2B\xee\xc7x\x17\xc6BQ`\xb31l\xd7\xfcb\xb9F\xb5^\xe1>\xdc/\xb0\x9cM\x17\xb4\xbe\xe9\xfca\xa8\x7f\x00\xf7:\x82|\xdc\xa2\x06V\x9d\x1f\xbd|\xdc\xe5\xad\xa8\xea\xbf\xf2\x12\xef03\x87W\xfc\xe0# \x16\x85;\xdfg\xe7\xd5\xbb\xdd\n\x81O\xdf\\\xf6\xe7:x\x9fvu=_\xa4\x8b\xd3\x97U\xd7n>f^\x9c:\xb2\xbf\\\x9ev#4#B]\xb4&?\xa0\xa8H\xc5\xb5\xa1\xab\xd8o\xd63$e1\xba.\xbbxJvMF\xe4$\xdf\xdc\xedD\x18\xb4\xca;\x89\xa2M\x8apx\xb0[zyu\xc0<\xf4\xc5\x99{\xeb\xe4\xb5\xef<\x9f\xe2\xa6\xae\x9f\xb9H\x97\xa7w\xae\x8a|a\xbe\xaci_Y8{._rz\xdfv\x1c\xf3\xecS\x00\x1a\xa4\x96\x93\x96\x1b)\xe6g.\xa5<='\xb2z\xf5\xc0\xfc4\x18`t\xf9\xf9\xa7\xaaf\xa1d\xb7\xe9\xf9y-\xfb\xfb.\xdb\xdeg\x9f6\xf7\x9c\xd8c\xa5\xeaV\x11-a\xd1\x95\x9e?(\xb6R\x87\"W\xd2\xb5\xd7\x13\x0f\x0eC{\x82h\xc0\xe7\xe9|Zq\xd6\xb7o\x0b\xd5m\xfcm\xc6\xa1U\xb5\xb3e\x1c\x9fx\xa8\xfe\xee\xa6\xf0\xef9\xfc\xfb\x14\xfe}\x06\xff>\x87\x7f_\xc0\xbf\x8c\xae\xb1\xd4\xce\xc2\x03\x1e2z\xfe\x86\xd3P\xbb\xc1P\xff\x86\x14>\xc6\xe0\xd9\x0f\x9e\x00\xd28\x13I\x06\xef\xf09A`\x12\x1eo9K\xa1\xf3\xe8b\x12\x9e\x98g\xe0N\xc5=\x8e\xa6\xf1\x11\xd1\x13f\xd8\x04tY\xb0;A9\xa3\xf0\xbc\xc1\x0b\xaf=\x01~'\x04\xc7gF!g\x06p\xec\xfd5\x8b{\xcb\xc9&\xe6_Qo\xd7o\xb9\x808g\xcb\xf2\x0dP\xad\x95\xfa\x90\x1b76\xb9\x8b\xf9\x8aCr\xcc\x95)\xb5u\xc0\xdb\xb6\xecv\xf9\x16N\x8e\xc1BdL\"\x97\xb7\x88v\xf6\xdc\xf5\xcau\xd1\x8a\xa0\xce\xc8\x04\xb2\xc9\xc2];\x17\xbb\x0bJ[]\xe4\xd8Am\xd7\xd0RA\xbf\xa4\xfa\x08J\x12x\xb0,\x9f\xcc\x06\xcd\x14\xd7\x87\x0b\x1d\xa80\xd6\xbb\n\x87J#\xb7\xfb\x81\x1b\xbfZ;\xea\xb7\xd6J\xady\x030\xef\x1199}3\x1f\xcf$Y\x0e?9EW\x9b\xb4]$\x80\x1b\x08\x14C\xa9\xf6{\xb2\xa7\xf6\x1f\x10\x03\xb5M\xad\x92\xe8\xeb\xe7)Z$\xa6\xe4\x92\xe472[no\x9f\xc0\xb9\x947O\x97\xe6\xdaH\x1b\x9fE\xff\x05\xa0\xb8M\xe1\xd1+\xb9W2\xd7\xb2[\x05\x83\x83\xde\x98\x89\x01\xed\xf4\xcd\xecz<\x9c]\x9bq[\xb7\xb3\xdf\xe7\x9f\x01H\xeb\xd2\x81Y \xbek\x92 {se=S\xdf{\x18b\x0b\xce\xbe\xb8\xbf\xdd\x89\xde\x80\xcc\x9c5\x9f\x15\xaa\xeb\x05l\x839MB\xaf\xed\x06\xb7\xea\xdc\x18w\x0c\x05tq\xdc\xdb\x81\xb9o\xc1\x14D\x14\xeb\x9d\xed\xcdB\xca\x85\xfc\x04\xfc\xb3\xf5\x06\x05\x04\x1a\x91\xc4\x8c\xc3Ia\xd2Z\xeb\x8e\xdb-_:\x8a\x0b@\xe8\x0f\x98)\xec>\xc4L\xa1+\x1c\x8ao\x1c\x80C\xc1\x00\x8b\xf6\x97\x84\x83\xff\x92@4/\xfe\xae\xe0\xed\x9a\xc0\xa3\x81\xbf\x8df$\x99\xa7.\xc0>\x02\xec\x1d!<\xacw(\xd0\xb2\x8f\x00\xe9/\xa3W\x10\xbb\x87\x1e@|\xc0R\xe4\x0fm\xf3\x88n\xa9U\xf6\x8b\xb7\xa2d\xc6\x03\xcbh\x0f4\x05\x8f\x0b\x1fDW\x8c\xa0r\x8e\xdb+}\xfb\xa7Efy\xf4\xc88)\xcfiz\xe0\xa6\xe9p\x83\xbd\xd1\xaa\xa6;Q?4^\xa4\x0b\xdd!\x87F\x83|0q!\x058\x1a\x8909DdHW@7F\xa0\xc9\xc3\xf3+Q\x0f\xc4\x15\x95\\e\xe2p\xabrD\x9a\xf2\xc0{Y\x8a\xa8$\x91Y1\xc5j7\x8f\x19\x97F\xb2F\x8a\xa4\xad!\x8a\xca!\x8aE\xda\xa8\x16\xe9\xb8\xf8Hi\x12\x9b\xd689\xb4\xce\x89\x83\x8a\x11\xd8\xa2to\xbe\x99\x90\x91n\xcd\x97W{\xe9\xcdn\xad\x8e E\xbf8\xc1\x03!\xea\xc1\xad\xec\xd0\xfcj\x8f\x7f\x82QI\xed\xf3a\xea\x13\x9b\xdce\x03\\\xb0\xe2\xea|r\xedw\xd8\x06\xc7j\xd3\xe7\x1b\x13z{M\xdf}\x18d\xees\xe8\xbd\x1c7\xc5b\x14\xc7#\xd7\xe9\x8f\xce\x12\x95\xda\x89*\xe3F~\x91}\xb6\xb5\xd6o\x15\xd0\xfb,\xf7\x08\x06\x96\x85\x8f\x1e\xd9\x89x\xe9t\x9d\xb7)\xee\xc3\x8d\xaep\x03\x05\x87\xc3\xcd\xc1m\xbc\x9d\xb3\xcdQ{w\xdf0\xc6\x8d1\x81lm\x03\xd0\xf9h\x9b,m\xa7\\4\xfb\xeb\xbc\xd2\xd6\xc1\x01\xb9\"\xf8\x90\xbdJ\x866\xe9J<\xa8\xf8\xafc\xb3\xb6K2\xf0\xe9^\xdb\x0dn\xb5\xd1\xed\xa1\x1e\x91B\xaf\x1a-\xedIA$\xceF$\xfb\x10\xb6{\x04@\xdd\xb8]A\x03\xac`3\xd8Z\xf4\x8d2m>J$\x1d\x8f\x13I\xb7!\xf8\x98\xfcs\xddlKK\x0e\x11t\x82\xfc\xd3\x89'$_\x9d\x07A!\x05pZe2\x92\x8f\x8f\"k\xf3\x8d\x1b\xf9m\xd6C\xa8B\xf4x\xe1\xb5\x1b}\x9d`\x0d/\x86\x86\x8d\xf4\x89^a\xa6\xf7\xc5#>\xba\x1c\x81\xd2\xa0j)W4\xd9gE\x1f\x89E\xfb\x03\xd8\x12\x14\x13\x14M/\xdd\xc5\x18\x91\xf6\xab\x08\xb9\xb7b\xa7\x91\x1bu\xdfF\xd8\x82\x81\xd1\xbd\xb9\x8d\xb0\x05\xb0\xf4\xf15=x\x1b\xa1\x08\xee\xbe\x08`X\x83oW\x1d\x8adT\x1e\x8du7d%%\x0ciCX\xd2\x05i\x89\xd9F\xa0\x18\xb2\xb1\xfdW\x02\xfb\xcb\xfc\x02^\xd3\xb1\xe2\x01\xb6s\xb0\xac\x83\xf9\xb4\\\xf8\x03\x1a]_x\xb5\x14\xe4\xa5/\xdb\xee\x0f\xfa\xda-\xf0\xa6\xc8j\xb3f\xb7T\xa5\x8e\xd6<\xe3\xb4\x95\x82\x8d'\xd0\xc9\xc1a\x90J\x17@\x1e=\"t8\xcc/\x88t\x01\xadn\xec\xd3\x06\x9a\xef\xbe\xfdP\xca\xfc!\x92\xf8:x\xb8\x80\x1ch\x94,H\xc6\x9b\x11\xb9\xff\xc7\xfd\x04\xe7\xfd\x04\xef\xa3\x1d\xba6\x8a\xcb-\xdb\x87\xe2\xfd\x04\xb7\x91\x9a\x0f\x1e\xb6.\x8d,\xaf\x8f\xc5\x07\x95s\xf1\xd4\x11=\xceZ\xf37\xde\x14\xcc}\xce\x0fP\x13\x12\xd5\xaaE\x9dH#\x19*\xe8\x90R\x971\\\xdb\x0d(\xeb\\O\xc9\x7f>^\xba\x82%o\xd51>\xb9$\xf4\x82\xf8m^]\x88\xa1Is\x1f._\xa5]._\x99_\xdc\xc1\xbb\x0b9\xe8\xe1\x858i\xa9\xf9\xe9\xcdM\xd7\xfb\\\x9aN\xe0j*\xda\x0c\xa4\xcd\xd2b\xbe\xd0\xd3\x11\xe1f\xf1\x15\x97\xca\x01rSYzu\xa2\x03K\xc9\x1d\xf5\xa8\x8b\x19DY\x8c\xaaQ\xac\x8eP\x1eV\x96\xf3CMw\xb4\xc1\xfb\x85\xec\xef\xf2an\"\xeem\xe3\xdc6\x86\x1f\x8d\x88\x1d\x8e\xb0r\xfe\xf4\xb9#\xc0J\xd4?\xff\xb4\x92L\x1b\xe2\xae\x08vgbc<\x9d\xba#wD\xec\x16\xa7\x1as\x9d\xbbs\xb1\xd4\xa3\x89\xcd\xf4\xd4\x9diE\xbd\x1b\xe1{7&\x8a\xcb\xd3\x86`!k\x16\x98\x1c\xcf\xdd9\xfc\xc8\xd6\xf1\xc2\x9d#\xa4\xdc\xc4\x1ay\xda\x10Q\x86\x85\xc9\x8e\xa6\xbe\xad\xe93w\xb64[\x99\x1c\x9f7\xe5Ht\x8egg\xee\x1c\x81\x1f\xd9^?k\x18h{\x95\xc4\xac-\xcc\xdd0\xe0\xc5\x8b'&k\xc3\xb0S\x1d\x1e\xc8dk \xd1\"\xa8 \xe4\xf2\xaca\\Y$|qo2}\xd6%0J\xf6Q\x02\xa3\xe4^\x90\x9c\x81Q\xa8 \x8cB10JE\x11\x0c\xd9\xf7\x18\x81\x99}\xebG7\x8a@\x17\x16i\x1d\xea\xb4n\xe9\xb3\xb7\x81t\x91\xd8\xb7E\xcc\xd5\xbc\xc3\x1c\xc6\xabb\xbe9z\xf9J\x8d\xa1\xafXI\xf1\xf8f\xd63\xf1hU\x89\xb9\x0d\xa6\xdb\x1b\x15\xe3\xed\xf6\xc0H\x0bM\x9c\xd6T\xd0\xde\xd2\xd6 \xcc\x11\xce\xac7\x98\x9f-]\xe6:Y\xc5\xe7\xf5kE*[=\x86C\x9fG\xc6KLa\xd4KQ]j\x88\x02\x8ez\x8d\x8e\xac\xf6\x15u\xafI\x9c:4y([y\xd4\xdb\xb1\x7ff\xa2\xef\xc3\xe5\x97\xb3\x01\xe6W\xe8R\xd1o\xb9MP1l\x03b\x8f \x97$\xbe \xa2Mx\xe2s\x01\"\xcbI\xc1g\x08\x04\xe2\xd2\xa0\xfc\xa0@\x19!\x10\xce3\x86$N\xf1\xdeb={)w>\x17\xefG\xa5\xe90\x1b\xfd\x8e\xfe\xdb\x0fNIy\n\xf2!G\xf7\xf40\x98\x97\xc4o\xd6\nF8x\x91q1s\x02\xc3\xc9\xe7\x11\x8e\xd3t0\xc0}\x84{W\xd6\x18\xe8\x187z\xaa\xf5\x97`\xef\xd4z\xbb\x9dM\x12\x16\xad\xfdh\x8b7\x04S\xee\xcd\xf5H/\x1b\x06\x95\xe0d\xe8R\xa0\xf7P\xe4\xe1;L\xe8\x0f\x9aF\xff\xd8\x802\xcdaO\x1ct\xc7\xeap\xfcF\xa7\xdc\xd9\xaf\xc8\xb1bB\x9dd\xf1:\xc2\xa4\xb7\xbe\xf0v\xc4mw\xed\xd1\x94\x91\xe9\xd9\xcc\xfd\xe1\xf3\xf3\xa6\x0f/\x1a>m\x1a\xad\xa7\x9f65\xdf4(\xd3\xf3\xc6\x91o\x82\xebE\xd38>w\x8c\n)\x98\xd29vbk\xb6\xa1Y \xda\xcb5\xf9S\xeap\x94\xd5H\xec\"\xcb.\x80\x1c\x192\x06T\x89\xd7]7G\x83\xc1\xc5@\xd1&'G\x8e\xf4e\nE\x82\xd4\xb6L\xe8\xbb\xe2UJ\xa3\xad\xf4!\xa3Z\x87\x83Q\xce\x82\xca\xf6\xe2\x1f \xe2w\x1e\x8b\xaa2\xc8\xc9;\xa7\x0d\x17E\xe2v[?=\xbc\xd8\xff\x82\xf1\x81\xd1#\xe1h\x8f\xc8\x89p;\x9a\x85\xd3\xcb\xb3\xd2\xf5TSYyV\x9c\x88ck\x98\x1e\xacA\xbb(9\xa0\xc6\xb0\xf4\x19U^>\x9eS\x12\x7f<>\xac\xb9\xb0~\xd4\x1c\xcd\xfb\x9d\xd4\x189\"\x15\xab\xc9\xedE\xce\x14+\x1e\x92iC\xe8\xd9\xe2\xefC4\x1d\xec\x90\xfe\x9d\xe4[\xe1\x1d\xe5kh\xabE O\xdaw\xbd\xc5\xdf{\xf70\xd7Xzi|\n1SG\x87\x81\xd7\x80\xa7\xf1F\x1c\x02\xbc\x03\xd0N\xa3\x11\x0d\xeb\xc1\x13\xb7C0\x1ch\xdfiv\x17\x0f\x87\xe8\x19\x9a\x93\x96;\xdf\xb1\xa2rq\xe3\xfd\x1b$U\xf1\xc7RF\xd8\xa5\xc5\xb59\xb8\x0e\x9c\xa2\xc0<\x7f\xfe\x02\xfdP\x13\xbd\x19;+\xf4\xaa\xb7X\x9c,z\xbf\xfe\xe4\x9f\x1e=\xee\x0f\x9e\x0cG\x93\xd3\xd9\xc5\xe5\xd5\xcb\xeb\xdf\xcc\x97o\xde\xfe\xf9g\xf9\xfe?\x8f{f\xe3\xd2\x1bt\xbboQ6\xb4Z\x92\xabb$\xa9\xca\xe5\x8b.d\xd5\xd2\xd4\x96\xad\x8a\x92\x9bk\xa4\xf3\xf3\x06\xbf\x8b\x07(\xeep\x18\xe3\xc5\xdf:j\xf9\x8d\x8e1\xf1\xb6\xf0\xf9\xf3\x17\n)\xcc]\xb0(\xbf\x88\xd0\xc4\xc8\x8c\x8fg\x85\x10\xc3+r>r2w\xcd?\xb4\xc3J7\xca\xebM\x15\xf8\xf4\xea\xb6B\xbb\x90\x96N+\x14\xa2\xf2 \xb6\xf9\xc7/\n\xf3k]\x1c\xb6\xb1_5\xbf5\x0fuo\xb1\xe8\x99aV\x1b\xc1\x8f\xb3\xea\x8eE\xe4\xd29F\xb3\xa0\xa0c\x89\x1c\xe3*\xc8\xee \xb3\x11\x01\x0f=\xbc\xb4\xa1\xcc\x0c\xb5\xfa\xfcE\x93+\xa1\x8b\x81*\xe8\"w\xa4,rE\xe8\x12\xc3\xd7\xc1_\xb3\x0b\xb0\x84\xac\xdc\xa7)D \x81\x93\xbf\xe6\x8d,\x85sx\xb8\xceH\x0fAIU=\xd4\x85>>\\\xc0\x19+\xa8\xae\xf2\x00\xb6\xe5\xc5\xd7\x85_4\x84\xed!\xa4\xd9i\x85_\x08\x93?'\x8bh9\x04\x93]\xd2k7Q1\x91|\x9a,S\x0e1\xa6\\\xde\xa5\xb5u\xd2uU\xc4E\xca\x93G\xfd\xfd;Z\x1cJ\xb2\xadu>m\x91\xb1\xcf\x1b\xd6N\xdaN\xf2\xdb\xed\xd7R\xf4^\x06w\x91[\xb257\xfe\xcb9\"\xf3u \xce\x94\xbc$g\x18\\\xa0\xda6\xd8.\xcf\xc0)\x96\xd3\xa7\xb9\x82\xee|0\x02\x03\xca\xab\x83\xd7\xdcL\xaef\x9f\xe7~\xee\xed\x8c*\x9c\xd3|\xab\xb9\x00\xd0\x01\xaeC`\x9ec\xdc0\xb8\x99n\xda\xaa\x81\xcc\x15!\xa8\x05\x0d\xf3\xd1\xa74T\x93\xc7O\xb2\x08\xce\xc9\x98\xa4\xa3FF\xacWt:\"\x1c\x0f\x89\x1c@\x9a%\x97\xe2A~\x8c\x8e\xe4u\x0b\x10>.k\xf4v\xdd\xd8\x19TC\xb6\xf6\xd7\xb6\x80\xceH\x9c\xf7\x161\x0f\xda\x0dY[Xj\x96\n\\\xd2T\xc3\xea@\x11\x9b\x01\xd1\xc4\x82b\xef?\x9a\x8d\x17\xbc\xd8P\xa8\xd7$\x1e\x8f\xc9\xcc:\xc1/|\x84\xe7\x18\x1d6]\x82\xa7\xe7&\xa1%\xfa\xc0\x18J\x04wSxjou\xe6}\xd6\xc1\xd4;\"\xd7zF1\x06\xaa\xd6%T\xe6\xd8\xa2K\xbb\x15\nk6 m3\x8c{\xef\xf6\x98\xd6\xb6\xcb*\xb4\xf8@\xc3\x97\x02\xef\xb0\xdd\xd7\xd6qv02P\xa2\x90Y\x01\xe7A\xad\xfco\x963h\xdf\xfd\xff*\x8c\xa1\xb1\xed\x7f\x13|\xe1\xd9\xd3\x0elAg\xfa[p\x85g\x0d\xee0\xdb\x98\xc2\xc9\x95\xae\xe7\xef\x8e-4\xf5&\xe7\n\xad9\x8e`\n\x1a\x0b\x1f\xce\x13t\x05\xff` \x9dX\x82\x1f\xa5\x7fc\x96\xa0Z\xfc\x07K\xa8\xfcZX\xc2\x8b\x06w\xc3\x7f\x0b\x96\xd0\xd8\xf6\xbf \x96\xa0\xdd\x9e\xb5\xb3\x04\x9d\xe9o\xc1\x12tS\xffNXBSor\x96\xd0\x9a\xe3\x08\x96\xf0b\xfa\x81,AW\xf0\x0f\x96\xd0\x89%\x84\x94\xdf\xfc\x8dy\x024\xf9o\x8c)\xd8\xe46\xd3 \xb3f\x89\x0d\x00\xc50\x00\x14\xa8\xfaT\xea\x8b\xe76\xf5\xf33\x9b\x8a\x9e\xe9X\xd53\xdd\xd1Q\xb9\n\xfeR\xeb\x03\x9b\xa1-}-=mH\x0fZY\x98\xe7Z\xc6\xc2u4\x85\x97\x0c\x1a\xc8\xbb\xc8\xc9;\xeaZ\x03\x18\x89j6\x8a\xa1\x95=\x97\xaaU\x0f:\xdc\x16\x81\xd2`5\x0f\xf7\x9a\xfa\xa8\x10\x1e\xeb\xab\xa7\xcf\xc85\x8c\x02\xf4x\xaa\xf0\xe3i!\x9a\x1f\xb6\xee\x80\x91\x16U\x10H%bt;o\xda\xd1\xd5D\x85\x1c\x91u\xe1\x0c9>G\xa7\xb0\x1e\xc0\xc7\xfb\xda[\xad\xad\x80\xf7\xe3\xdc\x15\xf3\xc9t\xa0\xd0\xbc\xbe|<\x1a\xc1J\x9d\x91\xcc1!4\xc25\xe5t\x07\xbff\x81\x1f\xa63\xe27\x10\x97\x07\xd8Z\xe4RO\xf5\xdap+\xe2l\x9a\x0f\xce\x12\x17Nm\x06uF\xa9C*&\xb0\x01\xc0\xb1O>@\\\xfb\xbb\xdcW>z\x84\xfd\xd3s\xa4\xbax]7\xb7\xb0\x01\x05\x90\xad\xa3C\xea\xd3\xfe\x1b9\x7f\xb3X,\x07\xfd\xc5b\xb1\x18\x00\x83>9\xcc\xf9U\xb6(?K\xd5\xb1\xf8\x80\xcc\x18s\x08\xe3\xdc\xd4\xde\x07}p\xfc\xe1\xc0O\x9du\xe0\x87+2_\x0e\xcc\xee\xac\xfe\xbd\xe0V\xd4E\x0e\xe2\xc3\xe8Xv\x0cR\xa7\xcb\xeb\x87\x84\x8d\xac\xac\x1b\xdc=\xd6\x1c\xa1\xba\x17S\xbd\x93s\x7f\xa9\x06\xaf\xde\x03\xa8p\x96W\x9d&\xb8\x9d\xa9H\xfe\x95%ZXCqm\x07\x90\xd9\x08x\x1fc1\x1d\xbbhJa/\x9b\x17M\xcbU\x1d\xc5\xba\x9e\x92\x97\x07\x8c\\N\x1c\xf8ZM\x83 \xd6\xad\xb54EGo\xb9\x16\xd4\xa60\xc8~9K#k\xa7\x93\xe5v:\xf4\x82\xf0\xe3\xa3\xa3\xf3\xc3\x81\xd7\xa6\x0d\x02}\x87\xa2M\x81\xd5y\xf7\xc0\xeahG\x04\xfd\xd4\xe4\x8e\xab\xe1B\xd7\x8a}\xae\x96cT\x11k2\xe3\x05\x10\x05#-\x12\xe1\x1c5\xc65\x8f\x96\xcd\xe4\xaf\x1bMk\xaf\xfc\x12D9\xad\xaah%|\x0e\x82\x11\xbb \x86\x8e\x98\x1e\xb9\xb4\x08Y$f\xe4\xacN8\xda`\x84\xa8\xcd3\xe2\x82\xb1\x94\xb1\x99~\xcf\xe3\xe5\x04\xdan\xec\x08~\xd6\xd2\xc7\x87R\xf2\xd8\xc1\x80\xb3\xd57\x0f\xa0\xf1\x05\"\xcaK\x04\x94~\xc4\xc0\xe4\x05Y\xe4\xecY\xd5u\x99\xd1\x99|\xe6\xd0\x99\x14\xe2\x8a\x9e\x8d?\x9f\x9c\x80\xf2\xf4\xc9pqzum\x15\xa6\xc3\xdf\xe49\x96\xfd\xebY\xfe6^\xfe|6z1}_\xf8>\xb8\xee_\xcf\x16\x93\xa3J\x0c\x9e\x0c^\x9e\xd6\xf56\x05\xd8&\x8b\xf1\xf2\xe7\xe9\xe8\xfc\xf9\xfb\xc1\xac?\x7fs\xf9rqwv6^\xdc\x9d\x9f-U\xd9\x87\xf3\x91\x92n\xa7U\xc2z\xd1\xa8}\xd0\xd4\xa3_\xa5\x16\x9b\xa2\x13\xaa\x97\xbd\x82(\x04\xaa\x90H\xab\x0f)\xb8\xab?\xe9s\x9b9\xab\xc5\xa1,\x94U\xbb\xa1l~\xb6\xd4\x8dL\xf5\xd5~\x0f\xac\x08\x02\xb5\xe7:\xb1\x02C\xd1/W?(\x8ba\x1dd\xef\xd6\xfd\xc3\xc1]Be\x1d\x1c^\x96\x02|\xe69(\x8e\xd6[\xba\xc2S\xb2\xaa\xe3\xc3\xa3[\xed\xb2\xcb8\xb0\xb2\x87zF\xf2[\x98\x03E\xedN04i\x94\x874\xb5\x13\x986M`/\xa4~ b \x87m\x93\xe9\xfdc2K\xbf\x8f:\x99iu2?\x0e\x91.\xd2\xa6y\xcf\x8b1N\xe7:\xf6\xeb\x8e\xe8(\xa5\xfa\x0fD\xe6\xa4\xab\x18CwR\x0f\x0b\x99?>\x04\xd6\xf48\xfe\x05\xb7u\xf0\x17#\x94\xfa\x18\xffs\x0d>\x1d\xads\xbb\x8d\x80\xb2[\x16\xc3\x1f\xfdo\xb2\xd3\xd1E\x9f\x9ec\x04R\x81\xd9\xd4_(\xee\xd3;\xf8\xa3\x9b\xf6C\xfcW\xbfE\x1b\xa8\xc7O\xf0\x95\xfb\xa9\xf9;Y1f\x13'w\x89W|\xces\x05\xb7\xef\xd4s\xb0\xc6\nq\x19\xc0\x13\xf6-Lyb\xfeB\xa9P\xfc\x84 Y\xa2V\x85z\x8c\xd8-|\x8a6\xf8\xc7\xc7\x7f!\x16i\x14a\x7f\xe2\x84\xfe\x94\xb1 \xf6n`+\xa4\x92\x92\xd8DD\x85b\\\xa4\xf0\x9e2\xbe\xf7=\x86\x8fij\xe2\xa1\x9a\x81I}\xb6\xc7\x8f\xbe~G\xb8\xd2\x10\xffD!&\xc74\xb1C`_ \x0b\xfa\x84\xec p\xca\xa9\xfeD\x188V\xe8\x19\x12;?\x0dY\x9a\x82\x06\x8a\xf4D\xf4\xf4\xfc\xd33x\xc2\x16\x05\xccr\xc6\x01\xae=\x0bC\xe8/\x0e\xc1-\x86t\xbd\xf3\x10j\xf5w\x9c\xa5L#\xca]\x18\xf0\xc4\xb3`\x15^\xb1T\x88\xd3\xf8\xee\xe9\xe7\x93\xe7g<\x7fDd\\\xfbYx'8b\xe8&\xc1?\xf8 \xb1\x82j$\x16\x82z\xbb\x90E\xf8v\xab\xfe]\xb1tG1\xf4\xec\xca\x17^\xeccX\xde8\x80\xb9\xf6h\xa0g\xdd\xdb\xf1\x18\x83\xda\xe2\xd3\x98\xdd \x16\xa566o8f{\x16\x89\x15\xf7\x05\x1bS!X\xb4f\x98\x1d \x0c<\xee\x01\xa8u\x10\xd1q\x12\xd0\xfb\xd4\x8f\xb6\xda\xbf\xa3IR\xb9\xa9\x1f!\xea\xaf\x05T\xbe\xde\xaf\xd4\x1f\xb6>\xbfQ\x7f7\xd4c\xc2GX6\xcc\x84\xf9\x8d\xb6:\x84\xaf\x9f\x02zma*\xb7\xbe\xc0?\xef\xc28\xe1\xb1 \xc0\xbb\x154\x80\xbav\x1e\xae\x04=+~\x82\x7f\xb8^\x13\xde\x0b\xfd\x17\x97\x85@L\xfa\x91BK?\xe2\xdb\x0d\xbbO(\x16\x08h*60\xe0j\xd5\xe0\xa2\xa0[\x8dD\xa1M\xe17:%G\xa5\x10\xeb\n\xd3\xf1\x8e\x05zYE8wa\x16\xea8\xbf\xe1\x1e\xa0\x03\x19[=\xc4\x88; \x0dB\xfc\x9bPN\xdf\xbd\x03\xa4K\x02*L4\xe3\x84\xc7w\x10\x1f8I\xef\x01\xce\x9f2\xc6!\xc1,0\x96\xc6\x19\xc7\x95\xc5\x11iyz\x1fA^.\xf4\xb2a^\x1c\xad\x03\x7f\x83KL\xaf\x88t\x8bk\xf0\xe6>\xc1\xf4\x10\xa6*\x8d\x835\xc5\xc0\xc5I,\xfc\x0d4\x96\xe2\xc4\xa4\x82Q\x00+\xc5\xee\xa8\xd74\x01\xc7)\xb0\xc2\xa2-\xc0\x94\xad\xa1\x81,\xe2\x8c\xc2r\xcc\xc4\xf9\xd9\x19DaVx\xc6}D\xd0\xbd\xcfn\xc79\xf4\xb7l\xe5a\xf6[Aq\xf5\xdd{\xfe\xed= \xc3\xdd\xc6GD\xbf\xe3\xf0\xe9>L\xb7\xbc\xb7|8\xff( \xf9\x9f\x0e&\xbf\x7f\xfd\xea\xdb\xb7\xaf\xbf\xf8\xe7\xb7\xdf\x7f\xf5p\x01\xb8\xa2Eq+\x17+A\xf8I~CE+^\xc8Ic0}\n\xc7\x1aE3\x05\x14\x97\x9f\xea;\x8dN\x97\x0e\x06\x17\xa7\x15\x8d\\\x8a\xe5@u\x04\x98\xac3?\x9d\xbeW\x99\x1f\xce*\x8b\x97v\x1c\x04\xab\xc0\x0f\xeb\xfa\xf8\xa7\x9f\xb9\xb9\xa3w(Z8\xde8\xdd\xb8/\xa9<}\xee\xd6Iy\x9a}\xbai\xa6\xbf1f(9\x93\xf1\x0c'+\x1cI\xa0rA\xf1\xe7\xde\x1dF\xaa \xe6\xd3\xa5b %\xdd\x14\xb9&\xa0\xa1\xf8&\x12}\x95\xc1\xe85\x06#2}\x01\x01\xd6\x8b_Gd\x8aa\xb6\n\x97\x81\xfc~\xa4j\xa1}\xa0\xcc\xb4\xff\xe2\xf9\xf3\xa7OK;\xf2\xa0\xcc\xb6\xea\xc4\x1am6\xc0p\xa8\xb1k)2\xe9X\xf1\x01\x05J\xb5\xa7%\x98\xf8\\eY\xb6\x00\xe1\x14\x95\\\x0e\xec\x1e\xfd\xc2\xfe\xeb\xca\xb3\xac\x05\xb5\x99c\xf2\x95\xe0\xe1\xf6[v\xa7>\xfd1k\x88\xca\x01\x07*iC\xc4\x0e\x1am\xbf\xe3l\xe3\xdf\xcd\xd4\x8e$\xdaft\xcb\xc6.\xed\x8b\x1f\xdd\xf8\x9b\xfb\xc6\xf8*7\xaf)\xdf21sJ\x03\xe2>\x89!\xa8\x08\xe3\xee\n\x809\xa63\xd2\xfb\xeb_\xfe\xcf\xbf\xfe\xe5\xff\xfa\xeb_\xfe\x8f\xbf\xfe\xe5\xbf\xb8\xd4]\xfev\x17`\xfc\x91(\x0b\x1cJ\xa8\xfc\x8clF\xce\xab\xa7\x1c\xa5W/\x0e\x938b\x91p\x8e\xb5\x17s\xe6JW?\x9e\x05\x10\x8a\xa5\x07\x9e\xe4z\xa3<\xea\x8b\xda\x1c\x19+\x19|\x03\xc9E1\"x\xd7\x83\x88{\x1f\xca\x05v\xbb^\x8e\xaeV\xfc\\=\xd8\xa3\x0eA\xfd\xa0\xe7\x08\x83\xe8\x98mto\xd7\x05th\xbe72\xce\xf7\xd4\x06\xd9@`\x1aV\xcf;F\xd7\xc8 {;T2\x890\xb0}\x0f\n\x9fu\x90\xbeB\xd0\xa6\x91\x8e\xa5\xdb\x0dv\x1c\xc7\x83\xc0\x17\x02w\x94b\xa7\xe8\x00)\xc5\x00&y\\\x8e<\x14K5FH!\xc2\x87\x0dHR\x08\xef\x82\xbaP\x07\xfc\xbfr\xbf\xfd\x83,\x14?\xfe\xbb$\x0b-\xcb\xae\x0d\xab\xff\xce0\xc6q\x1d\xbe\x801\x8e\xaf\xff\xc0\x18\xf8=\x04cj\xe9\xe4(F\x82\x0c\xa1\x13\x0d\xfd8\xf4\xffCh~'0?\x94\xd4\x1f\xa2\xf1\xff\n4\x1d\xb6]\xf9\xd2\xe4\xc5}IU\x98w\xaffS\x0b\x83#&jf\x1e\xfez<\x8e\xeeQ?\xbf^s\x86\x07\x04\x943\xcc\xc5\x85\xef\xa1\xde\x97\xa6>N&\xcd\xd6>h=A\xc9\xbaZ\xfb\xf8\x07\x93|\x18\x99\x95\x1d\xda\x12:\xac\xe25\x8c&\xb6\xbc\xca\x84\xd0z{\x1a\xed\xf1D\xcb\xa3\x890\xca|\x16 T\xa6{~\x19\x9b\xbc8\xd0\x7f\xb6<\xce\xf0\xc4+W\xef\xe7\xa7]\x82\x1a\x1cZ\xe39\x18\xf3bNE\x8cZ}d\xe9k\xa6$ d\xf2\x1b\xd4\xf3\xfb\xf8\xdd\xc7\xc32\xcc\x05\xb5\xb0\x80\x99S\x0b\x06\x03\xb6\xf1Y\xb0N\x99\x8e\x11\xb5-\x00\xbf\xf1\xb7\x19\xd72\x01\x96P\xb2\x81>\x1b\xd0\n\xf1\xdd\x14\xfe\x05yl\x87\x87k\xa0X\xde=\x87\x7fA\xe9\xaf\xd6\x83\xf9\xab\x0f\xe2l\x9f\xf3\xf5\xa3\xfe\xc2,\xf8!\x0c\xbf\x1f%x.\x88a\xdbz7+\xa8\x04\xacw\xe0\x81mY\x84IP,\xa4x\xde\x12\x9aC6\x08\xe5\xa6\xfe\xfe\x94\xe1\xf1I\xc8\xa2\xcc\xfc\xf5\x05\xf6>d\xbaC\x11\x9e+F1\xce+\xceN\x9c\x08\x0bil\xc7%\xce\x84\x06\xcd\x9c\xad\xe1\x9fxk0\xef'\xf5\x0f\x9e\xe9q\xc8\xc8\xb3\x15\n\xb6\xf0\x0f\xb5\xe7\x00\xa6\xca\x94\x05\xfa<%\xdd\xd1u\x0c\xc7IiH\x03\x80\"\xd7\xc9\xa7 \xf5\x10\xdc4\xa1XPp\xff\x86\xe9\xa7\x18\x89N*\xee\x11\xdb1\x08]/\xcd\xc2\x90\xe2)\x05\x06\x9d\xd3R\xa7z0\xd8,`$\x05\x0b\x93@\x1f8*\"`V\x90P\x13\x0f\x0f(\xb4\x9a\x195gG\x82\xe3\xbf\x14)\xa0\x80\xbc0\xd6\x19\xf4`\x8f\xc7<{\x7f\x8d\x07\xb3\xb7+\xdes\x04\x8a\x03\xa3\xb0^\xba\x87^\xe0\xd2\x0d\xc46\xb8GQ\xd9<\xafQ.5\xaff&i\xe4\x87T0/\x0epm\xe8\xf706c\xac\x13\x04\xa7Qj\xd0\xd7\x92\x81\xc2\xea\xf5\xb9&\x16^\xe0' \xc5.\xaf\xd9F\x0b\xd1)\x9c\xe5\xb0 \xf0\x93\x14\x17\x87\x1f\xd8E\x81\xcb\x04\xcf\xcb\x0c\xdc\xf0`\x84\xe9\x1b\x86G\x9a\xda\xf6\x1e\xe8\xaf\xfdK\xf9\x96\xd3\xb5\xaf\x97'\x9cnq|J\x11\x97\x99\xa0\x862\x84\x06\xb2\xc2_\xa1+O\xe2\xe0~\x1b\xdbG\xcb5\xe9\xda\xa7A\xb1 n\x90N\xe01q\x8e9\x10\x01\n\x9e\xee\xc3U\xac\x0fq\xef\x84\xf9k\x1a\x05\xabzx\xd0\x1d\x14\x061\xed\\\xef}\x06\xe8\xbc\x87\xae;f=\x82Y\xdf\xb0\xdf\x06z=o\xd8\x97j\x12_Q\xc1\xfd;\x93\xa0\xc5\x88\xd70{z\xb819\xd5\x94U\xbdF\xfb8\xd8\xb3b\xc9\xdf\xf9\x9bM\x96\xb2o\x958\xa3\x99\xb2JL\xed\xde\xf3\x15\xd2\x0bH\x144\x12\x90\x13S\xbe\x0e\xe2XC\xf4u\x16y_\xe4\x8f\xbf\xcd\x1f\xff9\x7f\xfc\x1e\x1f\xff\x99fi\xea\xd3\xe8\xb7A\xa6\xe1|\xc5\xf8\x96\x15\x1e\xff`E\x8aW1Ovq\x10o\xef\xf1\xfd\x8f\x9b\x8d\xa1\xc5\xa87,\x80\xf3C\xc2\xbc,\xa0\xbc\xdc\x97\x1f\x92\xb8\x98\xe9\xb5\xb1\x84`\xaf3\xbe\xca\x02%\xb4\xb8F\x1d\"r\xf4B=\x8f!\x8b\xb4e\x89z\xe6\x1c\x97P\x08\"\x0f\x9a(l8\x05\xc4\x0f-^\xe3\xe9f\x08\x04\x99\xad\x91\x04\x84a\x16\xf8h\xea\x81\xa7\xb0H\x92\xd1\xd8!\xdektN\xe8z\xad\xabMv4\x121\x92b\xae\x89L\xc8\x91\x00\xea\x83\xdc\x04\xa8\x1e&\xfc\x84\xe44\xbc\xb7\x98\x1aj\"\x17j\xd2\xa6\xde\xcd\xa3%s!\x92\xb7\xd0\xa0p\xa8\xa1\xcd\"\xcd\x90\xf0 \x00t\x8cU\x0cc\xf5k\x14\x8b\x1c\xd2\x1a\n$\x9e\xc7\xb4m\x80%\xeb4\xf0\xb7\xfa\x01\xbfd\"V\x12q\xc0\xb4,A\xbd\x1b\xc5`\x10\xefW[K\xbcV1\xd7\x90y,\x08\xd4x\xe9\xf9V\xafj<\xcc\xeb\x8ey78\x94V\xc0\x08(2!/`Hvm\xad^\x8cB\x82\xfa\xab\x97\xa9\x17\xc7|\x8d\x89\x9a:A3\x8a!\x8cW4e\x86g\xd2\xd436>\xe6L\xcf \x84M00\xd3w~\x98!`\xaa\x8a\x8d\x9a \x16y\xf7&A\xd59Nw\xfe\x06\xea[1\xbd\xd2V>\n\x1e(!\x16\x96/ZB\xa9\xbfc\xc3o\xe1E\xed\xffz\x95u\x1d\xf3\xb1Z <\x89\x03j7\x1f\xf5\xe41\n+i\xfe9\xe1\xb11\x9e\xc3\x04\xce\x14)4\xf4\x05f\x07\xbb\x80\x8b\x1d\x12Pf\\#k\xf5\xe2\x08\x18'&\xf1\\\xa8]\x03\x97\xd5Y\xf7~\xaa\xf7,\xc8\x14\xd9z\xcbB\xcd\x06Y\xc0\xf6\x16j#\x04\xf8(\xfc\xaa\xbf\xe3XQ<\\\xf9\xf0nF\xa0 z)V=\xb6#\x82\xaf\xc5bq$\xc6\x1b\x1a\xfaA\xfejP\xdb\xbe\x8c\xe9\xfa\xc7,\x15y\x9a\xe0L\x8bA\xfa]c1\xbc\xed)\xf7i\x94\xe7\xbe\xb5h\xb6A\xd9\x03Z\xda\xc2\x06i\x0b\x1b$`\x9dc\x83?E\xb9\xd0\x08eY\xe4#\xe34 %i\xb5@8u9M\x1a\x950Y\x9e8D-?\x82va\x99\xdf\x00 7\x98\x00;\xb5\x1b\xd8\xa9)\xb1L\x17\xbaa\xf7\x89\x929R\xfd\x92&\x10X]\xbf)n\x00\xcf\x96\xd4\x02%\xcd\xc7,`\x8a\xd6\x8d\x0b\xecI\xd5\xcd\x82\xd0\x8ac\xf8\xae:\x99S\xe1@K3\xf9\xe4\x05\xb16P\x1c\xb3\x84\xef\xbc\x1d\x8d\"\x16\xa0\x00\x84=\xbdw\xa4Asw\xd0\x8f;\xe8\x07\xca\x1f*7\xfc\x03_\xee\xe1\x0b\x18|\xbf\x8b\xe3\x90Fk%09d\x94\xac \xa3\xf4P8\x81U\xaa\x97\xb4\x15{Vl\xcf\x02-k\xdbM\x9a\x17\x07Y\x18\xa56\x13\xbe[r\xad?kQm\xcd\xa28\xb4Y\xd7,\xd1:\x0d+\xcb\xe7l\x1a\x1es>\x07\xbbG\xf5\xc05ykbA\x81\xc2\x1f-q\x17H{\xc4\xc4\xce\xf7n\"\xad\x17\x0b\xecV.\xb0\xfaT\xb5\x05-\xef\x83T\x8a]g\xea\xc50j\xf5\\\xe0\xba!\xbd\xb3_\xfc\xc8>\xc6{\xb55\x81U\x03\x8dFqNL\xa3,\x1f\x07#\xad\xf3\xf8\xd6\xa6\xf1\xf8\xd6\x8e!\n\xcc\x06w\n\xe23\xb7\xbd\xe0\xb6\x17\xb8\xe7\x05\x03\xc5\xfc\xb5\x00\x95\xde\x13\xfb\xef\x98\xde[\xf8Z\x8f\x07\xe8e\xb5\x80 \xb5L\xc2\xbeh\xe2\x03\xa2\x88V\xe2\xe9 \xffV\x96L\xb3\xa4\x9ar\x1f\x86Lp\x1f\xe4\xf1}N}\x0e\x8b\xcex\x83\xe3.\xf0\xa3\x9b\x99\x99\xe3\xbb0\x98i\xebzH\xb7\xe2\xba\xfa`G\x03\xaa\x9cA\x8e\xde\xb2`?I\x8a&\x8f\x81\xd3\n\x89T#7\x9b\xab\x9d\x17$\x1a\x8f/\x06\xa8\xe8\x8c\xb6=ru\x05\xa6\xa6\xf1\x86\x88\xb9\xb9}:\x87[\x98\xeaO\xe5f\xd9\x88\xb0\xb9J^6x\xdf2\xa6\x9b\x95\x83\x0d7\xe4^\xbb-\xae\xebp\x93h\xf5\x16^\xa6\xad\xb7\xaf\xbdc\xfb\x11a\x03\xf2\xc7\xd5\x8f\xcc\x13\x85\xf0\xf2;\x9a\xfe\xf16\xfa\x8e+\xd1A\xdcO<\x1a\xc0\xe0i\xcf\xd1\xba\xd7l\x1e-\x1d\x9eT\x8c\xc9N\xc3\x91\x0d\xd1\x80o\xc0\xbb\xdc\xcf\x8b\x9f\xe7\x8bt\xf1\xc3\xf2\x89\xd4\x7f\x17\xef\x17\xefO\xb7a\xbdG\x89*p\xf9O\x95\xec\xff\xf4\xd2\x99y\x0d\xd6jk*\xe8x\xbe\x18/n'\x8b\xec\xec\xec\xb7\x9f\x8e\x17\xd9\xd7_\x7f\xfd\xf5\xf2\xd4q\xf2\x08%\xd4\x12\xc7\x12\xcb\xe1'\x8e\\{\xc8\xd5\xbf\x9e\xe1\xff\x1b\xb9\x13\x03\x91\xa4\xd7\x12o\xd6H\xc1\x02\x89\xd7-\xa4\xe7\xaf\xe5]\x98$\x83\x99\x9c\xbf\xa1\xe3wK9\xa7\xe3w\xc3\xc9b\xbc\x1c\xf6\xafg\x90\xa6\xdefK\xf9\xc9`P5\xb7#\xda\xb3\x154\xb6\xb8\x1d\xe2\"\x93`\x829se\xde\xaa\xccs\xd5\xcd\xb3\xb3\xb1\xfas~\xa6\xfe\xfd\xe2l\x91M_|\xa6\xfe\xfd\xec\xec\xabEv\x8e\x9f\xcf\xcf\xce?W\xff>\xdf,\xb2\xa7ggg\xcb\xd3m\xbd\xca{rEz\x06 \x8b\xf8\xff\x03hf\x15.\x18%m\xed\xe3D\xc9\x0f\x8a\x86\x90\xeb\x03\x16\xe5\xa4\x803XC\xdd\xa9\xee{2\xeb^\x0b\x03\xc0\xda\xe1f\x13\x10\xd1x\xa6\x18,\x18\xe1\x15\xbe\x81M\xa1\xee\x86]\x13\xe4:\xef\xec\xac\x05\xd2&\xea\xb3r\xc3\xedoH\xff\x0b%\xb5M\xfc\x14\xfe\xf6Y\xa3\x85\xa1%Sj\xd1\x9f\xe1=z]\xc6\x98\xb0_\x10\x01\x11\xe7\x0d \x13\xc3\xe1\x80Ds\x81\xebU,\xeb\xcb\x95\x14\xdc\xf5\xd5{\xd3\xb4\xba\x11\xe4\x0d\x8f\xc3vG\x80\n\xda\xb7m\x07\xae\x85:{J\x00\xd9\xf8\x11[\x17\xe7\xec\xd6\x8f\xd6\xf1-\xb9\x06{\x002\xd3\xef\xe5&\x9d6\x83v\xe4o\x9d\x8d*\xc8\xbe\"W\x84\xf2m\x06\x86`&\x92\xfcK\x8c\x0d_\xf0B`\xb3\xcc\xcf\x96\xe4\xba\xfc:#o\x9b\x02\x9a\xde\x95\x0c`\x9b&\x95\xe4\x10\xdfV\xc7\xd2\xfc\xde\xbb\xbd5\xdcM\xf6\x8c\xa7\xaa\x8bW\xa47\x9d\x9cM\xd4\xae\xfan\xc2Y\x18\xef\xd9Z\xc7\xbd>\xf9\n\x9ck|5Y\xc7\x1e\x80\xad^?\x87~\xe5i\x93(^\xb3\xd7\xf7 \xb3\xb6\x9bw\x13?\xfd!K\x92\x98\x0b\xa8\xead:\"wu0\xd4(\xfe@\x8aU\xb9\xc7\xe2\xcb\x06\xbf~\xeaw\xd3\xf2\xed\x8b\x0eu\xff\x11\xf2\xfcN\xe7\xf9\x9a\xd3ms\xde\xef \xef\xef_\xbf\xfa\xf6\xb5>p\xfc\nO\xa5\xdd\xd9_C\xf6?\xd4,\xad\xcd\xef\x95\xfd\xfe5\xe8\x83\xdc\xb9\xbe\xc1\\4dk\x95\xf5\x15M\xdc\xf9~\xb4\xfc\x1a(\xd27\xe4\xbaRLM\xddW\x93W\xf1;H\xfcB\x08\xae\x12g\xe4\x1bw}\x7f\x80v_\xb3\xbb\x86\xde}\x0f\xdf\xbfD\x8b|w\x96\xdf\xe1\xd8\xfe\xf1\xd5wp[\xda\x9d\xe9[\xc8\xf4?\xbf\xfa\xf6\xf7B$\xdf\xb3\x9f2\x966T\xf7\xa7r\x0f\xbf\x85\x1e\x96\x0b\x92\x19\xf9\xd6]\xf8'h\x86Ej\xff\xf6\xa7\xef\x1b\xfa\xfcu\xb9\x85\x9f\xa0\x05[\x86\xcc\xc8O\xee\xb5\xe4\xe4\x17\xdf5-Z\x85\xf6\xef\x14\xf5\xfd\xff\xd9\xfb\xda\xae\xb8m%\xe0\xef\xf7W\x0c~zR\xfb\xe05\x90\xa4\xb7\xed\x06\xc2!\xb0ii\x03\xe4\x02i\xdaK\xf3p\xcc\xaev\xd7\xc1k\xed\xe3\x17^z\xcb\x7f\x7f\x8eF\x92-\xdb\x92\xec%iz?\\\x7fHXk$K\xa3\x91\xe6E\xa3\x99`\x9c\x92\x8a\x88\xdc\xea\x18\xdb\x10\xc4\xff\x8f@\x98D\xd8\x16S\xfe\x08\xe8mBRI\xc1(c1\xc27\x94\xdb.\xd5\xc8\x87u\xf0\x15\xeb\xa0\x1eK\xbf\xc0\x0e\xbc\n\xa2\xc5\x92\xf7\x1b\x95\x14=\xe4\x8f\x08\xc9G\xc9\xa8\xf0P\xb0u=\xf4{\x84\x9e\x91\\ ${u\x7f\x1e\xce\x18\xb5\xea\xe1\x7fRZ\xef\xb7\x80\x7f\x83\x1d8c=\xa7in^\x97?\xa3T\xdc\x9e\x82\xe6\xae\xf6Kc\xa7\xffE\xf4\x85m\x10\xeat\xf0\xfdr\xaf\xdc\x88\x8e\xe8Ds\xf7\x8d!\xfd\x07\x8c\x8c\xa6\xed\xd4W\xb0\x03\x86\x95\xffo\xd8\x81\x89\xbe\xe8W\xd8\x81\xb9\xbe\xe8_\x18wM[D\x08\xec\x80F\xa4cON0(\xa0\xb6,aez\xcf;@F\x05;\x10\xbb\xffy\xf0\xe1\xe2\x03\xa3\xceq\x98\xbbW\x188\xeb\xca\xcd\xf1\xdf\x04\xffM\xf1_\xeay\x06\xdeH\xed\xdf\x89\xf4\xdf\x89\xb0\xd5\x10\xff-\xf0\xdf\xcc\xf8\x85\xd0\xfe\x85\xc2^\x9c\x11Cb\"\xc0[\x81\x96\xc21\xb1\xb0\xb3\xa9\xadpi+\x9c\xd8\n\xe7\xb6\xc2\x1b[\xe1\xc2V8\xb3\x15\xde\xdb\n\xafl\x18\xba\xb4\x15\xde\x12\x8bB;R\xc8\xa2r\xa0\x91.A\xd2\xa3\xa0\x8a\xf7PZ\x93T\xef\"\xe1\xe4\xc3\xbdD>\x98d7\xed\x97J\xcf\x12\xe1(V\xb9Gq\xa7\x1aSkg\xb5\xd6\xb8a\xb99}uh\xf8\x98R\xc6*\xb1\x97\x85ZI\xfb)\xa5LVB\xfaw\xde\x9d\x8d.\xdf\x9e\x9e\xbc>|3\x92\x9fz\xf2\x04\xa6\x81\xfa\xde\x17\x9b\x14\x0f\x82'\xfa}\xb9wz\xb8\x87\x0d\xfab\x9b\xaa\x17\x1f\xec\x9d\xcbb\xdc\xa8\xe4\xfbw\xc7?\x1f\x9f\xbc?f\x8d\x9f\x9f\xec\x9f\xbc9C\xa5a\xcb\xe7;\xd648\xdb{=\xba|}rz\xf9\xd3\xbf\xde\x8dN\x7f\x93\xa5\xcbF\xe9\xf9\xe8\xe8\xed\x9b\xbd\xf3QY}\xc2\x01\xde\xffx\xf2ftyp\xb2\xff\xeeht|.\x0b\x17\xbc\xf0tt\xfe\xee\xf4\xf8\xf2\xe0\xe4H\x16\xcc\x9a\x05\x97\xafO\xf7~P\xab\xde\xb7 \x0e\x8f\xde\x9e\x9c\x96\xe57\xbc\xfc\xf5\xc9\xe9\xfe\xe8\xf2\xd5\xc9A\xd9\xe3\xab\x1aR\xce\xf6\x8e\x0f\xcf\x0f\xff\xcd\xbav\xe4\x8b\x8dI\x96\xfd<\x1a\xbd\xbd\xdc?9>\x1f\x1d\x9f\xfb\x9ciV\xc4\xf1\xee\xf4\xf0\xf2t\xf4\xc3\xe8\xd7\xb7\xac\xe1\x9c *0\x0c\x11\x91i\xd5f\xfc\x05\xdfa7=\x9cZ\x0c\xecI\xb4\xbc\x0dy%\xa7OT\xdb\xf8Z\xb8%Uh\x80\xd8M\x88\x0f\x8c\xd7\xc6.%>D<\xb3\x97\x84\xcbnf\nX^\x82\x85\xe5_Y\xab\x02\xd7Z2\xa5^\xd2]\x8f\xed\xb3Gj\x97\xd2\x12\xb2P\xebx\xb8\x9a\x0e\xf8\xa2(\x87\xbe\xb3\xc3\xa4\x88\x12\x11c7!\x1e\xd6b-U\xf0UmF\xad\x08Oy\xed\x88\x94\xbf`\xecRQ\x9b\x12\x15\xbe\xaa\xcd&\n\xc9S6\x13\xbbgD[\xe8!\x01\xf0\x8e\x95.Wr\xee\xb8\x85\x94\x1b\x96RB\xfe \xb8*\xab\xb7\xc2\x82\xca\xcb\xdc\xa9\xe7\xf3\xadu\xaa\xdd\xfd\x0c\xdc\xed\x84\xf46\x18\x94J\xbe)&\x82\xfa\x08\xbf\xeb\xa1\xc6Z%\x9f\x07K\xce\xb1<\xbd\xb7\xf4\x04dv\x08\x92\xa0<.:\xb6?\x8f\xe2\x89\xc9\x9c\x01h\xd1\x1b\x87\xf9x\x8ey8\xbaZ\xa7ENR&\x92c\xe8rs\x93\xab \xfb-\xe9\xba\x9e\xac>\xdd8XiF\xd8S\xfa\xf0\x0c!g\x1a\xd3\x9e\xfc\xcd\xb0\xc8$\xea\xce\x16\xa6)]\x0c\x1bv\xf6\xe6\xf3\xd0c\x06\xac\x94\x06\x9f86\xb3p\xa1>\x9f:\x14\xf3\xc4\x89\xae\x97\xd85\x9a\xd8\xf4\x9d<\xef\xbf&\xa5a\x96K2\xf61\xdbNf\xe4\x13M\xc1\xbd\xe1\x1b\x12\xca\x04\xdb|$/\xb77\xc4\x1f\x0e\xac#7\xb8\xee\x9a\xbfn\xeae\x0f\xfb\xc8k\xdb\x92\x85&\xd1\x98\xd1\x0ej\xb4\x03r\x0b\xef\xcc\xc3dO\x1a\xa4$[\xd2$C\x1b$\x1b\xacT\xb4\x1d\x1f\xd2\x80.I\xe2:?\x8c\xce\x1dq/e\xc86\xe7\x0d\xc6\x18_\x8c\xe7a\x9a\x91|\xa7\xc8\xa7\x83\xef|D\x89/\xd2\x9a\x06\x19I&.#@\x8fGE\xa9>\xf3\x08Jb\xd3\xb1\xef\xf5\xc0%\xfb\x92\xcb\x06}\xe0\xf1\x18\x83\xafS\xba8\xc33D\xb6\xcf8e\xdf\x9d\x9ek\xd3\xdc\xa7\xf2v\xfc\x93'\x90\x97\xc6 !\xa8\xe3\x95y\x9e^\x94uIg\xdap\x1d\xc7\xf3\x82+:\xb9\xf7L[x\xa2\x16L\xa34\x93\xcdc1\x13\xc4k\xdb3\xa3\xc7\xf7\xfc\xbc0G\xe9oW\\\xb1\x81\xa1\xb8\xbf\xe4]l\xb6\xefw\x81\xde\xc8]7\xd70 \xd8v\x8c\x00\xca-\xads\xe2~\xbd\x9d\xdd\xcc^n\xcf\x80\xa2\x8f\xf0\x0e\x06~k\x0f\xd3\xf5\x9c\x97\xdb\x1b\xb3\x97\xdb\x1b\x0c\xfck\x03#$\x01\x86\xdb:\x13.\x19.j\x91\x18\x82\xc9\xbd\xe62\x82\xbe\x9e\x9d\\\xdczW\x97/\xb7Qo{\xb9\x1d-f\x90\xa5\xe3\x1dg{\xa3\xf1\xe6\x0eh\x82^\xf2;aL\xd2\xdc\xdd\xf266\x9c\x97_{\x9e\xa6\x83\xc0\xd4T\xae7\xed\xf3N\xea\x11o'\xb6\x07W36\x86\xe7\xa3\xfe{\xa3 \xd4\x1f\xc5Ir\xc3\xde\xf9\xe7\x9fl\xd1\x12\x1f\x8e\x82\xb3\x1fO\xde_\x8e\xde\x8c\xb8\xac/_\xec\x9f\x1c\xd5_\x9c\x8f~=\xf7\xbb\xa9\xa1\xf1\xf9\xa3\xe0\xf5\xe1\x9b\xf3\xd1\xe9\xe5\xde\xfe\xfe\xe8\xed\xb9y\xf5\xd5s.\xd5\x8b\xb4\xaf\x0fWFE\xa9\xfd\xee4\xb4\xdfs\x8d\xf6{\x8e\xb1l D\xe8U6&t\n\xe70\x14\x07\x9d\xa6\x86\x88\xa6!\xc2\xd5h')\x16W$UM\xdd\xa4<\x02\xe2\xc7\xba-\x9f\x07\x0ep\x1c.\x0c)O\xf5\x88\xf9\xd8\x12\xb3\x1a\x973\x9b\xcf\xcf\x17\x04]+\xd8\xff\xc1\x94\xa6\xa3pN<\x95\x0c\x8eQ\xfdT\xdf\x9cb\xe8/\x8d\xcfJ9\x7f\x86 \xce\x03\xc6\x99\xf6\xab\xe3 \xed\x91H\xaer\x07\xcewJi/S\xfb\xf1\xb1\xb3\x89R&\xb3@f\x8a`\\\x05\x969\xe1\xb9\x1al\xf9\x7f\xa5\xf4Q\x91m\xddA\xa7{J\x8a%M\x1a\x13\xc2\xe7\xa3\x83\xfd\xf3\xf3\x8e!\x18\x8eH\xe4\x13\xc61\xbd%\x93\xf3p\x96\x0d!\xb1\xa9f>\xac%\xe4\"\xfd\x80\x01\xff\xd8\x1f]\x8b\x80\x8d\x80\xab\xb2k#\xach\xc2/ \xa2$#i\xbe7\xf9\x18\x8eI\x923&\xdeG\xc4\x01\\i\xed\xba\xae\xb37\xcdI:Bg:\x06\x90p\xc1\xe0\xb3\xc9\x94\xcd\xf97c\xadk\xff]\x9b\x12\x1eT\xb0%\xd3\xf0\xd7\xca1]\xf9C\x0f\xbb\xb6\xb1\xbd1\x0br\x92\xe5.Q\x97\x10\x97\x0eV\xd2\x9d*M=\x18\xc74\xe1\xaa\xa0m\x03\xaba\x99'9\xa9:P\x06\xe8c\x1d\xf4\xc1y\x12\xe7/\x1c\xcf\x93\xa6*\x99\xeaA\xdd\xf7\xb9\xb8X\xfeS\x1fO\xd9\xde\x0f>8\xc0$G\xf9\xe2+\xfe\xc2\xafW\xa8\x82J~\x01,\xa8\xdf\xdd\x81\x84\x0d\x93-\xe2\x90\xd1\xa3}[\xddZ\x85\x0b\x9c\xae\xc8\x05V\xd6\x07\xedpiO8\xda\x13.\xea \x17\xf6\x84+\x1e\xcd\xf2\xca]\xbe>;<\x82j\xc5a\xba\xb6>\x86\xf4v\xcc\x15\xdd\xc3\xda\xe4\x1b\xb5.\xa0\x89\x0e\xfa\x970.z\x82_\x13\xb2d#\xd2\xc7ki>\x82\x15T(\x18\x0253\x04\xd0\xebJ\xea\x83\x8ebl.\xc2\xd2\x11\xac@_\xd6n\xb4\xc8\xec\x92(k\x84\x17\xc5\x07/H\xc2\x05\xf1\x91\xf4\xf2\x00\x0f\x98\x82<\x8d\x16\xae\xe7\xf3\xa0\x85u\xbe\xeaC\x16H\xd4\xf2\x04P\xfc7\"\x8f'\xeb\xc8\x02\x89\x1e\x91J\xb3\xc9m\xf7\x94\x18\x96hJ\xe6_W\x1a\x92\x07d\xb8\x85Q\xe4o\x87G?8\xca\x8e&\x05\x9d0\x88&\x1e\xd29\xfb\x8b\x13\x14w^\xab\xbc]1\xa0]\x10.\x97\xf1=\x1e.\xbf%.?\x8e#\xfcG\xc2\xff\n\xcbL\x12\x91\x07/\xa1\xe0\xbcA\x95PD\xb5\x88\xa3\xc9\"c\xc8\xc7\x90\x12Q\xf7\xa0\x93\xca\xe1\xf1\xdbw\xe7\xbaa\xf2\xbb\x0e\n:\xf0f\x1d\xb7\xb6\x0bs\xf9\x05E b\xad`\x7fy\x1eF\xc5\x8d\x92B\xe3\xc7\xa0{\xd8\xc8\xb0\xb9D3\xec\xc4\x07\xc7Qp\xd5\xd9\xa2\x9d\xcb\x83\x18\xaeB(\x18)\xf8\nY6\xf6d\xad\x1c(\xa7\x03\xfe\x9b\x0d\xcfM!J`\x8f\xfd\x8d\x7f]\x13\xcf\xe8P\xd9|\xd8G\x05#d\x04\x87\xff\xa4\x9dl\xcf\xc3\xa3\xb6'O\xe0\xdf\\\n\xa0^\x8f\x99\x079\xfb8P\xac\xfe\xebc\xaa\xf7\x1b\x18\x88\xc1\xad\x95d\xc0\xa9`E\"\x00\xd1\xcc\x19V\xee_\xa7\x1chN\xf8\x18+\xa4\x12\x82\xb4\xd3w\xcc\xa0\xb6\x86\x97~\x15RPn\x0eT\x04\xc1\x1d{\xaa,0\xdc\x80\xc8m7kw\xe4\xc2\xa4 |\xe8\xa6b\xf5\xc1\xb0\xa2\\\xe6\xfe\xd7g\x18#\xa8\xe3L\xaby\xea\xd5@\xf7\xea\x82N\xd3T\xf3i\xaf\xf8\xd4\xf3\xd5\x93\x01\xba\xb4\xc8h\xea\xb3\x82\xb8\x0f\x9d\x83\xb1\x97\xb6$@\xad\x94alb\xa5\x03\xa5\x03U2\x04b?\xd7\x92wM\xfa\xc8Tl\x13:b\xed\x99\xa9\x07\xf9}[\xa6:\xc3\x80>\x07'G\x0e7\x87\xb0\xc1\xbe\xc0\xef\xa6AB\xeer.X\xbf\xf0Z\x0c\x98W\x14\xa1B\x92R\x18;&n\xc2\xb5\x9a\xa4\xd4\x8f\x14\x8d\xff\x049CU\xe6\xf9p\xcajX:\xde\x9a ]\x97\xf5\xb3`\xbcxr\x17d\xa2\xb1\xbe'|}g\xa3\x8f\xf4\xddG\xf2\xee#u\x87\x1d\x924f#\xe4Qqa\x07\x9c\xdf\xef\x9e\x8d\xd7\x06\x83\xdf\xef\x9e\x11\xc6\x88K\xf3\xceZ\xa5\xeb\xe3\xdetH,\xf7\x0b\xa0\xed\x0b\xab\xd4\x0fr\xcaO1<\xc8\xe7)\xbd\xc5\x83\x1d\xa68\x8e\xd2\x94\xa6\xae#\x8b!\xca \xa19\x84%\xf2M\xce\xb0\xe5\xf7Z\xbd\xc5AU_t\x19\x0b\xd7~t\x12\xa5\xf9}\xf5E\xde\x90\x0f\xe1\x15M1N\x8d\x81x\x8c(]\xab\x1d9t\"J\xb5\xbd\xde\xbb#\xecp\x98GcnHa\xc2\x8a\xce\xec\xd2\x84\xeb\xb6\xe6\xe8\xec\xb1\xa55\xac\xde\x9c\xdb%w\xb2\xf6\x04\x19\x18\x1a\xa8NtV\xdd\x1b\xc1t\xb3M>f\xcc\xcf\x91\x9a\xf7\x08\xba\x916/1\xd4M\xdf\x1e\xf0,\xbb\\HK\xf8\x19J} x\xf5#\x06\xc5a\x98\xed\x04k\x9b\x9eW\xb7w\xbf:9\xf8M\x88\xcb\x95\\\xbd\xcb\xf7J\x18B\xc2\xb4\x03\x92L\xf8\x99Xj:$\xb2\x0bdH_\\\\_\x9b\xe0\x7f\x03\x99-\xb8\x14N\xb6\x1d%\x7f\xb7}\xd5\xac\xc9\x91\xa3\x80+\xea\xf0^\xf3\x9b2\x06W \xfd\x14\xf0\x93\xe6\x13\xb6}\xa3\x95\x8b\x1f\xef\xe9{P\xdeC*8kJ\xbc\x17\xb8\xef\x15u\xae\xc2\x0dL\xb4\x86h\xca]x\xd8T\x1f\x13\x97rnB\x8d\xdc\xe4\x80T\x85\x9c\x9dP\x91\x8c\x98\x1a\xfa\xc60\xb3\xb0\xdae\x18\xc4\xacCG\xc1\x11\xb2-\xf8'~\x9e\x904<\xf0_\x80\x8a\xa6\x17\x1e\x845\x02\xe9\x81C\x90\xf4\x82A\xfb\xcd0b^\xef\xb9V\xc2\x80\x7f\xe3]:\xf3e\xaaK\x1f\xc2\x15&Z4\x88G\xb3\xea\xd9-#\xf2\xd2\x94\xd8\xaa\xf9\xc0\xd6dF\xf2}\x9aL\xa3Y/\x1b\xd8\x1e7\xd2r\xdfdMly\xd6\"\x06\x8aj\xb7ij\xb2rW\x95.\xcf\xfaf\xc3\xc9\xe4GJ\xaf\xfb\xf2\x7f\xfd\xd9\x03\"\x1c\x8f\xa3v\xf8\xa9\xd4\x9f\x7f\xe2^\x84'Sh\xc6\xcc=\xcdU\x8cj\xf3ju\xc1\xf4\xfd\xda\x99\x97^\x90n4\x9b\xad\xd4\xae\x1c\xc5\x85F\xa7Q\x1a\xde\x8b\xe3V\xdb\xc6\xa6\xd1\x0fW\xdbZ\xed\xe5\x832\x16\x9e\xce\xb6\x0c\x8b\x9c\x8a\xa2G\xc5W\x16\xfev\xfcpS\xdeSvs\x1f\x9c\xcbK\x92\x1d\xd1 \x0f\xd3S\xef\xfc\x0d7\xe0\xa9\xa9\x02\x94\xd5)O\x8cb7q\x9f7o\x15PQ\xf0\xb4Y\x10\x89\x82g\xcd\x82P\x14|\xd3,(D\xc1?\x9b\x05\x99(\xd8T%f\xf6b\x8b\xbd(\xdf\x94:F\xdc\x9ey\xf5\x06, *T\xe0\xe9\xb1.\xa8\xaf\x88\xaf\xd6\xf4\x0dlF\xd8\x05\x81\x9f\xb1\x95\xee\xca\x9e\xe5\xb6k\x9e\xee\xa6\x0f4\x10\x1f\xf6\xdc|\x1ee\xdc]\x95\x15\x84\xcd\x027\x0f./\xd1Twy\x89\xccb\xd3\x87T\x01\xf2;\xd3\x88P\xd0%\xbb>\xba\xaf\xab\xe0\xc5\x82\x93\xb4\xb4\x88\x99 \"[/\xaa\x8554]\xc3\xe4`lM\x0dM7<\x01\x0f\x0e3z6\xa7\xb7f\x92[Zmh\xe6\x01,;\x87\x18\xf7Et\x94Li\xba\xe01 ;\x88\xc2\xd2\xa1\xb1\xeds\x0bz\x15\xc5d\x08[OWm\x96\x8aqz\x96\x91N:q1\xed\x84\x98wB\xc4rg\xf8D\x0cXx\x08\xc9\xaes\xba|\x0c\x9a\xc2\x1eh\xfa\xaf\x1e@Q\x0e@\xa7\xb3\xd5\xde<|\xf0|\xe5*\xc2\x83[\xb5Y\nS\n\xa3\xcbe)\xec\xc0\x18\xdf\xfe\xbd\n\x8d\x0fy\xf0SF\x13\x14\x15\xc2Kn\xa1D&\xad\xbc\xbd\xa24&a\xd2|\x8d\xe1\x03\x9b/\xb9\xe9\xb1\xf1\xf65M\x17\x1a.-u\xa8{\xa6*\xb5T\"*KZ:Q$JZzW(\xab\xe8\xb4\xa8{\x9d\xde\x95\x89\x82\xd67bQ\xd0\xd2\xbb\xb8\x94\xd7\x14\x88\xa6\x08>n\xbc]\x8aF\xb6\x9a\x8dp\x01\xed\xdb\xc6\xdb\xb9\x04\xdfj\xf5\xf3F\x16\xb5\x86\xb6\x90%\x9b\xdf\xb4\x061\x13\x89\x8a\xb5\n\xe1\xfd\x97U\x08\x97\xe5\xba`=\x08\xa2\xecT\x84\x85\xf6\x95\xa20\xb9\xf7\x1b\x90\x96bN\xad\x86\xa6x\xa1\x0f7\xe5\x9b8\xcar\x15\x82\x91\xb5\xedw\x98\xdc\xd7i\xf5\xaa\xe5*t\xa3w\xf2\xa1\xc9\xfe\xf9\x86\xb6]\xcd:\xff\x1c:\x7fK\xb5\x97:\x7f\xd6,\xd0\xe9\xfc\xaaF\xfe\xa9:\x7f\xac\xb4U\xe9\xfcuK\x80Q\xe7/\xd3J\x1dD\x93#\x1eG\xb6\x05\xf9\xd7\xa9\xff\x93([\x86\xf9x~\xc8t\x860\xe6\xceP\xc6:\xdc\npc\x07\xe2^\xd2\x92\xc0\xf5\x1a\x17\x1aCS7\xe9\xe4\x9d:\x16\xff\xf7\xd9J\x90\x84\xbb\xd0\xc3\x97Z\x17~:\x90\x18\xd5\x90h\x91\xd8W\xb0\xcb\x14\x08;5\x1c\x0e\xe4AN\x7f\xe2\xd7\xaa9{g?]\xd3a\xbb\xf4\x8b\xb4|.F\x17\xbb\xfc~i\xe9\xfe\x18a\xb8\x9a\xbf\xe0\xa6\x80>*\xa9\x0f\xb4=\xe3\x06\xc6\xd3\x06\xac\x9di6c\x02\xfa\xb88x\xa8\xc5\xc2\xe3\xf9\xaa7_\xc0\x18\xb6\xa1x\x01\xe3\xf5u\x0f\xe2\x8b\xf1\x07\xb5\xe6\xc5X\x13kQ\xc6Y\xc4S\xe5\x1d\x03\xf3\xc3=\xae\x93\x01\x8e\xc38\x16\\\x90\xf8p\xc1\xea\x96\xc1$\xb8\x9e\x96\x96\xdbQ\xaf\xc3\"\xe9\xae\xaez\x8er\x92\x17\xfbh \xa2`\x92\x80G\xec\x0e\x18\xa0\x88\x81X\xbeC\xba4,<\xd1\x9a\xec\x15\xe3\xb2\xf2\x9d\x90\x90\xb4\xc7Sl\x1c\xa3\xa4X\xac0\x16\x81\xe7\xd6\x17\xf5\x1f@\x9bvK\x14a\xf4\xf4%\xe4\x89\xbf\x81/\xf6c?+\x08\x0f]\x8c\x96\xf6b\xb4\x9c\x87J\x99\xb8\x8b\x87N\x08\x8f\xf3d\x8c\\\x07\x82\x85\xa6\x01I\x8a\x85\xd92\xcd:G93\xdd\x15\x7f\xb8\x1e\x0c\xf1\xac\xb7\xe82U#Ou\x1d~\"c\xf3s\xea`;V\xbe\x02u\x8b\x1a\x95\x91Jw\xc1\x89\x12\xcc\x07\x84\xd7\xab;\xee%`\x90\xa8Zm\xda\xa3\x96\xb8\x9b\x80\x82ff\xe5]P\xd1\xaceF@\xb69Z,\xf3{q\xa5b\xcd\xc2\xa2\xa0\xc6\xcb\x90\xc8\xd5\xfd\xc0X\xcft\xbb\xd3\xb8\x86b\xdc\xfch\xba8\x08\xf3Pn\x80\x11\xba\xbb\xaf\xb9\xce\xeb\xb2 JD\x0c\xda\x8e\x83\xa3\xdcu\x0e1\x91\xa4]\x10\xa9\xed\xb7b\x8b5Q\x89\xd5\x82\xc6\xea\x0eEs\x96\x9e}\x12\x1d\xadNC\xad\xa9\xeb\x92\x90e~\xaf!\xc4\xfa dk\xd3\x84\xa0\x85|\xdf\x03Q\xcb0\xcbni:\x91\xb8\xe7R-CFU2\x94\xb9\x07\xffk\xf0\xd9\xbd\xc2\x16Q\xf2\x06[\x1b\xda\xfcK'\xe4\x8a\x16\xc9\x98\x9cG\x0bB\x8b|\x08\xcf\xbe\xb1@+\xa1\xe7\xacb\xe9_0\xdb\xad\xd7\x9fU\x02\x95\x16\xcf^\x02(1\xdc]\xef-dJ\xf3\xe8c\xad\x1e<\xae\x06Bc_\xcc\xd1\xf7\xf5\xc2\xdf\xaa\xf2R\x1ady\x98\x0b!\xc0(\x9c\x1d\xe6D'\x9cY\x1c\xae\xd2 #\xf9\x19k\xba\xba\xdao\x8d\n :hg\x91ri\x88Kj\x19\xc9\xb98f\xacd\xf2\xefW\xb0g\x184w\x98b\x03\xef'\x8fj\xc6k\xbd\x1f\xb0\xcax\xe5\xa5<\x11\xce\xe4/\x19o8\x994\x07\xbb\xcaX\xfb\x04\xc4\x10T\x06;p\xe9J\x8a\xeb\x12\x8a\x04\x06\x048w\xcaslau\x1e\x8d\x80\xd5U\x10\x0d\x1az`\xa1\xdfx\xff\x82\x01\xe2B7^\x9c\x15\x1f\xaefF\xdbH\xed\xe5_\xa3-\x95\xd6\xd7\xf7Q\x1c\x9f\x921\x89n\xf0\xb4,\xeb\xa1@\x19\xe7J\x92\xde\xda\x8e\xd0\xa2\x94]\x8f\x89\x7f\xfc\x9d\x9cN\x9bB\xa0\x92\xa3~*:\xf9\xd9\x17\xb2\xa0\xdau\xc4>\xba$?=\xec\xa7KR\x84\xedV\xed\"\x84\xebR'C\x84\xeaR'\x0b\x842\x99OC\xbc\x11,\xb4\xbeP\xd5\xfa\xec\x06\xd4\"\x88\x92)I\xb9\xf8\xe0FA\x94\x93E\xd6\xedhV?Q\xe9\xe1s\xf6\x8ag\xf7\xef\xf0\x1f\xcbP\xb7\xb5\x88W\xd0\xa6h\xb3&\xbc\xec\xd2v\xe7\xd2\xd3\xed\x13\xb5\xddy\xd7\xc6\xaeH\xd5\xe1\xeaR5T\x92\xb5R;\xecQKf\xdf\xed\xbe\xb7/\xd6\x9c\x85\x96\xa1\xad=\x1b\xa2\xbf\xd7\xa0kz1\xfd\x9b\xf5\xe2\x8ey\x14\x0eW\xdc\xedc\x8dGC\x99\x04\x98]\x91\xfd-\xfet=\xd8\x86\xad\xea^\xca$X\x84KE\x10\xf2\x81v\x11^$\x84\xe6\xb4n\x96\xcf:.\x96\xc9\xd9\xb75\x0f\xe2\x13K\xdc\x10xZ\xd7\x9e\x92\x8b|J \x06\xaf\xf1\xf0[/\xd6J\xb6p\xab\x80'\xeb\x82j\xe5\x9d\x8f\x8b\xe5\xc5\xe6\x07\xbe\xe3\xc1:P\xcb\xdd\xe4\xce{Y\x1dsi\x1f-2\xa2\x0e\xa2T}\xbf>f4\x19\xf0\xed|\xc0\xf4\xeb\x01\xdb.\xad\x0e\x81\xa6\xeeY\xdd\xcd\xa0\xfbd\x05Z\xa7+\x1dF*)]\xf7]\x81\xfd\x04{\xf9\x94$\xa3\xaaO|)\xd8)\xc7\xde\x1dy\x9e\x13Y\x96\xbf\x19\xc7V\xf3\x124\xa6\xf6*O\xe0*O\x06\xd9\x02\xb4\xb3<\xe0\xfaH\xc7\x86K\x93\xfd8\x1a_\xf7\x10^\xd4\xa7\xc4^\xa5\x87\xb9]\x88\xb3\x11\x9d\x03\x03pL\x9e\xa8^\x90S~\xf4\xf3X\xd4\xad\x84\xb6p2\x01\x07\xd6\xab\xcd\xab\xc1\xf8\xb8\x1b\xa1\xf1[%B\x91#\x08\xbdM?06\xee\xbd\xc9\x04\xd8g\xb5\xc3\xef\xb4\xb4\xbc-R\xb2\x8a\xb5\xa5r;\xebeo\xf9\xdf\x81\xdf\xca\x07~\xabj\xa9\xff;(\xd3?\x7f\xd1AY\x97\xceB{\x1d\xa7\xd5\x0f\xca\x0c\xa7\x0bx\xf2%\xf4\x9b\xb4\x9f~\x13\xf69\xcc\xea\x10#\xc2\x9e\x1ba\xba\xbaX/Dz\xa5f\xda\xcfX.\x82\x08$\xb6\xdbFuA\x9d\xbb\xc6MS\xba\xf8\xe9\xccs)jYx\xff\xd3\xc9S\x9e`e\x1a\xc6\x999\xe1\x0b\xe8\xa5\xf9\xb2\x1d\xdb\x81\xd7\xaaB}\xb7I\xe1\xd3L\xe4\xa5\x07\xf1\xa3\xf7\xec\xde{\xb2\\\xa1\x9fl\x1f\xb7X\xc6\xd9\xc2\xc9H\x8esrN\xcf\xc2\xc52\xeee#\xaf\xbc\xbb\\\xf6\xe5\x19\xdb\x1cxm\x8e'\xcf%5w \xfd\xdd`\xa2\xb5\xcb\x1bEF\xd2\xf2\x990\xb4:\x0f\x93ILNVi\xfb\xa6\xccw\xdc\xed\xbb\xa1\x0c^\xe7\x03\xe8\x1b\xbd\x85\xe132\x80\xcf\xe9y\xb9V1\x81\x86\x9dO\x9d\xc3\xf2e\x9bdtw\xb4\xeb8\xf8B\x86\xbc\xffbN\x96\xbb\xce9\xb9\xcb\xf7R\x12>\x92\x9b\xd4\x0c\x0c& \xda\x93\xe50R\x9b+\x06\x04c\x1d\xf6\x08\x9e\xc4\xd8M\x16\xfda\x0d\xcfkF\xbddX\xac\x05d\xc3\x1fi\x94\xb8\x8c}x\xfd8\x97EGm\xb0\x89\xfa\x06\xa0\xad\xf5(w\xbe.\x11\x1f\x81\x1fu\xe3E\x1e\x86\xe2E\x87\x7fz\xc1\x818\x91F\xa7\x89\n,\xad\x17\xf0\x10\x92\xb58\x02\x8f\xef\xc2g\xbdt\xd3\xec\xa6\xe9n\x8c\xf8h\x98e\xd1,a\x8c\xcc.\xa6\xd7\x92>o\xf1\xfc\xceMuE\xe4y\xb6\xef\xf3\x95\xa6bJ\x03]~\n\x03'&=\xf3\xc2c(8\xb4Ta\xac\xe9\x1dH.R]\xa0\x89\xd6\x1b\xc9\x90\xeb$X\xa7x\xda\xc5\x9aK\xd1\x83XO\x9ck\x19\xfe7_@\x02\xdbj\xa2\x7f3\xf6@\x99\xb9\xfc\"1`\x0e\x90P\x99tG\xd2\xf0\n\x05\x8a\xdaO\x91|,e\n\xdb4\x9a\x15\x12hm\xb3L\xda\xc7P\xce\xe3\\\xa6\xc1m\x1a\xe5%D\x99}\xaaI\xa7\x845xM\xee\x19\xfe\xf5\x0b\xbe\xff$\xa8\xd6X>\xa1V\x85\x91\x07\x01u\x15\xd2\xe0\x99\xc3R\xf1\x9eG\x07l{\x157\xb6\x9b\xe6\xc5r\xa6\xd8\x14<\x02F\xbd \x14\x05[\x9b\xdf|\xab\x0f\x86Q|\x91\xbbOn{\x99\xf7\x92\x8a\xb5+{\xad\x9f\xb3\x04\x8f\xf5T\x8b\x80\x95\x9b\xc2\xa1\xed\x87IBs`\xeb\x12B\xce\xfb \xccj\xa1\xd8\xdas\xd2!\x90'}\xbd:\xb0\xa3D\xed\xd9)\x99\x92\x94$\xe32D\xdc<\xca`\x1ef\xc9\xd79\\\x11\x92@\xc4\xaf\xb1D\x19\x99\xc0\x00\xb2bIR\xd7\xabA\xb0\xa1\x90I\x87\xf8\xb0\x86\xc7\x0dJB\xc9Z\x10\x1fm8\xbb\\P\x81\x86F\x0d\xfa\x86X\x843\xc2\x98\x1f'\xfa\x93i\xcb-\xc7\xa2y$\xab9d\x93`I\xd2,\xcarSX\x05\xc9\x14\x92\xee\xd3\xbdd\xa5\xe3kU\x1f\xd0o,=s\xaf\xb0\x1e\xd2~=dO\xe9\x06\xf7\x92U\xe1\x82x\xe9\xcd\x86\xe1\xaa\x12\x9aGS\xbc\xe68,\xb7oxYU|\xf2\xa4\x02J\xf1\x88\xa8G\xbe\x066\xd8!\x08p1\xf8\xaeZP\xe1\xcb\x92\x91\x0e\xf4\xeayUd29\xb7\x89\x12\x13-%?\x93\xfb\x03zk7\xa0\xca\xa7\"\x0f\xa9C\x8a\xda\xfa pFI\xceS\xc20\xf1\xfe\x9a\xdcsdNi:&\xc7\x12\xed\xbe\xc85e0\x10\xb2.\xbe\x8a\x8b\xf4\x91\xfdcUM\xf4\xbbb?\xb8\x86\x80\xf0\x11\xe9\xd7\x1f\x1eQs\x1b6\xbd\x92\x86\xba\x84\x0f\xf9\xc8\x05^\xc4\x06/F\x83V-\x03\xfc\x8a\x84=\xb5\x0f'\xc1\x84\xf2\xf1Z*\xdb\x97^.L)\x8a\xed\xa5\x1b\x0d\xf2I\x82(\x13\xbc\x8e\xdf\xd1a\x02L\xd5)\xab\x9f\x19\xdb\x07\xcd\xcb\\\x87\xddGtg\xd3\xd7\xcf\xbf|\x90\x0e\xa6q\x91\xcd\xfbN#TS\x99\xf3\x9a\xb6\xb4\x13Hf\x8c!\xc7\xab\xb4\xafEk.\x1a\xb2}NOXz\xea\x97\x93\xd4\xa7cI\xc3\xc4$\xce\x18D|Z\xe5r\xad\xfeS\xca\xba\xec5\x9f\x98_\xa0\x86\x03\x1b\xc6J\x0c\xe3^$\x91d&--K\xec8\x81\x04\x0d\xb31\x7f!Wx\x14E\x9e\xa4\xac\x08\x0c\xa2X\xfe\xfeR\x0c\xe8\xf1i3{\x07\xdf\xc1\xa9\xee\xe5\"(\xdd\xe6\x98<\xd6f\x8c\xd8\x8en_\xa9Aj\xcd\x87\x9d\"\xa81r1\xb2\n\xf4=A\x07?\x83\xe8|\xc6\x84O w\xcb\x94d\x19\x93\xda\x17E\x96\x03\x89\xf29I\xe1\x8a\xf0\x06h\xaa\xc8\xd2>\x06\x1dv`\xbd\xfc\x90\x862I\xa5\"U\xba?\xe7N\xae\xc8\xdb\xa8\xe8Pz\xd4\x8ei\x92\xe5i1\xcei\xaaS[\xe4#g\xc0L\xef\x95F\xda\x8e8\xa0>R\xff\xb4\xbbA\xa9\xba\xec\xd0\x94\x8cICK\x92{\xbb\x02\x1bYM\xa2\x86]\xd0\xbe\x17\xf3>DUN\x8a\xe5l:\xeb\xa4\xc3t\xcf\xf2T\xa0a\xbd\xf2\x81\xf630\xbf\x8f\xe2\xf8S-\xcch\x95\xab\x8b!\xaeb`n\xdc\xbf\xe8\xb2\x97X\xac\xc9\x7f\x89K\xac\xdcH;\xb7\xd0D\\\xc6\xab\x8dF\xbf}\xe2\xe8k\x8b\xff\xcf?\xcb\x8c\x85\xb84+g[\xc5\x01\xb7Q\xd2[\x8f1\xddi\xf6!\xa9<}\xb5\x93Q~\xac1}I\xb7\x01\xb5\xe74\xbdK\x16\x9f\x83\xbc\xb8t#{k\x92Xzw\xf1o8\x97\x10\xb9\xbe\xec\xf4\xe5*\x91\x15J\x8a\x04R\xb1k\xbfM\x82\xec\x95\"\x9b\xbc\xbaG\xf5\xc6\xe68\xc3\xa3-TUNP\x1f\xb1\x9c\xef\x8a\x90\x0fB\xab2\x03\x16\x02\xd0\xde\\\x86PQ\xb2,\xf2S25\xc3\xc5}\xcd1\xf2\x916\x9c\xff\xf4I\x1aUZ\x7f\x89\x07y\x19\x96<\xf5\x98\xb8\xb3\xa9XA\xec&aR\x9a\x84\x13n\x12\xc6\xac\x85\xf6\xcfK\x1d\xca\x08\xf4\x80~/\x8e\xa0\x18\xc7\x07G\x12\x85S\x1aQ}pJ\xa2\xc0d\xd1u\xa2\xc0\x83\xfb\x16Q4\xde\xf2y\xe7\xed\x8b\xb9\xe5?\xe4k9G\xd6\xd3\xffqG\x0cKt\xf3\x86]\xcb\xdc\x95_/\x1d\x01\xc4o\xfd\xbe\x06C\x08\xfb\xb6g\x88\x17\x0eC#\x910\xba\x98v\x0c\x89\x95\xd3\x8e.0\x1c\x96\xe3a?\x8c=)z\xb5T\xadB\x99\xba\xb4(r\xaeueb\xe8\xba\"\xf3=\xd8\xd6\xdd\xd7\xad\xcd\x06D{\x93h\x8b\xc2\xad-\xa3\x0d\"w\n\xd9\xc1\n\x97\xf8W\xc7\x99\xa5\xe5\xae\xa0\xdc\xd3\x9d\xd1\xdd\x92\x8cs2QM\xfcmBIa\x07\x8e\xc3\xe3v\x01cz\xce\x85\xf0\xf09\xbb_\\\xd1\xf8\x83\xa6~\x04;\xb0\xf1\x7f\x7f\xcf\xd6\xff\xfc=[\xffjc\xd6\x86\x08\x11\xe2b\xb0\xfea\xf3\xeebs\xf0}8\x98~X\xffjC\xe3\xe6T \xe4\xe6\xd5\xc5\xe6\x96\x01\"\xe3\x10\xf4bs\xf0\xad\x01\x841A\xcc\xad\x7f\xa8\x93\x1d\xd8\xde\xaa\xa4f\xa9\xe9\x81B\xe7:\x11NM;R'\xc3\xd7\xed\xa6\xa6\xfa\xa62\x12OY\x0d\xf5\x7f}\x9b\xac\xa4\xdd,\xdb\x80\xc6x\xf6\xcb\xfey-\xe7\xd9\x91\xd6\xa7y\x949\x9e.\xec\xf2\xa4R\"+\x16,\xd3\xe4\xb4\xc1\xe7\xb0\x03Ga>\x0f\x16\xe1\x9dF\xac+K#\x8d\xf8\xd2\xef\xb6'\xef\xf028`\xdbNBou\xf2\xa7r^\x07\xea\xb9\xd8L\xaf\x7fH\xddC&\xba1\x1e\xa8\xac\xad\xf1\xac\x18\xb5 \xd2d\xddiz\xa7\xea{\xa3\x89\x9e\x08\xd2\xac\xa0\xc9\x97nK\xd3\xc2\xeat\xebX\xa2\xbe\x93\xe1\xba\xab5\xde\xed\x16\xd0hD\xa0BC\xaa\x066\xc0Z}\xf2\x04&B`\xf3@{i\xe5AM\x13\xa4\xb1\xcdc.\x15KF\xa9\x9b2\xa8PmBdF)\xdc\xbdQ\xe5/\xffF'U\x93\x17\x1a\xec\xc0\x8cm\x86\xbb\x90\xc3:\x8f)\xd6u\xc6\x0c\xcd\x0cJk\x9a)\xac\x12\xe6\x13\x18\xc2\xba\xe6\xf3D\xb8\xdc\xf2\x84~\x11\xe6\xf33\x1f\x97\x16\"\x1d\xb4\xe5,\x90\xcdp&\xc1`\x17bW\xe4!u\x9f\xa2\x86\xba\x0bOa\x08\xdf1l\x84\nX\x8a\xfdk\xd0\xb3\xfaK\xf5\x8ci0\x17\xed\xa1>\x1e\xd1\xf9\x10a6\x99\xc2\x87\x0c\x85\x13\xf4w\xd7\x0b\x1cSn\xb2\xd3\x96--e\x13\xb4\xd9\xebIH\x9fpLo\xa8K\xbc\xc6v\x02\xea\"\xbe\xea\xf6w\xb4\\_b|2\xb2Jv\x8ca*\xe9\xdbx\xa0\x17_\xa8x\xdcr\x9e26\xae\xa1Js\xa75\x91;\xe5#;M`\x00\xb1\xb5gJ\xc0\xbd\x98\x11W\xc2T\xb6\x9c\xff\xb5\xcdu\xb7%zB\xc0\x00\xc6\xac\xac\xad\x04\xd8\xfax\xdb\xa9\xf4/l\xe1\xff/k\xf9\xc6\x8c9\xca\x18\xd5f$\x17\x82\x99{\xeb\xf7\xdc\x05K_V\x18\x80\x8b\xb8\xea\xbe\x9c\xba\x84]\xb8q\x13\x1fBYi\xec\xa1\x05\xdf\xb8a\xae6\xab\xa3\xce\x9d?S\x08i\x02\x98\x1dk\x17\xae\xf89\x82\xdb\xa4\xb4b\xb5\xaf\xdf\xf5\x99/\xf3JHx\x1c\x06\xcb\x8cR\xd5\xa5\x8c\xe7\xe4\xe2.\x10L63EJQ\x1bP\x086\xf3\xdaV\xfe.\xb3\x86\xa80\xe6_k\x13N\xee\xf90\xad\xf0\xa9W\x14\x01g\xd6F,\xe2^\xb42c\xed\xcf\\\xb9\xa6\x00\xfb=\x17l\x86b\x8c\xaeq\xcf\xd7\xf4\xdc\xe8\xc5\x95c\xe4\xe8\x1ccbn\xfa0s\x85\x15\x06\xf7\xec\xb54\x88 \xe6f\xe0Y\xb0]\xb6[;\x8b\xf0\xee}\x18\xe5\xdc\xfd\x8cq\x98\xb9{\xef\xa6\x81x-[B\xc3{\xe8\xe3&\xee\xe4i\x18\xc5\xc8K\xd1em\x17\x9b\x96/a\x08\x13L\xe0\xd7\xffhT\xb1\x00#\"0)\x98\xc4B&o_\xf1\xebG\xb1X\x15\xd5\xd2ic\x87}\xbd\xf7\xb9\xafn2v\xa1\x80!\x8c\xdc\x85kH\xf0U{\xa9\xb8\x87IW \x1f\x12\xf7\xd9\x96\xa8\xdc\xa1\xe5I\xe7\xc2z\xf7\x9c`#\x8c\xe3\xe0c\xe6\x0c\xe1\xf9\xf3\xe7~\xab\xb0\xc8\xe7\x1b!6\x9aq\xa8\xa7\xcf\x9e\xea\xa1\xd0\x88\xc7a\x9e}\xffL\x0f\x93\x92I1&i&\xc1\x0c\x1f\xccd\xe2! \xf7\x8d\x01nI\xc6\x83\xdb4\\\x0ej]|\xf6\xfd?[\xf0\xfc\x10)k\x8e\xa5\xdd\x01 8'\xf1\xb2\xec\xe9\xd3g\xed\x01I\xc0\xda\xb8\xbf7\x82\xd5\x87\xfe|\xb3\x8dE \xd9\x18\xfd\xf3\xcd-3(C@mH\xcf\x9b&\x06'\xd8\x98\x10\xb2\x1c\xc4Qr\x1d%\xb3\xfa\xb8\x9eo\xb61[\x83V\x06\xf7|\xb3\x8d\x83\x1al\x1c\xde\xd3\"\x97\xc0m\xcc\xd6\x80\xcb|K\x83<\x9c\xe1\x1c.I\x1a|\xcc\xee\xb0\xf2\xb7}+7+\xb6'~Bo\x93\x98\x86\x93A\x91\xc6r\x96\xbekA\x914\xad\x93\xc6\xd6\xd3v\x1f\x18\x10\xdeG\x18\xe4i\x98dS\x9a.H\x9am\xcc)\xbd\x16-?mO\x95\xa1R\xedGB\xf3\x01\x9d\x0eP\xc9\x16\x0d\xb5\xc9\xa3OC\xcb0\x0d\x17$'\xe9\x80&\x84Nec\xed\x89\xeb\xd3\x18\xd3d\x96\x03\xe9\x0e*\xdbj\xcf+kK]\x04[\xedE\xc0@\x1ak\xffi\x9bN\x19Ts\xe9?m\x13(\x8f\x9dP'\xcd\xf6\x8c\n(\xba\xccxV* \xd9\xee\x1c\xa7\xdb\xc6\xce\xa0YF\x02N\x1d\xea\xd36\xbd \xa8\xe6h\xdb\xd4$\x00[\x03n\x0f%\xa6\x8dm\xe6\xbb6Rh\x98=knn\xed\xceq\xa8\"\x9f\x0f\xc8]N\x92\x8cAo\xe0\x06\xda\xdct44\x83\x95\xcb\xe3\xc5l\x83\xf1\xa0\xabp|\x9d\xc9\xd5\xa7\xc1F\xb3\xce<\xcf\x97\x03\xd6\x01YG\xc3M\x9au\xd4\x89\xd6\x90C\x13\xbc\xda\x1c\xd8vQ\xf6\xad\x8dVs\xc5\x8c\xa7X+\xfb\xd8\x8d\x8b\x94\xfc\xbf\x82d\xf9\xe0\x8aN\xee\x07d\x12\xe5\xb4\xdc\x93\x9e\xb5\xf7\x04[\xed\xb2\xc3m\x8aiV\x13\xdd\xac\xb2\x1d\x95\x9fl\x13\xaf\xa1n\xf9\xb5\xf6\xb2\xc0\x1a5n\xf1\xcc\x80\xfc\xda\x04\x19F\xdb`\x7f\xcf\x0d(m\x92\xe1s\x03y \xe3Sh\xb8E\xbe\xedmJ[OO\xfb\x86\x8f\"\xb0\x82C\\HQN\x16%\xde\x0d\x0b\xa0YQE\x98F\x04\xd1\xd6Q\xa38p\x1b\x93D\x91\x01\xe3\xcd\x06\x16az\xcd\x98\xa1\xfc\xaea2[\xd5\xe8\x84\xc4r\x80\xcf\x0d\x84\xd5\xacD\x938J\xc8\x00\xaf\xb6\x859M\x07W\xe1dF\xe4\x97\x0d\xb4\xd6l\xa4df\xd5B4\xac\x89f\xcd\x1b\x9e\x02r\x90\xe5\xe1bYV\xd6\xec\x00 \xd6\x8aINjs\xb2\xd5\x1ef\x86\xb71\xb3\x8d\xa9\xc0\xdf\xd6\xf7m\"\x910\xb5\xad\xba=\xbd\x8c\x06\x9b\xdcF\xd3\x18\x83R[\xd2\xec\x94\x08\xd3\xe04\x9a\xcd\n\xc1\x1aD\xfeT#U\"\x9cF\x9c~\xde&k\x99\xd5\xeecc\xb4m\xc8\"\x8f\xe2\xba\x8c\xdc\x9e\xc4\x9b\x88\xdc\xd6`\x9e\x1b`RJ\xf3A\x94|$\xe3\xbc\xec\xdcw%\xa46]\x0d5^\xd8I\xdc\xa8fly\xd0\xd4\x8e\xda\xb5\xa5\xad9\xbd \x8d[Z\xfc\x06M\x0e\xeb\xb0U\xbb8S\xbf43\x8d\x92 ,\xf8\x0d\xa1\xaf\x1dX\x07\x02\xeb\xe0|\x1d4\x0d\xbdR\xd7V\xfa'\xff\xa2\xc15\xb9\xb7\xe6O\x16\x95\xc5\x11\x0e\x83v\x95\xcb[\x0f>\xd0 %\x19\x8do\x08St\xeb\x17\x1d)+\x8d\x98\n\xbe\xb5\xf9\x0d\xc7\xee\xc3\x07\xef\x1f\x0f\xde\x8b\x7fll\xfc\x1f\xc8h\x91\x8e\xc9Q\xb8\\F\xc9\xec\xdd\xe9\x9b\x9d*\xc3\xe1\xe0\xaaH&1[\xe7\xc1\"\\\xfe\xff\x00\x00\x00\xff\xffPK\x07\x08-\xe3\xb5\x97=9\x05\x00\xf7\x0c\x1b\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00 \x00swagger-ui-standalone-preset.jsUT\x05\x00\x01\x80Cm8\xec\xbdys\xdc6\x9a0\xfe\xff|\x8aG|w\x152M\xd1\xdd\xad\xc3:,k\x1d\xc7\x9e\xf5\xbb\xf1Q\x963\xf3\x9b\xb7\xa3UQl\xb4\x9a1\x9b\xec\xe1!Y\x13i?\xfb\xaf\xf0\x00 \x01\x10 \xd9\xb2\xb33\xbb5\xacT\xac\x06A\xdcx\xeec\x0b\x16U\x1a\x95q\x96\xba\xa5\x0f\xc4\x83\xdf\xfe\x00\x00\xe0dW\xbf\x92\xa8t\xe0\xf4\x14\xca\xbb5\xc9\x16@\xbe\xac\xb3\xbc,`{\xdb\xf4v\x95\xcd\xab\x84\xc0\x19\xff#\x10\xb5O\x81\xb8\x1e\x1c\x83#\xba\x91?\x9a\x93E\x9c\x12\xda\"\xfb+\x08Ws8\xe3?\xdc\xd9\x05\x0e\xe8\xb8k0g\xe2\xaf\xe0\xfc6\xbc\xbe&\xf9\xcfo\xce\xcb0\x9d\x87I\x96\x92\x0f9)HY\x0f\xa1\xec\xab\xf3\x87\x07\xb7\\\xc6\x85\xdf,\x89X\x8e\x9c\x94U\x9eJK%^\xd0\xe7&\xcc\x81\xc0)\xfc\xf6p\xf2\x87\xbaPT\x85\xd4\xcd\xe5\xca\xf4\x89\x17\xe0\x92Y~\xe1\x89v\xe9\x0f\xb1b'JU\xdavLG7\xcb/h\x17\xcaKl\xeb\x18r\xbfU\x9a\x1c\xc3\xd6\xa4]\xcc\xbb8\x86\xdf\x1e\x94w\x0fj\xa7|T%\x1dU\x14&\x89\x1b\x8b\xc1\xf9\x10\xfb \xfdJ=\xfa3\x81S\xd8\x1aK/\xea\xd6\x9anx\x9bi\xb0\x82S(}H\x83\x88N\x8b\xfe1\x87S\xf5\x10\xfa\xd0Z\xb24\xc8\xf8\xf9\xbc\xbf\x87\xf7x\x1c\x02vL>\xe4\xd9\x9a\xe4\xe5\x1d\xff\xb2\xbdBQ\x96.\xe2\xeb*\x0f\xaf\x12bY\x96\xb4Z\x11\xf1~\xdc~\x7fM\xcac\xc8\xd5\x15\xf3\x9a9\xd29\xa4\xca\x1c\xf4\xd1\x8b\x13R\xd2\xa3^\x06\x97\x97\xa4x+\xeeK\xeb\xac\xc9\x8f\xd8 :\xd7\xb0JJu\x0cp<\xec\xeb\x01{\x9d\x06s\x97\xf8\xe0\x84\x0e]d\x1f\x88:\xbdL\xdf\"\xbd;\xde\x0c\xdf\x99u\x9e\x95\x19\xbd\xa9\xc12,\xde\xdf\xa6b\x8f\xd8i\xc2\xef\xd5\xf6\xd7p\n\xce\x93y\\\x94\x8e\x0f\xa9\x9b\x06\x14pL\xc7\x07\xac\xda\x83;\xd3\xceG*\xf7\xefT\x05\x81\xa2\xcc\xe3\xa8tN\x94[\x99\xc3)\xa4\xee\xfe\xd4S\xf7\x94^\xa8\x99\xf39N\xe7\x8e\x0fNN\x8a,\xb9!\xf4\xcf(K\x8b2\xaf\":\n'N\x8b2L#\xf2~A\x7f\xads2\x8f\xa3\xb0$\xec\x935\x05\x1b)\xd6\xe3[s^\xde%\xf8\xb2\xa0\x7f\xbcH\xe2\xb0 \x85s\xa1\xf6\x9ca\xcfE\x14&a\x8eu\xc9_+\x92F\xf8\xdd*\\\xaf\xe3\xf4\xda\xb9h\xe6PJ`\xb4s\xf9\xe9dS\x1f\xaa\x936\x9c\xa1\xb7\x8c^\x9a\xdf\x1e|\xb1=\x9f\xc9]\xe1\x12/Xd\xf9\xab0Z\xbau\xd3\xadvE+;\x138==\x858\x88\xd39\xf9\xf2~\xe1\x12\xcf\x83r\x99g\xb7\x90\x92[\xc8\xdd\xef~N?\xa7\xd9m\n\xd9\x1a\xa1\x9e\xf3\x1d\x8c\x80\xc0\x08\xbes .`EJ\x88S\x06\xd8c\xac\x90-X\x9d\x92\xd5\xf9\xcb\x8b\xb7?!l\x0f\xbe\xf3\xb4\x8b\xe6\x03\x05\xcaA\x19^3\xc8\x81\xbf\xe8\xe6\xd1\x99\xb1?\xee\xef!\xad\x92\x84\xbf\xe3\x1b\x8a\xaf\xc5\xdf\xf7\xf7\x83\xae\xca\xd6X\xed\x9c\xb7X\x9f\x0bl\xb3\xf9%\xb7\xda\xba\xf4`\xbd\x81\xbc\xd5\xe6\x80a\xb3\xd2Ou>\xf5\xd1\xc3j\xcd/}\xd6\xfcL\xf2y\x8b_j-\xf9\xb0bE\xa5@\xad+\x1fd8\x057\xc5\x0f\x94\xd2\xfa\x83\n\xf1\x9f\x8f\xbf`\xeb\xf4\x14R\n\xea\xe4\xf3\x96\x1a\xce\x9bq\xcd\xd2Yy1\xf0h\xd2\xa7\x9a\x9d\x97y\x9c^\xbb\xc4\xa3\x18\xb2lUzh\x1f\xa8\xca\xf3\x81\x1f\xe9\xac>\xd2\xf5\xb9\xb2\x1dm\xd0F%\x1e:\xba\xc8\x87\x85\x0f\x89\x0fk\x1f\x96\x8c\x06\x81\"x\xdd\xa6r\xe83\xaf+\xfc\xd1\\\xe1\xa6\xaepn\xaepWW\xf8`\xaep]W\xf8\xc1\\\x81\x12\x88\x94\x0b\xc8\xe1\x18n\xe8\xbf3\"N\x17A\x1a\xf8\x81\x12\xf3\xae(\xfe\xed\xc1k\xe8\x0ds\x8b\x97\xbc\xc5\x98\x9eB\xd1Z\\\xb7f\xfe\xe8\nN\xe1\xb2i\x19\xbf\x91\x7f\xe3\xa7'\xadO\xe9\xf5w#Dvx\x98\x10hz\xb8?\x94Lv]\n\xec\xb7\x96\xf4\xdd\x8a\xfe\xef&\x8b\xe70F\x90\xb9\x9aE\x17\x1e\xe5\xa0\xe0\x18Ro\x16]\xf8@\xe9\xa2kZm\x01g\x10\xba R\xc6\xc7p\x87L\x98\xe9\x0e'X\xef5\x7f\x83\xf4\x96\x0f \xfd&\xf1Y\x87\x95\xbb\xf2\xe9\xa1\xa0P\x1e\xb7\xe1g\xcf\x87\xcbYt\x01[\xa7\x90\xe0\xcdu/\xb1\xc6\xda\xf3YOW\xf2[\x17\x7f\x9dB\xa2\x81\xd5f)\xf2 bw9\xf6\xe9I\x83S\x98\xd0?\xfeHI:\xfa\xc79\x9c\xc2\x1e\xfd\xe3\x03\x9c\xc2!\xfd\xe3\x07Z\xe7\x80\xfe\xf5g8\x85]\xac\xf53\x9c\xc2\x01V\xfbH\xdfN\x0f}\xe5\xc6\x17\x9b\xdd\xce]\xe3\xed\xdc\xd3\x8b\xf9\xed\xd4\xef\x1b\xbd\x9dO\x9c'\xd7\xed\xcb\xa9\xf7n`]@b\xe38\xaa\xca\xdc\xd2\xb3\x1c;\xda\xa8\xf3\x8c\x02H\xd2>\\\x1c\xde:N\x83b\xdd\x10F\xa7\xe0\x00\xfd\"\xa5\x18\xe7\x14\x91\x0f\xef(\xf7(%\x90\x84\x11q+\x1f\x9c\xed\xbfVYy\xe2x\x88\x99\xbe\xf3|\x08a\x04\xces\xfamL\xffz\xf6\xc4\xe1d\x9b\xf3\xdc\xb1m\xeffD)\xe7\x8b\xe5\xf2\x94a \xe2\x86\x9e\x0f\xb9\x9b\x07\x1f`\x04y\xf0\x1a\xbe\x87\xd8\xed\xa4\xd2\x04\x1f\xe580+/\\:\x07\xeb\"\x11\\#\x12\x94\xd9O\xd9-\xc9_\x86\x05q\x91{$A\xb1N\xe2\x12\xbf\x0e\x12\x92^\x97Kx\x0e\xbb\xeat=\x1f\x1c\xb6\x86\x94!\xe9C\xdc}\xe8\xc9\xa9R\xc6\xac\xce\xe9\xce\x89\xbbz\x1b\xa7\xf3\xec\x96n\"\xfb+x\x1b\x96Kz\x97\xf1\xdf3\xf1\xfe\xd8\xf2yA\x92\x05\xfd\x98\xfe\xab\x7f\x8a\xef\x8eA\xc0\x01\xd7\x11\x84\xe82.\x1c\xcf\xf5z\xf0\xe05\xc7\x83\xd7\x8f\xc0\x83G\x9d\xa4\xca\xbe\x8e&\xd9\x8d;\xfa\xdfC\xaa\xd8\x89\xb8\x03\x9d\x16\xa0Kb\x90m\xc9\x1b[o0#\xa5\x91d\xe5\x7f\xf27\xed\xe5\xcc\xe9\\b\xfa\xbf\x01\xfb/\xaf^6\xf8p\xbf\xc8\xf3\xf0.\x88\x0b\xfc\xd7\xdcX:\xb8\xb1\xff\xe57E\x9e\xf2\xb0\xb3J9nN\x17\xd0\xbe\x04;\xf2\xe9nM^\xe5y\x96\xbb\xce\xcb0\xfd\xae\x04\x8a\xdd)k\xbd\xcc\xe6\x90\xa5\x00\xec\xac\x9aey\x9bB\xb0\xa6\x15E\xb4e\xb9Vt\xb5\x9a\x1e\x94\xf3\x95\xdfi\x9f\xd0\xf6\xd2\xce\xd3\x89wq\xec\x03\xb9 \x13\xcfuXq\xd3\xfee\xd9\xc7\xbf\xcc\xfb\xf8\x97\x9b>\xfe\xe5\xae\x8f\x7fi\x18\x9c?\xdb\x19\x9c\xe5\xa6\xec\x08\xe5aV}\x8c\xce\x15o\x99\xb2Ns\xc1:\xd9x\xa5.\xdee\xa9\xf1.\x8ckY#3\xa0q-W\xc8\xb5loC\x88\x8c\x05\xbb\xbc\x94\xd5\xa1,\x0b\xf2\n\xc7\x90\"3\xb3b\x8c\xc3Rc^\x9a\xd3\x8f\xb5\xcf\xb0\xb6`rh#Y\xcd\xf7\\\xd7\xdc\xc8\xe9)\xb2:\xdd\x92$\x90H\xc6F\x90d\xa7\xd2\xc5C\xaf'\x05: Dr\xecf\xda?\xa0Oq\x1b#T\n\xf3\xebjE\xd2\xb2\xe0\xb4e\xdfw\xf4\x89\xc2\x82\xc0\xf8\xb8\xb7\x1eH\x02{r\x0be{\x0b\xf5\x07[\x9el\xde\xb2K\x0c\x94\xb5\xfe`\xe3\xd3\xc74\xae\xd0\xd4\xa6\xe7\xa1\xf3m\xab1\xba\xa1\xd6/\xecm\xd5\xea\x95p\xbdN\xee\xb8\xf2\xaf\xde@s\x8b\x0f\xe6u\x11\\\x87\"!\x904!\xb2J\xa5n\xcaE\xce\xfc\xa6\x93\x9b\xcfl\xdc<~\xe6\xba\xab\xe0&\xce\xcb*L\xf0\xe25\xbf\x10\x96x\x9cW\x17\xbc\xfeG\xfa\xcd%\xfd\xdf\x16\xb2\xfc(\x0f`\xdc~\xe2yV\x8e\xfe\x1f\x85\x8b\x9f\xeab3.dk\x953\x1cu\xa8#4\x8a\xa2\x8c\xca\xc3f\xaa$X\xb06\xf7=83W\x96\xd5n\x16\xccE!H\xee\x96\x9e\x8f\xb0'\xa3gtk\x8c\xdc.jL=\x03Y\x04\xcd!\xaa\xeaf\xd5\x0d\x91 \x9f\x87V\x7f\xce5)\x1d\n\xbc\x91\xb8r\n\xf1\xcb@>\xbe\x88\"R\x14Y\xce\x08\x8a\xa2Z\xd3\xfd \xf3-\x0bA\xe1\xdc\x84IEx\xdb\xf4\xd0\x95\x0cY\xa5\x01\xbe\xf0\xfcMI\x0e\xf9\x08l\xa5\xee\xf4\xc8\xb3\xf3\xfd|\x0cO)\x9e0+~\x7f{\xe0\x8a\xcb\xf6\x82\xa2\xe6\xb6S\xa4 w\xd1\xbe\xa0\xea\xfa{A\xd8\xcc\xb3\x9f\xd8o\xe4\x1f\x9a\x1a\xb4\x8f\\\xb4\xebWS\xa3\x06u\xc8\x92K\x82j\xcb%\xda\xdd\xb3\xb0\x85\xa9\xbb7\xf5\x14dk>\xf4\x82\xc5\x0e\x16\xbcF\xecNh5\x99t\xef\xbf:\xb5\xf1\x01;b\x1b\x9f-I\xe67\xb1L\xa8\x9b0\xdf\xa2\x17\xb7}iT\x1a<\x05\xc6k\xd8\xaeL\xdf\xa0\xfb\xf8`uX\xff\x8d\n\x8dne\xba\xb2rCd\x82\x88\x9bc\x1f2\x1f*\x1fB\x1f\n3\xa8\xa4@d\xcbHc!\x03\xd0\xc6\xb9\n\x8fL\xc9T\x88\xe8\x1c\xc9-p\x18\xf76N\x99B\x8e|\x89\x08SJgQT\xe59\x99\x9f\x00\x9dd\xb9$\x90f\xe9\xceJT\x9c\x93\x1b \xe9M\x9cg)\xc5\xffH\x0e\xd3J\x8b*I\x80\xd0VaE\x8a\"\xbc&\x10\xa6s\x08\xe7sTe\x87 ,I\xb2^T \xdc\x86y\x1a\xa7\xd7E\xa0\x9f\n\xfa\x90\xa4 \x1dD*E;3}\xb1.\xcct>}(\x86\x1f\x9bi\x11W]\nR\xcb\x80\x9f\xfck\xf1\xe4\xda`\xdedz\xf8A^\xcc\x92\xd1\xe8\xc2X\xeb\xc1\xf3\xbc \x0dW(\x91}\x93\xde\x84y\x1c\xa6%\xfc)\xce\x92\x10)\x99\xd6WmJ\x8c\xdd\xb2(X\xe4\xe1\x8a\x14\x9f\xb2\x0f\xd9\x9aQ\x1a\xd1\x1f\xcc\x1f\x0e\x82\x01}\x16!OM\x9c\xae\xa4\xac\xeeW\xec\x0b\xb6bvaa\xa3\xd8\xa5\x8eS\xca8\x90`]\x15K7\xed\x10V\xab\xb35_\xacD\x9d\nW\xf2\xca@.\x0b\xe2tI\xf2\x98\x83\xed\xdd}O\xfd\x84\xb1\xe8\x93C\x1d\x03p\x1e}\xf2\xd4\xd8\x16e\xbf*\xe9M=?\xdaK\xec\x86\x0d\x91\xeb\xf9x\x0b\xc7'\x10\xc13\x10\x1c\xd0 D\xa3\x91\xbe\x88\xe2\xc8\x17\xb3H[\xc2\xa4io\xb6`\xcc\xb1Vt\n\xa1R \xa3\xc2f\x94|\xff \xb1\x80\xf9\x16\x8b\x97x\x9e\xccY\xd0\xef\xd4\x91U\x1c\xfb\"\x9b@\x89\xbbP/@\xa9\xec\x16\xb3,(\x83\x9c\x84\xf3\xf0*a@\x98\x1bi\xf0\x92S\xd8\x9a\xb4\xea\xdf\xe6q\xa9\xd6\xafKD}Z\x18&Iv\xfb\xefa\xb2x\xbf&)7\xbdS\x1bRk\xd4\xad\xb5>\xac\x9b\xcc\xd2\x88\xb8\x0eA\x83\xa8u\xf7r\xae[P\xc3\xd0\xf6\xfd=+\xbd\x14\x138/\xc3\x92\x04$\x9d\x13\xb4\xd6\xc9\x83\x94|)?\xc5\xd1gw\xc9\x86\xd0\xdd\xe9\xb2\xbd\x87%m\xcd5\x89\xf2\xccTb\"\xf3b\x8e\x18\xd7\xbf\xc7\xd7\xcb?\x87%\xc9\xdf\x86\xf9\xe7\x16 \xa9\x18\x06j\x86\x83\xfd\xa4\xa5$\xd5\xd4\x17b)w\xab\xde\xfdfB\x9e?h*sR\x94yvG\xe6\xad\xe1\x0f\x1e\xa2$\xcea\xa3\x15\xe7\x14G\xab |\x0c\xf3i\x8e\x98\xfaeP\x8f\x8d\xd60-D]Acu4a\xa12\x113@\xfe\xfd\xa7\xd0X\x9f\xd9&A\xabx\x1d\xdb)m\\p\xc9\xbf\xea\xa3\xfc\xb1C\x86?\xaa$\x11\x17\x16\xcf\xbe/\xdf#\xe2\xcb}\x7f\x13499\xda\xb3\xea\x8a\xec\xbb!\x8e=\xaetN\xd7\xb56\n\xeb\xa3\x8a7\x1c\xdf\xde\xc1\x9e\x01\x8f\xbf\x0d\xcbe\xb0\n\xbfv\xeds7\xde|\x02\xd2\x80\xcc\xe3\xd9\xb73\x88LZ2\x90\xb5\xfb\x87a\x10\xa7\x87\x1b/\xf0\xdf\x85A\x1c64!\xaci+\xc1J8\x93\xee\xa0\xcd\x19\xe3\xdb\x8f\xa8S\xc8\xb5\xb5U\xba\x1d\xf2-\xebg\x9a\x85\xeec\xf7\xdeb\xaeg\x16$\xee\xeb\x06\x96\x8c\x90>:\xf4\\\xa7\xc8#\xdd\xd4\x81\x92\xd3\xb5\xd0\xb6\xcc\x98\x1dI[\xfd\xe5:\x0e\x8c \xf4\xb8=\x8a#j\xca'\x06-\x08\x838-\xd6$*\xcf\xb3*\x8f\xc8\x90C \x08S\xe9f\xf96K \xc1\xa5\x87&\x12=\xb2Y`\xa4\xea\xa9\x8e\x10\x7ffn\xea\x83CYB\x07\xf5@q\xf3\x9b\x1e \x8a\xbc\xe8\xadm\x8c\x97\xa4\xcf\xaa\xe6\x8b\x8a\xd7;\x03\\\xa1\x92i\xb1\x8a\xe0\xd7,N\xdd\xda\xda\xd7\xc3\xf6\x90\xe2\xcd\xe1\xac\x86\x07p\x0c\xa1\xf8\xa9\x94\xc6\xcd\x818\x06wN\x12R\x12|\xefK\xaf\x14K\x8fF\xf2.\xd3[\xf56u0\xd2\xe2.\x1a\xef\x19e;894\xab\x90\xc1\x91\xf8\x08\xb9\xffot\x0d\x7fo\xc0\xb01\xd66_\xbd\x03\x93\xa2\xd9M\xdd\x83\x03\xcf\xc7\xf7\xe3\x86 \xb69\x98\x18\xaf\xe9\xe4@7\xf3\x0b\x8d\xaeT\x9f\xc9\x9d\xd9\xff''\x0b\xf3\x8b\xcb\xcb\x82$\xf6wx]\x8f[ \xcb\xe4%VX\xb7M&[\x83\x9c,\xa4\xcdh7\x13\x0dk\xe63\xb9\xd3\xf6\x14$\x96\xbc\x0d\x1ar!\x962\xc2\x88\xb6\xbc\x92>\xff\xf2/\xec\xf8\x1cC\xd5^\x1c\xfa\xea\x18\xca\xf6\x0b\xdc\x03\x83v\x1b\xb7 m\x97\xaf\xf3l]\x1cChX\xff\xec6%\xf917j\x12\x8f\xd9\xfbI\xb2]\x91\xc4\x1cA\x94\x93\xb0$\xaf\x12\xb2bn\x15}\x94 \x9e\xf1\xda\x17\xa25\xa2\x84\x9e\xc6*I\x0c\xb3\xe0o\xd4\xc1QZ\x83\xdfNY\xdc/\x1e\x14\xc3\xe4\x10\xd3\xc3CP\x03\xef\xae\xb9\xef\xc7\xc2\xf3!\x12\x85 3\x98\x1c\x01\xa1\xfb\xee\xf9 \x8bM\x03v\x84\x05\x1c8\xaeK\xda\xd5\x18\xf2Q+b\x19\x02\xa5\x8c\x810\xe6\xbb\xb7\xbd\x0d[\xa1v5]V\xeeV\xcc\x93\x11\xfd\x1fOZ\xcb\xb7\x84S\xd05\xe8\xb0\x03\xd3\xf6\xca0Y\xc7\xd2\x83*\x88\x96q2\xcfQ\xa4\xa1\xa1%\x94\xb9\xd2\xdaKx\x0e\x13\x13YQ\x0b\xb3\xe6\xc2\xac\xcd]\xd25bb\xac\x1bx\x06\xcb\x13\xb8\x19\x8d<\x98\xcfn.\xe4\xd1\xcdn`\x04S\x83\xfco\xec\xabc\x9a\xab'\xb05\x13\xee\x15\xc8=q\xe8z\xb5\x84\xe4\xc0\x97\x07\x8dO\x94\x9a\x16\xf1#\x9e\x8b;O\xdeD\\xi\x07\xee\xe8\x0et\x0cM\x08\x80\xe9ig\xee\x03c\xfc/\x0eP\x8a\x9e\x96\x14g7\x17\xc7\xaf/\xcc\xeb0*\xb3\xfcn\x90G\xa4v\xc9\x82\xab8\x9d\xbb\xdc\x07\xc9L8\x93@(\xd75/\xc5E\x10%YJ^\xa4\xf3\x8fL\xdc\xfd\x1f\xa4\x97\xb9n\xe6\x18p%\xbd\xcf\xa0,\xfd\x87\xdf\x03\xfa\x07?\xe7e\xc0\xa0\x8a\xcf4\xfb\xebB\x9f?\x1d\xc0f\xf0\xa2\xaa\x0d\x9brTd\x8a\x86\xdb@\x02m\x9b\xe8\x15n\xbfB\xc1\x03\x0e\xbb}j(\x12\xed\x9a\x8b\xb79\xd0\xa9\x14\xa03\x17@\x87\xdd\x9a\xfax\xc80h\xa9\xc3 \xb6\xde\xec\xe0#\x1e\x97\xcft\x0d\xb6\x0c\xef<\x0d\xdaT\x16h\xc3\xca\x15\x15\x11%\xb6T9P\x02g\xb0\xa6\xc5\xa7\x90\xd0\x7f\x8e\xc5/Z\xd7\x00\x9d\xee6\x84Nw\x1e\xac\x87@\xa7\xbb^\xe8t]C'\xbaz+\x06\x9dV\xf0\x0c\xeeN`E\xa1\xd3\xf5l\xa5B\xa7\x95\x05:)\x03\xba\x1et\xff\xf9\xddX\xfa0\x17@\xe0F\x95\x13\xd3\xc3\x1f\x17\x7f\n\x93xn:\xfe\x9bP\xa4\x8a\xbc\x88\x1d\x10AJ00&\xf7\xaa\x10\xc0\x7f\x80~\xe2T\xd2\x0e\x1f\x98Y\xc0\xdd\x83~\xa9@\x87\xb3\x03c%\xcc\xa0+wS\x8f\"P8\xe6\x87\xb0\x99\x8aq\xec\xfa\xc09%\xa6\xab\x8a\x8d\x04ef\x10\xd3\x0b\xc3R\xae!-H\xf9)^\x91\xac*a\x192\xb1\xc5\x15!\xdcK\x97\xcc\x9dn\x91|\xd5\xdfA\x94\x900\xff\x8a.B\xb3\xfc%\xc5s\xd0\x8c\xbe\xd6\xda4Et\xf9\xc6\x06\xc8\xc6\xbf\xcd(\xd3\xb5\x95\"\x880\xb4C\xf7\xb1)\xf6{\xda\xed\x94r\xa4\xec\x0b\xf5\x9a 9\x87\xd1\xa7\xd5\xdc\x1c\xb4l@8\x92l\xb5\x0e\xbd=\xb4\xdb\xe2\n,s[\x16\x10\xf1\xb0eg\x7f\xcdsHm\xb2\x04\xe9 \x9e\xc9?Z\xc4{\xa7\x80(\xad=\x18\xea\xfa\x03\x06\x95\xdb\x06\xa5\x1c\xde3\xf5\xe7\xb1\x04\x85\xa0w`\xb4\x8b\xca\xb6\x8a\xae\xa6\xa2-\x98\nu\xa6i\xfe\xd1\xfeV\xd3@Q\x0c\xb931]\xfe\xb6\x8e\x8e\xf9? J\xe4M\xd5\xeaY:9z\xe0\x83(K\xa3\xb0t#\xb4/\xc4\xb6}\x88D\xa5\xedmX\xba^\x9f\x96\xcet]\xb7\x166j\x96\"\x89\xd0]\x1b\xd4\xe28F\x83uC\x8d\x0f)\x01\x18\xd5\xfaerb;\xe7\xf8\x01\x85\x92\x91X\xd7\x13\x18\x8d\x12x\x86\xdf\xe0\x82\x14\xb3\xe4\"\xc8\xab\xd4\xb5X\xbc\x8a\xa5\x90\xbb\xec\xb9%\xc0%|\xec\x8e\x9a\xf6N\x865\xbc\x92\x0b[Jk\xbd\x1d\xdeP\x85 \x90\xf1d\xc6F\xe9\xa9\x95_\xf8\xc3\xbb\xb1\x830\xf1\xe4n\xd9\x864\xe2\xe9\x87^\xe2\xe9\xef\x08d\xb5\x83\x0c7\xed\xdd\xc3FC\x80V\x07\xc2\x1a\xa0\xbb\x03\xfb\xec\x8do\x1e\xf4\x05{\xe8\xbc\x89s\xbb*qQ\xa5\x92&3\xa44%%x;\x9b\xbbq\x15\x8b\xd3\xb8\xd6:\x0e\xe2\xf1(E\xc0hW\x03\xed<1`\xe9V5J\x1d\xdba\x01\x9d\xcf\xe4\x04Rx\xd6\"\xceO \xa5\xc41\x99\xa5\xb4+\x95@N5\xe28\xe2ZVr+\x96\xcf\xf3a\x82th\x0d\x05\xef\xef\x01\xa3s\x84\xeeR\xa1~\xe7\x92D2\xaf:=\xa6\xc4&p\x9bs)\xde\x06\xee\x85\xd2l\x1c\x94q\x89\xd6\x1f\xceU\x9e\xdd\x16$wh!\xff\xbb\x89\xba\x94\xde\xf0\xf0\x1bq\x10\xe6\xd77\x0c\x7f@\x1cp\xbbAd\xbe\xa4\xdfE]\x1b\xdf\xdd\xe0w\xf3\xf9OqQ\x92\x14\xdb\xbda/Q\xd9\xc0\xfe^,\xc4\x9f9Ye7D\xaf\xccJ_$\x89xQ\x887d\x15\x97\xe2\xefuN\xd6$m\xf5\xc4\x8b\xdf\xa7Q\xab\xddDj\xae\x97\xa1\x98]\xa8\xabw\x15\xa7\xf38\xbd\xeeVR\xe9T\xeb:\xcf\"R\x14\xf5\xc7\xb1f%\xedh[\x14\xdd\xce\x07x\xc89O\x1c\xed\xb3\xe5\x0f\x18\xd9&\\\x88\x91R\xe22y&\xc8\x81\xb3\xe1\xbd\xf9\xd3\xab\xcb7\xef^\xbfy\xf7\xe6\xd3_\xb0\xc6\x04\x9e\xd8V\x9a|)I\xda\x8a\x8bh[\x02\xa6\x9dk\xd3Q6\xf9-.\x0d[:7S-\x9f]\xe2y\x0d\xed\x04\xcf o\xd6\xae\x9c\xc5\x94\xc5\x9e\xa5\x17LD\x1a_|\xfb+$J%9\x9d\xd9]\xa5\x15\xd4\x8fYj\x8c=\xd35\xac:5v\x063n1\x95 N\xa3\xa4\x9a\x93\xa1\xa1\xcb(\xa7_\xf7\xa5\xbc~\xe0\xc6\x0fC[2D@3\x8c_<\x84\x85\xc7C\xe5.\xfdk{[\x84\xc6ce\xf8\xe7\xf66\xe4\xc2\x12\xbd\xd5\n\x1d_\xca\xde\xea\x9c\x06\xbeY\xc4IIr\xb7\xf3-IN(\x11\x17\xa2\x17\n\xfb\x06\xc11z\x0d, \xd4\xe3\xa740d\x0b\x08\xa1\x88\x96d\x15\x06\xf0F\xbcb\xf1\x0d)>\xc8\x16PT\xd1\x12[(Z\xc4a\xe0\x18\x8e\xe3\x12C\x1b\xae\xd6qB\xe6o\x9a\x95\xab8\x0b\xeb\x88\x018>\xcc.\xf4\x0f^}i\x7f \xd6\xd3\xf8\x01E\xcco\xc3u\x17E\nB0\xc4n\x90\xd1\xae\x80>l\xb1\x8e\x8dZv|\xcf\xc3j\xdak\xf0`\x9b\xf6\n\x8b0I\xae\xc2\xe8s+V.}d\x89{\xfdA\x07\xce\x17O:cW\xf1b\x86\xd7\x94\xf9P\x8a\x9e\x9a2C\x0c\xc3vw\x14\x90\x97\x0c\x90\x13\x83Z\xea\x04J\x86\xf9J\x0e\xbd\x1b\xc6W\n\xaf\xa8k\xff@\x12\x0d\xab\xe7\xc55\x9e\x16\xcb\x99\x90/\xb7\xf8+\x0c~|\xf5\xfa\xc5\xcf?}\xaa\xe5b\xa1`\x19:N\x848\x0d\xea07\xf1\xb5\xef\xf2\x80G\x01\xa4\x18\x97\xb6\x8e\xb3\xb1AyF\x9f\xab\x9c\x84\x9f\xdb\xaf\xba\x9c\xe1K\xada\xbd\xab\xc9f]q}\xa8\xa5/\x19\xc8\xfc9\xcf\xd2k`\x9e\x81\x08AD\x97x~\xce\x194\xe1\xbbP\xb3v]F\x01\xcc^\x81\x02vN\x0c\xd6N\xceM \xf3\xe5\x0b\xc8\x0d\xc9\xefz\x80\xa7\xc0\xb3\xb2\x1bN\xa8\x01*\x0dn\x9e\xd7\x916\x05XDn\x88\x83\xc6\x02\xdc,\xa7\x802N\xaf\x13\xc2g\xc8Mq=\xca\xa0\x95a\x9c\n\x98\xab\xbcm\xf9\xec!wA\x1e=\x8dl\xd3i\xd4\x81B\xb59P\xb8i\x9b\x81\xf4\xae5~q\x8f\xc9-\x84\xae\x01o1\xf4id\x89\x05\x1c?\xd6\x1d\xd3\x14\x11\x83\xcc\xa4\xb1M\x1bj\xab\xf8\xdb \xcaP2Ho\x05\xc6\xe4\x81Om\x16\xe9\x83}\xf9j\xcdl\xe9C\xac\x83\xad^},s\xee\x16\x06\xa1\x9b\xb2\xaf\x9a\x0e\xce\x0b\x8a$\x8e\x88{\xe8\xc3\xce\xa4o(\xdd\x0e\xf5{\xbb\xff+\x1d\xea\x87-\xeb?\x80\xd5\xf9\xb7:\xf7\xfb&?U\xe6\xdf\x12\xa7\x8f\xa3\xec\xb3\x9eC:@/+\xb7=\\7+\xf5\xf1\xa3&F\x1d4z\xfaQ\xcf\xd8\x91\x86\xda\xb8a\xfcJj\x19\xc3\xc1\xc8\xb21\xac`\xeaO8\xdc\x0e\xeeR\x81\x9e]G\xe6C\x1e\xaf\xe22\xbe\x19\xbcL*\xa1i\x04\x1d\xf8\xc2p\xbdX\xfc\xc5\xf6\x05a\xe5\xed#\xaeS\xb2FPW-\x16x\xe9\xcb\xfaG]\xed\xc1\xab\xddaR\xf7\xe0\xd0\x0b\xd8{\xb3@es\x0b\x06\x03\xe9\x8e\x1b(9-s=\x80\x08\x06\xf6\x97\x17o\x7fz%\xc2\xae9u\x82\xaa\xb0\xc8d\xdb\xc3U\x98\x7f\xe6\xa6?\xf8\x93\xc7V;mb%\xd1\xfat\xcd\xdc\x8a\xa7`be\x1ef\xb0p\x9bF\xcex\x02\x8c\xba\xa4\xc6b,\xf7\xa4\xe3\xf9\xf5\x90\xd7e\x95\x93\xf32\x8c>\x7f\xcaCth\xb4\xbc\x11\x86\x9cK9\x01X\x86q\x88\xb1\xac\xa05\xd1EYXhy\xbc\x8c\x0eY\xb2\xf6\xaa\xff\xca;,\x9c\xd8 \xe4HZ\xb9\xd5\xf2&W_\x8a\xb9\x0e\xa3U\xea}\x1a\x81s\x0c\x8e\x91f!h%\xd1\xb7 >l1\x07\x9dz\x1f(\x85C\x9a|$\xa6\xed\xd0s\x0b\xca\x94\xd6\xa0\x84\n\xbd\xf6\x026\xf7\x1d\x96\xcdK]\x95Z\x08>K\xdd\xe9x\xeaiV\xf7B\x01\x8a\xef\xf7w'\xe8\x88\xbe\xbf\xdb\xaa\xd7\xc8\xcb\xb1\xde.\xaf\xb7\xc7\xff\xdd\xe7\xff\x1ex\x92\xc5\xcbc\xc5\x9dv/\xc66(S\xcc\xda\xdc lCip,\xd4\xcc\xd6\xdc\xa9\xa5\x9ed\x00\xe7\xeeY\xeap3;Mm\xa0\xdd\x85!ru\xcd\xc4.\x17\x82\xcf\xb8\xa3Q\n#\xc8\xbd\xe6\x00\xef\x1e<>\xae\xce\xe3\x03\xfapV\xea\x11a\x89$%\x8a\x1e\xc4\x84\x87\xf7oE\x1f\xcax\xb9\xce\xb0n\x10=\x99\x05\x8c\xfdg\xf4\xe4\xea\x9bDO6\xdd\x8f\xbfOPa\xd3H\xf0ZF$N,7v\x91dY\xde7:\xcb\xd0\xe2\xe2]\xf8\x0e\x15\xce#\x14#\x8c\xe1\x18\\\xa1\xc1\xc81OZ\xbfD\xc1.\xaa\xe9\x0f\x10\xdcw@\xd5\x10\xb4|\xd4\x9a @X+\x18\xad\xb7\xba\xcc\x13xs\xf5h\xac\xe6_R\xe5\xb2!\x05\xdb\xf27\xfa\x18D\xd7]\xa6\x0b\xad1\xf4\xe4Nh\x0f\xc3\x1a\x9b\xdf6\x92\xdd\xe1#Ah\xb0\xe1`\x14E\xaf\xfc\x0c\x90N\xd6\x9dw0\x0e\"\x9b\x00\xb1\xa6\x12\xd8\x04\x1f\x0e\xbb.qoB\x99\xded2\x8f\x0dTf\x8f\xaefQ\xdaO\xc6\xbd\xb7\xce\x02\x0d\x1e\x15\xd6\xae\x8f^l\x85\xfc\xe2\xf2Z}\xf0\x0c+\xb62\x06VbNm\x19m\xea>\x16\xbe\xdc\xf0\xa8:\xa1k\xa4\xd7\xb0\xed\xca\x87\xc2\xe7\x99\xf0\x0c\x95(\x1e\x8efcC\x00\xe9\x04\xdf\xe8&G\xd9\xb0\xcc{\x1d\x9a/2+.\xba4\x9fZu\x83q\x80\xcf\x8c\x12xv\xbf\x96\xc5(\"\xcf\x98\x07\x00S\x1c\x17|X y\xc0\xe41\xf2\xab\xc2\x87)\x93\xb5\x9eu\xe3BhF\x96\xd4\xf8\x90q\x80\xfa@\xa0/\x16\xa9\xb1\x1d}6}\xc7Xn\x98\x91U\xbf=\x18\x15\xd0\x8f\xbf\x04\xc3.\x9f\xa2\xeb5y\xf01\xedo\x13p\xfd# \xa3\x92\x07L\xff?\x0e\xcf\x84\xec\x9c\xc0M\\\xc4%,\xcbr}\xfc\xe4\xc9\"\x8c\xc8U\x96}\x0e\xae\xe3rY]\x05q\xf6$\xa7\xdf=\x99gQ\xf1\x04?\xde\x99\x93(\x9b\x93>\x81\x9c\x999\xe6\xa3\x91\xc7,\xd5\x9d\xed0\xbf.f\x17X\x8f\xa4\xb4\x89\x9f?\xbey\x99\xad\xd6YJRY\xaf\x96\xc3\x08&\xba\xf2\x8c\xb5\xa1\x06\x7f\x17\xa2\x89,\x1f\x1e9\xbe\x89\x1a_\xf4\x87\x8b?i]\xff\x18\xe4\x10\xee\xba\xaa\x8e\xc1\xf4\xb83\xfa\xba\x0fq;\xacz\xdcs\xea\x06\x9d\x1b\x89\x82\xb2q4\x8f`\xe5\xebb\xf1I\x87\xf7\xcc <\xac^\xb8?\xb4\xff\x12\xeb,\xb7&\xc1\xb78(\x97a\xf9\x11[+\x98\xd8E)z\x1d&\x05Z>\xba\x18H[y\xf7)\xaf\xf8\xab\xb1\xfe\x8a+\x17r\x11\xcfW\xfdn\x19w\x9a\x8f\x88\xb9)\xf9\xf6\xb46^\xf0\x03>\x04\xa5\x9a\xfdO\xe0\x94\x1f\x94\x8d6P\x94v(\xa5\x9e|\xbf\xa5n\xd7\xf7\xf0iI\xe0\x8a 7W\xd9\xbcJ\x08,\xf2l\x05i6'\xc1\xaf\x85__D\xee\xf4\x1ah\xdf\xeb\xcd\xfd[X\x95\xcb,\x07\x80\xd7$\xcf\x8a\x02^\\e\xd5\xe7e8\x8f\x7f%Kx\xb6\xc0\xc2\x7fc\xff\x04Y~\xfd\x1c\x9e \x88\xd4\x94\xb5\x1a\x15\xf6H\x8aA\x12{\xf9\xa4uu\xb9\x1c\xaa\xc5?CC\\\xb4\xb2\xe4A\x93X\x0f\xef\x94\xf2\xb2\xbe\x10\xed\x98+\xd0le\x11|\xfa\xcb\x87W?^\xbe\xf8\xf8\xf1\xc5_.\xcf\x7f\xfe\xf0\xe1\xfd\xc7Op\x06\xd3\xc9\xde\xd3\xbd\xc3\xdd\x83\xbd\xa7p\x0c\x93\xf1\xd3\xdd\xa7{\x93\xc3\xa9\x96\xef\xd6\xd2ah\xc5\x95\x94\xe2\xa4\xc3yF_7\x86\x17\x1f\xc3\xf4Z\xf0\xc9\x14(%\xf1\x1cI\xd190Os\x865:\xcc+l\xb3p\x85\xbd\xd3\xcfqZ\x1e\nCc/\xb8\xbcDl\x7fy\x89!,\x1a\xf9\xea\xb1b*\x82l7o\x00}\x9c\xe8a\xe7\x18\x8c\xe5\xb8\xd3\xa1\x85y=\n\x1b\xc5\x06\xc2\x88\xcb5O\x80\x07\xc4\x97\x95 \x85\x9an\xa0i\xba\xbd6H\xde\x1b\x14\x0d6\x12\x0b\xeb\xb7\x15\x10\xcaN\x89MZ0\x1c\xc9=\x9d\x8b\xda,\xb9\\\x12\xe6\x86\xb2\x88\xf3\xa2\xac\x11?\xac\xaa\x02\xedgB(Z\xd1j\xe5G\x10A\xf6x\x08\x0f\xb63\x105\x01i\x0cr\x1c\xcb\xd6Db\xfd,\x0c\xaae\x0d\x89\xd9l\xe8;!\xb5Q\xe7\xcdm\x87BnR\xdf\x91~\xda\x9c\x89\x16\xcf-W\xe5lo\x03\x91\xcf\x83\xfc\xae\x1dK\xbb\x83\xedFW\xbf\xe0\xea\xae$?\xe1\x89\xf6\xd1\x0co\x0c\x98\xeb\xba)\x86g\x8d4K\xbf\xaa\xdfe\x8bEA\xca\xef\xe8\x11\xc8*4G\xbf\xca\xaat^\xd8vW\xef\x936\x0e#p1\xf7\xf0\xd8\xb3\xf6\xc3\xee\xdc\xf0~0\x00A#cI\xa5\x00n\xa7<\xf0o\x0b(\xd4F.\xd6*x\x81\x8fM\xc5t\x99\xcd#\xe9\x04L\xa4\x0b\x10\xd1\nk\x06H;\xaf\x8a\xc1\xd0O\xd9\xfdc\x93R\xb1\xc5\xd8tx \x1a>\xc7\x05\xad\xf3\xc9\xdf\xdf3\xe7P\xa7*\x17\x87][\xbfU\x04q\xf1\x8a\xc3\x0d7\xb58`\x7f\xe7\x08\xd0\xe2H`\x83!\x056\x94\x1a\xf6\x98n\x12H\xf8t\x0c\xf70g\x1bg\xf6\xd7\x02\x8e\\]\x16T\xa8d\x86\x8e\xb7y\\\x12\xd7\x02U\xd9'u\x96\x02\x97\xf9\x042#\xfc\xb1\x0f\xb1\xf7\xe8\xed\xf2\xfaL\x1f\xc5C\xd7\xb2\xa8\x15\xba\x141uH\xb3j\xd5\x08\xdc\xc3\xd2%\xc2\xe7\xc9\x166c\x08\x906\x9a]Iu\x82\xb8\xf8SLX\xda\xfdv\xb1\xc9\"L\xaa%\x8f\xb4!0\xdb\xa3\xad\xa9\x99-\xd5R\x0e\x11\x1dK\x1caX\xe2\x9b:\xd9f\xd7*pj\xb3\x1eIW(\xc2\x1c\xc3\xfb\x9d\x9cx\xb5\xa2\xcf\x8a Q\xbd\xe5\x84E\x14\xc7\x8eY\xc9\xc5j$a\x19\xa7\x93\xce*Wq\x1a\xe6w\x96* )w\xcd\xe8\x845\x82d^W/U\xb9\xd8\xe9\xac\xc1\x08\xed\xdeQ\xfc\xec\x96\x9eu\xc1\xa1\xe9.*\xa6\xdd\xe3\x89\x8a\x9d\x9e\x1a\xe5br\x90\x90\xbe:;\x1d\x95\xa0\x19\xf7\x14\xbe\xef^\xc1%\xf9\xd2\xdfJ\n\xcf\x9f?\x07\x83?\x114\xdb\x19\x16\xe4`\xaf\xbf\xa9\x1f\xfa\x16\xb2\xd37\x1c\xa0v\x0c\x19\xba1\xc0\x990\x96\xac\x86Ph\xf6SvK\xf2\x97aA0\x03\x19F\xa1k}\xaa\xebR\xcd\xe0\xeb\xa6\x8bc\x11w\xab\x9c\x11\x03\xec\xe7F\x14\x14\xfd\xf9\x02 \xe6\x83:\xbd\x93\x98*\x8b\xfe\xb8\x01\x01eM1\xf2\x05\xdb1l\xa3E\xdc\x92R\xee\x10\x85\x81\xdc?\x0eyNx.K\xe4\xce\xf0\x8d\"\xa2\xa3\xd8}\xa7.9D\x90F+Ie\x1ekp\x94\xfa\xdcB\x82\x852\xc6j1G\xce\xa5\x1ccQ\x88\x04D\xa5\xfa\xe5\x08i\xfd\x94\"\xc0\xb2#\x88\x82\x98e\xdc\xb9\x0e\xc0C\xe0\xc8]\xb7OF\x13\xf6h\\\x99\xc2J\x91\x86}\xda\x99\xc01\\k'\xcarB\x8c\xc2'\xde0\x81m\xa4u|\x8b\x9c\xc1\x86t\x1b\xf1\x85d\x10\xcac\xee\xc0\x19\x1e\x86\xae*\x8d\xe5\x0f\xe7Z\x8d\x95\x93\xb0(\xdfX>\xc0\xb9c\x12%\xfb\xec\x8d\xbc\xcbM\x98\xd4\x84\xbd`WD\xa0\x8a\x9c\x93W\xadP\x14\xe6\x1b\xad\xaf\xbf\x05\x98d,5\x8b%\xbc_(\x1d\\s\x8dB\xa2\x82\xcd[,\xa5\x16`\"\x05\x86\xd1\x18\xffM!\x01'\x04s\x0d\x8c\"=\xc4\x91\x1b\x17Za\x01\xc7ej\xd1\x8eTf\x95\x17\xc4,*\x91\xa0\xd8\xa7L\x18\xd8\xfc\xee\xbdWt\xa5\xa6>\x84\xf0\x04\xff-\xf8\xbf)\xfek\xb8o\xad\"M0k\x1b(\x1f\x06\x0b\x17U\x89\x8c]\xc7<{\xee\xcfo\xd2rr\xf0\xc3+\x97\xc0\xf7r\xb6\x11\xf1\x98\xef\xb9\xd5&H85\xda&\x8d4\x1d\xaaaN \x83g\x10\x9e@6\x1a\x99\x992\xe0\x9d\xe1\xf42\x0f\xc7\x1fQ\xf0\xc1C_-8\x1c\xce`\x07\x16\x9dr\x1d\xd1R\xfd\xa1\x88\xd2\x9dy>\xfb\x1cF|\x81\x8az\xdf\x16tA\xacMr \xbb\xc3\xc2\xd7\xb2\x163\xd89\xe5\xa3\xf1\xf9*X\x80\xb3}mR\x18A\x01\xcf!\xac1I\x08;P\xe08\xf9\xaa=Gf.\xdb\xd9\xe9\x9arM<'<\x88\xed\x9a\xf1\x80kx\x06\xc5 \xac\xbb\x16\x1d\x94\x85\x87\x11\xac=\x16\xa4\x97.\xfe\xbaw\xa5\x81\x9b\xc0\x98\xfc\xbb\xf5\x07\xe3\xeft\xd62\xcbq\x80\x0f1\xa9\xb7+3\xd6\xb3j@vt7k3\xe0[\xf5h\x07\xe8\x061o1J!\xdc\xdf\x9b\xf8\x18\xa1\x04\x97\x90\xb6\x81\xe2\xcd\x05-\xc3\x9b\xa3\x90\xe79\xc4x\x0chqLq\x01\xfea\xee!\xeb\x85\x9d\x19\xfc+L)/7\xb68r\x0bu\xe2\x92|\xe9P=\xe5\xf0\x1c2x\x02\xd3zh\xf8\xabK\xfeP\xb1\xb3W\xb1h\x87\xa3Q\xd5\x05>(\x9aX\x87yA\xde\xa4\xa5K\x82\xa2\xba*\xca\xdc\xa5|B\xe5\xc3\xd4\xf3ar\xd0!7g\xd4\x9a$(\xac\xccu\xcb\x19\xbdi\x98\x8a&\x1c\x00\xf4Dc\x83\x0e\xcde\xcf\xa1\xe1\x8d\xfd\xd5\xfd\x19s\nK\xc7\xc2C\x95\\\xdb\xa0\xd3\xd6\xd3\xd5\xd0\x9e\xec\x06\x03u\x9b\xb2\x11\xd2\xecB 8Q\xb3\xf2L\"\xc6\xb3\xed3\xc1Q\x19D<\xe4\xc4\x8b\xd2M{$\xfam\xc0\xf7\xc0dy\x9bL\xfav\xd8\xa4\x95\xb5\x19\xd4\xf0\x97a\x0d\xff\xd5\xfda\xf3A\x9f\x0fm{\x90VC\x0e\xec\xc0\x83\x93\xf2]\x93\xaeZ}\xb0\xb6\xb7a\xcbu \xc5NS\x0f9\x02~ \x19+!\xed_\xc5\xf9M\xcaO\xc3!\xcb\x84\x93R\xb0\xb1\x7f\xe0C\xc6\xb6=\xf6\xea?m\x9a<+H~\xf8\xda\x03\xff\xaa\x8b\x9fUY\x08\xf4\xe9TXL\xf4\xd5\xa7<\xc8\x0fw%\x91<\xa2[\x85\\E\x85\xfd\x0c\x1b\xd7\x8b\xaeq\xa5RL\xa1\x9af\x1c \xb2\xc5\x10\xf3\x18\x83\x1ab\x14\xddv\x81\xcd\x8c\x85\xf8\xf0E~\x93r\x16\x1bLS\xc5\x83N$\xc6L\x89\xe2A#V\xcaJ\xef\x1e\xc1\x19\xec\xc11\xfb5\xdd\x853\xd8\xe5\xbf&G\x138\x83)\x1c\xdbD/\x08\x91a\x04 \xad\x87[|\x83\xe1Z\x8c\xf8\xc5#\x8f\x8f\x81\x05\xf6kz\xe1kS\xc9p\xf4jY%\xcdh\xb2_\xcfh2\x85{p\xc5\x9c\xe4)Vt\x8a\xd3\xf1\xdeS\xfe\xdd3\xd8\xdf\x9f\x1e\x1dP\x92\x88\x92\xb3\xfbOw\xf7v\xbdo:\xff\xbd\xc7\xcf?\xac\x7f\xedn\xb0\x1ajYhY\xa1Cm\x85\xa4%\xab\xd4%\x0b\xe9\x92\x1d\xec\xef\xef\xee\x03\x06\xf4x\x06\x93\xc9do2\x99J\xcbd\x9c\xa2\x99$\xae\x8d\xb1(_\x84\x9f\xd3\xb6w}\xbc\xc9\x18tl!\xf7\xe7.(>\xa0?\x0f|\x11\xb5x\xc1\xc4\xa8c\xd8\x86\xc9x\xba\x0b\xf7l\x1397\xb3\x7f\xb0;\x1d\xc3={\xb5\xcd\x0c\xc2\xf9w\x1e\x05T\xa3SH\xda\x10\xdf\x06\xa5\xfb)\x12A\x8c\xd8\x15 \x14\xe3\x14\xbc\xbc\xafI>C8,\xee1\xc2\x13\x85\x1b\xf5\x16 \xe9.\x1c\xc7\x0e\x18s\xb32\x10\x04\xf4\x16\x06\xd3\xdcXz\xc0`8\xba\xc9}\xa6\x9a{\xdfCD\xa5\xedEv[\xe8S\xfeE\x82\xda\xb7\xbd\xf0\x81\x04\xe7Iv[\x97t\xef\xc3\xa8l\"\xab`,\xdc.\xbbBT\xdd\xb9#S\xa0\x837\xef\xce?\xbcz\xf9\xe9\xf2\xed\x8b\xff\xef\xf2\x87\xbf|zuN\xcf\xd3\xd8&\x8b;U\x93)\x9b\xcd\x82\xcc\xe5=\xb1\x13\xed\xf9\x8cn\xa4\x88o\x92\xc9\x92\x9e=G<\xb5\x02M\xb6J\xb2\xe3\xb4\xba\x96Y\x00\xd8\x81\xa8\xb3l@8H\xf1\xf0Q\xed\xb5\xe5G\xe21\xc3\x8e\x07\x1f\xf6\xa6\x9cVZd\x99\xebY\xc5\xa1%e\xc8\x98\xa5\xe9\xf6\xb6p\xeb\xad\xcb\xdc\x89\x0f\x13OR*\xb6\x8fjg\x0c4h\xe6\xb0e\x90\x9d\xa8\xe7\xca\xf5\xe8\xc9\xfa\xfc6\xfc\xc2-\xe4P\xc5L\xcf\xd4:\xcb\x92\xf3\xf8o\x14x\x1cN\x8e\xa6\xb4\xe82\xac\xae{M\xb6\xc1\xb6\xb1\x85\xe2\x0c\xa3\x1fo&\xd8\x1e\xe0u$\xb5\x1f5\xe9\x05\x0d\x16\x98\x1dBjW\x1a\x8b2F\xe3\xb9\xa237\xd6\xf1-\xf6\x93<\x9c\xcc\xf66\xff+@{U\xc2\xf3\xb8\xa9e\x17LbF_\x99\xc3\x9c\x16\xbe\xd6\x8a)\xe0)wh7S\xa3\x9d _\x1e\x98\x1a\x01\xc1\xcef\xab\xbf\x81\xed\xa7\xf8\x02Y>D4ca\xd6$\x1bB2\xf3\xbe3\x93\x05`\xde\xd4\x0f\x161\x0b\xea\x86\xc6\x86j\xa1Tb\x00\xf0}\xa7\x05\x17\xe1\xe7\xb4\x08\x17\x83\xe3\xafX2\xb5\xe9\xcdQl\xf1-\x9a\x94\"\xac\x0cjk\xcbmb\xa1\xdd\xdf\xc3V\x19\\\x8a&\x0c\xadG\xd9j\x1d\xe6\xa4\xcf!\x1bd\xf3\xca\xdar\x03\xdb\xd7\xf4QF \xd9\x8b:\xba\xb7P\xac\xb0/\x8c\xb6&\xcc\xf0Eu\\\xee2s\x90\x15{\x8c\x0d'\xf5\xaf\x98\xc5\xa1\xcfdN\x92\x99\xd2\"k\x98Q\x86\xde\xe2t\x8b\xc3\x98\xc5\x17xD\xc9,\xbe\xe8B\"\xa9\xe0\x1cY\xff\xad\x0c$\xf2c\x97\xddZ\x89>\xccw\"\x94zh\x8e\x04g0Q\xe2\xe1Bs^\x84\xf9k\xef\x89\x11l%W\xfe\x94-\xe5\x8fy\xc2}\x06\x06\xdf\xca\x84\xe3\xbf\xc1\x1ee\x80\x8d\xc3?\xa8\x01\x88) )\x0c1\xb3\x18L'\xf8u\xe6\xd5\xc1\xd0!\xb3\xa6\xbc\xfa\xceI\xe2\xa24\x99N\xf2\xe0{\x90-\x04P\xb0YQZ\x0c\x1f\x04\x01m\xa2\xb1\x11>\x98[S\x02$\x18W\x0b!\x0ca\x10\xa4C\xaa\x8b!\x89f\xe9\x85\x95\xdd\x12r)\x05=P\xbch\x86;f>IO\x1d\xa5\x8d\xc2N\x9cW\xdc\x18\xc5\xce\x06\xca \xbc\xfa\x9d\xf6\x8f>\x153\xe6FM8g|E\xf4\xd6\x9e\xb3\x08\xcd\xb9mEg+dg\x8fS\x98\xfb\xa0Pz\x12\xfa\xdc\x1a\xab\xef\x8a\xdbp=9\xe8\xf3\x0c\x17\x0c\x0e\xc6\x8c\xea\xd2\x13\x95F=\x91l\xae\xc9GRP\x12\xbb1\x1d^UI\x19\xaf\x13BWpr\xb0s\x15\x97F\xb4\xa8(\x1a\xc6'h\xbe[\x9e\xb0\xe37\xf5\xe0\x86\xbb&\x11Jm\x8dZ\xd9KA\"\xd1e\x17M\x10\x8b\xa8.\xcb\xee\xf4\x9b.\xcb\xdeW.\xcb\xee\xf4Q\xcb\xb2\xd7Z\x96]\xcfo\x8a\xe82\xb1\x7fLZ\xb8\x0dV\xeb`\xef\x9b\xae\xd6\xe1W\xae\xd6\xc1\xde\xa3V\xeb\xb0\xb5ZO\xcd\xabu\xa0\x15O\xd9?\xfbZ\xf1.\xfbg\xef\xf1kk\x8a\x1f\xd7\xb5\xbah\x9e\xdc\xb5\xc2\x8a\xa6\xa3\x8e\xaa\xc5~\xb6\x02\x08\x9c\xc1\x0b>\x9b1\xa5\xcc\x07\x84\x87\x92\xc7\x93wh\xf2\xe9F+\xf8\x07\x8d`\x98\xcd\x99\xb0\xfa\x1a#\xdb\xf4\\\x9eO\xe3Q\xe2\x0ck\x17\xfd\xa6R\xbd\x91\xda\xd4N*D3<\x8a7\xcda\xb69Y\xc1\x10j\x15\x06Q\xac\xe2\xe1\x9d\xbf\xd8\xa4\xf3.:W<\xbc\xdd_7i\xb7\x93:\x86a\x14\xb2xx\xff\x9f7\xe9\xbf\xd7v\x18\x9a\x86_m\xd2p\x075\x0e\x83(r\x18H\x95\xc3&\x9494\xb3y;l6\xbd\xc4:4v\xd1F\xc6\xfag\x1e\xf9Rx+\x1e\x83\xcd\xbd@~J\xe6\x8e8\x02\xc7\x19j6\x0dF\x9a\xec\x81\x8b\xe4\xd9dmA\xa5T\xa0N\xfeZ\x85Iw`\x170J\x1bzd\x0b\x122\x146\x9a\x9d\x88\x87\xe3\x80\xfb{\x0e,kY\x88\xd9/\\\x9bE\x9c\x16k-xr\x17f\xb2)F\x98\xffRK\xca\xdf9p\x81\x9f\x9es\xb3\xe9\x9a\xae\xa8\xddy\x10Fr\x7f\xc9`\x15\x96\xd1\xd2}\x12\xfc6}xr-2l\x80#\"\xe3\xd6\x8d\xf1\x10\x80,\xc8L\x10\x04\xe0x\x9e\x0f\xce3No\xd4\xe1r\x9e;]\xebb\x91'\xf5\x1a\xb5\x7f\xfb\xad\xd6y<\x05\xb3\xea\x9e\xdb\x0c!\xa2v\x84/\xc8\xb1^/\xaf\xed\xb6\xb4\x17\xcc\xd6,naT\"|\xdd\x11\x03\x8bv\xef\xefQ\x80\x83/b\x1d5\x9b)>\xee\x8f\x9e\xd3\"@\xfbh\xdb|sx\xce\xc7C\xe8_\x9dnBM\xfd^\x17\x02\xad1{-\xa4\x03|H\xeb\xbf\xf2\xfa\xaf\xb8\xfe\xab\xb9|\x83\xc4{\x19\xba\x0e\xec\xd0\xd3\x83!\xcd`\x87\x1e\xa7P\x96\xe8e>T\x1e7\xdf\xc0\x00\xc8B/\x18s\x15\xacb\x99\xc24\xbb\xe3\x13H\x98!\xedh\x94\xd8%\x80\xd1,a\x12\xc0\xc5,\xe9\x94\x00f\x18\xbc,\xe1:sZ\xdb\x0e\x83\x1f!\x01\xcc\xe0\x19\x1a!\xa3\x04\xb0\x82g\x90\xd9%\x802\x94\xc2(\xc2C\"\xbbI}q\xe3\\\\J\x91%\xd7.Ao[\xf7o\xd4\xd9\x9d\x1aR\x03\x03\xaavu\"\x99\xfc\x7fmG\x93\xce\x8e\xd0C\xdf\x0c\xc7l@L\x8b\xb9Y\x93\xb8L|$\xddt\x9f\xf3_\xadVj\x0f\x14\x1d@\x99\x83\xa6\xe4,J\xf9F\xad\x9b\x8f0\xc2\xe0\xb8x\x1d\xa7\x18\x97\xc03\x04d\xe1\xae\x92,r\x81p\x8c\x10\x84\x87\x0f,P\xc7\xcc\xe7\x91t.<\x16\xc9\x11\x92,\xbd\xa6\xfc\xaa\x88Fk\x0f\xa8q\xcf\x00\x85\x18D\xea\xc1\x19\x05\xcc\xac\xd8\x08\x899\x07Ay3\xd9\x9f\x89\xd5\x1db\x94_\xdb\x18K\xa8pGO\xea\n]\xacU,98\xc9\xc1{\x9e\xd7NM\"\xe2 \xe3\xef\xf0\xafA`_r\xeeeg1\xab\xca\"\x9e\xd7A\xa9\xec\xf1I\xf2:\xae\x805^\x86\x02^U'Q\xabJo\x08\xff\xc5/\xdbJ\x0b\x94c\xde\xf2^\xd6k\x18\xdb\xc5\xfb\xbc\xdc\xa0\xcf>\x8e\x8b7y\xb5A\x93_\xab\x8a\x80\xa6\xdb\xdb\x0d\xba\xed\xe5\xb1x\x9b_6h\xf3\x1fN\xd9q>h\xf0\xbd\xdc\x14Z\xf3o\xc4I\xd9,u\x01\x98A\x13s>\xd5\xbd\xa6\x98\xc2\xb1\xdf\xf9T\x97v\xfd\xdf\xf3\xf7\xef\xfa8\n\xbe\"\xe6\x1bJ\xdb9\x06\x11\x0c\xc4\xccr\xcc\xc32<\x06\xdd\x93\x0e\xe9\xa3&oFp\x19\xe6\xb9\x88\x0d\xe6\xf7\xc3R-\xf8*\x05,\xef\xe1\x14\xf6\xc6G\x07\xb6\x90q\xbfv\xe1l!A3I\x92\x1ec\x16\xac\x98\x03\xa3\xce\x97\xd9\x8c\x992@\xa2\xc1)js\xed\x0c\xe40\x87\xde\xcf\xff\xa8S\xfc\x16\x93{3drv\x1bDw\xcb&\xf5t\xb78r\x95\xd8\xa7\xbc\xc1\xb2\xa6+\xa9,\x82\xe3\xb0\xfbG\x98\xab\x1c.F\xe61}\xd3k\xb7\x9ce\x1dS\x8f\x07M\xfdm\xd7\xd4\x15St\x8d\xf1\x90\x877f\xc3\xcbk=^\xc659\xb1m\xd7\xf2Yv\x01#\x98\xee\x1f\xc0\xf7\x90\xcf2S\x90X\xd8t.\x9f\xba\xe6\"4\x12\x13\xd4H\xb0\xd8\x18\xf6H6\x0e#\x01E\x04\xef*NK\xbb}\xc7\x08\xc9 k\xdc\xb7O\xf9]\x9c^c`\x13Lj\x00W\xe4.K\xe7\x82\xf6ak6\xd0\x0b\xf7\xa5*\x82@\xa7\xc8\xc7K!\xbes\xd8\x18\x8ca\x80\xb8\xb0D\xc4\x0f\xb1i\xb2 \xba\xa8\xf1\xe3\x9fY\x03\x03\xe9\x91\xfe\xf4\xd8t\xb6\xe615\x88$t\xb0\xc7\xc1\x9c\x93/ \x8b\x17\x06\xae\xe8\x87\x1ef\x88\xd4>\xfd\x84\xdbS\xef\xe3\x86\x9b\xf5\x92\xca\xed\xd5\xadud\xaf\x17\x1f\xa6\xaa\xe1\x0ewG\x8b/\x00\xf5\x10\xdb\x18\x94\xe7\xd938\x84\xef)\xfd{\x061\x1c\xc3\x04v \xf6<\xb4\xd16\xbc\x184\xe1\x8f\x1bMxoz\xb4wt\xf0tz\xf4\x8df\xbdg\x9f5iOk\x17\xa7\xc5\x16c\xd0\xe4\xde\x0d\xbe\x1f_s\xb0lG\xb5\x03\x9e<\xfa|\xfe\xa4\xcc\xc88\x9dZ\xaer\x7f\xcf\x16`\xec\xb3\xa5\xf6!\xe6<\xae\xdc\xc6t\x97\xbd\xa3+\xb07h\x0c?>z\x0c\x87\x961\xecO\xd9;:\x86Cm\x0c\xf2\xafB\xa7\xeb\x86\xd8\xef\x08\xaf\xb8aJ\xeaS\xf8\xaf\xff*}=\x08&\xe1\xb9O\xfe\xeb\xbf\x88\xcf0\x05\x0bC9\xa2X\xbb\xbe!\xa5\x888RR\xc4^\x17\xe5^\x13\x92\x8c\xe5\xea\x92\xbe!\xe2\x1bR\x7fC\xa4o\xca\xba\x04\x93\x1d\x1b\x03\x985:\xcf\xda\xea\x1a\xd7\xc2\x1a s#\xf9IM\x81\xc1\x8e\x9eeE3\x86\x11\xec\xec\x101\xef\x13<\xda\xe3\x9e\xe9\xd2\x0f\xbe~\xc2\x87C\x00\x02o\x90\xd4s\x9c\xf8\x9a\x82\x83o\xdc\x90\x1e'\x07\xedc5\xa8\xd3\xa9\xa5Sn\xe9\x81\x8b2\xb9@\x9c?l\x1c\xed\xcd\xfe\xbaq \xb5\xa1\x0cf\xc88v\xa7\x8f\\\x8f=}\x1c\xae}A\xe4\xa2)\x16\xb18\x7f\x93\x83\xa7O\x9fN'\x94\x8b\xa8\xdf\xef\x0e\x1c\xf6#\x97\xaf5\xec\xd6\x18.D\xe2Li\x06\x93\x83\xf6\x14\x94Y\xed^t\x8a\xf0\xe9\xb0\xff\xd7A4x~\xca?\x9fL\x0f=.\n\xdf\xe1\xb4\xe3:\xbbu)\x95\x00\xdf\x03\x06\xf3\xec\x05\x07\x7f\x0f\xf0G\x94\x85\x91`[~q\x82\xe4e\x1b\nf\x1a\x14\xcc\xbb\x17)3,Rf]\xa4l\xc0\"}#\x90\x89\xbe\xd7\xf5\x89Gu\xde\xf7\x80\x11!v\xa4{0\x11\xa9\\\x07@\xd7\x0d\x80\xab\x15\x9a\xb5\xd7\xf1F\xf8UX\x81\x8bu\xedw\xa7O\x0f\xe8$S8c\x8c\xd0x\xf2\xf4`\x0c\xf7\x90\xc2q?\x05\xb2\x01\x8c~\xf4t\xd8$\xee\x15\x10\xfe\xfbM\xe7\xdb\x81\xfa\xcd \xbd\n'i\xd9to\xd0p\x87\xad\xfe\xf0\xe1b\xcf\xedA\x0f\x00\xee}\xc3}\x9dd\xa1\x01\xba?n\xb816\xd9(\x1a\xb6\xc6\x82\xeb\x1b4\x8co\xb5j\xadaL\x86\x0e\xe3\xc7\xac\xbaJ\xc8#\x97\xe3\xb0w\x1cc\xc1\x80\x0e\x1b\xc7#\xd7\xa3\x7f\x1c\x93!\xe3@\xe6\xd9\xca\xcdX\x848<\x9d\xa7\x82\xe0\x98\x15\x0b\xaam_\xea\x06\x04:2I=\x96t\xcc\xe6\x88\x12\xdbc\xfce\x1dN\x1fx!H\x13r\xba\x14\x94D\xdaB\x93\xac*#\"N\xa1\x84'\x1039\x90\x15\xbc\xd1\xca\x9dP\xac^I#\x99\xf0w\\\xc9\x14\xabXW\xd3`\xa4$\xad\xa6\x10\x9f\xd5+\xba\xb3\x13c\x808N*\x18\x964\x16K\x9a}\xb3%m\x11\x15\xdd\x16,\x86E\xd5\xd7\x92\x02\x8b\xfd}\x1f\xf5(\xd6|?\xb8;M\x06\\\xb7\xf4\x04\xb4\x96O\x197\xf9\x1f4\x11\x13\x05\xf2\xd5s\x99\xfaLr\xdc5\x9b3\xc3\xf5\xf0\x9b=\x9b\xb0=C\x11)\xa5\xa9>(\x1dl1\x1b\xfb\x91\x166\xd2>\xc9\xc1\x94\xf2\xef8I>\x1b}\x92|\xee\x86IN6\x9a\xa4\x89Z\xf9\xeaI\xee\xf9\x92H|\xd0L\x19\xcd\"f;\xdd\x93\xa6;m\xca'\x07\x96\xbd6\x1cg\xba2\x1f\xcd\xdb\xdfI\x16I+\xf3;l\xff\xe6+cY\x95\x89eU\xa6\xe63\xb3\xdb\xbd2\x93\xc1+\xb3!\x8a\x15\xd2cyY\xb6\xac\x06G\x02\xd4\xb7\xd0\x03\x86\x8e6\xcbN[\xb8%f\xa8d\xc7\xe0\xe6m\xb6\x07C\\lF,=Qz\x1f\x89\xc1+\x19\xdd\x08\x917wJb\x7f\nsL\x86\xdb\xe9\x84.\xf0\xcb\x10C\x14\xf9\x1a\xdew)\x96\xaa\xe0\xf9s\x18S<\x1a~\x13|\xb5!\x05\xf0?e\xa3;\xa8\x88\xaf\xdal\xb1\x17\x12\x81\x915\x04\xc6\xc6;>\xfa\xfb\xec\xf8\xefB\xa0L\xa6O}\xd8\x99L\x0f7\xa7Q\x14\x1d\x12]Z\xe6\x930\xf9\x1a\xfa\xe5w$_v\xa7O\x0f\xe8\\Q\x860\x0c\xb4\xff\x8e4\xcc\xefH\xc2\x04_K{0`\xca\xdd{;\x80\xc4QH\xa2\xaf\"h~Gz\xc6\xbeD\xea\xf5U\x8c$\xc4-\x1e\xb0\x8a\xff@\xc4\x8fE\xfe\xd4\xbd\x8a?i{\xd6\xe7U\xd1\xf4\xb4\xe9~i=M\x06\xf5d\x93\"uw\xf5\xe3c&e\x13\x14m\xd4U\xef\xac\xa2l}\xb7\x19\xdd\xd2\xa4\x9b\x1c\xa3Cd\xed\"\xd8\xd8\xd5\x97\x9a\xa7\x97\x94\xa5\xa41E\x90+\xd0\x0fI\xdd\"Wq\xe45 \x88\xce\x0b\xcc\xfb\xb2/\xbdS\xdc\x8a\x84\xd2\x0cP\x1eVO\x13\xa4\xcb\xf0\xa6\x0c\xf3kR\x9e\x97a^\xf6gC\xad\xcdx\x80\x19kj\xc30\xf7PdU\x1e\x91\x0dz\xc8\xbb\xc6\xcbZ{\x95\xce\xfb\xdb\xcaU\xe7\x8bz\xf5\xd5\x1d\x95\xec\xaf\x08\xc6^\xda\x916Jy92Z\xe5\"A\xcb\xf4[\xb99n=\x12\xc8\x8d\x1b*\x06]\xe6\xcaA\xec\xb1#$M\x0c,]\xc2\xe4\x04b\x9e\xd5`g\x07\xcd\xc2b\x18\x01\x03\x92\x14\xd6\xd1_\xa6\xb8/\xb5\x93\x11eA&d\x17X\x18\xaf\xcd\xb2\xfe\xb105\x9aY\xda\x06\xfd\x1b\xf3\xb9\x14\xa4\xac\xf3\xb8\x94\x8a\xa9N\xca\xcc\x9e2\xcf\x9c\x0bS\xe8\xfd\xba\x00\xc1\"\xc6\xf4\xf6\x1b\x00\x02\x83\xd3\xd5\xc6\x99\xadEz\x02\x0c\xa9\xc1\xd1\xa6vC\x8c\xe9s%\xb8\xd0\xfe\xc4\xe7Y7\xfa2#\x81\xec\xe2$\x07,\xb7Y\x1e\xd1\x87n\xe9t\xff\xa0F\xd4\x96\xf8h\xf6|\xabz\xb2\x19C><\x9b?{\x9d\xf1{h2o\xcb\xb2c\xbfj.\xe0\xdc\xe6Ul\xf3\xfch\xf5\xc7s\x97\x98\xf2\x9d\xf3\xc5b\xa9\x92\xacF\xbf\x1cF\xca\xe0\xe7\x19\xc3\x0dj\x91\xd5*\xfa\xfd`O`\x0c\xe7\xd1\xc4\xcf\xa3\xed\x9b\xa1Tf\x1bl\xe3\xcc\xab%\xba>SF{\xcc\x93\xc8\x8d}h\"{P,gL\x0bo\x87'\x06\x8b}\x04\"L\x93a\x01\"viB\x85\xb6|r\xacB\x96Q\xf8g7\x15)\xeds)\x01\xa6\xd7\x91\xbc\x99\xb2\xdc\"N\x95\xf9\x10\xd6\x13\xe0\xb6z\xe8\xa3\xacLB\xc0\xc5j\x96\xc1\xbfB\xb8\x81\xcd^\xd9\x8a\x91\xa3\x8e\x81N\xf6op\nOf\xff9\xfa\xe5\xc9x\xe7\xe8\xc5\xce\xff\x0bw\xfe\xb6sy\xf1\xe4\xda\xe6z\xf3\xba;\x84+\xa0r\xf6\x0c\x9c1:\xfd\xabiB\x8f\xb5\x02ul\x96\x0e\x7f\xb6*\x00o\xcc\x01\xda\x08\xf0\xa88\x13x\xd2\x9b\xe3\xb2q\x90\x89Ex~S^\x87\xee\x14*1\x0bl\xd3J\xec\xe0\xc1s\x8c\xe6\xbd/P\xf4\xfe\xd3\xdd\xbd\xbd.\x80\x1b\xf3\xfcp\xf6\x1aP_\xd2\xe7\xb0\x7f\xb0;9\xea\xabL\x1f\x96\x88b\x97\x8eggB\x07\xc3\x93ILw\x8f|\x98\x1cM|\x98\x1c\x1eu\x80u\xf1DYZ\xc6ie\xce\xa5$\x1e{\xf6 \xe0c\xaf@\xa4~\xb2J\xf5\xe4\xe7\x1fi\xf4\x98\x10\xaa\xb3Jo/\xdd\xd9\x95\xf0\x98\x1c\xecN\xad)\x04\xc53lU\xfc\xdfy\xc8)\xf7\xd18\x80\x11\xa5\xebvx\n\x82g\xcf`\xc2\x0c]v\xf8l\x8c-\x88\xb4\x89\x9c\xef\x190\x1f;&o\xeeo\xca\x12U\xf4\xdd3\xd6\xe1\x84eg\xe9K\x7f\xc0\x07\x93v\xcf\x83\xef\xdft\xbc7\xb0\xf7\xe9f\xbd\xc3\xf3\xe7\x98\xcb\x00\x03lcB\x83\x94\xfe\x9a\x1e\x0e\x1a\x16\xee\xd3\xb0q\xedn>.L\xba0\x9d\xee\xb1\x10\x1ep\x00\xdbt\x848\xba\x0d\xc6\xda\x03\x1aq\x1e(\x14!\x92\xb4&V\xd2\xdar\xf6\x99p\x86\x19X(i+\x93\xab\xfbu\xd6\x7fy\x8cw\xa6\xe3t'\x13>\xb5\x07\xbfS\xb8&h\xa8\xd4}\xea\x05,\xe8|\xd3q\x19\x90/\xeb,/\x8b:\x85\xf1\xe0\xd6\xf6\x0e5\x8a:f\xc5GZ1\xa5\xd3\x9cY\x86a\xf0y\xd0\xfb\x0b\xc7<\x02\xfb\x89\x15'\xa7\xc0\xefU\xc6\x8c\xae6\xfdb{\x1b\x90\x0d8=\x95\xee\xdd\xc3f\x93\xda\xdd\xf5\\\x16\xb1\xdf\x07'\xcaIX*~m_\xb1\\\xbbOw\x8d\xeb\xb5\xfbt\xcf\xb0`\xb4|_+\xafx\xf9\x81V\x1e\xf2\xf2\xa7\x9e\xc4\x0d\xd4\x07\xbbh/\xe6\x0d\x8f\x0e\xbac\xd0}\xa6\x1c?\x03\x0f\x9f)\xa7sV\xcfk\xad\n\x0d\xa2\x84\x84\xb9\x8b\x87\x9cX\xb3q\xddt\xa7\xd4FQ\x10)\xdd|6\xbe\xf0!\x9fMt\xbb\xff?\xb4\xffRd\xc0t\x0ctWT\x89\xd0\x9c$\x04c\xfc\xc4j\xf95\xa1\x102S\x0b\x97!\xdd\xd7J-,\xb0f\xe8+{_l\xb6\xf7O\xf7,gH\xf9\\_5c\xf8\xfb\x13HwvN\xda\xf0\x17\x05\xa8n9K/p\x01\xa5\xbc\xd1\x1aU\xc9K\xa5,\x9f\xe6+\"\x8ff\xf0\x90\x1b5\x92\x88y\xdad\xc9!\xf4/\xf2\xe8\x8b\xf9\xf4\xe81k\xd8,\xdf\xe5\xe5<,\xc3\xcbK\xe3j\xe4.\xf1\xe0\x0c\xd2\x99E\xbeW\x17\x1f\x83\xb3\x0c\x8b\xa5s\x01\xc7\x90\x06\xabp\xfd\xd8\xf9\xec\x8d-\xe0s\xa2_{\x06\x0e\xf0v\x8b\xa2\x8d`f\xc6D#9\xcb\xe8G!\xe5c\xc7<\xb1\x80\xb0\xc9d\xf7\xb1\x83CP#NH\xec6\xd2N\x8aY\xf3\xaf\x18\xeb\xd3\xb1a\xa8\x9a\xa8a\xd8Hmbbz\xbaY\x0c\x01q\xea\xdbb\x1bT\x12a\x14N\xe3\xb1s\xc6\xd8\"\xaa\x04\xe8\xd8\xe8\xbd\x81\x9d\x98\x1e\xb8\x9d1=l\x1b^\x17\xa7*XB\xf3\xa8\x94:lh\xc6\xd6\xf5\xd8\"\xc1\x0d\xc9\x0b\x8a'j\x0dS]TG\x86sn\xc6\x81\xe3u\xd7\x98\xd0\x1a\xb5]\x8b\xb9\xc6!\xads\xa6,{\x1bO\xa4\xe4K\xf9)\x8e>\xab\xb1\x98;bK\x82\xd8#Q_\x96B\x97\xb6\x08\x0f\x94\x8e\xba\n\xa3\xcf\xc6\x18\x0f\xa2%[\x98\xfb\x9b&\xab$\xb4\xc3J\x9b\xbf\x11\xb1\xb7\xc2.b\x1c\xa3&\x8d{\x02\xd5\xf6$\x80\x14\x16@\x81XI\xb7+X,\xb6\xd8\x93\xdf\xb1\xddb\xbd5}\xe2\x0f\xc0k\x86D+\xe7\xfa\xcd\xac\x83x\x1e\xfa\x86\xda\x93\xdb\xf1\x9b\x0e\xb5\x95{U\x7fzG\xdb\x93\x89\xf1[\x8f\xd6\xb7ir\xc4\xd35\xe0\xde\xd8Z \xcb\xc1\xe9}b\x1ci\x88\x16|\x8a\x1c6\x137\xc1\x83lV\x8dF\x17\xf2-\x99U\x1dq3\xe1[\xac\n\x8bX\xcc\xa5\xc4}\x0bb|\xdd\xc7\xe2? U\xdc\x801 N\xcb,\xda\xee\xde\xa6,\xda\x81\x89*\xc8y\x96B\x13y\x9f\xf5\x91\x8eqJ\x81 \x99q\xae3m\x14\x13\x0f\x86\xe6*\x9by\x86\xe0L\xeb\xf7R3\xe2\xaf\x98e{\xa3\x98\x9c\xa7\x1ek\xfe\xe4 \xb8\xf4\x02L\xa1\xa5\xa2\x84\x1c\x8e\xc1\xcd\xdc\x9cN\xcb\x9734V\x9e\x0f\x99\x1b\xb3H\xb0\xd5\xd0\xccr\x88\x1aL\x8a\xaa!\x01\x88\xd3\x8cc\x04\xde\x80gD\xe3\xa6E\xa1#\x1c\x9a~M\x19b/\xee2\xc5H6\x0fO\x1c\xab\xb8\x85\x01\xf8\xc0%5.1ghKYf\xe8\x98\x9fh\x9e\x13\x1a\x7fJ\x7f\x8f\x15?\xe4f\xee\x03\xb2\xae\xfd^so\xb6\xc6\xb4)\x03\xf3\xb7\xfd\xce\x83\xcb\xa5|\xa3\x1b\x93\xbafZO\xbeH\xa9\xbbwp\xe4\xb9\xce\"\xcb_\x85\x91\x08\xa5\xf5\xa8f%\x1e\xe0H\x17?p\x1e\xe0H\xe7\x0d2\xce\x1b\xe8\x10\x8d\x891\xf6\x9e\x1eJ\x8b\xe2n\xc6\xd0\xf9\x94\xfa\xe2 \xbd\x8d+\xdb\xca\xf4\xf1\x0c\xa6\x94~5\xd8)\x94p\xc6r\x15s\xf3\x8d\xd2g\xc9N\xab$\xa1'\xbcPP\xd7\xf4\xc2W\xa4#\xa8N\x0cy\xe2!\x16g\x15#\xd5\xa6\xa8P\x16v.N\xe4\xf0\x80\x91R\x19\xa1e\xa1Zv\x8b\x01\xd9##]\xcc\x93A\x1a\x12\xa2\xaa\x99 \xd3v\x05\x92V+\xc2_g\xed\xd7\xb7y\\\xb2\x97\xa1\xf2\xee\xc1\x87\x02\x19\xc7\xd8-\xe8\xb0\xe8\xcc\xa2\xe6\x90z\xc1\xf5\x90\xa8\xd3t\xc3\xf8V\xf9\xb00\xb3A\x96]\x89\x1a\xd3\x18\xf3\xe6D\xca\xe6\xecJ\x9bC\xc1\x99\x14\xba\xe8\x182\xce\xe1\xf3\xf7\x14\xae\xa5\xea\xfb\x149\x1c\xb9S\x1e\xc1\x87nh\xd4\x8cAz\xa3\x1d\x06q\x10\x8a\xe6 \x84\x86\x83P\xb4\x0e\x02\x8fa\xde\xde\xf4kR\x1a\xb7\xbc\xa0\xe5\x86\x9dV\x8fB\xd8}\x14Z\x89y\"\xbe\xdb\x11\x1d\x0ff\xc3\xf9\x16 I\x92\xe1\x1c\xdaD\xa9\xc1\x8f\xaf^\xbf\xf8\xf9\xa7O\x9c\xb0\xcc]\x0d\x0e\xb3 \xe7\xc70K\xdd\xfd]O\xcb\xdeO\xbe\xac\x938\x8aK\xfe\xfa)\xdd\x16w\x7f\xf7\x90\xff{\xe4I$\xcf \x18hgP\x05\x8d\x0c\xa9;m p./I\xf16\x9bWZ>\xd6AKG\xdb\x93\x05\\\x8a\xf5C\xea\xd6\x1abwz\xc0AI\xea\xee\x1eq\xaa;u\x0f<\xd7\x11&\x1b\x9f\xc2k\x01Z\x9c\x97\xe7\xe7\x1f\xab\x84\xfc\x14\x17\xa5\xff\xf2\xfc\xfc\xbc\xbcK\xc8\x8f$J\xc2<\xa4#\xa1e\x7f\xa2p\x85UHb\x92\x96\x1fIT\xe2\xcf\x1f\xdf\xbf\x95\xfff\x8d\x8b_\x9f\xb2\xcf$e?\xc22\xfc\x94\x87i\xb1 \xf9\x9b\x92\xac\xb0\xf0u\xcc;\xfd\xf7Oo\x7fz\x91$/\xb3$!8y,\xd1~\xbe\xce\xf2\xd5\xab\x84\xd0[\x8c\xbf\xcf }+J\xde\x92y\x1cbco\xe3\x15\xa1\xe8\x96\xa5\xe9}\x17\xae\xc8\xfc]6'o\xc3\xb5O\xff\xc5:\x1f\xc2\x98\xce\xe1\xaf\x15)\xd8\xd0?$\xd5u\x9c\xf2\x7f\xd8\x97\xe7\x7f\xfa#K&\x87\x15\xce\xff\xf4\xc7w\x88\xa5\xc5\xaf\x0fa\xb9<'\xd7\xf5\xcf,NK\xf1CZ\x85\xf3?\xfd\x91\xcd;\xcb\xd9\xa4\xcf\xd1D\x95\xa1sV@\x97\xfb|I\x08\xfb\xfc\x13eg\xf20\xfa\xfc\x92/x]\xc0~eU\x84#r\x82b\x9d\xc4\xa5\xeb\xf8\x02Z\x8cO0 ~X\xcb\x80\x8b\xd1\xc8\x04g\x11\x1e\xce\x8a\x8b\xf6\xbd\xa7\xe0%\x9fE\x867h0I\xe9\xf2E#\xf4V\xa14\xe6<\xdeJf\xd5\x05\x13\xd2%(\xf9\xa0@\"\x9bE\x94\xab\xc8\x02\\\xd7\x9e\x13\xaf3<\x14\x8e\xfe\xf6P[\x1am*\x96\x13\x02D\x0eH=\x1e\x86\xf5\xd0\x87\x9dI\x1f)e\xbb\xec\xdd\x94`m\"\xd7\x10\x80\x12\xf1\xf72L\xbf+\x81\x0e\x06V\xa4\\fs\xc8R0\xe6\xeaii+7\x1b$\x07-\x83Y\xca\xa9\x0d\xeav\xd2Y\xa8\xc7\xef\x13o\xa6\xbe\x1e\xa1\x87\x19\x16ZR\xa4s\xe3+\xb1\xe3B\xc8\x8b\x80Mlc\xd3\x9f\xa1\xe5\x8eF\x91\xbe\xff\xf4\xde1h\x1aeY\xcc\x83\xfa\xba\xd0^\xb7`\x0d\x1dl\xc9\xa9(w2=\xf4\\'^\xe4\xe1\x8a\xe8\x1d\x89'G\xe8b\x13\xab\"\x92$AA\xc1l0\x8f\x8bu\x12\xdeQ\xac\x97f)q|\x9c\xfb\xa1\x17\x84\xeb5I\xe7/\x97q2g\x99\xca\x83\"\xa7\x80\xd2\xf95\xbc \x8b(\x8f\xd7\xe5\xb1\xe33\xabV\x12DYZ\x92\xb4\xfcs\x9c\xce\xb3\xdb`\x9eEH\\zA\xb6&\xa9\x8bn\x03,j\xa7\xf3\x8c}\xfa\\T ^\x9f2\xc5\xf1\xb3_\x9e\xf0W\x98\x81)\x88\x92\x8cE\x8c/\xf08\xbd>\x81|g\xe7\xc4\x03\xae\x9a\x94t\x8d\xb3l\x96_\xd8\xad\x02\nWS\x89\x9a\xaf5O8\xcf\x94\xd7\x94\xa4\xed\xe7\xa7\x8c\xf0\x89\xabf\x04m\xdb\x0c\x93\xa2\x12\xb7\xf4\xfc:\xdce\xe8\x83\xfa\x9aK$)\xc68e\x0eX\xb4j\xe1\xaaY\x95\x08\xd2\xe0\xc7\x10\xbb\xa9/'\xe8\xed\x07\x87\x02}\xa0\xf7hDb-=~\xae8\x96\xf6\x01?\x9b\xa4\xabx\x17\xbe\xe3\x0e\xce\x1eW\x84\xbb%\xfa\xf5\xb0\x10\xa8\xa9\xb71\xcf.\x11t\xbb\x9e\xeb|&w\x85~\xf2\xd9\xa5U,\xcc7\x1av\x8e\xe1\xa3\xee\xc1\xc5?\x98\xec\xe7\xf1\xa34 #g\xce\xe5e\x94\xe5d\xe7\xd7\xe2\xb2X\x869\x99_^:\xa2O\xf3;\x8a\xe8\x1f;\xa1XL(f\x13\xfa\xed\xa1o:6\xc4\xe9DYZ\x94y\x15\x95Y\xee/\xc3\xe2\xfdm\xfa!\xcf\xd6$/\xef\xfc\xb8\xf8 \xce\xef\xfb\x85\xbf\xe6\xc5o\x8aW5\xbf\xe4\x97\xd9OY\x14&\x84a\x03_\xa0\x05\x9fc\x1e\x99j\xdbl\x95'{^\xb00\xcaTtQKf&\xf6\xfbV\xd6\xcc\x98\xa3\xcau+\xc6#\x9er\xdb\xf9\xb2\xb9\xc6\x18\xd0\x98\x99\xd4\xa0\xb8\xa5\x0d\xcdUfs\xcb\x10PA\xc8,\x94\x17\xbd\xfb\xb7!W9\x9d\x1cy\xee\x96\xec\xeeBq\xcb\xbe\xc7s\xde\xfb\xe0\xb0?\x1c\xbf\xe3\xb0\xa1\xfd\xc9%]\x8a:S>\xf7O\xbaD\x83\xaff\xc8\xbe\x1d\xc5I\xe8\x8d\xb7g\xb6\xaf\xe1\xed\x9a\xa1\xaebHvf\x17\x041@\xda\xee`\x9e\xa5*\xffI\x9f\x07\x06\xbc(\xe0\xc6\xe5m\xe66\x92\x8d\xeb\xad\x9d\x19&\xc2\xfb\x99X\xf7v\xc3[\xb071\xcb\x15[\x9cm\xebF\xd4r\xd7\x02\x89\xb7\xbc[]\xa4K\x08\xd5\xf1\xbb^\xefm2\xed:A\xfd[\xd5%d\xaf\xf3\x11\xff\x9c\xce\xc9\"N\xc9\xdc\xa1H\x84\xc9\x8f\xf8\xabwU\x928Fg1\xa4E;\x119\x0e8\xbf3\x94Jc)g\xc4\xe0\x98\x02QX\xa7\xe6\xd5\xf4\\\xe8\xd1\xca(\n\xbc\x12\xb1\xe7q\xac\x9d\xa1\xb0\x08\xb5\x00\x0e\xab\x80\xc3u+v\xca<\xcfFV\x03KBCP\xe3 m\xdd1T=\x80\xc1D\x02\x8c-\xa8?\x0f\xd3y\xb6r7\xdeM!\x92d\x86\x8a\xaeC \xc2(,]}\x17\xe9xK\x1f\x1c\xef\x92\xd2\x8e\xa3Q*\x92\x04q\xf8\xb1{\xf0x\xb4\xbbk\xbe\n\xfb^M\x8f\xb6/A\xee\xc6\x1c\\\xc7\x9c\xf4\xe3\xf2\x93\xc7\xae\x00\xdd_\xad)fA\xf4\x9bn\x8a7x^\x93\xddn\xaa\xe7\xa8\x9fS\xfd\xef\xa0z\xf6\x9fZ\xf0\xf1\xbe.\xf1\xcb\xcc \xaao\x12\xff\xbb\xf1\xf1\xc1\xc4\xb4\x00\xc1b\xc8>Rn\xc2^ $h\xdb\xe6\x92\x10\xa3\xad\xf3l\x15\x17\x843&\xa5+O\xc4\xea\xc5\xa4y\xb4\"\xd3$\xfdN\x0d\xd2\x9e\x1f\xc29|\xe0}Id\xa5=\xf3!\xea.\xd2\xdalX~\x1e\x04:\xceI\x91%7\x84\x03\xd0\xba\xf0W\x96\x858\xd7\xddZ\x1e\xbe\x82\xff\x98\xec\x99\xa5\x05\x93\xf1#O/\xb3?m\xb2JJk\xc5n\xc6\xffq\xd0L~\x04\x0e\xcc3R\xa4\xdf\x95\x98\xf7g]BN\xae\xc9\x97-\x8b\x8e\x94\x83\xd3\xaf\xba\xd0\xf4\x82b\x8e\xe4\xfe\xabiD\xeep\nO\x82'\x9a|\xc7\x88j\x9d'\xc1\x13\x07f\xe5\x85K\xb4\xbd\x128\xb6\xb5p0\x04o\x93Y~\x81J%\x1f\xb6\xac}@\x0f.7-\xef\xa6z\n\xf3\xe5'A\xa3\xfb@ e\x1b.Tn\xeaN\x0f\x0ft/\xdc\xb8~u\xa8\xbfB\xd2\xceD?\xc4\x01W\xc3 \x85\xd1\xf6\x08\xc8\xeb\xf7g=\xc0DPE\\\xe7\xa8\xed\xd8\xf1\xc0\xaf\xad\x84\x8e2\xd02\x90\xe0\x04\xcb*\xad\xbcFPS\x17I\xe2\x94\xb3f\x8e\xc7\x96\xa1\x9a\x0c\x83*+\x90\xe5\xc3\x91\xb6\x8c!\x9b\xf6\x0ckuWi9I\x0f\xd2\x11\x10\x93\xd9p\xd7N!s\xeb\x1d\xf3:\xb7\xccBPW2A\x9d)@\xb1s\x0f\xff\x1e\xfb\xb7\xc1\xd8\x87\\G\x82h5u\x0f6d\xb6L\x82\x9d\xd4\x9d\x1a\xc9\x9bC\xb3\x01\xc7dl\xf6CAi\xc6c\xc1l\xcc\x1d\x94\x98\xc0G\xfc8Eb\xf4\xb7\x0748j*\xfc\xa6[3:\x97l\xf7\xd0\xbd\x1bC`0\x0f\x84\x98\x87\x9f\x0e)\xf3[v\xb0\xb9U\xb0p\xb5\x08\x06\xbd\xd4Q{;\xb8\x00\xf6\x9a\x94\x92\x84\x89\x0d{C\xbf\x91\xdd\x03}K\x84\xcf\x90\x99\x12\xdd=\xd4\xad\xde\xb9\xcf\xd0\xa1\xceQp\x9f\xa1\xc3\xe9?}\x86\xfeA}\x86(\xaf\x94\xbaO=\x1f\x9c\xb7\xe1\xfa[9\xa1\x1d\xea\xde%\xdc\xebdj\xf6:\xd9\xdb\xd5\x0f ;P\xfa\xf1\x0by\xedG\xfb\x81\x18\xe1o\xc9\x11\x93|\xb628\x06'k\xe4\x0dR\xd5\x8a9\xba\xc4n\x89\xe7\xa1\xa4\xe7\x81\x82\x0c\xc6\xb6\x86\xfd\xc0U_3z\xae\x8f\xc6\xe3\xa7\x93\xa3\xa3\xe9\xfe\xde\xd3\xbd\xf1\xd1\xd1\xa4-nx\xf2\x9f\xee\xd9\xf1\xf8~6\xd99\xba\xf8e\xfe\xbd\xf7/O\xfa\xd6\xc0\xa2\x86\xc1\x10>|:FZxk\xcb%\xd2U\x13\xfa\x13\xc2\xb2\x9f\xc8F\xae13v\xe3hg\xeb\x94\xf9\xee\xe7AI\x8a\x12u\xba\x88\xb1\x84\x0b?\xcb\xffy\xcaC\x97\x96\xf0\xac\xd7\xefd\xc8J\xf5\xad\x82\xed$Xb\xeft\x0c\xf7T\nu:\x08m6\x17\xc2\xec\x84\xd5r\x1e\xa2\xb7\xe1\xc9/\xc1\xfd/3\xf7\xecx\xf6\x9f\xb3_..\xbe\xbfwg\xcew\x17\x9e{v\xec\x9em\xfd2\xf1f\xff\xf9\xcb/\x17\xf7\xbf\xfc\x12x\xdf\x9f\xfd2\xf1~\xb9x\xd2\xbe9O\xfe\xf3\x97\xdb\xef\x1fu@\xb8\x7f_\xa3o\xde\xd2\xc2\xdf\x8bm\xe8>A\x8a9k\xaa\x90bu\xc1U\x96%$L\x9b\x12\xc5Ik\x0bY1z\xbe*q\x9c0\xbaX&\xff\x12_\x10\xb6Cq*d\x88\x1b\xa9\xf9j|\xd4\x96\xe42\xf15\xb9!).\x9d\xf2\x13I\x03!\xe1^\x85_~\x8a\x8b\x92\xa4$o**\x855\xb3/\x8d\xac=\x84|C\xd0\xd5\xd9Xlo\xcc\x04\xda\x9a-8\xedi8\x1bD4k[\x00\xda9L}H\x83Wt-_\xad\xe2\xb2D\xdb{,k\x10\\\xb3\xf2\\\x0d\xa1\xbe\xd5\x16\xbd\xa9\xc3\xa9\xe3\xb7\xea\xfb\x89\xf6}A\xf4\x1av\xa8a3\xd1\x06\x91\xc9\x18\xdd\xc3\x99.\xd7$\x9cH%c\xeduV0K\x8cN\xabm\xf3\xb9\xf2\xd50N\x0f\xea\x8c\xc8*\xee\x8e\xc8 )\x11,\x96\xcd1\x8f&(\x1fsW\xbb\x06\xbf=Pr\x81\xd0\x999M\xd4AwK\xae\x16\xe0k\xee4\xdf*gF.\xedr\xe1\x97i\xa2\xd2x|\x0e\xd9\x14\x97b^\x91!9[\xb0\xb0\x1fb\xf1\x0dY7\xe9\xec\x17\\f\xc7\x1d\xf4~N\xa3\xb0\xba^\x96>Ti\xb1&Q\xbc\x88\xc9\xbc\x9e\x1b\x0e-\x00\xf7;\x9e}\xd7\xf1L\x927\xd6\xdf\x82\xd9t|)\x99 \xefB\xa9\xf6\xd0Z\xe3\xac\xc9\"\xcaW`V^\xd8\xc1.\x83\xcb\xa9\xe75\x0e~\x9a\xed\xb9i\xc9\xba\xfc\xf8\xd2&G\xbfE\x9ah \x7f\xd2\xe5\xca'5\xea\xab\xfb\xb4y\x17\x16\x17r\x82\xde\xb8\xaa}\x92\xb7,\"\xdcD4\xdb\xf6\x91\xed\x84\x92=\xa0J\x813)\xb9\xadG\xbf\xcd2\xe8!\xdct\x1d\xe9\x8d\x83\x0c|\xee\x92@\x0c\x89\x92\xfc\xcd/$\x87}\xfd\xfa2\xae@\xbb\xd2\"\xcaaS\xc4\xc2\x06\x11\x91\x9aOn\xe0\x14fZ\x91\x0f\xe4\xc2X\x91\xf8\xa6\xcet\xb0J\xbb\xbb\x0d\xf3\x94\xcc\x81\xa5\x0b8\xa5\xc8\xbb\x85ZP\xdbjD\x9b\xc7\x06D\x84\xddT\"\xf6\xb0\xde\x1d\xb7)x\x0e\x15vi\x19\x0dsa\x88\xb2\xb4\xc8\x12\xc2\x80\xbf\xeb\xb8i6'\x1e\xd0*\x18>s\x9d\x15E|\x95\x10P\xc8\x84\x15Ye\xf9\x1d$$\xfc\x0csR\x92\xa8$\xf3\x00\xfeu\x0eI=\xeap>\xa7e?\x17\x04\x08\xfbJ\xc7\xf6\xae\x07e\x06q\x1a\xe5\x84\x02\x9b$^\xc5e\xe0\xb4\xb6\xb4\x89\x93j\xa4\xbf\xc4\xf8\xcb<\x8c\x90\x08U\n\\\x91\x0e\xc9v\x932\x14i\x98\xaf\x96^\xb3?\xf9\xf67\xbaY\x82\xc2\xa7(Hy!\xd1\x95&dS25\xd2*\xbb!b\x0et\x98\xb1\xc7\xe3\xbb#\xc2\xa3\x9bNT\xf0#\xa0Y+\x82\x92\xfcKXi57\x10o\x00\xf6\xc9\x96#\xeeYkud}kyS\xfb\x7fQB\xe9w\x81`\xd8\x8c\x0e\xbf\xf4\xcb\xdb\x11w5^\xb0\xfbl$$j\x0c\x901a\x1a\xddQ\xa1s\xcc\xddT\x02k\x94\xea\x97V\xf5\x14\x83\xbdr\xd9T\x0b\x16)\x90T[Q\x15\x98\xaa/\x19<\xd5\xe3-\xab\xb8\xd0p\xa4jlX\x9d@\xb8\xb3C!\x8e!&\x0d\xf0\xc5Hg\xe1E3K\xfa\xab\x99\x17\x9d\xa5R\xc0'\xda\xeeS\xf5\xdf\xc4\xfe\xab\xf6\"I\x86\xf1Vf]{\xebz\xf4\\\x85\xad\x8e97!\xecYf\x1c\xddm\xf3Lg\xf4Q \xa0\xe3\xdc\xed\xed\xce{\xd1\x1e\x92\xb97\xebA'\xe8D\xaf\xccX\xdf\x1en8 \xb6\xb0\xbd\xd0nGLs\xdb'z'\xda\xf9\xc1\xe5\xd0`+\x18y\x9a\xdc\xc2\xd3X0\x83\x1e\xee\xbe Oi\xa1\x8bO\xea\xbbqbotV\xdf\x99\x1dh\xf1\x1d|%\xba\xb6\xd1v\xa8\x93Ag\xd9D\x96\xb6i$\x16'I\xbf\xc6g-\xe2\xcf@\xf9 \x1a\x1f\x8eav\xd17\xd6\x97Y\x95v\x0b\x04tv\xdf\xa6\x1e!\xed\x8dm\x9f\xb3\xc68\x83/\x83!u&z\xee\xd4\x15\x84\x05j?\xbc\xd1\xb8\x11\xfb\x0c;\xc2\x85\xa9_\xf5\x0b 5q.\xcf\xc5!{\xbeO\x0e\x9fz^p^\xe6$\\q\xd7\xdd\xe0# \xe7\xe1\x15Z(\xe0\xef?s\xbfg\xf6\xc1\xe4)\xfa\x86\xfcX\xad\x13\xf2\x85\xa9C1MLP;\xf9\xb1zGS,\xfd\x10\x16\xc5\xa7e\x9eU\xd7K\xa6\xfb\xd8?\x1c\xa4\x83\xed\x0d\xd1d\x0ett#\x92\x99\xb9\x18\x07MyW\x93\x7f\x06\x95?h\xc7\xc4$$\x89\x0b\x8c\xb4\x02\xc2o\x83!\xa1\xb4\xcc\xef\xd4\xa2E\x9c\xc6\xc5\xb2\xcf\xc7\x87>[\x9dK\xa0?\xb5\x96\x8fujG\xed\xa52*{=\x0e\x93r\xa3NQ~\x84\xd6%\x0fD8({\xa3\x80\xfa\xdd5I\xe7qz\x1d]\xed\xecP6\x8f't\x81\x1cW\xd0\xfam\x9b\xf2\x10\x0f \xa2,\xffL\xe6\xdcc\xb5x\x9d\xa3]\xac\xa9XlRIy\\\xd3g\xa7\x86\x00\xa8\xf4y@\xb5\xb7\xc1V\xa8\xe3r\xcb\xb7i\xd5fCB\xee\xe4N\x82\xab<\xbb-\x18\xf12sn\xc6\xc1d\xec\xf8@\xff8\n\x9c\x8b:\xfaW\x13\x0f\x8cA\xc9\xb1\x0f\xfb\x1e\x8f!\xcd\xbci\xb2:\xda\x8f\xda\xdb\xaa\xbe\xa6\xe7e\x88Z\xd9\xeb\xf6pP\xc8\xe2\xee\xeby\x04\xa3 N\x97$\x8f9L\xd8\xd5\xd36\x08\xb1\xa3\xf9\x90\xcc\xc9:'QX\x92c\xbc\xdeO\x0d\x0b\xd8V\x85'\x1c\xfa\xe8z%\xfa\xac\x99\xc6i\xec\xf1\x906\xed\x1aK4\x81h\xf2\xa6(\xde[\x1e\xfcfH\x0c0\xf7\xe1\x86\xf7i\x07\x0cw\xf8\xb1\xe5\xe5\xb5\x114\x03\x97\xaf\x85H\xb23X\xc8N\x1f\xaaW\xda\xf7D\xdcb\"\x0b~\x0dt:\x82\x12\xa6\xe5x\x9b\xcd\xd1\\l\xab\x94\n|\x16V\xd7m\xd7\xd3K(W\xb6\xc5\xfc\xf1\xe8\xf9x_\xbf1PZ\xb5~5X\xc6\xd7\xcb?\x87%\xc9\xdf\x86\xf9\xe7\xf6\x16\xd0'\xc2\x8a\xa2\xdd\x7f\xef\xff`a\x18\xdd\x19L\x0e\xe0\x18&\x07\xbb\x87{\x96UP\x86\x02\\k\xcbh\xd3\x18\xce \x86c\xbe\x16Q\xf3\"\xa2\xe4H\x04\xc7\xb0\xf0\xcd\x8d\xc8\x19\x15[\xef\xbd\x06\x94\x87\xc9\xcb0I\x98\xc0g\xe2\x0b4@\xe6?\xe6a\x9c\xca\x85\x0c\xe2i%\xeaw\x0c3\xa8esR\x94yv\xc7\x0b\xcd;\x92\xe0;\x9e\xe7fN\xa2l\xce\xbd\xablxJ\xa9C?N\xea\xdePB&R\xc1\x00kP-\xbb\xbf\x07\xa7*\x17\x87B\x98$spX@w\\\x9b*\x03\xb3R\x9d\xe2.\x8d\xb8\xb8\x04\x7f_\xe1U\xfe\x90g\x11)\n\xed\xe3,E_\xd1N:O<[\xdd\x94\x92\xfc\xdc41Moe\xd8h>\x9b\xe2\xc9\x99 \xfa.\x8d\xba\xeb1\xf7f\x1cxteG\x87\x94\\\xec\x9f\x95xJ}mE\x07\x0d\x85Q3\x07\xe2\xee\x91\x84\xa4\xbe\xf4\xb7\xe2\x86\xa5?\x0f\x88\x8a\x89g =\xba#G\x8aggGB\xee>\x1a\xe0\xbb\x0dNrc\x1fr\xcf\x97\xb0\x94\xfb\x8as\xe4~k\x1f\x98\xd0\x94 E\x85<\xb5\xe4\\=\xd3_\xd1\xc60f\xbfO\xc5\x1b\xcf\xf3!\x91T\xc5\x83\xf6\xf4R\x05\x8aL\x8en\xdae\"\x1f{\n>\xa4\xbbQ\x89\x9f\x1c\x9e\xa3\xe6@\xc2\x8b\xe8\xbc$V\x8aBN\"0!K*\xc1\xde\xb8\xac\xf7\xe6\x9d\xdc\xcad\xd0l\xae\xa4\xd9\x98&\x91B_\xf4\x03\xf1\x88\xb8\xc6\x1c\x07moc\xf4QA\x0ca\xda\x9b6q\xc4!\xf2\x9c\x969\x06(\xfc\xe0\x96\"\x86\xa5\xc26\xe6n\x03\xbb\x07\xcd\xf3\xd6:vb\xa4?\x0c\xd9\xb4\x04\xcd@t\xd0a\x16\x04\xd5\xdb\x87\xf2y\xa6\x8a\xa0\x98\xcf\xb6~5\xf1o\x84Lv\x82#\x069\x92ln\x89\x02\x02\\\xeao\xe2z\xcd\x98(k$\x05\xe6\nu|\xad\x90\x81\xcd\x82\xad\x1b\xda!\xc7\xa8\xae`&O\x98^\x0e\x95d\x05\x0b\xea\xc6\xa3^\xe0j\xf8\x10\xc2\xe8\xd4$L\xa3\x0f\xc69e\x88\x00\xcd\x7f\xfd\xfa\xf6\xb1\x1bSg4\xf3\xc1q(i\xc1\x10\x80z^F#\xac\xda\x81R\x18IB\xc9\x15\x8bP \xe3c\xcdd)\x8fg\x17\"0<\xc1\xce\xad\x0d\xcf\xb4\xcfz\x17\x05!d\xc4\x9d\xf2\x98\x9a\x8f\x0f\xa2e\x95Z\x18-\xf1\xa0\xb1P \xd29v\xd7M@\xc4\xeb\xe9\x16\xf0\xd0s_\xef\xd0\x04!\x93\xc2\xcd\xc11D\xf5\xa6E>e\xc0\x12\xed8\x98\x17\x8c\xde\xf9\x1a`z\x1b)\xa8\xe8S\xbb\x88\x0b@d?\x0d}2\x1e\x90@\x86\xf2\xado\x81$\xc3\xe0\xf0\x97n\xff(\xc1Abtx%\xab\xb10ld\x85\xfa\xb8\xd0d\xa2\xe1-\xd9O\xbe\x8c\x83\xc6un\x85\x9b%G\xa7\x0d\x0bc\x95Pj\xc0\x1b7A'\xc6SviU\x1aN\"\xda\xeb7\x8e\x05\xf2\xd3\xe7a\x182xe\x9d\x94\x80\xf1_\xbatM\xec\x10\x0d\xe46\xd59\xdd\xdf\x03Q$\x07\x14,Z\x88\x17N\xad T\xd2\x80\x99&{\x18+\\\xd59\xe7\xaa\x90;\x1a\xb8\xa4]\xa8W \xf6\x86\xe6fw\xc8\xd2j\xd3\xa4/\xd9\x94C\xeb\"5\x92EJ\xf2R0p\xad:\x8a\xd4A\xab;e\xe55\x16*\x85\x00I\xbb\x03,\x98\xc8\xec\xe2\x04\xca\x13\x8fN\xa3*\x96,4 \x12\x82t\xd9\xac;\xadyy\xb7\x81d\xaf\x18\xdf\xee\x96J\x1f\xee\xe6\xc4\xfc\xd7\x84\x9b\x93{-{\xac;l:\x8e\xc9\xe5J~0\xcc\xe9\"\xa8%\xae\x9b\x05|\x97U{\xf5\xd2\xbbv\xde\x10\x18\xc7\xe7hL7\x1b+\xc4E#\xf9\xe5\x96JZ\xc5f{)wC\xc2y\xe0\xf8\xe0\xfc\xf8\xea\xc3x<\xde\xb5\xa4F\x83\xf6\x05\xaf\x8b\xed.\xbb\xf8\xda\xb5\xb1\x08\xdc\x13n{\x9b\xff\x15,\xc3\xe2\x0d\xe7\xb7\xc0\xe6\xd3\xf8\x9a\x97IQ\xc7\xda__\xd0\x8bK\xef\xc6\xb0\xda\xbe\xe5,\xac|\xc3\xc8:\xdc\xef\xfa\xe5I\xb5#\xcc\\66-\x1b~\x93\xde\xf6\x15\xf0T\xcd\xdb-\xc9\x8a\xcc\x8f^\xf7a\xcb\x07\x84B\xf3^\xf1]\xedG*5^\xb6\x94\xf2>\xac$\x10\xb1\x8e\xd7\xa4\x0f:0 \x80\x8ah\x9a\x1c\x8a/\xc34\xcdJ\xa0\x0d\xf9\x18\xa7>\xe7\xeaM\x9d\x15\xd1zn\x8b$\xed\x1a:$\xebY\xe4Y\x03cn&\xbb*\xc6\x1e\x19\xdfa\x80\xe4X\xa6\xab\xea\x84\xfb>\xac\x9b\\\xce9nh./\xe8\xd2\x8e\xd2B$\x0d\xd6J*h\x91\xd9|\xf0\x91Zc>\x01\xdd\xfb\x13\x80\xe7\x10\xb4\\A6\x81T\n\x0eM\xa90\xca\x17\xb0\xf0\xd3\x02\x00Rj\x1b\xd1%sr\xd5$\xd3j\xeb[R\xf0}\xd1\xfa\x9d\xe7C\xcc\xe5\xeeg\xc3p\xb7\xa0\x06\xa4#\xc3\xb6>\\\x94$\x07\x92\xcem\xc1*L\xd4\x8d\x84\xa2\xf1\xb0\x98V \xefb\xca\xc3^\xeb\x9c\xb7\x9dK\x07I=c\nZ\"\x9e\xca\xa2H\x00\x89\xb8iH\xe53\xe6\xa9\xa8\x06\xe8\x7f\x1b\xde\xe1Ua\x0b\x81\xb5\x11\xf4\x14PfP\xa0\xb1\x80cM\xd6\xdf\x04\x05a= 9\xa4\xaa\xa3\\C\x9f\"\xd7i\x9a\xa5;\xac\xd9'\x1c\xd3 \x9f\x83\xc1\xbf\xb9A\xae\xb6\xee\x95\xba\xee9+\x89\x05\x1f\x1a[\xf7 f2S\xe6\xe6\xe7\xc6*\x01V\x19\xee~-\x0d\xb2\xed\x0f\xdaq\xf5*\xf1MM\xf7!\xf0R\xd7\xe8\x19\xd5A`\x8e\xdd\xdf\xdc)~}\xb1\xc7\x1e\xe9\xb4\x91<\x92\x9f\x87\xda\x08\xc3\xdeP\x8e\x06_U}A)\x11\x19K\x17\x9e\x99\x05T\x16\x8co\xbd\x03!J9Z|g\xde\x99Y\xaa\x16[\x8d\xac\x86\x91\xb4\xed\x02$ \xd73 \xaaf\xd0\xfc\x1d3\xdd\xd7d_c\xcb\xba\xa0\x05Q-\x18\xc4\xeb\xc1\x04\x0c}\xe7&b#k\xb3\xb5\x1d\xfa\n\x0b\x17\xdc}\xd8\xf0\xc6\x1d\x83A\xf3.?B\xacp\x0cq\x8f\xaa\x8c\"\x1cc\x1c~\xf9\x11\x92\x07c\xee\x05\xf9\xa17\x9d9;\xdb\x8f&\x0b\xd2\x1f Q\x8ey\x19\x8e\x8dL\xbe\xb1\xaeU\xc83:\x85\x89\xf9\xf02I\x8f,) \x1b\xf8\xd1 \x9e\x8b.\x88\x152\xce\x0f/\xb0/\x85\x82\x836 CO\xd5 \xe2I#\xdc\xd9i\x1c\x8d\xba\xda\xae\xd2!\xad+<\x9b\xda\x8bA\xa7!4a\x0c\xc8\xb3\x1f;;\xbe\xa4\x15\xa5\xe4\xab\xa4/\x93\xa4\x1e\xf8\xcb\xa8=k\x0bL\x98\xf6\x8c\x93\xc4\x9dD`A\xca\x1f[\x1a\xf3nZ)\xb6\xa5A\x14\xa4V\x19\x94\xd9O\xd9-\xc9_\x86\x05\xf3\xb0\xd8rg\xce\x92|\xa1\xdc\x11\xd7\xbb\xd3\x7fw\xf0\x8f\xb0\x88\xe2\x98\xfeq\x15\xa7a~\x87\x7f\x85\x059\xd8\xc3ZQ1\xe5\xff\xeeL\xf9g\x93\x83\x84\x88\x16\xc4\xdfyx+\x19\x19\xb9,\xd3\xa2\xa7\x8d\x03\xad\x8cp0\xb59\xe2\x90\xbbm\x8d[\xc1,\xae\x9bt5\x12{@ \xccM\x98 )\x10\xf7\xf6\xb6\x1c\x98\x8e\xb1\xb8\xb5\x8eZ\xc8\xbcr\x19\xde\xe4\x8d \x8bP\x1e3\x10\x8774\x17\xb2Y\xcan)@g\xc8J\x01\"\xe2\xc6>h\\\x0b7\xfdZX]\xb7y&\xd3\xb2)\xd3\x04fiDj\xa1[\x07\xe9F\x1a\x93\xa3\xb1/\x99f\xb5E\xd4 !\x95\xbc\xc5\xa8\x0c\xbc\x82\xb5\xe9\x92\xf1\xdamt\xad\xe4\xdd2\xa8\xb6k\x0bt\x1d\xa0\xf0\x01\xb4\xe7\xd6\xbe\xe6\x852\x1e+\x9fk\xe9\xde\xed\xec\x9f\x9e\xe1~1\x89z\xd3\x1a%\xf7\x8d\xf8[\xbb\xa6U*\xd7\xa9\x7fi\xb5\x9a:\xbd\xfc.\x93\x94\xa4s\xd7\xf3\x81\xb4\"8\xfd\xa1\x19\xa9\x9a\x9b\x11\xb3\xe8\x1f\x8d=\x8a\x0e\xdf\xacVd\x1e\x87%\xd9$\xb5~\x7f\x0e6\xfb\xbe\xf0\x03\xd2\x1b=\xe2\x9b\x0c#u\xf7\x0e\xf7<\xd7\x833\xee\xbf\x8c\xc9\x13\xd1\xb0\xf5p\xff+\xa6z\xd3\x84o>2\x87R\x99\x9a\xd3\xc2\xed\xea\xc1\xc3*\x83k5G\xec\xedPC\xfc\x1275\xb5h\xee\xca\x07\x850\x8a\x0c\xaf\n\xf5M\xf4Uy\x02n\xea\x90\x0d\x0b\x1f4k\xf4\xb8\x95=\xa5\xb2\xf8V\xaa\xdf\xa1B \xc5\x00\xb6\xcc\x1b\xd8k\xfc\\\x17Z\x84\x05\x86#h)\x0bo\xb1\x10Y\n\x16\xf0\xfc\x14\xb3\x14D\xee\x82\xa7\xfc^\xc6\x8d\x93\xd3\x0eDn\xe1.<\xef\x04X\xe4-\x18\x8d\x0c\xea(\xb4\xf3\x91\xa5\xac<\xccP\xc2Q\xe3\x8c\\\xf8\x90\xbb\x89\x94\x02E\xc3\x8f\xbc\xb47\xd3\xfc\xa0\x93\xa6xH\xb4\xb0\x91\x10Tj\x03\x18F\xd4\x9aDo\x96\x14\x8fHa\n\xc2\xc4\xeeA\n\x12]\xa5\xbcx`R\x82\xeeA5\x07\x8b\xd6\xad\xf3\x8b\xb0P\xcc\x9f\xc8\x97\xf2]6'\xaec\xcb\x99\x92ah\x01\xdbx\xb4\xb0\xb8]\x029\x0b\xfb\xcd\x1d\x858\x82g\xcau\x16#\x9bX\xf1w\xb7u\xa1\x90.\xb1!v0\xfdp\xaai\xe5\xc4c\x96\xa8\xa0\xcb\x9aJNY\xe4\xb8i\xe3\xc3\x08u\xfa?V\x1f1x\xe9Zf\x86\x176\x0e\xe6a\x19b\x98\xc2S\x18\x8d2\xf8W\x982s\x07l-(\x96\xf1\xa2t1\x04\x05\x17\xbf\x08\xafkN\xe1\x95\x06m\xd5\x83\x17dW\x05\xc9o\xd0R\xca\xbcx\xd12\xcc\xc3\xa8$\xf9\x8fa\x19\xb6\x82\xfe\xb3V,\x16\xeb\xbd\xf4\x02}X\x9a\x17\x0cai&X\x99\x94{F|(/P\xec\xc0\x15\x94\xa8\xbde\x04\xb0iq\x86\x88\xc5\x1e|3\x1c\xb6^\xe3v\xe4$$p\xec\xaa\xb0&\xc1\xb4\xe4\xf6f\xf6B\xe9\xe8D\xdcO\xdaM\x9d.\xa8C\x8cj\x1c\xca\xdb\xaa\xc4\x84|\xef\xd9\x8e7~\xb1\xb1\xdbze\xbf\x95\xc6\xa6\xffL\xae\xfe#.;:\xb0Th\x1f%\x1bH1\xdf\xa8\xde\xe0\xbb\x80\x8c_\xee\xea\xa2\n\x00\x16\xb8\xd5\xd8lA\xcaO\xf1\x8ad\x15J;\x0c\xdb!U\x182\x80\xa6\xba\xcb\x0e\xfb\xd8<\x98\x96T\xeeA\xba\xb2\x83\xe8\xcaoBeY3h\x9a\xb2f\xaay1\xa7l\\\xfb\xd3}\xfe\xef\xc1\xc6y1;F'\xd2S\x1e\x9a\x92\x8d\xa1\x86\x8f\xa7'P\xc3\x0e\xe7\xdda\x87\xd5X\xe9\x96|WV\xc8 \x84t\xed\x0e\x92,\xc2\xc3~\xdcJaF\x9fe\\\x94Y~g~\x99\xadI\xaa\xb2\x7f\x86J\x98\xf2\xab\xb7\xd6\xeb8\xd1+\xd9\xe6\x0b\xe2\x86K\xf1\x82\x9b3\x7f\x8b\xc9\xcal\x89\xfa\xccV\x1cta\xd8wmxr\xc3\x1dFm\xda\xb8\xb4C\xc5\x9b\xd7\xf1\xde\x0c\x82P\xab=Im\x08\x13\xf3\xb0Ih\x15$\x82B\xbb3\x87\xae\x95\xe3\x83\xf3C\x92]\xd1\x7f_g\xf9\x8a\"=\xe7\xc2;\x01\x16\x16\x13\x13\xf3U\x08\xc0]\xcf\x0b\xe6YJ\x90\xc4E\x8dE\x07\x92\x13z\x97\x98\xe5\x10\xb4\x93\x1f!\xc4)_3\xc693;QV2\x0b/\x86`5,\x91\x0d>\xec\x0b\x93;\x8c\xee\xe0P`\xe0\xd0k\xcb\x0b]=\xc9@\xaf;\xbb$\x1eW\xcf\\\x9f\xb8@h\xd6\xe7>\xdc\xf8p\xe7\xc3\xb5\xde|\x81y\x0f}\x98\x1b\xdc\x92W>\\\xfap\xe5\xc3m/\xbb\x08\x82\x83Z\x83\x08\xb6\xfa\xa2\xc6\x05/\x8c\xf1 \xe8#\xc2\x15v2\x00\x18\xef\x8fe\xec1\x87\xe0k*1C\x8a\x8ej\xd0\xacf/\xfbi\xf8\x86R8i\xad\xdd\xea\xfc\xca\xe2\xfce,\xdddD\xc3Gb\x00vmt\xf9\x05\xbd\xa5G\xe0\xc0\x1bq\xa0\xdb\x95\xce\xe1\xb4^[\n&n\xdaU^Y\xd0\xf1\x0bT\xca5\x82\xedV\x85\xf7p\n/f fNz1s\xfe\xed\xdf\xea\x8b\x85E\xe8\xfc\xf1bvcH\x1a\xfd+\x05\x86L\xdfxc\xe00?S\"\x00\xce\xe0\x1c\xce\xe0\xd6uHZ\xe61)\x10\xa2\xfd\n\xf6\xd4uoX2\xb7<\xbc\xc3\xa9\"\xa2z\x11\xf0\xafio\xef\xdb\x14\xd1\x1bD\xc5W\xf4\x96\xb8o\x18\x19\x8e\"\x0e\xcf\xf3P\xea\xae\x8b\ni\xf5+\xa6>G\xcfj\xf7\xca\x87/>%\x11(\xba\xa5<\x85\x89\xed\xb8\xe2\xabT\xd1\xea\x89\x0fK\xcf\xf3\xe1\x9c\xb6\xf0\x1e\xe1\x8c\xd8 \xec1H\xc3\x15\x93\xad\xbf\xe2x\xfc\xd7\x81P\xe6\xbd\xd5\x9f\xcb\xe3n\xf1[L\xf7\x8bW}\xeb\x15\xdb 1\xb4\x178\xb4_=\x1f\xc2\x19\xa1\x94\xc9\xaf\xf4\xaf/\xf4\xaf\xa5\x0f7f\x11\xdf\xcaj4\xc1\xe6t\x8c\x9bHw\xed\xd6\x15\xd3\xb4\xc8\x14(\x988\x86\xbb\xa6\xba)\xd3\x97x\xf8\xae\x1e\x83A\xb1\xe8\x9bl3A\x90\x89\x97\x14\xc2\xad<\xc0\x7f_\xd0\xa9gt\xea\x97>\xacf\x97\xa6\xf0\xa2,|\x91\x1b\x07\x1f`\x04q\xf0\x1a\xbe\x07wM\xbf{\xe5!\xfc]\x99c\x11\xad\xea\xc2A8\xf7FJH9\xb5\xd0\x0f]\xdfC\x1d\xa7\xa7\xd4\xd2\xe4\xda\x08{\x01\xc1\x8d\xba\xb9\xae\x08\xb3:\xcc\xeb4\xd2\x12}7,\xae\x05\xe4\xb5\x17\xbe+ mk\x0c\x1d\xd6\x81`\x1c\x06\xfd`\xa3\x91X\xe2\xd6\x9aF\xd2\xe30n\x1c\x8c\xd5\x1f\xb9+\xce\xca\x10\xf4S\xf7\xc64\x08DV\x1fX\x9a\x1etb\xe5\x93\xb9\x95\xba\x93}\x16\xa54u\xa7G\x9e]B\xccG\xf3\x14\xb6N-\xcaT\x91\xda{\x1e\xdf8\x9e\x0fN\xf8\xf5j\xd4\xa7m \xa1\xce\xdc\x0b\xc2f\xf2\x1b\x92\xfbS35|\xf4?3\xdd\xa2\xaa\xf6\x9bn\x9a\x19\xa8\x95s\x98\xab\xf1\xcc\xf9A\xa6\x93}\xcf\xdd\xd2)uc&\xf9\xbeu\xb1\xc7\xfa\x0cyB\xc76\")\xda @\x813\x163\x8d\xec\xe5\x9a\xb58\x85\xd0\x83\x94\x1e\xde\x8a\xed_\x88K\xb1\xbd\x0d\x11\x13^\xeb\xc1\x0d\xb8\xf3\"i\xc2\xe7\x16'\x1e\xff\x8e\x12p\xb3b4b\xf1}\xdd\xff\xca\xdc\x08[\xbb\xbfoZ3#\x97h\xb3M\xed\xdd\x9f}s\xaa\xe8\xcel\xfe\x95A\x93\xda\xc5\xf7\x06\xd7\xa4\x94\xb2d\xabV\"\x96c]\x8a\xbd\xe3y+\x91\xc5\x9de\x176\xf9\xae\x9ae\x8b\xf33\x8dW\x85\xf2\xf6L\xfd-\xd1x\xc7\xeag\x9c!?\x83J\x97\xe4n\xb8\xf8\x87\xe6\xc5o%\xe4no\xc5?s\x14\xd7\x03\xee\xcbu\xf8?;G\xb1\xf5\xec\x98\x12/\xfd\xcf\xcd\xa5\xdf\xb9\xcd\xbc\xb7\xf6.+\x16\x8b\xee\x04\xb6\xc1\x04\xd5\xb5<\xb6\xee\xd4RO\xd8,\xd1:{\x96:\xe6\x8c\xb7\x9b\xeda\x9f4m\xb2{\xd0N@\xbf\xfb\xf4\x9f \xe8\xa5\xe7\x7f@\x02\xfa}sR\xc4\x01\x19q-\xe7\xbf\xae`\xb3\x9f\xa4}\xf3@\xe6\xcd\xbe\xc7\x14.\x99y\xe6\x82g\x016\xbf\xa5TOhu\x14\xe1c*DJ\x9c\x82ns\x84 \xd6x6s\x8e\x03\x8e\xc1\xc5\x08\xdb\x98D\xf1e6'/J\xb7\xf0\xe4\xee\x9d\xe7\xc3\xdd\x1f\xa4\xa2e\xe7t\xa5\xdd\x91?r\xf8\x15\xc0!\xa4\xee\xde\xc4s\x13\x0f-i\xbb\x1aK\x1a\xd7\xcb\n\x83\xf4\xfa0\x91\xcc\xae\x1f(eI\xf7\xe1&H\xb3\xdb\xde\xd6\xb0\x96\xb5\xa19\x86\xce\x16\x06\x99\x94\xa2\x9c{\x01\x05zS\x1fb\xfcc\x12d\xe9\x8a]68\xa5\xd4\x07\xc6\xcap\xb3`\x9d\x15%\xbf\x85\x08h&\x18\x81i\x11\x84\xf39&\x1a\x94Se\x197Cj\x00\xc9\xbcE\x10\xafh\x8f\xe7Q\x1e\xaf\xcb\x82\x8e\xac{j\x0by\x0c\xdc\xa1\xdc\x07\xe7{)\xac\x17\x85\x94\xad\x11\xb9\x0e\x9f\x90\x83\xe4\xd4\x16\x1b9\xed\xcb\xc9\xd2\x9c\x84\xf3\xbb\xa2\x0cK\x12-\xc3\xf4\x9a [\x1d\xb9N\x81\xa3r\xbcNK\xf5\"\x08\xd7k\x92\xce_.\xe3d\xeeJ_yA\xbb\xe5\xbe3,\x123\xb1\xc6J\x16MY\xdcS\xab2\xb9\xd3\x94Q\xb2\xa0oN\x84bG\x8f\x99>%\xc4\xd7\xfa\xfe\x18\xd6\x1af\xa0\xb0\xfa\x18\x9a\xecC\x9b\xd1)\xf6\xc1\x9a\x95\x0fVy5},\xce\xf5\xf4\xb996{\xee\xa8\xeb\xd8i\xd7\xda\xdb\xb5\xc5\x04\x9bv\xdd\xd7q\xcf\xeamJ\xe9\xb4\x0c29\xa53\x1ed\xed\xa2O\xbe1u\x89]\xe6YH\x14\xe5\x1e\xea\x9bl\x9e\x857<\xb6U\x16,ZQ\xc4\x05!\x8c9\xc5sRd\xc9\x0d\xf10\x9c-F\xb1[\xc5\x05y\xec\xc2\xb4V\x80-\xcc\x9e\x9d\x04\\\xd1\xad\xef'\x00M\xd4\x9f\xd9\x99\xb2\x0en&9\x963O+N\xdemmQ\x02\xcf\xf9H\xae_}Y#h\x8c\x15\x0f\x9bAS\xb6\xdf\xd6\xda5#u\xa7\x87:A\xd7\xb8v(\xf2\xffA]\xca\x12V\xe3*\xeb\x9dq\x03\x84\xa3\xde\xc5\xb5Q\xd7\x88\xa1\x02\xae\x1b\xc6\xa46\x1eW\x8f\xb12J\x16\xb5\xaeX\x85\x84\x9d\xba5\x15\xcf\xfb\xcb\xb2A\xb9yp\x0e#\xc8\x91Y\xce\xba\xf5\xbc\xf4\x90(\x85\x98\xbf\x9dk*}9|\xd4\xa054\xcb\xae\x89\xecr#\xc2\xb5\xf3}\xec[(\x14\x8e\xba\x8a2\x9d\xd8B\xa9\xf0\x80\x84\x14\x97@\x08Q\x12\x16\x05\x84\x85\xe2%\xfb\xbbLG\x93\xd2\x0bO\xa4\xc9\xbe\xe9\xc4|{W$\xe3Z\xb6\xc8\n\xfe\x02J\xab^\xbc&oS\x96\x1a<\xc5\x18]\\\x9d\x03\xe9h\xd4E\xe8\xe7h\x89\x92Z\x08\xfd\"\xd2\x84\xac\xa0s\x01\x0f\xad\xaeB\xf6\x89\xe4\x95\xbd\x95\x07\x0b\xce\x97\xb1\x80J\xe5\x8c\\l\xb8_\x8f\x03%8WJY\x1d\xea\x1a\xdf\x98\xbf\xda\x1dO\xf5W\x19\x7fE\xe1\x8f\x9c\x86\xb0F|\x86\xdc\xa4\xb5\x89 \x0b\xd4,\x83\xa5\xb2\x1b,iA5\xfe\xd0\xfek#\xf8d\xb9\xea\";\xc1\x163\xc27\x12=\xe7\x14:\x01\xf9\xb2\xceIQ`\xd6\xa4\xaa(\x81\xc4\xe5\x92\xe4p\xc5c\xccf\xb9D\x05\xb1`\xcd\x0e\x8c6\x86J\x1a\xb8\x935s\xccc6\x96\xaa3\x8eJ\xc2\x8d\xed\xe5\x94\xd8-\xd3jC\xa7\xf5\x0d\x0c\x08@\x07\xaa\x91\x96\x85\x95\xd5\xcc\xbd\x0c1,\xd4\xdd\xc6\xfb\xc8\xa8\x11\xb1\xc7g8\xfd\\\xa1CD\xb2\xa1K\\\x83\xcbKJ!}\x93\xfb\xa3\x1aX\xef\x8e\xbfM\xfc\xa4\x03\x93}`\xea\xee\x99\xedz'-\xc5\x12zMS\xe09f\xe1\x07\x0e&\x9eb\x906e\xe5\xbb\xe3\x03\xe3\xf5\x0cMc\x06a\x97\xb6\xce\xb3u\xd1\x845\xa4\x98\xaa\xe4\x01HyIN\x16\x05K\x0d\xc5B\xcc\xad\xe7a\x89\xf9\x0f0Nr&\xad{\xbb\xef\xe2\xef\xd8w\xa4\xba\xdd\x87r\xf4\xa9\xe2# \xa3\xf2e\xb6Zg)\xc1\xbc7\xbf=\xf8J\x95\x82\x94\"EY'\x90\x91\x88\x11%n\xa69\xf4\x90\x04x\xd8\x8f\xdcu\x0e\xf7\xeb\xec\xef|~\x01I\xffZ\x91\x8a\x9c\xf31\xd4V\x15\xbe\x94\x87^\xab\xfb\x92\x87\xa2\x15\x11\x9d|p\xc4\x14T\x01\xa7<\xc9E\x96G\xe4gl\xa8[\xb6f\xe8\xf0u\xf3\xad\x906\x96\x03\x07W\xfa\xe0H]\xab\xe3\x8b\x14\xd8\x17\xcap\xaeP^Qp\x1d)\x85\xaa\x94 \n\x1fb\xb7\x90\x1b\x90Z\xf3\xd4/\xe3\xe2C\x95\x93\xd6\xa9\xe0 D,\x8cB]\xf3\x18B\xf5\xca\xd2\xc6\xa4\xb7\xc5\xb7\x00N\xa9{ ;\xaf\x0b\xf8\xa2\xe1\xbc\xe2mV\xa5%\x99\xf7\xc5\x0d\x14\x14\xb5fc\xa9NC\xdb\xbe6ae\xae/\x1d\x0dm\x18\xe6\xfa\x1f\xc9: #\x16\xa0ph\x1f\xe2n\x18\xea7\x8bm\x86\xec\xf9\xe3\xf7@,\xba\x1c\xac\xfe\x1b7\xfd\xdb\xb7\x1f\xb5\xfd\x04GU\x9e\xe3 \xdd\xdcu\xa2{\x16\xc3\xb2\x9a,\x98#H\xf3\xcburz\x05\x03\xc2\xd4\xf8\x0e\xfa\xdb\x1c\x8c'\xe3\xdd\xdfuQ\x9c\xf3W/?\xbe\xfat\xf9\xe3\xfb\xcbw\xef?]~xq~~\xf9\xe9\xdf\xdf\x9c_\xbe\xffx\xf9\x97\xf7?_\xfe\xf9\xcdO?]\xfe\xf0\xea\xf2\xf5\x9b\x8f\xaf~t\x86\xf4\xa9Q\x12\xd3\x897L*\xd1\x17!\xafu\x97\xcd~z\x14\xfc7T\xb7\xd1I\x8f\xd3\x7f\xba17\xa6\xbb\xba&\x14\n\xae\xb2\xf4\xd5\x97\x92\xa4\x94\xf8-0\xca\xf85)\xb5\x12RD\xe1\x9a\xfcH\xc8\xfa\xa78\xfd\xfc!\xc4\xa4\xcb\x84;\xbb\xb5\x8a\x8be\x98$\xd9\xed\xab\xbfVa\xf2\x1f\xe4\xae\xe0i\x05\xe3d.\x82\xbe\xb0jY^\xb2\xccz$\xb8*3^H\xf28L\xe2\xbf\x91s\x12\xe6\x11ko\x1d\xe6\x85\xfc\xfb\x9a\x94\xe7\xe1j\x9d\x90\xf3hIV\xec;L\xd1\x10\x96\xe4C\x98\x87+\xad\xa4,I\x9e*eo\xe3\xf4'\x91;Z*\x0d\xbf\x18J\xffX\xc5s\xa5\xe0\xc7\xb0$\x9f\xe2\x15Q\n\x99%\x8cR\xf4C\x96%$T;~\x1d'\xeawo\xd2\x92\\#\xad\xd3\x94\xbd\xabVWZ\xd1\xdb8\x8dW\xd5J\x1fn]Fi\xac\x97K\x12}\xe6\xdf\xad\xc8*\x8b\xff\xc6\xba\x8a\x8b7\xabU%\x84~\xa6\xd0>\xe2:_Q\xd6p\xfa\xd4d\xbd\x1e\xd7\xaf\x8fL\xaf3\xfe\xfap\xcf\xf4\xb6\x12\x1f\xef\xee\x9a^\x87\xf5kc\xd7\x05\x7f\xcd9S\xf9\x15\x9d\xdc\xff=\x7f\xff\x8e\xeb\x00\xfa\xec\x19\xec\x9eK\xc2*\x816\xc6\xce\x9b1\xb9-p~\x93\x85\xa4kb\x97\x0d\x11P\x15*+X+\xc6Z\x9d\xf4\xa4\x93\xb2\xa1\xf4:\xedD\xbc\xb8\xeb] \xde\xc8+\x17C\xd6|qy\xe4\x9a2\xfb\xbf\xe7.\xb2]\xaa\xdfj\xdd\xc3\xff\xcf\xde\x9fw\xb7\x8d#\x0f\xa3\xf0\xff\xcf\xa7(\xeb\xc9/C\xb6i\xc5r\x96N\x9c(\x9et\xe2\xa4\xdd\xd9z\xb2\xf42\x8a\xc6\x87\x96 \x8b\x1d\x89TH\xd0\xb62\xf2\xfb\xd9\xdf\x83\x02@\x82$\x00\x82\x8e\xbbg~\xf7^\x9e\xd3\x1d\x8b\x0b\x96B\xa1P{\x85i\x1a\xae;t@E\xb3\xe8\xd8\xaa\xfe\x8d\xbd\xbc\xf70@v4nv4K\x93\xe5O\xef\xdf\xa6S\x92\x125\xef7PO\xab|g\xabr\xe1\x11c*S(VN\xb1\x84,\xe5\x92\xf4\xd9\xbe\xb4}Z\xc0\x8b\x94\x19x\xa3\x8c\xcf\x04oM\x8a\xa6\xde\x93/\x1e\xf1\xfb\xcbp\xe5Q\xccd\x1fe\x14g[\xbe\"\xa6\xf5:\\\x95oB#\xc6 +;D\xf1\xf4C\xe2$\xa2\x80b\x16\xab\x1b\xb8\xa0jV\x0d\x159\xdb\xef\xcf\xa2\x05%J<\xa3\xb1 \x91hA\xefD\xa3\x8d\xf9\xf3\xd9i\x7f\x18N\xe6e\xeb\xc6\x1c\x01\xd2*0J\xc7h\x0dM\xc78{O\xe4^\xd7X#\x9a%\xfe\x18\xc8\xe2$]\xe2 \xc2qn\x08\xef\x03\xa4\x13\xcfcW\xa4m\xc9\xe8\\\xf4\x14e\x05\xdd9\x14}\xe4X\xfd\xf8\x9a{\x91\x13qj\xb6\x8a\x9bu\x97\x10A%^\x87+\x17t2\xa2LJ\xa6\xf9D)\xf2g\xcb\xfdP]W\xe2\xb1\x95\xe5\xa6\x9df&\xd8\xcb\xa0\x12\xd1\x08\xca\x90\xdfa\x97\x7f\xd9\xa8\xcfD=\xabr\xbc\x06\xcb\x9cP\xf7Z\x0f\x84\xa8\xed@\x88D\xa5\xa7\xdd\x00\xf2\xf2n\x1c@\xd4 L\xd9:\xa3d\xf9a\x9e\xc7\x9f_G\xd3\xe9\x82\x9c\x87\xa9]\xe4\x07\x9d\xe5\xce\x04\x13\xd2\x9fJ\xf7I\xc1\x85\xe9K*@\x97Fu/7\xf4H\x86\x0f\x8cyKc\x8fz\xe8\xbfE\x9c$\x8b\xe9\xc3\x1e/_\x8f\xff\xa9\xaf\xe2\xbd\xf1h\x05\x07\xb8v\xb7\xe1\x00\xf6`\x1f!|\x0f\x0e\xe0\x8e\xf8\x9b\xdd\xbf\x0d\xfb\xb0}\xeb_^\xe8\x9dd4\x0d't\xb3\x88\xc2l\x13O7\xd2y{\xc3\xf6\xec&\xf3\x96\x9b\x8c\xa4\xd4?\xd8\xe44\xf17'^\x98\x91\x0d9\x8d\xe2M\x92,<\x12\xc6\xfe\xc1&%\xe1\xe7\xcd\x9a\x12\x7f3\xc1\xc7\xec\xc0\xd9\xcc\xc3t\x83\xf2\xedt\xb3\x08\xb3l\xb3Hb\xb2I\x96\xab\xc5&\x893\xbaIb\x1a\xc59\xf17S\xe2\x9d\xe4\xa7\xa7$\xddL\xa2e\xb8\xd8L\x16aJ63\x8f\xed\xf1\x0dI\xfd\x83M\x14Gt\xb3\xf0\xc8iH\xc9\x86P\xe2\x1f\xf8\x9bi\xb2\x99&\xf9\xc9\x82l\x887\x99'\x9bEv\x10\xcd6\x8b\x8cx\xd1\xcc?`\xf3\x88\xb3<%\x9b8_n\xceHL7\x17\xde\x84\xac\xe8\x86L6+\x0fS4o\x92\x94\xfa\x1bJ\xbcx\x9amPs\xb2Ic\xdf\xf7Y\xd7\x8b\x05\x9d\xa7I~:\xdf\x84\x8b\x8cl\xb0l\xf9b\xcd\x86r\xc1\xa6\x93\x84\xeck\x8f\x84\x939\x9b}D\x18\xd8\x92\xe5&\x8f'\x1e\xdb\xbdl\x80\xa7\x8b\xe4$\\lN\x13\x9alN\xf30\x9dn\"o\xb6Y\xae<\x8e\x03\xd9F\x19D\xecEt3Y\xe4S\xe2\x1d'\xf1\x84\xf8\x07\x9bE\xc4\xa0\x95\xd3\x8d\x14}6\xd4#\xe9,\x9c\x90\x0dI\xe3p\xe1\x1f\xf8\x07\x9b\xcc\xdf,\xbcpy2\x0d7\x84n\x92\xc9\xe7M\x12\x9f\xfa\x9b\xa5\x17M\xd2\x04I\xe0\x06\xf5L\x1b\xaeK\xf07o\xc27\x9b\xd8\x0b\x97$[\xb1\x96B\x1a\x9d\x91\x0d\xb9\xa0\x1br\xbe\x89\x16\x9b\x84n\xf2\xc5\xc2\xdf$\x1e\xb2E\x9b\x15\x8f\xaf\xdc\xa4\x9b\x9cn\xceH\x9aFS\xe2oV^8\xf9\x1c\x9e\x92M\x98\x86\xcbl\x93Fgl]\xd2\x84\x92 %\x0c\x104\x99$\x8bM~\xb2\x88&\xfe&\xf5\xc2\x88a\x8c\x17N\x93x\xb1f\x0b7\xdb\x9cF\x19%\xe9fEB\xba\xf9\x92Gi9\xefl\x92\x93\x0d\xd7\xb3mh\xba\xde0\xaa\xe8\xfb\x9b\xcc;Y\xb3\xc5\x0f\x17d\xba!\x8b\xd9f\x9e\xa4t\x13\x9d\xc6d\xba\x89\xbe\"xB\x1aM6\xa8\xd3\xd9\xa0\xa9a\x93\x9fp\x97\x84M\xbe\"\xe9f\x1dO\xe6i\x12G_\xc9t\x83\xb1\xc4>\x83\xe8r\xb5`\x83\x9f\x93x3\x8f\xb2\xcd\xf7|L\xd1\xce\x06\x87\x11^\xf3z\x8a\xf6\xcc)E\xfb\x14\xab\xfc\xa2AB\xefGR\xbc\xdc\xf4\x86\x99\x06Pw\x06\xae_X\x8b\x8c1\xa6\xd6\xb7N\xf1\xadA\xcb[K\xc6\xd3z\xa7\x01\xc4\"\x83\xc9\x00K\xede\x84za\x00k[\x81\xe2&*H\xa1c\xc9\x84\x8e\\: .1\x19\n\x0fq[\xea\xb9A\x0d\xb1hMU\xdb(\x9a([0\x11\xa7\xc2\x9b\x8d{\x87\x95\x84\xbe$U\xa3\x81\x86\xb8H%\\\xa3\x08J\x80\xf6\xb5l\x12.\x9e\x86\x19\x1b\xd6\x93\xea\x9d\xe7b\x90\xad\xa0\x91\xeaG\x8f\xf6Sn\xe8\xf7n}\xea\x8f\xfe\xd5\xbf5\xfe\xee\xc6-&J4K\x7f\x92~\x16\xc6\x11\x8d\xbe\x92\x8f\xe9\xa2\xb5\x87H\xad_\xabz\xdb0a\xadW\x8b7\xd2\xc9\xd6\x8abp\xa6\xf6\xeck\x8f\xe0SB\x9fL\x18\x97\xcf\xb0%M\x16\x8b(>}G\xb2U\x12g\xed\xd0\xa8\x9dd\xa5\xc2\xbf\x1fe\x8a\xf6_Q\x87\xb0\xa51i\x0c\xaa\xc7\x9e\xfe\xcdR\xbf4\x8b\xe2\xa9\xd7\xaa\xac\x91Wq\xc2e4Li\xf6kD\xe7^o\xafW\xe8#U\x15*\x83\x89\xd7\x9b\xf0\xdd\xc3\xad\xf6\xff\xbe\xf4K,lz\xfe\x01\x98+X\x15\xaa\x1d\xaf'\xba\xe8\x89\xc4\x9b\x1a;\x89\xa1\x8d\x14\x9d\xe64\xe3\xd27\xe2\x17\xca7a\xea*\xb3\xa4\xc5\"O\xa2Y+\xc7\x9aM\x9bx2%d\xb5X\xbf\xa7i\xb4zI\xd65~\xcd\x927\xecZX\xaab\x99[\x94\x81:\xa7L=\xb6ut\xbb\xafZ51\x99N]K\xb7\xd9\xa8\xe4\x8f\xf1q\xb1\xcd\xd4&5\xef5e\xf8\xbf\x19\xb05d\xb1\x86\xa3\x91\xc6\xe4dVh\xe3\x98b\xee\xa1\x17a=D\xd4*\x8a\xc8mv\x87 5<\xa1\x0c\x15o\xe8\xd3V_\x9aU\x90\x91\x86\xec!\x15s\xb1\xa3F\x86\xa2\xdd\xa6\x94\xe2\x80^)\x0c\xb9A-\xeb\xcdp\xddp\xa6\x18\xad\x16\xb4m\xc1)\xb7Z\x94\xd5\x8dMn\xf5P%\xbeU7_n\xdf\xd3T\x94+\x98\x9d6\x83d\x91o\xb1\xd9\x84iM\x18L\xc4g\x1a\xd2\x1f\xa3\x03\xc6\x87\xa4p\xeapX#\xfe\x8da\x8d\x94\xde\x8chR3\xfdU\xdfc\x9bb\"\xfd \xee5\xfc\xfa\xa1\xc8\xbaq\xfbN=<\x05D\xee\x0d\xf4\xb0\xb83\xd0}\xba\x92-\x7f\xbf\xab{\xaa\x0f\x89\xaf\x16_e\x0f\xcf*\x07\x89\n-\xa3\x05\x19\xb3\x16\xf4\xa3\x18\xf5\xe3\x99\x17\x97\x0c\xb8N\xb7\x02\xaa'\x809:\xd7m\xa3\xc1\x01(\"A\x84A\x13\x11\x16Z5\xf2\\.hm\x8d\x95t\xf1<\xc0C\x9c\xe2\xa7Q\x93\x18p\xfe\xad\x9f%K\xd5s\xa2\x8d\xddd\xbd\xac\x95a\x8eb\xc6[\x8db\x8d\xdd\xeb\xb2\xbe%\x9a'\xdf[\x83\xdfc\xeb\xfe\x80\"\x10\xf01\x94\x02T\xef\x97p\x91\x13\x1e\xe8uB`A\xb2\x0c\xe8<\x8cA\xb4\xdck\x8e\xb1\xb9;\xfe0\xf8gv\x18\xd3#\xf3\x98NQ\xe5\x9e\x8aa\xf1\xc6\x9d\x86\xf5Y\xefI\xda~Z\xa0\xa4y\xeb_;\x07\x9f\xa6\xdb\xde\xa7>\xfb\xc7?\x90\xb6\x01EN\xad\x0d4\x04\xc1\xf8\xb8\x0c\xee\xc8\xe0\xfa\xdamt\x0e\x83\x8a!\xe2\x8d;\x0d\xeb\xb5\xceE\xd7mLx*\xd5\xf2+\xd4\xbc\n\xcd\x90\x9bE\x0b\xe24\xc0\x0f\x06\xbfb\xb71\xf6h\x9a\x13N\x1aD\xccR\xb8\xc8\xd4\x1b[\xbb\xca\xdf\x03\xc9\xca\x9bF}\xc2\xbbw\x1a\xf8S\xbd\x8f\xb4\xdb\xb8\xf9`5\n\x1f\xf3\xd8\xc4\xcb.C\xfb\xd9\xe4\xd3\xed68^\xb1\x9f}V\xb8\x0b[VZ6\xef4\xb2w:\xf7s\xb7QIqO\n\x1b}\x9a\xbcJ\xceI\xfa4\xcc\x88\xe7\x07\xb0u\xeb_\xa3\x7f{\xe3\x83\xd1\xee\xce\x83pg6\xfe\xf7\xfd\xcb\x9d\xe2\xef;\x0e\x7f\x0f\xf6.G\xfe\xe5\xd8\x890\xb0\x91;M\xf8\x8d\xd1\x0b\xdf\x9d\x98\x96\xbc\x89\x1b\x9d\xe7]8\x0d\xef\x951t\xa0\xfb\xf0:\x90\xfc\x0e#|f\x08xp\x1e\xdf\x16O\xebpzx\x81\x1e\xc9\xb6\xa5\x9d%\x8bEr\x0e+\xd1I\x0f\xb6u.\xec\xd53\xbc\x19\x9e\xd1:\xb2\xabr\xb67oV~\x9b\xb9Z\x13\xc7\x8b\xac\x1eR\x9e\x93d\xba\x16je\xae`\x8c\xe2\x1ew\x93\xc7_h\xc8:\xbeX.z\xc7\xd0\xf9LyS\xb0\x1e\x867\x17\xe5\x9b<\xc9\x85\xfe\xb5U\xf9\xda,I\x97!5\xbd8\xaf\x8cQ\xec\x00\xc3\xbb\xd3\xca(\xed\xef\x9e\x95\xef\n\xc4\xad\xa7\x1e\x01\x01G\xeet\x950\xa67\xb2f\xe6\\3\x91\xbdT\xcc\x0d\x01\xbf\x8c\xf4\xfd\x83Pe\xf4B\x99\xe0[\xbc_\x15\x9ay\x82\x97H\x16\xd306u\xackJot\x94MN\x92<\xa6&-:\xbbN0\x9c\x8fq$\xcal\xccl\x8d\xb9!\xd4eH&\xa1l\xcb\x8bx\xa6\".\x96X\x06r\xc1\xbe/\xb5i\x95\xcfw[\xbf\xc6\x94\xf1\x92\xf9\xeb\xfe\xf9\xa1\xc1\xc8\x0e\xd2\x00\xd7\xd0B,\xcc\x9e|V\xed\xaa\x9bdvhp\x08\x90\x17O\xef\xad\xd7\x11G6u\xac\xbc\x94\x80\xa7\xc8\x0fD\x7f\xc6/\xda\xed\xcf\xf2\x92\xb4\x88\x1b\xb8{H\xf7 ;\xde\xf88y\\bq\xf6\xe1\xf1\x80c\xe9\xf9\x81\xa1\xfc8h\xf5\xb9 \xb6\xe3\x13F\xd2\xd7\x01\x9c\x16\xb5#0\xb5\xfd\xfb\x00\x0e\xc75\xe1\xd5:\xf6R\xdf\xa4}E\xa7\xe6\x07\xb1\xd4 \xf2\xcfe\xf9 9\xf7w\x82\xd6\xc3,\"\x8b)D\x19\xe6\x0fY\xa5\xc9Y4\xc5\x13@G\xb1e\xa3g\xb6\xc1\xb2\x89\x7f\x85!<\xf3\xa2\x00\xce,N _\xd1\xc4\xc1\xc7\xf3\xd5\xd5\xd9\x00\xc4\x10\xe6\xe5\xd6\x99\xb7\x8d\xe69\x0c\xe1\x0d\x1b\xcd\xdc2\x9a\xe7\xcah\x9ew\x1d\xcd\xb4m\x08\x1fa\x08\xaf\xd8\x10\xea\xa5E\xd4\xeb\xa32\x84\x8f]\x87\x10\x96\x00 \xdbF\xf3\x03\x0c\xe1-\x1bMh\x19\xcd\x0f\xcah~\xe8:\x9aY9\x9aY\xdbh\xbe\xc0\x10\xfe`\xa3\x99YF\xf3E\x19\xcd\x97\xae\xa3\xa9\x1e\x89m\xe3\xf9\xdd\xe2\xb7$/\xe4n\xbc\xdfQC\x1eR\xb2C\x99\x1c\x85\xcd\xaf\xe0\x00~\xf6P\x85\xd6\xcb\x99\xb0Q\xdc}\xc7\xef>\xe5D\xd4\xcc\x17\xc9K\xcc\xf6w\x93\x1bKIf\xab\x07[\xdb\xfc~\x85!|\xf0\"\x0b\xb0qv\xbfv\x18\xe3\xaf\xedc\xac\x1c\x9emC\xfc\x05\x86\xf0\xb9}\x88\xbft\x18\xe2/\xedC\xac\x9e\xd0mc| C8j\x1f\xe3\xcb\x0ec|\xd9>F\x95\xc1j\x1b\xe1\x8b\x96\xa1\x1d#\xf3S\xb0a.\x03}!y\xd6\xa3\xd8\x1b\xf5\"J\x96Y/\x00\xceg\x8f\xfd\x00\xa2\xa6\xa1\xbb\xcd\xd7\x03\x14\xc1\xaam\xdb\xb1\xab\x82I/\xd0I\x82!\x0b\x06\xabV\x97P><\x12\x0fU*\xf0\x02\x190\xf6\xf4)\x13*\x03ap\xe7\xeb`\x1f,\xbb\xa2xJ.\xf6\xa1\xc5g\x90]$M\x93t_\x13/\xa7^\x97\x96x\xb0v\x9cP\x18\xe46\x94\xb8\x01Cx\xdd\x8e\xb47\\pA\x00\xeb\x86+56\xda\xbd5\xfe+\xcdl\nvNI:\x1a}\xbb\xbb\xb1\xc6\xd2 \xc2/\xa8\xab\xd8\xdf0h\xe9\"\xa0\x19\xbco],\x17BwE\x8c\xf2]\xc4\xbd\xae.\x96\x0b\xdc\xb6\xf8\x17\x166\xb2\xad9\xd7\xf3\xb0o\x98\x94/\xbe\xfd\xf7e\xc0\xbe\xbfq#%3\xd5\x1d`\xbdBO\x18\xda\xc7}\xcd\xff\x14%WD\xb9'\xda\x0f\xa7S\xf4M\x0c\x17?\x97O\x0e\xe0o\x8f\x0eX\xe3g$\xcd\xa2$\x1e\xf6\x06\xfd\xdd\x1e\x90x\x92L\xa3\xf8t\xd8\xfb\xf8\xe1\xf9\xce\xfd\xde\xc1\xe3O\xb1pl\x87\xdf^\xbf\x02r\x81K\x0c\x13\x9e\xe2\xf7\x84\xc0)\x89I\x1aR2\x05\x1e\xa4\xf47\xa3\xff\x93\xbc\xa4!LL\xa7\x8f\xa9\xb1\xbd[\x9f\xde\x7f\xf7\xe9\x96\xf7\xe9\xfd\xb6\x7f\xe3\x96\x05\xd9K \xc2\x10\xa2\xd1\xa0\x19\x8c\x08F\xc6B1\x16\x9eJK\xed\xf4)\xea\xcb~{\xfd\xea\x90\xcf\x8d;\x93\xb8\xf8\x80\xb0\x89$\xc2\xc3\xa8l\x8fo\x82\xe7i\xb2\xe4\x1bA\xb4\xd7\x9c\x91T\x8a\x99$\xbb\xa4M\xb2K\xb0\xbcm\xcd\x13&)=a`_\xc9y\x06Pxi\xaaYP\xac\x8e_g\xa2\x0eI=\xa9\x92\xbc\xd8\x12\x94\xe2\xfc\"\x99\x84\xac\xa9~\x86\x8d\x1b\xf4K\xa5\xde\xd2\xb4\xb5z\xa8\xa47\xee\x11y\xf0\x90~\x96\x9fd4\xf5\x06\xbe\xac\x17tS\xa7\x8d\x01\xd5C=\x85(\x86\xd8\x87\xb8^>%\xe5\x8e\x8a\x18g8J\xc7\xb2\xc5!&[\x1bM\xc9$\x99\x92\x8f\xef\x8e\x8a,]^:\xda\x1d\xfbc,\xdd;@u\xa1\xf6\x9d\xc1\x98\xdbU{.\xf8$\xb7us\xcd\x9a\xd9l\xec\xb4\xd5h\x15_\x86+\x07\x7f6\xf19\x12\x83\xea\x8c\x88\x0f\xdb\xd0\x1b\xa2\xb6\xb6\xf9\xb4\x9a\x99T^\x97~\xff\x8f$\x8aqy\x9aS\x13\x19{\xec\x83\x92\xf3\xa9d\xdd\xa0\"n\x17K\xd5yD1W\x04\xd0\xcb\xe9l\xe7~\xcf\xf7\xcb\xbb\xbd\x930#\xf7\xee\xe8\xc6Pf\x10jv\x9d`\xb8Y\x94\xc4\xd9{|\xcb\xe4\xb5\x13.V\xf3\xb0%\x97\xacz\x154\\j\x13\xe7=\x1f\xb7\xd0\x02S\xc1\x85)\xf1\x88\xfa\xccpd\xeb7\xe6\x92\xd0y2\xbd\xf2h\xf8\xe7\xa6\xf1\xc8\xa7\xceLDs\x8c4<\xfd\xb3\xc0Y\x1b\xb2\xf3 5\x98Y\xcb4\xe5\xc6\xce\xe8\x9cT\x94\x8c\xeeQ\x0cF\xbd\x91\xf4\xe6\xa5F\x0f\x11\x85m\xe1\xa5oz\xe5\xdf\xa2\xcc\xd1(\x0e\xd8\x06\x0dt\xfb3\xf5K\x9f\xfa\xff\xd9\xdb\xbdu\x1a@o\xbb\xe7\x8f\xc5\xfe\xd4-\xa9\x91J\x11\xdb\xa6\xd6d\xee\xaa\xac\xa4\xc1\xb1\xa6P\x9a1\xc25- W\xac8\xe5\xb4\xb9\x8ct\xf2\x18\xa9\x8e\xbc\ns\xa9\x143\xa4's\"\xc0:\x8f[d\xcaT:&\xcc\xd9\x98\xd4(\x8d\x96\x9e\xb2H\x9f2\\\xa3c\xb4\xd8\xf4z\xb6\xe1\x1a\x92\xab9\x0d\x93\xc1\xec\xb8\x84\xd9\xd7\xa6{Y\xa0I\xe7\xe6\xd44m\xe6\x9b\xb0\xecd\xf1\xd1\xad\x7f]\xec\x14\xccu\xeb\xb2\x05\xc6\x14t\x7f\xe6\x08\x85\xfdgS\xd8\x976\x85\xf5h#\xecb\x1ba\xf5r\x9f\xca\xff)\x1f\xf0\x94\xdfl\xa7x\xf7\xee\xfb\xfd\x1f\xf2\xd9\x8c\x08\x7fq[\xf5\xa3\xb3\"sSq\xf2\x95x\xa2\xa6\x19\xacX\x8c\xc0%S|o\xc49U\xfe\xe9\x18\x91:nT\x8cr\xca\x06\x89\x94\xae\x1cWjcD\xf59\x0eAaO\xf9T\x94d\xbc\x8bhBL^\x97\xc4\xb8\xbc<\xa4\xaa\x9aL[\xe4K\xe4\x14@-1\xe1c)+S.\xd9zZr\xfdP\xecx\x99\x97\xbe\xaf/\x9b%\xb9\xf4-\xa6\xd6\x16\xc3\xb2\xc5\x17\xae-F\xd6\x16\xb3\xb2\xc5\x1b\xae-&\xed\xb3\xbey\x13\xb6&e\xd3?\xba6\xadI-\xaf4\xbd\xe5mQ.\x87\x8f\x16c\xb7\x06C\xd7\x06\xeb\x898L\x0df\xae\x0d\xce\x1d\x1b\x9c\xb4\xaf\xf8f\x83\xdd:57s\x1d\xdf\xb41>\xf5\x17\xf1R^\x83\x85x\x91\xfc#\xe1\x7f\xc4\x8a3+\xcf\xd5\xcd\xee\xbc$kL\xcf\x17\x8a\x17\xe2)\xb9\xc0\x1b\x19\xbf\xf1$\xcb\x92I\x84\x99!\x00s\xb8\xc4e\x00\x1c`x~\xdc\x97m\xb0\xae\xfbe\x0bl\x00\xfd\xf7\x04k84\xe9\x07\xa6\x19\xf8\xfb\xdf\x8f\x8f\x8f^\xbf\xfe\xf8\xe1\xc9\x0f\xaf\x0e\x8f\x8f>\x1c\xbe\xc3?\x8e\xff\xfew\x8dji\xd5\xfc\xe2\xe5\xe1\xef\x87\xcf\x0c\xaf\xcf5\x1d\xbcyv\xf8\x9b\xf1\x83i\xf3\x83\xb7\xef\x9e\x1d\xbe3~p\x06C\xb8\xdb\xbc\xbd\x86!\x0c\xe0\xd1#]\xb5\xf3S\x18\xc2\x1av@\x93\xaa\x7fi\x90\xf7\x8f\xed5\xae\xf7\xeb\x89$A\xcf\xf9\x9f\\\xa5\x19\x13-?o9\xd8\xb9q\x18\x0b\xbb;\x92\xe4\x0b}\x8bT\x1c\x0dE\x83\xbbn\xdb\xe9=O*\xaf\x7fxh9\x89D\x84\x9bF\xaf^\xa9\x0e%\x0bH{\x98x\\\xa88w\xb0JH*r\x9e\xcb\x94\x05<\xd3\xc6\xeeCLw\x11?\x84h{\xdb\x87t\x14\xf1$\x89\x11\x13\xe8\xcd\xee\xf5\xa9\xd3l\xed\x01\x0d\xaa;:\x06\xa2\n\x98f<\\\x82\xf6\x8f\x8fy\xe9|\xe2\xfd\xc1OW\xf6\xc4\xa9\xe3\xb7\xd6Tb\x85\xf5A)\xe9a\x13\xc1P\xb9\x04\x8f\x1f?6\x995\x84\x92j\x1bb\x11C\xbd\xd9\xc0\x9d\xbd\x07w\x1e\xdc\xfb~\xef\xc1]\x9ca\x19\x99\xf8&|\xa3o\x85MZ\x93\x92\xcf\x04>\"\xcax#\x90\xb7Q\xf1\xe1\x06\x9c?l\xc5\xf2\xeb\xf9\x9c\x0dm|v\x90\xda<\x19jP\x16\x9d\xde\x92Q\x91\x14\x1e\x0da'\xae\x14,\x1cJ\xd0\xd5_&\xf0xXW\xc0\x9a\x06v\xd4\x96\xbd\xf1\x83\x18\xb9\xe3\x86}\xed\xda^\xbd\xaa\x8f\xa1\xbd\x0f\x0e\x80\xab\xc5i\xc4\x986\x97/\xb6\xba\xbf l\x03\x1a\xc5j\xb1\xb4\x8cC\x92\xe5\xe2\x99\xbc`\xac\xde\n\x02\xbf\x9f6\xabT\x83pd\xd6\x9c\x07\xef`\x08{\xcd\xdbo\x9c\xb3\xb6\xf3M\x9d\xa4\xcd6^\xf1\x93N\xbe\xa09\xda\x9e\xc1\x10\xde0\x1cye:\x02\xbe\x1a\x08\xf6<\xca0\xbb\x8833\xfe\\\xae\x94!\x99\xa7\xb4Z\x94\x0b\xc5\xb6\xe0\xa0\xb2l#\xf6\xbd\x85\x8a\xc2\x01\xa4\xc5\x19\x12\x89\xb2\xc0\xd6\xd3\xd0\xe0\x078Mb\xd3\x89\xebH\xab?\xda\xa8\x82uH\x1c\xfd\xac\xe3j\xad\xdcc\x18\xd4\x0fv\xees\xebWW6\xf6\x8b\x9d1\x00S\xd5h\x8a8\xe3\xd4\xc5\xefv5\xe0\xaf\xda\xf4\x1d\x05-\xe7Un\xb5\xc5\x96\xf5\xdd\xfdj\xef\x8e3(o\x90\xd6\x8e\xde`\xedR:ze\xcaM\xa4\x9d\xbb\x92\xb7\xdaiD\xbf8\xc0X\x13\xcc,\xb8\x14\xa7.^Z\xbb(\x92\x01\xa8G\x8e\xdc\x8e \xcf\x95-\x85\xe8>M0]\x83\xb5\x80\xb5\xbc$P\xd1y\xbd\x12\x167\xac\xd5\xe6!\xe7@\xa85\xc3\xfb\x96\xa9^\xd8\xe1\xc5\n3\xd3q\x06\x0d\x92\x14\")\x15 5K2\xe3[.\x0b\xd8\xd3\xcf(\xdd\xf0G\xfb\xe8.o\xeaV\xbb\x8a\xecj\xa6\x083\xc0\xfd\xc5\xb7\xc1\xbdO\x13\x94\xc5$\xc4\xc5\"\x84\xcd\xb5\xa0\x98\x9f\xfd0\xa6\xe9\xbax\x99\xba\x8e\xf2\xc6\xb7\x8dR30\xa2\x0e\x84\x8dSH\x91\xf2V\xe8<\xb6\x1f\xadc\xf3\xbe}pr4h\xe0\"\x14\xef\xd7F\xa6\xfe\xfa\xaa\xa8\xaa\xa8&\x1f\x81e\xb0\xbd\xd1\x918\xa0\xc75\x05t\x00_\xfb/\x0f\x7f\x7f\x0fCx\xca\xfe\xfe\xe5\xc9\xab\x8f\x87\xec\xd7\xcf\xec\xd7\xe1\x9b\x0f\xef\x8e\xf0\xe7\xbb\xa0\xd2\x7f\x14g+\x9e\xed\xbc6\xaa$O\xab\x99\xb9m\xf4\x85\x1d\xf0\xe6\xdc\x0bJ\xcb\xa3g\xe3\x0em\xd6\x1b\"\xdeK\xae\xb7x\xd9Of\x8e\xed\xbc\xf4\n'\x92\xc6\xc0^V\xa7L\xbe8\xb6\xa9\x1b\xdb\xcb\xab/*\x82\xef\xf8\xb84\x8e\xb2\x91\xfc\xbb\x17@\xef\xb2i\xcfQ\xfb\x99\x84\x939yG\xb2\x962\xc7JW[\xbc/\xfc\x10d\xc5\xafB\xd6\xfb\x18\xe3\x83)\x17\x06\x957\x87\xfc\xc5\x12\xeb\xcb\x8a\x0f\xa2\xfc\x99\x14\x1c\xcb\x8f\xc4\xd9\"^\xb0M\xa3\xe8\xdf%\x86HLdB\xcb\x82d\xbc\x02\xa8K\x0f\x89S\x00\xbe\xe8b\xd6\xda\x05\xf1^\x04\xf0\xd2\x0f\xe0Ee\xf1%\xbdu\\\x13=\xa6\xdf\xe0-\xdfp\xc7\xf4\x1b\x16L\xbfQ\x19`II\x1d\x9b\xd6\x0d\xf1\xc65#\xfc\x88!\xfc\xb8\x89\xf07\xae\x19S\xea\xb5\xdd\xf5=|\x13\xa64\xbb \xde\x8f|=\x7ft_\xcf\x1f-\xeb\xf9c\x8dr\xd1o[\xcb\x97\xfd(\xe3-D\x94\xfd\x92\xda[\x86\xdeB]\xcb\xc6\xaf(ro4\xb5\xb7?\x05\xf0\xcf\x00~\x0b\xe0\x1fM\xa5\xe9\xfb\xc3\x7f\xa0\xc2\xd4$9Rj\x11\x1d\x8fCQ+\x83\xd6\x88M\x17\xf6\x95\x18z\x90\xfc\xa50.}&\xebL\xcbC\xf2\x91$\xb26\x88\x1c\xca\xf1gQ\x0b\xab:4\xd2eh\xb1u\xf2Q\xa9\x9f7\xcc\x9f{\x16:+\xe8\xd2\xf6\xee\x84\xe1,\xa8\xdd{*\x0e\x83zm\x1fCG\x91\xa1#y\x16\x95\x06\x8c\x7f8\x1aX\x90\x1b36\xf8\x13k\xcd\xfbI\xe8Z)\xf5F\xe3Ff\x16}\xbby\x0brh\xd2\xe0\x88.\xa8\xdf\xe4\x9a\xbf\x94o\xa4\xfa7~(\xdf\x88\xf5oh\xa5\x9c\x83R\xc8)TOf\xcf\xbe\xabK:\xa3\xcf\x01\x9c\x8dAd\x8a\xed \xf1t\x92Y\xc3\x16\xa0gza\xee\xdb\xa7\xc7\x05\xb9k\x9aEfG\xf2_j\xd8\xa2A\x0f\x0d>\x14\xab\xeb4\x04v\xc29\xa9\xcb\xa8`\xcd\xf4@\x8dL\"xa\xe5H\xd8\x01QZ6\x06\x01\x864\xef>\x84\x1c\x1e\x0d!y\x08\xf9\xf6\xb6\xa9\x11\x10\xe3\x08\xd1S8f\xa2\x15\xec@\xced+\x83\x7f\x15\xc8\xc5\xe6z=\xe2\x85\xa3\xc18@\xc5]8\xda\x1d\xb3/\x03P\x02\xdas\xd8\x86\xa6\x12\x0e\x1a\xe2\x97\xbc\xe4g\x8d\x87\x96\x04s\x0dV\x99g\x83tZ\xa6\xd9\x9f\xbcL\xda\x152B\x96\xaf\x9c\x0d0\x0c\x1b\xbfzV\x96B^\xd2\xf9\xc3}a%\xf0\xb7\xb7\xe11:W\x9b\x1b\x077u\xa7\xbc\x8cjOy]\xc2>\xc7\xcc\xb9P\x1f\xa9i8s\xfbp\xa4E\xbe\xe2w5\x94r}\x8e\xf4z\xa8\xe9\x93j\xbe,\x03\xb8\x05\xbb\x85?\x8b\xf0{\xf1\x03\x89\xce\xf2C\xdb\xc1\xf6\xcfbh\xff\xd4#\xce?\x85\xcd\xa0e\xab\x99\xa0u\xda\x02-\xaa\xaa \xb8\x8a\xc0\xd1WhIm\xceB\xfa\xa5X\xd6\x96BiC\xbf\x1a\xa7\xd4\x13\xaeV\x01\xf4\x9e\xf2(\xde\x8c\x92\x15\x84\xf0.\x8cO \x9c\xaca\x17\x83\x1eAX'w\x83\xea*\xc9\xba#\xb8V~\xa0$\x01\xe0\x9eo\xa2\x1a#.ax\x92\xa1\xeb!\x81G\x82cco\xef\xc4\xd2\x84s\x8c\xc5\"T\xbd\x1f\x89\xa7\x8aj\xf3\x18\x87\x86\x83U\xb1FE\x0f\xfc{B\xa2\x85\xe7\x11\xd8a\x04\xf8\x16\xc4L\xb4\xf2\x99l\xde\x0dw~+`\xf9\x9b\x1ew~\xfb6\xdc9\xd6\xeb\x129\xbe(*\xa5'\xa2\xfaa\xdd2ah\xf6\x84\xda\xdcL\xcf\xadO/\xc4S\xf5\xa1b\xc6\x1a\xfdc,\n\x01\x11\x8f\xd2\x00n\xb0\x95S\xe3\x1eN\x89SIW\xc9\xb5\xb3U`\xe4\x91\xdb\xb4KM\xfb\xe8\xad4g\xf8c]\x05\xf3J\x9f\x9dL2\x15\x7fY\xa5G\xe1![Q-\x95\x1e\xb2CH\xb9\x8b\xac\x11W\x84\x8a\x88z\xf1\x88Q\xae\x14v\xd0\xa3+\x1a\xa3\xf0\xc7:*wf\xc4P\xd1H\xb5\x1bu\x1d\xb4\x93u\xb3\x0e\xe9&\xaa\x9dBc\xf2\xfa\x89\xea56\xdd\xb45\x05\x10\x1e\xa3\xfa\xc3\xc6\x819i\\\xac\xda\x16\xaei\xa1\\\x02/Wf{\x9b\xad\xcd\xf6\xb6C\x14 CuB\x03x\xc1\xe8\xd6\xd5Q\xbd\xee\xe5\xaaC}\xae\x1f\x1eQ-\xcaW\xfa\x9e\x87\xee\xf1lJ\xd3\xf5(wM}\xa2\xeb\xdcX\xbcS\xbe\xb3JSU \xd8ju\xa7%|\xa7%l\xa7E\x0f!1+q\xcfDY\xbc\x14\x173\x82\x1dH`\x1f\x12\x83\x9e\xaf\xb63\xf31V!\xae\xee\xc6D\xab\xb45\n\xa3\xcd\x14\n\xd7\xb5=\x05\xb8\x8c\xfbS\x01\xa1qw\xa6\xad{8\xb9\x8e=\xdcm\x15$\xe4P\xd3\x1a\xfdu{>g{>w\xdb\xe3\xca\"\x8e\xa6\xe5!\x17\x8bC.\xd6\xee\x8b\xc2[\xc5a\xad\x19*\x96\x121\xaeeEhR\x84\x0c\x03\xf7,\xb1\xe5w\xafj\x96\xb5\xd4\xb02\xe8$\xbex\xb1A\x06-vq\xf4\x10\xb6\xbc\x08O\x05\xb5*#(\xb9\xbc\xbdHT]\x84t{[\xec*]\xfdR1\xe5F\x8e -LK}\xf5\xb5\x025I;C\xd5\xa0\xce\xf9\xa2j\x89\xf9v\xf9hh\xd6\xb0\x02\xdd\xb7\x1aQ\xd6\xa1E\xcb\x81\x8b\xc4\x9d\xd1q\x0f\xe0\xd2\x08\x15\x9e\xd3F\xf0R\x81\xf2\xe9\x7f\x01\xcaW\xea\xc8\x17$\xb0\x08!\xe0\xb6\xaa\xa6\x83\x80z\xa0\x14\xc6\xa8\x87\x0e\xcc[4J\xc6\x01#T\x8dC\xc206\xb6KbEK\xc4w\x89\xb1\xf2\xbc\xa4\x9b\xb1M\x9b\x84&\xb6Q2\xe6\xe1\x90\xc5\xd8\xf2\xea\xc0NR\x12~n.\xa8 \xdb\x1a\xc7\x96vy\xffc\xbb\xaf\xb6\xb0F\x82\xa6[l=\x10\xafc\xef\xe1J\xc0\xe3\xf2XmS\x18\xb6oT\x90p\xe3En\x8b\x8dkQ,\xf2\xa0<\xb1\x87\xb5\xafY\xad\xcb\x92\xfdMG\xee\x0c\xefZ\xd0\x805\xbd\xba\x8b]M\xd0\x86\x03\xe8\xbd#+\x12R\x18\x8d{\xb0_\xfe\xe2^\x10\x8aZh\x1bz\xe5=\xfc\x96\xdd\xa1\xd1\x92d\xd0t:^_\x9d)\xd71\xe1|\x08\x1a\x06\xbc\xd2\x8f\xac\xf4\xe3\xca\x85O\xa9\xaa\xf8jFe\xd5\x9a\xc7\x94\x05.\x13\xa9\xec\x1f\x06*#\xca+1{|\xaa\"U\xd2\xba6\xb2\xd7\xa2\xba\xe4\x0e\x0f\xa6\xab3\n\xf5\x91\xa6\xe4\x8c\xa4Y\x177\xed\x16\xb8N\xc9\xc5\xdb\xd9\xd5\xc1\n\x07\xa81\xdc\x19X\xbbY\x84\x19=\xba\x86\xaeJ\x0cm\xed\xf2\xea\xc2\xd4\xeeC\x88\xe1\x91\xb2\xc4\x10;i\"*\xc3\x8d\xeb'ZlUB\xc4Ns\xe9.\xe5tbU\xbb\x11k\xc9f\xc2#\x88%\xc5)Y\xa0X@\xc27\xd6\xd9\x83\xeb\x12?\x1c(l\x05\x9a\xc2H\xe9\x88\x87\xb4\xaaz\x87\x83&f*S=k\xda\xfb\x19}_\n\xfa\xbe\xbcf\xfa\x8e*cI\xde\xf9\x0f\x85\xbas\xed\xee6\xf4\xfa\xfd~y\x97\xc4S\xd8\x06O\x08\x15\xf3B\xcd{\x00=8YW>'+\xcc{\x84I\xe74'\xc1\xf2zO\x029\xdcR\x17 \xdfU\x87\xd28#\x96W:#$\xe7\xe0Q\xd8Q\xfb\xf6\xe1\x96\xd2\x9fq\x7f`\x80\xf4.7\xc8+d\x82\xdf`k\x84:\xf1\xd9\"\xd1\xd8\x1ejCv>wj\x87J\xd1\xa9r\xb8\xa0K\x01\x9e!\xe5\xd3\x80\xdb\n\xf0\x8c)\xef\xfa\xf0hX\xf8\x96.\xa9\xb7\x1b\xc0\xae/\x8e\xa7\xa5@\xeeSB=\xd5* M\x06\xec>\xd1\xdcG\x905\xcf\xae\xe5U\x0e\x9b\xb3\"\xaa\xb2\xb2B\x0d\x85/\x18\x031.\xc3\x1c\xd4r\x07V\x87\x03\xe1Z\x89N\x96\xece\xeeSa\x19((x\xba\x0b\x1b\x93s\x14\x1e\xa1qY\x8d\xd3\x8b\xe1_C5G\xd1w@\xfd\x87\x0c1\x94\x9b\x0f}\xc0\xd7(\xdcR\xdf\xb5\x12\xdcC\xea9\xa5J\x8f\xea%]\x145b\x99\x9a\xffg\xaax\x99\xeb1\x0d\x94UxEG\xd4\x9e(\xb7\xea\xb1\xf2\x96ao\x00o8\xac\xdf\x89\x9c\x19\x14\xd3\xe1\xc0+\x9e\xe8\x1c\x9f3*\x8e\x8d\xb3\x83\xef*Y\x16`\x9fw\xd6 \xc7\xe7a6\x7f\x9aLU\xc8\xc8[:\xe5bT\xaf\nV~\xe8\x08B3\xe3\xf9\x9a\xd6\\M\x11~G\xdccM\xadPji\xa3\xfe5\x1d=\xa5c\xa7/\xb7>\x1b\xc7\x0d\xa6\xc6\xfb\xa2\xea\xc1\xfa(;\x8c\xf3\xa5\x08\xc0Bw8\xdd\x13\xa7\xb1\x98:k\x07\xaf\xfa\xb5p\x98\x8c\x93)\xf9\xb0^\x11@\xd2\x9e\x9dG\xbc\xfeYq\xbf\xad)vM\xc2\x8c\xc0`\xbf\xf5=Ph\x7f?\x8f\xa3/99zf\x9e\xa3\xbc\xb0\xf9\x07\x1d\x9b\x9f&\x13\x0c\x18>\\\x10\xf6\x0f\x9fl\xedf1\x06k\xd3z\xa56\x88-\xa5\xac\x96\xf6=\xfd\xd7l\xb9\xb6\xb7?\xd0@=\xfan\xc2\x07\xbe\xf7?\xe0\xde\xb7\x84\x88\xbc\xa6>\xc3\xfa\x8c\x18=\x1c\xc1\xc1\xd1\xb5\x8aB\x7f\xc8\xfa\xc8C\xfc\x81.\xcfu\x8f\xc1\xde\x9b$\xde!<\x95q\x19H\x98A\x98\x12,\xfa\x86\xd9\xb5\xc9\x14\xc2\x0c>\x93u\xd67\xd5=\x90\xdd\xb3\x0d%\xa2\x8dy9\x89\xd2#$\x80\xa7\xd4\x14W\"/R\xec\x9b}\xd8\xb2\x04x\xb1k\x92\xc4\xb3\xe84w|\xfb<\x8d\xa8\xdb\x9b\x82O\xd7/>\x80\xb9\xa4\x1e\xa8\xe5\x0d+N\xf5\xddH\x86`\x93\x95H\x12\x85\x83\xd7}\xe0\x1b\x1b\xb2\xab\xdb\xd4K\x95\xb5\xdd{\xee\x87\xab\xd5b-\xd8xCD\xbfz]\x06\x162\xc9\xce\xc0\x16\xc8\xb6\x13\xc1\x8aSzI\xf2\x1ax\xff1F\x08\xd1\x042B!\x84\x98\xed\x83\x12rr\x8c\x90\xc4bOXQ\x9f]T\xce\xc1<\xfb\x0e\xf4\xc4z\xeaw:\xed\xa5\xf2\xb5 k\x8caP2\xdah\xf3\x01\xd4\xa0\xc5\xcb)\xb3&y\xfddT\x93\x96\xa5y\x18\xf7@\xa6}G/\xd2\xb7\x06\xde\xbeP\xc7\x10\xce(\xa9\x16\niiG\x03\x05\xbep{\x00\xdf\xf1T\x85\xfd\xc9\x829\xf3Ld\x15\x16\xd6\x97)\xdc\xbdu\x9d\x11\xfcW6_r\x85\xa7\x92\x01\xeau\xb82\xa6<\xfb\xfa\x8d\x96\xc5\xe34IJ\xcd,\xfb\x81\xa2s\x11K\xc3\xf36\xf9:\x93b\xa5\xeb\xacS\xd7\xffP\x93B\xd9\xe7\x94\x11z\x14wh\x1a'\x92\xaf\xa6!%G\xf8\xf22h?c\xcd\xdc\x92}p)Y&g\xed\x92\xb6f\xd6K{\xc3S\xb2 l\x02\xaeM7f\xed:\xe5e\xd7)\xf3N\xea\x0bbO\x1c\xcdE\xc8F\x89\xcb\x03\xe1\n\xe2K\xe3L1\x81\x11\x1d\x8bF\x1d\xc6\xd2D\x0f\xc3h0\xd8\x15\x9d\"E,&Gq\x8b\x8flA\xa2]\x12I\x9c\x898P.\x80-\xcd:\xd1\xbc\xd5\x17\x8f\x91\xbb\\\xf8\xe1\x99\x89\xe2\x99H\x19\x93`\xf0Hk\xc5\xd8\x0c\x86\x10y\xb6\xb2\xdcb\xb92\xbe\\\xc2Y\xb7\x19C\x06F\xa9\xe3\x94z \x03\xb2\xc8\x1b\x9c\x11\x1a@/\x8ay\xb5\xfb\xcfd\xfd3V\x883Cf\x82%\x80-\x1e\xa8\xec\xa5\x99\x98\xf2\x92M\x19\xa9\xd5\x84\xed'\xf3\x07X\xa0\xd4\x9b\x95\x0bhU\x94r\xd6e&f\xcf\x7f-\xd9/\xb1\xdb\xbd \xc3W/)y\x19\xe2\xe3\xd91 `\xa1\xe1\x01\xc4\x9e\x8fc\xd4\xe9\x1a\"\x1eE\xdfi\xd1\x9b\xe0\x9a\xea\x96\xd9\xfa\x0e\x98,Hh-J\xa44\xdet\x8b\xa1\xdc\x1fB\x1c8\xc9yL\xd2\xa3gp BaE\x0c\xe3n\xa0\x9e\x14CQ\xb4S|\x83\xc1\xfb\xc3\xf2\xac\xe0w\xc3\x05\x15\xf5N\xb6\xc4M_pw\xd6\xc9,Iz\xda\xaat\x90\x90\"\x02\xae\xb2ks>\xc0f\x1f\xbfF\xd5\x92c\xb6\xf3\xa4\xe8\x08\xfd\x97\xea|\xd2\xa0\xe9\xc8\xd1\xec\xaeJ\xa0\xec\x86pM\x0fFl\xa9\xd2L\x12 \x84\x03\x07\xad\xaf\xf8\xde \xf0\xf3e8\x90\x7fI\x1d\x0d\x12\xd5}\x88Gj4^\xb3\xa8m\xcb\xf1\x81M>#\x18,\xdbi\x9d#\xd2m\x8dY\x1fN\xeb|%\xd0\x17\xc3J\x88\x87b\x85\xe3\x88\xfe7\xa2\x02\xae\xd6\x81\xfa\xebzQ\"KR\xea\xca\xe7\x1c\x11\xef\x17R\x98\xfd\xdb\xdb\xfda\xdd\x81uT\x1b'\xed\xedWd\xa0\xd6 \x14\xb2\x16[\xa90{\xcdu\x11:\x06@.)\"\x16\xe9\x9f\x87\xd9\x13NO=\x1f\x8f\xa1\xe3c\x12gyJ\xde2z\xedU\x89\xb7d\xa5\xac\x03/zw\xdc\x83\x8d\xf3\xa1zn\xa8\xa3a\xa2\xd8{;\xd8\xc2\xecHjb\xba\xf5\xaf\xf6\xd3\xb22\x05\xc8\xba\xf5 \xce-k\xdb\xdd\x1c\x9c\xa4F\x84\x9c\xc3\x0dw\x99\xa7\x93\x17\xda\xb7:1+\x87{\xe1m\x83r`3\xb3H\x0b\x11\xe1\xc1v\x1e\xc1\x043\x043\xca\xe8l\xee\x01/\xfb\xd4\x02\x01e\xb5[\xf7\x96\x9cI\xc9\xe0\xe8\xb0\x15\x0e\xe0\x9f\xb4dmT\xb6&(\xf3: K\x83\x1c^\xad!%\xf7\x83\xca\xe0\x0c\x04\x83\xa3\x99N\x941\xc9}\x08\xcf5\x9eC\x1fi\x00?\xd0f2\xe0\xd7O~6TO\xfb\xc2\xdeV\x81dR\x0f\xfenN\xfc\x81\xc3oNH$*j\x18\x1f\x8c5>\xac @\x0c\x9d\x9cDt\x89\xe0\x90\x90\x8f\x13\xee\x82\x1c;\xf5\xf9\xcbU\xfa\x9c$yL\xaf\xdc\xe5\xcb\xabt\xf9\x99\xac\x7f\xe4L1i@\xd7\xad\xdb\x17\xd7\xd7\xed\xda\xb9\xd3\x1b\xed\x9d\x1eS^j\xb4\xdc9E\x84M\\\xfa6\x87\x93\xcf\xc8\xbc\x14\x14\xe5'\xea\x89_n\xda\xd0\x1f[S<\xf2\nH\xa6}\xac\x0b\x025!\x0f\xad\xa9,$fGAA}\x10u\xa9FM\xd1\xd4Q\xf8X\xe4\x0c9\x84\x08w\x9bN_a\xc0G\x11%^\xe8\x97\xf8\x82\x06\x10Zy\x15&Qq\x89\xcd\xd3~\xba\xcf\x10Q\xac'e\xfc\xc8\x85\x17\xfa\x01\\x\x0cU\x18\xc4_\xc8\x1c\xae#\xf6\x99k:wB\xec;\xbeVy6\xf74\x9eEF\xf2\x92K\xa0En@\x8e\xac@.v=zm\x95j\x95\x9b7\x01\xb3\xb0V\xd4+<'c\x91\xd8\x97o\x7f7\xce<\xb1\xef\xeeR\x9433\x15\x002\\\x0cu\xf8Ue\x1a\x8e\xb7\x92\x8c\xba\xf2\x9c\xab\x84\xcc\x9ax<\xb9\x8a\xce\xadjx\x9e\x8d2\xf2\x85\x1e>jY9\x13@r\x97e\xe1\xdb\x1c-Cq\x7f\x16\xb1\x93\xc1\x01\xfd\x8a\x8f\xcb\xc4\xb9\xcdA\xfa\xbeb\xedb\x07\xb2\x9af\x17\xe9jy\x8am\x18\xa9\xc0\x94\x87\xca7W7\xb5\xa7\"\x1a\xaa\xf8\xc4\xb6\xe2\x80&pq\x1e\xa5U\xabi\xab\xf7pE\xfe^\x8a\x1a\xa3\x08x\xec\xd2\xf8\xad\xc6e\x02o\xabA0\xa6\xa5\x93\x17\x95n\x19\x86\xf4\xb1\x97\xd5z\xd2\x05A\xc3\xb2\xd2\xf1(\x1a\x17\x0e!\x9a\x81bf\xf2\xca\xd1\xe7\xc5\xa3]G\x89#l9iA\x84\x86x\xf7\xef\xde\x7f\xf0\xe0\xf6\x9d\xbb\x0fx,\xcf\xce\x10\x03ax\x1c\xcc\x9d\xdb\x83{w\xef~\x7f\xef\xae\xef3f\x0f\x1f\xec\xc1M(\xbeQ\xee\xdfa'\xd3\xde\xdd\xbd{w\xee\x0en\xdf\x0d\x80\xc2\xb6h\xea~\x00\x83\xbd\xefy\xf3\xf2\xde\xe0\x9e\xdb42\xe2(\x85\xa4\x02\xc5\x0fm\x15E\xa3\x11\x19\x0b\x01\xa3\xd6\xbb\xfa\xeb\x0b\xba\xba\x08\xde\xec\x0b\x15\xe6p\x18\xb2\xbf\xb9\x15.(\xffD\x9dz\xf1\xd2Q\x1c\xc0\xef-N\x11\xe6\xb9T\x0eCUz\x17\xc7\"g.\xa2\xf2X\x84G\x90\xf3\xd3\xd1HH\xa7\x88\x9e\xd1(\x193\xd4)s-\xb2\x1b\x03\xe7R\xe6\xb5Y\x19\xcd\xf0*\x1fi\x9d!\x16\x1b\xe1;6\xc0\xd3\xb9:\xdd \x9f\xee\x0c\xcfc9\xdd <\x02\x8cm\xda\x9abB\xe0l4\xc1I=\x84\xc9\xf6\xb6\x81![\xc0\x90\x7f\xa7\x17\xc8\x16p\xc0\x9b\x19\x8cq0\x11\xec3\xeeWQN\xea\xbf\xe3|\xb0\x17\xa2g\xd4\x02]\xc9.\xbc\x84IQaIH\xb3\x96\xec8\x18\xc4\x81\x0e~[!\xfb\x7f\xe1\x9a\xf0x\x08\x13]\x98\x8a\x15y\xe4\xc5\xa5Z\xe9\xb1\xf8\xdebp\xaf\xa0\x9b\xe0\xfah\x00\xe8\x88\x1a\xc0\x88u4\xf6+\x1c\x19q\xe1\xc8\xe4%\x9d\x0d\xc8\xc8\x94\x00O^\x11b\xb5 \xff\xb4\"\xa2\xe6\xa8h\xc9\x8d\xd5?@\xcbE\xc9K\"\xbb\x9e6\xb3\xae2\xabQ\x9eMa\x05\":LQ\xf0J9\xd3\xd81\x93\xf7V\x0c\xb7\x90\"em6\xff\x03\xe4\xaf'\xc2\xf6\xbf\x03\x038\x80y\x7f\x95\xf0J\x10\xf3\xd1\x84Q\xa3\xc6\x8d\x11\x1b9\xe3\xc7\xe7\x9c\xc1\xe4\xbf\xfd\x00{\xf6j\xda\xbfyi\n\x97\x02s\x00\xf36\x96\xf42\x80_\xafL\xce\xb4\xd1e\x88]\x86\xcd\x8aB=\x13W<\xafZ?\x9cG~R\x94}\x0c\x9a\x91D\xd2\x10\xae\xe95\x126\xd60\x93snr\xee\xae\x08\xcdF\xe5\xec($\xfc\x11fF\x1e\xf38..#\x11\x1d;Q\x07\xcf\x95\xe9b%3\xb4L\x00\xfd\x84z\xa9 T\x8a\x80H\x04\xcb\x13#\x90\x88E\xaa\xcc$|C\xfd\xf3I\x15\x86\xfa\x97f\x18S\xb95\x04o\x027A\x87\xdaH\xd7\x90PGue\x8e\x96\xa0J:\x1d\x12\xde$\x02_\xdf\xf9J\x8e\x10\x97K\xff\x0e\x1a\xdd\xe1\x00V\xa3\xc5\x18Z\n\xb1sE\xd9\x9c\x9b\xc5\xf8BW\xd7J?;\x1e%>w8(8\x1c0\x94|\xa5\x90\xf7\x99\x95\xbc[\xdc\xbc*\x15\xbf\x04C\xc0\xf63\xaf7\xb3\xf6\x03\xc4\x8c\xdd\x87\x82\xd5\x8f\x1fB\x88i~\x18n\x0ca\xe0C>\n\xc7\x88\x067Q\xb3@F\xc9\xf6\xf6\xd8R\xb3\x0e\x14\xa1t\x94\x8e\xb9\x8a\x8b\xf5\xc8M\"\x98\xe3A\x1f\xcc\xcf\x1e\xaf\x02\x98\x04\x10\x0605@R\x9c\xe7\xec\xffj\xb9z\xb5H\x7f\x93*\x11\xb4x\xb2\x04\xb6\"\x12\x0df\x81c\\\xeaWxS^q\x0eRQp.W\x88?{k\xe03V4\x1fc\x9ck\x0e\xdb\xc6\xd4\xb8\xd0~xs\xa8iA\xd6\xc2!\x15\x1c\xb6\x84\x9a1M \x14\nu\x84\xda\xb6@\xaa\xa8\x84\\!P\xb8\x80.\xa9\x80\x8e\xab\xd6\x10tb\xcf\x86\xf0\x08\"\xdc\xb1>\xbb%h\xbb\x97\xf0-\x1b\xf3\xd7w\x06\xa8\x9d\xe5\xf7\xe8(\x84m\x97rn\x86\xc2\x1f*\xee\x19\x8f\xcc\xe3\x82\x9d(\xac\xa8'5\x93\xe6y\x95\xbb\xe0&\xda\x93\x00\xce\x1b\xe7\xe5/\x7f-;aa$Z\xf8\x08\xce\x10Df\x11)\x81\x03Ht,\x82\xceo\xf2\x97\xffel\x82\x94\xcd\xb4/L\x1cNa\xc6&LF\xa1\x81Lg<\xf8\xc6\x911\xa0\xc4\x9bu=\xa2\x85#\xadC\x0f\x05O\x81\xf6z\xc3\xb1\xd2.\xc3\xed\xec\xac\xe0\x11,\xae,\xb7U\x08\xecn\xa0?\xe0cy\xc0s\xa1y\xc0%\xe5R,c\x14d\"\xce\xfc\x0c\x1e=\xc2#\xbf]L\x9b\xa1\x98\xa6[\xac\xca\x9beT0\x1e\xb3!\xfe\x89\xb4\xd1\x8b`3d\xc2T\xce\xf9 \x06yc[\xad\xf2ZIB\"-k\x01\x92\xbd\x98 \x87\x11\x1a\xcd\x8c\xab\xedm\xfd\x9a\xcf\xbb\x9e\xf2\x8cS\xcc\x88\xc7\x99\x99\x05\x93\x9c\x8cta^\x90K\xe9\x00\xb2\xaaQ\xcbi\x95ZrNj\xc5\x98\xa4:\xd9xyej\xf9\xdf\xacKz\xf9\x9f#\x86\x82\xae\xe9wy\\\xe6Z\x14\x86\xbab\x8e\xa1\x92\xc0\x8f+\x7f\xb8\xbe'&\x8a_\x1d\x0eZH\xe1\x9a1\x14K\xf2\xff }WXr\xee\xb3\x8a\xd5\xf4E\x99\x97P\xc0\x92M\x80\xb1\xee\x13\x93\xf1\xb4\xb3\xa6\xa5]\xcb\xf2\x1f\xd4\xb0\xbc\xd4\x00`\xde\xd8\xe0/\xae\xbc\xc1\xa5\x18\xc3\xa3B\x0b\x9f+\x86 2\xa2\x8e\xdf\x18\x8cu\x0c\xc9\x8b\xeb\xd9\x835U\xaev\x99\x90\xe4!\x06W\x87i\\./\xc3\xea\x19\x05\x12(\xf3\x08\xfd\xc6F\x0ce\xc0\n\xc3H\xd8\x87\x0c-\x01Z4\xaa\xac\x1a\xb68,\xca\x10\x89e\xd3\xe1\xadXv\xde\xa5f\xd7#\xd1)w~c\x91+\xba\xf3\xd2\xb9\xf6\xa5\xfeve\x0d\xac\xa4=n\xd0\x91\x94\xd3\x91\xa8V\xb6\xe8!\xa4\xa2\x84L\xea\x94\"9.\xea\x97\xa0\xe7\xc1X\xadwY\x9f\xdc\xaf\xfaY\xfcrm\x93\xe3L\xa6\xdb\xd4\x0c\xbcN!|\xd5\xe6\xa5\xe7w\x18(\x12(\xb3\xcf$\xfdJ9\x06\x13,@\xa7=}qE0H\x8a\xac\xa0k\x03\xad\x88w\x83\x06\xf0\xd5\x0f\xe0\x86\xdaKL.ZS;\x14P\xa6\x12\xca\xe8_\x19\x94A\x02\xdc\x99\xf2!\xd8\x8b6\x88\xfa\x13\x04\x17\xc9\xac\x0e\xc7\xd4\x98<\x0b\xaa\x8e#\x03)f\x8b\x89Z8\xd6\xa8\xa8\xadZ\n\xe1\xdcg3\xd5AI^\x97en\x9bT\xee\x96\xb6n\xb0\xbe\x99\xa8b!>Q\xf0\xce\xd7v\x1f\x91l\xc4\xc1'\xddS\x0f\xb0\xcc\x1e\xafy\xd6:6\xb5KD\xfbj\x87v\x95FR~f\x19\x83]\xd1\x91\xb4I\x0b\xf8\x92\\\xa6\n\x00\xe4]\xbb\x0cQ\xc3/\x18\xc2O\xd4K\x8c\xf6s\xb0\x8a\x0b\x93$\xa6Q\xdc\xa9\xf8C\xb3\x7f\xe5W\x9f\xfb\xcc\xb6\xecj(\xb7\xa7ic\xb4\xe6J5\xe6I\xad\x11\x90*0\xd9*c\x1e\xea5\xdc\x82;\xcd\x96g\xf2\xd9^\xf3\xd9\xa2\xf8\xce\xe4\xb9\xbf2x\x0c\x9c\x89\xd8\xa1\x0bc~=\x87<\x96\x9a\x88Z\xf6\xe5\x9cxJ\xcaI\x8d\xf0-O\x82\xc8\xa3\x96\x0c\xa3\xb1\xbd\xc6\x03\x1fL*t@\xde3~\\\xa7\xf0\x98g\x8dN\xe1\x11\xac\xe1\x00\xce\x89\xb7\x8b\x0c\xcfY \xe2L\xb1\x10\x04\xf1\xe2>M\xb8\xfc\xedcYZ\xd2\xd9-\x06\xfdD\xdeG_ \xf6\xacI\x03\xd2\xa6\xe9-4\xb5-\xfe&:/\x127O\x8b\xb9\xddaD\xc9\x032%-y@\xd8ArN\x19\x9bL\x1c\xf2\x80(\xc2\x87g\x8e\xb1\xe49\xbc\xc4\x11\xf7\xad9-^E\x19\x85Q/\x80\xde\xb8\x99\xd4\xa2\xd2\x93cR\x8bH\xd6\x8a/\x93\xe2\xfbEVrZ\xcdJn9M\x99\x00[\xb0\x96\xe8+\x83#O\xd2\xe842y\xb6I\x99\x8b\xf5\x14\xf7y\x99P\n7\xe1T\x13\ni\x02P#\xbbF\x05\x06\xdd\xb2k\xb8\xda/\x10d\x84\x83\x8c\xb3U\x95\xaa\xf9&\xbfo\xf4\x0d|\xac:\xb1\x11x\xa4d\x83\xed\xee\xb2\x06x,<\x82]8\x80\xb7\x82\xc7\xc3m\xb6+\"L\xdfJ\xa7\x04\xb4\x00\xf0gD\x1b]\x06`N\xb0Gp=\xe5b\xea\xdf)\xed9\xc74\x8c\x16v\x86J\xba\xf7\x1b_J\xac\x81\x02\x08\xc5\xcf\x18%0 W\xe1$\xa2kn\x10\x1f\xc2{t\xc2\xabG\x0dpy\x10E\xac\x88\xbf\x14\xd5^\xa2\xfd\xe3\x059#\x8b\xf2]\xf3\"n%\x8e\xe1\x06Q\xfa\xd0Z\xee\x00\xf8\xd8\xd6\xba\xd0\x13\x8e\xc6\xec$\xd3w\x13 \xbf\x0b\xae\x8a\xd4\xf7\"\xaa^\x98)y\x0e\xea(F6\x03\x16\x16\xa9\xcf\x19\xdd\xca+`F\xd8\xc2\x0e\xea8}\x1fG\x83o%\x15P5\xa9\xb2v\xc0\xdcJ\x169@9\x84!\x1c\x96\xb9\xb3\xf4\xf3\xdfJ\xf4*\x95\x8a\xe3\xc4\xeeC\xc8\xb8\x8bi\x86~\x92\x02\x16\xd9\xb8\x10\xbf\x8c\x049B7\x91\xb0\x80\x1e\xa3\xf1~\x00a\x9d\x82ip\xf4\xc9\x8c\x92\xc6\xf1\xde\x8a\xa2^\x15G1\xc8\xf8\x1b0UX?Q\xa8oA\xd8\xc8\x8e\xb0\xfaN\x9cp0\xa9\xe2\xa0\xc9\xa2\x848\x98b\xb2L\x86]*\x185(\x88/Ez\xc8\xa0\xf1\xab#r\xca\xcdbE9\xd1d.z\x13\xca\x8a\x08\x95|\x81\xf0k\xcb\x8bi2&\xca\x0f \xaf\"K\xf3x;%\x01,I\xc0\x98\x06[\x1a\xf5\x13\xf3iU\xf2\xea\xf2\x10\xd7BX(\n\x8b\x93]\xbf\x0c\x80J\xbe\xd4\x165\xc3\x0f}3|*\x89D\x04\xe3\xb0\xeb\xd7&\x06\x95\xb8g6\xb70\x00\xa3\x8d\xb5\xa2\xc7 +\xe5\xac\x0c\x9e&\xf2\x92\xc4$\x17\xfeK\x07\x12\xc1\xf8\xf1\xbe/\xa3\xdc\xf1\xa7\x99G\x05\xe1\x97\x92\x8b\xca\x87\xbb\xe8\x19\xbb\x03\xb9\xfd\x93 F\x9a\xee@n\xe0\x1b\xf1\x95\xc7\xb0F\xdca/\xdb\xec\xa1\x02\x08\xad<\xbc\xbc\"t\x9ce\xd3\x9e\x14\xfb\xe1\xd8Rt\x04\x14\xb5\x04V{\xdc\x99\xc0>\xa3\x9a\xf6OD\xcb\xe8\xd9\x15\x8e\xa8>W\nh\xb7\x1d\x80\x0c\xab\xab\xbb\xe5G\xa89nYV\x11 \xea\xbc\x80\x13$/\xd5\x05L\xe0\xf1c\x88\xec\xdf\xcd0\x00f\x9b\x1d\xeb\xf2\x03\xcb2\xcd\x8a\x05\x9d]\xf3\x82\xe2\xb9\xf6\xd0\xe8`\xa1^l\xed\xb5\x19]tW\xa1\x8b2 }\xf5+\x12E\xf6\x98\xa8\xd3\xa6\x90\xaf_\xa1P\x85\xb6\xbel\xb6\xe3\xcb\x8b\x0dcR\xf3%lCpP\x08&G\xf2\x19\xec\xc3\xa4\x0d\xc9A\x8c<\xe7\xae\xe8\x19f\xde\x8f\xf8\xa1\x940\xd4\x88\xd9\xa9\x1d\xf9f\xb7\x04\xb0N\xc9\xb27\x90.6\x1e\xbb%\x948\xd7&\xfb1\x1d\"a#;\xd7\x99E\xa3\x10J59;\x9b\xd98UU9\xfeTT\xe5\x04oH=y\x8c\xbf\xca\xacGa\xa1$\x8f\xf0\x87\"5&\xfc\x86\xd0\x97\xe7\xfcW5\xb9W\xe8\x04\x8a\x0bb\xd3\xa8\x9d\xa2i\xd0C\xc5\"\xb7\xeb3\xf1\xcd\xd1\x14\xfe\xbe e\x13\x88s\xee\x8f/\x92\xf3\xd8c*(w\x9a\x7f$\x89\x9bT\xcc6>@^\x18\xf1R\xf1\xa5\x88l\x1b\x93\xb3\x9c-\x9c\xdb\xa4F\\G\xa1%c\xce\x8c\x9b\xf8&\x1c\x0e|cHXX5I3~B\xc9\xbcQ\x9ed\xc3\xd0\xc6[t\xccXi}\xd8\xa0iE\xb3\xea\xc8\x8b\xe3\x9f\x96n\x99jWA\x05v\x1c\xf2(\xec4xK8(nJ\x13Y\xae\x8e\xb3\x19\x83`\xc2\x9bC3OW\xa8\xd9\xd0\x1f\xa0\x88\xc1\xa3\x8ag*\x15\x1e\xa8k\xe2\xf1\xfc\\\x82-E\xae\x94\x8d\x8a\x89\x97\x8d\x02P\xfa\x91<1\x8f\xa4\xb0\xa0\xd7l\xbf\xaaeU\xcf\x0f\xf2/\x1fq\x81F\xb2\x82\xb0\x0dg&\xa4\xab\xfarJ&R\xf0\xad\xf8\xf5C\xee\xb7\x80\xae8XXuX\xf80\xf0P\xad\x14=\x19\xd8G;C8\xb3\"^[\x99wcE/k\x92\x1e%\xe8EF\x9d\xf1r\xc7\xea\x13\x19\x7f`(o\xac\x98\xf5\xd5t;\x98\x9f\xc1\xcc\xb6\xb7\xb0\xff\x89\x0b\xfb\x8f1\x1e\xb0m*\xce\x10\x1623bc\x8c\xdc\xf4>\x9a\x8dv\xf1\xefm\x0c\x19c-h<\x16\x18>\xe4\xf5\xfd\x95\xb4\x91\xa9\x9c\xe1\x9e\x12s\xc0\x0d\xbf:N\xa5\x1a/Q\x88\x1e\x13\x15\x99f2\xe8t\x1bfl\xd4\x0f}|.\xf6\xd1\x84\x8dkR\xdd\xf1\x070\x92\xc6\xa3\xc9X\xec*&\xd8\xcd`[f\x1f\xc8\xd8\x9fg\xba\x11q\x99\x90=\x9e\x05\xbc\x8c\xfa\x8c\x1d\x00\xfc\xdf\x04\xff\xb5Md\xc1\xa5\xb1\x04#\x08\xf0\xcf\xd0\x7f\x08+\x06\x11\xec9c\xbb\xc9i\n\x95\xa1\xf3\xf1\xea\xf1n\xde\xe6N2\xc5 \x8aG\x18#\xc1\xc9F\xc8%\xee}60\xbc\xad\xa8\xb70\xba\xd1pda\x905\xff\xe6\xe6M\x8c\x03F\xd1l^SA\xb4\xd0\x8a5F\xb0 !\x9f\xf0\xe9-a\x08\xd9CX\xc2c8c\xff0J\xd0&K\x1c\xc3\x10\x16HA\x96z%\x89\xbcXwkAr\x8e\xc7\xbc\xdf\xf2\xb71\x81\x94\x9e\xbf\x93\x1f\xf2\x9e\xcf\x90v\xc1\x10\xe6-\x94 $\x83/A\xe6\xb1E\xc1(\xf6iEq\x92\"\x1b\x13\xfax\xd6=\x1e\xc2\xca\x87\x9c\x81c\x85\x8b\x86\xfff\xdcmaR8(4\x9a\x12z@\xde\x96.|\xb2pGf\xc2q\xc4(\x15\xe2\x87u\xe5\xc4>\x9cX\x85\x19\xb60'\\\xe8~\xfc\x98\x1d\xe8\xb6\x85a\x038A\xea\xba*_\xf7\xe1$%\xe1g\xf3W'BP\xdb\x1e\x82\xc7\xb7\x94\x0f\xdf\xc1 n\x92\x9d\x022b?\x8dN\xf4\xc2\xad~q'\x1c\xab\x1f\x0b5\"o\xa7\x0e\xd2\x8c\xad\xcc\x0e\xcc\xd8\x12M\xf8~x\xc4\xf7C\xe5\x83b93F \xc4\xfb\x92\xba\xec\x08\xaa\xb2\xa3\x8d\xa2\xec\x9c\x924D\xb5Fy\x9cp\xb6\x9bV\xd8\xf9\xb0\xd4\xed\x00\xc6q\x96\xeeU\x13\xd5\xbdj\xea\xea^\xc5\xc8\xc49\xf1r.\xee`\xa4f=\xba\xd1p\x1c\xff\xe1\x96/2U\xf3EV\"\xe8\xcb,k\xa1=\"\x04\x93b[\x99\xe0 Z\x01M\xe9{&\x1c\xc2\x8f\xc5\x9eMp}E\xa5\xbf\xdc\xcbxJI\xbe\xea\xd7\x9dR2\xe5\xf1h\x93\x0e\xe8\x91\xc0c\xe94y\xf3&O\x10Uz%'HR$\xe4\xebYn\x0c+\xf5\xb9-\xc5\x1cw\xab\xdeE\xa5\x9c\xd4Y\x9f\xb1My\xe6\xd4\xfe\x91\xbd}k\xa1\xc7\xa7\x9ce~M\xca\xfa\x8e\xecVg\xbf\x9b\xb3\xff\xf5\xf5\x1d_\xdb\xa1X\x94\xc2\x9c\xd5\x11\xce\xd4\xe0\x07\xd7\x94|U\xd5\xc3\x91bT1+!\xca\x14\xe1(\x02\xe1\x8f}\xb4\xdb\xf7\x8fy\xea \x9e;|\xc1\xed\xcb\x0e\xb9\xc3\x9d\xe6\xf4\xd4\xaaLXre\xc2\x92\x8d\xeb\x03\xf1xu\x9b\x0b\xe25B\xfd\x0c\xad\xffl\x970\x84i'\x90,\xbd1\xf5R.\xf8\xe0(3x\xfdb=6LIA\x0c\n\xff\xac\xe4\xf8\xd9\xd1\x1a\x9aT C\x9e\xb7I\x8f\xb7\\?\xd1\xa6(\xcc\x05y\x1cr\xedi\xf9s\x0f\xbe\x83D:n\xa2\x8d\x88\x1b+\x9b\xc9O\x0d\"\xac\xbcD\xff\xca|\x84\x8a\x05\xa55\xc3>\xf2\xfb4yI\xd6d\xfa\x9e|\xf1\xfc\xee\x94\x99\x8ev\x0d\\\x83\xdf\x9f-\xa2\x95\xc7:x\x1d\xf2|:\nn2\xa2\x9bVp\xb5\x8a\xb9\xaa\x933:\\\xa0\xf1L\x96}c\xd4%\xc2\xc3\x9c+1\x14\xe7\xde\\Q[0\"\x12J\xd1T\xa3\xbcTb\xcd\x8c\xb6\x99\x12\x01rD\xa5\xd0\x1f\x0d\xc6m\x8b\x9dr\xd5\x1e_G1\n\x9ej\xdd8\x08>?\xe1L\x9fK\x12Z\xb6\x90\x8bB)\xa2\x19#\xc90\xf1=\xa9,\xb4\")\x07\xf7\x0d\x17\x94#\xd2s2\x0c\x8c\x1f\x90\x93s\xcc\xbc\xfc\xae\xc5\xeb\x04\xdd\x95\x14\xaf\x93\xe3<#/\xc9:SJYH\x8a\xd7L\xe2k\xea\xf4\x8d\x81\xa6k{\xec\xde\xfc\xab?\xb7\xf9g\x7fn\xf3_[\xe2\xd8\xfeAl)b\x89:\x02R\xed\x9e\xdd`[\xbc\xcd\xabSi\x8e6\xb1?\xc0b\x8e\xb2xIkCgE\x99d\xf1\x91\xac\x7f\x86\xdeg\xb6\xbe\xdd\x07\x0b\xean\x12\xddx\x06F$\xd0U\x14as\x9a\x87Y\xab\x1b*\xa8\x1dE\xf1d\x91OIV\xafj_\xb4(_\xe8\xd6\xec<4\xb78 's\xf2\x8ed\xf9\x02\xf9\xdf8\x00\xc5\xa3\xf0c\x8c\x8f+e\xbbl\x11L\x85ZO\xebL\x01U\n\xd5\xa8g\xe5\xc8\x18\n\xafC\xf4\xb5\xa7fu\x84\xb1\xd8\x95\xe2\x9d\xdau~\\\xdf\xcb\x0e\x82wmR\xbd\xd4n\xca\xaex\xbbf1]\xb2\xf0nN\xac\xf2\x92v\xcd\xd4Z\xbeV^\xc8\xa5\xd0\xd6:\xb6\xf2*\xf7\x19\xba\xb9\x8ev[\xb2!\x01\x86u\xcaw\x95\x0f\x07\xe3@\xf9\xbb\xe1^X\xbf\xecfQ#\x19\x91\x97)\x8b\xb9\x1b>\xb2\x95\xc2\x15\xfe\x99\xc9L\xb0\x0f?\x1b\x11\xa9r\xd3D{\x9f\xb7s\xba\xad\x148\xad\x13\xdd\xb4;i1\xd3\x80\xb4\x1e\xd2\xe9RT\x99\x97%O\xcd\x85~\x0b\x19{(r\xd0G\x18&\x8c\xbe\xf6\xbc\xc4N\xaa\x15\xedp@V\x02\xe44\xbc\xab\x12\xa0\xa8\xc5\xd9\xa6J\x83R\xaf\x9c\x91\xfcXX\x04MD)j\x99\xb2\x9e(9\xcdY\xc5\xe1w\xe6\x14\xce\xdd)\x8d\x14_\x93V*\x83\x8ev\x82\xc0H\xf9\xd5\xfc\xf6\x99\xf0I\x8b8m\xb0\xbb\xa8\xa0o\x82\x95\x06I\xf9\x9dA+\x0c\x14d\xcb\x91\x02\x85\x0c\xdf\xb4\x0b\x00\x06uB\xa3*\xa2a\x8f\x7fl\xf7\\\xb3o\xf0Xe\xb1\xe2\xfan\x8f\xbb0G6.\x8br\xf6\x07-s\xce\x9c\x90<\x05\xbe\xeag\x00*w\xd5a\x9c\xa0\xeeE.%\x9a\xb6\x8c\xae\x8c\x07\x83J\x8dl\xd9\xd2 \x16=\xa1&@\xe4}\xdc\x19\xc0\x8e&\x855\x08\xee\xa1Nc\x8d\\A\x95\xc6V\x1a7\xb4|56\xae\x85;\x8c5\xbc\\\xac\x8f\x0e\xf9\x8f\xf3p-\xc5H.\x03\xd82\xc1N\x1f[d\x9b\x91\xf6\x8c7\xf7\xe0\xb4\xe5\x7fpU\xf9\xb5\x9c\xec\xb8\x19\xa3:\xaa\x19\xf1\xf8\xacH\xd4\xebv\xfcFxL-Y/[[%A\x8c,\xa7o\xf4\xe7\xb2\x03\xc5x\x9a\xbc\x80\xb0\xb5kJ\x0b\xf9\\\x87ia\nl\xde\x94gJ\x9c\x80\xf9\x8c \xf5Uy\xa1\x1d\xe1\x13\x8b[/H\xa9A\xe5\x13\xf0\x832\x91\xe2\xf6v\x00\x91\x87~ \x1c\x02hn6\xe7\xf9dS\xad\xfb\x84\x81\\<;\x1f\xe1\x04\xa6\x1a\x1f\x91X*/\xb6\x03\xad\x03\x9b\xe1\xe8\xfc)q.o\xe5F@\x06eT9\x92\xc4\xfe\x854\x84%.\\ \x08\x9bX6\xda\xb5X\xcd\xe4\x85\xd9,\xb5\x89A\xd5\xab\x8a/34\x15*9\x81\x9ecED\x91[\x1d\x91gfd8\xc1(\xf8\xe8\xf9\x1d7\xdb\xc0\x17W\xe2G\x0d\x11\xa7l\x86\x9d\xdc\x88\x98\x101\x80[\xe8\x83\x83\x81\x88\xe8\x93#\xde\xff,*\x98E\xady\x93\x18\xda\x1c\xf1:ff{\xc2k\xa4\x90\x86\x80\x1cF\xc0 \x81\xcd\x06r\xf6W^\xf4\xc8`\xd2\xa7 W\xa1+\x07\xb1\xe7\x97\x90\xd2\x0fJ8y\xe7\xb0\xa3\xc3\xcc\x0c\x86C\xee\xe9\xe7\xb1\xcd\x96 G\xa4]\xd8\xd7V\x9a8\x13^\x8d\xf6cg\"Y\xcc2\xdc \xc4\xcaZ\xd2\x18\x1a\x96\x06\xc4\x00\xb6\xf0\x94\x8a\xa4Y,,\xd2\xf8x\x93\xfaY\xe1p\x0c\xcb\x0c7\"\xdc\xb4L\nDDQE\xc9\xa4m3:\x89\xe9f4~l~\x00\x93o\xd3SEV\x1e'*\xb2\xea\x95\x8eY\x06B\x87\xd6\x81J8Nu\xfd\x95S\xc3\xa2\x03\x92\xd4\xd7\x12E\x9cqW\x02\xe3\xf3I+1\xbe\x12\xcb&|o7\x1b\xd8\xc2r\x90\xf9\xf66<\x82\xa4\xdcl\x13F\x83\n\xad\x9c8\xc7b,\xf8\x80\xe7X\x84h3\xe1\xe65\x031\n`\xa2\xa3G\x93oT\xd6 \x9b\x1e\xeb\xdfi\x89\xecz:\x896J\xabM\x15\x9fy}\x1c\x96\xf7\x9a\xcfR\xb9V\x0f}\x88ZOK\x06\xaf\xed\xed\x0c\x1e+(\xdfv\x12;E\xbfC[\x04<\xbb.\xedj\x024P\xb5N\xa1\xe0\xaa1 \x96\xd4\xe2Q\x0c\xb0'\x01\xaf\xa3\x13\x88'Oe\x92\\\xf4\xc6P5\x95]\x14\x04U\xac5\x1d\x98\xbf\xbb\x1e\x98v\xb2}M<\xb0\x99\x8c%.{\x84x\x16\x97\xf73\x11da\xa3S\xed\x88n\xe1\xb4'\xad\xa4\x8a\xa7\xe4\xc6\xd3\xb2\xceuO\xfc\x92je\x0d\xb6;\xb3\xb3\xdd~\x00\x9a@\xcbk\xe2\xb9\xbf}Y\x92\xd4e]\xba0\xf7\xdf~\xdet X\xb8\xc9q\x914\x89\xda\xe55MZ(R$\xb3\x0e\x86\x82V\xf8U\xd6\x1f)CT\xa3\x0cQ\xc0\x8f\xb0\xa8\x8d.\xb4\xcb\x0d\x8b\xd2\xeaa\x7f\x99q\xa2\x0b\xac\xe47\xc3\xbfX\x07\x9c\xcb\xcb*x;\x13\xf1L\x16\xf6\x1e\xce\xe7\xd1\x82\x80\xd1)\x0fTu\x00\xda\xae\xd4\x99'\xd8G'\x9a\xe7&$\xfcz-\x86\x8fo\xb6\x04X\xf0\x17\xe9\x94\xa1\xce\x91\x18@1\x1b\xeae-\xb4\xe7LT\x0d1oeve:\xca\x16\xb5(\x10@\xe1\x9e\xb7\xd0\xf3j\x02\x8f\xb0`\xcdM\xc8=\xac\xda\x87e\xf2'\x18\xa8\x0d\xfb2M7R\x84X\x94\x03HPR\xf4\x0bIbk\x17\x8bs\x9a\xf1\xca\xac*g\x0b\xcb\xben\x96P\xfa3L\x19\xa9Y\\\x03\xb1\x8a\xa3\x96B\xe7\xd7F\xa5\x04[\x958))\xa8\x93\xc9\x04\xe4\xb9%R\xcdw2\xcfN\\\xe9\x0d\x88^RA\x01\n\xf7\xeb\xd1`\xcc$T\xd4\x10z\xa1\x8c\xa7@\xecb\xc7h\xeeM\xca#3.\x08G\x1a\xf0\xf3s\xd2N\x16\xd9\x15r\xe7\xdcD\x94F\x9b4\x96\xd7\xda\x82\xf0\x8eJ\x90\xac\xa3g\x97\x19i\xdb(`\xdb\xaa]#C\xdb\x81\xa2\xba\x99\x99~\xb1RT\xee\x91\x89\xd1\xaa:\xf9E\x12\xdc\xd0\x986:2SK\xbe'\xa5v\xa3\xe2 HZ\x8a8 \xb8\x8fR\x1cy\xc4K/\x1e\x00\xffP\xb8\x97\x11\xa3\xfb`\x91e\xdaxD$\xfd,I\xa9\x9b4+>!\x1e\x1d\xdd\x1e\x07\x10\x8fn\x8f\x11\xcb\xe9ho\x0c;\x10\x8f\xf64\x19\x82\xfd\xb2 y-+\x83q\x97\x96;i\x08{\xcd6\xeb\x15\xfal\x0d1\xd0\x8f\x06\xba\x81q\xce\xf5\x85\xa8\xf1\xc1\xdd\xbao\xf0_?z5\x85\xa0 \xa7^Zq\x8a\xfb\xbb(x\xe5b7\xfa6\xed\x82,u\xe0\xdcRG\xe0\xcaK\x02\x99\xad\x0f;\x99\xe0w\x0fC\xd8K\x9fK\x86\xef\x96\x03\xff\xea\xfa6\x07\xf6\xbf\x03g\x88\xab\xd9*\x80\xa1n\x02\x973\xb9\"\xa0\x04\x16\xd8\x00\xc2\x13\x90\xf4\xb3dI\xae\xd2\x01C/K\xf3\xa2\xbe\xd4_\xc8H\xc9\xfc\x989\xe6\xc7\x14\xce\xbe\xa2\x1c\xc5U\xa1\x88\x03\xb4\xcd\xf2\xfa\x05\xe2\x1f[s!p\x13\x0b\xaf\xc9A\xfb\x93$\xceh\x9aOP\xb3\xecF\xdf\x7f28zGE6\x1b\x1e\x81\x84%F\xe8(6j\x0d\x810\x01\xc9\xcd\x818mI\x9c\xcc9\x88\x82\x04Zs\x8aq\x0bv\x14g4\x8c'$\x99)\x15\xcf-N\x11\x089D\x8f\xea\xa7\x95d\x9f\xa9gR=\x17MX9tv\xc5\xa8\x96j\xd7\xb2\xe6e(\xe5g\xb2\xce\x8c~\x89\xf2\xdar\xe3\xca\xd4\x8b\xa6k\x87\xb7\xd8E\xb4\x11\xaeN\x9d\xc8K\xcceJfQL~N\x93\x15I\xe9Zp\xbe\xee\xad\xb0\xeb\x94PE\xb4\xec2\x06y\xa9$\x88\x87Mvj\xe2\xb2\xdd F\xbd\xb2\xcax[\x8fo\xdduJk\x89\x98\x03\xe8=\x0d\xe38\xa1\xacuHb\x08c\x88\x8a\xf4\xbc)\x99$\xe9\xb4\xdf+H&\x8f\xb6\xb3\xb0\x98\xba\xab=s\x9b\xbc\x0c\xd1\x08\xf5\xeb\xb2\x7f\x12\xc5S\xaf\x8c\xbak\xff\xec\x12&!\x9d\xcc\x01\xc1f\x1f\xd0\xa5']\xd3\xe5\x11\x91\x0b\xfd\x04r\xfdq\x88\x81\xbcK\x93\xe5aL\xd35\xd7\x95*\xca\x9fv\\\xe9V(\x81\x0b\x7f\xc3F\x95\x04\x87\xfc\xda\xa4B\x14*\xdd\x1a\xcd\x08%!\x11KT\xfd\xc8\xbc\xacp\x00\x1f\x88p\xe5\xecPmA\x1e-D\xdd\xd9<\xef\x85F\xa2AHF\x99BH\x87\xf0\x9aT\xe1;\x9a\xca\xea\x06\x15\xa8\x17u\x0e4\xfb6\x00\xe2\xbd#\x01\xbc\xf0\x03xw\x05\n\xdc\x14\xfc\x90\x02\xeb0\xa1\xd2|-n\xa0\xb5\\\x1ao\x9b\x17M\xb36\x8c\xfa\x91\xf7\xe4K'\x9a\x81\x8d\xcb/\x9bt\xe1]\x15nN\xa1BgJEf=\xbe\xb1&>Jr\xb8\xa5K6X\x19\xa3L6\x80F\x0d\xe7i\xaa\xcd\x88yJ+\x8798\xfc\xd2o\x04\x89\xd6\x80\xc01\xb7\x15;T\xb2\xa8\x07\x02\xa3\x02\xcf+\x87M\x070\xa4W\x01C\\\x03\xc32\\i\xf0\x15\x04\x18\x1a\x85_\xde}\xdb\x19\x11XB\x94\x9a(Y\x1e\x13\xd5\xc9+\xe6<\x07\xc7e\xea\x11S\xcc\xd2%#P2\xdf\xf2?y7>\xcf\xd2S\xf4`T\x9d\x17\xcdG\x81\xc8\xd7\x1c\xc3>/\x06\xa4\xeb\xcao%\n\xdd\x8e&<\x1eT\xb0\xf8\x16\x08\xca\xe3I\x7f\\\xc4U\xddS\xc3\xa0aD\xdd:\xd8\x8c\x8b\xea\xa8\x90\x97\x96\xa1\xd8\xea}Q\x88 hP\xe1JCT4\xf3U\xc0\x82\xf8\xe8\x17V\x98Wt\xcba[\x8a\xf2$!\xde\x1b\x12\xc0\x0d?\x807\xeaR\xe9\x02\x01\x1d\x89x\x11\x0d\xd8\xa4\xe4o\xbems\xb5R\x1a\xf3\xfah7\x9d3o\x86;\x0cA\xee\xca\x92ig\xea\x86\xf7\xdf\x84\xb0\xd7\x82\xa1\xc4\x15C\x89\xc4P\"14\xe5\xa6\x10\x81\x97N5\xc3\x88\xf7\x8a\x04\xf0\xa3\x1f\xc0\xabo\xe7 ,\xc8\xf7\xeaZ\x90\xef\xcf\xc40\xe2\x8e_\xda\xc9\\\x1b~\xfd\x87\x91\xa8\xc4\x9f\x8e\x88\xf4Lp\xba\xcfT\xe8\x10!\xcc\xb4\xf1\x10\xcdu\x14,D\xbd\x9fg\xff\x95\x88\x84.1\xa6\x87\xec\xfa\x89x\xc6\"z\x8a\x93En}\xab@W,\xd1\x8f\xc2\x00:vr\xb1\xb5\xbc\xb9\xcbo\x1a\xa4Xv5\xf5rZD\xd7\x02\xfb\xbf\x06\xd1\x1d\"C\xdd\xf6\x02\x14\xe1\x95\x15\xb7p\x8b\xf3\xa4\\/\xd2\xe6e\x89\xde\x95\xb6\x11\x02G\x0e]\x18\xa0zI\xde%o}S\x0c\x1e\xf7r\x04\x07<\x91\x0bG\x89\x14Q\xa2\xbc9\xe07\x07\xcd|\xf9\xeaepYt\xa0 \x95s\xb8\x9a\x86\xe0\x9d\xf9\xd1+\xf3\xa3g\xe6G\x98\xa3\xcaK\xe3\x00N(\x13-b\xe5\xcdoT\xb0\x86\xb1\xe0A\xb7\xa1g\xd4\xb0V:\xec||V4\xea\xec\xf3\xb7\xe7qi\xf2\xb1w\xe6\xa8L\xe0i\x9e\xe6Eut\x1b\x9aW7oep#\xaa\x89S\xae\xcc\x85\x89\xaf\x07\xe5\xdfRg\xa1\x89\xd9\xac\xcf\xc4I\xf9[J&Z\x95\x15\xef\xff\xe6Me\x00\x15}\xae~\xb2R\x99\xa0\xda\x06\xcc\xd3\xec\x1f\x93\xe5\x8a\xaeQL.~\x0c!\x8f\x85\xa8\xfd\x1bm\xa6<\xadM\xd5Qc\xdc\\\xb4\xd2J\xcd-\xd4\x7fS\xacZy\xfc9N\xcec\xf8L\xd6\xd0\xfb\x1bl\x03\x85m\xf8[\x0f\x92\x18\xd8/\x89\xc7\x06#y\x05z[%\xf8D1\xfd\xb2\x16\x87\x16)\x1c\xf4\x86\x15cBu\x892\xa9\xd7j\xc1\xadJY\x08e4%\xce\xc1~\xb9\x0e\xcd:\xcc\x955pT\xae\x1b7\x8ey\xa6\xc48\xfb({\x8f\x9a\xf8I\xdcT\x01\xcd\xe2\x00\x16\x0c\xc7z\x7f\xff\xfb\xf1\xf1\xd1\xeb\xd7\x1f?<\xf9\xe1\xd5\xe1\xf1\xfb\xc3\x0f\xc7\xc7\x7f\xff{\xaf\xe9\x08\xb2bog\x0eJ\xa3y;\"\x18\xaa5\x91z\xb5& \x05Y([j\x88\x91\xcd\xe5\x87\xa6\xf4\x8eg\xa0^\xae\xe8\x9a\x87O\x17`tSDL\xdb\xf7bU\xc9\xb5\xb2\x04a\x94\xd9\xeck\xe5\xebb9-\xca\xb3z\x97kJ\\\x93p\x9fY\xe9\xd2\x0c\xf3\x0ex36\xdei\xec\xe9L5\x86v\xd7\xdf\xa0\xd2:\xe7*\xad\xd3\xb8\xd4d\x9d\xff\xbfM\x93uj\x87_\xa1\xee\xd3\x14XT\x7f\xad\xe2\xd1\"\x96\x0et+E\xa9\xb5*\x95Z\xab\xaa\x82I\xfe\xac>\x10\xac\xc1*VuV+\x17\x85\xcf\xca\xa6\xf0Y\xb5)|V\xb1\xdc\x870\x84\xb3X\xdc`[\x11Q2\x00\xe2\xadcF\x9c\xfc\x00\xd6\xd7\xa7\x11Z\xff)\x1a\xa1\xf5uj\x84\x84\xff\xbdM1\xb4\x8eK?}N\xb9O5\x94{\x19\x07p\xcc\xf6\xc9\xda\x81\x16\x9ft%l\xc7\xff!\xc2vn\x85\xe6\x92\x13\xb6%\x1b\xefI\xec=u/\xbby\xf1\x0d\x84\xed3'l\xef\x15\xc2\xc6n\xf5\xf38\x9bG3\xfad\xb1p\x8d\xe6\x7f\xef\xac\xe8~bWt\x1f\xc7\xa5\x83\xed\xb1\xba\xd7\xcecqC\xec\xb5\x13\xdck\x17q\x00\xe7\xd4\x0f\xe0\xe2\xfa\xf6\xda\xc5u\xee\x8a\xf74\x9c|\x86\x11\xdb\x10\xe3\xe6\x86\xb8\xb8\x82+H\xd5\x18?'\xe1\xb4\x89\xcf\xa8\xb7\xa2JRn\xea?\xe4\x89\xd7\xe9\xce\xceC\x1f\xbf\xe7^U\xe6\xbd\x00\x07 \x92\xd0\xe8\xe2\xfe*#_\x11\xf2\xb9\x13\x80\xd8\xa8K\xc3!\xfb\xa5\xc9\xde\xd1\xe8%\xcf\xe6m\xbd(9\xbe\xe5\xfa\xbai\x1d\nM_\xe1L\x82\xbb\x7f\xbb\xd1N\xa00\xc0l\xe0\x01\x02\xb3\xfe\x16\xec\xc0\x80A\xfc1W\x1b\xee\xec\xf8\xf8\x99\x89/\xc0\xcc*E\x1b\xa3\xd8\x90\xfb\x90-X}-\xd8\xa5I\xb4\\\xc5GC0e\xc1i\xe3z(\xf1V\x8d\x8a\xa1\xfcn\xad\xfc\xb9p\xed\xff#\xd6\x8b'\x8d\xc5{\xc2H\x91\x83`\"\xd4\xc9\x98\x1f\xda\xa3\xbe\xcf9\"\xfb\xfa\x959HZ\xa4\x16d\xc0\xf5\xd0m\xd9T\x05o_\x84\x07u\xe0\xd0\x08\xcf\x92gB\x01(\xd1\xc0P\xf5\x18\x8a\xf5o\xa6\xce\x87\x06\x19\xc5;E`\xaci\xfdIm\xfd\xe3\xab\xae\x7f\xd3\xfd\xba\xb1\xfeIke*\x15e\xb3E4!\xde\xc0\xde\xa68\xa6\xba\xb4\xcb\xd0\xd0Q\x1d\xa5\xeb\xca\x05\x83\xeb\xdd\xe9N\xd1Z\xeb\xdd\xa7\x91\xac\xae2\x8b.V\xa6o\x8d\xcf\x16(U\xc3\xa0.x\xc5X\x11;\xd8\x18\x92\xb8\x1c\x99\x8c\xa8|\x16\x8e\x1e\xc5`]\\\xc1b,.\xa2V\xe95h\xb8_{\x95\xa6\xab\x16\xaa\xa2\xa3sZ\x1f}\x99\xa6\xc7\x18\xe3W\x9cLi\xe5d\xc22gQ\x95d\xb1\x83\xe6\xa1\x8fw#\xfb\xe9n_\xc4\xb4\xb6\x88\xd1\x95\xd6\xef\x8fXWa\xba\xb6\x86\xdd\xd4V\x85.\xa9\xa9\xb9R\x10\x14\x0e\xf0L*\xa8\xbd2\x99\x8ea\xc8\xea\xcc\x06\x06=\xd4\xc5\x95\xb5\xa0\"\xee@]\x92\xf2hQ<\xbflH\x11\xf3=\x97\xd6\x10!\xad$\x13Le0H\xac$\x13\xc4o\xd2\x16&\xd0i\xb2n:R\xa7\xd9&z\x1db9S\xed\xd9\x97\xba\x9d\xdc\x8e\x91 \xad^\xff\x92\x9fH\xdb\xe2\x07D\xbf%\xa0\x03\xee\xd9\x8f\xcb`\xb2\xfa\xeag\xc8[je\x1e\xda\xb2\xf3Y3\xf3\xb9D\x05\\\xa0\xd6\x15\x85\x9a!\xbc\xd7H\xef\x87q\x00Otz\xd7\x0fO\x9e\xbe4h^\xdf\xb2\xf7/\x1c\xa4\xfd?\nw\xbd\x96\xfc\xa15\x8f=kF\x99\x92\x19\x8eTN8\xaa;\xeaE%\xfdK\xf9\xaf*upK\x19\xf8\xd9z\xea\x1er=\xc0!\x03\xc8\x1f\xb1\xd7pO14z\xd4..\x16ho4K*\x87\xd3\x08ut\xec\x9f&J\x18!\xa9\xa6\xef\"%o\x1c\xfb\x01\x94.\x93Jh\xc4\xfb\xf5\xf2$Y`\x85\x04\xdb\xf3z[\xb4\x06\x11\xf5\xd7\xdbx\xf4\xa4P/\xbeu\xd1\x06\xbe\xb5i\x03\xdf\xb6i\x03Y\x17\xaam\xed\x8b\x9aE%\x80\xb8\x7fT\x12\xc8\xaf\x01[\xa6X\x97\xfeK\xa4\xc4vH\xf3\xf5\x8cz6V\x04\xc4\x82S\x91\x1b\x97g\xda.\x8f\xf6\xcdFk\xa3\x87\x1acP\xe6{0\x98\xde\xac\xa6m*\xb0GOc\x1a+\x88w\x9b4\x81&G\xf1\x94\\\x90\xe9{\xf2\xc5\x010\n\x89\x7f#\xa2\xce\xddz\xf9\xe9\xbd{\xeb\x08\x1cm*l\x17\xcd\"W\x87pa\x84p\xefn\x1d{!\xa7,\xd2\x94]\xd2I!\x17;\xf6\xde\xa9\xdb\xec:\xbb\xed\xbcI^u\"\xa6\x9d\x9a\xcf\xaa\xb3R >\xce,\xac?/WY\xaa!\xe4\x9c\\ \x052\xae\xee#\xbc\xb86\xd0\xbf\x8a\xb2\x0eK\xbe\"\xd7\xd5/7C\xb8\xf7\xdc\x1b!\xc7r\xb2 \xe3\x9eK\x0f\xa5\xa9\xc3\xb1\xfc\x85Y\xbb\x04\xdb&\xc6\xf2\xba\x9f\xbe\xf2\x12\xc3\xcc\xb91\x8f\x97\xd9e\x94?\xc5\xb0\xc7}\xce\x14\xc2\x01\xe4\x98\x92|\x1fB\xea!\x7f\xd8\x8f2\xc1'J#\xe0\x88\x8e\xb5\x94[\xbd.}wOo\xf5*\x10\xc0\xe2\xf5\xad^\xa6\x8a\x1dP1\x16D\x0d+\x8f\xfd\xabA\xed+\xfb\xb8\xcfD%\x84h\xb4\xebP\xe79)\xed\xad\xb8\x08\xa1\x97\xa0\xc7\xae\x0c\xc4\xcd<\xa5\xd0j\xb3\xde\x96\xbc\xcc\xd9W\xcfD\x95(Q\xfdBW\xd7X^\x92\x92ci\xe9!L\xeaT\x14\xc7\xc4$N\xf9T\xd2S?\x90\xf7f\x8b\x90R\x12{[\xbb\xc2\x12\x83\xdaEM\xd1\x13\xebV\x00\x01\x1c%\xcd\xa8\x13\xba\xc8-\xc4\xfd\xa0\xec\xc0\x87f\x1fJ\x85X\xd86XN\xe4e\x06\xf8%\xaf\x8d\xd6,g\x8b\x0f\xa5\xfaV\xe3\x0e\xed\xc6\x8eH\x8f^\x97\xb4\xc9*\xbbV\xf5 v\x897\x98\xda\x12#k\x0b!4n\x91\x98\xa6Qe\xac.CU\xf4{\xef\xdc\xba9#\xe9\xda\xf1Lq\xe4\x82cK*\xf2\x16.8\x0d\xc0V\xf2\x13\x8a@s\x8e\x03\xbc\xd6\x11~\xa1\x14Z\xe3Z\xa2\xad\x81\x01\xf8uG\x12\xd0\x03\x86\x13]G\xc8\xd4O\xae\x1f\xd4|\x82\x9a\xf0'0\xf5\x19Ok=\xbaT\x8db\xc0d\x9fbNT\xcf`\xde\x00UOz\x80 M\xf4\xe5\xc15\xc3\xe2Z\xa1n\xb0\xa8 KP_q\xeei\x89y\xbb\x89\xaf/S\xa3\x19\x08\xe3@\\6o\xbd\xef\xc2\x92\xc2\xe9!\x1c@\x0f\x19\x1f\xd8\x87^\xd03c2#\xc1=\x8d\x1eU^\xdf\x82\xe96\x1c\x8fE\xa9\xfe\xad\x01\xba\xacn\xa3\xd2\x14\xffE7\xa3-YBJ\x99\x14\xaei\xe1E\x83gN\xaf\xc9Y\x82\xd8\x01N|\xdbg\xb2\xfe\x06\xf2\xf3\xd4iE\x97\x159\xd4\x01\xad\x8a-VM\xd9\xe9\xd4\x19?K;n\xb0\x00\"\xeb\x02\xd7p\xad\xe1\xa0\xf2\x08\xf60?\"\xc3\x14\xd8\xe7\xf9\x90\x1a\xdbAU\x03`\xcdZ\x1b\x01\x84\x03\xf0\"A\xe5\xb09_\xb4K\x8b\xd2\xb7\xbcb`b-\xc8\x9c\xba\x83\xec]t:\xa7\x1d\xe1& \x93\xca\x08\x95\x86(;}\x12\\\x8f0\xbd\xa7F\xbb;\x98\x06\x8d\xbd\xb8\xe3n\x81Tj2\\\xa7\xae\xd0\xb8|E\x0c\xfer\xb5C\x82q#\xddz\xe4yYx\xac\xdc\xbb\x18K\x85\xe9\xb2`\xe8\xbaJ\x9djL\xd4gf\x0c\xc8\x01}?(u\x7f\x03\xad\xf9\xd9\xa9\x97\x93\x9c\xbe\n\xbb\xa8\x07\xf8\xbeF\x0f\x99\xdd\x00v\x06N\xbdD\xd9\xe1rE]l\x0c\xa2\x17\xf5dR\xe4\xf4\xba\xe4\xbe/\x96\xb1\xca\x8c:\xf0\xa2&#\xa4\xd3l&I\x1e\xd7w~\xcb|\x9ex\xb4T%\xf1m/\x04X\xfeq\x07\xbd\n\xf6\xfe\x83+{*\xfaw\xa5R\xa0P\xaa\xaf\xd4\xf3K\x83\x94-\x03\x9eD\x0d\x1d\xf1nc]\xf1{\x917\xc1+\xeb\x94\xf3J\xe2lW\xaa9\x8f\x9d\xa46E\xe6\xd2\xb3\xbb\xf2\xb2\x94R\xc1\xb3@5\xb7\x19*\xe4]\xaa\xe7\xad\xcb\xea\x91/y\xb8\xe8\"l\x9d\xd1\x82l8\xb5/\xb2f:l5\xd5\xe1T\xbf\xb6\x18\xa8\xd5?\xc6ty\x95\xe2L\x94\x96\xf7\xed\x9cb\xb5z\xeb\xcf\xb1_S\xb5Z\xcf$\x0e\xc6A\x0b\x1d3\xc3@\xa2\xa0\x1b\x05\x8e\xaa\x94\xb7\xd5\xfc\xa4P\xb0\x00\x12OG\"\xe5e\x18\x7fgQc\x1ev\x913\x90\x0e\x89\x84\xcbK\x1eC\xb0t\xec\xe5\xa8\x0b\x0d\x97\xfdp\xaf\xd1.=E\xd9\xfb\xfc\xc4\xb1\xc0g!\x03\x0eM>aE\xa5\x14nu\xe6<\xba\xa2\x13r[\xda\xe2<.\x12\xe3t\xc8\xa7\xa5\x9f\xe2\x8a\xf1B]&\xe9\xd9f)`\xa6\xcc\xd2/n\xba\x9fj\x9f\xc9\xfa\xed\xac\xc3\x90\x8aC\x8d1s\x9d y\x0dFB\x1eq\xee~\xc4W\xb42lW?mH\xa9.\xdd.\xba\xab\xd1\x1a%\xbf\xfa\xc8\xcf\xba\xf7\xf7\xf2*\xebb\xe0\xbdq\x8d\xb5\xb9\xac\x9a}/\xc3\x8b\x0e\xbd\xbe$\x9dT\x18\xcb\xf0\xa2\xeb\x99\xfa\xb2\x92\x8f\xc8\xa9\x137\xa3Yc\x06p\x00ob\xee\xc2\xf2\xd5MPZF\xf1\xd5\xa7\xc3\xbb#\xbc;\xd7\xb9\xa5\xa43&jC\x1eA\xdf|\xf69Zu\x80\x9d\xd2\xfe\xeb\x90\xce\xfb\xcb\xf0\xc23T$6tV\x17\xbe]\xa5\x04\xc3\x1ecMzT\xb9\xe3<\x90_\xe7\xd1\xa2\xa3\x99\xa1\x18\xcc\xefW4l|\x8eV\x1fc\x1a-\xbau\xcb\x81.\x87\xdcM\x05\xc5\x13\x82u\xeb\xafi\xe5\xd0d\x06\x03}\x7f4\xfcL:,/\xad\x18 \xae\x80R\xac\xbfkF)\xd6dw\x94b_}\x0bJ]E\x92\xf8\x87\x13w\xab\x940\xfa\x18\xa3\x9a\xb7\x92\xbc\x0d#+[\x18^\xc9NS\xa3vY^L\xa4\x8b\xaa\xb1yJ\x81\x96J\x18\x08vlo\xedL\xd4\xf3o)\xfb_0n\x1a\xc1\x87\xa2J$l\x9b\xa1\xd2L)\xfd\x14\xdf\xde\xbc \xdb\xdb9\n\xa9\xa2AC\xa1ry]\xfa\x01\xe4\xc67.\x03P\xcb \xfd\x17\xadJ\x92vY\x16Z\xf1\xc6b\xdf\xd9\xe5Zv\x85\x16\x8f\x12y\x89q:FY\xaa\x17\xfaN\x85\xc5L\xdb?\x00\xf7\x88G\xf5\xb2F?\xaa\x97!VB\xbd\xa4\xe9&o-N%/\xae\xc3\xaf\x14\xa9\xb2x\xa9\xcaKF4R\x11\xc3\xdb\xfa\x01\xbb2\xe1\xac\xea\xf6\xf6\x04\xdf\x1e\xb4\xb8\xb6\x82n\xafM\x02\xc8P\xe3y\xc0H\xdbp\x08\xef\x84\x98\xf3\x9cad\x86/\xf04\x7f\xa1\xf0\x0c\xf9/X\xdc6\"`\xa5\x00\xda\x87\xdd5\xaf\xec\xe0\xb9*SQ\x1cZ\xdd\x98\n\x19C\xd0\x91/\xed.\x86\xcd\xc3l\xfe4\x99vpt\xa1\xf32\xbb\x00\xd6e\x9a\xab\xd9\x06\xday\x04(\xb6\x17wP\x1e\x0ea\x00\xb7`\xb7\xd8h\x16\xd2%\xcd\xa4\xb3V\x05\x9f\x9b+\x7f*\x8a\xdf\x0e\xf4Uo\x8b\xd7\xf8\xc0\x9c\x16\xbf\xf6\x0d\x1b\xed{\x14\xd2o\xdf\xb9\xbd\xf7`p\xff\xf6\xdd\xdb~P\xdc\x86G\x8f`p\x176@\xe0\xf1\xe3\xc7\xb03\xb8\x1b\xc0\x9d{\x83\xfbw\xee>\xd8\xfd\xbe\xfe\xdem\xe5\xbd\xdb\x01\xdc-\x9fc:w\x8f\xc06\xdc\xbe\x7f\xef\xce\xde\x83\xbd\xc1\x83{\xb0a0\xfd\x17\xdb\xd2\xff\x12\x9f\x0d\xee\x05\xb0\xb7w\xe7\xde\xfd\xbd\xbd\xbbE\xf3\x87\xe2s\xec\xa6x\xf3v\x00\xb7\xf7\xee\xdd\xbbs\xff\xc1\x83\xdd\x07\xbe\xda\x84e\xcby*\x7f\x10c\xad\xcb\x83\x8eP\x83!\xdc\x1e\xc0w\x90\xc26<\x8f\xbd'\x147\xcd\x13\xea\x11\xdfg32w\x0e\x8e\xbbS^\\+~\x85^\xaa\x93r\xe9\xa6\x98\x11v\xd4\xdaA\xb7\xc6\x1d\xdb\xf5\xb5\xe5\xac\xa1 \x88:RX\xb9SW\x06\xb3\xbd\xf8\x9a''Sr\x01\xa8o\xbc\x8eG\x0b\x19\xe0\xfd:\x1e=c\x7f\xbf\x16&\x8b\x8c\xdd\x12\xa1\xa3\xfc\xb6\x08\xac.\xee\xab\x81C0\x84W1>\x89\xe2l\xc5s\xe3\xe3'\xef\x93<\xad\xe6\x95\xd1\x81\xac\xa6D\x12\xee\xad\xd5\xd9a\xeb\x93y\x18\xc5\xbcma\xcb\xe4\xb7\x93\x98\x86\x11F\xa5\xe3\x10\xb8\xee\x12c\xc4S\xdd)9[D\x1dB#\x0b\x01\xe5+1\xae\x84N\xed\xb3:l\xb8\xf7\xbbZ\xff\xcdT15\xcb\x02V\xe1\xae\x93a\xb5\x90&\xa4\x93\xc4( \x1a\x9b\x8bO\x03p\xa3\xaab\x93t\x14\x1a\x97\xe1\xeae\xd5\x07\xd9\x15FW\x00\x02[\xf7:,\xda\xc4\x8c\x06,x4\x82\x05\x08\xd8\xc9Uv\xeb\x87\x18\x93\x9b\xb4f\xeexj\x06\x92<\xd5\xaa}\x19\xda\xf9\xb9\xb5\x9d\x11 \x80\x8e\x9d\x1a{g \x87\xf5\xb3\xb9e\xb3mQ\x97d\\\xd0\x84\xa7aXo\xaegX;\xd7<\xacW\xf6a\xf52\xa4\x81\x15\xe3\x07\x1c\xc0O\xef\xdf\xbe\xe9\xf3G\xd1l\xcd\xd5\xb6\x82Z:\xe6\x16}f%\xc0\x87\xc6L\x9e\x86\xe6\xbe\xb6b\x10\x85G\x05\x07G\xe11\xfe\xbd\x83\xec\x9cS\x07\xcf\x1d:`\xac\xcf6\xec\xdd\xbb{\xe7\xce\xed\xbb\xdf\xdf{\x00\xdb\xe0Q\xc6\x90\xdd\xf3\xf9\x9f\x8f\x1f\xc3^\xf3\xf4\xad.\x94h\xedCT\xaf\xc2h`\x95\xcb\xe5\x95|\xb3\xad\xaeu@J\x1b\xdeV\x82\xa5\x00\xf8\xba\xf2\xd0R&\xa2G\xbe\xaf$-\xc5f\xc5}k\xcb\x97\xac\xf7\xc0\x96GC\x85\xa8\xdel\xe7\x0c\xd2\x80[\xee*1~\xd8\x7f\xeb\xe4\xdd\xed\xa1W\xb0\x9f\x15\x90\x8d\x18ds\xf8\x1f&;\xb0\xad\xc7p \xa9\xb8\x00c\xcc\xef>\x7f\x07\x0e\xe09\x9b{\xce\xd3\x91\xa2\xd5F\xfe\x8cd\xca\xd86\xf0[\xad%\x86T\xe5%\x95p\xde\xc6\x0b\x12\x9e\xb9p^\xd2,7b]\x8c5\x87\xb2oY,\xb6/op\x02 \xf5/\x01\xdc\xe8'3t\xa65~\xc6\xf3\x93(\xde\xf9\xd6s\x96\x14\x1b\xdf+\x88\x81\xb8\xc7\xe8\x80\xc8H\x13\x94\x94\xc8\xcd\xc7\xa9\xab\xcb\xdd\x92z\xbbj\xcaj\x97>\xae\xe0_\xc7\x0e|\xc7\x08\xd5\xebv\xefq<\xf9\xbf^I\xafzC\xfe\xf1,\x0el\xc8\xe6<\x86_#:w9\xa7\xa4\xcc\xa3\xf6b\xc77\xc6\xd3\xc9\x00\x81\xe6\xf8M&\xcb\xca\x9dK\x9fQ\x842=\xec\\\xea\x1b\xd4\x9bE\xdd\x96#t\\o\x0e\xbf3\x8f\x85\x18\xc4kA\x0b\xb3\xb2\x93\x9cv\xd5|:\x9a\xaa\xd3p=\x9b\x0d\x9b/s\xb89@;Q\xf2l\xf3\x12\xda\x15+\x81\xfaX\xb1$\xa8\xb7+&\x85\x17\x81\xaa\xa4\xf5\xf1\xde\x8d\xca\xf2\xf1{?V\x9a\xe6\xf7N\xa8\xe6\xe3s\xaa\xf9\xfa\x82\xd6?oBE\xe6\x97\xdb\x87\xb8 W\x04\xea\xcb\xe6\xfd\xa7\xc9bA\x10\xd2\xfbp\xac)\x90\x81\x01b_5\x0f\xd4\xb4\x92G\x1a\xe7 \x9e\x97o\xa5y\"R\x05^hGI\xf7!\xd3\xe5{\xbb\xbb\xd3O\x9f\xf2\xe9\xfd\xdd\xdd\x1d\xf6\xefl6\xfb\xf4)\xdf\xbd\xcd\x7f\xee\xde\xbe\xc7~\xce\xc8\x1e\xfe\x9c\x91\xbd\x19~3\xc5\x9f{\xbb3\xfet\x97\xf0\x7ffc\xd3\xe0\xcc\x14\xad\x100(\xc9\xa8J\xc7.\xbb\xc1i\xb0\xfb\xa0\xc6\xeb0.\xb2wx\xb1\"\x13J\xa6\x10\x16\xed\xf4\x14c\x8f\xbc\x07\x89\x96\xb0G3\xf0\x94\xf8\x88-\xc5D\xb0\xd9\xc8\xecA\x1cE\xb4\xaf\x11\x1f\xe8\x9e\x864<>\x16\xd9F\x9bX\xa9h\xf1\x84\x14[\x83\x0c\xbb&\x9a\x1aTQP\xb9]\x14\x82M\xaa\xf7yQ\xc4\xbcz\x933\xc4a\xf5f\x86ofUB4\xe9\xb6:\xb7\x1f\xe8\x97\xe7\xce\x83\x96\xe3\x18\xa8\xc8\xcb\xc1Co\x1b\x8e\xeb\xca\xe6\x15\xc6\x0eOT\xe6\x04R\x9c\x80\xf2\xd1V\xc4\xb8\xab\x9b7\xd9\x1f\xb1\x8fJay8\xc6\xec\xaf\x98\x1dA\x95\xfe(\xeb\xf2\xca'\xfe\xed\x07\xb7\xb5\xb3\x1e|_G>\x81\x94\x0f\xeei\x90r\xd0\xc4\xc7\xbd6\xd2!k\xb9pG\xe1\x99\x0e\x15\x17\x98\xb5\xf8&\xe4\xcd\x03\x17\x0b\xb2\xca\xb2\x8c\x8d\xa7s\xc4H\x9dY\x8a\x11\xa8\x15\x03\xe4\x1c\x81\xec-\xd8?sx\x0c+;]F\x9d!\x0f\xd0\xf5\x9b-bAK\xfeX\xa9-6\xc5%n\xb6u\x06C\xd8\x194G\xbd\xe62t\xe3\xfe\xa9\x00C\x08\x07|'\x82\xf4\x8e\xae\xb6\x8dy\x01fx\xfc#\xa9\x0f\x80\xff \xbc\x06\xe8\xf6\xf6\x19<\x82\x956\x11\x00\x1b\xd6\x92\x81ttf\xe0n\x8e\xb1(\xcc\x99\xc6Q\x9c\x01 \xf3\xb1\x89\x13\x18\xc2\x02\x0e \xf3\x8e\x03X\x06p\xc6\x03\x91py\xf7!\xf3\x96\x01\x1c\xe3]\xbe\xfa3\x0d?SK\xe2{b\x92\xae\xd9{'>0\x018\x8aM)\x0b\x10\xa2\x03\xfd\xb3\x93\x94\x84\x9f\x1bO\x9a\xe7\n\xeb\xe8\xd46\n\xb6e;\xd8\x0c\xf0\x93\xc4;\xc5\xd7n\xde\x04oY\xe6\x8c\x9e0\x08Q\xb9-f~\x89K\xa7<\x16\xdf\x18\xdel\xeb\xd1\x06\x050B\x02\xb4\xd0\xb8\x04\xb2\xc8\x08Nb\x89\x0bt\x8c\xfbh\"\x96\xb6\x18\xb8a8\xdf\xba \xda\x13y&N\x10t\xba-~0\xfc_\xff\x9f\xea\x876n\xc8H\xa5\xeas\xa9\xd4_\xdb\x11 /%\x11\xa7\x98&o\xbf\xa0Ml\xdb\xc5\xf0\x08\xd2\x87\xcd\x95C\xd3\xb8GG\xf1\x18\x01\xa7r\x86\xbbZ\xfeOI\xef\xd4\x91\xcc\xdf\x19\xd4y\x83\xe2pkRyQ\x91\xa98^\x9b\xf4\x1e%\x19\xa5\\S\x93\xfc\xa3*\x08\x9f\x1de\x87q\xbe\xe4\x8a\x9f&{\x92\xda\xad\x1db\xe2\x85\xb8VE\x06\xcf\xf7\x85 \xde\xae\xec\x13\xad0\xe6\x9bak.X\xcc\x00z\xec\x0fBz\xfc\xc4\x0d\x9b\xf7\xab\xfd\xe9\x8f\xb4\xcce),\x99\xf2\x15\x06Qch\x10\xeb4\x18h\x9e%m*\x97-\xd2\x8f\x93)aB3\xdek6\x81\xab\x89\xa2w\xb3\x1d\xca\x8d\xd4\xac\x1dZiG\xa3sbk\x9es\xe0\x16\x90A\xc1\xe4\x00\xd2\xfe\x0f\xf9lF\xcaS\xab\xf95\x03\xa3\xc7\x8e\xb7\xb0\x1fe\xb5\xb7Q\x8a\x8d\xccJ\"E\xe2\xa9(\x89\xee\x0f\xfc\xc2X\xdc}\xdf\x1b\x988\xda?''\xabp\xf2\xf9\xe7d\xb1\x9eE\x8b\x05\x0fY\xe9O\xc9*%\x93Z\xedG&O0\x96t\x15\xd29k}4\xc6L\xf1\xf3h1MI,\xbe,~\xb2\xe7e\xb9\xb4)\x99E1\x91\xfb\x0bqr\x91\x84S2\xed\xe9\x14\xab\xa4\xd8a\xfbz\x0e\xa2K\xd1\x19\xda_4\x1e7\x95\xd4\xe6qF\x7f\xc9\x18#\x8716Wk\x08\x83J\x02\x9b\xced\xd4 #\x0c\xea\\t\"\xee\xdf\xd1p\xcb\xb8\xdf\x92~\x94\xb1\xfd4\xe5Q\n\x95\x97\xf8f:\x80\xc8\xcbQ\xe5\xa4\xa7;a\xb7\xb1\xdf\xdd\xbd\xaaZ\x91\xf2\x83\x8d\xd1\x81\xb4]\xb9\xd8\xbe\xb74g\xaa<\xc9\xe5;Z\x87\x17\xa9!\x10\xfa\x05\x91E\x90\x8e\x85;_\xcd\xdf\x84p\x8f\x92H\x16'\xf4\xe2\x9a\xa9\xeb\xf2\xaaX0\xb8_\x97\x818\x16|\x7f\xbf\x15\xc2m\xec\xc4.\xf72\xf0\xb8\x1a\x88\x07\xf1\x17\x9cD\xa1X\xe1\xd2\xe0#H\x1e\xfa<\x85\xe8(\xf2\xc8(\xde\xde\x1e\xfbc\xbdv\x8f\x7f!\x082-h\xebU!\xa0\xd7\xd9\x0d\x1a\xd8.v\xc1^\xfd`\xe3\x8a\x8c;\xdf_\x05^bJii\x18\x8c\xc4{\x07\xc0\x90a\x1f\x12/\xaf\xb8 9M\xae\x97g\x042\x9aF\x13\xaa\xa8\xf6*^X\x0d?\x11\xe9j\x13{\xdf?\xa8\xebF\x94\xe9\x1c7E@&\xbas\x98\xdd\xfb\xbe\xf6\xe5q\xff\x1d \xa7\x8cN\xbe\xa7\xfc@YV_`\x80\xbe\xeb\xf7\x0f\xcfHL\x0f\x97\x11\xa5$mv\x10\xb6\x81Q^%\xd1\x8f2Jb\x92b\xd1M\x8er\x8d\x0ft\x96{\xb1%\xea(\x01\"\xb88\xf6\xee\xef\xfa\x82\x03h\xbe1CA\xfdc\x14\xd3\xfbH\x07\xd9\x9e\xad\x9c\x9f\xcd\x99-85\x1b\xd4\xc0\xb6\xe8G\xf1\x9c\xa4\x11\x15J\xaf\xbb\x1a\xf3\xc0\x8a\xa3\xdd\xdd:\xb1\x06\xa12\xd0 \xd5\xec\xfe\x8am\x9fU\x7fJN\xf2\xd3Er\n\x07\xca\x0f\xaf\x97\xd1\x94\x84\xcb\x9e\x0f\xfbmC\x9f\x06(\xfb\xb3!\xd4w\n\x08\xe1\x88\x81\xb2\x8eK\xe5\xd4\x98X]7\xf9\xb3\x86O\x19\xf7\xd0#i\x9a\xa4=\xc6\xbd.\x92\x8c\xb0?\xa6$\xa3i\xb2f\x7f\xae\xc2\x9c\xdfKI\x96/Iol\x8a\xd6Y\x1a\xd1%\x01\xa1i\x8e\xbd\xbd\x81\xa8a\x81b\xab\xae\xbe\xa0$\x16\x04\xa28\xa3a\x94w\x86\xe5S\xdf\x0f \x13j\x85F\xb6?\x13 OJ\xe5\xb8)\xdaS\xe1!h\x0d\"M\xb0 \xdd\x147i{ym\x8f9q \xa8\xaa\xe2{X\xae\x93^\x89\xc7_\x14xfSJ\x9e\x15\xc5\xdd\xc4\xcb\xacu[*\x15\xce\xc3J\xaa\xc4\xa0N\x04\xdd\xe2\xaa\xd1\xd8\x0f\n\x9d?l\xb3\x86\xab\xd4\x17\xf6\x8b\xaf\x0dJT\xed]RR\xae\xdd\x00\x0e\xb5\x86I\x06\xba\x1c\xeb,zH\xb3\x11\xdf\x9d\xe0\x8aP\xd0\xcf9\xe5Uy&\x85F\xc4KQ\x15\x92\xaa\xdbf\x86\x94\xa6\x19}I\x94\xb8\x83a!\x0c\xd5NK\xcc\x12\\u\xaa\xe8\x1d\xc5g\xe1\"\x9aB\x9c\xc4;\xbc\xd9[\xe2p\x98\xcc\xf3\xf8s\xcf\xb7\xc5\xd3\x18&\"\xb6\xb5\x06n9: \x06\\*A\x02\xee\x15\\L\xc2\xe0\x99\xd7\x86,\x1c\x89\xc4*?\xc6\xc8\x1f\xcf4\xff\xfa\xc7e\xa5\xf9\x9f\xa5j\xf3\xed\xcc#<]\xb1bND\xd8\x10\xa7\xe4#bn\x13\x0c%\xd7\xe3\x06N0e\xa7\xb4z\xe45\xe7\xcb\x16B,\x02\xe7(\xfby\x9c\xcd\xa3\x19\xf5|\x08g\x94\xa4@\xe2)\x10\xc6\xf5\xf7\x10\xd7\xce\x11\xedd:;\x04\x16GU\x97\xb6q\xcb\xc8\x86\x0f\xdf>\xe7M6\x88C^\x1c\x19L\xfa\x8f\x19\xb4 &>\x92\x9b\xf6<\x8d\x84\xae\xbd\x0em!\x85\xcb\xb5:\xa8\x8cw\xc0z{[\xee\x9b\xea3\x9fW\x8fb\xcbP\x1d\x90\x0e\xfb\xea\xaa\x83\xb6\xb5\xda\xa2\x02LH\xb8\xab\xdc\x04n\x92\xa2HV\x8d9,\x99.j\xa4#\x97^\xeeF\xe3\xcf\x15\x1a\xaf\x1b0)\xb8\xa8\x9b7\xe5\x1eVh\xdf\x16\xe1l\xd1\x01\x9b\x02_\xebiHC\xb6\xd4\xa8\xf7b@\xf3v\xf9\x9a:\x12E\x8e\xa4\x05M\x95\xc8\x17\xb36t\x94\xb6\x02\xb8\xff?{\xff\xbe\xdc6\x924\n\xe2\xff\x7fO\x91\xc2o\xc6\x03|\x84h\x92\xba\xd8\xa6M\xeb\x93e\xb9\xc7\xd3\xed\xcbH\xb6\xbb{\xd8\xfa\xa9!\xb2H\xa2\x05\x02l\\(\xab\xc7:\xd1gw\xcf^#\xf6\x01\xf6\x9f=o\xb0O\xb0\xb1\x11\xe7MN\xef\x03\xec+lTV\x15P(T\x01\xa0,\xf7\xec9\xdf\x87\x88nS\xa8B]\xb2\xb2\xb22\xb3\xf2r\xef\x1e\x92F\xc7e\x8bJL\x9a\x16\xfa\xe85\x87\xe7\xd2}C.\xb8\x18\xd4\x9d\x1b\xa9\nU\x17$\x85\x7f\xb8wO\xf7\xba\xe0\xfc\xaaK\xac\x91\x81\xdb\x05\x0c6to\xd7\xf6OO\xf86F\xc3\xe7%\x83\n\xc1\x88\\\x8b\xdf\xe5\n\xe7Y(\xd7\xc9\xffRj\x15u\x1a\x0f3&\x0d vdA@\x11D\xe3\x06.7N\xeb\xb6ix]\x8es\xdf\xc8\xec\x08\xf5P\x19\xd1C\x91\xebN\x1b\xa9\x80.\x02\xd25f\xf1\xa6r\xf3,Hv\\f\xb8\xa9\xc0#\xc8>\xbbl'\x98\x99\xd1qyg\x8eK\x19\xb9\x92SB\xc5\x9fC\x81 \xdfs\x8d'\x0f\x9f\xa3\xd4<\x93 (\x87\xa2z\xc4+]\xf8\xc9[/K\xca.P5]l\xf5\x8b\x94_\n\x86r\xfaT\xd7YBd)\xa9\xd5\x9c\xda\xc91\x95\xcd\xa2\x885\x86z\xb2p\xc3j\x94G_U\xac|\x84\x11<\xdcy\xf8p\xbf\xf7\xd0\xa4/95\xa2n\xae>\x7f2b\xfe\x8dU:N\xf2#\xbb\x87d\xb6B\x9dS\xa6\xf0=(\x1f\x08\xd2\xa9\x9a\x93\xe6\x05\xf1\xa6]z\x08\x88\xb2aQm\x88a%\x80(\x07\x1ac\xa2U\x8dA3!\xcb'\xf6t\x04\x1fQ K\xff\xa5\x9dloSY\xeb\x13\x1d2F\xf7*\xfd5(\xfd\xb5[\xfa\xeba\xf9\xbb}\x17\xd2NG\x9bk\xe0\x86\x9d3\x08U \x0e\xe8!\x92CS\x9e9\xa9h\x0cz\x98\x9f\xb9\xd59}\xac\x87Bn(\xd7H\x8f\xaa\xbd\xf7\xe9\xe9\xa9*+(\xd6/l\x8b\xbe\x16\xef,\xb7XtG\xf7\x0d\x9bI\xce \xb0|\x1f\xef\xfc\xc9\xa5}\xc8#/\x1eV\xdceM\xf3<\xd4\xcf\x93\x0f \xc4$-\xe4.\x18\xc3!\xbf{\xd56\xa0\xcb\x1b\xe3n!%}\x08\xb2\xe0\xaa\x86\x04\x9d\x8e\xf2I\xfe\xa4u`2u\xfc\x93\xb1\xe3\xd2\x05Ln5FY,\xc1z2\x86K\xda\x7f[\xa4\xe0!I\xc10\xea\xf6\xd7\xc2\xb6\x96\xde\xf5\x05\xa1\xab\x86\xf3@\xf5B\xcf\x92\xd94\x17m\xfb\x8a\xce\x9d\xc7Ny0\x0d\xc0\x1a\xa9\x89\xbfL@\xb84\xaer\xae/\xa1\xe0M\xfd\xc9\xa5n\x9c\xad\xfax\xd9\xbc\xc2\x02\xdb\x99\xe6M\xd7\x13\xe2\xbb^1G\xaa\xca\xb4\x1c!Q\xb3\xcd\xd1\xd1\x05u\xc9\xa4\xe5\xdclJ\xaf>\x97\x08 \x8a-l\x8b\x8e\xa7\xb4\xad\x1f\x97\x07\x99\xa7R\xe6\xe3s\x1e+\x02\x8fi\x84\xef\x9a\x0e!\xe5\xe89`]!u\xac0J\xf9\x91\"\xc4\xcf!l\xa5\xec6\xf5i\xa9\x0d\xbb\xa4\xc0\x91\x0f\xa3\x9f\"?\xb4-\xbc\x13\xe9\xf3\x9eyI\xcd\xc1%\x0b\x1a\xdc\x9f\x92\x14>\xb1EQ@\xbc\xd8F\xd9&\xd4X\x94\xd6\xa9Z\x0c\x1a\x8a\x94\xed]\xf5\x00=\x00Lu$\x97H\x91B\\\xb9@[-u\xf2,\xc8\x1c\x06\x9a.\x88\x04\xe5p\x93\xf0\x96\x05\xc5\xa2\xad\xea/\"\xc4\x13Wmt\xd5\x07\xef1qlf\x15\\\n\xdb#\xf0\x8dDI<\x88\xed\x8f\x81\xc5r\xa4\xf4\xa46\xf7\x14\x08uf>\x80\xfa\x81\x82\xb8\x91\x81\xa7\x10\x15p\x8c\x8a\x13\xbf!\xb2\xb2?\x03;c\xd6I\xc5\xe7>\x95\x8e#\x18\xf2\x1f\xe5\x85f\x9b\xc7\xc6\xe9g\xb5\xa6\x96\xe2\xa9\xb4ow:\xb1\xcb\xc1\x81\xab\xbe`Zf\xfefX\xbc!\xdd\xd4\xf3\x03\xae\xe7\xe7\x02\xbc\xa8\xecr\x08A1\xc4\xcc\xa4\x91\x93\x1f\xb3\x85\xa7xn:\x1d}xc0jFA\xb2m\x17\x13\xddFw\xa0\xaam\x0e\x085)q6\x89\xab*p|\xd2\xf5\x82 \x9a\xbc\x0f\x13oF\xdaE\xe1m\xb1+(\xca\xd7\x98\xc5\xc6l\xa7N\xa2\xd55\xaa\xde\x04\xe7c\x97\x83\xe4\x8b\xe0\xbc\x1eSaS\x9c\xf7k\xc2]\xb8M\xc1\x974\xb9\xee\xf0+~\xde\xb9\xc5 K\x19E\xc3ev\xb9{\x13\x9bp\xf4\xb9\x8c\x0c\xbb\xde\xe1\x13\x7f\n=\xd95\x93)\x98\xffd\x910\x17Ql\xc7\x024\xa5\x9dB\x14\xe2\x9d\x02Y\xae\xd2k`J\xe8?i\xe6Bd%9\x13\x02\xe4\xfb\x17\x89\xfd\x7f\xabMrb\x8c\x1dj\xd6\\)=rU\xa1\x98$\xb3\xd2,_V\xf7\\\xce\xcbVD:\x9b\xce\xdej9\xa6\x93v\"I\x8fk\xbfr\xc9\x84\xd9\x93C\xd8\xe9\xe8/\xb20\x1a\xfa8\xe4vq\xc5\xbd\xaaQY\xb6\xadJ\x0f\xf2_\xb2B'f{\xb2^C\xc0\xa5 \x8b\x9d\x9d)\x8c`\xe5\xc5 y\x19\xa2[J_\x17\"e]\xf2;+\xe1\xa0\x9e\x12b\xa43=z\xf2\xf5\xe3\xca\x0d\x9dQ@N\xdd\x98\xffyE\x93-a\xf8\xa8\"\xd3}\xfa$\xd4\x0c\xc5\x8d5\x9f\xf1\x10*\xe2;k\xc7\xcd?qku@G\xec\x92\x18\x86pl\xf3\xcblJ\x10M\xf3\xe4\x04z$TP\x8e\xd4\x9ac`\xfc\xef\xdd\x13\xbd\x98\xdaF>\x99\xa5\x13-\x83\xc6\x88>\x0b\xdb\xa2\xf5\n%\x01\xe6\x15\x11#$\xd2N\"\xd2IS\x95\x97q\xfc\x0b\xdb\xe2u\x02\x92$\x90.\xbc\x10\xaeh\x8d\xa5\x17_Zl\\\xa8\\\x15`\xc3f\x85hw \xd6\x82\xfe\x11\xe1\x95\x19\xde!\xf8l\xe1\x91\xbf\xe3R\xf94\xc2\x01[\x8e+}_R\xa9pMQ\x05\x80:\x8dRI\xe3\xa8*\xd5\x1c\xb9\xc9\xbe\xab\x08\xc2l\x05C\\A\xbe*lic~\xc4\xf7\xe0 \x17\xf0\x86\xfc\x88<0\xe8\xb5\xd0\x0e\xc7\x91u\x7f\xdb\xa8\xec\xd4\xce\"\x07\xa0aFa\xb1\x95$\x85\x07\xc7\x1f1T\xd4\x8d\xe7\xd7(\xa5\xbb\xa8\xb8\x92w\\Q\x10\x9f\xb7\"(R\xc3\x9a\x0bM\x06q\x07\xfc\x04\xc2(\x05\x7f\xb9\n\xc8\x92\x84)\xa9\xd2a\xe5\x06\xc2_\x91\xd67\x10\xb5\x01\xd5\xa2\xb6\x97\x13\xc9\x95\x8f\xae\xc6\x91d8eb\xad&^B\xa07\xd4\x96\x01:\xe0\x0b{\xac\x1af\x0f\x99 }1\xb6\xdfo\xd3\xfe\x98\xfft!\xad\xc9\x13S\xd3\x15\xbfOi\xec\x8b] 5^wI_0\xd3\xb3\x0e\x95n\xe9\xce\xc7%\xc5 \xa0\xa3?N!Z\xa5\xc9\xe8\x8f?Yn\xa9\xb6\x9e\x1f\xa3\x8b\x8c^([\xcc\x90\xb0\xcf\x15r$\x9c\"YJ\xf9\x1dP\x92N\xa3,U\xde\x908\xa6\x92;\x0c\xe1\\\xb9%\x80\xb2\xc3\xb5\xce\x88X<\x0b\xdb\x8a\xc2,\xa4\x03\xb5\xd8m\x92\x08\x88\xca.\xdf\x99\x1e%\xee.\xbc\xe4=\xd6b7\xd8\xa5\x17\x8c\x06,lk\x12\x10/\xccVB\xa7\xb6\x8c\xd6\xdc\xf6\x8d\xc4vn\x1e:\xd7\x96\xce\xfc\xd0O\x16\x96\x0bKm\xf14\xf6\xfc\xd0r!\xd0\x96\x8a\xfdy\xad-\xe5\xb3saB\x89G\xf5\xe3\x90\x92\xeaYM\xd9\xb9\xb6\x8cS\x9b\xb5\xe3\xa2\x85/\xde\x82E\xb2\x96\x10\xaf\xf5\xcf\xafb?-]\xbcn\xa9/\x91\x08\xe6\x9f\x04\xfa\xa8\xf8\xe6\xf5\x9d\x19\xaf\xa2qm\x913d\x86{\xd3\xc68P\x808^2\x18\x91x_\xe4\x11\xc2n\x14N\x88\x00\x0dZ\xbeu\xa3\xb0\x04e=\x9e\x07\x8d\x14\x174v\x15Mrz;\x01B<|\xb3\xbe \x9fs|\x92\xd5\xba\x8e\xa2\xe5\xc5\xf3\xa7\xf8{{\xbb8\xcf\xca\xb58\xfc\x8c+\x8cQ1m\x886~(h\xc1\x7fc\xeb\x84-\x06\xe3b\x17\xe8A\x8cx\xa8\xd1-\xac\xb9+9-3#\xd2\xda\x9c\xab\x171\x89M\xd0\x05\xa1\x12\xe7\xd4*\xcd\xadq(\xfa\xb2\x83\xdd\xees\xa9\\\"\x97\xe8}\xc4\x89\xbb\xf0<.Ux\n}Z\x89\x87_=\xb1\x0b\xfa\xcf\xe3t\xae\x04\x135\xf3\x82\x84\x00v\x0b1IVQ\x98\x10\x17\x84\xady\xa8^\xc0\x96\x96\xb8\xa6\xb4\xd3\xe1\x93C.\xa4\x8b\xedm\xba\x1b\xaf\x1b\x80(H\x15q\\8\xb7\x1b\xa9\x19C8\x86`\xec=;\x17\x14\xc6D\x17L\xb1f\x90s\xe3\xb6j \xcc\xe7Z\nb\xeehYO\x9bx\xdb\x8d\xc7\xc5\xa6\xdd\x9e\xd7u[\x1cva\x97\xfdnw\xf6\x0by\x96\xed\xc4\x9c\xf8k\xbbi{;\x00P T%\x1b\xfb\xaeb\xb2\"\xe1T\x00\xa5\x08P\xae\x96\xb0h\xcd5*\xf4\xee9\x9a\xf0%\x0cy\xf8\x1fcr\x06\x07\x90\xd9\xf2\x0b\xf4n\x92\xfe.[d\x95>\x1d\xc18tK\xaf\xce\xb0\x8a\x08\x1e\xad'x\x12*\x8b\x03\x9b\x1d(e\xfe\x80\xbdS\xb8\x02\x86\xf4\xfc\x9c 1f\xa1 \xb4\xfcn\x0fY\xb1\xe2F.\xe4\xb7y\xb6S\xb9\xd4\xaf\x18\xc1T\x18\xf3Z\x9d\xd5&*\x03\xf3\xda\x17L\xd4P\xbdL\x15\x8f\xc6\xc9\xa5\x90\xc3I\x89\xa3\x17\xd8\xa1\x0d_O?\xea\xd7|T0\x97\xbc\x9c\x07\xccfV\x1cBb\xe4exT\x96\x1d3H\xc5+\xa3t\n\xf6\xb95\xbcX\xc4\x9c]Hy\xc4YnH\xaf\x1f\xf8Vmp\xd2\xb8\x18\x98Y\x83\xedCy\xe6\xfa\xcd\xb2\xe9\xac\xf4\xad\xe4\x8a4\x16\xe7\x1a\"x\x02\xfec\x88:\x1d\x07\xe2qtf\x82A\xad\xc2\xb6b8\x04Z2\xb5\xe61\xdcNlR\x9c\x9f5:8D\x89LZl\xfeY\x97eg\xb03\x17\x9d\x97K\x80\xd8F\xc9\xa7\x8aM\x9c\xf9\x11 \xe4\xbf\xc6\xbd3i\xf7\x9a\x16\xbensF\x95\x1b\xd7:\x899)}Y\xb8Ap\xc3\x0d=\x861\x8a\xce8\x13'gm\xcc\x06h\xb9\xeaA\x10\x18\x8dRY\x84,)lVD\xfb\xf5\xb8\xdcJ\xa8\x07\xbc+*+\x91c\x8d\xcb\x11\xdd\xb9\xba\xf7\xecB\xa4\xa2\xc9\x89\x0d\x0eM\xb1\xa4\xec\x8a%}\xceq\xae<\x94\x04\x85K\xbe\xa6\x9b\x1c\xabu\xeb\xefM\xf3\x93\x0eF\nf\xb8\x8a\xaa\x18m;Z\xc4cL\xdb\x02:?s\x95\xa3\xa68eR\x85\xddo\xc4T\xe0f)eC\x13a|T1?)\xdf@\xbc4GP.\xa2\x9c\xeb\xec\x0c\x15=\x14\xe5n\x9b\x00U\xa8Z\xe9.b\x1c6\xf0\xc92\x1dG\xcd\x16q\xdc\x96\xfb\x08\x0fnd\xde\x0d\x16\x94\xca9R(\xe6\xf8W-\xa6{\x15{\xab\x8dN\xf7\x9a\x1b\x80\xb6g\x7fl8\"\xf2\xe3\xc1\x07?\xe4\xa2\x1d\xd7B4\x89\xbd\x94\x9c,l\x8b\xcefE\xa6\xc0\x85\xfb\xb0\xec/!t\xf1\xf5\x92s\xca,\x1f\xda\xb9A\xf1\xb3[\xbe>0i\xcd\xc0x\x8dI$S\xed*\xf2\xe6\x9a\x04\xce[\xe7\xb00&\x1e\x94!!\x84\xd3\x12(l\xbf4G&\xa7\xfa\x14]\xb6B\xc5o$W*\xa3\xa6^\xb2\xde\xf7\x99Ho\xab\x1f`=a\x95\"\xc4~\x9c\x9f\xef0\xa2+t\xe3\xb9 \xa9\xdb\xb2\x0e\xdaLJ>S\x14\xbb\xc6\xfe\x19\x94\xe3\xd2JR\x01/\xb4EE \xa9\x9b\xdc\xed\x1b\xd1K\xaa\x9bR\xe6\x9f\x87\x81\xadM\xe5\x07\x065\x86\xaf\xbb.\xd7qF\xf3\xfc\x8a\x11\x19$D\x82\xf98:\x93vz\xf7\xc2\x0f\xa7\x9c\xba\xd1\xa2\x1a\x8f\x9cT\xf6\xa6l\x86\x8c\x84B\xe7\xfc\xfe\x908\xc2\xfb;\x16\x14\xa7\x10#\xaa\x13\xd5\xd3\x9e6\xee&\x82\x84\x94|\xbb\x9b\xa3\xd8hL\xaa6rM\xd1Q\xd8\xd2\xc5Qu\x8e\xe5\xd9\xa1\xdf\xc7\xf9,\x8e\x96\xf4T\x86\x11\xbc\xfb\xa7\xa2\xac\x1c1\xdb\xc50\xd8\xed\x02g\x97bpW\xa3M\xb4iB\x1fNc]\x84\xbaz\xa4\x8dI\xeakO\xea\x1a%\xcb\x8dv\xd0\xe5\xcf\xb9\x1bK\x0b\xbb\xa3[_\xf5@\x93\x1bQMd\x01\xfc\xac\xa2\x9c\xd6\xbc.Z3\xee9t\xb2\xce\x98\x9b\xde\x01\xfa\xe0\x14\xc6\x9b\xed\xfbA8\x97\xb8\xd9\x9c\xe7\xf1\x85\xb8 |,\xd0Z\xc7\x00\x91F\xcf&\xe9\xde\xb420\xbb\x16\x02\xe5\x8f\xf9k;\x8f(\xee\xb6Ppo\xf1$\\\x07\x94-\x97'\x18\xb2\xd9\x85\xbaA\xa9/\xcb\xb0\xc2A\xe1\xed+\x9e\xccZu\x96A\xcc*\xfd\x99;d5\xd0\x92[\xc3\xbd\xafg\xef\xe2j\xf4\x85\x8a\x0b\xcd\xb4\xb6\x05%\xaa\xc3\xe7,o_\xfb\xadf\x04\x95ru\n\xe5\nL\x95U\xdf\x86\xb2\xa8\xaaO\x95B~>?\xf6\x9f\xec\xa4\xc8\xb0\x12#H\x84\xec\xd4\x9a\xca\xe1\xf0\x13\x12\xcch\x15\xfc\xf7\xd3'\xb8\xf2\xc3itU\xa5/\xbe>\xb272\x12&_&}\x00\x7f\xc81\xcd\x9f\x16\xaeS\xdds4\xc4~\x816\xc8\x06\xf0\x00\xf2\x9a I\xdf\xf9K\x12eiK)'$W\x10\xd9>;\xc0\x8a\xaf1\x1cB\xc1\xff\xb8\x80\x03\xe0\x85\x15\xb5\x05\xf6\xfb2LI\xbc\xf6\x82[v,>\xd7\xf7,J5]\xcb#C\xfdK\xe9\x83F\xf1\x873\xf9\xa8\x88\xad&\x96\x8fJ\xda\xd2\x98\xcc\x94\xec/\xec\x8d<_\xe5#l\xb7 $\xa55f\x10\x89\xdd\x1c\x0f4s&a\x1c\x05A\x1b\xfd\x90\x0c\x1d;\xa5\xcd\x05\x84\xff\xf9r\x8a\xd2\x87\xfc\xaa\x8a_\xb4\xb7,\xd4\xf4w'\x9d\xa9\xd6p\xb4\xb7s\x84\xf3\xe1$\xf5\xd7\xe8'\xda\xf5\xc4\xcf\xcf\xe9\\\x7f?\xc8/R\xa5\xaa\x1a\x8dV\x91bQm\x15FPl\x99\xe6\\ri\xf7<\n\xc5\xe4\xd9\x9dD\xfe\xb7\xee\xb2G\xe3q\xe5bD\xab}G\xec\xb9\xe5\x92L}\x16\x9b\xa5\x99\x84\x95\xbfP\xb2e\xb2\x01\xa95(\x0e\xe6\xac\x8b\\\x98\xef\xbc\x0d\x87\xa0|\xa3\x1dD\xb5Ni\x18\xe5\xe2\xe2|\xb8M\xde\x9a&\xde\xd9\x14P\xcdGU\xa2\x9f\xc8Q\x88\xea\xd1S\xd8#\xe1\x8d\x82eA\x07R~\xab\x99F\xdfDW,W\x8em\xb4\xfeF\x13\"kA>Zz\xd3\x1eV\x8eq\x90\x1a*l\xd7\xd7\xf0\x92\x89\xef\xd7\xd6\xb8\xf0C/\xbe\xae\xaf\xe2%d\x7f\xb7~$\x93d\xd0Ta\xbb\xa1F:\xeb\xef\x07\xa4\xa9\xcevc\xa5\xd8\xbb2\x94\x83\xe4\x9fm\xc8+\xd9hq\x95\xfbwWwxys\x1b\xf2\xfc\xe8\x18\x19Ee+\x90\x0b\xf7\x07i\xeb\x07.(`3\xff.\xae\xa3\xf8T\x18\x9e5\\\x03\x91\xc7\x8f\x9db`u\xca\x97F\xdc\x85V\xf8+\x9e\x16\x83\x846h\x08\xadP\x11Z\xa2#\xb4EI\xf1H\xd3\xc0\xdaM3 \xbc\xd4\x0f\xfb\x8d\xbd\xd7\xee^\xf1\x88\xbey\x9bM]\xd7nwhEZ\xa0\x05\x8d\x13\x8fP\xe9\x98\x87\xd5\xb8'A8X\xd4\x87\xd8\x12\x0f\xa5\xd96'\xdaez\xcdbQl\xf5\xb4\x9f\xeb4\x84\xba{I\xbc/\x13\xd12\xb6\xca\xc1\xc5\xed\xd213\x1a\xf1X\x85,\xbdQ\xd5'\xc4z\x1f^\x86\xd1U\x08\x82\n\x0c\x81\x0d\xdb\xa8\xc7`\x07l\x99\x12\x15a\x1d\xf2\xb8t:\x8e\xab\x05\xdac#)\xf9(\x92\xc6\xb06)\xe74a\xa0\xd3Dh\x04\xb3\x89k#\xa9\xc0\x0ef~\x10|\xe3\xa1\x96\xce\xbb}/\xb5X-\xcfkV\x9aW\xc0z\xdc\xd9\xa8\xc7Z\x84\x95U\x98\xcc\xfek\x04+\x96f\xdc\x96:^\x98$g\x10\xe3\x0d\xbc$}MP\xce\x16\x81\x11\xe9\xabwQ\x8a\x82\x92\xfc\xeeh\xe11\x8f:\xd9\x1b\xb0\xa4\x0c\xcc\x7f\xe6gUV\x13\xd6\xfa\xc9\x08\xfa\x83\x07\"c\x03<}\n{0\x1a\xc1>\x1c\xc0@\xbc\xd9\xa5o\xfa\xbbp\x00;\xe2\xd5\x0e}\xb5\xd3\x83\x03\xd8\x15\xaf\xf6\xe9\xab\x01\x1c\xc0v\x1f\x86\xb0=\xa8\x1d\x92g8>\x852\xb0\x98\xfev\x19DU!\x7f\x13\x07h\xb4;\x19<\xa4{\xd9\xee?\x1a\xc0=L\x0f\xebH\xb6L\xe5\xa5\xb0\xfe\x9f\xff\xeb\xff4PY\xf40*\xaas{A\xc91\xac_w\xb4\xea\x06\xd27\x0d\xa4_;\x10\xd0\x0df\xa0\x0c\x06\xffV;\x1c\x98:\x1c\xf0\x0e\xdb\x13O\xae\x0f}\xacC2I\x90\x08\xd1\xbd~\xa8`\xfd\x13\xc9\xd7\x0c\xa3y\xa1Wf \xe5qY\xe5}@?t\x94}\x91\xa7l+\xf3[nuS\xb1\xa8`\xb5\x1d\x89\xcb4y?\xe7#\xde\x96\x02\xa0\xd5\xef\xbdD\xab\x01\xa0\xebe\xa7\x85'\x10q0!\xf9\x08\x1dWjt\xf2\xc5\x0cs\xf2n\xb6\"\xa9\x0f\x03\x80\x97\x91\x93\x85\x17\x1fESr\x98\xda\x92\x07\xac\x1aWZ<\xb4\xd1\x98J\xdd{{\x83G\xfb\x80f\xf9OF\xb0\xb7\xbf\xd3\x7fT2\xf8Rp\xa9B\xd0v\x95\x85\xe3)\x9a\xc7\x12D\x06gj\x9d~\xa5N\xff\xcc\x85\xb0pS\xd7\xe6\xd9\xae\xbc\xd1\x9bxh\x89\xa32\x93\xbef&\x83\xe6\x99\xf41\xe5\x85v\xe1\n4C\xa8\xd7\"R]\xaa:\x90\xef\xc3\x0f\xa4\x03\x89]~X\n\xe5@jQ\xdaH\x0d\xf7@fr\\\xc3\xbdtL\x9bS\x82@\xaf\x1a\x0eL\xb7\x12\xa4\x1623\xed\x16\x13\xe3\xafl\xb3\x1d-\x91\xeaq_\x93\x83\xd2ZqV\x83\xbb\x9d\xd9*F\xec\xc06\xde\x94\xa8X\xb1#\xec\xd1B\xb1\x1a\xb5\xf8Qj\xfa\xb3\xf6\x83\xe3\x1a\x86_\xc2\xb4\xb0\x81f\x05w\x87j\xda\xadtP\x8b\x1d\xf9\xa0{.\x02X\xc1\xd4a\x036\xac\xcc\xcc\x8e\xe1|\xa8\x07\xc6\xa2\x86yj\x82\x85\xd4\xb0\xf8E\xca\xd1\xdcX\xc6\xc7\xa8d\x1b\xe4\xa7\xf5\xc2\x7faq\x9b\x9fA\xb9`\xa8\x80\x1f\x97\xcdU\xdd\x9e[\xed\x7f\xbfHB\x87\x9e\x989k&\x98x&\xe7\x18:\x06\xd9\xba\xf12u\xbd\x84\x02>\x1e}\xae\x9a\xdeJ4\xb2\xbd\x8d\x83\xa1\xab\xb7=`bv\xdd\xc0\x90\xb1\x92F\xe6\xb4\x1e\xc3\xe0\xf7\x1f\x03o\x0bC\xef\x8cD\xca\xbc\xf2\xa8v\xf4\xa3\x12\x9d\x97\xb7\x8f\xd9\xb0\x98\xe9 \xcb[\xbeJ\x15E\xb8~\xf5\xeb\xca\xf9\x16V\xa9\x8c\x1c\x9e\x01\xb6\xc1\x0e+\x94[\xbf1\xb4,x\x8f\xf9M\xeb\x86FKL\x1bFR/\xd4S\xcf\xf2v|\xa2!\xa4\xfaq\xd5\xf3Bw*\xa0(+p\xeb\xe1\x14bLy\xd2\x92\x04\xa3\x9cR\xb7\xba\x99)e?/^\x17\x176\x035y\x1f\xcfq\xae\xcf\xcb\xac\xd1\xae#\n#\x04J\xd9T\xca9\x13\xa2j\xda\xf0\x92\xc9}n\x8b\x91\xc6^\x98\xcc\xa2x\xc9\x8c1tn1\x18\x17\xfc\x9d\xa8\xd7\xc2r\nT\xaeY\xe9E/T\x85\xdd\xbcV\xbd\x1fG!\xb5\xe1y3\xb90\x0bi[qY\x1c3\x06\x0e`\xcc\x06\x85\xd0\x857\xb9\x14qj\x96Y\x90\xfa\xab\x80@\xea/Ib\x8cw/\x06\xb2\xc8\xc2\xcb\xdcG%\x1f]\xf1\x86\xa7\xec*L\xadx\x1aWW\x93O[<\xe2\x80apl\xe1}\xe0+\x86;\xb6_ k.\xecc\xe1 \xf8\x9a\xa8\x1bEW\xb6Z\\\xe9\xf1\xa6\xb0\x01\xd58\xdd\xd1\x8e%\xc4\xd1\xd9H\xcak\xae\xaf\xc1\xc1\xc8\x82]\x98\x8a)\xe8kk\x14\xdafZ\xa9|\\\xe8\xad\x97t\x0154\xd5\xa4P\x1e\xb5\x89E\xf2\x89J\x06O\xc5\xbb\x91\\\xc3\x9cgd\x16d\xc9Bj\x80\xfd=\x12%\xc2\xe4\x1e\x0d\xb6W1\xc9\x1d\xf5\xb2&\xbd\xa8\x8e\x9d\x12\xbe\x18e<\xd3\x8fL\x1a\xcd\x81\xfcW)g\x9a\x96\x19\xf3r\xdaZ^\x14\xcaDz\x9c\\\x15\xfb\xa7~\x1e\x9e\x89\xeb+\xdd\xa4hLH\xabLB)\xb1`Z\xc4\xba\xaf\x84 \x10\xe7e\xe5\x9e\xe3\xc8\x0b\x02\xba\x0d\x8bE\x9eF!\x81\xab\x05 \xe1*\xcf\xa8\xb45\x82\x9e\xa5\xe9?U\x89f\x89:n\xd8]\x92\xfaAP\xdajj\x979d4\xbe\x00\x85\xcc\xe6W\xf2\xaa\xb9\xd2;;b\xdcJ\xb4adw\x99@\xab\x93.Q\x90\xdc\xe9\xa9\xdc~\xc5\x97\xac\x18yy0\xa5\xfd\xd6$(T\x00\\|m\x080c\xec\xb6*\xc9\xea\xbb,{\x9a\xd5\x9d\x99(\x9b\xc8\x07\x0c\x85J\xe9\x10J\xf37\xd2m;qa+V\x10I/\x1e\xb5>r\xecXY#<_\xbe\xd0\x89sc\x04\xb1\xeaYP\x7f\xa9R\x0b\xdb\xdc\xe7\x84\xc8\x10\xc5[\x04\x01p\x16B\xb8\xc4\xae`\x0c&\x95\x81\xe9U\xb8,[n\xd4\x15M\x16\xfc/\xe9\x96\xb9-f@\\\xdd\x06=#$Z\xe6i\x90\xf93\x95Q\xac\xb6\xa6l\xb1z{\x0c\x96{=\xe4D\x969\x90\xab\xc4]!.\xb7b\xb5%\x9eZ\x97\x89\x17sH\xcaBQ\x14\x1f{\x93E\xb9\xa2\x94\xe2|\x12\x93\x12.\xb4K\x8b+\xf0*bDSKU\xb9\x0din3\xda\x04@Lgz\xef\xde\x06\x8c\xb6\x9e\x15DK\x97\x10\xbd\xd9\x1c \x18\x04\x10\xd2qxV\xa9|c\xf3\xb4\xb8\x18\xc9X]+\xb7\xa4h\x84\xdb.\x97\x16\x9e\x0e\xfc\xfd3\x9a\x940`\xc7iZ93\xcd\xf5\xf5\xab\x96\xbc\xf6^\xdb\x98X\x16\x95\x18\x84\xa9/\xf0\xe2\xee\xde=\xae\xad\xd8\xc6\xc4\x0c>\x86\xb6\x1e\xe6\x8e\x95x#\xd4\x9c\x1d\xb9\xd5\x1c\xcb\xfe7\xbb\x0f\x06\x8eM\x87\xc4\x91\xd6K\x12\x7f\x1e\xc2\x10\x8bv>\xd7\xa2\xd0\x05\xdf\xc5Tr.x.\xcf\xe6:P\x13\xa4N\x9aH\x0b\xe8\xee+\xe8#\xe7\xcc\x8f\xaf\x95\xaf\xf4\xaeY\x13\x17x\x08@\xad\x07\xd6$\ng\xfe<\xab\xc9$.\x985\xbdl\xd1\xe4\xc1\xb5\xf6\x82\x8c\x0cA1\x02\x96\xd6\x15&^n>V\x9cN\xec\xcec\"]\xe5\xc6\x15\xc9\xba~\xe8\xe6a\x97\x87\\\x8c\x84\xc55\xd4B\xd1\xdd8\xa12\xa5h J\xa6\xb9*k\xc4s\x06\xa60\xa4\x87>B\x86\xb1\x14\xe8\xa7U\xacR,_\xaa\xe0m\x11\xcfn\xfc\xe8\xa1\xe3b:\xd4\xf1\x19\xcbl\xdd@U]\x9d\x02\x9cr>\xde8=\xcb\x99y\xfaG\xb9\n\x92=\x82\xfd<\x86t{\xfb\xb1#|\\-\xcf\x82\x0e\xd8\x9dN\xe8\x14\x1a\xa8\x9d}U\xae\x97\xf4(\xc2i\xc2\xb6f!K\x98\x8bE\xb9\xc4a\xd3\x06 \x0fq\xef\x82\xe5@\x87\xfe\xef\xef\xa2\x8dY(\xbc5\xf1\xec,\xdc\x06\x1e\xc3\xcd\xe32\xcb\xd8z\x8d4\x14\x1f\xe5\x1b\xc3\x9a\x15b\x8f\xc2\xe7\xe0\xa9E\x9c\x8a\xea\xa1\xba7\xe9\x93\xd9\xe8\nU\xde z\xf4\x07\xdd\xed\xf2\xcd\xe7\x12'&r\xe8\xb2\xad\xeb\x91\xbeTM:\xe7\xe7$}s\x15\x8aj\xcfI2\x89\xfdU\x1a)\xf6\xd3\x99\xe9\x83\xd7\xdeR\x0dh\xe2\x99\xea\x9e^//\xa2 iq2i\xd7\x98\x91`~4\xc76Q\xf1\x14\xe5D\xb9\x06\x86\x18\xc8\xec\xc4\x11\xccN!~kC\x0d\xeaW\x1a\x9b\xb6\x99\x87M\xc4\xc2\x14j\x14?\xf2\xd2k\x9b@\xee\xb2\xfa]\x19\x81L\xaa\x0e\x0f0\x82\xdb\x7fY3\x91\xed{r ]/g\xffS\xb9\x95\xcf\xdc\x15}\x1d\xff\x1b\xda\x0fUUs\xa4w\x03\xa3\xdc\xe9mq\x94\x9ek\x9a,xt\xfb\xe4\xc4n<8\xd3B!Fj\x85\x0b$w\xc4\xd8\x10O\xb7\x1a\xe18>C\x07'\xe1H\x91\xa1<\"\xbe\xa8\xacH\xd8\x00g\xb9\x8fv\xfc>\x1f\xfa\xd6\x16W\xf6\xb1\xf0\x03\xe5\x14r\x9f>\x19\xb4d\xc8\xd5\x9b\xf4\x83\x0b\xd24\xdaVX\xa1\xe7\xa3\x88\x0b\xd6\xf99I^E\xd3\x0c\x0dN\xd4\xa5D>G\x16+Yt!/N\xc8\xf7\xde28BnE\x93\x16\x7f]D\x88\x0e\xed\xbdAO\x83q\xc8\xfc\xb0\x80\x0dq\xb7\x18\x04\x1c@\x0cC\xcd\"\x0bSS5\\p\xd1\xa9n`\xb5\xa8\xaa'\x0f|-#\x91\xe3\xaf\x9bx3\xf2M\xe4M+ \xacjID\xce3\xb1\xd0\xc8q|\x88\x03I\xba!\xb9zG\x89@x\x1c\xc7v\xa1IB*\xad\x1c\x97\x1bz\x916\x11\x84\x9d\x87\x06q\x88\x8e\"\xb6\xcbs\xf0\xc3I\x90M\xc9\x10\xc6\xa1=\xe8\xed8g\x12\x12\xfcC\x07\xd3\x1f\x0c\x9c3\x85\xb0-W\x81?\xf1S,\xdf\x1b<\xc0P\x06{\x83\x87\xfc\xdfG\xec\xdf\x9d\xde\x1dM\xe2N7S\x10y\xcc[\x99t\xdf\xbd\xf9\xea\xabo\x8e\xcf\x8f\xde\xbc~\xf1\xf2\xabS|\xf5\xfe\xed\xf3\xc3w\xf2\xab\xda\x9d6\xe8\xed\xfdN;-[M\xbd\xaa\xf6\xd2@\x165\x07\xf3\xf5\x8a\x0c!\xab\x9e\x10+\xef\x9a\x02d\x08v\xcf-\xb6\xa0c\xff\xfdF\xd5\xe2\x02(\x9a?\xd2M\xa3\xf9<\xa87\x0ej\x18\x91&\xabJ>\xa2\xd4\xd4uy12\xfd\xbaYL\xb2K\xce\x19\xe4\xac*\xaf\xa8Y\xff\xfc#63K^\x81\x1cod\xad\x89n\xaeU\xad\n|\x1eA!2\x12\x8dJ\x0ef%l\xec\xef\xa9\x0c\xc8\x97\xc2F^\xa7\x85b'\xa7\xca~\xc8\xe2:\x94\xd1\x8c}U\x1d\x04\xdf\xbca\x83\xae@\xa3i\xd8H\x17\xa1\x18\xac\xa0\xa9\x16\x8b\xde\x19\xba\x9br\x87\x94\x1a\x10\xf9\x1c\x18\xdeQy\xa1\x8f\xb7\">\xdd\xd1\xd6%\xb9N\x90\x91&\xdc\xa3\xc2\xc2\x1d\\\xbc\xc3\xe47C\x16\x14w\x1c\x9e\x9d\x95t.\xa22\xdeZ\x1e\ny\x05%\x0c\x0e\xe9\xd8f]\xa0\x91\x86T\x1d\xc3\xd0\xa7\xb1O\xff\xd2\xe2O\xa3haT}7~\xb9\xd1\x01\xcc \x9a&\x18\xde4\n))\xda2\x1ew\xb7\x1c\x9d:4\xbf\x1cJyK\x96\x87\x98\x90\xfc\xeezE8o\x0c\x1d\xb0\xc4\xed\xaa\x977\xbae\xba\xafn\x18\xec\x86\x9b\xf8\x91~\x0f\xef\xedj\xb7\xf0#\x95\x05\xcbP\x18.\x1a\x0e\xed\xc1\xbecg\x94\xf2\xec;\xb6\xe5\xa7$\xf6\xd2(\xa6\xe8\xd3t\x94\xa7r\xf0\xb2\x1b\xa7F;\xa8\xbb\xba.h&\x8c \xa6#\xa8\xe2EH>\xa6t\x13i\x12\x91\xd3\xdd\x80m\xe3b\xbc\xcc\x87\xbd\x19\xb0%\xf5\x84\n?N\x1a\x1fh\xc1\xba\xdb3\x93\xc0=\xe9\xea\xa3\xc4\x94\xfb$i\xca%\xe8W\x14\x9dEf-\x17\xd7.B}\x04\xe5\xd02N\x81\x98\x06\xae\xf7\x18\x85\xbd\x07;\xbb;\xbc\x7fV\x1f;\xa2\xc8\x82\xce\xdf\xf4-\xf3\xc2L\\\xecd@\xcb2\xd8\xe6\xcdt\xe88\xb7\xf9\xa0\x9e<\x81~\xcf\x81\x0e\xec\xef\xed\xed\xec\xdf\xcd\xa6\xaf\x1c\xa9\xfc\xe0\x18\xf4\x8dg\xea\xc0\xe9\xceI*\x0e\xf9\xe6[Y\xa4\xf3\xeaIjd\xf1H\x03\x8b\x87<\xd1E@L\x0c^l\x13n{\xe4\xdcz'\xf6w\xf4\xd7#\nOV\xa10(\xa4\xb5\x03\xdb+\x92.\xa2z\x034\xc9\x8dl\x0b\xa3\xcd\x0b\x9a:\xf6\xcf0\xc0\xc5\xd8\xfa\x97\x7f\xc9\x87\x83\xaf\xa21\xa5Ng\x9b\xcd\x9b\xae\xf6\x0eJ\xbb\xfd\x1d&\xf5\x0evv\xf9\xbfLM:\xd8ej\xd2\xc1^\xaf\"\x0e\xf7\x1f9B\x14o\xd3Y#C\xad\xc3G\x99E\xf6\xc7\xa1\xddwlK\xdc\xc6\xbf\xf3\xe6\x96s\x06#\xb0~\xc1L\x8d\x1d\xba\xcf\xb7F`\x8d\xd9E\x0b\xfcrf1\x1d\xc1N\xcf\xe1VK\xa5\xe8\xbd\xa2\xa1\xba\xb0\xdd\x1c\xf2y\x9b\x16t\xe89\x80\x01L;`\x9d\x95\x9c\xe3\xb6\xda\xe9\x07d0n\x85\xf6\xee\x80%G\n\xed\xdd\x1d\xc7\x1cx\x8d\x8f\xe4\x01\x9d\xa2^\xd7\x1c\xda\x8f\x1e9\xb65\xf5\xd7Tl\xb0<\xad\x19\xccF\x81\x86\x1fT\n\xd5\x9b\xcc\xaeW\x00\xa0\xd5\xe4%]\xbf\x89\xd0\xd4\xb3\xe6\xe8\xaa\x81'\xb1\xdeV\x813\xe9~\x95\xea\x10\xd3\x95\x9a]\x8e\x13\xc0\x96#\xe6\xb1\xc7\x05I)|\xd1j\xe9\x99\xda(\xca\xd4of\x9b\xb7\xb9\xf5e\x86\xab\x92X\xeb\xc8\x0b\xff\x94\xc2$\n\xd7$N\x81\xa3y\x1a\xc1*\xf6\x97>\x06+\xc4)l*\xd25m\xf7\x81\xe1\xfc\xe9\xef\xe8%\xe8~O\xe5_\xaa\"t\xff\x01\x17\xa1\xfb\xff\xaaE\xe8\x87\x86\x83]}\xcf\x01\xbb\xab\x03,\x05x\xcf\xb1\xad\x97\xc7\xe7oO\xde\xbc{\xa3\x1ez\x9e\xaa\x9e*\x17\xab\xda\xab\n\x15U\xba/F\x8c>?\xf9\xe1>/b9FxXV&\x1e\xa7\xdd\x17\x8f!F\x8b\xb3) HJ\xe4\xac7\xe3h\x1c\x9fir\xa6\n.W\x8d\xed\xaa\xa7\xa3%c\xe5rP\xc7v\xa6b\xbc\xbb\xdc\xca\x1d\xefF<\x05\xdd\xd1\x80\x1b\xd8\x0d\xad\xe7B\xb9\x98{\xe3\x8c3\xb4'\xc6\xec\x93hzVX\xc0\x8c$}\xac\xcf\xb2\x19\xdf\x16\xf1\xf7\x0c\x14\xc5\x80\xf75\x1c\x1b=\x92\xff5(\x8f\xf6\xf4\xa4b_wEG\x99\xc2\xbeco\xb5\xa3\x16\xb78\xd99\x80<.5T\xe9\x00\x82\xa8\xfaz\xc2\xcc7\xab\x10Gsv\xcfaJ\xa2\x8c\x19Z{\x08\x8b{\xf7`\"\xfc\xb44\x1f>\x96\xa3@\xe1j\xe0w\x94,\xe0Z\xb0d!\xff.\xb2'\xd8\xda\xa7OEk\xfa\x05\x9a\xdcv\x81vM<\x12\xb7\xe3\xb3~\xb1\x1c\xba\xe1\x90\x01|\x99\x1c\xe7\xf7\x8ev\xaf\xc0\xe0\x12\xc2\x9a\x18\\\xce\nS.#f\x96\xec)&\x10Km\xcb\xa2\xfb6\xb7\xfa\xbf\xedT*H\xc5pmWg\x9c@ \xb6I\xb5\xdb8\x95\x92^\xe2\xdf\xf4\x94\xff\x15\xe9)\x0d\xe4j\xb0\xa3\xfa\x1dD-8\x18\xc9j7?\xb1j\xcf\xd19I\xdf\x8a\x8aof\xf5A\x92s\x90pZF\xf7\x94\x0b\x11n\xabqt\x06C\x93i\xdf$\n\x934\xce&i\xc4r\xe3\x83\xe4\xb7_.=(\xff-\x1d\xbb\xc3\xf2g\x9c\x08\x1c@\x06\x8aG\xf3\x86\xe0\xef\xdfzK\xcaV\xc7\x9b\xf5\x9e\x1f\x9d\xc2w\x07\xfdH\xf3\x03\xdc\x15\xda\x97\x9e\xe3\xf2\x93h\x8f\x1f\xad(\x0e\x08\xcf\x94\xdd]\xc7\xc5\xfdLe\x03\x177\xed\xa4,\"\x04\xecUI\xb9\xc0\xf2\x82'\xe2~wQq\xcc8:==\xc9XN\xbe\xaa\x19\xc7\xd1\xe9\xe9)eH\x9f\x93I\xe0\xc5\x1e\x9da\xd5E\xe3\xe8\xf4\xf4\x03\x15\xafx\x13ji\xe0\x930=!\x93T_\xfe\xfc\xcd\xab\xdaB6\x17c\xf1\xbb\xe8\x92\x84\xfa\xc1?\xf7R\x8fy\x11\x92\xf8eJ\x96\xfa6^\xf8\x81a\xe4\x7f~\xf7\xea\x9b\xc3 8\x8a\x82\x80L\xf4S\xa7U\x9a\xca_D\xf1\x92k\xbb\xf5\x15N \xfd\xdeX\xe5\x15\x99\xfa\x9e~\x86\xaf\xfc%\xa1b0.n\xf5\xcb\xd7\xde\x92L_GS\xf2\xca[iJ\xa3\xa9a\xd5\xdfz>]\xb1\x9f3\x92\x18\xd6\xe5m\x90\xcd}\xcd|\xd9{\xc3pN?|\xf5\x0d\x1eC\xfa6O?|\xf5:[^\x90\xd8X\xfc\xd6K\x17\xa7\xc4\x80\x0b\xb4<\xf2C\xc3\x80O?|U\x87H\xa7\x1f\xbe\xca\xfdM\x0d5\xa2,\x9e\x10\x16z\xdeP\x83n\x94\xd3\x05!\xa9\x1e\xaa\xef\xc8\xc7\xf4]\xecM.\x8fL[%\xafa(\x8e\xb2I\x0e\xbb\xbc\xe4\x86\xa5\x0b\xf7m\x0cY\xc98\xf05<\x81\xa9\x904a\xdd\xe9\xe8\xf8\xd4k\x17\xe60\x82\xe9x\xad\x18\x9d\xd2g #X\x8c\xe7\x9a\x92sd\xe7u%\x170\x82sJ\xf1\xcfu\xa7\x11\xf0c\x18\xdd\x89\xed\x0bz\xf6~\xfa\x04\x9e}\xe1\xc2\xcc\x85\x95\xe3\xc2\xc58(\xde\x05,\x07s2\x9e\x9f\xb1\xe8\xbaK\x8d/\x03R\xd6kz\xa2\xc7\x0e\\\x8c\xaf\x99\x1a\x99~~\xedB<\xbe>+\xf4\x99\xd0\x96Z7*}\xb4>9\xf4\xbd\xe1~_\xd5\x05e\x82\x954In\xfd\x9d\x07\xfff\xf9\xf4_\x8e\xe5\x93\x99\xd7pl+\x0b\x93I\xb4\xa2\xd2L\xa22o\x1a\xa7m \xdf\x84f\x01\xfcq|\xc6\xae\x00\xfa\x0f\x1c\xdbG\xef\x8f\xbf\x9b\xf5{\x15I~\x1c\x9f\x8d\xd33\xc5\x89^;\x11\x93~\xbf\x16\xf5\xf8\xa2\xea\xc4\x93\xbb5\xc4j\xbfMe\xb7^\xbe\xa1T\xa6;\x11lV\xe9-c\xae\xf6U\xab\xa8\x19\xbe\xae\xdc\xed\x04\x8ckS\xde\xae\xd8[U\xc3\xb0`M\xab\xaf\xa7\x9ct\xa8\xd6\x91k\xf6~W\x1d\xca5\x17,\xd5^\xe7\xfc\xfd\xae\xd3M\x88\xb2e\x97\xbc\xad=\xc7V\xbe:\xe7,\xb1*\xd5^\xf0\xd6T\xf8\\\xf1\xf7*\x01\xfc\x88\x1cf\xae\x8fW\x8eE\x91\x0c{B\x12\xc5\x91\xf0\x18\x8b\xf8\xfd[\xb9\xe8\x10F`\xf1\x8fp\x87\xcf\xecS\xa5\xd77\xf5\xea\xdb\x9f0\x92\xde\x08\xce\xbb\xb3r\x01\xa5\x84[[\xf5\xaa]\xb3\x7f\x9d\xa0\x8e\xc7\xdd\x98$Q\xb0&\xb6\xba\xa6\xf2CX ZY\xe6\x19\xd1\xdd\xcb\xaf\x01\x93\x15\x99 a9\xab\xdd\xc3\xea\x93\xdao\\xc\x96v5\xd9\xfaA\xb2\x0394zl\xf1\xa58!?1\x86\x163_\x8a\xac8\x0b\x12\xdao\x1cY*\xab\x8a\xe55\x1e\xb27*\xf6\xbdl\x9c\xf3\xba\x9aX\x05\xa4s\xc4\xde\xc2\x98\xaf\xe5\xc9\xe4w\xf1,p)\x0e\xdb\xc1)\xa8\x89\xb4J\x7f\xbej\xa2s \xae\xb4\xd2\xee\xb9Q B\xcb\x14\xc7\x01\xf9Y\xe7\xe1\xbc\xcf'\xfa\x1a\xcb\xe6\xa4U\xa0J\x94i\xf7|\xcd\xe4\xc9>.e\xf7\x1c\x00\xe9F\x97\x18\x94e\xe6\xf9\x9ahc\xea\x93\xe0\xc5\x03\xdf\x1b\xcd\xd5'\xbc:E\xb8\xe6\xda3\xac=\x8d\x96\x9e\xdf\x94 \xc4\xb8\x81\xe5\xc7c\xc1.>}b19)\xec0\xdc\xd8[\xc6E\xd1\xbfF\x18\xa4t\x8b)\xf9=d=Fh\xedoc\x0e\xadY\x97\x84)\x89m~\x81\xe0\xd91\x8a\xe6\x94\xc5\x9du\xc9G?\xb5\xb9P\xbf\xd5sX\x1d\x8c\xb4\xb3\xe2\xe6\xff\x070\xb1?\xda\x16\xdfw\xdb\x93\x85\xe7\x870\xb9\x9e\x04\xc4b\xa1\xea\xe9:\xbe\xb4)\x06\x1f\x087\xd0\xd0\x85\xc4\x85 -N\xb0d\x08\x13;6S\x03P\xf7e#Xp\xfc[\x19\x9f\x1f\x9f\xc4\xc4\x94f[<75\xf4\x08\xc2B\x19\x1d=v \xb3\xc3q\xd4\xe9\xe8\"\xc8\x8a\x87n\x12\x1e\xe1&p\xd4p\xad\x9a\xde\xde6\xf6\xb6)\xfe\xea\xb1QF\xac\x1c\xe8\x7ff\xaba \x9c\"\x1c\xa7\xf2\n|\xb9\xd8)\\\x83Rm\xd0I\xa0\x12\xddS\xad\xb7~\xedJ\x9d4\xc2n-\x05S\xab\xc2\x85t\xcf1S\xb4\x8d?X\x184\x84\x01\xe9\x9e_\xd1\x02\xe2t\xcf\xd7,F\x1d\xe9\x9e',{\x04\xe1+l\x13\x86y\xa4{>\xe1\xc6\x94\xf4\xa0xe\x13\xd4]\xd4\x8e\xfcu\xbb\x91\xbb\x86\xc8g X\x9a\xb0{\xae\x0d\x05\x0f\x18\xec5\x9f\x14\xde\x90\xf39\x19\x8e\xdf\xfac\x17\x03M\xb2\x00\xf6bc\x15\x87\x1fL\xd0\x88\xe7\x82\xeefd\x1e\xa6\xe0\xa7 f\xaa\xa9\xa4\xfc \x9c_\xa2%\xd5A[\xe6 $!\xbd\xf9,<\xbf\xd2zGV\xaaM\x87\xba\x84\x82\xf2c\xe0\xca\xc5\xd3\x8ec\x11\xe6\xa1\xf4<~\x8d\x07L\x1f\xcf\xe6\x13\xfe\xfb.\xd9\x80\x93\"\xf3\xed\xadO~g\x88y\xc39\xfa\x87\x0c\xfd\xfb\x14\xbfC\x17\xb6L\xe3m7N>\xbe\xfa\x89\xb4X\xbf\x86\xb5\xbb1\xce\xbf:o\x85\xc9(V\xfc\x12\xf7\xfaq\xed\x86\x9d\xf2\xa8I\xc7.\x88Ma\xb9`\x9d/,\xc7\xc5t\x14\xae\x1c\xd5\xbaU\x14\xa3\xd4F4a\xed\xe6\x98\"\xfeT\x88K-\xd0O\xca\xf1\xb4\xcb_\xe6\x7f\xdd\xb8\xec\x107O\x92\xa9\xf9r\xce\x0e\xff\x92O^\xf6&\x91U\x97\xe5l\xe5\xebJ\xe5\x85\\\x991\x8a\xc5\x80\x9c\xb2-\x8f=\xd8\xddw\xecc\xd9\x86V\x1d\x1f [\xc4\xfc\x16\xa2\xdcO\xb6\x88uu\xac\x0b\x97-\xac\x8f\xa8\x0c5\xd2\x8a\xa9\xec\xca\x19\xf7\x06\x15\xb0\xca\xb5F\xe5\xd4\x83\x94\x92s\xe9\x07\xd9\x18z\x16\xf3?\x87\nL&R\x08_\x0e\xe3<\xf0\xa8\xa7\x96a*\xdfW|\x1e\x98\xb8>\x14\x12Jy\x9d\xcb\xfb\x08\xd1\xa5\xce.\x03\xca\xd6\x89L\x85\x90\x8f\xd3\x88C\x8e\x12.\xcd\xa4\xa0\xc6x\x1a\x8f\xab\xd8%\xb8\xc2\"];?Q\xf0z\xf45\xc6[\xc8\xb3\xf33&\x05KNx\x89\x8c\xcd\xe7]*s\xfe\xd4\xe6\x828\xc5\x93\xed\x18\x97\x13\x7ff\x94\x83\xe6\xc1\xe9Q\x8d-\x1b\x9e8.\x04v\xd0\xfd\n:\x10t\xbf\xc5\xff\xbf\x80\x7f\x86\xadK\x15!\xdf\n\xa6\xe8\xb8\xf41\xb3&\xb5eZ\xc1\xad\xdd\x1f8\xb6\xfcJD\xa3\xcb\x0d\xddY\xc7\xa7\xa5.%z\xa3\xce\x8d\x82\xa7i\x91\x05\x83\xf4\x93\x8e2\x81\xa4z\xea\xb9\xb9\xb4\xef\xb0\xe8\x9bzD\xab\xc0\xa9\x18\xae\x8dl\xd3\xd6\xa5S;j\\\xef\xa6a\xf3Q]\xd9\xf9\xe6\xc8\xd7\xed\x98'\x93i\xc0S\x05\x92\xf6%\xd3\xd4\x0fv\x1fJV\xf0\x95\xbe\x8f\xbb\xcc\xc0\xb9\x8b;\xc8~#\xa3E\xdd\xb4\xbc h\x9a\x92\xcc\xaa\xeaO=F\xb5L\xf6BxsQ\xaf\xbe\xf1y\x15\xb3\xca&j/\xa9\n::\xd6\xdc'\xcaO\xa4\xb7\x9b\x93\x1f\x8a\xe8\x86\x14\n\xf4YSZN\x8f\x91\xf6zV\xb4\xb0\x82\x11D\x9dN3\x07\x98\xd4\xa4p\x10O\xc8(/#\x81tov:n\xa1-\xa3\x18\x81$\xb2\xfd\x08\x01;\xa6\xacE\"\x98\xf4\xb1w\xc6(\xdf\xf6vFKb;l\xe2\n\x8dB3p4\x97\x9a\xd2\xd6\xbb1o\xf9\xa8\x8bG\x97oG\xddu\xdb\x83%\xf6&\x8d{\xf7\xae\x10\xdd\x8c\xc5\xfe\x06X\xbc9nUW\xbd\xd8vP\xa3\xcd\xd3\x88\xb7P\xbf\x02>[\x81\xd8\xf6\xebV@\"A\xf8\xf3V\x97\x83L\xe9\xa5N\x9dgp)\xdd\x1c\xa0\xda^\n \xc84<S l\xc4\xe5\xb6\xa6m\xef\x97m\xe2\x81\x8d\x9fIN\xb38Z\xdaQ\x83\xad\x0c;7\x07F\x90\xe8ma[[\xd6\x17\x01T\xb6\x8a\xb4\xe3\xaa\x86Y\xe8\xcf\xd5\xf7z~A\x02\x9c\x9e\xd8\xa0g\xbf\x06\xa6\x90\x1f\xb9MP\x85:\x9f\x00\xf10\x0f\x80\xb0\xba\x00\xe2\xd1\x9cj.\x0el\x83\xee3]\x1b\xa9\x1d\xd5\xdczk\xe9\xfa\x9d\xa4\xa9\x90\xc8\xa5\x9e\xcbV=\x00\"-u\xe2\xf4\xa6\xa2.\xe4~\x0e\xbb\xfb\xd2\xba\xc5v\xdc}\x0b\x1d\x88\xbb'5wJ3?\xf4\x82\xe0\xba\xad\xba=\xe3\xb7\xc4~\x1e\xc1\x9aJ\xc2\xe2\x0f\x83\xae=4\xddjk\x98\xdd\xca}q(\xab&\x8d\x96\xd7\xfc3\x8fRGT\x84\x95/R\xea\xf8\xab\xca2\xcb\x8f\xce\x9a\x8c\x8al\x94\xad\xf8\xc2\xe3\xe2 u6\x1a\x96\xf9\xae\xf2\x0b\xa2n\xc5\x7fD\x84?\xd8S\xb0\xf1\xb4\x06\x0f\xd3\xb85\x0e\xd2C0\xd5g\xe0\x86<\xd1\x97\xce\x9eV\xdcB\x87]\x82\x86\xed\xfc\xee\x7fX\\\xc68v\x88\x97$\xcd\xd7\xd2m\xe0\x19\xda\x83\xbd\x01\x8f=\xb7\xc3\xff\xdd-\xc7\xaa\xdb{\xc0\xff\xe5\xb1\xea\xf6x\xac\xba\xfd\x1e\xff\x97\x7f\xbf\xcf\xbf\xdf\xe7\xb1\xed\xf6\xf9\xf7\xfb\xfb\xfc_\xde\xce>og\x9f\xb7\xf3\x80\xb7\xf3\xa0\xcf\xff\xe5\xed=\xe0\xed=\xe0\xed=\xe0\xed=\xe0\xed=\xe0\xed=\xe0\xed=x\xa4\x8d\x9d\xc7|j\xdb\xc0\xa2\x11\x8b*\xbeNQ\x1ep\x13\x8f\xe3#\x1e\xae\xb2J\x10\xe5J\xd1\x94\xa0\x17\xb0\x82xH\x06\xd1z`\x8b\xd9\xb5\xf71\x9eJ\x1e\x16#\x8f\x1dR!\x8fr\xa3M\x08\x9a3\xb4\xdc\xe4r|\xe6\xe2\x9c\xf3\xccPy\xa4\x9c\x8c\xf9\xe9\xc6\xf0\x142\xb3v\x80g\xb9\xeb\x14\x99\xa52\x8c\xa2\xe3Sj\xd2\xef\xf7w\xfb\xfd\xbe\xc3r\xf7\x8a;\x91\x13/\x9c\xf3K\x11R\x8e-\xbe\xf6\x02\x7f\n\x93hJ`E'c2\xab\xe4w\xd4\x04\x9e\xb0H\x9dp\x80\xb1~0B,\x8b\xe4\xd9\x01\xdb&\xb0=b\xe5\x0e<}\n\xfd\x1e\xca\x14\x7f\x84~o\xb0\x0b\x1d\x16\xffS\x97|\xcc\xb4'C\x9eSP\xcd\x9c\xbb\xe1\x8ek\xc22CT -\xa52`D\xec]\xb5\xc7\x03\x16;\xa3\x1b{W\\\x10\x8d\num\x1dnP\xcc\xf1\x18\x8e\x84\xf0\x14\xbc\xc7\x0edl]x\x08Z2\xf6:\x9d3\x07\xe3D\xdc\x87\x9eF\x8a\xb0\x8e\xa2,L\x0b\xe7\xac\x90\xcc\xbd\xd4_\x13U|\xe0\xc1\xf8\"x\xaa\x1ar\xf1\xc7\x8e\xe0\xe9\xd3\xa7#\xe8;\xdc\x9b\xb53B\xc3#zb2\x07\xd7\x90\xbdz\xac\xac\xd3\xef\xa7\x84\xdb\x948\x17 \xda\x9a6aQ\xb3n\x1b\x16\xb5\x9a6\xa2\x8eD\x97\xfa\xd0\xad\x00\xe2\x88o\xe7\x84r\x93\x1d\xea\xe6\xe1DM\x99/\xe2[\x10\xd6\x18\x97\xad \xac!\x15\x92(\xec\x84E\x0b%\xac\xf1g\x11\x07\x93dBW\xc5\x0b'\x8b(\xdeH2\xa9\xe5\x06\xf9b`\xd4z+\xf4\x96\xc4\xaaK\xec\xf9\xd9\xc3\xbf\xf0\xe7\x1b\x8d\xbd\xcd\xd0Y\x9b\x16\xfe\xf7\x05G\x1e\xf8\xe1\xe5\xdd\x8f\x9d\xb7\xfa\xc5G\x1f\x05\xd3\xbb\x1f\xfc\xef0\xf0\x99\xff\x91\xdc\xfd\xc8\xd3\xf4\xf7\x18z\x14\xa6\x93(\xf8\x12\xbb\x956MG/\x9a\xff\x82;\x96v\x95\xf8\xbf\x90/7 \xde\xfa\x17\x9c\x83\x9fz\x81?I6\x9aB\x9b\x19\xf8\xbf\x03\x16mLvZ\xc1\x1e\xc9\xfd\"&\xb3/\x0b\xf8d\xe9\x05\xc1F\xa3o3x\xd1\xea\x97\x06=}}\xb9\x19\xe2\xb7\x1a\xbeh\xf6\x8b\x8f?\xbb\xb8\xfb\xc1g\xbf\x07\xd5O\xb2\xd5\x17\x18\xf9\xea\x8eF\x1e\xda\xfb;\x8em-\xbdt\xb2\xb0\\\xe8\xd7\xd7\x96\xc62\xce\xebi\x15\x9dz\x88\x88GH\x02i\xddE\xa2/+\x1aP\xcf\x90\xe7_\x0b\xc7\xc4\x9c\xdaB2\x9b\xf7\xe1@\xd8\xd81\xcf\xa8!\x9a\xb7q}n\xe8\x8c\xc9\x99P\xd8\xc7\x95X\x1f\x10n\x9a\xd5\x9f\x03\x93\xeb\x14-\x17\x06\xb7\x00g\xecV\xdd.\xa0\x15D\xa3&\x88f%\x88\xc62D\xe3\x96\x10\x95\x04\x88\x18C\x95\xf9\x08T\xf6\x86\x832rX\xe8\xa5;\x03hB\xbc\xf8\xdf\xd0\xf3\xce\xa0\xb9\n\xfcT\x8b\x9c\x15\xcbI3\x98\xc4EFh\xf7wUc=\x10z\x8f\xeakv\xb9\x867eU\x8d\x885A\xe3\x14\xcb\xbb\xb8\x98X\x92\x89mYt\x8e\x1a\xa4is\x1d\x02\x92%\x9a\xd0\x01\xe8\x03\x01@\xd9\xd7f$\\\x8bx\x12\x9d\xdc\xceMM\x86\"\x7f\xbb\xe5\xcb\xa9\xd3\x8a\xa8x8:\xfdgkf\xc2\x9f\xb80\xc1p\xd3\x01\x0b\x8b_\xe7u\xbe`\xa1;\xfdy\x18\xc5\xe4\xc8\xc3`}\x96o\xc1\x90\x1ey\xd0\xa1e\xcb,H\xfd\xc0\x0f\xb1hY*\xcaB\x1f\xaf\xda\x0f\xc0\xcaJ\x05I\xeaO.\xaf\xe9\xfbk\xfe\xde<\x84i\xbd\xd3\xfb\xba\xbc\x9a\xb4\xb3\xdd\xc1\xa3\xddG\xfb\x0f\x06\x8f\xf6\xd0\x8e\xff\xe9\xd3\xa7u\x0d`4\xd9b\xbf\xa7\xdd\x04\x83\x9c\xbb\xb0\x80\x0eXs\x93\x85\x00\xaa\xfaX\xf0\xaa\xb8\xdc\x02\xbb\xcb\xbc\xe6\xed\xd0F\xfe`\x1fl\xfd\xf0C\xe2X.,t\xd7\xd0\xf9\x83\x0e\xec\xd7\x0c\x17y\xc0\xce-\xdb\x9e`(1\xd4*C\x07\x92q\xef,\xc7\xf0\xa70E\xad\xe1\x8aG3\xe1*\xa4\xa9+>p\x1c\x17\xb6\xd0h\xbf\xa4\xe0\xc2\xc4\x1f\xbd\xb3\xfc\xe2-v\xebY\x9f\xd2\x83S\x0f0\xd0\x00\x04\xf0\xa4\xaa\xe4\xde\x86\xc1c\x08:\x1dG^\x99B\xa3\x16\xa0\x15\xaf\x8d?FZ\xe5w\xe9\xb9q\xdc\xea\xe098\x9e\x141\x15\xf1\xf2\x9f9\x00\xad\xe8\x07\x0c\x12}\x87g\x89\x90\xc0\xc6b\xc5O\\X\xe5\xad\x8e`\xed8\x8f\x1d\xb8\xee\x06^\x92\xbe\xc4\xb6\xf1>\x83\xf7s\xef\x9e\\\xa4\xc6\xf4\x16\x0f\xdf\x8cSv%S\x84\xf5\xde\x9a\xb1\x06(\xc9\xc4,<\x9f>\x01_1\x96\x93G]>:\xe8bp\xb0\x86\x03X\xf1\xb2\x9e\x0bk\xfc\xa42\x02\xc5,\x99\xb9*X=A\x1a\x85\n\xb3\xe7H\x10\xb3[Q\xb6\xf2\x99\xa9\x92+8\x80\xf1\x19\x0c\x05\x0d\xcau\xb1\xaa\x14\xa8\xd7iK,\x82\x81\xe5\xba\x05Su+>@b\xaa\xc2\x82\xa9\x8a+LU\xa8c\xaa\xe2M\xd9\x80z\xe5|f\x87\xf6\xe0a_U3\xfb\xbchg0P\x8b\"^\xb4\xd7\x7fHIL^&\xc6\x80A\xf1\xf5\\\x1a.f\xda=?'\xc9\xabh\x9a\x05\x18G\x1e\x86\x9a\xa5\x98\x92\x99\x97\x05\xe9P\xbd\x9f\xff\xa7\xea/q\xd2\x8e\xfd.\xff\xca\x85\xa8\xf8i\xa46|L\xd5\xbe'\xd1r\x15\x85\x94\x80\xe8F\x06\x98{B\xf8.}\xe3]GYJ\x17\x8fw\xd8\xb4Y\x8a H\xa8\"_Ny\xb7_S}\x8eW\xe2\x82U@\xbcr\x0b\xc2\x03\xc7\xcb\xe1\xea\x9d*\x9aLl\xca\xf9=\xd4\xa1 \x16\xed\xf5th\xc2\x8a*\xc8\x95\xe5E;j\x91\x97\x17\xed\xabEI^\xf4@>\xda\xf0\xd5\xfe\x9e\x1e\x15'\xbf?*\xcej/\x18\xf3\x91\x91:\xc1\x9f\xd2\xde\x1c\x9b\x1dN\xe8\x88\xe3bA\xa6\x16\xd8\xa4{~\x8e\xce\xe7\xe7\xe7\xc8&\xf4\xdc\x02\x1f\x1d\x9b8\x0e?\xadX\xf5\xfcxTE\x0c\x1d\x98h[\x9e\xd4\x96\x0b)\x1fFTz;\xae\xce\xe5\x92\\\x0f\xc1\x8aI8%\xb1\xe6\xa6\x94\xe3]#3\xb0\x96\xf3c\xac\xe2he\x88?\x03\"UFwN\xd2#\xb1\x85\xcduYd\xf0dE&,!P\x14\xd74\x1c\xb3\xd0\x1fq\xdc\xa2.\xdd\x13\xc4\xb6\x8e\xa20\xf5\xfc\x90T\x1cn\xe4'buO\xa2\xab\xbaZ\x99h1\xa8\xab\xe5\xb1Z\x18\xb57\xb10\x9c\xa9\xb9\xf2\x84U~\x17\xad.\xbc\xb8\xa9\xf2\x8cU~\xe6%\x9c\xde5}\x10\xb0\x0f\xa2\x90r\xeb\x1f\xbc\xc0\x9fzi\x14?\xf3\xa6s\xd2\xf4)&t\xe8\x06\x917\xf5\xc3\xf9i\xea\xa5Y\xa2F\xb2\x97\x9f\x05z/S~\x89\xdd\x9f7\xb0\xf7\x94GZP\x04\xb1\xad%I\x12oN\x90+\xb24J\x01(6A\"P\x9d;T\xf2\xdcQ\xb6o\xf2\x94\xa4\xcf$\xf0\x92\xe4\xb5\xb7$C\xb0\x92+o>'\xf1v\xe6[\xda\xfa7.L\xe0\xc0\xd8\xcf\xc4\xc5$l\x0eO\xc6\xe6\x82\xc5\xe1c!_\xb4b|\xaa\xfe[\xcc\xed\xddv\x9c~8\x8b\x8c#\xbc\x93\x1e\xf8\xc0\xb7'\xf9\xee\xf8=\xba3t\xe2`\xf8\xb7\x99\xe7\x07d\xfa\xaf\x12\x94\x8b\xdd\xd6\xbd\xa5~\x1a\x10c\x0f\xd6\x0b\x04\"\xa4\x11\xd0a\xc1\xe1\xdb\x97\x80l\x88Oi{\xd7r\xcc\x83\xf08rKkq\x84\xae\x95_dE\xcc\xe4\x013A\x9b\x18>\xf1,\xbd\x8f\xdf\xfa\xd3t1\x04\xeb\xe1\xc3\xde\xeacM{\xacz<\xf7\xc3o\xc8,\x1d\x82\xe5ei]\xffE\xfd\x13\x7f\xbeh\xf9AJ>\xa6\x87\x81?\x0f\x87`M\xd0\xdf_\xbfDP9\xdf\xf3\xb7\xff\n\xb01&\xcb(%\x85\xc7n#NZ+\xcb\xe5\xa4v\x8a\x88\xb9\xb5B\xe5_\x92MD,\x8c\x06\xcc\x9cq\xac6\xf7\x11\x89\x1eL\x15\xb2\xa6\nA\xbes\xaa:\x0dE\xea8+\x85H\xba\xb1\x8b&sNIb\xa9\x89(m\x1bl\x8a\x8a\x90;\x15\x8f\xa5\x81\xd3\xd5\xe6Am\xd3\xa2d\xdc\xa7\xcf\xff\xd6\xdf\x91\xad\x96\xa9p\xf2\xc8\xb1\xadrGV\xb3\xf4g\xe6\xd4\xa5J\xbe\x92\x86\x14\xe06\x17o\x83\x87{\x1a\xc1J\x02\x93^\x1ely\x01\x12\xabb\x9f\xa8^\x8c\xb3\xcd0\x8ba\xf5U\xeb\xce\xc2\xabk\x8b\na\x94\\\xb3qWvmy$C\\\x1d\xa7;\xdb\x10b2\x10*\xed3\x89\x8c\x02U\xbd\x8d($\xbaas\x0e\xb6\xca\"=b\x0ey\x0f\xf7\xaa\xfew\xbd}\xa7;\x93\xfd\xe8\xdb\xb4\xd8r\x12\xaa\x01\xeb\xe7Mb\xf0\x88\xbb!>\xe2n\x86|V\x83G\x0ft\x9b\xf4\xf4zy\x11\x05m\x9an\xb2\xf34\xd8\xe1\xaa;\x98\xdby\x1a\xbc\xad\x0d\xce\xd6\x03\xb5q>\xfeG}\xa7\xfb\xf5\xf1\xf7\xe5\xb2 /S>\xe1\xa9\xe5\xd4\x1eXj\xb9G\xeaxXn\xb9=\xf55\xcf-\xa7\xbc\x9d\xe6HR~\xbf\xe6\xefU4\xbd\xe6#T=\xe4\xe6\xfc\xbd:F\x9eV\xae\x82\xed\xec\xb5\x1a\xfe\x92\xa5\x94\x1b\xe83\xcaU\xb0\xed#\x9b\xa8\x1a\xfb\xee\x94\x81E\x95\xd6\x8e\xf9\x08\xd5\xea\x87|U\xd5N\xdf\xb0\xf7j\xf5\x9f\xf0u\xc5\x0d\xf5\x12Fp\xa8\xe6\x90{ #x\xa3\xbe|\x85i\xe1\x94\x97\xefP\x1ed\x18].9\xc2\x92\xbf\x9c\xbey]~\xff\x16FpD\x8f\xf2\xa3n\x82\xaaW\x7fv]\xaeqB\x05G\xdb:_\xf8\xd3) U\x11\xfc5+M\xa3\xb7\xb1\xbf\xf4\x99\xadv\xb9\xc67\xe8\x00\xa6\xcd\xb9_\xae\xf8\x9c\x92{\xdbJp\xf4\xdb1\x99\xfbI\x1a_\xab\xcd\xfd\"\xd7\xaa\xa4\xb9|\xc1J\xa3\xd5\xb6\xa1\xc2{M\x12\xf3r\x8dg\xa6\xf8\x01\xef\xca\xf5~F\x88\xfe\x955V.\xfa\x1eF\xb0\xf53F\x0e\xffY\xca\x08\xa0\xfc\xdd\x9d\xf9\xe1\xf4h\xe1\x07\xd3\xf2\xd7\xdf\x02\x8f\xf18\xa9w\x8d\xe3G\xdf\x03\xd8\x1a\xc1\xa9\xfd\xd2\xfe\xfb\x0d7\x0f\xd33\x91\xed\xe2\xb1@\xd1\xf0K\xd9\xe4\xac^0\xe0\xda\xac\x07\xc6J7N\xd7\xd3\x16V\xd9\xf2\x1bG\xad{\xe3\xc8\xd1\x0f\x0c\x8c\x00H\xa4\xf8\xd2~\xaf\xbf\x9dE\xd7\xd5) HJ\xe0\xfd\x98\x9c\xb9t\x92\xbc=\x1e8,\xc5;\x8a\xf7\xf4\xe7Kl\xa6\x12 \xf9\x06\x86\xf0\xb2\xbcd\x1fj\xb5\x9e \xd9\xd0\xff\xc2|\x0dO\xedw\x05\"\x98\x0d\xd8 K\xa5\x9bV\"|\x96\xbb\xff\x1aF\xf0\x8c\x8e\x98o\x8b\x12\xd6v\xc5\x91]\x02b\x0dBi\x1aI+\x00h\xd5R)\n\xf3\xbb\xba\x19|\xd5\x82\xd5+5<\x12\x8b\xf4\x95\xfd\"_\xc0%\x8b\xf2\x0f#\xb8\xe2\x19\x8d\xe8;Z\xe2\xdb\xbf\xe0\x9d\xdb\x01\xc6c\xc8 \x10f\xe4\xa3\xfd\x9d\xb0\xbc\x93\xe3\x93\xb31a\xb7\xa6\xe2\xf7\x88\xe7\xa8\xc0E\x0bM\x1b\xa1hr\x08\x1f\xed\x1e&\xb6\xd0a6\x0c\x8b\x0e?}b\xd8w\xe2\xc2G\xbb\x8fyv)\x7fR\xf4K\x87\xffm\x0e\x0d\xfa\xed\xcb*_\x0bU`\xfe\xa1\xcd]\xe3R\xeb8\x91;\x93\x87\xcca\xfc\x9a'\x82#th>K}\xc2\xa21\x8a|\xdf\x11<\x05\xff\xb1\x03_\xd9)\x83R<\xf61n\x00\x19\x87\xba\x10\x96b\x05\xeb&\xf0\xe7\xd6\xdb\xe9\x9b\xd2](.|\xcaRY\x19{\xde\xc2\xda\x05\x02!j\xb0\xbc\xa3[>E\xa6\x94\x19\x04\xd8[6#\xd9\x85\x0b'\xff\xf3\x17\xf1[\x94p\xecY\xf8 ]\xbc\xf4\x0c\x0b\xd5k\xd9\xf2\x14\xff\xd2f\x8d\xfc\x19s\xdc\xbd\xd0\xe0\xb5\xa0S\xf9\x90\x08\x1f\xd2\x0b\x16bY\x8f\xa7\xc2n\xe6\xd2\xae\xb1_\x11\x80\n\xab\x8dW\xb6\xca\xa7O\xca\x8e\xe2x[\x8d$sS\x07\x8e\xbf5\xae\xb8\x1a\xee\xe2\x95}\xc1\x9c\xa0c\x1e\xc1 \xe2\x11\x0c\xba\xa5\xdc\x8fl\xf4\x94\xd9b) qe(e;\xc9\x7f%,T#\x0bDa\xc6\x9b\xb8n\xfc\xdfm<~N\xc2\xd8\xf8_a\xe0\xa1\x170\x04>\xa9\x88OJ\x84\xee(&\x95=v\xc4\x9a\xe0f\xcb\xc4\xacB\x8e\xc1\xef\xc5jElJ\xbf\x8cI\xcd>\x8c\xca\xb3*\xea=\xc3\xa5\xf5l\xfb]]\x14,\xc4P\xba\x9ddB_\x0d\x99n1\x96\xb4\x88\x0f\"\xe5(\xaeDN\x17W^+\x9d\xcfX\xaf\xe43\xd6\x93\xbc:\xdd\xca\x14\x89\x94\xd3\x01\xc9\x19\xa9\xac4\xca=\x04\x9b\xf4E)K\xc4\xffOr\xd3\x87\x98\xb4\xe8/.\x15Q`\x04_a\xc4\xa1\xbd]\x07\xff:\xc6\xff\xff\x8d\xbe\xdb\xe7\xaf\xfe\x8c\x15z\x0f\xd9_\xdf\xf1\xf4\x97[\xa1\xfd\xf0!\x02\xd5\xa3\xb3\xb7t\xe2\x82\xe5\xd2\x8f\x91\xbcL\xbb\xf5\x17\xcd|\xbc\x1f\xecEIuE\xc7\x9b\xd9\x19&B\xca0\x11R\xc6T:\xcfTh3\x84\x1dJ\\\x8bl\x17\x90o\xe6\xbfRaa\xe1%/9\xfa\xbb~r\x14\x85\x13/=]\xc5\xc4\x9b\xa2\x90#\xf8/\x17\xcd\xce]n\n\xe623_\x97\x87rt\xd1x\xc8\x95\xe4(W\xac\xcb;o\xee\xca\x99\xfd\xb9\x9d\x91\xe5Z\xf4\x18H\x19\x85\xf8k\xb1E\xd2\xf4\xb1\x03\x0b\xfb\xaf\xe34-'\xbd-HP\x8a\xd9J\x16\xdd$\x8dbB\xa95o\x85\xa4E3!mfm\x93t\x1c*\xedP\x08\x9e\x96`\xc7\xf7w5\xa0Q\x14\xb7d\x15}\xfb9=\xd3:#4^<\x80\xe7tO\x0d\xd9?\xa3j\xea]\x85\xfc^\x92\xeb\x17\xcd]\xa19\xe7\xd7h\xceY\x9b\xd3\xc1\x03\xc6\x01W(\x13\x94\xc3\xed\xf8!<\xd7\xdb\xd3\xd1\x9e\x9e#\x177\x92\xe3\xbb\xd72\xf1YBNI\x9a\x92\xb8AJ\xfb^\x17I\xb2\xd2\x92\xbf\\\x05M\xf6\x05\xdf\x97\xb3\xd7\x01\x94\xf5\xba\xaen\xa1\x0d:O\xa6\x9ao\x91\xca\xaej\xe2F\x99\xf0S\x1b\x93\x96\xfd\xc1>e\x9cN\xedb\xab\xfa\xd5\xafj\x8a}\x92\x0c\xe1\x0f\xe5\ns\x92\xbe\xb9\n\xc5\xf7\xcfI2\x89\xfdUJ\xd1\xe7/u\x15_{K\xda\xd8\xdf\xea\xea\xb0m\x90\x0c\xe1\xbb\x12\x1cQ\xc1R\x06\xa6\xbd\x85\x07l\x8d\x88/\x8e\xc1wjxL!\xa6\x8d\xc3,\x08\xce0\xfe\xcd[[p\x9d\xd6\xdfo\xf8\x9b*\xec\xbd\x8a\x11\x8f\xf2 [\\\x85b:.X\x7f9}\xf3Z\xe3@\xce\xf5EM\xfb\xae\xc4\xfap\x86-=\xe3Y\xe4\x1f\xebb7P\x81\x82sd\xc5a\xef\xebSx\xf3<\xaf\x9c\x1d\xea\x9f\xb9`\x9f\xdb\x95\x94?\x9c\xc1\xffZ6\xe6\x9e\xf3j6i\xc3\x8c\x8b\xbe\xb4\xba!\x16\x1a\x08\xf9\xcc\x8au\xa6\xe3\xd2~\x89c \x03\xc0\x91\x84\x8e\x9dN\xc3\x85\xb7\xdc`\xe9\xa8\xaaz(\xa1\x95\xa4B\x18\xbfFV<\xb4\x07\xfb\x8e\xacZp\xe1u\xa9\x1eK\xc2\xf2f\x86\xd9\xe4\xde\x15\x84\x1b\xff~\xe5\xa5\x0b\x17,\xfa\x0f\xb7S\x81\xc0\xe6J\xc3\x1c\x07\xb6z\xad4\xff\xd2\x0d\xd6\x9ec[K\x92z\xba\xd0\xbb\x1a\xe5m\xa4\xd7\x9a\x8b`\xa4\x8e\xaa\xf3\xf4\xaav\xebI\xa1\xe4\xf3\x93\xe3\x8f) \x13\x9f\xca&\x9f>\xd5\x13D!\xf8\xd4R\xd7 \xa5\x9a\xa8]o\xa5\x9eK\xec\\\xddH\xd6$L\xf9p\xa20\xb1\xa9\xc0\xaf\xec\xc7rW\xf5<\x0e\xe0Q\x9c\xa2\xf7\x91I\xdaC\xb5\x9c\xbe\x90>\xfe\x10\xac7\x16t\xa0\xd3\xf1\xaa\xbc\xa4x\xae\x86j\xb0Z\xf1\xe8\xb4wu\xb0\x0b\x94\x1cR\xd5\x91}}\xfc\xbd68\xf9\xeb\xe3\xe3\xe7C\xd8\xeaWKf^\x92~M\xae[\x9c=\xa0u\xe9\xd0\xa9\xbb\xb85$s$e\x86Fr\x99u\x8a\xde\x14o\xd1\xcd\xc2\x90C\x81e\x01\xc0\xe51J\xe3y\xbd\xa44\xa0\x17\x06{\xac\xbcz\xe1\xb9b\x1d\xd7\xd4\x9d\xa9\\\x93x\xf4\x8b)x\xfcq|\xd6\xad\xe6\xce\xd7\x84p\x9b\x93\xf4[\xe2]n\x02\xf9[\x01dK\x1f\xe3\xa5\xa8M\x8c\x11\xab\xe5\xe73\xc0q\xd5\x06\x1cQ\xf8\"&\xe4\x97\xc6d\x82P4>\xa1\xc7F\xd0\xa5\xc8\x8d\xe6\x146?\xa68\x98\xe8\xef\x19rD\xed\x0c\xab[\xd3\xe4\xca\xbd\x93\x08\x19\xa4'\xc6\xfb\xa6\xe4G\xe6\x89\n\x05]\xac\xcd\xd4\x16\xb2\xc0\xba\xe5\xb5\xc2\x83\xbc\xbaB9\xf7\x90\xb9\xfc2\x94\x02\x84\xf6\x1eug,\xa1J\xef1x\x05\xf30y\xec@\x92g.\xa7\xe7\x867\x9e\xa0\x96\x04\xe5{\xe4*2=O%\x19\x89l\x06\xd0\x87\xfb\x06\x08\xb1\x08\xef~\xc2RY\xc9\x07\x90If\xb5\xb0*\x92\x9c\xd8\xbe}\xa6\xab\xca\xed'_\xe2\xbd\xea \x1a\xb1\x1b:!oV\xcf]+b\\\xbfD\x06\xaf\xfcp\x1a]Q\x88\x16\xbf\ns\x17\x95m\x86\x83\x9aB\x9b\xb5@\x05\x80\xb1\xce+\xa0\x9d\xa8\x8f\x81v\xad1\x1b)|\x8bM\x9e\xe1\x88\xf3Di\x8d\x17 \xe6\xbc7\xb9\x94\xaa!!\xcd\xf9\xe3\xc5\x10\xb9kQ\xa3\xbd\x92\xcdS8\x97\xedn\xf4\x08\xe0\xc0\xdf\x1b-\"\xfa\xbd\x07\x8emy\xc9u8y\xb9\x91\xfd\x86\xf8\x94%GA\x1dL\xab\xef\xda\xd9}<\xba[\xbb\x8f\x9d^\xaf\xc6\x08+\xf9\x0c#\xac\xaa1\x90Y\x12.\xf73\xc4q\xf51\xa7U1\x9fV0\x94\xb6\xb2J\x95}\xbd5D\xd4F\x8c\xa1T\xd6G\x12\xba\x15S\xf9\xe7\xde=4\xa3+\x07v.\x14#\x84eCe\x11\xd9\x12\x92\x82\x97@.Ml\xa9\xe1\x18\xf44\xb0\x02\xa0!h\x17\x05e1+w\xe6\xb0\xc0\x0f\xe1\xef7\xd5\xbb_m\xca\x1b\xf3\xde\xb5\xf9\"R\xd1\xe8\x05o I\x82\xcb\x0d6\xba3\xbbb\x12\x00\xd28XF2\x188\x0e\x1d\xc0\xf8\x8c\xdf\xc5(Yf\x91l\xdf\x86:\x10}f\x8a*W\xc2\xc9\x88\x0c\x0d\xa3V[(\x95Y%\x96\x0f5\x95\x1ceF\x10\xc2\x90\xe5\xc0 \xdb\xf0\x17h]\xb0\xd5wL\xfa\xf6\xc9\x82L.\x87\xd2uB\xabM\xdb\x8aN\xecT\"\xe2}.\x9d\xd8\xfdlKD\xc3!\x14s\x1bUVg\xb3\x81\xdd\x8e\xdc\x08\xc5\x1bZ*\x15\x1d\xb6\xa20M\xf6l\xbb\x06\xdb\xd3==\x97\xb8S\xb1\xf2b2\xfbN_\xb5\xf2bl\xdc\x8e\xfa:\xe1\xd5u\xe9\x89\xe9{\xb5\xf9\x19\x7f\xaf\x0e'\xe0\xcd\xab8\xba\xc2Li%+\xe2r\x85\x85T\xe1\x857I\xa3X\xb1\x85\x9a\xb2\nA\x14\xea\x1bXW\xe3@\\7\xca\xf0mn\xc4\xe7Za\x19\x8d\x87b\x12\x9aD\xfc\xa5\xb7\x1aB\xd4]z+\xbdp?\x8b\xe2co\xb2\xa0u\xf8O}\xbdI\x94\x85):\x1e\xd3\x1f\xfa:i\x84\x04\x90\xd6\xe2?\xf5\xf5\xa20\xb8\x1e\x82&\xe7Y\xb5zn\x9c=\x04\xbf[\xe3\xd3\xf66\x8bI\xa9n\xe9E\xb5~ \x03\x86\xa0\x01\x8e\xbc\xc2C\x98V+\xf8 \xfau\xe5U\xbcn\xf9\x8df\x90q\xb4\xa2\xc7j2\x04\x8d\xf7\x1c\x1b\xd2Q\xe0%\xc9\x10f\xa6r\x8e\x93C\xd0\xac\x13\xab\xf1\xca\xff\xe8\x87C\xd0\xc0\xfe\xf9\x9bWC\xc8\xaa\xef\xd7$N\xfc(\x1c\xc2\xa4Zv~\x9e\xe05\xd6\x10\xd6e\xe4\xd4S\xc8V\xa99\xea\x89\x8e\xacQ3\xf4\x12\x7f~/\x94V\xe9y\xaa\nM\xe2\x02\xb0\x81\xb2\xf5T\x0e\x96\xa5\x13M\xaf\xa2C\xae\xb6~\x1bE\x81\x9a\x8e\x14g\xd1\x9dEY\\W\x8bR\xbd\xfb?\xdc\xef\xdc\x9f\xeb\\{gFA\xc8\xb6,\xe8@\xea\x94\x82\xbd\xff\xe1\xde}K>\x8f\xaa\x0d\x06\xdas\x0d/|i\x1df\x85\x86\x7fN\xa20e\xb9\xb9H\xfe&c7\x88\xb5=\xact\x0b\x05\xd2\xb2\xa4\xd8\x93f\xb3a\x19\xefV\x91\xdb\x99l\xe7c\xc3)\x1b\x88\x9c?]7\x8e\x85\x18\x87\x86\x93\xc4\xe9\xc4$a\xde\x1fb\xc6\x97\xe4\xfamLf\xfeGi\xce\x1c(a\x05(\xf1F@\x996\x03\x85\x0d\xa7\n\x96\x0cK\xf3\xb1U+x50Md\x98j\xa8 ;\xe8(l\x13\x05\xb6\xe5\x05(\xe97\xec \x95\xb1\xd7\x14\xe3b\x84o\xd4M\x17^z\x82\x88\x99\x08d\x17\x8e\x9c\xb05b\n0\xdbW\xa8'm\x87\xbe\x9f\xa0\x9a\x08\x89\xf1a8=a\xf8\xfc5\xb9\xa6\x1dd\xd0\x01{kB\xe7\xcf,yP\xb9C\xff\xc2\xe4\xf2\xf8\xeb\x00,\x0b\x860\xb3\xf1O\x87\x8a2\xf7Qg\x1b\xa2\xe1\x10S\x05M\x9cztYK\xe8\xe2V#g\xacy\xd4\x0c\xd5\x89V\xcc\x90\xdd\x0c\xa1hf\x87b\x08U\x83\x17\xbaV\xe8\x9a\x8b\xa4`j\x13\x8c\x8c\x81\x1d\x96+\xa3\xc6\x7f\xea\x82\xe7\xb8\xb0\xe8\xc6$ ^Bl\xaf~\x0e\xd7&,\xe34\x83\x0eVj@\xfc\n\xa4\x8b\xa3)\x11\x06;u\xf6@\xa5\xad\x81\xee[\xca\xee(\xbd\xacl\x10\xba(\xdetJa\xe0\x87\xf3w\x91\x1d\x88\x89\xdej \xf9F\x96z\x95\xf7\xb2\xf4\xfa\x0e\xc7\xbcp!Q\x04\x8c*\xfb\x96\xb3^u\xa7\x98xP3J\xf1\xa9dM\xa0\xb9x\x10D#(c\x92.\xc9:\xe2\xd1\nS\x17@\x90\xe3\x91z\xdfX\xa6\x0c\xc8O~\x91\x01\xeb\"p S\x01\x9b]q\xb1U\x10\xa6\xda\x0d\xc3|\x19\xa6\xd1\xb7~\xba\xf8Z\xac\xf6\xcb0%q\xe8\x05CX+\xc7,\xe3m\x1b\xf5&B\x87G+\\s\xd7\xc3\xbaA\xe4\xfcp=\xf3/\xf4\xe4M\x00 \x02\x00z\x92Z1\x10/\xf0\xf3\x8b\xf1j\xa1\xbd\xaf\xd31\xdb\xa1M%\xaf\x86y\x0b\xc3\xc1\xae\xd0\xa0Pl\xad (\x07\x12\xac\xaa\xdf\xad\xa2\x95)\xf3\xb5\xc0=\xdc\xbd<\x12|\x15^P\xa7p \xc9\x15~_1B\xaa\xd5\xbfi\x95T\xb2\xc2\x08\x0d\x0f?}\x82\xd8\xb6\x06{h\xcb%\xd16\xdbq5\xf3\xe4w\x1cOx8\x90(\nN\xfd_\x880>V`B\x0f\xb7z\xb3\xa9\x0c\x934\x97^yZAS\xa6o-\xf6\nH\x96\xc6\x86\xebQ\x01\xda\xd2\x98\xb9\xd1kXP/\xb4\xeb\xf8\xf4 2\xfa6\x9f/3:\xce\xff\x1c\xb1\x8cp\xa1\xa0b0\xa2g\xa7\xc6\x02\xb9\xca\xe7P\xce\xa2\xc4\x83\x0fU\x80\xd0\xa7\xc2\xcf\xb7\x84\xc1m\x90\x1cd\xd8m\x82\xe8\xa0Cv\x11\xa8P\x07\x0e\xd0\xe2<\xe8\xf0\xbeb\x92\x05zp\xa6\x8b\x98T\x00\xda\xe6\xc0\x80\xcf\x84V|'\xd0\x8a\x19\xb4tG\x8cx\xda\x03\xac\xe2\xa5\x01z\x98U\xe5\xc0*\xc8\x0c:o\xf8L\xa8\xf9w\x025?\x87\x1a\xe3&\xaa\xb6\x03\xb0)\xe0*\x86O\xd5\x16\x0c\xe7\xdag\xc4\x0fk>\xd7\xfa\x05\x1f\x15?f${\x1f^\xd7\n\xb3\xe5\x05\x89\xe57\x05Ty\x17\xa4\xfb\x87?\xf0\x91\xd1wE\xfe\xf4\x99\xcd8V\xcb\xca\x93\x87y\xd0\x81 \x9dp\x0f\xc5`\xc7\x05\x8d\xc5\n\x9dqM8\xd65\x8a\x9bR\x93CLd\x93\xe8\xa1R\x96\xd0\x89\xc6\x1f\x01d+\x8bkfOq\x0dO\xf2$<\x8f\xe1\xba\xd3q`\n\x9d\x11\xa4\xf6\x8a\x9e\xc9\xe3\xeb3\x17\xd68\x97\x95\x0b\xd7\x0e_\xbd\xea\x0808\xa6\x99C\x98\xb3,\xa5\x06rC\x87?o\"bK\x17\xdd\xc0\xe7\x9c\xbb\xab\xa1\\\xd8\x1c\xbb\xe8\xec\x920\x8d}\x92\xe8\x81!\x9e\x1c(\x17\x0c([\xf6\x12Fp\x8e\xa9\xe9m\xc7\xe9N\xa3\x90<.\x01f\xc9\x0c,%\xd8\\t:f\xe8\x88\x87B\xa9y$\xc6\x01\x98\x01$\x1e:\x89\xabb|\xe6\x91\x88\x07\x0d:lifWhZ\xbbF\x03fN.\xae\xc6\xbd3\x87\"\x9e\x98kO\xcc\xb4\x1e\xac\x06[B\x86+\xb8\x91K[\xac \x01>\x1a\x92\x91\xc9\xcfi\x11+\xba\x0eCb\xdb\xda\xe9[naG\xc2n\xdd\xce\xd8HN\xe1@\xec~\xb8\xf2\xd3\x05\\\x92\xeb\x04\xfenAG\xdcg\xd3\x176qx\x9a[\x17P\xd9d\xddX0\x84S\x17>\xb65?3J\"\xd3R\xc1\x0d\xa5\xb8\x96\xa5\xf2\x1a\xadn\x1b\xeb\x8f@\xad\x8d3\xf7\xe1\xbaw\x8f\xff\xca\x1d\x8b\xabg\xa5\xf5/\xff\x92\x07\n\xd1\x9f\xd3f9)\x97\xf2\x80\xc5\xcdEg\xc3\x18\xcd\x9b\xd3\xb1\xafZ\x80\x1b-\xb2\x89\xc6\xdc\xfa\x0e S\x1e+\xdb\x08me|=\x1a[#k\x08\xd6\xa8g\xc0`k\x88\xc5\x83j\xb8\xa7\x1b\xa3\xc6\xc0\xfa\x03\xc5\xc9\xcaE\xc0\xfd\xf1hxv\x7f\xde$\x9aK\x0d\x91qzV\xed\xb7^\xa6\x0c\xef\x06(=\x9c\xb6 (\xa3\x01-\x1en\x02\x14\x06\x0e\xdb\xea\xb2\xcd\x9c\x8e{\xe8\xe8Ma\xc5\xfe\xee\x9f\xa1\x8dD\x92]0.\xc0\x1e\xd0#Z~\xd1w\x1c \x9a\xf6\xa8\xf7i4p\xee\x1e\xa0\x05\xbe\xea\xf7\xce\xdd\xdc\x80\x0d\x9c\xba\x9bn_\xaf\x07\x18R\x12Y\xb1\xe4\xc7\xa2\x8b\x8b\x98\x95^\\h\x83~z\xd3iL\x92\x84\xd5a\xbf\xb5\xd5b\xc2{\x89\x89\xbe\xa38\xf5'\x01\xe1u\xf0\xb7\xb6Z\xe2Oy%\xfaK[%\x9b\xfa\x11\xabB\x7f\xe9\xaa\\`\xf1\x85\xb6\xc8KX\xfb\xf4\x87\xb6\xc2\xd4g\xe5S__\x1c\xf1b}\xcf\xfe\x9c\x15\xfbsmq\x10M.\x7f\xce\xa2\x94\x8f!\xffS[9\x9a^\xb3j\xd1\xb4\x12P\x05+\xb0\xa5\xd3/\xdcE\x96\xa6Q\xc8*\xe0O]\xa5\x89\x17\xae=\xb6\xb8\xec\xa7\xbe\xd2*\xf5yS\xfc\xb7\xb6\x9a\xcfgE\x7fh+D|i\xe9\x0f}\x85\x80\x97kc\xc6N\xa2`\x1eG\xd9J\xd4\xc1?t\x15\xa7^\xca\x90\x91\xfe0U\x08\xfc$\xcd+\xd1?\xb4\x15\xa7\xac\xcaT[H\xd8p\xa7D;\xdc)I=?Hx\x15\xfc\xad\xad6c\x90\x9d\xce\xb4P\x9d\xfa^\x101\x9cb?\xf5\x95\xd6\xbc\xc6Z[\xcc\xc7\xa9\x1f&\x87\x82v\xfed\x89\x85d\xa9/\xbc S^~A\xb4 \x9a\xf9$\x98\xa2\xe9`l[\xe2\x0f}\xc5\xb9\x8cf\xc5\x9f\x86\xcaYLD\xc5,\xd6\"\xd3,\x8a\xd0+\x93V\xc2\x9f\xfaJ\xf1\x92W\x89\xb5s\\\xf4\xb1x\xd1\xd7\x16\x0eX\xe1@[\xb8\xc3\nw\xb4\x85\xbb\xacpW[\xb8\xc7\n\xf7\xb4\x85\xfb\xacp_[\x88V\x1f\xb4\x98x\xda\xf5\xa0\xef9P\xd8Om\xa5b\x97-\x8c{l\xc1[\xd1\xb7\x90.\x19\xca\xd1\x1f\xba\n\x8c\xc4j \xac?\x8b1\\&-\xc7\x9f\xdaJK\xb6%\xfc\xa5v?\xf8\xe1*c8\x87\xbf\xf4U\x12^A\xbb+//\x18 //\xb4p\xbc$\xd7s\xc2P\x95\xfd\xd4U\n\xbc\x0bN!\xf0\x97\xb6\n\x99\x93\x90\xf5\xc4~j+1h\x05Zp\x05~x\xc9\x8b\xc3K]\x85\xa5\xe7\xb3\x81\xd2\x1f\xfa\n+^\xae]\xe8\xa5\x17_\xf2\xf2X\xdf\x01 3V\x81\x84\x99\xa9\x82\x9frR\"\xfe\xd0W\xe4t[\xe7w\xc8+p\xec\xc5_\xba*\xa1\xc7Ha\xe8iIa\x181\xbfaV\x87\xff\xa1\xab\xc8\x04F\xac\xc6\xc5Z]%\xb6\xbc\xfa\xe3*Z\xa5\xc5F\x12\x7f\x18*\n\xba\x17\x19i^\x94\xa5\x02\xa7\xd9O]%\xd6\x97\xb6\x93\x95\x17{l\x05\xf0\x97\xb6\x8a?I\x05]\xe5\xbf\xb5\xd5D\x15Sq4\xcf9F\xf1\x87\xae\xe2\xcfX\xe3g]Q\xcc&\x12kg\x123(\xc4Z\x08\xc4\xd9\x05\xe3\x99\xe8\x0f]\x056.\xed\x80\x12o\xc9\xfa\xa5?\xb4\x15\n\xd41#NB&\xf9r\xf2\xdf\xfaj\x81\xc0/\xf6S[i\xe9\x05\x0c\xc5X\nN]\x15L\xa3\xc4\xea\xe0Om\xa5\x95\xc7\x07\xb4\xf2\xf4\xa3I\xe3(d$\x95\xfd\xd4W\xba\xe6\x0c<\xfe\xd2V\xc9\x18\xeb\x9ddZ\xe6;\xc9\x96K/\xbe\xe6U\xf0\xb7\xbe\x1a_\x07\xfd~IY\x1c\x95\xd8\xb6R\xe6\xdb\xa2\xa9\x92\xf3\xce\xa9\x89yN\x19\xd9M\xb5$7%\x1f\xd3\\\xa4\x11\x7fh+R\xde\x82\xd5\xa2\xbf\xb4U\x16\xac\\\x9br=\xcd\x8f\xec\xd4tf\xa7>?\x0e\xe9\x0f}\x85T\xc0\x03#L\xeb\xaa0\xaa\x99jIf\x1a{\x93K^\xeeM\xb44\x9e\x11x-u\xcf\x18\x82fZ\xec\\{\xac\xe3\xb5\xa7\xedy\xedO \x13\xa7\xf0\x97\xae\xca\x15\x17r\xae\xf4R\xce\xc4\x8f\x85T\xc9~j+\x05\xfe\xea\xad\xc7\xd7A\xfc\xa1\xab8%3\xc1\xaf\xcf\xb4$\x82\x04\x81\xbf\xe2\x02$\xff\xad\xab\xc6v\x92\x9e5Yzs\xce\xdd,1\x93C\xb5J\xe0\x87\xac\x06\xfda\xaa\xe0\xc5_\xc5\xde\xd4G3f^\xb5x\xa5\xfbh\xe9%\xe2\x1cO\xb4k\xbc\x12\x10Z\x19\xa0\xb3\xf2\xd2\x94\xc4\xa1\xa8C\x7fk\xabE\xc1\xf5\x9c\x13@\xfe\xdbT-\x9f\xa9\xf8CW\x91\xce\xc9\x0bJ\xb3-\xbf\xd2~$\x88kl\"\xadi\xc4\x89L\x1a\xe9\x89\xfd\x9a\xd3\xc3\xb5v\x1d)Q\xc8\xa9\x83\xb6BNtSFuK5\x0c:\"v {\x07:\xa2:\xbbvn3\xdd7\xb9\x07\xfb\xc2\x9e\xecs\xc7\xd1\xdf\xdb\xd8\x01Yx\xe4\xd0\xfe\xe4`\x8cw\xa0\x03\xd6\xd8\x83s\x8f<\xf5\xf6\x97[\x8f\xebcYT\xdckx\xa8\xe7}5V\xb0\xf0\x8b1\xf9\x18\xd7\xda\xa2\x08[\x92\xcfQ\xe9\x03\xb7\x08\xd6\xab\xf5E/3Z\xe3\xc9\x13/\x8c\xc2\xebe\x94%O\x9fj\xb4\xb7\x81Q\xe5\xeb1s\xb9\xb5m\xe1/\xddN\x00\xd4eQ^ym\xe7\xf7\xba\x86zt\xbaX/\x9f\xb7\xa1\"\xbb\xe0\xc5\xaa\xfc\xae\xd7PQ0\xf2\xeb:F\x1e\xf2\xc08X\x91\xdf'\x9b*\xf2 ck\x11\xcf\xd8T\xd1\x0b\xaf\x870\xb5c\xd9\xf6\xef5^`\x9bA\xf9f\xd6\xa4\x82\x17\x8f\xb8\\*\xe2\x99\x14\xe6\xce.DM\xf7\x8b\xca\x15\xccVal\xe0\xc8\xf6\x1d\x0b\xdb\x12n\xdf\xf0\xa3\x05\x1d\x88\xa0\x03\xd6\x8f\x10\xcd\x8a\x94s\xac f\x05\x0b/\x01?\\S\xea\x93{\xcf@\x18\xa5\x98\xc0\x82\x8a\xdd\xfe\x94\x88\xa9vM\xe9C\xc5C\x11\x14\x13I\x8dCC\xb2W\xf1`D\x89\xf2\xa5yV\x1b\xb0B<\xb4\x0b4\xad\xacD\x17\xd0=e\xc8\xbc\xe4\xf3\xa4\xd3\xf71\x16\x99\x02\"\x0c \x8d\xef\x12\xf6.\xc9V\xab\xc0gi>$\xa8\xb9@>\xae\xc8$%S\xf0B\x06\x9d\xaeu\x9b\xebX\xf1\xe4w\xe0<\xd0\xc2\x04\x9e@\x96\x1b\x06L:\x9d\xb6\xa0\x99aj\xc9\x0c\x93\xe2r\xcc\xa2#\x1e\xd3\xb1O\xe8\xaf3\xcb\x05\xaf\x05\xe4\xe8\x02\xcddCJ\xf4T.\x8c.>c\xb2:sx\xf5\xb91\xdc\xe2\xea\xb7\"\x11\x1eb\xf9\xde\xfa\x82;qC$O7@l\xef\xcb#\xb6\xd7\x1a\xb1!\xf1\xc3y@\xe0\x84x\x93\x94s&\x9f\x87\xe5\x9f\xb3\xf0\xa6\xack\x02C\x7fWB\xbce\xd3\xc5/\x99\x19\xb7^c\xe6P\x14zK\x16)K?+\xf5\xf1\x1a\x8d\x9eM\x0f\xc3\xc1\xae\x14\n\x16\xe3\x0d\x97\xde\xe0h\x8a\xad\xdd\x8c}\xe2\x11vp\x95\xc6Z\xb5pc\x1b\xa2W\xab\xcf\x97Gv\xb1\x92\xf4s\xac\x91a\x8d\x7f\x1c\xba\x1b\xb8(\xbc\x92\xbb%\x91\xabu\xb0R\x1fD\x9bk;\x1d\x933Ge0\xe4\x05\x88\x8b\x05\xf0\x0d\xc0\x0e\xab\x94\x05I\xca\xebhJ\x1a9\x8a\xcf\x81\xa1\x89d0\xbe\xf2w%\x18\xff0\xceM\xcc\xb5\x11\xd0\xf2\xa9\xd6L\x93\xdaq`%+\xb3\xad\xd1\x08\x92:T\xbaC\x8e\x8c\xf5\xd98g\x89\xeb\xf2C\xc8\xea\xf7:\xf0 e\xdd\x85\x97H\xd1\x95\xecI+\xd2\x0f\xf5\x0cZ\x17\x19\xb4v\xac\x19|.{\x06\xff\x00\xd2\x15\x85\x1b\x1c\xd1\x1a\xe9@\x8aTW\x11\xd0jL\x0d?o\xeb\x16Q\xd1\xc4\xce`\x810\x1f\x83\x07O \xcd\x19tO\xf6\x866=tR+\xba\xf2\xe9\xd8\x93\x89j\xed\x04@\x12y\xfer\xfa\xe6u\x91?H\x9bYB~6\xdcih\xb2*\x1f~-\xb6Z\x14\xe2\x89\x99o\xcf\xba\xf3\xf2\x16\xe8B)\xda\xef\x8e2R\xe8i\x16\xad\xbb\xb4\xd2\xa4Y\x14\x13\xba\xa0T\x9b\xa9_~\x8c'C\x98\x0f<\xb2\xb7\xfa.\xe4\xab'\xe2\xf4\x96\xd6&\x87U\x17\x8eU\xb1\x14\x8f\x8f\x05\x99\\\xe6`L\\\xb8\xc8R\x88\xc9\x84\xf8k2\x85?&\xe0\xa5\xe0\x87S\xf2\x11\xfe\x98t-\x17\xce1\x99\x0bA\xe7m\x05l\xe6\xd5\xfd]\xb6`\xef1d\xa5\xe5\xc8\x9a\x97\x03\xa4\x1d\x94\x8e\xb3\x86%\x01(\xfb\xd5&\xe5\xd1R\x02\xed\xb4\xa2\x8e\xd0\x9a\xc6\xb6\xd9\x9f\x86\xadxw\xfb-Y\xb4\xb0&\x15\xcfg.\xe9\x7f=\xac\xc6\x8f\xac\xc7\x1f7\xe44Z p9\xb30\x9e\xb4\xc4\xd9Y\x9bf\x817\x1d`\xac\x84;\xe1C\x82\x1c\xd4\xf5\xdb\x01\x1a\xb7D\xbb\x0dswL \xf9\xe8M\xd2\xdf\x11\xeb\x93\xd6X?A\xacO6\xc5\xfa\xc9g`\xfd\xe4\xce\xb1^\xa0p\x86q\xed\x18\xff\xd4\xc4\xb5\xe4;%\xa0;\xa5\x15J\xd3\xda+\xdc)A\xcb\x9d\xb2\xb5\xda\x0cN\x97\x84\xcbdA=9\xfe!|\xe6M\xf3+\x0cZ\xa0\xf0l\x0c\x06,\xc6\x80\x05\xdcs\xe5\x87\x10/\xff\xd0\xd1E\xfb\x95\xec\xf7\x92:\xa5\xef[l\xd35\xf7s[\xd9\x89\x0bAu\xb7\x07\xedv;\x85\xdb4\x07\xdb\xf4\x1f\xb4\x8f+oo$\xafM\xa8\x06B\xd2\xe1\x8f\xd0Z\xe5\x891x\xf2\x02\xf8\xf4 \xfap\x1f\x0b\xf0\x07\x81!f\x00c^2\x84\xfeR\x03@\xe8\xfb^\x18\x02\x13,\xfc\xa4\xbb$I\xe2\xcd\x89\x14\xf8(I\xbd\xc9%\xbaW\xb5j|j\xc8\xff \xcaC\x9b\x11\xa5\xc8\x85\xcc\x85\x04)\xbc\xd6\xe5\x93>6=\x883\xa6\x89D\xa23\xc1\xa4V.\xb0X\xa5\x9e\xc3S.`b&dE\x8f\xbc \xf0\xc3y\x11j\x0dp\xe7xi\x14'0\xf5c2I\x83k\x91\xe4\x85n\x94(\xa6D\xe3\xe2\x1a\xd2\x05\x81\x1fWq\xb4\xda\xa6D'\xf9\x11V\xde\xe4\xd2\x9b\x93.\xbcO\x08\xfc\x987\xd8E\x865\xff\xd3v~\xa4\xfbl\xe2\x05\x01mb\xd9\x85\x13\xe2Ma\x19\xc5\x84r\xae\x8b4]\x0d\xef\xdf\x9f]t\x97\xe4~\x96\x90m\xfcz\xbb\xe8\xc7\xb8I$<\xc48\xd0\xe3\xe8\x0c\x0e\xd0\xd93\xf7W\x15\xef\x18\x91x\xb7 \x85\xacS\"\x9a~\x82\x86\x97\x94\xf1N &?g~\x8cZEY\x9eb|\xb7\x9f&\\\xd4\xf2\x13\xf8\x91vD\xe9(\x0c\xbf\\\x1f\xb9\xbf\xae\xe8\x88Nn\x08\xa9]\xc2\x91&Op\x90\xaf\xe6\xbb\x17~8\xb5\x19\x19\xda\xeak\xc0\x9b\x8b]~r\"F\xaa~\xd7\xabF\x981`\xfc\xba6\xa4\xa3\xe9@v!3a\xbd\xb8k1_\xe1\xf0\xb6\xe7\xb6\xe7p\xe2p\xd0\xee\xa8(\x1d\xa9K\xfay\xdbS\x95\xbeM\x05[\xcf\xd7\xa9\xba(\xaa\x17\x93\x1eb\xd7\xb6\x96\xf2%W>\x8b\x92\x9b{\xef\xe9\xe13\xf1\x12\x92;e\x0fk\xaa\xf0\x9b\xf7\xba*\x85\xbb\xb8\xbe\x16\x14\xd06\xa5 `\x0d S\x84\xe6f\x0c\x9e\xb7\xac\x19\xce.\x99[\xd1\xbas\x8b\xb6I\x97\xacI|m_7x@\x97=\xdeS\xb9\x89\xbaD\x0bk5Bc\xa3\xa8\xb0.9r\x86\xcc\x913\xe4\x8e\x9c\x93\xa6\xdb\x95\x8d\x1c;\xd5\xe7\xa6\xd1\x0f|+n\x953\x82\xce\xc1\x17)O[9\x98\xc7\x8a\x83y\x1b%\xc2c\xd8\xb2}LhPv\xec\xae\xfd\x12\x8a\xbb\x10\x9fyuK\x0b\xd97\x83f\x03gs\xdd\x98Zr\xbd\x18Z\xa8\xad\xb39*\xaf1\xf1\xc5\xb5\x9d\x8d\xfbg\xad&\x02mt;&\x8c\x16\xe1\xa5\x1b\xbf\xaf\xf6\x7f\xd3\x8a\xcc\xcd\xeb\xbd^\xc5=\x8b\xf1|R\xf5\x85p\x00\xdc.\n9?I\xbd~B\xe6\xc7\x1fW\x85k\xba\x05-\xa3\x13\xf1\x9e\xa4\xfc7\x9c\xd3\x14I\xa1\x18\x95\x18[\xff\xf2/R*B\x0b7p\x835\x19\x91\x07\xc8^W\xe1\xc8\"q\xd1\x81\x8b\x11T2W\x1a\x80\xbb4\xc7\x14\x93\x12\xcb\xe1\\rjW\\i1\xb7\xe8*\xe4\xc5\xda\xcc\xb5\xfa\xebJ\\\x82\xfa\xa8O2\x00\x9e{\xa9\x94\xb1g\xea\xa5\xc4\x90\xb4\xa7\xf2%[\xdb\xe2\xdb\x98\xcc\xc9\xc7\x95\xc6\xeb\xd9\x84F\xed\xe0y^\x8f\xac\xfaT\xd1\xe2\xc4n8\xaa\x19\xd2\xd6\x1d\xc3\x8d\xc7\x9e\x98\xbd\x17\"gS{\x86\xd6\x1f\xc5\xac\x0e\xae@]\x05\x0e\xe6\x16#\xaa\x1bP[\x1a\xd3\x14\x89\xae\xfc\x17\xffH\x8a\x88 #v\xc5&g/\x08\x14I\x05F\x94\x95\x0e\xba\xf2\x8b\xc0\x055\xe8\xe7\xad\xccb\xebb\x01\xe5W\xfaw\xd4\xbe\xd5\xdf\xeb\xeewy0\x84[\xb5\xb6.\xc2\xec\xef=tLa\xc5\xfdV\xf6\xcf>\x7fu\xf8\xfa{C\xbc\x87$\xf5R\x7f\xd2\xae\xee\xaa\x08\xb4\xde\xa26\x8f\xf2\xba\xc1\x07\x0b?\x98\x1em\xfa\xd5\x9c\xa4\xcf\x199\xa0;P\xf9\xe6\xfc\xd5\xf1\xc9W\xc7\xcf\xcd\x9f\xbe\x0c\xfd\xd4\xf7\x82\xd3\x14S=l\xf4\xe9\x914\xdcM>\x8dI\x88\xfe\xbd\xe2\x8b7\xaf\x8f\x8e\x8d \xe4[\xe8[?\x08^\xb1p\xaa-@\x92\x7f\xf6\xdc\x9f\xde\xe2+\xda\xd9 \xbb)\xd4\x80\xd4\x84G\x8b(\xa3\xe0\xe0m\xbc_MK\x10m;I\xf5\xbb6\xe3}\xeeOo\xf3\x19v\x17.[\xc3\xe7\xfd\xeb\xd3\xc3\x17\xc7\xe7\xb7\\\x13\xdd\xd7\x1b\x03Y\xd7\xc8\x06S\xcf\xb0\xaa\x94\xcf\xc1z\xf3\xe1\xf8\xe4\xe4\xe5\xf3\xe3\xf3g\x87\xa7\xc7\x1a\xe6\xa7\xda\xce\xc4Htp#\xc6\xfe\x9aLq7\xbd\x88\xa3e\xcd\x8el\xd3\xd7\xcc\xd8\xd7\xd4OV\x81\x87I\xceZ\xb2\xe4\x80\x84W\xfa\x0eT\xbd\xaex\x0c\xd7F\x82\xa6\xb6\xee\x8d\xb2\x9c\x9a\xd8\x9e\xf2\x93\xdf{\x84\xec\x9e;,\x85\x86\x0b;\x1d\x87k\xb4\xc7\xe1\xd9Fw\\\x1aR\xdaz\xdci\xb7\xf25f\x1b\xfc\xfb\x8d\xab+\xd3\x060\x85\x9a\xa1\xddzT\x86\x01}\xc6X*g\xc7\x06\xc3Q\xbe\xc5\x00G\xea\xbb\x11L\xed\xca[ly\xa8\xad\xbd\x11BJ\xa7\xf1\x06\xc3^Il\xaa\x00a\xfenS\xf8\xe5\xccC\xeb\x01l\xb5\xaf\n\xed\xf6\x10\x94\xf7\x91\x1f6\xb7*\x1e\xc1\xe85\x1b\xf5\x8b\x07\xc7\xa3\xda\x02\x86\xadm\x01A\xe8\xbd(\xbb\x88W\x9d\xed\xba\xa5Odo\xf9.\xfc \xadhy6\x9b\xef\xa3\x0c<\xbc\x10I\xc9r\x95\xfa\xe1\x1c\xd2\x88gi\x07\x0fb\x92\x90xM\xa6\x88)t\xa4.\xfc\xf8\xc7\xe4G\x17\xd2\x85\x97\xf2\x03;\xfc\xe1O)\\\x10\x88B\xbc\xa9\xb1\xf8\x8aZpI\xae\xbb\xf0\x9c5\xe5cn:/,,\xa6E\x8b\xf8\x86x\xd3\xc7\xb4\xce\x95\x1f\x04\x90\xa4\xf4\xff\x17\x04\xbc\xc9\x84$,94o\\\xb6\x17\xff\x93>t\xbe\xe9\x11z/\x04\x9a!\xee\xb5\xeeA\xf5\xd7&\xab\x03\x12\xcf=\xa9.4\x1c\xc0d\x1c\x9eqE}\xfbq@!^F\xb6\xee8D\xbd\x87\xe7\x82\xd5z}\xe9RR\xc8^GY,\x19\x0b\xe3\x0dY\xba\xf0B\x88\xc2 \xe9\xc2\xbb\x85\x9fP\xc8\xcf\x02\x7f\x92\xc2\xd2\xbb\xa6k3\xcd\x08m\xc9c\x87Z\xd7ba\x99\xd7\x91?\xb5Q\x8f\x8ct\x0bo\xad\xe3\x86\x80\x93\xf2S\x7f\x01,?\xbc\x13}\x1ch\xf5in\xd6\\\xe3\x86Q\x99Mh\x9a\x97\xa5\xd1\x85\x1fN\xcb&\xf7\x1b\xdcA\xeb\xd3\xfd\x80d$\x98\xa8\x88E(b%cbF\xacs\xcd'\xf7\xeeQd*\xb3p,tm \x8f0?\xc3\xcc\x9b\x10\x13BEk\x12\xc7\xfe\x94\xa3\xd4,\x8e\x96\x1c\xa9\xe8\xd7\x90\xac\xc8\xc4\x9f\xf9\x13\xb40\xef\xc2q\x98d\x0c\xc3RVkI\xd2E4\x85\x10\x93\xd1N#\xbc\x01\xa6-\x06\xde\x8a\x85\xf2\xc4\x91\xf0jhjH\x1c\x97\xdd\\\x94\xb7\x82\x08\xbb\xfb\xe9\x93\x96a\xbc\xcd\xcc\xbe\xc8V!\xedn\xe3\x90q3\xa7\xf00\x11\xa5\xc8`\x1cZ%\x0d\x7f\xaaL7K(\xd9/&\xc8\x160\x8a\x8bAQ2\xceg\x02/\x19\xe9v\xe1\xa7,I\xf9\xb71\x99g\x81\x17\x17\xb6\xf4.=w\x08\xda\x86n\xde\xff\xc6\xbd\xe9 \xea:\xcf\xd7T\xa8\xe1\x8c;\xde\xc7\xfb\xa4\xf3\xf3\x98\x0e\xf60K\xa3g~8}\xeb\xf9\xb1&\x863\xc8\xac\x83G\x8f\x96P\xddf\x19\xcb\x14\xdee\xdc?.)\xff\xedh\xa3\xd0\x8b\x07\xd7Xm\x8c\x19Vxx\x8d\xd5x*\xad\xb9ch8\xf6Z\x98\x8e\xadp\xda\x95\xfe\x9a/\x02\x03{\xc5\x12\x01\xcd\xaa_;0\x1b{gt\xd2\x93\x86\x96jbQ\xcb\x0f\x9d\xd3BG\x00\x9bF\nu\x86\xd3h\xbd\x82\x01\xc4W\xe8\xe6\xd6g\xa4\xa2+(y\xbb\x13\x0c-\xf5\x9b\x16E~\xd6<\xa4w2\xf6Zr\x8f\x80\xfb\x1b\x03\x9b\x9b\x99\x80k\x95\x00\xf2\xd7\xea\x0e|\x1f\xe6V\x04\x94D\xc3*\n\xfc\xc95\xfc1A\x94\xbe$\xf8\xf3jAB\xb6\x03\xe7\x14\xbd\x8b\xadI?Ab|\xcdV\xbff8\x07\x10\x8f=\xc6\x13\xd0\x1f\x14\x19`\xa8\x1b!\x8b*\xcc\xea\xae\xf3\xba\xed\xa0\xcfCT\xf3\xaf'\xcd\xf0d\x11\xadY*\x16\x8f\xf6\xe3\xe6\x1f\xd7~[\xc3+T\x8f\xf8V\x84~a<\xef\xcbbIds\x8b\xb2\x9a\xfc\x01\x9a\xf7\xc4\x05kI\xe29\x11\x89\x97^G\xcf\xb3U@\x0fd\xf25\xb9Nlg\x08G^H\x8f]\xac\x06a\x14n\xb3f\x12$\xe0\xc4\x01\x8d\xc8\xc2r\xa7\x95.\xf5\x90\xe1k\xec\xeb]\xcc-ZXo\xe9U\xc4\xe9w\xc2\x8e{\xca\xe9'\xde\x92P\x14\x1c\xe2\xd1\xdb\xead}LA\xb4\xc2\xa8\xb3\xf4L`Vr\xa2\xea\xc4\xcb\x12nNv\x15\xa9j[\xdb\xa1G\x9c\"L\xdb\x8e\xe088\xdfMw@i\x9c\xf4p\\\xd0\xb7\x97\xe4:\x11,0gL\x0d.\xaa\xc2\x86\xb0\x15ZL\x9bL\x11e\xf6\xd2x\xee\xa1OI\xd7[\xad\x82k\xccE\xe2\xe6\xde \x89\xc1\xd1\x91>(\xd4\x1a\xbe2\xdf\x8f\n\x9b\xb8\xc2\x11%n\xae\\\x18{\x84\xe6\xd3\x1bC\x1ek\xe2G\x83t\xebf\xfbl \xf0\x87>\xd9I\xbb\xfd\xb8\xfel\xc0\x1b\x01n\x04\xea-\x87z\xdd(*\x10f=\xa7\xbb%\x16`WzR[\xd1\xe77\x06\xfd5A#h@X\xb4\x9e\x9f\xfb ~\x84F~\x9a$\xeb\xa0'\xa9U\xa4]6\x0f\xb0\xa4\xaa\xbf\xf5\x18\xf5\x06/\xad\xc6xn\x1c#\x8fY\xce/\x90Z+\xb7p|L\x1f\x1fwI\xf8sF2r\"5\xc51lc\xe95\x9fpK8 c\x9c-\x15`\xb7\x87\xd5\x859\xd90HV\xa2\xf6\x85|\xab.\xf3\xf6p\xae!m\x05d\xeb\xc8%Q\xaeT\xe3\x1a{P(\xd0\xa4*,\x88|p\x94\xf9o\xecY<%/\xc2T\xdb\xaekP\xf5Cg\x04\x83\xa6\xf6A\xd1Y6\x8b\x05\xc0%\"2\x0e\xa1\x03\xfd\x16|*&\x84\x181\xca\xe4\xdf6\x10\xc2\x0d\xa2\xaf\xc8\xb3\xb7\xe2\xda\xedj\x96c\x91\xd07&3\x0cj\xe6\x96\xf6\x850R\x0f\x0b\x93\xf9T\xe4\x172ODh\xef\xf0\x13\x85U\x80\x03\xedk\xdbiT\xe8E\xb6\x865\xf3\xd0\xb0\xaelO\x86\xcc\xf4\x1f5]\x0caI%_\x8e\xfe\xb9\xbf:\xe5]h\xd7\x16=\\\xe4\xeb)*\x050~\x9fR\xc1\xc4\x97.\xee,G\x81\x88\xa7\xdf\xad\x0d\x12o\x8c\xca\xf2\x92\xb5KH\xae\xe0\xc2\x95_\x96\x82\x88`\x8ef\xb9P\x87\xe2<\xd5\xa0'\x12\xdf\xdb+\xd9\x02\x9c8\x8e\x0b+\x9b\xb80\x17?R\xf1c\x89'\xacz-\x82\xbe\x08\xdd\xa9rS\xa2V\xb3\x1d\xd4U\xc8\x83c\x17\xed.XR\nx\xbb\xdb\xedR\x86\xb9\xaa\xdab\xcb\xe3/W\xcc\x1c\x05<\xf8\x915\xf0#\xe7$\x91\x99N\x1cy\xfe\xd3E\xa64'\x13\x8fJ\xb4\xfc\x83A\x14\x92\xffJ\xcb~ \xca\xad\x8d`p5\x80e\xd1\n5\xa9\xd3Y\x80BM\xc1\x0c#\x12j\nD\x04BM\x91p\xd8\xd3\x14\x89(\x83\xba\"\x1eWPS\x84\x91\x04u\xefE\xc8@\x8d\xd62\x8fa\xa6\xf9N\x0er\xa5\xf9\x94\x85\x052N\xcc\xf0\x15\x8f\xc8a*a\xc1\x174\xa5\xdcU\\7\x05\xe6N\xab\x98\xc3jy\xbe\xb0j:\x19\xbb\x10\x96L'C9\x9f\xeag\x10\x0e\xee>\xc9n\x00\x8a[\x13\x17\xac\xf3s\x92\xbc\x8a\xa6Y@,WA?4\xaa\x1f\xca\xd2\xcc\x0d\x1eI\xfc\xf0\xa9\xa3\x1e|\x8aUt\xce\x85\x98dh`\xef\xdeE\xab\x0b/\x1eB$\xfa\xa9\xd42Y\xad\xde(\x84\xd2\xcd\x89\xfc\x8e\x86*\xda\x94\x90\xfa\xa8\xf9\x89\xbb\x05\x14\xe0\x00b\xd0\x8dMX\xd9V\x1c\xb6\xe0\x1f\xbe(\xd5\x03be\x87v\x7f\xf7\xa1\x9a\x03\xd4\x17E{=]^QVT\xc9\x1c\x9a\xe5E\x95l\xa4^^\xb4\xaf\x16%\xdcfU=\xa8&\xcc\x0fWy;\xa3+\x82-\xed\xef1\x9e\x88\xae\xdb\xae\xa3\xb6\x1a\xf0\xf3l\xdf\xd1\xa5*]\x19\xcfg\xd4'\xa6\xe5uN\xeb\xd7\xd9D\xcdoJ\xd0^\xd4r\x07\xd2\xb9a\xba\xff\xb2{.\xf8\x02\xd7\x1d.\xe9\xea\x9c\x7fho\x88\xb8=\x172\xf5\x03\x9br\x9f\xc8v\x9d\x9f#\x13\xd6s!.*\x11\xc7a^E\xb9 \x1d\xea\\B\xc5\xa5|7\n\xdf\xc7\xc1\xd1\xc2\x0b\xe7\xa4\x95+V!\xe6\xa5^<'i\x9dCN\xd4MH\xca\xc4\x00\xb3\x80\x97\xc5\x81JE\xc5\xa3\xf1\x8b\xbeq!\xea\x06\x917=]\x91I\xab\x01GL\x0e\xebR\xa6\xf7\x10\xeb\nA\xeb}\x1c\xa0\x87\xb9\xae\xc64\xba\ni7j\xba\xf3|\x0c\x08\xb7S\xcc\x8e\xd0j\x18z\xb8\xa1\xe7\x9ax\xb3\x88\x89\xc1.\xa6\x98\xb2Mp\xc0\x14\xae\xd87\x99\xd2Y\xe0\xcdrw\x15\x935 \x85t`\x1b\x06.f\xf6>\x0eZ\x0d\\\xea;b\x82W7\x8b\x83\x0d:\xc4\xb1z\xf1\xa4~\xff\x88G\xc0\x89\xa2u\xd0]yqB\xd8\xd7\x8e)\x834\x19[Y\x1cPq\xdb_z1\n\x91\xd6Y\x1ew\xd2\xac\x9c\xa5\\\xd8\x95\x1fN\xa3\xabn\x10\xf1k~\xdcW\x93\x08#\x1f\xdc\xbfoA\xa7Rc\x11%\xa9\xe6\xf5\xcaK\x17\xe6\xeeXmJ\x98\xf8w\x0b?I\xa3\xf8\xba\xfa\x06/v\x98\xcc^-\x93un\\\xac\xb4,\x97\xc5\x1c<\xa0\x83e@KH\xec{\x81\xffK\x0e8]\x86\xde\x9b*\x1am\xb4>b\xd3\xccIz\x14\x853\x7f\x9e\xd8\x0eE\x8c\x84\xa2\xf4\xd8\xa0p\xc1I\x11I\xc7\xc4n\x86r\x899\xef^\xe7\x12Pj\x88v\xc5]\xb2\xf0B\xa7\x0d\xa5\x81<\xb5 \x99\xbe\x0c\xa7\xe4\xe3\xd0\x90\xc2\x1e8\x03$\xe1\xae1\xcb\xb1\x89FE\xe1\x0b?HI\xfc\xc5H+\x03\x7f\xe0]GYZ\xa6k\xacc\x9d\xfd [t\xae<\xd1\x0f\x02\xc9q\x8a\xb4\x90\xa1F\x14'\x14\xd8\xa6\xf8\x92\n@\xab\xfap\xdag\xe9\xa5\xd6\xf9\x88b\xae'\x9dbL;B\xdfF\xa5\xb7\xe3\xea\xa8\xf1\xbe\xcd2\x1a\x98kl\xc29g\xd5\xbc\"L\xd9\xd4\x8cYf\xa0\xb5\xc6\x992\x88T^\x10\xf4\xf3D\x9du\x8b \xd6a\\\xcau\x86f\xa5*\x11Z\xc5\xea\x8e7\x7f\xc4.q\x9a\x08\x02\xde\xa8\xd1\x1d\x1cr\xa2P\xb7\xe9\x0b\x15\xb0\x86\xe0\x9bU\x981k\x7fc\x1a\x03Hg0v1F\xc7`|e\x0bl\x10OkZ\x03z\x9ch(j\xbc\xb7o\x81D\xe2\x06\xec\x8ep\xe86g\x02\xe7\xd7\xa53\x816\x94\xf3\x1c\xe9\xb8\xd0\xf8vK\x10=C>\xe4\xf6@`Z\xce;\x9dy\xc3\x1eb\x80\xd1z\x07\xca\x0f\xbb\xfb.\x11\x13s\xe5\xb8h\x18!n\xae\x89\xf7!\xb6\xf5\xcc\x98pU<\x11\xab\xf8\x8d!i\x9fx\xd0\xc9\x8f\xae\x93\x1f\xce\xb9\x95b\x97\xffIwHVK\x1e\xbc\x9a\x9bqk\xe6\xf9\x01\x99\x1a\xda\xc4\xf3\xde\xebN\xa2\x00\x15\xf3V\x8c\xd9=!S\xdf\xff\xff<\xcf\xab\xb3\xac\x0b\xd0\x11\x80\xe1\xa7y\x9c+\x83\x0f\xa2x\x16\xb5\xf72<`\\=I\x9bb\x17f\xfa\x15TIW\xd3-+}\xa6\xccFh\"\x8eO\x9e\x9aYh\xadE:?\xdd\xfeP\x1f\xdc/5\xb6\x87\xe2\xe1\x1b'\xa50\xad'v.\xe7\xcek\xac\xa4(\x03\xb6j\x98\x03\xcb]\xd94\x054\x07e.S<\x9f\xdd6\xff\xb0\xf6\xb3E\xba\x0c^Dq\xfeQ\xd5uK<7.\x18\x87\x88\xf9\x95\xf2(f\\`\xf4\xf0\n\x86\xa2\xad\xf9;\xd6g\xd3\xdc\xfci1\xbe\xfa\xe9L\xfd\xc4\xbb\x08\xc8t\x08Y}\xc5(d<\xeb\x90\x116I\xd0\xad\xff\x8e\xaf~PO\xb0\xeb\x808uLL63{[\x08b+\xc9\xb0\xcdH\xc2\xd2\xac\xd6\x01RF\x10\xd1\xf4v\x16\x07\xdb\xfcS\xe3\x87)\xaa\x8dY\x9a\xad\x1az\xaa\x01({c\xfeFl\xa5\x02\x94Y\x1c\x98\xab\xb7Z\\\x9e#\xd1pi\xea4\xef7\xffV@\xe4\x19\xbek\xe1\x13\xf8\x93\xcbaem\xf5\x03u\xc1:\xfe\xb8\n\xa2\x984\x05;3\xa2\xc4\xd4_\xb7F\x88\x14\xb5\xd4\xfa\xcd_\xb7\xf17\xe9\xe3*\xf6V+\xf2\x85;a\x13\xd9\xbem_\x91 b\xe6\x8d\xb6\x9c\xd7\x0efA\xfc\xf9\"\x1d\x82\xb5\xd3\xab\xc1\x86+\x7f\x9a.\x9a*%\xf1d\x0831\x90\x1a6#\xa0\xfd\x9d^y\xf39\x89\xe1\xfdK\xc3\xack q\x89\x80'\xac)\xcb\xa9\xfb\x04\x13v\xb7]\x96\xd2^\x11\x8bS\xb7YN\xb3\x8b\xa5\x9f\x0eaaZ\xc1Uw\xe9\xad\xda3\x0b\x92\x04\x9et'A\x14\x8a\x898\xf4\xd3\xfa\xe3\x87q\x06f\x9an\x92\x7f\x1d\x1d\xa5W8\xf73\xc7\x95\x9a\xbe\x91\xa8R\xceCK\xdb_\xbe\xacb\x90Qojd\x18\x94\x02\x80`J~\xccxy\x7f\x15\xce\x1f_x \xd9\xdfu\xfd\x0f\xcf\xde\x9c\\\xf5\xbe\xfej\x1e\x1d\x1e\x1e\x1e\xbe>}\xbf8~??<<|\xb6K\xff&G\x87\xaf\xe8\xbf\xaf\x1e\x04\xfb\x7f\xa5?\xbe\x7f\xf1\xec\xd5\x87\xe3\xf7\xb4\xc2\xfb\xd9\xd5\xad\xfe\xeb\x05\xbf<\xbb\x1f\xf6\x9e\xcd\x16\x1f\x9f\xad~\xba>\xea}\xdc\xbd\x7f\xff\xfe\xfd\xce\xcf\xeb\xdd\xa3\xbf\xac\xfa\xcf{\x8f:\x9dY\xbast\xff\x97\xbd\xfb_\xf7\xf7\xef\xbf\xdfy\xf0\xe8\xfd\xec\xea\xf9l\xef\xe1\xfd\x9f\x1f<\xea\xbc\x8f\x07\xcf\x07'G\x97\x8f\xe8x\xfe\xfc\xdd\xc9\xe9\xbb\xe0\xd5\xe1\xf1\xf1\xe1U\xf8\xe8\xfe\xfd_v\x0e\xe7\xeb\xdd\xfb\xeb\xef_>\xbf\xaf>\xef_\x91\x9f\xfc\xfe\xe5\xe1\xe1\xe1\xf3\x87\xa7\xefO\x9e}\xf8\xf3\xfcY\xf0\xb7W/\x0e\xa3\xbf^=?|w\xf2\xf1\xe2\xbbg\x0ff\x9d\xf5\xdb\xaf\xc3\xe0\xbb\xc3\xbf\x85\xfb\x97\x83\xc9l\xe7\xf0\xd1/\xf7\xdf\xce\xde\x1c=|\xf9\xf2\xfb\xd0\xdf{\xb1\\\x1e>{\xf5\xf0\xc5\xab\xc5\xd5\xbb\xfe\x83\xc9\xa3E\xb8\xf0\xff\xf6M\xff\xe8j}\xfcM?]\xbe}\xde\xfb\xf9\xf4\xeb\x9f\xf7\xe7\xdei\xfa\xed\xfd\xcbW\xdfy\xe1\x87\xe5\xe1\x87\x93\xe7\xef\x83?\xf7\xdf\xac\xb3\xec\xdd\xcb\xd7\xd1\xfe\xe5\xa3\xde\xe9\xc7\xd9\xc3\x9f\x937\xe9\x8b\xfd\xf9\xeel\xd6\x8f\x92\xb7;o\xc2W\x93\x0f\x0f\xa6\xbb\xab_\xa6/\xdf\xa7Y?:\xdc\xfd\xd0{\xfe\xb7\xe8\xeb\xe5\xc7ep\xfc\xfd:}\xfe\xfe\xa7\x9fNw\xd2\xe5\xd7\xcb\x9f\x9fuV\xdf_?\\=\xef\x7fx;{\xf0\xd3\xdb\xe3\xde\xcb\xdd\xde\x9f\xff<\xf1\x9e]\x85\x19\xd9\x9f}\xf5\xcb\xfc\xfat/\xfd\xee\xe5\xfbG\xfbo?<\x88/\x9f\x7f\xfb\xe7\xd7\xdf|\xe8=\xffz\xf7\xc5e\xf4\xf5\xf2\xc5\xea\xf5^\xf4>\\\xfb\x0f\xbf\x8e\xc8\xe1\xe0\xfe_\xbeK\x96\xdf\xfd5\x8b.?\xf6\x12\xff\xa4\xff\xd5\xc3\xf4\x9b\xcb\xd7\xfb\xe4\xd9\xa3\xe4\x9b\xab\xbf\xac\xee__/'\xd7\xde\xdb\xfb\xef\xe2\xb7\x9d\x93\xb7\xcb\x8bW\xaf\xfc\x8f\x93\xbf|\x98\xbf;\xe9{\xef\xff\xf6h'\xfa\xea\xbbd\xfe\xdd_\x0f\xbd\xaf\xf6\x8f\xaf\xe8\xb2\x1c\x9e\xbe\xff\xf0\xe6\xe4\xeb\xbd\xa3\xef_\xbe\x1c}F\xd0\x19\xd2\xbd\xb8N\xc97Lj\xae\xd3.\n\xad\xe2\xc4N5\xf2\x18\xaai\xc6=\x8d\x84\xc34-\xaa\xe9\x1c'\x16;\xf0\xcf`\x87\xd0\x81\xd8\x81\xfb\xb0\x0b\xdb\xd2]\xe9\x8d\x0b\xa4\x9bF\xcf\xaeS\x82\xa6a\xf5\xd7f\xb9\xe9 \xb3\x10\xc4Q2\xcb\x17:*\xe6\xfc:\xee\xf3\\\x14!\xb9\x82\xa8\x92\xe4\xa7\xc6N\x03\xc7I\xa0C+\xb1q*f\xc3x{\xe6BF\xe99%\x06=\x97\x05q\x86\xa7\xd0\xc3\x0b\xe2m\xd8\x85!\xad\x120\xfb\xc5\x00\x9e\xc0\x8c\xfe\xd3\x19\xc1\xae\x83\x90\xf5\xc7iw\xb2\xf0\xe2\xa3hJ\x0eS;p\xce\xe0\xc9\x13\xe8?\x84O\x95\"\xe8@\x9f\x17\x0f\xf4\xc5\x03V\xbc\xaf/\xddq($\xc6I\xa7\x83\xe6\xfa\xf0\xf4)\xf4\xf7\xe1\x1e\x0c\xf6\xf6\xd4\xf7\x0f+\xaf\x07{{pO\x0d-5@)\x9bI\xcf\xe6\xc9\x18\x06K\xe7\xf2\xf4)\xecV;Q\x18\xb3~\xab^\xfa\xbdZ\x90\xed\x9a!\xf6\xf4)\x0cZ\x03\xc0\xd1\xa2\xb4WF\xe0Y\x1c-o\x87\xc2B\x97\xc5\x8d\x12\xe0\x8f\xb0\xc3\xc2=\x8e9>\xf782\xc36\xf8,\xc7\x83G\xff\xe9\x8c\xa0\xbf\xbf\xf3p\xc7\x81\x88\xb1\xe13\x8a\xe0\x99\x8b\xd1n\xb1\x04\x9e\x82\x07\x07\xe0\xc1\xb0x\xa7\xb2\xc0\x0c\xd2>\x1c0@\xa7c\xda\x0d\xdd?\xbc\xd1x\x8c\xc0\x19\x9c\xd1\xcd;&\x0c\xae\xf7`\x7f\x87\xbe\xb0F#\xcbq`\xc8\xb1\xc2\xcf\xd7\xcbf\xed\x0cp\x1d\x1e:\xd016\xdc\xef\x89\x96)b\xe4-\xf3\xae\x06RW\x15\xee=\xbf\x93\xfe)\xf2C\xdb\x92\xec\xb4$E\x91d\xc5\xc9 \xea\xf3\x7f)\x84\xa5\xf8\xab\x92\x9f\xdc{?L\x1f\xb2u<\x90\xff\x18\xb2\x90\x88lQ\xac\xc3gG\xcf\x8f_|\xf5\xe7\x97\x7f\xf9\xfa\x9bW\xaf\xdf\xbc\xfd\xeb\xc9\xe9\xbb\xf7\x1f\xbe\xfd\xee\xfb\xbfy\x17\x93)\x99\xcd\x17\xfeO\x97\xc12\x8cV?\xc7I\x9a\xad\xaf\xfe_\xea\xde\xb4\xc9\x91d9\x0c\xb4\xdd/k\xf6\xfe\xc2~q\xa4\x86\xdd\x99\x83\x04\n@\xdd\xa8F\xd7\xeb\xd7\xd3#55\xd3\xfdl\xaa\x1f\x9fH\x00S\xcaJ\x04\n9\x0dd\x82yTW\xcdT\xafQ\xd2R\xa2H]\xdc\x95(R\x07\x0f\x1d\xe4.IQ\xa4\xb4\x07wy\x99\xed\x9b\xf9#\xfa\x03\xfb\x17\xd6\xc2#\"32#\"\x13\xa8\xaay\xd4\xc2\xac\xbb\x00\xcf\xc88=\xdc=\xdc=\xdc\xafo\xbe\xec\xf5\x07\xbb{\xfb\x07\x87G\xc7\xed\x1d\x8b\xa7\xcbat\xa4\xc8g\xe9\xc1\x13HN\xa0\xdd\xf6\x1cqS+\xc3+b\xc18\x93Q\xd9s\xe8#O\xe7\xec\xe0\x9b\xa9z\x9e\x1d\xa4\xf4\x14\xc35\xc0O\xc0\x1e%c\x0e\xa4\x8b8z\x87\xc4\x13\xa3\xba\x15Q}\x99\xc3W\x178\x1bAO\xd0\x0b\x02\x1e\xac\xb2e\x1a\xac\x97\x98\xf0f\xaf\xaaE\xbb\xca\xef\xe7`\"\x95\xd7s\x9b.\xa6v-;\xfcN\"\xb0x\xad#\xbc\x03=\x0eq\xa3\xe4\xf1\xc8\x87\x8c0\xd3\xfeN\x8b%\xd7\xcc\xc3\xdcD\xf1s\xa4\xe0\xa1\x90\x85+.m\x90\xad@H\xff\xb4G\xb0\xeb \xc2\xd8)] Jr(\xf5\xec\x1f\x1c\xf6\xfb\x07G=\x8a\xd7\xf4 \xba\x8c#\xa6St\xdd\x1f\xf0'\x8c|\xb0\xe7\x03*\x9df\x02\xf3\xed\x88y\x18Q\xfc?\x92p>B\xc8\xa0\n9\x90\x00\x07\xbb\xf0\x08\xa2\xea\xad+>}\x99f+\xe4\xdf\x82\xb1\xd5\xb1d\x0c\xea!\x06\x1d\x0c(jY\xe7\xbaG\xbbZyC\x9eM\xd2\x8d\x897\xab\x0b\xbb\xa7\xa0\x02\x0b\xabM\xe7\xfa\x08>\x84\x80\xca\x02\x942\xa8\x12\x05\xdd\x17v\x9f\xce\xab\xe7\xe8K\xf80\x82\x04\xe7L}F\xd9r\xe7P\x85\xa3\x9f\x10\x9cb\xc3}\x18BO-\xb2\xe6E:\xf4\xb9\xa6\xea\x05K`\x04m\xa8\xe6T@\xc4B^\xbff\x14f\x01\x8f\xf8\x18:s6\x08X\xc0\xd3\xa7#\xe8\xcc\xa9\xe4\xd0\xa6;\x18\xe6t\xdb\x9d`\xf9\xc1\xfe\x01|\x88\xe1\xb2E\x03.\x88\xfa\xe6\xd0\x19\xc1\x91\xa3i\x91\"p\xa4\xb6\x14\x95[\x8a\xf3\x96\xb2\xbc\xa5l\xf3\x96(\x91`7 #\x07\xfb\xda\x87N\xf5\x06\xaa\xe1~3}5\xc2W\x8b\xcc3\x19\x9c\xc2+\xef\x15\x9da\xd8\x81\x1e\x15\xbc\x16\xf9\x9ck\xf44\xc8\xf0>\xf5\xd2Ew\x1d\xbd\xb3\x07\xec\xee[D;Z\xbe\xc8\xaa7\x17KU\xe3\xa8?,U\x15Q$\x94\xf6\x0ce\xe8\xef\xe2 \xad^\x93\xa9\xcdiBq\x9b\"6\x0b\x19\xcf\xd1\x9b\xd6\x1c\xe8\x91w\x9e\xa3\xb7o@o\xf4\xb00\xa07\xc5\xd1\xc1n\xce\xbc\xe5\xd1t\x06{\xb4\xc2\x12\xe8\xf0\xd0\xd1\xe3:\xc5\xe5\x98\x93\xd5H\xdf\x8d\x19/B\xa7\xaf\xa3y~\x85\x12\xd4\x13\xe8\xc1\xed-\xbf#\x8b\x8e\x1b,K\xc4\x13\x14\x8cq\xa7i0\x97\xce0v\xd4\xbbH\xd0-)H^y\xafl\x82>\xf2\xcc\x90\xca\xd0\xe3\x14lJ2\xf2\xc7\xbcJF\xbc\xe7tp\xb8\x0b\xb0\xae\xf92\x8ab\x1b\xbf.\xa3KZz\x87=\xf8\xe4\xd5\xc0q\x81P\\K\xa0\x8cM\x9d\xccq\xe0 \xf4\x91\xf3d\x9d\x0ee\xcb\x1f\x8e\x80\x96\xa7\x07\x82\x11\xee\x94%<\xa5\xfd9\x855\xec@\x02CXW\x10\x89n\x89\xa5CQ,\xa1E\x07\xac\xb6v\x9b\xd6\xb6\xc3j\xcb\xeb\x99\x8b1\xc9\x83(\xb5\x82Om\x82\xb5u\x18\xe6\xca\x8d\x05\xac\xb6\x11,q\xf8\xc8\xbd*E\x96\xe6\xf7F\xd0s\x9c\x13\x08hcG'(\x9f\xb5aQ\x88\xbd\x1e\xa5T\xed\x11\xcc(\xad\xdeAzA\x85\xa7:\x12\x94Qd\x0e\xe0\x96\xbe\xeb\xd3w\x83\x13\xf0\x19\xc5Q\xaa\xcf\x8a\xea\xb3\xbcz_W=\x7f\x15:0\x9b\xc2\xed\x08\xfa\x03\xba\xb1\xae*\x1c\xae\xe1P,+p\xca\xdb6\xf7\xea\x0c\xed\xdd\xc1Q\xe5\xc8[x\x85\x96\x1dk7i\xb2\xb8\x921\xd08\xdb\xc6\xdd\x9f<{\xfd\n\x1d2\xf9W\x9d\x87M\x9e\xe6fXI{S&yMW8\xccwS\xf2\n\xf9\x85\xdd@{[w\xa3\xf1\x9a\xf4\x0e\x92g\xed\xa8\x14\x0d]LPd\x87\xf6\xee\xae\xe2w\x1c\xf0GG{\x8e\xd6\xa57\xfa\xf1\xba\xf4n\xe3\xdd\xde\xa8KU\xd3(H\xf9\x185q\xbbh\xf9\x8a\xe3.\xf3\x11\xa7\xef9\x1b7\x0b\x924^g\xa5\x8eq\xa5j\x94\xcaxM\xd8\xfc\x9c\x12\x03\x161\xc1\xe0\xc3\x11\xdf\xd4(\x8a\x8bP3\xeclT\xf5\x83vN\xa0\x85>\xfaH\xf2\x92Rv\x00f\xee\x0fy\xbc\x0b\x9e\x94\xc0\x85\x16z\xce\n\xa7!\x96\x1f\xc19\xe1\xe34\x18\x85\xde\x83\xef\xb1\x84 u\xda\xf0\x88M\x15\xcb\\n\xa8g\x1e\x84\xderY7\xe4\xfa \xa1\x9f\x16\xfa\x13%]\xbe\xd4\xd2w\x83\xd3\x18l\xd84\x08\xf9L\x9c\xfb2su\xfa\xf1i\xa1\xda[\xf7X\x9ca\xa7:\xe7\xc5\xa9\xf3\xcd\xcd\x9aTN\x9e<\x80\x12\x0bV\xc5\xeeYf1\x8b\xe1\x11\xa4$\xf6.\x96E\xc0\x7f\xe5\xc2V\xd14{\xf2 \xbcb\xb7\x1a\xdb\xfa>\xbc\"\xb4\x8f\xf6\x1d\x17B\xfb\xf8\x00=\xa5\x8b\x0e\xd0\x96\x06\x1bu\xbb\xe07\xfd]\x1d\xc7 \xed\x03\xc7\xb6p\xb6\xd2(\xaez\xea\xb0\xeb\x80\xbb\xa6x\xe1\x94\x89u\x83\xe4\xa5\x98\xebM4\xc89\x85\xd2\x9eUyD\x15\xdc\x8a\xe3\x80\xa5t\xf8\xeew\xf3\xee\xe1\x9d[L\xb7U\x8d\xc9\x12\x97|k7\x9a\xde\x0dWt\xefAWtww_Y\xcb\x81\xd3\xe5w{\xbc$ .\xc3Mj\x92\xd7U\x9a\xca\xd8\x8e\xbbg\xd0\x86\xb8\xfb\xb1\x0b\x16\xabU1\"\xb2V\xd8\xe8\x0e\xa4I\xdb\x08\xa1\x9an\x9a\xeeU\xaf\x94\xf2\xa8\xef\xbd\xaa\x14\xc5p\xeb\xa0:\xbd,F\xfd~5v\xbc\xc7j\x19T\x8b'9J\xf1\xc9\xd3cj\x0b\xbd\x07C{p\xec\xd8F>-\\\xf1\xbe\xd2\xc4e \x068e\x9a,\x91\x88\xceQ\x0d}\xc8t\x9a?K\x8b\xfd<\x80\xce!e\xe9\xc9z\x19\xa4\xb6e9\x1a\xc7-\x1d\xeb!\xe3t\xaap\x9b\xf7\x8e\x0b\x87\xd0\x1aA\xc2\x82\xd5:<\xcf\x91\x9c\x1e\x91=\"\x8e\x93\xab\x89\xe8\x0b\x92%\x86\x1e\xabj\x85\x88R \xe6\x0cm/t\xces\x911We\xd3\xf3o\x9f\xd9F\x82\xee\x9cYC\xa2\xee\xfc\x84\x9e\x8b\xc0\xd7\xe4\x15\xcak^\xbbx&\xf5\xec\xbc\xd2\xb1\xdfnO\x1d\x17\xcf\xa1\xf4\xd0\x14\xdb\x0b\xa7\xebG\xa1\xef\xa5\xf6\xdc^\xa0\x02\x9a\xc2\\<\x89\xce\xf2>\xdc0\x0b\xcc\x15<\x85\x9b\x13\x07\x96\xec\x9e\xd3\xc2\xc5\xb3\xf3l|Cke\xe2\xc2xM't1^\x1b\xf4j\xd2MK\x18B\xb2\xc9\xe6\xd9\x90\xe4<\xe4\x81\x83\xd6w\\Cr(\x0elRO\xb1\xc3\x95\xbd\x19\x88\x8d\x7f\"\xb5\xda\xdf;vl\x8b\xd6n\xb9[\x88\xc65f\xb8\xc0\x8e\xa9`[Fp M7\x19E=\xf5\xda\xf9\xdc\xfe\x89A\xefv\x928\x1f\xda_xW^\xe2\xc7\xc1:\xbd\x9dy\xa9\xe7\xec\x04+u\xd4;\xe3\xcf'\xd7\x83^gr}\xf8b\xbasY-\x12\xb1:\xc7\x9f\x0f\xa7mg\xb8s\xb9RI\xdd\xd8\xeaZ.X;\xb2\xef\xb9\x19K\x12/\x0c\xd2\xe0K\xf2\x83x\xd9t\xf3@\xd8\x92\x98R5\x15\xd7~\xe8Y\xce\xd2y\xb4n\xb4\x12 k\x95\x85\xde>\x1d\xf7\xa6\x0e<\x85\x8e&'\x95\xed9\xdc\xd6\x84\x8a{\xaf\xbb\xa2\xd2\xb3\x1d9\x8e\xb0-1\x0bm\xdcMI\x922\x15\x8e\xe5]DY:\xbcXz\xe1[\x0b\x86\xe0a\xc4<\x19hB\x81M0\xa0\xc0\xe3\xdd=\xbd@\xb4\xbb\xbf\xeblc\x1e\xc6`\xf8\xdd4\xfa$zG\xe2\xe7^Bl\x0c\xd1\xda\xa6C\xa6t \x03\x96W\xe3\x9e\x1a$\xaa`\xbb!\xec\xe9\xc3:\xf4\x0f\xef\x1e\x98\x027Yy4[\xcaUE\xf7\x0e\xaa h\xf8\x04\xefU\xb98\x93\x05\xaad\x8f\x89\x02\x87U\x81\xc2\x03\xae\xfeS%\x81\x98N\xb8\x14\x93e\xc8\x05\xcarIf 8\x85\xa4+\xf2\x87\xe5\x05\xebg\x0d\xb3\x12V\xe6\x0d\x03k\xf2\xa4\x8e\xfal\x80\xaa\xc2<\x92\x93\x1b\x06<\xdfX\x1b,K-\x9a\xc9E}8\x05_\xa4\xfb\xa3\x9b\xa2\xf2\x82\xe0\xc1DS\x19\xaf\xc2\xeaa/\xc3B\x15;\x1aA\xc7\xa3\xdb\xae\xd3\xa3\xbb\xad)~\x80\x89\x9dm.!t\xfa\xdc7\x83\x07\xc1K\xb9\xa2\xb9l\xf2f\n\x90\xd89\x81v;\x84'\x10\x9f8\x10\xf0\x00\x83<\xbcv\xa8\xe6\xc6\x16s\xfa\xa0\x18\xcb9\xa5!~.Z\xed*\xc7\x11\x15\x8f\x83\x1c\xd7TdfX+\xe5\xb2\xdb\x10\x1d\xcd\x87\xac\x88\xdf\xde\xc6\xf0\xa4\xa5\x12 \xae\x86(qW\xf5\xda\x86\x94G$5\xe8m\xc4\xccUB\xd8\x95\xb4$\xef\x95.\x06h\xdbf]\xd4/`\xcc\x9d\x06NE\x07B\x18\xc2\x8c,IJ\x10R\x8ap\xd8\x8c\xa8\x02\xf5\xaa+\x99O\xfa\xb6\x13-D@1\x88\xbb\xe2\xdb\xee^\x95\xe8 \n\xaeO\x92\xb5\xbb\xaf\xcb\x92\x85\x8c\xe0\x8eC\xc8\x0bhu\x83\x04%zSx\x01:\xa5\x01c\xda\x11\xa3H:r+>\xcc]\xe5\x149>\xe5\x88hZF\xb3\xb2\xbe|\xc2\xcb\xc7v\xe8B_:\x9e\xd0w\x93e\xe0\x13\xbb&\x91\xb27N\xa76\xa5\xaaI\x193\xef\xbeR&-H\x93\xa8 0^\xefe!0)\xdfd\xdc\xd7\xe1\x14\x02J\x8dQK\xf9\xe8\x11\x84\xf0\x94\xd9\xf4R<\xd7\x88\xa6\xb6\xd8\x03\xdbv9f\xa4Z\x99_\xf3P\x98YOx\xfbt\x08<\xc5\x1eS\xda\x1e@\x1b\xbd6P\n\x0c\xf9\x03\x1c\xa0\x93\xbf\x84a\xfc\x02\x87\x91\x7f\xfar\xc8_\x0e\xa1\x83\xceXO\xa1\xe7\xb2/#\xad\xd9\xf0\x8aG\xbc`\xac#@\xd6\x11\xc3\x13\x08N\x1c\x88Xh\xb1t\x1c\xd3\x9e\xe8\xfd\x11\xa3;\xe3\xc6~u\xb76\xed\xe2A#.\x19\xe5\xb3\x94m\xb7\x94\x1dp\x1bIO3\n\x18ZJ\x0b\x15\xc4\x16M\x08\xb2`\x8d'\x93lv\xd4\xebu\xe8\xdf\xf9|>\xad\xb8\xa3\xc7\xa2Po\x97\x15\xea\xed\x1e\xcc'\x93lN\x06\xf8sN\x06\xf4\xe7\xa07\xc3\x9f\x83\x9eZ\x05\x9dd\x0b\x9b\xd9\xf5\xc7\xac\x99\x0bSs\xe8\xd85\xfe\xbc\xa1S\xe8\xc3e\x9f\x0e\xe5Jg\xe4\x00\x8b\xcf\xe6\xf3\xa9\xf3\xd5\xe0\xbd\xa52\xf0\xf2`/\xe6\xf3)\x02|sC o(\xcfk~\x9b\xe7Fw,\x16\x89A\x95Y\xb1\x999\xe9\x11\xf6g>=\x15i\xefm\xde\xe9A\xaf7\xe3\xb5\x8e\xb9G\xcd\x94\xd3\xcd[\x0bEL\xc7X\x87\xe5|XU\xff\xce\xa5^\x8e#\xd1\xd5S+\x0f\xed\xe6BX\xad\xbf\xd2\xef%\x8cx\xb6X\x1bGg\x9f\x8e\x8a\x91\xe2\xa0\xe7\xd0\x06\xdf\x05\xeb\xd2\xba\xeb\x9eH\xf9\xa9r\xe9\xb0+\xc2w\xdf\xc6\xd5s\x898\x10V\xa3\x01\x8am\xac;\xb1\xf0\xd1Z\xe3\xc7\xff\xe5\xe7~mj\xddkd\xf5\xccY\xc8JvdS.\x9c\x1f\xf13<\xe2;\x18\xb7\xc72\xdb=\x1a\xf7rC\x02U\x13\x9f\xd31\x8d\xa8F\xde\xd7Pr\x14\xff\xa2\xdc\xdf/\x1d\xb7\xdb\xc1\x14\xe9y\x00O :q\xd81\x87\n\x06\xe98\x98\xa2\xeb\x8dA\x92l:\xcf\xd4`\x83A\xcfU=s\xa3\x96g<\xb9\xf6{\x9d\xc9\xf5\xec`r=;\xeaL\xae\xe7\x07\x93\xeb9~\x99O\xb2^\x9f\x92\x82\xac\xd7?\x9cOw.kpf[zx\x1f\xe4\xb2S\x14\xdfR\xc7a\x96q\x81>\x11]\xdb\n2\xdd}\x12\x0f\x9dJ\x90\x03\xebG?g\x0d\xc1zV!\x14\xd6\x8f\xfe\x96\x1e\xfc\xb7\xf5\xe0\xbf\xa3\x07\xff\x8fz\xf0\xcf\xeb\xc1\xbfI\xc1\x9e\x02\xfe-=\xf8\xdf\xe8\xc1\xffV\x0f\xfewz\xf0\xbf\xd7\x83\xff\x1e\x05?W\xc0\xbfC\xc1\xbe\x02\xfe'\x14\\M\x91j\xfd\xe8\x0f)x\xa6\x80\x7f\x81\x82\xab D\xad\x1f\xfd}=\xf8\x17\xf5\xe0_\xd2\x83\xff\x17\n&\n\xf8\x7f\xd5\x83\x7fW\x0f\xfe==\xf8\x1fP\xf0K\x05\xfc\x0f\xf5\xe0\x7f\xa4\x07\xffc=\xf8\xf7)8P\xc0\xffA\x0f\xfe\x03=\xf8?\xea\xc1\xbfL\xc1\xaf\x14\xf0\x1fQp\xf5\n\xab\xf5\xa3\xff\x89\x82_+\xe0\xffY\x0f\xfe\xa7z\xf0?\xd3\x83\x7fE\x0f\xfeU=\xf8?Qp\xa4\x80\xff\xb3\x1e\xfc\xbf\xe9\xc1\xff\xbb\x1e\xfc\x7f\xe8\xc1\x7f\xac\x07\xff\x1a\x05\xff@\x01\xff\x0b=\xf8_\xea\xc1\xffJ\x0f\xfe\xbf(8S\xc0\xff\xb7\x1e\xfc'z\xf0\x9f\xea\xc1\xff\x9a\x82\xab d\xad\x1f\xfd\x19\x05\xdf(\xe0\xbf\xd0\x83\xff.\x05?S\xb7\xc3oS\xb8\xa7\xc2\x7f\x9d\xc2\xdf,\x14\xf8\x9fSx\xaa\xc2\x7f\x83\xc2\x93jH#\xebk=Y\xfeZO\x7f\xbf\xd6\x13\xda\xaf\x91\x88+\xe4\xed\xeb\xbf\xa3\x07\xff\xbc\x1e\x8c3\xa0\x10\xc3\xaf\x7fA\x0f\xfeE=\xf8\x1f\xe8\xc1Hh\x15\x8a\xfa\xf5\xdf\xd7\x83\x7fI\x0f\xfe\x87z0\x92 \x85,\x7f\xad\xa7\xd6_#eR\xa8\xf5\xd7\xbf\xac\x07#\x99P\xe8\xef\xd7\xffT\x0f\xfe\x15=\xf8W\xf5\xe0\x7f\xa1\x07# R\xf0\xed\xeb\x7f\xa6\x07\xffs=\xf8\xd7\xf4\xe0\x7f\xa9\x07\xe3\x9e\xfd\xab\n\xf8\xd7\xf5\xe0\xdf\xd4\x83\xff\x8d\x1e\x8c\x9b\xf3R\x01\xff\x86\x1e\xfc[z\xf0\xbf\xd5\x83\x91\xd9\xff5\x05\xfc\xdbz0\xca\x00\xca\xc6\xfc\xfaw\xf4`d\xb1\n\x07\xfb\xfaw\xf5\xe0\xdf\xd7\x83\xff@\x0f\xfeC=\x18\xd9\xb7\xc2\xd8\xbe\xfe==X\xcf4\xbf\xd6s\xc7\xaf\xffH\x0fFv\xf2\x93\n\x18\xd9\xc9\x17\n\x18\xd9\xc9_W\xc0\xff'\x05\xbfU\xc0\x7f\xac\x07#'\xf8D\x01\xff\x89\x1e\xfcgz\xf0_h\xc1\xdf\xfc-}i\xe42\xd5\x981\xd6\xd7\x7f\xaa\x07\xff\xb9\x16\xfc\xcd\xcf\xe9\xc1\x7f[\x0fF\xd2\xabH#\xdf\xfc\xbc\x1e\xfc\xf7\xf4\xe0_\xd4\x83\x91 (\"\xcd7\x7fW\x0f\xfe\x05=\xf8\x97\xf4`\xa4\xdf\x8a\x90\xf2\xcd?\xd2\x83\xff\x89\x1e\x8c\x84Z\x91/\xbe\xf9\xc7z\xf0/\xeb\xc1Hc?S\xc0\xbf\xa2\x07\xff\xaa\x1e\x8cT\xb3\x1a\x93\xc1\xfa\xe6\x9f\xeb\xc1\xbf\xa6\x07#\xa1>S\xc0\xffJ\x0f\xfeu=\xf87\xf5`\xa4\xc8\x8aT\xf0\xcd\xbf\xd6\x83\x7fC\x0f\xfe-=\x18)\xf2\x1b\x05\xfc\xef\xf4\xe0\xdf\xd6\x83\x91\xf4VC\xe4X\xdf\xfc{=\xf8w\xf4`$\xa6\x8aP\xf8\xcd\xef\xea\xc1\xbf\xaf\x07\xff\x81\x1e\xfc\x87z\xf0\x7f\xd2\x83\x91\xc6*\"\xe47\xbf\xa7\x07\xff\x07=\xf8?\xea\xc1\x7f\xa4\x07\xffg=\x18I\xef\x0f\x150\x92\xdew\n\x18I\xaf\"\xe3~\x83\xa4W\x11f\xbf\xf9c}i$\xbd?\xa3\x80\xffD\x0f\xfe3=\x18\x89\xe9\x97\n\xf8O\xf5\xe0?\xd7\x82\xbf\xc6\xd5y\xa92\x1e\x9c\xab@\xe1<\xdf\xb0\xe3\x9a\"\xb9|\x83\xc2R\xa4\xc2Q\xb0|\xac\x927\xe4\x1bI\xe1\xcab\xf2\x08a\x8ex\xdb\xab\xe9\xee\xa3Q\x945u\xdc(5\x84tL\xa6\xa5\x17\x9aT\x895J!\x83_\xc8\x81>\x1d\x89\xa2q\xcbx\xf1~\xa3\xeaKo\xde\x12zc\xbcK\x92\xf2\xe4\xdd\xdc\xf2\xc6\x9c\x92\xe4\x81\xa3}\x93\xdb]\xb2\xc2\xee\x82\x1aL\xa6x&\x9b)\x9euv\x12\xf4 \xeb\xf5:\x93\xeb\xc1|r\xbd\xebu&\xd7{\xbd\xc9\xf5\xfeEgr}\xd0\x9b\\\x1f\xd2/\x87\xf3i{\xe7\xae6j\xd1\xc9\xf0>\x9d\xf4:_N\xc7\xcf:?3\xbd\xc5\xff\xbf\x1a\xb8\xef\x11v;\xeeu\x8e\xa7\xf4+{\xc8\xbf \xf4v\xfc9\xfb\xd9\xeb\x1c\xc3t\xe7\x8e\xdd\x0f\x99g\xd8Vv\xae\xdc\x085\x99\\{\xfedr}\xd1\x9fL\xaeg\x87\x93\xc9\xf5\x9c\xfe\x87\nV:\xe1l\xc6q\xca\xd9\x9c\xe3\xa4\xb3Y\x9f\\_0\x85k\x8f+\\\x0f\xe60\x99\xa4\xf4\xf5\x8b\xc9\x84\xbe\xeb\xf5P/;\x9fO&\xe1d\x12c\xa1\xc1\x11\xfbs<\x99d\xfd\x83#Z\xa2\x7f\x84\xd6\x16Z\x11\xfb\xd3g\x7f\x06\xec\xcf.\xfb\xb3\xc7\xfe\xec\xb3?\x07\xec\xcf!\xfb\xc3\xea\xec\x1d\xb3?\x1ek\x81un\x9f\xfe\xd9\xed\xf5\xaaq\xae\x98y\xcd\x826\x0b\xecm0\x9d\xcd\xda\x96\xba\xe1P\x0b=8\xe4\xc3>\xbc\xd0[\xc9\xe8R\xd3I\x9d\xd3\x99\x9a\x1fL\x98\xb6{r\xad\xda\xba<\xad\xe9Mt\x0d-A\x95\x06\x8dU?\xeb\xfc\xcc\x84)\xdaQ\xd3\xceT\xed\x93\xeb\x191\xd9\xd7\xb60\xe4\xf9w2\xe4\xa1\x89l\xbcq\xbf\x96\x92E-\xcb\xed~\x9e\xcer\xb6\x96\x8a\xce\xeb\x8b.x\xd1-\xcd\x07\xb7&\xdb\xa9S\xb5>\xce\x8c\xd6\xc7\x85\xc1\xfa\xa8\xb5\xb5\xe2\x1d\xe8\x8d\x0c\x92\x0b\xbdA\xf2\xaad\x90\xd4\xd7G\x9f\xcd\xca\xaf\xdd\x14&\x96\xf1<\x8fs\x8f\xf3\xdf\xa6\xd3\x86\x96:\xfbt8\xbb].oW\xb71\xb9Mn\xd3\xdb+\xe28\xa7\xdc^9\x8e]\x98\xbb`}`\xa9\xf6NX+\x15}t\xfb\xc9'\xb7\x9f\xde~\xf6\xe2\xf6\xec\xf6\xcd\xedO\xbd\xa8T\x04mX\x9a*+\xfa\xb7\xdc\xa4\x7f\xe2\x8d\xa6\xe6-\x17\xf7\xfb\x87\xf6\xe9\xb0\x7f\xf6\xe6v\xf0\xea\xa3\xdb\xdd\xcf>\xba\xb5O[\xe3\xfe`w\xeaL&\xb37\x7f\xcd\xb1OG\x93\xc9\x05\x92\xf1\xf3\xa9#\xbf\x93\xa4\xb7\x83pv\xbb\x1b\xcfJ\xef\xa4\x8b\xfc\x9dg\x9d\x9fa\xef\x04.\\I\x03\xbb\x97\x8dJ0\xaf\x9b\xcd\x98\x97Y\xe48\xa8\xe6\xf4a\"\xc7a\xd5\x05\x98'@\xeb7:\xd0V;\xcc\x82l\x06_\x12vw\x9b\xe7\xc6\x9cy\xa9w\xae\xcf\x7f\xba\xf0\x92\xc5\x10o\xb6\xc5\xae\xf2p\xe5\xad\xf1\x99\x1d\xd1q\x07\x1a\x0f)\x91f\x0b+(=\xbd\xbb\\\xa6\\\xc6\x11rYU^\xe3\xf6o\xc55\x97\x0bf\x8a\xdb\x8b\xc7\xe1\x03\xed\x9d\xdd\xc4\xec\xc8\xa8\xb3%\x87\xdb\xd9\x92Y\xd6\xcc%\xf1b\x1b-\xc8\x04\x03\xb9\xe8\xa4_1\x13T\xd2U\xfd\xcaD\x18\x7f;f\x1e\xeb\xe3\xfe\xb4\xde\xb4N?\x89\x9c\x0b\x92\xf6\x81e\xed\x92\xc1\xdc\xab\x11\x13x\xca\xf0K\x82\xf2i\x19\xb8\xf0(\x12fe`\x82%\xbd\xf2\x1d\x8f-/u\x1c6\xca\xd2Z\x84\x970\xb5\x9d\xf1d\xfa\xd5\xfb\xdb\xe9\xce%\xd2\xf1\x0f\x1eYR\xb1r3\xb7\xf9}\x07\xa7\xfb\xe1)R\xf4\x89\xed\xdc\xe2\x06\xea\xb69`\xea`M\x1f\xf4\xbb\x1f\x9e2~\xf5\xc1\x9d\xe9z\xcbn\xa1\x0b\x1b%n\xc2\x03\x01o\x1e`\x18\x8d!x\x0e\x13\xfb\xb3\xd2\x8d\x9f\xcdQ'\xcf\xe5\xa6$\xbe\xccs\xb9\xed\x8c?\xefN\xdb\x1f\xect\xc95\xf1m\x8cR\x16\xe0m\xa8\xe2[\xf7\xe5\x8b\xf3\xef\x7f\xf6\xfa\xcdk\xbc\x87j\xe1\xa5\x15\x8b\xdf\xf6Kb\xdf9\xefw\x99\x03W\xd9\x15\x7f\xbb\x99hE\xcc\xd9%\x08\xb7M\xfa)\xed^gl\x9d\x9f\xfbQL:_$\xe7\xc9\xc2\x8b\xc9\xec\xfc\xdct\xa7\xe8\xae*\x05\x8dc\xff\xc6\n\x83\xe6C\xdbf\xb3&\x18\x03\xd2\x96\x85\x87\xac\xe3\xd1\xa3\xdc5\\\xa6I\xe3T\xef\xe6Y\x90\xa5\x0e\x0b\x1e\xc6c\xc6\x90;\xcf\xbe\xce\xfb\xd3:?_F3/Y\x9cSF\x7f\x9e\xc7\x94;?\xd7\x1c\xb9\x14\xbf\xf4\xf2\xf6\xdc\x16\xb5J\x93$\xa6\xa3<\x17\xc1\x1cl\xc5\x83\x0b\xa4\xb33Q\xa6\x0fJ\xde\xca<\xc4P\xbe\xdau\x99\xf4\x85\x7f-\xbf\xba\x82\xd7]N\xd9\x8dU\xe12\xfe\xa0s\xff\xe3\x9f\xce\xfc\xda\xc2i\xf9\n;\x8e0\x90\xc6\xfd\xa0\xe3\xac\xc1\xb1\xa61j\xf6\xb2X\xf9\xe6a\x16;\xa8]\xde\x89L\x18\xeb\xbb\x10\xb2\xdb\xc8\xe8\xc7')\xd7\x08\xf7\xfa&L8\xb8/uh\x12I\xc6\xd3\x07\x12B\xb42\x08\x0b\xd5\"\x89a\xebe\xe0\x93\xa6\x89\xdf\x08\xb9\xf4Bo\xccPH\xbb$-;\x14\xc1\xb6l\xba;\x8b\x04i\x1d\x8c\x1aE\xba\xebh\x8d\xa9\xda\x0bl\xc4k\x15.t:\xf9\x1c\xb9\xd0\xbb\x13\xbb\x15\x93\xf4\x974\xf8\x90\xc7\x13+T\xb6\xe3p:\xee7q\x9f\x87\x1cI\xee\x8b[\x1e\n\xa5t\xa5\x9b\xb1\x0f\xdf\x93Mw\xb2:\xad\x18q\xca\xae\xb9E\xc7\xa7\xd5n\xb7%\x0c\xe1at\xc6\xb4\xe1)^\xb3\x0f\xc7\x01\x9dm\x96\xe0~\x83}m\x1e\xed~\xe3hM\x18\x14\x8bT\xa5\x0e?P\x99n\x96\xdd\x95\xfb7\x12#3r\xb3\x1b\xa1\xa9\xb6;\xf2\xd5Q\x8clb\xb1\xac\xdb\x12\x80e\xcd\x96\x00\x17Q\xb4$^\xc8!\xa7\x94\x0d\xf0T\xae\x16\xb2\x9d\x94\xae \x93\xc8F\xf7\x90)\xb7_\x8c\xd2&\xc0\xb5\xb8$\x1b\xa8\xee\xbf\xdd.0\xd6\xf4-v\xa1f\x03\x16\xdd\xd0\xef\xbe\x101QO\xd3P\xd7\x80\x95\xbbe\x86\x1brv6\xcaoW\xf5\xef\xb7\xedv\x8f\xf6\x1c;\xb4\xf7v\x0f\x9c\xad\x8c\x90\xe63{_\x7f\x1f\xeaPw\x18\x0b\xed\xc3\x83\xc696,s^\x80q\xb3\xcc$\xd0zE\xe0!\xdd]F*\x0c\xb7\x02\xbci\xad\xbe/\xeaH\x04\xb5\xdc\xd5\xd4\x00\xfc\xaed\x84\xe1*\xc3\xda\xbe\xcb\x1f>\x8e\xc4\xf6\xc6\xe9\x14/lx\x86l\x17\nT\x85\xd0^\xfa\x94\xe0\xe4\xd3a\x14\xe0}\xe4Jp\n\xde8AQ\xdc\xa7\x82\xaa\xaf\x91\xc7\x01\xee\xa3Q<2\xdc\xa1P\xe2\xf8p\xbd\xeb\xd1\xde\xd6\xa8 \xc8l`\xa2\xf8\xfd\x928\xf4\xe8\x11\xa6*\x18\x0f\xa6\xec\xd6*\xfd\xde\x9b\xba\x0c\xd8\x9fR~\x96\xb7\xa5\x18\x8e\xa1z\x04J)Af<\xd4Ub<\xdcu\xd6\xfa\x87\xd5\xfbF\xe2:\xa1N\xe5\xd5W\xd5]\x83\xa69\x14wx<\xddd&H\x98\xf8]|e\xf8\x18\xba+`i3b=\xe5\xa3\x0d{\x0e\x96\xbc\xc1(M\x0b\x17f.\xac\xd9\xaep\xe1\xca@1\x91\xee\xca]\xbeAO\x8b\x99\x0b\x0b\x17\"\xb8\xe5w\x0c\xaf\xe8\xa6\xbc\xa9\x1fA\xcd\n\x8a\xb7\xee~\xfak\xbc\xad[]\x91\xeaA\x94Yy\xb6:\x8b\xdeC\xdel>L\x91\x8d\x85dZ\x96\xcb\xfd\x0f\xdea\xb91\xd1\xdf\xcd$\xc6\x07j\xeb\x9e\xa2\xa1>|P\xbf\xaf\xf7b\xea\xf7\xaaV4$\xd5\xbd\xc6 \x1f\x9b\x1e\xf04\xc4\x17D\xf4\xcbh\xae\xde\xd7\x04I8\n\x0d\xb5@.\x1dQF\xe7 &\xfa\x042\x16C\x9aO\xabW:\x13\x96\x11\xbd\xdd\x0e9\x06Q\xa8Z\xbd2\x0e\x10)z<\x13?\x85F1YH\xc9\xf7\x13\x8c\xcd\x8cX/\xc8\xee\x1e\xeb=\xd5\xf6zz\x83\xe8^\xbf\x8a\x12\xc8{\x95@H>\x17\x8e\xaa\x885\xe7\xf0*\".U\xb1\x00\xbdI\x84\xad\xeb\x99\x08\xa2WuOY\x94K\xc5\xdeM\xb5\xc4L.\xc18v\xb5\xc8\xd5\xfd5\xb0B>\xb9q\xe1\xd2\x85\x95\x0e\xfd)\x9a$\xdalT\x17\xf8\x84h\x9e\xbc\x83\x11\x9c\xc3),`\x08\x9e\xf6\xddk\x18\xc1E^BW\xc7\x19e\xf4\xb4\xa2wT\xacY\xc3)\xcc`\x08\xef\x1c\xfak\xa6\x16\x7fA\x8b\xd3Z\xaf\xe5\xe2\xd7\xa6\xe2\xcfD\xc5\xd7\xean~F\xf9\xb9\x8f\xd62u#\xe3&\xf5\xe5`Q\xad\xbe\xba\xd7\xcey\\\xe23\x0c\xd5\\\xb3\xbb\xf2\xf6Zgy\x85+T.\xae\x04;s\\8\xa7\x909S\xfc\x06\x9aU\x1bB\xc4\xa1\xefJ\x0f\xd4\xb1\xb5\xec\x10\x1ea\x90|=\x8dz\x0d#8Cer\x1e\xd9\xc8:?g\x89\x0eg\xe7\xe7\xa6\x0c\xd3_\xc0\x08^H\xaf\x91\xeakzj\x87\xf6\xbe/\xea\x0e\x83o)\x8e\xc3)\xa4,\x984*Vk2H\xbe\x84\x11|\x81Z\xd8\xa28\xd1\xcbD\xc6\xc9\xbe\xb4\xdf\xba\xf0R\xcc\xe3J=&n\"\x03\xb5pQm\xb5\xf6L]\xbe;3F\x95\xd3qc\xec\xb1\xfe\xd4\xb7{\xbc\xaf\xf5\x0b\xc9\xbe}\xbf\x90\xaa\x8c&;\x88`\x01o6\xb3\xd31\x99V'\x83~2\x89\xbey\xb3\x19\x06\xb5* \x94#2\xaf\x8eLq\xe0\x88\xca\xbe\x1a\x99v~\xab\x93\x1b\xde\xcf\xe2\xb3\x91D\xc4\x99i\xe8l\xc48\x7f\x9cbXs[f\xf3t\x8aM\x90\xa6&\x8c\x08m\x8acx\xac\x8fi\xac\xb8\x9ad\x06\xa9\x81\xbbE\x1d\xeb\xa5\x80\xbd^\x95\xdf\xfb*_\xa7\"\xc0@\xe5\xfe9\x8b\xfe\x1e\xd3\x15WytI\x1c\xf8\xc8K\x15G\xd5\x92$\x80a\xd7k%\x81O\xbd\xb5N\x0c\xc8\x9f\xbfB\xa5v\xb5\xc8\x8d\\\x849\xb6T\x8b\\\xcaE\xce\x88\"l\xacJ\xcfQ\x97^-r^*\x82\xca\xf4j\x91\x0bE\xee\xf9^6\x9f\xab\x1d~W\x996\xef\xa7\x02\xf2\xaeZ\xe8z\xe3@\x94g(\x17\x9c\xc25c\x0b\xaf\xe7\x1b\x07\xfe\x13\xb4:v\xe1\xda\x85\x17.<\xab\xa2~\xf2.\xc0\x08|Z\x1d\x96\xef%\x04\xde\x0d\x158p\x06\x98\xcayA[\xa3r\x9e\xd0\xdb[`\xcf_\xcf\xe7 I\x8b\xe7\xecw\xad\x00B?)\x06\x10\xbb\xc0 vy\xf4T\xf6K-\x8f\x1d\xbd\xd0w4\xb7|6\xf5\xb6\xf5\xc2\xa6\xc4=\xc0\xab\x1e\xec\x1bqtY\xbf\xb1\xb5\xa5\xda\x1a\xc2\xd7\x06\xf8Um\xef\"\xbb\x9d\xba\xd0\xd6i\x9d\xf1\xedE\xed\xdbi7\xf4V\x84\xe9/\xf1\x1b\x06jY\x91$\xf1.9\x98\xff0T\x7fc\xe8\xf4\xaa\xbeYfYR\x83\x88\xe6\xef\xcf\xf4\xef\x0bQ\xcd3\xbcvi~\xed\x0b\xe6.P\xcd\x1d&>\xb9Xf\xd3\xfa\x13\x0ch\x8d'\xbd\x96\xd0P\xa0\xb4\xfaE#\xf6 \xe9\xed\x19\xd74\x98\x9b{\x9b\xd7\xf5\x16\xe7\xc3 \xaf\xc1\xed\x08\xe6.<+\x0e\xa2\xe6\x86_b8\xc5\xd7\x88\x88\xaf\xd1T m\xe0Zy\xf0Y\xa1\xb1q\xe1\xa5az\xcf\xcd;\xba\x10\xe3\xcfD\xccJ:\xa83\x11M\xb6\xf4\xa2^v\xbc\xbb\x11\xdb\xe9\x16 3\xf5\x94\xed\xae.i\xdb\xca\x87<\xad\x0e\"\x8cA\xf5\xa5\x89\xb7\xaf v\x85\x15\x8e\xdbm2\x85\x11:\xf5\xa7\x95\xcbq\xce\xb7\xa11\xfbv\x86W;65\xa1@\xd3\xb0\x8cx\xb0\xd7\xd3i\xcc\xfa\xaa\x08\xf5@\xda\x03\x9ewO7\x89\xa8Q\x81G\x10\xa8\xf38gv[\xcd\x89\x123\xef\x19S\xa5.1m\x82M\x1c\xc9\xd2\xd4\xf2\x8d\xf4\xa8Hm\x00#X\x9e\xc0\xba\xc6\xe4\x81\xb9\xb9\xc7k\x83]\xa0e\xfb\xa8\xb1\xc0\xdc(C\xc9\xcbn\xe1lh\xe3\xa0m\xcc\xd03YG\x13i\x1b3\x96[\x88>\x96T\x0c3\x0d]\x14\xe6\x82V%Bg\"+\xea\xd8\x0f\x8dCO>+T4\xf4\xe9il\x0dO`i\x9c\x99K\xb4\xa7\x88\xf91\x98UV\xe8\xce\xb80L_\xe6\xe4\xfa$\x1fox\xae\xf0\xfc\xbb@,J\x11\x7f\x86\x90\xd9\xf4H\x8cP\x86^\x89\xc9\x8c,\x9b3\xce\xe1\x94\xf6p4b\xc7y\x8fW\xc2P\x13\xeb=7\x9b\x9cQE\xa3\xe7 \x171\xf1\xde*OT\x83\xf0\x0d2L\x94\xb2\xfd\xc2\xb7\x1d\xfdF\x16u\x14\x1f\x0dI\x88\xbf7\xa6\x89\xbf@!N\xaaU?\xf5\xefP\xba\x93\x8a\xa9\x03\xba\xa0\xfb\xe6\x1dm\xad\xdc\xc9\x80\xa7lS\xa0\x8c\xd3\xdb\x96\xd8\xf0r\xd8\xf5\x0b\xfa\xecBV{#D[\x16\xdb|'\x97}\xc7\xfc\xd0\xd9\xd4o\xc0\x12\x13\x99)\xe7?(\x82o\x99\x88P\xa6\x91\xfa\xeb\x0e{=}\x0c\xca\xbb\xfbN`\x10\xe1\xc8\x85\xe0\xce\xc7\xe2\xbd\x9e\xfe\xbe\xd0Qc\x97\xd4ZE\xcd\x11\x8b\xefnpHc\xaa\xc6\x08o`G.\x84\x1b\xdc\x0ehf\xb2\x1a\xbd\x816^=)\xc5\xa7\xcf5KR|\xfat\x1c@\x1bX\x8c\xfaqh\xf0>\xbf\xfbl\x9b\xf2\xae\xe8\x8c\x11\n\x0b]s\xe6\xf92y\x11f+\x96\xb0K\xd5R\xf0\xd7.I*\xf1[vfNT\xddEV\xca\x0c\xa4#\x15\xc2J#\xa9\xe5\xc6S\x18V\x0c\xfe.\xc46\xcb\x1b\x94\xd7\xa6\x0dO \xd5XD\xb8'\x1aMh5K\x0c\x0c!\xd0\xe3\xa4\xf7-#M}\x92\x83\x9e\xc8\xe9/c\x91\x9e\xe0f,\x0f\xbf\x86\x89a\x8cN\xf4\xe2D\xea\x15\x8d\x83v\x1b\x13\xc4o@\xc1\x9aB^7N\x84\x81\xb8\xdc\xfd\xa6\xe6\x9eAy\xdc?\xd4_B\xd4'\x0dQme<\x81X\xbf*\x82&\x06\x1b\x9a\xee.\xd7\xf6r\xa8\x8e\xc4\x85\"\xec\x84\xb2\x92\xe8D\x83\xa99\x02\xa3\x00\xca\x9e\xb7\xd0\x19$\xd3\x96ZWJ\xb5\x96(\xbci\xcb.P\x0e\xbe\xbd\x859\xfdoI\xff[\xab\xa5f\x98\xb3\xfc\x94\xb2\x8c\x1c}\x99\xae\x8d\xca0\xba\x9c\xa1r\xce-\xa3\x84\x87~)<\xbe}\xcb\xcf74\xbb\xeb\x8b\xf2\xb3m\xb1*\x90m\xdf\xb0.\"8BUS\x01\xb6\xd6^LB\x0e\xc0\xf7\xd7\xac S,I\x05\x0b\xd5P\x05\xf8Z\xaa\xd2a\xe2\xda\x8d\x0bW\x0e~\x9f1\x03\xf7\x8d\x9e/\xcd\xee\xbb\x8b6&'\"-\xac\xa0\x17\xe9\x89\x03\xb1\xc8\x8a\x12\xea{\x17\xdfy+\xeasS\xec\xe96\xa2\xce\xb6\xdc\xb4?\x0c\xb4#\xe0w\xbab\xae\xa3\xf8\xb6h\xd4\xdd\x15\x1a\xa6\xa4\x1d\xfd\xaa\xec\x16\xe9',\xc3d\x82\xc5\xf4d\xe3|\xfa>^F^\xba;\xe0\xb6w$\xe3\x95\x87\x07{\xfa\x87/\x85\x86E\xf7\xa4\x7f`|dj\xacP\xd9\xe8\x1f=_z\xab5\x99\x99K\x98\xda\xa4\xcfJ\x8db\xa6\xdc\xb1\x0e\x83*o\xea\xeb+\xe9\xeb+\xcfr\xf3G\x05^\xe8\xee\xd5\x07D\x01r\xfbGu58\xae(\x0f\xd0\x18R\x81 \x03H\x05,<(*`a\x0b\xa9\x80\xd1\xfeQ\x85q\x9bG\x05\xfcC\xe2\xbd\xcd\xfb\xd1\xea\xbb\xdbm\xc1\x88o\xc1 '\xf8\xf8\xb3\xd5\xca\xc6tW61\xf7\xc6\x1d\xd9\xec\xcf]#L\xa6fu\xe5F\xfb\xb8F\xf3Ul\xf1\xbeb\xf3\x03\xbe\xcf-6\xc3\xa5d_tr\x18\x1b#\xdd0\x9a\x9177k\x06S\xab\xc0tQx&U\xeba)\xca\xb1\x9e\xb4T\x8f\xc6\xb5\x80\xd2\x10vs\xb8\x98\xe0\x11\xaf\x1a-O>I4~\xba^\x1da\x14\x9f\xfa\xc4\xd3W\xb6+\\Q\x95\xfe\xb1\x98S\\\x8b\xb3\xfbG}'?Zn\xce\x15\xfa\x86\x03Z\x7f\xa3\x03\xdav\xb2eu\xe9P\xf7\x14\xcb \xe3U\x7fx\xa1=\x1eO\x0d\"YHE\xb2\"\x85\xbct\xc8\nq\xff\x97U1-\x9eF\x8e\xb9:\x98\xa4\x8fm\xeeU]\x19\xd2tm;\x19b\xa0<\xe5\xbfQ\xfd$\x99\xbbF\xa0W(\x11>\xc2\xdc\x92{{\xdb\x9cv\xa9\x06E\x8eD\x8e~\x0c0\xe0\xf2\xa1nu\xed\xa6\x99\xba\x9a=!\xf22uW\x1bR\x9b\xca\x92\xf7\xa2\xb1\xd2\x90\x07\x86\x84\xd0\x067\xd9\xbdA\xd5W\x92\xfbP\x0e\xaa'4\xeeC9\xa8\n]\x89^F\xe3N\x94\x8as\x06=t\xf9v\\\x81b0\x0e\xbb\x1axg\x8d\xd0\xa8\x02] 4\xab@g\x08\xad\xe6\xdf\xa3\x07#\x89 \xb2L'\x1a\xb1\x84\xee\xae+4[\xc7\xf8\xbf$\xe4\xd8}\x87\x1dJ\x82\xd2\xbb\xc8\xed\x8b\xd7\x02,\x12\x95\x8a|?\x8eVABD1J\xae\x93hyElV_V*\x8c\xc2FQ_\xc6\xceD\xa5\"\xb9\x90Q\x14\xf3\x9cB\x87\xda\xbcA\xf5\x87\xd2P\xe7c*.;\x96\xb6sM\xc69\xc4>8\x05\x9f\xa2\xba\x9a*\x93\xc7?\x10^\x12Z\xfb\x1e\xdaT\xe7\xb5\x96r\xcd\xca\xa9\xdc\xce\xe4V\xa0\xab\x07\xa7\xd3P\x85\xc6\x03AWE\xbe\xca\x86j\xea]\x0e\xca\xebo\xa8\xc2`\xfe\xafV\x91\xe3\x87\x81\x94\x80\x96MT\x92U_mGovw\x1d;\xb4\x0f\x1d\x17,\xb1&\xa6(5[\xdej\x94j\xe6S\xfc\xf0\x15\x9f\x91\xf4\xe1+\xe5\xcb\xf0@\x15\xf7\x8f\x0c\xa1\xd4\xb6\xb7D\xe4\x82\x87\xb8\xbf\xe7\xf2\xdb)B\xb5\x1e\xd6\x18E#\xaeeW\xb7>p\xa6\x91\x8e#\x9d\xba\x94\xa9Kx~\xb4\xd8\xce\x1cSX[\xd8\\\x8a\xa9\xb9B`\xba\x01\xa9\x0f_\xb57\xd0)\x0b(\xbb\xd4\xc5\xaf\xd2\xad\x86PhV\xcb3\xfewXe\x8bs\xd5\x04\xbf\xdc\xf0\n\xa1A\xc6\xc8\xf8\xe1\xd1c\x99A\x13\xdb\xc7\x95%\xcdW+\x85\x9e;\xd0\x05%\x90Z\x90L\xac\xec\xd4\x90\x07\x17\x89\xd8\x9bh \"\xb8\xc0s\xb8\x85\xe5\x03\xc92\xfd\xa3\x8dn\x83\x1bL[\xb8\xf0\xba@I,\x9d\xa7^|\x96\x86\x1a\xc0)\xa6\xc1mJ|k\xe8\xfe\xce\xf8\xf3\xeex2\x9d\xb6o'c\xfbthwN'\xb3\xb6}:\x9ct'\xb3\xb6s\xea\xdc\xdac\xeb\xf1\xd4\xb1\xe9\xb3\xd3\xd6d\xe0\x8c?\x9fL\xa6\xb7\x93I\xd7\xf9\xf0\xd4\x99\x0c\x9c\xc9\xf4\xd6>\x1d\xe1\x1b\xb7\x93\xf1d\xea\x14_o?p\x9cj^3:\xdc\x9d\xc9\xc4\x9eL\x9c\xd3\xea3\x81\xebGN\x83\x1b\x8a\xe9\xc8\x02\xc5\x0c\xed\x1d\xb0\x9b\xb8\x98N\xf6y4#\x98RV:\x98X\x16r\x14\x11\xfa,.O\x17s\xa2\x8cLGa^GLq\xab\x94C\xff\x83>f\xa2E\xe5y\xaa3A\xc9!%\x18D\x8f:\xd16\x8bH \x8a\xce\x89f\xbf\xf9\x1a\x99I\x06C\xec\xab_\x05\x90,y\"\xf8\x00W5\x84\"\xb4\xa2[\xf1\x14\x026 \n\x8c\x11x\xdf\xf3\x17\xfa\xb8\x07w\xa6\xb4{\xbb\xfa\x83\xc6\xdench\xc3\x1ab\x86\x1b\xb6\xc5\x8f\x92\xe2\x8eK\xdct\x00\xbc\xcf\x11\xad\xd4\")\x9d\xc8\xef:5}\xc35\xfc-mj\x8a\xedL\xd8\xd4\xf4,\xe8\xf0\xae~\x00\xb9X\xe0s\xcb\x07\xe5Q6)\x82\x009\xb9\x15j\xc9\xbcd\xa0\xdd\xf6\xe1 \xcck\xafg'6\x19\xfbS\xa3\xdf\xceR\x90g1\xf7\xd8\xbf5=k\xa1\xbf\x8d\xfa^\xca/s\x97\x1eh\xc5\x074\xac\xd1>\xb6F0\x87SX\xc2\x10Z-{\x0ef\x031g\xa1s\xfc\x9b\xd9k\x17\xe6\xdc\xbekKq\x13\xef\x8d\x87\x06$\xbc\xbb\x97\xc2\xae\xde'doW\xef\xbf\xa2\xca5\xd9\xa6\xc8c\xe8z\xc4\x9cD\x98G\x01\x06\xbcj\xde9w\x9e\xa7\xbc@\x9d\xc2Z,1)\x87\xa8\xaaz\x8c\xdeu\xca7\x91J\xee\xd3\xfd\xb8\x12\xb9\x0e\xee\xd3\xd9\xbd\xdd\xaa2T\xa8\x83\xf4\xa9\xb2\xf7vu\xc4\xe8S/]tW\xdeu\xd3\xb0\xcd\xc2\x98W\xb3\xf5TMA\xcb\xcb\xd5\xaa\x9d\x8aO\xde\x95\x88\x98\xc1+\x13I\xcb#\x93B4\xc9\x13\x9e'\xe8\x0d\xeeA\x1b\x12\x0c\xbc\xe62^\x1c\xd0\xf9\xdeu\\H\xee\x8f\xb6\xc2\x15V\xd1o\xe44V\xf6eb\xde(!\xb4\x01\x05\x9e>\x0c\xa1\xd3wN\xf06K\xd4\xe9\xc0\x10\xda\xed\x88%TW\x90\x85N\x13\xb1\xe9\x91\x0b\xbd\xca$Et\xa4\x9d\x86\xbb\xc7D\xdb\xdbm\xce\xc4_#\xec\x98d\x12\xf8 \xe8\xeb%\x12\xb1w\xe9\xd2\x12\xe8\xa0\x10N`\xd8\x18\xc2\xc1<\x82=\x9d\xa8\xd2\x87\x9d\xaa\"\x0b\xe3\xbbt\x0f\x8f\x0f\x0f\x8ew\xfb\xbb{G\x07\x83\xdd\xfe\xfe!\xd9\xed\x1dm;\x01\xb9\xaa\xfb\x94\xf9^1S\x01\x13\xe3\xa8\x04\x8b_;\x01{\xcc\xc2\xbeu\xe8\xfa\xf7\x1d\xf8\x10\x1d\xeeR\xb1SR:r\xfc7\x92!w\x9d\x0b%^3\xd7&\xe8\xb4\xc3\xaf\xbcW*-\xd8\xf9|\x92\xb4o'I\xfb\x83\xea)\x83Ex\x1ew\xda\xd3\xde\xf5\xb8\xd79\xf6:\xf3i\xfb\x83\x9d@\x15Vv>\xef]\x8c{}\xcdS\x9f=\x8d\xc6\xbd\xce\xa1\xe61\xe5\xe0k/N\xc8\xcb0\xddvI\xe8\x8e\x91\xa3\xbd #`\xbeqR\x95\x10\x05\xb6yc\xa1J\xd3p=\\\xe0\xbf\xd6\xc6\x91\xe6\xd7\xcfN\x8b\xef\xecJ\xb3^\xe8\x89\xd9\xc9\x9e\xdd\x10\xa2\x9b\xa1T\xea\xbd:J\x11\xe4\xae\xa5\x19e\x19\x8f\xda\x95&\xd9e\xb1r2j\x95\x00\x87,\xac6K\x14\xa3\xdd\xc4xN\xf3E\x118\x85\xb9\x9dv\x93e\xe0\x13{\x80j\xa7S\x18\xc0\x10\x8e\xe8\xa8=\xa9X\x84}\xba+r\xf7\x15uK\x03\xb7\xdb\xab\x8a\xd8\x99V \xe7\xa6\x8f\xbdf!\xc9\xcc\x01\x19\xf7a\xb2\x12\xe5W\x86iC)4\xaf\x86\xb2-\x8aGL\x8c\xa1VE\xf1\xfcc\xd3\x172.\xdaf\xf0\x04\"\xe6\xe8\xd4\xc7\xb8q\x81\xed\x8d\xb3)\xbbH\xe6\x9c\x98\xf5\xd1\xa6\xd8\xe7\xdb\xae\x84\x9eN\x18\x82\x0d\xa9\xea\x98L\x08T\x1b\xac\xa7\x86)\xe0\nd\xf2\nT\xef\x1f\x89\x83\x93\xf0\x8d\xd0\xd2\xdeV\xab$\xd5x\x18\x1b\x86\xb1\x8e\x08\xf7e\xae\xe0\x18\x96\xa2\xdfz\xb9\xbe+\xe4\xee\x9f\xe1\x98L\xb7\x8f\x99ne \xc1\xec8~*\x99/\xb9\xd3\x05\x0b\x97!\x9clx<\x18\x92|\x1a\xcd\xb2%\xb1\\\x85\xc1,32,E\x8es\\\xbcs\xbd\x8a\x82/\xc9\xec\xcc[\xad\x97\xe4\xe38Z\x9d\xf9\x0b\xb2\xf2`$=|\x1e\x13/%\x7f\xe3\xd3O^\\c1\x16J\x0d\xbf\xfe\x8d\xd5\xb2\xf2R\x10\xceI,\xfdN\xd4\x9a\xb9\xa1\x1bH\xd7Wk^\x9eh\xf0\xa9\xaf\xa4H \x90\xe7\x87\xf6\xde>=n*H\x85\x8f\x0ev\x9dM\xa3\xb1\xc8|\"\xed\x16\x13\xc9e9\x95\x1a\xcc\xc8\xdc\xcb\x96\xe9\xb0z\xab\xf4;\xea7\x81kj%\"\xf3Q\x8e\x04&\xaa\xcc\xbb'\x90L)\xf3^= \xb2\xa2\xe7d\xe5\x05\xcb-Z\xc8\x12\x12\x7f\x97\xb0\xd5\xe8\xfa\xd1j\xa3\xb6x\xbf\xceg^J:i\xb0\"\xd6\xe6-\xa2\xaf\xc5G^J\x9cn\x1a\xbd<{\xcd\xbc@m\x8d\x1dBs\xda\xc5\xcd\xb9y[\xbd\xcd+=\x9f/#/}\xe0\xaa\x830%\x97\x0f\xdea\x1eD{X#T\x88\x8fX\xe5<\xee\xb6t\x8c\xe9r\x94fQ1\xf8\x0f\xb5\xfd2\xba\xab\x07\xd0\xfaN\\\xe5\xfel#\xb0{.\xc4]\xe6`\x11\xcco\x1c\xadB\x03rC\x8b\x9a\x82H|\x02|>\x8f\xe2\x95g\x88\\EI\x827\xc6\xfc\x91\xe7\x16\xb4!\x98\xa2\x0b\x90\xf6\x12\x92\xc0K\xec]\x90|\x9c\x85\xbecGx\x82\xb2\xd1\x1ek\xfd |\x1bF\xefBxs\xb3&C\xa0\xf5\xa5\xd8\xbb\xba\xa9\xf1M\xc40\xa7J\xa9^u)\x0e\x85\x9e\xf0%\x17\x97\xb2\x9fB\x1f\x8a\x9c\x14\x94\xc9\xe7E\xc6\xfd)\x15\xde\xe4\x9f\x98\xc7\xca8{\xcaR\xe8\xe2\xc5\x81\xf0\xf9\xadY\n\xb4yw9\xfd\xd0\x17\xf1\xb0\x08\xbf\xc4\x17\x10\x8dg/\xf0\xf9\n\xba\xdel\x16\xd0\xc9\xf1\x96\xdfo(?\xc7\xf2AJV\x86\x02h\x14\xe9\x06\xa1\xbf\xccf\xe43\xe2\xcd^\x87\xcb\x1b}\xd1\xb5\\\xf4\x87q\x90\x12ZV/\xe8I\xd3\x9f9e\xdc\x99\x11\xb2^\xdePz\xb6\xfe\xeb\xe4\xc6\xc1#\xff\x07\x1f\xc4dnma\xa5\x94\xe5\x8a\x92ou7\x08g\xe4\xfa\xf5\xdc\xb6\xfe\x8aU\xc9\xcc >\xefM\x16\xa2H\xef\x7f\x1c\xb0\xe0\xb7\x91\xe4\x1a\xae\x176kb\xec\x82hc.f\xc3 \xaf\x8a\xdb6^\x1c{7*\x97\x01\xedy\x01U0\x85\xb7\xf9\xc8l\xed\xbe\xe2\xc1\x06\x14\xcc\xae\xba1\xca\x9fY\xe56\x8b\xfc\xc9E\xf5+*\xd8-\x1cX\x8c\xaf\xa6t%\xe8\xdf\xee\x8c\xacc\xe2{)\x99\xe1\x8d/\xf9Q\xccq\x0d\xd8\x05\xb6\xea\xe3w\x02\xbf\xf0\xf9\x1a\xef\xb9\xcfh\x81\x11\xa46-A\x85B\x83\xd0\x8f\x13\xcd\xb4N\xbe\x03\xb3\xcav\xe9\xd7\x8c\x06W\x90\xbe\xee\xebQ\x01\xaa\x11\x0c\x94y\xf4\x1d\x97\xc5,\xb0o\\\x8c\xb2\xb6\x82\x11\xf4O`\x05O`\xef\x04V\xed\xb6\x03\xb3\xb1U\xee\x12\xa5\x95+:\xb4K}\xb78\xd2\xcfTT6\x91i\x8e?\x0c\x19\xe0\x94\xa7\xb2 \x12v\xbdl\xde\xf5\xc2\x9b\xd7s\xd4\x92\xb1\xaf\xdd\x95\xb7.<5\x9a\xee\xe6\xb2\xf8\xf3:\x9f\x08\x18*ME!\x11M\xe1\xd7\x07lj\x9c\xdas\xfa\x94\xd2q\xd2%a\xb6\xc2\x10\x8c\x82c\xcb\xdf\x87|\xa9B\xca\x0e\x97\xc1\x97\x04\xbb\xe7\xd8\xec5g\xdc\xa3uX\xf3`IX\x8a\x8d\x08\x1d\x9b\xd0\xa5I\x17/_U\x12\xdbU\x19\xbf\x9e\x96\x89\xe1u\x13V\xfe\xd1#\xa6\xb6\x17\x00\xf4h)\xb8\x01{\x8e\x1cF\"C\x8aO\xc6{\xd7x\x04\xd9\x88\xa1\xb2K\xcb\xdf\x1aO\x8d\xb6\xe1\xa9x\xff\xa5\x86\xa7z\xf8|\x13\x86\x19m\xc90\xa3&\x86\x19\xd5\xb3\xf25c\xba\x9b\xf0\xd4\x85\\4\xe7\xa9\xfa\xb23l\x99#\xb4\xbe\xc8\x15\xd26\xfd\xb3\x9b\x9ag\x97(\x86]\xaf\x96\xfa\xc7\x94\x86]b|2\xfd\xf3s|\xbe\x8e\xc9<\xb8\xd6\x97\xb8\xc8kH\xd6\x9eo\xa8\xe6\x1d\x9b\xda0[\xe9\x9f_\xe7\x87d\x03\x03\xcfj\x188\x9a\x07\x1c\x96\xda\xfc\xc7\xc1\xc5\xb3&.\x8e\xd1Y1l\x8c\x15F\xa9wI'\xc7b\xfe\xb1\xf69\x9c\xc29\x15\xcb\x87\x16\xba\xb6;\x94A\xb8p\xc1\xf4\xf37c\xfa\xdc\xba^-\xc3\x043e\x9f\xd3B\xf8\x13o\x03^\x18\x04\x1c\x99)\xa0[\xe5\xdcD|i\xe99\xc5\x07J8\xf0\xef\xed-\\\xd2\xff\xbez\xef2\x08\x0f\\'\xff\xa0e\x18\x96\xc0e\x97\xc7\xe0\xcd\x85\xbf+\xee\x95;u+\x1cbIy\xc3R\x8dZe\xe4\x0c\xf43\x17;\x90\xe5\xa4\xa2\x953?>\xe4\x08U\xfd\xbe\xf8h\xf8\xd3\x8c\xb6>\xdb\xbau\xc1V\xb6n]L\x03/9u\x01%\x9c\xa2\ns\xab\xe7^\x9a\xc6C\xb81T\xee\xc2\x95\x1e\x1b)e?3\xb8XB\xc1\x8a4\xabb\xdfsY\xce6\x9a\x15\x17\xce\x0c\xebb\xdfsa\xb6j\x9f\x97R\nm nk\xd3\x12\x01\x9f\xfa\x17zq\xbbA\x9c~F\xc5ii\xcf\xd0\x9d\xb8\x14\x1b\xf0\x85Y:\xa5}{Q\xb9jh?ct\xa3\xf5b\xfcL\x12\xbcooa-?(Dn*\x8c\x1b\xa6\xab\xd4\x0e}\x8b\x11\x89\xfc\xab\xe8!\xff\xdd\xa58\x1b\\di\xed\xb2\x89\xcf\x15\x8f.YF\x05\xac\x0b\xa54\xda\xd9\xfc\x971\x05K\xf5\xf3\x85\xe8_-\xd3\xae~\xde\x8a\xb78F\x99)\xbd\xf8\xdc\x8c\xf3Q\x0br\xf8l\x9a\xb3,\x14\x9b\xbe\xa0#\xf8\x82>\x91\x80\xcb\xf13<\xf7\xe0\xdf\xf2\xa3\xb7\x14\xfe\x96\x0214f\x82sQ\xbf0\xb5\xa9^\xe4O\xb9\xb3#P;\xef\xca\xce\xe9\xf2\x0cV\x84A1\x00\xbbT\x86\xc1Mv\x19\xe9s\xc5\xe3f\xa6lt\xcd/\x94\xd1\xe3%\xa5\x14|\xa7 \x19\xf5\xa3\xd0\xf7R\n\x1fJt\xf5e\xc3\xb4\xd5\x91Fq\x98\xe4\x0d5\x11\xea\xb2\xb49\x04\xebYx\x93.\x82\xf0\x12|/\x84\x0b\x02\x0b\x12\x13\x83T@;\xedo\xca\x11\xaa\x0d%\xa6s+%r\x0f\xc8g6\xa0\x91|\xe6\xae\xcb\xf8\xbf\xe4\xae\xb1\x12h\xc63&\x94\x17\xf5\x1d]\xd4w\xecT\x96\xb0\x80kl\x85o\xe0\x14\xc6\xfa\xbe\x1b\xfb\xfd\xde\x85kZ\xd1u\xb5\xeb\xef\xb5v\x90\xa5\xd9\x17\x81\xca;\xeci\x19K\xd1\x08Z\xd2s\x05\x82n8vX\xb5:\x01\x1aJ\xfc\xa5\x17{\xb4\xc1!\xb44\xd7\x1b\x83pF\xc2t\x08\xd6$\xad\xdc\xae\xab\x9a\xcb\x00o1\xd4X\xa5h\x7f\xa2\xa2?\xcb&\x13W\xa5<\xc7\xa9\x06\xab\\\x0d\x87\x96<\x05\xf6\xabn1PxK\xec\x0f\x9c\xeeY\x1a\x13O#\xfe\xa3N\x8c~\xb1\xa4\x15\x83\x8a\xf5Jo\xf5\x04\x919\x80\xd24\xcd\xc9\x01=\x05\xd0\xa5\x11\xc7\x1e0\xd1!\xbf\x92k\xb3\xf7\x9c\xee\x17Q\x10\xda\xe8KgYU\xdb\x9a\xf8$\x94\x8c\x19\x84oC4\x08\x1b\xbdD\xd3\xb1\x142\xe0-\xb9I\xec\xd4\x19\xf7\xa6SdyI\xf7\x9c,\xc9\xaa0\xdbr\x80\xa0\xdc\x91\x9bC\x02?\xcaB*\xfd\x84\x12\x0c1\x89\x0d\xab\x0c\xa3-{20%q\x9c\xadS\xcc\x00'\xc0\xfa\x19\xf3\x99\xd3\xbe.4\x14\xf0S2\x957\x95\x87\xf9z\xad\xcd:\xde\xf24l-\x02\"y\xab\xf5m\xa8~r3g\x1b\x1e\x8f\xac\xc7\xd0f\x0epmxl=6\xbe\xf8\x1e\xbd\xa6\xc7dj\x14,7 \x93\xe2z2\xc7\x08%\x94\xad\xf8\xe0\xa5\\\x81B\xfa\xbb\xb9Pv\xc6\x18\xd1\xca\x0c\xf7\x1a\xc4'\xe9\"\xcd\xa48\xb6\xb6\xf9\x0f\x0cty\xee\xcf\xbc\x14\x95RK6\x9d\xb6\xf5\xa45~\xfe\xd1\xb37\xcf\xc6\xf4\xc0)J8\xb9\xe3\xde\xced:\x99>\xdd\xb9t\xc1\x9aN\xa7\xd3\xa7y\xf1\xa7xx\xb5\xa6\xd3\xa7\x16V\xcdW\x13Q\xdf\xe7\xa1k\x96\xd2=\xaed\xc3\xf8\xc5\xf2G\xbb\xb7N\xc1\xc2\x01!T\xd9YpJ1\x90\x0f\x19\x86\xa2\x0b9\x15\x816\xf4\xf1r\x81\xbdd\x89\xb5]T%\xb5zyo\xd1\x13\xd3,T\xbc\xc77no\xa5\xc1\xd5\x8865\x0b%L\xea\xc6w\xf3\xfe$\x9a\xee\x189\xb3~F)E\x19B\xa4\xdf\xd49}\x18\xd2U\xd3\x16\xc9\xc5\xfdd\x08s\x83F.\nS\xe4l\x06e\x13#aC\x08M\x9d@\xca5\x04\xaf\xeey\xd5e\x15\x94\xa9xo\xe0#^\x1d\x1f)\x11\xf2\xc2HL$\x97&\x8a\xcf\xba\x08\xf1\x82 \x12\x89\xcc2\x0f|\x0c\x9fK\xa7$\xbf\x9d`\xa6\x9a\x81\xd14\xce\xd3X*\x95\xd5\xed\x1d\xe1$W\xbc\x94,\x82yZ\x0d\xa8#\x7f*\xc6=\xadKX\xb5|d\x07N\xb3\xc2\x8c~p\xf25gp\xf1\xd1K\xe9z([\n;F\xed\xf5)\xce;\xe3yB\xa1f\xf3\x94\x0b\xa7`=\xd9\xa1T\x8d\xffn\x83\xf5\xd4\x92Kq\x06\xfa\xe8\x11\xb4BZz\x12\xf2\xc7\xe8W\x8c\x17\xc9t\x1b\xcf\xbc\x8aQ\xa3\xd9\xa3\xd5\x92\xf1\x04\x9dr\x8b\xdf]o\xbd&\xe1\x8c\x8a\x0d\xae\x8cO]\x06\x0cJ@\x11\x1d\xccn\xf5\x1c\x17Z\xbdMH\x04]4\x8e\xc9\xf9\xac\x95\xe7K\x9a.i\xa2\x8a\xdd/,\x07\xa7`\x01++=CI\xca\x02\xcb)\xde\x8dq\x85D\xf5|\xfaqo\x08\xd8\x8eiM\xc4\x02\x97\x96\xa5\x15W\xb7\xa4xC.\xa8\"#\xae\x0c\xde\xbd3]\x87\x82\x1a\xa7;-\xcd\xd0\xd0\x0bD\x1a\xf4H6\xa8_9\x0d\x0b\xd5\xb52Q\x16\xf41\xc5\x08\x00\xdd\x04eh8e\x99Px\xaax\xb3\xb5\xc3\xb2\xcc\"\x9c\x89\xcc\x0bW\x00>\xa3\xfc|,A\"\xda\xac\xf894\xb6\xb1\xe0q\xe4\xcd[ef\xe6\xfe\x0b\x863\xe4:}\x13\xf8o\x99\x13J\xba\xe5N\xbc\xaa\x95\x0f+\xc4\x0e\xf5\x1e\xf6\x1c\xda#\x96\x8c\x12\xf2\xd8\xab(\xc9 \xb7\xc79\xe7\xd7V{\xa2\xd0\xb2\x89\x08\xe3\xc1\xd2L\x1agv\xa3g\x94\xf8\xf8]\xb2\nR\xdb\xa2\xd2\x99\xa5\xb5\x9c\x8a\x0f\x15P\xd8\xfaoHT\xeb\xe6\xf1\xa6v\x1e=\xfb\x8a'\xa0[\xbb\x98\"\x91\xb2\xbd\x9e\xa3\x0f\xed\\\xd3\xca\xa5q\xf8\xccf\xdf0\xcb\xe9\xb75\xcb)\x95\xf58\x88\x843\x0b\x7f\xc6\xc4\x9by\x17x\x00\xa7\x04H<\xf7\x97QB\x0c\x91\xee@\x7fl\x00\xc3rT!\xc2M\xa0y\x1c\x0b5=$p\x94\x08\xbb\x92j\x02q\x1b\x8f\xee2\xd4\xc5s\xae\xbe\xe6+\x12'\xa8\xd3\xb0\xfa\xdd\x9ea\xd7\x93\xd0\x8ff\xe8\xe1\x19w\xc5wFr)\xbd\xfa^\x8a\xd9\xd4%K\xb2b*\x85\x02\xf6\"\x87\xd5b\x9f\xd8\x87\xfa\xe1\xa2\xc2a\x08\x99\xcd\xb4\x81E\xecD\xbc\xc8\xc5\x82\x15\xe6\xbe\x06&%\x0c=\x0dm\xe2\xf5 \xc2\x9a\xcb\xf2@\xa2L\xe5@\xba\x88\xa3wH\xc61(\xacm\x85Q\n^\x92\x04\x97!\x99A\x1a\x81\x07,\x14uK'?\x88\xcf\x95\x94\xaa\xbb\xde\xdePdG\x96\x143\xe6\x8a=[\xea-'\xaa\xa1[\xaa\x81\xa9\x80\xdaT\xc0\x10\x94V\x0e\xbc\xdfD\xdb\x08\xaf\xdc\xd6\xc9\x8a\xe2c\xa2R\x86#\x1f\xa5y\x9b.\x89\xc4p\xd9\xee\xa1Ccv<\x91\x01\x9a\xca\xb9\xe2 \xed\xe9\xc6$S\x9dW!$\x96\x91=\xffU\x8a\x1a\xba\xbbg\x88\x18*\x0fG\xb0\xf3\xf2\x00\xadG\xd6\x10\xacG\xdej}R!\x8a\x8f\xad\xc7\xf4\xc9\xcffQZ}d=f/\xad\xa3Dy\xf4\x04\x1f-\xd5w\x9e\xe2\x83\xcb\xf4\xa4\xa0\xa3\xd2\xb0\xb7\xbal\xc5\x89\x17\xa7lH\xbcru\x8f=~d=y\xfax\xea\xec\\\xd6LF\xa5\xc2pL\xaaI\xb4`\xb8m(\x8a\xd2%\xba\x93\xd2\xbc\xf3[\x11\xfd}\xa7\xfb\xe2\x8a\x84\xe9\x8bU\x90\xa6$\xd6)\xf9\xd5\x83t\xccc\xa1.\x02\xe5Z>\xfd\x84\xf6\xee\xbec\x07.&\xd3\x0d\xba\x9f\x15\x14\x93\xb6x\x80\xc0\x1f\xc6A\x9a\x03\xf7\xf6\x8f\x11\xf8Q\xb6^\x92k\x06:\xe8!\xe8M\xec\x85\xc9<\x8aW\x1c\xdaG\xe8\xf7\xbd$y\xb3\x88\xa3\xecr\xc1\xe1\x03\x843\x9d8;\xd8\x05r\xc2\x8f\x00\x9d\xc1j'\xffJ\xca#o\xd2\x9c\x07\xfa\xd3h\x8a\x06a\x1c\x0e\xbb0\xc5X\x0dZ\x89\xe9\x1b\x18\x1bh\xede \x91\xbe*\xc7&}\x93\x91\x96\n\x85\x05\x1f\xc2\x1ac\x92d\xab\xd2\xf7\xdaSY\xd8\x8d\xc2\\$\x0b\xd0\x81\x0e\x01\xb1\x17\x84\x96\x0b\x11B\xce\x83\xe4,\x9d\x05\x11\x957\xe4\x81\x11$*\xb7\xb7`\xb3j\xa8\x18\xe7\x82\x87\x02\x11\xfd\xcd\xc46\x17\x92\xaa\x16\xef\x8a\x874k\xf5M\xf3\xebi\x07\x9bac\x19\xe7\xb8)\xa3c\x9b\xcd^\xb2A\x85\x86{\xe03\x92\xa4qt\xc366\xff\xb1i\xb3\xbe\x9en\xa3\xaf\x90\xed\xb8\xdcN\x1cw\x97A\x92\x92\x90\xc4\xcf)\x1f\xc2\xfd\xe4\x82E(3\xb5\x1c\xc1_\xab\xf4V\xdf\xe2\xdc\x88&\xab\xe8\x8a|\xc2\xdb\xa9\xac\xb9\xf2PZ\x7f\xf5Uy\x9d\xab\xcf\x8a5\xd7\xbe\x89#\xa2\xc2\x92\xaeU\xf9\xa9\xa9\xd5ym\xabsm\xbd\xc5\xd3\x9a\x9d \xc8-\xc3\xe4R?\xab\x10\x19\xdb\xe7\n\xb6\xcf\xf3w\xca\x10v\x94\xa1\x04\xc8b^\xceM4\xdca\x8ec5d]\x7f\xab\xaf\xa0\xeaG=\xa7\xcb\xc2\xe3\x96\x19\x9e0\x1e6\x86\xc8\xa9\xa2R\x8ee\xa9\x16\xcbZ\xcd\\\x0d\x84\x00i\xa7 %\x19#\x8e,E\xbe\xb9Y\x13.I>\xf7B*LR6\x03\x1e\xf8K/I\xc0K\xc0\xcb[\xd2\x1c\x0b\xdf\xf3\x0d\x94\xcb>\x0b\xe2\xcd\x80E\xa3\xe1\x90\xd4\x0b\x96e\x08?\x0e\x8c\xaa^\xcb:$I\xd5\x8c\xe6\xf5r\x9a\x10m\xf5\xf3A\xb7\xa21S~H\xaeS\xa6\x8eR\xc7\xa9\x8af\xf2P\x9eb\xc0\x92|\xb8\xa8\xf5\xc1\xdb\xc0\xc3\xd2\xac\x90\xf2\x94\x10\x17\xdam\xa9\x9a\xf2l\xb8\xa5\xb1g!\xea\xbe\xbf\xfd\xe1\xe7\xfd\xddd\x0ex\xec\x0ci&\xd0\x11\\\x1ec\x051\xb6\x19\xb32b\x13}\xe7\xe2xQk\xddy5\x15'\x1a\xda\xa3.\x9d\x91Z\xbf\xc3\xbe2\xc4\xd3\xd2\x80\xaa8^Y\xf2\xa2%:\xbd.t:RU\xda\x98\x85u3\x82\xb1\x0e\x9bf\xa4\xaew\x0d;\xb0\xdc\xda\x17Q\x106\"\x1c\x9b\xffQu\xfe\xc5E\x0f\x8d\x17s)\xean\xdeY\xe6Zl1m<\xae\nO\xcdM\xe7\xed\xc4\x81\x10\xda#4\x81\x13\xc3\x9a \xaeR;\x7f\xe8{u\xcf1\xc5]o\xb9\x8c|\xbbg\xf0cV0\xa6\xd0\xf57\xa0]13xj\x0eXl\x08\xde\xde\x0f\xc2\xc4\x9b\x13;\x85\xa7O\x9f\xa2v2+O\x9fG\x97\xf3\x04\xb2\x13\x07'.\xc36\xd8\xacF\xfc\xe2\x04^\xde\x8e\xd67,\xb0\x01}\xa5-\n\x96\xa2\x18dl\xd2MS\x1c)S\x9c\x03\xdeSI\x0b\x03s\x06\xdd L\xd6\xc4OK?\xba~\x96\xa4\xd1\x8a\x91\x89\\9\x93/\xd0\xb8ZpZ\x87\xecb7\xe7/i\xd4jlXC0\x92\x1c}\xb8\x1e,.\x05z\xcfMo\xec\xe2h1^\xe3\x89{c\x7f$\x1d\xfb.sw\xbd\xddF+\x90\x88\x0fS\x1cu\x13\x92\xbe\\\xad\xc8,\xf0\xcc\x1e\xae\xdc>\xc3|\x8cx\xcab5&\xb3\xfc\xf1k\xaej\x007\xdb\x98L3\xc0M7iw\x16\xf9\xa8(3\x97[\x97\x12B~_ \xc9k\xcc*\xa7}`\xcc\xa7N\xab\xc2\x8clk:'o\x82\x15\x89\xb2\x14NaM\xc9\xb5[D\x8c\xe7yk\xa6\xccq\xfa\xab\xf7\xdd4bW\xdb\xf9\xe9[$\xb6aQ\x8b\x9a\xe8\x88\xf8Hf\xa0Z\xca-\x7ff\xb6&\xaa\xaf\xf8\x98\xf4[0\x94Q\xa7\xae \xb4\xa1v\xd7Q\x92~\xca\xb3\xf9\xb3\xac?\xc1\x8an\xc93?\x0e\xd6\xa9\xd1\xddG|\x04\x11\xd79\x08V?x\xcc\xefF\xe1\x8a5Woh\xcf\x85\xbf\xbc|\x13\xd3\xab~\x88\xde\x84 \x7f\x18o(f\xc0\xb6,\x17\xac\x0f-~\xa8(\x1a\x0e\xab\xa1\x94K\xb5\xe8W\xc2vP!\xc5\xab~\xbe\xf0\xc2\x90,\xe1\x14l\x1b\xa3\xa7\x90wP~\xe4t\xe9\xbc\xf7\xf5\x03\xaeE\xae\x99\x9d\"\x057\xa9<\xb7\xc0\xd3\x08;1(M\x8a\x01\x0bQ5\x86\xc6E+\nc\xe2\xcdn\x92\xd4K\x89\xbf\xf0\xc2K\x82i\x92\x97\xa3\xddvD\xbe\x8b\xe2\x0e.Z\x06\x0d\x97\xbd@r\xfb\xaa\xdf\x85\x94\x1f_x\xfe[\xe3qV|\xbc\xf82\xd1\xf9\xdb\x89\x8f\xe1\xae=\x14l\xc8\x1f'S\xa6\xdf\x8e\xed\xc4q!i\xb7M\x08\xb7fG4y\xed\x16J\xd9:\x1f\x82\x85y\x89Yzw\xf0\xab\x81\x9b\xa1\xa1\xca\x1a\x1f\x15T\x8e::\"\xa1\x9f\x94\x86\xbb;\x02[h\x17\xeb}\xf4\x1a}\x9e\xe7\xdc\xf5\xa6\xaeL}\x9a@\xf1im\xb8{\xe4O~:\xed\n4k\x16p\xc4'\xc6\xf7(\xd6\xd5\xf7^|\xf2\x14P\x0d\xba\x0b\xdd\x07\xfd\xae{f\xdf[\xdd\x87\xd4\xf9O\xea>\x0d^\xda\xd5\x0f\xf6\xa9\xbfm\x9f\xe2qo\x93\xbbU\xf2\xe7.\xfd\x1a\xdc\xa5_.\xc4\xe3\xfe\x8f\xa3w\xbbw\xef\x1d\xfd\x7f\xf0-\xf7\xb1\xd1\xd5[\xf7A{\xfd\x12U\x0e\x1aw\x0f\xddG/Q\x97J\x98\x84\xa3\xbc\x00\xcc\x83\xd0[.7\xa1\x0f\xccp?\xdf\xe0\xbc`|\xba\xa9\xdfoE\xb7g[Y\xc8\x02\x02\xcedY(!\xcby\x11\xa9?\x0fN\xbc\x08\x12\x0c\x83=\xc4\x02\x92\x0d\xb8\x949\x14y\xb1\xd9\x15`\xf3[Q9\xfb0\x90M3\xf1E\xdd\x03\xe9.#\xdf[\x9e\xa5Q\xec]\x12)\xa2\xa3:)r\xfeTm\x855\xef*\x10aQ.\xb7\xaf\xe5GBa\xc8sn\xa07\x99\x95\xc6\x19a\x87\x7f\x1e\xd2.t\xbai\xf4I\xf4\x8e\xc4\xcf=\x8d\x01Y\xfe\xb5q\xf0R\x10wal+\x8c>\xe2A\x88\xd0\xc0b\x8a\xbd\x0d\x92\xb1\xa9\x1a\x15\x13\x8a\xb14\x9eapm\xb4ai\xe5\x12\xa1m\xa1\x85\xa8\xd2\xb5\xaa\xef\x91\xee\x1e\x81\xf8\xd0*b\xcf'\xa5*\xe0\x14\xfc(L\xa2%\xe9\xe2C\x16\xc0F\x80\xdeyq\x88g%\x1c\xa4\x1aD\x0f\x8c;-W\x170R\x93\xa2I\xaap\xc4j\xda\x87\xc6\xad\xb4\xd1\x1e\xd2+\xe2J\x19\x96\n\xb0\xe4\x06r\xac\xcb\xa3\x14\xda\xfb}\xed\xad\xcfH\xdd\x1e\xdc\xb6G\xe9\x82d\xde\x8b\n\x1c\xa2+\x15\xa9\x01\xc9\x0bG\x12MpS\xac\xb8\x1b\x84\x0b\x12\x07\xd8yt,q%\x98\x1d1'\x93H\xd2\xab\x9f\xa7\x92\xcbH\xddd\x01\xa2\x06\xb7DT\xdb\xde\xc2\xb3\x86.\xcf\xe1F\xcbS~k\xd0\xbf\xc3K\xfd\xfe\x81S8\xc5\xdc\xf1}\xc9}f\x93\x1a\x9a\xec\xcd\xfdc}\x16\xc4\xfe\xb1>\xcf\xcd\xdeAs\xac\xf6\xeaBqK\x04\x0bH-\xc7P\xd2\xeb\xcc\xb3\"zU\x8c\x97R\xd1*g\x13)\x8a5\xe6\xd6\xcb\n\xebWau\xe8z\xc9M\xe8\xf3\xe4\xadYw\x1d\x07\xab \x0d\xae\x08\x9c\xe6.0pZn\x02\x87u\xbc\xef`6\x0c\x1e\x03\xca\xd6\x948pl\x82w\xe5*\xcf\xa4zi\xb1C\x07S\x0e\xc8\xc0\xfd^\x9f\x01\xe9\xd7\x01V\x93w\x15\xfd~\xec\xfd\xde.\x82\xd6,!\xa7\x00\xee!p\x16$\xeb(\x07\xf6\xd1f\xd3]y\xd7\xcf.sX_\xc0\x04\x80\xbd\x19\x939\xba\xa7\x90X\xc0\x0f\xe8\x8e\xa3\x88\x92m\xb9k\x9a\x10i\xef@\x17\xb9\x1du>\xdeE\xa2\xa2\x12>\x99/#9\x97\xf5f\xe8\xc4\xd1$H^y\xafl\x8c\xfb\xcf\xd2x \x96\xa40\x82W\x18\xc3\x153H\x0d\xd8\x9e\x92\x07\xc6\xcb\xc9l\xfd\xe4\xe8\x02\xd9]\xb1 v\x89\x0b~y\x81\x03L\x9dBe\x1f\xbb\xc8?_&\xb9\x8eDv\x04\xb9\xd1\xb8\x83\xbf^\xd3\xc6\x13x\x8c\xa5\x1f\x83\x17\xce\xe01/\xfe\x18|\xe6\xe2sA K\xd0]\xfc\x92\xa4\x0b\x12W\xb5\xe5|\x19\xcbazr\xd1\xc8:?\x17\xd1\x19\xce\xcf-\x16\xaf>\xec\xce\xa3\x18\x9dp \x0cYf)\xcf.B\xe3\x93\xfc[X\x0c#\xe24\x9f]\x0c\xcbh\xd5 s\xd7\n\xa8\x8c\xd1(A\x87c\x82q]R\x1e\xa8\xddW\xee\x13\xb1T\xce\xe7\xe7\xeb8\x9a\x07K\x12\x9f\x9f\x03\x8f\x14^@0$\xa6\xdf\xcd\xd63/%/\xc2+\xbcJ\x9d\x87\x9fx\x90\xbd\xd3\x88\x93\xbb\xba\\\xbcBU+\x89Y\x17A8S\xb1TS\x90.\x95\x8a\xb6r\xe2\xff\xd2\xc3\xa4x(y[\xf1u\x7f\x99\xbc\x08\xb3\x15\x89\xbd\x8b%i\xa2\x07\x9b%j\xd0\xde\x84\xa2\x934g7\xd3\n\xbc\x1f\x18\xe27\xacK\xa5vk\x0ew\xc5n\n\xec\x90\xa58\xf3\xf9q\xdf\xb3)\xae\xa1Ux\xdeM\xa28\xb5\xb5\x04v\x8d\xa9W\x11\xf9\xd7\xb8\xdc\xc3\"\xfbL\x83\xc6}>N\xa7\xc8\xcf\x99\xc4\xed\xd2\x01\xca\x93e<\x88\xf1\xde'\xecE\x96R\xf8T\xd4\xe3\xbb\xb0t!\x1c\xa7S\x17R\x91gD{\xa3\xdctX}\x10\\\xde;\xacRR!\x81\xea\xf3E\x1c\xe9\xd3E\xec\x1d\xf5\x9d\xee\x8a\xa4\x8bh\x96\xe8(\xed\x9e\xf2\x1eg\xd6\xc7\xba\x04\xd3\x9a\xbd\x80g\xc2r\xc9\xf9\xa6\xbbfYl\x0cff,?\x96\x1c\x14J\x89\x1d\x94\xf0\x9d\x0b\x94\x81\xa3J\xcc\x80\x19B\xc9*hL\xdd\xa5?H\xa1o\xb7\x0bW.\xdc\xb8p\xe9\xc2\xca\x85s\x17.\\x\xe7\xc2\xb5\x0bg.\xbcp\xe1\x99\x0b\xaf]\xf8\xc2\x85\xb7.\x86\xb1Z\xe2\xe9KO\xf0\xaf\x98T\xdc\xe2\x020%\xe5\x9cw\xe7\xbai\xc6\xabS\x89\x9eK25\xc5\xfb3\xcct*\x831\xb8\xd3\x08\xce\xba\x97$e\xd1\x87\xcf\xba \xfd\xba\xc2\xaf\xcc\xac\xe1b\x94\xce3f>q\xdcB+\xd3\x8dI\x12-\xafH\xcc\x82\xcc\xbe\xe5\x9c%\x87\xd2=\xfd\x05\x8f\xbc\x144\x04a\xe1\xfc\x97\xfbU\xe5\x04D\xa5\x1e\x94\x1fcp3\xb4\xd6\xbf\xb5#\xa7\xe8\xd2\x88\xf1\xe8\x1b\n\xa4Et\\\xf2%]\xad\xfc\x1c\xfe\x82\x16\xcb\xb8W\xf2%I-\xdc\xb4\x11\xf3\xc5s\\x\xa9\x8dhO\xfb\xc0\xd2\xf2a\x94\xe4\xc2\xfbp\x9e\x93\x13v\x86\x8f\xc6\xbd)\xeaQ\xaap\xd1\xe7\x11\xcb}c\xd6\x08iF&D\x8b\xd8\xb6\x9e\x07\xb1\x9f-\xbd\x18\x82\xf0*\xe2\xaa\x1c\x17\xac\xe7/?{\xfe\x83O\x9e}v\xfe\xf2\xd5O\xbd~\xfe\xec\xcd\xcb\xd7\xafLVwZ\xeb\xa5\xad\x89_\xfe\xbe\x08i]3\x8d\x0f\xd4\x13\xbe\x1a/\x99=2p\xe1\x99\xbc.\x89X\x17n\xc1\xa7bH\x99|\xbap\xe5\xe4y\x07\xe9\xfe\xa8\xd5\xb6\xe1\xe1Y\xbf\xaa\x86\xa1\xb2{\x02\xb5h#\xae\x12\xe4\xa8[\xe0\x90\xc1\xa5\x10\x8dm\xba\xa0\xc9\xa7\n\xbe\x14\n3\x18V\x90\xccqMh\x9ew\xfa\x81\x17\x89\xf9\x03\xa0\xbf\xb0f\x99\xf2\xfb\xe3\xb8VD\xcdu.\xa7\xfa\x7fXR \xdf\xefD\x8e\xc7\xf5\xc4\xb8\x0b\x8d\xd3\x14\xd4.kP\xa6\x06\xba\xcc]\xb8M\xefK\x0dj:\xf7\xc0\xcb7\x0e\xe8\x1e\x0b\xb5\x8b\x17\x88u\xa3\xe2\x97\xe2\xae\x9bi-\xffQ\x1c\\\x06\xa1\xb7\xd4Z\xfb\x85\xb0>\x84/\xd4\x87\\\xd2\x7f\x85\x91\x83\x90\xdb\x8b\x9fj\xd9K\x92nr\x0d\x94\x0f\xf2m.\xe7\xbd\xb5S\x07\xb9\xdc)\xdc\xb0@\x0f\x1c)R\xba\x18*\xd5S[^x\xc9\x16-\x1b\xd6Q\xe3\xda\xa3i\x8a\xf1\xdbMZ3\x900`\xfd\xd5\xf7\x00\xe7\x04\xfd{W\xccM\nF\xf0\x12EU\xee\xbe\xc0~\xbc\x96\xd1\x82=\xb1P\x9a%\xba Q\xea PL\xd8 #\x8fP\xac\xbc\xd4\x0f\x03\xcf\x83\xe7\xf4\xc8'\x89Fn\xde1l\xc5\xdatb\xa3R2\x9f\x9aK9B\x9dC7\x7f\xae\x0ey\x81F\x0f\xccI&\x83\x9f\xe5`>K\x85\x1b\x95\xfdZD\xf1X\x94T\xfa\xfa\xb8\x15j\x7f\xe9\x18\x870S\x1f\xe4g\xe1\x0d&8e\x92-\xdf\x9ej\xb3\xd5\xed}\xa1\x8aj\xe6{,n9\x87\x8e\xba\x86l\x0b\x86\xb8\x05\xc3\xb2\x8cFP\x92 \x99\x8c\x96q)\xb3j7\xde\x92\xa7\xe7\x8an^\x1bg~\xe5*\xa1iki\xc8G\xc1T\x18\x17\xc9[\xa8\xa6=w1\n}P\xefF\x8cH\xdf8w\xbc\x1b\xc5\xd09\xcf\x1d\n~'Mk\xcaW\x8dNhA\xddB\xd6Y\xba\xa3U\xbd\xcb\xf5\xb7\xd6\xcf\xac\xbb\xf0\x121\xf7\xda\xee\x16XP\xd3q\x8e\x18\xb4\xaeT\x93pum\x7f\xa1\x0b\x8c*\xeb\xbe\x86\x10a\xd8*#\x89\x8d\xec\x0b\xcdSN\xbb\";\x13\xa7\x1d\xb5\x15\xe4D\x91\xfdN\xf7\x0cyEd_\xab}\xcer\xc8\x83\x9c\xf0\xfb\xc7\xba\xfc}\xf4\xe4\xaf?\xe1\x0ft'|\xd4Kv}o\x9df19K=\xff\xed\x9b\xd8\xf3%\xb6B\xe48\x1d\x8d\xf6\xa8\x90;#2u\xa7.\xf7\x98\x07\xe5\xfc\x1fj\x89\xa4\xa2c\xd2\x9e\x85#;\xe1\xa1\xb6<\xc6\xd4x4R\x91\xb8\x1f\xed1\x89\xc8\x14\xc9n\xe1F\xa2l\xd8\xf5\xa3\x19\x8a\xddxO\x87\"\x1a-CJ\x02\xcf=\xd6hs\xa3\x02\xe3\xc0\\I\xc1\xe2\x84ln[`\xb1l\x88\xad\x8f\x882\x8f\xa2!X\xb1\xf7\xa5U\xa5Qj\xd9\x0b\x8a\xf1\xd6\xec\x9d\xb7A\xd94\xfe\xf2f\x08\x16\xfdS\x0d-\xecb\x80\x9a\x08s\xb7]x1\xcb\xe1\x16\x7fy\x83\xb4\x81ve\xf6\xce\xc3\xf7\x1eXo\xbbgH\x8d\xaaU\xdc\xa2\x11g\xe5]o\xa0\xd41\x18\x08\x8a[8\x91\xe2o\xeb\xc2\xa0\"w\xa3\xa3n*+:Q\x1a-yhk5\x8df\x17\x9et\x1cS\xf9\x9d\x8cc\x8d\xabi\xa3\xbfN\xc8\x02\x15\xd0}\xdd\xe8{\xc1\x04\xfe\xfe d\xf0\x04\x92\x13h\xb73v\x7f\xad\xd8\xa0\xd9\xd4\xc5\x80\xb7yh\xa2jv\x82J\x1c\xb407\x8bh1\xfd\xdb0\x1c\x1e\xee3\xc3\xa1\xa4ag\xa6\xc3\xc3\x83o\xdbt\xa8_D>V9\xae\xac\x95\xdb\xd4-\x8c\xb4X^\x87\xdaE\xd5;`=\xb0>Y\xe1\x1eA\xd9d\xd1\xb4\x9d\xaa\x1d\x17\xe6f\x8c\x84\x9b\xaf\x0d;\x9em\xebzr\xa7\xbek(&oB\x1fR\x9d]A\x1b*Ks\xc7\x81\xe3\xb0\x1f=\x82`,\xec\x12\x98\xbe\xa1\xf5 f\xd6*\xfe\x1f3\xfc\xe7w\xe5J\x17nS/\x08\xf9n8\xea\xddc7\x88\xd9\x96\xc9\xfc\x96{\xa5\x8e\xd7\xc5E_1\xe7\x88\x08\x17\"\xa06r/\x91\x9d\xbb\xfal\x1eE\xd6\xc3\x18\xda\xc50\x95\xa9\xe4wa\xee\x8a\x0d\x95#b\xc9\xb6\\NDy\xdf\xceW\xee\x92\xba\"\x18\xbb\xc6\x04\xb4\xd4[E\xd7\x1b[r\x16\x9bZrf\xf5\x96\x9c+\x83%\xa7\xd2\xdc\xcd\xa6\x06\x9fK\x9dE\xb5\xac4)\xbf\xb0\xd2\x12\x0c?\n\xe7\xc1e\x86\xb6W=\xd1 \xb9mV\x1f\xf5Z\x04I\xaa#+j\x9akJ\xa2\xe2&a\x05\x84\xc0b<\xb3-\xd1\xa5\xe1RF=\xeb\xfc\x9c\x10t\x1b8\x95b\xcb!\x8c\x1e\xe5(h\xd5\xc5\xbc\xe70\x82\x99P\xc8\\U\xdeva\xe5\xb8RA^,\x1c\xa7S8\xd5\xc5[\xe7O\xe8\x1f\x16\xac\x0d=O\x11:\x821\xb3\xa5\x92i\x01\xe2\x91:\xca3V\x11\xf5B\x9f\x0c\x91\xd0o6K\xae\x1c\x0eL|J\x13\x15\x88\x88|\xcan\x0d7\xb9\x9f\xc8\x8d\xd4\x01{\x03\xaf\x91 \x97\x8df\x8fX\x8c\xadCg\xf7u\xe8\xe7\xf1|\xce\xcf7\x9c\x8a\xf9|\x88\xa2\xef\xa63\xc1i\x84^\xcd\xcd&\xa3\xa5G\x9bR,\x05\xfd\xfb-\xbb\x82X\xce8\x9dn\xf0\x9e\x8a6,\xb6(}[\x9d1\x10\x92w\xc4n\xbe\xd1\xc5\x8b\xc7\xd1\x94\x8a\xb0\x91\x03A\x11\x927\xd0\xcd+{J\xe5\xe4\x81\x88K%4\xfa\x1c\x05\xe3q\xc4]\xe40ie\xdcM\xd6x\xeb1r\xa1\xaf\xbb\xb7\x87\x96\xb4\xb8h6\xaem\x96kc\xc3:\xcf\xf8\xa6eg\n\xc4\xac\xf1~\xe2U\x1e\xd1\xa2v\xdd\x0dt\x82r\xe3\xa0\xbc\xa0\xe6\x15\xd1\xafc}\x1cx\\\xc5Pc#c\xb6!9\xd5\n\xbb\xebH\xd8\x89\x85\xc0\x13\x08\xe9r\x13\x07\xa21\xa1\x0f\xcb\x17\x1dI\xcd%8l4\xc0\xe0\x15\xec2+\xaf\xb7w\x82\x847\xa0/\xb3\xaa\xf9.\x8e\x0bC\x8e\xb6RnJ\x15\xb7\xc9\xaac\xa9\x9b\x80Mnl-\n\xe2\xb2\x08\x92\x86{F\x0d\xf7\x8a6\xb9\x89Un\xaf\"\xaf\xdc\xbf\xf5\x86\x9bVu\xad\xbb%\xdd\xd1\xfd\xfa\xb2\xd1\x8d\xaa\xbf\x14\xfc\xa4\x9fue\x16L\x98\xf7\x1d\xfd\xaf\xf7\xba@\xcch$\xb1\xab:O\xc6K\xe7vP\x85S\xc62\xb7#GGx\xe6\xb6\xec\x0b\xcd\xbc\x08o\xec\xaf\xde3]\x9c,\x1d\xd7_\xa1\x16\xaeb\xccU\x02\xad.3\xdbgq\x88\xf3C#\xadTn\x8c\x08\x9f%:\xa3\xdf\x81\xfb\n\xcc\xdc\xd5\xa9\xea\xd3_\xa3W\xd5\x88\xcd^\x9e\x9b\xb0\x12\x99\xb8h\xaf>p\x80D\xf7+i\xb05\xdeG\xd2\x0b\xe8,d\xa7\xe3\x10-\xcf\xf4o\x19%\x1c\x91\xf4\xce+\x19\xa5\xd5\xeb\xfb\xef\xdd\xedN5\xa8\xf6B}\xd7\x86iy\"~(\xce\x14\xcb\x8aC\xa5\xae\x8b ,\xc5]\xb9\xefQ\x88\xadS\xffX\xa3\x1d(%\x94\xbb\xe3\xa1.`\x9a\x8d\x94\x8a\x07\x0f\xd4\xed\x8d\xce\xd1B\xb3\xcc\x04S6\x92y\x1cUrq\xd5\x9d\xb6Y\xe8v\x14\xddq\x0d\xc7\xa8Gv\x99\x8ax\xea\xb8\xf0\xbd(Z\x12/\xb4Q\x94!E\xb8e,\xc0LA\xe8\x15\xfd\x10c\x96\xf4\xbcG\x07N7HI\xec\xa5\x91>\x90\xe3\xb1\xde}|O\xb9\xcd\xc5\xf6\xe8\xa0\xba\xa3=\xfd\xd6M\xf4\xead_\xbf\xff\xe7\xbc\xcdj\xe5\xcb*^mt\xacV\x0f\xcb\x8b\x878\x8cj\x9e\xcb\x87Q\xf5)\x1e\xe64\xf1\x17\xdf\x1bO\xf2\xe5\xa3\xfa\xb6\x9b\xa8\x10K\x8d\x1e\x94\x8d\xa6\xa4\x17\xb5\xa6$\x0c\xb2T(\xe6\x13\xa6\x98\xf7\xed3\xa4A\x9e}\xc6\x83#\x02\x8f\x16\x8eh\x8e\x0bG!\x11\x0b\xf6\xec\xe4q\xf2\xca\x95\x1bb1\xe0 \xe8\xcc$\xee\xa1S!\xde\xa0\xe1\xbb\x93y{\xda\x97P\xc4\xe9\xa7$\x85a\x11\xbf\xb9\xcdo\xeb\xd1\xf3\xb9}S\x928\xfa\x0e&+\x1bA\x8a\x17\xd1o\x0c\xd2\x10;\xd5\xd1V\x1b\xa4\xf0r\xed\xa5N\x95B\x8c\\R\xb1&t\xe0\x86\xf9\xf2\xa5Z\x07J\xf1\xe1#5$\x0cU\xa0*\xe4\x06\xb3\x05~\xc7\\\x08\xe7|\xa9\x98\x91A\xb5M\xd8\xef\xb0\xbb\xf1\xd48\x178\x0f\xe7\xe8\xe5\xfa\x8e_Ge~4\x94`\x8a\xf9\xa1\x07\xe4\x0b\x18\xc19\x06\x16\xb3\x8b\xc9i]tgQHN\x1c\xb4\xbf\x9f\xc1\xa9\x10\xe2\x983\xf0\x05\xd3\x98p7\xf6\xfc\x17\xe5\xdf\xf6\"\xd7\xa6\\\xbb0\xb3opg,\xf0\xae\x15\x9f\xe6\xebj\xa3\xed\xb6!a\x16]9Mv\xa0\xc2\xdbs^\x83\x0d8\x03\xf2\xda\xebF\x8f\xe3uQoW\xc1\x89k\x8e\x10\xbfz7\xa4\x82]#\x05\xbb*\xc7\x92\x1c\xa9\xb6\xc0\xa2\xd8vx0\xdb:\x9bt\xd5\xd8\x0c| f\x8c\x07\xd8\xb3\xa2\xfbn\x8d\xccW\x89\xb0\x1b3\n8\x1b\xa7,\xcb\x1f\xcb\x9e<=q\xa0\xdd\x8e\xb5\xd4\x0b\x8b\x8e\x80\x17\x9d\x8a\x9c\xab\xf6\x9a\xa9]\xac\xef~\x17\x03\xab\xb9\xe0u/\x13.:\xd5\x1fI\x0bo V\x13\xd3\xb5\x10\x17<&.\xe2\x93~\xf5\xb4Zry\x97\x83\xd8F\xb52/J\xa4J\xc4\x08}y\xfa\xf9\xf9\x8c\xb00\x94A\x14\x9e\x9f\x0f\xc1\xc3\xd0\xa2D\xe7\xccw\x1ez+R\x94\xb9\xb2\xab\x0e\xd0\xef\xcb\xea\x91\xb9\x1dT\x9b\x9cG1}\xbd\x1e\xcb\xf8\xa0\x17\xcc\x0e\x86\x7f\x86\xec\xcf\x08\x02;'\xe8\x8aR\xa4\xf4\xfb-\xb9\xf9x\x93\xc6\x0c\x8e\xe3\xb8\xf9\x08\x04!$(\xd3.\xcc:\xfc\xc5\x98L\x99\xa7s\xce\xc1Hm\xd7\x16^\xf2\x92c\x89\x98\xcb\x98YA\xa4'\xcc\x9f\xcf\x92 J\xaa\xf4 y\x8e\xaa\xaa\xb3\xb5H\xf6R\xa9N-\xc0kU\x1f\xa8\x95s6V\xad\x92\x83EE\xfc\xa7\xf2\xfa\x8a\x92\xc3\xca\xbb\x08\xe3/\xe2w\xe5-\x9e\x13\xa9\xf2\x9e\xc8\x9a\xc4\xde\xe4\xbf\x94w\x13\xe2\xc5J\x93\x0c\xc8\xdfd?\xd4\x17\xd7\xc4\x0fHR}\x93A\xc5\xab\xec\x97\xe6\xdde\x90*o.\x834\x7fo\x19\xa4\xca[\x92\x08PyWz\xc2k\x90 \x9azrAA\xa9'\x7f\x92\xd7\x93C\x94z\xb20\xf1\xa35E\x83\xea,HOx=\x12\xa4\xe4E\x82$F\xa2J\xd5\x9d/\x119\xdaFU{.\xba'\xda\xaf\xb5 \xcb\xba_A\x95*;\xae\xd2\xb1\xc0\xdc1\xb9\xe5MZ\x15\xe4\xdb\xc6\xec\xedL\xef\xd1\xad\x90Qh\x83\xe5(\x0e\xa1\xa5\xdfx\xa4x=\xdf\xb4\xd5\xa4\x92M\x0b\xd4Q.\xcb\xa3\x0cddr\x9b\xa6U\\>\xe1\xed\xe8\xb5\xa3\\\xee\xae\xe4\x86\xc7\xe0\x189\xc6\xd9r\xa7\xf4\xbd\xca\x11\x11{\xe5[\xae\x98S\x8b\xbd\x105\xbf\x10\x94\xe2\xf0\x97\x04f}\x15\xe5\x99\xd0UQH\xe5\xf7\x89\xa5%\xe9g\x8f{[G1b!\xcfP\xdf\xa0\x93\x1cR\x8c\xea\x9f\xcb\x0d\xfac\x90\xd8\x1c\xc52\xdc}4\x9b\xf5:?\n\xb1\xab>Z4\xb9\xbd\xa5\xcf\xe54\x05\xac\xecY^\x16#\x98V\xb3\x18\x9e\xf2\x8b{\xb4\x1d~'\x8ecj\x87\x87\xfe\xb0\xa3b\xd1=\\\xf4\x80\xa2=\xf3\x93\xc5X&\xe3\x1e\xf7q\xc7\x07\xf4E\x17\xbcq\x9f\x03\xbf\xc5\xae\xe7}\xefO\xc7\x11\xe2xvr\xaf~;\xae\xa8\x8c-\xe0\x1d\xf0\x97k8\xb5\x99\x16\xd5\xa1n\x17\x1b\x83\x07\x8f\xa9\xc1\xe4\xac\x1e\x93=\xee^^\x8f\xebyn>c)\x1f\xd9\xc1\x06{\x81\x0b[\x19\xc5.\xf3f\xa0\xaf`\x1a\xc0q\xb2 =\x8d$,\xdd\x9c\x9eJ\xd2\x7f\x86\xe8\xe0\x8d#\x89\x9e\xd6\x93R\x9f!J\xc6\xe24\xb1\xbe\xf6\xa7\xe3\x00\x91.\xba\x03a}\x90\x9e\xe5\x17q\xf3\xce\xd0\xf7\x85\xdf~\xe0\"B\xd3g%\xd0 \xb4\xb0\x18\xb7\x7f?z\x04\xbe n\x0e2\\\xbf\xbb\x8e\xd6\xb6\xe3\xb2E\xe1\xbf\x9c\x0dj\xdeb\xbbH\xd7\x016\xd9'\x9b\x86_\xe1r\x8a,\x97\xa8\xd5\x7fG\xff\xeb\x1eRY\xc5\xf0\x7f\xcco'\xb2\x90\xb4]\x0ci\xc7\x83:\xdf\xe7B\xe2VB\x9c\xdc\xf66G9\xb4w\xa7\xf6W\xef\x91P\xa6\xf6+\xef\x15\xbb\x83\x98\x16I\x1e\xe0\xe1fk\x03\xa9\xbf5z\x18=XYt\xbe\xe3\xb4n)\x1bW\x89\xe4C\x88\xc5\x12\xb9 .:\xc2\x19\xbc\xe0\xca\xc2[PHi\xe18\xd8h\xd7\x95\x85\xac\xa6\xe0\xa1,_6K\xac\xe3B\xc8~\xb5\xdb\xa9\xf3\xed\xf0BIc\x85\xf9\xa3\x90\xf1\xb7p\xa0\xec\x0c_&Va\xe9\xb7\x86*<\x0c\xd1\xd1\xc8+\xdf\x02\xbdy\xc8S\xa0^\xc9\xa0G\xf5\xd0(\x8a\x9a\xe48\xcd|hJF\xf7\n\xc7\x15\xcd\xe09\x82\xb8\x10\xa1\x7f\x01ECM\xd8\xe4\x0dh\xe1F\x18\xce\x8e\xb9L\xcag\x83\xa5d\xc9G5\x00\xe1\xc7\xbb;\xe3<;C\xf9x\x86j\x16M\x136#\x9e\xcb\xf3~\xf3S\x1aC\xfel\x0b\xe4\xe7\xbdi\xd5\xf6\xa6\xe1\xc8@\xe4\xe6=U\x90\xf54\"\xb2W\x16\x91\x93\xb2\x88\x9c\xe4\"\xb2W\xfc\xd2\x88\xc8j\xcd\xc6\x9er\x89\x98\xae\xd4\x86\xd3s\x0f\x96e&\xe4p\xc7\xed\xe5\xcaD\\\xed\xeaw\xf4\xbf\x1e\x86\x07j\xef;\x85v\xff\xb8\n\x8f8\xfcH\x7f\xbfM $..\xcfT\xef\xe0$\xa6\x8bo\xe5b\xdb\x05\x0870mL\x15\xc1\x93\x184\\x\xe7J\xd3\xa5\x0bk\x17\xfd+\xe7\xdcAQ\xa5/u\x0f\xaf\xd0\xba!\xc2\xce\xa9\xcfo\xf0\xb9\x08\xc1X\xc6\xe8\xe2=\xf4\x08\xaf\x97\xe5\x84\xa4QD\x17\xd6\xe2V\x8c\x91\xa1DJ\x07\xbcVj\xd4\xd4\xebC\xad\x80\x88\xd7\x1737\xbb$\x17\x9f{.t\xfa\x945\\\xf1\xcb'\xcb<&\xc2\x9a6\xab\xda\x9c6rX\x8eli\x02\xe1\xaa\xc6o\xf9}e\xfa\xa2P\x04\xe9m\x9e\xbb\xda\xdb\xed\xda\xfb\x93\x90\xbb\xbbI\x11\n\xb4s&;\xee\x8d`\xbc\xc0\x88\x15\xa1p\xe2c\xd4=t\x98\x0d\x0e\xa7V#\xbd\x89O\xcc\x18\x12\xdd\x95KF'\xd6LZ^b\x96|\xe1\x92\xdf\xe0D#>(\x7f\x98\xe9\xa8.R\xec\x8c'4@~=c\xc17\x8a\x80\xc8\xb8\xb7X4\xd8\x88\xf1+\x1e\xcb8\xc6T\nQ\x98\x92\xeb\x14\xf30\xc5\x97\x89\x93\xfbo\xc6,yD\xc00%*P\x88\xae\x89)Et#id\x99\xbe\xf9\xdej\x8a\xc2q\xc5\xeeEr\x9fp\xe3\xa6\x08\xe9\xd0\xd3rV-\x1e\xfeCT\x0f\xa9\x19a\x84\xfc\xccD\x8a\xb4\x1b\xcc\xcc\x9a?\x1e \x13jS\xf9\xd3\x82\x9c\xdd\xd1\xdaXO\x16\xe3\xa4\x08\xda\xcb~\x04\x85MF\xe9>\xbf3\x86X\xa1\xf4\x8a\xffX\xe2\x8f\x9cq\xc5\xdb\xf5e\x81\x0eZZ\x94\xc6\x1b 6-\xc0\x88\x8e\xc3\xa9\x0es*^8\x90u\xe9\xcf\x0dD\xa1\xc4\x9esa\x85\x8b\x14Z \xa5qJ\x12{\xad\xe3\x0fj\xefs\x1a\xc2\xa8\xa2\xe8\xaf\xf9x\xa6\xbd`\x9b\xe1M\xfb\x0d6\xc5g$\x8d\x03rE\n\x8a3\x8b\x08#D\xc1j\xbd$T(\x12h(\x90\xf8\xb1\x96*\x89\x0fk\xda\x9e\xbb\xa0\x1bqe|9\xb5\xff\xafq\x9c\xe5\xcdj\x1aoM\xdf\xf8\xfb\x0f\xd6\xbd\xbc?\xdb\xf5P\xac\x08\xe6n\xe0oh\xd1\xb1\x04)\x04\xaf\xaa\x8a\x81\x85\xca3q\x1a\x93\x8a\x01\xf9`\xbb\xad\x0f\xeaW\xe3\xe7D\x19\xc0R\xfb\x12\x88\x03\xfe\xa64I\x7f\x8e\xc7\xc1\xe8\xe9\x8e\xbeM\xcf\x8e\x1c\x93\x8c\x1f\xe1\\cVF\x9ct\x84x\xb3\x03I\x1elH\xf2\x7f\xd5\xefa\xe9\"\x1asj*\xee\x84y\xccO\xb1\xd5\xe9x\xe2\xe4R:\xac\xb4z\x98\x9fP{]L\xc3\xbf.I\xfa\x19G\xd0\x1f\xd38z\xc5 <\x16LV\xb3\xfd\xef\xa7\xd4\x92\xd2\x0f\xe96X\xe8B%DsXD\xecm\xf1\x88\xbd\x04\x86\"\xa5b#s@\xaf\xb2\xee\xf3\xb33\xba\x1c\xf8\xa5K\x12\xdf[\x17\xfaT\x19\xa8N\x95`,\xcd,H\xc4dP2z\x19\xbc\xd8\xfef\xd1\xec\xdf\x84\x98\xfcl\x16\xc4$\x01\xaf\x08}g\xf4X*\xc5\xbb\x96\x82L\xf1\x10La\x9ea\x81\x12\xcfN\x9f\x1d\x83)ya\xa2t)[\xc2 \xb4\xdb\x01<\x81\xf8\xc4\xc1\x19\xe6\xf9{\xe4B\x01\xde{\x8c\xa0Mg\xff\xe9\x08\xfa(\x05S\x01d\xb7\x8ftgp\x08\"\x03!N@\xc0\n<\x1d\xc1\xdeQ^v\xff\x10\xcb\xd6=\x7f\xf4\x08\xf6\xf6i\x81\x8c\x12\xc6\xc9\x04\x83F\x15\x96\x89\xfe\x01Zr\x80\x12K\x1b\xfb\x1a\xb0*[\xfdJ\xd8\x01\x82uup\xc4\x1f\x88\x0e\x1e\x17_\xf5=D\xe8\xc1~\x0e=\xee\xe5\xd0\xe3\xc3\x1c\xda\x1f\x0c\xf02(\xce\x13\xce\x11\xa5\xe0\xac\xcbe \xce\x9b\xf5\xff\xfe\xc5\x9fY\xb5\xfbPuz\xd78Q\xc8\x18\x8b\x1a\x18\xf6\x0dO\xdan \x91Y\x8a\xcfJt\xe5r\xec\xeeX\xd6\x1b\xbew\xf2\xdb:\xa1\xdd\xef\xdf'\xb0\xa76p=\xad\xd8:?'\xc9\xa7\xd1,[\x12\xabJ\xb5y\x9a 9\x8d\x82\xc3T=\x98K\xaf\xceQ\xc5x}9I\xbd\x94|\x7f\x99]\x06a24l\xdadM|\xd33\xfa\xf1\xb0\xcdd\x08\x99Y\xc8O\xc8\x92\xf8i\x14'C0\x04c\xd2\xbf\xcbR/\x19\xbb\x068\xb6Y\xe6\x13Zs\"\xa6\xc2\xdc\x8f\xbc\xaf\xd1F}\xf5\xf4}U\xf1\xf0;\xfa_\xefU\xf9mn\x87\xf6~\xffX\x89\x90\xcd\xed\x0c:\xbb\x84o\xd3'{J\xa0e\xfeh\x7f\xaf_}\xe4\xe5\x8f\x06J\x90i\xd1\x87\xbd]\xc79\xf9N\xfeL\xe0\x0e\xf8z\xc5O\xca\x98C\x81\x9f\x05s8\xa9\xa0)\xe3\x06_U6\xa7|+G\xa3\x10\x93b\xe6\x05!=\xb65\x1c\xac\x0bC\x1d\xa7eEF$\x93\x19\xbc\xd8(i\xd9\x8fC\x9d\x84\xb9\xd1\xbdB\x99\x07\x1e\xb4X'a\xb1\x1c\x97\xd5 \x93\xdfQ\xbf\xd1q/\x95[B\x97$\xfd$\xf2\xbd\xe5s\xdc\x04\x9b\xc5\xfa\xb3{\x18\x8c\xd8\x8b\x13\xf2\xd3\xde\x8a\xbf\xea\xd8\xb1\x18\xfcv^\x0erC2]|\xdc\xe9t&a\x16/\x87`-\xd2t\x9d\x0cwv\xd6$M\xd2(&\xdd\xe4\x9dwyI\xe2n\x10\xed\\\x0dv\xc4\xaf/\x92(\xb4&\xe1,Z\x9d\x07\xb3!X\x7f\x85?\xe8d\x815 \xd11\xddK\xa3\xf8\x07\xa5:\xa3p\x19\x84\xe5\x1aEAk\x12F^\x96.\x06\x9f\x91Y\x10\x13?-\xde\x1c\xee\xec,\xe9\xbc-\xa2$\x1d\xee\x0ez\xbd\x1dV\xb2\x13\xf3\xa2\xddE\xbaZZ\x93\xf0\xb1v\xd0\x1bQp\xc9\xb5c\xd07hR\xe3\x87\xa9^\x7f\xdc\xdb\xdf\xebi\xb7od\xc4\xdcZ\xf4Q\xbcH\x85\xb5\x120\xfe\xa6\x88\x15=#\xeb\x98\xf8^Jf\xe0\x853\xc9\x91&K\xc8\xac\xdb\xe0C\x03\xf2\xfct\xa9\x98\x87#\xe9\xc9IK\xbbg\xfe\x82\xac\x98uu\xf7\xa8\xf4\xe4\xe3g/?9{\xf6\xf1\x8b\xf3\xb3\xe7\x7f\xed\xc5\xa7\xcf\xb8\xc1vP*\xf3\x93g\xaf_\xc9\xcf\x07\xbd\xdd\xd2\xf3\xe7\xaf?{Q~^~\xff\xa3\x17\x1f?\xfb\xc1'o\xce\xab\xed\xec\xefj\x8b}\xfc\x83O>\x91\x8b\x1d\x95\x8b-#o\x86\xa1\x02\xe8\x97\xea\x83g\xf4P\xc1\x9f=c\x17\xce\xc4\xe3\xc4\x9b\x93O\xc4\xbb\xe2\x87\xae\x80\xa8C\xfa-\x17\x9be\xab5\xc6\x0c\xa4_\xaa\xef\x7f$\x1e\x8a\x1fr\x81\x9f~\xf6\xe9'/\xae}\x82!\xe89\x1e\x96\x86\xf6\xe9\xcbW/?}\xf6I\xddZl8\x87\xe6\xe9K|/D\xd5\x81E\xbfY\xa5gH\xe1\xd8C\xfcZ~\xeaG+\xee{\x12\xd9\x16\xffQ.\xe1\xcdf\xcf\xa5\xf0\xe1X\xb0\x0c\xb3\xee!\xdfI\xfe}\xd5\xab\xfcA>\x9b%0\xbfD\xa5h\xa0\xb3|\xeaJ`/\x9f\xaf\x128iVH\x97_\xf0U\x85\xf2\x1cF0(\x83(\x92\xed\x96A\x14u\xf6\xca\xa0\x85Z\xd7L\xad\xebJ\xad\xeb\x86\xb9\xc2]\xf7z\x9d\xc9u\xefhr\xdd\xfb\xde\xe4\xba\xf7|r\xdd{\xd1\x99\\\xf7?\x9e\\\x1f~\xdc\x99\\\x1f\xedM\xae\x8f\x0e:\x93\xeb\xe3\x8f'\xd9\xc7\x1f\x7f\xfc\x02\xff\xffxz;\x9ed\x1f\x1d\xd1\x97\xb3\x8f\xbe\xf7\xf1\xc7S\xfb\xb4E!\xcf\x19\x84\x96pn\xed\xd3\xe1\xf8\xf3r\xb1\xdb\xcf\x9dJ\xb1\x9dr\xb7.y\xb7\x8e\xf6\xcb\x1ez\xe5R+,\xe5N\xc6\x93\xe9\xe4\xab\xc9\xfb\xea\xe3s\xfa\xf8s\xfbt\xd8\xbam\xb5n[c\xaf\xf3\xe5\xa43m\xb7\x9c\x0fv\x82r\xc9\x8b\xa2\xe4\xf8\xf3\xa2>\xc7>\x1d\xfe\xc4\xb8\xd79\xf6:\xf3\xe9W\x83\xf7\xb7\xec\xfb\x97\x93\xce_9\x99\xecLN\x87\xdf}4\x9a\xb4'\x1f\xb8\xe7\x93n\xeb\x7f\x98|\xf8xbO\x1c\xfa\xf6\xd4\xf9\xf0\x83\x9d@\xc7\"\xde\x19YD\x9f_B\xc33\xe3.\xfb.\x11q\xb5\xaakcU\xc7EM\xbb\x83\x0dj:\xdb\xa6&\xec\xdf\xb6}}alao\xaf\xa8\xea\xb8/}\xdf\x95\x9a\x18\x94~\xeco\xd0\xe03\x83yG+\x9e\xee\x1d\xa1\xb9\x02\xa5K~\xd2>\xc5 9{G0\xa4\xc7\xea'\\\xef\xb0;\x80[`\xc9\x9c\xd91\xbb7@}O\x87\x16j\xd3i\x19B\xa7_\xdb\xb1\xd7\xe6\x998\xca\x15]\xd6\xa4g\xb1\x96s\xc8\x7f\x87\x00\xb9\xc8\x05\x85\xf4\xfb\x07\x12(\xc5BU@?_.\n\n\x19H\xae\xe9\nA\xbd\x81\x04\x9a\xb3R{\x12(f\xa5\xfa\x05\xe8\xbf\xa7\x90]\xe95\xd4}\xec\x16/=\xb6\x1e\xc3\x10\xf6\xa4a\xec`\x0f\xe5\x96&\x14r(u\xe7\xff\xf9y,\xb3/A~\x13\xcb\xc8#E\xaa@\xa1G\xbd\n\xf4\x98)\xabk\x17\xe1\x8b\x9a#\xc6\x93\x11\x1c\xec\xef\xef\xee\xc3)W\\a\x96\xe9\xe7\\\xdfd\xa7\x85\x03j\xf9\x01K\xe9\xd9\xa6\xa7\xb5\x0e\xd6p\x00O\x9fB\x9fJX\xfb\x07\xbb\x83^\xf9\xd1#:\xdf\xbb\x8a\x11\x15\xe4\xd3\xd8[\x90\x13\xd3\x0e\xf6\x0f\x1c\x17^j`\x9f\xb2\x84r\x9f\xc2\x13\x18\xec\x1f\x9c\xc0\xa7\xed\xb6\x03o\xc7\x9f\xd23\xd9k\xfbS\x87\xc7\x19\xe8\xb9\xf0\xb2\x00\xea\x88\xd3\x1b\xad\x1e_hb\xc9;\x08P\x01C\xdeQI\xb7;\x0f\x96$\xf4V\x84\xb2\xf6 \\g)\xde\xdb\x8f\x92 \xc5;\x96i\x97\x9e\x1fd\x18t8\xf0,\xf5\xe2\xb2\x9b\xbc\xda\x97\xe7\xda\xbe0Q\x99\xf7\xb3\xf6\xfd\xef\xeb\xdf\xefF\xe1\x0f\xbd8\x0c\xc2Kv\x96\xcc\x7f\xf2\xeb\xea\xe8y\xca\xeb\xd7-\x0e]\x97\xcf\x94\xd3\"\x15\xd9\x86\x8d\x16\x1a\xf1\xbe1d\x0b?\xa2\x8f \xed^\x918\xa1\xc3x\xf4\x88\xcd\x845\xcb\xd6\xcb\xc0\xf7R~3\xf5'h\x93\xc0\x8eT\x98Q\xca\xe5\x91\x0fC)`\x15{\xb3\\\x12<\x9f\x8a\x96 \x90k\xcfO\xf1b*\xc9U\xba\xb4\x9a\\\xe3n\xc7\x8c+R\xa67m;\x93\xae\xf8\xf6\xc1N\x97\\\x13\xdf\x0e\xc7=\x1e\x03\x8d5\x14,\x97\x9dy\x14\xafdw\xffh\x0e\xe9\x82\x80\xda[*\x8b\xa1\xf4\xf82L\xedx\xdc\x9f\xbal\xafDe\xf8@\xc0\xa5\xb8\x8e\xac\xb5,d#\xc1lhX\xbf\x983\xde\xe6,\xf2\xf3A\x15\x13:\x82\x90E-\xef\xfa\x0b\xe2\xbf\xfd$\x08\xc9\xf7b\xe2\xbd\xa5\xe2[Dw\x90h\n\xef\xdc\x0e\x8a\xaf\xdf\xe7\xad&\xd9\x9a\x8a\xb1d\xd6\xd0hiu+*\xb67\xcf\xfe\xeav\xe8\xa2\xe2\xca\xc0\xb0\xdao\x9e\xfd\xd5\x9a\xc5N\xdfE\x85\xfe\xdf\x12\ny\x16\xd1\x0e\xbf\xd1u8\xef\xa6$I\xed\x18\x03@(K\x9bz\x97\xb0\xf0\xc2\xd9\x92\x80=\x0f\xe2$\xcd+t\xc4$\x94\xfa@[\xc9C*\xa4\xde\xe5\xa7\xde\xda\x85\xb8@\x9b\xc7\xe9\x82\xc4\x84\x1ep=X\xc7\xe4*\x88\xb2dy\x033\xe2/\xbd\x98\xcc \xc9\xe6\xf3\xe0\x1a\xa9\xa2\xf5\x18\xda\x10C\x1b\x1e[R7\x1e;.\\\xb0.\x07\xe6.\xafcB\xab\xb1\x13\xe2G\xe1l\x83>\x8b\xce2\xbf\x87r\xe0\xfc\x92\x96Q\xa5=\xaf\xc4\x92\xe2@U)\xa4\xc8\xdf\xaa\xaa\xe9\x08<\xd1\xa3\x02\xbac\xb0\xd8;\x94\xd8\xf2+\x1e\x888\xb4\x19\xa5<\x08V\x120sz$E\xf5f\xf9\x08\"\xfa\xa7=\x82\xbe\xc3e\x06t\x0e\xf0\xaa\xb6\x15&\xfb=\x19AF\xd7,C\xb9\xa7\xdf\xdf\xeb\xf7\xfb\xc5d\x93\xeb5\xbb\x83\xcf\xa2\x1c\xfc\xe4\xd9\xebW@\xab\xf1\xfc\x94(\xb90A\xdc4\xbca\xab\xe6I4\x84.E\x92\xc6\xc4[\xa1\xc3\x81\x17\x84 \x84Q\xd8Y\xc7A\xc8\xb6z^m\xa2\xab7\xed\xc6$\xc9\x96\x98/\xd53\xad\x99f\xc9>)\x96Lqo\xb9\xe2 \x04\xd0-\xac\xe2,\x833\x1cw\x83\x84\xa7\xdb\x0f%\x0c\xe4\x1a\x9a\x15\x89/ \xac\xbc\xf5:\x08/\x93\x13\xc4\xb6u\x1c]\x053\x8a\xddQ\x16\xfb\x84\xe7o\xa6\x9b@&k\x96\x93\x87\xd8\xa4\x87E[\xf2*xKn\x12;t\x9c|A=x\x02>\xfd\xc3\x164\xc3\x80\x8f\xde\xd4\x95\xe2\x9ce\xd87\x9b\xb0\x90\x94!\xfa\xdb\x04\xecG\xabW\xcfM?\x920Z\xce?\xac\x9b*\xdf\x85\xb9\x8a\xd7Aa\x08\x0cd.\xc3S\xf2\x08#\x91\x95z\x97\xc3\x1bo\xb5\xecF\xf1\xa5;\xe8\xf5\x06C\x9c?\xe6q\xabAsZ7\xbb\xeb\x18$L(2E>\xc0\xa5\xe2\xae0\xf4\xa0\x1d\xe5s\xe7\xc3\x13\x98\xd3?l\xee\x04.Dc\x1fS\x90\x1b\xb07/\xa6\x96\xc1\xe7)\xea]\xe9\x94'y\x8cb\x9e\xde\xa9X\x13\x06\xb0\x99\\\x04t\x8f\xdd\xde\xeaD\xa7\x11x\xecI!`\x95\xe5\x022\x13(\x06o\xc9\x0d&\xe0#\xe3`\xcaB$\xe5\x97~\x83\xe6D>\xea\xe2\x7f\xb9\xd1Y\x8a\x1f2p)\x05\x8d\x92(I\xd1s\x87\xdd\xe8\x12?\xdbmz\xac\xd8\xe5\xc8p\n\xb6\xfc\xc8\xcd\x8f\x9a\xb552Y\xaex\x8d\xca\xe8lz<\xc0\x89\xbd\xa0,\x9en/A\xa8\x18\x85\xc7gmt3\x92$S\x1c\x80\xa8\xacvf>6\xf1\xee\\\x86\x97s\x0e\xd5\x0e\xe1\x84;\x10\x04\xda\xb8\xac\xdc+\xeb\xda\x0e\x1c\x1e}TS[\xbb-\xd7\xa7\xdd)\xb8\xdbv\xd9\xd1\xca\xe0!7\x8bj\x0c~\x9b\xb4\xac}\xf9=\xbc[\x04Td\xe8\xf7\nA\xae\xbf[|\xe7`C\xbf[\xef\x90\x15\xe12\xaa%pv\xbeD\x07\x83\xe6\x89v!\xa6x\xc5\xd6\xfbe8\xa3R*\x9e\x9f\xf8A\x96.\x80\xfc\x90\x16\xdez\xd8\xefu\xbb\x8c\x87\xb0\x0d\x8b\xe1\xc6\x0cq\xa5\x9e\xcd\x0c\x99\x06\x8f{\xc16\x08\xe3\xbe?\xc5\x89\xfb\xd2\x85V\x1f\xbd\xe3\\\xd1\x94@\x0e\xa7\xdc\xbfM\x1aw\x0bf\x8f\xb4 g\xf7|HO\xb9\x83\x10\x9f`\x87\xf3\xb1\x0bo&\x13\x01zj\xf1 !?\x9b\x91\xd0'@\xc24\xbe1\x8a\xd9\xcc\xc7\xacDd\x88\x96\x96\n\x12\xd0\xf28\x8e\xd0\x83\x13Kd$p\x07\xc5\x89\xb4\xfb6\x08g0\x02K\xf4\xc0r\x8b\xcd\x841\xc6\x9a\x04\xca\x9f6\xd3\xa8\\\xc4D\x8c\xd6\xef\x80*\xa6\xd3!\xee\xee\x16\x11\xc2\x1b\x04\x90\xdc\x7fBW\x8f\xb4a\xe8\xf8M\x1a\x18\x8f\x1f+\x99i\x87R\xe5\x03.\x01m\xc2-0\x12m\xc41~\xb3\x17\x86\xb0\xcb\xa4\xa4@D\xb1\xc58\\t\x19Z-k\xf3Z\xd8\x1b\x16\x0b6 \x0b\x94\x91N\xf20\x8a\x03\x9b4\xa7\xbc\x98\x8b\x01\x92\x14p00\xb2~\x89r<\xc9\xb3\xf8\xd1\xd1\xc7\xba\x83pi\x97m\xd2\xbdBL\xcc\xc2\xfc\x04K\xc2\x99\xd0 \xf0\x83\xe8\xbb ]\x04!xpE\xe2\x0b/\x0dVt\xe5\xab\n\x1eS\xa8#.\xb9I\xe3m\x9d1)._M\x96D\xe0T\x9c\x80\xbdK\xa1\xf3\xe0\x07H~\x10\x06r\xed/\xbd\x15C\xc0\x95\x17\xbfM\xac<\x0eqe.X\x16\x85\n\xdd\xcd\x15;\xf2\x195\xf4*:\x9dJ\x9bI\xe6/JGn\xe6\xa5I1\xaf\x8c>\x8c\xb4o6\xef\xeaB7\xaf\xe7*WJ\x15\xba\x02\xe3L\xcd\x97\xd1;J.\xe9v\x8d\xe2R\xff\xcb\xab\xa6#\x7f\xc8\xc8Z\x17\xfa\xf60\x99u\xfd\x1c\x0d\xd1m#F]\xe6)\x08\"\x1a\xc3PU\x83\x85\x8eT\"W8\x85STs\x0d\xe9.\xe5\\\xa2(Ea\xe2\xa9\xee\xb1z~\x16\xe5\x99\xb6-\x0bs\xcd\x9a\xb4\xea\xa8Y\x0bQ\xb3\xf6\x18=\xc1k\x89\xf7\x0f\xcd\xc4[C\x96\x8f\x18Y\x0e\xefA\x96\xcd\x82\x8c\x9e4\x87\xc0K\xc8\xe4\xd9\xd0\x81\x12fV\xb1Zl\xdc\x90o\\v\xd4l\xbd\xb0C\x07\x93\xc76\xd7\xa8\xe5\xb0\xd2\xb6\xc9u \xc5~,\x0f!\x8cf\x04VYR\xe0\x9b\x97\xc2\x92xI\x8a\xaa{I\xcbVb\xd3\xf5\xbb\xa9a\x81\x7fJ\xd2\x86i\xf8\xc2U~I\xf2\xc6\x85K\x17V.\x9c\xbbp\xe1\xc2kf\x8c\xd20\xed7\x06f\xfe}\x033\x97\x16{\x19$) I~Vb\xbfl+Zc\xd4\xd9T\xe8j\xa1\x88\x1e\x9d\xcf\x82\x00pyE\xfc\xcc%\x15\x06@\xb5'\x8c\xd0\x19b]\xc8eLA\x85A\xeb\x1f=R\x04Q\xfbM.\xaf\x96\xc578e\x93\x00\xc3\xca!\x93\x9f:\xd0\\W}\xf8\x84+\xc2>E\x97x\x07\x0d\x1e\xf4\x85O\x0d\xde\x9a'L\x82\xba\xbd\xc5\xcdx\xe2\x94\xbbwZ\xf4\xee\x86\xc9c\xdfJ'a\x88\xd5\xeb\xd6\x8f\x07j\x80\x11\xbc\xa1\x9d\x8cr\x0b\xce\xa7\xf4\xc1\x9ao*z\xea\xbb\x80\x11\xf8\xc5\xa4\xcfs\x92F\xf0<\xd6\xa6\x9c\xecu\x99\xd5\x94\xec\x88\xf9L\xc1)\xbf:\x8eg\xaf\xd789\xdb\xd8X\xdcB\xc9\x9b\x98Og\xc0=w\xcc'4\xe0^;_\xd5\x8475=\xcb\x91T\xfb\xf4\xaa\xf6\xe9M\xed\xd3K\xc3\x06\x04\xeeG\xa3\x0b\"|\x87\xf3\xe3\x92\xab\xac7;?z\xc6$D\x18\x84\xa8\xa9\x1e.\xd6D\xd2\xa1-\xab\xc8\xb4\x07\xecP\x80\x07\x9a\xfd#\xfe\xfd\xf6\x96\xd2\xf2\xb8\xf9\n%\xd2\xc1\xd0\xc5[\xaf\xec\x08h\xd4A\xc9\xefI\x07<\xadL-\x7fX\xaa\xdf\xa6\x91:'pm{t\x9f\x1b\x8a6\xc8W\xf2\x87\xf6p\x9f\xf9[x\x0e\x9c\x99\x1a\xafH\xca\xb9\xc4\xe8Q\x11\xfe\xffc\xee[\xbb\xdb\xb6\x95E\xbf\xf7W\x8cx{\x1c2\x92\x15I~$Qlk\xa5i\xd2z7ur\x9a\xa4\xfbt\xcbj\x16-A6\x1b\x89T\xf9\x88\xed\xbd\xdd\xf3\xed\xfe\xb1\xfb\xcb\xee\xc2\x0c\x00\x82$@\xd2N\xd2\xd6k\xb5\xa1@\x10\xcf\xc1`\xde\x93\xb2d\xe3\xcf\xb5\xdbG\x97\xad\x82\xbf\xe4%\x9c\x82\xfe\xc0\xae\xb7\xd1w\x02\x12\xb6\xf1c\xa4\xc6\x149}\xb6\x8a\xe6\x1f\xa4\xd4\x9a__\xc8l\xb9\xa8kX\xf5\xf2\xa88Z\xc4\x9b\x8f\x02K\x8b\xa2\xb5@r\x02\xb8\x91\xf8\xe4\xff.\xd4\xf9\xc5/$\xc2\xaf_\x97\x86\x9c\xcc\xf2\x0f\x01c\xad\xb9g\xd1\xd5\x93\x14\xee\x9d9\x07\x96\xfa\xee\xf8\x9f\xd2\x13aD\xd8\x98\xf9\x0b~\xf1\x07kN\xcd\x04\xa9\x12\xe8o\xfc ~\x02>\xcc\xa3U\x14\xf2\x95^\x07IR \x9bW\xfe3\xbbKC\x1d\xb3\xa2\xff}\xaey\x9a\xe6X\xdcz\x12_\xf0 \xae\xb3U\x1a\xe0\xd9\xf9\xc0\xaea\xed_\x830q\xd6W\x05\xd5\x1b\xf6\xb9\x19\xdf\x88\x19\xef\x13\xcb\xe5\xf3\x0b\xf2\xd3\x80Mp\xed\xe42yN\xedi08\xc8Y\xcb \x9cG\xeb\x0d\xea_\xd8\x95ec\xf9l\x91\xceS{\xfb\x04\xa2\x18\x96\xd1j\x15]\xb2\x05\x9c]\x83\x8fj\xd0\xd4?\xcbV\xa8\xeca\xebMz\x8d\xca\x0d\"\xfcr\x9c\xa8\xbc\xa6c\xf3\xc6P(\x11\x0dEYeP\xae\xa4\x037DZ\x04T\xca\xa7\xab\x1f+A\x06hB\xb1s\xbc\xd9+k{-b\xd9\x1b\x97\xb7(Hk\xc6\x88\x9e\x81\xa8Qr3\xbfVnV\x80;\x9b\x17c\x93\xe8\xac\xf2Q\x15\xf2\xc4\xd1AH\xb3\x01\xda\xba j\xab\x9c\xae\\\xd4&\xf1d\x81~\xc5\x16\n\xfd\xfe\x81\xc4O\x0f\xce\xbc*\x01d\xa3~\xcaZ]\xccY\xb3\xd4\x93\x88u,\xf9\xc6\x17\xf5\x84\xd2\xc7FB\xe9\xda\xe0\xad\x04\x02H\x859\xa8\xbbi\x86\x05\xd2\x89=\xde\xe9 98IbM\xe9\xc9k0\x1f\xefs8\"\x82ac\xe5EUmN>\x8f\xf6D\x8f\x03\xea\xf1?M\xfeip7\xb2*\xf6(\xc3T\xd3=- \xabM-a\xa5\x8e\x1a\xf3z\xad\x96W\xe8\x0b\xab\xec+i\xd2\x08v\x17\x05\xd8\xfd\xa8\xc1.\xc7\xb7\n~al\x13\x1b\xc7\xf6\xcb\xe4\"\xa7?\x08?\xc2>9\xc5\x9f\x04\xe1\xf9\x8a\xc1\xefY\xc4\xab\x8a\xbdGZ\xa2n\x96\x86\x83t\x1b6\xc3\xdc\xe9\xe78):\x83a95\xbb\x04\x1e-\xc4t\x9f\xff\xd4`\xe2m\xf3\xa9i1\x9eZ\xc9\x88\xf0]\xf5\xd5\xa0\x8d\x18m\xe0\x95\x87d\x03|\x14c\x8dd\x9b-\xce\xa2\xa9\xab\xcbv*\x1aO\x87~\xfb9TrM\x9f\xfcE9\xd0\x7f\x98\xfa3\xafp\xc1\x1c\xa3\xef\x88>\xc9\x16-Rp\xd1\x910\x83\xe3\x1c\x8b\xcf\xcf\xd2\x08]\x89\x1f*Vf\x17\xc6\xf0hO\xfd\xe4l\xc3\xc0\x83#\xfe\xbf\x16\xba\xb2\x80\x14\xda\x11\x19m\x07\xfc\xbb'\x10lo{\xd8\xfb\xd3\xb6k\xc5\x99\x14\x0c\x1b\x87~5\x07\x07\xb0\xebA\x172\xc5R\xa9\x13x\xc1\xae\xfc\x05\x9b\x07k\x7fU\xef\xd2\xa4\xff\xe9K\xf9\x9b\x1b\x95\xe0\xc5N\xb7\xd0ZJ,\xf0!\x8c.C\x10\x11\xd3\x94\xcc\xac\xa6\xeb\xea\xc9\xa8\xc7\xa4~\x8eI\xe9\xe8\xdb0i\xb5\xe1/\x84I\x17Qv\xd6\x06\x93\x96\x06\xd3\x82\x96\xb8\x0dj5\x8f\xc2\x88Z51NGC\xb26\x0c+\x0c\\\xcdXu\x97d\x18\xcd\x8a\xef6X\xd5\xd2H+s'2\x81{#\xac\xdf:\xcf\xdd\x98\xa3\xcd6-V\x07s+\x93\xa7U\xe0'\xb7\xb2x2\x18?\xf6\x8a\xa6N\x9aH\xbd\x14\x8eE7\x84\xbc\x97\x85J\x0c\xb0\x10\xe3(\x19\xc5iw\x92.\xa6\x0fge\xddU\x95\\\xe5`rWS\x14\x94\xba.\xa5\xbc\x95\xdf\x94v\xe1\x9c]\xd1\xcd\xc1\xeb\x8d\xbbl\x06,\xbe\"\xcf\xdd%\xb9}\x12\x92F\xa6w\xe7Q\xfe\xbc;\xd2\xcaw\xf2g)\xe8\xc3\x1f\xfbz\xa5\xc7\xda\xb3Vg\xe7\xa1V_+\x7fL\xa1\x1e\x96\xb5P\x8e7\xce\xbe\xd6\xbd\x10\x9b-IF\xff\xa6\xf9\x18 \xee\xec\xe6\x86\xec\xfb8\x98\xb78X\xcd\xe4J\x80\xbe\xe4ErWX\xad\x8b\x03\xb6\xac\xa5B\x84u\xc6\xb2\x89b\xb8\xe3\x14k\x98g-\x8f\xef\xce^\xdbA\xd4\x0f\x00}eZ\xf4\xd9$\x95h\xbcj\xf29.\x9b\xa5\x8f\xbc\xcdK\xac\xd8l\x05\xe1+1\x8bT\xd3h\xc6gsU@\"\x13\xed\xe6DdP\x14\xdc\x1c\xda\xb3t\xe9\x7f\x99\xc6\xbf\xdfYZ%\xfej\xe3\xb6\xcb?\xbb\xc0\x04\x8af\xf8\xc2\xff\x83\x8c\x078~\xd2wB\xe8\xaf\x0b27Kr\x01\xf9w\x179\x8e\xb9\x14\x15`D\xcb\x10\xfe\xec\x0c%-#\xc6\xbb\x0d\xbeWw8\xbd\x1e\\ \xcc\xe7\x16k\x08C3\xcbv4\xb8<\xd8n\xc4\xf2P;\x1d\x85F\xc8%X\xa0\x99\xa2\xc5\xea\xa6*Q!R\xa4'\xad( \xfd\xbd\x16 \x94\x07\xd0\x96\xde,\xca\xd8\xc0\x998(\x9b\xaa\xa9\xab\x95\x08\xcdnn\x07\x96\xdf\xd5\xc9E\x94\xad\x16h\xabs\xe1\x7fd\xe0\x87\xd7\xd2\xf2\x1a\x95\xb0\xd2\xdf\xbb\xb5\xba[\xe9\x15s\xd1\xd9\x8fjVh\xe4)l\xe1h\xf5\x91\xb9\xda\xd4\xeb\xf1\x84\x06\x13\xef\xfbs\x19;OwM\x93\xfb\xfc\x9e4\xccw\xdc\x82\xcf{~\x05\xb2\xcf=!\xae7\x8c\xbaFh\xbf\xb9\x01g\xe9\xafVg\xfe\xfc\x833\xeb\xc9\xed\x99\x80X\xb7\xda\xeaS\xac=+\xccT\xac\xd1\xd6\x16\xbc\xa7O\xa8\x18\x1f\xcd\xa1d\x10\xa2\xf1=\xdf\xfe\xce\x01\xc6\xe0\xc4\x95\xec\xc2\xbd#H\xfds\xd4< \x98?\x13\xbe\x13\xa2uN+\xf6\xf0 `i\x9a\x97\xdeC\xff\x9b\xca.\x93\xc3{\xd3N\xdeq\xebr#4\xa1'\x13\xdd\xa31\xd9\x82!\xbfS\x9a\xa1s\x94+\xe1\xd0\xcbI\xf7\x91\"~\x94W,\x7fdI(\xd5\xc2\x8a\x7f\xbe\x8a\x12&\xcc\xf8K'\x99_\xe8\x95\x89\xdf\xdc\xc0\xeb\xafr\xf8R\x8f\xcaw\xe1\x87v\x9e\x85\x1a\xfa\xaf\x00\xa9\xc9\xc3P\x90~Z\x18!\xe1KP\x0d#\x94\xf6W\xec\xdc\x9f_\xf7\x94K\x8f\xc8l\xa6m\x18\x99=I\xb1U\x0b\x97E\xdc\xf1\"\x9f\xd1\xfcU\x0f:nIs4\x10tw\x07-z\xcc\xd20\x9ck\x06\xed\x9d\x13m|d\xc1\xdf\xadMC5\xbc\xect\xd63\xfa\xba\x15\xd8=\x19\x0f\x05\x0e\xc8\x8d[\xb8\x07\xa9xH\xc8k\"kiR\x1b\xeb\xe6\xcc!PKNCd\x06\xf8L\xd1\x19\xa0\xa8\xa1\xad\xcd\xb1\xd4\xa8\xa3m3\x04;\xd26\xf8hR\xfc\x05\xfbUPC\xdd[gZ\x1b\xd2\x01\xe4\xb2~1\xc0\xe2\x7f\xb1t\xe7\xae\x81\xa8\x16\x04\x9d6&\xd2;\x8b\xeb\xed'\xe1\xe1\xf7\xd34\x9cI\x19\x1b\xc7\xa7\xaf\x85\xc4\x81\xf0\xa9\x12\x82\xe5`Z\x90<|e\xef\xbc\x88\x0f\x06\x1ak$\xce{\xee\x9e_\x8f(\xdaV\xa4x\x0e\xed+\x8f\xbcbD\x17\x11\xe1A\x1f7_\x90\xccpV\x13\x14\xd0\xad\xfd\xb8\x12\xb7\xe5\xe7\x9c\xa6\x17\xd3D;\x8d\x8df\x9cV\\\x98*\x92\xde\xda\x82sr\xf0,\xee}T\xdc{P\xa18\xc2(\xdc~\xfa\xe6\xd9\xf1\xb1\x16O&\x01?f\x10\x84)\x8b71C\xc7\x87\x04\xd9-\x15tNnmR \x1b\xd0\x82\x9f\x9d\xc0\xee~\xf3\"{\x82\x14hXa\xad\x82\xe6I\xbd\xadc\xc9\xaa<4\x8aQ\x16*\xc03\xf7\xe0(\xecG\xede\xfc\x9dk\x8c\xc2XL\n\xc3d\x86(~G\x0e$\xbd\xa0\xe2\xda\xc9\x901\xa5\x05\xc8\xa7\x80K b\xc9\xd4Wrs\xf3\x82\x1e\xec\xef\x8d\x1e\x8aX\xa9\xfaG\x03Y\x93\x97\x8b<\xfa^\x19\xf7Q\xb2\x04\n\xc5\xd9\xa8YK/\x82\x84\xb6\x100\xfd\x01\xfe\x96\xd131!\x92\xfa!H\x1eQ'\x91\xf1\xd8\x99|\xbc\xb9A\x9e\x9b\xbf\xcc\x03Y\x1eb\xda*\xf9\xab\xd8\x04Q\"XE<\xde\xdc\x90\xd5\x02\x7f\x8b\x01\xaa\xf8;\x19\xa9J\xbdQ\xe4\x1a~)\x7f\x14\xdb.01|j\xf9\x981\nx\xb0b\x8bcQG|\"\xe8wK\xe5\xb7\xf4V\x0d\x1d\xf7.\x07\x06Q\xae\xc9\"\x06j\xb4(\x8e\xd0\x7fJ\x89\x84^\xa6\x1b\x02a\xa1:\x9fH_\x14\x11-m\xa7\x81\x08\x0c\xc5^\"$\x0d\x1c\x158(\xac\x1e\xd3P\xbb\x80<\x08\xf5A\x90\x9bFX8\xb7&\x92\xf3\x89^\xe7 \x0f\xf8\xb8\x0d\xc3'\x1e\xfc\xe0Z<\x8c\xc3|n\xb5\x07\xf4k\x9b8Z\x13E\xc3!\x9d\xe3rW\xc8G\xcb\x96\x1c\xcc-B\xf9\x88\xf3\xfc$\x91aFZH\xac<\x04[\x0c\x07\x10\xf0\x7f(\x04\x1bs\xa3i<\xab\xc7-\xdf\x1b\x0f\x9c<\x99\xdf\x99\xf6/XJ\xaa&T\xc9\xaf\xaa\xe7\x95\xd7\x1a\x8a-\x95\xb5\xe4\xb2N\x07\x06\x9f\x82<\x81C\xe0\xe6\x8aC\xa5\xa1W\x184\x085\xec\xda\x83\xb3,\x85e\x94\xf1[.\x8a\xd9\xad\x128\xe4I\x0c\xbe\xeeU\x93\x1e|\xdf\xb3\xe6+h\xd2B\xb4\xd8S\x04\x99\xb8\xcf\xaeR\x16.\xdc\xea\xf2\xd1\xa1\x1eCV\x9c\x0f\xef\xac\xb4\x1d\x12\xf8\xee\xd8\xd8W\xdaOc\x02\x87Z\xcc,f\xf3\xfd]gS\x8d\x0f\xfc\xe9\xe9\nL\xc1D\x03\xb7\x10z\xb1r\x97r<&.\x12\x89e\xcf\xb2\xe5\x92Pw\x15e\x86E\x94\x19\x8b\x9f\xf3h\x95\xad\xc3B\xa0\xd3\x1c\xee\x02-\xa3\xc19K\xdf\x84\xc1f\xc3\xd2\xa6\x05\xae\x98\xabW\xcfbG\x1b\xae\xa7\x0b\x0dL\xbc7\x88\x00\xf0\xbb\x1a\xc5\xf0pOD\xc0\x91\xf1o\xf4\xd9\n\xeb\x00~\x9do\xd3yvN\x07\xa7\xf1i\xf8\xff\xfe\xaf\x9eU\xc0\xe9\x07\xe1\x82]\xbdZ\xba\xdah\x10\x8b?M\xdd\x80\xf4\x17\x96\x90U\x01lS\xf0\xc0\xc2\"oc\xbf\x0c\x1e\xc0\x88(\x0f3\xb3\x86\xe3\x86~\xbf\x0f8\xf8\xee!\xec\x99\xb9\x946\xeef\xb8Dz\x1e\xbd\xd2Jd\x9c\xec\xd3\xa6\x97\x93Ww^\x9a\xcc\xba,n&\xd0\xf8vieZ\xacJ\xa4\xafJ\xc6\xd7\xf7\x13VE@\x94/\xd7CL\x80\xa8\xba\x80\\\x11sSJ@1\x94\xe0\xbc|4\x00\xefR\xc0\xfcn\xb9\x16t\x0d{\xde\xd5\xee\x8b.8\xbf::\x82\xd2\xcf\x90L\x19\xd86\x1b\xb5\xe3\x18\xef\xf8\xfc\xe8s\x82\x15)\x88{A($\x8f\xea\x1dFK\xbe\x87\xaarN\xb1\xf8)q0\x0e\xc6\xa3W\x98\x00\xf9\xba.\x9f\x9b\xc0\x04\xf9{Q@*\x10\xd2M0\xb9\xa096p\x85\x88\x8az\x19\xd3\xaa1\xde\xad\x11M+L\xf3\x89Hs\xa0])z\xe3\xfc2\x8e]C4\x9c$\x8d+\xd9\xfd>\x04\xe1b\x9c\xabs\x0b\xef\x94\xf7\xd7lu\xdb\xc6\xcd#\xaf\xdb\x17\x91\xe7\xf1Mz\xbdbcp\xd4z9\x7f\xf5q?\x8b\xa2?\xf5\xb8\x1bL\xa7Z\x1f\xf7\xc2\xb1N\xe3\x8c\xe9\xc7\xf8m\xf9\xf7O\xef\x9e\xcbc\xcd\x0b\xf6\xf4\x8f\x97\xfe*)\xd4~Q)x\xfa\xf2\xcd\xf3\xbb\xa2\x85\xbas|\x9b\x81\x7fN\xfc\xe1LE&\x81o\xa2h\xc5\xfcpF}T\xf2\xd2I\nT\xa8\xe1k\xe7^\x8bmL8\xc1\x9a\x82\\\xd2\xad0\x91\x0b4\x06\xb1KmN\xb1 E\xb4\xea\x8b\x16{,\xf7\xbbM_&\x8c\xd1\xae/9\xaf\x17\x96y\xfd\x1d\x10\x88%3\xe2m\xb3\x9aV\xf2\xa6\xed\xe5\xe344\x94\xb5o\xe8\xa1\xd6\x90|*c\xba\xc0\x84\xe9\x820\xfd; :\x12\xd7\xe8\xb2k#\xe0\x04v\x87zS\xc3\xca\"\x17\xee\xe4FU\xe8\x1a_\xe7\xbfD3\xeed\\\xbc\xc7\xf3\x1e\xa8\xf2\xe9i\xdf\x9d\x8c\x83pys\xcc\xff;y\xe1\xddPQ\xe8\x877'\xfe\xc9\xcd\xc9\xd3\x13\xcf\xfbZ7\xb9\xc7\x80\xfc\x98\xadW\xeb\x9c=\xb0K \x8d\xbc\xf3r\x15\xf9_\x84{\xd6\x85\xdb\xa4\x15\xe1\x88\xd6\xedD\x82\x80\xf1t\xda'\x9d\xeaf{\xb3\xcfN\xd2\x18#\xc1\xc8\x11\xc2!H2BX\x1eW\xa8\x91~\x1a\xbd\x8c.\xe5\x89\xe6\xa4\x04L\xf8=>\x06\x11\xfcw:\xeb\x81\xd3\xdd\xceu\xe7\x0c\xe9\x95#q\xc1\xb8d\xf2\xa7h\x91\x1e\xf0\x9a\xcb\x9c\xf4\x10\xa6G0\x11wY\xff\xf5\xab7\xc7o\x8f\x7f~\xfe\xfe\xf8\xe4\xc5\xf1\xc9\xf1\xdb_`,_\x9d<\xff\xeei\xf9\x95\xd3\x0f\xfd0o\xee\xc4?\x811\xb0\"\x85!0\x9b\xcb\xeeFf\x04E2\xe3\x05\x07\x9cZBCX\xe7\xc5Dh\x04\xb7\xe8\x8aIB#\xe6\x9f\xdb \x8d\x10\xees\xb2y\x8c\x0f\xda\xa8\xd8\xdf\x89\xd4p\x89\xd6\xe8\x1c\x92\x1b\x86\x81\xd4hKk\x14\xf0\xa4\x0d\xe2C\xb3l(HN\xfc\x13\xde\x17$\x97A:\xbf\x00\xd7*;\x98\xfb \xd3\xe5\x90cc-\xd0\x16\x07\x81\xcf\xcc\x1dQcJ\x8a\xdb\xa6\xb1\x93\xa7'\xb5\x8d)1m\xab\xc6\xfc\x13\x83<6\xf7x\xb6\x1e7!\xf4\xfb\x12\xab\xc5O\xfeg[\xad\xe3\x93\x17\x9fo\xb5\x8e\xc3e\x9b\xd5\xaab\xa0/\xb7Z\xdb\x9fu\xb9\xb6?\xebzm7.\x98\xe9\xb4\xe7\x9f\x0f\xfa\x03\xc3X\xb4{\xa9H\xf6\xf6 S\xc9\xbc&\x10\xaak\xcaa\x0e\xbfP(\x02fX\x87L\xfe,]C\x99\xfc\n*\xe4\x97\xa2\x8e\xb4\xffy\xdb\xae\xed\xc7\xd7N#A\xd7\xd8\xe2\xa4\xf4\x8b\x93no\xd3\xd9\xcd\x14NO\xd3Y\xd7+\xbc\x1c\xeb\xbd\x17~\x10}H%\xf7=\"\x10\xb1\x85\xfb\xee\xbfn\\N\x8by\xe5n\n\xdf{\x13\xcf\x9b\x14(\xb9V\xea\xdc4X\xb3$\xf5\xd7V+\x96\xcfN\xac\xe5\xe1\xca\x83>\xbbbsA\xb3\xa9\xd2H\x96~\x01r\xcd\x10\x07\xc5\xa23\xd9\x08\xb7L\xf3\xb5\xa7\xf47H\x81\xa9yx\x8a(\xcb'\xa1\xe7'\xf74\xf3\xee\xe7q\x1c\xc5\xae\xf3\xad\x9f2\xe5K\xcbx\x99)(S \xf2\x89v\xd9t8#\xda\xa7\xcb\xa6\xa3\x19y+e\xf4sg\xd6\x83\x0e\x9b\xee\xcer\xf3Wv \xbc\x03\x97\xff\xaf\xff\xee\xed3W,\x83\xc9\xff.\x10\xe1)\xba\xbc \x8aN\xd1e\xd3\xbd\x19\xc5\xa5\xe8\xb2\xe9\xfe\xac\x07l\xfapfC\xc2(p\xc5\x80\xb7\xd3\x873A\x94\x0ez\xb0\xe3=\x81U\xeeK\xb9\xf3\xc4\x83\x15\x1a\xf6\x99\x90\x14\x88\xa8\xd1\xddU\x15\xfd\xd9\xc0\x8bM\x1f\xcfp\xe1\xf9\x9e\xed\xb3]\xb8\x0f\xee\xfe\x00\xee\xe3j\x0df\xd0\x85\xae\xcb\xa6\xc3\xe1\x8c\x83\xd9@\x8a\x00qC\xf4/\xb77\x9e\x88\xcb`]6\x0dzV\x1eFS\xdf\xda\x82e?a\xe9\xdb`\xcd\xdce\xff\\\x93?\n\x0d\xda\xa5\x0b\xce\xd3o\x9e}\xfb\xfc\xc5w\xdf\x1f\xff\xe3\x87\x97?\x9e\xbcz\xfd\xdf?\xbdy\xfb\xee\xe7\x7f\xfe\xcf/\xff\xf2\xcf\xe6\x0b\xb6<\xbf\x08~\xfb\xb0Z\x87\xd1\xe6\xf78I\xb3\x8f\x97W\xd7\xff\x1e\x0cG;\xbb{\xfb\x0f\x1f=\xee>8<\x0dOc\xe7\x96\xec; x\xbe\xc4\x86\xddY\xfbm\xc1\xd3A\xa3b\x9cc\xc7\xc8\xa2\x1e\n)\xf2_H\x1eCa\x9d\x8e\xa8\xe3\"b\xcfr3vi\xbcN1\x00a\x7f\xb7Qk\xc4\xe0\x00\x06\xad4?(\x13\xdf7\xbe\xb6\xe2\xc1\x18\xfe\x0b\x1e\xa1\xf0\xb9\x08\xf6\x9f|q\x06E\xe9\xc5\xf44>\x0d\x0fgB\x86a_\xf4\xa0v[|\x8c\xffc|\x95\xd8\xb7{n\xd1\x07)\xff\xee\xc1\x13\xe0\xab\x9c=\x01\xd6\xedz\xc0\xe0\xbf\xd0\n\x8c\xe4%\xa4\xce\x99\x8b\xfc\x10pt\x04\xc3}\xd8\x82\xd1\xde\x9e\xd7\x03\xbd\xf8Q\xb9t\xb4\xb7\x07[\x90p\xa4\x9f`\x12\x90\x83\x03\xd8\x87\x1b\xf0\x158\x04\x12\x1c\x98\xe9r\x15[4\x00\x19\x087\xc3\x81\xdd\x87}T\xd1|\xd2\x90`\x0c\xc3GJ\xd0Slk`lk$J\xf1S\xe1q\xc8\x97F\xaf\xb3\xab\xbe\x8c1\xe9\xc62\x8e\xd6\xea\xc1\x9d#O\x80\xe8\x1e\x1f\xe7u w[\xa9\x08\x06\xf6\xe0,\x0e!\xd0\xf6Z\x93\xb6\x00\x1d\x93s\x8b\x15\xa1X\x80/k\xc45~\x0d\xae\xb1@\xe7N :\xf1\xe4\xfb\xd3\x00\xb7\x8fo\xfa\xfe\x0eR|Z\xe9\xc8T\xba_*\xdc\xdf\x81-@s\x1c>#7\xe0\x10\xfb\xc8\x83.\xa4SfW\xa8\x16\x01t\x87\xf4\x87\x9fyD0\x86Q\x0e\xae\x85v\x06\xa6vv+\x85\x07\x07P\xeeq\x7f\x17\x1b\x1e\xe6\xc0\\h\xb9:\xc0\x83\x83J\xc3\xfb\xbb\xc5\xf6z\x10\x17\x01O\xfd\xfad\x02\xc2\xca\xceVd\x7f\xc58\x93U\x02\xc1*,\xbc%\x89\x16\xd5x2X\x9c9>\xf1\xca\xb7\x19\xf2\x97\x985\x12\x83[o\x03C\x80\xca\xfc\xb8\x91>z\xae\\\x83\xf9\xe1\x0b\x9f\x90 \xd8\xea6\x16\x88|\xa1\xf3)\x9b\xe5I\xc0\x94\xa8\x96\x16|\xe6\x08f\x15E\xb2q\xb3=\x87\x08\x84\x13\x84\x10\xd7\x1b\xf0\x04\xa2Id\xd3j\x08\nY\xdfo\xecZ\xfe\xdd\xc9P\x07i\x9f\xe6>x5a\x81\x90\xa8;1k^\x16\x11\xce\xa2U\xd2\x0e\x058\xc5SyG\xfa\xa6*\x9c\xf8\x93<\x8cZ\x1c\xfa;\x9e\xe1\x8d\x1f\xc4\xc9\xdf\xeb\x10\x0b\x7f\xdd\x9a\x83\x9a\x89\x19=\x8dc\xff\xda\xf5\xa5\xdb\xa3R\xf4\xf0\x13\xec\xdf\xed\x04\xfbx\x82\xcd'7h}r\x03\xf4\xe1G\x93!\x0d\xe1~`\xd7 \xff\xba\xec\xd6ok%\x9b\xb2\x19Ge\xd1t\xc0o\x19\xfcw6\xfb\xd3\xa1\xde\xb2\x8f&\x9a\xfac9\xd4\x99\xf0\x06\xb6\xeccT\xd8\xc7\xcc\xb8\x8f\x99m\x1f\xf9ne\xb8[Ae\x89{\x10\x89\xb5\x0b\xc4\xda\x05\xb8vV\"&\xfa\xeb\x0fp\xf1\xd6\xbe\xe51N\x98Uun\xf6)\xfcrg\xb8\xf6\x82\x0dB\xb0\xc4\xfe\xd2\xee\xb1\xb0'L\x10\x15\xa2\x0d\xa7lV{\\>/\xc4\xdb\xf0\xfc\xdf\xcd\x8f\xf2\xb7\xe4A\x16.\xd82\x08\xd9\xe2\x13%/5\xcbp\xfbE\xf5*\x19\xe6o\xcb\xcf}\x8c\x82\x85\x8c(V\xd7\xbb\x89\x93\xab\x13\xfa\xfd\xcd\xbc\xa1\x7fK\x1e\xc4\xec\x9c]}\x11U\xca-\xe4f\x01F\xa6\xc1zm.'\xe5Mg\xa6\xb19\nxp\xfa\xc0\x9d\x9e\x07\xeb\xd9}\xef\xeb\x07R\xb3a\xae\x1e\x1bb\x0c\x80\x18\x94\xf3@\x8a\xdd\x07V%\x02i:\xa4\x05o8\x1d\"\x1b&\xd5\x07G\x9c%mq]\xf3\x9e\xd0\x9aw\xcar\x03\xa0\xb8`\x0b\x947Si\xe5K\xdf\xc1\x7f\xce\x8a\xcbS\xa2-:\xa9\xdf\xca\xab[0\"\xea\x81e\xc5P\x93\x95kFY\xaf\xcc\xc7|\"\x92PT\x1au\xd0\xd6\x14\xe6\xb6\xf8\xa4vC\xf8Zu!\xed'Q\x16\xcf\x19ty\x81ua\xd3\xfe\xf9*:\xf3WB\xe7\xd7=\x04\xe7\x9cB\xf5\xe5\xa9\xe7\xf3Wkz\x15\x9c\x87Q\xcc\x9e\xf9\x89\xfe.\xe0\xef\xd8\x97BfO\xb4J\xea~\xd1\xa21]\x06\xe1\"\xbaT@A?\xfb,\xd9\xc4\xc1\xda/\x19\x06\x06\x8d\x98\xd1\xa8N\xf8-y \x07\xff\x17\xe3\xc6\xaa\xbaF\xfe)\x18p\x11\x06\xf8\xe6{\x16\x11!\xc8\xf48}4\x0e\xe3g\xa1\x9eM\x8f\xfd\xf0\x9c\x8dkyo[TQq8^\xc7\xd1y\xec\xaf\xe9P\x84\x18\xfb\x8e\xef\x98\x0c-v\x16-\xae\xb58<\xce\xf3+\x0e\xf9I\x10\x85oR?ek\x16\xa6\x8eVu:\x98\xa9&\\\xe7i\x1cG\x97/\xc4\n\xe7_\x96?`\xea\x0d}\x8bN\xcf\xb7\xfd\xca\xc0\xe6\xebZ\xb1\xba5hD\xd4\x9f\x84\x8eEt\x9c\xe6\xcd\x0f\xb4\x8d\x0f\xeb6\xbe~\xd3\xff\xb0`s\x9b\xc3\x0b\xdej\n\n\x88\x81\x95\xdb0\x14\xbfu(\xe0\xbbc\x84\x82\xbc\xaa\x82\x02^\xd7\n\x04\xc5\xfae \xe0\xc0v\xeb\xaf\x0cf\x10/\xfc`\xc5\x16\x90F\xca\x16B!\x0c\xbb6\xc5\xd8\xc1\xc6\x8f\xfdur\x0b\xab\xd0H\x06T\x0d\xfd\xb5 >\xc5\x0di\xec\x0cW\x1c7\xba\x07\xce7\xabh\xfe\xa1t\xde\xec_\xe1\xf2Mp\x0d\xe4\x02\xbaQ\x0fB\x199x\x8a\x96\x0b\xfc>\x9e\x0egt\x01\x0b\x95\x8b^\xdd\x91\x08\x02#F\xe5\x9f\xd2g\xf5&4w\xbe\xa1\xe5\x00\xfe\xd4;Z\xdd\xba\xcat\xed\xcb\xda8X<\x00\xf6F&\x8b1\xf7\xd1N\xa98\xa3\xda\xe5b\xbfN\xdaW\xac\x9a4\xcb\x15J\x08\x0f\x0e\xe1q\xb1h \x870,i\xb3Vp\x08;\xa3\x12(\xf0\xb2\x9db\xd9\x05/\xdb-\x96-x\xd9^\xb1\xec#/{X,\xbb\xe6e\x8f\x8ae\xe7\xbc\xac4\xbe5\x1c\xc2ni,\xefyY\xa9\xdf3^V\xea\xf7\x12\x0ea\xaf\xd4\xc7\x15\x1c\xc2~\xa9\xbd7\xbc\xac4\xb7\xe7\xbc\xac\xd4\xc7S\xbe|%7\xc4W\xbc\xac\xf4\xedo\xbcl\xbfX\xf6\x01\x93\x15\x96*\x1eca\xa9\x97\x1f\xb1\xb04\x95\xb7ph\x80\xf8\xc1\x18\x9c\xd3\xd3\x81\xe1\x1ez\x88o|\xc3\x9bG\xf8\xe6\xcc\xf0\xe61\xbeI\x0do\x86\xd4Qhz5\xc4W\x1fM\xafF\xf8jiz\xb5\x83\xaf\xca\xd4\x1c\xff\x1b\xd1\xd0\xcbBh\xfe\xb7\xb3;\x86{\xa7\xa7\xce=\xc3\xd8\xa9\xaf\xd3Scg\xd4\xdb\x89\xe9\xdd>M\xed\xbdi\xa5F;\xd4\xeaK\xf3Kj\xf5uI\xc6P\xac\xfa\x8c_\xd6\xce\xb5\xd3\x03\xe7\x17\xfe\xbfk\x96\xe0\xb3\xf8\xe7\xf9\x1b\xfe\x0f\xd2\xbc\xce+\xfa\xff \xff?>\xd2S\x84\x8f\xf4\xffWX{\xb9\xc4\x8a\xe2\x9f\x17/\x9c\x99)\x90\xc6\xeb*\x92\xcc\xc5\xb5%\x0d4Y\x9e\x1c\xd6z\x93\xf5(X\xc6ho\xcf#B\xe8\xca\xa1h\xbd\xa3b[\xca\x02\x19\xab\xef\xef\xed\xed\xc8\x0f2\xf1\xc1\xae\xe1\x033\xc9\xde\xa1FvG\x8fw\x1f\xef?\x1c=\xde\xf3\xbcb\xf8\xdby\xb4`\xb0\x89\x82Bz\\\x8av\xb8\xf6\xafe\xda\x85\xf3\x98\xf9)\x8b)\xf3\xc2\xe0\xea\x85\xf83\xd1\x0d8\xd0wb\xa0\x8f\x8a;[\xf8%o\xbc\xd3SG\xc4p\xcc\x836\x0e\xf0\xfbm\xc5'{\xd0\xd5\x987S\xb0\x92\x9f\xaa\x9b\xa5\x85\xac\xc6\x9d\xc9crG2\"\xb6\x0c0\xfd\xa3\x9f^\xf4\xd7\xfe\x95\x8b\xf9\xc1E\xf1\xcd\x0d\x8c<\x19\xda\xfbC\xb09\x0e?\xfa\xab`Ami\xbf\xf58\xdc\xcbUt\xf9\x92}d+\xa4`\x83\xe4$\xe2kz\xee\xa6\xf9\x1bO\xfa\x1fie\xb2\x97\xf4z%\xe2m\x17\xaeU\x1bE]\xcd\xffkH\xdfU\xe0\xdcrw\xfe\xff\xfca\x919\x87\"\xfb \x19iP\xc6\xd5\xb8\xa40`J'C\xce\xff\xd1\x13\x8a\x88:\xa4\x8c\xe4\xf14\x10Z]q\x16\xd84C\x0f\xeeN\x87\xc8\x99,7]\x1d\x91A/\xff\xcc\xc0\xd5r\xd0\xc8\x94\xff\xb6\xd7\x03\x97\x12\xb8\x95B\x90\xf7eV!\xde\x0foOdt\x98\xf7u7\xcb\x1e\xf8\xd4\x99\x8f\nk\xfd\xd5\xd4\xe7\xe3\x0b\xa7\xd9\x0c\x0e\xcb\x91oA\x13p\x17\xe1\xd9\xd5@\x8c\x03\x0e\xb6\x98H\xf3H\x05;Q\x9c\xfe\xc0\xae)\xd5\x8c\xfaQ\x8c\xde\x1e\xb2\x7f\x06\x0b\x19=]\xfd\xba\xb9\x81G2\xf6y\x18\xfd\xc4\x96\xd4\x86x\xd4[\x08\xa3g\xd1z\xe3\xa7?\xf2\xe3Lu\xb4\x02\xbd\xe6<\xe2\xd0\x8d\xeeV\x97b)\xb5\x02\xbd\xe6\x1d\xe2\xc5\xcb\\Du\x9f<\xbf*\x86\x98\xc7\x9cWa\x1e\xa6\xbe\x98I\x9a\x97,2\xfe\x85\x9f2a\xa7@\xa5Y\xc2\x16\xdf\xeao\n\xc1\xfdL8\xe2\xc4x\x98\x10\xe8\xc5i\n\xe0\xb0\x14:\x96y\"w1)\xe6\xb6\x87\x04\xd7|l\x89f\xaa\xf4\x04\"8\x80\xe4\x89\x879\x1a\xd0j]\xa6\xe6\x17n|\x98\xf8?\xf2\xd0\xda\x87\xfcCD\n\x0b\xd1A\x82\xa9\xdd\nox\x97\x14\xc65Bc!z\x0eu!\xc4\xa9\xe0\x03C\x01\xd7\xddC\x08<>\xc4\xeea\xd9\x9dL\x80\xb0_\xbbD/\xebbo\x9bc\xebJty\x1f4\xce\xce\xd4\xf6\xb7U\x14-\x19\x0e\\\xb1\x15\x87>z\x9c\xd76\xf4okC;\xa3b`\xaa\xe1h\x1f\x99\xf7\xfda9\xf2\xd5\xe8\xf1\x1e\xff\xc5)\x94\xdcm\x82\x93$\xe2\xd7\xcd\x0d\xec=\xdc\xd9\xdd-~\xc7/\xe3\x1d\xfe\x8b\x92Q\xa8\xaa\xbc|\xbf\xd4\xf5p\xb8;\x1c\x0ek'\xf2\xc2:\x11\x9cb\xa9\x1fl\x99?\xbe\xcf\x1f\x9f\xe6\x8f\xaf\xf2\xc7\x0f\xf9\xe3\x8f\xf9\xe3e\xfe\xb8\xa8\x1d\xd6;\xeb\xb0\x1e\xfcz\x1a\xde\x07\x19\xc8D\xdfn\xf9\xc4\x0f\xd27\xd5X#\xbfs2\xa7X\xf4\x0b\xe7U\x8aE\xff\xe4\xb4M\xb1\xe8g\xc0\x88\xd2\xd5A\xfeP\x1fg\x9d\x8f#\xd2\xed\x9b:\x86\xe8'sK\xf9\nO:\x85\xfa\xa8\xbe}Kx\xa0R\xce)\xd5\x7f\x8b\xec\xa3\x85\x04%\xa5\x9d\xc4x<\x9do]\xba\x8c|,;\xcb\x1f\xdf\xe4\x8f\x97\xf9\xe3\xfb\xfc\xf1i\xfe\xf8*\x7f\xfc\x90?\xfe\x98?.\xf2\xc7\xeb\xfcq\x9d?n\xf2\xc7\xe3\xfc\xf1*\x7f<\xcf\x1f/\xf2\xc7\x8f\xf9\xe3\xf3\xfc\xf1713{V\x17C\x82\x07\x839\x8a\x97\xbf\xed\x10\x0bb\xf2\x06\x0e[\xff\x13a\x05c\xdd\xef\xd7\x9a\xcdS\xff\xe3m'@\x91\xdd\x9a'\x02\xe2\xe6\x8a\xa7\xa3\x861\x83\xca\xffB\xb3\x9c\xa3\xfa'\xe2'=\x81.\xe7\xf50\x9b=_\x07Q\x01&\xfcqL\xc9\xeb\xa0\x0b\xffp\xe7\xc4L\xa2\xd2\xa2\xb63{\x98K\xc8A1\xb2V\xfa\x83\x83g\xe65A\xfb\xcf\x8d\xd0~\x0f3\x934+\xf7\xe4\x9fb\xa4s\xaa\\p\xcaV\x1aI\xc8LK\x84\xd0\x111h\xfb\x80\x0e;\x9c]\xdb\xdf\x19\"\x11P\x8dO\x1a!WL\xdf\xec\xef\x8c\x06\x90\x07+\xdd\xd9\xdd\xe1\xcc6\n\xa6^\xbb\xc3\xc1\x08\xbd\x96\x19lS\xeb\x949f[|\xd6%\x1e\x8e/\x1b\xa7\xdd\xc6$\xf3z+\xcce\xbb\x87\xd0AJ\xe6\xdf\xfc\xe2\x99@:\x8df0\xa6[\xee\xb5\xd9\x1bM\xff\x93\xba\xd4\xba=\xf3(}\xa8\xb9!\x11\xfc\xc1\xbee\x05\x99n\xb0\xdeDI\x12\x9c\xad\x84\xb7\xfb\x18\x02!\xaa$\x0b\x10\x8a=\xe64\x11v\x7f\xb8\xf5\xfc\xfc\xd7\xf64Rp(\xe95)\x00\xc4\x90k\x06-@\\D&\x85XRF\xf9E\xc8\xcf\x1b%\xd46\x7f7\"|\xa4\xde\xf1Q8]\x07\xb7K\x1e\xcam\xbalNC\xa7v\x86\xdf[\x19a\xdb\x909l\xe4(u{\x88\xb9/\xa9\xf4\x85a,\x8a\xf8\x99\xb2\xf1/E6\xfe{G\x98\xa2_\xd0\xfe1\xf8\xf39\xdb\xa4 \xaa\xde\xf0\x06^QN0\\\x81{M7MqZ\xd3\xd5\x8cff\xbfy\xecW\x8ad\x87cc\x95\xda\x90\xd3\x06\x83,#\x9b\xdf\xa9\x97\x8f\xfeOA\xc6G\x87\xbe\xcc\xb3\x17\xf4\x07r\xc8a\x8f\x8er\xd8\x83\xce\x10C\xdf\xa8\x9f\x03Cj\xe0\x04\x14\x94P\x13\xe5$\xad\n\xf9\xe9,\xed\x01E\x85+r\xb9\xe5\x14\xa6\xbc\xf9y\x0fV=\xb4\xff\xa8\xbaIq\x00Ea\x87z\x85\xbe=\xf2MU\\\x86\x02;W\x93P\n\x8dX\xae$Q\xbbM\"@-al~\x13\x18\xda\xd1\x8a\x1aZ\xd4?.\xa0:\xa5\xee\\g Z\x12\xf8pF\xa9n([y\x9d\x05\"\x14D\xacDB,\n\xfa\xb6\xec \xf1`C\x0fE\xf6\x9c\xd5\x10\x1b\xceW&\xe2@\xedb\x1c$\xa1\xd6\x12\x91%\xc2)'p\x16\xd3h6\xeb \x1cCf\x80>\xe5`\xa7\xff\x08\xee\xf1t\xb58A\x02\xf8\xf1l\xf0\xa7\xdc\x9b\x823\x1e2\xeb\xbb\xac\xb3\x14[\x875\x8b\xc9\xcc'\"r\xd3\x84\x13\xaa\xe2\x11\x1c\xe5\xf1MS-\x1d{?\xf1\x97\xec\xdb\x92\xb5B\x8d\xe5\x1eM1\xee\xb3\xab\x94\x85\x0b\xb7z\x8e\xc8Fs\x0cYq\xb7\xf0\xc6/\x8d\xeeN>?\x02\x90\xc85V\xba\xd6\xf0\x83\xed\xbc\x7f\xcf\x92\x1f\xa3E\xb6\xaa\xc6.\xfd\xe8\xaf\xb2\xa2w\x1f:\x8a\xf5\xcfY\xfa,\n\x97\xc1\xf97\xd7\xefb\x0c\x86\xdb_D\x97\xe1*\xf2\x17T\x0e\x87\"\x1eB>\x80\xdc\xe9h4\x18j;h\xf8\xd4\xae\xf1*\xdb\x16\x18\x15\xbd\xa2\x92;\xe0C]\x86\xfd%K\xe7\x17^\xc5E+\x9f\x93qJmvU\xd51\x92-\xca\x97\xb8\x9fl\xd8\xfc)\xd6L\xccH2\xf7\xe7\x0dJ\xcb\xe1\xa6^?\xbd`\xe8\x07\x17\xe9\xe9F\xe5\x9f:E\x91y\x14\x80\x9aSM\xbe\x8c\xce\x88\xa8.\xed'\xa9\x9ff \x1c\x1d\xc2\xee\x00\xd3[\x04\xfdl\xb3\xf0S\xf62\xf2\x17Ax\xfe\x06\xdf\xbb\xce\x12\x1d\x17i@\x9c\xb3\xb8e\xb5w\xf1\xcaux\xc1<\n\x93h\xc5\xfa\xa8\x14se\xffo\xd9U\xaa\x91'Y\xbc\xe2@\x86\x17\x07R\x89\xcc\xe5[)\xdcQ\x7f\xf1\xd7+\xea\xc1s\xc3~\xca\xae\xca!\xb4\xa1\xaaF\xfb[\x9d\x1f\x1d\xf2\xcfY\xda\x12\xd2R^\xf78t\xcbw\x15L\x80\xc1\x18\xa6l\xf6\xf7\xc2\x12\xa5s\xaf\x08w~\xfa\xf7\x0c^\x84H\x91\xcb\x1b<\xef\x0b&\x10\x83)9\x93\xd4\xc7\x96\x83\x17\x16[F5\x9a;\xdc\x7fT\xea1\x11#\xd9-\xe2!j\x93\x02I\x92\x0b\x06\x07\xbcL\xbe\xf0\xdc\xa0\x07I\xff\xdd\xebo\x9f\xbe}\xfe\xfe\xd9\xab\x93\x17\xc7\xdf\xbd\xe9\xb5\xdc>\x0c\x0e\x8d\x80\xeccp\xd1\x7f\xbc\xf1\\\xd6\xdf\xf8\xd7\xfc\xa8\xeb(\xde3\xf7\xfa\xf6\xd5w\xdf\xbdl\xdb\xab\xbc9U\x07f\xb5/\x02UEt\xa2\x86\x9c\xf0\x97=\xe8\xc4\xc5\xd1\x05\xc2\xf3t\xe6}\xc5\xf7\xf9\xc1\x83\xff\x03\x14J\xe2G\n\xdb\xf4\xee\xa7\x97\x87\xc9\xa5\x7f~\xce\xe2\xed,\xd8\xe6xg\xe1\xaf\xa2\x90m\xa3N$\xed\xff\x96\xf4\xd7\xfe\xe6\xff\x07\x00\x00\xff\xffPK\x07\x08v\xf2\x8aA\x86\xba\x01\x00\xc5\x87\x08\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x00 \x00swagger-ui.cssUT\x05\x00\x01\x80Cm8\xec\xfd{s\xdb8\xb27\x8e\xff\xff\xbc\n=\xbb\x95\x9a\x99\x1dS!EQ\x17\xabf\xeb\xc8\xb1\x93q6r\xc6\xcem\x92\xad\xad)\x8a\x84$\xda\xe0\xe5\x90\xd4\xcdz\xf6\xbd\xff\x8aw\\\x1a $;s\xf6\xf7\xad\xb3\xd9dl\xe2\xd3\x8dFw\x03h4\x00\xb2\x9bl\xed\xe5\x12\xc5\xda\xda;\xfc\x9fN\xe7\xe5\xdf\xfeo'\x08c\xdf\xc6\xde#\xea:I\xd2\xd9\x0c\xbbzW\xef\xfc\xbf\xce\xec\xfac\xe7\x9d\xe7\xa0 A\x9d\xff\xd7Yz\xe9j=\xef:\xa1\xff2@N\x88\xed\xe4%M\xf7\xb7\x97\x8b0H\xb5\x85\xed{x\x7f\x9e\xd8A\xa2%(\xf6\x16\x13'\xc4a|\xfeWs\xde7,\xe3\xdfD\xfd\x9dU\xea\xe3\x03\xf6\x02\xa4\xad\x90\xb7\\\xa5\xe7F\xd7\xb0&\x9a\x9fh)\xda\xa5Z\xe2=\"\xcdv\xef\xd7Izn\xe8\xfa\x8b\x89\xb6E\xf3\x07/\x85K)\xce\xf3\xd0\xdd\x1f|;^z\xc1\xb9N\x95\xd8q\xea9\x18\x9dQ\xcf\x12\xcf\xa5\x9f,\xc20E1\xf5h\x85l\x97y\x14\xd8\x1b\xea\xf7\x049\xa9\x17\x06\x07\xd7K\"l\xef\xcf\xe78t\x1e\xe8\x16\x1b\x87\\K\x99\xf0\xe7=\xe4OJ\x19\xbb\x83!\xf2;\xb4\xa4\x0bo\xe9\xd8Q\xc6\xf0\x8cy\xbc\x8eii}\xdb\x93UZPT\xea0\x90\xdf\xe9\xeb\xd1\x8e\x96+>T\xca\x9d\x87\xbbL\xe4\xdd2\x1f:\x16a\xec\xf3\xca\xfbg\xba\x8f\xd0/1JP\xfa\xaf3\xbe Y\xcf}\x8f)\x01*\xcbf\xb5\x92\xa2(\xfdW=\xb6\xdaQ\x84\xec\xd8\x0e\x1ct^\x14\x01\xd5\x974\xe7\xe7\x9a\x1f>j\x8b\xd0Y'\x9a\x17\x04\xcc\xd4C\x8a\xaa\x04-\x85o\xc1\x16\x95\xf3 \xde\xeb&\x91\xed\xba\xd9l\xa0K\xda\xd0\xb0\x89\xbd`)n@+\xae\x92^\x02,E\xa7\x11\x87p\x9df\xbevnD\xbbr\xec\xed\\\xe4\xc0\x8fh\x972\xb3$\xc2n\x82\xd2C\xd5\xb0\xaei!\xbf\xd3\x1d\xe6\xff\x0e\xb8a\x01\xa3%\n\\h\xda\xac\xe7\x14j\xd6$\x9e\x16\x83a5\xacW\xdd>\xb5\xe7\x18M|{\xa7m=7]\x15\x1d\xa5\xd6\xf2d\xbb\xf2R\xa4\xe5\x83\xf4y\x11y1Sl\xb8\x8cQ\x92\x80\x83\x8f\xd2(Xw\xe1\xbaw\xd9\xeb4\x04\xac\xeb\xac\x90\xf30\x0fwP\x1f\x89m\xd7\x0b\xffu\x92Vd\x0e\x15\xac\xfd9\x8a3\xef-\x19\xe7^\xa9%\x91\x17h@\x17\x14\x10\x85\xeb\x94&:\x94C\x90\xa0\xa1 \xb2cg\x05v\xdfLY\xb9\xc7LJ\x0f\xd3\xc2\xc5\"A\xe9\xb9\xd6cB+\x8aU#K\xf1@s2nX\xdc\x06\x11]\x13\\@\xd2q#[C\xbf\xf00\xd2\xd6\x11\x0em\xb7R\x82pt\xcaG\xed\xcaO\xe9X\x00\xa5\xb6\x87\x13:\nE\xc1Z\x12\x85&k\xdf\xb7\xe3}\x8d\xc0^\x92j^\xca\xf4*\xc7\x0e66\xec\xc4\xb4V\x8b \xed_\xcc$\xe4G\xd8N\x115\x93Rd]\x17\xcd\xd7\xcb\xce\xdf\xa8q! \xb1\xe7v\x96!v\x01\xac\x96\xf7;\x90\xe2\xaf\x8b\xc5\x02\xa2\x98c\xdby\x80)\xd8\xf8\xa7\xa4X\xc6\x9eK\x04Ndx\xdbY\xc7\xf8G\xd7N\xeds\xcf\xb7\x97\xe8e\x14,'Y\xf7\x1d\xf4\xcf\xbc\xcf\x17\xef\xef\xb6\xfa?\xde,\xc3\xe9t:\xbd\xf9\xf0iu\xf5i\x99\xfd\x98\xffs\xfdj\xfau:\x9d^^]\x0e\x07\xef\xb2\x07o~\xbf{\xfd\xe5\xd7\xbb\x8f\xf3\xde7\xdd\xed\xbd\xde\x7f\xbb\xbd\xb8\xf8\xf6f\xec}\xfbp\xf1v\xfe\xe5u\xf0\xed\xf3[\xfc\xf5\xcb\x9d\xe58\x18\xff\x96\x11\xecW\xd1\xe7\xd7+\xfd\xcb\x951{\xef\xdfl\xe6\x1f\xacU\x81\xb7\xfa\xf3\xdf\xa7\xc5\xff.\xb7/\xd1\xaf\x17\xab\xaf\xbd\x14\xbb\xaf.\xbco_\xdch~\xaf{\xc3\xe1\xfa\xe5\xb5w\x11}\xbb\xd4\xbd\xcf\x8f\x9fofW\xc6\xf6\xb6\xf79\xb4?\xad\x06\x8e\xff\xf9#z\xb0>}5\xa3\xf8\xeb#~\xb8\xbe\x1f\xfd|}\xb9\xeb\xbf\x0fV\xa9\xf3\xc6\xc0\xee\x9b\xab%zc$\xf3`6@\x97\xba\xf7\xf5\xcb\xdd\xe6\xab\xffi\x90\xfd>\xff\xf2Y\xff\xfaa\xe4]\xff\xba\x1c\xa07\xc6\xd6}\x93\x8c\xaf\x1f^?\xcc{o\xf1\xf5\xeb\xd5\xcd\xa7W\x17\x97s\xf3-\xbe\xbe\xfc\xb4\xbe\xf1\x8c\xfb\xd9\xc7\xab\xdd\xf5\xa5c\xbd\xbb\xbf2\xde_\xce\xf67\x1f\xb6\xcb\xd9\xfdtw\xf3a\xb4}\xffa\xb4\x9b\xbd\xd2\xb7\xb3\x8f\xe1nv\x19\xeeg\xaf\xa6\xcb\xeb\xea\xef}\x7f\xf9\xdb\xafo\x1f\xbe\xddG\x1f\xee\xae\xbe\xd6\xf28\xfe\x9d\xff\xdb\x87\xb7\xa1\xfb\xeb\xdd\xf6\xbd7\xda\xb8\xa6k\xbe\x0b\x9c\xc7w\xfex\xffm?\xda\xbd\xff\xf8`\xbd{\x9c\xee\xdf=^\xef\xdf\xfd\xfe\xf6\xe1\x9bg<\xa2/\x96\xfe\xf5\xf7e:\x0ff\xf7\x04\xdf\xabo\xbf\xdf\xdc;>\xde\xbao\xf0f\xee]\xec\xbf\xbd\xf9:\xf8\xfa\xe5\xed\xc6\xfd\xfdv|\xed]7:xcl?~\xd2\xc7\xd7\xfeJw\x7f\x9d\x0e\xde\xed\xc7kg_\xdb\xe2~\xde\xd37\xe8\xcd\xeb\xed\xbb\xc7\xab\xf5\xec\xd58\x9d\xe7\xfaY\xa5\xf37\xd6\xe3\xfb\xe0F\xff\xe4\x7f\xa6d\x9e\x07\xb3u\xa9\xd3\xf5\xd7\xde8}g\xaeV\xce\xab\xd1\xee\xdd\xfdt\xe3\x18w\x96\xf3\xe6\xd3\xe6\x93\xff\xf9qn~\xde\x7f\xed}\xfe\xf0\xed\xcb\xd7\xfbk\xef\xa2?\xff\xb2[;\x8fQf{EY\n9\x9c+\xe3\xe6\xfd\xc3\xdd\xe6\xab\xf99\xfd\xf6\xc5\xd2?|\xba\x1d_g\xb6~e=\xd8_n\x07\xb3\x8fw\x97\xef?~\xed\xdf\xe8\x9fz7\xfa\xe7\xd7\xb3\x8f\xaf_\xdf\xdc/{\xb3\xc7o\x97\xb7\xf7\x0f\xdb\x9b\x87\xdb\xfe\xec~\xb9\x9d]]\x13\xfc\xf0\xda1\xefVs\xff\x06\x13\xfc\"\x9a\xdf\xad\x1a\xbf\xcb\xe8\xd2\xf1?\xaf\xdc7\xe3\xfd\xe77\xe3\xcd\xfcR\xf7n\x0b\xfd,?\xbdYm\xdc7\xe3G\xfb\xcdx{}usy}y\xbd\x9d}\xfc\xb4\xfc\xc7\x95\xb1\xfa\xda\xc3\xeb\xbc\xec\xd5\x83\xf7\x9b7\x1d\x95v\x1a\xdc\xbd\xf9\xbc\xb7\x7f\xff\x86\xbf]}\xdb\xcf{\xfa\xd21\xef2\x1d\x0e\xec/\xd6\xa3\xfb\xe6\xf5\xfak\xef\xf3\xdb\xbbK\xdd\xcb\xf0\xef|\x1c}\xbb\x0c\xcd\x9b{g\x7f\xfbpk\xde\xdc\x7f5o\x1f?\xedf\x9f>\xf5n\xef\xdf\xbe\xba\xd5?\xedo.\xa7\xfd\xd9\xc7\xe9vv\x7fe\xce>\\\xd7\xfc\xbe\xbd\x19\xdf\xbb_\x0c<\x0f\xee\x08~w4\xbf\xc7V~\x9bL\xf6w&\xe0\x93\x99\xaf\xbe\x1a\xe7~\xf9\xe9\xe1\xeeM\x81+\xfa]\xde\x0f?\xf6\x97\xbf]\x8e\xfb\xce\x9b\xd7\xf7v\xef\xb3~\xfd\xe6\xf3:\xeb\xef\x8ew\xfd\xf2\xb7\xe4\xe2\xc3\xcfof\xd9\x08q\xff\xe1\xd3\xdd\xc5\xe7_\xef\xed\xaf\x9b\xc7\x97/\x1fG\x97\xef\x92\xcb\xfe\xd2y\xf3\xbb\xf7\xf5j\xfa\xe6\xe2\xfa\x1fo.\x02\xf4\xf2\xe5\xe2u\xb4\x9d.\xb7\xd3\x8b\xf1hj\xbf\xeeE\xf7\xf8\xd3mF~\xf1\xf6\xee\x93u\x15?\xbc].\x97\xbf\xfc\xf2S'F\x11\xb2\xd3\x8e\xde\x11\x8e\xa4\x9a1x\xc6\xc1\xf4\"\x1f\xe6n\x8b\xc1t\xba\x18\xbd\x1c\xaf\xfew0\xfd\xdf\xc1\xf4?u0}\x7f\xf9u\x7fw\xbf\xba\xba\xbb\xcc\x06\xd3\xaf\xfb\xd6\xc1\xafe0m\xf8\xdd\xaa\xf1\xfb\x0f\x1aLo?\xb6\x0e~G\x0d\xa6\xb7\xed\x83\xf3\xf7\x19L7\xaf>\xe8\xc6u6\x18\xcd\xea\xc1\xd4\xbf\xeb\xbf\xb4~\xbex\xfd\xdb\xc5b:{\xed\xbf\x9c],w\xa3\xbb\xe9\x9b/\xaf\x02c:\xf5?,\xcd\xfe\xed\xe0\xe1\xe2\xf2\x1f\xb37\xb3\xcbW\xdb\xebWhv\x8d\xfc\xd7/\xad[{{\xe5E\xd3/\xdbO\xab\xed\xd5\xfd\xecr3\x9f~\xc1_\x1e6\x9f/\xb6\xeb\xd1\xe6\xf6zz1\xbd\xda^\xbc\x8aV\xa3O\x03G\xcf\xc7\xa5+\xfc\xfa\xe3\xc3\x87\xf5\xad\xff\xea\x95\xd2\x00<\xd2\xf2x\x97\x1c\x85\xb3`\x99\x1d~\xef#T\x8f\xbf/\xc7\xf7/\xfb\xb7\xd3\xafw\xbf\xaf\xa2o\xcb\xe9\xf4\xc3\xa7\x87\xff.\x03\xd9\xe6\x7f\xbf\xbdL\xa6\x17\xaf\xaf\xdc/71\xba\xcdF\xe6\xdbj\xe0|\xd9\xbf\x9d\xed\xec_\xeft\xe72\xdc\xbc\xebY\x8f\xef\xfcb\x1c{\x97\x8f\xb5\xe3\xfe\xd7\xdf\xa7\x9b\xd9\x87\xfe\xf6\xddv:\xfa\xcd\\m\xbf~\xb9\x89\xbf\xfd~\xbb\xfc\xea\x7f\x0e\xec/\xfd\xf1\xf5\xfa\xe7\xe1f\x7f\xbd\xb4\xbf\xdc\x8e\xaf\xb1c|\xfcxq\xe3\\\xdd`\xfb\x0d\xbeF\xc1[\xfc\xc9\x8c\xde\x7f~s3\xb0{3\xeb\xdb\xab\xeb\x97\xb9\x8f^f\xfd\xf7\"\xfd\xf6\xfb\xdd\xaa\x19#\x96\xe3\xeb\xb2\xee\xf7\xbe\xf5\xf8\xde\xcf\xc7\xe0M\xd6\xe7\xf31\xf9\xd7\xbb\xf8\xb7\x0fo\xab\xb9\xe2\xeb\xc7\xcf\xd3\xe5mo\xbc\xff\xf6aj\xbc\xbb\xff\x9a~}\xbc\xda\xcd>L\xcd\xf7\x1f\xfa\xbb\x9b\x8f\xcb\xc7\xd9\xfd\xa7\xa4\xec'\x9b\xd9\xe5\xc3f\xf6q\x9a\xce.\xaf\x06\xb3\x8f\xd3\xc1\xec\x9e\x18c_]g\xe3~\xed_\x8d<\x99/\xea^\xad\x1b\xd35\xdd\xbde\xce\xf6\xd6\xc6\xf1\x9d\xcd\xec\xe3\x83\xf5\xfe\xc3h;\xf3F\xfb\x99gd\xf4\xa9cf}\xf1u\xff\xdd\x17\xeb\xf1z\xdf\xf0\xbd{\xf3\xf9\xf1\xab\xf96r~\xbd\x8b\xe6\xbd\xfe2\x1b\xbf\xdf\xfb\xaf\xbd\xb9\xf9Y\xff\xed\xc351Nf\xe3\x00Q\xa7\xcc\x1e\xfb\xff\xc0\xb1\xf9\xf7\xe9\xe0\xd6|\x8b\xbf\xfe~\xb7q\xf0\xddf\xde\xdb\x12\xf3\xe2E87\xef6No\xb5q^]\\\xde\xee\xa7\xfb\xd9\xe5\x95q\xfdju\xf3\xf5\xcbM4\x0f\xb2\xb2eT\xf0\xb9\xb8\xf9\xf81z;\x0fn\xf4\xaf_\xac\xfbo\x9f\xf0\xd5o\x1f\xdef\xfc\xd7\xf6\x17\xfc\xf0\xfe\xe1z7\xbb\xbf\xd6\xdf\x7ft\x1eo\xee\xddW\xb3\xc7\xab\xdd\xdd\xc7o\xaff\x0fo/\xef>^\xeb\xb3\xcb\xe5nv9\xdd\xcf>:;\x82\xdf\xd5\xbcwc\xcc\xbf|^\xbbW\x0d\xbfoo(~z+\xbf|\xee\xac\xe7\x13\xec\xf8\xb8\xf7\xed\xcb\xdd\x1b\xc7\x1f\xa7\xd7\xbf\x16\xba|\xef\x8b\xe7\x85\xdb\xfb\xab\xfd\xec\xfe\xd6\xbay\xbc\xea\xdd\xe8\xd7\x8f\xf9\xbc\xf0p\xbd\xbf}\xb8y=\xbb\xbf\xdd\xbe\xbf\xbc\xda\xce.\xafw7\x8fW^\xc3O\xde\xfa7\x97\xa3\xf0\x1f\x97\xe3_\x7f{\xfc\xf4\xb2\x8d\xa6\xfd\xef\xe2\xe5v:\xbd{5\x9d^O\xa7\xcb\xcb\xe9\x87\xeb\xe9tuu1\xdd]]\xbc\x1c\xddN\xbfd\xe3\xe6\xed\x14\xf8\xdf\xd7\x8b\xe9\xed\x15\xf0\xfc\xfa\xeajzu1\x9d\xce.\x98\x82\x8b\xe9\xe5\xd5\xab\xa9~u7\x9d^]^\xf0<\xef\xae?\xbe\xbe\xf8\xf4\xe5\xea\xc3\xf5\xe6\xa5=\x9dn/\xa7\xb7\xd3WW\xb7\xb3\xbb\xe9\xe5h\x1a\xbe\x0f>~6n?^\x0e\xdf\xbeMV\xbf\x99\x9b\x0f3\xf3\xb7\x97/\xbf)\xcd/\xc6@m\x829*\xbe\xcf\xe6\xd7W\xb7\x0f_\x96\xbd\xe9\xff\xc6\xf7\xff\x7f\x1d\xdf\xab\xce\x01t\x1c\x9e\x8d\xad\x8asV\xcfH\xc9y\xab\x8c!U\xe7\xad\xc7\xcf\xbf\xe2\xed\xb7\x0f\xe3\x0f\xdf~\xbf\xd9\xb8\xbf\xbf\xbd\xcf|\xe9\x9b7{\xb6\xf8Y%\xae\xbfy\xfcj\xce\x1e\xde^\x15I\x97\x99!\x1f\xbf\xdb\xd7\x1d\x0d\xbf\xaf\xad\xfc\x9e-\xbeoOn\x1c\x15\xdf\xdf]\xb6\xf2\xfbN\xf1=\x1a\xbc5\x1f\xb2\x11\xe2\x91M\x96\xe8\x9f.\x93\xd9vv\xff\xe1.\xfc\xfa\x9b\xf5\xe6\xbf\xfb\x1f~\xbb\x99\xdf\xdd\x7f\x9e]\xdd\x1a\x8bWw\x97\xcb\x9f\xbd\xe0\xe5\xe0\xe7\xb7\xc6\xf4\xed\xa7]\xb2\x9c^\xbd\x99NM\xe3b\xfav\xf6A\x7f\xf3\xb5\x18\xcf?|\xfa\xfc\xfe\xee\x1f\xd6\xab\xaf\xd7\xd7\x92\x04J\xb3\x15C\x1f\x8e\xa1\x7f\x03\x8e\xcf\xccCwO=\xe0N\"\xb8\xf4A\x04\xd7\xa3\xcf\xcd\xb8\x98\xfe\x95\xdeZ\xae6\xe6\xe8\x87\xfc\x01\x9dE\x18\xfb\xf4F\xacA\xff\xda\xa3\x7f5\xe9_\xfb\xf4\xaf\x16\xfd\xeb\x80\xfe\x95?\x0b\xb4J}\xba\x15\xf9Nu\xb1\x89\x83|\xdb\xc3\xff\x12\x95\x96\xdbT\xa2\xe2\xc8N\x92m\x18\xbbB@\x8a\xc4\xbcS\xb4K\x85\x85\xeb\x98!,\xb64\xe9G\x1e\xbd\xc7c{\xf4.UH7\x9a>'\x101\xe7\x94\xca\xf3Q\xd4\xb3|\xd7\x93~BKPmK\xd2\x0fW\xf4\xaf\xb4-\xd6\xf8\x94\x0dH\xba7\xd8I\x84\x9cT\xcb\xf7\xd8\x0e\xe2\xf3%b\"M3\x06\xbbq\xb5\x9b\\\x9d0\xb2\x06\xdd\x9e\xf5BF5\xde\x19\x03\x96\xca\x18\x0e\xbb\xc3\xa1\x94\xac\xbf3Y\xaa\xa1\xbc\"s\xd7\xe7\xea1\xcd\xaeiJ\xa9\x06<\xd5`\xd0\x1d\xb4\xc8\xc6\xb7\xc8\xd2\xa5$\xa3\x9d\xc5U\xd3\xeb\xca\x1bd\xedF\\5\x03y5C\xbe\x9a\xa1\xd1\xed\xf7Z\xea\x19r\xf5\xf4\xe5\xf5\x18;\x83#a\xcf,2$\xc5\xc9\xb5C\xedq\xf6< \xf1:E\x934\x8c\xce\xf5I\\zd\xc9M\x9f`\xb4\xc8~'\xce\x0eT\xe7k\xb2\x9f\x1f5/p\xd1.\xfb\xe5\xdf\xff\xe5#\xd7\xb3;\x89\x13#\x14t\xec\xc0\xed\xfc\xe8{Ay\xea\xc0\xd4\x91\xff\xd3A,W\x90<\xa17d\xd4'u\x08\x80P\xadO\x00\x84\xed\xdd\x02\xaaM\xa9g\x00\x84*\x9d\x03\xaa\xaf\xbd\x7f@\x95)t\x11\xa8\xb2\xf6^\x02\xe9Q\xa5\xa3@\xb5\xb5\xf7\x15\x88J\xa9\xbb\xe4\x84\xcf\xdfc\x14\xbaL\xf9\xb0>\xbd3h\xe9G\xfeS\xba\x91\x7fb/\xe2\xe8\x14;\x11G\xa7\xd0\x87\xf8\xba\xd4\xba\x10G\xa7\xd4\x83\xf8\xda\x14:\x10_\x95J\xff\xe1\xabR\xe8>\xbc\x06\x95z\x0f_\x97B\xe7\xe1\x89\xd4\xfa\x8e\xff\xe7w\x9d\xb6^\x82\x9f\xd2K\xf0\x89\xbd\x84\xa3S\xec%\x1c\x9dB/\xe1\xebR\xeb%\x1c\x9dR/\xe1kS\xe8%|U*\xbd\x84\xafJ\xa1\x97\xf0\x1aT\xea%|]\n\xbd\x84'R\xeb%\xf8\xbb\xf4\x12\xb2^\xcf_\x1e\xe8c\xa0\xb4XN\xb8A1y\xce>?W\x9d?\xfd\xbf\x9e\x1f\x85qj\x07)K\x12\xa4\xb6\x17\x00D\xf9s\x82\xac}\xa6;\xf0\xc2d\xd3\xee)\xf2\xc0t\xacH\n2)\xcc\xbe\x85\xa0\xfeirBd\xc7\x89)\x94\x08\x9f&\x11D\xc6IDQ\xce\x97\x9a\x83\x82\x94v\x9d\"\x19t\x1e\x84\xe5O\x13\xa2\xac\xf6sn\x90\x98/\xb54\x8c\x8e\xe6\x93\x86\x11\xc7'\xef4Gs\xe2;\xc5\xbc\xea\xc7G\xf3*\xc88nY\xe7=\x9a\xd7\xf1\x8b\xab\xda*L_P\xaaN`\x98SX ms\n3\x89yNa'\xb1\xd0)\xec\xda\x82\x12\xd5\x11\xa51\xdd\xf1N'\xb2\xdc\xf1\x9c\xc4\x86;\x9e\x97\xccn\xc7s\x93\x99\xedxnmV\x93\x1a\x08\x1f]\x9d\xc8@\xc7s\x12\x1b\xe8x^2\x03\x1d\xcfMf\xa0\xe3\xb91QL\xb7<\xfe\xce\x1f\x83\x07a\x1aqL\x1389O\x94\xc2\xe4zMt\xfc\x18\\\xf1\x08\x92\x13\x84\x05\xa9\x14\xe4%\xe9\xda|[uD\xaa\x98\xfb\xa7\xb4\x03 Ri\x86\xaf\xdc\n\x89\xc0\xf8\x14\x81\x01\"\x15\x811)0\xed\xfb6}\xcf-g9)\x1f\x95\xd18s\xbb\xa7;O+\x9alt\x00\xe8\xb2\xc7\"\xda\xfa^]1\x1e\x00\xd4E\x81\x88~N\xdf_\x86\x18\x94%\"\x0e\xb8\xe2\x90wz\x80>\x7f.\xa2\x0e\x80{\x81\x94\xba\x8e\xef\x8bs;\x9f\xd2\x8f7\x03Av\x8a%\x08\xf2S\x8dA\xb08\xdd\x1e\x04\x93\xd3L\xc2\xa9\x0f\xb2\x8a\x82Y\x14\x86\x9b\xb9\x9d\xcd\xe3'\x98\xca\x7f\x92\xa5\xfc'\x1b\xca\x7f\x06;\xf9O4\x93\xffT+\xc1\x06\xc1'\x19\x04?\xc9 \xf8\xc9\x06\xc1\xcf`\x90'\x0ee\xac\xe6@\x83\xd04Zq\xd5\xaf\xa2\x13\xbc\xe3 \xc3\x05\xc8\x8eA\xb0a\x18\x1c\xd8\xb5\xe3\x07m\x19\xdb{\x06k\x9a&\x87\xf5=\x17\x82Z\x96\xc5A\x01\xd8p8\xe4`\x89\x877\xcd\x85\xef\x128\x1e\x8f9 .\x8c\x0d\xc1m\xdb\xe6%\x0d\xc3\x00\x92\xc1q\x1c\x01k\x00\x8c\x10\x82u\x9b\xdf\xd2d\xc0\x8b~\xf6\x87\xc3\x83P\xf6&g\x85\xd3\xc6:\x0d]%\xd8\xfeQ?\xd3_\x9ce\xb1\xf8Yw\xfc\x93\x80p\xd4B8\x12\x11\x0e[\x08\x87\"\xc2A\x0b\xe1@Dh\xb5\x10Z\"\xc2~\x0ba_Dh\xb6\x10\x9a\"\xc2^\x0baODh\xb4\x10\x1a\"B\xdd\x92\x13\xeaB\xed\xe8\xbd6\xd2\x9e\x98\xd6h%6 \xea|\x8c\xe1\x9c6^\xces\xda3\x1dt\xd8\x82\x88uX\x92\x08p\xd6\x82\x88uV\x92\x08p\xd4\x82\x88uT\x92\x08p\xd2\x82\x88uR\x92H\xa8\x08\xd6AI\"\xc09\x0b\"\xd69I\"\xc01\x0b\"\xd61I\"\xc0)\x0b\"\xd6)I\"\xc0!\x0b\"\xd6!I\"\xc8\x19K*\xd6\x9f(2\xb1+\xf1\x8eH\x11\x82N\x98O`1r\xd9\xc1{\xa8\xf7u~\x9c\xe5\x81\x8bE\xdf0\x07\x82Y\x01\x82\x0f{\x16?\x89\x84\xb1\x1d,\xf9\x81~`\x02\xf3\xf32\xc4<\xd7\xf9\x10@\xee\x11\xc6\xe1\x96\xc6\xf2\xaf\x0e\xa8\xa5\x85\xe0\x7f]\xcc\x17\x86\xcdO\xa8\xd1:\x8e0+\xb0\x85z\x8e\xcdO\xe6\x05w\x90\xc2\xee\x0f\xccE\x0f6J\xe4\x05l\x04\xe2Z\xba>\xe2\xad\xb2\nS\x08\x9d\x99f\xce\xcf\xa9 r\xa4\x0b\xa7v\x10o\x9b.\x1f\x8e\x94\xc1\x10B\x01\x837\xcc\xe1\xd0\xe2\x9b B\xc7\xf6x\xc8\x0b]E\x19<\xc1\x18\xa1\xb9\xc3\xeb$\xb07l@\xa2\xeb\xc6\xbc\xcf\xb3\xce\xa5\x9e\xe35k\x1b]\xef\xf7\xc7|\x08\x03 Mk\x88\\\x91W\x01\xf8\xf1\xc0q\x80 &\xc7\xa3\x04$q\\\x04\x91l\xedd\x85\\\x88`1X,\x16\xbc\xf4%\x01\xa4H4Z\xb8\x0b\xde{K\n\xb8s,\x16\x0e\x9a\x8bH\xa0\xde\xef.\\\xbe\x15d:\x91\"\x10f\x88\xe6\x9aV\xbe\xea\x84&\x80\xde\x7f\xd2\x9d\xc7\xf5\xd0\x1d\xdb\xae\xb7N\xce\xd9\xa1\"6\x18@\xd7\xe8Y1b\xd3\xadq\x8f\x85\x81(\x93EA\xa0>\x032\x00\x8cf\xe8\xac\xe4@R9\xd6\"\x0fc\x067\x1e\x8f\xc7\xc0\xea\xaf\xdew+\xc0y\x92<[iUz!\xd7\x90\xc5:P\xa41\xad\xd8U,\xe0UV\x1bbU\x96\xb5q+\xf7\x16[\xe4\x82*\xe2y\x15\xdb\x81\xa2\x96\xc8\x05kO\xb6\x1cX\xe7\"\xd3Q\"\xff\xe21\"\x17\x03\x90\xb0\x97\x01@\xd0\xd1x\x9c\xc8\xd7\x00\xa4\xc8\xddx\xa8\xdc\xe3\x98\x8c\xdfS\x9c\x8eO\xdd=\xd9\xefT\xa4Sw=\x86\xdb1\xde\xa7\xe0~*\xb9\xbeX'\x12oB\x97d!B\x8f\xe4\x80\x02\x87\xe4p\xb0?\xb20\xa1;r@\xa17\xb2\xc8\x16g|\xb6\x01\x90\xcbN>\xdd\x15\xdbe;\xc2\x13\xfd\xef\xe3\x88\x02\x9fc'!\xc0\xe7X\x88\xd0\xe78\xa0\xc0\xe78\x1c\xecs,L\xe8s\x1cP\xe8s\xc7M\xb9,\xbc6oc \xa2\xa0<\x9e\x06\xfb\x1c\x9b\x80}\xba\xcf\xe1\xe7\xf49|\xb2\xcf\xd1\xfc4\xadx d\xc5\xaeH\xf5\x02/\xe5-\x82\xf8,\xe4d\xa0\xf93\x0eZ\xdeF&\x91\xc0&f\xb6\x84\x08\x03D\xe3\xf2w\xd4\xb5\x0f\xd1\x07\xb8!\xdcn\x8f\xb4-\xd8\x92a\xb5\xc8(\x1cDd\x17\x1e\x08\x9b\x86\xc7\x81\xd6\xe1`\xa0\x818\x14l#&\xee\x15\x9a\x89\xdb\xbe\x17Z\x8a\x0f\xf5\x85\xc6b\xf7\xe2\xebm\xc0v\x83\xa9\x0cl[\"\x1a\x15\x1a\xd1W\xb4!\x8b\x13\x98\x90\x85\xc1\x16\xf4U\x0c\xe8+\xd9\xcfW3\x9f\xafj=68\x16\x1b\xcf?\xc1v\x023\xe1V3aE3\xb18\x81\x99X\x18l&\xacb&\xacd&\xacf&\xacj&6\x9e\x14\x9b \xc3f\xa2\x80\xc9\xcav\xc3\xadf\xd0\xd7\xba\xf3\x87\xe7zG\xef\xf4\xa3]\xa7\x17\xed:\xf4\xa6\xcbD \x05\xd6\xd4\x13\xd54R\xaa F\x815\x99PM\xbd\x92\xbe\xbd]r$Xc_Vc&\xb9\xaeP\x1f\x84\x03k\xb3\xa0\xda\xfa\xa5\xc4m\xb5\xc9p\n\x83\xf0\x01t\xa2lT\xff\xd3\xfcHR\xd9\xf3\xbb\x92\xa0\xb2\xef\xebM-\x95\xb6\x99\xf8x\x87\x12T\xf8,>\xa5\xe0T\n3{\xedi\xfe\x9f\xe8h\xc2\xba\xbe\x83\x9f\x81u}g7\x93\xd6\xd9f\xf4\x13\xbc\x0c\xac\xefOp2\x99?\xe1?\xd1\x9f\x84u}\x07\x7f\x02\xeb\xfa\xce\xfe$\xad\xb3\xcd\xbe'\xf8\x13X\xdf\xf3\xf8\x13Ua\x14\xa3\xfa\x0b\x1e\xda.\xff\xb4E\xfdq.m_~\x08\xa8\xf9\\W\xe2\xc4!\xa6?%\xd2\xcdb@=\xff\xe6\x11\x13\xb0\x15Q\x9f~\x80S\x89E\xa4\xa7W\x9fRb\x8a\xf3\xf0N?\x14\xe9I\xbe>#\xaf\x8f\x0fa\x8b*\x8d\xb2J \xc4-j5\xaaZyD^\xb1QT\xcc\x97fu\xf7\xf2\xba\xf9\xc8\xb8\xa8\xbbW\xd6\x0dD\xceE\xdd\xbd\xaan\x1e\x91\xd7\xdd+\xea\xe6K\xb3\xba\xcb\x86k\xa2\x96\xd7M\x07\x10e\xfdM\xe3\x01L.A\xd5|\xa0<\x97\xa1P\x80&\xd2@\xad\x02\x00Q\xc9P+\x01\xc0\x142\x94j\x00\xca\xab{\xd4\x9a\xb6\xf00>HoS+\xcc\xd0\x07\xde\x99\xb3\x98\x01\xf0\xe7\xc2'\xb3B\xc8-Ko\xcf\x8a\xa5\x0e_\xa4 \x9f\xcf\x1d\xbb\xaa[\xe4\x99u\xf5B\xe7o$\x10\xfb?!\x84\xc0\xc9+9D^Z\xcb!\xec\x08\x8d\x1c\xe2\xbe@\xc8!r\xf8J\x10\x89\xcf75\xc9\xdc\x9e\xa8K\xec\xf9u\xb3\x84\xce_\xcb#\xf6\x7fB\x1eI\x17 \xe5\x11\xf6\x82F\x9e\xb6\x8eP;\xad\xb0/(t\x06\x85p\xb5\xe8!\xbe\xa4\x83\xf8\xd2\xfe\xe1\xb7t\x0f_\xda;|y\xe7\xf0\xdb\xfa\x86\xdf\xde5\xfc\xb6\x9e\xe1\xcb;\x86\xdf\xd6/\xfc\xf6n\xe1\xb7\xf6\n\xbf\xb5S\xf8*}\xc2W\xe8\x12~[\x8f\xf0[;\x84\xaf\xd2\x1f|\x85\xee\xe0\xab\xf6\x06\xffI\x9dA\xe8\xf7X\xe2\xf7X\xea\xf7\xb8\xc5\xef\xb1\xd4\xef\xb1\xdc\xefq\x9b\xdf\xe3v\xbf\xc7m~\x8f\xe5~\x8f\xdb\xfc\x1e\xb7\xfb=n\xf5{\xdc\xea\xf7X\xc5\xef\xb1\x82\xdf\xe36\xbf\xc7\xad~\x8fU\xfc\x1e+\xf8=V\xf5\xfb\xb6\x80\x88&v\x16\xe7\xf6\x82}5j\xf6t\x8e\x16a\x8c\x0e\xe5\xc7{\xcf\xff\xd2\xf9\x0b\xfd\xe5A\x98\xcd\xc1\xc1\xc8\x8e\xcf\xe7a\xbab\x01\x87\xbf=\x86\x99o1\xcfqI\x92I\xc7\x14U\xdc\xf2\x960esqMAYt\xd2N\xb9\x93O\xa3b\x91\x9aRP\xaa\xa6\x18\x12\xac)U\xd8 V\x9d\x8e\x9dl\xa8\x93\x08\xecK\xe5\xf5e\xe2\xfa\xea\xd2\xc2\x82\xc9\x8c[\x17\xc2\x82a\x99`\x98\x12\x8c*u\x03\xd9\xe7\xfc<\xe6S\x81L\xf1\\\xf2A\xc2\xae\xeb\xcd\xdb?4\xd8u\xbd\x94E\x01\xfd\xc5m@`\xa9C\x17k\x0eb\x17\xddn\xaa\xc5\xe1\x96\x81\xc5\xe1\x16Bi\xcb8\\G<\xb6x\xceQ8!^\xfb\x01+A\xfeP\x80\x05+ \x8b8:m\xe1\xed\x90{(\x90\xd8\xde\x87\xeb\xf4<\x7fD\xbc\xfeJ\xa1\x7f\x1c\x18\xdbg=Lf~\xb2\x1c\xf6\x00\x12\x01;\x01\xcfC\xe0\x07\x00\x1046\x89\x83\xbd\x81C\x08\x1d\x82GJ}\x02\x84K\xdd\x02\x10\xa5\xdd3DDR\xe7\xc8\xd73R\xffPp\x10\x85\x01\xd4\xcd\x06:\xa9\xd3\xf8m>\xe3\xb7\xb9\x0c\xcbA\xe41\x1c\x0ev\x18\xbf\xcd_|Uwa\x81ro\x01\xd0rg\xe1\xe4P\xf0\x15\x98F\xee*\xfe\x93<\x05v\n,w\n\xdc\xe6\x14\xb8\xcd)X\x0e\"\xa7\xe0p\xb0S\xe06\xa7\xc0\xaaN\xc1\x02\xe5N\x01\xa0\xe5N\xc1\xc9\xa1\xe0\x140\x8d\xdc)p\x9bSPt\x0b\x8cvu%D\xee\xbd\x0e{5?\xd12\x10\xf9,\xfb\x9dfS\x9a\x08\xe4V\x99\x99aJ\x90\x90E\xc4c^R\xcd^\xa7!\xb5E\x90==7&\x95\x94\xe7F\xc7\xe8\xe4\xd9|\xfa\xb7\xc6\xeb\xf5\xfc\xe7\xea\x85\xa9@\x15\xf9\xe1S\xae\n\xbd\xa9\"\x7f\xe7A\xfd\x13\xc0\xa1\x8c$H\x1ea\xece\xeb\x89\xea\x0b\xe3\x13\xb2\xcc\xf5\xe2\xe2\x95\xff\xe5\x17\xcb\xeb\x9a\x88\x92\x82\xe5\x04|\nH\x90\xc5H@\xf5\xab0\xf6\x1e\xc3 =A\x808\xdc\xb2\xb5s\xfd#/\xdf\xc6vt\xa8\x19d\xbf\x9dg\xffL\xe8_A\xbd\x03\xa4\xc5\xc3 \xfb@P\xaf\x16\xa3\x0d\x8a\x13\x04\xd4_\x15M\xe0\xc7B+6,\x8f\xb6fU\xa3\xd0\x9c\xb4L\xa2R\xd8\xbc2\xb9Z\xcd,\x91\x8c`\x0d\xd8\x1b\x96\xc9K\x91\x9fhIj\xc7)%N\xf1\x19\xfd\xfcyS\x15\xf90\xff9\xff\xbcy\x92\x8f)\x05\x0f\x889\n\\\x805\n\\\x96q\xf6\x88c\x8b\x02\x17bZ\xbe\xe8\x93\xe7[\x14\xb0\xac\xcb\xa7$\xf7\xe2\x11\xc4{n'(\x1b\xc8\x00\xeeU\x11\xcb\xbf~N\xd6P=\x845\x1e\xa3\xd4Y\x81:\xcfKx\xad\x17\x8f\xc9\n\xcag4\xff\x04\xe1Ee\xd0\x8aE\x06\x07\xac\x97A\x85\xc6\xcb\xf9\xe4\xb6\x03\xb84\xa6jxp\x96\xca9T\x86\x02\x98PF\xc9\xf9@6\xc9\xb94&\x01\xf80\xca\xcf9\xc1\xba/uS\xaa\x1e\xd4\x0e\xa9\xe5\x9c\x13\xa8\xe4\xfbu\x92z\x8b=\xd0q\"\xdby`\xfb\x0d\xf1\xac\"\xac\xb2T\"\xedW8\xb6\xf3\xe4\xac\xa8\xbeS?\x01YsF\xa9Q|\x07\xca9\xb1\xfd\x87|\xc8\xd6\x00\x99\xab\xc2\xccQ\xbaE(\xe0+(\x01L\x0d\xd5S\xb6\x8a$\xb2\x1dT1\x83k\xb2\xf3\xd74\x1eh~\xae\x97\xa4\xb17_\xa7H\xc0\xb2\xa0\xa29\x96\x08\xb6\xf7\xe4A\x0da\xc3\xc29\xda,X1\xa3\xbaP\xc3\xaa\xe9Ar{Ul\xd8~\xd4p\xa2\xba\x91\xcc4\x15\xab\xda4<\xaf\xca\x0c43\x89\x11*\x9e\xac\x11\x1a\x96\x84% \xaer;0=\x95\xb4\x04\xd9Qk\x96P_-\x0e\xdf\xea\xccl\xebz\x81\x8d\x8bh\x9c\x88A\xb5\x1c|\xaeO\xca\xffB\x9c\x0c \xa7\x1e\xcb\xc9(9\x19\x10\xa7\x9e\x84\x93\xc9r\xea\x95\x9cz\x10'S\xc2\xa9\xcfr2KN&\xc4\xa9/\xe1d\xb1\x9c\xfa%\xa7>\xc4\xc9\x92p\x1a\xb0\x9c\xac\x92\x93\x05q\x1aH8\x0dYN\x83\x92\xd3\x00\xe24\x94p\x1a\xb1\x9c\x86%\xa7!\xc4i$\xe14f9\x8dJN#\x88\x13\xb6\x93T\xe6\x9cz\xf6?\x96\xe38\xfb\xdf\x84\xf8\x19\x085\x97Y\xd4\xa7\xcb\xd6C\xe5\xbbm7\xe8\\\x9f\xd4$\xe0\xca*\xe7e\xc8\x96o\x0d/\x83\xe0e\x00\xbc\x92U\xec\x05\x0f\x99d\x15i\x80\x966)F\x81\x00\x05)\x89\x0d\x80\xd8\xa0\x88\x0d\x85\\\xdb\x81\xe7O\xe4\xfd\x88\xc6\x9e\xbe\xa4\x86\x18>\xf7\xaaZc\x0e\x0c/\xbe\xcb\xc2\x1a\xac\xe5\xf8\xb55\xcbFmA\xf6\x9c\xcbk\x81\x04\xadK\xafgZa\xe7\xd5W<\x8e^d\xf3\xd4\xa7\xad\xb3a)\x9e\xba\xd4>\xcd\xb8\x7f\xcaj\xfbT\xab\x7f\xbf\x057+\xd1\xf3\xae\xb9a\xee\xcf\xb2\xec\x86Y?\xe3\xca\x1b\xae\xe0\xb9\x17\xdf\"\xfd?\xd7\xfa\x9b\xeabOY\x82\x8b\x18\x1d\xbb\n\x17\xf19a!.bu\xdaZ\\\xac\xa9\x13\x96\xe3\xacY\x9f\x7fE\x0e\xd6\xf0|\x8br\x90\xfd3\xaf\xcb\xc1:\xbe\xd3\xd2\x9c\xb2\xee3\xad\xce)\x9eO^\xa0\x0b\xb8\x9d\xb6F\x170;u\x99.`\xf7\xc4\x95\xba\x80\xeb\xd3\x17\xebB\xc3\x1c\xbb^\xe7\xe7\xeb',\xd9\xe5\xcc\x8e\\\xb5\xcb\x99\x1d\xb9p\x973;r\xed.gv\xe4\xf2]\xce\xec\xc8\x15\xbc\x9c\xd9\x91\x8bx9\xb3#\xd7\xf1rf\xc7/\xe5[\xfc\xf6\x89\xaby\x96\xfb\xe2i\x0bz\x90\xddS\xd6\xf4T\xf7?aY\x0f\xd3\xb3+{\x85\xa5\xbd\xc21\x9a\x9c\xa7\xff\xcc\xcb}\x9e\xdf\xb3\xaf\xf6\xfd?c\xb1\x0fTr\xc2Z\xdf?a5\xf8\xacK}P\x80\xd65\xdfs\xad\xf4\xfd\xa7,\xf4Y\xe2\x13\xd7\xf9\x90\x0cO^\xe6\x9fb\xd7?g\x95\x7f\x9a\xc1\xbf\xe3\"\xdf\xff\x9ek|\x88\xf9\xf3,\xf1!\xce\xcf\xb9\xc2\x87\xf8?\xfb\x02\x1f\xd6\xfd\xb3\xad\xef\xfdgZ\xde\xc3|\x8e^\xdd\xc3lNY\xdc\xc3\x9cN\\\xdb\x8b\xb4t\xca\xd2\xde\xff\xde+{\xa0\x82g\\\xd8\x03\xdc\x9f{]\x0fT\xf1\xbd\x96\xf5\xfe\xf3\xaf\xea\xfd\xe7\\\xd4\x83\xccN\\\xd3\x83\xbcN^\xd2\x83\xdc\x9e\xba\xa2\x07\x99>\xc3\x82^`\x93\xa3\xd7\xf3\xec\xcc\xfc\x94\xe5\xbc\x8c\xd7\xb1\xaby\x19\xafc\x17\xf32^\xc7\xae\xe5e\xbc\x8e]\xca\xcbx\x1d\xbb\x92\x97\xf1:v!/\xe3u\xec:^\xc6\xeb\x84e\xbc\xd4]\x9f\xba\x8a\x97\xae\xae\x8e^\xc4K\x17\x84'\xac\xe1\xfd\xa7-\xe1!\xf2\xe3V\xf0\xa2\xc5:~\xe6\xc5:\xcf\xef\xd9\x17\xeb\xf8\xcfX\xac\x03\x95\x9c\xb0X\xc7',\xea\x9eu\xb1\x0e\n\xd0\xbav{\xae\xc5:~\xcab\x9d%>q\xb1\x0e\xc9\xf0\xe4\xc5\xfa)v\xfds\x16\xeb\xa7\x19\xfc;.\xd6\xf1\xf7\\\xacC\xcc\x9fg\xb1\x0eq~\xce\xc5:\xc4\xff\xd9\x17\xeb\xb0\xee\x9fm\xb1\x8e\x9fi\xb1\x0e\xf39z\xb1\x0e\xb39e\xb1\x0es:q\xb1.\xd2\xd2)\x8bu\xfc\xbd\x17\xeb@\x05\xcf\xb8X\x07\xb8?\xf7b\x1d\xa8\xe2{-\xd6\xf1\xf3/\xd6\xf1s.\xd6Af'.\xd6A^'/\xd6AnO]\xac\x83L\x9fa\xb1.\xb0\xc9\xd1\x8buvf~\xcab]\xc6\xeb\xd8\xc5\xba\x8c\xd7\xb1\x8bu\x19\xafc\x17\xeb2^\xc7.\xd6e\xbc\x8e]\xac\xcbx\x1d\xbbX\x97\xf1:v\xb1.\xe3u\xc2b]\xea\xaeO]\xacKWWG/\xd6\xa5\x0b\xc2\x13\x16\xeb\xf8i\x8bu\x88\x9c[\xac3\xf4\x87\x05\x0e\xed4\x7fG\xce\xe4\x0fz-\xcc@\xe3\x12\x9a\xbf1\xa7\x05\x1b\x94\xd8\x93\xde\x82\xb4\xc8\xdf\x82\xa4.W\x83V\x12\xad\x81+\xbcYH\xfd\xfc\x81\xe6\x1f#\xb2\x7f\x94\xc4\xbe\xba\xc0\xb0l\xc7\x98\xb9\x06\xab\xc9\x86)\xd9\xa8\xd2\xc4\x0e\x12-A\xb1\xb78,\xc2 \xd5\x16\xb6\xef\xe1\xfd\xb9fG\x11FZ\xb2OR\xe4\x9f]`/x\x98\xd9\xce\x87\xfc\xd7\xd7a\x90\x9e\xd9\x1b\x14xq'@\xbb\xea\xe7\xb3\x15\xc2\x1b\x94-r\x9b\x9f:\x01Z\xa3\xb3\xf5|\x1d\xa4\xeb\xb38\x9c\x87ix\x16d\xff$h\x19\xa2\xce\xda;\xb3c\xcf\xc6g\x8d\x14\x8ct\x9c`K\x14\xc6K\xcf>\x83\xc0\xb9t\x9a\xa0E\xc2*J*\x9e\x80\xc7:\xa1\x8b\xa8\xf7\xa0e\x0f(\xa2Wa\x90\x84\xd8N\xce\xfc0\xb0\x9d0\xfbO\x98G\x13,\xa3u\xec\xa1\x98!\xcd\x9fun2\x95\x96\x00\x11}\xad`\x8a\x03\xa3\xf6\xc6\x1e\xa2\xb6\x17\x86\xa3x\x00v\x15R\xa7+\x84\xed\x84&/\x9e\x9dI\xccT\x16\xa9Z5\xf5|D\xd7\x91?\x81\xa0\xf3\xd0\x0d\x03\x8f\xc2^\xe4\x8f:\xb3\x8f\x10\xde\xb1\xb1\x97\xa4!m\x85\xe2\x99\x80bi\xc7\xb6\x1f\x06.-|\xf9\x10\x14\xc9N\x1eP\xbc\xf10\xa6\xfd\x84x\x0e\x91\x95\x8d(>\xa1\xe5\xa56\xf6\x98\x0f_/\x12\xad\xc8\xc3\x91\xc0\xe2\x89\xc2`I\x8f=\xf9;\xafT\xebc\xb0e\x95\nu*\x0c\xd0^6\x88\xaa\xca\xe1\x1f-\x06X#V\xaf\x11\xd25\x8d%M\xb2-r\xc8}\xee\x93\xefT1\xf7E\xf8\xc5\xd6\xa0\x00\x06\x0f\xe8Q\x80\x1e\x0f0)\x00\xf7y\xfa\xc5\xb6/\x17q\xb1\xb5(\x80\xc5\x03\x06\x14`\xc0\x03\x86m\xcd\x1cQ\x80\x11\x0f\x18S\x80\xb1~\xfc\x9b\xba\x19\x8f\x15Z\x84E@Fa1\x90]X\x0cd\x1a\x16\x03Y\xa7U\xe2E\xf1\xb9\xb36\x1b\xb1\x18\xc8L\nm\x1f\xb1\x18\xc8X,&\xb3\x97\x82\xc1\x14F\x05\xba\xbf\x8b\x8d\xe8\xb7\xb5\xc3` \xa0 \xfdv\x0b\xfa\xed\x06l\x11v\x91\x7f\xed\xac\xd5|~\xbb\xf5Z\x1b=b \xa0\xed\xfc#M'\xb6R\xdb\xe0\xc7\x00@+\xe1v+\xe1v+\xe1v+\xb5\x08\xbb\xc8?v\xd6j%\xdcn\xa5\xd6F\x8f\x18\x08h%\xcc[\x89\xc2xA\xb4N\xb5\x18%\xa8\xb9\xdfnG\x11\xb2c;p\x8a/qN4?|d\x1f2&Z\xa7i\x18\x14l\xce\xcfs\xfc\"t\xd6\x89\xe6\x05\x01\xfb\x16`\xa2F\x1eZ~\x86\xed\\\x9fD\xb6\xebz\xc1\x92]\x18\xaf\x8cC\xb9\xd1\xca\xbf>y\xd5\xab\xca\xf8\xd7\x19\xaf\xcc\xaa\xac\xcf\x97\xf5\xab\xb2\x11_f\xd5\xf5\x0d\xf8B\xadW\x17\xf7\xac\x17l\xa1\xa5W\x85\x16\xfb\xa9\xe5\x956\xac)\x87<\xa5\xa1\xd7\xa4\xfcg\x9a\xf3\xcd\xe6\x1cBl;\xf3\xb0\x0d-\xddf\xc5\x15\x93\xf2\x01\xc5\xa4\x84@1-#\x0b\xc8D\xdb@R\xb2\xc0U\xf1\xce\xb9\x12\x90\xfd\xcc\x96{\xc1\n\xc5^ZA\xca_\x15\xe6\x89\x03\xe39\xd9t#q\x1e\xa2\x18\xf2\x1f\xa2\x18r!\xa2\x18\xf2\"\xb2n\xd8\x91\xc8\xea!_\"\xcaAw\"\xcaa\x8f\"E\x10;U\x86j\xf7+JX\xd0\xb5(qA\xef\xa2\x04\x86\x1d\x8c\x16Y\xecc\xbc\xd0\xb0\x9b\x11\xfc$\x9eF\xa0*gS\xf06\x85\xa8d\x95E\x132\x0f\xf4\xa5\x0e\xe8K\xfd\xcf\x97\xba\x9f\xdf\xe6}\xbe\xdc\xf9|\xb9\xef\xf9-\xae\xe7\xabx\x9e\xaf\xe2x~\x9b\xdf\xf9mn\xe7\xb7z\x9d\xaf\xe6t\xac\xbc\x02\x9f\xf3U\\\xce?\xce\xe3`\xe7\xc2R\xe7\xc2R\xe7\xc2R\xe7\xc2R\xe7\xc2m\xce\x85\xe5\xce\x85\xe5\xce\x85[\x9c\x0b\xab8\x17Vq.\xdc\xe6\\\xb8\xcd\xb9p\xabsa5\xe7b\xe5\x158\x17Vq.\xcc9\x17\x05Lc\xdby@\xee\x01\xa34E\xb1\x96D\xb6\x93E^]\x83\xfb>E\x01\xd4\xd2\x8c\x19\x0b\xd7\xba\xba%\"\xf0\xd1\xd2\xe6\xd8\xf72x\xfb\xb8z\x009\xe6\xdf/:F\\\x80\xa2Mb\xa8\x92\\h\x05\xa9\x15f\x83\xba\xaac[\xc2\x11\xb46\x84\xafB\xa1\x1d\x12\x91\xf1\xb1\"s\x04\xad\"\xf3U\x14\"S\x14x\xa5%!\xf6\xdcC\xbe\x8f^u\x16\x0e\x93z)F4\xa6\xdb\xb38\x98\x13F{\x06e)\x98\xfa\x00\x8a\x94;O\xbbT\x1cL$\x18\x0f\xb4\x9e\xc9\x0fk\x89}%\x81}EyY\\\x9b\xb82\xc9\xb0\x92dXQ2\x16g\xb1^\xe5\x05\x0f\x87\x14\xedR\xcdEN\x18\xdb\xe5 Vv\xd1\x9b\xc1\xce\xb8'\xe7\xb6\x93z\x1b\x04\x14\xe4\xcb\\\xe0\xf9*\xdc\xb0k\xe4\xfc\xb9\x80\xff\xc6K\xbc\x145o\x1cMc;H\xbc\xea\\g\x18w\xba\x86\x95t\x90\x9d \xcd\x0b&\xd2R\xbe=\x85\x90\x87p\x9df*:7\xa2]\xc7\x0d\xd3\x14\xb9\x1dg\x1d\xc7(H_eLX\xba$=d\xff\x14Yn-\xddGP\x8e\xc0\xdf\x16\xab\xc1\xda\x15\x81\xd9zk\x90\xe5\\,\xe1o{D9\x1f\xc6\xf8[\x93(\xe7\x03\x19\x7f\xdb'\xca\xf9P\xc6\xdfZd\xfd|0\xe3o\x07\x04\xc0\x84$\x18\x92\x12@U\x8c\x08\xc0\x00\x92qL\x00\xc6\x90\x0c\xc5+\xd4\x1b\xd0I\x9b\xf1\x859\xf2\x85\x93\xdc\"\x0c\x042\n\x0d\x01\xedBC@\xd3\xd0\x10\xd0:\x8c,\xa0\x81h\x0cl#F\x1a\xd0L4\x06\xb6\x14\x8d\x11\x1b\x8b\xc6)\xec\xf6\xab\x8e\xdd\xa5\x15\xfdV#\xfa\xad6\xf4[M\xe8\xb7Z\xd0o5\xa0\xdfn?\xbf\xdd|~\xbb\xf5\xfcv\xe3\xf9j\xb6\xf3\x8f3\x9d\xd8J\xb8\xd5J\xb8\xd5J\xb8\xd5J\xb8\xd5J\xb8\xd5J\xb8\xddJ\xb8\xddJ\xb8\xddJ\xb8\xddJX\xcdJ\x98\xb3\x12\x05\xdb\x1a\x07\x91Z\xb7\xbd\x83H\x9f[\xf3 R\xe4\xb6\x7f\x10ipk\x1d\x84\xaa\xcb<\xa1*e=`\xab\xf5\xaa\xb2\x1ePVq\xe5\xd6\xd0[\xcd\xac\xe8L\x9e\xce\xac\xda`\x9a|Y\xd5\x08\xb3\xcf\x95\xf5+\x9e}\x9e\xa7U\x95q\x0b\xf6\xad6\xa8\xca\x06|\xd9\xb0*\x1b\x02eU\xfb\xb8U\xfeV\x1bUt#\x9en\\\x95\x8d\xf9\xb2,\xe0\x10\xf5\xb7\xad\x96\xae\xbc\xd8\xad\x95\xd35\xb3\xff\xf1\xa0mX\x00\x93\xaaY\x83\xee`0\x18\x0c9d\x9e\xc7.0\xf9b\xbc}\x80?0.\x9aM\x13b/mJ!GmJ!_mJ!w%\xea\x85=\x96\x00@NKH\x06\xf9-Q\x0c\xb9nS\x0cz/Q\x0c90Q\x0c\xf90\xa1\x16\xc8\x8d\x9bb\xd0\x93\x9bb\xd0\x99\x9bb\xd0\x9f\x89b\xc8\xa5 \x9b@^\xdd\x14\xc3\x8eM\xdaD\xe0\xdb\xa4\xeaZ\xdd\x9bh\xab\xcc\xc3\x1bX\xee\xe4\n^\xae\x10\xc6\xe4\x01\x8a\xc4\xf3}\x99\xe3\xfb2\xbf\xf7en\xef\xb7x\xbd/uz_\xea\xf3\xbe\xd4\xe5}\xa9\xc7\xfbR\x87\xf7\xa5\xfe\xeeK\xdd\xdd\x97z\xbb/uv_\xea\xeb\xbe\xd4\xd5}\xa9\xa7\xfbrG\xf7[\xfd\xdc?\xc2\xcd}%/\xf7\xd5\x9d\x1c\xf6g,\xf3g,\xf3g,\xf3g,\xf3g\xdc\xe2\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xea\xcfX\xee\xcf\xb8\xd5\x9f\xf1\x11\xfe\x8c\x95\xfc\x19S\xfeL!\xc2\x0d\x8a\x178\xdcj\x1b/\xf1\xe6\x18\x1d\xaa\x07\xe7\xe5\x03\x01|\xe5\xb9.\n\x1at\xf1\xbb\x00\x9c8q\x88q\x03.~\x17\x80\xf3H\xaa\x86\xf2;\x1b5p\xc7\xc9\xac\xedZ\xa4\xde\xb1rk;\xb9\xe4;Vvm'\x97~G\xcb\xaf\xedd-\xd8\xf3-\xd8\xb7\xb4`\xcf\xb5`/o\xc1\x9ek\xc1^\xde\x82=\xd3\x82\xfdi\x01-\xebXY\xe8p\x94oQ\x04\n\xeeE\xe1[=\x8cB\xab8\x19I\xa0\xecg\x0c\x91\x92\xab14\n\xde\xc6P\xa88\x1cE\xa2\xeas\x0c\x91\x92\xdb14\n\x9e\xc7P(\xcc\xc1\xaa\x81&\xe7\x92\xfe\x91\x1e\xe9\x1f\xe7\x90\xfe1\xfe\xe8\x1f\xe9\x8e\xfe \xde\xe8\x1f\xef\x8c\xfe\xb1\xbe\xe8\x1f\xed\x8a\xfe \x9e\xe8\x1f\xef\x88\xfe\xb1~\xe8\x1f\xe9\x86*\x1e\x87\x8f\xf48|\x9c\xc7\x1d3\xc7\x92`%\x8f\xc3'x\x1c>\xde\xe3\x8e\x9dki\x02%\x8f\xc3'x\x1c>\xde\xe3\x8e\x9dsi\x02 XKR;\xf5\x9cCq\x055\xcc\xdf\x8d\x91\xb2\xb7Ob\x84\xf3;\xa2\x0d\xaazB\xe3\xecy\x12\xe2uJ\xe0\xaa'4\xae\xf8\xa8~\x0d\xca\x7fU\x18\x8e\x0f\x80\xe0\xd9\xc8\xae$;\x05\x94\x8bOA%-\xa0pE#\x14Z\xa10\xa9\x94M\xf3\x15[\xe6+7\xccWk\x97\x7f\\\xb3\xc4-\xc0\x8a-\xc0\xca-\xc0j-\xc0\\\x0b\xe8N\x92'r\xc3\xc8v\xbct\xcf\xbdu@\x1b7e\xdd1[8\"\n\xd9\xbb\xe9\xda\x90(d/\xc1k\x03\xa2\x90\xbdm\xafYD!{\xad_\xeb\x13\x85\xec\xfb\x034\x93(d_T\xa0\xf5\x88B\xf6\x8d\x08\x9aA\x14rJ\xd0\xad\xa6P\xe7$\xd2{d1{0\"\xd4\x1a\xce\xccy\xfb8L\xed\x14i}\x8b>o\xb0\x08c\xff\xbc(\xfb\xb1o\xb9h\xf9\xd3D\xf0\x1cd7\xd6\xc5\xec\xc6:\xcc\xaex\x0e\xb23L\x89x\x86)\x90\xaf,\x809\x8e$\x12\x1a#\x81\x88e\x01\xc8\xb1\xd7\x93\xc8\xd8\xeb d,\x0b`\x8eC\x89\x8c\xbd\xa1@\xc6\xb2\x00\xe4h\x1a\x12\x19MC cY\xa00\x96\x1e`\xd7\xd2\x88\x0f\x1c<\x8fwI9\x9e\xe6`R\x96\xa7\xfa\x98\x9c\xe9\x89n&ez\xaa\xa7\xc9\x99\x9e\xe8lR\xa6\xad\xfe\xa6\xe0p\n\x93w\xe3\x85\xfes;\xa1\x84\xe1\x89>(\xe1x\xb2\x0b\xcax\x9e\xea\x81\x12\x9e';\xa0\x8c\xe7\xa9\xfe'\xe1\xf9D\xf7\x93z\x1a~nO\x930<\xd1\xd3$\x1cO\xf64\x19\xcfS=M\xc2\xf3dO\x93\xf1<\xd5\xd3$<\xdb=\x8db:\xc7\xb6\xf3\x90EP\xf9y\xce\xf3x9\xb7\x7f\xd4\xcf\xb2?\xdd\xf1O\x10t\x04AG t\x08A\x87 t\x00A\x07 \xd4\x82\xa0\x16\x08\xedC\xd0>\x085!\xa8 B{\x10\xb4\x07B\x0d\x08j\x80P\xdd\x02\xa0:\xdb\xae\xed\xca+\x02\xde\x02\xbbJp\x8e}qf\xe8\xfa\x0b\xded\x05|$\x82\xb3f+\xe0C\x11\x9c5]\x01\x1f\x88\xe0\xac\xf9\n\xb8%\x82\xc3M\xed\x8b\xe0\xac\x19\x0b\xb8)\x82\xb3\xa6,\xe0=\x11\x9c5g\x017Dp\xd0\xa4%\xf6\xaf:{\x93:@v\xacQ\x10\xc3`V`\xae\x1d?h\xcb\xd8\xdeW\x08\xd3dVw\xbe\xe7R\x00\xcbb\x96ad\xe1p\xc8\xacG\x13\x0foP\\\x15s\xefB\xc3\xf95\x0b\x1ad\xdb6#A\x18\x06\x94\x08\x8e\xe3@lH\x08B\x08\xd0E\xae\xdd\n\xb2\xe8g\x7f\x00\xf5\xd7\x80\xc5\x02PV\x8c\xdc\xba\x92\xa1\xde\xd7\x19\x0cQ\xbcX\xf4\x0ds\x00IJ\x81\x86=\x8biN\x18\xdb\xc1\x92\x10c\xc0]\xe9_\x86\x98\xe00\xe7\xae\xd9\xef\x11\xc6\xe1\xb6Dd`H\n\n\xf4\xd7\xc5|a\xd8\x8cy\xa2u\x1c\xe1Z\x10\x0b\xf5\x1c\x9b\xbd\x9c\x90s\xa2qv\x7f`.z\x80\xea\"/\xa8=\xd1\xb5t}\xc4\xe8n\x15\xa6\x14&S\xe0\x9c\xb1\x10]>\xd2aW\xa0Q\xb6\xe9\x0eA\xb7G(\xa8{\x869\x1cZ=\xd6\xb3I\xc0\xd8\x1e\x0f\xfb\xb0\xdf\x11\xb01Bs\x87iW`o\xf6M'5\xe6\xfd> \xcd\x1c\xafQ\x03\xea\xf7\xc7\xec\xcb\n\x88r\xd3\x1a\"\x17\xb4)\x89\x1a\x0f\x1c\x87u\xe1\x1c\x85\x12\x1a\xe8\xb8\x88\x03n\xedd\x85\\\n\xb6\x18,\x16\x0b\x04\xc2(\x15\xa0\xd1\xc2]X \x8eq\xb9\xc5\xc2As\x10H\xf5\x10w\xe1ro'\xc3a\\_\xb1/\x80\xd5-AZkK\xad\x8e<\xe6\xb6\xf3\xb0,\xde\x91ZPH\x83\x90\x8ap\xd4B\xc8\x85$\x15\xe1\xb0\x85\x90\x0bP*\xc2A\x0b!\x17\xaeT\x84V\x0b!\x17\xbcT\x84\xfd\x16B.\x94\xa9\x08\xcd\x16B.\xb0\xa9\x08{-\x84\\\x98S\x11\x1a-\x84\xdc\x0cY\x11\xea\x96\x9c\x90\x0b\x81\xe6K\xad\x8e\x828\xca\xb6\x80\xa8&\x86\xdc\xa7-<\xaa\x89!\x17j\x0b\x96jb\xc8\x8d\xdaB\xa7\x9a\x18r\xa5\xb6@\xaa&\x86\xdc\xa9-\xac\xaa\x89!\x97j\x0b\xb2jb\xc8\xad\xdaB\xae\x9a\x18r\xad\xd6\x00\xact/\x9e\x92\x0f\xc7\xe6K\x8d\x88\xc8x\x02.8\x9b/\xb5&>\xe3\xf1\\\xa86_ju\xb4\xc6\xc3\xb9\xc0m\xbe\x14A\xb90n\xbe\xac\x824\x1e\xcc\x05u\xf3\xa5F\xc5u< \x17\xe2e\x92\xd7Q\x1e\x8f\xe7\x02\xbe\xba\n\x01\x01\x17\xfeU\xba/\x02<\x9e\x00\n\x06+\xc7\x80\xe0\xect9_\x16+\xe4\xc8\x8eQ\x90\xf2\x14D!l\xe3l\xc2\x03\xda\x01D\x98\xf3\xa5\x00\x0c\xc5\x9b\xb5\xa2D$|\xf49_je\x00\n\xe1\xf9X4s\xa3,\x1c\x85\xd0|d:_VA\x00\x87\xe7\xe3\xd4Zz\x11 \x18\xb5\xce\x97U@\nt\x02 \x86\xadk\x11RA\x11me\xb8<\xd4\xe4I\xa0\xf8v\xbe\xd4\xea\x10\x176\x1f\x1b\xedfM\x11\xa1\xf9\xd8\xb7i\x88\x88\x86\x8f\x84\x9b1&\x8b\xe0\x80A \x88\x8b\xf3\x81C\x00\x07\xa2d\xa2\xb3\xc2DP\xcc\x9cu\xd8,l\x86\xc6U>\x82\xaeZ\x91\x87\xab\x10 \x10O/Eh(\xba\xae\xdb \xa0\x81b\xed\x8a\xa6\x0e\xb7\x81\x81\x0d\x88\xbc\xb3a\x87\x08\xbe\x013\x02qxC$R2\x14\x957T\xe2\x0e\x06\xc4\xe8\x0d\x99hT\xe1#\xf6\xf9\xb2\x0e\xd79\x020r\xcf\xef\x97\x17s%t\x07\x9d,\xce\x7fn\xd6N\xec\xbb\xd7rd3\xf3\x8a\xb9\x11\x18\x8a%71\x17\xf0zn\x16sl \x14Cn\xe6.\xd0\xd5\xe4-\xe6W#(v\xdc\xcc^\x80\xe5\xacx6\xdc\xac_\x00\x8bY\\\xcc\xa8,\xa7Xq1A\x01%\xc3\x021C\nE\xb1\xe5\xe2\x86R+U\xe8 Q\\\x0d\xa1\x18r\x81\x05)\x81\x9c#\x81\xa1Xr\xa1\x07\xe1[y8\xd1\xe2\x7f\x05\x86b \x05'\x05E\x0bC\x88\x17;\xdc\x10\x1dI\x1b\xeb-]-C\x90\xecd+h\x92l\xd4\xcax$f\xcc.\x8fH\xb2a+\xe3\xa1\x981\xbbt\"\xc9\x06\xad\x8c\x07b\xc6\xec\xb2\x8a$\xb3Z\x19[b\xc6\xec\x92\x8b$\xeb\xb72\xee\x8b\x19\xb3\xcb1\x92\xcclel\x8a\x19\xb3K5\x92\xac\xd7\xca\xb8'f\xcc.\xe3H2\xa3\x95\xb1!f\xcc.\xf1\x88\xae$\xed 5\x82d\xdc\x96' Ie\x9d\xa4F\xc8\x98\xc3\x1d\xa5J%\xb41\x1f\xca\x99\xc3\x9d\xa5J5\xb41\x1f\xc8\x99\xc3\x1d\xa6JE\xb41\xb7\xe4\xcc\xe1NS\xa5*\xda\x98\xf7\xe5\xcc\xe1\x8eS\xa52\xda\x98\x9br\xe6p\xe7\xa9R\x1dm\xcc{r\xe6p\x07\xaaR!m\xcc\x0d9s\xb8\x13\x95\x81\x9e\x98w\x05 Y\xcb\xa2\xc3e[HW#\n\x8e\xd0\xd2\x00\x0c\x17\xa9\\\x8d\x94=\x174\x02\x8b\"8~$\xd3;\xd2*\xd8(\x12X\xb2\xc0\x01%\x91\x10\x92V\xc0\x84\x95\xc0\xb2\x19\x8e0\xcb\x0c\x92\x94\xb7\x94\xaf \xe4\xac\xd3MR\xceT\x84\x08,\xc9\xe0\x18\x94\xc9NIk\x00\"Q 9\x00\x07\xa5dJK\xae|&4\x05V\x89p\x94J%\xc1\x14\xda!\xadC\x10\xb6Ry\xb3\xf6~@\x06\x9c\xc0\xbaP\x18\xc7V\xa96i\x0d-\xcc\x05\x81-\x95\x98\x93\xf2'q\x82Z\x84i\xbc\x9a\x89B \xbddci\xae\x1a\x85\xb0z\xa9\x12Y/\xd9\xe0ZZ\x93 \xce^\xaa\x84\xdaK6\xda\x96\xd6$\x08\xbc\x97*\xb1\xf7\x92\x0d\xbf\xa55 \"\xf1\xa5J0\xbed\xe3qiM\x82\xd0|\xa9\x12\x9d/\xd9\x00]Z\x93 V_\xaa\x84\xebK6b\x97\xd6$\x08\xde\x97*\xf1\xfb\x92\x0d\xe1\xa55 \xa2\xf9\xa5J@\xbfdcziMpdBl\xf6\xb5\x8fA\x92\x9e\xab\x16\xef\x13\xbb\x83\n\xb5\x89{\xaf\xda\x02\x80\xd8NT\xa8M\xdc\x83\xd5V\x04\xc4\xfe\xa3Bm\xe2^\xac\xb6D 6,\x15j\x13\xf7d\xb55\x03\xb1\xc3\xa9P\x9b\xb87\xab-\"\x88-Q\x85\xda\xc4=ZmUA\xec\xa1*\xd4&\xee\xd5j\xcb\x0cb\xd3U\xa16q\xcfV[wT;l\xe2\xaajDQO\x15\x14\x01\xdbo\x05^\xca\x8c\xe3\x03\xed\xcc\x15\xd0zsN\xcc\xad\x810<\xf9\xad\xbb\x82\xa0\xd8\xbd\x133,\xcb\x19n\xfc\xc6^\x81^\x86X\"\\^\xcap\xe27\xfd\nl\xb1\xc7 \xe6U\x96\x93\xdc\xf8-AR'm\x0c)\x14-$\xb0mX\xd0\x14{\x80b\x9ee9\xc5\x0d\xdaT$%h\xe3I\xa1(\xce\xd0\xc6#\xe1\xb0\x91\xe0\x05\xbd,\x84\xe2 \x9f\xbc\xcb\x08\xaa\xcdI1\xcb\x1a\xc1\xb97\xbbsYjK\xca\x0d\xe2\xc4\xefjR:\x92\xf2#0\x0cW~\xdf\x93PQ\xbec\xd6\xa2\xc6\x02Cq\x85vF\xcbN!g\x08\xf1\x02\xb6M\xc96\xb5p$A\x14_hg\xb5 \xec\x8dd\xcd\x98\x97R\x9c\xa0]WB?s\xbc\x968x\x03ax\xf2\xdb\xb2\x05\x81\x9c\x1d\xcf \xda\xb2%U#\xe7G`h\xed\x01\x9b\xba\x04E\xb5\xaf\xdb\xc2\xb8\x86Q\xbc\xa1\x9d\xdf\x82\x88\xd8\xfc\x15s&A\xb4\xaf\x03\x9b\xc3\x14I\x8b+Q(\x8a3\xb4\x81L\xd1\xb4\x0d\xc74\x8c\x96\x1a\xd8e\xa6\x88\xa43$\x81a\xb8\xf2\xfb\xd0\xa5\x07-\x15b\x02\x12T\xf0\x05\xd2&\xc2\x08\xa18\xa6#\xe5.c,\x0e\x19\xc8#=R\xf6l\xe0\x00U\"\x8a!\xeaC@\xd2\x1a\xa8H\x02b/\n*\xca3CR\xe6Dh\x01\xb1\x16E\x19\xf5\x01#)s\xca 9\xf6\xa2\xb0\x839\x8f\xa4\xa0}y=\x928\xa4>\xc4$\xad\x84\x8a\x19x\xf6\xe2\xc0\x849\xf3\xa4\xd0\x92\x96\xaa\xc4\x91\nyP\xaa\xbd\xb3\x11\xb37_\x898t!\x8eVI\xeb`\x02\x18\xb8\xdf\xc1\xb1Ly\x16Kn\x0f9kQpC\x1d\xdcR\xb1\x85\xbc\x1aQ\xb4C\x9d\xf5j7\x059\x07\xf0\xd5\x88\xc3\x9f\xeax\x98\xbcw\xcb\x99\x0b\xe3!\xfa0\x99\x82\xae\xe4\x15\x89\x03\xa4\xf2\x00\x9a\xb4\x06\"L\xe2Y\x8b#&\xf2\xb4Z\xbb\x19\x889\x1e\xaaD\x18B-\xdb\xf9KY\x8bc*\xea0\x9c\x82 \xa4\xd5\x88\x83,\xf6\xfc\\{ML\xa8\xc5W&\x8e\xba\xe8Sw\xd2\xaa\xf8\xd8\x0b\xe8\x84\xc20\x8c9\xa9\xa7R\x93\xdc\x85\xc5q\x19{\xbcO\xa5\xae\xb6 K\x18\xa8Q\x87\x02Uj\x92\x07&\x92\xc8\xadu\x17\x99\xc0\x08*\x00\xf7\x94#[?\x08\xbe\xdf\x1a\xd9F]\xd4\xedY\xdc{j#\xbb\xd7\x94C\xc5f]\xcc\xbfY7\xb2\xfbu)\xffj\xdd\xc8\xb6\xeaR\xfe\xdd\xba\x91=\xa8K\xf9\x97\xebF\xf6\xb0\xa9\x97\x7f\xbbn\x84\xeb\x06k\x18-R\xae\xd5\xd8\xa0\xcb\xc1\xa6\xe3\x1e\x03\x820&\x8d\x01\x94\x80\xfb4\x04\xd0\x04\xb6h\x08\xa0\x0e<\xa0!\x80N\xf0\x90\x91\x05PL\xdc(&\xce\x06\x16N3\xb1\xc1\x00@\xd5\xc4=\x16\x05\x81L\x06\x04('\xee3\x18@;\xb1\xc5`\x00\xf5\xc4\x03\x06\x03\xe8'\x1e\xb2\xf2\x00\n\x9a7\n\x9a\x87i\x1a\xfa\x9c\x86\xe6\x06\x8b\x00U4\xefq0\x08e\xb2(@I\xf3>\x0b\x02\xb44\xb7X\x10\xa0\xa6\xf9\x80\x05\x01z\x9a\x0f9\x99\x00E\xa5\x8d\xa2\xd20\xe2\xb4\x94\x1aT1\xa8\xa2\xb4Gc \x88IA\x00\xe5\xa4}\n\x01h&\xb5(\x04\xa0\x96t@!\x00\x9d\xa4CZ\x0e@!\x1bF!\x93\x16?\xda@\x1ab\x89@\xbdm\x00\xbdq\x84\x10\x1d\xafL\x96\x0cP\xf0\x86W0K\x05(}\xc3+\x9d\xa5\x02\x0c\xb1\xe1\x0d\xc1R\x01\xc6\xd9\x00\xc6\xe1\x1a\x06Xl\xc5\xce\x125\x11<6\xae\xc0Y\x83!\x02-\xb6\x82\xa6\x12\x96\x10\xa2\x03\xa6\x17\x86\x0c\xb0\xd8\n\x98q\x18*\xc0b+`\x12b\xa8\x00\x8b\xad\x80y\x89\xa1\x02,\xb6\x82\xa6*\xb6a\xc0\xc7\x85l\xfd\xe0\xdb\xf1\xd2\x0bX\xdb\xf8\xb6Q\x95@\x06\xf0\xed^]\x0c\x95\x9aU)\xf0\x95'\xbb_\x15\x02\x9fU\xb2\xad\xaa\x10\xf8Z\x92=\xa8\n\x81\xaf-\xd9\xc3\xbaN\xa0\xa1\xb8j(\x18\xbf\xf8\xd8\xa0\x8a\xc1&\xe3\x1e\x8d\x81 &\x05\x01\x1a\x8f\xfb\x14\x02\xd0\x00\xb6(\x04\xa0\x06<\xa0\x10\x80.\xf0\x90\x96\x03PH\\+\x04\xec\x9b~l\xd0\xe5\xa0J\xe2\x1e\x03\x820&\x8d\x01\x94\x12\xf7i\x08\xa0\x95\xd8\xa2!\x80Z\xe2\x01\x0d\x01\xf4\x12\x0f\x19Y\x00\xc5\xcck\xc5\xc0\xf3\x8c?7\x18\x00\xa8\x9ay\x8fEA \x93\x01\x01\xca\x99\xf7\x19\x0c\xa0\x9d\xb9\xc5`\x00\xf5\xcc\x07\x0c\x06\xd0\xcf|\xc8\xca\x03((\xad\x15\x04\xc4)~j\x90\xa5\xa0j\xd2\x1e\x05\x81\x10&\x89\x00\x94\x92\xf6I\x00\xa0\x91\xd4\"\x01\x80:\xd2\x01 \x00t\x91\x0e)\x19\x00ElhEL\xe4n\xb3\x01\x143Qp\xa4\x0d\xaf-\x96\x0c\xa2\xe248i\xf5\xb4\x0d\xa7\xd4I\xab\xe7m8=OZ=q\xc3\xa9~\xd2\xea\x99\x1b\xde\x1al\x83\x00\x0b\xad\x98Q\xbf\"\x81\x87\xbc\x154 \xd0$\xa0\x85V\xc0\xc4\xc0\x90AT\xfc\\A\x13\x01\x16Z\xf1\xb3\x07M\x03Xh\xc5\xcf'4\x0d`\xa1\x15?\xc3\xd04\x80\x85V\xc0\x9c\xc34(\xb7P\xfb[-\xe9\xd7\nFv\xfer\xce2\x96\x01\xf2-d\xa9 \xe5BA \x84I\"\xc0\xc4\x0b \x00s/$\x00L\xbf\x90\x000\x03C\xc9\x00&a\x08\x84(\x0f\xc3A\x04\xa9\x18\x1e\x07\xc1L\x0e\x06&d8\x14\x98\x93\xe1P`Z\x86C\x81\x99\x19^.09C\xc2D\xf9\x19\x1e#H\xd1\x00@\x08g\xf280Q\xc3\xc3\xc0\\\x0d\x0f\x03\xd35<\x0c\xcc\xd8\x00\xb2\x81I\x1b\x12'\xcc\xdb\x00 A\xea\x06BB@\x13\x00\x82 \x1c\x00\x07\xe6p\x00\x1c\x98\xc6\x01p`&\x07\x92\x0fL\xe6\x90@8\x9f\xc3\"\x04)\x1d\x0e\x06\xa1L\x16\x05&vX\x10\x98\xdbaA`z\x87\x05\x81\x19\x1eN&0\xc9\xc3)\xaa=\xcf\x03kN1\xd5\x03\xeaS-\xdb\x03)Y)\xe1\x03)^)\xe7\x03\x19C)\xed\x03\x19H)\xf3\x03\x1aM-\xf9C\x92*\xe6\x7f8\x92cR@<1D\x0b\x91\xc2\xd3\x9aJ\"\x88#T\xcd\x05q\x84\xaa\xe9 \x8eP5#\xc4\xb7Q9)\xa4\xe5\xdfs\x8f\xe1\xbc\x10Q(H\x0d\x91\x08\x08`\x12\x000AD\x94\x839\"\xa2\x1cL\x13\x11\xe5`\xa6\x88\xac\x1fL\x165\x00Q\xbe\x88E\x08RF\x1c\x0cB\x99,\nL\x1c\xb1 0w\xc4\x82\xc0\xf4\x11\x0b\x023H\x9cL`\x12\x89@\x89\xf2H\x1cD\x90J\xe2q\x10\xcc\xe4``B\x89C\x819%\x0e\x05\xa6\x958\x14\x98Y\xe2\xe5\x02\x93K\x04L\x98_\xe21\x82\x14\x13\x00\x84p&\x8f\x03\x13M<\x0c\xcc5\xf100\xdd\xc4\xc3\xc0\x8c\x13 \x1b\x98t\"pp\xde\x89\x01\x08RO,\n\x02\x99\x0c\x08L@1\x180\x07\xc5`\xc04\x14\x83\x013Q\xac<`2\x8aUPk>\nT\x98ZJ\n\xd2\xa2RV\n\xd0\xacJb\nP\xb6Jn\n\xd0\xbfJz\n0\x89J\x86\n\xb2\x92R\x92\x8a T\xcbS\xb1\x04G\xa4\xaa8R\x80\x12\"\x04\xe7(\x85\x84\x15K\xa6\x98\xb3b\xc9\x14\xd3V,\x99b\xe6\x8ak\x9b(y\xa5\x90\xbdR\xf8&Kd\xeb\x9a_\xc5fPF\xab)\x14%\xb4\x08\x04\x040 \x00\x9c\xcej\xca\xe1lVS\x0e'\xb3\x9ar8\x97E\xd4\x0f\xa7\xb2|f\xad\xc0\"\x0c\x16!Jd\xb10\x08e\xb2(8\x8d\xe5\xf3\xb1=\x0b\xb2X\x10\x9c\xc4\xf2\xf9\x98\x9d\x05\x0d9\x99\xe0\x14V\x83\x12f\xb0X\x88(\x81\xc5\xe1 \x98\xc9\xc1\xe0\xf4\x15\x8b\x82\xb3W,\nN^\xb1(8w\xc5\xc9\x05\xa7\xae\x1a\x988s\xc5aD\x89+\x1e\x08\xe1L\x1e\x07\xa7\xad8\x18\x9c\xb5\xe2`p\xd2\x8a\x83\xc19+^68e\xd5\xe0\x04\x19+\x1a JX1(\x08d2 8]Ec\xe0l\x15\x8d\x81\x93U4\x06\xceU1\xf2\xc0\xa9*FA\n\x99*Hc\xaa\x89*@\x8f\x8ay*^\xb9ji*^\xe1jY*\xde\x08jI*\xde0j9*\xc0X\x8a)\xaa\x86R5C\xc5P\x1c\x95\xa0bi!R\x88\x12\x9c\xae\x94\xd2S\x0c\x9drv\x8a\xa1SNN1t\xca\xb9)\xb6}\xea\xa9)\xbf\x8c\xd4\xa0\xccT]&JL5\x00\xa8\xdcl\xca\xe1\xb4T]\x0cg\xa5\xeab8)U\x17\xc39\xa9\xa6n8%\xe5\xd3k\x04\x16`0\x00QB\xca\xe7\xc3\x7f\x16d2 8\x1d\xe5sq=\x8b\xb1\x18\x0c\x9c\x8c\xf2\xb9\x88\x9d\xc5\x0cYy\xe0TT\x0d\x12f\xa2\x18\x84(\x11\xc5\xc2 \x94\xc9\xa2\xe04\x14\x03\x82\xb3P\x0c\x08NB1 8\x07\xc5\xca\x04\xa7\xa0j\x948\x03\xc5BD (\x0e\x07\xc1L\x0e\x06\xa7\x9fX\x14\x9c}bQp\xf2\x89E\xc1\xb9'N.8\xf5T\xc3\x04\x99'\xaa\\\x94x\xa2A\x10\xc6\xa41p\xda\x89\x82\xc0Y'\n\x02'\x9d(\x08\x9cs\xa2e\x81SN\xb4b\xda3N\x80\xa2\x14\x13N\xbc\xf6\xd4\xf2M\x9cF\x95\xd2M\x9c\x92\x95\xb2M\x9c\xde\x95\x92M\x9c)\x94rM\xbcu\xd4RM5\x9db\xa6\x89\xc6\x1f\x93hb(\x01B\x88\x0e\x9a{T\xd2L4\x95j\x96\x89\xa6RM2\xd1T\xaa9&\xa6]\xa7\xa5\x98\x04\xd9$\\\x85SP6\xa9)\x14e\x93\x08\x04\x040 \x00\x9cMj\xca\xe1lRS\x0eg\x93\x9ar8\x9bD\xd4\x0fg\x930\x13\xd7\xb3\x08\x83E\x88\xb2I,\x0cB\x99,\n\xce&a>\x16gA\x16\x0b\x82\xb3I\x98\x8f\xb2Y\xd0\x90\x93 \xce&5(a6\x89\x85\x88\xb2I\x1c\x0e\x82\x99\x1c\x0c\xce&\xb1(8\x9b\xc4\xa2\xe0l\x12\x8b\x82\xb3I\x9c\\p6\xa9\x81\x89\xb3I\x1cF\x94M\xe2\x81\x10\xce\xe4qp6\x89\x83\xc1\xd9$\x0e\x06g\x938\x18\x9cM\xe2e\x83\xb3I\x0dN\x90M\xa2\x01\xa2l\x12\x83\x82@&\x03\x82\xb3I4\x06\xce&\xd1\x188\x9bDc\xe0l\x12#\x0f\x9cMb\x14\xa4\x90M\x824\xa6\x9aM\x02\xf4\xa8\x98M\xe2\x95\xab\x96M\xe2\x15\xae\x96M\xe2\x8d\xa0\x96M\xe2\x0d\xa3\x96M\x02\x8c\xa5\x98Mj(U\xb3I\x0c\xc5Q\xd9$\x96\x16\"\x85(\xc1\xe9J)\x9b\xc4\xd0)g\x93\x18:\xe5l\x12C\xa7\x9cMb\xdb\xa7\x9eM\xc2eP\x06e\x93\xea2Q6\xa9\x01@\xe5fS\x0eg\x93\xeab8\x9bT\x17\xc3\xd9\xa4\xba\x18\xce&5u\xc3\xd9$L\xaf\x03X\x80\xc1\x00D\xd9$\xcc\x07\xf9,\xc8d@p6 s\xf1;\x8b\xb1\x18\x0c\x9cM\xc2\\l\xceb\x86\xac{U\x1fl?w\x15\x1fV\x00w\x17\x1f\xd4\x00w\x19\x1fR\x01w\x1b\x1f\xd2\x01w\x1d\x1fR\x02w\x1f\x1f\xd2\x02w!\x1fT\x03}\xe7\x1e\xd6\x01}\xe9\x1eT\x00}\xeb\x1ej=}\xed\x1ej:}\xef\x1ej7}\xf1\x1ej4}\xf3\xbelq\xfb\xc1\xcb\x033f\x90\x17UD\xa3\x1d\x05\x01\x07<\x12\x01\x8ey$\x00\x1c\xf6H\x008\xf2\x91\x00p\xf0\xa3d\x00\xc7?\xf6\x00\xabh\x08\xe4q\xe0(\xc8\xc1\xc0\x81\x90C\x81c!\x87\x02\x87C\x0e\x05\x8e\x88\xbc\\\xe0\xa0H\xc0\xe4\xe3\"\x00\x04\x87F\x1e\x07\x8e\x8e<\x0c\x1c y\x188F\xf20p\x98\x04d\x03GJ\x02\xd72XBHp\xbc\x04\x80\xe0\x90 \xe0\xc0Q\x13\xc0\x81\x03'\x80\x03\xc7NH>p\xf8$\x80\xb2\x11\x94\x83\x81\x83(\x8b\x02\xc7Q\x16\x04\x0e\xa5,\x08\x1cMY\x108\xa0r2)l5\xaa\x9ef\x0f\xc8\x83W\xc2\x81\x96@\xc0\xe3l\x03\x80\x87\xd9\xa6\x1c\x1ee\x9brx\x90m\xca\xe11\x96\xa8\x1f\x1eb\xe9\xfd[\xe1\x08\xcb\xc2\xe0\x01\x96A\xc1\xe3+\x03\x82\x87W\x06\x04\x8f\xae\x0c\x08\x1e\\Y\x99\xe0\xb1\xd5gF\x1b\xd1\xd0\xca\xe1\xe0\x91\x95\x85\xc1\x03+\x8b\x82\xc7U\x16\x05\x0f\xab,\n\x1eU9\xb9\xe0A\xd5g\x07\x18\xd1\x98\xca\x03\xe1!\x95\xc3\xc1#*\x07\x83\x07T\x0e\x06\x8f\xa7\x1c\x0c\x1eNy\xd9\xe0\xd1\xd4\xa7\xc6\x1a\xd1`\xca\xa0\xe0\xb1\x94\x06\xc1C)\x8d\x81GR\x1a\x03\x0f\xa44\x06\x1eG\x19y\x14\x86Q\xc1\x88\x89\xeb\xe1F4b\x12\x08x\xc4l\x00\xf0\x88\xd9\x94\xc3#fS\x0e\x8f\x98M9\x96\xdc\xca\x05\xfajr\xc1\xa8\x10\xa6\x95C\xdb7\x12Kf\xae\x1d?\xb4\xf2\x92}I5\xe3\xf3\x80\x0e)\xda\xa5\x9a\x8b\x9c0\xb6S/\x0c\xce\xb1\x17 -]\xc5\xe1z\xb9\xa2 \xd6\x81\x8b\xe2\xac\x98\xa3\xa9K\x18\xc7\x0b51M\x10\x06Ha\xe9s\x00d\xce\xd6Q'\x88\x0d\x91)H\x0e\x91\xe5\xc2+H\xaf\xb0p+\x9b\xe4\x9f\xd4\"\x9eJ\xa5A<\x95B{\xc4\xa2\xe3\x93D\xe7\xa9TD\xe7\xa9\n\xd1)\x8a\xb4D\xd9\xd8[\x06\xe7YT\xc0\x94\xc7dy>Q2\x00\x87\x048(HQ\xac`\xed\x03#E\xed9bA\x18\x08(\x0b\x83)\xc5Q\x90G\xc1\xfbR\\y\x83DF\xbf]D\xffh aaZ-G#`a0$\x0c\x0d\xaa,\x9c\x7f!~\x11\xc6\xfe\xb9cG^jc\xef\x11\xb1P\xccBq\xb8E\xb1c'\x1cr\xcd\"\xd7Q\x04#\x03\x16y\xd2p\x98\x12\xce\xa1\xd4\x12\x00-n\x0c\x00\x16\xb7\x07\x00+\x0c*\xcan\xda\xb8\x98Z;9\xb0\xa4\x99\x1cV\xd2J\x0e\xab\xd0HA{8\xb7\x92\xb5\xe7\x08\x1f\xe4\xb1\x92\xf6pX`8]h\x833\xe6\xc1\n\xd9n>\xab/\xc2 \x8b\xf5\x1e\xd19\x1fR/4\x8b\xa5K\xd6s\x80\x94\x0f\xa1\x17\x06Ql\xf2\xc5=\xa2\xb8\x07\x05\xea\x0b\x93@\x18@\x90\xbe\xe8S\x00\x88\x85E\"\xf8\xe2\x01Q\xdc\x1d\x0d\x01\x06C\x12Q\x00\xda{\xc3\x81\xd5\xbd\x16$\"\xf5g\x9d\xae\xc5\x02\x005a\x04\x9a\x01d\x07\x1a\x01\x99\x82F\x08\xacA\x83`\x83\xb0\x18\xd0&\x0c\x080\x0b\x8d\x10X\x86\x01\x15\x18\x05\xeb(\x8cU\x99\xc9|\xa1\xc5\xfcV\x83q\xb4\xa4\xbd\xfc6s\xf9m\xd6\xf2\x15\x8c\xe5\xb7\xdb\xcaW0\x95\xdff)_\xc1P\xfe\xb1v\x12\x98\x04\x0bM\x82[M\xc2\xd1\x92&\xc1m&\xc1m&\xc1\n&\xc1\xed&\xc1\n&\xc1m&\xc1\n&\xc1\x80I(\x8c\x8f\xecd\x1d\xa3C\xd3O\xb2\xce\x03b\xb2r\n\xd8\x17\x01\x03;\x8e\xc3-\x01\xedq<\xbd\xc0EAZLi\xc5\xcf\xe7Fs\"+m?\xcf\x98\xf86\xc6\x9acG\xe5\xe8\xb0\xb1c\xcf\x0e\xd2\xf3\xe69\x8dO\xe3u\xe0\xd8):\xe4\xc9\x81<5\x82\xce\x83p\x1b\xdb\xd1$\xdc\xa0x\x91\x7f\x9c\xcfs]\x14Lr\xa9\xea\x87\x08c/J\xbcDa\xcc9\xc0\xeaH\x94\xd5\xcb`[4L\xa3EJ\xae\xe3\xbd'\xea\xb9\x1e\x88UU\x9d\x11\x9c\xaem\x05u+\x0c\xf1\x95\xc2|u\x13\xf8\xc7X\xc0W1\x80\xff<\xfa\xf7\x8fT\xbf\xff\xdd\xb4/Q4VW4>F\xd1XE\xd1\xf8y\x14\x8d\x8fT4~\x8a\xa2)\x96U\xb9\xe6\x84Aj{\x01\x8a\x0f\xf5\xa3\xfdy\xe2\xc4!\xc64E\xb1h\xa6\xb7\x12\xecu\x1aN\xc8\x9d\x96\xec\x01\xa3\xddX\xcb\x1e\xf2t\x0c\x0cS\xb0\x86Y{\xe7<\x00bj\xec\xd9\x1buIARPX\x8d9\xf4\x94\x03\x15\x04V\x18M\xcaV\xf8'7\x02\xa0\x84\xdb\xe0\x1f\xdb\x04\xb1\xb4\xf8di\x01JXZ\x0cHK\x8b\x82\xbd\xe8\x10\x85\x89\x97'\x02\x17\xde\x0e\xb9\xff\xd7\xf3\xa30N\xed \x9d\xfcQ\x97\xd8\xf3$\xc4\xeb\x14\x11\x85\x19\xe9y\x8c\x9c\xf4G#\xdau\x88\xbf?\xd1Eg\xc4\xdf\x9f\x14\xcc}\xe0\x04\xcc\x1c\xe7\xcf\x94QAH\x15\x9f\xcc$\xf7\xff\x83\x04\x17\xc9\x88\xff\\\x19)\x01\xb6\x89\x16\x84\xb1o\xb3#u\xf6\x88F\x16\xa370\xa0\xd3\xb0(\xa6#\xc9(>>'X\x0b\xc5\x07J\"\xb9\xe0\x90\x8a\x13\x8d\x85e\xd2)\x88\xa7\xe0m\x8d\xcclt!\x14\x19\nCx\x89\xfd#\x05\x96\xca\xa6jfp\xe6\xe6e\xc3\xbcl\x14f\xa3\xcd\xed\x04\x1d6(N=\xc7\xc6e:;{\xc6\xef\x91l4\xdfsY\xa8\xef\xb9.\xe6\x80i\x18\xb1\xc04\x8c\xb8\xaaS\x9f\xab9\x0fp\x14\x0c~\x00\x9a\x91\xf9\x8ezK\x00\xb4\xb01\x00\x16n\x0f$B\xd1$\x856)8q\xd9P^o\x92vr`q39\xa8\xa0\x95\"\xbb\x1d\xed\xf8e{\xf01\xed\xe1\xc0\xe2\xf6pPA{\xf8\xfa\xcb\xf6PX\xd7\xf3\x0fad;^\xba?7\xb8\xa23\xf6\x01\xf41\xfa\xecq\xf1\xfdym\x8b\xe6\x0f^\x99\x15/f\x90\x92w\xa7kXI\x07ez\xf1\x82IK9'\x86\xbc\xd6J\xfc\xae\xc5\x13\xdaN\xeamP\x03\x19M\x94d\x0c\xd7\xa9\\\xc8p\xcd\xec\x9e-q\xb8=\xe3\x9e@\x82\xe7\xcf\xbf\xa3\xbe\x14\xea\x15\x18|\x95-\x03\xf3S\x11\x9dn\xfe\x9f\x1a\xa8\xab\xa9\xedXQ\x9b\nKC\x95\xf5\x9e\x89Py\xb3\xda@y\x1b\xd9\x16\x18\xdf\xa7\x05\xcd\x06{^+\xa4w\x16R\x98 _\x7f\xb6\xef\xe1/\xe3p{\xd0\xfc\xf0Q\x0b\x93\x9dVd\x0f\xfd0LW^\xb0<_\xc6\xf6>ql\x8c\xea\xb6\xcdm\xe7aa;H\xdbx\x897\xf7p\xd6\xf2r\xc1+)\xa24\x93of\xe5?a;E\xdf~\xd4\x7f\x9a\x88\x9e\x03\x1a\xe5Xu\xba=A\xa7:\x02z:\xe4\xac\xa5\x16^\xdb`\xd7\x89\xe1.\x9b\xeb$\xb7\xc0\x8fFW\xb7HM\x11O\x81:\xcaaI\xc4\xac;\xe6Yu\xc7\x00#\x0d\xdb\xf1\x12\xfd\x7f\xc5A\xbc\xe0\x18\x1f\xe1\xd1OEI\x9d\xa5\x80\x88L \xf2\x9a\xb2\xb4\xcdwz\x90\xeb\xf4\x84\x06o\xf7\x1f\xc0\x17\xb3\x87L0\x1dzAZ\x8fH\xce:N\xc2\xf8\xbc|H#\x93\x95\xed\x86[\x0d\x02N\xea\xc5b\x8c\xb0\x9d\x89\x05\x99\xdd\xc6\xb8\xd3\xb5\x92\x8e\xb3\x9e{\x8e6G\x8f\x1e\x8a\x7f\xec\x1a\x03\xeb\xac;\xea\x9fu\xfb\xfd3\xe3\xa7\xc9\x91x\xb1\x88\xe7\xf6\"\xcd\x04\x0d\x83\x14\x05\xe9\xf9_\xfe\xd2\xf8\x7f\xb8\xd3\n\xe4\xb9\xde\xd1;\xc6 \xdauz\xd1\xaeC\x9e\xf7\xeb\xfd4Q\x86\xe5\x07;c\xdb\xf5\xd6\xc9\xb9\x17\xacP\xec\xa5\x93f\xd2\xe4\xd6\xd1\x93\"\xf3\x99\xe7e\xf4I\x11A\x1a\xba\xfeb\xb2ByN'\xff\xf91\xcf\x98\xee\xce5\xf9\x9cu\x846Ui$\x1a\xcd\xfd\xbb\xd0\xeb\x99\x18Ej_\x10d\xcc\x97\x9a\x1dx\xbe\x9d\xa23\xc1s\xa8/\x11\xa5\xc2\xd0\x89=\xc4IM\xdb\xec(\xd0\n\xa6\xa5~\xd4\xf4Ce\x17\x9d-2\xea\"\x83-\xea\xd5E=\xb6\xc8\xac\x8bL\xb6\xa8_\x17\xf5\xd9\"\xab.\xb2\xd8\xa2\xf1x\\\x17\x8e\xc7c\xa0\x98*\xe7\x00\xbe\xbdk\xa45\xfa\xc3\xfe\xc8\x1c\xf4\x87,\xaa\xf4\xf2\x1aY\xfe\xce\xc3\xbc\xd4\xb3q\x0d\xe3\xb3\x95\x8f\xda:HP\xc3(\xff\x8d\x86\x04(IQf\xa0h\xaf\x15\x11T\xdeM:!\xb3\xaf,\xc2Ej\xb05>\x10\xbf\x9e\x1b\xecB\xa2\xa4k6\xae \xda\x95\x01\xd6\x01c{G`\xcd#\xb0\xfd#\xb0\xd6\x11\xd8\x01\xa3\x17\xe8`\x7fA\x8f\xbd$\xd5b\x94 \xa1q\x08\xc4\x9a{\xf1\x1c\x99\xaf\xd6'94I\xf7\x18i\xe9>B\xc5\xd1*\xa1%\x8b\xed\xa5N\xf4sDm7u\x8f\xdbo\"9&(B\xb1\x9d\x86q\xce\x94\xe0at-A\xfb=\x7f\xd9\xf1\xfc\xe5\x81\x18\xd2\x9b\x9cG\xfe\xab\xeb%\x11\xb6\xf7\xe7s\x1c:\x0f\x02\x1d\x06\x0fI\xc7>\x94\xe7\xe1Mk\x88\\\x17\x9a\x02\xf8\x01k\"-\x95\xd5\x06\x0d\xb6\x0c\xa2\x9c\xf5\x0b\xa9\xc6\x03\xc7Y,\x9e_\xaamlG\x11\x8a\x05\n\xec\x0f\xf4hW\x1a\xf0\\\xef\xe4\x9b&\xa5\x0b\x9d\xeb\x9d^VH\xcd\xf0\xdecVRN\xcf\xf3p7\x01\x9f\xd2\x12\x84Qn\x1a-\xb5\x97Z\x82\x9cL\xeaCe4\x82ymH\xcdO\xb4\x05F;\xf2Y\xf6;%I\x18{\x993V\x99\x18\xaa\xcc\xf5\xe2\xa2\x9a2%:\xa98\x12%N\x88\xd7~0\x01\x9f\n\xc5\x7f\xba\xd8\xe4 \xe0F,\xeai\xfe\x8b\xe6\xa5\xc8O\xaaG\x95E\x0c=\x0b\x97\xb2\x7f\x8c\xea\x9f \x134\x8aB\xc4^\xc2E\x81\xbddR\x9b,\xef\xb9F\xb4\xeb$!\xf6\xdc\"\x1c\xb3\xc6g\x03\xebld\x9cu\xcd\x9f\x84*)\x9d\xb8\x99\xf5\xa9\x1b\x1e:\x1bj\x93\xca$\x8e\x18\xf5I'\xd4;V\xb4\x9b\xe4\xa5\x0b\xdb\xf7\xf0\xfe<\xb1\x83DKP\xec-&U\x1f\x9e\xf7\x0d\xcb\x10\xf2\xee\x06\xa1\xe6\xa2\xc4\xe9$\x91\x1d\x1cH\x03d\xfa>7j\xd5\x9f\x1b\x93\xe2?BV\x9dd\xb3\x84\x82\xa2\\\x85}^\xab\xfdD\xc2\xca\xb71u\xde\xa9_5t[\xcc\x04}]\x9f\xa8HK\xf4\xd1\xdc \x8eWVd\xc7\xb6\x8fR\x14\xff\xf1G6\x15\x90B\xf5\xa2]\xcd\xdf\x8av\x1d\x9db\xef\x87A\x98o\x10P\x82\x0ft]V\xdb\xc6C[\xad\x9a\x06\x1f\x0e\xfc\xca&\x9b\x04\xcch7\xa9\x0e>\x90\xfe`\xa9{\xb9\xc5\xdb\xc3\x82\xedq \xdc\xcd\xc8j(\xba\x02\xd1\x07\xfe\xaa\xeb:\xb3\x10\xe9\xb3\xc3a\xb3\x921\x99E\x8c1\xe6\x16;\x00\x04\x14\xad\xd3M\xedy\x1e8\xa0\xf8\xe9#\xceQ\x0eOV]\xfc\x9c\x8dC\x87\xc6\xdb\xfa\xfc\x90s\x04\xa3\xf3\x85\x17'\xa9\x16.\xf2\xf0\x83a\xdb\xd1;\xfa\x11\xbc\xbaebs\xd5/:9\xe7S\xa7\xf3*\xd7Y\xfc\"\xb3\xbe\xad\x999L\x1eSY\xfa\x8bj\xb5\xd9kV\x9b\x99\x9f\x00kd \x9b\xf3\xfb\x8f\x9a\xa5\xbf\x00\x13=U\x111\xb4.c{\x0f6\xab\xeb%Z\x18\xa1\xa0\x19n\x92\xb5\xef\xdb\xf1\xfe \x1a\xe13\xef\x16h\xa8fQL\x8a\x95'V\xd6\x1a\x95s\xd0\xc4\xf7\x82*\x82\xb5\xb2\xdf A\xd9\x1b\x83\xa3\x9f\xe0~c\x00\xcb\x7f\x83\xe980\xe6(\xd9\xcf\x8e\x01w\xb0=G\xf8\xe9\x1d\xef\xa4\xa9\xfe\xa8f\x95\x922C79,\x0fu\xbd\x1eG\xb9\xc30'\xcc\x1aJ\x02\x95\xfd\x91\x9a\xa1$\x9d[\xc0j\xd5g'J\x95Q\xadi\xeds4\xae\xe8C\x9a\x8f\xd2U\xe8\xca\xe6\xed\\\xcf\xf5\xd6\xe5H'f\xd0A\x16\xa8e\xe3\x05w\x03\x8c\x99\\L\xba\x0b\xe5\xd3ONC\xf5\x04\x9d\xed+\xf2v.\x16\x0b\xc5F\x86\xf9\xd2,3\x80\xe7\xb6\xf5\x97\x92$\xb2\xd3\xd5\x11\xd0?\xfepQ\x14#\xc7N\x11\xa5\xccAD\xf4\xacS{[n~\xbdq\x08\xbdc\x16\xab\x19\xfa\xb7'w\xd0\xc96\x8c]m\x1e#\xfb\xe1<\xffW\xb31\x96\x85c\xaa\xf1R\xb9\x19N\xec\xe8\x0f\x07\xa3h\xc7l\x81\xff\x07\x9a\xaf\x17\xed\xd8\xd3\x9d\xcal\xd8\xcd:,\xbc\xa6\xab\xd4p\xa6\x8b*r\xc8\x16\n\xb1\x17\xe5\xebR\x82\x81\xa9:\xe4<\xdfH\xf3?4\xe9\x90\xd1\xbeZp\xc7\xc8\xad\x18\xe0\xf7\xea\x00\x9f\x98\x95\x9e=\xb2\xe7\xa4\xab\xf6\xad\x19\x19\xcb\xb0m\xc4,5\xe0\xf8\xaab\x19\x85IJ\xbc\x8f\"3p\x7f\xec8c}\xc2\xae\x80\x87\xe6YO\xef\x9f\x19\xfd\xbe0\\\xa1\xb8\n\xa7\x1drN(\xea:\x81\x19(\xb3\n\x1f\xf5p\xf9h9\xd7\xac&\x17\x8em\x98\xbc&{V\xef\xcc\x18\x18g\xfd\x91\x82&\xd7j\x8a,\xaa:\x9e\x17(\xb1\x02\x9b\xd3\xd4\xa8\xc2\xdeE\x18\xa5\x88\x95kl\"\x13\xf1\x9a\xec\x8f\xcf\x06\xbd\xec\xff\xad\x8a,\xd8\xaa\xe92\xaf\xec$v\xa0\xd8j\x9cN\xd4\xa8B\x0dK\xc4:\xe6\xc0\xb0\x17\x0b^\x9d\xe3\xe1\x991\xb4\xcez\x96B\x17_\"5\xc7,\xaa:\x9e\x17(\xb1\x02\x9b\xd3\xd4\xa8\xc2>\xb2Sg\xc5\x88e\xe9\xc8tz\x9c\"G\xfaY\xaf7<3\xc6\n\x8a\xcc\xd9*\xa9\xb2\xa8\xec\x14n\xa0\xd4J\x8cNS\xa7J\x05\x19WF\xae\xb1n\xf4\x00\xb7\xcc\xa6\x1cc\xa4\xe6\x96\x19W%e\x16u\x9d\xc0\x0c\x94Y\x85\xcfi\xaaT\xe1\x1f\xe6\xb1^\xc2H\xa6\xbb\x96m\x0fym\x9agc\xfd\xcc\x18\x0c\xdb\x95Y\xf2U\xd2gQ\xdbi\xfc@\xc1\x15Y\x9d\xa6U\x95*\x88\xb0\xbe>\x15:\x98\xd0\xa2\xa2y\xf6\x07\xce\x14\x8d{\xc0\xab\xa5\xc4\x95(i\xb9\xa8\xefd\x96\x07Hzun\xa7\xe9ZR\x0b!\xa0\xb3B>J\xb8\xa4\x9c\x1aY\xa7[\xfe\xa0\xa5^\x8aQk\xaef\xe1\xe14kD\xb3\xd6*\x9eh^\x90Eq\xd4\xd6b\x1eI\xe7{T:\xb5oU%\xd8{M\n\xd2\x1d\xb9.b\xbc*\xb5\xe7\xa7\xad\x82\xa8\x9a\x8bex\xdd,b\xe3\x1b\xd8\xf3N\xedy\x07{l\x1a\x8d<\x89N\xf1b\x16,\xc7\xaf\xfe\x8a\xfa\xd8\\8\xb7bbv\xf2\x99\xcf\x96\xf5X[C\\\x85\x89\xecb\xdf\xbe`5\xa8WeF\xb4\xa3\xceK\x11)l\xc1\xfe\x1e\xbb\xbdW\x08Q\xfa\xf8\x81\xc9\x90\x81\xbeI\xae\xbe\xb5r\xaf\x1aLJhh\x97\xa28\xb0\xb1\xe6\x86N\"\x87\xe6^\xfdGy\x13\x8a\xb5+\xbd\xcdX\xbb\xa8U\xa5\xb5\x8f7\xa8\xa4)\xdc\x11\x12ik\x84h\xb2ALf\x14h\xd3\xf3\xb6 :\xa6\x01\x020%\x7f\xc4fR\x9f\x9e\xb3\x15\xaa\x939\x0fC\x13\xa3\x1dr\xd6)\xaa\xe0\xf50\x98\xbb\x81\xfc\x9d^\x0ci\xa7;O\x03r\x1c$\xc7\xe5>7.\xcfCw\xaf\xe5;\xb0u,r\xd2\x98\xf7?s \x82\x97\x9ez\x86\\/=P'\x16\xf4V\xfab#\x83T\x9a\"M'A\x189i\xb5\x9bkB\xb3W\x8c\x92(\x0c\x12\x94h^\x100f\x96\"\xb9\xee\xc8\x95[\x82\x9eXN\xa3\xa7u\xc6\xaa\x96,\xec\xf8#I\xedt\x9d\x80{\x0fOeJ<\\\x07n\xe8\xac}\x140\xb9]\xe3\xd8d\xf6X\xcf\xfeH\xaa\xce\xcf>1\x9f\x0f\xcd\xcf\x93UY\xef\xbe\x8e\xfc\xc9\xf36\xb78o\xf5?\xd1Zb<\xfd\xe3\x8f\xc2g\\o\xd3\xf5\xed\xf8\xc1\x0d\xb7\x01\xec]2\xca\x18\x05.\x8a\x91;+9\x80\x9b\x7fE\xa0\x93\xbf\xb9\xcd\xa1\x8f\xc75C-\x10\x9a\x91\xa7\x1c\xa8d\x9e\xd1\xef\xf7\xd1q\x9a\xe1\xf6\x9dT\x1aW\xa9\x85\x9dEThY\xc5t\xa2\x038\xad|g\xc9\xedg\x90\xdc>\x1c%\xf0h<_\xe8\xfd\x89\xe2\xbd'\x15\x89\x9a\xd6\x14\xa9\xf3\xe7h\x13}\xd8qd\xcc\x0d\xddy\x82d\xec\xce\x95\n1'T\xba:N\xd3\x8b\xc5BxbN\xb8\xd3\xaaeSW\xf3\x1b\x0e\xed|\xe4+\x0e\xdd\x93G!\xa9\x0ej6gl\x9b\xfd\xfa\x96\xb7TP\x15F1w\xa6\x0b\xee\xfb\xcc\x95\xef<\xa2)69\xb3\x9f\xca=\xce\xecwx\xe7\x93{\x98C\xab\xe0c\xb5\x8fV(H\n\xf1\xb3\xa0\x83z@\xfd\xa24\x06\xd5/\x89ae;\xd6\x8er\xcd\x15'\x18\x1at\xf3\x96\x86\x16\xban\xb1\xdc\xcf\xba\xddAr.y\xe5-W\xc5{\xc0\x9d\xd0\x05\xd6~2\xf4\xdf\xbb\xbe\xe7\xc4a\xfe\x80|iN\xe9!\xbb\xeaHN_g\xce\xe8\x0c\xd8\x13\xd6Y\x1f\xc8\xdcQ+\xd7y\x89\xf8\xc4S\xee)\xe5\xca\x138tJZj\xe8\x8ezc\x138\xed@n2\xf2\xc6&\x0d\xf8\xd1K=\x8c\xbd\xb5\xdf\xf9\x82\xe6g\xc4\x84/\xe9\x97L\xc4P\xb6\xd9\xd4\xeb\xc5\xed\x90\xdb\xdb+r \xc4+\x88\x88eT\x8f\\\xf3\x9bE6\x83\xdaG \x8ej\x83\xa7\x95\x98s\x1a\x96\xe0P\x13\x07\x93\x8bX'n\x9e\xbe^8i\xa7XQ\xba\xbf+\x1dLzr\x13\xbe\xe7\x92\xa7\x1a-\xb5\xe2\xb8\xb5U,,N\x88D[\x94T/`\xeat\x93a\xd6\xcb\xcf\xe6T\xa0\xe0\x85\xb9\xd5l\xd2\xf8p\xe5\xb3\xe5\x89J\xe2x\x7fq\xd1\"\x9bW\x9a1\xc1x\x8e\xa37\x91\xed\xbc_'\xa9\xb7\xd8W\xe3L\x8d}\xaa7\xfei\xce\xd0\xa2\xf4\xfaQ\xdbH.\xa6,3uD\x8f\xd1\x81\x1e\x03'\xf2,\xfdEs\x18\xb5\xce\xd9\x95\x8c\xa5\xa7O\xf3\x13\xa6g\xc2\x13\xa8T\xb1\xc0\x1fO\xe8\x11\x12-\xcc\xd1\"\x8c\x91 aI\xb5\x93\x8e\x9a\x88Dm5\xdb\x11G\xc8\xb5\xbcG\x01\x07r\xeb \xec<\x0e\xd3\xfc\x87\x8e\x91t\xbc`\xe1\x05^\x8a:\xd94n\xc7g\xc4%\xcf\xc9\xf1\x14\xcd{\x12\xb8\x04x\xb1\xf7i\x9d\x15\xff/\x0e\xbe\xe6\xf3b\x1aF\xe5\x9e\x039;\x0c\xd8{\xb1y\xa6\xa9\xf6\xf3S.\xa0\xff\xfb\xbf*\xf2\x07\xb4_\xc4\xb6\x8f\x92N\xd5\xb0C\x1a\x02\xf7\xa0\xf3R\xf4\xa3\x91\xae\xe3\x80t\x1a\xea\xf9\xbf\xff\xfd_\xcf\xccO\x14\xec\xe7&\xa5N\x93W\xc3\x9c\x02I7\xfb%\x0eq\xa2\xd9\x8e\x83\xa2\xb4\xda\xac)\x87dj\xf3g\x19#\x14<\x85g~\xf5\x83\xe0ED,\xdd!\xf2!K\xcc\xb1\x17<\xa0\xf8`\xe9/\x9a\x17\x86P\xba\x15 H1\xcbc\xb5\x9d\x95y8\xba\xab\xda\xdd \xcc\x93 u\xb8\xe1\x05\xdc\x92\xb2\x06\x9d\x81O\xcf3\xa7\x83\xce\xfaU\xb7\xba\x8b\xea\xeb\xdf$\xc7\xcf6(N\xbc0\xd0\xa2\xd8^\xfa\xf6\x81\xdc\xaa\xa8\x83K\xe4\xb3\xe9?\x9a\xea\x8f?|\x94$\xf6\x12==\x82:u\xde#\xe5&\x06\xfcn\x0f\xf9@\xd8\xcc\\\xa0E>q\xd8\xb4\xcb\xc5\xf4\x82\xc6\xfe\xdd\xf56\xc4\x8bE-\xcbY)\x9dmTb\xde\xc9\x171Mt\\m\x97\xba(\xfbS\x8b\xdb\x8fv\x9d~\x11\xf6\xb2\x8bN\xba\x9ay\x1a\xb4\x9d\xb5&\xaf'\xf5\xc8\x83\x9a\xec\x19A\x93?6h&\xfcH\xbc\x8c\xed\xbd|\x05\x9as\x89\xec\x18\x05\xe9s_e8a\n\x9d\xa7A\xf6WK|\xd1\xc5\xad~\xa9\x19\x8e\xee\x9f\xae\x97\xd8s\x8c\xdc\x7fU\xef\x9b\x08\xc2\xcc\xe5p\xb8En=[uM\x8e\x90y?\x00s\xb9\xc9b\x9aer\xd7\x9fx\x04\xdf&\xc7\x0e\x1c\x84\xd9Sa\x8b\x81> \x97_e\x01i\x12\xb9\n\x0b\x0e|u\xf6:]\x85\xb1\xf7\x88\xe8\xeb\xd8\x13z\xb4\xab\xb8T\x07=\xe5\xa7?y\xe1$\xf5\x16\x89\x86\x05\x0e\xed4\xff\xb6\x0cm>p/\x9e\xa1\xdf,\x0f\x0b\x0fc\xf8\xc8e\x86-w\xaa\x80\xfe\xd9\x1f\x8fu\xd4\x03\x92[T9\xc7Q\xcb\xb8D\xa7\x0d\x9f\xe4\x8aZ\xc0\xb8\xe8\xff\xc7\x0fN4\x83r\x1f\xbcxU\x15\xd7\xb13\xadv\xb8\x03\xe2\x0c\x07l\x0b\x18\xe4\xa4\xf9_F\xdd\x95Y\xec\"\xf3\x98\xb5\x83\xb9\x18P\x0e\x0e\xca\xa2\xd3\\3\x0f\x95s\xce}\x98\xb8\xf7Y\xf6B~w\x8ef\xcc\xa8V\x06-\x0f\x80\x13}E\xcf\xfe\xb4\x89-\xbc\xf5\x0bO*\x05\xeb\xa1\x9e\xfd\xa1X\xcf\xd7i\x1a\x06\xec\xdb}\xc2u\x9a\x0d.\xbc\x02\x0bx\xd7\x0b66\xf6\xdc\x03\xbfVIV\xf6\x03\xeat\xfbI\xc7\x98\xc0O\xdb\x0e\x03\xffu\x81\xb83Fe\xd0{\xc4\xc4\x9b\xa7\x18\xac\xea\x1e:\x7f\xbc\xa7\xcc\xd9\xca\x13\xbb\x8ba\xf6\xa7\xb3\x8e\xf1\x8f\xae\x9d\xda\xe7\x9eo/\xd1\xcbd\xb3\xfcy\xe7\xe3\xc9\xdcN\xd0\xa0\x7f\xf6\xdb\xaf7\xbdo\xfb\x8b\xfe\xfc\xcbn\xed<\xea\x9e\xfd\xeb\x9d\xee\\\x86\x9bw\xa6k\xba{\xcb\x9c\xed\xad\x8d\xe3;\x9b\xd9\xfdt;{5~t}\xc7\xbb\xfe\xf5[\xf4\xedw\xf7\xd5\xdc\\\x8e\xaf\xef\xa7\xcb\xd9\xab\xe9\xbe\xf8{\xfd\xf3\xf5\xab\xe9\xf2\xfar\xb7\xfd\xfa\xfb]x\xfd\xe6v|\xfd\xa0\xeff\xfb\xbe>\xfb\xb8\\\xde\xec\xfb\xfd\x9b\x8f\xf8\xfe\xdd\xfd\xb59\xfb\xa0\xafg\xf7_\xfb\xef\xee\x9d\xed\xfb\xfa\xe7\x07\xf3\xfd\xab\xe9\xf6\xfaU\x7f\x7f\xb3\xef\xefo\xee\x97\xeb\xd9\xbd\xb3\xcf0\xb3\x0f\xf9s\xeb\xe6\x1e'\xef>\xce\xd6\xef?N\xfb\xd7\x97\xb3\xf5\xfb\xcb\x9b\xfbw\x1fj|\x9aa\x9b\x9f\x1f\xcc\xf7\x1f\xa6\xdb\xf9+\xfd\xf1\xdd\xfd\xc3\xf6}\xfe\xdf\xe5\xe3\xd7}V\x9f\x93\xbe\xbb\xbf\xee\xdd\xd4?\x17u\xbc\xfb\x90\xd5\xf1\x90=\xdb\xe5|\xef\x97\xeb\x9b\xc7\xa9U\xfd\xfc\xfe\xa3\xd3\xbf\xbe\xbc\x98\xcd>N\x97\xb3\x8f\xaf\x93\xb2m\xe9l\xdf\xdf\xdd\\\xbe\x1e\\{\xa3\x9f\x7f+\xf4\xf4\xf3O\x9d<\xaf[\x9c\xfc*b\xceN\x10j1\x8a\x90\x9d\x92\xf3ZqS\x9f{#\x84<\xa3\xd9SK|f0\x95(\xa8Y\xb9G\x11\xb2\xe3,Z(F\xa4\xfcEm\xecC\xe6w\xc0\xdd\xff\xe9\xafq\xeaE\x18\xfd\xabJ\xfeZ\xd4\xc15\x0b\xf4V\x80\xd1\x9f\xde]\xe9\xbd\x07.\x89\xd8\xcbg\xd8\xa3\xee\x94 8\x19#\x9d\xbd\xe0\xa5\x94\xdd}\xea\x99\xa4\xfch\xe1?\xb3%\xf5/\xc8\xb7=\xfc\xaf3A\xe9\xc2\xc3HX\x18\xd9I\xb2\x0dcW\x08H\x90\x1d;+aq\xb6\x1e\xa3\x0b\xb3'v\x8clRE:\x91l\xa2\x1dh\xc4\x0c\x8f\xc4\x86\xa1;\xce\xfe\xb4\x0d\x8f\x8b\x85\x9a\x15\xff\xf3\xd5\xd5\xbct&\xdf\x8a\x91\x1b\xbb\xeaO\xd2V\xb4\x81\xea\xd6\xb4\x01\xcbV\xb5\xc1\xf2\xd6\x81\xa0\xaa\x95\x7f\xca0\x00d\x8ar6\x07C\x7fq6\xd6_\x00Y\xb6:\xa5k\xba?jF\xb4\xcbF]0\xe5K\x96\xff\xbb\xa7\xbf8\x1b\xb5\xf2\xeb\xc9\xd9U\xc5\xff6\xf5\x17g\x96\xfe\xe2l\xd8\xcaQ\xeb\xb7HX\x95\xff\xbb\xaf\xbf8\x1b\xb4\xf2kaWs#3k\xff\xab\xd1g\xd1(8\x1403\x07y|\xbc\xd9\x9a\xeaQ\xb7\xe8\xf9\xd5\x137l\x92\x01u\xcb\xbb(\x8e:-\x00\xccMUK\x8aw|\x1d\xf8\xd0\x17\xb8\x1fU\x0f\x11\xce:\xe6\x0f%\x13[r\xe4d\xc2\x9c\xd5\x88QN\"P\xc0\xb3\x9f\xd9rV\xc8y\x98\x87\xbb\x03\x19\xf5\x97+Y`mD\xeez\x08\x1eW*\xd5\xb3?peOx\xfd\x86\x80aD\x1dD\xef\xeb:\xf1\xd1\x8d\xc2\x0e\xe4y\xb9J\xf3,HU\x8bP\xba\xae\x16\x85\x98L\xaag\xff\xaa\x9b\xca/\xa5\xa5t?\xe7\x8a\xfa{\xb7xC\x8f\xf0\x8dJt.K#\xf7\xcb\xf27/Tn7 \xcf\x91\x8f\xca\xedn2\x0ef\xcf|\xd0[Q\x8c\xff\xa1Q\xf6G\xf4\xb2$=_\x02T i!\x97\x08\"\xde\xf1\x90\xf7\x83\xfa\xa7\x13U\xd7\xfe\xca_\x85WFKk;\xcf\x7fB.e0^Y\xf9\x1a\xf8/\xc0\"\xd8Y\xd9q\x82\xd2_\xd6\xe9B\x1b\x9d\xbd0_%\x9be'\xb7\xe0/?\x18\xfa\x0f\x9d\xc2\x82\xbf\xfc0\xfa\xa1\xb3\xf1\xd0\xf6\"\xdc\xfd\xf2\x83\xd9\x19v\x0c\xbd3\xfa\xa1\xb3\xf3q\x90\xfc\xf2\xc3*M\xa3\xf3\x97/\xb7\xdbmwkv\xc3x\xf9\xb2\xa7\xebzV\xc7\x0f/\xcc\xab\x17\xe6\xab\xc8NW\x9d\x85\x87\xf1/?\xbc\xe8\x99}\xa3?\xec_\xfd\x90?\xd0\xe25F\xbf\xfc\x806(\x08]\xf7\x87\x8e\xfb\xcb\x0f\xb3A\xd74\xcd\x8ea\xbd3;\x86\xd1\x1d\x0c\x86\xd8\xc8\x9eh\xd9\xbf\xfdN\xaf\xd3{W<\xce\xc40;\xa3\xac\xec\xf1\x87\x97EMY\xa5/\xcc\xab\xbf\xfc\xd4\xb1\xf4\x17\xcdZ\x93\xd6\xa8\xeb\xd98\\j\xeb\x1d\xf35\x9d \xf9\xa2U\xea\x1e\x8b^\x1dV\xaa^\x03,`\xd8\xe9f\xbaw\xe30\x02\xb8K\x19\x8an\xc1\x8c~\x12V\xe5\x87\xae\x8d\xa9z\xea-m\xae!\xd4\xfe63)\x16\xbf\x9a\xe5\xdcP\x7f\xf3\xc3\xe2\x86\xe2\x937\xf8\xf9\x05JuY\xafm\x81\"\xc8\x07\xe8\xd1\xaeS\x9c\x9c\x92\xbe\x04Z\x8ckUj\xb5\xb1&;\x06g\xf5\xc90\x82O*J\xd8\xd2\x17U\x80{6U\x9e\x9c\x9fk\x95V\xb8\xd2\xba\xe9K>#f\x81=h\x16\xd8O8\x9a\x04\xd5\xff\x94\xd7\xce\xd5\xb1J\xaf8/':*[:\x16\xe96'\x9d\xffQmM\xa7\xeb\xe00AZ\xfe\xf8\x88\x94\xfc\xf3e\x9bd\xc2\xad\xc8\x0f\x83\xf7\xd8c?\x03\xf2\x0d^\x8d\xe8\\\x1eN\xb4Ir\x82[\xf8\xa1+O\xef\x98\xfa\x91g\xea\x85\xb5t\xba\xc4}\xd9$\xb2\x99\x1b\x11<&u\xabc\xb9\xb6\x9e\xfd\x11\x9d\xcc\xe5(\xff\x9e\xba\xcc\x8dK\xf5w\x0f\xe5\xcc\xb44\\.1b\x8fh\xc1\x81\xd7@\x14x\x95\xa6\xccF\xa9N\xd7D\xbe\xc2\xebo\xb8\xe1]\xf8*`u\xe4\xa9\x08\xe8C\x0e$\x03~**\xcf\xf1\x8cu\x17-\x81\xf3=\xe5s\x8eN\x0bc/\xcf\xa6\xe9/\xb2(a\"*\x10\x1b\xaa\xeb\x84\x18\xdbQ\x82\\\xf1\xa9#\x81P\xf9c1\xe7\xf2\xac\x1et\x02\x8d\xdd\xc0\x12\\\xa1=*\xd2k\x0f\xe0\xaa`\xb0\xd7o\x82\xc1\xec\xe7:\x1a\xcc\x83\xea~\xa7\xd7'c\xbd,\x8c3\xf4\xce\xe0\xdd\xa8k\x8d;\xc3n\xdf\xe8\x18f\xd7\x18v\x8c\x1e\xd6\xfa]k\xd4\xe9w\xad\xf1;C\xef\x18#<\xd0\x06m\xf1\x1b\xb7W\x90\x05/\x90\x16\xef\xd7~\xa4\xa5a\xfe60`\xe1\";\x01\xc43\x10\xbfz\x8a:;\xa8u\xfb\\g\x03-\\\xdc\x87\x97\x1f\xe3$\xa0\xd5\xbb\xa5\x8aG+/H\x0f\xc4!\xbb\xfcG\xf6cc\x04T \xab\xd1\x1d!\x7f\xc2\x9f\xe3\xab\x86\xff\xae\x81\xfcN~\x14\x08\xf8\x1eo9<\xaa\x04od\xb85\x84\x1c\x9e\xb8D\x95\xad\xfb\x99\xc3F\xe5\xc9\xb2\x02\x9a\xd4W0ub\xf2\x97\xbdR\x9a\x97M\xc2\xbdz\xc1)1{\xeb\xfc\x0b\x0f`\x9a,\x96b\"7Qh\"\x7f\xef5\xcd\x9e \xd1\x9e\xe5-\x86'\x85Ap\xb2\xe8Y\xdf\x13.\x0f\"\x06:w\xbc\x86S\xd5\x13_\xa3\x0d\xf0;\xe9\xcd\xde\x1c\x9f\xe3\xde_\xce\x92[\xac\x07\x90\xddEo\xdd\xf6\x02\x0e\x0b05\xa8\x0d\x99\xf9\xeaQ\xda\x17*F\xc0e\x97\xfa\x82\xc3Q\x1f\x1c\x02\xde\xc6\xa7>\xd8\xb0\xdf\xeej\x91\xb5\xc5F\xc3\xe3\x98\xd1Q \xf1\xda\x90\xa3\xb8\xe4\xa7\x83\x18&\xad#\x12\xc7\xa6|\x90\x08\x0cLM\x0b\xa3\xfa\nVf\xab\xe6\x15;\x96B\x85\xf3pw\x90\x1e\xdai`T\xc2\x19\x8ca\x95\xcd\xcc\xbe\xcc\xa7\xae\xe4\x08\xb7\xe6Ni\xd5L\xba\xd0\x0b\x87,\xf1\xa4\xce\xf4Ty\xcf\xb4\xf4\xec\x0f\xc4\xac\xa9U\xdb\xdaq\xe0\x05K\x903\xb7|\xab^\xdcR\xddn\x17\x1fV\xe4_Q\x97\x8du\x7f\xcf\xfe)\xa7\xe5\xee<\xb6\x1d\xa4\xe5\xabZjF\x84\xceBEq\x18i\x81\xed\xb3\x87\xb8\xa9\x15I#\x1d@\x9c\xfbx\xa5\x18\xcb\x06\x10(X\xfb\xb2\x0b\x8f9(\x0b\xb1\xed\xf4 \x9e4\xba \x8a7(\x16\\\x1f{\xb6\x0bYd%\xa2\xebW\xf47f@\x06\x9dU\xbf[\x9d%\xaf\xee\x1e\x94\x01E\x8fUcE\x92\xdas\x8c:i\xf55\x16So\x01\xba\"\x9b\xd5\xd2eQ \xf8\x85\xdb u\x1f\x82H\x82i\xc4\x9dNy\xe5\xf0\xeb\xfaKWik\xa3\xdb\xe1^\x0eE\x1c|\x87I\xbbN\xe8G\xeb\xack\xadc\\\x0f\xcd\xfc\x91~\x10_\x1cC\x07\xf5E\x9c\xaa\x9d\x88&l\xce\xf5\x978\x9c\xdbX+\xea\xfa\x8f\xbe%*\x90\xb4\xd6S9\x00\x92g\x9c{\xd50$~=S\xf5\xaa/\xc0\xdd\xcb1C\xe0\xed\xb9\x03@/\xc3\xa12nZ\xb5>?\xaf~\xe0\x99\x94\xc3]\x9a\x9fLJ\xe3\xac?\xd4\xbcX\xafg?\xd6,`\xc0\xf8tu\"\xa5O\xbe\xe2\xab\xd8\x84\x82ZU\xde\xefN2IZ\x12dp\xa7|j\xda\xac\xec\\\x80B\xaa7\xb7)\xe9E\xa2\x91fl\xe9Q{\x0f\x03\xe2\xe6 \xf0V\x9f\x92m\xfe\xea\xc6\x9c\xed\x99\xact\xd5vz\x8cI%\x13\xd7b\xf2c\xf2\x8a\xeb\xb7\x9e\xda\xa9Bf\xae\xaa\xbe\x8c\x93\xb0/\x93\xe0\xce\x02\xc1\x1f\xd52\xf9\x17>Ix\xd2\x97\xcdJ\x86B\xfa?\xfe\xc8grI\xc4\xd1\xd7O\x99\x14\x99\n\xba1\xfa\xef\xb5\x17W\xaf\xc7\x11\x0d\x12\"*\xf86+\x1c\xe0i\x03\xfasCM\xca\xac\xe2\xf6\x97R\xf0\xf2e\xd0V1\n\x0e\xd8o\xae6\xb2\xa0]\x8a\x82\xc4\x0b\x99l2\x81\xf0\x14^\x9csLW\xe5?\xccBT&|m\xfe\x13+\x8d\x91+V\x81\x1f\xa5\xfb?66^\xa3?\xf8\xc4\xb5ID\x03\xe5\xda\x91\x8b\x0e\xb8\x17\x0cJ\xb9\x97\x93=\x15L\x0e\x8f\xe2\xd0\xad\xee%5\xc1<\xffjH\x8c\x80\xab\xee\xfc\xa6^\x1aFs\x9b\xfeb\x0dpE\xa7|s\x0eDZ\xfd\x17~\xcd`\x89\xb1O\xdb%{r\xbe\x07\x14\x98:U\x95\xe7\x06\xd9!U%WB\x8eb\xf9^3\xbbIR\x1c\xb9\x90\xaf_\xd8cD\x95\x84E\xca\x06\xd8\xcc\xe2#\xd1\xca\n\xf5+J\xd61\xae_\xd3\xf7d\xad\xe7m5\x9b\xd6\x9b\x93\xea \x01\xca/r\xa2\xc0e\xaevfO\xd8{\x9dy)\n\\\xf56\xb4\xcc$\xa5\x86\xf8seV\x7f\xb8\x80\xbeJV]h\x12\xdf*\x91\x8b\xd3-f!\xed\xf4\xb3WOw\xeb 8\x99\x0e\xa8\xe3p\xa76\xa9\xbcgG\xcf\x9aJ\x1d\x82\xf6\xd2<\xc0\x92\xbf\x19\xf2\x18\xa1\x8a\xa9\x9f\x93\xa3\xd7\xc8\xd1\x9b\x94\xff!\x94#t\x0b\xea\x04$\xb0\xee(\xcf\x0dR\xbf\x1f#<\xf5\xb4\xbc\xd5$\x89D\xc88\xae_\x1e\xf2\x90\x9c\xe1$\xae\xd5Q\x8b\xa8\xb2qG\x0e:^\xb0\x08\xeb;\x1d\xc0K(\xb3\xf2\xce*\xbf\xee\xd7\xf5m/`\x97urt\x87=\xc4\n\xc0\xb1w\xc6?\x8c\x80g\xc5z\x89\xe0w\xda+\x0f\x0b\x19\x0d\xa0\x02\xf6\xf3\xc8\xc5C\x13z\xd8\x87\x1eZ\xc7\xbf9\xa0\xa0,\xdenU\xad\x8f\x8b\xdbb\xea\xe9C\xdd:\xf2\xa4.\xf4\xee\xf7\\\x0e\x9b\xd5\xeeQ\x1b\x11-\xb6\x80\xae\xc9\x16\xb5\xd2\xef\xbc3\x16\x83\xb1\x03xay7\x9f\xdc\x9f\x02\x98u\xe7v\x824\xe0\xe80\xa9\x0b\x93:\xdbZ\xcf#G)Qh\xcc.\x9bF5\x07O{w/\xc1\x95\xff2\xaad\xc1`\xb5\x1c\xae(\xd6\xef\xe4\xcb\x9d{\xc5\xc0\xc2.\x8d\x93u\xc4\x1dd\xb5\x86\xcc\x01\xb7\xa1;\xea\x8f!\xf3\x92\x92\xe7\xaf\xdbST\x057T\xd9\xebt\xa5\xcd\xd3\xe0i\x01\x0e\xbd6\x7f\x8e\x17U\xc8\xa5,\xeeK\xbba\x80\x0e\xf2\x14rN\xf8\xa4\xa6)M\xd4\xcf\x1a\xbb\x912w\x88\xd7\x040)\xd0&4\xd1\x9a\x97\xe3\x01\x9c\xc0\xe4\xa1\xc1\xdeo(\xd2\x89-\xa7\xe6d\xdc\xe1M)a\x1dl8E3#v\xcd\xcbc\xffV\xb4\x13\x1d\xb7bH\xeb\x8f\x8e\xf3\xc1\xbe\x94\xae\xf5&\x9a\x84\xa0\x08\xa3\xd9\x1b\x90R)Q\x1c\x87q\xc2\x0e\xa8\xd4\x06\x18?Y=y0M\x9c0BIg\xd5{\xfa\x94\x9f\xb3\xd2\\\xb4\x90\x1f\x8b(\x1b\xaa1V\xe9\xc1\x0eXu$\xe2\x92\x9acc\xf4)b^\x80E>\xe5C\xd2\xea\xfaZ\xebd/\xf9&\x15-v\xf9;\xdb\nx\xd3\x0b$e\x8fl\x08\xdf=\x7f\x92]\x05U&\xc4\x8b\x9f\xc0M/\x86\xae\x882\x9f>P\x9e\xb4\x06S\x90\x8c\xd6a\x8f\xba\xac\xa44P+\xb99t\xc7\xb1\xf0\xb7\x03x9\xad\xbc\x971\x02\xeej\x8c~\x9a4\xaf\xc6\x02\xdfAV\x00\x0d\x9e\xd6hH\x0d\xfav\xe0\xff\xb4,\x94\x9d\xee\xf2kaq\xb7\no\x9aTZ\xe5\x1d\xf9J\xef\xff\xbc\xfc\xdb_;I\xb8\x8e\x1d4\xb3\xa3\xc8\x0b\x96\x9f\xee\xde\xfd\xd20\xea:I\xd2\xf5\xed\xe8o/\xff\x7f\x01\x00\x00\xff\xffPK\x07\x08_;\x94/\xe8Y\x00\x00\xa8X\x02\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00 \x00swagger.yamlUT\x05\x00\x01\x80Cm8\xec\xbd]w\xdc6\x927~\xefOQ\xab\x8b\x91<\xa3\xb4bgf\xf6<\xda\xf5\x9eu\xec8\xd1\xacck\xfd\xb2\xfb\x99\xe3\x1a=9CYF\x9a\xb2\xe6\x0f\x00\xacp-\xfe\x01@\x9b\xcd\x06U\xbbsx.\x9f\x80\n\xd7MUR@E\x01\xf5\x1a\x03\xfe\x9c\xd3:/W\xa0x\xc87{b\x1f\xbf\xcf\xcb\x0c\x9f\x83h\xfb+\xba\xb8\x81\xafg\x7f\xfc\xe6X>K\xb6\xb8\xe2\x82_,\xf6-\xc9\xdf*L\xb7\xa4\xa4\x98*\x91\x00\x8e\x9f~\xfd\xf5\xf1\xfe\x7f\x07m=\x07\xdad\x19\xa6t\xd9\x14\xed\xdb\xb3\xce\xd34[\xe3\x0d\xea\xbe\x0fP\xef\xb6\xf8\x1c\xc8\xfc\x7fpV\xf7~\xd8VL\xb8:\xef\xb6/\xa8\xaf\xb3. f\xa8\xaa\xd0\xee\xe0\xb7\xbc\xc6\x1b\xcd+\x16 \x04\x99\xe5\xd8\xbf~\xd5T\x85\xfeW\xc5\x9e\xd6U^\xae\x0c\x8f\xf4\xb4\xf8o_\x19\x9e\x02x\x0e\x1f\xdf\xbd>\xab0%M\x95a(\xd1\x06C\xbdF54e\xfes\x83\x8b\x1d\xe4\x0b\\\xd6\xf92\xc7\x94\x9b\x08k\x1b\xc8\xd2\xc8\x90=Cq\x95\xa3\"\xff\x1b^<2>\xb7\xadHM2R\xc0\xbcY.q\x05\x1bL)Z\xe1\x19|X\xe7T\xf6\x0d6\x0d\xad!#e\xcd\x06\x06\xd2\xa9RP\x81\x11\xad\xcdm\x91\x12\xc3\xd1\xd9\x11dkT\xa1\xac\xc6\x15k\x05C\x81h\x0d\x14\xaf6\xb8\xac\x81,\xb9\xe8\x1f\xdf\xbd>\xa6\xc0\x06\x98\x91\x1b\x17\xaa\xc2\xdb\nS\\ZZe\xec\x96MQ\xec\xe0\xe7\x06\x15L\x83\x0b\xa1_\xd9\x14\xd7\xe4 \xa2\x90\x97f&\xd7L\x94\xb3\x15!\xab\x02\xcf\xb8\xce\xe6\xcdr\xf6\xb2\x11C\xec\xfa\xb1\xe8 gK\xd7\xa4)\x160\xc7\xc0]\x8d\x9e\x10d\xa8$e\x9e\xa1\x02\x96\xa4\xda\x98[>\xc1\xb3\xd5\xec\x94\xa9v\xc1>\xc5\xd1\xec\x08r\n%\xa9\xd9`\xc1\xdb\x1a/\x1e\xcf\x1e\x99_\xbf(a\xcb\x94\x9dg\xf8\x14j\x8c6\x14\x1a\xda \xa6\x8em\x853\xb2\xd9\xe6\x05\x93\xb4&\\\x19\xf3\xbcD\xd5\xe1\x08S\xc4\x1d\xd4n\xcbm\x10\xd5\xec\x8d\x9d\xb9i\xfcy\x8b\xb3\x1a\xf2\x1aj\x02\x0de\xad\xf06\x98!\xe1\xcf\xfcS?/w3\xf8\x81|\xc2\xb7\xb8:e\x8a02\xfb\xf8\xee5\x85O\xeb<[sV\xf5\x1a\x9b\x1b\xe6\xce\x08\xc3\xf5\xba\xae\xb7\xd7\xa7\xe2\xbf\xf4\xfa\x14H\x05%\x91\xbf\x9erk\xccP \x84\x8fN\xa6\x113C\\C\xb3\x05\xc4\xfbni\x17W\xb7\xb8\x12\xaa\xd9\xa0-\x15\xa6\xc5%\xaf\x89\x1aY\xb0\xc0\xcb\xbc\xccY\x9b\x14\x1052[\x92\xa2 \x9f\xe8\xb9\xe5\xdb\xfe\x1e.\x96\xfb\x1e1\xb3\xd8V\xe46_\xe0E\xdbi\xf6GDi\xb3\xc1\x8b\x99\x8d\xd1\xf3\x12~\xf8\xf0\xe1\x12\xbe\xff\xee\x03\x90R\x0dA1\xc6v9.\x16\x80\x8co\xffu8,>\xec\xb6\xf8\xa7\xbf\xfed|\x01\xe0\x16\x15\x0d\xb7\x07ao|\x08\xa0\x9a\x7f\xa1mE\x16M\x86\x01\x95\x80\xab\x8aT3\x9b\xd4\xfb\xe9\x99\x02\xaa0\xb3O\xf2 /\x98\xba3\x941\xdfB\xc8M\xb3eSVS\xd4\x14\xe6\x88\xe2\x85\xc5?q\xbb2\xfd\xcc\x8d\x90\xcb\xb8F\xb7\xdc\x047\x9d1\xb4\x10\x83\x08\xa9.\xb1\x7f\xdf\x92|\x01\xa84\x1b\x16H\x01\xb9\xfb\xa8\xf0\x92T\xf8T1`|Q\x9d\xcf\xf3\"\xafwPb\xbc\xe0f4\xc7\xc0]^uk\xe9 \xefK\xb6F\xe5\n\xf3\x97\xf8\x98\x9d\xc1\xc9G\x8aU\x14\xc3\xb4\xc4\xcc\x93\xf9,a\x9f\xa8D+[\xef\xe7\x15F7\xcc\x07I\xc6\xb3\xc7f\x8bzCj|\x0e5\x9bC\x96M\x99\x89\x11\xc6\xfa!}W\xd6T\x15.\xebb\x07\xe8\x16\xe5\x05\x9a\x17Vw\xc9\xec\x91,\x97y\x96\xa3\xc21\x97\xcd\x9b%T\x98\xcdD\xf8\x14P\xb9`\xfeG6\xdaP\xbc`\xa6\xb6\x1f\x97FVs\xbc\xca\xcb\x92u\xf6S^\xaf-\x93\xcbn\x8bg\xc2\xfe\xd16\xa7\xb3\x8cll\xde\xf8=\x1f\xa9\x14H\xbd\x16\x8e\xa2\x1cz)8a\xf2\xb1\x18p\xb3\xadwrh?6O\x82\xf9j]\xc3\xdc\xe2\x94x\xa7Y' \xdfl\x0b\xcc&Y>`\x80nq\x96/\xf3\x0c(\xde\xa0\xb2\xce3\xaa\x1fj|\xac\x8e\x08\x81\xc4\xd8>\x87\xf9\xae6Y\x97o\x94\xf4#sGs\x0c\x88 \x95/:\x01\xceA\x1c#'w4'\xb7f\x9b\x96*\x90CA\xd7}\x1f\xc9\xae\x9f\x97\xbbk\x15\x1eQ\xe6\xb8P5\xcf\xeb\x8a\x0db\xb3\x84ZVj\x8e@\x05\x91\xa6\x07H\xffi\x99w\xe6\x13\x8d\x90p\xde\x0f\x0b\x07\xe1_\x1b\xd5\x19L\xf3R\x0d\x9c\"\x9fs\xb1\xe5\xec\x89\x97\xffd\x9fP\x81\x9a\xef\xa4\xdd+\xe3P\xe3@8\xf0\xa5\xcc\xa7\xf1W\xce\x9e\xeb\x07\xe3\xbb\xcb\x172\x16<\xcc \xe8a\xd6\xf6!\x19\xd0\x9a\xa1\xd3\x12\x9aR@!x!R\xdaw\x89\xa0\xf2\x06L\xf0\xa9\xd6\xb62\xb2\xd0\xa4\xf7\xc4\x0byY\xe3\x95&W\xa5,1/\xebo\x9e\x0e~\x95\xbe?H\x86\x05\xaeQ^$\xd87\xc1\xbe \xf6\x15\x94`_N \xf6=\xa4\x04\xfb&\xd8\xd7D \xf6M\xb0/\xa7\x04\xfb&\xd87\xc1\xbe \xf6\x15\x94`\xdf\x04\xfb&\xd87\xc1\xbe&J\xb0o\x82}\x13\xec\x9b`\xdf\x0eM\x01\xc1%\xd8\x97S\x82}\x7f-\xb0\xef\x16Uh\x83k\\u\xa0\x83\xaf\xb8\xe7\xed\xe2\xb4\xb3\x1b\xdc\x9d\x05m\x10\xa7\xc44\x91t\xa1b# O*I\x98M\x02E-\x00\xcaSA\xabA\xce\x84#\x9al\xd8\xbb@\xcd\xb7l\xc2#%_+\x92\xe5\x92\xe2\x9a-\xbf\xfa\xe2B'\x95Mq\xddu\x8ayy.\xda\xea\xfc\xad\xc2?7y\x85\x17\xe7\xb0DE\x0f\xc43$ \xb4\x89\x01\x8d\x12\x85|&=\x0e\x16\xe5\xb23\\\x95e\xb3\xc1U\x9e\xa9\xbf\xf1\xd1\x96\xa1\x92\xf5GdE\xd6\xb8T\x8ao\xca6\x115\x08?/8\xb7\x02S\xbaW\xa1H\xdd4\x94\xa9\xfa\x06\x07\xea\xb3\xcf\xfe\x8e\x95;\x80\x885\xea-\xf2M\xee\xab]\xfe\xac\x82WM\xc8\xb1HRv-X\x82\xb1M1\x00/EJ\xa2\xfb\xa7\x8b%\x14xY+\xa4]B\xef*h\xe4\xf9U1@D#L\xcf\xf3\x1d`\x94\xad\x01m\xb7\xf7\xa8\xc5.\xfe\xbd\x7f\xdf\xa6\xcb\xce\x1bL\xa3\xdcB \xd4U\x83\x81\xfd#/\x17y\x86j\xdc\"-R\x83\xfcAiH]vy\x99\x15\xcdb\x10\x12\"\xd1J\x0bu\x0d\xbe\x18\x07N;\x19X\xe6\xba{\xe5$=f\x1f/\xe8\xe0k\x0d\xba\xc0\xa3\xe8\nS q\xf3\xe1\xb5\x1f\x8fl\xc8\xcd\xe4h\xcaW%\xa9\x06\xf9k5\x1a\xfbM\x08\xcd\x8c\xfd\xb0sB\n\x8cJ\xdb\x07\xac\xf0-\xaez\xaf\xda>\x9e|z\xf8\xe1\xf2N\xfdD\x85\xf5#\xa1\xc7\x87\xb5\x81K\x8e\xec\x91j\x81\xaba\x02\xcbQs0\x856j\xb4\xeaMb\xff)\xb9Y\xf7\xb2\x9f\xfd\x82\x16\x8b\nS\xfaw\xe7\xae\xf6\xfd\xa6v\xf9\xff\x12\xe3\x17`\x0c\x10\x1e\x820V\xea#\xeb6\xac?R={\xd8\xfb\xd5Mu\x0bQ\x15W\xb5\xb5\xfc\xc0\x99y\xf7I]O^x\xe0Wv\x10St`/.\x88*-\xe0M\x18\x18:\x0b\x0b&(+\x88,*0B\xb1~%\x05\xa3\n\n\xa2\xca \x00\x15\x85I\x8b~\xc5\x041\xa5\x046\x80\xcf\xab\x90`\xe22\x02\xaf\"\x82 K\x08\x9c\x05\x04\x13\x95\x0f\x8c)\x1e\x08.\x1d\x98\xa0p`\xe2\xb2\x01G\xd1\xc0\xe4%\x03wS00y\xb9\x80\x7f\xb1@\\\xa9\x80E\xe9\xaeB\x81\xc9\xca\x04\xfc\x8a\x044Y\n\xb3\x7f\x9d\xb8@\xc0U\x1e0\xb28\xc0R\x1a\xe0\x0cO\x9ce\x01~\xf1\xcb\xb4%\x01\xae\x82\x00\xb7Lq\xc5\x00\xca\xb3k\x18\xbaJ\x01&,\x04\x18Q\x06\xa0/\xde\xb1\x15\x01L[\x02`/\x00\x98\x02\xfe\xf7\xc2\xaf\x1d\xd0\xbf7\xf0o\xc6\xe8\xc2A\x7f3/m>|\x12\xb8?DY\xbeP\xbf['\xde0\x7f\x04\xc8\xaf\xc7\x0e&\x02\xf8\xbd\xe0}7\xb8\xef\x03\xed[\xb5\x18\n\xeb\xfb\x82\xfa&H\x7f\x02@?\x00\xce\x8f\x07\xf3-\x90\xb9/\x90?1\x8co\x91Hk\xa9Q\x00\xbe\xca\xbbj\xf8\x19\xe0\xfb\x89\xc1{3t\x1f\x0b\xdc\xf3\x8c\x80Np=l?-hoZ\xf89\x01{\x13\xa2h\x02\xeb\xa7\x85\xea\xe3\x81z\x03(\x1f\x05\xc9;\xe1\xf70\xf0\xdd\x1bz\x0f\x04\xdeC`w#\xe8n\x96\xc6\x17\xfc\xf4\x03\xdc\x03\xe1\xf6\x00\xb0]\xdb\xb5i\x81v\xd3\xa0\x18\x01\xb2k\xf3\x14F\x88=\x0e`\xb7\x81\xe9\xd3C\xe9\xe3-\xc9\x1bF\xf7\x05\xd1\xfbS\xa4\xff\xf6\xce\x88\xdd\x9d\x03n\xdd\xcd\x9d\xfb\xf6\xd3\xae\xcd\x1e\xa5]\x9b.\xa3\xdc\xd3\xc4\xe0\x89/|\x12\x07\xa0\x18\x99\xa5]\x9bi\xd7\xe6\x9eb\xa0\x16#\xb3\xb4k\xf3\x90&\x82]\xc6\x01/\x11\xd0\xcb$\xe0\xcb\xe4\xf0\x8b\x13\x80\xb9\x03\x08\xe6\xae@\x98;\x80aB\x80\x98X(\xc6\xea\xc3]`\xcc\x84p\x8c/ \x13\x08\xc9L\x0e\xca\xb8a\x99\xd1\xc0L\xda\xb5\xe9\x94,\x0e\xa8\xd1\xb2J\xbb6c \x1b\x17h3\x0dl\xe3\x89E8\xa1\x9b\x00\xf0\xc6\xb9{.\x10\xc0I\xbb6\xd3\xaeM\x1fh\xc7\xa9\xd5Px\xc7\x1f\xe0I\xbb6\x0741\xdc\x93vmv)\x16\xfc\xd12K\xbb6\x03\xa0\xa01`\x90\x96]\xda\xb5\xa9}\xc1\x0b>J\xbb6\xa7\x03\x93\xd2\xae\xcd\xd1P\xd346\xe7\x0d7\xf9\x03N~\xbb6\xe5&\x94\x0e\x8f\xde*R\xfe\xdc;yW\xfd\xad&\xf2(\xd9e?\xf1\x95\xf3C{{\x9eo\xbf5\xa7\xae\x1a\xc7\x06\xb4\xb0\x8d9B\x96\xab\xf9\xee*_\x9c\xfd\x92/\xdc\x1bs\x9e\x8bW\xbe\xdd]\xbc<\xd8\xa3\xa3\xba\xb6\xdf\xa3#\x7f\x10\x9b\xc7T/=\xee\xa1\xfc\xf3\xec\xa9\xed&\xca\x8e\x10\x8f\x94\x8a\x1e\xf6\x1e\x9f+\xa9\x9b\x00\x84,LM\x92\x99\xe1\x00\xdf.$\xdaQ\x9e\x13\x1d\x1d\xb0\xd1\xd9\xc06\x93\xa1U\xfblBG\x07\xbf&t\xd4/\xbb\x06 \x1dM\xe8\xa8\xf1\xc9\x84\x8erJ\xe8\xe8!%t4\xa1\xa3&J\xe8hBG9%t4\xa1\xa3 \x1dM\xe8\xa8\xa0\x84\x8e&t4\xa1\xa3 \x1d5QBG\x13:\x9a\xd0\xd1\x84\x8evh\n\xa4*\xa1\xa3\x9c\x12:\xfa[@G\xf3\xae\xc3\xb6\x9dc\x9b/\x14\x02\xd5G\x0c\xdb\xc5\xeb\x1e3\x9dc\x0e\x9b\xe6x!3\xf3\xcb\x83\x89A\xe6\x9dynj\x8e13Vy\x16'\x9c\x14\xf9\x0dO\x8e\x0d\x1a\xa2\x8fE\x8aD\xda\\\x8f]\xb3]\xf0\xd5WM\x14\x17f,\xb0l\xea\xa6j\x93H\xad\xa4M\xbd\x16\xb8\xee\x84\x98.\xf4\xf1\xa5\xf6L\xd1 \xacw\x8e\xb3\xf57O\xcd\xf8\xee\xb7\xfc\xf7\xcb\n/\xf3\xcfR\xc5\x14\xe6\x9d?\xca\x17|`I-v\xfb\xed!\xaf\x07\x8b\xda\x8a~_m\xb9\xb0\x01\xb8\x9d=K\xd2\xd5\x80\x13z\xed\x7f\x90j\x9b\x0d\x98\x05]8\xfa\xe7\xf6\xa1\x04\xce\x1e\xe81\x81\xb3>\xc9=H\xe0l\x02g\x8dO&p\x96S\x02g\x0f)\x81\xb3 \x9c5Q\x02g\x138\xcb)\x81\xb3 \x9cM\xe0l\x02g\x05%p6\x81\xb3 \x9cM\xe0\xac\x89\x128\x9b\xc0\xd9\x04\xce&p\xb6CS\x00e \x9c\xe5\x94\xc0\xd9_\x0b8\x1b\x01\x10\xb6w\xb4]\xb1\x95\xb0\xf5\xa66\xb5\x0b\xb0\xc6\xf4\x03y/\x06rF\xca[\\\xd5\xb4\xbd\xc7\xed\xb9\xda\x13\xca\x1ec_\xaf\xb7\n\x8f\x06\x13u\x8d\xcb\xe7\x1e,\xa8\xa8\x14+4\x10\x008\xd9\x97\xf7:U8\xd1E=\x0f\xf9\x11\xf7{:\x13\xbc\xd8}!\xc1\x8b\x86\xdf\x13\xbc\xd8\xa1\x04/&xqO ^\xac\x13\xbc\xa8\xa7\x04/*J\xf0b\x82\x17\x13\xbc\xe8\x19%%x\xb1\xa5\x04/v)\xc1\x8b ^\xd4P\x82\x17\xb5\xcf$x1\xc1\x8b\x06J\xf0b\x82\x17\x13\xbc\x98\xe0\xc5\x0eM\x01\xf5$x\x91S\x82\x17\x7f-\xf0\xa2\xc7\xc9\xb8\x02E\xecp\x9ap+dg-=\n\xe8\x14\x0d\xb8\x91N\x81\x8e} \x1ci\xeb \x9d\x12\xe1\x94\xbe\xa6&\xd0\xed\xf3X\x84\xb3\xd7\xa8|\xee\xc1#\x9c\\\x01A\x90\x97%C\xe2\x85~\xf6\xd4\xe4D?{\x98\xe9\x80a\x02?\xf5/$\xf0\xd3\xf0{\x02?;\x94\xc0\xcf\x04~\xee)\x81\x9fu\x02?\xf5\x94\xc0OE \xfcL\xe0g\x02?=\xa3\xa4\x04~\xb6\x94\xc0\xcf.%\xf03\x81\x9f\x1aJ\xe0\xa7\xf6\x99\x04~&\xf0\xd3@ \xfcL\xe0g\x02?\x13\xf8\xd9\xa1)\x80\xa8\x04~rJ\xe0\xe7o \xfc\xc3\xa1\x143/m\x96a\x12\x10%DY\xbe\x00\x8a['\xde\xe0I\x04t\xa2\xcf\xc8L\x04\x9bx\x81&n\xc8\xc4\x070\xb1j1\x14,\xf1\x85JL@\xc9\x040I\x00H\x12\x0f\x91X\x80\x08_xdbp\xc4\"\x91\xd6R\xa3`\x11\x05\x81h\xf8\x19@\x91\x89!\x113 \x12\x0b\x87\xf0\x8c\x80Np=\x182-\x14bZ\xf89a\x10S\x9e\xd6\x04\x81L\x0b\x80\xc4\xc3\x1f\x06\xa8#\n\xe8p\x82\x1aa\x90\x867\xa0\x11\x08g\x84\x80\x19F(\xc3,\x8doJ\xd9\x0f\xc6\x08\x041\x02 \x0cm\xd7\xa6\x85/L\x83b\x04t\xa1\xcdS\x18\x81\x8b8\xd8\xc2\x06QL\x0fP\x8c\xb7$op\xc2\x17\x9a\x18\xb7\x81F\xc0\x01\x13\xed\xa2\x91\x88Ew+\xcd^\xae\xb4G\xa6Gi\x8f\x8c\xcbX\xf741\xa8\xe2\x0b\xab\xc4\x01+Ffi\x8fL\xda#\xb3\xa7\x18\x08\xc6\xc8,\xed\x919\xa4\x89\xe0\x98q\x80L\x04$3 (39,\xe3\x04f\xee\x00\x9a\xb9+p\xe6\x0e\xe0\x99\x10\x80&\x16\xa2\xb1\xfap\x17H3!L\xe3\x0b\xd4\x04B5\x93\x835n\xb8f4`\x93\xf6\xc88%\x8b\x03p\xb4\xac\xd2\x1e\x99\x18(\xc7\x05\xe6L\x03\xe7xb\x14NH'\x00\xd4q\xeeU\x08\x04v\xd2\x1e\x99\xb4G\xc6\x07\xf2qj5\x14\xf6\xf1\x07~\xd2\x1e\x99\x01M\x0c\x03\xa5=2]\x8a\x05\x85\xb4\xcc\xd2\x1e\x99\x00\x88h\x0cH\xa4e\x97\xf6\xc8h_\xf0\x82\x95\xd2\x1e\x99\xe9@\xa6\xb4Gf4\x045\x8d\xcdy\xc3P\xfe@\x94\xdf%C\x9dM*\xf0\x85\xaf\x16\xe2bYn\x14\xba\xe4\xbf\xc3\xcf\x0d\xaer,n\x12\xda\xf7Dy\xbd\xde\xce\x9a\xe7M\xbd\x16o=R\xb2?\xd0\x0d5\xdd\xbew\xa9'\x8cxH\xe4`\xe5$\xb5W\x80\x9a\x83\xc4f\xa3\xc3I\xc0(\x148\xc1\xa4\x0d\xfa|\xb5\xc1\x1br\xd5b\x1f\x16\xcc\xc9\xab\n\xb6\xc9\xcb\xfa\xcf\x7f\xd4\x9e|z\xf8\xe1\xf2N\x18Ya\xfdH\xe8\xf1am\xe0\x92\xd7\x93\x91j\x81\xab\xe1\x82P{}\xf97\x93jcd\x02\xe5l\xbe\xbb\xea\xac\xcdu\x99\x14\x19^\x1a\xb3(*o\xc2V\x89\xfe\x99\x14\xc9\xf5\x91\xea\xf3\xc3\xce\xa2\x98B\xbd\xa8%\xa9%\x17\xe2\x08\xb7ly\x10\xeb\xab\xee\x1c\xc8\x94\x19\x90\x89\xf3\x1f\xe6\xecGX\xee\xc3cI&\xad\xd2k9&\x17`}CV\x94Nb\x93\x94\xd6^i\xed\xe5\x0c\xd5\x94|\xdc\xd1\x98\xa4\xe3?*\xd92\xe1\xae\xd8_\xbc\xc4\x0b\x9dd{\x02\x06\xcd\xb1\\\xa8+\xf2\xa9\xc4\x15=\xfb\x85\xff\x9f\x05\xa6\xe8\xb8\xa1\x97\xec\xd1\xb7\xfc\xbdv\xae\xe5\xd3iQ\xb4\xf7N\xc9O\xa2\xea\xc69\x94\xc6\xbex\x9dg\x1c n;\xc1\xdc\xf7\xdecv\x1d\xb8\xd2LO\xb7\xc7\xdaH\xe5\xcf\xc7\xf2\xd9\xde\xcc\xdd\x91S\xfe\xfc`g\xef\xee\xb7x\x18\x1eC~\xc0\x11C\xde=\x95\x0bR\xa3\xb7\x9bsoG\xb44\x1e\xaa\xb7\x9e!\xe9\xcc\xa7O\xc60I\x90Ci\xe0\xa18p\x81H\xe0\xa7>\x17\x98\x04~l|\xbf\xc2\x94a\x95\xa0\xa8\xe0\xca\xc8M\x82\xd86\x80 \x82\x03-A>*\xda\xfb\x92VI\xb4\xae\x9a\x8c5\xb5\x07\xf4\xf9\x81\xc6e\xeb\x04\x99\xf5j\xb9q\x8b&\x95\xc4\xe8\x0d\x05\xbf{{\xdf\x7f\x00\x0e\xc0\xdc\xe0\x92/p{\x95,\xb2M\xdbX\x16\x9fN>g\x1b\x1d\xfb\xd2\x9ca\xb3\x86\xcf\xadw\xca\x83G\x13\x0e\xc7)\xe1p\xfb\x9f|\x95\x99p8\x1e\xc9u\x02\x9av\xe1\xd7\x1d!l-\xd7\xae\x00y\xc6\xe30\x04R\xc4\x9e\xe5vq8\xa6\x1d\xa39\xad\x0e\x07\xbf\xa6\xd5\xe1\x17^\x1dZW_\x83\xa1#\x96^\xddQ\xb2_\x91\xa9\xe9\xa4]\x98uW0ln\x1e\x0e\x9b\xbbZN&(\xcf\xbd\xb6\x85\x04\xe5I\xbac\xe5\xbaA\xa8\x04\xe5M\xa1\xc5\x04\xe5%(\xef7\x00\xe5\xf1\x99\x96^mp\x8d\x16\xa8F\xe6\x0c\xe3\xff\x0e2\x8c\xf4G\xf9J\x0f\xd0\xcb\n\xeeM\x15\xbb6\xf1X\xe1UNk\xcc\xd6\xfbl\x82oYu'z\xfd ]\xfd\xc6\xe4\x13\x0f6S\xa8:\xfe@B\xc7\xae\x0e\xb4\x0fx\xc4\x7f\"\xf9\xd9\x94y\xedH7\xea\xbb&\xc8\xd8AA\x1e\x89=wg\x059\x93{\x1e]V\xe4\x93z\xea>\xcdb\xd96\xdb$\x06\x84h\xa5w\xc0\xcd*\xbf\xc5\xe6\xa3\x15\xba\xbc\x98\xd2\xf9\x813\xd0\xa0\x9al\x1e\xeb\x93\xa6\x82\xf0\xe7-)\xb1=!\xe9ZFu\xa9\xb3\xa42\xac\xed\x15\x85iI\xc9\xd9U\xd4\x96|\x12\xf3\xd7\x93\xaf\xf7\xbf\x8b\xe4ri\xce9\n\xda4\xb6#\x8e\x04U(\x97{ \xe7\x88\xe2\xab\x16\xef\xc9K\xe1\xa4\xd9\xbf\xf1\xcf\x0d*\xac9NA\xfc\xeb \xaf\xf4\xb1\xcc\xebc*\xd7;\x8e\xd7\x9e\xc8O\xfa\x0c\x9e|\xfd\xff\xb5}\xdc\x8b\xe3z\x9f\x1f;\xa42\xbe\x9d^\x90\xa5\xb0\x8d\xfd\xf99Y\x85Y\x94a>\x1fFP\xdb\x03\xc6\xe2\x98\xb18v\x9c\xad!\xa8\x95\xfd\x19\xfc\xf9\x14\xeauC\xcf\xe1 \xb0\xf7E\xdf\xfe\xeca\xab\xa8\xc8\x11\xb5\x0fc\x1f\xa7\"\xc8\xe1Z\x04y\x0fyW\xc2J\x91\xec\x82X\x97\x149\xe5j\x94\x83]\xfd\xa6\x00~\xef\x01o|\xc6/+ \xbd\xcf\xda\x19_Hf\xc3\x87'T \xa7h\xbd\x85x#\xadE\x0e\xa4\x93Q\xfeM\x1d;G\xd7\xe4S \xa4\x04\xfcY\x1e$e\xe4\xc6{\xf7\xfc\xc3\xdb\x1f\x1f\xcb\xf3\x083\xd3.o\x10\x89\x10n\x19|\xa7\xbe\x10@~n\xeb\x91L\xae\x05\xd2\x9e\x9a*\xff\x02*\xfc\xf8\xeeB\xe4)\x16$k\xf8\x99\x88'\x84\xc5\x0dl%\xfcU\xb6Fy\xf9Xf\xa2$\xe0g\xe4\xd4\xd9\xfa\x9e\x97\"\xbeb\x0bUx\xbb\x15\x7f\x0dV\xcb\x10\xc3\x13\xd4T\xf9\xd5\x1a\xd1\xf5\x97\xd1\xcd\x0f\x88\xae\xc5,H\xd7\xe8\xe9\x9f\xfe\x0c\xaci\x01o\xb4\n\xdb\x12\x16qr\xa8\xf7\xe3\xbb\x0bsdp\xc1\xbc|#\xf13qH\xad@i\x8dop\xa3R\xcd,\xf2Ey\\\xcb\xe3\xd0&V\xab\x8fwlW\xc4\xee\xa9W\xfb>\xb2\xcf\xaa\xee\x8f\xd2.\xbb\xdb\xf3\xa2:k\xf2\x8e\xc9\xb5\xcbr}\xb8\xdbY\xacsQ\xd2\x9e\xcd\x84\x15\xf3\x87\x13V<)V\xdcf\xb5\xbc\xea\x84ul\xce\x06\xa9\xb8\xb4s3\xe1\xc3\xda\xdf\x1f\x12>\x9c\xe0\xd40\xac*\xc1\xa9w\xa8\\7\x10\x98\xe0\xd4)\xb4\x98\xe0\xd4\x04\xa7\xfe\xf6\xe0T\xf7\xc6\x8d\x00,\x95\xaf\xa9\xf7YNm9\xfd!t\xfa\x8f\x86\x9c\x9ab\xaa\xa8\x15\xa0\x13\xfftD7N\xec\xd3\x05RX\xc1 G\xdc\x07\xce\xee r\"\x9e\x1e!\x1c8\x97-\xc3g\x03\xb0N\x07\xb8\x01\xfcPP_\xa4\xd3\x07\xe7\xb4/\x06\xf6\xe4\x8bq\x86hfZ|\xd3\x8dn\x06a\x9bN\xbc\x07B\x91\xcdq\xb8\xe6\xc4\xa8f\x1c\xa69\x1e\xd1\xf4\xc03]\x8eB\x90\x07\x96\xe99\x98]\xc9\x14A\xd3\xa2\x98\xb6a\xee\x97+\x9b\x18\xbf\x8cG/]\xea\x8bA.\xad\xc2\x1apK3j\xe9\xb4\x03?\xa75-^\xe9\x87VZ\xb1\xca\xb0~\x19-iB\x94\xd2\x17\xa34#\x94a}\nB'\xa7\xc6&m\xc8dX7\x8c&\x17\x85Ir\xe9\x0d\x0c=\x11\xc9\x18<\xd2\xb9\xbePd\xc4\"'R\xdaT(d<\x06\xe9\x0d\x95\xd9\xf1\xc7\xe9\xf41\x1d\xf2\x18\x8a;\x8eC\x1d=\x15\xe9\xf6s\xe3\xf0F\x0b\xda\xe8\x0b`L\x84_$\xf8\"\xc1\x17\xff8\xf0\xc50\xca\xed\x99\x9f\x08+,\x87\x8b\xb0\xbfw\xab\xe3\x87\x99\xbb\x11\x1b\xd6\x82\x12U\x81Wi\xd7\x077I\x7f\xe6\xfc\x06\x97I\x0f\x8e\xe6*o\xfe\xb1\xef\xd6\x1e\x91y\xa2\xb8\\\\\xe1\x12\xcd\x0b\xbc\xb0M\x84\xbf\x86\xd4\x91\xb5\x9b\x82t\x89\xd5!\xf9M\xfc\x00\xefq\xb9\xf8N4)\xae\xf5\xec\x8f3\xd4\xd3=\xd0\x1a\xd5\x8d\xa5\xa4\xed\xd3\x1a\xf3\xcb\xffP;v\xcd\xd9\x02\xc6\x98q5\xd5`zu\xe0%\x9b\xac\xd9\x92dq\x0e\x1f\xc5N\xf0n\x8f\xf2R\xdd\xe2\x9eSX\xb4\xcf\x1a/\xa3zE*~7\x1b\xcd\xe9i{eN\x89?\x15;\x16\xeb1\x05t\xb5!\x0f\xf9\xb0]\xac)\x99I\xe32\xb6\xfb\xbe&\x15\xbf\x01F\xdc\x98)\xeev\xdc\xa02\xdf6\x85Xp\xf3\xc5GN{\x85G\xb9\xe9K\x94\xe4\x93B\xc2n0\xde\x1ef\xfa\xf7\xf4\x9c\xfb\x9f~\xf8\xf4\xcf\xa7\xa2-\x0e\xb1\xe0\xcf9\xad\xc5\xa2{\x8e\xb2\x9bO\xa8Z\x98\x9a\xed_\xeaI\x96m\xef\x97y\x81\xb5\xab<\x19\x80\\\xf9\x0ep\x93\xcd\xf7\x8c\xe5\xd2zo\xbf\xca\xc0h\x1c\xae\x86\x97>^\x1b\\\xb4\xdem\xe90Zkar\xe1\xe4u\xde\x92K\x96\xc2\xb2\x14\x96}\xc9\xb0,(\xc29\x1c\xa0\xba8\xa7\xebz\xbb\xa7\xa5u\xff\x8e\xcb\x9a\xfd]\xd9\xa9i\xb4\xf1\xfc\x83\x88\xf2$\xd2[7UI\xfb{\x1c\xc5\xba\x8c_X\xdc^\xf8\xdai\xabeFq]\xe7\xe5\xaa\x8b(?/w\x83\x83\x11\xf8\x12\x8f`q\x9b.\xe7\x89\xba\xd7\xc8r\x0e\xa2B@\xdd\xd1\xadx\xc9\xf1\xbag.\xe6\x9c\x99\xce\xbb \xd7\xce\xd9\xb0v\xba\x88\xed|'\xdc\xee\xc1Q%\xda5\xee?\xcb\x9f{Q\xe2a\xe7\x1fl\x98hw\xf9\xf71H\xad\xf1\x9bs\x8c9\xe26W\xcc\xe6\x13\xeeL\x16\xaby\xc7i\xc6\x18-\x15-sr\xa7\x95 \x15-KJE\xcb\x8a\xf8L\xdb\x19\xcc\x9e\x07\\\xed\xdf\x18\xf0\x0b9\xdb\xea\x9f\xdb\x87R\x949\xf85E\x99w\x10e:\x93\x7f\xc6\x83\x8f\x07\xc3F<\xac\\h\x1b\x98\xc9?\xefH\x03\x9fPY\xf3\x0544\xdb\x19\xbc\xc6,\x84\x13\xce\xaf&,\\\xed\xb1CE1\x0cE!\xb2\xc2m\xf8\x915\x9f\xd7\xa0\xbb\x8c\x14\x05\xe6\x17\xc4\xbf\x92\x9a\xdb4E\x9d\x1f(*\x15y\x87U\xd0\xa6\"\xef;T\xae\xbb<9\x15yO\xa1\xc5T\xe4\x9d\x8a\xbc\x7f\x03E\xdet+\xd7\x98W!7 w\xe6\xba\xf7\x8a\x81\xf6ja\xc6\x9e[\xa2\xf3\x8e\xe1\x96\xe1\xe0\x86\x1c\x8fr\"\xfd\x99\xfc\x07\x82\xc9\x87\x1elJ&\xddN,\xc9'\x193\xed!\xf2Q\x07\xc8?\x90\xdb\x89\xdb\x11\x9c\xee)\xeeSJ\x1f\x0d\x1fN\xe9\xa3\xc9\xd2G\xc3\xc9E\x9bDZ\xf5\xb2H\xed-\x0e\x03\x86]\x94r\xd8\x91\xfd\x15\x0f\xc7T3\xd2=\xb3N\xe9D\xf5\x94uz(Y\xa7\x91\xf7mif\xbbi+\xcfR\xda'vM\x9d\xd2>w\xa8\\w\xc2\"\xa5}\xa6\xd0bJ\xfb\xa4\xb4\xcfo!\xed\xd3l\xb7\xc5\xce\x9c\xe0\xf9\xc0l\xe1=\x7f\xa8\x97\xcf\x116\"\xde\xee\xe5r\xb4U\xd3\x1d.\x8fT\x97\x1eh\xf2\xa5\xab\x90.\xddGH\x97R/\x0f'\xf5\"\x17\xb5\xd2\xe2U\xca\xa5\xb5\xff6\xc52x\xd1;\xc3\xa2M;D\xa4]4\\\x9c>GPJ\xd0t)%h\xfe\x01\x124\xa6\x8e\xf0)\xaf3\xe9\xc4\xef\xe5\xeb\xce\x7f\xc6\x9d|\xed\x1fSV\xe5@?)\xab\xf2E\xb3*)W\x11\xb6\x10L\xb9\x8a;T\xae{\x95\x9dr\x15Sh1\xe5*R\xae\xe27\x93\xab8\x9b\xef\xae:\x0bc\xed\xfe'\xfe\xe0\xdbe\xbf\x02e\x9f\xab\x90\x95&|\xc1\xa6\xcdW(\x06\x8fT\x9f\x1eh\xb2\xc2\xb4\xc4\x1f\xb1\x94\xb3\xe4\x1c\x1c\xd1\x8a-\xdf`}\xd5\x9dk\x982\xd30q\x9e\xc1\x9ce\x08\xcb1\xf8`\xcd\xd2*\xbdV3r\xfd2\xb0dE\xef._\xa4SH -^\x1e\xd6\xe2e\xdc)$6\x1c8t\x96\xea\xf5\xca=IQ|V\xe3r\x81\xabM^\xd6\xed|\x85\xe6Y~\xc5[6OU\x9d\x91\xfe\xfc\xdb\x17\x17\x9cu\xc7\xd3\x89\x9e\xadQ\xb9(p%Ovk\xb6[R\xd5\x94?\xdf\xcep\x8b\xbc\xc2Y]\xf0\x84V\xcb\x91\x03\xe7\xdbm\xc1b\xb9\x9c\x94\xa70\xdfm\x11\xe5\x0b\x87\x0f\xad\xb8\xfc\xb8\x80\x02\xd7\x98-\xcd\x98[l\xf9\xee\x06'u\xcaS\xb8D\x18\x9c/\xb8\xb3\x95\xd2\xe0\x05\x87\xdaOe$\xc8\x8fZ\xdcnO\xa5\xdb<\x85\xedSq\x98B\xcb\x8b\xd6\xa4\xc2\xa3K;[\x95\xc9\x1f\x1f\xecD=\xd25\x1d\xe4\xf1\n\xa298\xce2 \xf3rI\x02_X\xe0\xcfAo\xd8\x05\xd6&\x87\xbd\xb8i\x92\xc2\x06\xb7\x14\xcbn[\x11\xb2\xbc\"[\xa3\xd7\x8e\n\xa4\xb4\xfc\xc01\x13\x80m6\x00\x97@\x82\\\xb3\x02(6\xc6_\xbd|\xbb\xe1\x9b\xee\xc9\x8b\x87G\xf2\x9f\x91\xfe\x10\xed=M\xd7\x96;\x18\x15t\xc9\x8c\xe6\xedv\xef\xab\xcb\xbdk\x12\x19\x1e\x16\x88e\xa8\xc8\xf8\xd11\xe5\n~\xc4\xd5\xcd\xc1\x9e\xd1=U\x84\xd4\xc2\x01\xf3c\xb4\xb2\xc3lM\x97\xe6\x18P5\xcf\xeb\nU;\xd9\xadS\x107d\xf1\xe3\xaa1\xa58c\xbf\xa93\xb9\x8c\x9c\xf0g\xc4\xfc?\x948_\xad\xe7\xa4\xa9\xf8\xfbd\xb8\x9a\xef\xd2\x1a\xd1\xb5\xed\x02\xb27\xa4\xc6\xe7\xe2\xe8\x08\x1e\x92\xf2\x84\xd8\xa2\x11\x13Q{\x80\xa7\xd2 \x0f\x86\xf9\x83\xe6\xcf/Q\x80\xdcr3\xdf~Fs\xd4Mk?\xaa\x14\x86\xd7\x9b\x89\x0f%\xdcB\xdb\xf4\\\x80A\xea \\\xf5\xbca\x8d\x11\xa2\x00j\xd7\x80\xbd\xef\xe6^\xaf\xd9\xf74\xae\x0d#\\8\x9b\xc3\xe8\x16e!\x9e\xd7\xae\xf8v\xfa\xb6\x1f\xe1\xd3\xd6\xcb\xb6k\x9b\xe1\xbc\xafh\xa5\x81hx$s\xf8\x99\xfc>\x91\x12L\xc4e\xc6\xefd\xfeF\xba\xef\x93\x16Z\x83_\xd3B\xcb5R\xf6\xf4\x1c>\xbe{}VaJ\x9a*\x93'\"\xf3uAS\xe6?7\xb8\xd8A\xbe\xc0e\x9d/\xdbJ\x1df\xdd\xc4\x04\xd3\x8aE\x02\xc5U\x8e\x8a\xfco\xd82\xe3p\xe3\xcfH\x01\xf3f\xb9\xc4\x95\xfah\xf2\x88b\xd17\xbe`\xd8\xaf\x13L\x11\n@\x81\x91\xed\x0e\x00Rb8:;\x82l\x8d*\x94\xd5\xb8\x12\x13c\x81h\x0d\x14\xaf\xf8\x11\xb5r\x84~|\xf7\xfa\x98\x0e\xeb|\xfb\xc4\x85j\x8f\x935\xb7\xca\xd8-\x9b\x82W:\xa1\x82ip\xd1?q\x9ai\xf2\x04Q\xeb4t\xcdD9[\x11\xb2*\xf0\x8c\xebl\xde,g/\x1b\x11\x19\\?\x16=\xe1l\xf7\x08\x97\xe1zg\x10YtT\x922\xcfP\xc1\xc7\x90\xb9e~\xef\xc0)S-\x0f\x01\x8efG\xcc\xa9\x95\xa4\x06\x94ex[\xe3\xc5c\xdb\xa4}Q\xc2\x96);\xcf\xf0)\xd4\x18mh{r\xf5\xb6\xc2l\x91\x98\x17LR\xe6\x01\xd7\x18\xe6y\x89\x0e\xfc\xef\x9e\xf8\xb6\xa3\xdd\x16\xd3\x16B\xd8\x99\x9b\x16\xbe\x0er\x9e\xcbn(V\xb0\x0d3$\xfc\x99\x7f\xea\xe7\xe5n\x06?\x90O\xf8\x16W\xa7\xd6x\xe6\xe3\xbb\xd7T\xe6\xf0\xd4\x01Q\xc6g\xb9\x07\xc5p\xbd\xae\xeb\xed\xf5\xa9\xf8/\xbd>\x05RAI\xe4\xaf\xfb\xeb\x1a\x08\x1f\x9dL#f\x86\xb8\x86f\x0bHL\x12\x96\xc7\xaa[\xb5\x9e\xe7'\x08q\xd3\xe2\x92\xd7D\x8d,1\xab\xf0\x83\xad) \xf3i\x8fKR\x14\xe4\x13=\xb7|\xdb\xdf\xc3\xc5r\xdf#f\x16\xf22\xd5E\xdbi>\x01R\xdal,\xc722F\xcfK\xf8\xe1\xc3\x87K\xf8\xfe\xbb\x0f@J5\x04\xc5\x18\xdb\xf1L\xaa\xf9:\x8b\xbf\x0e\x87\xc5\x87\xdd\x16\xff\xf4\xd7\x9f\x8c/\x80*\x05)\xa5\xbd\xb5\xa1.\xa9X\x17\x16M\x86Y\xe4\xcd\xa70]!\x8d\xa0\xdf\xc3\xf3}\x16D\xa0#\x88\xe9L\x94\x04e(c\xbe\x85\x9f\xf8\xd8\"(sD\x07\x10Q\x97\x88\xed\xacI\x10F\xc8e\xe4\xe7\x97\xd5k\xbc\xe9\x8c\xa1\x85\x18DHu\x89\xfd\xfb\x96\xf0|\x8a\xd9\xb0@\n\xc8\xddG\x85\x97\xa4\xc2\xa7\x8aA\xff\xbc\xc7\x12\xe3\x85\xc2A\xb9\xcb\xabn-=\xe1}Q\xc7\xd1\xcb\xe0\x86\xce\xe0\xe4#\xc5p\x8b+\x9a\x13\x16\xd7p\xf3d>K\xd8'*\xd1\xca\xd6\xfby\x85\xd1\x0d\xf3A\x92\xf1\xec\xb1k\xad\xc0\x0f\\[6e&F\x18\xeb\x87\xf4]YSU\xbcn\xa0[tdv\x97\xcc\x1e G\xca\xcd\xb5Fr.\x9b7K\xa80\x9b\x89\xb08\x0dN\xa0\xcb\xac\xd1v\xfd\xd6\x8eK#+^\x07Q\x8a3\xe9l\x97\xb20N3a\xffh\x9b\xd3YF6\xd6;\x9c\xf9H\xa5\xa2\xeeI \xfe\x03/\x05'2\x18\x16p\xb5\x18\xda\x8f\xcd\x93 [\x0d\xc0\xdc\xe2\x94DYB^w\xb0\x0f\xb1\x9a\xed\x9c\xbe\xb7Ae\x9dg\x86\xdb\xec\xef [<$\xdf(\xe9G\xe6\x8e\xd8\x1aY\xa6*\xf7\x01\xceA\x1c#'w4'\xb7f\x9b\x96*\x90CA\xd7}\x1f\xc9\xae\x9f\x97\xbb\xeb\xf62\x03\x0eT\xb5kx\xb3\x84ZVj\x8e@\x05\x91\xa6\x07H\xffi\x99w\x1e\\1\xd3 \x0b\x07\xe1_\x1b\xd5\x19L\xf3R\x0d\x9c\"\x9fs\xb1\xdbK\xb9e\"\x98\xf9\x87-\xcan\xce\x9a\x92\xfd\x87\x9f\xef\xc8\xedB?\x82\xe4Do\x0el\xc8\x12\x9aZ86\xe5\x1e(s\xac\x9d+\x1fV\xb8\xc4\x15\xaa\xb9\xf0\xf5\x9a,\xa8\xec\x96\x96\x1f\x93G|B}{\xdf\xc9l\xc8\x93s\xb8d\xf23\xbf \xbb\x82Z\xa5\xe7%\xbc\xf8\xc3\x1f,\xd3\xe4+B`I\x08<\x83\xd9l\xf6/\xc6\xc7\x980\xa8\xdc\x99\x1f@\xe5n\xc6\xc4xU\x91\xcd\xc9\x92\x90\xc7\xe6Gg3\xf3\xfc\x97/\xe1\x84\xb1\xfa\xc8;\xf2\x81\x9c\xfc\x8e\xf1z\x0c\xbfX|\xb8\x8d\xdf\xdf\xed\xba{\xea\xd0\xdd_\xd0-\x9aLy\xf0\x8c\xc7\x86\xac\x95 4\x94\xd3\x93W\x84\xcc\xb2\x02Q\xeaP\x90\x10\x91\xbd$\xfa\xd8y\xd1,\x83As\xad\xea\xbeq\xa8\xeerW\xafIiQ\x9e\x90\xea\x15!'\xb3\xd9\xcc<\x1b\xb4\x8a;\xb1>\xc3\x8d\x8f\xab5V\xab\x8c\xc9\x85P\xea\xcb\xef\xde\xbfxwq\xf9\xe1\xed\xbb\xc7\xb6T\xee\xdeP\xed\x0d\x8b\xa6\xed\xea\xfc\xa3C\x9d\xdf\x13\xb3&\xb9*\xcf\x9f\xc1\xef\xb6\xf3\xd9+B~\x99\xcdf\x7f7?\x8c\xca\xdd)\x0bC\xd9\x1b[\x11D\xfd\x88*\xbaF\x05S\xb2\xbd#6\x15\x0e\xa5\xb0\x88\x90/\x07\x02|,7{\x11\xb8\x80|\x80\xf0\xa7\xfe\xe9\x19\x94ya5p\xbb\\\x06K\xfe\xc0\xb7'd7\xad/V\x0b\x0d\x98\xef\xf6a\x97\x9a=D\xed\xbc>\xeaUuw\x0d5\xc4,\xc7\x9a\x90\xea\x8c\xad\xdfg\xfc\x07\x16\xae\x1e\xab;\x91T\x1c\xc7-\xc147\x08\x0b\xd17\xd6N-e\xb1kO\xa4\x1f&\x0b\xda0\x19\xd0\xb2\xc6\xba\xa2rA<\x8fq|v\xacoJ\xce\x89Jd\xbe\xdam\xb3\xf4GKBfsT\xf1\xce~>\xdb\xcd\xfev$\xb4\xc8\xd7^Z~\xe6\xa5(\x17\xf5\x88\xf1`\xd3\xa1\xf6\x91\xbf\xbc\x7f\xfbF\xff\xcb\xb3g\xcf\x9e\x99m\x80\xbd\xb7\xcf\xb9\x888\x920w \x83 \xb1\xaekh\x9b\xeb]5\x05\xaa\xf4\xfc\x0e\xd9\xb0W\x16x\x1f\xb6\x9c\x02\xde\xcc1\xbf\x19@\x8e\xeeS\x11\x8e\xeb\xd8\x99.\xd3\xea\x84\x14\xa2$\xe8\xfa\xdf\x99\xea\xaee2\xa1\x0d\xdb\xba\x1fG?@\xa4\xfb9\xb7,@Pv\xc3|\xd0~A\xbc\xcc\x0bl\x9e7\x94\xcf\xba\xc4\x15%\xa5u\xd8\xcaL\xdc2\xafh}\xc5\xbf\xf03xb\xe6\xdc\xbe\xc0\x8cR=\xff4|\x06\x03\xb0Ju\xc4uyt\x0eG\xbaQ\xdbW\xc3L\xf4\xf2\xe8\xd4\xc6\x8f\xf7\xef\x0d\xda0\x9e\xff*\xba\xf0o\xd6\x17X\xff\x06\xcf\x87v\xf2b)\x17\\}[k\x01\x84O\xb8(\xbe\xba)\xc9'Q\x88\xb6F\x14\x90m\x87\x9ayp\xf5M\xfeT\x04\xf0\x83q\xb0\xdfx$\xc5a\x06l\xda\x0b(LZ\xdf\xd85\x1f\x8c\xca\xce\xd7\xa4Xtk\xde\xc4P\xce\xcbv|\x80\xc8\x00\xeaY\x89!\xa3o\x87\x8b0k'\xe7\x13\xe6\xd7\x94\n\x0fRC*c\xfa\xd3_\x7fzl\x19HS\xd8\\\xbfA\xbb\xd9qU1\x96OfO\x9f<\xa5G\x16\x13\x12\xff\xb5\xd6;\xed\xaf\xb0\x86)\n\x95\xc0\xbd\xb1\xa1\xe7\x13'hPq\x16h\xe3\xb4\xbcMpd\xdb\x9b\xaa\xbfd\x8fi\xd2^\x8e\xfc\x1eW\xb7y\x86=j\xbd\xe6\x05\xc9n\xe8Y\x81jL%\xb2\xa7+\xf7\xfa\x1e\xd7\xaf\xf9#\xdf\xb2\xe7\xdb\xdb\x148\xb2\xcc\xff\x0e\x9c\x91\xb6(\xb9\xff\xee#\xd5\xbf\x07Z\xf1\xc4\xfbq\x95\x1b\xef\x14\x88\xaa\xa9\x19q\x03\xa3#\xb9\xb4EU}Eq}\xb5\xc6h\x815p(\xb8$\x07\xa7\xf4\x8c,;;\xc1\x89\xa1*\xb2\xa1\xf4\x8a\xcc\xaa\x02\x1fu\x81[e\xed\xf6\xcbKT\xd5\x14\xd7?p\xcd\x1d~n\xf1\x107\xda\x8b\x97:+\xd1\x98\x88\xbc\x00\xb6{\xad\xd4\x96gjy\xec}M\x177W\xfc\xd5k\xc8KZc\xb48\xbc\xf6u\x8c\x99\xdd\xad\x0d\xc8\xbc\xba\xe5\xeb\x88\xee\x8b\xab,y?y\x01\x9f\xe3kZ\x8b\xc2|\xe4\x02\xf3\x07\xe9\x92\x97\xed\x80\xdfNdAh\xbb\xfd\xb2M\xfa$k\x05\xbd`\xee\xb1\xa4\x0d\x85\x0cmE1\xbfD&\xe5\x9f\xab\xa6\x90\xb7\xebl+\xc2\xfc\xaa]D\xd4~O\x81\xa2\xb2\xff\xe17\xdd\x9eZ2\x11\xdd\xaaZ\x16\xf3\xb5/\x89\xea\xae\xb6>\x86\xaa\xe5\xad\x90\xca\xc2P%\xbd\xf7\xb0\xd8\xb1\xe5\x8a8\xe0\x97\x98`\xa8+TR\x11\x03nP\xb6\xceKm&\x9c\x11\x97N\xeb\xfd\x15y|RS\x05\x93\"\x0f\x16~\xbe\xb2\xceM\x97\\Ch3\x0bT\xe3\xaf\x18?\xc3\x93|\x95e\x9e\x1b\x15M8\xa2\xed\x13\x01\xf8v\x10|&\x04A^s\xa9\"\xaf\x9e\x82wo\xc1=\xc7\xb6\x8fy\xcd\xb5\x8a|\xecH\x91[\xe5\x10\xa2v\xf0W\xbd\xe7\x9c\x96\x15\xbf\xe6\x9f\xfbo M\xbdm\xea\xfd\xdf\xb6\x15\xbe\x15\xea2p\xe3\xbb\xf8\xbfx\x1f\xda\x19\xf3\x0b\xb5\x87\xb6\xdb/\xd4\x12\x1f\x1f\xb2n\xe4\x0b5\x89o\xf3\x05.3\xfc\x85\x9ak\xedo\x1f\xf6X\xe2Q\xe6\xa8 \xc5\xd5\x95<\xb3\xf3\xae\xe5\xeb\x05s\xc2\xe1\xf5\xea\x88\xf7\xe5\xc3|\xef\xaf\xf0$bj\xd2\x02\xf9\xc6\xad\x06\xce\xa9\xca=E\xd5\x9f\x9d\xea0o\x0c\x01\xd7\xe6\x10\xf0\xd5\xa9\x87V!(L\xfe\xf0Y\x16\xfa\xa9\xa4$\x8f,\x05\xea#b\xc7\x7f\x97\x99\x8d\x1fxP\xf7\x87'\x16\x0cS\xed\xd1\xe5\xa5\x8bE\xc1\x94\x06\xed\xe9I\xdcq\xcd\x00\xfe\x1b\x1fW\x18\xfe\xa7\xa15\xa0U\x85\xb1\xbd\xbb\xb2R\x8dos\x17\xa9qk\xfb\xbc\xa4u\x83\x91\xba\xdaR\x88\xfe|\xbb\xfd\x01\xd1\xf5\xfevJy\xec\x01cMm\xb3r\xfd\xd9P1\xe3:\x88\xe9\xa5\xd8 \xd2\x01\x1e\xf8\xe1\x1eK\x11\x89#Y\x0e!\xc5p\\\x81l\x9a\x12\x94/\xb93\x9b\xb77\x00\xd3\x1a\xbe3\x90t\xcb+\xa8\xdd\npuKj|\xe5\xee\x84 O) @\x12F\\\x06\xeb\x0e(E\x01\x02@\xa0\x10\xa0\xd8{=\xe9\xed\x8a\xba\x84\xcb\xc6zu{\x9f\xbe\x82\xf7\x17\xdf\xbf\xf9\xee\xe5\xd5\x8f\xef\xbf\xbf\xfa\xf0\xff.\xbf\xbb\xfa\xf8\xe6?\xde\xbc\xfd\xef7#8\\\xbe\xfb\xee\xbf\xde~\xf8n\x1c\x87\x17o\x7f\xfc\xf1\xe2\xc3(\x1eo/\xdf\xbe\x7f\xfe\xda\x93\x85\xdaQ2R\x1f\xfe\xfe\xbeO\xef\xf3U\x89\x17?\xd2\xd5\x87v'M-\xcb\xcb(\xff\xc9\x9bS\xa76\xa3\x97f\xb1z\xeb\x01\x19\xbf\xe99\xfc\x17\xa9\xadi\x91\x01\x99\xbf\xcb9\\\xf2(\x07\x15~\xec\\\xa9\x8c>E\x0c\x9c\x90\xe5\xa9\xa0\x8a4\xa5%\x03\xd1\xa7\xb0\xb5\xb2 \xdb\x8e\x1f=\xb9\xf3\"}\n\xf4u\x10\xe1\xef\xc0{9\xbf\xa7\x88\xcf\x07\xbe!\xd9\x90\x82r-}\x8a\xd0\x1eDj\x90\x91gV\xa6O1v\xa7(|H(\n\xfd\xe0\x10\xff\xd1!\xf6\xc3\x07fz\xfa\xe4\x95\xf7\xe9S\x9do0\xad\xd1\xc6\x91\xa9\xdfS\x84B|\x93\xa8}jS\x19\xee\x05g\x9fFH\xe8\xfd\xa9\xf6\xc2\x19NT\xd0S\x8c\xdd\x87\xfb\xdb\xf6\x84\xa20\xb1\xeeRc1!\x08\x9b\xd5\xf7\xc51,\xfa\xd8V\x98E\xcc\xa7r\xd7\xcd&\xe7;\x86\xbc\x98\x89\xc7y\xc0-rj\xfbL\x19\xeb\x8b_\x1c\xd2\x89[\\\x8f\xf2\xc8~\xee\xf3\x01\x02\xfdu\xa8\x9fN\x91\xfd\x80Rd\x9f\"{7\xa5\xc8\xde\xf54\xa4\xc8>l\x0e\x14\x94\"{#\x85\x0f E\xa1\x1f\x1c\xe2?:\xc4~\xf8\x14\xd9+J\x91\xbd\xa0p\x7f\x9b\"\xfbC\xfa\xd2\x91=w\x8bW\xb7\xa4\xce\xcb\xd5\xd5\x96|\xf2\xf3\xe1\x81\x1f\"\xcc\x15\xeem\xf6a\xc8\x13\xe4z\"%\xf1u9\xa1\xf6\xf9R\x01D\xccH\xbf\x93\xf0\xd0\x1e\xacS\x80\x11\x07\x9d\x9d\xcc\xda\x0f#\xc3j\xa8?\x11\xc6kY\xe4\x19?<\x8eY\xad\xc3\xe6\n\x16\x88^eE\x8e\xcb\xfa\n\xd55\xcan\xee\x1b\xb6\xea\xf4\xe0\xca\xa3\xb2TP\x80,\x10(\x0fH\xd7\x88\x17\x81QU\xa0L\x10!\x178\n\x8f\xf5\x14!\x18D\n\x07>\xa5\xcbz\n-h\xd6Sd_aD\x7f\xc1\xaf$ZO\x81\x0ekH\xca\x819\xcb\xa7\xf5\xe4,\xaa\xd6\xd3}\n\x1d\xea\x82\x87\xe4W\xac\x1d\xcc\xb6_\xdc=(\xe1\x0e\xe6\xe6Y\xf2\xad'\xdfB\xf0`\xc6\xbd\xc2\xf1\xe0\xf2p=\x85\x16\x8d\xeb\xc9]J\xae\xa7hC\x0e\xcb\xe8(\x8an.4f\xea\x92\xbdp]O\x13\x08\xea\x1bR\xf5\xc9\xb3\xf4]O\xf7\xe4\xfbc\xf2\x050N\xc9\x10\xbe\xb4\xea\xd3\x88\xc4\x91\xa2\x11\xda\x86\x91\x1a\x87\xd8\x84\x92\xa2\x98\x05\xf6\x90\xe2G\xa4\xa2X\xc3\x81\xf1\xc6\x03c\x0dhT\x02JQD\"J\x91\xff\x86\x03=\x8d\xd0\xdf\x08\xbd\x85oY\xd0\x93\xc7F\x06=\xddG\xb7\xbd\xb7\x11\xe8\xe9>DvW\xdd\x9a\xc9w\xffE0c\xdb~\x0d=\x85\xed\xe2\xd0\xd3}\xa8\xdfw\x1f\x88\x9e\xeeCb\xf7N\x12=\xdd\x87\xac\x01{Q\xf4t\x1fB{\xeef\xd1\xd3}\x08\x1c\xb6\x1fFO\xfe\xbbd\xf4\xf4\xe5\xfb=fu\xee\xb9-'\x88\xa7y\x0b\x8f\x9eDD\x11\xa2\xe7\xc8086\xfc\xfd\x07Zx\x06\x95\x18(\x1a\x13\x99\x87C`\x8a\xd2\x8a\xd3\x87\"}\x82\xa0\xb4\xe2\x8c\xb6kE\xf1CQQ\xac\xe1\xc0x\xe3\x81\xb1\x06t\xdf+\xce\xfdU\x9d\xa1\x1a\x14\x9a\xb3o]\xd3\x93sC\x9b\x9eF\x0d\x94q\xc3Dy\xd2\xabe\x814\xd7\xcf\xf9\xd0hC\x0b+#\xed\xd3W\xf0\xed\xeb\xb7/\xfe\xe3\xea\xe2\xe5\xd5\xab\xd7\xcf\xbf\x0f,\xa1\x1c\xd2\x90\xdb\xf3o\xdf\x7f\xf7\xc6\xbf2\xb4OCf\x81e\xa6}\x1a2{s\xe1[m\xda\xa7\xb6\xf6t:\xb5\xc5/\xbd\x05\x89\xc1\xbdxU\xa0U{I\xb9\xba\xed\xe3\xdb\"#7\x17/\xa3@\x19A\xad\x1b\x80\\\x94\x84\xb8^8\xa4\xe8\x92\xa5>\x8d\x1e'\xa3\xddq@a\xc6!M&~\x1c\xd2 (\xb8\x06\xaaO\x93\xf5!\xea\x13\x8cYl z\xc1\x97;\xef\xf3\x95(\xdbf1\x9a\xc2\xf5xY\x95\xda5\x1e\xc1\x9a\xdf\x01+\xf8\xfb/\xbf\xc6\xf5I\xb4\xd6\xdf\x0b\xdf\x96\xd8\xf0=\xfaaYV\x91\x9c\xfd\x84\xa8\\\x16\xd6\xe2\xac\x02$7\xd8\x07\xf1\xdag\xe1\xfc\xb4\xb1\xf7\x11\x14{/\xf7\"\xe6\xfd\x98\xd9~\xdf\x17\xffwb\xa3\xa0\x88\x08(B\x0b\x82bt!(\xda\x8f\x8fr #\x9c\xc7\xb6\x99_9\xaef\xd5S\xb4ra\x94\x82\x19\xe1\xc5\xd3?\xfd\xe9\xc9\xff\x89yu\xa4\xa2a\x9c\xb2\x81\xdf\xe6\x95m\x9f\xfe\xe9\xcf7O\xfe\x11\xc5\x1f\x13\x91]6\xf3\"\xcf\xfe\x03\xefz\x89\xbd\x1b\xbc\xa3\x9d\xcb\x9a\xe2\xe2\xa8\x86bq\xab\xcd\x7f\xb5\x0e)\x90Kh\xe1m\x9fF}\x941\x8b\xf96/\xbc\xadrR\xe5u\xf48\xfe\xa2\xb2+\xa9C\x84\x8dt7\xb1\x8e&\xd2\x8f\x8fPf\xf4\xb8\x8c\xf4\xe0\x91\n\x85\x11J\x85q\xbe{\x84ra\x8c\x82a\xac\xd7\xbe?\xc1\xe3\xfd\xf5\x9dy\xeb\xb1\xbez\x8c\xa7\x1e\xf1!\xe2<\x1dL\xe1\xa3\xbf\xb8\xd4q{Q\x14E\x8a\x1b&*[\x87\x91\xf2\xca\x1f\x04\x0b\x94*L\x9a\xf9\xeeo\xa8\xac\xf3\x12_\x85\xad\x88\xc2VB\x01+\xa0`\xe7\x1e\xee\xd2\x83g\xc8\xc0/ (\xc2\xf7\x05\xcf\x87\xc1\xca\x82(\x85A\xec\xec\x17\xa58\x88S\x1e\xc4\xcfu_V\xcc\x98\x99\xed\x0e\xe6\xb4\xf8\xd9,\xce\xbdF)9\xcc\x99 \x1a1k}\x01\x19\xe3f\xa8@\xc1\x02E\nI\x82GJ\xe2\x9b\xe0\x0e\xcd\x9d\xbef\xb3\xe8\x0b\xbe\x17\xf09\xdf\n8v\x87\xa2\xfe_\x8f\x05\xa1{\xaf\xec\xbeg\xe96;N^c\xc8\xdf\x90\xd3mv\xb6\x18'\xddf\x97n\xb3;$_I \xddfg\xa0t\xe7\x85\xa4t\xe7E\x87\xd2\x9d\x17^\xef\x04\x1dH\x11\x96y\x10\xe4\x83\xc1\xf7\xc9\x9de\xeaS\xa0\xaf\x83\x08\x7f\x07\xde\xc9\x91=E|>\xf0\x0d\xc9\x86\x14\x94\xb9\xeaS\x84\xf6 R\x83\x8c0o\xd6'\xaf,Z\x9f\xbc\x01QE\x11\n\xf1MI\xf7)\x18/V4BB\xefO\x95\xee\xbc\x08\xd3XL\x08\xf2\x0f}\xe7E\xba\xcdNG)\xb2\x97\x94\"\xfb\x0e\xa5\xc8\xde\xeb\x9d\x14\xd9\xbb\x9eU\x14\x1a\xe8E|>\x08\x9f\x03\x05\xa5\xc8\xdeH\xe1CBQ\xe8\x07\x87\xf8\x8f\x0e\xb1\x1f>E\xf6\x8aRd/(\xdc\xdf\xa6\xc8\xfe\x90\xbetd\xff\x00\xf7g\xa5\xdb\xec\xcc\x14j\x9f\xe96;\x17\xd3t\x9b]\x88\\\x90n\xb3sPd_aD\x7f\xc1\xaf\xc0\\O\x81\x0ekH\xca\x819\x8b\xd1\xf5\xe4,Q\xd7\xd3}\n\x1d\xea\x82\x87\xe4W\xfa\x1e\xcc6\xddf\xe7*\xb6\xd7Sh \xbe\x9e\xdc\x85\xf9z\x8a6\xe4\xb0\x8c\x8e\xa2\xe8\xe6Bc\xa6.\xa5\xdb\xec\x84\xf6\xdc\x1b\xa4\xa7\xfb\x108lw\x91\x9e\xfc\xf7\x1c\xe9\xe9\xcb\xf7{\xcc\xea\xdc\xbdC'\xdc\x03\xa6\xdb\xec8M`\x08\xe1anP\x89\x81\xa21\x91y8\x04\xa6(\xad8}(\xd2'\x08J+\xceh\xbbV\x14?\x14\x15\xc5\x1a\x0e\x8c7\x1e\x18k@\xf7\xbd\xe2\xf49\\MOBs\xbe\xa7\x17w\xc9\xb9\xa1MO\xa3\x06\xca\xb8a\x12t\x94\x9b\x9eF\x1bZX\x19i\x9fb\x0f\x83\xd3S\xe4\x11qz\x8a<8NO\xe1\xc7\xc9\xe9i\xd4!sz\x8a_z\x0b\x9a\xea@:=\x05\x1dS\xa7\xa7\xe8\x92\xa5>\x8d\x1e'\xa3\xddq@a\xc6!M&~\x1c\xd2 (\xb8\x06\xaaO\x93\xf5!\xea\x13\x8cYl \xf2=\x98/\x82u\xba\xcd\xaeG\xe96\xbb\xb8((\"\x02\x8a\xd0\x82\xa0\x18]\x08\x8a\xf6\xe3\xa3\x1c\xc8\x08\xe7\x11|\xf7\x83\xa2h\xe5\xc2(\x05C\xec\x9d\x10\x8aF)\x1a\xc6)\x1b\xe2\xef\x8aPt\xbf\xe2\x8f\x89\xc8\xee\xe0. E\xf1wJ(\n-\xbc\xed\xd3\xa8\x8f2f1\xbf\x8d\xbfsB\xd1=\xc8\xbeM\xb7\xd9\x1dR\xf4\xb8\x8c\xf4\xe0\x91\n\x85\x11J\x85q\xbe{\x84ra\x8c\x82a\xac\xd7\xbe?\xc1\xe3\xfd\xf5\x9dy\xeb\xb1\xbez\x8c\xa7\x1e\xf1!\xe2<\x1dL\xe1\xa3\xbf\xb8\xd4q{Q\x14E\x8a\x1b&j\xba\xcd\xceJ\xc1\xce=\xdc\xa5\x07\xcf\x90\x81_@P\x84\xef\x0b\x9e\x0f\x83\x95\x05Q\n\x83\xd8\xd9/Jq\x10\xa7<\x88\x9f\xeb\xbe\xac\x9813\xdb\x1d\xcci\xf1\xb3Y\x9c{\x8dRr\x983\x134b\xd6\xfa\x022\xc6\xcdP\x81\x82\x05\x8a\x14\x92\x04\x8f\x94\xc47\xc1\x1d\x9a;M\xb7\xd9Y=\xb9+\xca\xf0\xfa\x9a>\xd6\x94n\xb3s\x0c\x07\xcf\xa9\"\xa8\xc4\xc4\xab\xa7\xe0\xdd[\x00\xef\x02\x11\xbf\xef\xa9\xc8\xc7\x80\x14\xb9U\x0e!j\x07\x7f\xd5\x07\x16gx\x95a\xf8\x14\\\xf8\x84\xd2\xce\x00\xda\xd3\x14|\x0d!\xa8\x04\"\xe0c\xf8\x955\xc4\x160D\x96*D\x16%\x84\x97\x1f\x8c*4\xf0\x0f\x1b\xa7*\x1e\x08*\x13\x08.\x08\x08\xb0\x9a\x80\x01\xec\x19\xc9D4\xee\x17\xc1x\x83\xf1\x11\x128\xba\x1f\x12:\xf9\x82\xe6\xbf\xd6\xdb\xec|d\xfbV\xec~\xa6P\xe3\xf6R\x05\xf6\xd5\xc4\x0f\xa7b\xf1\xc4\x84\x95E\xdf[\xf3\xed\x15rH\xe8\xb6\x16/s\\,\xd4\x15\x12x\xc1B\xccy\xff.\x8b\xee\xd3v\xa9\xbf\xc7\xf5k6\xd6k.\xe1;L\xb7\xa4\xa4X]\xb6Q\xa9\xff\xe7\x9dX\x92J\xe3\x04\xfe\xb3\xc1\xd5\xee\xac\xcf\x07\xde]\xbe\x18J\xbe\xc1\xf5\x9a,\xf6\xb2)\xcf\xd6y\xac'\xea\xf3\x12\x9a\x12\x7f\xde\xe2\x8c\xf5\x11W\x15\xa9Zy\xba=\xa4\xd9\x1ao\x06\xe7\xbf\x1b\xa76\xf3d\xc6\x1b8\x1c\x81\x961\x97\x91\x85f\xc8\xda\xc3\x1c[\xb8*\x8f\x01\x0c\x92a\x81k\x94\x17\x1a\xc7i\x8b\x10\x8c\x91\x81#\"pE\x02\xec\xf5\xab\xa62\xc6\x82\x1e\xfe\xcb=\xc4\x04=\x87\x8f\xef^\x9fU\x98\x92\xa6\xca0\x94h#\xc7}S\xe6?7\xb8\xd8\x01s\x06u\xbe\xcce\xde\xa3\x16G3\x1a\x19\x8a\x0b$\xaa\x1c\x15\xf9\xdf\xf0\xc2\xbc\xa1\x7f[\x91\x9ad\xa4\x80y\xb3\\\xe2J}\xb4\x99\xb8\x17C\xf4\x0d6\x0dm\x9d\x13 spU`Dks[\xa4\xc4ptv\x04\xd9\x1aU(\xabq\xc5Z\xc1|\x11\x08\x14\xaf6\xb8l=\xf0\xc7w\xaf\x8f)lQ\xbd6r\xe3B\xb5\x07F\x99[e\xec\x96MQ\xec\xe0\xe7\x06\x15L\x83\x0b\xa1_\xd9\x14\xd7\xe4 \xa2\x90\x97f&\xd7L\x94\xb3\x15!\xab\x02\xcf\xb8\xce\xe6\xcdr\xf6\xb2\xa9\xf8\x89 \xd7\x8fEO8[\xba&M\xb1\x809\x9bA\x8c\xfc\x10d\xa8$e\x9e\xa1\x82\x8f!s\xcb'x\xb6\x9a\x9d2\xd5\xf2\xb3 \x8efG\xcc\x99\xf1\xfbR\xb2\x0cok\xbcx<{d~\xfd\xa2\x84-Sv\x9e\xe1S\xa81\xdaPhh\x83\x98:\xc4\xb1Z\xdb\xbc`\x92\xd6\x84+c\x9e\x97\xa82\xc7\xe0\xfc\x8a\x96\xdd\x16\xcb\xbbR\xea5\xde\x99\x9b\x16\xbeN^ \xd4\xd0\xeey\xa05\xfe\xcc?\xf5\xf3r7\x83\x1f\xc8'|\x8b\xabSk|\xf5\xf1\xddk\x15\xbf1V\xccm\x1b\x9f\xe5\x1e\x14\xc3\xf5\xba\xae\xb7\xd7\xa7\xe2\xbf\xf4\xfa\x14H\x05%\x91\xbf\x9erk\xccP \x84\x8fN\xa6\x113C\\C\xb3\x95\x07\xa2Z\xda\xc5\xd5-\xae\x84j6h+\xefT\xe2\x92\xd7\xa4=\x15\x95g/sq\x9d\x0b2\xe7\x1b\x97\xa4(\xc8'zn\xf9\xb6\xbf\x87\x8b\xe5\xbeG\xcc,\xb6\x15aQ\xc3\xa2\xed4\x8fm(m6xa9}\xf5\xf7lr\xfa\xe1\xc3\x87K\xf8\xfe\xbb\x0f\xea\x02\x9d\x8f\xef^\x8b1\xb6\xe3\xd3\xb39\x04\xfa\xebpX|\xd8m\xf1O\x7f\xfd\xc9\xf8\x02\x8f\x94\x1bn\x0f\xc2\xde\xe44\xc2\xbf\xd0\xb6\"\x8b&\xc3\x80J1\x85\x99\xeb\xec~\x0f\xcf\xf7\x87\x96P~c\x10b:\x13\x11D\x862\xe6[\x08\xb9i\xb6 \xb7I\xc2\x1cQK\x15$q\x9d\xf2\xf2\xf1\xddk.\xe3\x1a\xddr\x13\xdct\xc6\xd0B\x0c\"\xa4\xba\xc4\xfe}K\xf2\x05\xa0\xd2\x06\x0f \x01\xb9\xfb\xa8\xf0\x92T\xf8T1`|Q\x9d\xcf\xf3\"\xafwPb\xbc\xa0\"2\x02\xee\xf2\xaa[k=')\x99\x9b-W\x98\xbf\xc4\xc7\xec\x0cN>R\xac\xceubZb\xe6\xc9|\x96\xb0OT\xa2\x95\xad\xf7\xf3\n\xa3\x1b\xe6\x83$\xe3\xd9c\xb3E\xbd!5>\x17\x17\x8b-\x9b2\x13#\x8c\xf5C\xfa\xae\xac\xa9*\\\xd6\xc5\xae\x93\xbb\xb7\xb8K~\xa1\xd3r\x99g9*\x1cs\xd9\xbcYB\x85\xd9L\x84O\xf9Q7y\xad\x1am(^\x88\xa0O\x8dK#\xab9^\xe5e\xc9:\xcbB\\\xcb\xe4\xb2\xdb\xe2\x99\xb0\x7f\xb4\xcd\xe9,#\x1b\x9b7~\xcfG*\x05R\xaf\x85\xa3(\x87^\nNDP\nx\xb3\xadwrh?6O\x82\xf9j]\xc3\xdc\xe2\x94x\xa7y\x9c\x9eo\xb6\x05f\x93,\x1f0@\xb78\xcb\x97y\x06\x14oPY\xe7\x99\xa1\xa4\x95\x8f\xd5\x11!\x90\xc7\xd2\xcd7J\xfa\x91\xb9\xa39\x06$\x965\x9d\x00\xe7 \x8eQ\xc7\x1a\xcd\xc9\xad\xd9\xa6\xa5\n\xe4P\xd0\xde\x10\xe7!\xd9\xf5\xf3rw\xbd_\xbb\xa1\x12P5\xcf\xeb\x8a\x0db\xb3\x84ZVj\x8e@\x05\x91\xa6\x07H\xffi\x99w\xe6\x13\x8d\x90p\xde\x0f\x0b\x07\xe1_\x1b\xd5\x19L\xf3R\x0d\x9c\"\x9fs\xb1\xe5\xc6\x84A\xe5\xce\xfc\x00*w3&\xc6\xab\x8alN\x96\x84<6?:\x9b\x99\xe7\xbf| '\x8c\xd5G\xde\x91\x0f\xe4\xe4w\x8c\xd7c\xf8\xc5\xe2\xc3m\xfc\xfen\xd7\xddS\x87\xee\xfe\x82n\xd1d\xca\x83g<6d\xadL\xa0\xa1\x9c\x9e\xbc\"d\x96\x15\x88R\x87\x82\x84\x88\xec%\xd1\xc7\xce\x8bf\x19\x0c\x9akU\xf7\x8dCu\x97\xbbzMJ\x8b\xf2\x84T\xaf\x089\x99\xcdf\xe6\xd9\xa0U\xdc\x89\xf5\x19n|\\\xad\xb1ZeL.\x84R_~\xf7\xfe\xc5\xbb\x8b\xcb\x0fo\xdf=\xb6\xe5\xfb\xf6\x86joX4mW\xe7\x1f\x1d\xea\xfc\x9eX\x0e\xb0c\xaa<\x7f\x06\xbf\xdb\xceg\xaf\x08\xf9e6\x9b\xfd\xdd\xfc0*w\xa7,\x0ceolE\x10\xf5#\xaa\xe8\x1a\x15L\xc9\xf6\x8e\xd8T8\x94\xc2\"B\xbe\x1c\x08\xf0\xb1\xdc\xecE\xe0\x02\xf2\x01\xc2\x9f\xfa\xa7gP\xe6\x85\xd5\xc0\xedr\x19,\x99-n\xb9\x9e\x95/V\x0b\x0d\x98\xef\xf6a\x97\x9a=\xc4\xc5\xa0\xfa\xa8Wf\xc9XX\xa2o\xeaX\x13R\x9d\xb1\xf5\xfb\x8c\xff\xc0\xc2\xd5c@\x9d\xd9\x8e\xcd\x84\xf2HC-Ca!\xfa\xc6\xda\xa9\xa5,vj]y\x90,h\xc3d@\xcb\x1a\xebR\x86\x82x\x1e\xe3\xf8\xecX\xdf\x94\x9c\x13\x95\xc8|\xb5\x0bXZ\xf4\xd1\x92\x90\xd9\x1cU\xbc\xb3\x9f\xcfv\xb3\xbf\x1d -\xf2\xb5\x97\x96\x9fy)\xcaE=b<\xd8t\xa8}\xe4/\xef\xdf\xbe\xd1\xff\xf2\xec\xd9\xb3gf\x1b`\xef\xeds.\"\x8e$\xcc\x1d\xc8 H\xac\xeb\x1a\x8aU\xbau\xd5\x14\xc8p\xdc\xf6!\x1b\xf6\xca\x02\xef\xc3\x96S\xc0\x9b9^,\xf6\x01\x8c\xc88k\xd9!C\xf6\xa6\x13R\x88<\xf3\xf5\xbf3\xd5]\xcbdB/\xe5\xae>\x8e~\x80H\xf7snY\x80\xa0\xec\x86\xf9\xa0\xfd\x82x\x99\x17\xd8\x95\xdc\xcf\xac\xf9e\xdbYCk\xb2 \x1c\\}\x93?\x15\x01\xfc`\x1c\xa8[\x95[q\x98\x01\x1b\x16WH\x98\xb4\xbe\xb1k>\x18\x95\x9d\xafI\xb1\x90G\xe4r\xc9\xc5P\xce\xcbv|\x80\xc8\x00\xeaY\x89!\xa3o\x87\x8b0k'\xe7\x13\xe6\xd7\x94\n\x0fRC*c\xfa\xd3_\x7fzl\x19HS\xd8\\\xbfA\xbb\xd9qU1\x96OfO\x9f<\xa5G\x16\x13\x12\xff\xad\xd1\xaa\x03\x1a|\x05\xefqu\x9bgL{g\x19\xa1\x1bB\xcf\xe6\x88\xe2\xb3=lvv\xfbd\x8ek\xf4\xe4\x8c\xc3x\xf4\xec\x17Q\x96\xf4w\xc1d\xb5\xdf\x1cJ\x9b\xcd\x06U\xbbs\xf8\x1e\x0b\xec\xe9\xdb\x9d\xb8G\x1b~np\x95c*\x81@\xa6\xe6U~\x8bKY\xe0\xa4|\x16\xd9b\xd1\xe3\x8b\xc5!\x0f\xf9\x8c\x82\x9d:]8~\xfa\xf5\xd7\xc7f\xec\nh\x93e\x98\xd2eS\xdc%he\xael22\x03'\x90c.\xa7qf/\x1c\xb9\x0b\xafJ%\xab\xe4\xe0\x94\x1e\xdc\x15I\xb5W%\x92O\x05\x92\xbd\xf2\xc8\xa9.p\xab\xcc\xb3\xc2\xc8ZYd8\xa5]\xbes\xfc\x929\xd4\x0c\xd5xq\x0e[\x9e\x08\xe4\xa1\xdd5]\xdc\x883\x89\xaf!/i\x8d\xd1\xe2xR3\xbb[\x1bp\x1e\xc7\x1fz\xf0\xbeS&\xf0\x92\x0b\xfc\x8e\xcd\xf7\xb2\x1d\xe8\xd8\x8f\xf3Ty\xe7\xa1\xf7S7\xe9\x93\x0b\x14\xe4w8=\xf4\x0f\x9b\xb7u\xb5w\x0c\xbd\xef\xb1\xf2\xbe\x07\xc8\xf7\x0f\x84\xb70\x0c=*>\xf4Px\xf7\xf1\xef\x1e\x9f\xf4\x8b\x95\xfb\xda\x0fd\x0fj\xc6UW\xe5y\x9c\xfa\x84#\xda]\x82\xea\xd5A\xf0\x99\x10\x04y\xcd\xa5\x8a\xbcz\n\xde\xbd\x05\xf7\x1c\xdb>\xe65\xd7*\xf2\xb1#En\x95C\x88\xda\xc1_\xf5\x9es\xf2\xe0a{\xd5\xaf\xff\xc1\xde^=\xf2\xeaI\xf8\xb1\xdc\x1e\x07pO%\x9e\xf7\xf9\xcdS58\xd4\x87\xf3$k\xeb\xb9\xacagPO\xd5\x07\xdf\x13\xa4\xa7j\xcf}\xfe\xf3T-\x05\x9c\xde\xaf\x98\xdc`T\xca^ \xd1\x9fo\xb7? \xba\x86\x05\xc1\xa2\nE\xd6\x953\xd6\xd46+\xd7\x9f\x0d\x05\x19\xae]\x10/Yx\xdf\xcbk\xcbZp\x1e\x89#\x89\xb6w\xcb\xdb\xcdUO\xa6)\xc1~\xd9\xe0\x046\xef\xbe\xcdpB\xc3w\x06\x92ny\x05-\xd4E\x91W\xfc\xae\x7fw'\x04yJ\x01\x01\x92\x80\xd8\xa4\x8c\xaf\x0cn\xa9O\x01\x02@\xa0\x10\xa0\xd8{=\xe9\xed\x8a\xba\xe4\xb7\xa3J\xd1\xe1}\xf0~\x9b\x8f\xf6d\xbc\x9b~\x1c\x07\xcf=W\x8a\xcc\xf7\xda{\xb2h\xb7b\x8d\xd3\x87\xbf\xbf\xef\xd3{~9\xe7\x8ft\xf5A\xe2,\xa2\xbc\x969*qo\xa77\xa7\x0e\xf4\xdfK\xb3X\xbd\xf5\x80\x8c\xdf\xf4\x9c\xef\x06\xf2=\x17\xc0\xfa]\xce\xe1\x92G9\xa8\xf0c\xe7Je\xf4)b\xe0\x84,O\x05\x05]\x06\x10\xb6V\x16d\xdbP\xa2'w^\xa4O\x81\xbe\x0e\"\xfc\x1dx/\xe7\xf7\x14\xf1\xf9\xc07$\x1bRP\xae\xa5O\x11\xda\x83H\x0d2\xf2\xcc\xca\xf4)\xc6\xee\x14\x85\x0f E\xa1\x1f\x1c\xe2?:\xc4~\xf8\xc0LO\x9f\xbc\xf2>}\xf2\xde\x8c\xaa(B!\xbeI\xd4>\x05\xef\xd5U4BB\xefO\xb5\x17./\x17\xf8s\x98hav\x1f\xeeo\xbd\xb7\xf7*\xba{\x8d\xc5\x84 |\x8fo[{\xc1w\x00W\x98E\xcc\xa7rS\xc7&\xe7\x1bR\xbc\x98\x89\xc7y\xc0-rj\x9d\xb3S\x96\xc4P\x005\xa4N\xdc\xe2z\x94G\xf6s\x9f\x0f\x10\xe8\xafC\xfdt\x8a\xec\x07\x94\"\xfb\x14\xd9\xbb)E\xf6\xae\xa7!E\xf6as\xa0\xa0\x14\xd9\x1b)|H(\n\xfd\xe0\x10\xff\xd1!\xf6\xc3\xa7\xc8^Q\x8a\xec\x05\x85\xfb\xdb\x14\xd9\x1f\xd2\x97\x8e\xec\x1f\xe0\xd9\x98{\x9b}\x18\xf2\x04\xb9\x9eHI|]N\xa8}\xbeT\x00\x113\xd2\xb1\xe7t\xb6\x1fF\x86\xd5P\x7f\"\x8c\xd7\xb2\xc83~V'\xb3Z\x87\xcd\xf1\x13<\xaf\xc4 \x9dW\x88\x1f\x1fz\xdf\xb0U\xa7\x07W\x1e\x95\xa5\x82\x02d\x81@y@\xbaF\xbc\x08\x8c\xaa\x02e\x82\x08\xb9\xc0Qx\xac\xa7\x08\xc1 R8\xf0)]\xd6ShA\xb3\x9e\"\xfb\n#\xfa\x0b~%\xd1z\ntXCR\x0e\xccY>\xad'gQ\xb5\x9e\xeeS\xe8P\x17<$\xbfb\xed`\xb6\xfd\xe2\xeeA w07\xcf\x92o=\xf9\x16\x82\x073\xee\x15\x8e\x07\x97\x87\xeb)\xb4h\\O\xeeRr=E\x1brXFGQts\xa11S\x97\xec\x85\xebz\x9a@P\xdf\x90\xaaO\x9e\xa5\xefz\xba'\xdf\x1f\x93/\x80qJ\x86\xf0\xa5U\x9fF$\x8e\x14\x8d\xd06\x8c\xd48\xc4&\x94\x14\xc5,\xb0\x87\x14?\"\x15\xc5\x1a\x0e\x8c7\x1e\x18k@\xa3\x12P\x8a\"\x12Q\x8a\xfc7\x1c\xe8i\x84\xfeF\xe8-|\xcb\x82\x9e<62\xe8\xe9>\xba\xed\xbd\x8d@O\xf7!\xb2\xbb\xea\xd6L\xbe\xfb/\x82\x19\xdb\xf6k\xe8)l\x17\x87\x9e\xeeC\xfd\xbe\xfb@\xf4t\x1f\x12\xbbw\x92\xe8\xe9>d\x0d\xd8\x8b\xa2\xa7\xfb\x10\xdas7\x8b\x9e\xeeC\xe0\xb0\xfd0z\xf2\xdf%\xa3\xa7/\xdf\xef1\xabs\xcfm9A<\xcd[x\xf4d\xbb\x9cHO\x91apl\xf8\xfb\x0f\xb4\xf0\x0c*1P4&2\x0f\x87\xc0\x14\xa5\x15\xa7\x0fE\xfa\x04Ai\xc5\x19m\xd7\x8a\xe2\x87\xa2\xa2X\xc3\x81\xf1\xc6\x03c\x0d\xe8\xbeW\x9c>\x17[\xe9Ih\xce\xf7\xe6\xd8.97\xb4\xe9i\xd4@\x197L\x82\xae\xd1\xd2\xd3hC\x0b+#\xedS\xecE\\z\x8a\xbc\x9eKO\x91\x97v\xe9)\xfc*/=\x8d\xba\xe0KO\xf1KoAS]\x06\xa6\xa7\xa0+\xc2\xf4\x14]\xb2\xd4\xa7\xd1\xe3d\xb4;\x0e(\xcc8\xa4\xc9\xc4\x8fC\x1a\x04\x05\xd7@\xf5i\xb2>D}\x821\x8b-A\xbe\x97\xa2E\xb0\xceK@\xd6\xab\xd2\xf44\xa6O\x1e\xd7\xaa\x05\xf1\xd3_\xc1\xd6^\xb6\x16\xc4\xcbv1\x9b\x8e\xf6>\x82b\xef\xe5^\xc4\xbc\x1f3\xdb\x87\xdd\x9b\xaf(.\n\x8a\x88\x80\"\xb4 (F\x17\x82\xa2\xfd\xf8(\x072\xc2y\x04\xdf\xbb\xaf(Z\xb90J\xc1\x10{\x1f\xbf\xa2Q\x8a\x86q\xca\x86\xf8{\xfa\x15\xdd\xaf\xf8c\"\xb2;\xb8\xc7_Q\xfc}\xfe\x8aB\x0bo\xfb4\xea\xa3\x8cY\xcco\xe3\xef\xfbWt\x0f\xb2+\xa9C\x84\x8dt7\xb1\x8e&\xd2\x8f\x8fPf\xf4\xb8\x8c\xf4\xe0\x91\n\x85\x11J\x85q\xbe{\x84ra\x8c\x82a\xac\xd7\xbe?\xc1\xe3\xfd\xf5\x9dy\xeb\xb1\xbez\x8c\xa7\x1e\xf1!\xe2<\x1dL\xe1\xa3\xbf\xb8\xd4q{Q\x14E\x8a\x1b&*[\x87\x91\xf2\xca\x1f\x04\x0b\x94*L\x9a\xf9\xeeo\xa8\xac\xf3\x12_\x85\xad\x88\xc2VB\x01+\xa0`\xe7\x1e\xee\xd2\x83g\xc8\xc0/ (\xc2\xf7\x05\xcf\x87\xc1\xca\x82(\x85A\xec\xec\x17\xa58\x88S\x1e\xc4\xcfu_V\xcc\x98\x99\xed\x0e\xe6\xb4\xf8\xd9,\xce\xbdF)9\xcc\x99 \x1a1k}\x01\x19\xe3f\xa8@\xc1\x02E\nI\x82GJ\xe2\x9b\xe0\x0e\xcd\x9d\xbef\xb3\xe8\x0b\xbe\x17\xf09\xdf\n8v\x87\xa2DvW\xdd\x9a\xc9w7K0\xe3\xf0\xbb\x9c\xc2\xf6\xc4\xe8\xe9>\xd4\xef\xbb\xabFO\xf7!\xb1{_\x8e\x9e\xeeC\xd6\x80\x9d=z\xba\x0f\xa1=\xf7\x06\xe9\xe9>\x04\x0e\xdb]\xa4'\xff=Gz\xfa\xf2\xfd\x1e\xb3:w\xef\xd0 \xf7\x80\xe96;N\x13\x18Bx\x98\x1bTb\xa0hLd\x1e\x0e\x81)J+N\x1f\x8a\xf4 \x82\xd2\x8a3\xda\xae\x15\xc5\x0fEE\xb1\x86\x03\xe3\x8d\x07\xc6\x1a\xd0}\xaf8}\x0eW\xd3\x93\xd0\x9c\xef\xe9\xc5]rnh\xd3\xd3\xa8\x812n\x98\x04\x1d\xe5\xa6\xa7\xd1\x86\x16VF\xda\xa7\xd8\xc3\xe0\xf4\x14yD\x9c\x9e\"\x0f\x8e\xd3S\xf8qrz\x1au\xc8\x9c\x9e\xe2\x97\xde\x82\xa6:\x90NOA\xc7\xd4\xe9)\xbad\xa9O\xa3\xc7\xc9hw\x1cP\x98qH\x93\x89\x1f\x874\x08\n\xae\x81\xea\xd3d}\x88\xfa\x04c\x16[\x82|\x0f\xe6\x8b`\x9dn\xb3\xebQ\xba\xcd..\n\x8a\x88\x80\"\xb4 (F\x17\x82\xa2\xfd\xf8(\x072\xc2y\x04\xdf\xfd\xa0(Z\xb90J\xc1\x10{'\x84\xa2Q\x8a\x86q\xca\x86\xf8\xbb\"\x14\xdd\xaf\xf8c\"\xb2;\xb8KBQ\xfc\x9d\x12\x8aB\x0bo\xfb4\xea\xa3\x8cY\xcco\xe3\xef\x9cPt\x0f\xb2o\xd3mv\x87\x14=.#=x\xa4Ba\x84Ra\x9c\xef\x1e\xa1\\\x18\xa3`\x18\xeb\xb5\xefO\xf0x\x7f}g\xdez\xac\xaf\x1e\xe3\xa9G|\x888O\x07S\xf8\xe8/.u\xdc^\x14E\x91\xe2\x86\x89\x9an\xb3\xb3R\xb0s\x0fw\xe9\xc13d\xe0\x17\x10\x14\xe1\xfb\x82\xe7\xc3`eA\x94\xc2 v\xf6\x8bR\x1c\xc4)\x0f\xe2\xe7\xba/+f\xcc\xccv\x07sZ\xfcl\x16\xe7^\xa3\x94\x1c\xe6\xcc\x04\x8d\x98\xb5\xbe\x80\x8cq3T\xa0`\x81\"\x85$\xc1#%\xf1Mp\x87\xe6N\xd3mvVO\xee\x8a2\xbc\xbe\xa6\x8f5\xa5\xdb\xec\x1c\xc3\xc1s\xaa\x08*1\xf1\xea)x\xf7\x16\xc0\xbb@\xc4\xef{*\xf21 En\x95C\x88\xda\xc1_\xf5\x81\xc5\x19^e\x18>\x05\x17>\xa1\xb43\x80\xf64\x05_C\x08*\x81\x08\xf8\x18~e\x0d\xb1\x05\x0c\x91\xa5\n\x91E \xe1\xe5\x07\xa3\n\x0d\xfc\xc3\xc6\xa9\x8a\x07\x82\xca\x04\x82\x0b\x02\x02\xac&`\x00{F2\x11\x8d\xfbE0\xde`|\x84\x04\x8e\xee\x87\x84N\xbe\xa0\xf9\xaf\xf56;\x1f\xd9\xbe\x15\xbb\x9f)\xd4\xb8\xbdT\x81}5\xf1\xc3\xa9X<1ae\xd1\xf7\xd6|{\x85\x1c\x12\xba\xad\xc5\xcb\x1c\x17\x0bu\x85\x04^\xb0\x10s\xde\xbf\xcb\xa2\xfb\xb4]\xea\xefq\xcde\xfbv'n\x1fx\x87\xe9\x96\x94\x14\xab\xeb6*\xf5\xff\xbc\x1bKRi\xdc\xc0\x7f6\xb8\xda\x9d\x0d9\x0d%\x7fw\xf9\x026\xb8^\x93\xc5^>\xe5\xdd:\x8f\xf6\xc4}^BS\xe2\xcf[\x9c\xb1~\xe2\xaa\"U+Q\xb7\x974[\xe3\xcd\xe0\x0cx\xe3\xf4f\x9e\xd0x\x03\x87\xa3\xd02\xee2\xb2\xd0\x0c[{\xa8c\x0bY\xe5Q\x80A2,p\x8d\xf2B\xe3\x05RAI\xe4\xaf\xa7\xdc\x1a3T\x02\xe1\xa3\x93i\xc4\xcc\x10\xd7\xd0l\xe5\xa1\xa8\x96vqu\x8b+\xa1\x9a\x0d\xda\xca{\x95\xb8\xe45iOF\xe5\x19\xcc\\\\\xe9\x82\xcc9\xc7%)\n\xf2\x89\x9e[\xbe\xed\xef\xe1b\xb9\xef\x113\x8bmEX\xe4\xb0h;\xcd\xe3\x1bJ\x9b\x0d^XN`\xfd=\x9b\x9c~\xf8\xf0\xe1\x12\xbe\xff\xee\x83\xbaD\xe7\xe3\xbb\xd7b\x8c\xed\xf8\x14m\x0e\x83\xfe:\x1c\x16\x1fv[\xfc\xd3_\x7f2\xbe\xc0\xa3\xe5\x86\xdb\x83\xb079\x8d\xf0/\xb4\xad\xc8\xa2\xc90\xa0RLa\xe6Z\xbb\xdf\xc3\xf3\xfd\xc1%\x94\xdf\x1a\x84\x98\xceD\x14\x91\xa1\x8c\xf9\x16Bn\x9a-\xc8\xad\x920G\xd4R I\\'\xbd||\xf7\x9a\xcb\xb8F\xb7\xdc\x047\x9d1\xb4\x10\x83\x08\xa9.\xb1\x7f\xdf\x92|\x01\xa8\xb4ADB@\xee>*\xbc$\x15>U\x0c\x18_T\xe7\xf3\xbc\xc8\xeb\x1d\x94\x18/\xa8\x88\x8e\x80\xbb\xbc\xea\xd6Z\xd3IJ\xe6f\xcb\x15\xe6/\xf11;\x83\x93\x8f\x14\xab\xb3\x9d\x98\x96\x98y2\x9f%\xec\x13\x95he\xeb\xfd\xbc\xc2\xe8\x86\xf9 \xc9x\xf6\xd8lQoH\x8d\xcf\xc5\xe5b\xcb\xa6\xcc\xc4\x08c\xfd\x90\xbe+k\xaa\n\x97u\xb1\xeb\xe4\xef-\xee\x92_\xea\xb4\\\xe6Y\x8e\n\xc7\\6o\x96Pa6\x13\xe1S~\xdcM^\xabF\x1b\x8a\x17\"\xecS\xe3\xd2\xc8j\x8eWyY\xb2\xce\xb20\xd72\xb9\xec\xb6x&\xec\x1fms:\xcb\xc8\xc6\xe6\x8d\xdf\xf3\x91J\x81\xd4k\xe1(\xca\xa1\x97\x82\x13\x11\x96\x02\xdel\xeb\x9d\x1c\xda\x8f\xcd\x93 \x8bNanqJ\xbc\xd3\xae\xd6X\xad2&\x17B\xa9/\xbf{\xff\xe2\xdd\xc5\xe5\x87\xb7\xef\x1e\xdbr~{C\xb57,\x9a\xb6\xab\xf3\x8f\x0eu~O,\x87\xd81U\x9e?\x83\xdfm\xe7\xb3W\x84\xfc2\x9b\xcd\xfen~\x18\x95\xbbS\x16\x86\xb27\xb6\"\x88\xfa\x11Ut\x8d\n\xa6d{Gl*\x1cJa\x11!_\x0e\x04\xf8Xn\xf6\"p\x01\xf9\x00\xe1O\xfd\xd33(\xf3\xc2j\xe0v\xb9\x0c\x96\xcc\x16\xb7\\\xcf\xca\x17\xab\x85\x06\xccw\xfb\xb0K\xcd\x1e\xe2rP}\xd4+\xb3d,,\xd17u\xac \xa9\xce\xd8\xfa}\xc6\x7f`\xe1\xea1\xa0\xcel\xc7fBy\xac\xa1\x96\xa1\xb0\x10}c\xed\xd4R\x16;\xb5\xae\xf2\x97\xf7o\xdf\xe8\x7fy\xf6\xec\xd93\xb3\x0d\xb0\xf7\xf69\x17\x11G\x12\xe6\x0ed\x10$\xd6u\x0d\xc5*\xe1\xbaj\nd8r\xfb\x90\x0d{e\x81\xf7a\xcb)\xe0\xcd\x1c/\x16\xfb\x00Fd\x9d\xb5\xec\x90!{\xd3 )D\xae\xf9\xfa\xdf\x99\xea\xaee2\xa1\x97vW\x1fG?@\xa4\xfb9\xb7,@Pv\xc3|\xd0~A\xbc\xcc\x0bl\x9e7\x94\xcf\xba\xc4\x15%\xa5u\xd8\xcaL\x1c\xbf\xd3\xf6\x8a\x7f\xe1g\xf0\xc4\xcc\xb9}\x81WY\xc8\xe7\x9f\x86\xcf`\x00V\xa9\x8e\xb8.\x8f\xce\xe1H7j\xfbj\x98\x89^\x1e\xd9n\x93>\xe2\xfd{\x836\x8c\xe7\xbf\x8a.\xfc\x9b\xf5\x05\xd6\xbf\xc1\xf3\xa1\x9d\xbcX\xca\x05W\xdf\xd6\x845\xe4\x14>\xe1\xa2\xf8\xea\xa6$\x9fJ\xeeg\xd6\xfc\xc2\xed\xac\xa15\xd9\x04\x0e\xae\xbe\xc9\x9f\x8a\x00~0\x0e\xd4\xcd\xca\xad8\xcc\x80\x0d\x8b+$LZ\xdf\xd85\x1f\x8c\xca\xce\xd7\xa4X\xc8cr\xb9\xe4b(\xe7e;>@d\x00\xf5\xac\xc4\x90\xd1\xb7\xc3E\x98\xb5\x93\xf3 \xf3kJ\x85\x07\xa9!\x951\xfd\xe9\xaf?=\xb6\x0c\xa4)l\xae\xdf\xa0\xdd\xec\xb8\xaa\x18\xcb'\xb3\xa7O\x9e\xd2#\x8b \x89\xffnQ\x856\xb8\xc6\xddj\xe1\xaf\xb8\xe7=\x97EG\x1d\x16yy>LeW\xf8\xe7&\xaf\xf0\xe2\x1c\xea\xaa\xe9*\xdd\xb0\xa0\xd6\x95\x90\xd4h\xd5k\xfd=\xaen\xf3\x8c1;\xcb\x08\xdd\x10z6G\x14\x9f\xed\xe1\xbb\xb3\xdb's\\\xa3'g%Y\xe0\xab\xbc\\\x12\xf1\xfaj\xbf=\x956\x9b\x0d\xaav\xe7\xf0=\xae\xdf\x90\x05\xbe(\x97\x04~np\xa5p\x07\x99\xb8\x01\xc6\x82\x9f\x86\xa5|%\xd9b\xa1\xe9\x8bE\xef\xedG\xaa\xc3\x02\xe9\xeaH|\xfc\xf4\xeb\xaf\x8f\xcdp\x19\xd0&\xcb0\xa5\xcb\xa6\xb8K\x9cL\x06$W\x03\x9dt\xc9\xc8\x15\x9c \x92Z\xf4_YOT\xb76\x00\xceF\xf8\x13O-\xa0\xbfG\x96fob\xd6#\xbd\x1d\x87\xa4O\xd7\x90\xf5X\xf3i\x9a\xe9\x7fyCE\x9d\xa3\xa9\"\xa75.y\xcdG\xd4\xfb%\xae?\x91\xca\xa0Q\xc7\xbb\x1e&e|7[\xa3\xb2\xc4:\xa0\xd5\xe3egNoC\xca\xfc\xc6T\xbd\xe7`\xceS\xa3w6L\xea\xcf\xaek|\x9c}\x07\xa8\xb6\x99\xbb\xca\xc7\xc2\xa7s\xde\xba\xd9/\x8cp:|\x1a\x8a\xd1=\xdan\xaf\xa2_\x1ec\x8e\xab\xdc\xa7\x14\xd8\xf8\xfa\xbc\xc9\x8b\xc5U\x7f>\x0cx}E|\xdc\xb3\xa3\xf5\x05\xdeZ[7\x178Z\x8b\x1b\x9d6\xef2\x06\xf9\x0c\xaa\xade\xa5\x1eV\xcf\x1f\x13Ex\x1b\xb2h\nl\x87\xe7=\xae\x10\x89jT\xf25>O\xed\x15\x96amfk\x9c\xdd\xd0F\x1f\xe7\xb7O\xfd($\xcb;\x8bH\x16\x04\xff\x97\x90\xf4B\x7fd\xa8\x08\xd1\xae\xe8\xe2f\x94\xf1\xb5B\x1c\xbf\xcf\xcb\x8c\x9fU\xca\xf8~E\x177\xf0\xf5\xec\x8f\xdf\x1c\x1f\xbc\xd3\x8b\xb2:2\x1e\xc8\xcf\xfe\xa7\x13\xc8\xb5\xd5T-\x98`\xe4\xaa\xab\xcc:`c+\xca\xda\x97a\x0d\xc2HE\xef._\x0cW\x0f\xa9\x1e+\xd5c9\xc7\xb6\x0f\x9e\x07\xa9\x1e+\xd5c\x19\x9fL\xf5X\x9cR=\xd6!\xa5z\xacT\x8fe\xa2T\x8f\x95\xea\xb18\xa5z\xacT\x8f\x95\xea\xb1R=\x96\xa0T\x8f\x95\xea\xb1R=V\xaa\xc72Q\xaa\xc7J\xf5X\xa9\x1e+\xd5cuh\x8a\xda\x98T\x8f\xc5)\xd5c\xfdZ\xea\xb1\xe2k\xa1\xe8\xae\xcc\xf2R\x1e\xf2b\xa8\x84z/\x9ei\x0b\xa1x\xf1\x93|\xd1T\xff$\xdf\x91\xbf>\xd8\xf2\xa7^\xf7\xbb$x\xcd )0\xea'\x82\x9cP\x9f\xecz \xd2\xd7W\x98\xa2t\xd2\x82\xa4\x84\xec%doO \xd9K\xc8\xde\x9e\x12\xb2W'dOO \xd9S\x94\x90\xbd\x84\xec%d\xcf3JJ\xc8^K \xd9\xebRB\xf6\x12\xb2\xa7\xa1\x84\xeci\x9fI\xc8^B\xf6\x0c\x94\x90\xbd\x84\xec%d/!{\x1d\x9a\x02eI\xc8\x1e\xa7\x84\xec%do\x7f\xfc9\xae\xe9Y\x81jLk+\xcc\xf7\x9a?\xd2\xde\x07\xf5\x1e\xd7-\xe2'\xde\xde\x9f\xa8\xfe\x15\xc5\xb5 \xf9;d#\x1f|\xb0 \xa0\xb8\xee\xc2tY\x8e5\xf3`\xbb\xdb\xc4v\xa5^}\x0f(\x93c\xcf\xb63\xc3\xe2\xb8\x9f\xce!\x1dxH\x08\x1eX\x18\xf8\x88*\xc8'\xa7\xa2(\x14\x17\xb32\xd3'G,k\x85\xa9\xf11pcd\x10\x81\x93\xd9;\x80\xea\xb57V\x06S\xe1e\x10\x89\x99Y\x192\xe5z\xe3f0\x1e;\x83`\xfc\xcc\xcaJ\xe6\xf5\x8304\x98\x1aG\x83@,\x0dB\xf14\xbbe\xb7X\x9b/\xa6\x06S\xe3j\xe0\x87\xad\xc1\x94\xf8\x1a\x8c\xc6\xd8 \x0eg\x83\xa9\xb06\x88\xc2\xdb\xec\xc3\x01Q\xbcpcnp7\xb8\x1b\xdc!\xf6\x06w\x83\xbfA \x06\x07q8\x9c\xcb\x05\xfbaq0-\x1e\x07\x01\x98\x1c\x84\xe3r\x10\x81\xcdy\xb8\xcc\xc7\x1e\xf8\x1cL\x81\xd1\x81\x0b\xa7\x03\xff\xf0\xcc\x03\xaf\x83\xc0(.\x18\xb7\xb3r\xe3\x98\x9e\x07v\x07\x01RN\x88\xe1A\x10\x8e\x07Scy\x10\x89\xe7\xd9\xed\x8a\xba1=\x88\xc7\xf5\x8c\xfcX\x8b.l\x0f&\xc3\xf7\xc0\x1f\xa6\x02\x1f\x9c\x0f\xc2\xb0>p%\xe7#1?\xf0\xe0k\xc9\xffM\x84\xffA\x94r\xfdq@\xf0\xe8e\x04\x1e\x08\xb1\x98 \xd8\xb5:\x1d6\x08\xfe\xf8 xb\x84\xe0\x8d\x13\x82\x9f\xd6\xc3\xf1B\x08\xc2\x0c\xc1\x8a\x1b\xc2T\xd8!\x84\xe2\x870\x12C\x04\x0f\xf5\x06`\x89p\x17x\"\xf8\xc8h\x19 \xd3a\x8b\xe0\x83/\xc2\x08\x8c\xd1\xc8\x90=h\xc3\x19aj\xac\x11\x9cx#\xc4b\x8eFnb\x8dj_\xae{`\x8f`\x85H\xc0\x8aAB\x14\x0eide\xc5'!\x16\xa34r\x13q\xa0%k6\x1dV ^x%D`\x96\x10\x86[B\x0cv \xc1\xf8%8f[\x07\xa6\x04\x01\xb8\x92/\x96 1x&\x84b\x9a`\xefx\x0c\xb6id\xd6A\x0e}\x87\x8c\x1f\xc6i\x1d\x10\xe5\xca\x8es\xc2\xb4X'\xb8\xf0N\xb0c\x9e\xc6wb\xb1P\x98\xd0v\x030Q\x08\xc2E\xa1\x83\x8d\xf6\xe9\x96\xd4y\xb9\xba\xda\x92O\xa6\x03\x94\xbd2\x136DO\x90\xba\xe9\xf9j[\xe5\xa4\xcak\x07\"6\xaa\xb5\xfei\xa5\nP\xd4\x9eU\xaa\x05g\x15m\xd1*/\xf9\xb78\x14\xb6\xd7\xc6\xfeA\x91\xe7\xc6!\n\x14\xd7\xa7\x90\xd7T!\x12\x14\x9aR\x18\xf3B$]?\xe5\xb4o\x1fv\xbb\xd0\x165xm\xef\x1d0j7\xfbv\x19\xa9K\xd6\xd3^_Ei\xafo\xda\xeb\xbb\xa7\xb4\xd77\xed\xf5\xdd\xd3\xa45\n!\xf5 A\xb5 i\xaf\xef\xd8:\x84\x88\x1a\x84I\xea\x0f\xc2k\x0f\xd2^\xdf1\xb5\x06!u\x06\x115\x06i\xafo\xda\xeb\x9b\xf6\xfa\xfa\xd6\x08LZ\x1f\x10S\x1b\x90\xf6\xfa\x9a\x1es\xd6\x00\x04\xe0\xff>;YCp\xff\xb4\xd77\xed\xf5\xf5\xc1\xf0\xd3^_Ncp\xfa\xb4\xd7W\xc7\xc9\x89\xc5\xc7\xe2\xf0\xc6\xb9!\xed\xf5=\xa4\xb4\xd77\x02?wc\xe7\xa1\xb8y\x00f\x1e\x8c\x97\x87a\xe5i\xafo\x18\x1e\x9e\xf6\xfa\xb6\xf4\x9b\xdc\xebk\xbbU}\x8f\xc0\xcenpw\x16\xb4AW\x12\xc3D\xd2\x85V\xb8n\xaa\x92'\x95$\xac&\x81\xa2\x16\xf0\xe4\xa9\xa0\xd5 g\xc2\x11L6\xec] \xe6[6\xe1\x91\x92\xaf\x15\xc9rIq\xcd\x96_}q\xa1\x93\xca\x1e\xe0\xd4yy.\xda\xea\xfcm\x7fQ\xfc\x12\x15=\xd0\xce\x90$\xd0&\x064J\x14\xf2\x99\xf48X\x94\xcb\xcepU\x96\xcd\x06Wy\xa6\xfe\xc6G[\x86J\xd6\x1f\x91\x15Y\xe3R)\xbe)\xdbD\xd4 \xfc\xbc\xe0\xdc\nL\xe9^\x85\"u\xd3P\xa6\xea\x1b\x1c\xa8\xcf>\xfb;V\xee\x00\x12\xd6\xa8\xb7\xc87\xb9\xafv\xf9\xb3mI\x83\x01)\x16I\xca\xae\x05K\xd0\xb5)\x06\xe0\xa5HIt\xfft\xb1\x84\x02/k\x85\xacK\xa8]\x05\x8d<\xbf*\x06\x88h\x84\xe9y\xbe\x03\x8c\xb25\xa0\xed\xf6\x1e\xb5\xd8\xc5\xbb\xf7\xef\xdbt\xd9y\x83i\x94[(\x81\xbaj0\xb0\x7f\xe4\xe5\"\xcfP\x8d[\xa4Ej\x90?(\x0d\xa9\xcb./\xb3\xa2Y\x0cBB$Zi\xa1\xae\xc1\x17\xe3\xc0i'\x03\xcb\\w\xa7~d\xe0\\>^\xd0\xc1\xd7\x1at\x81G\xd1\x15\xa6\x12\xe2\xe6\xc3k?\x1e\xd9\x90\x9b\xc9\xd1\x94\xafJR\x0d\xf2\xd7j4\xf6\x9b\x10\x9a\x19\xfba\x87\x87\x83k>`\x85oq\xd5{\xd5\xf6\xf1\xe4\xd3\xc3\x0f\x97w\xea%*\xac\x1f =>\xac\x0d\\rd\x8fT\x0b\\\x0d\x13X\xfa\xab\x92'\xd5\xc6T\xc7V\xfc\"Ne\xf8\xbb\xe0e8\xb8B[M\xa1\x8e\xae\xe8\x95E\x01\xaa\x01\xc1*\xbf\xc5%\x08\xce\xa6S,t<\x1f)M\xa4s,\x14\xd5\xf7PA\x91\xce\xb1\xb0Ph\xcd\x87\x95\x99>\xf1o\xc9\x83M]\xfb\x01\xee\xfa\x0f\x88\xa8\x01\xb1w \x9dc\x11[\x17\x02\xc1\xb5!VV\xe9\x1c\x8bt\x8eEl\xfd\x08\xc4\xd5\x90\xc0Tu$\x10UKb\x1f\x0e\xe9\x1c\x8b\xb0\xda\x12\x08\xac/\x81\xb8\x1a\x13\x97\x0b\xf6\xab3\x81ikM \xa0\xde\x04\xc2kN \xa2\xee\xc4\xc3e\xa6s,\x04\x05\xd7\xa4X\xb9\xa5s,\xd29\x16\x03\x9a\xa6v\x05\xfcK0\xc0\xa7\x86\x05\xc2\xeaX\xc0\x052\xa6s,\xa6\xad\xa3\x01g-\x0d\xc4\xd6\xd3\x18\xb9\xa5s,\xfc\xeao\x8c\xdc\xd29\x16\x9eu9\x10\\\x9b\x03\xe9\x1c\x0b-\xc5\xd4\xed\x18\x99\xa5s,\x14\xa5s,4\x94\xce\xb1H\xe7Xh\x1fpf\x94\xd29\x16\xfb\x9f|\x95\x99\xce\xb10\x945\xa4\x93,\xf6d\xb1\xa6t\x92\x85\xe6\xf5t\x92E@5C:\xc9\"\x9dd\xb1\xa7I\xab\x14B*\x14\x82\xaa\x13\xd2I\x16c+\x11\"\xaa\x10&\xa9@\x08\xaf>H'Y\x8c\xa96\x08\xa94\x88\xa82H'Y\xa4\x93,\xd2I\x16\xbeU\x02\x93V\x08\xc4T\x07\xa4\x93,L\x8f9\xab\x00\x02*\x00|\xcei\x08A\xfe\xd3I\x16\xe9$\x0b\x1f\x14?\x9dd\xc1i\x0cR\x9fN\xb2\xd0qr\xa2\xf1\xb1H\xbcqnH'Y\x1cR:\xc9\"\x02Aw\xa3\xe7\xa1\xc8y\x00j\x1e\x8c\x98\x87\xa1\xe5\xe9$\x8b0D<\x9dd\xd1R:\xc9B\x92\xda\x1e\xbd\xee\xee\xa5\x05\xb9\xdbx\x90\xca\xdeo6\xae\xab&`K\xbdsG}:;\x03\xdcZLgg\xdc\xa1r\xdd\xa7>\xa4\xb33\xa6\xd0b:;#\x9d\x9d\xf1k=;c\x91\xb3\x811o\x98&\xda\x8332\xb2\xd94e^\xef\xae\xb6\x84HP^w`\xc6\x0b\xf5\xdc%!E{L\x86@\x1e\xe5/\xc08@F\xf2\x92j\xcf\xc7\xe8\xb1x\xa4\xfa\xf8@O\xc5\xd8k\xa3K\xf5=\x14L,pI6\xd1P\x01\xda\xb0\xc1\x1d\xf9\xbaO\xa2\xfe%\xce^\x90\xbcS/\x075\xb9\xc1\xa5\xcc\xb3\x0b\xe9\x95'b\x91>\xfbS\x96o\x90\xbe\x00^\x88k\xca8\xbfy\xfb\xe1\xbbs\xbef\x16\xcf\xc9\xc5g\xce\xf1\x81\x978\x93ay\x8b\xc9tcs-C\x91\xaa\xd07F\xf3U\x89\xea\xa6\xc2\xb4\x1d\x89l\x92Z\x91\x15\xe1\x81\xf0\xe1z\xb6_J\xc8\x06\x83RJ\x7f\x8c\x1c\xd3\xfe(\xd1\xbc}\xa0l^:\xd5\x1bA\xf1\x05X\xfd\x818x$UaIJUX6\xbfr\x07\x00\xe6p\x06\xfbO9\x1fZ\xe7\xaf\x05.\xf0\x8a\x1f3t\xf6K\xfb\xef+y\xd8\xcf\xdf\xcf*\xfc U\x0bj\x9e\xd7:\xeb\xb7\x97\xe2\xf5\x9c\x94\x1fX(\xf4N\xbc\xda\x9b\xebD\x8c$\x99\x02\xca\xb2\xaa\x11^\x01\xf1\xe0\xb5e\xd5V#k'B}C\xf2\xc9\x07;#\xf6T\xd9\xa5\xfb\xb0\xdfV\xc1Wc\xcfu\x12\xdd\xb2\xbf\xae\xef\x9b c\x0f\x059\xfa)\xc8\xd5[A\xd6@@\x90\xb3\xb7\x82\xecA\x81 /V>\x01\x82\xa0\xe00\xc1\xaa\x08\x1e@8\x82\x05AQ!\x83\x85\x9fL\xf4\xd9\x02\x07A\xe1\xe1\x83\xab\x10[\xd0\xdey\xbcT\xeeN8\x90}\xceS\xf8\xaa\xbdQi\xf9\x90%W\xbbdqL\xd5\xbf\xd9\x07\x10c\xc2\x11\xe0(/\xd8~\xd1\xa2\x90q\x88\xc6;\xb6\x0d\x0d\x99\x1aj\xf4\xef\xc3\xa7\xa4@\xbb\xa5\xa8QsO\x81\xb6\x98\x93\x95Vx\x8dN\xb3\xe1\xe6\xdd7HK\xb4}0\xd4x\xe8\xa1\x9f\xa6\xe3\xc3nC|\x91\x02nI)\xe0\xfe\xc2\x01\xb7\x0do9\x88\xa5M\xa6x\xf0`o(\xb6\xbf\xaa\xf37\xa1&rS\xd8\xb2?\x19\x8c\xc4s\xeep\xf1p\xf6\xcbA\xb4i9Yv?\xca\x03\x17\x10\xfb\xf9\xd7\xb1hH\xeb\x85\xc3\x9f]\xc3/\xcd\xed-\xfd#\xcd\xed\xc3\x18\xd3\x15_v\x06\x8f\x86\x9bk\x9a\x9fp\x86O\x93\xfb\x80\xd2\xe4\x9e&\xf7\xe8\xc9}/\xf9\xc1Ll\x92\xfc\xe0\xc1\x9e\xe4\xed\xafw-\xf9]\x84%\xc3\x93\xd5-Q\x08\xa9\xda\x9d\xd6\xfd8d\xcfc\x90\x08\xb0\xc5\x1e]n\x8f\x94.\x1eh\xf4qG\xc7\xcf\x1bF\xa1{\x8e\xef(\\k\x88\xb4\xfb\x11\xd8\xcc\xa3f4\xed\x98_\x0e\x13)\xfe\xf3\\\xf7#\x8e\x9e\xe9z\xf6\x95\xe6:Ii\xaeKs\xdd\x83\x9a1\xd82bQ\xa1O}\xb0\xc4:o\xfc\xb7|\xe5\xb9\xec\xad\x9a<\x14\xabV\x0d!\xd3\xc7\x80\xe9#\xa5\x9d\x07:\x87\xe8\xd5\xd6%\xffIa\xc8+\xd2\xb8\xc2<\xfd@\xdf\x13\xb8\xfb\xa1Y$\x9f/)\xf9\xfc\xe4\xf3\xbf\xac\xcf\xe7\n\xb0\xb8\xf2K\xfe{\xeb\xb8\xc5\xe3\xed\x8e\xa0\x0eG\xd8\x90ES`\xbd\xeb\xee<'\x18>R\xdd{\xa0N\xbb\xab\x96.\xf5\x8b\xb3\x842\xba\x1f{oOJG}\xb5\xec\xc9:\x98\xecCi_mY\xa3\xcf\xe6\xb1f\x19\x0dsD\xf1U{\x06\x9f\xadx\xc1\xc5\x88\x94\x0d\x9d\x84Soj\xbb\xc2%\x9a\x17\xd8\xcaiX\xc6\x0b\xce\x15\x14\x1f\x10\xc2\xfe\xbc&19m\xc9!\xf0\xee\xf2\xc5\x80_\x9a\xb2\xd2\x94\xf5\xe5\xa7\xac(7\xbf\xcf\x10\xe8p(^\xbf\x9dS\x9a\xab\xa3-u3A\xbbF\x7f\xd1>\xdcN\x0b(\xcb\x9aMS\xf03!\xf6\xbc\xf88B\x8e26\x0d[\xf9\xd8\x83\x9d\x1c\x86\xda\xeaRO\xa0\x8e*\xba\x93\x84\xf8s.\x0fs\xdag\x11+\x9c\xe1\xfc\x16kJfFN\x16&a\xc11\xac\xc0U\x99\xe6\x18^\xe0\x94N\x90\xb3&\xcdc\xa4\xb8\xf05\xf0c\xe3\xce\xc1 \n\xc6\xda,\x9d\xf7\xadC\x8b\xc2\xdc\x8c\xdci\xec\xc9\x8b\x10\xfcJ\x10b\n\x10\xec\x85\x06Qe\x06\xbc \x03Cg\x91\xc1\x04%\x06\x91\x05\x06FX\xd6\xaf\xbc`TqATi\x01\xa0\xa20i\xd1\xaf\xb0 \xa6\xac\xc0\x06\xf6y\x15\x15L\\R\xe0UP0a9\x81\xb3\x98`\xa2R\x821\x85\x04\xc1e\x04\x13\x14\x11L\\B\xe0( \x98\xbc|\xe0n\x8a\x07&/\x1d\xf0/\x1c\x88+\x1b\xb0(\xddU40Y\xc9\x80_\xc1\x80&ca\xf6\xaf\x13\x17\x0b\xb8J\x05F\x16\nX\xca\x04\x9c\xe1\x89\xb3D\xc0/~\x99\xb6<\xc0U\x1c\xe0\x96)\xae0@yv\x0dCWY\xc0\x84E\x01#J\x02\xf4\x85<\xb6\x82\x80i\xcb\x01\xec\xc5\x00S\x94\x02xa\xd9\x8e2\x00\xef\"\x003^\x17^\x00`\xe6\xa5\xcd\x8dO\x02\xfd\x87(\xcb\x17\xf6w\xeb\xc4\x1b\xf2\x8f\x00\xfc\xf58\xc2D`\xbf\x17\xd4\xef\x06\xfa}`~\xab\x16C!~_\x80\xdf\x04\xefO\x00\xee\x07@\xfb\xf1\xc0\xbe\x05>\xf7\x05\xf5'\x86\xf4-\x12i-5\n\xccW9X\x0d?\x03\x94?1\x90o\x86\xf1cA|\x9e\x11\xd0 \xae\x87\xf0\xa7\x05\xf0M\x0b?'xoB\x17M\xc0\xfd\xb4\xb0}\xa9O\xf9\xb9!Uc\x18\xaf\xce\x8f\xe3L\xb2{~=iu[\\e,\"]\x89d2\xdf\xa4Mkt\x839\x0e\xd5NB\xa2Z\xc6\x84\x0c\xca=\xe7\x1c\xb32}\xb6\x8c\x944_`6@xJ_g\x06\xf5\xba\xc2\x94\xd9\xcf\x03\xd1\x0d\xb3\xd8J\xadY\xff\x1f\xa6\\\x13Tl\x80\xef\x8c\xcf-\xa2\x06D\x05\xe0\xa5\xcc\x82H\xab\xfez\xf6'\xdd\x93\xb7\xb8&W\x0f\xac\xf7b\x85O\x96\xf0_X\xda\x00\x1f\xd3\x1f\xb8\x89\x88\xff\xe5\xc1\x9a\x05\xcc\xef*\xc9l\x19\xac\xf3x1\x1b\xaa\xea\xc9\xd97}Uy\x14~\x89\x801\xa4\xecKF\xaa\xef._\x0c\xf8\xa5\xa2\xafT\xf45Y\xb4\x93\x8a\xbeR\xd1\x97\x9eR\xd1\x17\xa7T\xf4uH\xa9\xe8+\x15}\x99(\x15}\xa5\xa2/N\xa9\xe8+\x15}\xa5\xa2\xafT\xf4%(\x15}\xa5\xa2\xafT\xf4\x95\x8a\xbeL\x94\x8a\xbeR\xd1W*\xfaJE_\x1d\x9a\xa2\x00'\x15}qJE_\xbf\x85\xa2\xafN\x05T\x87\x8fm%\xd9y\xa3\xc5\x9b\xc5g\xeb \xce5\x91\xf7\x8a/Iu\xaa\x0e\xa0\x17g\xc5\xf7\x98\x1d\x89:\x80\xa3\xd3\xbez\x8f8L\xcd~`\x0b\xad#\x89\xbc\x1fMXD\x16T-&\x81?\xf9\x82\xb6DL=\xd2\xaf\x12k\xff\xda\x9e\xf9\xbc\xcaoq \xb4FuC\xb5\x85b-\xa7G\xaaS\x0f\xb4Pl\xa0\x95.\xd5\xf7\x80\x7f)q\xaer\x03\xe2\x1c\x94\xff\xb1\xdc)\xcf\x11\x01se\x91\xa3\x1b\xe0\xd1\x15\xf0\x80\xf3\xc0\xaf?\xe0\x99\x16R\x14\n\xedY\x99\xe9\xf3;\x96\xe5\xce\xd4\x10\x1f\xb8a>\x88\x80\xfa\xec\x1dP\x07k\xfb\xc0}0\x15\xe4\x07\x91\xb0\x9f\x95!S\xae7\xf4\x07\xe3\xe1?\x08\x86\x00\xad\xac\xf6\x87o\xfb\xc3\x8005\x14\x08\x81p \x84B\x82v\xcbn\xe1B_X\x10\xa6\x86\x06\xc1\x0f\x1e\x84)!B\x18\x0d\x13B\x1cT\x08S\xc1\x85\x10\x05\x19\xda\x87\x83\nA\\\xe3\xe6N\xa0C\xb8C\xf8\x10\xee\x06B\x84@\x18\x11\xe2\xa0D\x97\x0b\xf6\x83\x13aZH\x11\x02`E\x08\x87\x16!\x02^\xf4p\x99\x8f= F\x98\x02f\x04\x17\xd4\x08\xfe\xe1\x99\x07\xe4\x08\x81Q\\0\xf4h\xe5\xc6aI\x0f\xf8\x11\x02\xa4\x9c\x10\x86\x84 (\x12\xa6\x86#!\x12\x92\xb4\xdb\x15u\xc3\x92\x10\x0fM\x1a\xf9\xb1\x16]\xf0$L\x06Q\x82?\xd2\x06>P%\x84\xc1\x95\xe0\xc2\x17\"aK\xf0\xe0kIaN\x04aB\x94r\xfd\xa1L\xf0\xe8e\x04\xa4 \xb1\xb0&\xd8\xb5:\x1d\xbc \xfe\x10'x\xc2\x9c\xe0\x0du\x82\x9f\xd6\xc3!O\x08\x82=\xc1\n}\xc2T\xf0'\x84B\xa00\x12\x06\x05\x0f\xf5\x06\xc0\xa1p\x17\x90(\xf8\xc8h\x19 \xd3\xc1\xa3\xe0\x03\x91\xc2\x08\x98\xd4\xc8\x90=h\x83Jaj\xb8\x14\xfe\x7f\xf6\xde\xb6;n\x1b\xcb\xf7}\xefO\xb1o\xee]\xc7\xc99\xb24\xe9\x9e\x99\x17>7g]GV\xba5\x93\xd8\x1aKNV\xafY\xb3*T\x15Tb\xbb\x8a\xac&Qz\x98\xcc|\xf7\xbb\xf0D\x82,%<\xeb-\xcc\n~b\x1f\x19\\\x986\xf8@T\xcbp\xa8\x16\xf2\x86k!\x16\xb2\x85p\xd8\xd6{\xce\xd4p.d\xec\xbb a]H\n\xed\xc2\x8e\x90\xbc1\x15Z\xdc#\x04\xc6*_6/\xc8H\xe9\xc5\x87\xf7\x17\xef/\xdf\xfc8\xbb\xbczs\xf5\xf1r\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go\x13\xcez{v\xf1\xfe\xf2\xfcjvq\xf6\xe1\xfc}\xca\x89?\xbf\xbf:\x7f\xf7\xa7\xf4\xf3.\xde\\^&\xd5\xf0\xc3\xd9\xbf\x9c\x9d^%\x9d\xf2\xc3\x9b\xf3\x1f\xbd'\x98\x94\xcb \x0e\xc4\xae\xaa\x98\xd8\xf1\xa5\xec\x03\xf2N\xcao\x7f\xf5p\xea\xb5 \xf9\x1b\x93\x84\xb2\x7f\xe8\xe9\xd3\xdb\xfd]0\xd8\x15\x82\xcd\x1c\xe4\xa9\x9b\x19d\x97^;\x0c\x8e\xa3.<\xecM\xbb\xd7\x1e\xfen)5\x8c.\n\x8b\xad|\x0b\xaazI\xe8\xc0\xef\"\xaft\x81\xb6H\xdf\xdd\xad\xe5\xe0g\\%\x15>\x91\xb3\x8e\xea9\xd9\xad\x9c\xfa{\xa0V\xa2?Y9\xd2\xe25t\x1b\x88\x0bm\x8a\xb6eiU3O\xe4n\xe5\xcc/\xf9\xaaw\xcdX\x05\x0d\xfb\xabL\x80N\xaa\xa5\x1a\x04v\xeb\xa8\xfe\x9e\xaf\x867E\xb9\xf2U\xed\xa6\xac\x8a\xd5LIC\xa8\xd8\x90oD\xc7\x0e-\xbb%\x9a|t\xf9\x8b\xd2\x950\xd2 \x91E\xe5np\x81_nY`z. \"5\x1f\xe9\xdcrW\x16\xb0\xfcpqz\xa4\x83,F\x15\xa5\xaa\x03Oj\xbd\xd9*\x01\x8cm\xc5\xcbU8\x00k\xae\xf4\xb2\x1dj\x94\xc8\xb9\x1a\xab\x16\xfe\xde\xc0\xf3\x90\x1f/\x1fY\xfbr\xef\xb8Bq\xdd\x8ao\x97\xbd\xcbyY\xd5\xfbW\xa6\xaag\xe2[lv\xc7x\xbdWa\xed\xf6z]\xf2\x19/\xd79\x92\xbc\x16\x05g\xafDY\xce\xe3\x8c\xf8\x0c\xab\x16OsA)W\x12\x96g\n\xa3U\xca\x82\x12M\xa8^\x8a\xeb\xa7\x08\xa1&\x94s\x00%\xd6\x84,\n;\x9c%K6E+\x1f\x0ew\xe6\x95sB\x0b:M\x95t\xd2\xaaj-/\x9a'z\xda\xf4\x15\x9f\xe8a\xc3t\x133\x99\x1eLV\xe7u\xc3\xf4\xbd[\x8b\xaf\xe9F\xbf\xb6\x97\xf5\x1dk\xaabw\xc7-e>\xb5\xa8M\xb1\xd4\xddl\xb7\xc1\x83:\xf6\x07\x8e4\x9e\xba?\xeb\xb5G\x17\xf0\xa9,\xf8\xe0\x87\x1f\xf8\x8a=\xf0\xd9'\xf6\xe8\xbe+\xd1{\x12\x8dp\x0f\x9a\xfa_\xbe\xa7\xd6\xd4\xc2L<\xc4\x7fjHD\xce%\xc5?.\x8a%\xfb\xa0\xc4'\x8f\xd5\xef\x9e\xc2\x14\x9d,\x8a\x11\xc5\nG2X\xd7-\x07&Q\x0b\xc9h\x1c\xc39\xb7\xd6N6\xfc\x11J_\xec\x94\xdf\xb2\x86IF\xa7\xaaa-z\x89fr\\\x0f\x98\x1c\xe9\xf7tf\x80P\xe5%_\xb1\xc0\xf0\xa7t\xb1\x84\x17\xe5\x7fT[\xd1\x91E?6\xca\x03V\x9a\xbb\xaf\xbd\xb6\xa3\xe7bD\x9b\xc9\xc2|C\xd1}\xd1B\xcb\xf8\x11\x94\xbc5\x84T\x0b\xdbJu\xe6\x85\x82@\xee\xcbv\xd8?0\x1aI\x86BF\xc9$\xb9J8\xe9\xd9\xed\x0f\x17\xa7\xe3\x06\x90p\x12 'E_9\x98\xd7 L\xa0\xabU\xdf%\xe1$\x04I\x9d\x85\xa2\x9eBP\x93pRFZ:\x85\x94N\xa2\xa4I8i_\"z\x02\x0d\x9d\x85\x84N\xa7\xa0I8i\x1f\xea9\x85x\x9e@;\x93p\x12 '\x91p\x12\x96V\xceJ*O\xa1\x94I8\xc9wX\x94FN \x911\xb2@)\x042 '\x91p\x12\x86&&\xe1$i\xfb\x10\xc3$\x9c\xe4*)J\x05O%\x82\xbd\xef\x06\x12N\xda5\x12N\x9a@\xf2\xc6)\xdeT\x827\x81\xdeM&w\xd3\xa8]\x12NJ#sI8\xa93\x12N\xd2\xd6 '\x19\xbd\x19EoYe\x85\xa2\x99\xa3\xb3\x06\xc1\xdc\x1e\x03\x93\xa1]\x13\x95\x1a\xcf\x93\x9e\x14\xbb\xfc|\xa8\xa5\x13]\xfcLH%\xb2.\x87D'\x9d\xb8\xe4\xd3#\x92!,\xf2iQ\xc8]\xfc\xb1\xac^\xab\xb0\xbe\xf5\xb7^\x12\xec\xa6X\xb5\x11M0p\xd2\xefx\xe2=\xf6\xb0D\x0e\xf6\x93\xed(\x9a\x1dI\xb0#\xa8\xf5$R\xdd\x8c\x87w5\x1f,w\x0dFA\xf9\xe3`\xf8Q\x7f)\x16\x8b\x86\xb5\xad \xcf\xdb\x83^_R\x86\xfbj*\xa9\x07\x9a\xda[\xd1\xee\x80\xd1X\xa9v~\xd3\xd5e-\xdc4\xf5\xfaIj\xdc\x13>\xc7\x9f\xd8\xa3\xaf\xda\xa3\xb7\x8c\x86d\n=So\x18\xdf6\x95\x8c]hnC\xf3\x08\x1dQ##\x0e\xcb\xd1\xd2|\x87\xdf\xf2\x08%\xf3^|W)q?\xa8onZ\xc6\xa1n`X]\xb0\"\xa6-\xe3\x99\xbd\xe5Y\x7fv8Q\xd5\xcf\xe7\xc7\xd1\xda\xafn\x8ct\xa5\xcc\xa5(\xe7\xe6orL\xd2\xba\x86j\xf1\xfd\x96U\xc6\xf1\xdb\xaa\x8bw\x8c\xde\xde\xe7\xb2\xb4\x95\xe8\xf3\x9d\x0bU\x84`\xdb\nW\x7fb\x89\xfe\x1c\x16\x7f`\xe7\x8e\x98#\x87{W\xe5\xba\xc4zW\x1ekp\x1d\x1f\x8a\xa4bav\x0fV\x9f\x9c\xe2\xd7Ai\x1b\xb5\xf2m\xff\xe9\xfc\x06V\xec\x86\x1btK\xb3\\f\xe2#\xc3x\xea\x01Q\x17\x11~\xbe~\x04V\xcco\xa1\xd8l>\xa3\x17m\xa0\xaa??\xe4K\xeb\x0c\xe1Q\xd9Ck)\x83 \xe2?\xcajQ\xce\x0b\xce\xba\x80\xbe!\xf5\xc5\x81\xba#\xd9\xc5\x95\xd5|\xb5]\x8cV\x1e\nu\x95\x8e\xa8\x18\xdd1\xc9\xe7X\x81>\xb9\xaf\xa0\xcd'\x0e\n\xfbx>\x9e\xd8\x8e\x9a \x17k\x1a\xd6j\x92J>^\xfd\xf3(\x1e\xb9c\xfd4\x95\xcb\xaanFaR\xf34\x0e/\xa1<\xb3\xef\x8d\xbd\xae\xeb\x15\xb3\x88`\xc7\x0dl\xd8\x1dk\x06\xa7\x86n\x9e>z|\xe3J\x0b\xc8k\x98\xfbI\x18\x94#\xae\xc1* \x90\xd4\xcd\x825\xe38\xc9eY\xcd\xd9kP\n\xa7\xaf\xda\xc5'\xf8\x87\xe3\x7f\xfccVoL\x92U=\xf9\xad\xfb,*\x17\xa1}\xb8\xcd\x84\xd0h\xacnzDW\x02e\xbd\xc6\x999\xf4\xfc\xad\xb9\xdbN\x91\xd5\x17\xa6\x8d\xcf\\c\xd5G\xcaM\xa2y-g\x1f\x8aA\x0dj\xa4\x06\xab\x0e\xd1\xea\x03\x82\xd9C\xb4\x01\x90q_e\x93\xc8\xbd@yI\xaa\xa8Y\xe9\xbd(\xbf\x97\x9b\xe0\xc33|\x99(\xbei\x1c_\xa0\xb8D\x1d\xd4=Y\xbe\xdc4_\"\xcf\x97\x99\xe8Kc\xfa\x12\xa9\xbeP\x1f\x9e\xa0|\x9a\x95\xecC\xb1}\x19\xe9\xbe}\xf9\xbeI\x84_&\xc6o\n\xe5\x17(\x0c\xadtz\x00\xd2\xefp\xac\xdfAh\xbf4\xde/;\xf1\x87e\xfe\xb2R\x7fx\xee/\x99\xfcKg\xff\xa2C!N\xd3to\xfe/\xaag\x8a\x9aP!(\xc0\x94YW2 \x18z \xa2ULq\xf5\xcb\xc8\x03\xa6\x10\x81\x99\x99\xc0iT`\xa8\x07\xa1\x94K'\x92\x81\x9e\xd28J\xb54\x0f\x1d\x88F\xdc\x10\x84`\x12#\x18\x13\xfd\x9b\xc2 \xc6\xca\xf4\xf2\x02\x99h\xc1tg\xe2\x89\xc1X\xdb&P\x83\x13\xb9\xc1\x10w\x91\x8d\x1dD\xd3\x838~\x10K\x10\"\xbc\x9cN\x11\xa6p\x84a\x1d\xd2,,a\"M\xb8\x1fO\x18sh\x02Sx\x00\xaa0Z;oO\xcf\xc7\x16\"\xe8\xc2\xe9|\xa1\xa78\x1e\xd5\x1b\xcd\xca\x18\xc6(\xc3\x89\x9c\xa1\xa7\xac\xb8\xce(\x825\x0ck\x8c\x86\x14Fs\x13\x87\xd9\x99C?u\x98\x93;\xc4\x90\x87\xe9\xeca\x12}8\x81?L%\x10#\xaa\xa1\xe1\xdaa\x990,\x878\x81DLd\x11\x03\xcd\x9d\xc2#z\x8aB\xe8\x84Na\x12\x03]>\xae\x11\x9a\x91K\x8c\xea\x83\x1e\x82M\xcc\xd5\x17\x13\xf8\xc4\x14B\xd1\xad\xfe\x19\xd2\xfe\x8c~\xbf\x87t?\xf1\x0cT\xe8\x1c\x94\xe6g\n\x17\x15:+\xa8\xf7\x89d\xa5B'\x04\xb4>\x93\xf8\xa9\xe1\x89\x98\x95\x87\\*\x9f\xbd(\x91\xaf\x9b=)j\x1a\xba\xecSA\xa7\xbdE\x943?\x13\x88\xda[r\xfd\x0e \xa7\xf6\x16Q\xf5|z`\xb57\x9c\xa2\xe7\xd3B\xac\xbd\xf9\xd5<\xb1Z\x9e\xb8\xc1#\x9f\x8eg7|\x04U<\x135<{\xadNOyQ\x05Os\x95T\xfdN\xbe?\x95\x10Q\xee\x8c\xbe\x81\x11\xaa\x9d\x882\xc2\x8a\x9d\x88\x02pj\x9d\x91\x82\xa2J\x9d\xd1\x8a\xe0t\xfc0\x1a\x9dY.\x85P\xe7\xe4\x01\xf5*\x88)sF\xfb\x1f\xa6\x07\"49\xa3\xce\x00\x94\x1e'\xa2\x18\xdc\x80\x94\xac\xc4\x89\xd0\xdb\xcc\xab\xb6\x89\xd4\xda\x9c\xa2\xb4\x89\xd4\xd9\x8c:\x1b\xd3\x81Q\n\x9b\x19\xae\x14\xbf\xed\xf9\x945\xfb)\xac\xfd\xd7\x04\xd9@\x94j\xe0H'pT\xde\x87\x8bSR \x04R \xcc6\x1eNb\x0dI%\x10C\x18f\xe1\x0b\xa7\xd0\x85\xa4\x12\x98\x91)L!\n\x93xBR \xdc\x97\"\x9c\xc0\x10f!\x08\xd3\xf9AR \xdc\x87\x1bL\xa1\x0633\x838b0#/\x88\xa5\x05\x1d\x81\x00R \x1c\x1a\x82\x0f\xc4\xce\x92\x92\xd9@R D\x11\x81Sx@R \xf4\x1d\x16e\x00\x13\x08@\x8c\x06^\n\xfdG*\x81\xa4\x12\x88a\xfcH%P\xda>T\x1f\xa9\x04\xbaJ\x8ar|S)>\xef\xbb\x81T\x02w\x8dT\x02'\xd0zqV/\x95\xd4K\xe0\xf4\x92)\xbd4F\x8fT\x02\xd3\xa8\x97@\xe1\xe1\x19\xbc$\x95\xc0\xd2\x1e\xb9\x87[\xbb\xf5\x87\x0c\x02bj\xb5\x1f\xca\x05\x8c\x14\x01\xed\x11\xa9\x94{\xc3\x0d\x86\xc1^\xb0\x837\xdb\xa9\xb24\x19t#\xce\x8e8;\xe2\xec\x88\xb3\xb3,\x07\xf3D\x9c\x9d4\xe2\xec\x88\xb3\xfb=pv]\xe0\xd9W\xff\xee\x80\xd1\xce\x8b*\x06\xa8#{\xac\x85\x9b\xa6^\x0f\xda\xd1flH\x0e\xbcBn@\xe7\xe7)\xae\xc4\xcf\x1f\x14\x1dd@\n\xf9\xa2\x90\x0b\xe8\xc3-\xf7\xeej\xce\x9c\x90\x84U\xc8\x0b\xd3\xcag\nJX\xee\xb0mP\x17\xd5v\xfb\xbe7JDEL\x95\xc4o\xbboOoM \x1a\x85\x0b\xecr\x17Y{\n\xeen\x179\xd7\xbf\xab]\xe4\xc4\xf8nv\xde\x02\x10\xf1k\xab'\xa5\xc4\xb0\xaf\x1c\xc1\x0d\x8a`k\xa3\x086E\xb0{\xa3\x086E\xb0{\xa3\x086\xa7\x08\xb6\xdb(\x82m\x8c\"\xd8\x14\xc1\xa6\x086r\x96D\x11\xec\xce(\x82m\x1bE\xb0)\x82\xed0\x8a`;\x8f\xa1\x086E\xb0=F\x11l\x8a`S\x04\x9b\"\xd8\x96\xe5\x88&R\x04[\x1aE\xb0)\x82\xfd|#\xd89\"\xc2w57\xd1\x14WD\xf8g\xf1s\x17\x0b\x96\x07\xab8\xf0\xb2\xbcc\xd5Nk\x07\x81`y\xee\x0b\xd3\xdeg\x1a\x02\xb6\xdao\x1b\xff\x0c\xd1\xabh\x8a}\xd2\xeaM`\xb7\x11\xd1\xe6\xe9\xfbE\xa9\xe5w\xdf\xe9\x98\xf5\x17P \xd4\x0d\x9b\x17\\<\x02\x17\x0d\xbb\x11\xd34\x15t\xf8U]\xa0\xfd\x15\xca\xaa\xe5\xacX\xe8\xd0\xd6\x8dwf\x05\x9d\xbc\x87\x18\x1fug\xf5\x8fU\xf2sh\xa1\xa6\x90\xe5\x0d\xfc\xbab\xd5\xd7\xfa\x9a\xdf\xc0w\xdf\xc1\xb7\xbf\xea\xe9i\xc1uc\xc5+\xc4[\xdc=\x93Kz\xdf\x1e\xc3y\x05\xc5*\xb0\xdc\xa9\x16\x11\xe7E\xcb\xda#\xbd\xd4*'8#i\x1a\xef\xf9?\xbf\xbf:\x9b\xbd\xbf\xb8:\x7f\xffn\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go}_\x07\xd1; \xc0\xaam@\x93\xe0\x95\xef\x8a\xc83\xferv\x89<\xf2\xcd\xf7\x97Wo\xce\xdf!\x8f~\xf7\x1e}\xe0\xec\x97\xf3\xab?\xcf~>\xbb\xf2\x9db \x80\xa4\xa6\xea\xde\x12~\x84\x9e\xc7\x9ei\xe1\xa7U\x19\xa2\xa3(\x0bw\x17e\xe9\x9d\xc6u^\xa8\xeb\xb8\x8e\x8fu \xd79\x81n\xe4><\xda\x99\x94M\xeaR\xfd\xc9\xb8\xf1S\x99x\xc5\xbeWC\x14\x93\"e\x05\xd7\x13\x13\xb5\xde.Fz\xd3[\xe5\xf7\xab?(\xa8L\xbd\xd6\x97\xf5\x1dk\xaa\xa2\x9a\xdb\xf3\x99\xc8\x99\xfe\x1b\xefu\x84\xa5-R\xd5\xaf\xea\x8d]\xdd\xc0\x92\x87\xebr\x7f9\xbb|=\xfe\x83U\xfc\xa3\x9e\xbcL+\\w\xae\xd7\xae?\x0e\x14@\x14\x82\xb5\xc7\x95\xde\xbd\x7f=\xfa\xf7\xc0G{\x95\xdc\xf7\xde\xf15\xfa_\x86W\x93\xe1\x8c;\xc6\xd1\xd7U\xaf\xc2\x0c\x83\x0d\xfe)\xf8E^\x92-\xac'\xa1o\xc3\xb6*%\xb5 \xab/\xba\xbf\xf8\x8f@a\xedfUF6V\x8c\xeah\xd9\xa6\xb7u{\xe9>\xe9\xa5\xe3,L\xc3ES\xadF\xaa{S\x8999\xfa\xb1}\xa3\n\x99\xd7U[\xb6f7\xd8\x0e\xed<\x7f{\xa4\xc6\x101O<2ku~\xe7\xf9:\xc6\xa01\xea\xdb\xc1\xec\x1e'\xcaS\x1355H\xed\x842i\x9fEi\x8b\x80\xd2go\xb4\xcf\"\xe0\xbe|\xbe\xa4}\x16\xe5\xe7w\n7\xab\xbe\xf5?\\\x9c\x8eJ#n\x96\xb8\xd9\xe8;\x1b\xf3\xe2\x02\xe2f\x89\x9b\xf5\x1eI\xdc\xac4\xe2fw\x8d\xb8Y\xe2f}F\xdc,q\xb3\xd2\x88\x9b%n\x96\xb8Y\xe2f\x95\x117K\xdc,q\xb3\xc4\xcd\xfa\x8c\xb8Y\xe2f\x89\x9b%n\xd6\xb2\x1c\x0c#q\xb3\xd2\x88\x9b%n\xf6\xf9r\xb3\xcem\xbbh\x87E\x88\xbb\x91vX<\xa0s\xe3}\x94vX\xcc\xe1E\xdaa\x91vX\xfcrwX\x94\xb4\xd5\xc9o\x92\xed\nl\xad(\xf90;\xefc\xe1\xd8C\xb1\xee3@\xce\xdf\x1e)^\xcc\xbby\xe2\xcf=>\xf6\xac\xb3A|H\xc6$>,\x9a\xd3\x11\x8d+D\xa9\xa6@6G\xa4\xf0\x10\x1b\x8e\x89\x07L\xce\xe2\x80\xd2\x17\x90\xc2\xe5pd\xcd\xe0\xc0\xe6o\xec\x97\xbd\x91\x94\xbb\x11\xed\x14!\x10?\x15\xc0\xc7\x82\xf7)\xc0=\x12\xb4O\x04\xec'\x80\xf5\xc1L\x0d\x1e\xc9\xd3x\x8amA\xe3\xf9\x19\xd1\xce\xa0,\x9e\x9b\x91\xda1\\g\xc5\xf22R:\x89\xeb\x8cHNFb\x87Q6\xa1\xdb\xf4\xa7bFAe\x99s1&gb#\x10\x9c@pi\x04\x82\x13\x08N 8\x81\xe0\xca\x08\x04'\x10\x9c@p\x02\xc1}F 8\x81\xe0\x04\x82\x13\x08nY\x0e(\x97@pi\x04\x82\x13\x08\xfe{\x00\xc1e\xf8\xcdWw\xf9\xe3\xa0\xd6\xea/z\xe3\xdf.x\xb6\xf9l\xbb\xfe\x9e\xc8\xbb\xd3\x9e\xfc\xa6\xfe\x7f&\n\n\xc0}\x17\xf2\xa8\x0e\xef+V+\xeb\xf6\x9a\x1b\xb1\xac\xef`]/\xb6+\xf76\xbf\x7f\xaa\xef~\xfeV\x15\xf4\xc24\xeb\xf9R}e\xb5\x9c)\xdf\xecN\xd9\xc7\xf7\xba?v\xa4(\xd7y\xa8a+\xf9\x9d\xae\"\xf3e\xb5\xdc}}z\xab \xd10\x9c\xa9\x02k\xcaz*58h\xd3\x8f\xacZ\xf2[s_U\xf1\xa0\x8a\x1fW\\\xefi\x8d\xf3\xd5\xf0`\x84\xb3\xf4 Y\xbd\xb5.\xab\x99.\xf7\xf9R^\x0bV\xd5A:+zC\x85\x15\xebz[=\x15\xe0qZ\x976\xd2\xc1\xebO\xac\xd2\xebs\xaa9\x06=\x173\x84\xa2\xd2\x95\x0b-\x05\xbf{\x7fu\xf6ZN\xaa\xd5\xb1\x1d\x0b*N?\xaf\xb8~ow\x8b\xb6m06\xa1_\xea\xea{\xc6\x7f\xd1\xb6\\V\x05\xdf6\xac\xed\x86]\xf1\x05\xb7\xac\x97\xb5|c\xba'\xbe\x03'\xfdTV\xe5z\xbb\xee\xf6{\x97\xecVOp\xf0\x1aX%^\x07\xc1\x07K\xd8\xbax\x98u\xcfL\xb6\xa7\xdb{\x0f\x7f*\x1ed\xbd\xd5\xa5d\xb5\xdf\x08\x97\x89\x89\x91x0\xfb\x07R\x01-\xae7\xafm\xe7U\xc9\xcbb\xa5\x97\xc7a\x0c?t\xb6\xae+~\xbb\xb3\xb4.\xf7J\xc7\x8d+\xf6\xa1\x88Q%\xff.\xec\x7f\xdb\xd6\x8d\x8f\xa6\xccust\xa7\xda\xb0f.f\xc2K\xb5\x88-\xf33Z^|b2\xfe\xd5\xbdcX\x90\x18\xd4\xe9&2V\xe6\xbb+\x92?Z0\xd1\xffe(\xc1u\x97\xf9m\xc3Z\xd1=\x9e\xa6\xe9\xa2\xbf5\xe6S\xf8/\xdd\xfe\x127*&\xda=]\x9b\xa2\xf5\x04j\x00\xde\xea\xc5\x15\xdd'\xff\xe1\xf8\x9f\\G\xde1^\xcf\x9e\xb6qj]\xa0\xbe\x81\x9f\x0d\xbf'\x1f\xb8+y\x83\xd5?\xe5\\*\x80\x00\xd8>\xf0\xdfW\xd16\xb68\x1e{\xe2\xdb\x93?&cbj6\x97\x02\x8a\xe9\x89$\xa1b\x84\x8a\xb9~\xcf4\x15!T\x8cP1\xb7\x11*&\x8dP\xb1]#T\x8cP1\x9f\x11*F\xa8\x984B\xc5\x08\x15#T\x8cP1e\x84\x8a\x11*F\xa8\x18\xa1b>#T\x8cP1B\xc5\x08\x15\xb3,\x07\xb6C\xa8\x984B\xc5\xbe\x08T\xac\x07\x94\xacrB_\x92\xd6\x19]0X\xdd6+\x1c\xcck\xbdo\xe1M\xdd\x1c\x19\xe5H%\xf28(\xec+\x15\xa4\xff\xeah\xe8\xde\xafd\x0cY\xfc >\xb4\xbe\xd2a\xf1\xaf>\x03\xc7e\x102u\xac\x13\xde2\x87\x0c\xf9\xad\xee\xaf\x9d4\x9bR\x90iy\xc1\xb7m\x00\xe1\xd2'\xbe0mz\xa6\x10\xd7\xc83\xb6\xf1\xcf\x10\xfe:\xf4\x1e\xfdz\x90\x88\x80I\xcfc\x8fq\x1e \x05\xf6GE\x11'@.+\xf5\x96\x1a\x1c\x8c\x14\xe7^#\n|2IK\x0e\x14F\xca+x,\\\xa8,5h\x18kF\xc1o\xd1\xa1CeY\x02\x88\xca\x92\xc3\x88\x91\xf2d\x901!\x98\xa8l\xcf\x90\xa2\xb2\xb4\xc0b\xac\x1d*\xe4\x91\x14^T\x96\x1ad\x8c\x14'&/)\xa1FeI\x01\xc7X\x7f\xef\xc2\x91\xd8\xb0\xa3\xb2\xe4\xe0c\xec\xf9l1!He\xd9\x02\x91\xa6\xb8}\xc2\x91\xca&\x04%\x95e M*K\x0fP\xc6\x1e\x133\xef\x89?Q\x07 V*;T\xc8R\xd9\x01\x02\x97\xcaR\xc2\x97\xca\xd0A\xcc\xd8\xa3d\x858\x91\xa1Le\x19\x03\x9a\xca\xb0aMe\x8e\xef\xab\xf8{!5\xc4\x19\x1b\xd6T\x00\x14\x11\xe8T\xb6w\xb8SY0\xe8\xa9\x0c=\xd9C\x04@\x95\xa5\xcd\n\x93\x83\xa1\xb1^z]\xdf1DHT\x19\xbe\xae\x19\xc3\xa3\xca\xf0AReYC\xa5\xca\xa6\x04Lc\xbd\xad\x8d\x87M\x95M \x9e\x86\x8b\x13W\x8d\x85P\x95\xe5 \xa4*CF\x04\x95E\x83\xaa\xca\x12B\xab\xca\x82\xd1\x10iS\xc2\xac\xca\xe2e\x07\x96]\xb3\x05^\x95Mq6>\x08\xab,\xde\xde \x01Ye\x93\xc2\xb2\xca\x82>\xce\x17\xa2U\x86\x0c\xd4*\xc3\x84k\xbb#\x11A[e\xa8\xbb\x90\x1e\xc0U\x86\x0f\xe3*\xf3\x07s\x95e \xe9*K\n\xec*\xdb'\xbc\xab,\xee\xec\x84P\xaf\xb2\xec\x01_e\x88\x9a\x06\x9f\x94|!`e\xd1@\xb0\xb2)\xe1\xe0@qF|8\x14\x14V6%4\x1c(\x8e\x9b5+o\x80X\xd9\xa40q\xa0<\xf5\xb5\x1c[@@\x84\x8c\x95\xf9c[\xca\xfc\xe1ce\xe9A\xe4@a\xc1\xf0\xb29dB\x909P\x9e\x9am\x06\xd7\xf9\xf2\x05\x9c\x95\xc5\xc3\xce\xcaR\x83\xcf\xca\x12B\xd0\xca\x92\x03\xd1\x83\xd3\x90\xe1he\xe17w$L\xa8\x0c\x1b,\xc4\x06\xa8u\xa9\xa9aj}ZJ\xb0ZY\xd0\x05S\x02\xd7\x81\xe2\xac\xc00\xfe\x91\xc2\x05\xb1#\x8fK\xb5\x0c\x87\xb2\x95e\x0ch\xeb\x02Came\x81\xe0v\xe0\xac\xa9aoe\xf9zuB\x08\\\x17\x8c\x0e\x84+sOfT\xfb\xb0\xae[\x0eLb0\x92\xa0\x91[\xb1\xf7\xabFr\xbb}\x9f\xb8\x0d\xbfe\x0d\x934UU\xc3Z\xf4\x12MO\xb9\xba\x9f|{\xed\xe9\xcc\x00\xc3\xac7c\xf4>f\xddn\xf4\xe3\xcd\xee\xbb\x8d\xd9{6\xc8\xd7^\xdb\xd1\xf6\xc6\xfe\x9e\xc3\xef\x0b\xb9\x0b\xfc\x11\x94\xbc54[\x0b\xdbJu\xe6\x85\x02s\xee\xcbv\xd8?0\xdaY\x06OG\xc9g\xb9J8\xe9\xc1\xfe\x0f\x17\xa7\xe3\x06\x90\xa0\x16 je{\xbb\xa52\xf3\xaa\xef\x92\xa0\x16\x82\x8aw\x05B\x93y\xf8d\x12\x9e\x04\xb5\x92Yw\x12\xd4\xb2\x0dA\xb3g\xe3\xd8\xf7#\xd8'\xb0\xebY\xa8\xf5t^\x9d\x04\xb5\xf6\xe1\xd2S\x88t4\x8bN\x82Z$\xa8\x85\x9e%%3\xe4$\xa8\x85\xa2\xc4\xa7\xf0\xe1$\xa8\xe5;,\xca~'P\xdf\x18\xb9\xa8\x14\xd2\x9b\x04\xb5HP\x0b\xc3f\x93\xa0\x96\xb4}\x88k\x12\xd4r\x95\x14\xe5\xa8\xa7\x10\xd4$\xa8e\x1b\x82\x8e&A\xad |s\x9clNe\x9a\x13h\xe6d\x8e9\x8d`&A\xad4.\x99\x04\xb5:#A-m;{/*J\xcd*+\x14\xcd\x1c\x9d5\x08\xe6\xf6\xb8\x1b\x1fnj8\xac\xe7\x93\xe2\xa5\x9f\x0f)u\"\x9a\x9f \x1dE\xd6\xe5\x90\x88\xa8\x13\x0b}z\x144\x84\x7f>-\xf2\xb9\x8by\x96\xd5k\x15\xd6\xb7\xfe\xd6K\xc5\xdd\x14\xab6\xa2\x15\x07N\xca\x1fO\xf6\xc7\x1e\x96\xc8\xc1~\x82\x1fE\xed#I}\x04\x9d\x9fD\xe4?\xcdN\xae{\xdeWSI=\xd0\xd4\xde\x8av\x07\x8c\xc6J\xb5]\x9f\xae.k\xe1\xa6\xa9\xd7OR\xe3\x9e\xf09\xfe\xc4\x1e}\xd5\x1e\xbde4$S\xe8\x99z\xc3\xf8\xb6\xa9d\xecBs\x1b\x9aG\xe8\x88\x1a\x19qX\x8e\x96\xe6;\xcc\x98G(\x99\xf7\xe2\xbbJ\x89>B}s\xd32\x0eu\x03\xc3\xea\x82\x151m\x19\xcf\xec-\xcf\xfa\xb3\xc3\x89\xaa~>?\x8e\xd6~uc\xa4+e\xceH97\x7f\x93c\x92\xd6\xbbT\x8b\xef\xb7\xac2\x8e\xdfV]\xbcc\xf4\xf6>\x97\xa5\xadD\x9f\xef\\\xa8\"\x04\xdbV\xb8\xfa\x13K\xf4\xe7\xb0\xf8\x03;\xd7\xb3\x89\xb3\xe5\xdeU\xb9.\xb1\xde\x95\xc7\x1a\\\xc7\x87\"\xa9X\x98\xdd\x83\xd5'\xa7\xf8uP\xdaF\xad|\xdb\x7f:\xbf\x81\x15\xbb\xe1\x06\xdd\xd2,\x97\x99\xf8\xc80\x9ez@\xd4E\x84\x9f\xaf\x1f\x81\x15\xf3[(6\x9b\xcf\xe8E\x1b\xa8\xea\xcf\x0f\xf9\xd2:CxT\xf6\xd0Z\xca\xa3\x82\xf8\x8f\xb2Z\x94\xf3\x82\xb3.\xa0o2\x12\xc4\x81\x0eQ\xbf\xb2\x9a\xaf\xb6\x8b\xd1\xcaC\xa1\xae\xd2\x11\x15\xa3;&\xf9\x1c+\xd0'\xb7\x93\xb4\xf9\xc4Aa\x1f\xcf\xc7\x13\xdbQ\x13\xe4bM\xc3ZMR\xc9\xc7\xab\x7f\x1e\xc5#w\xac\x9f\xa6rY\xd5\xcd(Lj\x9e\xc6\xe1%\x94g\xf6\xbd\xb1\xd7u\xbdb\x16\xe5\xec\xb8\x81\x0d\xbbc\xcd\xe0\xd4\xd0\xcd\xd3G\x8fo\\i\x01y\x0ds? \x83r\xc45X%\x01\x92\xbaY\xb0f\x1c'\xb9,\xab9{\x0dJ\xf9\xf6U\xbb\xf8\x04\xffp\xfc\x8f\x7f\xcc\xea\x8dT\xb9\xdd\x93\xdf\xba/\xa2r\x11\xda9\xdd\xcc\x05\x8d\xf6\xee\xa6\xa7s%K\xd6\xcb\xd0\x99C\xcf\xdf\x9a\x1b\xfd\xfb\x17\xdf\xf5\x91r\x93h^\x9f\x84n4\xca\x1bEO\xc3\xe2\xb9<\x92\x8e\xf1\x14\x1b\x82s\x84dn\xd4\x0f\xca0Acc\xa9\xe0_\xb00>A*7+\x00\x08q\x08\x10&\x80\x80\xe1\x06\xa4J\xe4\xba\xd6\xf8\x93\x81@\x98\x08\x05\x06\x0bL\x16\xc7\xdd\x13\x0e\x84d@0X\xd4TY\xdc\xac\xa0 $\xc2\x82\x90\n\x0c\x86{\xf6$9\xdc\xac\xe0 \xe0\xe0A\xc8 \x10\xc2\xde\x10!L\x03 !\x17L\x08\x93\x80\xc2\xf0\xe3\x80\x97\xbf=\x00X\x08\x07\x84\x0b\xe10\x80!$B\x860\x0d4\x8c\x0d\xc1\x1c\x05\x1bB^\xe0\x10\x12\xa0CH\x07\x0fa\x02|\x88\x182\xb1B\xb7{C\x88\x10\x03\x11\x01?=C\x00\x89\x908\x8bK\x06\x13\x83\xa5\xa5H\xdbbk\x99\x11R\x84$P\x11r\xc3\x8a0\x11X\x0c\xf7+\xa4\x9c\xedDp\xd1[\x1eGJ\xd9\xe6\x01\x18\x01\xcf\xe1\x01\x06d\x844\x98\x11b\xf4\xd1D\xa8\x11\x10\xe5\x06\x00\x87L\x80#Lr.\x1et\x04D+'\x00\x8f0\x15z\x84\x88\xde[6\xf8\x11\xf0\x00$ !H@\x83\x90\x80\xf3z:\x10 IP$D\xc5i\xb3\xc0\x91\x90\nH\xc2\x9e\x90$ \xdc\x9b\x00K\xc2!\x80I\xc0\xd41\xf0$\xe4\x83'\x01\x03P\xc2\x1e\x10\xa5\xb7@\x8e\x10\xa1\xcd\nSB\x14\xa8\x84\xa9P\xa5\xb74\x8c\xf8,\x02\xae\x84\xa8\xf0lXv6\x1d\xb4\xf4\x16\x15\x95\x9c\x9d\x04azK\x8b\xca\xcd\xe6\x831\x01\x05d\xc2\x04(\x13\xd2\xc0L\x98\x02gB2\xa0 1u\xd5\xb8\x10'\x16\x9c\xc3\xc2\x9a0\x05\xd8\x84Th\x13\xc2\x0d\x9f\x02oz\x0bCI\xcaN\x818\x83\x0f\x04FN6#\xcc 1\xa0\x13&\n\xc9N\x85=!c\xdfM\x80>! \xfc\x04\x8f|lH<6\xba\x1e\x11\x12\x8e\xc5\xc3e\xa1sP\xa2\xb1)\xc0Y\xe8\xac\xa0`,\x12B\x0b\x9d\x10\x10\x8bM\x02\xd3\x86'b\xd6Or\xc9\xc4\xf6jO\xbe\x8e\xf6\xa4\x0co\xe8\xb2OE\xf3\xf6\x16\x91^\xfdL\x84oo\xc9\xf5;$\xf5\xdb[D\x16\xf6\xe9I\xe0\xdep\x92\xb0OK\x07\xf7\xe6\x97\x83\xc5\x8a\xc1\xe2\x06\x8f|B\xb0\xdd\xf0\x11\x94\x81M\x14\x81\xed\xc5^=\xe5E%`\xcdUR\x05`y\x8c\xdc\x88s\x1b\x08\xe9\xd7\xe8[\x18-\xfb\x8a().\xf9\x8a+\x04-\xf7\x1a).*\xf5\x1a\xad\x0eF\x08\x12'\xf2\x9a\xe5R\x08yW\xfe\x0ch\xa2\xa8\xa8k\xd4\x19\x80\x12tE\x14\x83\x1b\xa4\x92\xa5\\\x11\x82\xady\xe5Z\x91b\xadS\xa4Z\x91B\xadQgc:0J\xa25\xcb\x95\xc2\xe2\xac\xd1K\xe0\xfaM6Y\xd6~j<\xfe%^\x91|\x82\xac\xeeZ$\xa8M\xa2\xc4&G\xf2\x92\xa3\xf2>\\\x9c\x92\xb8$\x90\xb8d\xb6\x91=\x9515\x81yo\x81X\xbe4+[J\xe2\x92$.\xd9[Vf4\x85\x17MbEI\\r_.t\x02\x13\x9a\x85\x07MgAI\\r\x1f\xf63\x85\xfb\x9c\xc0|\x92\xb8$\x89K\x92\xb8$\x96\xd9\xcc\xcakNa5I\\\xd2wX\x94\xc9L\xe011\xd2\x89)\x1c&\x89K\x92\xb8$\x86\xa9$qIi\xfbp\x93$.\xe9*)\xcaFN\xe5\"\xbd\xef\x06\x12\x97\xdc5\x12\x97\x9c\xc03\xc6Y\xc6T\x8e1\x81aL\xe6\x17\xd3\xd8E\x12\x97L\xe3\x13I\\\xb23\x12\x97\xd4\xb6#.Y\xda#\xf7\xe0K\xd2:d\x10\x10S\xab\xfdP.`$$i\x8fH\xa5\xdcRp0\x0c\xf6:/\xbc\xd9\xee\xca\xbc\xe0\xd4\x8c\xf6\x93\x7f9\xd1\x01\x7f]\x84K\x07\xe6\xad>\xa2\xd3\x81)\xa4\xa2\x93\xfe\xa3\x8c\xfc\xb5e\xb5\\\xed6{W\x04\xe6\xed\x80S{\xb6\x1a0C\xa7\xd8\xc6?C@\xcb\xba_\x19\x16t\x02\x9b\x18vJ|\x93/\x13\xe6*B\xceSF\x9b\x03#\xd6\xd3\x92\x89\x92h\xe5\xff\x8e6\x07\xc68Q\x8fB\xbd\x07\x0dsc\x9e\x00u\x1d\xf1\xe7\xb9\xd2_3\xa2\x99\x9e\xbdM\xe5\x91\xbc\xbc\xf3L\xed}\x04\x06mE+-$\xab\xd9\x1bmE\x0b\xb8Q\xfcK\xda\x8a\xd6\xccMR\xe0 s\xce\xa8<\x82\x83\xb4\x11\x1cDpPo\x04\x07\x11\x1c\xd4\x1b\xc1A\x9c\xe0 \xb7\x11\x1cd\x8c\xe0 \x82\x83\x08\x0eB\xce\x92\x08\x0e\xea\x8c\xe0 \xdb\x08\x0e\"8\xc8a\x04\x079\x8f!8\x88\xe0 \x8f\x11\x1cDp\x10\xc1A\x04\x07Y\x96\x03\xd4 8H\x1a\xc1A\x04\x07=_8\x8865\x9c\xbac\x1cmjx@\xe7\xc6\xfb(mj\x98\xc3\x8b\xb4\xa9!mj\xf8%nj\xd8Q\xad'\xbfuLc`\xa7C\xcb\x8d\x06\x0d3\xac\xab&[\xcdn\xc4e\xa5\x1e>\xd1\x11\xd5.D\xe6\xb2\xe7o\xfb\xd9\x88>\xfa\xcdb\xd1\xfc\xbd\xa0\xb0>zc\x12P\x16\x05Z\xa3!\x88(\x06\x15AY#\x17\x08!\x9d<\x02\xb1\x92\x08\x9a\xd3\x12\x91U\x04\x98\x9a\x17KEB\xa9\xe9Hj\xdcA\x99q\xd4 \x8c:Y\x86KWr\x02h7*\x8d8;m\xc4\xd9\xe5\x19Y\x88\xb3#\xce\xcem\xc4\xd9I#\xcen\xd7\x88\xb3#\xce\xceg\xc4\xd9\x11g'\x8d8;\xe2\xec\x88\xb3#\xceN\x19qv\xc4\xd9\x11gG\x9c\x9d\xcf\x88\xb3#\xce\x8e8;\xe2\xec,\xcb\xc1<\x11g'\x8d8;\xe2\xec~\x0f\x9c]\x17x\xf6\xd5\xbf;`\xb4\xad\xa4\x8a\x01\xea\xc8\x1ek\xe1\xa6\xa9\xd7\x83v\xb4\x19\x1b\xb2'^!7\xd6\xf3\xf3\x14W\xe2\xe7\x0f\n\x0c2 \x85|G\xc8\xb5\xf3\xe1V\x82w5g~H\xc2*\xe9\x85i\xe53\x05%,\x9f\xd86\xa8\x8br\x80}\xdf\x1b%\xa2\"\xa6J\xe2\xb7\xdd\xb7\xa7\xb7&\x10\x8d\xc2E\xb6\xf0\x8b\xac?!\xb6\xee\x8b\x94\x10\xde\xb2/~2j\xab>o1\x88\x98\xb6\xd5\xbbR\xe2\xdaW\x8e\x80\x07E\xb5\xb5QT\x9b\xa2\xda\xbdQT\x9b\xa2\xda\xbdQT\x9bST\xdbm\x14\xd56FQm\x8ajST\x1b9K\xa2\xa8vg\x14\xd5\xb6\x8d\xa2\xda\x14\xd5v\x18E\xb5\x9d\xc7PT\x9b\xa2\xda\x1e\xa3\xa86E\xb5)\xaaMQm\xcbrD\x18)\xaa-\x8d\xa2\xda\x14\xd5~\xbeQ\xed=\xa3\xc4w57\x81\x14W\x94\xf8g\xf1s\x17\x1f\x96\x07\xab\xd8\xf0\xb2\xbcc\xd5NCw\x83\xc3\xb2\x80\x17\xa6\xbd\xcf4,l9\xc16\xfe\x19\xa2W\xd1\xb4\xfb\xa4\xd5\x9b\xc0\x0e$\xa2\xcd\xd3\xf7\x90R\xcb\xef\x91\x14\xfa\xe7\xb1\x89\x94\xaaj\xe8\x08D{\x8d\xb1j\x1b\xd9\x90J<\x83?\xbf\xbf:\x9b\xbd\xbf\xb8:\x7f\xffn\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go\x93\xce\xfb\xcb\xd9e\xd2\xf1o\xbe\xbf\xbczs\xfe.\xe9\x9cw\xef\x13\x0f\x9f\xfdr~\xf5\xe7\xd9\xcfgW\xe1\x13MP}\x92#0\x8bw\xbd\x89\xf1\xe5\xbd\xda\xab\xe4\xbe\xf7\x8e\xaf\xd1\xff2\xbc\x9a\\\xcb\xbdc\x1c}\xdd{V.o\x9fv\x9f\xb9_\xe4%\xd9\xc2z\x12\xfa6l\xabR\x86le\xf5E\xf7\x17\xff\x11(\xac\xdd\xacJ\xeen\xe0\x9a\xf1bQ\xf0b\xf2;\x03\xdf(s)\xa5\x13\xf2\x08\xd6\xd2|\xf7\x13\xaf\xa1\xe0\xbc\x98\xdf\xaa\xc0a(\x04h\xe3k\xb6a\xaa#\xbcj\xf9Su\x83JL\x80\xd0#\xc4\x1bU\xc8\xbc\xae\xda\xb25\xbbqvl\xdd\xf9\xdb#5\\\x89\xf7\xf1\x91Y\x13\xf1\xdf'_\x1f\x1c4FM\xd4\xcc\xce]\xa2<5\x85S\xe3\xe1N\xc8\x88\xf6\xb8\x93\xb6\x08\xa8,\xf6F{\xdc\x01n\x86\xf9%\xedq'?sR\xf8D\xf5a\xf5\xe1\xe2tT\x1a\xf1\x89\xc4'f{\x8f\x12\x9fH|\xa2\xdb\x88O\x94F|\xe2\xae\x11\x9fH|\xa2\xcf\x88O$>Q\x1a\xf1\x89\xc4'\x12\x9fH|\xa22\xe2\x13\x89O$>\x91\xf8D\x9f\x11\x9fH|\"\xf1\x89\xc4'Z\x96\x83\x15#>Q\x1a\xf1\x89\xc4'>_>\x91v\xb7\x9b\xbau\x18\xednw@\xe7\xc6\xfb(\xedn\x97\xc3\x8b\xb4\xbb\x1d\xedn\xf7E\xeen'A\xab\x93\xdf$\xd6\x15\xd8\xd6N\xa2a6_\xbfp\xec_W\xf7\xa4\xfd\xf9\xdb#\x85\x8a\x857\xae\xfb\xb9\xc7\xc7\x9e5u\xefC2&\xf1aQv>\x1aW\x88RM\x01j>Rx\x90\x98\xe7\x11^\xfe)\xf6\xab\x8bs\xf2Q\xf7)\x8b3\xf2\xd3\x08\xf94>>\x9d\x8eOb\xe3'\x91\xf1{p\xf1\x98\x90\x91\xb1\xccL\xfcd\"\xfeIy\xf8\x03\xd2\xf0O\xc5\xc2\x1f\x8a\x84\x7fr\x0e>N\xc1#\x86\x12l\x8f\xcf\xc8\xbf{\xe9\xf70\xfb\x1em\x0c\xae)Y\xa9w7\xf3\x1e\xaf\xc8\xde\xbc{N\xda\xdd\xd5\xcf\x900n*\x8bK(.\xa1\xb8\xce\xdf3\x8dR\x84\xe2\x12\x8a\xeb6Bq\xa5\x11\x8a\xbbk\x84\xe2\x12\x8a\xeb3Bq \xc5\x95F(.\xa1\xb8\x84\xe2\x12\x8a\xab\x8cP\\Bq \xc5%\x14\xd7g\x84\xe2\x12\x8aK(.\xa1\xb8\x96\xe5\xc0\" \xc5\x95F(.\xa1\xb8\xbf\x07\x14W\x86\xdf|u\x97?\x0ej\xad\xfe\xa2\xb7\xbd\xec\x82g\x9b\xcf\xb0\xe7\xe5\xba\xac\xf8\xc9\xdd\xb7\xd7\x8c\x17\xdf\x9e\x14U\xb5-V39Ui{\xb8\xc6\x85Y\xbd\x91\x87^tG\x9a\xf5)\x10\x05\x8aaT\x95\x05}Y\xeaU\xe7$\xac\xc6\x85\xbd0\xed|\xa6\xa0\x95\xc7O\xb6\x05\x97y\x82\x0b<\xf1\x05\x94\x9d\xcb\x9b\x98l\xf4\x1e8\n\x1b\xdc\x15ea\xd9.\xd9\x83\xc6w\x0c\x15\x1dv\x15t\xb2\xd3\x91hSIm\x14)\x0e-\x93\x1e`\x915i\xac,\xab\x9b\x95\xa5\xf0\xe7\x1a#\xcf\xcd!\x9a\xccu?\xa4]A\x81\x01\xb2+I\xff\xf8lG\xc6\x91Wl\xcb4\"\xf6\xee\xf2\x0cz\x1e\x7f:\x8ar\xc3.\x9d\xaf\xa7\x8fi\xfd\x8d\xffpq:\x9e\xb3\xd1\xd8Fc\xdb3\x1f\xdb\xe4\\=0\xf9\xbb\x90\xbf\x0fF5\x95\x9b!\xd3\x91n\xbaG\xb1\x9f\xf3;G\xb5\x9f\xca\x8a\xab\xa2\xf4\xaf\xcfvX\xb3\x1db\xdb\xf0\x13Eye\xa8\xe3j\x1c`>O\xd6\xf5b\xbb\xca\xab\xe2*\xbc=[\xb0\xaa\xf6@\xe2\xd1\x0e\xa3uE\xb9\x8e\x84\xcd\xebR~\xdb\x8ar\x1d\xc7w\xe3\xeb\xac)8\x9b\xa9\xd0\xf6~W^\x17\x0f\xe5z\xbb6\xf3UU\xa4\xf8\xd4\xee\xc7rq\xad`e\xd6\xc5C\x9eJ\xa4\\\xb3\xf4\xe0\xfd\xe8k\x96\x15\xee\x9a\xcb\xbaX\xcd\xae\xebj\xc1\xa6fb\xe8+\x8a\x82\xc4M\xde\xb0f.\xde\x9a\xaaL(x\xbdv}\x1d\\\xaf\xea\xf9\xa7v\xb6a\xcd\xec\x91\x15\xd3\x125\x10Y ]\xf5\xba\xf7\x9c\xba\xb0\xa8&\x88\x0b\x0f\xceA\xbc\xc4\xd5\xb0\x82z\x83\xebw\xb6\x1e\xd3\x88Z\xa5\xf7\xb5\xeb\xf7\xe7\xf6\xbeV/\x1b\xf4\x1b\xdb\xfa\x8a\xd7\x1d\xdd\xa4\xc8\x15=\xd6\xd2\xbd\xad\x14c\xae^UG:]\xa5\xe4-\xb4\xdb\xebvSH\xd4\xac_\xa8\xfb\xc4\x1e\x9do\xf7\xdf\xd1\x9b\x1d\xf3b\x1f\xbc\xd7\x8d\xf8{\xe7\xb1\xac/t\xe3\xe6I\xa3\xedT9\xf7@\x1f\xf6\x9e9i \xa6A\x18h\x10v\x9f\xfe\xdc\x06\xe1P\xcc\xc2<\xa4\xbe\x1e\xd8\x8d\x95\xf6\xb8\xa1\x86T1\xb9\xee\xf7)\xe8G\xdd\x9b!\xbb;%\xe3z\xd4BS\xd9\x80<\xc8'\xf68\xa8\xa2\xf8\xb7 \xa5t5\xd3\xa1x\xd3\xa6\xac\xb5L|\xd3\x99:\x04^v\xd6Hti\x8e\xee\xdew2=s%\xde)\xcb\xb2\xe5\xaca\x8b\xaeY\xad\x8cV\x8a\x1f?\xb1\xc7q\"\xe7\xb8\xed\x03'\xbet\xa6\xcf\xff\xf3K}\xec\xe0\xbd\xd8UI\xff\xf8l_\x8d#O\xdb\xf69\x06\x88\xf0[\x11\xf1\x88\x8b\x9b\x1a>y\xef\xfd\xd5\xbcW\x8f\x07u\xfa\xbeje\x0b\xf6O`7\x9c(\xacF\xf7S\xfd\xc0\xba\x99R\x19+g\x0fe\xcbe\x9e\x88\xe7\x18\xfb\xa9v\x1f\xe3\xee\xdb\x83C\x11\x13\x81\xae\xdbws\x01{\xd4\x19L\n\xd4\xa3\xd7I\x0c\xed&\xb9\x14\xab\x1d\xa6\x1d\xf98\x07\x1a\x1bi&\xcd8F\xbf\xd2\x8c\xe3\x003\x8e\xd8\xcb\xf0o\xdb\xa2)*^V\xac\x0f\xda\xcfyy\xc7N~\xe3\xf5L\x03\x05\x01u\x94\xf3\xf6\xdf\xba\x12\x160\xbfe\xf3O\xad\xc2S\xa1\x98+ \x9f\xdb\xa2\x85z\xc3MzN\x7fEwd\xca.P\x1f\xf0l\xdfhe;\xeb\x9b\xe3XHSE\x8e5|\x8c\xc5\xc7\xf0a\xf9r\xd5I\x8b\xf5\xa8%rs\x83F>v\x94\xb4\xebue\x88\x81vpG\x9c\x83\xed\x87\x8b\xd3~\xc0\x950\xe2\xa8\x9ca/\x91\x031}z\xd1@\xf8\x94\x03a\xe8\xd3\xab\x7f\x90|}\xd0z\xd4\xf4\xd2\xaf\xf9'\xaf\xd5\xa8\xf7\x84\x88\x95k\xcc\xde\xf2\x1a9b\xbf\xd9\xf2\xda<\xc5\xad8B\xb7g\xcb\xebW\xddC\xdc2\xce\xcbji&9\xf6 \xa4\x87u\xe7g\x8b5\x80\\\x0d\x07(\xb9N\xa3\\p\x0c\xe77P\xc0MS\xaf\xed\x9f;\x9e]\x92\xe0\xa6J/z\x07\xea\xaa\xa9\x05\x9e\x82\x0f\x0b\xd0\xcc\xe6\x0b\xebx\xa5]v\xac3t}\x97;\x92\x13:\x7f\xeb\xbb\x02E\x8d\xd4\xca\xa5\xd5,\x83\x8avW\xd3\x87\x0fi4\xdb\xe3/\x86\xcdyv\xaf4\xe1\x89\x99\xa3v\xc6>\xcbx\xd29|\x8f1!\xf2<7l\xce\xca; \xb9\xa9\x1fvW`\x85\xd9\xdd(We\xc6]S~Cim\xbd`e\xccm\xf2U$>\xc1P\xd6\x8c\xc2Z\xce\xa7\xc1\xac\xac\x8ao\xaa{\xdfn\x99`*\xbc\xbb\x85\xa91\x84w\xc2\xfad\xaf\xe0\xcd\xc7\xab\xf7\xb3\x0fg\x97\x17\xef\xdf]\x9e\xa1\xe4\xb9\xc6\xe7\xbc9==\xbb\xb8B\x1f\xfe\xf6\xec\xf4\xc7\xf3wg^7k\xd1\xb0\x94za\xee\x8d=p\x9cU\xbc\x19.\xac\x89\xbbd}\xe7\xd6RNa\xf7=\xd6\x9b\xe8gPT2\xf3y\xf7\xee\xc4+4\x1c\x1a\x94N\xe4Noa\x15W\xcbb\xe2b\x1aB\x96\x03\xad\xa3\xc0\xd1DPY\xc6\xadnwi \xd7\xc0\xa9,8D\x85\x07(\xda\xf5\x96v\xbd\x1d\xd9s\xd9\xf5v0\xf5\xc0}\xbb\x8d\x8a\x19N\x17\xe9\xd3\x8d>\xdd~\xf7\x9fn\x8e\xaf\x1918.\x19\x97\xca\xbe0\x14\xb4\xdb\xf3c\xae\xaf\xaa=\xcd\xf3Uv<\x15\xb4\xc4\x91\xe4\x94\xd0J\xf2\xe1\xb5\x165w\x8c\xa4{\xc7\xd0\x9cB\xd3\xb4'\x00\xf8\xfb0\xed \x00\xb4'\x00\xed @{\x02(\xa3=\x01\x9e\xe7\x9e\x00\x98\xb5\xd3\x93\xdf\xec\xd70-\xa5>\xd7\xa5T3\xf9\xa6\xb5T\xcb\xa2\x13|ZKu\x96Ck\xa9\xf15K\xf79\xb4\x96\xbasD\xbcB\xb4\x96Jk\xa9\xb4\x96Jk\xa9\xb4\x96Jk\xa9\xb4\x96\xfa\xdc\xd7R\xb3\xd4\x99VR\xd3\x96\xa9h%\xf5\x80\xce\x8d\xaf\x01\xd2Jj\x0e/\xd2J*\xad\xa4~1+\xa97\xdbj\xd1\xfa\x97K-_Y8\xf8\x0f\xe2$\xb5xj\xef\xabZ\\\xd7[\x0e\xb2D\xd5\xd5\xe5\x8e\x1f\xd7\x8c\xf5w\xcb\x9a{\xc4\x96P\xcfo\xe0\xba\xe6\xb7P\xd8S\x98\xa2Z\x0c' \xe2\xdeX\x8b\x99\xd5#\xb4\xdb\xf9\xad}\x9d\xae@U\xb1\xf1\x9a%4lY4\x0b\xf9R\xa8o\xfa[v\x7f\xcb\xf4v\x13\xec\xf1\xa5n\x06,\xd8|U\x9aeU\xf9\x8c\x14\xa3 V_\x17\xbb\x7fl+\xb3\xed\x90\x96\xdf6\x05\x99J\x15\xa5\\c\x12N\xb4\x17q\xcd\xa2\xaf\\L\x08\xac\xbb\xcaU^V\xca\n\x0fjTYK\xb8\xe15\xe0\xaa\xae^\x99Z\xbdp\xdd/]U\xb9$^=\x82\xbf.Wr\x80\x93\x1f\x7fP\xf6S\xbd\xb2R\xdbO\x94\x9d\xe7|\x15r.#\x8f\xbb\xdf\x8b\xa1\x8f\x9e\xddB\xf2\xdfF\xf5}&\xdf7\xd9\x97\x92\x03\xeb\xaa\xbb\x9f\x1e\xe2\x9bRj\xcd4l^nJk\xeb\xb2y\xad\xe4\xa4\x03\xfb\xa4u\xa3\x89k\x14\x19Z\xff\xbc\xcd\xecN\xe6\xf3J\xf8^(\xdb/\xf7\x13\x12\xdc\xe6\xad|\xb7\xe4\xa8>\x85\xecA\xb6\xaa\xfd~\x93.\xdb\x14\x0d\xd7\xa2\xe3\xaatxd\xdcZ\xd3\x96\xfew;S\xfet`\xc7y;\xb4\xb2X\xb7V\x16\xd0\xbf2\x86\xb8M\xc2\x8a\xb5\x98\x0ee(\n{\xcf\x01N\xeb\xd2\xdec\x95\xd7\x9fX\xa5\xf7\xb2Q\x0d3S9\x99\xd0\xea\xdf\xf4\xc9T>\xb4\xa1\x12\xc0\xbb\xf7Wg\xaf\xe5H\xad\x8e\xd6*\xef\xea\x93\xfb\xbc\xe2Z\xff\xba\xdb\xfc\xa8\xdd\x99\xee\x0cM\xcbc+\x89\x8e\xd0\x85\xdbrY\x15|\xdb\xb0>\"*\xa6\xfd\xcbzYK\xf5i_\xd8\x04\xebH5\x8e\x98@\x8ej[\xbfmVY\x0d\xdfhZxd\x8f\x80\x8eye\x86\x9f\x0f_:\xa12l\xdb\xbaI\xc30\xa9PL\x10\xd4,\x82\xc9\xc9\x10\xbb+\xebm\x1b\xd8\x98\xaf\x9b\xc58\x8e\xc0\xd4eg&h\xbam\xcb\x9b\xed\\\xdc\xdc\x91F{\xabn\x8b\xb3\xb0\xe1D1<\xb4\x0f*7~\xc1\xca\x8f\x91\xea\xa6\xd6\xd3P\xd5\x11\xda\x92kAPo:%\x85\\v\x8dB.\xfdOXgR\xc8E~n\x8e\x07\x87IQ\x97\x9d\x11\x86\x02/\x14x\xf9\x9d\x05^F\x8f\xc7\xb4\x8f!\xc7\x12\n\xb8\x97Q`\xe2\n\xd2\x1e\xd1\x9aQ\x0b}\x1cO\xbf\xaf\xa4\xfa\xc8\x80\xf3\x1b{\xed\xc1\xedJ\xbdSu\xb1j\xf5\xe6\xad\xc3\xa5\x01\xc8\xdbZ\x8a\xf3`\xbcEq\x1ee\x07vn\x14\xf4y\x9eA\x9fg\x9f>@Q\x9f\x89\x1f:\xde\xe2\x90K\x83@Q\x9f\xa1Q\xd4\xa77\xc4m\x02\x8a\xfaP\xd4\xa77\x8a\xfa\xec\x18E}(\xea\x03\x14\xf5\xd1FQ\x1fc\x14\xf5\x19\x1aE}z\x8b\xcd\xe0(\xea\x93)\xea\x93%\xdb\x85b>\xd2(\xe6C1\x1f\x8a\xf9\xf4F1\x1f\x8a\xf9\xf4F1\x9f\xdfq\xcc\x07-\x93D! \n\x01=\xcf\x10\x90y\xaa(\x044\xb0\xe8\x97\x16\x85\x80\x9c\x96)\x92\x91\xc5m\x14\x02\xda\xb1X\xb7VF! i\x14\x02\xa2\x10\x10\x85\x80(\x04\x14\x8fZP\x08\xc8\x1cL! \n\x01i\x9b0\xd7\xa7\x10Pt\x1e\x17\x9b\xc1Q\x08\x88B@vq\xa8\x10P\x96\xb6R\x00(mu\x9d\x02@\x07tn\x03@\xed\xaaho\xcbj\xd9\x85\x7f\xe4,F\x9f\xe2\x8a\xf1\\\xc8\xdfe\xad\xca\xee\x83\xd6\xfe\x8a5%\xc2\xba^lW\xa6~\x83\xd5\xf9K}\x88*\xeb\x85i\xd73]\x9a\xb7=b\xdb\x1e\x1f\xe4m\xb9\xac\xd8bv\xbd\xaa\xe7\x9f\xda\xd9}Y-\xea\xfb=\xbf'}\x9f\x93\xeb\xb2\x9a\xe9\xcbmX\x93\xe7Z\x9e\x85\x80E}_\xf1r\xcdf\x7f-\xca\xd5l\xb1m<\x8b$\x10\xbf\x96\xecD\xb3\x9b\xa6\x98\x8b\"f\x8bz{\xbdb\xb2\x1d\x93\x8a\x8bV}\xe7z\xaa%\x87\xb8X|\xc9L?b\xd6z\xd8\xe8)\x93\xf3\x1b1\x9c_\xab%\x10\xf3\xc8\xb9n\xbf|\x08\x87\x8b\x18\xbe\xf5\x0596\xa8\x8bw\x9f\xe1\xddF\x1f\xfa\xdf\xa2\xed\xddB\xa8<\xe1DW\xf7\xc3\xc5\xe9\xa8<\xbd\xbck\xfeI_\xe1;\xfe\xa1\xaf\xf0\xec_\xe1\xc9/<1\xa8\x94\xd5rVV7u\xe0\xbdw\xa9\x0e;\x17Guo?}\xaeV@\xbf\x91\xa1q\x19\xb7.x\xdd\x98\x17\xdb\xf0\xd5g\x15\xa3\x7f\x7f\xb6/>\xd1\xaa\xe7\xd1\xd1\xf6\x0dB\xb7\xbch\xf8\xec\x96\x95\xcb[o\x98.ZH\xfc]\x0b\x81\xc1\xb5\xb7?\xcbj@a\xa2f]\x87\x91\xab\xac7e\xd3r1\xb5/\xaa\x85\xf83\x83\xf7\x1f\xc4\x0f\xde\xe2\xb6\x95x\xdd:\xb7\x8a\x11\xb7p\xc1\x1efj\x9a~\xe0\x86\xc7\xdfk\xca\xceE\x95L\xc0\xb0\x15_6\x8d\x8c\x19\x8a1_|\xe9\x89\xf7\xae|\xbb\x0c\xfd2^\xf3\xed\xed\xba\xae\x16,\x10E,+(@N\xb5d0t]<\xaae25+\x82\x026\x0d\x9b\xd7k\xf1\xed[7P\xd5\xfc\x18\xaenK\xbf\xc3\xcb\n\xe6u\xf5\xd7m%\xe7\n*\xe8*f\xfe\xde\x13~\xbd\x94W\xfa^\xce\xf6~\x91\x13\xb0_\xd5\xeb\\\x0c\xe7\xacYw\x0b\xdd\xf2v\xb9\xbe$\x06\xc5\xfdT\xb6\xad)\xee\xfb\x92\xbf\x11\x8f\xe2\xaf\xeex\xa3\xea\x1a\xb3m\xc5\xcb\xe9\xa3t\x7f\xffE\x7f|%n\xd0\x9e}\xe0\xaa\\\xb3\x96\x17\xeb\x0d\xc8\x9a\xe9\xde0\xbc\xe9e\xabk\x0f\x0b\xb9\"\xe0-lU\xde\xb1\x8a\xb5m7\xfft\xbb\x82\xd7\xeb\xeb\x96\xd7O\x14|\xfdE\x03a\xaaG\xa9\x85\x0d\xdd\xb0\xdb\xa2U\xc1\xcb\xbeF\xf0\xf5\xa7r\xe5{\x86\x85\xd5[\xf9\x99\xdf\x17\xd22\xfe\x8d\xf9\xden\x19\xf7w\xbe\xba\x9a\x8f\x1f'\xd5\xd9e\xec^|K\xde\xd5s\xb5\"P7\x86\xd7\xf2\x97&\x1b5\xaf\xab\x9br\xb9m\xd8\x02\xd6e{\xcdn\xcb\xe2\xaev\xec\x8e\x05\xf2\xfbCtV\xf3\xa9#\xd7\x14\x98c\xda\xa5,\xa1+\xe6\x18\x8a\xde\x80\xae\x0f|b\x1b\xb5\x00uW\x97\x0b\xd8V\x15\x13\xef\xd7\xa2yT/:hX\xb1\x18\xaf\x8f\xd8\xf6\xae6k9\xbf^n\xd7_\xbb\x9e\xd0o~\x85bu_<\xb6\xc2\xe9\xc5\xca?\xbe\x0c\x9e\xefSUA\xe7\xe3\x8di\xe6\xcf\xe6\xae[\x13\x0f\x8b\x1b\xe9:\xc5\xcb\xd1d\xc6\xde\xc5\xd1\xb6u]\x95\xbcn\xf4*t\xd9\xb8]\xd2=\x92\xe2{\xea\xae\xe4;\xfb\x95u\xefIy1\xb3\xfe\x8f\x99M\x19\x0bE\xe1\xf7\xf82\xa7P9\x85\xcaG\xf6$\xa1r@=\xcfv\xb0H\xb5J\xdd\xafk\xb6X\xa8%\xc8\xe5 V\xae\xbf0[\xb8\x17\xf7\xccu{\xdc\xf3\x96y\xdd\xa82\xe4\xda\xa5\xc1sui\xf2\x05&\x97 l\xcf8\xdda\xce\xb8\xac\xd7}\xbd\x7f\xf3\x8e|\xf2ch\xc3\n1\x17\xfc\xbeh\xba\x9b\xf4\x1d|\xfb\xbfC'\x0d\xdc\"\xfb\xf7w\xf0\x07\xe7\x19\xff=\xf8cp!\xc4\xfeRC-\x87\xb8\n9\x19|6~\xb88\x1d\xbb\x89\xd6Hh\x8d\xe4\xc9\xd7HB\xa4\x02\xc5\xb7\xd3\x82\x87\x14\xdf>\xa0s\xe3\x91Y\x8ao\xe7\xf0\"\xc5\xb7)\xbe\xfd\x85\xc4\xb7\x07\xcb\xfd'\xbf\xcd\xeb\xaaEd6\xda_\xcfv\xe8{\xfc\xc9\xba\x14\x1f\xbe \n\x1dm*\xee\x0b\x02\xbc0\x8d~\xa61\x80\xbbb5\xb3]\x96\xf5c;\xb8\xac\x1f\x99\xda\xc4\x97\xf4\xa3s\xa3\xf8RR\xec\xf32\xebR~`!?\xbe\x8c\x9f\xa1\xb1\xf1\xcfO\xc8\xbf|\x1f^\xbc\x9f\xb8t?\x1e\xfb{KY\xb8\xcf\xbal\x8f_\xb4\x8f/\xd9\xa3\xefux\xb9\x1ew\xbf3.\xd5\xa3\x16\xeac\xcb\xf4\xf1Ez\\\xbb\xa6-\xd0C\xbd\xf5\xa5\x1dNY\x9e\xcf\xb98\x9f\xba4\x9f\xb00\x8f\xeep\xfb\x0e.\xb9\x16\xe4\xf3-\xc7#\x17\xe3\xe3\xcd\xcb\xbb\x10\x8fY\x86\xc7/\xc2;+<~\xf3\xfbV\xe9\xf5\xea [\x883\xe4\xd4\xc7Q\x98\x8b\xd9\xc7\xae\xbeeY|\xa3\xb57Z{s\xfe\xfe\x9c\xd6\xde\xec\x8f\x11_/\xb4\x8f1O\x84\xf9'\xafu\xb0g\xf4\x8cZe\xed\x99\x07\x13\xfd\xdc\xe2\xc5'\xfbkk\xc1Vl)_`\xed\xc9o\xfa\x1fu#\xeb\x8f\xd3\x91yk\xcey\xdb\x97\xd4}\x81\x15ru\xa5\xff{}\x03\x85\xfe\x04\xeb\xae\xd5\x95\xa4\x9dd\x9e\xd4\xc1\x07\x99\xeb*\xfa\xb8g\xfbe\xd67|\xe6\xa8\xa3\xb1\xcf\xf1\xd8\xf55\x0b?:A\x15\x87\xd8E\xa0\xbf\x90\xeeP\x01@\x0cp\x8f+\xa0\xde\xe4\xf6\xb1\xa3\xeb\x9b\x07\xf2\x9a\xcdo\xff\xf8\x87W\xac\x12C\xf2\xa2{>k_\x88Q\x998\xb3+\xd2MS\x80\x1a\x94\xd4T\xe13\xb5z\xe7\xfa\xfb\xb7\xba+\xd2\xdf\xea\xf6\xb6h\xc2z\x1eS\x9a\xaaJ\xd5\xf30\xfb\x06\x88)\xb7\xfe\xb1asV\xde\xf9\xb4c\xf0\xbe\xeb\xc7\x961\xda->\x82\xf5\xe7h\xfd\x89U-\xdc\xb2\x95\xd4\xb9\x08\x08w\x14s9U\xd6\x1f\x19\x01\xfe\xe7\xbeR\x9a\x19ue\xf5\xae#\xf9=]\xb6P\xb4m=/e\xc4\xb5\xfb\x1e\xf6\x15uWKq\x84M}\xaf\x16`\xeb*\x00\xbdEn\xe9u\xb1*\xaay\xe4\xdd\x9aa\x80\x88H\xbc\xa0\xfaL\\\xde\x05Q\x0c\xb6\x97$\n\xbb \xe4[\xf2\x8a\xb7 \xa5[\xa6\x08\xb7`\\\xd4?D\xf6g\x81\xfcR.V2\xb6U\xdb\x0f\x1a{\x90\xe2E^\xa1\xa8\x92\x8b \x15/\xca\xaa\xb5\xb5\xd4l\xd3=U\xaeE-\x16\xa5,\x96\xd7fp\xe8\x16\xc2$\x08\xd3nKnb\x11\xce\xc2\xe6+\x19\x80\xeb^\xd8S\xbe$]/\xfe\xbe\xc7\xacV\xa3a\xac}\xd9\x03U\xfe\xd2v\x9f\xd3\x8c2'}\x10\x8d\xb4M\x08\xd8\xfa\xfb\x00\xb6\xc2\xfdB~\x17\xb9\xbe*\xecQ\x0b\xbf\x90\xe1\xfc\n\xfapq\xaa\x87\xe1\xfe>\xd2\x1a\xc6\xe8WZ\xc3\xc0\xbcR\x94\xbd\x81\x8f\x1f~C\xfe+\x7f\xcd\x8e\x97\xc7G\xc2\xb52\xd8\xff\xd5\xf1Wb\xfc\x92q\x13\xad=\xf9Mh\x06z^\xc1F\xa6\xd6\xce\xd9\x11pV\xac[\xd8\xb6\xdbB\xb8C\x05\xf06\xe5J\n\xdc\xd4\xeas\xa8\xac\x8a\xc6\x9f\x83 \xa78\x8f\x1b\xd6vp\xc9\xa3\xff\xd2j\xac\x13\xf3<^\xc3\xb6ef.\":\x92x\xb9\xd67\xf0\xa6z<\x86?\xd7\xf7\xec\x8e5G\xde\x99\x9b\xb0\x8f\x1f~43>QT0\xe9G\x8e\xa0\x0c~\xbd\xe5|\xf3\xeb\x91\xfa\xff\xf6\xd7#\x15o\xd2\xbf\x1e\xc9\xde8/*\xa8\xe5\xd3)<\xe2/\x90q\xd8n\xc4'\xc1\xe3&t]\xd6\xdcI!\xe2\x82\xc3\xba\xd8\xb4\xaak\xc9\x9a\xf3\xba\x03r\xe5\xbb\xadT\xef\x91@n\xd9M\xbdZ\xd5\xf7\xed\xeb\xc0\xbd\xfd\x9fRM\xd8\xb4\x08\x06J\xc1\xba\xd1\xfa;s\xbb\x16\xdf\xd0\x81\x82\xdeT\xf0\xe7\xab\xab\x0b\xf8\xd3\xd9\x15\xd4\x95y\x04\xd53\xf6(\xbfY\xfcI`\xff>~,\xae\x1e7\xec?\xfe\xfd?\xbc'\x80y\xd5W\xba\xbf\xe9\xd7\x88\xbcC\x9b\xa6^l\xe7L\x06\xe1\xc4+\xcc\xbf,\xf1?\xe1\xcdf\xb3*\xe7\xfa\x9d,&Y\x85\xf0\x99\x9a\xf2\xcd\x8b\xb9\x18[\xea\xfa\xd3v\xd3\xcd`\xae\x8b6\x94\xe9\x13N\xfe\x92\x9dP\xd6Q\x06\xc2\xf9-[[\xcf\xd0B=D\x85iR\x17@\x0b\xe5\xf4\x80\xae\xa0\x1c>\x1avS7\xec\xc8\x14 \xca-xy]\xaeJ\xfe\x08\x15c\x0bC\xc8\xc9!\xaf\xb9\x0b\xb4D\xb6e~[TK&O\x92\xcf\xec1|\xfd\xb1ep\xc7\x9a\xb6\x94\x81U\xd9=\xc5\x98\xa5\xfagQ\x15\xcbP\xeb\xaf\x1b&W\x98M\xc1\xc7\xdf\x04>|k\xce^\x03\x17\xef\x90\x1b\x1d\xf4/d;\xf4\xd8\xd5\x0b}Z\x93J\xffp)\xfac-g\xe0\xfe\xb9\xa4~\x97]o\xc5\x84U\xbc\x89\x98^i\xe1\xe6\xa2]\xee~\xf7\\z\x8b\x92\x84\xac\\\xc7\x17\xdf\xff\x81\x97\xcb\xe3\x86\x1d\xab\xfe_l\xca\xf6x^\xafC\xa3\xf1\xa5|R[\x1d0\x96,\xe8h\x94\x82\xafu\x82\xbf\xfa\xb0P\x8f\xf67\xfe\x97\xa0\x84`\xae\x03\x83\x92\x02VKn\xad2\xe8%\xb6\x0d\x9b\x977\xe5\x1cZ\xb6.*^\xce=\xba\xa9\x07\x08\xc4\x8c\x0d;K\xfaI\x0cG\xd7\xcc\xc4l\xad \xce\xce\xea\x16\xba\xafw\xf6P\x88\xce\x0f\xdf\xbe\x86\x8bB\x13M\xba)E\xe7\xf4\xb2\x82\xd3\xff\xf5\xbf\x02\xaf\xc9\x1f\xea\x1an\xea\x1a\xbe\x83\xe3\xe3c\x7fV\x8c\xa8LQ=\xfa\x0f(\xaa\xc7cQ\x8d\x1f\x9az\xfd\xf5M]\x7f\xe3?\xf4\xf8\xd8\xff\xfe+o\xe0kQ\xd4G\xd9\x90\xab\xfa\xeb\xff!\xca\xfa&\x98\xe4\x13*\xef\xbf\xc3\xbe\xfbC\xc4w\xffR\xdc\x15\xd9\x9c\x07\xdf\xc9\xb9\xa1\xb8J\x06\x0f\x95\xed\xd7?\xd4\xf5\xf1|U\xb4m\xc4A\xaa\x8a\xe2$\xd5F\xebD\x7f\x1d<\x9e\xeb\\\xf7\xc7\x88\xeb.\x1e\xf9m]\x05\x9c\xa7j\xf5C]\x7f}||\xec\x7f\x1bt\x8e\xfb:x\x8c\xec|\xd2\xadS\xbd*\n9WN}{vy\xfa\xe1\xfc\xe2\xea\xfd\x87oB\xcb\xf4}G\x0d_X]:\xec\xce\x7f\x8c\xb8\xf3O\xb5\xdf\x93\xd2\x95\xaf\xbf\x83\xff\xb1\xb9>\xfe\xa1\xae\x7f;>>\xfeo\xff\xc1E\xf5x$\xa6\xa1\xe2\x8c\x8d\x9aD\xfdT4\xedm\xb1\x12N\x0e7$\xe4\xc2q-\x02U(oF\x15\xf8X\xad\xfb*\xc8\n\xca\x07D\x1e\xf5\x7f}\x07U\xb9\n\xa7\xf9\x05\xeb\xe5\xe9\xc9WrQy\xfe\xa9\x1b\x8b\xcd\x87\x06\\?\xf6\xd3.\xf3\xf6Pk\xa3\xeeY\xaf\xc9\xc8\xd8\xb6\x9e9\xcbK\xc7\x94\xeaD|\xbf\x1f\xcb\x1f\xc4t\xf5%\x14\xd6\xdbN\xbc EO\xf0\xbd\x1bT\x0fq_\xac{\xb5T\xabG\xf3]\xb9\xb3X\xd0M\x93\xa1\xb8\xe1\xcc\xb5R\xa8L\xaec\xbcR\xd3qWq\x85g\xf5\xc6\x9aR\xa8\xe0\xdb\xaf\xff\x9fp\xdd\xafz1\xa1\x9b\xb6\xd97\xc7\xfd\x80\xe8\xe1\xe7u\xe0\x03\xa4\x98\x7f\x12cP\xffA|S\xae\x98\xff\xbda\xc6\xac\x0b\xd6\xb4u\x15|l\xf5J\x9c\xe4\xdag\xf2\x0eG2s\xf5 \xa2S\x9a\xe3\xddy\xb9\xd2|o0\x80`\xad\xbe\x92\xbe\xfc\xea5|\xe5zj\x87n8V\xad\xfc\xea(T\x9el\xdf\xbbb-\xca\xfc\x7fU\x13\xfeO\xf0\x04\xd1\xbe\xd1\xf1\xa9\x8d<\xbf\xd1\x1f\\\xc3\xbe\xa6zC\xd9\xc2=[\xad^}\xaa\xea{\x15\xf8\xbd-Z(t,6\xf1\xe1\x1av\xf9\xa3\xd1\xde\x0b\xea9\xe8\x03K\xba:\xa2\x03{>\xae\n\xd5\xa5\xdd\x17\xfbU>\x8c\xa6\x9f\xdf\xd6\xab\x85\xea\xe4:\x8a,\x1f\xe5Q`\xd57\xb2\xe9G\xc6}\x1dY\x85\xe3\xee\xe5\xfc\xb5\x18\xd7\x8c\x0bw\x96\x86\xcc\x8a\xe9\x7f\xfc\xfb\x7f|\x13x\x90r\xf4\xb9\xe1\x05\xc3\xddN\xbaJ\x14\xf9\xed\xf1\x1f\xbe\xfdC\xfbU\xa0\x0b\xa9\xff\x0f\xa1\x84C4\xc9*j\xf019\xa3\x80{n\x95a\x9e^e\xf3\x86\xa9a,\xacE\xdc\x1b\xf2F*\x8b\xa7\xe1\xda\x96r\xf3\x95\x8dj\x0f\x83\x0fF\xfd\xb7.?\x1cQ\x9e\xddW\x80\xd7\xf5'\xd8\xac\x8a\xb9G\xbf\xb5\xb7y->\xf2eE\xfc\"\xfd\xb6MrbL\xeb\xb6\xb7 \x8e\x1c\xb6`\xe0\xc7mU>(\x15\x85\x10\x8a\xd4\xdb\xc0\x89}\xc11'J\xfc\xa7X\xcd\"\x89\x18\xbd%91\xdd%\xa3\xfa\x0c\\\xa2\x7f3(>\xa249'\x1exF\xea\x85\xf8\x93x\x8c)\xac_\x0cq\x9f\xdd#}U`\xb8Am\xe4\xc5\xaa\xcc\x1a^_Y\xba\x04*kA>\xc82p\x82(\xc9vc\xd8}im\xb4\xe7\xa0g\x15o\x1e\xad\xb4\x97\xc1\xadC\x8c\xc0\xa08\x85\x86\xad\xd8]QqX3^,\n^\x84\xea;\xa8\xad~\xaft{f\x0f*\xa0\x7f\xf4\x15\x86m\xf6\x87\xe1\x93j\xad\xf9\xaf\xcaVm\xb7-7\xde.\xe72`\xe1+\xa6\x9b4\xbd\xb4\xa7\xfe\xd5R\xa6\x91\x052\xc1n\x9az=\xb8\x82\x99\x87\xf4\xddC\xae\x13\xa0\xaa\xd0\xbf\xbb#\x89^\x91\x17v\xfce\xfdt\x1b\x82\x0f\xbe3D\xbd=I%\xc6P\x97\x06\xf4\xe5\x81\xe6\x07#\xa3\xf9\x01\xcd\x0f\x8c\xd1\xfc`l4?8\xec\xfc\x00\xd5\xf3Q\xf7\x18\xdf\xee\x9d6\xfb\xb3\\\xfd,\xbc\xcbuV\",\x94\x81D\x15\xb0\x18\xd2\x94\xd4\xd7@\x81vR\xacN\x80\x0d]?\x90\x1b\x8b\xf3\xa4\xdd\xf8\x80\xfb\x86\xd31\xe5\x1fgy\xdag\xad\x99\xca\xb8+\xdfe&\xed\xed5\xb4\xbf\xbc\x9e\xa2\xd4]i\xe1\x14Mc\x94\xba\x0b_r\xea\xeeNsd\x18g\x10\x1f\x99\x96\xb3;\x8c\xd5x\xe5\xc7\xfa\x1bI\xb9\xbb;\x0e\xa2\xdc]\xcc\x0b\x0f(w\x97rw\xbdGR\xee\xae4\xca\xdd\xdd5\xca\xdd\xa5\xdc]\x9fQ\xee.\xe5\xeeJ\xa3\xdc]\xca\xdd\xa5\xdc]\xca\xddUF\xb9\xbb\x94\xbbK\xb9\xbb\x94\xbb\xeb3\xca\xdd\xa5\xdc]\xca\xddu? \x94\xbb\xbbc\xd8\x1bn\x0c\xe0\xab\xf7\xee\x91\x83\xba\xf7,\x8aU\xf7\x0e\xf7`\x92b\x1c\xb7 5\x8f\xcb\xd3\x86E\xcb\x91m\xd8=2\xa9\x0dC\xf9\xf3\x8c-\xa0\x0cj\x8c\xb7(\x83Z\xd9\x81\x9d\x1b\xcf\xfd\xa5\x0c\xea\x1c^\xa4\x0cj\xca\xa0\xa6\x0c\xeamu]\xcb\xd6\xcc,\xecF\x15\x8e\xddb\xec\xa3)\xc2\xb7\xd7Xw\x8d\x9d]\xc7\xba\xc2d\xeau\xef\xc8\x9d\x99\x98\xe9N\xee\xed\xc7\\5\xd0'<\xdb\xec\xec\xde\xf1\xcf,5{\xd8C\x02 \xb3\x88\x18\x14&\x8c\x03\xaekFs\xa4\x83\x11\xe3\xae8od\x0d\xb7\x13X\xc6\x16\xa6\xef\xfe\x15l\xe1\xdfO\xf6PR\xea\x0e\xe2\x86(\xc3\xa7\xec`o\xa0\xb2q\xaaN\xe9N\xd2\xe9\x9f\xeeHy\xb8\xec\x9c\xa4\xcc\x9cd\x1f\xe12r\x12\xfd4\xca\xc4)\x1dI8h'\xe1\xb2o\x922o\xd0NJkv(\xdbF\xefQ\xa7\x0f PO\xca\xc4kf\xb1])\xa8F\xef\xa5\x07\xe2s\x08\xe5\x8c\xcf\xe9\x84@\xe3\x07M\xc9p\xd7\xf1\x15sL\x11F\xc91\x955O\x89\xa6\xc6\xa4\xa5\xc5\x0c\xaa9N\x99u\xcd\x8eB\xa9\xb3\x986;Z\x0b-\xaf\x1b=!\x93)\xb3\xe2Sx\xc5\xec\xb4XgQ}\xf5\x02y\xb2r\x8buS\xa2\xb5\xc1}%\xdc*\x9e\xf7Wr\xae\xcc\x162e\x97\xf2.\x9c\x07P\xdeE\xff\x13\xd6\x99\x94w!?\xfe\xc6\xcf;~\xef\xb4Qi\x0e\xbeW\xa5e\x04\xaf@{\xaa\x19\xa3\xbc\x8c<\x9fK\x94\x97Ay\x19n\xa3\xbc\x0ci\x94\x97\xb1k\x94\x97Ay\x19>\xa3\xbc\x0c\xca\xcb\x90Fy\x19\x94\x97Ay\x19\x94\x97\xa1\x8c\xf22(/\x83\xf22(/\xc3g\x94\x97Ay\x19\x94\x97Ay\x19\x96\xe5`\xe4)/C\x1a\xe5eP^\xc6\xf3\xcc\xcb\xa0\x8c\x804\xdc\x9a2\x02\x0e\xe8\xdc8\xcbN\x19\x019\xbcH\x19\x01\x94\x11@\x19\x01\x1d\xbe\x15H\x03\xf8/G\x1a\xc0\xcf\xddy\x03\xf8\xbf/\x0e\xca\xea\xa6\x96\xfdSm\xb4\xd6]\xb8++\x04\xfb_\xaa&8.\xa7\x8f~\xb6\xa4\xff\xd8\xa1\xb6\xf1\xcf\x80q\x98]\xa3\x9e\x90~\x1f_r0\xbd\x1b\"\xef\xbd\xbb<@\xa2]\xde\xff\x96\xf8<\x18x\xbe\xac\xe44\xde\xfd\xb9:\x17\xb7\xb7j\xb7\xedl\xb3\xbd\xf6b|Q\xef\x02\xc2\xc3\x80\x80e\x00\xe7aH\xf02L\x00g\x82\x85\xb9\xa3'\x81\xc5\xc4\xdc\x00\x0d\xc4!\x1a\x98\x00\xd2\x84\x1bP\xf0[4L\x03\xb9\x80\x1a\x98\x08\xd5\x04\x0b\x94\xba\xeaX\xb0\x06\xf6\x87k \x19\xb0 \x16\xa5\x03\xffI\x90\x0d\xe4\x06m \x11\xb6\x81T\xe0&\xdc\xb3;\x18\x07\x0b\xdd@n\xf0\x06p\xf0\x0d\xe4\x04p`o\x08\x07\xa6\x818\x90\x0b\xc6\x81I@N\xf8q(\xc4\x07o\x14\xca\x81\xc3\x809p@8\x07\x0e\x03\xe8@\"\xa4\x03\xd3@\x9d\xd8\x10\x8c\x83u /\xb0\x03 \xd0\x0e\xa4\x83;0\x01\xdeA\x0c\x99\xdf \x00\x1e\xc8\x01\xf1@\x0c\xe4\x01\xfc\xf4\x0c\x01\xf4@\xe2,.\x19\xec \x96&\xa1\x1f\x04\xdc\x03 \xb5\xcc\x08\xf9@\x12\xe8\x03\xb9a\x1f\x98\x08\xfc\x84\xfbU\x1b\x87~`:\xf8\xe3-O\\1\x06\xff@6\x00\x08\xf0\x1c\x0b`@ H\x83\x81 \x16\xbd\x9f\x08\x05\x01\xa2\xdc@\x800\x13 \x04\x93\x9c\x8b\x07\x85\x00\xd1\xca \xc0\x10L\x85\x86 \xec\xd5|\xf0\x10\xe0\x01\"@BD\x80\x06\x89\x00\xe7\xf5t\xa0\x08\x92\xa0\"\x08\x82E\x90\x0b.\x82T\xc0\x08\xf6\x84\x8c\x00\xe1\xde\x04\xd8\x08\x0e\x01\x1c\x01\xa6\x8e\x81'!\x1f|\x04\x18\x00 \xf6\x80\x90\xbc\x05r\x99\xf8\xec\x07\x91 7\x8c\x04Q \xa6BI\xde\xd2\xd47j\xf8s\x1d\x01'A\x90\xa1\x80 \xa4\x04\x93@%oQA\x80 \xa6BL\xde\xd2\xd4<0\xb0j\x96\x0ff\x02\x14\xd0\x04\x13\xa0&H\x03\x9b`\n\xdc\x04\xc9\x80\x13D\xde\xb6\x11\xe8\x04\x12\xc0\x13,\xec\x04S\x80'H\x85\x9e \xdc\xf0)\xf0\x93\xb70\x0b-\xc2>28\x08*\xf8@T\xcb0\x08\x05ya(\x88\x01Q\x10\x86\xa2\xbc\xe7L\x85\xa5 c\xdfM\x80\xa6 \x9c\x02\x0b\x9e\x1a\xda_\x8br\xc5\x16\xe1\xe8\xd48\x16>4\xec7\xbc\xba\x12\x18\xf5\x81\xfb[\xa6Wrl\x0d\x0f\xd1\xc3\xaf\x19\xab\xf4\xd1\xfe;\xdc\xd4k)\x11\xc2\x16\xd0\xf2\x82o[\xb5\xdc\xbd\xa3\xf6\xa1L\x1d\xe2k%\xb6\x05\xfaB\xe5X?V\xfd\xdd{\xda\xd7\xaa\x9e\xbd\xf8\x9d\xfe/\x19\xdep\x9f\x82X\x0bb\xd5v\xed\x9f\xa1\xbf\x82\xef\xdf\xbf{;\xbb\xbczs\xf5\xf1r\xf6\xf1\xdd\xe5\xc5\xd9\xe9\xf9\x0f\xe7go\xd1g\x88\x7f%\x1e~\xfe\xeeO\xc8\xe3\x83\x85\x1b)\x87\xa4&(\xc9\x9f'\x08.km!\xd5\x8d\xc1\x02\x06\xe5:\xbb\xfc\xed\xeb\xb2\x9a\xaf\xfc/\xfe\x96\xadn^\xf5\xea;\x9eN\xd0\x83\x12jO\xe2'h\xda\xf8\x92}\xdc\\\xf2:\xfa\x8fe\xdbnUL\xc1\xff*\xb2\xa2\xea}\xa9\x9e\xc5Q\xbbv{7\xa0;n\x84t\xf6\x7f\xe7\xacY\xb7\xe0\xde\x13\xb6\xb7\x88\xe2]\xb6\xb8\xfd\xba\xae\xcaO\xcc\xa1\x14\xd2\x1b\xe2\x06C\x82\x8f\xa0\xbf\xaa\xb5U\xfb\xedv]T\xaf\x1aV,$\xd6%gt1\x1f\x01\xc6O\xa0 \x00\xee% \xe00m4\x97\xb5%\xb7L|\xb3\xff\xb1-\x97U\xc1\xb7\x0d\x83\xaf\xd9C\xf8#\xf9\xe3E\xddHF\xf3_\xd9\xe3u\xd12\xef\xe0\x0dp\xcf\xae\xdb\x92\xe7X\xed\x1f\xb4X\x17\xebl\x91\xf9mUV\x9fBC\xcf|\xdb\x94\xfcq&\xbfU\xe6A\xfd\xc3)5\x8c\xdc\x93\xf1\xe5\x9d-a\xeb\xa2\\E\x83\xe4\xa6(\xd0E\xf9\xdb\xec\x15\xb5\xe9mJSu\xb1\xe6E\xa0\xc2R]#\xf4\xaf\xeeZ\xf5b\xaca\x15JD\xb50\xca\x93\xd8;4\xae\x96\xb9;GP\xde\xf4?\x1e\xc9\x11U\x1f\x11\x80i\x8c:e\xd9\xeeL\xef\x96[K\xfd.\xe6\xa2\x90\x04e\x82\x83b\xb2\x93\xe9N\x92\xc2\x92\x01\x17\xad\xcb\xaa\x13\x9f\xf4\x167\x9cH\xf2\xda\xe8\x10\xb2\x98\x83\xe6\xf5z]\xb6-\xf6\xa5\xd9\x1f>x1Z\x7f\xees*\x0e\xfc\xca\xeb\xaf9k\n\x1e\x96k\xc5\xde\x15p\x94;h\xa8\xd6\xc1\xb4\x0e\n\x96\xa5\nPHA\x17\x06Wj\xac\xf2{\x17\xf1\xdaC\xf9\x0b\x90>\x03]\xa7\xd8\x92<\xe2\x810\x96\xe2Z\xd0\x977\x9f>V\xb7\x91\x7f\x9e\xdf\x16\xcdR\xce \xa3\xc5\xf4\xb3\xc1#\x90\xa9\\7\x12\xdf\n\xeb\x8b\x02\xac\x8b\x87\xd9gv\x80\xa9\xc2\xa0_\xad\x8b\x87r\xbd]\x8f=\x12-L\x8d\x8e\xfd\x93?/*`w\xac\xd1\xaeL\xf6\x8d\xe2M\x9e\x83\x8b\xac\x9a8=\xb5(\xca\xa8\x1a\xad\xccMhX\xd1\xb2\x1dL\xd7\xf2\xb4rR\xb4\xa8\xb8\x13\xb7\x1b\xf1v\x88\x8a\x1d#\x1d\x87}\xe3@\xa2\x83\xadZ\x9a\xe7P\x86\x18\xe4\x1f\\O\xe5}\x04\xb3Swj\xe1\xf6\xcb\xba\xacf\xe2C\xd5\x12\xea\xdf\xe3-\x8cm\xa7\xe3\xaa;\xcb-/[\xf9\x05\x0d\x0b6_\x15\xe3\x94\x90Qa\xb2\xc7\xe9\xa3M\x81A\x85 W\xf2\xc4?;\x0e\xc74\xa8\xcb\x19\xb0\xbe\xb3\xbaV\x1c\x01\xaf\x97j\x05L\xc6\x1d\xb8I\xb6q\x16U\xac\xad\xa4\x1cw\xf5\x7f\xb6\xfc#f\x0e\xe6s]'\xe7\x97\x0d\xb0\x07u\xc7U\xef\x90s\x8d\xb2\xf2\xbc\xed/WE{+\xdeu&9\xc5G\x13\x17\xe2>\xa8GU\x87\xb3\x06\x979R\x0c\xa2D\xe2\xea\xa6\xf1\xbd \xe7\xc5j\xbe]uQ\x9c\x9b\xad\xf8$s_p[\xd9\xdb:\x08\xdf\xd5[\x0e%\x97\xc9\x1b\xd5\x12\xea;\xf9a\xdb\xad9\xc0/\xb7\xacRMu7\xa0\x19\xae\xe0\xb8\xaf:\x9c\xc7\x1e\x8d\xc6\xa4\xb2\x15\x93\x83E\xc9\x0d'VX\xfd\xcdY\xde\xfdm\xdd\xb2>\xaf\xca}Q\xfb6\x96\xed\x80\xc8\xb4z\x84lZ\xdf\x04gI\x8b\xb2\x0b\xd9\xaauw\x89\x15\xba\xaf:\xb8\x7f\xc7\xf0s-\xdd\xba\xa9\xefYcr!\xcd\xedb\x0b\x19\x86\xf5v[\xb3@+\x9b\xe0\xbe\xdaz\xbb\xe2\xe5fU\xaa\xca\x0d\xaf\xbds\xc2\xe0\xa9\xb3R}\x9c\xdbz\xb5/U\n\x90\x94\x9f\xf6\xee\xd1@j\xd0\xd2\x06M%5h\x943\xbf85\xe8\x9d~!\x13\xff\x1c9rA\x0dh\xc7\x9a\xa2\x12}v\xe5\xf6\x91\xd4\xb36\x92z\xce3\xc3L\xcdXS\xdd\x96\xa4\x9e\x11\xd9i\xf9M\x01\x81\x01}\xb7?wg\x9cW7u'\xe8&Z\xd9\x176VuS\xa5\x9av\x0e\xb4\xdb\x86\xe5\xbd0M~\xa6\xbam\xa2\x89\xbb\x13\xf9AU\xc4!\x83\x9b?v\x8b\x16\x80ty\xa67o\xdd \x1a\x9a\xbbe\xc5\xc2\x07\x96\x07\x8b\x85h\xd1\xc2\xf4\ni\x80\xe1Q{i^\x17m9\x87\xebU=\xff$\xdb\xed?>V'@\xd5K\x98\xbcZ&\xe0\n\xb1k\xa8\xb2b\xb3y\xdaKb\x96\xdd\x94\x9d\x1a\x8d<\x98\x17\x1b\xbem:\x80\xd4\xfc\xb9\xd9\xae\x98\xca\x85\xd84\xb5x~\xc2U,\xba\xfb\xa9\xe2a\xe2\x1f\xf3\xdb\xa2\xac\x8e\x02\xdf\x94Z\xccT\xf2\x98\xe2\xed\xdd\x9d\x04\x8b\x82\x17\xc2/\xdb\xb9\xaa\x9b\xfePQ\xb5\n\x14h\x96/\xfb\x00\xc7K\xcfn\xc5\xcaZ.I\x9d\xa6\xa8Z\xf56_\x17\xf3\xdb\xb2\xf2H\xb2Hz\xab\xacf\xa5'\xb9\x0dp\xb74\xc4\x82\x03\xae\x08\x0c\x13\x0e\xf0\x84D\x9d\x9c/\xcb\x1b\x18\xf6\x8e\x1a\x016\x0d\xbb{\xe2\x01\xe0\xb6ho3?\x8cAy!9\xd7\xe1\xb3\x96\xf1Yh\xd85\x86j)\xa0[+,\xb01\xf2\xe0\xb0 \xa826L\xb73\x16w9\xa4\xb8\x1d\xf0\xae\xef:\xdaE\xd1\xf0\x96\xf1?\xcb;\x10\xea\xba\x12\xe2\xe4\xb3p\x95QUEUQWO\\\x8e\xc9\x15z\xf50\x88a\xcfs\x8e\xf8\xe9\x89\xaa\xd7\xab\xfb>\xd1\x05\xc7\xfe\xb8i\xea\xb5\x19\xc7\xa1\xde\xf2\xcd\x96\xf7\x7f\xeb\xc7\x0eOiR:\xff\xc9\xdb\xd0\x8b\xce>\xcd\xf5\x8a\xcd\xe6\x89\xae$\x9f\x0fM\x02<\xd1%\xd9]\xb9`\xd5\x9c=\xd1\xe5\xba\xfe\xd7O\x7f\x02\xaf%1\x02\xd7-\x8bh)C\xb6\xfa\x0d&uj$\x1b|Et\xd3$\xb9\xa4\xa8G\x12\xf5\xceqMc\xee\x8aU\xcb\x82\x99hnZ\x10B\xc4 \xe0^a\x98\x97\x17N\xaaZ\x19\xca\xc1)\xd3\xe2$\xf1\xea`96A\x9f.a\xad\x0c'd\xad\x0c\xe1}@\xde\x01\xd0\xc5\x85\xa5\xad\xfb\xe3\x10w\x00\x12\xef\x02L`;\xa3\x05rg\x90?\xf4y\xa0\x0c\xcdzFK\xeaY\xd0\x18\xf3i,\x95\xfd\x8c\x16\xb8)\xf8-\x9a\x015\xe6\n\xef$\xb3\xa0\xc6\xf0Lh\xb4(\x9b\x19M`C\x8d\xed\xc9\x88\x1aKcE\xa3\xc5i\x8e-\x89\x195\x96\xca\x8eF\x0b\xbc\xa9\x9b$\x86\xd4X\x12K\x1a-m\x8a\x8c\xb62\x14[\x1a-e\xc8\x9eb\x18Sc\xd9X\xd3\xbe\xc0}\x98Sc\x13\xd8ScY\x18Tcx\x165Z\xd4\x80U\x8d3\xa9\xc6\x0e\xc0\xa6\x1a;\x14\xa3j\xec\x00\xac\xaa\xb1\x14f\xd5\x18\x9a]\x8d\x96d\xb3\xad\xb2\x7f\xc7\x19VcI,k\xb449N`\x99Vc<\x8dm5\x96\xca\xb8F\x0bL\x11\xeeV\xb67\xf3j,\"\xe2\xad,a\xea\x18\xfdF\xea-u\x96\x99\xc4\xc6FK\xe3\x86\x9dE0\xb2\xc6Rj\x9c\xc8\xcc\x06\xcb\x1a\xcef\x11\xec\xac\xb1$\x866XRT\x16\\\xd9\x14\xce6\xde?Q\x12\xe1\xca\xa6p\xb7\xb1\x029J.\\Y\x1e\x0e\xd7\x18\x12)5\x16\xe5r\x8d%\xf0\xb9\xc6\":\xbe\xd2\xa6\xf0\xba\xc60\xe5\x07\xa5@\xb3q\xbc\xc6\xa69\x1f\xcf\xf5\x1a\xc3\xb4|\x02\xe7kl\x12\xefk,\xe2\xf1|\xfc\xaf1$\x07l\x0c\xc3\x03[\xc7\"\xb8`c\xc8\xbb\x92\xce \x1b\xc3\xf3\xc2\xc6B\xc2\xe5\xca\xb2\xf0\xc3\xc6\x928bc\xfb\xf0\xc4\xc60\xaeO\xe0\x8b\x8de\xe7\x8c\x8d\xa1\xea\x1by\x92\xd2\xf9\xe3`q\xd7\x8fq\x0e\xd9\xd8\x14\x1e9X\xa0A\x00\xc2\x02\xe8\xca\xa6\xf0\xc9\xc1\x02\xb9Ys\x0b\x88\xa1+K\xe5\x95\x83\x85\xf5,3b\xb9\x03\xc1/\x1b\x0bi4+\x0bI\xa5+K\xe7\x9a\x83\xc5E\xc4\xd4\xcdAx\xf69\xd2A,.: \xac\xae,\x95\x85\x0e\x16\xf6\xf1\xc3\x8f\xc7\x08&\xdaX*\x1bm,\x81\x916\x96\xccJ\x8fND2\xd3\xc6b\xb3\x80\xa8\xf8\xb52,\xd7\x8ae\xa9\xbbrS\x99\xea\xee\xc4\x14\xb6\xdaX\xc4\x19SX\xeb`\x81\x08\xb1veS\xd8\xeb\xe8\xc3\x14\x17nW\x96\xcebGG\xf1\x88\x88\xbb\xb2\x00\x9b\x1d\x11\x8d6E\xc8\x91h\x96\x92`\x86N,\xa3M\x11hS\x04\xf4,))\xf1K}.\xd1\xa6\x08\xb4)B\xaed,d\x1eP4\xf9*!\xe9\n#\xf9\x9f\x92dE\x9b\"\xd0\xa6\x08\x98\xe4'\xda\x14A\xda>IL\xb4)\x82\xab\xa4h2\xd2\x94$$\xda\x14\xc16DR\x11m\x8a@\x9b\"\x0c\x8c6EHK\xd4\xa1M\x11:\xa3M\x11\xb4\x99\x0d\x06vX\xc1\xc1G\xe4\x905\xec\xa9A\xfd\xf7n+\x01\xbe+6o\x0fK{n-\x00\x1e\xa62u\xcb\x01\xe9\x07}\x86k\x83\x81\x8b\xceO\x83\xcd\x05t1\x0e\xc0n\xb0\x9d\xc0\xa5:L\x16b\xbe4\x9f\xedn\x02\xb6+l\x1bTF\x1d\xa4\x9fF\xb9\x9a.gV\x9d\x93\xe4[\xb0la]/\xb6+\xc7\x8a\x84\xb7^\x10\x8dga\xd0\xd2\xe8r\xce\xa01#\x06T\x83\x1e\x8a\x07\xd5\x8f\x9d\xfc\xd2\x0f\xd1\x9b\xeb\xe2\xc1\x12\xfe\x0d\xd5*$w\x1d\xc7\x83\x07\x15\x1f^\xd4T\xdc\x10Q]\x84\xdeRU\xf6U\x9dU\xbc \xc6\x0f\xb3\xd6\xdb\xbb4fU\xc5j\x0d\x98?\xc9\xa9f)\xd7\x1c\xbb\x9b\xe1)\xc9\xe2\x15d|\xda\xfa\xf7\xd7\x1b\xd6\xc0\xa6(\x9b\x13\xde\x94\xb53\x9d\xc0\xda\x81\xe4\x99xf\xb7F\xc6A\xfdm\xb6\x86Ys\x8c\x97\xa2\xd9\xb0\xa6-['\x9e/\x1c;[\xb0\xaa\xf6\xe4\xd8\xa5=\\}i\x03lO\xfcY\xae\x96\xcf\xeb\xb2\x02\xf9{Yi&j\xb7\xc4uY\xcdF\xbc\xef\xc4\xbai\xb5e\x7f\x0f\xdc\xbdRG\xba\xde\x16e\xf5\xea\xbe\\\xb0\x0e\xe7\x8a\xe2\xc5\ne\x12\xd3\xa3bDr*\x88\x13\x14\xfa\xd4\xf3?\x83r\x10\x8c\x88z\xa7D\xd9\x10M\x83\xa8\xa3%\x052,\x8b \x10\x82@\xa2\x11\x10\xdcHE\x10\x08A \xbe# \x02\x91F\x10\xc8\xae\x11\x04B\x10\x88\xcf\x08\x02!\x08D\x1aA \x04\x81\x10\x04B\x10\x882\x82@\x08\x02!\x08\x84 \x10\x9f\x11\x04B\x10\x08A \x04\x81X\x96# O\x10\x884\x82@\xfe^ \x90dX\xa2\xaeW\x01T\xa2\xaeW\x03HB\x1c>\xe0>\x06l\x848\\\xff\xfd\xf9\"\x11]\x83m\x1b\x02\x11\xa2\x91v\x80s\xa7\xd5\xbdyk\x00\xd18NU\xf3\x99\xcaD\x9f\x85\xd4=#+\x19\xfb\x940h\xb5\nA\xd6\xf5\n\x1d\x80\x14^\xf9pqJ\x01G\xa0\x80ct\xb5\x0d\xb3`\x05\x14p\xa4\x80\xa3\xf7H\n8J\xa3\x80\xe3\xaeQ\xc0\x91\x02\x8e>\xa3\x80#\x05\x1c\xa5Q\xc0\x91\x02\x8e\x14p\xa4\x80\xa32\n8R\xc0\x91\x02\x8e\x14p\xf4\x19\x05\x1c)\xe0H\x01G\n8Z\x96#\xf8C\x01Gi\x14p\xfcR\x03\x8e\xe3\xc4ZW\xd8\xf1\xe7>\x0f\xd6\x04\x1f\x8b\xd5\xcaJ}5+\x8b|\xaeT\xcd\x97\xe5\x1d\xab\xf4^\x86\xce\xc8d_\xa2\xfe\xf5\xd9\xc6'C\x89\xc7\xfc3\x84~\x94\x1b\xebfV,\x16\x0dk=G\xa1\xd6?0K\x08\xe0\xb8\xe4 \x16k\xfe6\xde\xf0\xe1\xa5\x7f \xcb\x94\xf7\xbf\xe1\x9a\xcdo\x81U\xf3z!W)\xe5\xa3\xef~\xc5\xcd\xc5\xed\xad\xdam;\xdbl\xaf?1\xefNl\x11\xef\x02\xc2\xc3\x80\x08\xb0\x01\xce\xc3\x90\xe0e\x98\x10l\x0b\x16\xe6^q |\x80\xe4\x0e\xbaA<\xf0\x06\x13\x82o\xe1\x06\x14\xfc\x16\x1d\x80\x83\\A8\x98\x18\x88\x0b\x16(\x9c\x8b\x0e\xc6\xc1\xfe\x019H\x0e\xca\x05\x8b\xd2\xc1\x82\xa4\xc0\x1c\xe4\x0e\xceAb\x80\x0eR\x83t\xe1\x9e\xdd\x05\xf0\xb0\x81:\xc8\x1d\xac\x03\\\xc0\x0er\x06\xed`\xef\xc0\x1dL\x0b\xdeA\xae\x00\x1eL\n\xe2\x85\x1f\x07k\x87\x8eH\x13\x0e\x10\xcc\x83\x03\x06\xf4\xe00A=H\x0c\xec\xc1\xb4\xe0^l\x08\xc6\x05\xf8 o\x90\x0f\x12\x02}\x90\x1e\xec\x83 \x01?\xc4\x90\xf9\x0d\"\xe8\x079\x02\x7f\x10\x0b\xfe\x01~z\x86\x08\x02B\xe2,.9\x18\x18,M\x06\n\x11\x01AH\xa8e\xc6\xc0 $\x05\x07!w\x80\x10&\x06 \xc3\xfd\xaa\x8d\x07\naz\xb0\xd0[\x9e\xb8b,`\x08\xd9\x82\x86\x80\x8f}\x01&x\x08i\x01D\x88\xad\xf8O\x0c$\x02\xa2\xdc\xc0\xa2b\xa6\xa0\"Lr.>\xb8\x08\x88VN\x082\xc2\xd4@#\x84\xbd\x9a/\xe0\x08\xf8\xa0# \x03\x8f\x80\x0e>\x02\xce\xeb\xe9AHH\nDB0\x18 \xb9\x02\x92\x90\x1a\x94\x84=\x03\x93\x80poB\x80\x12\x0e\x11\xa4\x04L\x1d\x03OB\xbe\x80%`\x82\x96\xb0G\xe0\xd2[\xa080\x14\xbc\x84\xdc\x01L\x88\x061aj \xd3[\x9a\xfaF\x0d\x7f\xae#\x02\x9a\x10\x8c\xbb@0\xb0 \x93\x82\x9b\xde\xa2\x82AO\x98\x1a\xf8\xf4\x96\xa6\xe6\x81\xa1}C\xb3\x05@\x01\x15\x04\x85 \x81PH\x0b\x86\xc2\x94\x80($\x07E!\xf2\xb6\x8d\x04\xaa !X\x85\x0d\x90\xc2\x94 )\xa4\x06J!\xdc\xf0)\x01SoaV8\x12\xfb\xc8\xe0\x02\xa7\xc1\x07B\xee\x87\x1f\x08\x9eB\xde\x00*\xc4\x82\xa8\x10\x0e\xa4z\xcf\x99\x1a`\x85\x8c}7!\xd0\nI\xc1V\xb0\x02\xaeC\xfbkQ\xae\xd8\"\x1c\x9d\xba\xae\xeb\x15\xf3.\x1dc\xbf\xe1\xd5\x95t,n\x01\xf7\xb7L\xaf\xe4\xd8\xbb\x10\x8b\x1e~\xcdX\xa5\x8f\xf6\xdf\xe1\xa6^w\xdb\xf0\xca\xb0\xadZ\xeev\x8a\xd8\x82>\xc4\xd7Jl\x0b\xf4\x85\xc6\x9b\x7f\xeb\xbf{O\xfbZ\xd5\xf3\xa4\x93)\xd6\xff%\xc3\x1b\xeeS\x10kA\xac\xdaz4yA\xc6\xd1\xbf\x7f\xff\xee\xed\xec\xf2\xea\xcd\xd5\xc7\xcb\xd9\xc7w\x97\x17g\xa7\xe7?\x9c\x9f\xbdE\x9f!\xfe\x95x\xf8\xf9\xbb?!\x8f\x0f\x16n\xd2?\x93\x9a\x10\xca_E\xf9\x13\xdb \xd4\x85t7\xd6\xf3\x8d~\xf7m\xf9\xdb\xd7e5_\xf9_\xfc-[\xdd\xbc\xea5\xa8=\x9d\xa0\x93\x01\x9e\xa9m\xa6\x9f\xa0i\xe3K\xf6q\xf3\x9a\x17\xab~\xf7\xeev\xabb\n\xfeW\x91\xbd1\xbe\xb5\x9f\xb9\xa7\xa1}\xed\xf6n@w\xdc \xe6o\xff\x9d\xb3f\xdd\x82{\x9b\xec\xde\xba\x06\x84\x9f\xd0\xbd\xe3\xf6\xeb\xba*?1Gvqo\x88\x1b\x0c >\x82\xfe\xaa\xd6\x9e\xff\xb7\xdbuQ\xbdjX\xa1\x84\xb8\xe5\x8c.\xe6#\xc0\xf8 4\x01\xc0\xbd\x04\x04\x1c\xa6\x8d\xe6\xb2}#\xfb\x04\xc5\xfe\xc7\xb6\\V\x05\xdf6\x0c\xbef\x0f\xe1\x8f\xe4\x8f\x17u\xc3\xc5[\xe6_\xd9\xe3u\xd12\xef\xe0\x0dp\xcf\xae\xdb\xd2'K\xaelJ\x8bu\xb1\xce\x16\x99\xdfVe\xf5)4\xf4\xcc\xb7M\xc9\x1fg\xf2[e\xces\xd70rO\xc6\x97w\xb6\x84\xad\x8br\x15\x0d\x92\x9b\xa2@\x17\xe5o\xb37\x11\xbe\xb7)M\xd5\xc5\x9a\x17\x81\nKu\x8d\xd0\xbf\xbak\xd5\xef1\xa16H\xd9ch\x8fo)\x80\xbfC\xe3j\x99\xbbs\x04\xa5\xb5\xe1\xc5\x91\x1cQ\xf5\x11\x01\x98F\xcd\xf5ehs<\xbd[n\xab\xf0\x06\x1a\xb8\x8d=\x92\x1c\xb4(8{%\xca\xca\xe6$\xb5'\x88\xdfE\xeb\xb2R\xfb\x86\x84\xba\xf2p\"\xc9k\x19\xda^1\xceb\x0e\xeaw\x1b@\xbd4\xfb\xc3\x07/F\xeb\xcf\xbb\xdb\xd6\x8c-\xd3+o\xb4\xa3B\xf0\xc1\xc4\xde\x15p\x94;h\xa8DO\x8aU|\x93\x06e\xaa\x00\x85\x14ta\xf0y\xc3\n\xae\xbew\x11\xaf=\x94\xbf\x00\xe93\xd0u\x8a-\xc9#\x1e\x08c)\xae\x05\xb3{E\xb9\xd3m\xe4\x9f\xd5\xfe\x15\x0b\xff\x0e#\xbd\xf5\xb3\xc1#\x90\xf8\xf7\x8d\xc4\xb7\xdc[}\xf4\xb6.\x1e\x02;}\xf4v@\x07\x98*\x0c\xfa\x95\xd9_g\xe4\x91hajt\x1c\xee\x02\xc2\xeeX\xa3]\x99\xec\x1b\xc5\x9b<\x07\x17Y5qzjQ\x94\x01}\x08ce%\x9e\xb6\x96\xed`\xba\x96\xa7\x95\x93\xa2E\xc5\x9d\xb8\xdd\x88\xb7C\xf0M\x03x\xc7a\xdf8\x90\xe8`\xab\x96\xe69\x94!\x06\xf9\x07\xd7Sy\x1f\xc1\xec\xd4\x9dZ\xb8\xfd\xb2.\xab\x99\xf8P\x9d\xf5\x1f\xaa{\xbc\x85\xb1\xedt\\ug\xb9\xe5e+\xbf\xa0a\xc1\xe6\xab\xa2 \xac\x11\x99\x8dy\xf4\xd1\xa6\xc0\xa0\xaa@Y\xcd\x99x[\xb6\xeb\xba}\xd5.>\xc1?\x1c\xff\xe3?;\x0e\xc74\xa8\xcb\x19\xb0\xbe\xb3\xbaV\x1c\x01\xaf\x97j\x05L\xc6\x1dd\xcc@|f;\x8b*\xd6\xf5\xb6\xa3\x8a\xdd\xd5\xff\xd9\xf2\x8f\x989\x98\xcfu\x9d\xd0W6\xc0\x1e\xd4\x1d\xd7\x1b\x11\xd5r\xbb%\xcf\xdb\xferU\xb4\xb7\xe2]g\xf4>|4q!\xee\x83zTu8kp\x99#\xc5 J$\xaen\x1a\xdf\x9bp^\xac\xe6\xdbU\x17\xc5\xb9\xd9\x8aO2\xf7\x05\xb7U\x7f+[\xe9\xbbz\xcb\xa1\xe42Y\xa3ZB}\xc7\xec=\x94\x8e\xe1\x97[V\xa9\xa6\xba\x1b\xd0\x0cWp\xdcW\x1d\xcec\x8fFcR\xd9\x8a\xc9\xc1\xa2\xe4\x86\x13+\xac\xfe\xe6,\xef\xfe\xb6n\xad\xed\xba\xdc\x17\xb5oc\xd9\x0e\x88L\xabG\xc8\xa6\xf5Mp\x96\xb4(\xbb\x90\xadZw\x97X\xa1\xfb\xaa\x83\xfbw\x0c?\xd7\xd2\xad\x9b\xfa\x9e\xa9\xd7\xd45\xebn\x17[\xc80\xac\xb7\xdb\x9a\x05Z\xd9\x04\xf7\xd5\xd6\xdb\x15/7\xabRUnx\xed\x9d\x13\x06O\x9d\x95\xcd\xd3\x83az\xf7A\x95\xf5\xb3\x00\xfffw\x9bb\xa9\xf7\x18\xdb\x1d\xd6\x06\x97\xe9\x0f\x1cJ\xfa\xf5\x7f\xd6\xfd\xde\x95\xd3\xa3,8\x11\x8ch\xfc\xb1\x07>\xf3\xa6\x8fDG\xde(,8h\xea\x7f\xf9\x06fS\x0b3\x16\x8b\xff\xd4\xbcm\xd1\xb6j1\xf0\xa2X\xb2\x0f\xeco[\xd6\xf2c\xf5\xbb\xa7\xb0~+PQ\xacp$\x83u\xddr`\x92Z\x95\xb8\xeb1\x9cs+\x0c\xb5\xe1\x8fP\xfa041\x862\xf9\x18W5\xac\xeb\x86\x991\xcb5\xb2\xc9\xbe\xba\xa73\xb7\xfe\x8f\xed\xd8\x8erj!\xb54+\xaa\xfdv}f\x98\xb54||\xed\xb5\x1d=\x17\x83\xc0L=\x80\x9e\xc3\xef\x0b\xf1\xbe\xe4GP\xf2\xd6\xc0\xe6\xad\x1cEU\x1cF.\\\xdc\x97\xed\xb0\x7f\xf8\x1a\"\xb3\xf3\xfad8\xac\xd4\xe3N\xfa\x9c\xb1^\xfe\xb1\xfb\x81\xd4\x1fG\xbf\x92\xfa#n\xbe\x05\x13\x12\xd2Tg%\xf5GD\xf2\x19\xcf\x91x6%\xe9\x8c\xd4\x1f3&\x98\xa5$\x97%%\x96\x91\xfa\xe3\xbeId\x13\x12\xc8\xb2$\x8f\xa5'\x8e\x91\xfa\xe3>\x89b)Ib\x13\x12\xc4H\xfd\x91\xd4\x1fI\xfd\x11\x9b\xe0\x955\xb9kJb\x17\xa9?\xfa\x0e\x8b&p%$oa\xb4\x0dS\x92\xb6H\xfd\x91\xd4\x1f1 X\xa4\xfe(m\x9f$+R\x7ft\x95\x14M\xa4\x9a\x9aD\xe5}7\x90\xfa\xe3\xae\x91\xfa\xe3\x84\xe4\xa7x\xe2Sj\xd2SB\xc2Sr\xb2SZ\xa2\x13\xa9?\xa6%3\x91\xfacg_\xa4\xfacO\x1d\xf6\x93\x9eWr\xe4}\xbd\x9bV3\xf8\x88\xd4\xc98\xac*\xaeWj\xe1E\x05\x16\x85\xdb\xac\xd0\xb0\xd4xT\xd0\x9eK\xe4\x11\xe4\x1b\xe5\xb5:\xd7\xfa[\xc3\xfe\xb6-\x1b\xb6x\x0d7\xc5j\x10\x1bs~\xa9\x9b*\xf7Q\xe1\xe3O\xec\xd1W\xf5Q\x9cU\x07V\x0b=\xea7\x8co\x9bJ\xe9\x0b\xaaX\x9f\x8emuQX\xb9z\xb5\x1c-\xf3\xc8\x16\x88\x86\xc6\"\xab\xef\xc5;\xba\xae\xe4\xe7m}s\xd32 \xb5\x0f\xab\x0b\xd6\xea{\xcbxfoy\xd62\x1cNT\xf5\xf3\xf9q\xb4\x8e\xa0\x1b#]Ym\xd7\xac)\xe7\xe6or\x80\xd0\xf0\x82Z\xc8\xb9e\x95q\xfc\xb6\xea\xd6\xceF3\xe6sY\xda\x8a\xb5m\xefB\xb5\xda\xb4m\x85\xab?\xb1D\x7f\x0e\x8b?\xb0sGqj\x87{W\xe5\xba\xc4zW\x1ek\x00\x00_\xf8Z\xad\xab\xda=X\x93\x11\xdb\xd5(\xde\xaaVQ\xec?\x9d\xdf\xc0\x8a\xddp\x13\xee\xd7\xf1\x7f3\xcf\x95K\xc2\xea\x01Q\x17\x11~\xbe~\x04V\xcco\xa1\xd8l>\xa3\x17\xed |\x7f~\xc8\x97\xd6\x19\xc2\xa3\xb2\x87\xd6\xc0\x9b-\x03\xf1\x1fe\xb5(\xe7\x92\xd1\xd2\xc1!\xedAy\xa0\xeeHvqe5_m\x17\xa3Yl\xa1\xae\xd2E\xe7FwL\xc6z\xadEc1l\x0e\x98\x96Aa\x1f\xcf\xdb\xd1\xdd\x1a5AN\xfc\x1b\xd6\xea\xa8\xbc|\xbc\xfa\xe7Q\x00\xd9r8\xb6\xe5 tK\x1a\xdf\x92\x9dp\xc12.Y)\x17<\xe7\x92L\xba\xa4\xb3.\xd1\xa1\x10'{\xbc7\xef\x12\x95\x04\x8b\x93\xab/&\xf08)D\x8e[ 8$\x0f\xcc\x9d\xf1U\xdbp\xdf\xbdS\x84\x81\xa5\x00\xb0\xa7<\xac,pH\x14\x18W\xf3I\x82\xc0\xc9r\xc0\xd1u\x92\x90\x14p\xaa\x10p\x92\x0cp\x9a\x080Z\x02x\x82\x00pH\xfe7\xea?\xdc\xcd\xdeW\xf8\x17#\xfb\x8b\x13\xfd\xcd\xd4\xa0\\r\xbfx\xb1_\xbb^{U\xbc;j/\x99\xdf\x88\x8a\x1f\xdf?\xaa\x1c\x95\xf7\x8d\xdeJ@{\x052\n\xfbF\xf5\x0d\xe3\xa2\xbe\x99[\x96Y\xce\x17-\xe6\x1b\x95\xf2Mo\xe7\xbe2\xbex\x11\xdf\xf4\xba\x05\xefA6\xf9^\xacxoT\xba7\xbd\x81\x93e{q\xa2\xbd\xd1\n\xc5\x05{q\xf7#\xa7X\xef>R\xbd\x18\xa1^\xb4S\xc2\x92\x89\xa9\x8eI\x11\xe8\xc5\xbc%\x00-\xcf\x1b\x13\xe7\x1d\xb4d\x7fi\xde\x0c/*\xbc(/\xee.@\xba \xaf\x12\xdd\x0d\x94\xb7\x97\x1co\xd4G\x80\xf2\x13\xa0\x84x\xa3\x1d\xde\x18\xde\x99\x80\x96\xe0\xb5%v#\x05\xa2Efq\xf2\xbb\x07jv\x8a\xf0\xae\x1a\xcb\"\x05\xe6\x90\xddM\x12\xdd=\xa0cPr\xbb\x9d\x9cn\xa4\xc0\xa8\xd8n\xd45()]\x94;p\xef\x04HrZf \xdd\x80\x80.Z>7\xea\x0b\\\xeb2\n\xe7&\xcb\xe6\"Es\xe3\x0d\x99&\x98\xab\xa5P\x1d\xe5\xf9\xe5rs\x8a\xe5\"\xa5r\x93\x85rmQ\\w\xe3\xfc2\xb9yEr1\x12\xb9y\x05r\x11\xf2\xb8\x93\xc4q\x8d\x10\xae\xab\xbc\xa84\xee4a\\\xbd\x1c\xe9(\xcf/\x8b\x8b\x16\xc5\xc5\xc9t&\xabt\x8eJ#\x91Ne$\xd2I\"\x9d\xbd\x91H'\x89t\xf6\x965\xc5!%\xc1!)\xbd\x81D:\xf7Mj\x98\x90\xd2\x90%\xa1!=\x9d\x81D:\xf7IcHIb\xc8\x9c\xc2\xc0Q \x0c\x19\xd3\x17\xb0\xc9\x0b<-u!5q\x81D:\x07\x96\x9c\xaa@\"\x9d\xa8\x04\x85)\xe9 $\xd2\xe9;,\x9a\x92\x90\x90\x90\x80\x91\xa0LIF \x91N\x12\xe9\xc4\xa4\x1c\x90H\xa7\xb4}\x92\x0cH\xa4\xd3UR4\xad`jR\x81\xf7\xdd@\"\x9d\xbbF\"\x9d\x13\x92\x07\xe2\xa9\x03\xa9\x89\x03 i\x03\xc9I\x03i)\x03$\xd2\x99\x96$@\"\x9d\x9d\x1d\"1 G\x9fKH\n\xc0\xa7\x04`D:\x872`VQ\x83\x8f\xc9\xe1Q\x03PaG\xf3k \xe5i\x0fN\xa5\xdc\x8dq0\"\xf6rg\xbc\xd9FD\xfd2\x8a\x9d\x9dX\xd1UUdP\xf8\xec\xad\x15\x8b5\x1ah&$\xe9\x95@3-wK\x9fYE\xbe0\xaex\xa6*h\xbd\xaff\x8e:\x1a\xe3\x9f!\xe4\x15c3\xa2\x17\x00\xc4E`@\xda\x075\xdb\x94!V\x99\x00\xb9X\xd3\x1f;\xba\xbeaC\xae\xd9\xfc\xf6\x8f\x7fxe\x84\xd8zA\xb7`q\xbc\xcf}\x08-Y\x0f\x1f\x9a\xa7o\xf5\xce\xf5\xf7o5\x024\x0c%n(\x9b\xd2\xd4A\x86\x86}\x03\xe4\xe2\xa6\xfa\xb1asV\xde\xf96\xf4\xc6\xfb\xae\x1f[\xfa\xd7\xb5v\\]\xe9\xe5U\x9d\xf0r+\xe6\x98\xd7\x8f\x10\x10\xce*\xe6R*T\xcb\x7f\xfa\xdf\x82\xf5}\xa5\xbe\xb0\xea\xca\xea]zU[\xc6u\xeayYt\x00I(vqg\x93\x19\xf5\x8d(\xd1\x7f\xdd\xc8-\xbd.VE5\x8f, g\x18 \xaa\xda\x9b\xc2\x05\xd8>\xa3\xb0\x97=\x8b\xc1\xf6\x92\xd3\xba\xac,NKv\x88\x9e\xed\xa9\xea\xb5\x91\x92\x157\xb0\xa8t\xe5B\xf1\x82w\xef\xaf\xce^\xcb//\xcd\xef\xa8O\x98R\xae2\x9fW\\O\xee\xba\x95\xfd6\xd8 \xf4\xccOs+\xfe\xc7\xd5d\x8c\xb4\xdddBt\xc2e\xbd\xac\xe5\xb4j\xea:y\xff\x10\xd9\xf4\x8d\xb8\xc2]\xb1\x922\xd2\xb5\xfd\xa0\xb1\x879\xdb(\x9djgq%\xb7\xd6\xdc\xdd\xad\xd1=u<\xcd\xd5\x83\x83\xf6]\xabvHn\xb7%7\xb2\xbf\xce\xc2\xe6+\xa9u\xdd\xbd\xb0\xc7n\xa0\xed\xb3\xa5\x0d\x9aJ\xdbg\xa3\x9c\xf9\x05m\x9f\xbd\xd3#\x86\\\x9e5\x89\x8f\"z\xae\x82N\x9c_\x18D\xeb)#Z/\xcf\x8b\x9eh=\xa2\xf5\xdcF\xb4\x9e4\xa2\xf5v\x8dh=\xa2\xf5|F\xb4\x1e\xd1z\xd2\x88\xd6#Z\x8fh=\xa2\xf5\x94\x11\xadG\xb4\x1e\xd1zD\xeb\xf9\x8ch=\xa2\xf5\x88\xd6#Z\xcf\xb2\x1c\xe4\x14\xd1z\xd2\x88\xd6#Z\xef9\xd1z\xb4\xa7\xf6\xd4\x0d\x8biO\xed\x03:7\xbe\x1b4\xed\xa9\x9d\xc3\x8b\xb4\xa76\xed\xa9\xfd\xc5\xef\xa9mc\xe6'\xbf\x0d!\xde\xc0\x86\xdb\x16V\x86\xa6\xcd{\xe2\x126E\xe9\x86\xcf\xdf\x8e\x15\xbb~O\xc8\xb9\x0f\xdb\x98\x84\x95\xc5\xc0\xf1`\xd1\x10-\x1e\xd2\x90qD\xa0\x03\x17-0G\xa6\xc2\xe2\x91\xd0d\x14\x15O\x00\xc53\xb75\x1d\x11\x8f\xb45\n\x88\xc7\xf0\xf0\xf4\x06\xee\x8f\x86\xe3\xfc\x95\x13\x0b\xc7A\xe1\xe9H\xb8F\xbf=\xe5a\x80\xf0\xe0\x0d\x0c\xc2\xe0Y\x1e\xfa \x06\x8e\xe8\x1b1\x04O|u\x88S\xf8\xea<X\x1a\xaf\xebO\xb0Y\x15s\xe72\xa82\xbd\xad\xbc\xb8fx\xeb\xe4d\xbf\xc4\xb7ON\xf4\xcd\xb0\xa6\xc67\xdb\xaa|\xe87\xd3\xc79\xa6/*\xb0\"\xa2\xb6\x89\x9fEd8\x01\xef\x98\x94\xc6\x8e\xae>x-k\xd4M\x1f\x12\x08q\x82\x1e\xe2\x17\xdb\x95\x8a\x9fi\x18\x0f\n\x8er\xc1\x81\x9a\x1ehSj\x1d\xb1.u\xbcT\xcf*\xde<\xf6$Ye\xbd\xc6#{\xf5\xcb%\xfc\x86\xad\xd8]QqX3^,\n^ \x00G=H*\xa2\xdc~\x8amnR\x1f4\x05\x03sMRZ^\xcb\xed\xa5W+\xf9Q\x0fmY-W\xd6\xd4\xee\xa5k\xb5\xbf\xaf\x98\xf8\x7f'%)\x1e\xb6\xae\xb4~\xa2#>>*\xf98\xbe\x92\x18<[\xc0\xaal\xf9!\xb9.\xd7\xe9'\xaeY\xd4\xe8@\xe2\xbd\xb4\x11\xefE\xbcWo\xc4{\x11\xef\xd5\x1b\xf1^\x9cx/\xb7\x11\xefe\x8cx/\xe2\xbd\x88\xf7B\xce\x92\x88\xf7\xea\x8cx/\xdb\x88\xf7\"\xde\xcba\xc4{9\x8f!\xde\x8bx/\x8f\x11\xefE\xbc\x17\xf1^\xc4{Y\x96\x83\xbd!\xdeK\x1a\xf1^\xc4{\x11\xef\xb5_\x9ds\xf2^.\xa4\xab\xf53]\xd6\xf7\x7f\xb7\x87\x99#X\xd8:\xe8.\xab|\xf9\xc2\xec\n\xda!c\xdc;'\xbb.\xa3Ox\xe6h\x97\xf0\xee\xf3\xdcA9\x06R\xa1V\xb70\x0bD\x90\x1b\x13\x8b\x80bhT,k\x0b\xb3\x02cQM\xaa 4\x16\xc7\xc6\"\xe0X\xb4\x8b)\x8bu4e \xf8\x18\xea\x86(\xc3\"d\xf8\x1b\xa8,/F\x86\x03\xc9\x92P\xb2 >\xc2\xe0d\xc9~\xca\x87\x94\xe1\xa0\xb2$\xac,\xc1Ii\xcd\xce\x06\x97\xed\x87\x97\xa1\x00\xb3\x839\x01K\xa1e\xb8\xeb\xf8\x8ae\xe5\xd4\xd2H\xb5\xac\xac\x1a\xae\xcd\xd9x5\x14\xb1\xb6\x1f\xb3F\x1bOk\x1b4\x956\x9eF9\xf3K\xd8x\x1a\x01u\x06\xbf\x84\x82\x9c\xe7\xa84\x0794\xda\x96\xda\xf9IG\xc4\xa76\">\xf3|.\x11\xf1I\xc4\xa7\xdb\x88\xf8\x94F\xc4\xe7\xae\x11\xf1I\xc4\xa7\xcf\x88\xf8$\xe2S\x1a\x11\x9fD|\x12\xf1I\xc4\xa72\">\x89\xf8$\xe2\x93\x88O\x9f\x11\xf1I\xc4'\x11\x9fD|Z\x96\x83\xbe#\xe2S\x1a\x11\x9fD|>O\xe2\x936\xa8N\xdb\xfd\x976\xa8>\xa0s\xe3[+\xd3\x06\xd59\xbcH\x1bT\xd3\x06\xd5\x7f\x9f\x1bT\xf3\x87\x8e\xf8o\xcb\xf5vUp\xbd\x82\xbd\xa9\xdb]\x92\xffR\x1f\x02\xe6\xd8\x16\xd8\x03\x9bo\xb9hb\x01\xbc)\xaa\xb6\x90\x8b\x94\xea\xa3\xad\xe5\xe5\xba\x90?.\x0b\xd1G\xe4\x90\xa0\xca\x1c\xf0\xfa\xa6\xdc\x17\xa6\x89\xcf\x14\xcd_\x16\xed\xac\xacn\xea\x08\x8df\x0e3c\xa9\xf8o1\xd4\xc8=R\xaf\xeb-\xd7\xee\xe8\xc7O\xedO'\xd2\xe8\xad'D\xc9\x0cQ\x91\xfb\xa2\xe2\xcc\xa1\x14\x0b\x98\xa0\x04\x82\xa6\xc2,\xfc\x03\xfc\xa9h\x7f\x91\x151>Y\x17\x0f\xe5z\xbb\x86mUr\xb9b}_7\x9f\xe0^G&U@\x8c?\xf8\x01\xb5\x0dkD\xe5\\\x1f\xa0\xa2\xd5\xc2\xb9O\xd4\xe6?\x15\xed\xc7\xb6o\x98\xde\xd3\xb6\xbe\x917\xb9\x98s\xc5\x10\xcc\xebJ\x07\x97\x87E\xa9\x11%\xd2\xa1\xf4\xcb\xa1l\xedW\x85 ^\x1c\xa6\xeb,\n^\xec\xe9@\x1c\xcf\xe8\xed2o\x0b^\xc8\xa9^\xf5(k\xd3\x0f\xb57\x8d\xdc\xf2W}9\xc9(s\xb5Xy\x02E`F\xa8\xba\x92\xef\xa7\x9f>^^\x05\xc2\x80+V-\xf9-l\x1avS>\xa8\xe7S\x0e\xddb\xb4o\x99\xf8\x98\xe1L\xd5FUb\xbb\xe2\xe5f\xe5\x0b\x9c\x99:vU\x18\xbfc{{+>n\xc5\x94`\xa1\x89\xa2nS\xe4\x96\x8bY\xd2\xa6\xde\xc8!rq\x04\xd7[.+\xe8m\xf1\xba\xeds\x87\xa0\xacZ\xce\n/\xd8t\xcd\xe6\x85DN8\x14\xab\xb6\x1e.\xf3\xfc\xd4.\x87`\xa0g\xc9gU/'\xf6\x15\\W\xf8\xb1^\x0e+\xb6\xaa\x97\x83Quj\x8fp\x1c\xc0\xeeX\xc5\x9f\xb1\xaa\xb2,\xc6\xfb+\xc2\xe5\xc2\n\xce\x9b\xf2z\xcb\xc3\x198\xb1\xe6*\x8bd\x04\x01\xae\xe9\xca0\x0eP\xe6\xc5\xadmC\xf9\xc2Xt\xd8\xea-\x18\xe9\xef\xedP\x97/\xab\x05{\xc0^~<;v\x19\xee)4v&\x9e\x907\xa6\x07\xa9\xafqM\xf8\x7fb\x8f\xaf\xd4'\xdc\xa6(\x9b\xd0J\x92\xb0\xf1\x9e\xfeE\xa5\x9e>T\xb6D\xa0\x9a\xb2\x82j\"\xd1\x8a/G\x83>\xc1\x82\xdd\xb1\x95\xe8a\xf2;\xb6\xe0\\~Zv\xeb\xde\xde\x02\xed\xa1\x86\x07bff!\xe7{\xb6,\xab\xefW\xf5\xfc\xd3Q\xf7\xb7\xb3j1\xfa\xcb\xe9-\x9b\x7f\xbaz\xf0?\xa4\xd5\xa2;\xf6-[\x95w\xac\xb9z\x08\xc4>\x7f,8k\x8e\xecYx\x0b\xeb\xe2Q|\xa5\xa8\xcc\xda\x85^\xd4\xe0\xb7\xacez\xa0s\xfb\x1a\xe7i\xe9\xe7\xd6\x02:\xa0]\x95s\xb9L\xa2n\x81z\xe25\x03y\xcf\x1a\x06l]r\xee\xe5\xb1\x16[E\xd1\xaa\x81\xdc\xd7\xd2~|\x0f\x8f\xe4\xf6k\xf0\x99\x0f\xe8!x\x1a\xf0# \xee\xb6)K\x05\xa9\xa3\x03\xfc.M\x13\x08.\xe7\x06\xaa!\x0eU\xc3\x04\xb0:\xdc\x80\x82\xdf\xa2\xe1j\x80L\x805L\x84\xac\x83\x05\n\xe7\xa2Ak\xd8\x1f\xb6\x86d\xe0:X\x94\x06A\x93\xa0k\xc8\x0d^C\"|\x0d\xa9\x00v\xb8gwp6\x16\xc2\x86\xdc 6\xe0`l\xc8 d\xc3\xdeP6L\x03\xb3!\x17\x9c\x0d\x93\x00\xed\xf0\xe3P\xb4l\x11\x87\xb4\xe10\xa06\x1c\x10\xd6\x86\xc3\x00\xdb\x90\x08m\xc34p;6\x04s\x14\xbc\x0dy\x01nH\x80\xb8!\x1d\xe4\x86 07b\xc8\xfc\x06\x01tC\x0e\xa8\x1b0\x9f{\xc8\xe9\x19\xf2\x13/e\x16\x97\x0cz\x07K\x93\x108\x02\xf6\x86\x84Zf\x84\xbe! \xfc\x86\xdc\xf07L\x04\xc0\xc3\xfd\xaa\x8dC\xe00\x1d\x04\xf7\x96'\xae\x18\x83\xc1!\x1b\x10\x0ex\xae\x190`8\xa4\xc1\xe1\x10\xa39'B\xe2\x80(7\x00\x8ce\x02\xc6a\x92s\xf1\xe08 Z9\x01 \x87\xa9\x109\x84\xbd\x9a\x0f&\x0728(>\xf8@Hh+\x00\xc6C^8\x1eb\x80<\x84!y\xef9S\xe1y\xc8\xd8w\x13 zH\x02\xe9\xc1\x82\xe9\x87\x86\xfb\x02\x1fD\xc1v\xf1\x0e\x13I\xeb\x0f\x91\xaf!wYbDSP\xcc\x9b\xea\xb1\xf5\x7f6:\xc1\xc6\x7f\x1e\x1c\x1c\xd643@\xa0\xadP\xc5-\xf96\xf5\x94\xb9w#\xbdd\xcd]9g\xc7]\x19$A\xa5\x8c$\xa8H\x82\xaa7\x92\xa0\" \xaa\xde\xb2FBS\xa2\xa0I\x11P\x92\xa0\xda7\xda9!\xd2\x99%\xca\x99\x1e\xe1$ \xaa}\"\x9a)\xd1\xcc \x91L\x92\xa0\" *\x92\xa0\xc2F\"\xb3F!\xa7D I\x82\xcawX4\xd2\x98\x10e\xc4\x08,\xa5D\x17I\x82\x8a$\xa80\x91B\x92\xa0\x92\xb6O4\x90$\xa8\\%E#~S\xa3}\xdew\x03IP\xed\x1aIPM\x88\xd2\xc5#t\xa9\xd1\xb9\x84\xc8\\rT.-\"G\x12TiQ7\x92\xa0\xea\x8c$\xa8\xb4\x19\x8d\x90\xebza\xbf\xfb\xcaj\xe7O^\x99(W\xec\xe7\xffi\xd8\xcdkx\xf9\x7f\x9fX\x0b\x87Zj\xe3\x98?\x1ck\xa9\x8d>4\xa5v\x88y\xa9\xcb\x18\x8bu\xe8H\x96[\xae\x83?\xe8c][n\xfe\x89\xf1\xab\x87V%\xe1\xdd0>\xbf\x15\x83\xfcC+\xe5t\xec\x0c\xcb\x81\n\x87u\x92\xfe\xf9i\x848\x90N\xb3\xaag\xc2\x82/_\xf4\xb5\xa0\x80\xde\xc0(\xa0\x87[\x10\x02\n\xe8Q@\xcf{$\x05\xf4\xa4Q@o\xd7(\xa0G\x01=\x9fQ@\x8f\x02z\xd2(\xa0G\x01=\n\xe8Q@O\x19\x05\xf4(\xa0G\x01=\n\xe8\xf9\x8c\x02z\x14\xd0\xa3\x80\x1e\x05\xf4,\xcb\x11\\\xa1\x80\x9e4\n\xe8} \x01=\xa5ji\x151\xf8\x88T\xbf\x9al\xb2U\xd9\xaa5oK\xb7^\x1e\xb1\xf3E:E\x88\x7f\x1c.q\x04J<\x1f\xf0\xf3z\xb5b\xb2:?\xe8\xcfw\xa93\xbd\xd3V\xda\x8b&m\xa3\x0f\xda\x8b\xe6\x80\xce\x8d\xef\xa2B{\xd1\xe4\xf0\"\xedEC{\xd1\xfc>\xf7\xa2\xe9\xbd!k0\xbb\xf6\xbf\xb2\xfe0Z\xec}\x05\xef?\xbc=\xfb0\xfb\xfe/\xb3\x8f\xef./\xceN\xcf\x7f8?{\xfb\xda\xf9\xd7naY\xae\x06o+5yl\xeb\x86\xf7\x8d\x87\xf7\xe2\xff\xbe\x7f4\x0f\xbc\x1cK\xde\\\x9e*\xcf\x95-\xcc\x8bv\xbc$m\xd5\xe1\xcd\xe5\xe9\xeb\xc1\xbf\xba]\xe9\x8a\xa1\x97\xbd%\xbc=\x1b\x14!\xfe\xd9\x951\xbeU{\xde\x84\x9d\xb1\x86U\xdb\xf5p\x1e\xe2v\xaf\xef\x907\x97\xa7\xbe\x9fD;\x067UQ9\xe1\xe2\xadg\x04\xfbT\xc8\xc9\x86~;\xc8\xff\xd6C\x8d\xd9\xfe\xef\x08Z^4\xe2\xe1\xe0\xf0\xed\xb1\x8a\xd4r+@\xbb\xa3\xc6c\x0d\xfc\xf2+H\xbf2\xfa\x03\xb2x>2\xca\xd3\x0b2\xd1u~`\xce\xb3\x81\xd5\xf7M],\xe6E\xcb\xaf\x1e\xe0\xda\xfc\xb7=\xffw\x82q\xd6Y/L\xf5\x9f\x02\x8c\xe3\xe9\xe0\x19\x7f\xe8\xc4>|\x18\xd7\xa4\xed\x80nY\xb9\xbculS\x04\x980\xa4\xc5\xa9y6T\xe2%_\xb1\xd7r\x95\xebzU\xcf?\xe9\xeb9\x8e\xe5\x0f\xb7E{;\xb1\"\x83[\".f\x7f\xf9\x89r]kO\xf3z\xc1\xdaM1\xf7\x84a\xa3\x17\xd5m{W\xacU1F\xb6\x04N\xeb\x85\xeb\x8b\xdfM\x02B\x94\x06\x04\x94\xa7\x07.\xe8\xe4U\xc45\x9d\x11\xd8\xe9\xbb@\x8d/$F\x0d\xf1\x01\xd6\x1e\x99\x18\x86\xe3\xb4\xa6\xb8\x9f\x1dz3!q\xdf\xeb-\xdfl\xbb\xd9\xaa\xb5E\xc8\xcb\x16V\xf5r\xc9\x1a\xf8\xba)\xee\xf5\xc5\xbe9\x86\x9f\xbc[\xe0\xf8\xc3\xffU]\xbdZ0\xce\x9auY\x95-/\xe7\xae\x16\xaf\xea\xe53\xde\x9bb\xdd.g\xd1\xddf\xe2\xddRY\xbcsBh/)e\xd1N\x00\x91=\x9c\x94\xc5\x9c\xab\xec\xf3lm$\x8b\x8c\x1c\x83t\x842\xdcnO\xcap\x8eQ\x86p\x8f2\xb4\x93\x94\xe1]\xa5\x0c\xb5\x17\x94\xb2\x04\xaf)\x8bj\x7f\xdb\x96X:n\xbc\x1aZ\xbf\xefR\xf7\xc9Q\xf57\x18\xee\x9bb\xb3a\x8d\xf8\xc6mB8Yob\x00\xfc\xc4\x1e\xe5\xea\xba\x9a\xd0\x15MDT\xdd\x98jhk\xb6\x98\x933\xcf\xe2^\x8d\xf2\x810gr\xcb/\xe5uT6\x83i5\xab\x06{\x0c%5\\\x82\xb4b\xdc\xef\x9e\x8bX{\x0d~\xfd\x89=\x9e\xf4\xfb[i\x10W|\x80\x8f\\\x11)\x0e\xeb\xa8\x147\xa5o\xc6\x14,No\xd4d\xb6dj\xebu\xa4S\x04\xb7b\x82\x84\xc6\xbc\xf9\xfe\xf4\xfc'\x15\xc2\xf8\xb1^\xf6\xdd\\\xf8x;\xe7\xdb\x86\x99FJ\x01\xc3Jm\x87\x16\xe01\xf9\x83,\xb3\x8b\x8b\xac\xea\xa5\xbb\x8e\xb8\x1ab\xe7\x0fb0X\xa8\xa9\x83\x7f\xfb\x1d\xd4\x1c\xc1\xbd\xe5,`\x06\x9c\xe1GH\x1f\x8d\xb5v435\xc4\xd5%\xdb\x96\xb2\xc8)\xea\x9b\xc1v\xaa\x8dJ\x982$\xe9\xeew\x9bm\x99\xf6\x81\x9dTQ\xb3\xdd\xab\xf8&\x8eT\x93{&W\xd1\x97f\xfc5\xc9\xa3[\x8bE\xbd\x00\xe8\xe7\x02\xa6f\xd2\x04\xcaK\xdaR,k6M4\x9f&wF\x0d>\xa7&SV\xcd\xb4\xbc\x9a@q\x89\x9b\x88\xed\x99[\x93;\xbb&1\xbf&s\x86MZ\x8eMb\x96M\xa8\x0fw\xf97\xd8<\x9b\xcc\x996\xa8\\\x9b\x8c\xd96\xfb\xe6\xdbL\xca\xb8\xc9\x94s3%\xeb&P\x18z\x9b\xb0\x03d\xde\x1c.\xf7\xe6 \xd97i\xf97\xd93p\xb098Y\xb3p\xf0y8j\x1a\x91\x90\x89\x93\x9e\x8b\x13\x1d\nq\x1b\x82\xed\x9d\x8f\x13]\x10@M\xa8\x10Y9)\xb3\xae\xe4\xcc\x9c\xd0K\x10\xbd\x05\x18\xae~\x19\xf3sR2t2\xe7\xe8L\xcb\xd2 \xf5 \xd4\xb6_\x133u<\xa5q\xd4\x96_y\xb2u\xd0)'\x88\x8c\x9d\xa4\x9c\x9d\xd8\x8e9S\xf2vbez\xf9\xddL\xd9;\xe9\xce\xc4g\xf0\xc4\xda6!\x8bgb\x1eO\x88\x83\xce\x96\xcb\x83\xce\xe6\xc1\xe5\xf3`3z\x10^N\xcf\xeaI\xc9\xeb o\xe2\x95%\xb7'1\xbbg\xbf\xfc\x9e\x98C\x13r|\x0e\x90\xe5\x13\xad\x9d\xb7\xa7\xe7\xcb\xf5Ad\xfbL\xcf\xf7\xf1\x14\xc7\xa3\x9bue\xcd\xf9\x89e\xfdL\xcc\xfb\xf1\x94\x15\xdf\xa4\x0b\x91\xfb\x13\xde\xa0+\xb4=W\xee\x0c\xa0\xec9@\xfe,\xa0\x9cy@\x98L\xa0\xf4\\\xa0\xa4l\xa0 \xf9@\xa9\x19A\x91-\xb7\xc2\xb5\xc3\xe6h`\xf3\x82&d\x06%\xe6\x06\x05\x9a;%?\xc8S\x14b\x93\xad)9B\x81.\x1f\xdf`+c\x9ePts\xadC\xe4\n\xe5\xea\x8b \xf9B)\x19C\xee\xad\xb3x\xb9f-/\xd6\x9b\x89\x91!\xdc\x97\xefU\xd9/\xc8o\x1avW\xd6\xdbV\xd1m\xc7\xf0C\xddh\xc4\xad\x85\xff\x03\xdf\x1eA\xc9_\x866T\xbc\x97\xc7\xca\xee\xbf(\x0b1V\xfbn\x89\x1cAM\xfb\x8cl\x83^\x17\xb8\xaby\xff\xdd\xa9j\xf2c\xd1\xf2\xd3z\xbd.\xb9o\xb8\xed\xab\n\xdf}\x07\xdf\x1ey_\xb5\xa2\x05\xe2k\xb4-[Y\x03W\x81!0\x87?\x03\xde\x89G\xd0\x9bh\xd7\x004n\x13k\xae2\x04b\x83h\xba2\x8c\x03\x94\xa1\x80\x1a\x94/\x8c\xa1V\xbc\x94!\x89\x9bC]>\x8a\xbb)S\x97\x1f'8\xb8\x0c7Z\x18\x93\xacF\x0f\xf9\xc8\xf4\xb2\xb6\xac\x96+I\xe9\xbc\xea\xe1\x93\xd8\x0e\x83E\xdb\xd6\xf3R\xae\x0c\xe9\xddQ\x87\xd2\x9fc\xc3VS\xc1$2\xea\xd0\xda\xe4\x03,\xd8\x1d[\x89\x1e&\x97\xd4\x0b\xce%\n\xdeM\xfc\xbc\x05Z(\x02\xf0\xc0\x07\xa6\x81U\xbfg\xcb\xb2\xfa^\x8c^G\xdd\xdf\xce\xaa\xc5\xe8/\xa7\xb7l\xfe\xa9\xe3\xb5wML\x16\xcc\xb1o\xd9\xaa\xbcc\xcd\xd5C`\xe1\xe0\xc7\x82\xb3\xe6\xc8\x8e\xe5\xb7\xb0V\xdc\xc4\xdf\xb6\xac\x11\x9f-*K\x8f\xdf\xb2\x96\xe9\x81n\x9f\x85S\xcd\xf3t\xf8\x8bf\x96t\x06\xab\xc1s\xd4W\xe1\x9c\xb5\xf2\xda\xbe\x99\x8fM \xc8\xd8\x84w\x14\xb7ko2\xbd\x80\xdf\xd6\xe2\x8f\xeeK\xaazy\x8a\xd3\xd3\x8bVkD\xd4\xfe/QS\xfaMS\xafeC\x8b\x8a\xb3c\xf8\xe5\x965\xach\xe1\xc7z9\xda\xbcR\xd5\xd1\xf7\x14\x84\x02\x16\xd6\xc7\xc8\x9a\xf1bQ\xf0\xe2\xa8\xbb\xbe\xfc0\x1d61\xde\xbc\xc4\x9d0\xffp\xfc\xed\xb7G\xe2?\xfe\xf1\xf8\x9f\xe4\xff\xff\xd3\xce\xd9\xf1>r\xf5\xd0\xd1\xdb\x11D\xaaa+vWT\x1c\xf8\x83\x04\xba=\x1f\xf0\xc6\x172$\xe7j\x0f/\x96\xad\x05\xbb\xa9ou-\xfe\x01\xabz)\x06+9a]\xb0y\xbd`\x8ba\xef\x0f\xe5$\x83\x9db\xb1\xcf\x9e\x9fv~\x07\xed\xf9I\x12\xc1\xd1)B\xfc9S6 l\"\x89`\x0c\xce\x94\x05f\x9a\x822\x91DpF\x80)\x05_J\x82\x97H\"x_di\x02\xb0\x94\x05WJ\x87\x95H\"x\x1fH)\x05Q\xca\x0c(\xe1\xf0\xa4\x8cp\x12\x16Mr\xac:\x92D\xf0\xd0\x10k#\xd8YR2\x88D\x12\xc1(\xfch\n|D\x12\xc1\xbe\xc3\xa2\xc0Q\x02n\x84\x11\xc0MA\x8dH\"\x98$\x821@\x11I\x04K\xdb\x07!\"\x89`WIQhh*2\xe4}7\x90D\xf0\xae\x91D\xf0\x044(\x0e\x06\xa5bA PP2\x12\x94\x06\x04\x91Dp\x1a\x02D\x12\xc1\x9d\x1d\x02\xfb\xc9\xd1\xe7\x12\x90\x1f<\xf0\x83\x91\x08\xce\xbc\xe7\xa77\x88\x11T\xe9\x92\xda\x0fI\xa1\x97\xc8\x97\xfa\xe0K\xd8\\\xa0\x8b\xa1\x15\xf7\xa14\xf4u \xb2\xe4\xa9\xcb\xae\x88\xa0\xb2W\xf0\xfd\x87\xf7o\xde\x9e\xbe\xb9\xbc\x9a\xfd\xf4\xfe\xed\x99WP\xd0s\xf8\xf7?\xbe?\xfdW\xcc\x81\x97\x7fyw\x8a9\xee\x8d\xf3\xc0N\x990\xa1\xb6\xf1\xb5\x86.\xfc\xf8S\xbd`\x96\x0e\xa5\\\xb9\xef\xe4\xe6\x84\xb7=qL\x90\x81\xdd\x9dh&|\xb88\xed\xe2\x99\xae\xbe\x1f\xf2\xfak\xf8O\xd6\xd4\x9a\x1c\x91\x0f\xbf\xb8\xbeT\x96\xf4\x8c[\xee\x9b\xb2\xe3+\xf9W+\xf8\xcc-M=\x19\x95\x12\xd7\x91z,j\\[IA\xe3\xfb\xa2\xe4\xad'\x94 \xdf\xf1\x0fz\x15u.\xb14\xaet\x0b\x0b\xcd\xab\xa1\xaa+\xee\xf8Nm\xc5\x1f\xb3V\xb6\x00\xcd\x98\xf4\xd2'}\xacZLXq\x95}\xe3\xac\xed\x9bI\xd5UJ\x8f\xae5\x9fr-\xc9A\xce\xc6\xd5\nw\xeaAX^Jo\xf4Qy\xf5O\x9e\x14\x94\xd7\x85\x8c\xfb\xb0\xdd\xbd\xd5_R\xb7B>\x91\xdd\xe3\xe47E*\xfe\xb7:\xd5\xb33\xb2$\x85~)\xf9\xed\xd5C\xdb\xed\x8e\xac;\x98Z\xd3\xd3\x00\x03\xf0\x87n\xcdu\xe0\xa7\x97N\xac\xe3\x9f\x8e\xff`6$\x1e\xef\xabl_R\x1f\xf24\x12\x92\xf8\xbd\x95\xed*\xd2\xfe\xca\xd2\x08\x9e x\xa27\x82'\x08\x9e\xe8\x8d\xe0 N\xf0\x84\xdb\x08\x9e0F\xf0\x04\xc1\x13\x04O gI\x04OtF\xf0\x84m\x04O\x10<\xe10\x82'\x9c\xc7\x10i\xda\xa3\xe3-\xf2'3\x02\xc8\x95\x1b\xcf4\n\xec\x93\xbd\xe1\x1d\xbd\xd4\xd7-\x08\xd47\xfc^\xeb\x10\x17\x9b\xcdJ}i\xc9E\x90b\x05_\xd5\xd5+]\xa0\xaf\xff\xcf\xeb\xf5\xba\xa8\x16-,\xb6\xd2\x19\x81\xaa\xc9\x81\x1c\xbeg\xcb\xb2\x92{;\xeb\xa9V?\x85\xea\xeed\xe9IV\xedMiD\x17\xabV\x86\x11\xbc\xad\xe55,\x18gs\x0e\xf7\xb7L.\xb0\x15}\x93\x8d+\xe6E\x05\xb7E\xb5X1(`Y\xfe\xff\xec\xfd\xff\x97\xdc6\x92\xe0\x8b\xfe\xae\xbf\"\x9e\xdey+yW\xae\x92\xdd=3\xbb\x9e\xd7\xf7\\Y\x96=\xb5\xdb\xb6t\xa4R\xf7\xdd\xb3gN\x99\x99\x89\xac\xe2\x88If\x93\xcc\x92j4\xf3\xbf\xdf\x83\x08\x80\x04\xbf\xe0\x1b\x13)W\xbb\"~\xb1UI\x82\x00\x18\x00\x81\x88O\x04n\x85\xcd\xe8\xd8\xbd\x18\xb4\xb1\xdb\x9e\xa9\x1bAE\xd6d\xb2i\xbbW)\xbf\x15+!J\xf4 \xcc\xa4{\xeeEW\xf4Y\x97\xe4\xdcn\xd4S\x06\xfd>\x13x\xd7\xca\xbc\x81\xea\xd0~]m\xbf\xded\xad\xa0\x14\xdaF_[\xca\xbb\xccw\x02\xaa\x1a\xfeE\x07\x19\xdb\x1e\\\x8bl}#?I\xb4\xdc\xee\x9f\x8b\x15\x16\x9f\xf2v\xee\x15\xb6\xf9\xe2\x91\xa5m\x87\xb25_\xcbr\x8e\x18\x7f?\xc8\xef\xec:k\xc5\xe6;j1:\x03:\xb4\x82\x8c\xfa\xf8\xb26\xdd\x95gx\xa5\xa5\xc0\xc1\xfdPT\xd7\xf9\xda\xd6q\x9d\x1e\xd4bW\xdd\x8a\x0dl\xebj\x87]\xf8\xee\x87\xffe\xdd\xf7\xe3\xc2$o\xd4\xbaU\x19\xb1\xd1.\xfc\xacs\x8ft\xb3E{SW\x1fg\xa6D{l:\xc4\xbc\x81\xf9\x18u\x18\xf7\xfe\x7f\xd8z\xff\xb2?\x91c\x10\xb0\xae\xbbo\xa7L\xbb{Q\xcbG\xda'\x83\xd7j\xab\xb6\x91;c|\x8f\xaacFi\xe1\xb5\xe4\xe5\xb6Z\xd8v\x05\x88X5\nmU\xbd\x0b\xaa\xb7\xa8wS[\xb9\xad\x94\xcfF\xa5\xe3\xb7\xb9l\xaa\xf2\xeb\xf5Mf\xf7@7\x87\xf5\x0d\xa5\x87\xb8\xce[\x9c\x87su\x80\x05Z\xc2\xb3\xb6\xaa\x1bX\xa3\xe39;\xb4\xd5.k\xf3\xb5\xc3\xa5\xa9+\xd8V3\x17\xe8\xaf\xca\xd5\xba\xc8\xe5\x9a\xa5i\xb3\xd69\x80\xad\x80\x85\xef\x9b\x0b\x01\x90E\xc0{\x82\xe09\x00\x96\xa2\x16\x8e\xf2&\xd6v\x87\xf1)-n\xe1\x05.R#\x17\xe1\xd0E\"\xecb\x19x\xe1(Nvh0zq4|\x91\x1a\xbf\x88\x040\x12#\x18q\x10F$\x86\xe1\xd2\xe1\x0e\xd0\x08\x051\x12\xa3\x18A0FB\x1c\xe3X c\x11\x92\x91\x08\xcaX\x82e8\n\xa35\x96\x17\xcc8 \x9aq:8\xe3$xF\x1c\xa0\x91\x1c\xd1\x08\x854\x92b\x1a\xe1\xa0F4\xaa\x11\x0fkx\xa7\xc2\xaf\x02p\x8d\x04\xc0\x86\x07\xd9\x08\\P\x05`\x1b1\xab\xaeht\xc3\xf5\x11\\U\xb7\"\x00\xde\x08\xad_B\x80#\x06\xe1H\x0cq,\xc38\\\x1a\xd4\xf8A\x8e\xc5(\x87\xa54\xf94\x1f\xcc\x91\n\xe7\x08f\x12\x02\x90\x8e(\xa8\xc3\xe3\x83]\x04v\xf8\xca\xb4:x\x12\xe1\x1d\xf1\x9d\x19\x8ex\xf8\xda\xb6\x00\xf3X\x08z\xb8\x1ce\xc9`\x8f`\xdc#\x0c\xf8\x08E>\x02z9\x1e\xfb\x88\x01?\\\xe8G\"\xf8#\x12\xff8\x0e\x00\xf1uh\x04\x04r\x02\x0c\xc4[;\xab\xa6\xa7\x83A\x02p\x90\xe5@\x88\xa584::\x90\x90\xc4P\x88\x0f\x0bY\x08\x86X\xca\xa2\x9d\xa1ks\x1c\x00\x87\xb8<\xd8.@$=\"\x92\x1c\x12\xb1c\")A\x91\x10T$\x1e\x16\x89\xc2E\x16\x00#\xb1\xc8\x88\x13\x1aq\xbb\xf0\xc3\x9d\xf8\xa1\xe0\xc8\x02t$\x12\x1eq4w @b)\xca\x803\xc2\x86D\x18D\xe2P\xf9\xf2\xda\x8d\x91$\x05I<(\xc9i`\x92T\xba\x18\x01\x94\xc4 %=TB\x12\x90\xa4\xd9\xc0<\xfc\xf1\xca\xb6$\xcd&l\xc2I\x9a9\xbcy\xf6w\x0eo6\x84\xc3\x9b9\xbc\xb9\x97\xa4\xbe\xb5\x18\xcfZ\x94_\x8d\xc3\x9b\x8f\xf5\xa6-\xf0\xa5%\xf1\xa4\xc5\xfb\xd18\xbc\xf9\x18\xffY\x8c\xf7,\xb1\xef,\xccs\x96\xd0o\x16\xea5\x9bY\x10sx\xf3P\x02\xfcd\xa1\xab\xa4h\x1f\x19\x877\x07y\xc6\x96\xf8\xc58\xbc\xd9v\x99\xd7\x17\x16\xe1 \x0b \xde\x8d\xf1\x82qx3\x877\x87\xf8\xba8\xbc\x19\xe5\x18\xef\x16\x877\xcf\x95\xe4\xf5g-\xf5fY\xbf\x0d\x1c\xde<\x15\x0eo^\xe0\xb5\xf2\xfb\xacb=V\x11\xfe\xaahoU\x9c\xaf\x8a\xc3\x9b\xe3\xbcS\x1c\xde\xdc\xc9)\x1e\x8ddFU\xd1\xcd\"\xaf\xfbZ\xce\x14\xa8K\x1a\xae3\x02\xfc\xda\xc3\xf1\xb9\xdc\xb5=\x1a\xe7\xa3k\xde\xbey\xd9y\xb7\xc7\xbfy:\x95\x9d\xe0\xa3_\xd9 \xeeS\xec^\xd8 \xceN\xf0ya'8\n;\xc1\xa7\xc2Npv\x82\xdb\x84\x9d\xe0\xec\x04Ga'8;\xc1\xd9 \xceNp\x12v\x82\xb3\x13\x9c\x9d\xe0\xec\x04\xb7 ;\xc1\xd9 \xceNpv\x82\x1b\x92\xc2!\xc9Np\x14v\x82\xff^\x9c\xe0\xae\x93\x8a\x95\xcf\xact\x1cX<\xf2\x03\x1aw\x90\x87\x8df\xaa\xee\xc4\xe2\xac\xdf\xac\xcf\xf8\x19\xa7~I\xc3-\x0e\x7f\x16\xd9\xad\x9c\x08\xd0\x16CF\x85I\x92\x80\xadhU\xcaU\xf9\xed\x8b\xf0\xb6\x83:?\xf9o\x8a\x01\xd0\xd2\x1f\xa0\xbc\xcd\x8a\xc6\xac\xee\x8c\xc1 \x16(\xe8s\x90\xea\x86S\x1a\xd2\xf3\xcf8\xd9Q&\xd9\xff\xb4s\x06\xc66\xfe\xbd*\xea\xa5.\xe9\x9d,h\x98_\xbd\xeb]|\x08\x8dY\x1c\xa4h\x83\xebu\x18\xa7\x85\xb6>4r\xcf\xfaA\xd4\xa5(\xbaL\xde\xa5\xf8\xd4\x0e\xbd\xc6y\x03\x98\xd4\xf5\x0c.Tq\xb8\x061-9M[\xd5r\xfcS\x1eg\\]\xa8,\xb9\xc3\x12\x1e\xf9\x9a\xf3\xf6\xcdK\xca\x82K\x9bym\x0f*\xc4u\xb6\xbeS\x8d5>\xd2\xe8\xf9\xa9\xf7k\xa9\x8a}\xbac(\xab\x8f\xd4\xf8\x8b\xef_\xe2$\x98\xb7\x0d\xc8I\xb1\x16\xfb\"[\xa3e\xa9/\xe4)\x9a\xb3\xbe;?\xbf\xce\xdb\x9b\xc3\n\xc7\xa6z\x9f\xf9j\xfd\xf5uu\xbe*\xaa\xd5\xf9\xb7\xeb\xff\xfe\xdf\x9fg\xdf~+\xfe\xc7\xf6\x7f\xac\xd7\xff\xf4\x0f\xdb\x7f\xfcv\xf5\x0f\xdf\xfe\xd3:\xfb\x1f\x7f\xcc\xb2\x7f\xfa\x87\xb5\xf8\xe6\x9b\xe7\xff\xf8\xfc\xf97\xe78\xa0\xe5\xad\xe7\xeb\xaa\x16\xe7\x94~\xf6\xfc\xf6\x9bsT=\x1a\xef\xff\xdf?\xff\xc3\x1f\xf5\x82|\xc0v\xcc\xf7\x8b\xba\xf2\xde2\x1e6=\x8fr\xa8z\xeco\nm\xf0\x802$\x01N\xfa\xf9\x8e^\xee\xac\xb7\xbc\xb8\xd1\xb5\xa6\xd3^\xff\x8d\xbd\xf1\xa3_\xd9\x1b\xef\xd3\xe0^\xd8\x1b\xcf\xde\xf8yao<\n{\xe3\xa7\xc2\xdex\xf6\xc6\xdb\x84\xbd\xf1\xec\x8dGao<{\xe3\xd9\x1b\xcf\xdex\x12\xf6\xc6\xb37\x9e\xbd\xf1\xec\x8d\xb7 {\xe3\xd9\x1b\xcf\xdex\xf6\xc6\x1b\x92\xc23\xca\xdex\x14\xf6\xc6?\x04o\xbc\xe1\x136\xcaqy\xe3'\x9e\xd6\xfe\x84it\xb8v\xe7\x91J5\x91/\xad\x16\x7f;\x88fh\x88\xc7ob\xdeh\x97\x97*\xeePnD\xadt\x00}\xc2c\xef2Z\xf9\xabz`L\xca\xcb\xef\xc6\xb6\xf7\xde\xbf\xde\xd6\x07\x8f{\x1d`\xfe\xa4V\x9f\xdb=;\xb47\xff\xde9\xdd\xaf\xeb\xacl\x1d\xc1\xfboE{\xa8\xcb\xa6c\x07~}qho\xaa:\xffw2\xc9?\x03,\x80\x8c\x81\xb2C\xe8\x9fB\xaeX\xfa\x7fv\xe6\xc5\x81\xf7\xf6'|\xf4#\xdd\xf2{\xea\xad5;\xc8\x94\xf67p\x95ef\xdf\xbb\x8dE\x8e\xf3Y\xfd\xcf\x81\x00\xb7\x1c\x84\xd9\xa5 \xd0\xbc\xa3%\xd6E\xe7,l\xdeN\xe3\xd8\xb6\xa4v\xd5\x81\xdf]\x07\x0b\\v\xee\x06d\xedM\xb0\xdb\x0eR\xb9\xee`\xa1\xfb\xceY`\xe4\xc9\xadG\xbb\xf1 \xda\x95\xe7,J\xb9\x18\xa2\xdcy\x90\xda\xa5\x07\x91n=\x88u\xed\xb95{\xc19\xae\x89]|\x10\xe6\xe6\x83\x94\xae>8\xda\xdd\x07\xcb\\~\x90\xca\xed\x07\x8b\\\x7f\xee\xe1\x10z\xae\xebI\\\x80pB7 \x9c\xc6\x15\x08\x91\xee@X\xe6\x12\xf4M\xc1anAH\xeb\x1a\x84\x08\xf7 \xc4\xbb\x08a\x81\x9b0`\xca\x0c;\xed5\x81\xbb\x10|.C\x08_\x9e\x05\xb8\x0e!r\x15\x17\xedBt\x96\x16~\xf6kx-\x13\xba\x13!\xca\xa5\x08\xa9\xdd\x8a\xb0\xd0\xb5\xe8\xd6\xab\xa0s`\x17\xbb\x18\xad\xe5\xb5Ag\xc1\xa6r5B\xb8\xc7\x0cB\\\x8e\x10\xe7v\x04\x9f\x9f`\xa1\xfb\x11\x02\xcau\x98\"\x13\xb9\"aQ\xe7\x86\xbb$!\xa0\x95\x0b\\\x93\xb0\xd4= \x9e\xd3\xf1\x92\xb9)!\xdcU \x81\xeeJ\x08vYBX\xaf\xc7\xbb.!\xca} \x9e\x93c\x13\xb91!\xd6\x95 G\xba3!\xa0{#\xdc\x9ap\n\xd7&\x84\xd4\xd11\x12\xd2\xb99!\xc4\xd5 G\xb8;\xad\x05\xb6\xde\x13e\x13\xbb=\xc1\xeb\xfa\x84\xa5\xeeOki\xfe\x93e\x83\xdc\xa0\xe09]\xd6}\xbe\xec\x12\x97\xa8\xb5(\xcf\xc9\xb3\x0b\xdd\xa5\xd6\xd2h\x1d\xe8\xb0\x9a\xa5s\x9bB\x90\xeb\x14\x16\xb8O!\xce\x85\nK\xdc\xa8\x10\xedJ\x05\xdfY\xb4\xbe\x13@\xc3]\\\xa1nUX\xe2Z\x85X\xf7*\xb8\x1b\xbe\xc4\xcdj-,\xe0d\xdae\xeeV\xe7\x80\xf0\x9fN\x9b\xd4\xed\n>\xd7+\xb8\xdd\xaf\xd6{\x96\xbae!\xa1\xeeF\xb8g!\xcaE\x0b\x933l\xb5\x88O\xfb\xbc\x0e\xf0P\x05\xe1\xcc\x9b\xac\x15_\xb7\xf9\xce\xd6\xcb*\xce\xd1\xb1\xd1\x977\xc3\xc7\x1bQ\xf6\xfeHRG\xac'\xa5`\xd6\xea\xb9\xaf\x0f\xa5\xd8\x9c\xc1\x85}\x83Z\x1e\x8aB\xea\xb8Y\x9e\xfdUn*\xd1\x94OZ\xb2cfT\x97\xbe\x7f\xe0)\x99\x9e\xd6U\xb9Qvl\x17\x9e\xff\xeb\xc0\xfd\xe7P\xd6]v\x07\xd9~_\xa0m4/\xd1\x04C!\xce\xaa\xc2s\x0b\xd0\x90|\xd6\xe8\xb1\x85\xeb\xfcV4\xb0\x17\xf5.o(\x80\xbc\xad@|\x12\xeb\x83\xc5~$\x9f\xab\xd6xjQD_F\xa3'd\xcfL?l~c\xce\xa0KFi\xac\xc9s\xdb9\xa8\xe5\x90\xed\xbd\xd33e\x8d|\xd5Z\xf6\xd9u^Z\xf4yP\xc1\xfeBrM\x084+\x19\x7f\xd5Q\xe3s\xdej\x92\xd6\xe5\xbbu{mK\xf1\xa9\xbd\xfa \xee\xecA\x96\xce!\xe75\x02\x86\xe8G_\x0b\xcdG\xc8\xffUv\xf4\xaci\xc8q\xf0&\xbb\x16o \xad8\xa3\xdf-\x85Q\x92\x84V\xc7\xd9\xef\xe5wlW5-\x08\xb4F\xa3\x19\xbb\x8f\xb3_\xe9h\x8e\xdc6z\xe5`\x13\xe8\xc6(+\xd8U\xb5\xd0n\x8b\xb9%U[\xb5\x99\xc5\xf9\x1d\xdc\x99\x8e\xec\xf3\xbe\x89\x0b\x1f\x8f\xbd\x88\xffS\x1ev+2\x96\xea +#\xa2\xc7\xd6^\xb3\xa3\xd7\xd5\xa1l\xaf\xb00\xdb\xc4\xf11k\xa0\x11\xed3L\x00\xa0\x9cH\x0d\xa2-R\x997d'\xff\x987C\xfd\x08\x88\x1e'\xd0cy\xb4\xf8\x8b\xe1 \xe7\xb0p%\x1c\x16\xcea\xe1\xbdpX8\x87\x85\xf7\x92\x94!\x89\xe1G\xa2\xd8\x11\x0e\x0b?\x96\x13Y\xc0\x88$\xe1C\xe2\xd9\x10\x0e\x0b?\x86\x05\x89\xe1@\x160 \x1c\x16\xcea\xe1\x1c\x16\x1e\xcap$\xe57\x96\xb0\x1b\x1c\x16n\xbb\xcc\xcbhD\xf0\x19!A\xcf1\\\x06\x87\x85sXx\x08c\xc1a\xe1(\xc7p\x14\x1c\x16>W\x92\x97\x95X\xcaIX\xbf\x0d\x1c\x16>\x15\x0e\x0b_\xc07\xf8\xd9\x86X\xae!\x82i\x88\xe6\x19\xe2X\x06\x0e\x0b\x8f\xe3\x158,\xbc\x13\x0e\x0bW\xa2\xc3\xc2\x95\x13\xd7(\xe3\xe8<\xe6\xe3\xc2\xc5i\n\xdf5\xd7W\xadrz\x18\xf7\xb86\xc1\xaf\x95\xf5\xf4\xd9\xe0\xe6g\x84;\xa0+\x0f\x15\x9a\xfc\xa8\xf8\x99U>\xf1]\xd6\xaeo\xc6\x8a}\x9d\xdf\x8aR\x964\xd9\x90'le\xef\x0e?\xfb \xeel\xed\x1c\xf9\x97\x95C9S\x9f\xb8\x1ac\xd2\xd1\xe8\xa7|\x9c\xca\x91\xd7y\x9f\xd1Tw=\xb2ia\x0b(e\xbe\xdb\xa3\xfcZ\xf6TU\xe2^\xbe\xdan\x1b\xd1\xca\xed\xf1\xb0\xba`\xb8\x1a\x1a\xd1&\xee-\x8b\xe1f\xa6\x13\xa9~\x81\xfa\xa2\x1a\x83]Y\x1ev\xa2\xce\xd7\xfao8\x1b\xae\xb3R\xb6\x87\xacVR\x87T\xc7\x1f\xca\xceP8\xda\x1e\\`i\x85h\x9a\xbe\x0b\xc9\xb4vhdW\x7f\x10\x91\xfd9,\xfe\xc4\x9d;\xf2\xcf\xcfto\x91\xef\xf2\xd0\xde\xc5k\xb5w\xdb\xe6\xb6'#\xb2\xa9\xc1\xca\x17~(F\xcee2\x19\x99\x7f\xba\xd8B!\xb6\xad\xc6\x1c\x14\xf7\xa0\x17\xf5h\xff\xa6\x01B\x0f\x91\xfd\xbc\xba\x03\x91\xado \xdb\xef\x7f\xc3^4\xe1\x83\xfe~W_\x1aw`\xee\x0c\x81\xedk\xeb\x83\x00\x82\x9a6\xf9\xba;\xb5\xa1\xefA\xbcP)\x92Y\\^\xae\x8b\xc3f\xb4d\xcf\xe8)\x9d+r\xf4\xc6\xd0\xb1mX\xc8\xe5\xa7\xd5\x80yF\x93\xcb\xfb\x8bf\xf4\xb6FM\xc0\xe9\xb7\x16\x8dB\x10px\xf5\xe3Q\x0e\xb935\x9a\xf2\xebr\x94)\x04\xba\xd18|\x04\xf5\xcc\xb1/vUU\x850\xe2\xb8g^`-nE=\xb8\xd5\xf5\xf2\xd4\xd5\xe3\x17\x97\x1b\xf0J-\xe6G\xc2\xa0\x1c\xf9\x0cQ\xa2\xe7\xb5\xaa7\xa2\x1e\x1b\x18=\x07\xf7\xa7\xe8\x8d%\xc9T\xce\xd52\xe1\xfc\xb3\xfa\x1f\xc7\x99%?\xd1\x15D\xc8\xa8\xce0\x19\xb6_\xf1\x97a\xce\x159\xa8U\xc9\xfa\xd5\x0f\xde\xc6\xfc\xa1\x0f\xff\xa8\x0f}\x98\xe6`\xd1\xcf\x7f\xa4{\x88S\xb1x\xf1\x14\xb5\xce\\\xec\x9aQ/p\xf1\xfd\x9c\n\x86S\xc1p*\x18\x87\x1c\x89\xee@4\xbe\xe3,\x8aS\xc1p*\x98\xa5\x88\x0f,\xc3| \x15\xea\x03\x8bp\x1f\xf7p\xe0T0q\xf8\x0fD\"@\xb0\x0c\x03\xf2M\xc1a(\x10\xa4\xc5\x81 \x02 \x82x,\x08\x16\xa0A\x01S&\xa7\x82!\x89\xc6\x86\x9c\xa5q*\x18N\x053\x924x\x11\x84S2\x10\x82\x19A\x1cj\x04>6`!r\x04\x01\xe5r*\x18\x87,B\x92\x80S\xc1(Y\x84+A\x14\xb2\x04\x9c\n&\x04e\x82S\xe0L\x10RGN\x05\x93\x16u\x02/\xee\x04K\x91'ki\x9c\n&\x0c\x91\xb2\x96\xc6\xa9`\x02\xd1)\x88\xc6\xa7\x80S\xc1\xcc\xca\x12\xb4\xcaZ\x18\xa7\x82\xd1\xc2\xa9`f\xe47N\x05\xe3\xce\xa60\xf5\xa1\x82\xf8\xd4\x8ar\xd3@\xd6e\x84io`U\xb57\xa8:\xd9fS\x8b\xa6\xb1\x04\xd8\xa8/\x81\xce%\"\xc7N\x97:d\xf6\x86\x8b\xce\xc5/\x15Qn\x82\x9b\xbc\xa1W\x82w\xa3\x8b\x9a\xfe=\xb9\x7f`\xc4P\xf4\x96+\xcb\xc9\xf0\x18\x0e\xcee2{\x01\xe72\xe9\x7f\n\xedL\xcee\xd2\xe72\xd1\xc0\xc4\xf2\x94&C\xee\x833\x9a(\xe1\x8c&\x9c\xd1\xa4\x17\xceh\xc2\x19MzI\x8aB\xc4`\x10Q\x08\x04g49\x16wX\x80:$\xc1\x1c\xe2\x11\x07\xcehr\x0c\xd2\x10\x833,@\x198\xa3 g4\xe1\x8c&\xa1(BR\x0ca \x82\xc0\x19Ml\x97yQ\x83\x08\xcc $_G\x0c^\xc0\x19M8\xa3I\x08*\xc0\x19MP\x8e\xc1\x018\xa3\xc9\\I^\x97\xffRw\xbf\xf5\xdb\xc0\x19M\xa6\xc2\x19M\x16\xb8\xe9\xfd.\xfaX\xf7|\x84k>\xda-\x1f\xe7\x92\xe7\x8c&qnw\xceh\xd2 g4Q\xe2N:2\xb2e\xf7Q\xcdm}\xf0\xc6\xees2\x8ee\x99\x0e8\x19\xc7 ;\xd7\x9fF\x82\x93q\xa4\xe8EN\xc6\xc1\xc98\x1e\\2\x8eZ'\xe3\xa8\xbd\xc98\xeaQ2\x0eW*\x8eg\x1dw\xd5\xe5\xe4\xa8\x13\xe5\xe4\xa89'\xc7X|\x80\x05\xe7\xe4\x98^\x13\x10\xf4\x19\xe2\x94\xd0\x12\x0b\x968\x0b\x9b\xf7.8\x8cm\xa9\x01\x13\xf0C&\xb0\x004q7\x80sr,\x85O \x1a@q\x16\xc5998'\xc7RH\x05\x96\x81*\x90\nV\x81E\xc0\x8a{8pN\x8e8\x80\x05\"!\x16X\x06\xb2\xf8\xa6\xe00\x98\x05\xd2\x02-\x10\x01\xb5@<\xd8\x02\x0b\xe0\x96\x80)\x93sr\x90D\x83/\xce\xd28'\x07\xe7\xe4\x18I\x1a@\x06\xc29\x0f\x08\x01e \x0e\x96\x01\x9fw{!4\x03\x01\xe5rN\x0e\x87,\x82j\x80sr(Y\x04\xdc@\x14t\x03\x9c\x93#\x04\xc6\x81S\x009\x10RG\xce\xc9\x91\x16\xd6\x01/\xb0\x03K\xa1\x1dki\x9c\x93#\x0c\xf2\xb1\x96\xc699\x02\xe1\x1f\x88\x06\x80\x80sr\xcc\xca\x128\xc8Z\x18\xe7\xe4\xd0\xc299f\x84sr\xdc\x93\x9c\x1c\xab;\xa3r\x13\xa3.\xe7\xe4@\xe1\x9c\x1c\xfdO\xa1\x9d\xc999\x8c\x9c\x1cu\x9a\x9c\x1c5\xe7\xe4\x18\n\xe7\xe4\xe0\x9c\x1c\xbdpN\x0e\xce\xc9\xd1KR\x14\"\x06\x83\x88B 8'\xc7\xb1\xb8\xc3\x02\xd4! \xe6\x10\x8f8pN\x8ec\x90\x86\x18\x9ca\x01\xca\xc0998'\x07\xe7\xe4\x08E\x11\x92b\x08K\x10\x04\xce\xc9a\xbb\xcc\x8b\x1aD`\x06!\x19'b\xf0\x02\xce\xc9\xc199BP\x01\xce\xc9\x81r\x0c\x0e\xc099\xe6J\xf2\xba\xfc\x97\xba\xfb\xad\xdf\x06\xce\xc91\x15\xce\xc9\xb1\xc0M\xefw\xd1\xc7\xba\xe7#\\\xf3\xd1n\xf98\x97<\xe7\xe4\x88s\xbbsN\x8eN8'\x87\x92aN\x0es\x83\xc7998'\x07\xe7\xe4\xe0\x9c\x1c\xcbz\x91srpN\x8e\xdfgN\x8e\xad\x10\xf8\xb1\xec\xd2r\xa0\xff&+\xd7\xa2\xcf\xc8\xa1\xffO8rs\xbc\xd0\xb7uy9\xb6BXN=\xb2\x00W\x83$\x1b]y\x8ft\xab\xefi\x82\x8d\xae\xbf\x92\xc3\xd3\xe8 \x0b\x8dv\x14#\xe6L\xc0\xe1\xf5#\x84\x18\xe2\xbbg\xe8\xcf\x88\xc2\x02\xf5\x1cuh\x84j%r\xaae\xdf\x0f\x96\xe2\xe8\xbe\xbc\x86\xed\xa1\xdc\xcc\xbaG\x9cYA\x926J\xb8\x1a\xb5\x12\xb2E\xfaeZ\xe3\xfa\xfb\xf7\x8e\x9bv\xf2B\xc9\x02\x9e4\xf6&:t\x0c\x82\xdb\xd0?Y\xad\x92\xb2\xf2NVb\x955\xf9\xfa\x19\xecE\x9dW\x1b\xf9\x7f\xda\x83\xbb\x15\xb6\x97\xd2\x155\xbfKwj(x\xb5\x14\x02\xb8\x9f\x807\x0b\xc1=\x03K\xe9\x1fGyQiS\x92\x12@^\x06(5\x05\x14\xce\x01%\"\x81\x96\xb1@\x8e\xe2\"\x13\xa5\x1c\xc9\x03\xa5&\x82\"\x99\xa0\xc4TP\x1c\x17\x14I\x06\xb9txAj\x94\xa4tP\x10\x1f\x94\x90\x10:\x96\x11ZD %\xe2\x84\x96\x90B\x8e\xc2\x82S\xa1\x9c\x80\x16:\x1d/t\x12b(\x8e\x19JN\x0d\x85rCI\xc9\xa1pv(\x9a\x1e\x8a\xe7\x87\xbcSaX\xd2\x93\xa3\x19\"o\xc2\x93\xa0\x05U\x00I\x14\xb3\xea\x8a\xa6\x89\\\x1f\xc1\xa04'\xae\xb8\x0b\x8c,\xc0M\x7f[\xd5\xbdm\xeb\x7f\xfd\xe5\x9d\xfc\xb7\x1cnr\xf2\xa87\xc3\x08(\xb9\x9c\x99)L}L\x07\xbf\x04\xc4Jt\xfb\xde\xe5q\x12\xfdV\x9cc$\x94p\x8c\x04\xc7H\xf4\xc21\x12\x1c#\xd1K\xd2\xddP\xcc^(j'\xc41\x12\xc7\xee\x7f\x16\xec~\x92\xec}\xe2w>\x1c#q\xcc\x8e'f\xbf\x93x\xb7\x13\xb6\xd7I\xb8\xd3 \xdd\xe7D\xeerb\xf78\x1c#1\x90\xe8]\x0d\xc7Hp\x8c\x04p\x8cD/\x1c#\xc11\x12\x1c#\xc11\x126\xe1\x18 \x8e\x91\xe0\x18 \x8e\x910$\x05\xaf\xce1\x12(\x1c#\xf10c$\\\xbb\xc8\xa5X_\x07\xf0\x0dJ\x9b\x90n\xc9\xc23\x14\xa9\x17\xd5\xaa(\xaeo\xd0\xb4Aa>\x9a\xef\xc86.'y\x9b(\x80\xb7?Y\x0f\xcd\xe8\x9a\xd3mp%\xa0z\xc8\x8d\xec\xde\xfbC\xf1\xfa\x9e\xb9\x1f\x1e<'\x97\x1bd\xbd\n1\x00\xc1\x11\xc3\xd8Z\xa0\x9f\xcf=\xfe\xdc\xbe\xd8\xe6E\x8dgkY\x8bH]/\xab\x1b\xde\x96\x84\xbc\xae\x97\xd8\xf5j0\x04h1\x04\xf8\xa2!\xec}CD?\xc1\x02\xbf\xb4\xb3\xb0y\xe3\xa4c\xaf\x9e\xda?\x0d~\x1f5,\xf0S\xbb\x1b\xc0\xc7\x1e.\xf5]C\xb4\xff\xdaY\x14\x1f{\xb8\x88\xedM\xec\xd7\x860\xdf6\xa4\xf4o\xc3\xd1>nX\xe6\xe7\x86T\xbenX\xe4\xefv\x0f\x87P\xd6\xf7$~o8\xa1\xef\x1bN\xe3\xff\x86H\x1f8,\xf3\x83\xfb\xa6\xe00_8\xa4\xf5\x87C\x84O\x1c\xe2\xfd\xe2\xb0\xc07\x1e0e\x86\x11\xc0 |\xe4\xe0\xf3\x93C\xf8\xf2,\xc0_\x0e\x91\xab\xb8h\xbf\xb9\xb3\xb40\x1e\xd8\x97\x89=)\x13\x03\xf9-\x03\xf9\xbd\x84\xe0\xe6\x0c\xe4\xdb~c \x7f\xf6\x1a\x06\xf2\x19\xc8\xb7\x08\x03\xf9\x0c\xe43\x90\xcf@\xbe!)\xe0h\x06\xf2Q\x18\xc8\x7f8@\xbe\xd9\x93G\x12\xe3|h\xc1\xd2\x8c\xf0|h\xc1 ;\xd7\x9fn\x9f\x0f-H\xd1\x8b|h\x01\x1fZ\xf0@\x0e-\xc8\x9b\xe6 6\xfd\x89\x05t\xb3;\xcc\xe9\xfb\xbb\x9fT0\x8c%\xde\xe9:\xbf\x15\xa5\x1c\xcbY\xa9#ITi\x83\xd7\xf0d\xb6C\xfe\xf1\x89\xba\xd6\x12\"\xd5=\xfd\x91\xee \x8e\x95B\xf1\xc1\x15\x1c+\x95\xb4y\x1c+e/\x8cc\xa5<~m\x8e\x95\xf2cD\x90\n%\x82\x858\x91\xb3@\x8e\x95:\x1e1\x82H\xcc\x08bQ#\xb7fs\xac\xd42\xfc\x08\x96!H\x90\nC\x82E(\x92{8p\xacT\x1c\x9a\x04\x91x\x12,C\x94|Sp\x18\xa6\x04iQ%\x88\xc0\x95 \x1eY\x82\x05\xd8R\xc0\x94\xc9\xb1R$\xd1H\x93\xb3\xb4\xdfE\xac\x14~\xccp>[ Q\x02\xd9\x04,g\x0dj\xe1\x08)\x14\x8e\x90\xea\x7f\n\xedL\x8e\x90\x1aEHu&\xad\x14\xa1R\xbdu\xce\x8c\x99\x1a\xb7n\xde\xf4\xd6]\xc4\xa1U\xa3_9\xb4\xca\xa7\xd3\xbd\xc4\xdaI\xb4-\xc4Z`\xa8\x8d$\xa9}\x84C\xab8\xb4\xaa\x97\xa4v\x8f\x18\x9bG\x94\xbd\x83C\xab\x8e\xb5m,\xb0k$\xb1i\xc4\xdb38\xb4\xea\x18\xfbE\x8c\xedb\x81\xdd\x82C\xab8\xb4\x8aC\xab8\xb4\xaa\xe5\xd0\xaa^B\x02\x878\xb4\xca\xf6\x1b\x87V\xcd^\xc3\xa1U\x1cZe\x11\x0e\xad\xe2\xd0*\x0e\xad\xe2\xd0*CR\x84\xb9ph\x15\n\x87V=\x9c\xd0*s\x83\xc7\xa1U\x1cZ\xc5\xa1U\x1cZ\xb5\xac\x179\xb4\x8aC\xab~\x9f\xa1U\xd7uu\xd8\x9f\xdf~C\xffs\x95\x97\xdb\xea\xfc\xb3\xfa\xff\x8d#\xae\xea'y\xc9E\xb9\xad\xb0~\xb9h\x00o\x02Y@\xcf\xa5\xaa\xbfu\xd9o\x07\xc1Q]\x11\x8ft\xc3\xeeiH\x94l\x93\x07\x17\xc3f\xab\x99\xb3\xef\x1a\xcd\x88a7$\x05\xc4\xf2\xcd\xe9h\xa6a\xc36\xbaY\x84A\xc0\xc5\x0fz\xbe\xb1\xb4J\xee\xf7v\xf9\x0c_\x07!\xf5\x1b\xc2~\xb2\xa0.`iM\xb3\xdd(p k\xf1\xa4\xa1k\xe7j\xb3\x13m\xb6\xc9\xda,E\x85\xac\x8e\x11\xfd\x10\\\x9a\x94w\x86\xfb\xa1\xfbE~\xde\xda6[\xdf\x90s\xd4\xee\xe6\xb4\xf6\xabr\x1b.lH\xc0\x9b\xf7ql\xaa\x02z\xbe\xa7\x891[\x7f0\xfd\x9cY\xf7Fvr\xffT77\xf9\xdeR\\\xd3\xd6\x87u{\xa8\xe9+h\xdb\x8a|\xa4Uj-\xb2\x0f >\xe5\x0d\xc6\xdf\xc9\xd1Q5Y\xd1\x9c\xc1_oD)\xe7k\xecw\xf5L[Q\x02}uy\xa3*\xbcyf{he\x16\x87/\x157\x82\xc8\x8b\xed\xaa[\xd9\xf6\x9b\xbc1:\xc4RN^\xaekt\xf8a<\xdd\x06\x17<\xb6g\xae\xb3C#\xfa\x96\xf5\xb3hUlD\xad\x9f\xa5\x14?\xd7\x13\xae\x15\xb8\xdcf\xf9\x1cg\x8b\xdf\xf3+\xea\x89\x85\x9a4\x18\x12fyz\xa86\x87\xdd`x\xea\xd7\xf2D\xbd\x81Y7\xe7\xba\x16Y+6W\xd9\xd2ji\x05\xdfd\xad\xf8\xba\xcdw\x01\xe8\xabU\xd3\xfb\xca\xd0fC\x16\xd7\xb4\xd9n\xaf\x1c\x96\xb8\x0d\xc35\x8d\xd2w\xf8h\x05ITY\xc36\x0f\xaa\x81\x1f\xe5\xee\xb31\xc6) \x95\xec\xbf*\x03\xbc\xb2/\x95\xe1\xc7\xd1\xaf\x0c?\x86j;\xc3\x8f\x0c?\xda\xaed\xf8\x11\x85\xe1\xc7\xa90\xfc\xc8\xf0\xa3M\x18~d\xf8\x11\x85\xe1G\x86\x1f\x19~d\xf8\x91\x84\xe1G\x86\x1f\x19~d\xf8\xd1&\x0c?2\xfc\xc8\xf0#\xc3\x8f\x86\xa4\x00\xd1\x18~Da\xf8\xf1a\xc0\x8fDo\x18\x85\x0c\xb6\x91\xfa\xf7p\xc7\xfe\xd1\xf0\xa4\xc5\xfb\x1c \xa7(/b8\x9f\xf23\xdd\xd0!*\xaa\x00\xfcdP+\xd5mS.\xe5\xe7\x81#\xf9\xde\xa2)\xaaE\xf7\xc3_\xa5_K\x02c\x8d\x03R8Z\x9b{\xa1\xde\xb3Uw\xf0\x98\x9e\x04\x90e\xaa\x7fm\xb26\xb3-f=} \x01\xfd \xb4|\xa8E\xe3\xb8 \xa8[aJ\xd6\x10D3h\xcf\x93f\x0c\xd9\xd8W\xea.\x80\x80dI\xb5W\x9dRo\xbe_7b\x9d\xcb\x96\xd0\xfcd\xc1L\xbd\xd3\x0d\x04L9\x10\x00\x81A\xd8\xab\x84\x887\x05\x0b\x800ga\xed\xacW\xd0a$O\x0d\x86\x81\x1f\x0e\x83\x05\x80\x98\xbb\x01Y{\x13\x0c\x89A*P\x0c\x16\xc2b\xce\x02e\xe7\x06\x03cp<4\x06\xd1\xe0\x98\xb3(\x05\xb4D\xc1c\x90\x1a \x83H\x88\x0cbA2\xb7fw\x90Y(L\x06\xa9\x812\x08\x83\xca %X\x06G\xc3e\xb0\x0c0\x83T\x90\x19,\x02\xcd\xdc\xc3A\xa7\x89\xf5\x8d\x9b\x93\x00gpB\xe8\x0cN\x03\x9eA$|\x06\xcb\x004\xdf\x14\x1c\x06\xa1AZ\x10\x0d\"`4\x88\x07\xd2`\x01\x94\x160e~\x15\x00\xa6A\n8\x0d|\x80\x1a\x84/\xcf\x02@5\x88\\\xc5E\x03k\xce\xd2\x10f\x0b\x80\xd6 \xa2\x96 \xe15\x88\x02\xd8 5\xc4\x06\x0bA6\xb7^5~\x98\x0d\x96\x03m\xd6\xf2\xe4\x13}P\x1b$\x03\xdb \x9c\xcf\x82\x10\xc0\x0d\xe2 7\xf0Q)\x0ba7\x08(\xd7\xe1\xf8N\x04\xbe\xc1\xa2\xce\x0d\x07\xe0 \xa0\x95\x0b@8X\n\xc3\x81\xbbW\xd3Aq\x10\x0e\xc6A \x1c\x07\xc1\x80\x1c\x84\xf5z<(\x07Q\xb0\x1c8\x819H\x05\xcdA,8\x07G\xc2s\x10\xd0\xbd\x11\x10\x1d\x9c\x02\xa4\x83\x90::FB:\xa8\x0eB\xc0:8\x02\xae\xb3\x16H\x06h;`\x07\xa9!;\xf0\x82v\xb0\x14\xb6\xb3\x96F{T\xf7v=\x00\xba\x03'\x1b\x04N\xf8\x0e\x16\x01x\xd6\xa2\x9c`\x1e,\x85\xf3\xac\xa5\xd1:\xd0a5K\x07\xe9A\x10\xa8\x07\x0b`=\x88\x03\xf6` \xb4\x07\xd1\xe0\x1ex\xbe\xb6\x1e\x98\n\"\x80\xaaP\x88\x0f\x96\x80|\x10\x0b\xf3\x81\xbb\xe1K\xa0>ka\x062\x17:d\xc2\xe0>\xe7\x80(\xaf\xdd\x80\x1f\xa4\x85\xfc\xc0\x07\xfa\x81\x1b\xf6\xb3\xde\xb3\x14\x02\x84\x84\xba\x1b\x01\x03B\x14\x10\x08\x06\x148\x14\xdf\xf1HAv\x89\xd0\xbc<\xa1\xdb\xfd\xf8c\x92\xc8\xc9f\x9f\xda\xb3f\xfe\xbc$\x92\x90z\x8d]\x8a\xa3\xcc<7\xf9\xf5\xcd\xd7\x85\xb8\x15\x05T\xe5\xd7\xeb\x9b\xcc\x12'\x9a\x97\xd4YR\xcd\xa5Zf\x1e\x17\xad\xbfjC\n\xa2K\xdf3\x82@\xf0$A\xfc\xc2\xe9\xf5\xdbLQ\xb3\x1ep\xce\xe7\x83\xc2\xf9|\xfa\x9fB;\x93\xf3\xf9\xf4\xf9|Fl\xd5(\xaf\xcf\xdcm\xe7s\xf7q^\x1fC8\xafO\x1a\xe6(\x16\xe3\xd0\xb6ok\x81\xa1\x08GR|\x83\xf3\xfap^\x9f^\x92b\x191HF\x14\x8e\xc1y}\x8eE/\x16`\x17I\x90\x8bx\xdc\x82\xf3\xfa\x1c\x83W\xc4\xa0\x15\x0b\xb0\n\xce\xeb\xc3y}8\xafO(\x16\x91\x14\x89X\x82Cp^\x1f\xdbe^\xec!\x02y\x08\xc9Z\x13\x83:p^\x1f\xce\xeb\x13\x82-p^\x1f\x94c\xd0\x04\xce\xeb3W\x92\x17?X\x8a\x1eX\xbf\x0d\x9c\xd7g*\x9c\xd7g\x012\xe0\xc7\x05bQ\x81\x08L \x1a\x11\x88\xc3\x038\xafO\x1c\x02\xc0y}:\xe1\xbc>Jt\xe2\x85\xcc\x88\xdc\x07w0\xb4\x99\x14`\x18\n=\xf5F\x1f\x9d\xdc\x87s\xf8,K\x90\xc29|N\xd8\xb9\xfe\xec3\x9c\xc3'E/r\x0e\x1f\xce\xe1\xf3\xe0r\xf8\xd0O\xc1\xa7\x8a\xf6\xa0\x07\xfe\xd3\x91\xcd\x87\xfe\xd2\x9f\xbc\xe6J\xe4\x83\xff|\xa4[\xce\x89|:\xf1\xe1\x17\x9c\xc8\xa7\xe5D>s\x12\xe2\x94\x01N\xe4\xc3\x89|&\xe2\x9br \x80\xfa\x82\xb0W \x11o\n\x16\x10`\xce\xc2ZN\xe4\xc3\x89|\"(1\x88&\xc5\x9cEq\"\x1fN\xe4\xb3\x94&\x83eD\x19\xa4\xa2\xca`\x11Y\xe6\x1e\x0e\x9c\xc8'\x8e4\x83H\xda\x0c\x96\x11g\xbe)8\x8c:\x83\xb4\xe4\x19D\xd0g\x10O\xa0\xc1\x02\n-`\xca\xe4D>$\xd1\x84\x9a\xb34N\xe4\xc3\x89|F\x92\x86d\x83p \x0bB\x886\x88\xa3\xda\xc0\x87\xa1,\xa4\xdb \xa0\\N\xe4\xe3\x90E\xf4\x1bp\"\x1f%\x8b\xc88\x88\xa2\xe3\x80\x13\xf9\x84Psp\nr\x0eB\xea\xc8\x89|\xd2Ru\xe0%\xeb`)]g-\x8d\x13\xf9\x84\xd1x\xd6\xd28\x91O \xa5\x07\xd1\xa4\x1ep\"\x9fYYB\xf1Y\x0b\xe3D>Z8\x91\xcf\x8cp\"\x9f\x07\x9f\xc8'k\x9aj\x9d\xe3\xee\x1e?v\xf3\x83\xac[\xe0\xcd\xba\xe89\xaf\x0f\n\xe7\xf5\xe9\x7f\n\xedL\xce\xeb3\x97\xd7\x07\xff\xb9 \xaf\x0f\xe1^\x9c\xd7\xa7\x17\xce\xeb\x93\x06A\x8a\xa5:\xb4)\xdcZ`(\xd1\x91\x94\xe6\xe0\xbc>\x9c\xd7\xa7\x97\xa4\x94F\x0c\xa1\x11Egp^\x9fcI\x8c\x05\x14F\x12\x02#\x9e\xbe\xe0\xbc>\xc7\xd0\x161\xa4\xc5\x02\xca\x82\xf3\xfap^\x1f\xce\xeb\x13JI$%$\x96\xd0\x11\x9c\xd7\xc7v\x99\x97\x82\x88 B\xb2\xd6\xc4\x90\x0f\x9c\xd7\x87\xf3\xfa\x84P\x0c\x9c\xd7\x07\xe5\x18R\x81\xf3\xfa\xcc\x95\xe4\xa5\x11\x96\x92\x08\xd6o\x03\xe7\xf5\x99\n\xe7\xf5Y@\x10\xf8\xe9\x81Xr \x82\x1a\x88&\x06\xe2h\x01\xce\xeb\x13G\x04p^\x9fN8\xaf\x8f\x12\x9d\x8cA\xc7a\x1b\x85,\x88\xd3V\xee\xe9'\xcd\xd4'|t\x86\x9f\x98\x84 \x9c\xfa\x07\xfc\xdd\xc8\xa9\x7fN\xd8\xb9~\x1d\xe5\xd4?)z\x91S\xffp\xea\x9f\x87\x93\xfa\xe7\xee*/\xb7\xd5\xf9g\x95\x97\xc4\x91\xf3\xc7\xe8\xb71\x916\x93\xf9\xe7\x8e\xb8\xaf.\x96w\x9a\xff\xa4+m\x0eC\xb3d\x08\xc2\xc7\xa9K\xeemr \xd9p\x1b\xb9\xb1\x88(sf\xf6\xf1\xba\x1e\x12g\xf5q\xe7\xf4\xf1\xd6&\x80\xc8Z\xb0J\x9c\xab\xa8#\x97\x8f\xb7\x96\xa9\xf3\xf8\xb8\xb3\xf8\xc4U\xc7\xea\x18J\x99\xbf\xc7\xa7\x05\xce\xdc=\xde\xf6\xc4*\x81\xb5\xc9)r\xf6,\xcb\xd8\x93,_OP\xb6\x1e\xe7\xe4\x01\xde \x04\x02(\xae\x80\xd7\x06\xc1\xef\x05\x96\xb2\\\x8e\xf2\xa2\xf2\xf3$\xe5\xb9\xbcDWj\xa6+\x9c\xeaJ\xc4u-#\xbb\x1c\xc5Ef\xe49\x92\xeeJ\xcdwE\x12^\x89\x19\xaf8\xca+\x92\xf3r\xe9\xf0\x82\x1c\x82\xc1\xf9t\xc2\xea\x97\x90\x10\x8ba\xc4\x12Sb\xcb81\x97\x06\x05\xe5\xd0Y\xc8\x8aYJk\x83\xf2\xe7\xa4\xe1\xc5\x82\xa1\xa7\x00f,\x8a\x1a\xf3\xa5\x9fXB\x8e\xf9\xca\xb4z\x90\x13\xf1c\xf1\x9d\x19\xce\x90\xf9\xda\xb6\x80#[H\x92\xb9<\xf1\xc9h\xb2`\x9e,\x8c(\x0be\xca\x02z9\x9e+\x8b!\xcb\xdc\x19q\x92\xd0e\x91|\xd9q\x84\x99\xafC#(\xb3\x13pf\xde\xdaY5=\x1dm\x16\xc0\x9b-'\xce,\xc5\xb5\xde\xcc7I\xa93\x1fw\xb6\x90<\xb3\x94\xe5\xcfx\x13@\x9f\xb9\xb3\xdd\xb8r\xdd\xa4f\xd0\x92Shv\x0e-%\x89\x16\xc2\xa2\xc5\xd3hQ<\xda\x02\"-\x96I\xf3\xe4\xafq\xd7.\x94\x12\n%\xd3\x16\xb0i\x91t\x9a\xa3\xb9K\x085KQ\x01\x19k\x96Pj\x0e\x95\xf7g\xabIH\xaay3\xd5\x9c\x82VK\xa5\x8b\x11\xc4Z\x0c\xb36\x9f\x87\xc6\x97\x85\xc6\xbb\x87\x0f\xcb@\x13\xb6AN\x9c}\xc6\x99{\xc6_\xa3\xf8\xbc3f\x8e\x99\x99\x02}Yg\xa22X`\x9dF\xc9+&\xe9*t\xc5\xe9\xaaQ\x81-\xe7\xad\xe0\xbc\x15\x9c\xb7\xa2\x17\xce[\xc1y+zI\xea\xd3\x8c\xf1hF\xf939o\xc5\xb1^\xcc\x05>\xcc$\x1e\xccx\xff%\xe7\xad8\xc6o\x19\xe3\xb5L\xec\xb3\x0c\xf3X&\xf4W\x86z+g6\"\x9c\xb7b(\x01\xfe\xc9\xd0UR\xb4o\x92\xf3V\x04y$\x97\xf8#9o\x85\xed2\xaf\x0f2\xc2\x03\x19\x92\x95!\xc6\xfb\xc8y+8oE\x88\x8f\x91\xf3V\xa0\x1c\xe3U\xe4\xbc\x15s%y\xfd\x88K\xbd\x88\xd6o\x03\xe7\xad\x98\n\xe7\xadX\xe0-\xf4\xfb\nc=\x85\x11~\xc2h/a\x9c\x8f\x90\xf3V\xc4y\x059oE'\xa7\xf0\x04\xa6\xd0\xb9\x08/`\xb8\x0f0$o\x85\x8a\xec3\xca\x88\x8c\xa0lG\xb9+\xc6!\xcfG\xe4\xac\x88\x8b\xf0U\x97\xce\x05\xf3\xa2\x8b\xac\xe9\x02w\xb3\xa2\xa0*#\x8a\xda\xb4Y\xdbm\xa7\x07\x8d\x7f2\x1b\xc5\xfcOg\xdfi\xec\xe1\xb5\xbe\x00\xdb\xf8j9\xacX)\xc3l\xc1\xd5\xcf\xce\x18\xdb\xa0&\x05i\x84\xef\x00\x8c\xc8([\xd8\xc9O_\xdd\xdc\xe4{k\x81a!\xb6:\xc8\x16\x0d\xd7 >\xe5Mk\x06\xd36g\xf0\xd7\x1bQ\x8a[Q\xe3{P\xcf\xb5\x17&\xd0\xd8\x9a7\xaa\xda\x9bg\xf6\x07Wf\x91\xf8\xa2\xf1[\x8e.\xff]u+\xfb\xe0&o\x8c\x8e\xb1\x96\x94\x97\xeb\x1a\xad\xb6r)Pn\x08*\xb4^\xbd\xce\xe4.\xa6ka\x1f\x96U\x15\x1bQ\xeb\xe7\xa9\x81\x91\xeb\x84\x0b\xd6s[\x00\xb6Y>\xcf0b\xaa\x8f+\xea\x93#4l0h\xcc2\xf5\x90n\x0e\xbb\xe17Q\xbd\xa6'\xea}X\xac\xd6>,'\xa8rahN\xf8\xc8\x8f\xc7s>:<\x84)N\x85Z\xc0\xe5X\xdd\xb4\x99m.\x1a\xae\x00~\xa5\xef%\xb9&\x8b\xa2\x7f\xb3\x0d\xa8j\xf4K\x88'\xa3\xb2\xf8\x04'\x94AS\xf9\x04\xa7\xa0\xce|p'8M\xf4\xa2\xe7\xdf\x1a\x07\xf6\xd6\x8c\xcfe\x1a\x95b[\xc0?\xea+\xc1\x1c\xdc@\x98\x83\x0b\xfb \x01sp\xcc\xc1Y\xafd\x0e\x0e\x859\xb8\xa90\x07\xc7\x1c\x9cM\x98\x83c\x0e\x0e\x8598\xe6\xe0\x98\x83c\x0e\x8e\x8498\xe6\xe0\x98\x83c\x0e\xce&\xcc\xc11\x07\xc7\x1c\x1csp\x86\xa4`\x92\x98\x83Ca\x0e\xee!pp|\xf8Q\xdc\xc92|\xf8\xd1 ;\xd7\x7fl\x0f\x1f~\x94\xa2\x17\xf9\xf0#>\xfc\xe8!\x1c~\xd4\\\xad\xee\xae\x90'=\xff\x8c\xffq\x1c|D\\\xc5\xf7w/\x10U\x1d\x9cu\xd4\xc8aK\x08\xabbV\xf5+\x9e\x01\xa1U \x8ft\xeb\x98\x87\xf6\xa2\x0b\xccC3\x0f\xdd \xf3\xd0\xccC3\x0f}D\xe5\x98\x87N\xcfC\xabe\x00.\x93z\x12\x1a\xcf>D\xbf\xa7\xfccge\x9e\x9d\xb0\x19\x8aFa(\xba\xff)\xb43\x1f\x1c\x14\xedH\n\xaa\x97\xd7.6zt\xc9\xa8\xac\x118\xddW\x80\x81\xe8\x810\x10\xed\xd3\xca^\x18\x88f z^\x18\x88Fa z*\x0cD3\x10m\x13\x06\xa2\x19\x88Fa \x9a\x81h\x06\xa2\x19\x88&a \x9a\x81h\x06\xa2\x19\x88\xb6 \x03\xd1\x0cD3\x10\xcd@\xb4!)\xe0T\x06\xa2Q\x18\x88~\x08@tf\xd0[\x10\xcb\xeddvj\xe7\xc8\x9c\xa0Ll/\xc5a\x99\xd8>a\xe7\xfaYc&\xb6S\xf4\"\x13\xdbLl?\x18b\x9b`\xb9\xf3\xcf\xea\xc3\x1a\x00m\xffL\xc8\xe2\x94\xdaV,c\x08\xb6Me<\xd2mdn\xdbKX0\xb7\xcd\xdcv'\xccm3\xb7\xcd\xdc\xf6\x11\x95cn\xfb7\xe6\xb6\xcd7\xce\xf8\xf6\xec\x05\x8co\xf7?\x85v&\xe3\xdb\x03|\x9b\x96\xd9n~[-\xe7\xeby\x82\xbbep\x9b\xc1\xed\x88\x0f=\x83\xdb\x0cn+ap\x9b\xc1m\x06\xb7\x19\xdcfp\x9b\xc1m\x06\xb7CWI\x0cnw\xc2\xe0\xb6)\x0cn3\xb8=#\x0cn\xcf^\xc3\xe06\x83\xdb\x16ap\x9b\xc1m\x06\xb7\x19\xdc6$\x05D\xcb\xe06\n\x83\xdb\x0f\x03\xdcF\x0c\xc7(c\x84\xee\x10\xa5\xa3\x1cN\xa6\xb3w\x8c\x87\x01\xe3\xda\x8ck3\xae\x8d\xc2\xb8v\xff\xe7\xf0^d\\\x9bq\xed\xdf9\xae\xad\xb1\xbf\xf3\xcf\xfa\xff\xae\xf2\x8d\x03\xd5~\xa3\xae\xea \xed\xac#\x07{p\xb0\xfbK\xbe\xb1\xb3\xda\xba\xa4G\xba}\xf7\x14\xd5\xd6\x8d\xf1\x11c]\x9b\x15*\xd6\xfd\xbb\xdcVI\xe90\x1b\xaf\xed\xf5&\x04\xa0LnR;\xdf\xe8IG\xb7nn\xaf\x87\xbau\xb5\xaf\x8a|}w\xa5\xd6d\x0bk\x1c\xe2@\x98\x7f\xa0\x83\xee\xc6\xcb-EQ!s\xadr\xc3\xde\x89Z\x92\x12\xf3v\xbd\"\xfam\xb0\xfe6\xa5u\xe0B\xe0B\x86 \xba+\xba\x9att\xe7\xe8\x8d\x89f\xa8s\xa2\x9e\xf5\xb45\x87\xd5.o\xaf\xda|g\xf1\xb6y\xab\x15\x06\xee\x86\xbdG\xa36~j\xb7\x9b)\xec\xe0.\x95g\x01wI\xfd\x9d\xe0~p\xe3C\xa7\x06\xcfX\xd4\x8c:\x12\xfb4\x10\xf5\x9f\x06\\v\xd6v\xadw\xb5\xbc\x91wZ\x0d\xfc\xc8Z\x91u*o\x00\xb9P\xb9\xe61\xf0\xe3\xac\x80\xfd\xa1\x96\xcaC\xeb\x19\xef\xacu\xaf:sX'_\x9f:'6\xb3\xc3C\xba\xf6\xaf\xa4\xa1\x1b\xb1\xce\xf1A\xaa\x14#\x9ca&D\x02\xb6\xb5\xc5\xb6#'\x1eq\x9bW\x87F\x95d{n\x17s\xa0\xec9\xebJ\x0e\xa4\x92\xfc\xd6\x1d\xf2\xfd\xeb\x8b\xef_\xbf\xbd|\xf5\xc3\xaf\xd0\xb4Y{\x18/d{I\xa3!\xf4\x90y\x9d\x08{\x9fT\xc2\x1c;\x0f\xc4\xce\xef\xab&o\x0d\xba\xbc\xc8\xb7\xb6\xe9}}\xb7.\xc4\xe4s\x0c\x17e\xde\xe6Y\xd13\xbf\xef\\SG\x802\x8b\xf2\xb0\xb3M\xf5_\xc3\x9b\xb7\xaf\xdf\xbc~\xf7\xe2\xcfW\xef._\\\xbe\x7fw\xf5\xfe\x97wo^\xbd\xbc\xf8\xf1\xe2\xd5\x0f\xc1\xf7\xbc{\xff\xfd\xcf\x17\x97\x97\x11w\xbcx\xf9\xf2\xd5\x9b\x98\x1b\xde\xbe\xfa\x9f\xaf^\xc6\xdc\xa04+\xf8\xfa\xbf^\\\xfe\xcb\x0fo_\xfc\xf5\x17\x8bv\x10\xdc\x1c\xd9]\xdb\xbc\xcc\x8a\xab6+\x8a\xbb+\xda\x81\x1c\xa3|\xd3\xd2\x86\xe6\xfb\xe6\xb0\xa3\xe4\x07E\xa1\xc2d\xc4\x06n\xab\xd6B)\x00\xb1@7yc\x1bu\xddD\x83\xbe\x1a\xb9\x9b\x97\xa5)bPo\x1a\xc9&\x90\xb5\xc6ld\xb35f\xe5\x06\xc7\xa6\xf5y\xd5\xfeP \xf3\xa0\x8e\x0c\xa2b\xc9\xc0\x19O\x06\xa9b\xca 6\xae\x0c\x8e\x8c-\x83\x80\xee\x8d\x881\x83S\xc4\x99AH\x1d\x1d#!]\xcc\x19\x84\xc4\x9d\xc1\x11\xb1g\xd6\x02[$\xcf\xec\xf1g\x90:\x06\x0d\xbcqh\xb04\x16\xcdZ\x1a\xedQ\xdd\xdb\xf5\x80\x984p\x86\xce\x8036\x0d\x16\xc5\xa7Y\x8br\xc6\xad\xc1\xd2\xd85ki\xb4\x0etX\xcd\xd2\xc5\xb0AP\x1c\x1b,\x88e\x83\xb8x6X\x12\xd3\x06\xd1qm\xe0\xf9\xdazb\x8d \"\xde(4\xc6\x0d\x96\xc4\xb9Al\xac\x1b\xb8\x1b\xbe$\xe6\xcdZ\x98\x11Q\x16:d\xc2b\xdf\x9c\x03\xa2\xbcv\xc7\xbfA\xda\x188\xf0\xc5\xc1\x81;\x16\xcez\xcf\xd2\x189H\xa8\xbb\x11\xb1r\x10\x15/\x07F\xcc\xdcP\xc2v\xe0\xda\x01F\x0cj\x917h\xd6\xfe\xb5\xd9|8\xfb\xb9\xb9\xfeU\xd9\xca;\xbd!\xb7\xf5\xc6\x99t\xb3w^c\x12\xd0\x91\xe5dP-\x8c9\xd0\x94\xff|\xa6\xc8.\x9a\x80\x8f\xf3\xef\x85\xb3BrV\xc8^8+$g\x85\xec%\xa9\xd72\xc6c\x19\xe5\xad\xe4\xac\x90\xc7z&\x17x%\x93x$\xe3\xbd\x91\x9c\x15\xf2\x18\xefc\x8c\xe7q\x81\xd7\x91\xb3BrVH\xce\n\x19\xea5L\xea1\\\xe2-\xe4\xac\x90\xb6\xcb\xbc^\xc1\x08\x8f`H\xce\xc3\x18O g\x85\xe4\xac\x90!^=\xce\n\x89r\x8c\xe7\x8e\xb3B\xce\x95\xe4\xf5\xce-\xf5\xccY\xbf\x0d\x9c\x15r*\x9c\x15r\x81G\xcd\xefM\x8b\xf5\xa4Ex\xd1\xa2=hq\xde3\xce\n\x19\xe7!\xe3\xac\x90\x9dpVH%]N\xaf>9\x95Q\xcel\x02\xa6+\xcb\x01\xb3}\xdc\xa59\x15\x1d\x9d \xd2\x92\xee#:\x01W3\xcc\xc0u\x8e\x91\x96T\xc2\\\x1e.c\xdf|)\xaf|K1\x8b\x94\x96L\xcd\xbch\x91\xee\x83\x1933M\xc40\xb6\x11\xcc(\xfe\xa6\x95\xc3%/\x87!\xa6rd\x89\x92\xccOt\x98\xdf\xba\xda\xed\x0f\xad\xd0#\x00\x8dO\xf4P\xa3\xa8\xac\x15F\xe8<\x8d\x1b2\xb0\x94\x15\xda\x1d0\xe4\xf2\x0c^+\x04\x1e\x8d87Y\xb9y&Wi\xa3:\xd2\xc5FyX\xa5\xbc\x85&\xdf\xed\xb1\xad}\xeb\xe7\x02V\xa9>\xd0\xb4U\xddgn\xeb\n\xeb\x1f\xd46\xa2\xd8j-\x99f.3:\\]so\x93\x97\x19Zd\xca\xa0.\xa4'\xe61\x975\x1d4(\xd7i\xf2\xb7\xe9\xa7\xdbZ\x13\xf0\xba\x00=\xf9\x0b\xbc\xc6\xaf\x84y\x0b\x02r\x16\xc4U'A\xae\x02w\x9e\x82\xb8\xea\x1c\x93\x9f 47At\x8d\x16\xe7$\x98\xb2\x05\xc68\x9c\xc7\x0b\x863#\x13\x06Z\x980`\xc2\xa0\x17&\x0c\x980\xe8\x85 \x83\x96 \x83ya\xc2@\x0b\x13\x06L\x180a\x10\xb8Jb\xc2\xa0\x13&\x0cLa\xc2\x80 \x83\x19a\xc2`\xf6\x1a&\x0c\x980\xb0\x08\x13\x06L\x180a\xc0\x84\x81!)\xbc\xbdL\x18\xa00a\xc0\x84\x81\x870\xa0\x83\x91\xee;ap\xb5\xba\xbb2\x8f\x149\xff\xac\xce\xd8q\x9c\xf7e\xec\x9eu\xb0n\xf3\xfd\x1d\x1d\xe0E\x87\x81\xe8\x83\xc0\xfa\xf3?\xba\x1c\x84\xd3\xc3\x97\xba\xc2\xe8\xfc\x97\xe1qK\x03O\xfb\xfc\xd3\xd4\x95\xf7\xd6\xdf\xdeu\xc2\xfd\xf0\x85\xd9\x8e\n\x8b2\x019\x8e\xb1\x19\xf5\xf2\xc2\x03\xc3b\x8e\x0c\x0b\xaay\x88\xfd\x07\xd2\x1e\x1c\xe6::\xccwxX\xd26\xa5\x84\xabV4\xe0;\x9e,\xf2\x802\xfb\x88\xea\x0f.\xf3\x1eQ\x96\xf4\x90\xb2\xa8c\xca\"\x0f*\xf3\xee< `\xf7\x01~\xdc\x97$`\xf4CZ\xf4\x97$\x00\x00&YR\xc1\x0400\x89\xff\xe8\xb2e\x15<\x06\x0f& \x85\x84I\x16\xd6q10\xac%\xf0\x18\xb3\xa0\n\xa6^\xcf'=\xce,\xf0@\xb3\x05G\x9aYKR9\xe3\x82\x0f5Ky\xacY\xe4\xc1f\xa9\x8f6\x0b=\xdc,\xf8x\xb3\xc0\x03\xce\xc2\x95+\xdd!g\xcb\x8f9\x0b\x1aU\xc1K\xbb\xb8\xf3\xbf\xbc\xb7\xbb\x8f;;\xe2\xc0\xb3\xc5G\x9e\xcd-\xcab\x1b\xad\xb3>\x9e\xd8(\xe3\\\x1a\x84-\x0e\xfc\xb0~\x7fU\xc0\x97#|d\x90\xc4\xe2\xfb\x9e\xe2\xdaY\x8a\xcb\x015\xa0D\xa3\xfc\x9e\xf2\xb2\xd6\x07\xf4\x93\xc4b\xfd\xbef\xc4\x1e\x88\x96\x08\xf1'\x89\x06\xfd=\xe5a\x18@\x04\xeeOr$\xf4O\x12\x87\xfe\xfb\xda\xb1\xf0p\xb4\xf80\x00Oqr\x87\x15\x13\x0c@\x12\x15\x12\xe0\xd3\xf7.` 40\x80$:<\xc07>\x9b\x90 \x01\x92d\xa1\x02\xba\xb8c\x02\x06H\x16\x84\x0d\x90$ \x1e \x89\x0f!\xf0\x0d\x93\xf0C\xd3N\x12N@r\xaa\xa0\x02\x92\x13\x84\x16\x90\xc4\x04\x18\x90\x04\x87\x19\xf8\x86\x92\x11\x84\x80\xba\xec\x0f6 I\x18r@\x12\x1ax@\xd2\xc6\x85\x1f\x90\xc4\x06!\xf8\xa6\xb5\xa8\xa3\xd4\x12\x04$\x90x\x8fS\x8bX\xec\x05\x84(\x90\xc4\xad\n\xa3\xc3\x15|Z\x1aq\xb0ZL]\x13\x060\x90\x84\x871\x90$\x0df Y\x12\xd2\xe0\xd3\xb6\xc0C\xd6\x96\x857\xb8\x8bk\x03\x0fZK\x15\xea@\x12\xc8\xec\x93x\xc3\x1eH\"\x82\x1fH\xbcg\x17-\n\x84 \xf1\x97\xed<\xb4$Qh\x04\xc9\x92\xce\x0e\x0f\x93 \xf1\xb7wA\xc8\x04\xc9\xa2\xc0 \x12\xf7\xc10\xc9\x82(H\x02C)HB\x02*\xba+\x03\xc2*H\x82\xdeB|\x88\x05Ix\xa0\x05\x89\xfbX\xb6DA\x17$Q\xa1\x17$\xc7\x04`\x90\xf8;;\"\x18\x83$yH\x06I@M\x9d#%]\x90\x06\x897T\x83dI\xc0\x86\xa38mK\xf7\x1d\xd7\xb6,x\xc3Q\\\xabmV\xce#\xdb\x16\x06r8\xca\x0b9\xb6-(\xa8\x83\xc4}\xfa\x93\xef\xf0\xb6%a\x1e\x8e\xc2\xbc\x07\xb8-\x0c\x03q\x94\xe7=\xc4-eH\x08\x89?0\x84$6<\x84$\"H\x84$:Tdp[`\xc0\x08\x89\xe7H7\xff\xc1X\xe18\x7fh\x08\x89*56\x90D\xdd\x16\x13NB\xe2\xec\x82%\xa1%\x8e\xe2\x82\x0ex[\x16f\xe2\x19.!\x87\xbc%\x0d9Q\x05\xfa\x0ez[v\xd4\xdbq\x87\xbd\xa5\xd4\xea\x88 \x15Upp\xa8\n\x89m1\x13j\x1d\xd0.@\x88:\xf8\xcdZ\xdc8\x13\xe3\xdc\xd1o$!\x15\xec\x0e}\xd3)\x073\x1d\x0d\xd2\x01\x84r\xa3\xb4\x93J^S\\\x0d\xfdn3\xf2\x13\xc2l\x02\xcf\xb3\x97I\x1d\xcb\x06\x81'R\x957b\x9do\x04\x1c\xf6\xd6]\xc8\x8b\xbe\xe1\xeb\xaal\xf2\xa6%\x14\x0d\xfd\x08\xf6n\x9d-\xcb8co\xe8w\x9f\xbd\x9a\xfaY.\xc3\xe4\x94#\xff\xdbT;\xd1\xb92z\xa2?k\x9aj\x9d\xa3aB#\xaa\xf3\x05Zq\xfe\xd9@\xa7\x9e\xa2\xef\xff\x82\xe5_\xe7\xb7\xa2\x9c\x8d\xe1\xe9\x9e\x94]\xe7%\x0e\x8f\xe9\xe6g\xf8\xac\xee\xc2A\nJ\xe3\xcfj\xe96\x17\xb5C\xe2\xf4G\xbb\xfd\xd0\xa5\xf8\xd4^}\x103)2!\xc4\x14\xe95A\x0e\x9a\xfa\x1f\xb6\x01\xabk\xa1 \x0d\xf9\xbf\xca\xbe/5\x00\xdd\x1ao\xb2k\xf1\x96\xf2r\x9e\xd1\xef\x96\xc2(9\xab,F\x16+;R\xc0\xaejZ\x10h\x1dG\xc3:\xc2\x8d\xfd\xc7d\xdf\xde9\x0f}\xac\x05*BY\xc1\xae\xaa\x85v\xaa\xcc\x8d\xff\xb6j3\x8b3?\xb83\x1d\x1c{\x9b\xb7\x85p\xcc|\xf8x\xecE\xfc\x9f\xf2\xa0\xa7\x10\x9dJ\xcap\x19\xd8\xdakv4\x12gWX\x98\xed\xeb\x821\x14\xa2}\x06y\xdb\xf4H\xcc\xa1$e\xde\x90\xbd\xfec\xde\x0c\xf5\xc3=O\x0eN\xce\x1c\x06\xc0\x8d\x12]\xce\xdd\xd8\x9d\xaa9\x8c\xd3\xe3\x04\x98\xbdp\x02\xcc\x88\x98*N\x80\x19G\xcap\x02\xcc\xe3Y\x988\n\x86\x13`\xce\x17\x18\xc6\xb9D\x13.\x9c\x00\xf3\x18\x86%\x9e^\xe1\x04\x98\xc7P*1|J0\x99\xc2 09\x01f\xf0*)\x9a(\xe1\x04\x98A\xcc\xc8\x12Z\x84\x13`\xda.\xf3\x92 \x11\x0cHHz\xc7\x18\xee\x83\x13`r\x02\xcc\x10R\x83\x13`\xa2\x1c\xc3_p\x02\xcc\xb9\x92\xbcT\xc5\x12\x9e\x82\x13`\x9a\x12\xc0Jp\x02\xcc\x05\xb4\x83\x9fs\x88%\x1c\"\xd8\x86h\xaa!\x8eg\xe0\x04\x98q\x94\x02'\xc0\xec\x84\x13`*\xd1 0U\x824\xa3\x0c\xd7.\xd2\x9f-\xaf\xed\x12p\xed\xb5\x03\x8a\x12\x9f\x8c<\x97\x9dk\xd9\x9c\xbe\x8eN\x9a\xd9\xa5\xf5\xec\xfc\xc8g\x1f\xc4\x9d\xadq#\xcf\xacr\xc5f\xea\xc3@\xc7J\xd2\x89\x91\xe4\x1dT\xee\xaf\xceo\x8b\x06\xae\xeb\x91%\x08\x1d\xb1r2\xf3\xf9b_\xcb\xcfxU\xe2\x0e\xb8\xdan\x11+\xa8aX]0\x0c\xf4\x8dh\xc7}\xf57\x95\xfcSK\xdfY\xdb\xach\xbc\xbde1w\xcct\"\xd5/PITc\xb0+\xcb\xc3N\xd4\xf9Z\xff\x0d\xe7\x90uV\xca\xf6\x90\xad\xe7F\x94\xba\xe3\x0feg^\x1b-\xaa)'\x0ff\xaf\xe8\xba\x90\x0cR\x87Fv\xf5\x07\x11\xd9\x9f\xc3\xe2O\xdc\xb9#\xcf\xf6L\xf7\x16\xf9.\x0f\xed]\xbc\xb6\xcb\x17bqx\x93\xe9\xd5\xd4`\xc5R\xf4\x87\x97\x92\xec\xc9\xd0b\xfe\xe9b\x0b\x85\xd8\xb6\x1a\x10P\xc4\x80^\n\xa3\xd5\x98\x06\x08=D\xf6\xf3\xea\x8e\x12)e\xfb\xfdo\xd8\x8b\xa6\xdb\xbe\xbf\xdf\xd5\x97\xc6\x1d\x98\x9bD`\xfb\xe4D\x03\xf2\x7f\xf2r\x93\xaf\xb3Vt\xfe#\x9d>C^8\x13Q\x9e\x97\xeb\xe2\xb0\x19-t3zJ\xe7\xc0\x1b\xbd1t\x07\x1bve\xf9A\x1aP0\x83\xc2\xde_\x8cs\xce\x8d\x9a\x80{\x83Z4\xcaq\x8f\xc3\xab\x1f\x8fr\xc8\xe9\x0cW\xf9uY\xd5#\xab\xbc\x1e\x8d\xc3GP\xcf\x1c\xfbbWUU\x08\x03\xe5\x9ay\x81\xb5\xb8\x15\xf5\xe0V\xd7\xcbSW\x8f_\\n`\x1f\xb5\x98\x1f \x83r\xe43D\x89\xfe\xca\xaa\xde\x88zl\x96{\x97\x97k\xf1\x1dP~\xe5\xaf\x9b\xcd\x07x~\xf6\xc7?$\xed\x8d\xe0\xa4\xce\xb7U+\xaeVwW\xfa\xeby%\xffP\x8f\xce\x90\xfe\x8c\x7ftdw\xfeK\xd5\x8a\xef;\xd2D\xfe\xab\xee\xf29g\x94\x0d\x8dv\xca\x84\xbf\xa1[h\x83\x7f\xef\x1c\\\x83\xa4\xcd3\xe5=\xd2\xddpO36\xcb\xc6x\x105\xec\x075\xcf\xe2\xff\x1b\x0c\x9c\xd1\xdf\xd3\xbe\xe9\xc5Z1\xf0\x02\x1d\xc6\x13N\x07V\xcd\xe2\x7f0w\x8cz\xebI\xe6\x8c\x1d\xb0\xb0\xa2\x93^\xaf=\xebKKo\xebl\x0f\xf3\xd5\x18<\x85.4\xdfn\xfd\xa4\x81\xf5M\x95\xaf\x85v)\xbb\x9a\x1b\xd0*Wv\xa3\xaf\xe1/\xaf/_]\xbd~sy\xf1\xfa\x17of\x9f\xf1\xf5\xff\xfb\x95-\x01\xd1\xf0\xba\x17\xdf\xbf\xbb|qa\xcbs4\xbc\xf6\x97\xd7\x81\x97az\xc9\xab\xbf\xbc\xba\x9c\xbf\xa1\xcbc\x14\xde@w\x96lo?\x878\xbd\xd2\xe6\xc7\x96\xea2\xa7\x14\xde\xdc\xd1\xde\xb6\x84\xe5\x99\x1b\xb4x\x94\x1a\xba\x1d$\x91\xfbHg\xf7\xeb\xf9\xcb\x9e\xf79\x00L\x9c\x99\xe4\xe7\x8f\xdf\xb6\x7f\x0d\xb40\x93\xd8\x0b3\x89\xcc$\xf6\xc2L\"3\x89\xbd0\x93\xd82\x938/\xcc$ja&\x91\x99Df\x12\x03WI\xcc$v\xc2L\xa2)\xcc$2\x938#\xcc$\xce^\xc3L\"3\x89\x16a&\x91\x99Df\x12\x99I4$\x05\x1f\xc6L\"\n3\x89\x0f\x81I4|\xdfF9\xb3\xce\xea\xe9\xa1\xdc\xe4\xaf\xfe\xb2\x87r\xf7U\xbf\x1d\xb9\xbb\xe6}\xdb\xc6\xb9I\xf4\xb7\x91\xa3;a\x9d\xa3\xd0\x92\xc6dK\x86T\x89\x9b&iz\x87\x9f\x83$\xb1\xc2#\xc6\xed\x8ft\x13\xef18rO\xbck^D$\xca\xba\x14~\x8e\xecQ\xa0\x88\x13\x15 \xaap:\\\xc4\x0d\x8c$GF\x82Z\xe7;\x14+\x9c\xab\x98\xbb\xc3\x8e\x8e\xc4\xc1#\xc1\xf8H4@\xb2\x08!\xf1A$A=\x1fb\xa9\x84\xc4(\x89\x1d& \xc0I\x82Z\x15\x86\x94\x84\xb7>\x8e7\xf1\x14c9\x12oP\x17\xf9}0\x0f.V\x9f\x15J\xeb\x17\x98\xd9\x8e\x8e\x86\xd5Y\xedtb\xc4\xdb\xee\xc0\xd8 \xd47.\x8f\xf3\xda\xa1\xb8\xa2'z\xe1\xbcv\x10\xf6]}Hy\xedF\xcb<;:f.%\xf5 \x19\x15\xd826\xc6\xd8X\x9a\x8f9cc\x8c\x8d\xcd\x0bcc(\x8c\x8dM\x85\xb11\xc6\xc6l\xc2\xd8\x18cc(\x8c\x8d16\xc6\xd8\x18cc$\x8c\x8d16\xc6\xd8\x18cc6al\x8c\xb11\xc6\xc6\x18\x1b3$\x05\xc2\xc3\xd8\x18\ncc\x8c\x8d\xddkl\x8c\xf3\xd5\xc5%\x03\xe3|u'\xec\\\xbf\x8er\xbe\xba\x14\xbd\xc8\xf9\xea8_\xdd\x03\xc8W\x87P\xb1\xcaS\x17\x92\x99\xae\xf9\xfe\xce\x96\x92\xce\x9d\x82N\xdf\xf8H7\x89\x11b\x1fi\xc1\x081#\xc4\x8c\x10\x930B\xec\x19\xde\x8c\x10[\x10\xe2\xd5\x9d\"\x88g\xa7 f\x87Q\x98\x1d\xee\x7f\n\xed\xcc\x07\xc7\x0e\x9b\xa8\xb0'\xc5d\xb7L\xe4l\x92\xbd0\x16\x9c\xe6\x03\xcdX0c\xc1\xf3\xc2X0\nc\xc1Sa,\x98\xb1`\x9b0\x16\xccX0\nc\xc1\x8c\x053\x16\xccX0 c\xc1\x8c\x053\x16\xccX\xb0M\x18\x0bf,\x98\xb1`\xc6\x82\x0dI\x81h2\x16\x8c\xc2X\xf0C\xc0\x82\xef]JF\xc6~\x972\x95\x8c\xfd\x9e\xb0s\xfd\xc0*c\xbf)z\x91\xb1_\xc6~\x7fg\xd8\xaf\xdc~\x8a2+\xd7\xe2\x90C\xff\xa1*!S\xc8l?\x13\xc9bUY\xc3Y|\\\xde#\xdd\xee{:\x97\xebf&\x1dK\x16uU\x18\xa8\xe6\x91G\x9bV\x0d\x06! \xd1\xf5tCKp\x9c\xe9\xcd^\xd7r\x0c\xb0l\x00<\xe6\xcf\xa3\xef\x0b\x83\xcb\x0c.\xff\xbe\xc0e\xcb\xd2g_\xb1~\xfd\x8c\xb5XX66\xc1\xc6\x14\x064\xcf\x97>\xe2\xc5\xe5\xe5\xdb\x8b\xef\xdf_\xbe\xba\xba\xfc\xdfo^y\xd3*\xcc\xdf\xf4\xfe\"\xe2j$x\x82\xaf~w\xf9\xf6\xe2\x97\x9f\xc2\xaf\x7f\xff\xf6\"\xfc\xe2\x8b_.\xc3/\xfe\xf1\xcf\xaf_D\\\xfe\xe6\xedkkF\x8b\x99\xcb\xbf\xff\xdf\x97\xd6T\x1c]\x02\x8c\xe8\x97\xe53\xcf@o\x8f\xbd\xbc\xdb\x8bA\xa6\x82\xd6\x88v@\xdbu\xd3\xca\xb5\xc4\xdc\xd7\xd5\x94\x91\xfe\xce\x0f\x0d\x9a\x0e\x8f\x18\xb5\xaaa\x97\xc6\xdc:\xdc\x81\xe6\x0d\xac\xaaC\xb9\xb1\x99\xe5\xc4\xa7}N_\xab\xabM\xd6\xa6\x98@\xa2\x12j\\\xe6:\x0693\xad\xe6\xb8\n\xc7\xaa\xcd\x8ey\xf7\xeb\xec^\xa5\xe2\xd1(\xa2r#\xd7z\xe74\x974m}X\xb7\x87\x9aV\xa0\x9b\xde\x93:\x94\xaci\xaau\x8e\xe1!\x14%S\xce\xf8DHT\x8d\xb2\xdef=|\xfd\xe3\x8f\x1a[\xa3\x07\xc2\xd6\xe8\xfe\xa7\xd0\xce|p\xd6h\xdc(\xc8\xf5t\x90\xbdYY\x98q\xd9\xcfFe6*\xdf3\xa3r\x98o\xdd\\\x87t\xdfw\xc3\x9c|\x12~w\xb0\x99\x05\x8fa\x02-\xdc\xc3\xc4Nu\x9bg\xc5\x8c\x11\xbc\x11Y\xbd\xbe\xc1\xf1\xb9\xca\x1a\xcc\x0d\x87q\xe1\x83\xf2VB\xee\x15\xf3\x12\xde\xfe\xf0\xcb;\xd5\xab'i%[\xcd\xe3L\x92l5?a\xe7\xfa\xed\xbdl5O\xd1\x8bl5g\xab\xf9\x03\xb6\x9a\x7f\xf6@nF\xf7\xf5\x9b\xe8%6s9\xc7>5\xbc\xddr?\xf4\x15m\xa2\xa5\x86\xd3\xad^4N\xfd\xf8;\xb3\x9b\xbb \x1b8\xbd\xf5|\xbc!e\xeb\xf9I\x96\xffc\xf1Y\xb8\xd9z\xce\xd6s\xb6\x9e+a\xeby\xd0Hg\xeb\xf9\xa4,\xb6\x9e[4\x87\xad\xe7\xf0\x90\xad\xe7\x1e\x96;\xc8\xa6>WB\xcfp\xb3\x99\x1d\xd8\xcc\xcefv\xe3\x07\xa7\x01\x9air\xb6\x8b\xb3]\xfcX\x8b.\xdb\xc5S\xf4\"\xdb\xc5\xd9.\xfe\xd0\xec\xe2MH\xf2\x8e9\x8bx\xb3\xc8$nfh\xd7\xcb\xf6\x89\xd5v\xde\x0e\xfe\xf7\x12\x1b\x1e\xb5\xaee\x80\x9cM\xe0l\x02g\x13\xb8\xf7r6\x81\xb3 | l\x02g\x13\xf8X\xd8\x04\xde\xff\x14\xda\x99l\x02\x1f\x9a\xc0S\xe41\xe1\x04&(l\x04g#\xb8\x16\xb66\xc7\xdb8\xd8\xda\xcc\xd6f\xb66\xf7\xc2\xd6f\xb66\xff]Z\x9b\xf1\xbb\xacn\x99\xb3/\xbf\xc1\xdf;\x832]\xdeY7{\xb2\xa2\xda\x1c\x8an98o%\xa6\xa2\x1e\xe9f\xddSS\xb1\xd9!\xa6\x8c\xf6\xac\xd8\x0d\xa3\xb02\xb5\xc0\xd1\xbd3\xec\x93^\x8e\xd8\xa5\xee\xb2OW8e^\x15\xa2\xbcno\\\x1b,\xdb\xd2\x17\x86\xcb_\xf7\x06k\x97}\xcaw\x87\x1d\xd0\xe3d\xcb\xd0@$\xe7\xee\xa2\xa8>\xe2\xd1)\xa5\xd3\x12\x14\xb0\xc1!\xc5\x08\xda\xdc\xa8\xed\x8c\xd2\xca\xb7o^\x8e\xca\xe3\xcd\x0don\xbe\xfc\xe6&d\xd6\x15\x9f\xe8\xc0`9\xe9\xae\xab\xdd.ow\xa2\xcbV\xec\xf1\xec\xfd$\xda\x17E\xf1\xb2\xbfK\xde\xd0\xe09\xe4\xdbC\xb9\x01*\xaf%\xfbPV\xde\xc1.\xab?\x88\x16\xb6u\xb5\x1b\xf8\xf5\\i\xfb'\x0fQ\x17\xdd\xdb\x99z\xd2\x8b\xa6\xfc\x16\xaai\xf52\x92\x04\xe8\x96{\xb2\xec\xc5\x9d\xda\\y&\xbbh\xa6N=\xac\xe5I-\xb2\x1c|L\xaat\x95o\xdc\xcdr}mB\xbe7\xe1m\xef*\xa4[\xafw\x86\xf9F\x94m\xbe\xcd\xfbs\x8f\xd50p91\xb0\xe5\xb8\xbe3\x07\x91\xc5\xcf\xb7\xf3\xbf\xdey\x8d#\xb1\xea\x1d\x89G\xfbH|:H\xb2\x11e\xe5p\x06B\x986\x82\xb7\xcd$AE\x85\xbe^\x80\x97Un\xb8\x02\xa0\xad>\x88R\xb9'\xa8azK\x93\x95\x1b\xc8\xec\xc7\xa5\xeb\xca\xbb\x8e\"\x07\xf8\xe5\xf5\xe5+\xe5^\xc2\xab\xd5\xf9\x889z!.\xcaV\x9d\x1c\xd7\x1d\x1b\xde8\xd5 \xf4\xc1r\xb4\x10q=\xb8\xc9\xaf\xcb\xac=\xd4\xa2\xe9\xd6\xf8r\xfb{]]Wxn\x9b\xcd\x15\x1c\xda\x91\xaa9j\x90\x90\x9e\xf7i\xe9WB\x94\x86\xca\xaf\xee\xdc\xae>\x8d1T\xc6\xb8\x9a\xab\xe0\xa0r\xfd\xb7\xa4?`2/i.\xc0\xc3.\xcd\x1aX\xa6\xa0A\x81\xc6\x8c\xdf\xaf\x12\xd5\xd1)\xc6\x8f\xe6C\xc6%.qK\xf5\x0b\xd2C\xd1\xca\x99\xd5\xf8\xad_\xf6']\xe8\xb3;\x8a\xddQ#\xb9/\xee\xa8\xc9:\xd1\xdc\xb8e\xfd\xb6M\x9f~9\xef\x96\x9a.iQ?x\xe7\xc6;\xb7\x04\xeb\xe3\x17\xf0\xfe\xed\x9f\xcfk\xd1T\x87z\xad\xe3\x12\xe4\xb7\xefP\xe6\x7f;\x88\xe2\xae_,\x0e\x10\x18k\x81\xf2\x9a\xfeHf\xfbg\x1d\xbf\xdc\xeb\xaa\x80\xd5a\xbb\x15\xdd\x11\xb0gpy\x93w\x0b\xf3\xdd\xa1\xe9\xbe\x88\x90\xd9\xd7z\x85\xc8\x9a\xd6\xfe\xac\xaa\x14\xf0\xf8\xfc1\xaco\xb2:[\xb7\xa2>\xc3e\x0c\x1e\xc0\xdd\x88k\xfc\x12\xaa\x85\xf0\xfb\xb7\x7f~\xd2\x8c\x1dbC\xc1Ju\xa7\xf0\xda\x9f\xda\xce\x9c\x0d\x8e\xfd\xab\xcd\xd2\xb2'\x9ff\xf2Ko/\xe4WY\x15\xeb)\xb5\xbf~E-\xc1b{\xb7Un_\xeae\xb0\xce\xca\xaa\xcc\xd7Y\x81c\xc8\xfe\xe4\xa7\xe2\xec\xfa\xec\x99\xecZ\xb4\xd3>>{,\xa7\xad\xb2j\xe5\x1aG\xec[\xb1\xf9\xca\xb5^\xbc(a/;;_\x8bg\xd0\x8al\xd7\xc0\xa19d\xb2;\xf6\xb5XW\xbb}.\xe7\xf0R-\x94Vy\x99\xd5\xb6\xed\x00\xe0\x06^\xf6W\xd3\xf9\x05\xee\xec\x8f\xa6\xb9\x0er\\\x85\x1d\x1a\xa1}1R\x91\xe4\x07\xb5\xda\xc2\x8b\xf2\xee\x0c\xfe\xa5\xfa(nE\xfdl\x14\x7f3\x94\xf7o\xff\xdc\xa8\x95\xad:\xf0\xdd\xfe`\x9cA\x05\xfcz\xd3\xb6\xfb_\x9f\xd1\x7f\x9b_\x9fAU\xcb//\xfd\xfa\x0c\xb5qm\x80;\x85\xbd\xd9\x8dh\xe1\xb0W\xd4\x92\xe3\xb9\xa2\xbe\xc5\x83\xe61\xb5\xf5\xbe!\xd5\xc2\x9a\xb7U\xf7y\xc1\xef\x19\x9e\xdd\xdc@6G\xd6\x92l\xab\xa2\xa8>6\xdf9\xde\xed\x7f\x85\x8bm\xdf\"\xa9\x16:}v\xd7h\xfc\xc45\xcda'6g\xae\x82^\x94\xf0/\x97\x97o\xe0\xa7W\x97r\x95\xab\x86 \x8d1<\xcc\x1e\xe6y,)\x93\xd3\xa2/\xef\xf6\xe2_\xff\xcf\xbfZo\xe8\x0e\x1c,\x95\xbe\xa9\xcf\x08\xbe\xa1}]m\x0ek!73\xf8 \xb3\xed*\xb0\xd6\xfb}\x91\xaf3\xd5\x97rq%\xfb\x8c\x96y\xebl-\xe7\x96\xaa\xfap\xd8w\xab\x96U\xd68\x8c\n\x95\x1b\x1fD%\xc4:\xe2\x86\xa4\xbd\x11;c\x0cmh\x10e\xbaI\xf2\xffo\xab|30gM\x85*\x88\xd3G-\xb6U-\x9e\xe9\x02d\xb9Y\x9b\xaf\xf2\"o\xef\xa0\x14b\xa3\x9d\x9b8\xe5\xd5\xb7\x8e\x96`[\xc8|\x877\xe1\x98=\x83\xa7\xef\x1b\x01\xb7\xa2n\xf2\n\xa9m\xa9\x9e\x980\x0e\xf53+\xb3kW\xebW\xb5\xc8> AN\x05\x9f}e\xd7\xa8_\xaaV|\x07\xad\xfc\x86l\x0f\xe5\x9aF\x98l\x87\x9a\xbb\xd6\x87\xba\xc6\x05\xb4\xb9\x90\xb4O\x97R\x1f+\\u\xdb\xd7\x8f\xea[\xb6:\xc8E\xaa\xfc\x12\x89g\xb8\xe1&\x97\xb1|(\xba\xddqu\xa7\xc7\xa5\xb5(\x84\x1bJm\x94r|\\\xa6g\x99\xbbf\xe3w8R\x1bZ\xcb\x92\x1b\x7f4K\xc1S\xe57\xa0\xcd\x04\x0d\xed\xaf\xec\x1f\xc1\xfc\xfa\xa6\x85\x95cR\"\xd6 o\x0d\x8b\x00m\x04\xd5\xd9\xa8kh\xc4.+\xdb|m\xb1\xa7\x9d\xc0\xfc<\x96\xd0U\xd2\xcfr:Z r\xc3\xe7\x1bc\x813Y\xc7h\x87\xdf\xaa\xba\xb5\xebt\x7f~\xe6*\x0f\xdb\xf7K\xb6\x93e\xfe\xff\xa9 \xff\x97\xf3\x06\xd9\xbe\xd1\xf5\xb1\x8d\xbc\xd8\xaa\x0d\xd7P\xd7H\x1b\xf2\x06>\x8a\xa2\xf8\xfaCY}$\x07\xeeM\xd6@\xa6\xbc\xa6\x91\x83k\xa8\xf2\xcfh\x01?\x1a\x07\xbd3IUG*\xb0es\x95\x91J\xcf?\xecW\x1c\x8cZ\xcf)\xee\x0e\xcdo\xe4\xef\xc5\xa1\x9c\x97\xdd\xf8P\xae\xd2\xf9\xa2h\xc8\xcc?\x07\xabp\xd6}\x9c\x9f\xcayMw\xe1\xc44\xa4-\xa6\xff\xfa\x7f\xfe\xf5+\xc7@J\xa1s\xc3\x07\xba\xd5\x0e\xbbJ\x16\xf9\xcd\xd9\xb7\xdf|\xdb\xda\xf97(\xc8p\xbc\x8d\xc9\x9a#rP\x1f\x03\x92\x90\xdf\xee\xfcs\xe7\xcf\x0f&I\xc8Y\xe9\x01I\x86\xa4\xc8\xd2ls\x93G\xa9\xeb\x98\x1f\xd1\xe2s\x93\xdd\xb3\x84s\xc3\xb1b/k\xce\x97n\xf1z\x83\x17\x97p\xf5; #\"\x01/\x98\x11\x91\xdf\x12\x11Q\x8c\xc3\x0c#R\x0e?=_\x88\x12\x19\xe4y\x9bN\xec\xbd\x8c\xa6x-\x9ce\x0d\xc5\x15\xa1\xd0\x0bgY\x03\xce\xb2f\x88F\xa8&\xeb\xa3\xa5\x04\xd5tM\xc7\x00\x15\x03T\xbe\xb5\x83\xffSB\xc2\x00\x15\x03T\xf3\xc2\x00\x15\n\x03TSa\x80\x8a\x01*\x9b0@\xc5\x00\x15\n\x03T\x0cP1@\xc5\x00\x15 \x03T\x0cP1@\xc5\x00\x95M\x18\xa0b\x80\x8a\x01*\x06\xa8\x0cI\x01\xb30@\x85\xc2\x00\xd5C\x00\xa8:^\xc8(\xc5\xb5\x8f\x0c\xc9\x172<\x8b\xcf\x03P\x1d\xc7OM]=\xf3\xc9Q8\xb5\xdc\xb2\xbc]\x9cZ\xee\x84\x9d\xebO\x8a\xc6\xa9\xe5R\xf4\"\xa7\x96\xe3\xd4r\x0f#\xb5\xdcV\x88\xc6\xc0\x82\xaf\x1a\xd1\xb6dF\xa7R<4p\x0f\x8c\xbc\xebn\xfcQ\x88\x97Y\xb1\x86uV\xac\x0f\x05\"j\xb8\xef\x14\xc3|FE\x01\xfb\x0c}c\x86\xf3\xcd8\xa0\xb3\xaf\x89\x9a\x9a\x95S\x05~y\xf1\x97f\x96\x17vTF]~o\xb1a\xfdJ\xaed/\xdd\x0f<\xc4 \xaaz\x1d#!@\xae\xf5\xf6\x10\xb7D$\x8a\xea\x01N\x17\xa1\xa6\xae]\x92\x0b2\x8d\xc7K\xfd\x1d2P\xa0\xe17\xbd\xfb\xe4\xe8k\xe0#.\x04;'\xe5\x9cr\xa8\x91)o\xeb\x8ca\xfd\x88\x1c\xd70/\xf7\x07\xf5\xe9`\xe5\xf5\xbe+V\xde\x91\x18\xea\xa3U\xb79\xec\xd0\xf4\xa6bJ\xf0\x8aF\xaf>\xb5F\xce\x14e\xd7\xd1uU\xde\x8a\xba\x15\x1b\xd6S\x14\xffka=\x1d\xc9H\x85\xb4\xae\x9a\xea\xdb]B\xdb\x1b\xb9p)\xe6\xacNy\xd9\x8az'6yV\xdfQW\xca-&\xee\x96\xb2n\xbdD?\xcc+r\x93W\xe5U\x99\xdd\xde\x93\xd5B\xd64b.\xe4\x89\xc4S8\x04<\x00|\xa3\x05\xfc*O\xe2\x8f\x9b (\xc6\xaf,$iG\x10,\x1dE\xd6\xd2\x02cb\xe2G\x13\xe0;\xcd\xd7\x1e\xb6\x86u\xe2A\xe9DH\x17\xfd\"\xda\x17r6y#\xb5G\xb5A\x87;i\x8f\x1c\xce6\xd8?\xa8cd\x01\xb4\x04\xbc\xd4b]\xd5\xe8@U\xd6&\xb4\x9f\xe4\xe5\xf5\xd8\x00\xa2\x85\xac\x1a\xb5(2#\xceI\xd7\xea/XD\x17O\xa1S\xe5~\xa2xZ\x0b\xf7Tm\x0e\x85\xe6\xf5\xb0\xef \x86\x84j\xdb\x8a\x12j\xb1\x15u\xad>\x19\x0d<\xce\xe4\x16\xf7\xf1\xf2\x0fT\xf7i \xb3\x85\xac\xfc\x8b\xbf4\xba\x8f\xf4'j\xfc\xe9\x9a)N5}\xf4\xd9\x1bW\xac\xad\xe4\xa6C>\xd0\xf6)Z\x14x\xe5\xfa\xa2x\xe7\x0e\xff\xcc\xe1\x997\x02\x86\xbbo\xce\xf0\x16\xe1\x7f\x9fp\x82\xd9\"\xe5\\\x114S,\x99'\x1c_\x0e~\xf7\xbf\xebw\xef\xef\x98\xb4\xdf\x87\xc8\xafC\xe2oC\x82/C@\xa0\xa0\xc30\xea\x8f\x17\x1c\x15(\x1b\xe4\xb2\xfar\xd8 \x87\x0d\xfafO\xff\x18'\xe1\xb0A\x0e\x1b\x9c\x17\x0e\x1bD\xe1\xb0\xc1\xa9p\xd8 \x87\x0d\xda\x84\xc3\x069l\x10\x85\xc3\x069l\x90\xc3\x069l\x90\x84\xc3\x069l\x90\xc3\x069l\xd0&\x1c6\xc8a\x83\x1c6\xc8a\x83\x86\xa4\x08\xe1\xe2\xb0A\x14\x0e\x1b|\x08a\x83\x06\x98\x99mv\x03\xab\x86k;\x89\xd7j\xd0n\x90\xe6\xf61\x95\xf8\x18\xf6\xa2\xde\xe5M#\xdfVMY9)f.\x1fn\xc3\xe6\xc9\xd0%\x11\x17\xa3\x8d\xfdL\x0bS\xc5Hf\x85=J\xf2\xcb\xb456\\\xd2x\xb2\xb8\x15e{\xd5f\xd7\x81\x9d\xd0]O\xbeH5U\xe3l\x907:\"j6\xee\x06\x93+\x7f\xdd\xa5&>W\x96\xae\x0d\x15\xd9\x9c\xc1\xcf\xd9'(Dy\xdd\xde\xc8\xa2\xbey\xfe\xbc\xf7\xb6L\xd2\xf1\xc7\xf6\x90E\x1bT}\xaf\xd0>\xb8\xa9>\x96W8%4\x81\x9da\xbb\x1d?\xcduU(F\x94\xfe\x86}\x94\xd5\x02\xf6\xd5\xfe@\x9e\xe9\x91\xd9\x90\xd6\x1d\xda\xad:\xf8\xe9bK\x0d{F\xeb\xbd\xd6\x08\x14\xa0`\x82\x8e\x11\xe8J\x9f\x96\xd0\xd6\x07\xf1\x0c\x1d!JIU\xcd\x86\x95\xcad\x19M\x93\xcf\x84ej\xe3L\x17\xf3\xb3\xa9\x04\xd9'\xd1\xac,\xf7p\xc4\x80?S\xf6S\xac\x94Z77c\xd7\xbe\xac\xce\xb1\xef5A\\\x15\x06\x81\xd1]\x9e8\xaa\xd7\xf2JW\xe0\x14\xbeb\xfd\x15\x9cI#\xde\x95\xd4\xedAT\x04\x1a\xfdu\x10'e>L\xfd~o\x03\xa3\xd6\xb5\xc0z#bFN\xa9{\xe2\x07gt\xdf\x07\x0e\xdd+t\x7fF\x8f:<\x12\x87Jw l\x8b\xacE\xfc^]7S\xdc0\xca\x96\xeeT\x81\xfa\xe3\x018s\xf7\xc5\x16\xf2\xf6IC\xde\x8cgPV\x93\x1a\x08A\x98\x11\xb5~\xb6\x90\xbf\xde\x88r\xf8d,\xe4\x19\xdcU\x07\xednW_\x11\xb9\xa3^\xb7]L\xfb\xdcX\xb8\x11\xcd\xc4\xd4\xdf\xcf\xc6W\xb2Kx\x08\x1a\xe2\xd78\x1e\x82\xe32\xed\xea\xd4\x8dDc\x01\xa0G\xe1LI\xdd]\x83Q\xb8x\xf0\xcd<4r\xf4e\xe5\xd1\x83O\x9b\xc2\xcc\xcat\xab/\xc7\xc8\xc4\xcf:\x0fMC\xfc\x9a\xc8Cs\\\xa6C\x9f\xe6\xc6&^\xf4\xc5\x07g\xf7\xd4\xd1\xe8\x9c/g\xfaD<\x89#\x83U\xbe\xb1\x8f\xd6\x99\xb2\x86\xe37h\xb4\xdak\x84\x13\x8cT*j\x8c\xee\xac\xbb\xea\xf0\xe4V\xc0\xfa\xa6jD\x07\xd2@\x93\xed\xe6*\x84\n\xfa\xac\x8b.\x04Q\xb6\xf5\xdd\x80\xb0S[e\xbd9\xc8k\xb9\xe9\x88\xee\xa9\x12\xb2\xe6\x83\xee*j6\xee\xe7\x0e\xb5\x98\xc5\xc2\xf2\x92l\x03dW\xc6Fj+\x1e\xdcT\x1fawX\xdft{\x98Z\xec\xaa\xdby\x06\x13\xc1\xe9\xbb\xeaP+x;\x97J\xa1\xba\xba\x81L\xe5\xfe\xc1\xdf\xceHc\xba\x1f\xe7a\xb9\x1d\x12DdAj\x0f\xb2n;eG*\n\xd9\xf2U\xb6*\xeed\xa5\x8a\xac\xbe\x16u4_mn\xa8\xfc@\xf5\xc4|1\xda\xfe1A\xcd\x04\xb5\x0f\x1f\xf2O\xe9$LP3A=/LP\xa30A=\x15&\xa8\x99\xa0\xb6 \x13\xd4LP\xa30A\xcd\x045\x13\xd4LP\x930A\xcd\x045\x13\xd4LP\xdb\x84 j&\xa8\x99\xa0f\x82\xda\x90\x144+\x13\xd4(LP?\x04\x82:k>\\\x91\xe7\xd4\x8b\x17\x1b<\xf1\xd0\xbc\xaf\xd8aee\xcd\x1b\xe5\xee[ \xb91l`\xe8=^BM\xc6\xf2\xc2}\xa3\x1aQ\x14\x83\x1b]{d\xba\xb8\xe3\xc27\x9bZ4M\xb79W\x988\xb6\xb2\xfa\x88\x93p\xd7T5\xd4\x06\xa5\xe1M\x942\xaa\xad\xb0\xecc\xbb\xc1\x02\x05\xf7\xad\xa5\xc7\x9d\xa1+\xf7\x0b=\x8b\x9c\x9e\xa7~\x18\xb9e\xbfH\xbb\xe8Q_\xa6Y\xa4pW3\x0c\xd3\x97i\xab\xe3\xf9_\xa6\x03\xd0\x04~\xb5\xcf\xea6\x0f>\x14ep\x8f\xe1\xc0\xd2\xa7k\xe8_\xb6\x87b\x9b\x17E\xef\xa8\xd3\xa3u8\xe6\xbb\xfb\x959\x9e\xec\xb0\xfd\x9f\xb1e\xb2\xdc\x89\x17\x87\x86\xfeN\x99\xf9D\x8efR\xf9H\x8a'\x90+s\xf2\xe2\xb4\xfa\xafY+\x9fr\xec4`;\xa9\xa4\xefV\xf1\xa9\x15u\x99\x15\xe1\xb1\"\xc6\x1d\x8a0\xd2\x9e&\xbd6\xd3\x89>\xf5\x95\xbd\x97\xf7n\x1a*B\xd5\xf0DH\x0c\xee\xb8\xd8v\xbc\x1b\xed>\xf2ftrW\xdet\xcf\x86|\x03YQ\x8bls\x07\xe2S\xde\xb4\xcd\xf0\x83i\xcc\xcc=\x19\xf2o\xc82\x1c\xdb\xf9\x16\x95^\xe5\x9b\xdf\xdfg\xb4o\xd4\xeap\x17\xfc\x15\xc5k\x8f\xf8\x88N\x16v\xc4\xeb\xc8o\xe8^\x94\xa7\x7f\x81\xa7\xff\x88N\x9eu\xca\xc9\xb6\x7f\xd8\xc9?\xa2\xe3G}\x99f\xf17dA\xaf\xda\xbe!}\xb7\xf27\xe4\xcb|C\x16\xc5\x80\xed\xb3\xbb]\xe8iZo\xe8Zo\x1c\x98V\xc2}\x96o\x86\x01(\x06\xe9B\x18\x0f\xd2\xe9\xbdOV\xd5f6,l\xf8tu\xc5\xbd\x0d\x0c\xdb\nq\x85\xcd\xb6\x82\x80_\x16\xeac\xe0\xfd\x9e\x02\xef\xbd\xa2\xe8\x95\xceV\x88\xbe\xa4\xb6\x02\xf5kkb\xd0\xa3\x81\xa2E\x16F\x03\x8b\xb5\x8e\xb5n(\x13\xad#E\xb1i\x9d\xfa\xd5\xafu\x01\x00\xfap\xea^\x84\xa0\x8f\xbe=\x0c\xa13\x84\xee#\xb0Bf\x00`\x08\x9d!t\xeb\x95\x0c\xa1\xa30\x84>\x15\x86\xd0\x19B\xb7 C\xe8\x0c\xa1\xa30\x84\xce\x10:C\xe8\x0c\xa1\x930\x84\xce\x10:C\xe8\x0c\xa1\xdb\x84!t\x86\xd0\x19Bg\x08\xdd\x90\x14@0C\xe8(\x0c\xa1?\x04\x08]{\xa8\xc8\x96o\x14\xe5\xa4\xb5\xc9\xf0?\xca\xe2\x8d\nB\xbe\xd7\x0dYS\x94\x0f\xeaL\x9d\xb2\xbb\xae\xca&\xdf\x88zd\x0bB{\xc9\xc7\xb2\xdf\x07\xcfx\xcd\x8ef=\xa6-n\xb3\xfaZ\xb4\xb6\x16\xff\xc7\xb0\xc5t\xf1|\x8b\xe5\x1eZ\xfb\xfe\x8cF\x0f\xee\x97\xdf\xa3a\x19*93\xf2\x1c\x86!\x10\xadU\xa8\xea\xf3\xce\xc3\x8b3q\x069=u\xa5\x0d/h\xa2E39\xae2\xf7\x1b|\x05E&\x17\x00Y\x83\xe6\xb8\xc4\xe8\xcc\xb4;\x8f\x86\x96\xd0\xf6c\xd8\x12\xd0*@\x8a\xd6V\x13\xd7\xd2\x0c\xb5\xd4u\xfcp\xa8\xbe\xd0\xa5\xa0\xfd\\\xf6:ZD\xabR\xe8;\x94\xed\xa2\xbc\x83\xeb\xfcV\x94&\xa7t\xe6(\x8b\x0c\xab\x1f+\xdd\x05\x8d\xaa\xf7\xc7\n6\xf9v+jY\xb4Q\xd6\x98\x99\xba\x1c\\H\x057X\xb2\xc8\xe4$\x88y\xb2u\xe1F\x9f\xc8\xef\xa3.vP\xe0\xa4\xba\xdf\x1fZ\xc8\x8c*w\xe9\xb7\x87u\xec\xea\x8f\xcf\x1dK\x8fu\x85>\xd2\xad\xbd\xa7\xe0\x98\xe2\x9c\xa3<\xf7\xa3\xaajTZM\xcd+\xb1\xbe\xf9\xc3\xb7\xdd_\x95\xc2h\x08\x95\xfa\xecI\xa3\xbf\x02\xe3\xf57\xfd>\xad\xce\x0c\x89\x8eJX\x14\xd6\xd748 b\xba\xce\xb7v\x16xy\x81N\xad\xec0\x81\x9d\xa3\x00+\xben\x8a\x8d\xbc\xa7>\x9e=\x10\x83H\x96\xae\x8f\xe7v6\xaa +za{\xb2\xee\xd2\xbc\x81\xa6\xda\x8dF\x06\x8e\x06\xcf\x83\xbd\x80\x86\xaf\xcbA\xedv\xed\x86\xa7\x00\xffD\x98\x91\x9f\x047R8\xcd\xed\xaa2\xff\xa0\x9d\xbd{Q\xc9\xa5\xaf\x9c\xa2\xd1\x88PA-\xb6\xf2\xc7j\xfaI\x1d\x8a\xabs\x86\x15\xfbRM4\xae\x943w\x9dy\xde\xab\xfc\\8\x8a\xeb\xf8\xb3\x9d\xc8\xcaV90o\x0e\xbb\xac\xfc\xba\x16\xd9&\xc3s.\xe6o\xfd(VM\xde: \x9c\xe4\xad7\x9eI\xefY\xfe\xcf\xf4\xf5\xcaEg\xe8\xcb\xc5\x8fm\xd6\x12\x1c\x83w\xee\xaa\xda6Z\xbc\xa5\xd9:+_W\xe5\xd5\xa1\xce\xbfXO\xe9\x07\xean\xcaq\xaa\xc9J\xfc\x01\xbd\xdf\xfa\x04\x8e\x1eW_\xd4\xba\x1eN\xbd\xca\x9a\x0f\x18\xd3\xe7\x9aa\xe7\x111pab\x102\x13\x85\xccE\x1e\xd8\x14B\xdf\x82\x1b:\x85\xb0bB_eZ\x00\x15\x96B\xa8\xd6\xd2\x94\xbd\xc2\x05\xa2\xc2\"\x18\x15\x82;iF\x05;dUg\xc3_\xdf\xc8\xbd\xe80\xd6\xc0R\x9c\x995\xda\xea\xf4y\x95\xa1u2/U\xeej:\xf0I\xec\xb3Z\x0e)\x82\x96\xce(\xc7\xbe*\xcf:\xbe\x94\x01\xe1\xd90=\xb7\x19!a\xad\xc5\xc5\xd6\xc83>J+np\xe1\xc3\x16M\x8b1:p\x95ox\x0c\xa3\x04\x14\x13\xa6\x9e<\x86\x03:iF\x05\x83\xc6\xb0\x15|\xebr\xe4'\x19\xc2X\xdco9\x82\xcd\xf6LK\x91\xbd7\x1f_\xcf\xe38\xa0\x980\x15\xe5q\x1c\xd0IvM\xb4\x0eg\x87g\xa3K\x93\xb29\xa0E\xc2<\x15\xf2\x98Qm\xbby\xf8\xbdV\x8f\xdb\xd0\xc1\x0b\xaa&t\xe2BF\xc7\x0c\xaa\x97fE#\xc9eZV;M\x1d\xb7\xeb\x1b\xe5|U\x81\xe67\xe2\x0ej\xb1\x16\xf9\xad\x98\x9c\x91\x03\xd6\xfeD\xa3\x95#,\xe2\xb7\x1e\xdb\xd88\xff\xa0t>\x07\x02\x9f\x05!s \x84M\x04$\xfe9\x05\xc2\x8b\x0b\x1b6$\x91\xf3K@#\\s\x0f,\x99\x7f\x9c\xa5\x19\xfeK\xdf\x1c\x04\x8b\xe7!\xa0Q\xc1\xda\x05\xac]\xae\xcb\x97jWh\x97\xfe(\xc4[\xd9_F\x97\xaa\x13\x91\xb6jrW\x8dnia\xd7u\x99\xb5@2\xd0P\x1a\x00\xb2\xc4\xa1\xb7\xe6\x19\xe4m\xa3\x8a\xec\x927\xdc\x8a\xd2\x11\x11\xb3\xc9os<\xa4\x96\xde\x08\x15\xbf\xdc\xa7\xa4\xd3\x1b\x14\xca\xb0&\xaf\xb4\x14H\x8a\xaf\x99f\xd9\xf3\xf9\xac\xdb\x9f\x92\x1a\x1e\x9a\x81\"\x9e\xb8\xads\x8f\xb45\x18/F\xc4\xd6\xd5T\xc2\x88)sV^C\xf5\xb14\x86\xc2\x98^\xed\xe5\xc7>6\x88V\xa0?\xe6E\xf1}\xbeiP\xed\xe5?^4\x1f\x1a\x10\xe5f_\xe5r_\x90\xd56=2\xe2\xeb\xb7x7*_\xae\xc8;9\xa2\xeb\x83p\x8e7b\x16\xdfa\xb5\xbbG\xca;\xb1\xa4\xbe|\xcc!`\xe0\x8dc\xc9\xd6mU\xcb\xc9\xfa:\xab7\x85\x91G\x95\xa2\x864\x0c8{\x9a;(Ul\x9a\xab\xeb:+\xdb{\xbc6\xb6\xc2\x93\xbd\x9c\xe0\xe3?\xe2-\xf5?u\x9a\x96F\xc0^\xd4\xbb\xbci(W\xc6~\xef\xf8\xba\x00\xea\xae}uf\x94\xe4o\xa5\xfde\x908_ I`w\xc99\xf3\xe0]\xc7}\x0do^\xbd\xfd\xf9\xe2\xdd\xbb\x8b\xd7\xbf\\\xbd\xff\xe5\xdd\x9bW//~\xbcx\xf5C\xccm\xef^]^\xfe\xf9U\xe4\x1dW\x17?\xbc\x8b\xb9\xe5\xe5\x8b_^\xbe\xfas\xcc\x1d\x7f\xbd\xb8\xfc\x97\x1f\xde\xbe\xf8k\xcc=\xef\xdf\xfc\xf0\xe22\xaa)\xfd\xffF5\xe7\xc5\xe5\xe5\xdb\x8b\xef\xdf_\xber\xdf\xa5\xb3\xa8-yK1\xe3\x05\xe0M\xa7\xc5\xdd\n\x0f\xbdi\x1d\xc3\xdfb\xa2#G\x8e-\x92~4\xf4\xc1++\xa1\xd6\x12m\x05\x14\xcbB\xcbc\xb9\xce\xf0\x14\xa7A8\xcfeV=\xb6\xf5\x9c\x9e\x19\xfe]\xd4\xd5\xd74\xe3\xf6=\xf0\xcf*K\x8aN\xba\x03:c\x93\x957\x9c\xaf\x07\x0d\x8c\xef\xa6\x7f\xea\xe6%\x95\xceF\x95/\xff\xa4>,\x97\x9f\xfaoK%{\xf0&+\xb6\x18\\\xea!\x1f\xad5\x91\x03n\\\x15\xf97w]\xf0\x9c\xf9W*d\xe1\xe2\x87\xd4\xf5\xa2Q\xfd\xdd\xf4O\x8eZ\xbd\xc4H\x8d\xd45\xd1\xb3\xc5ws\x7ft\xd4\x86\x96\x03\x7f\xcd\xdb\x9bM\x9d}4k\x15\xf7|\x9ay\xbe\x9b\xfe\xc9\xfb\xec\xf7\x18\x8d\xf5_\xcdG[r\xd7\xd8\x9em\xcca\xdfY\xfe\xee\xad\xc5\xcf\x98/\xe9\x8d\xf1U]\xdc\x15\xfd\xdc\xf8\xdd\xfc\x9f\x03+\xf3V\xfc\xedE\xdb\xd6\xc15\x89\x990uD\x9d\xaaI\x917\x98\xc1m\xb0\xaa\xe8\x96\x82\xf3\xf93G\x05\xd2\x12\xe5\xd8m\xfa\x8b\xcd\xa66_B\x87\x1dS&\x1e\xb5\x0eRf\x10U\xeb\x90\x95\xcd\xa45Y\xeb\xaerX\x85\x07\x8b\xd8qg\xaa\xf2\x05-\xf3\x8d\xcaX\n\xc3RtN+w\xacE-\xfev\x95\xb5mmp\xac'[B;Vja\x9d4SY\xb2\xe5w\x1d\xd5\xb6u\xbe:\xb4\xa6\xed\x07\x0d[\xf6^\xef>\xc0\xb9\x8eB0cD\xe70VKY/\xfa\xef9Zk(\xa8\xb0(z.\xcf\xa8]\xde\xdb{,\xc5\xcd\xfe\xafg*m\x05rHT\x93\xae/\xac\xcf\xccZ9Y\xf5A\x92\xb5\xa0\x97\x9c;\x1c=g\xd7g\xf2q\xab\xb3l\xf8Dz\x0d\x8f\xd7\xf8\xcb3x\xfcI\xfd\x8f\xdd\xf9\xfaX\x9cm\xce\xe8\xfa\x7f\x86\xd5\xa1E3\xd2c}\xbb\xfa\xef\xea\xec\x13\xfeOU\xab\xb2\xcf>=\x0e\x19e+w4\xd8\x03\x1de\x01\xe8\xec\x89\x06Y\xff\xe4\x93\x8c\xb1\xaet\x1ec\x03 \x1ac\xf2w=\xcal\xe5\xb8\xc6^o\xa9\\W\xbb]\xde\xa2\x85\xed\xc4\x06\xc3\xb9G\x0e\x0d\x86b\xc6@j)\x0dM\x898N\xb00\xd8\x1eJJ\xf99\xbf\x0b3\x80\xf6\xfe\xe9L}\xa0\x04\x14\x13\xf6\x86\xa3\xbdj\x01\x9e\xb3h\xaf\x99s)\x1d\xe81[\xe6-\x0b\xeb$\xbb&Z\xb1\x0f{\xaa\xe7>\xee\x02\xfa\xc2\x8e#>4\xda\xd1\x97\xf7\xdbFZ\x98\xed\x9a\x16ct\xa1\xe1\x81[\xe5{\xe7d\x960\xb0\xdc\xfa\x9e\xed5\xeb\xde3\xa6\x1aWI\xc1\x8c\xeb-\x05\x1a^\x16\xfcD\xe9\xdcGxh\x8f\xcaH\xae38\xd8\xbb\xbd\xa5\x8eVY\x94\xe8\xa8\xa9U\xd6\xe4\x0d(\xe7\xc8\xd3o\xce\xbfy\xfe\xbc\xbd\x91\xb5\xfa\xe6\xff\xf7\x0c\xc4\xd9\xb5m\xd7\xf9\xfc\xec\xf9\xf3\xe7\xdf|E\x89\x83\x07y/\x9e\x03&\xbfx\xf6\xfc\xf9s\xc8\xcbuqh\xf2[{\xa5~ \xb7\xe7@\xe7\xfa\xd6\x92O'/\xf7\x07r\xdd`\xde \xb1q|A\x7fy\xf1\x17\xbaR\x1f:\xb5\xae\xca[Q\xeb\xf3\xf5\xaa6+4Je)A*H\xbd\x13\x9b<\xab\xefh\xe2\xc2Z\xe8\xbcO\xbd\x9b\xf2\x0c.o\xba\x91k[\xc5\xec\xc8\xb1\x9a\xd3,\x82k\x1a\xb2)\xea\xe0hU\"\xcdp\xb6:\x0d^z[ge\xb3\x155\xae2\x0f\xed0SC\x9f\x1b\x02\xd3l[\xcb\xeb\xf5\xa5\xdf\xb5\x0f\xc01\xcb\x9d\xef\x0e\xbb\x9d|a\xc6{\x11\xdb\xadX\xb7\xf9\xad(\xee`S\x1dV\x852\x10\x1b\xde*{LI\xcf\x8b\xd5\xd5\x0e>b;U\xaf\xea\xf4\xfb\xedMu\xb8\xbeAs\x84\xa5\x98l\xf4\xc0L\xf6\xd1F\xa8\x17d\x9c\xf3\x96\xc9o\x12\xa5\x1f\xa7N\xb2\x14\xf8Q\xbeoY9j\xaa~i\xee%`\xbe\xc5\xdc6\xaad\xd2BY\x0fY\xc67\xcf\xb3\xfd\xbeP\x1e\xf4o\x9e?\xbf\xae\xb3\xbdhl\xa9\xb6\x8c\xce%\x8d\xd5\xaf^\x17\xf3\xac+\xc2V\xa3\xa7\xf4m\xa4\xb4\xd7\xa8\xbe+\xa1\xc7\x02\x0d\x8c\xf7\xef~\xa0\x1f\xca\x9b\xac\xb9\x81\x15&U\xb7u\xf0~_\xdcu}\x81\x90\xc3W\xff\x0c\xef\xe9\x05=So\xe8Y\xff\x12l\xb5Be\x90\xe3P\xbe\x1e\xf8\xa8\xdf\xcbm.\xe4\xce'k\xf4Qx\xff&?#]\x9fY?\x81\xea2\xd5\x15sS\x959\x98\xaf\x1c\x8b*\xef:(l\xe2\x9f>NO\xf8F\xec\x11-W\xe5\xe0\xef\xde\x87M\x0f*xJ\xef\x05V\x02\x13\xca\x9b/P\x16\xbb\xbe\xc9\xf2\xf2I\xd3OJ\xd6T\xf3\xa8\xd2\xfa\x148=\x82\xfbc\xe0\xa4\xb2\xce\x7fM\xe6\x8b\x1b\xce\xb3\x9d]\x8d*\xd8t\xcb<\x95\xb1\x1a\xf5w\x9b\xe5\xd6\x9c\xf4\xb9\x1c\xb4\xbf\xbc\xf8\x8b\xec.J\x19\xd6m\x7f:\xf3b\x88\x1d\xa1\xff\x8a\x9clm\x7f\xb4\x92\xd8\xebl\xb3*\xd8\x0b2l\x0d\xc1V\x05\xdb;0V[Qf\x05\xebX\xe8 \xae\x99\x15\xddI\xec\n\xc6\xee\xd2^+6,$7,\xb8\x15\x1f\xf3\x8du9\xbd\xc2N\x14\x9b\xe4\x00\xd3\xc2\x87\x89\xf1ab\xa9L\x16|\x98\x18\x1f&6/|\x98\x18\n\x1f&6\x15>L\x8c\x0f\x13\xb3 \x1f&\xc6\x87\x89\xa1\xf0ab|\x98\x18\x1f&\xc6\x87\x89\x91\xf0ab|\x98\x18\x1f&\xc6\x87\x89\xd9\x84\x0f\x13\xe3\xc3\xc4\xf80\xb1\xf9\x01\xc2\x87\x89M$\xf4`'>L\x0c\x85\x0f\x13{\x08\x87\x89u\xa7|\x18\xa5\x0c\xf6\x91\x93c@\xf2\xcd\x10\x9d\x91\xef\xa2\xa8\xaa\x0fp\xd8\x9bSQ^~76\x89\xf7\xa7\xef\xb4\xf5az\xf8\xce\xd4m3\x07\x96\x1d\x7f*\xcfy\xef\xee<\xff\xac\xbc\xa1\x8e\xa3z\x8c\x8d\xf4O\xa2}\xd9{b\xafE\xab\xa84$\x13\xf2\x817\xb9\xa3\x03\xe8a\xed4\x15\xd50\x96f|\x90\xcf\xcb1\xdbv\x7f\x0f\xf3\xb1\xd0\xb2\xedo\xe0\x04s\xf2\xbf^\xf3\x8f\x9b\xfb\xf5\xdc\x1eb|I\xcb\xfa.\xe2|]\xdf\x02\x17\xe3\x1b\xcf\xf7\xfa;D'\x1fV\xeb\x19D\xb6h,\x8d\x07\x8d\x9ej\x90\x05\x9c\x9b\xf6g\x0fv\ns\xaf\xf7#-\xcc\xc5>*f8'\xb0\x9b\x9d\xdd\xec>\x1b\xb3\x7f`\x90\xb0\x9b\x9d\xdd\xec\xf3\xc2nv\x14v\xb3O\x85\xdd\xec\xecf\xb7 \xbb\xd9\xd9\xcd\x8e\xc2nvv\xb3\xb3\x9b\x9d\xdd\xec$\xecfg7;\xbb\xd9\xd9\xcdn\x13v\xb3\xb3\x9b\x9d\xdd\xec\xecf7$\x85\xcb\x93\xdd\xec(\xecfg7\xfb\x9c\x9b\xbd<\xecD\x9d\xaf{\x1b\x7f=r\xbbw\x96\xd3\xb9d/\xa7\xf2\xbe\xf7-\x9af\x82p\xed\x8b\xbb\xe4\x1a\xd4\xb8\x95X\xdf\xfc\xe1\xdb.{\xa6\x9a\x97\xf4\xfe\xbcK\xc41Q\xbeT\x8d\x1d\x18'\x92\x12\x05M(H@Q\xba/\x8d\xbc^\xc8\x13\xa05\xbdc\n\x06~P\x9d\x86\x97r~\x98&\xc4\x91\xf7s\xcc\x12L\x1e\xa5\xbdr\xf7\x96)pfXk\x7f\x03\xb7\x9f\xea\xe1#L^!V#X6R\xece\xe9\\\xb5F\x00\xbdf\nf\xaf\x0f\x00 \\\xf9\xf6=\xb9\xf6=\xef\x80\xc4\xf7&H\xbc\x89\xde\x82\xde x\xdbL\x12TT\xe8\x0b\x8e\xc6@\xbc\x95w\x1f\xa3\xb4\x08\x13q\x94\x17\x98\x10n 2B2\xe8\xc8!#B\xb3\xe2\xacZ\xdbS'\x0fg0\x1a2/\xa8\xd8Q2g5\xf4\xd4\xabXWh\xba\xb5\x8c\x17\xff\xeb\x1e\xe5l\xec\x07\x9f\x9do\x99\xcc\xec\xbd\xcc\x12.r\xd1q\xad\xb4e\xaa\xc2\x83*\xf6\x17\xea\xca\x90\x03LN'\xc6o\xfd\"f\xdad\xe7\xf8u\x8f\xdbR|j\xaf>\x88;;T\xe1\x1c_^\x7f\xc1\xa0\xa9\xffa\x1b|\xba\x16\xba\x07\xe4\xff*\xf7Y\xd6\xa8\xc4go(\xcf\xf9A4\xed\x19\xfdn)\x0cQ\x1fZ\xaa\x89O\xad\xecC\x01\xbb\xaaiA\xa0S\n=Ygp\xd1\x1a\xab\xf7}{\x07\xb9\x8d\xcfhoD-\xd0cYV\xb0\xabj\xfd\x82fu\x1aa\xa9#;\xf3`\xcf\xd7\xd7\xe6m!\x1c\xb3\x18\xb1Z\xb9\xce\xb3U\x1ev+Z\x9fj\xa7\xaay*\x90\xa5\x0c\xb3\xa3Q\xb5\xaf\xb00\xdb\x8c\xf21\xc3\xe3\xec\xe903\xe5+n\xe0P\xd2<\xba!\xf7\xd9\xc7\xbc\x19\xeaG\x18\x026Y -%\xc1\xa6\x8b:\x06\xc2\x18\x08\xf3\xad\x1d\xfc\x9f\x12\x12\x06\xc2\x18\x08\x9b\x17\x06\xc2P\x18\x08\x9b\n\x03a\x0c\x84\xd9\x84\x810\x06\xc2P\x18\x08c \x8c\x810\x06\xc2H\x18\x08c \x8c\x810\x06\xc2l\xc2@\x18\x03a\x0c\x841\x10fH\n8\x87\x810\x14\x06\xc2\x18\x08\x9b\xee#\xe3\xf90\xed\x1a\x1f\x14\x93\n\xa0\x8a\xa5\xc5z\x0f\xf3\xd9\x07qgk\xf3\xc8q\xab<\xb5\x99\xfab\xd4\xa2=\xd4%\x9d\xbfE\xceC\xe5\x17\xeb\xdc\xbah\xf9\xba\x1e\x99\x88\xd0\x03\xa7Onq\xb9j_\xcb\xef\xbb:\x96\xad\xdan\x1b\xd1\xca\xdd\xe6\xb0\xba`X\xee\x1b1\xe9\xc4\xbf)tLK\xdf\x8b\xdb\xach<\x1c\x1a\xd8\xec 3\x9dH\xf5\x0b\xd4\x1d\xd5\x18\xecJ\xad6\xeao8\xb9\xac3<\xe6\x88\x8c@7\xa2\xd4\x1d\x7f(\x8dCd\x06%\xd2\x99h\x85h\x9a\xbe\x0b\xc9RuhdW\x7f\x10\x91\xfd9,\xfe\xc4\x9d{\xf0\xea(\x9e\xcb\x16\xd8\xbbx\xed0\x89\xc9\xd4\x1fN6YS\x83{\x02cP\xda>\x9b\x1cEw\xb1\x85Bl[\xcd\x0f(\xa0@\xaf\x91\xd1\x9c\xdc\x9d\x8dF='\x17\xdc\"[\xdf@\xb6\x9f\xe4d\xfa\x82\xbdhz\xf5\xfb\xfb]}i\xdc!{\xb4\xa1\xecRr\x06\xc2S\x9d\xf2r\x93\xaf\xb3Vt\x8e%\xd5\x83x\xa1R$\xb38\xb5\xa2.\xb3B\xfe\x8dJ\x9cC\x83\x7f\x12\xedky\xfd\xf7w\xaf\xd4\xf5\x17?\xa0\xd7\xa7A\x97\xa2>\x12ju\xd7\xc1\xdfx\x98#\xe8\xd2!\xdf\xd8\xe0\xdfI\xb9\xf7\x1e\xfe\xc5\xb6zh6u\xc6\xb6\xdeA\"E$\xbaC\xbf\xc7\xb7Z+\x01^\xc0\x03K\xbcr\x1f\xb3~\x1ck5m\xd7t\x95\x87o\xb8[\xe7u\xc7\xc6Y\x9a\x0b\x905\x1f\xae,\xdd8y\xa4\xfd\xf4i]\x88\xaeL^Rs\x10M]U\x87\xd6\xa8\x85\x1c\xe6\xb9\x0d\xfa\xe8v/\xe4\xf8h>\xd8k\xee\xe5q|/\x0c\xcc\xc5\xb2\xdd\xd8h[\xc6\x0e\xc5\x7f\xb2-\x04w'\x0cW\xf1CRG\xa7R\xa4\xef\x9a\xeeTGI+QT\xe5\xb5\\X\xd8\x0cu\x8d(\n\x9b\x02@\x88\xeeBT\xd3\xe8q\x1d\xe8\xaax\xf5QH\x07\xb6\xaf\xfa\x88\x96\x14\xeb\x11\xc9\xa0\x87]\xb7\x93\xc6\"\x9aF\xd0BJ>\xc9\xd6h\xba\xca\xd7hF\xd0\x19Aw\"\xe8\xfb:_[\xdd\xd9\xacEZX\x8b\x9cZDS\xa2y\x96\xf9\xb6\xc8\xda\xab\xad`\xd5b\xd5\"Y\xaaZ\xc8\xb0]\xed\xb3\xba\xcdmq\x00`\xdd\xe9\x8d%\xfc\xad\x0c\x1ek\x9e\x10\xae6z\xfa\x97\xed\xa1\xd8\xe6E\xa1`]G\x81\xc6\x02\xb2/M\x01zDf\xf5\x7f\xc6\x8d\x9b=\x9e\x80\x8as@NzU\xb1S\x80\x90:4[V\x946\xa2\xdbCQ\x10\xff\xd9\xea\xbf:8f\xec\x0d\xdb\xfb1\xb6}\xbe\xb7\x93l\xc8\x18\xcfT\x9a\xab\xa9U\xed\xe7\xd1\x87\xfb\xeb+\x1d4+\xe8\x15\xea\x9d\xb9\xd5\x80\x9f\xb3OP\x88\xf2\xba\xbd\x91\x8f\xf8\xe6\xf9\xf3\x9e\xd3\x1e\x1bB\x86r\xb1\xed\xb7\xb1\xc3\xc3\x84\xb5\xa1:o\xcc\xed\xac\xb3\xdbk\x91m\xee@|\xca\x9b\xb6yf\xea\x90\xf6\x8b\xd4\xe2\xdf\xd0\xde2\xf7zV\xf9\xe6\xf8\xbdQWH\xd2\xbd\x91,\x96\xb7F\xa7\xdf\x1a\xad\x0ew_pg\x84O;\xdd\xc6\x08\xd7\xaa\xb8/\xda\x8brV\xe3\x817F\xc1/\x8b\xd7\x1d\xbc1\xb2]\xc4Z4\x92\xa5Z\x843\xe2`_$\\\xca@/\xc7\x95x\xc0\x9bz P5C\x953H=\x03\xb5\n\x02U4\xb8\xb8p5M\xa9\xa8a\xaa\xba@Y\xdd\xe3\xb6gU\xfc\xea\xba\\ac:uV\xb9\xc9\xf5u#\x00\xff\xf1tU\xb57\xb0-\xb2V\xf6\xabG\x1b\xab\x9a\x16\xf1_\xf5^OZQ\xe0bw\x9f\xdd\xc1\xd3!\xa1\xe3\x1a\x04z\xbd\xe0\x88\xcaQ^Gyi\xb7\xc2\xa5\xd6l\xce\xe0\x052B\x18EVdk\xb1\xa1p(\xe7\x8a\xe5P\xb6y1,Nm\xae\xaa\x1a\xd6Y\xb9\x16\xf2\x1f\xbc\xd1\xe5\x8dn\xe8\xcb\xe1\x8d\xaeg\xa3\xeb\xeeJ\x9d\xf5`\xe2\x19^\x9a\xf5`\xea\xba\xe6\xac\x07\x9c\xf5\xc07\xe2C\xc7;g=\xe0\xac\x07\xf3\xc2Y\x0fP8\xeb\xc1T8\xeb\x01g=\xb0 g=\xe0\xac\x07(\x9c\xf5\x80\xb3\x1ep\xd6\x03\xcez@\xc2Y\x0f8\xeb\x01g=\xe0\xac\x076\xe1\xac\x07\x9c\xf5\x80\xb3\x1e\xcc\x0f\x10\xcez0\x91\xd0\x08t\xcez\x80\xc2Y\x0f8\xeb\xc1\xdc18\xf9f\x94\xd6@*\xc6\x93\x06:oQ[u6\xa7):y\xfa\xc4\x06\x86/\xd2\xd6&\xd3]\x89\xa3\xa9w\xfe\xc9\xda\x17U\xf5\x01\x0e\x938\xed\xb8j\x0f\xcc\x0c\xa9\xa2WU!\x96\x80U\xcau\x8e\xbe\xbf\xa6\x8fU\xed^C\x83#H\xbd5\xdd\xb8\xf9\x93i\xa8\x8c\xbf\x8f\xb8\xd4{\xe2\x7fs\x87\xa5F\x19\x9f\x1c\xa1\xa9p\x92\xe0Toxj\x98m e\x88jd\x90\xaa\xf7\x05B\xc0K\x840\x1e\xdb\xe7h\xee%\x8c\xc9\x0e\xef^H\xcae\x87\x90\xd9\xfe\xb0\xd5 \xdd\x86\xc8F\xa6\x0d^]\x1e\xbe\xea\xe7\xb4\x83\x14\x0f\x02\x95\x0f\x18d\x9c\x93\xdf5\xc8\xe8!\xb8Y\xbf\xe6\x85\xf5+P\xbf\x96\x04\xbd\xb2\xd2\xcd\x0b+]\xa0\xd2\x05R\xc2\xa1\x9cp\xdc[Z\xc0\n;\xcb\xc3eG$-\xec,0'\xef\xa0\xfb\xa1i\x89a'3\x1cH\x0d\x9fdH%f\x87S\xd3\xc3I\xf9\xe1#\x08b-\x9e`\xd9\xf0\xbeO\x170\x1b\x172\x1b\xf4i \xf9\xac\xf0Fm|\x8d;\x88\xf6$\xa37i(\xed\xf2`Z\xde\xa6\x99\x12\xf3\x02yE\x13\xb8\xa2\xe1mZ'\xac_VY\xae_\x91!\xb8n+w/\xde0\xdc`\xc5\x0dW\xdd@\xe5\x0d\xd67\x08V\xe0\x88\"c\x948\xad\x1a\x87*rjU\x8eV\xe6c\xd49\xae\x83S\x86\xe8. \xd2u\x8f\x8f\xaa_\x898\xc3tS\x07\xea\x1e\x1b\xaa\xcb\xdbp\xde\x86\x87\xbe,\xde\x86Gl\xc3\x07\x1d\xfb\x9a\xf6,MS\xad\xf3\xac\x15\x8dQM\x15\xcc\xa0R\xee\xf7\xc3\xb8E8rR\xf0\xd4\xb7\xab\"\x85\xe8\x80\x04\xb3\x88F3z\x1d\xdc8\xf4\xebk\xe9s\x87O\xf5i\xf083\xa3\xba\x06\xe2\x9aC\xd1\xca7o\xfc\xd6\xb3$\xd3\xea;\xd7\x11\xee\xb5\x83>0b^\xe9\xbd\xea\xee\x0d\xdb\x184\xf5?l#\xa1;\xb6B\xf5@w\x82\x05\xec\xe5\xf6\x12\xb5\xdf<$\x9f~\xb7\x14\x86\x11\xd7\xe4\x95w\x1cqq\xd1\x1a\x10\x15\x9e&`\x0b\x93\x95\x13\x8f@u(+\xd8U\xb5~A\xb3\x910\x98\xed\xfe\xc8\xcet`\x08m\xde\x16\xc21\xa5t\xc9\xf6m\xa7/\x18\x81T\xb6\xf6\x9a\x1dm\x9e[`\xb9\xfcc\x86\xdf\xdag\x90\xb7\x8d\x0e\xd9k\xe0P\xd2\x9amCQL\x1f\xf3f\x9a\xd9\xde\x1f\x97oB1KC\xf2\x07p\x0eG\xe3s4\xbe\xef\x03\x1e\xfa\xf1\xe6h|\x8e\xc6\x9f\x17\x8e\xc6G\xe1h\xfc\xa9p4>G\xe3\xdb\x84\xa3\xf19\x1a\x1f\x85\xa3\xf19\x1a\x9f\xa3\xf19\x1a\x9f\x84\xa3\xf19\x1a\x9f\xa3\xf19\x1a\xdf&\x1c\x8d\xcf\xd1\xf8\x1c\x8d??@8\x1a\x7f\"\xa1\x91\xd1\x1c\x8d\x8f\xc2\xd1\xf8\x1c\x8d\x1f\x16\x8d_\xc1\xb5h\xc9\xdc\xda;\x8b\xb7\xd5\x17\x8e\xc2\xa7\xc8d\xfc\xd2\xf4\xb7\xb8\xb6\xc4\xfd\x0d\xb2i\x1d{ \x87\xcd:+\xd5\x99\xee\xaa5mE\x9f\xdd\xc7Y\xf3\xe1\xb1\xdc\xfc=^\xe5\x9b\xc7\xd3\xe2\x9aq\x9bc\xcf\xa0\x1eY't\xe3\xf0cN\xf0\xbc\xe3]\x8d\x1a8\xbc\x89\xdc\x87\xbb\xbc\xccw\x87\x1d<\x15\x9f\xd6\xc5\xa1\xc9o\xc5W\x1d:p\x06/\x8a\xa23?\xca\xb1=(n%\xb0v\xeb\xb6\xb8\x83\xebZd\xad\xb6\n\xb57y\xeav\xc7\x1c1\xffA\xdc\xd9:d\xe4wW\x8ev}V\xbey\x009\xf9~\x95\x83\xb3\xf3\xca\xa3 \xf3zd\xeb\xc3\xa6\xc9\xcf\x95\xcf\xd3\xfeZj\x8c\"1\xd4y\xefU\x0d\xc3\xea\x82\xe1\x82Ip\xa0\xbb\xb5\x1b\x07\x06\xad\x99N\xa4\xfa\x05*V\x7fx}\xa6\x13\x00\xe8\xbf\xe1WB\x0e\x9f\x95P\xd6\xb5u\xe6y\xdbr\xad\xee,\xb0\xcbG\xb8\x13Y\xd9*\xb7\xc2\xcda\x97\x95_\xd7\"\xdb\x10[h\xbb\xf9\xa3X5y\xeb\xf4\x8c\xc3i\xfa\xc1x2\xbd{\xf9?\xd3W~\xad8'_\x96>\xea-\xf4\xe8d-9\xaf\xf1^\xcc\xd24\xdf\xc3\x01\xe59\x0c'\xeb\xaa\xbc:\xd4\xf9\x17\xee5\xfdX\xdde\xb9\xa2\x99\xf0\x07\xf4S\xe9\x1ch}F\xb6\x85\xed\x0c\xa9\x16}\xca\xbf\xa7\xe5@cXn\xd4VLN\xae\xb8Xx\x06\xcda/j\xe5\xf5\x99+j\xfa\x8e\xc6\xe7\xa4\xf523\x87\xceei\xc3'+\xde\xab(\xf4\x85\xe3\xe28=\x1b\x8a\x0b\x13\xef\x85\xd3\xb3\x01\xa7g3D\xa7g\xeb\x97\xf5\x8bh\xbc\xe16\x83a<\x86\xf1|\x1f\xce\x90\xaf\x130\x8c\xc70\x9e\xf5J\x86\xf1P\x18\xc6\x9b\n\xc3x\x0c\xe3\xd9\x84a<\x86\xf1P\x18\xc6c\x18\x8fa<\x86\xf1H\x18\xc6c\x18\x8fa<\x86\xf1l\xc20\x1e\xc3x\x0c\xe31\x8cgH\n0\x8aa<\x14\x86\xf1\x1e\x02\x8c\xc7)\xae\xe2\xf2\x07q\x8a\xab\x13v\xae?9\x13\xa7\xb8J\xd1\x8b\x9c\xe2\x8aS\\=\x8c\x14WX\xcf\xf3\xcf:=\xe5\x7f\xd2\xbd\x16*\x9bN\xbc,\xaa\xeaC\x83\x1e4}\xde\xe5\xea\x0e\xf2\x8d\x0d\xbe\xc6\x9b\x1e\xe9\xb6\xdcS\xee\x1a\xdba\xe3\x14\x16\xa1S\xbaGOG\xfb\x0c:\xca\xcc/\xdaz\xa1i\xa5\x9d\xd32\xb3\xe6\xc3\x95\xa5/&\x8f\xb4\x9a\xf6\xbbB\xba\xf0\x84y\xd8T]#g.KI\xddj\x9a\x0c\xf1\xcd\x07{\xcd\xbd|\x88\xef\x85A\x08\xf1\xee#h\xb4\x84P\xef\xa1\xdd f\xc5\xc6\xe4\x88\x8e\xf7\xa0\xcf\x8a\xeeTGI+QT\xe5\xb5\xfc\xae\xdb\x0cG\x8d(\n\x9b\x02@\x88\xeeBT\xd3\xe8qZU4$\xaf=>\xc4\xbeS\xfb\xaa\x8f\xb8\xb3w\xc2\xa5\xa4Szg\x87E4\x8d\xa0u\x8c|\x92\xad\xd1t\x95\xaf\xd1\x9e\xb3\xf2\xfd\n\x06\xd85\xde3\xf2\x83\xba8\xecl\xfc\xa0\xa2\xc2\xdfV\xba\xf3\xf0C\xce\xc2\x8f>\x07\xdf\xe3\xf2\x0f>\x03\x7f\xe9\xf9\xf7xV3/\xcd(\xb5>\xd8\xa8\xab\x17\xe4.\x8a.+j\x91m\xee@|\xca\x9b\xb6yf\xea\x90\xb6\xd3\xd7\xe2\xdf\xd0\xdc1\xf7zV\xf9\xe6\xf8\xbdQWH\xd2\xbd\x91,\x96\xb7F\xa7\xdf\x1a\xad\x0ew_pg\x84O;\xdd\xc6\x08\xd7\xaa\xb8/\xda\x8brV\xe3\x817F\xc1/\x8b\xd7\x1d\xbc1\xb2]\xc4Z4\x92\xa5Z\x843\xe2`_$\\\xca@/g>\xccL\x8b5\xdcLK\x90j\x86*g\x90z\x06j\x15\x04\xaahpq\xe1j\x9aRQ\xc3Tu\x81\xb2\xba\xc7m\xcfN\xf8\xd5u\xb9\xc2\xc6t\xea\xacr\x93\xe7\xe9F\x00\xfe\xe3\xe9\xaajo`[d\xad\xecW\x8f6V5-\xe2\xbf\xea\x9d\x8e\xb4\xa2\xc0\xc5\xee>\xbb\x83\xa7Cb\xc45\x08\xf4z\xc1\x11%\xa2\x9c~\xad>}N\xb9\xd3\xdaBl\xce\xe0\x052+\x18\xd5Tdk\xb1\xa1\xf0\x1c\xe7\x8a\xe5P\xb6y1,Nm\xae\xaa\x1a\xd6Y\xb9\x16\xf2\x1f\xbc\xd1\xe5\x8dn\xe8\xcb\xe1\x8dn\xc0Fw\xd0\x9d\xe4\xf1\xed\xf2{4F\x15U\x1c\x92\xc2d\xfaa\xda\"\xd7\xfc\xc8Z\xa45\x9c\x1f\x9f\x15\x16\xc9?\xf6+k\xe1 ~\x0e\xe2\xf7M\x18\xa1\xd3\x05\x07\xf1s\x10\xff\xbcp\x10?\n\x07\xf1O\x85\x83\xf89\x88\xdf&\x1c\xc4\xcfA\xfc(\x1c\xc4\xcfA\xfc\x1c\xc4\xcfA\xfc$\x1c\xc4\xcfA\xfc\x1c\xc4\xcfA\xfc6\xe1 ~\x0e\xe2\xe7 \xfe\xf9\x01\xc2A\xfc\x13 \x0d\xa8\xe6 ~\x14\x0e\xe2\x7f\x08A\xfc::\xce(\xc4\x19=\xd7\x9f\xa7\xa3|Z\x15Z\x85\xe00 J\x8e;P',$yQ\x0c\xa7\xba\xc3~\x9e\x0e\xfa\xcb\x1ayA\x83Fc\xbaK\x7f\x04uy\xb0\xab6\x87\xfe\xf0\x86\x99\x93t\xa8\x9cG\xba\xbd\xf79\xa0\xf3\x9e8\xad\xb4v%\xb0\xd88\xc2A=*\xbd0 \xd4\x1b\x12\x1af\x90\x01H\x19\x16\x1a\x19\x18\xea}\x81\x10\xf0\x12!\x8c\x81\xf6yg{ \xe3\xa0\xc3\xbb\x17\x92\xb2\xd0!4\xb4?T4H\xb7!\xb2\x91i\x03F\x97\x87\x8c\xfa\xd9\xe8 \xc5\x83@\xe5\x03\x86\x07\xe7\xe4w\x0d\x0fz\xa8i\xd6\xafya\xfd\n\xd4\xaf%\x81\xa6\xact\xf3\xc2J\x17\xa8t\x81dn(\x9b\x1b\xf7\x96\x16\xf0\xb9\xce\xf2\xd4)\x8eQ\x84\xae\xb3\xc0\x9c\\j\xee\x87\xd6I)]'\xa7\x1bH\xea\x9edH%\xe6uS\x13\xbbI\x99\xdd#\xa9]\xf0\x07\xa8\x86\xf7}\xba \xd5\xb80\xd5\xa0OK\xc8g\x857j\xe3k\xdc\x81\xab'\x19\xbdI\xc3W\x97\x07\xb0\xf26\xcd\x94\x98\x17\xc8+\x9a\xc0\x15\x0do\xd3:a\xfd\xb2\xcar\xfd\x8a\x0c{u[\xb9{\xf1\x86\xbe\x06+n\xb8\xea\x06*o\xb0\xbeA\xb0\x02G\x14\x19\xa3\xc4i\xd58T\x91S\xabr\xb42\x1f\xa3\xceq\x1d\x9c2,vI`\xac{|T\xfdJ\xc4\x19\x1a\x9b:8\xf6\xd8\xf0X\xde\x86\xf36<\xf4e\xf16\x15\x8eT\xe7Hu\x9bp\xa4:G\xaa\xa3p\xa4:G\xaas\xa4:G\xaa\x93p\xa4:G\xaas\xa4:G\xaa\xdb\x84#\xd59R\x9d#\xd5\xe7\x07\x08G\xaaO$4j\x98#\xd5Q8R\xfd!D\xaa\xf3q\xf3qgy\xf3q\xf3'\xec\\\xffA\xe9|\xdc|\x8a^\xe4\xe3\xe6\xf9\xb8\xf9\x07t\xdc|s\x8e\x11\x19\xe7\x9f\xf1?\xee#\xe7_\xc8K\x143\xd1\x1d<\xdf\xd1R\x0dj]\xd6\x9b\xa3\xb1D\xa2n\xf5k\x9f\xa40\xe9K|\xa4\x9b\xccIL\xbc<\x03\xd6\x85\x93\x98p\x12\x93\x81\xfc\x1eb\xe38\x89 G\xc7)\x89y\x83)\xc3>\xc2\x82>\xd2\x86|\xb4q\x01\x1f\xcb\xc3=8:\xae\x13\xd6/\xab,\xd7/Nb\xc2J\xa7\xe5\x8b)\x1dGO\xb9\n\xe4\xe8\xa9^8z*\"z\x8a\x93\x98\xf4\xc2\x1b\xb5\xf15\x9c\xc4\xc4\xdfz^\xd1\x0c\x85W4\x81+\x1a\xde\xa6u\xc2\xfae\x95\xe5\xfa\xc5IL\x9c\x12\xa6\xc0\x11E\xc6(qZ5\x0eU\xe4\xd4\xaa\x1c\xad\xcc\xc7\xa8s\\\x07s\x12\x93y\xe1$&\x86\xf06\\K\xe0$\x17\xf3\xb2x\x1b\x1e\xb1\x0d\x1ft\xec\x97Nbbx\xf6iZR\xb48\xee\x80\xc6\x85r^\x13\x14\x17\x1d\xd8\x0b\xe75\x810\x0c\xe1\xa1\xe55\xe9\x91\x98\xc5\x99M\x0cN\x87s\x9bpn\x13\xdf\xe7;\xf4\xd3\xcd\xb9M8\xb7\xc9\xbcpn\x13\x14\xcem2\x15\xcem\xc2\xb9Ml\xc2\xb9M8\xb7 \n\xe76\xe1\xdc&\x9c\xdb\x84s\x9b\x90pn\x13\xcem\xc2\xb9M8\xb7\x89M8\xb7 \xe76\xe1\xdc&\xf3\x03\x84s\x9bL$4\xcf\x04\xe76A\xe1\xdc&\x0f!\xb7 :p\x8d\x12\x06{H\x8a\xdcV\x8eI$\x8ep\x02\xed\x82\x18\xaf1+\x86\xf6\x0c\x9b\x13Q\x8e\xde\xdd\xc1\xec\xd7\x07\xb1\xb7\xf5\xc1\x9b\xaaA\xd7\x8f\xa2\x8d\xf1\xfb\xd1\xdf\xe1\xda\xe8\xf67\xc8\x8aw<\x81\x1c\x0c\xeb\xacT /T\xa5\xdb\x8a>\xa6\x8f\xb3\xe6\xc3c\xb9\xa5{\xbc\xca7\x8f\xa7\xc55\xe3\xa6\xc5\x06\xe8[\x1a\x87\x9fh\x02\xe2\xaf\x06\xf0\x80\xab\x81\xc3\x9b\xc8'\xb8\xcb\xcb|w\xd8\xc1S\xf1i]\x1c\x9a\xfcV|\xd5\xe1\x00g\xf0\xa2(:\xa3\xa2\x1c\xb1\x83\xe2V\x02k\xb7n\x8b;\xb8\xaeE\xd6j[O{\x93\xa7nwL\xfe\x0d\xce\xb4\x03\xfen\xe4L;'\xec\\\xbf\x8er\xa6\x9d\x14\xbd\xc8\x99v8\xd3\xce\x83\xca\xb4C\x04\xe1\xf9\xe7.V\xcb\x9dn\xe7g\xbc\xcc\x91oG.\x8c\x15\x96\xa8\xdf\xf68\xc1\x8eY\xc6#\xddT\xce\xb0\xe3\xa5j\xf42+\x81K\x893\xec\x90p\x86\x9dY\xf9\xd2\x81\x9b\x9ca\x87C7\x95\xc4\xbc\xc1\x941Ia\x11Ii\xe3\x91\xda\xb8h\xa4\xe5\xb1H\x1c\xba\xd9 \xeb\x97U\x96\xeb\x17g\xd8a\xa5\xd3\xf2\xc5\x94\x8eC\xfb\\\x05rh_/\x1c\xda\x17\x11\xda\xc7\x19vz\xe1\x8d\xda\xf8\x1a\xce\xb0\xe3o=\xafh\x86\xc2+\x9a\xc0\x15\x0do\xd3:a\xfd\xb2\xcar\xfd\xe2\x0c;N S\xe0\x88\"c\x948\xad\x1a\x87*rjU\x8eV\xe6c\xd49\xae\x839\xc3\xce\xbcp\x86\x1dCx\x1b\xae%p\x92\x8byY\xbc\x0d\x8f\xd8\x86\x0f:\xf67\xca\xb0\xa3\x90\x9f.da\xe8\xd6\xd7\xc2\x19vP\\T`/\x9ca\x07\xc20\x84\x07\x96a\xc7db\x96\xa6\xd8\x19\xb09\x9cc\x87s\xec\xf8>\xe0\xa1\x1fo\xce\xb1\xc39v\xe6\x85s\xec\xa0p\x8e\x9d\xa9p\x8e\x1d\xce\xb1c\x13\xce\xb1\xc39vP8\xc7\x0e\xe7\xd8\xe1\x1c;\x9cc\x87\x84s\xecp\x8e\x1d\xce\xb1\xc39vl\xc29v8\xc7\x0e\xe7\xd8\x99\x1f \x9ccg\"\xa1\xf9N8\xc7\x0e\n\xe7\xd8y\x089v:b\xd8(e\xb0\x8f4\x90b\x05mo\xf4\xf4\xa7\xa1bJ\xb6\x83\xe6\xd6\xc1q,\xe6\xcc\x14\x9ftg\xea\xc5\x99'\xa69\x1b\x8f\xad\x81\x9c\x8d\x87\xb3\xf1p6\x1e\xe0l<\x9c\x8d\x87\xb3\xf1\x90p6\x9e\xbf\xf3l<\xe7\x9f\x0dl\xd2\x9d\x9b\x07\xc9\x9f\xef\xef^\xa9\xeb/~\xe8\x13\xf4t\xbc\xe0\xeaN\xaf\xe2\xd0\xf9\xb71qF\xad\x0f\xe3|=\x93r\x1f\xe9\x1e\xb9\xcfI{<0\xe2 .\xb1&\x08LX\xa3\n\xad\x95\x00/\xa9\xa3\x97c\xa7C\xe5\xa6\xed:>_\x8f'[O\x88\xe7)e\xa6\x9e\xa8<=\xce\x97\x05\xde\x17\x06a\x81\x9f\xb6M\xcbP\xc2\x82>\xc3\xba\x13\x92\x06|\xfa\xc3=}Yy\xbc\xba\x0bQMK\x9b\x8f\x87t*>\x1b\x8f/\xc8\xd3\xab\\\x10\xa4`\x10\x16\xc1\x14\xd4\xc5a\x91KAE\x85\xbf\xadt\xd1J!\x91J\xd1QJVk\x11Ip\x84\xd2\xd2\xe8$O('k\x11 k\x91S\x8b\x96\xe4\xd5a\xd5\"a\xd5r\xaaV`\xd8\xde\xfcNo,\xe1oeA\xc0\x9e\x0b$\x87\xf8p={8\x08\x15\xe7\x0c\xd6K\x1c\xaa\xe7\x08\xd4\x0b\n\xd3K\xc0a\x12\xa7\x1dW\xed\x81\x99aa\xf4j\xf5\xb1\x14\xf5\xf9g\xfc\x8f'TU^\xa22\xd5wA\xaa\xad\x91L\xa4\xaev\xd0\x9agO`\xa1\x1a~\xd4M\x9dD\xaa\xf6\xc5>\xd2\xad\xbe\xcf1\xaa\xf7\xc4\x17\xe7\x0eQ\x8d2D9\xc2T\xe1$\x81\xaa\xdeP\xd50;\x13@\xcap\xd5\xc8\x80U\xef\x0b\x84\x80\x97\x08al\xb6\xcf\xe9\xdcK\x18\x9f\x1d\xde\xbd\x90\x94\xd1\x0e\xa1\xb4\xfd!\xacA\xba\x0d\x91\x8dL\x1b\xc8\xba<\x94\xd5\xcfl\x07)\x1e\x04*\x1f0\xd48'\xbfk\xa8\x91O,\xed\x84\xf5\xcb*\xcb\xf5kI\x00,+\xdd\xbc\xb0\xd2\x05*] 1\x1c\xca\x0c\xc7\xbd\xa5\x05\xdc\xb0\xb3<>\xd1R\xcb \x86Tb\x8e85I\x9c\x94%>\x82&\xd6\xe2 \x9c\x0d\xef\xfbt\xc1\xb3q\xe1\xb3A\x9f\x96\x90\xcf\no\xd4\xc6\xd7\xb8\x03jO2z\x93\x86\xd5.\x0f\xac\xe5m\x9a)1/\x90W4\x81+\x1a\xde\xa6u\xc2\xfae\x95\xe5\xfa\x15\x19\x8e\xeb\xb6r\xf7\xe2\x0d\xc9\x0dV\xdcp\xd5\x0dT\xde`}\x83`\x05\x8e(2F\x89\xd3\xaaq\xa8\"\xa7V\xe5he>F\x9d\xe3:8e\xb8\xee\x92\x80]\xf7\xf8\xa8\xfa\x95\x883d7u\xd0\xee\xb1a\xbb\xbc\x0d\xe7mx\xe8\xcb\xe2mx\xc46|\xd0\xb1\xafi\xcf\xd24\xd5:\xcfZ\xd1\x18\xd5T\x81\x0d*\xfd~?\x8c[\x04%'\x05O}\xbb*j\x88\x0eK0\x8bht p\xef\xdd\x1f\xf9\xf5\xb5\xf4\x99\xc4\xa7\x1a5x\xa0\x99_]\xe3q\xcd\xa1h\xe5\xbb7~\xeb\xc9\x92i\x03\x9c+ \xf7\xeaA\x1f\x1f1\xaf\xf6^\x85\xf7\x06q\x0c\x9a\xfa\x1f\xb6\xb1\xd0\x1db\xa1z\xa0;\xcf\x02\xf6r\x83\x89\xfaO\xa7^`\xb2\xeb3\xfa\xddR\x18\xc6_\x93_\xdeq\xe0\xc5Ek Ux\xb6\x80-hVN=\x02\x15\xa2\xac`W\xd5\xfa\x05\xcd\xc6\xc5`\xee\xfb#;\xd3\x01\"\xb4y[\x08\xc7\xa4\xd2\xa5\xde\xb7\x9d\xc5`\x84U\xd9\xdakv\xb4y\x8a\x81\xe5\xf2\x8f\x19~m\x9fA\xde6:\x80\xaf\x81CI\xab\xb6\x0d\xc54}\xcc\x9bi\x9e\xfb\x80(\xfd\x1e\x8aY\x1c\x9fo\xe0:\x1c\x99\xcf\x91\xf9\xbe\x0fx\xe8\xc7\x9b#\xf392\x7f^82\x1f\x85#\xf3\xa7\xc2\x91\xf9\x1c\x99o\x13\x8e\xcc\xe7\xc8|\x14\x8e\xcc\xe7\xc8|\x8e\xcc\xe7\xc8|\x12\x8e\xcc\xe7\xc8|\x8e\xcc\xe7\xc8|\x9bpd>G\xe6sd\xfe\xfc\x00\xe1\xc8\xfc\x89\x84FIsd>\nG\xe6?\x84\xc8|\x0c\xd06Jp\xed!)\x98[\xf9)Wb}\xf3\x87o;\x00W\x8d`\xed0\xc6+\xdb\n\xae\x05\x810\xe4A\x1e\x94\xb6\xad\x8e\x0c\xd9\x1fm\xe4\xbb\x16\xc9G]\xe1\x17\xa7\xbf\xc3\xd9\xac\xee\x06\xd9\xb6\x8eA\x90\xc3g\x9d\x95\xea\x9cw\xe5\x02o+\xfa\xfc>\xce\x9a\x0f\x8f\xe5&\xf0\xf1*\xdf<\x9e\x16\xd7\x8c\x9b\x16{.\xb5\xa5q\xf8Q'\x88\xde\x91y`\xd4\xc0\xe1M\xe4E\xdc\xe5e\xbe;\xec\xe0\xa9\xf8\xb4.\x0eM~+\xbe\xea\x10\x823xQ\x14\x9d\x19R\x8e\xf1Aq+\x81\xb5[\xb7\xc5\x1d\\\xd7\"k\xb5u\xa8\xbd\xc9S\xb7;\xe6\xd8\xf9\x0f\xe2\xce\xd6!#\xef\xbbr\xb7\xeb\xf3\xf3\xcdC\xc9\xc9\x03\xac\x1c\x9d\x9do\x1eM\x99\xd7#\x9b\x1f6M*\xbd\xcf\xdf\xfeZj\x8c\"2\xd4\x19\xf0U\x0d\xc3\xea\x82\xe1\x8aIp\xc8\xbb\xb5\x1b\x07\x86\xad\x99N\xa4\xfa\x05*V\x7f\xa0}\xa6\x13\x01\xe8\xbf\xe1\xd7B\x0e\x9f\x95PV=u\xa4=y\xc8;C\xeah\xfbDG\xe2\x17rF\xe9\xba\x90\x94\xeb\xd0\xc8\xae\xfe \"\xfb\xf3\xd1DuO\xd8\xb9~\x1d\xc5\xc9$\xb0wi\xe2Q\xd3\xad\x0dj\x98=V_\xfd:(mO&5\xf3O\x17[(\xc4\xb6\xd5\x10\x88\xa2B\xf4\xa6\x07\xfd\x034@\xe8!\xb2\x9fWw \xb2\xf5\x0dd\xfbI\xe2\x92/\xd8\x8b&\x9a\xd1\xdf\xef\xeaK\xe3\x0e\x85H\xe2\x12\xa2>\x08\x84-\xf3r\x93\xaf\xb3V\xf4\xe4&\xf5 ^\xa8\x14\xc9,./\xd7\xc5a3\xda\xd2d\xf4\x94\xceU;zc\xe8\xf87<\x08r\xe9a\x02P\xc3\xc9\xe5\xfd\xc5\x98N\x1b5\x01?C\xb5h\x14\xa2\x81\xc3\xab\x1f\x8fr\xc8\x9d\xa9\xd1\x94_\x97U=\xf2\xbf\xe8\xd18|\x04\xf5\xcc\xb1/v\x8ct\xce\xbc\xc0Z\xdc\x8a\xba \xfd@\xab\xab\xc7/.7\xd0\x9eZ\xcc\x8f\x84A9\xf2\x19\xa2D\xcf\xb4\x8a\x16\x1b6\xff]^\xae\xc5w\xb0\xae\x9a]\xd5|\xddl>\xc0\xf3\xb3?\xfe!io\xc4\xa6\xe8\xc1\xa5\x9b\xbac.)\xcf\x1b\xfc]\xb5\x9af\n};\xec\xaa\xcd\xa1\x103\xf4\xdc \xff\xce\xff\xcb\xde\xdb5\xc7m#\xfb\xc3\xf7\xf9\x14\xa8\xad\xfa\x97\x9dSz\xb3\x13g\x13=\xb5\x17\x8a_vU'\xb1u$9[\xe7\xb9x\xe6\x8f!13\x8c8\xe4\x98/\x92\xe5\x9c\xf3\xdd\x9fB7@\x82\x1c\xbc\x91CI\xe3\x04}\xb1\x1b\x8fH\x10h\x00\x0d\xa0\xfb\xf7k\xbc\x15\x8fcI\xdf\xc8F\xedi\xfe\x1dU\x1f\xaa\xf4`\x85\xa0\x14\x89\xe56*DD\x05&\x05\x15\n\xeb9+7ib\xe0\x0eTV\x90\x12\xf1\xa2\x06\xfa\x84zz\x95\x91+\x89\xb4\xef-d\x9d['\x00\xbc\x9b\x03\xca\x8d\x0e\x0b\x16\xb1\xe4\x96\x95\x10\x0f\xa7eR\x92M\x9ed\x95\x19J{\xde\xd8#\x01~.\xf8D\xce\x9eU\x10{\xc2\x9887\x87@i8\x94q>Ca\xd8\x10\x01\xaf3~\xf2\xed\xd1\xf2\x08\x90\xbe\xff /\xfe\xcf\x11\xf95\xc9\xc8?\xc8\xc9\x01@\x81\xff\xc1\xffpr\xa2\x0f\x9fe\xf9\x1aue\xc1X\xd9\xf8/V\xe6\x8buP\xa1\xb80^\xc4\x87\xe7bX]\xfb\xe27\x82\xe4\xb3Y\xbe\x96\xe3'B^\x8aB@\x81\xc89v\x0dt\xa8!\xd0&\xc5\x9a9\xc2'W\xa9\x82\xc1\x80\x9a\xdf\xb75\xcb\xb3\xa8\x83\xa26\xe9W\xb7w9\xe8o^L\x1d\xb0\xea\xd4\x9a\x17\xa6\xa04_\x9c\x9c@L\xb8<\x82Zc\xb8\xdbf\xe4%7?\x89\xbb\xbaP\x9f\xb1\xcf6\x99E]\x8ckO\xb8\xe7\xd6\xe1ZJ\x00\x80\x06\x00\xe8T;\x93\x00\x00\x0d\x00P\xbd\x04\x00(H\x00\x80nK\x00\x80\x06\x00\xa8I\x02\x004\x00@A\x02\x004\x00@\x03\x004\x00@Q\x02\x004\x00@\x03\x004\x00@M\x12\x00\xa0\x01\x00\x1a\x00\xa0\x01\x00\xaa\xc8\x14`\xbc\x00\x00\x05 \x00\xd0?\x0b\x00\xd4\x96=\x1d}\xf8J\x11\x9dCd\x17\xff\xd7\x05\x15\xf5\xa0{\x04s\xa5\xab\xd6hL\xb2\xd1\xde\xe9\\VS\x899\x9b\xea\xda\x0bKW\xbd\x80\xde\xc3\xd7v$\xce\xf6\xf8\x0f\xd4\xeb\xff\xe2\xbb\x0f \xb8\x95A\xaf\x80\xb8\x0d\x88\xdb\x80\xb8E \x98.E\x9e\x14\xd3\x15\x10\xb7\x01q\xdbJ@\xdc\x06\xc4m\xb0\xce\x1dyR\xeb\x1c\x10\xb7\xdb/\x07\xc4m@\xdc\x82\x04\xc4m@\xdc\x06\xc4m@\xdcn\xfd}\xa2\x9dI@\xdc\x06\xc4\xad^\x02\xe2\x16$ n\xb7% n\x03\xe2\xd6$\x01q\x1b\x10\xb7 \x01q\x1b\x10\xb7\x01q\x1b\x10\xb7(\x01q\x1b\x10\xb7\x01q\x1b\x10\xb7& \x88\xdb\x80\xb8\x0d\x88\xdb\x80\xb8Ud\n\xf4c@\xdc\x82\x04\xc4m@\xdc\xee\x8e\xb8\xedy\xc5[\x08kU\xd4\x01o\xab\xe0m\x8f\xffP\x9a\xf0\x08\xe8\xdb\xef\xbe\x91\x8d\x0c\xe8\xdb\x80\xbe\x0d\xe8[\x12\xf0]]yR|W@\xdf\x06\xf4m+\x01}\x1b\xd0\xb7\xc1:w\xe4I\xads@\xdfn\xbf\x1c\xd0\xb7\x01}\x0b\x12\xd0\xb7\x01}\x1b\xd0\xb7\x01}\xbb\xf5\xf7\x89v&\x01}\x1b\xd0\xb7z \xe8[\x90\x80\xbe\xdd\x96\x80\xbe\x0d\xe8[\x93\x04\xf4m@\xdf\x82\x04\xf4m@\xdf\x06\xf4m@\xdf\xa2\x04\xf4m@\xdf\x06\xf4m@\xdf\x9a$\xa0o\x03\xfa6\xa0o\x03\xfaV\x91)\x90\x90\x01}\x0b\x12\xd0\xb7\x01}\xfb\xd7B\xdf\xeeP\xd7\x91\xd8[\xf1\x8e\x01e{\x96\xa6\x172\xf4\x8aH[D2\xc0/&p\xad\xf2\xd27\xb2\x1d\xfb\x8d\xaf\xdd\x93\x00\x9a\x0dN\xeb\xe5;\xf2q\xbf\x90\xa9A\xb5\xa3a\xb5^\xc0Z7x\xcb\x01\xdfr\xf6\n\x8a\xaboP\x9c .\xafn\"^@.\xcf\xa2|\xfb|0\x9c\xcbYy\x9b\xe7vj\xa8\x977\xd8k,\xdc\xcb\x0d\xf8\x1a\x0b\xc85\x8fK\x05\x869\x1a\x92;\x06\x94k,JZ\x82\x01\xb0\\\xb3Qp\xc2u\xa7\x03\xec\x8e\x81\xec\xdaA\xbb^\x93\xcfw\xeaM\x08\xdd\x9d\x12\xbc\xeb\x86\xefN \xe0\xb5Ax\xbd@\xbca%\x08+\x01\xc8\x1e\xac\x04\xd3\x82\x7f'\x80\xffN\x07\x00\xde\x11\x02\xec\x01\x02\xf6\x1a\xce\xbe\x83yJ(\xf0`0\xf0\x088\xb0\xb3!6\xb4\xec\x08H\xb0\xcf\xf7\xcc\xa0\xe0\x89a\xc1\x03\x80\xc1\xe3\xa0\xc1\xc6\xc2\xda\xc1\xe0\x0d\x0e\x1e\x01\x0f6\xaf)\xb6]\x94/@xr\x88\xb0\x1fH\x18\xc5g>^4\xdb.\xe1\xa2+a\"\x88\x0d\xcf\xb3\x92\x17\x92\x140\x13\xab\x82\xc6\xd2bZ|\xd4\x08\xfc\x10\x05lWK\xc7\x82-\xa1Qi\xaa\x9e>\xcbf;\xbc\xa1K\x08\xf8\x0b\x84S\xbf\xc8\x0d]\x8a\xa5o\xdbt\xf5>&\x1f\x94\xd6\x1fK\xe4\x9b0\xe5o\xad\xdfkR\xdem\xc6>W\xb3\x1bvo\xc6\xe1Z\xad\xab\x13b\xd2i\xea\xff\x98\x8c\xaf\xac\x85\xd4\x00\xffO\x81\xb8\xa2e\x89c\xf2\x82.\xd9\xa5\xd8\x85\xe3\xdf\x0d\x85\x01:\x1c\x8a\xe1\xc5b?\xad\xf3\xb2\"\x0cpL\x00~\x02?D\xeb\xf0\x85\xad\xa8 \xd2\xcb\x07\x0e\x03\x90[\x96\x93u^0S\x97\xc3\xc3yE\x0d\xb0eoe\xd6IV\xfd\xf0\xbd\xbe\x0c\x17\x95\x88\x7f\x1e\xb4\x08\xff\x91\xd5\xeb9:P$\x0eO\x01}\x99\xda\xab*\x1af\xcb\x0c\n3\xd9\x92;Z\x92\x92U\x07$\xa9J /,I\x9d\xe1\xa60F\xc4\xd5]Rv\xc7\x87\x1f_@\xf1\xff\xf9q\x06z\xe5\xf4\xfc\x8e\x817\x10x\x03S\xed\x16\x03o \xf0\x06\xf4\x12x\x03 \x817\xb0-\x817\x10x\x03& \xbc\x81\xc0\x1b\x00 \xbc\x81\xc0\x1b\x08\xbc\x81\xc0\x1b@ \xbc\x81\xc0\x1b\x08\xbc\x81\xc0\x1b0I\xe0\x0d\x04\xde@\xe0\x0d\x04\xde\x80\"S`\xb8\x03o\x00$\xf0\x06\xfe\n\xbc\x816\xcczt\xc3\xd4U\xd0\x16\xbd\x14\xe1J*Lh\xc1\xaa\xba\xc8\xc0\xa9$\"h\"P\xd4\xc46\xc1\x15\xb4\xec\xf9L $\xc5\xa7\xbd+^\xf9\x81/xy\x06g\xc5|\xb1(Y\xc5\x8f_\xdd\xea\x12\xc5\x95]N\x9c\x90\x9b\x98\x1c\x03\x1a%b\xfdLz\xec\x1d\xcaEc@\x95Y\xbdfE\x12\xc9\xdf\x1a\\\xe3\x9c \xaf\xc8\x8aeR\xf1u\xd68\xa2z\xdbO\x80\x98\x93\x94\x95e\xabBt\xdd\xd4%W\xf5\x0d\x1b\xa8\xcfn\xf1\x0f\xac\xdc^\xf4W\xa3^\x00jxj\x17\x9e\x95auSP\x18\x9d\x94\xea\x08na\x08\x9d\xd26\xe8\x92P\x7f:_\x90\x94-*\x19D\x17Qu\xb9i\x04\xff*N\x10\xfc\x08\xd7\xf3\xfc\x1e\x11?t\xb3yB-\xaa\xa1\xed\xf6}\x9b.\x957\xb8Fa\x84\xe6\xc0\xa7!\xfc?\x92,N\"Z\xb1\x16\xb7\x87\x1a\x84\x07\xc5@R\x8bK\xb2(\xad\xe3\xde\x96\x90\x92\x0e\x1f\xa9\xdfc\x108U<\xb0\xdct\xab\x00\x92\xaeq\xf9x\xde\xc7c\xf5\x9a\x00\xbb\xe8\x82\x95\"\xc4\x0d\xd3\xab\x9d\x8f|\xca \xc2\x06I\x96Y^\xf4\xfc\xd7r6v?\x81\x9a\xd9\xb5c\xe7y\x9e2\x05/\xaa\xe9\xc0\x82\xdd\xb2\xa24\xd2\xbdz\x9d'\x9e\xeew\\\xa2@#\n\xa6\x9f \x9dr\xf87X\x06\x91\xbd\xbc\x88Y\xd1w`]%Y\xc4NI\x94\x97\xeb\xbc<,\xe3\x1brr\xf4\xfdw\x93jc,?\xeb\x18c\xd5\xcd\x1d X\x86\xfdV\x84\xf2\xdfI\xb5\xba\xc2\x18\xf7\x16mK\x02}[\xc7t\x87Tgbum\x17\xfd\x8dTC wy\xa0\x1c\x02\xb9K'\xb6\x9e@ \x90~\x8f>\x0f\x90\xfe\x9d!\xfd\x81\xdc\x15\xc8]\xaa\xf8N\xbd@\xee\x02 \xe4.\xad\x84\x95\xe0\xeb[ \x02\xb9+\x90\xbb@\x02\xb9+\x90\xbb\x02\xb9K\xc8\x1e\x93\xbb\x9a\xfeoo;\xc4\xbe\x0b\xf4.\xed\x03\x81\xde\xd5\xfe\xc9W\x99\x81\xde\xd5\xbb\x0eFq\x04\x8eeyi\xbc\x95\x81\xec\x15\xc8^S\xed\x1e\x03\xd9+\x90\xbd\xf4\x12\xc8^ \x81\xec\xb5-\x81\xec\x15\xc8^& d\xaf@\xf6\x02 d\xaf@\xf6\nd\xaf@\xf6B d\xaf@\xf6\nd\xaf@\xf62I {\x05\xb2W {\x05\xb2\x97\"S\x10o\x02\xd9\x0b$\x90\xbd\xfe\nd\xaf-lc\xe7\x10\xd9\x85\x0evD\xca$\xa8\xbfM\x91\xcfSn\x0e\xf8O\x19\x00\x84\xcb\x8aeQ\xc2Ji\xc2\x9b\xeeY\xe6\xb7\x9a\xe2x\xf5\xc9\xba\\j\x9dL\x00zX\xe6\xac\xc4\xc0\x01\xec\xf7\xe7\xec>G\xf7\x02\x11\x83\x8a[\x9d\x98/\xa3`\x0chT\xd5\x86\xe8\xf1\xa6\xc8\xb9\xda\xe5Vg\x99\xdf\xb2\x02\x86*\xd4\"/i\xaa\xad\xc5\xf9\xa2\x89~\xf2v\xcb\x99\x89\xe1\xace~;\xe3o\xcf\xf8\x9a3\xdb\xd0\x12p\x86|^\x1f\x90D\x07\xcdX3*\x8e\xb7M\x89\x00B\x83s\xbb\xee\xf3\xaa^\xefE4\x1b\x06kD\xeb\x92\x91\x88\x15\x88\x03\x01\x0b*\xdd\xf2d\xad\x0eQU\xc0\xbc@\xc4\xb4\x85?\xa5\xf7\xfd#\xf6v\xb3L\x03\xa9o%\xa5\xb8G\x92Fu\xf2\xb4%\xed\"\xac?\xea Z\x97KxHS\x1c_\xd9\x9by\x05x\n\xe8m~d\xc3\xa5\x90e1\xae_\xcfJr\x9bW|\xf8\xeb\x06 +\x92<&\xcf!L\xcf\x87JR!j\xb1\xfc\xb6\xab$\x0f\xc8\x9b\xcej\x8cB\xbcim`\x00\xbc\x05\xc0\x9b+\xda\xeb\x9e\x85(\x01\xf0\x16\x00oz \x807\x90\x00x\xdb\x96\x00x\x0b\x807\x93\x04\xc0[\x00\xbc\x81\x04\xc0[\x00\xbc\x05\xc0[\x00\xbc\xa1\x04\xc0[\x00\xbc\x05\xc0[\x00\xbc\x99$\x00\xde\x02\xe0-\x00\xde\x02\xe0M\x91)\xc0G\x01\xf0\x06\x12\x00o\x7f\x05\xc0['\xc4>\x93\xb9\xeeh]\xad\xf2\"\xa9\x8c\xd8\xb2\xe6\x01\xc5\x83\xdc\x0b\x93\xae\xf3\xb8N\xdbLu4\x8e\x0bV\x96\xbb\xe2,\x0c\x888}3\xf0\x9f\xe2\xfffIljM\xf3\x80\x04\x1e \\\x17$\xb2\x11\x91\x8cBD\xdb\x92R<\xbekK\xb6\xa3TJ|J\x03\x05\xf2i\xa2\x88H\xc1\xc6\xc3\xd4X\xb0\xaf\x10O\\\xe7Yr#}\xc0\x1b\x96\xf3\x19\x11\x01\xea\x0c\x80%\x05[\xf0?\xe6S6z\x87\xee\x93mS\x1acjb\xcf\xf7\xa1\xfc\x8d\xb0\xcfUAI\x92\xa1\xae!=\xdd<\xaf\xabN\x1ba\xf7\xd0\xe4\x97[3\xda\xcb\x80\x85\x8e\xcdU\xbd\xa6\xd9a\xc1h\x8c\x90\xbe\xf6\xefO\xa4\x98;6/\x93\n\x82\x80\x9e\x8aQ\xde\xc0\x11\xc1\xffc{ ,\x05\xfe\xa8U\x118\x96{\xb15\x88\xa7\xc1\xb3\x00Q\xb0\xab\xf8\xe9\xb5\x95Dy6\xab\x8b\xc4\xa4*\xf9w\xa9\x98\x04\xe6?\xcd\xe0\x0f\xe00/\xcb\xad\xach!\x93\xeb\xfd\xed?\x8e\x84/aM\xab\x083^*m\x84\xe7Y\xd6C\xf5\xb6Y\xf9\xb0{\x92~\x8b\xde\x1e-\x8fx\xd1\xf3#\xda-\x1dU\xf9\xb7\x08\xfer@\xfe\xf6Y\xfc\x07\x9fE\x7fcG\xf1\x11\xfe\xa5{\x12\x9d\xd7\x15\x04\xe8\xfe&_\x12\xff??\xfa\x0c\xff\x91\x17\xa2\xc4\xa3\xcf\x7f\xdbu\xe4\xf7!D\x1a\xf0\x90!\xa8\x15\xe5i\xca V\xf1N\xec*\xd7uZ%\xbb\xcd\xa1\xb9y\x0b\xfd\xb4s\x88\xcc\x93\xf8a\xa6P\xb7\xeb\xe5W&\x9cAM\x99a\x06\xf1g\xffts\xa8\xddaE\xf9z\x9dT\xb0\x07\xf0\x9cE\xdaw\xbb;\x12\xa6\xdb\xa1iw%X\x84L0\x9d?\xd5\x0e\xadm\x89\xb2\xcb\x9a\xcd\x93\x8d\xafR\xcc\x05\xc8\xd3\xfb\x020d\xc2\xdb\xab<\xdf)F\xd9\xe2\xc1\xa4h\xae>\xa0I,\xdcKM\x1em-_\xabq\x85!\xefbN\xcb\xa4$b\x8f\xf6\xfc\xc5\xf1\x8b\x93\x93j\xc5k\xf0\xe2\xff\x1c\x10\xc6\xe7\xcf\xc9\xd1\xc9\xc9\xc9\x8bo;\xfc\x02\x82\x04\x14%\x01\xef \x81,\xbc\x07'''\xc8\xb8)\x93\xdb~\x05\xde\xd4\xe0.U\xdb\xa6\xb4\x07\xb7\x91I\xb6\xa9\xc5n\xb1\xac\xd7k\x16\xc3\x9c|\x7f\xf6\x1b\xfc\xd6)\xae\x16YV\xa3<\xbbe\x85\xd0\x07rn\x84\x9f\xad[\xdf\xacb\xc5\x9a\xc5 -\xee1\xd3;|Q:\xe5\xc8\x821\xfc\x99\x1f\xa4\xa9$se8y6i\xd2\x83\x02\xcdE\xa2\xec\x86u\x05\xc7MQ\x0e\xa6 \xef~\xbf\xd3]UA\xb3r\xc1\nX?\xea\xaa\x8bh\x7fV6\x16W\x82\x06;%\xf5\xf2\xa4SU\x8b[<\x99z\xbd\x96d\x00\xa1[\xb6Xp\xf3p\xcb\xd2{\x12\xe7\xf5<\x15\x91\x04e\x0b\xcc\x88\xf6\x18B\xc8\xa2\xc8\xd7\xe4\x0eZ\"t$\x91\x8e\xd5*\xaf\x97+\xde\x92n\x05h\xafp\x8a\xf9\x8f\x85\x92\x157\x1c\xbda\x99\xc0w\x89\xc6\xdf\xadz9\xc3y\xa5\xb01R\xf1:\x83\xcf\xcf\x10wM)\x82pT \xb4\xf3\xc5 \xddlx\x83\xb9\xea^\x9c\x9c,\x0b\xbaa\xa5:\xf4\xba}\x06\xa3Iv\x9a|\xf9\xa0y\xb1\xfb\xf5\xe7\xe8\x06F\xbc\x10\x8c\x9d9\x93\xa3\x13\x87\xea\xc7\xab7\xf8\x87lE\xcb\x15\x99\x03\x1a\x8d\xf0R\xef\xfb\xfegh#\xf8U\xbf\xfd\x7f\xc8GT\xf2\x81\xd0\xf2A\xab\xd2n\x0d\xa0\xf3\xf8,\x80\x14\xd3wR\xb7\xb7 \xe3;\x0fZ\x12\x96\x80\x01\xfe\x9do*\x1a]\xe4\xf8C\xa7\xa4\xa6\x89\xbbZ\xdbI\xfd\x85\xea\x1c\x9e\xc1d\xf5\xb4\xbe\xdb/J\xab\x8b\xff\x00\xad\xe1\x1a\xc3\xe7q\xa7\xd3\x9ec7ug?\x03\x90\x9e\xfa\x18\xf8\xfdW4\xc9\x9e\x95\xad-\xe9\xc1\xf7\x80\xbd\x13\xd14\xaaSZ\xc9i\xb9`r\x87\xc3G\xaa\xd6\x90[\x0c`\xe3\xde\xc5\xca\x94\xcd\xd5\x15\x02\xf1\x03\x83wA\x93\x1e\xa6/\xe13\xf1\xfd\xd9o\x80\xdb\x83\xcbI\x9a\xfd\x8d\xc2\xf7U\x9e\x1f\xd1\xf5c\x1cB\xfd\x1d\xb8v\x19\x1c\xb2\x85W\xd6\x1a\xbf\x9d|\xd7z S\xe4\xda\xc9w\x95\xdb~\xf3h\xf4V\xbe[\xa0<0\xa8\xad\x99l/\xdf\xd9\xa5\x85\xcd\xfcW\xb4\x99\x1fMQE \xf2\x8c\x9b\x9eA\x04\xd5_\xe1\xbdw\xdcb\x99\xe9\xa9\xedC\"'\xbb\x8b\x9b\n#\xc2\x9f\xa0\xda\x96\xff\x8d,2\xd0S\x03=5\xd0S{\xe2\x1eI\x7f\x1dz\xaaj\x93v \xa7*\xf6/PS\x035\xd5\xc5\xcbp\xcf@\x94@M\x0d\xd4T\xbd\x04j*H\xa0\xa6nK\xa0\xa6\x06j\xaaI\x0255PSA\x0255PS\x0355PSQ\x0255PS\x0355PSM\x12\xa8\xa9\x81\x9a\x1a\xa8\xa9\x81\x9a\xaa\xc8\x144\xc1@M\x05 \xd4\xd4\xbf\x025U \xad\x7f\xbd\xc4T]#\x04`g\x00\x1fUb|c\x05\xfc(`\x92%\x02%\xebML\xab\xc7\x07\x99\xe9\x9aW\xb2\x8a\xff0\xdb\x19\xe9\xeb.H\xea'cw\x9d7\x1do\x89\xd0\xa4\x01\xf1\xa3\xe6\x8f\xe7\xdbFt|}aE~D\xaespb\xa3/\x9e\xffD\xca^d\xba\xce<\xaa-\xb2\xb9\xefCo\xf9\xd4\xd7\xb3\xbf|\x8a:\x80P8@\nJV\x95[\xa6\xd2\xad8\xe8\x88^\x97-PA\x07\xa2\xafD\xe7\xed\xaa\xde\x89\xb2\xd8\xe3(;\xfe\xa3\x99\xd5\xffkF\n\xb5\xe1\xf1B\xc9\\\x8f\xccS\x05\xa2\x82\x1e\xad\x16\xe5\\\xb2\xaa\xde8\xa0>E\xc8B?\x10\xe6\xa3)JZ\x0c\xf5\xb7A\xe0\x89b\xd7\xac\xde!\x9fw#\x014\x11@\x13\xad\x04\xd0D\x00M\xb4\x12@\x13U\x00M\xe8%\x80&\xa4\x04\xd0D\x00M\x04\xd0\x84\xe7.)\x80&\x1a \xa0 U\x02h\"\x80&4\x12@\x13\xdag\x02h\"\x80&\x0c\x12@\x13\x014\x11@\x13\x014\xa1\xc8\x14\x01\xec\x00\x9a\x00 \xa0\x89\xbf\x06hb(\xb6 \x89\xbb\x0f\xe4:.sN\xc9\xc2VJ\x06\xd3NhU\xf9\x8a\xf8\xf3\xde\xc6Ua\x02\xeeG\\K\xf4\xc1\x0e>\x1d\x1f\xb7\x08i\xbf$\xc7y\x0f\xef\x83\xf6\xaf\xb5Lr0\x18\x8b\xe3\x8f\xea\xd7f\x1c0\xf6\x16\xe9\x95\x8cbT5\x8aC\xe1(.\xb5\xa3@*%\xdb\x03^\x1d@\x9cmF\xf1*\xca\xb77 y\x9d'\x19\x060\x18_\x04\xab\xfc\x86e\x12 \x01\x0dK2\x91n<\x8b\xfb\xe9\x87\xba\x82\x95\xb7\xf9J y\xff\xe1\xfa\xed)\xec;\xf1\xe96!<\xcd\xc89$U\xe3K[\xe3\xd7\xdc\x86\xb2tE\xac|\xb8\xe9\xb7}\xb8L\x96\x19\xad\xeaB\xcd\xa74\xbf'\xcb|\x99\xc3\xc2b:@uapXg1\xf4\xe74\xe5\x96TI\x8e%\x8c^\x83\x84\xd2\x80\xe0\xb4\xe5\x1a:\xe8\x0c\xe7\x16\xb7\x85m^t\xf4F\x8a\xd9\x86\xfd\x94\xc9\x8a)\xdf\xd7\x16\x88\x155U\xca]%\x9c\xd7\xddKj2\x8f\nZ1\xd8Q\xf3\xa5\x15\xda\xec\x17\xf5\xba\x80G\x15\xdb\xb9\xbc\xbcx-|ch\xb6d\xcc\x17#b\x10\xfcS>\xd7\x14\x84\x04\xe9g\xca\xa5\x1c\xad\xe6\xb5\xcb\xf0\xf9\xcf\xaf/i\xc5~\xe1\xa5`-\xc4S{\xbb \xabjU\xa5\xe7\xaf\xed(\xb4\x02\x1c\x92TD\x134\x05eM\xea\xa1\x8d\xf2\xac*hT\xcd\xac\xb12\xe7\x1c\xf2Ym\xb7?\xd6L\x11\xf1O\xd1L>J\xc45E&\x9e\x8c,i\xc8\x92\x84\xa3e\xc8\x82$F\xf9\xe5\xc5\xeb^Q8\xc4\xc3\x9a\x14\xd6\xa4\xc7\\\x93|l:\xe0*\nn\xcd)\xd86\x98(yz\xfc\x87\x95\n\x8e\x86\x1b\x0eA\xf0\x16)X\x94\x17\x18\xb3\xda\xba&\xb1c\x8e\xcf\xe0y\xf1\x97\xbd5\xc1\xf2Z\xa9\xfd\x18[\xbb\xc2\x126\xacX'e\x99\xe4\x99\xa3\x8c\x9d\x81\x00\x8ex:\xcbjk\x84\xff\x90\x9c\xbd~\xfd\xf6\xeaj\xf6\xf1\xfd\xd5\xc5\xdb\xd7\xe7\xef\xce\xdf\xbe\xf1y\xfc\xd7\xf3\xf7\xd7>\xcf\xfd\xfc\xf1\xf2\xbd\xcfso\xde^|\xb8:\xf7*\xf2\xdf\xe7\xd7\xffzsy\xf6o\x9fg\xdf\xbc\xfd\xe5\xed\xf5[\x9f'\xcf\xde\xfcz\xeeU\xd3\xeb\xcb\xb3\xf7W\xef\xde^\xfa<\xfb\xee\xc3\xe5\xeb\xb7\xee7\xe4\xda4\xa4/\xfc\x96s\x82\xd1xn/\xd4}K\x9c,\x16\xac\x00\x1750h\xf3\x85:ba_h)Pd\x9a($#\xa7$\xcb\x82fx\xefV\xde\xf1\xd1X\n\xd1\x8e<\x9d\x06\x94\x1dl\x96\x1f\xe6\x1br\x9bWL\x84\xc9-\xe8\xf1\xdeX=U\xff\xd1lj\x04\xa1\x11\x1c\xa9Q\xc1\xa8@]\xf3v\xa5\xf7\x80\x12\x10M\xf5\xfb\x10\x1f\xec\xa7\xea?4\x1f\x8a\x99\xf6C\x95\x04\xdc\x15\"`\x10\xe5I\x06\xf8\x02\xbc\x11\x91\x0d\xaa\x88\x98M\xa7\xbd\x7fk\xaa#/L\x14^7\xb8\x87\x90f\xc8 \x94\xc7\xa2\xcee\xff\x85\xf6F\xde\xae\xe4pgn\xc9*\xc8g\x01#-b\xfdb4~\xce\xae\xacYEcZ\xd1\xe32\xca\xf9 5m\xad\x15\xd9\xb2\x11\xa7\xfd\x1f^0\x12\xa2\x98!\x8ai|2D1AB\x14s[B\x143D1M\x12\xa2\x98!\x8a \x12\xa2\x98!\x8a\x19\xa2\x98!\x8a\x89\x12\xa2\x98!\x8a\x19\xa2\x98!\x8ai\x92\x10\xc5\x0cQ\xcc\x10\xc5\x0cQLE\xa6\x88(\x85(&H\x88b\xfe\x15\xa2\x98j\xf8\x8e\xe8\x02Z\x9d\x84\x86U\x0e> Ro%\xac}\xbc(f\x9a\x9a\xa3\x96\x97\xf2&\x9d\xf6J\x854m\xc8\x94\xc2W8O\xf3\xe8&Z\xd1\xc6\x85\xd3\xcdL\x93\xa6\x18\xb9\xdc\xfb\xec4\xa2Y!\xfc\x14\xc2O!\xfc\x04\x12\xc2O !\xfc\xb4-!\xfc\x14\xc2O& \xe1\xa7\x10~\x02 \xe1\xa7\x10~\n\xe1\xa7\x10~B \xe1\xa7\x10~\n\xe1\xa7\x10~2I\x08?\x85\xf0S\x08?\x85\xf0\x93\"S\x84\x02B\xf8 $\x84\x9f\xfe,\xe1')\xe1\x12\xea\x8et\x9a\x1c.\xa1\xf6Rf\xb8\x84\x1ai\x81M\x8cr\x07V`SFHqJ\x029\xd0\xe9\x9a\xf4\xf1\xee\x91\x10\x9d\x0d\xd1Y\xe3\x93!:\x0b\x12\xa2\xb3\xdb\x12\xa2\xb3!:k\x92\x10\x9d\x0d\xd1Y\x90\x10\x9d\x0d\xd1\xd9\x10\x9d\x0d\xd1Y\x94\x10\x9d\x0d\xd1\xd9\x10\x9d\x0d\xd1Y\x93\x84\xe8l\x88\xce\x86\xe8l\x88\xce*2E\xa4,DgABt\xf6\xcf\x12\x9d\xb5\x91\x03\xcb\x8aV\xb5z0\xb2\xc5,?\xc8\xf8,\xbe\xc5{a\x91\xa4\x15\xdc\xba(\xa2\xb3\xdd\xca\x1c\x92_\xcf.\xff\xf3\xed\xe5\xec\xea\xfa\xec\xfac\xef\xcee\xe3\x9f\xc8!\xf9\x98\xc1\x18>>\xcf\xf0\xf0\x8cq,r\xd5\xaf\xad\xe6\x1b\x17\x97\x1f.>\\m\x7f@\xfeN\x0e\xc9y\x96T M\xb9=]$K\xa1t\xb2aE\x92\xc7\x07\xe2.\xd4R\xfa\xe7\x0eH\x95\xdf\xb0L^\x9a\x0c\x0e\xa1\x82\xf1\xc3\xde\x91\xbd\"\xef\xce\xdf\x9f\xfdr\xfe\xffn\xd7\xa4\xf9\x039$\xaf;Uh.\xc0= \x05\xa31fg\x15\x1f\x86\x8f&yf\xff\xe8\xd9\xeb\xeb\xf3\xdf\xde\xf6\xbf\x88\xbf\x92Cr\x85e%\xa5l\xc3\x01)\xea\x94\xa1C2\x81h{\xd4\xf7-\xf4?\xf1\xfa\xec\xfd\xeb\xb7\xbf\xfc\xb2\xdd\xae\xe6\x0f\xfc\x15\xec0n\x7f\xe6\x8ce\xed\x9d\xbb\x07d\xc32\x88\x0e\xc4\xac\xac\x8a\xfc\xde\xfe\xb17o\xaf\xae/?\xfc\xf7\xf6\xc7\x9a?\xb4\x1f\x13\x8a\x02\x9b\x07v\x89e\xa4`\x11\xc5\xcf\xca\x8b\x84K\xde\xede\x12\xb3\x02\xb2\xb5B\x1d\xb8\xe5\xcab\x92\xe5dQ\x17\xd5\xaa\xe7\xf0\xa0\xe2\xcc/\x06D\x9f\x17\xfbI\x90Y\xa5\xb4\xc4\xd8\x05MK\x073\x96h/\xcb\xb7\xcc\x1b\xebsr\x8c[\x1fj\x86\x9f\xf5)\x1c2\xd6G\x9a\xfe\xb6>\xd5tT\xc7\xc8\x88\x9b\xe7\xdd\xcd\x94\x86\xaa\x85\x84\x1c\xdd\xb0{O\x83%P\x15T\xec\xf5\n\xe0\x0e\x83\xf7[\x04\xfaED\xbb\x81`\x80\xcfz\xd9s\xeeB\x07\xc35\xf3\x0eX\xc5\x07\xbe3\xcf3pj\xe5\x8bE\xc9*\x92\x17\xa4[]\xa2\xc4\xdcJVM>\x98\xb4\x1eL\x8d\x12\xb1~&=\xf6\xbc\x87\xa21\xa0\xca\xac^\xb3\"\x89\xe4o\xb0-\x88h\xc6\xdb\x83\xee\xdb\x15\xcb\xa4\xe2\xeb\xac\xf1\x98\xf7\x96\x86s(-ee\xd9\xaa\x10}\xccx\x0f\xfd\x0d\x1b\xa8\xcfn\xf1\x0f\xac\xdc\x1eHE\xa3\xde4Y'\xbe\xda\x85g%\xbc\xc3\x84]\xc1h\x8a:\x82\x05\x18\xa4N{(\x0b\xf4\x9d\xaa?\x9d/H\xca\x16\x95\xc4\xfa\x08\xf0\x8f<\xddB \x08'\x08~\x84\xeby~O\x18\x8dV\x84n\xb6\xf2\x00<\xa2\x16U\x04N\xfb\xbeM\x97\xca\x1b\\\xa30Bs\xc8P@\xf8\x7f$Y\x9cDx\x057\x86\x84\x85\x06\xe1A1\x90\xd4\xe2\x92,J\xeb\xb8wv\xa5\xf8\x95&&\xdf\xeb1@x(\xa1\"\xbe\x86+\x80\xb6\x9eq\xf9x^\xf6z\xab\xd7\x048\xee\x17\xac\x14X\x1c\x98^\xed|\xe4S\xeeH\xcc\xa6d\x99\xe5E/\xd0&gc\xf7\x13\xa8\x99];v\x9e\xe7)Sn\x7f\xd6t`\xc1nY\xd1y\xd5\xd6y\xe2\xe9~\xc7%\n\x82\xab`\xfa\x99\xd0)\x87\x7fCl2\xf2\"fE\xdf\xd3~\x95d\x11;%Q^\xae\xf3\xf2\xb0\x8co\xc8\xc9\xd1\xf7\xdfM\xaa\x8da\x19/\x10It\xfcG\x12\xfb\xe5\xeb'\xdcF\xa6\xcd=\xef\xf3{q\x0b\x01F%\nV\xca=\xb2&]\xff7\xb29{\x9d\xf3\xc2\x04\xaa\x1a\x85\xf3\xac\xac\xd8(gX\xd0'\xae69*\xca\x0f\x135\x06\x11eG>\x8d\xc2=\xc1'\x0c\x05:QO\x13`\x9eF\"\x9e\x8c8\x11?\xbc\xd3Nh\xa7QX'~\x041i\xd1\x0f\xe94\x06\xe7dC\x1fx\xa1\x9c&\xc68y!\x9c&\xc479\xd1M\x13a\x9bvA6\x0d\xc65M\x80j\x9a\x18\xd3\xe4@4M\x8egz\x184\xd3\xe4X&\x7f$\xd38\x1c\x93E\xe9.\x14\xd3d\x18&?\x04\x93\xc6\x85j\xb6\xaf\x13\xa3\x97\\\xd8\xa5\x1d\x91K\x16\xdc\x92s{\xe2\xc4,\xf9\xed_\xa6\xc5+\xb9\xd0J\xee:\x8dC*I\xcb\xae)\xd0\x85S\x9a\x10\xa5\xb4\x03FI\x8f,\xb4!\x94\xa6\xc5'\xd9\xd1IS`\x93\xbc\xc05\x0e\\\x927*\xc9\x0c \x18\x8eH2\x97\xa5\x0d\xd6M\x82E\x1a\xa2,_\x1c\x92['\xde\x18\xa4\x11\x08$}`s\"\xf4\x91\x17\xf6\xc8\x8d<\xf2\xc1\x1dY\xb58\x14s\xe4\x8b82\xe1\x8d&@\x1b\x0d\xc0\x1a\x8dG\x1aY\xf0<\xbe(\xa3\x891F\x96\x1aiG\xea(t\x91\xf4\xb5j\xca3`\x8b&F\x16\x99qEcQE\xe0\x11\xd0U\\\x8f)\x9a\x16Qd:\xf89\xd1D&\xb8\x83 I4-\x8eh<\x8a\xc8\x80\x18\x1a\x85\x17rb\x83\x86!\x83\xbcqA\x03QAC0AFD\x90\xb96\xbe\xc8\x0c?4\xd0@,\xd0\x00$\x90\xb6i\xd3\xa2\x80L\x93b\x07\x04\x90\xd6Oa\xc4\xff\x8cC\xff\xd8\x90>\xd3\xe3|v\x1fI\xde\x18\x1f_\x84Ow\x89\xf4 \x95c\x00\xc0\x8bP.(\xe4\xbf\xf6\xaf3&\xcd\x92\x11\xc8\xe4\x81L\x1e\xc8\xe4B\x02\x99<\x90\xc9[\x19\x13d1\x16\x16\xc8\xe4\xdb2Q\xc0e\xb7\x90\xcb\x88\xa0\xcb$a\x97\xc9\x03/\xce\xd0\xcb\x03\x04_\x1e*\xfc\xf2\x00\x01\x98!!\x98\xb1A\x18\xab\x0dw\x85a&\x0c\xc4\xf8\x86b\x06\x06c&\x0f\xc7\xb8\x032;\x87d\x02\x99\xdcY\xb3q!\x1amQ\x81L>&X\xe3\n\xd7L\x13\xb0\xf1\x8cB8\x836\x03\xc26NR\xef\xc0\xd0M \x93\x072\xb9OP\xc7\xa9\xd5\xa1\x81\x1d\xff\xd0N \x93\xf7d\xe2@O \x93\xab26\xec\xa3-,\x90\xc9\x07\x04\x81v \x03i\x8b\x0bdr\xed\x0b^\x81\xa3@&\x9f.\x8c\x14\xc8\xe4;\x07\x99\xa6\x19s\xde\x81&\xffP\x93\x1f\x99^\x98\xf6Y>\xb1\x1a\xa3\x8a6O,\x86j\xd8g\x99\xdc\xb2\x0c\x9f\xb6\x96\xc7U\x0cA\x18R\xd3*_\x7fk\xde<\xb3\xcf\x9bqFS[Q\xe2\xaa\x86\x9b\xc5Q\x86hF\xd6OU\xce&\xbfCg\xd9\x8b\x93\xf6\xef\xb0,\xe5\x99\xcd\x17\x8c\xe17\xcb1\x8bOh\x9a\x88\x1d\xf5\x9c\x96l\x86\x1d\x03 \x8d1\xc5-\xffo\xc6\xb7\xd9m\x7fX\xcb\x03\xa3\xf11K\xaag\xa5\xe87\xeb\xe3/\xc4P\xf8\x07yq\xf2\xff5mk\xabb\x7f\x1b\xc2n\x12'\xa1\xd4?_\xe08h\xe3Gx+\x81%>B\xd4\xba\xf3\x02\x9e\xf1\x02\x9e9<\xcbD\xed\xb1\x7f\x90\x1f\xf8n\xa1.O\xc9\x0b\xc2\xdf\xc6V\xfd\xe0\x1c\x934Mhi\x9b\xa2nC\x81b5\x17(\x9e\x93\xd9u%>\x8a\xa88\xe6oO\x93\x12\x14'\xa6\xb1\xfc\x9b\\=\xddC\xc76\xcdm\xc9\xf8Ui\xbbP\x99?\x94\xd7\xa9\x8e\xaa\xbe/\x96:*\xd5A\xde\xd4b\\\x88\xa9\x92D\x88\xd2\xd1\xf7\xaaK}\xca\xc2\xd0\xb7\x82R\x8d\xeaD\xc2\xdc\xcc\xb6\xcaF\xb960\xc3\xe7\xc4\xa8\x95\xcb\xd7h\xf1\x0f\xf4[\x00\xbf\xe1D|\xde\xc6\xd9\xf9_\x9a6\x19J\x83\x99\xac\xcc\xa7\x13\xed\xa4\x89\x93r\x93\xd2\xfb)\xdae\x1cI\xe2\x1bM^w\xb1B\xd5\xcb%++\xb8\xdf\x03\xec$\x1fOM\x13\xedEaF\xf1(M\xb8\x9et\xcd\x82}\xe9\x04mz\xa6\xcfB\xfe\xcc6P\x9f\xc1\xa2+\x01h\x95DI4\x89\xe8oXF\x9e\xb3\xe5)y\x0d\x85\x923n\xd0t%\x96\xf7\xeby\xfe\xb0\xf9\xb0\xf1\x13\xed\xb5\x06p\x87\x0e\xfe&A\x13\xe5\x8a\x9f\x03\xf3\x8c\xb0\xcf2\xbe\xcako(\xf0\xec\xfa\xc3\xaf\xdf\n,Md\xf2P\x109\x86K\xf01\xe1\xc7E\xd7Z\x92\x85\xba\x12\xc2K\xa9\x8b\xe4A\x95\xf6\xf1\xf2\x1c\x82\xdd$\xce\xa3\x1a0<\xcfs\xbe\xc2\x93|\xb18\x8cV4\xc9\xbe\x157n\x08W\x8b\xa1\x1c\xc5Q\x93d\xb8\xffI\xf2\xec\xa8\xb9\xc1i\xa0*~\xd0\xabb\xb6\xa2\xe5\xea\xa1\xf5\xf1/Z\xaep\xe5*W\xf4\xe5\xab\x1f\x08\xff(8\xcaZ%mr\xbe\x0b\x04\x07\xea\xc7\xcbs\xd3\n~\xcem4\x84p\xab\x9c\xdc\xb2\"Y\xdc\x832M\xaa\x80\xa1#?\x11'q\xf6\xac\x12\xe1\xfa \x15\xe9\xb6s\xf2h\xe7\xb1Tj\xde\xa6\xe6U\xd0\xb4\xfa\xc1\x01\xb7s\xaa\x1c\x8f\xf2\xd4\x1dN\x03\xbc3\xc0;5\xe2g\x11\x02\xbc3\xc0;MO\x06x'H\x80wnK\x80w\x06x\xa7I\x02\xbc3\xc0;A\x02\xbc3\xc0;\x03\xbc3\xc0;Q\x02\xbc3\xc0;\x03\xbc3\xc0;M\x12\xe0\x9d\x01\xde\x19\xe0\x9d\x01\xde\xa9\xc8\x14P\xbb\x00\xef\x04 \xf0\xce\xbf\x02\xbc\xb3\x8f%yT\xa8&\xef\xe7$[z\xe7\xfe\xa1i*\xd1\x98%\x11/\xc30A\xf8\x9b\xc8\x07\x04\x19\x82D!\x1d\xb4\xe6\xbf\xf0\x8dod\xb3\xf6\x14\xa19\xa7)\xd7\xd3\x9e\xc4\x95\x04\xcaw\x07\x9f\x8a\x164,\xe2\x98\x0d\x86X\xe2\x85\xa0\xe9\xd0\xb7\xcc\xe0M\x85\xee\xb5W\xc7\x06\xffr@\xbf\x1c\xdaBq\xe9\x0c\xc5\x89\x17\xf5\xd2\x1eq\xa6UB\xf1*\xca\xc7C\x8420\xd1\x92\xb3\xf26G\xe3\xc8DL\x96\xf2\xc4\xb2aK\xc7\x842,)S+\x1dEbJ2\x15\x14\x14'\x8b\x05+XV\x89\xbf\x81oY\x1d\xdcZ\xf7\xa5\x1d\x0c\xf7\xb3x\xbd\xe9\x94\x06\x99\xde\xcc\"\xde\x17\xf2+\x1b\x9a\x14\xe8O5\xb8\xaa\xb9YM\x04\xeep\xcb\xa8\xd2m\x10?\x81\x95d)\xfa}{0vT\xd2>\xa8\xd6WF\xaf\xd4?K\xd8#W?+\xabm\xbdXg\xa4}&f\xecs5\xbbac\x11pNg\xb0\x1b:B\x94ZH\x9b\xc7\xffS\xc4Fh)\xc00\x17t\xc9.\x85\x06\xf0\xef\x86\xc2p1\xe4\xc5\xf0b\xb9\"\x19Y\xe7eE\x18D\x1c LqD\xce+ek\xb6\xa9\xeeIb\n\xbeW+V0\x08Ge9Y\xe7\x05\x93\xe1'\xed\x00\xcd+:\x16\xb3&\x95Y\x9bA\xe0.0(|\x1e\xb4\x08\xff\x91\xd5\xeb9:\xcfe\xc4L \xcf\x98\xda\xab*\x1a\xc6\xfc\x0c\n3\xd9\x88;Z\x92\x92U\x07$\xa9J\x19\x08,I\x9d\xe1\xa0\x8e16r\x97\x94\xdd\xf1\xe1\x91\xbcM\xecE\xc6\xe3z\x90z\xf2/X(\xcb\x90\xbe\x8d\x04|\x8fs\xfd\xf7]\xfd\x03\xbe'\xe0{\xf4\x12\xf0= \x01\xdf\xb3-\x01\xdf\x13\xf0=& \xf8\x9e\x80\xef\x01 \xf8\x9e\x80\xef \xf8\x9e\x80\xefA \xf8\x9e\x80\xef \xf8\x9e\x80\xef1I\xc0\xf7\x04|O\xc0\xf7\x04|\x8f\"S`-\x02\xbe\x07$\xe0{\xfe\n\xf8\x9e\xfd\xb8\x11\xac\xadO\x1b\xf9=\xbaa\xf7\xa6\xba\xf5b\xa9\"xJ\x85I/XU\x17\x19\xe6 \xc1x\x9e\x08\\5\x91VpM-{>\x1c\x08\x9dJ\xc4\x90-z\xfa\x81/\xc0y\x06g\xd7|\xb1(Y\xc5\x15\xd4\xad.Q\\\xeb%\xeb\x84\xad\xb9\xae> \xdc\x93\x94VY\x0b\x9a\x96Nm\x19\x1c\x15\x1a%b\xfdLz\xec9 Dc@\x95Y\xbdfE\x12\xc9\xdf0\xa7\x05\xcdx{\xd0K\xb3b\x99T|\x9d5\x8e\xb1\xdev\xf8\x1cJK\xf9\x18jT\x88\xae\xa4\xba\xe4\xaa\xbea\x03\xf5\xd9-\xfe\x81\x95\xdb\x8bEk\xd4\x9b&\xeb\xc4W\xbb\xf0l\x9bnE\x1f\xa2F\xa7\xa9:\x82E\xd8\xb7N{\xc1Tt\x91\xa8?\x9d/H\xca\x16\x95\x0c\xe9\x8b\x18\xbf\xdc\xc4\x82\xbf\x17'\x08~\x84\xeby~O\x18\x8dV\x84n6O\xa8E5\xd0\xde\xbeo\xd3\xa5\xf2\x06\xd7(\x8c\xd0\x1c\x0c\x0d\xc1\xa4k\x98m\xa8\x89\xfc\x08\x0d\xc2\x83b \xa9\xc5%Y\x94\xd6qo\x8bJ\xf1+m\xf2\x9en\x8fA W\xf1\x08\xf3\xa5D\xc1\xad\xf4\x8c\xcb\xc7\xf3\xb2\xd7[\xbd&\xc0\xae\xbe`\xa5\x08\xb9\xc3\xf4j\xe7#\x9frGb6%\xcb,/z\xfet9\x1b\xbb\x9f@\xcd\xec\xda\xb1\xf3M\x18w\x9d\xf5\xb8\x83i\xed\x96\xf2\x8dl\xe3\x9eB[3V\xcd\xa0q3l\xdc~@+6E\x129\x82\n{\x92<\xd4\x0d\x04\xf5(\xc6'\x8c@\x86C@=\x80\x9e\xd3\xc2<=A\x9ec!\x9e\x02\x8d\x06\x83C\xae\xeaQ\xce\xabV1\xb1\xce\xca\xb8\x0e\x1f\xd1\xcfJr\x9b\xa7\xf5Z__\xfc\xd3\x04\x81+\x0b|\xce\x0d\xa0\x93\xf5\x90\xcdi\x17;\xe8\xdc\xb2\xbb\xfd\xc7\xc5\xf5\x8e\x15\xe6.\xd8\xd4E\xb4\xa2M$s\xc5P]\xda\xe7\xebML+\x16\xcf\xe6i\x1e\xdd\xccV,Y\xae\xc6\xde\x14K\x06*D\xf7i\xa9\x03\xf8\x8d\x88\xdf\xf2\x05:\xce\xf0\x05\x9d\xa5\xc1\x02;VW\x99#\xa8\xb8g[V|\xdb\xcca9\x16c\xaf\xc9\xf2\xe9\x01+\xec.\x07\x02\xe88\x1c\\\xd8[\x9b\x02\xba0\xa0\x0b\x9d\x13\xd2wY \xe8\xc2\x80.\xd4K@\x17\x82\x04t\xe1\xb6\x04ta@\x17\x9a$\xa0\x0b\x03\xba\x10$\xa0\x0b\x03\xba0\xa0\x0b\x03\xba\x10%\xa0\x0b\x03\xba0\xa0\x0b\x03\xba\xd0$\x01]\x18\xd0\x85\x01]\x18\xd0\x85\x8aL\x81\xf4\n\xe8B\x90\x80.\xfck\xa3\x0b\xf7\xf4rXhLi\x06e\\\xc0\xdf\x9b\xdc8\x10\xd1l\xda\xcf\x0d\xf7\xe7\xe39\xcdn\xc8:\x8f\xeb\xb49Fk\xee\x84\xc5\x82\xbe\x91\xed\xd9S<\x86\xaa\x0eUz\xb9|@'j~\xa3\xaeN\xa0[;\ni\xc5X)\xe2\x8cJ\xad\xe9g\x84O\xcd\xf8\xd1<\xdd5\x8b\xcf\x0e\x89g\xdep\xbb\x15\xf1\x13\xfa)\xb9(\xd8\x02o\xfb\xe4\x9b\xa8\xff\xcb+\x89\xd5\xfb\xbf$\xc9\xca\x8a\xd1\xf8\x88\xfcJ?'\xeb\xdatE\xa3\xc0>\xe4\x0b\x82/\x82\xff4M\xf3\xbb&\x80,\x9c\x9fx\x17gl\xda\x08\xb0\x8c\xceS6[\xe6\xb7\xac\x80qnSP\x1f\xe4\xa5\x8a\x8f\xe7\x87(7\xfc%\x0b\xd2~\x14\x1d\xcd\xb0\xb9(\xf2\x14\xc6\x036\xa2$\x89\xf1r4\xf4]\xeb\xf6\x1euV0\xde\x99Q\xc5b\xbc\xa4tV\xb0%\xfb<\xb2\xf3]=K\xe5\xc6\x8d\xb0\xcf|m*\xe1\x06KyC\x19M\x93\x98V\xac\x13\x91\xb79\x83\x08Y\x14\xf9\x9ad|\xc4\xa5\xf2*U\x91\xd8\xaa$\xcf[\xa5\x99\x96\x83\xe6YZ0\xdc\xa9\x975L\x1d\xf0J\xa5\xb4\xe2\x83\x19r\x8a\xc9\xca%\xb9\xc9\x95\x8c\xb5m\x9b\xa5;\xbf\xb5\xa3\xf7\x81\xf4\xbb\xc6\x990x\xcc\x1b\x8a\xdb\x9a \x1e\x90\x08\xb4\xc4^\x89\x96\x04\xfaA,\x02\x97\x17\xaf{\xe5\x05\x1cD\xc0A8\x83\x00~\xd64\xe0 \x02\x0e\xc2\xf4d\xc0A\x80\x04\x1c\xc4\xb6\x04\x1cD\xc0A\x98$\xe0 \x02\x0e\x02$\xe0 \x02\x0e\"\xe0 \x02\x0e\x02%\xe0 \x02\x0e\"\xe0 \x02\x0e\xc2$\x01\x07\x11p\x10\x01\x07\x11p\x10\x8aL\x11\x93\x0e8\x08\x90\x80\x83\xf8\xb3\xe0 \x86\x01\x0d0\xcc\xe5}\xb3\x99\x88\x8a\xe5\x0b\x0c\xee\xe5Y\x1b\x17\x13w\xf3\x88w;P\x83+xK\xfceoA\x06\xa6\xa4\x05\xc6\xa2\x883Pc\xc9\xa6\xe0pO\xd82(X_u\xbb\x05\xa6\xcc\x970*S\x82\xd9B\x99s$\x0c\xcb\x8e\xe0\x11n\xc51\xe9\x15n\xd5\xbd.\xee\xb5\xc1RB\xc0\x95\x84\x80\xab\xd3\xdb\xe8\x9e\x99(!\xe0\x1a\x02\xaez \x01W\x90\x10p\xdd\x96\x10p\x0d\x01W\x93\x84\x80k\x08\xb8\x82\x84\x80k\x08\xb8\x86\x80k\x08\xb8\xa2\x84\x80k\x08\xb8\x86\x80k\x08\xb8\x9a$\x04\\C\xc05\x04\\C\xc0U\x91)\x82_!\xe0\n\x12\x02\xae\x7f\x96\x80\xeb\x9f\x81x\xce*\x1a\xd3\x8a\x1e\xdf\xbe8\x16q\\\xf8\xe7\x1f\xf2\x0f3^]K\x84X\xb9\x08\xe7\x0c\xdf\x7fC+\xca\x1f\xc5\x81&\n%\xbc,B\xcb2\x8f\x92\x862\x0c\x1b6\xfc\x8c\xd4Jkt_K\xe7\xd0\x81\xe0\x99F9\x9f\x891\xfa\xf8\xc4\x91\xb4\xa5\xe8v\x19\xee\xa2T\xa5F\xe2\xb1\xbd\x8dA\x1b\x1c,V\xd7J\xa7\xa2\xd7\xad\xb2A\xa1rT \xc6.\x1e\xa1\x0d\xba\xde*l\xcb\xc9\xa1h\xd2+r*b\xa5\xdb\x1d \xe5\xf2\xe2u\x08\x9e\x92\x10/\xab\"a\xb7\x98\x9b\x1fu\xb3LnY\x06\xee \xa1\xa5\xe7\xac\xfcVk\xbf\x9bb\xbe\x91\xed\xddS\xab\x0d\xdd\xb7's\x0d\xea2K\xe2igK_\\\xf9\x14\x08\xf9\x08`\x05r\xfeF\xac\x05I\x89U;\"\xe4\xbcE\x03\x95\xf1\xcd\xd1\x19\x0e\x03cI\xdcd\x16\x0b\x1a\xe1\xaa\xc2O\xe6w+V4\x97\x022\x9c4\x0d*(\xc9\xc8k\xb8iI\xaf\x1e\x11\xe9\x80A\xb6\x07j\x02\xe7<\xcc\xfeN\xcd\xc4=w\xea\x81\xb4\xf3w[\xac\xb8\xc0]\x16\x93:\x96\x81P\xbe\xd7\x02\xcf\x83\xec\nm\x19\xf9]\xd6\xb1\x89]\xb1\x8dh\x14\xe3\xb8Fq\x8cn\x14\xd7\x18G\x11\xfdo{\xc4\xab\x1f\xc5\x83\xd8U\xcd\xb6|\xd1\xd9\xb7>\xc7\x18j\xa2\xcdN\"\xa5\xc8S\xe3\"\x85\xe2\x1e\x0f(\x14\xcajg\x8e\xacF\xd3\x85\x1d\xe4\x84=PMP\xa1\x11N\x95\xda\x16\xf4&C\x14\xc6\xb2\xdazQ\x14\x81\x05\xe5\xe2\xec\xf2\xfa\xbfg\xd7\xff}\xf1v\xf6\xf1\xfd\xd5\xc5\xdb\xd7\xe7\xef\xce\xdf\xbe\x19\xf2\xda\x87\xcb\xf3\x7f\x9e\xbf?\xbb\xfep9\xe4\xad\xab\xb7\x97\xbf\x9d\xbf~;\xe8\x9d\xf3\xf7\xbf\xbd\xbd\x1a\xf8\x9d\xd7\x1f\xaf\xae?\xbc9?{?\xe4\xa5\x0f\xff~?\xacfg\xef\xde\x9d\xffr~v\xfdv\xc8K\x1f~}\x7f\xfe\xf3\xc7\xab!\xaf\\\\~\xf8\xed\xed\xfb\xb3\xf7\xaf\x07}\xe8\xf5\x87\xf7\xd7\x97\x1f~\xf9eX\x9b~;\xfb\xe5\xfc\x8d\xb3[\xe5a`\xcc@\xf2 \xd8\xb6b\x1a\xab\xa3>M\x04\x04\x16O'Q\x9e\xa1c\xc5\xf1\x8ei\xe0\x9f\xea\x7f\x16\xdf\xc0\x8b\x99\xf2\"\x81k\x10-\xb8)\xddG\xe4<9\xd5\xfd\xd8\xc6~c6\xaf\x00\xd3\x94D\xe0z\x94\x81\xdaA\xdf\x92\xf3\xebT\xf7#4\x06#\xbdID\x92\xec\x96\x95C\xdb\xd2\xcc\xc5S\xed\xaf\xb2K\xb2*\xa9\xeeq\x81m\xda\x07\x8e\xb08\xa1\x99h\xa4\xb8\xe2\nT;\xac\x910\xb7O\xb7~Q\xd2\x92\x81E\xdf\xd0\x02\x1104\xc3%W\xae8|\xfd\x1c\xf4\xc1\xc66\x9cj\x7fE\xbd\xe2\xe7\xd0\xdb\x92\x11\xbaX$iB+F\xe8\xb2`\xb0M\x18\xf4IaYN5\xbf\xe1\xe7`\xafB\xd3\x06\x82\x80\x9fo\xf64\x90\x80\x8d7|\x9d%\xf3\xba$\x90\xaa\xb0\xcb\x1f\xf0\xabHk\xafN\xf5?\x13qg)\xe9^\xc6\xdat@\xe3pU.Y\x83u\x1e\x10\x08\xa4\\\xd3BT\x99F\x15\xa1\xd1\xe0I\xdc\xda\xc6S\xfd\xcf\xddQ\xd9\x06\"PG-2G\xccr\xb1\x0d!\xcf\x13FX\x96W\x16<\x90\xae:\x8d\xd1=\xd5\xfe\xaa\xab\x8c\xcc.W\xca\x93\x1b\xcc\x89\xa6&\x96\xcfK4\xa5\xcf\x0e\xcd\x96\xf7\xafy\x12wOw+& S\xb2\x1b\x9f\x95-?\x807A~\xd8X\x9a\xcf>\xec\x8c\\(sT\xee\x0b\xf9\x14:N2\"\xcf\xb1\xb0Ok\x1d\x9a\x96\xf2\x84\xabS\x0e&\xc3\x93\xbek\xd6\xf5\x8a\x95\x90\xdf\x92\xef\x92\xdbaL\xaa|CRv\xcbR\xb1\x91\x97f\xa5`Q^\xc4fS\x86;\xcb\xa3~\xc1\x00\xfa\xe4\xba\x85\x03{\x93\xf6\x8f\xcfdcQ\xebp\xa3Z\x9c\x0d\x12\x054Y\xf4T\x83*[\xd2\xcf\xf5wO,g\xda\xd6\xbe\xe5\xe0o\xc8\x17\x0bq\xba\x07\x0d\xb5\xe9S\xdc;\x80\x896\xc5\x1e!\x15\x8f\xe1C\xbc\xd4 Ou\xf7@[\x0e\x976\xdd\x93mh\x90\xb6s\x8c\xcf\xach\xb9\x9a\xaeY\xbc\xde\xbcD\xc1\x9co\x81\x19r\x8cX\xc3,6\xa3D\x06\xd7\xc5\xb59\x11y\x0f\xb6\xf7#Me\x9f\xf3\x0f\x02\xc3\xdc\xc6\xb0%\xed\xc1\x9a\x0f\xd6^OE\xf9z\xcd\xb7v\xd4\x9a\xea\n(\x83\x8f\xd6t\xfc\x1c\x1e\xaee\xb5\xdb5\x132\xbdY\xb7\x11R\x1av\x13y\x8eE~\xdb.\xd1\xa0\x93\xe3F\x0d\xd2\xb4Y\xcb\xe3\x9b\x84\x1b\xc3\xf8H\xb2M]}\x15\xe1W\xd7(\xf6\xeeL\xbf\xfda+\xefyW\xca\xf4\x83QZ\xc7hz\xd3$\xbb!s\x1a\xdd\x08\x1a\xbc\x92\xa5\xd1Q \x1f\x04\x96\x84*\xc2\xf2Z\x96T\x14\xef\xe6z,\xaf(~\xc3\\cF\xc5b\xd9z\x8b\xdf\xe5\x05y[Vt\x9e&\xe5\xca\x11\x01&r#js-\xbb\xec\xe9\x00u\x0ci\xa5\xde\xe8&,\x820\x83\xba\"\xf3&;\n\xbc(\xf2M\xceW\x18\x8f\xf66&r\xdaF\xc3\x85\xce\x1bY\x8f\x05 <\xaa\xa2\x8e\xe0\xc4\x06\xfb \x91)\xc8RXY\xd1\xaav\xc1 ^\xcf\xae\xae\xcf\xae?^\x0d\x08\xe7\xea\xdf\xbf\xb8\xfcp\xf1\xe1j\xe4\xcb\xf8\x9b\xc30\x8a\xe8\xf7.\x95\x1ff]\x9d\x8ari\xda\xf1\xba\x12\x08u\x84{`\xa1\xa4i\x12\x1f\xd7\x19\x9e\x7fp,\xf2q\xe1x\xd1\xd1]z}\xca\xbf\xf6C\xb5\xca\x0cP\xf3B6V\x07\xc0\xb8\xcd\x99\x06\x87\xf7\xb8\xfa\xe1o\xfa\xda\xe1o\xfa\xba%89;;\x9bM\xc1n\x93\xbc.\xd3\xfb\xadi\xab\x849\x8d\xf5\x14\x06\xe3\xba\xa0\xd1\x0d\x06\x9apg\xd2\x9ct\x98\\M|N'N\xeb\xa3\x16\xbe\xb5?\xe5\xed\x89V \xc3\x8c\xbd$\xaf+\xdeh\x8b\xf9q\xd5\x08K\xf8*vYO\xb0\xce\xfeK\xac\xb1\x0d\xe0_(\xbc\x19\xe2\xf8\xef\xe3\xe6|\xea(\xaf\xe7\x12y\xa4\x95\xec\n\xca\x92\xed\x90C\xa9=r\xf7\x0eD\x8e\xd2\xa0\xfeB\x0fb\n&\xd9R\xe6)8X\xd0$\xad\x0b\x86\xd9\xafYf\xcc\xf6\xd4\x14\xe7\xdbg\xbeK\xdb\xd5\xc7_\x06\xaf\x0b\xdbo^\x9c]\xb9\xe1b\xddW\xae\xfe\xf3\xfcb\xe0+\xef\xce\xce\x7f\xf1]\xf5\xc6\xb4k\xf8zg\xf8\x8aK\xf1\xc6\x17;k\x1c\xa9\xb3\x92\xb9`-\x03\x10b\xdb]\xd6W\x14\xff\xad\xb3P0e\xdc\xf3 \xdc\xa6\xd7\x18\xfa9\xde\xdd\xfd\xcf\xf1\xdf\x94\xcf5M\xe1\xa7\xe22\x89\xe5\xd9\x19>|\x93l6,&q\x0d\xab\xd4:)K>\x8d\x84\xf5\x87\x9cZ)\xbdgq[\xdf\xa1\x15\xe4\x83\xab_A\xfe\x9bQ\x1f-\xc0Z[k>\xb3u\xees)>\xe6\x08\x8f\x17\x1f\xd0z\xb0,\xa2\x9b\xb2N\x9b\xaa\xc8\xe5l\x01\x8b\xb6\xdd\x8bE\xda\xb5\xdc\x81\xbfq\xd7\x0b\xbf\xfb\xbc\xfcVI\x05\x05\x19\xf6\xf3\x85TO\xb6\xec\x18OGr}\xdc\xde\xcb\x87[\xb6\x8b\xa4}X\xcc\xff~\xa2\xf0\xfb\xb5\x92\x8aj=\xdb\xe2\x9c\xddy\xd0\xfe\x05\xfd\xf7;l\xd6\x07\xa7-\xf9\x13b[\xce\xafX)TZ\xf7\x90y$\xc0\x063 ,x\xca\x16\xba\x8f##\xf8>\xc3\xb9>Cy>C9>\x83\xf9=\x83\xb8=\x83y=\x039=\xc3\xf9<\xc3\xb9<\x03y\x12\xf3c\x83}$>\xc6\x0bE\x1d\xdcx\xdb\xccR\xe3\x0e\x94\xbc\x9d\x15\xcd\xe2{[\xd2\x99\x1e\xb3\x93\xb6\xd0\xa6\xbdw\xe6\x88\xd9~f\xe1g\xe5wY\xd934Ie\x98\xe9\xc1\x8bc\x7f#xql\x8f\x07/\x8e\xfe\xf7\xe0\xc5q}'xq\x82\x17'xq\x82\x17\xe7\xa9\xbd8\xb4\xe3\xc5\xb9\x17\xb5\xe8xr\x16u\x9a.\x924eH*6\x16U&K\xb8\xd4\x9f\x92\xaa\xa0Y\x89\x83f\xd4\xf1K\xba\x0d\x1e\xeb\xa8j\xd1\x8f\x93\xc0\xd1\xbdf\xb2\xb4\xf3\xe1\xacy]l\x80R\x8f\xe6j\x08p\x8d\xca\xe7IF\x8b{\xf2\xbcefH\xea\xb5\xc1\xc1\x96\xd2\xb2\xb4\x92*\xfc+\x84\xfc.\x81\xe5\x02NV\xd5\xdc\xa3\xaf\x0e\x0bD6\xd1y\xaa\xeb,{G\xbd\x16e\x0cpMY\xc7]y0\xc45\xa5\xd7\xe0xwU\xd7\x83\xd4\xf5X\xe9'\xd1\xceN+\xc1\xa3\n.\xab)\\V\xd3L\x1b\x8bMz/f\x14\xa2\x17E\xdf\x8b\x9bme\x12\x98&\xa1\x8a\xb1\x94\x9e_\xd9\xc2\x8c\xfdK2\x1fU\xeb\xd5\x8c\x02\x175\xaaz\x18.\x1am\x0b\x06J\xb0H\xa7\x05\xa8\xd4*o\x18\xb4\xad\xd5\xb6\xe6\xc2\x0d\x9c\xc9-y\x02.\xc7\x13r&}\xaax\xceG\xba~=E\xca\xf6A;&\xed\x99\xc3\x08\xc1EU\xa1A=g \xe4 \xec%W\xf8\x96\x9fV\xf0+v\xef\x01NC\xcb\x03\xcd]\xa4\xa3m\xecY\x93\xbe\x0f\x11\xf0\x9d\x1dqI\xab\xa4\x14)\xa0rB7\x9b\xf4\xdenk\xb1K\xae\xb6\xf2\xd6\x08\x9c1\x15\x0fh\xdfw\xda\x14\x8f\xa1\xe9\xd3^\xd8\x955\xe6\xce|\x8f\x85\x83+\xd4\xb1O`\x91\x80z\xd3\x18*\xfd\xb0D\x84\xfb\x0c\x9a2\xba\x0d\xd7b_\x89\x85\xf5\xd9M\xbd\x05\xef\xb9\xe8Ls\x9f!\xad//$\xe9\xef\x97\xf3\xabk\xd3\xa4\xf2\xe8\x03\xbbo\xf7\x90\xbcy\xfb\xee\xfc\xfd\xf9\xf5\xf9\x87\xf7\xfe\x1e\xbc\xed\xb7\x9c\xbc\xd7\xedW\x1clW\xd3\x0b\xa0\x0f\xc3[\x8dGrx\xa3\xdc\xfbc\x14\xab\xc2\xccz\xb6\xbc\xd4\xe7\x06\x01\xb3\xf5X0]\x8d\x05B\xba\x03\xb3)2\xf7\xd0\xb6r44W\xdaR\xd0E^\x05\xe1\xd7\x81\x14U\xcf\x9b\xb5QF~\xb2\xbc\"yv\xe8J\x88o\xea\xd3\xed:i\xc8\xad2\xc5\x83\xb4\x86[\x04\xd7\xdez=\xbc\x1a0\xb4Lu\x81?\xea+D\xefu\xd5\xe9\xde\xf4\x01\x8f\xb6\xee\x1c\xb2\xa2\xb7\xb6%\x9d\x97^r\xa3h\xcc\xeb$\xaeAN\xe6)^ \xf3\xf0w4\x84 R\x08\"\x85 R\x08\"\x85 R\x08\"\x85 R\x08\"=N\x10\xe9\xba3\x14\x95]\x8fG\x1a {\xb3t\xa7c\xd5y\xdf=\xb8!\x1c\xd4r`\xc6\xd4c\x10\x89B\xa0\xecq\xe3\xfd\xc7\xc3\xfc\xb1p\xdfo\xbd\xed^\xcbTG9\xd1\xf0i'\xf6\xcbgy5\x83?L\xea\x947\xec\x1f;\xado\xbe\xdcm%\x8d\xe3\xa2Tj>\xaf+8shjoW\xe6?Y\xf5\xf3\xfdY\x1c\x17\x978\x90\xe0d#\xb8\xee\xf8o0}8\xb4\x18\xf9\xaf\x9a\x15\xf7\xc7\xcdK\xe4\xf2\xe2u\xaf@\xcc\xff\xd7VA\xeeg\x94\xc7\xba\xd8E~\xc4c\x9f7,\xe2\xed\xc0\xad\x84\xfc\xb6\xda\x902Z\xb15\xed*\xd3\xe8\xb16{\xa9\xe1\x03\xa6^\xd4vH\x94\xc7\x1a_\x08\xbe`\xca\x15\xaed\x08\xff\xee\xe5\x96\x82\x0c\xb9\xb7-u\x88YE\x93tOBB\xe0\x08\xb3 5\x9d\x87#8\xfa\x8d~[\xeb\xe9n\x1c\x8dJ\x9d\x0f1\x0c\x81s\xc54\xfc\x00\xc7/\xcc\xf7\x9aU\x14\xfdm}n*@i!\xcdR\x9a\xe77\xa4\xde\xa8#3\xc9N\xc9\x86v\x12\xe4HCwJ\xaa\xa2\xe3\x95\xd0\xf7\x97\xa6\xa7\x0cjh\xcf\xd0\xef\x84\x12\xa2\xf2V\xf9\xfb:\xc9\xce\xa10\xf2B\xfcZ\xd1eG'0\x83\xbf!\xe4\x98o\x13YF\xb3\x88\x1d\xcb\x86\x1f\xdf\xbeh\x12ur\x03z\xfcG?\xfc\xf7\xbfX\xd4\x925\x13\xba\xac\xd7kZ\xdcwL\x8b>\x0e\\\xb0\xaa.\xb8\xfd2q*\xa4\x91\x81\xa5\xba)\xac\xcf\xbb\x90\xaa7\xd9\xb5\xeb\xfeJ5Kb\x12\xf1\x8d\x01:\xbb\xc15Q\xd7I|@\xd8\xd1\xb2c\xa8~\x98G'\xf40\xfa)\x8e\x0f\xbf\xff\xf1\xef\xdf\x1f\xfe\xf4\xfd\x8f\x8b\xc3W/O~`?\x9c\xfcpB\x7f\xfc\xfe\x80P2g\xd1\xea\xbb\x97m`\xd9PQ1\x86z\x1fQ\xb5\xfb\xe2\xd3\xc9\xc9I|\xf2\xe9%\xfb\xf1\xeeUI\xef_}G\x17\x9fbV~\xde\xbc\xfc\xf2\xe9\xcbM\xf1\xfd\";\xc0\x1d\x9c\xf8doY\xef\xe27\x9a\x9f\xf5\x1f.X\x84\xdf\\\x19\xbfy\xf7\xfd\xcb\xf8\xd3\xcb\xdf\xe3\xdbuL\xbf\xd4w_\"\x1a\xc7\xab\xd5\x8f\xcbu\xfdi\xc5\xbe|\xff\xfd\x119_4\xe5%MN5M~\x8f\xed\xbaT\"\x9f\xbb\xa9\xeb\x9b\x1d5\xacp\x02\xcban-\xff6\x9f\x89,\x86\xb9\xd8~\xf0\xe7{\xb9\xe0\x1c\x18\xd3\x8f\x94\xdeX\x18L=_5IT\x95\xfc\xf8W\xac\xf9y\xd6\xd9\x8cT9\xccy\xdc\xab\xc3\xdfyE\xd6D\xe4,G\x9f\xb8\xec\x97&o\xeey|\xaa\x9f5\xe2A\xb9\"*S\xf9\xd9\xcb\x93\x93g\xe6eUIa\xf4\x90\xebi\x07$\xd1\xd4z\xdb\xb8w*\xa7\x7fI\xee<\xee\n\n)\x90\xf4\x9d\xb3\x0d\x8c\xb7.g\xf6\xc5\xccQi\xe2*\x9d8\xbf@\x06`(\xbc\x16?\xcf@\xef\xa4H\nO\xf2\x8a\xcf\xa1\xc9\x9b\x1dd)C?Y\xfb\xe2\xec8\xe2\xd5ydZ8\xc3.\x0c\"\xcfn ;\xd4g\x04\x8f\xc8\x9bI4\xb6Vc\xd8D~|\xa2]j\xe4\xe6\x14\xb9\x8e^\xaaL\xcc+\x1a\xce,\xf2\xe6\x16\xf9DO\x9c\xf1\x13O\xc5O\xcc1\xf2g\x19=f#\xdd\x81\xa2Q\xa1\xa21\xc1\xa2\xe1\xe1\xa2\xe1\x01\xa3\x11!\xa3\x81A\xa3\x11a\xa3\xc1\x81\xa31\xa1\xa31\xc1\xa3\xc1\xe1\xa3\xf1\x01\xa4!\xe6jT\x10\xc9Z\xde\xd0\x9b\xa0\x1f<\x90\xf4x\xa1\xa4\x87\x0d&\xedA8\xe9\x91\x03J\x8f\x1eR\xda\x93\xa0\xd2\xbe\x87\x95\xf6*\xb0\xf4t\xa1%\xbfs\xd2\x84\xe1%\xef\x00\x93_\xcd&d*M\xc9U\xf2b+yn\xc9\x86\x9c\xb0\xad\xbarB\xa8\x07\xb1\x96\x1c\xbc%\x17|\xda\xab\xe9S\xb2\x97|\xf8K\xc3\xaa5 \x87\xc9\xdduS\xf1\x98&e29z\xdfo\xf3\xa6u\xb8I\xa0\xe2\xb0\xe9&\xe2X\xba\xe3d\xc7\xbf7K\xe2\x19?\xc4\xeaG\x80_\xb5\xb5\x05\xb6\xfeb\xed\xc5\xad\x86\xa2\x92\xf8\xb8w\xa7\xb0\xaf\x9f\x91\xf88\x95\xdc\x0e\xa5~[v\x9c\x19^\xb6\xcaO\xcbDS\xbb&\x1cL\xef\xe0\x13[Z\xb3\x19w]@\xc4\xe4~\xd8\xeab\xbc\xb2r\xbf\xb53\x93\xf7j\xa2\x92\xc4\xbf6y\xd1:\xd0l\\\x9c~q\xde\xba\xe9\xfeP\xd7\xfb>\x8a4\x15\x16:\xf3.\x04\xde\xe9jv\xa4\xfe\xf8@\xdcQ]c5\xc1?-\x07\x8b\x08\xea\xe1\x97\x9a\x9b\xbf\x1fh\xccL0D\xc6\xb6Y\xe9l\x08\xbb\x92\x15\xfb,[=\xb8\xb5\x9a\x81d\xe1\xd0\xb6!\xbf\xed\xb6?\x05r\xa2t\x87\x9b\x9c\xdf \x1e\xdf!\x83\x82N\x9e\xfd\xefi$&\x0f=\xb9\xc3/\x9e\xd5w\xed\xfaP\xa6!\xf5\x92A\xc4^\xe2$\xf7\x12O\x97\xb4\x87S\xdak\x84\xa1\xf8\x8c3\x14W\x17\xa1xv\x94xx\x0c\xf1\x97\x88\xafx\x90\x7f\xc9\xc8\n9\x19\xa5\x04\x0e\xc9\x95\x07S\xd8\xa3 ?.1\xf1\xe7\x13\x93\xa1\xcd\xf6\x9c\xf5(Ct\xe4<\x1c{\x90m\xb9(\x0cd7\xe7\x16\xc5\xcd3&C\xd54\xb4\xe5\xde\x9cc\x8f\xf2\x80\x88\xed\xcf;&\x03\xaa;%\xff\x98\x0c\xe4 ;\x8aj\x18\xcan\x1e2\xf1\xe0\"\x13o\xad\x0c\xe5$\xdb;\x82\x9b\xb5]x\xc9\xc4\xd7\xe4y\x0eg_\x1dT\xd3\xf0\x94\xc9h\xae2\xf1\xe3+\x13\xef6\x0d\xe7-[\x8b\x9b\xb3a\xdce\xe2\xdfG>\x11\xe3\xe1\x94_\xd3\x9bN.\xb3\xfe5\x8f\xdb{\xc7p\x9a\xc9n\xbcf2\xe8(\xe3P\xa4\xbd\x0f|9\xce\xd6Bz\xfcg\x17\xcf\x99X{\xf0)\xb9\xce\xfa\x9a= \xdf\xd9V\x95=\xe2<\x13\xe2\xc3{&\xc3\xb8\xcfd\xfa\x93\x84\xd3\\\xf9\x18\xac\x91 \x97q0\x971@\x971P\x97Q`\x97\xc1p\x97Q\x80\x97\x11\x90\x97q\xa0\x97q\xb0\x97\x11\xc0\x97]\xa0/\xc3\xd6\x84\xe1\xf0\x17Gq\"\xbc<\x04\x00\xf3(\x10\x98\xc7\x04\xc1<4\x0cf/\x800\x8f\x0e\x85y\x020\xcc\xde\xc0a\xf6\x1f\x10\xb3g\x90\x98\xa7\x04\xc5\xf8\x1e\xd2&\x05\xc6\x0c\x80\xc6L\xc2\xbf&^\xcd\x1c\xc1\xc3v\x94\xb5\x03\x17\x1b\xc5wu\xdc\xf2yw\xf0\x05\x83.\x83\xb6\xe0\x0b:A\x1e;\xbe\xc0\xbf\xea\x9a\"\xc7!\x0ct\x18\x03]\xcbM\x91;\x0f\xf7\xbc\x8fc\xbe\xdb\x1e\xf7q\xc0\xb9\x8b\xf7t\x04\xfb\xea\x9bl\xd5\xd1\x885\xf0p!\x95C\xb0\x06[\x9d\xed\xc2\x1a\xec\x8f\x8evD\x1c\xf4\x8b\xf3\xd6\xd0\x90p\xf2\x1eik\x0c\xee\xc0\x07y0R\x8b+Z\xaeX<\x95\xa7\xf6\xe1\xd5\xa7\xd4W\x8e8\xfc\xc9\xee\x8e\xe02\x81\xc2\xec@\x0do5\x8dm\xff\x04`\x0d\xff\xe96\x002\x872\xa4Uz\xf8\\2tYS\x8b\x02\x83K\x92\xb8ux\xc5-\xc5\xd9\xaf\xc9^+\x1d\xf1\\\xed\xc8 d\x1d\x8a\xe7\xf8!\xfeS\x8d\x0c\xec\x182\x00q\xe7]\xd0\xd0\xb5\x90\x8cA\xdf\xa1\xec\xa7\x06]k\xa4\xb3\xc0!\xd82\x14\x0f\x9c\xd2W\xaa\xcbq+\xe8vQ\x9aUt` \xc3\xfa\xc0\xb5x\x90a*\xdfM\x8f\xce\xa5\xc4Y\xde@\xc4#\xca\x83\x0e\xc2\xdd4\xb2\x13*PW\xa0\x176\x90x\xd6[s\x02\xff7d\xa5(\xda#!%e\x92-S\xeb\xe9\xa4\xdc\x8a\xe8\x97\xf9\x9a\x11\xf6\xb9*\xa8\x82\x8cC\xffaRmW\xd7]Y-\xdc\x11]3\xf7$\xab\xd7sV\x90\xbch\x92j\x18+\xdb+@\x1b\xca\xef(\xb8=\xc1kJ{\x9e,\xda\xecd\xdfnC4\xe1/\xdb\x83\xb1\xd3\\\xf1\x14: \xa3|s\xdf\xee%\xf1\x0f\xe0\"D\x9e<\xafg\xb5b\xa5L\xb0\xa2Y\xee\xac\x9b\x8d\x01iB\x8c\x1b\x0b\xe7\xdcqw&\xd1|\xcc'wQW|2\x19u\x12\x0b\xc9~\xf5\xa9\x91 f\xa3O;\xd4\x15\xf9\x9d\xd2/\xfb\xd1\x91\xe9[\xe7\x15(\x85\xa6e.\x03\xc1\x1a\x84F\xb7F\x86\xa2\xa6\xc8\x8b\xa4)Z\x97\x1a\xc86j\xe6y\x9e2\x03\x12\xc0o\xd8h\x93\x11\xc1\xd4Y\xa4t \x06\xe6n\xc5`\x14uS\x13\x19\xca3y\xad\xcam\xb6\x95\xd7\xf8h\xf3\x1fm\xa5\"\x92\xc2>c\x13\xac\xa7\x9f\xa9\xf4\xd5\xfb\x98YU\xe2A\xa8\xbd1\xff<\x14\xb1(\xf2\xb5\xb3\x91m?\x19l \x99\xb0\x91\xbd\x8f\xf9\x8c\x07#\xa8\xb9)##\xf7y]\xf42Y\xa1\xd8k\xa5\xa5\xd5y\xe5\x9d\xec\x15\x84Y(\xf5,\xbd\xcb\x8b\xd7!\x07% 9(\x1dk\xf1#\xe7\xa0\xec/\xea\xa6\x91\xd8\x9b3c\xf7\x02\xd3\xec\x00,v\xbd\xb3\xb6\xee\xb8\xae\xef\xbc\x9aO\xbc\x86\x0f\xcf\xe7\xd9\x1b)\xb2\xd3uK\xb2g\xc7\x8f^\xcdM\xf1\x92\x1d\xd6p\xcb\xca\xcdU\xf5I$\x14\x95\xd2\xeajA\xd3r[Y\xfdUMj\xab\xb7 {*j\xe42\xde.\xd8\x9d\xd2\x1e\xa3\x9d\xbd5\xd9\xb3\x9d\xa3Vre\xcd\xee\x14fX\xbfwo\xe5\xc4\xc9f\x8fq \xe3_\xb9\xf6,\xe9guA\xf36\xe3\xac\xd6\xa4t\xf2\xcdb\x1c\\\xaa\xa3\x93\x98SS\xb4\\P\xf76/\xa7\xce-`Z\xbaw?\x13\xdbv\xb1;\x91\xe5\xfdN\xde\xc4o\xcd\xf6t\x9cN\xcc_\x9c.\xfb\x85\xd5\xc96\x15o\xb1\xec#8,\xacE\x17g\xd1\xb63\x94\xe2D\x19;G\x11\x8a{,\xa1\xb8b\xaf\xc4\xb7S\xc4\xa3\xe3X\x8a\x95\x0fa\x87\x8c\xaa\x8a\x87+v\"v\xa2/7Q\xd8\xa2I\xbd\xcf^3\x19\xc5_/\xd5$\x8c\xc4\xc1|D\x1f6\xe2\x00\xd5\x0ck\xeft<\xc4\xc1,D\xbf\x8aN\xcb@\x1c\xc2?\x14\xdf\xb1\x96\xe7\xc7>ts\x0f}t1\x94w\xe82\xf5\xbb\xb1\x0e=L\x98\xd7\xa0\xf5ky5\x15\xdbp,\xd7\xd0\x8bi\xe8\xd3\x96\xe1,C\xdb\xed\xa8\x03\xefG\xf5\xec\x13\x17]g,\xbbp\x14\xb7p\x04\xb3p\x1c\xafp'V\xa1\x9fC\x96\xb8\x94g\xd3\xfa\x04|\xc2\xc1l\xc2}\xe5\x12\xee\x0d\x93\xf0\xab\xe0\x11V\x1e,\xc2A\x1c\xc2 w\xf6\xce=\x8d\xcb\x18\x99\xd9X\xfe/y\xf2\x06\x87\xb3\x06\x87s\x06G0\x06\x07\xf2\x05G\xb0\x05\x07s\x05\xc70\x05\xc7\xf0\x04\x07\xb3\x04\xc7s\x04\xfd-\xbcyD\x86\xf4\xd8#\x98\x81\x0f\xcb\x0b\xdc\x03V\xe0#s\x02\x1f\x9d\x11\xb8'|\xc0}g\x03\xee\x15\x17\xf0\xe9\x98\x80>\x87\xa8IY\x80M'\xb98\x80\x930\x00]\xcd\x1b\xc1\xfe\xb3\x1f\xd4w\xe3\xfe\xf9\xadz[^\xe3j$\xef\xcf\xc2\xfa\xebqSv\xcd)\xac)\xae\x05w\x0e!F\xec\xc2\xf6s:\xb7\xddn\xedn;\\[\xf6)\x02$~\xfa%\x13\xf2\xfb\xb4P\x00\x13\xca\xb0\xd7\xb1.&\xc3\xd3\xeb\xc5\xc5Wp\xa0\xa1\xfd\xf86\xbdO\x0e\x81\x86\xef\x81\x86\xc6\xb0\x10\x9c\xfc\x83q\x9a\xf3\xe2\xf0\xed\x81\xca\xec\xdc=\xa9\nKy\xa3\x95\xf4\xa8 \x96\xfb\x1f\xb6\xd2,\xa6\x9aL[\xd4\x03;[\xcf\xbf5\xda\x82\xc9\x08\xa6^\x07\xd8\xb3\x1bO\xcf\xb9F\x11\xafu\x8a\x0cf\xe8y\x8d\x14\xe2;\x91\xc8\xa0\x8e \x03\x98y.\xfc\xbc\x94A\xab\x18\x19\xcb\xca\xdb7\xad\xb9V7Gq\xd5@\xd6\x93\x07+\xe8+\xd3\xdf\x98\xb5o\xbb\xa0\xe1\xfc\xbb\xf1Zws\xef\xbc\x95\xbc\x8b\xee|\x96\x83\x07\x1d}\x13\x0e\xb6]\xf4\xb03\xd7\xcecH\x8e\xa1\xaeM\xc3\xb2+\xb7\xe2\xd7\x838v\x81\x8b\xe6{\xac\x1f\x80?oe\x1a$z+\xa5\x19\xa7\xdcJ\xe0\xa2\xa9b>\xa9L4J\xd4#F\xa6\xdc\xd0%c\xbb9\xdc\xd5\x8f7\xf5\xebK8\x87\x99\xd5\xba\xa5\x16\xdb\x9e.\xb1\xff\xc2!gF\xa7u\xf6\xbd\x9a\xcd\x96\xb5\x02\xc92\xcb\x9d\xdf\xb7:+\xbc\xb7x\x81\xeb&e\xaaF\x8eB\xc8\x1bg\xe2\xae\\7\xcd\xda6\x9e\xe9\xa6s \x07\x9e\x9b\x90\xc0s\x0b<\xb7\xddv\x17\x96=E\xe0\xb9\xa1hG\x8a\xec\xf4\x1e\xa8\xc8\xd6\xd1c\xb7\n#6\x08\x1e}m\xd8\x16\x0c\xde\x0cX\"[\x9a-\xc0dz\x0f\x8c\xb9\xc0\x98\xeb\x0eJ\x951'\x8a\xd5q\xe5\x14Mi\xb6\x16\xe5\xbb\xbc\xd0s\xeb%\x9fN\x13\xb3\xeb\xd4\xa4\xb4Q\xebL}v\xad\x9bd\x1e\xeb\x80\xcf\x1ap\xa0Y\x01\xf4U7\x9c\x1d\x07Z\xfe\x83\xce\xa2cSU[\x0d\xfd\x87\xa7\xb0\xf9\xe4\xbcus%\x95\xc5pm\xd7\xa5B\xc6\x98\xe9\x92\xdc\x16\x95\x03\xce\x1aq\x9b\xb5\xb9\xb5\x12S#\xdb\xe7\xa2Y\x1a\x87\xe27R;_\x11\xfdrO\xb6\x94\x9d:\xd9w\x86;\xe7 \xee\xcfg\x9b3\xd4c3J\xfc\xbd\xee\x13\x938\xdd\xbcA\xcf\xea\xbb\xd0?(S\x919\x87\xd19\xdd\x84N\xfb\x88m\xc5 \xfd\xf6\x1aa(>\xe3\x0c\xc5\xd5E(\x9e\x1d%\x1e\x1eG\xef\x14\x07\xb7\x87\xab\x903\x02@\xa6\xa3y\xfa\x13=\x07P=\x076\xdbs\xd6\xa3\x0c\xd1Q5 \xe5s\x04\xe9\xd3\x8f\xf69PMC[>\x1d\xf9s\x04\xfd\xd3\xbf\xba\xd3R@\x87\x91@\x1dE\x85K(\xdbB|L\x9e\xe7p\xf6\xd5A5\x15-t<1\xd4\x93\x1a\xea\xdb\xa6\xe1\xf4Pkq\xe1\x12\xcap \xe5\xae\xa4\xd1\x11\xb4Q[\x0f>-q\xd4\xdc\xdf\x8fN\x1du\x0c\xbd}!\x8f\xfa\xd1G\x07\x12H'?I8\xcd\x95\x8f\xc12\x13\xf7\x86\xbc\xe6I&5P\xe8\x86\xbc\xe3E(5Q\xdc\x86\xbc\xe4&\x95\x9aheC^\xf2!\x96\x1ai\\C\xde\xf2$\x97\x9aXP\xd6\x97\xc6\x13L\x87\xad \xe6\xb1:\xea\xd3\xe1\x12J\xcd\xb7&'\x9b\x9a\xe6\xe2\xa3\xd2Mus\xfbA \xa7&\xdb\xf0\x80\x94S\xbdey\x02\xd2\xa9\xd1^\xed\x0d\xed\xd4h\x1b\x9f\x86xj2\xba\x8fA=\xf5=\xa4MJ?\x1d@@\x9d\x88\x82\xea\xd3\xcc\x114TGY;\x12Q\xfdW\xc7-\x9fw5\x92\x8c\x1a.\xa1\xdc5\x00\xd4m\x8f\xfb8\xe0\xdc\xc5{:\x82}\xf5M&$\xa9\x0e@\x7f\xa2\xf4:\xdbM\xee\xd9\x17\x1d\xb9(=\xd6q\xb9]\x9c\xb7\x86\x86\xb1+\xf6F[\xe3\x08\x80\xa6\xb2a\x1a\"\x8b\x98\xc3\x07\xce\xf1Z\x1e\xb4[\xa6\xf2\x00\x13m\xe4Y\x99\xc4\xc2II\x04\x17\xc6A\xadq\x8c\x08\xdf\xeda\xd7a\xd5\xa7\xccx#=P\xac\xa4\x99-\xc0\xd4\x14\xb4\x19m\xa1-Jj\x18\xc2x\x9b8\xa3o\xbf\xe9\x08\xef\xe1\x12\xf3q\x87\xf5\xdb4\xc1\xcc\xf1\xb4n\xbeZ'\x03\x80\xc3\xae\x81\x8a\xa2\x8dd\x0d\xc0\xab\xbb\x01\xc3\xfb\xa3)\x17@\xd8 ?\xec\x178@O\xdd\x1f\\\x98\xcc=\xd2\xd9v\xc5}\x80\xc0\x9a\xb7z\xcc\x90\xb1\xbat\x01|=U7^'NP\xaf\x0bj\xbeK\xeb'\x1a8\xe3[\xbf#\x80\xd7cx\x8d\x05\xefj\xb7\x0cf\xf8\xae\xd5:\xf6\xac\xe2C\x00x;\x0do\xa3\x8a\xcdQE\"w-\xf5,\xb5AW)_\x1b\xa23\xe0\xf3\xa4L\xd5\xc8Q0\x06CY>\xf8<\x94\x0d\x05\x8f\xa11\x80\xe7W\xf7\xb6\x94f\xd7\x9f\xc3;4U\xff\xd6\x02\x9b\x88\xfe:\x0f)\xa2\xfez;\xeb\xdc?\xbaw\x8f7\xec\xdel\x97\xbd\xac\xb2\xd7b\xee\xa7<\x82\x15\xc2\x0e\xc7DU\x98H\x1c\xd9z\x17t\xc9$\x02\xf2(c\x9f\xab\x19\x7f\xd8\x9axq\xce\x96\x89\x11g\xcc\x05\xa0,|\x11\xe03\x80\x97\xc9{\x89\x91u^V\x84-\x16I\x94\xb0\xacJ\xef\x8f\xc8\x87,\xbd'y\xc6\xec\xabd\xbeX\xa0\xfb\x99\xb7\xc3\xf6\xddr\x95\xd7i\x0c\x19\x18\x99\xa1wei\x13\xf5O\x9dd\xd5\x0f\xdfO\xd0C\xa2\x8d\xd0IY\xbd\x06\x0f\xb5\xf8\x0d}\x9a4\xe3\xed\x02G#\xa4\x1e\xe6\xaa0\x17\x97\x94\xa4\xce\xe8-MR~\xf26\xa2\xabIs\xddB\xca\xcf[M\xdf\xf0of\xa4\xe6\xab#\xff\xd0\xa8\x8e\x12\xbda\xfb\xb4\xbd\xa3\xd2d\x9d\xec]?A\xa5\xe4\x9e\xa7\xca+\x9a*\x04\x1b\xb1\x12r+:\xef\xcc2K\x81b\x91\xa8S\x9c$\xf6\xaeZ\x90\x94-*\xc2\xd6\x9b\xea\x9e$\")\xb5\x88_a\xb29\x9c\xe0X\x01\xde\x17s\xdb(a4Z\x11\xba\xd9\x98\xf9\x00uV\xcd\xa0\x95\xae~\xb0-Pd\x90\x86\x95\x8fr=\xc3\x0c\xc8\x01\xcfHz.v\xea\xa2*\x0b\xbd\xf2\"\x84i\x10\x8b\x9bM\xc9\x14k \xb7>\xfd>\x86\xf86i\xa6\x16\x1fa\x96\xc2\x94\xd5)\xc9\xc8\xc7s\xf3\x15hd\xbb\xe99\x9ft|\x03\x81xo\x98\xf6\xad\x9d\x80D\xfe\xe4\xdcv\xa2W\xaeQil\x86\xfdq\xcbt,\x18?\xd28/\xdd\x9en \x88\x0f\xf6\x07A\xd2\xce3\xd8\x1ew\xe6\x9a\xadu\xc8L\xe7\xdfg\x19\xa4\xc1\xc9\x8b\x98\x15G\xdf\xd8Tr\x95d\x11;%Q^\xae\xf3\xf2\xb0\x8co\xc8\xc9\xd1\xf7\xdfi_p\xf91q\xa1m6_Xo\xb6\x9e\xb38\xc6\x95xyy\xf1\xba\xd9Z '^i\x19_\x8d\xb565\xa0\x1d|G\xe4\xed\x96[\xc6\xb65sw\x92\xba\xed\x92\x11N\xf0\xa3\xa8\x03\xbeu\xfb \xb7\xb0\xa6 \xf3\x06y\x87\xe3\x83\xdc\xc7\xd8\xb6\xd4\x96\x95\xc3\xb9\xfb\xea\xe8\xe7\x7fL=\xde\xec\xa6\xc4r\x81\x1b+\xde\xed\x1bZ\x8a\x88\xa12*\x8e\xac\x1b/\xd8S97T\xe7\xedE\x05b\x910\xad\xd7\x15dr\xe53(\xcb\x11Xf<\xc7\x11bY\x02\xbc\x95iY\x82]S\xa7\xb1\x88\xa6\x05\xb75\xc7\xc6\xf6\xaa\x8aV\xec\xaci\xee\xdcQ\xb0:\x07$\xa9J%\x05n\x86\xe7\x8f\x98\xe4\\\x7fwI/\xf4g\x9f7F\xd0\xf3\xf8\xab \xcd\xd8\xec\xc0/\x12\x12\xf8E{\xc4/\nT\x13[;G\xf9h\x1e\x9dj\xd2\xb6R\xd9`t\x8f\xa3\xb6\xf5q\x84/Bx\x1c\xd4R\xc6\xb8\x18z\x8e\x04\xb58\xa3\xe7`\x8c\xba\xb6&\x8cv?\xa1Q\"\xd6\xcfs\xb0\x8c\xf1\x18\xd8\xfd\x02C=\x01N}v\x8b\x7f`\xe5\xf6\xf6\x17\x1a\xf5\xc2\xd9\xddS\xbb\xe3\xce\xf9\xcai\xbeS\x9a\xe6d?\xea,\xaf=\xb1?\xb2\x16\xd5\xcdS\xfb\xbeM\x97CO\xf4\xdb\xe7\xf6Nq\xda3\xfc\xf0S{\xf7\xa8\xd2)l\xfb\x9c>\xead\xae\x9c\xbf;\x85\xe9\xcf\xe2\xdb\xa7\xef1\x1d\xeba\xaa\xc5\xb9\xda\xb3\xf3\xc6\x9c\xc2\xc5L\xe8\x94\xe3:w;O\xda\xbbkc(G2\xcd#Z\xe5\xc51lh\xc4\x9b\x8e\xfb%\x1e\xd9[\xe2\xa4\xaaDU:\x95\xc1\x87:\xd0.Ekbnwu\xd2\xca\x0e\xfe\x825\xfd<\xab\x8bd\x96\xb2lY\x19\x10|\xf6S\x06\xe9\x9e4\xb6\x0e\xba_[\x00\xf6O\x1d\x9b\xb4\xd7\xaa7\xb1\xc6\x1f\xce\xfb\xc6 \x1c\xc9\x85\x84#\xf9\x1e\x1d\xc9\xff\xccG\xd5\xb1+~\x19\xe5\x1bv\xfc\x07\xfc\xdf,\x89\xffw\xd8\xda_\xfe|\x7f\xc5\xdf\xec\xac\xfe\x1f`<]\xf1\x95^W\xa9Y\xa2\x86\xdfn\xe5\xc0\xa4\x8d\x0e\xf5\x91\x83\xbaH\x04\x0e\xf0Y'\x81\xa6Z\xc3\xaf\x1d\x9c'\xcd\xa2mSh\x1c\x1cac\xd9Z\xe5 \xb6\x96\xcdZ\x136\x97B\xc2\xe6r\x8f6\x97\xd2T(\xa5M\x96\xb6,l\\\xb77\xaeu\x91\x1c\xffQ\x17\xc9\xf0\x1d\xeb\xc7\xcb\xf3a\xfbU\xf1\xc9\xa6\xb0\xbaH\x9c{\xd1\x8f\x97\xe7\xe2\x91\xb0\x13\x05q\xcd\xf7\xb0\x13\x0d;\xd1\xb0\x135N\x10\xe3\x90\xfc+oBQ\x02\xf3bK<\x8c\x85\x07\xf6\x8fx+\x8f\x8cC;XJ\x0b\xcc\x0b\x1f8!\x19\xd4Ccp\x14\x96\xe2\x02\xf3\x02e\xf2~\x1a\x87\xc8\xb0\x14\x18\x98\x17=\x19\x8a\xd3\xb0\x14\x15\x98\x17\x81y\xd1H`^\x98\xfe\xea\xd8h\x07\xe6\xc5\x96\xd8\x90\xa5\xad\x04\xe6\x05\xf1[\x82]S\xe7O\xc2\xbc\xe8\xf9\xa0\xa6\xf1\xbb\x7f\xbc<\x0f^w)\xc1\xeb\xbeG^\xf7\xaeO-8\xdc=\x1c\xee\x81\xd40\x161\x1eH\x0d\x0f\xa8\\7\x1c?\x90\x1a\xa6\xd0b 5\xf8\x1ezI 5t\xbf\xf1\x95\x92\x1a\xfe\x80P\x93%N\xdclu\xdb\xb0p\xa6\x8b\n\xcf\xefa\xa7\x0e\xc5=+\xfbY#\xf5\xa1\xe0odK\xf7;\x08l\xda}\x8e:\x19[B\xb9\xce\x1d\xe0\xeea\\g\x10\xd7\xb7\x0e\x9e\x01\\\x9f\xf0\xad\xef'\x87\x85n\xdd\x1e\x94\x1d\xc2\xb6\xdaT\xc0\x93\x05m\xff\n!\xdb\xf1\xd3\xe0O\x1d\xb4\xf5\xf4_xy.\xfa\xbe\nry\xf1\xbaW`\xf0Y\x04\x9f\xc5~\xf9,\xc0.(E\x05\xaf\xc5\xc3m\xfe\x1c\x17~~\xb8:KS\xe9\xe7\xf4\x04\x05\x1a\xf6{JA\xdf\xc8\x06\xee\xf7\x9eoO\xa6o\x00\xfe\x05\xe0\xdf\xa8=\xe4_c\x17\xf9\xa7\xde\x0b\xa2\x04\x00\xdf\x96xLz\x8f\x102\xf1V\x1e\x19\xe7\xd9\xb7\x94\x16\x00|>Qi2\xa8\x87\xc6\xc4\x0c,\xc5\x05\x00\x1f\xca\xe4\xfd4.\xfa`)0\x00\xf8z24&a)*\x00\xf8\x02\x80\xaf\x91\x00\xe03\xfd\xd5\xb1a\x0e\x00\xbe- \x00\xbe\xf6O\xbe\xca\x0c\x00\xbe\x8e'\xc9\xcb \xde+@\xba\xc4U\xcfV\x00\xef \x8e\xf0=r\x84\xff\x99\xfd\xd5\x01e7\x16\xc2\x14Pv\x0f\xa8\\7>,\xa0\xec\xa6\xd0b@\xd9\xf9\x9eLI@\xd9u\xbf\xf1\x95\xa1\xec2V\xf1sJ\x05\xf3\xb0<\xfe\xc3\x9aC\x10\x128\xbdg\xd5\x19\x7f\xe37x\xa3\x89\xbaf\xac\"P\x12Nit\xcf\x97JJ\xbfN\xc0US\xd27\xb2\xb9{\x1av\xcdX5\x83\x06\xce\xb0\x81\xfb\xb1i\xdc\x14Id\xde\xf3\xe1\x99\x0b\x9e\x91v>\xca\xd7\x9b\x94ULX^aK\xa0a\xcfJr\x9b\xa7\xf5\xda\xe4nsFM\xdc\xd5%\xd0{Y\xbe6\xff\xd9k\xabJ\x08]ss\xb5c1n\x1f\x08\xca\xeb\x9b\x1b4\xaa\xcb*_\x8b3\xa2\xf9\xa3e\xb2\xcchU\x17\xacl\xac\n_p\x97\xf92\xdf\x14y\x95\xeb\xdd\x82\xf5&\xa6\x15\x8bg\x10\xf2\x9d\xadX\xb2\\\x19\xf5\xee\xa1s\x0f_A3ru\x9f\x96\x03\x19~#\xe2\xb7|ARZV\xe2\x05\xdd4\xc3\x02;&G\xe9Q0T\xcf\xb6\xac\xd8\xf6\x14\xc7b\x9c\xc6\x0e\xc5>\xbc\xc04wm\xa0\xea;\x1c\xe4/\xe8\x19\xe5\xe0,\x08\xce\x82=s\x16\xc4\xa6\xb1\x07\xd3&\x89\x89\xdc\x95h\x10/;B\xec\x86\xee\x89\x10\x88\xb3J6\xc7\x7f\x88\xbaxf\xa9\x93\xef5\x9b\">\x89\xa1}\x9d\xeb\xd7\xe1\x0c\x90&%\x1e\x04\x96\xc9-k@4\x84\xb6\xedf \xb8B(\x01\xad\xe4\x85\\\xb1\xf9W\xf4(6\xf9}\xf1\xc7\xbd\xddJa\xb2\xc5\xbaN\xe2ig\x93a\xc0\xf6\xda\x08\x9a\xcf\x17M\xc7\x94\xe49\xaf\xca6~i\xabw\xbev0\x92h\x86\xd9\xa2\xfcUA\xed(\x01\xc8\xb4%\x1e\x0b\x81G(\x8dx+\x8f\x8cs\x9eZJ\x0b@&\xbf\x1d\xf7\x90\x1e\x1a\xe3\x96\xb5\x14\x17\x80L(\x93\xf7\xd38\x07\xaf\xa5\xc0\x00d\xea\xc9P\xb7\xaf\xa5\xa8\x00d\n@\xa6F\x02\x90\xc9\xf4W\xc7f;\x00\x99\xb6$\x00\x99\xda?\xf9*3\x00\x99\x1ag\x82\x17\x88I\xc2\x96\x1a\x0fH`\xf2\x06\x9f\xa4\xee\xef\xfb\xe4\x93\x9c\xdc\xd1\x18\xb0QB\x026*`\xa3\x026\xaa\x95\x80\x8d\x1arH\x0e\xd8(\xf1\xcb\x88\x8e\xf50\xd5\x01\x1b\x05\xe2\x8e\x03\xba\xaeS\x17\xb7%\xf3J%\xdaK\xc0?7\xc5\xd9\xeeG\xffU<\x13\xaeGG\xb1\xecB\xbf\xb6\x80\xdb\x9f:h\xe6\x81n\x19p1\xb98A\xb67\x90\xf7\xca\x0b\xc7\xc7p|\xdc\xaf\xe3\xe3\x9f\xf9\x8c7t\xa9,X\x94\x17\xf1\xf1\x1f\xf8\xff3~\xb2\xb6`f.\xe1)\xbe\xa1\xa0E\xb4\x12\xf09|\xb5\xb1\xbf&\x1d^\x83\x01i\xber\xc0w\"\xc2\xa9\x1b\x1f\x90u]V|'B\xc9\x9cE\xab\xef^\x8aG\xe5Q\xff\x80\xb0\xa3\xa5\xb2\xb5\xc3\xbf\xbe\xf8\xf4r\xc9N\xbe\xd0/U\xfd\xc3\xab\xea\xf3\xab\xcf\xaf\xd2\xf4\xf6\xd5\xe7\xe8\xa7/Uy\xf7\xfd\xcb\xf8\xd3\xcb\xdf\xe3\xdbuL\xbf\xd4w_\"\x1a\xc7\xab\xd5\x8f\xcbu\xfd\xdd:\xfa\xc2\xbe;\xe2\x15j\xca\x03H\xc9a\x12\xc3\xe1K\xe0w\xe6\x12\x02T\xd7I\xdc\xaf\xc0O/~\xfa\xfb\x8fs\xfa\xf2\xf0\xd5\xe2\xbbW\x87\xdf\xbf\xfa\x89\x1e\xfe\xf8\x03\xfd\xfb\xe1\x82E\xf4\xc5\xfc\xe4\xd5\x8b\x97\xec\x84\xc0-\x96XF\xb7\x1d\x9d\xcf\xbe\xf8\xf4\xc5\xd8\x8aO\x9f\xd3\x9b;\x96\x1e\x91\xabd\x9d\xa4\xb4H\xef\x0f\xda:\x00H\x89\x95e\x92g\xb3\xad\xaaS\xa86\xaf\x82x\xc4\xa4J\xf1\xe7\x17\x9f>\x1bk\xf1S\xf9)\x8dV\xdf\x95\x9f\xef\xb2\xef\xbf\xff\xfd\xd5\xc9\xef_\x96\xd5\x8fE\xb9\xba\xfdt\xbf(~\x8f\x8a\xae.\xf9$\x93+\x06\xfcw\xb3\x88C\x8f\xde\xe7\xf5\xb3B9\x04p\x93Y\xb0\xb2\x82\xdd\xa7\xba\xb9\xfc\x0f~\xd4\x82\x0d;U\x07\x0e/\xba\x1d7\xb0#\xe0\x87\xdc\xb4\xf9\x80pM+c\x057\xb7G\xfa\xa2\xe5\x05\xb2\xddri\x9a\xca\x81\x8d\x9bb\xfe\x19\xe8\xc9\xa1\xc5\xb7\x1d\xf4\\bMgI|\xdc\xfe\xfe\xad\xf6k\xfd\xfei<\xee\xa6\xef\xd1F\xf1\xb2\x15\x12\xe8\xdc\xb4\x90f\xf1q; fIW\x7f\xbd\xc9\xa5\xfb`\xf3\xc8\x19\x99\xd3X\xdd\xaf\xb5'\x88\xc5\xa9Z\xb1\xeb\xee\x18\x05\xa3 \x03\x93f1\xc9r\xad\xf6\x8fz\x05\x88\x08Bu\x97\xf3\xe1\x0cQ\x048\xcb+\xb6Dm\x12/Y\x16\x0b\xffR'\xcc=\x89\xf3\xecY%4\xbe@\x8b\x0d\x13\x89+\x0f^\xeb|\xfelK\xab\x07d^W$\xcb+\x8df\xd5\xee\xd6\x15\xc3\xab\xa6\x0ee\xde\xac\xa6\xb7\xf8\x1f\x9b9\x13\xe7\xac\xe4\xf5\\\xd3*Zu\xced\xca\xfbj\x8f\xfc|/wV\x07\xa4E/\x82.\xb0J\xa5\x08\xc3Tr\x81Rkx\xc5\x9a\x9fg\xcd\x9b\xbcE\xcd\x8f\xb2\x10y\x8e\xec,t\xac\x87\xa1\xee\x0e4}\xea>\xb1\x96|#[\xb5\xa7\xc7&h\x98\xe3\xdc\xa2\xdd\xd9\x0b\x94\"\xda\xc1\xbb\x82n6L\x8cK\x9ct\xab<\x8d\xcb\xe6\x08\x83s\xff\xb96\xb0$\xa6\x19\x8b\xbf\x9d\xf4\x8cch\x19q\x95J\x9c%\x13\xe2\xba\xc2\x9f\xf8m\xec<\x82\xa4\\\\\x91=.\x1f\xb3\xe4S\xcd\xc8\xf9\x1bqnIJ1\xdb 9o\xb9\x1ae|stfL\xdc'\x05\x96\xac\x05\x8d\xf0\x0cT\x97\x8co\xff\x8af\x91g8\xd5\x1a\xa6\x86\x15\x99\xf3\x1a\xfc&&%nX\x94,\x92\x08&\xcd\x1e)\xb350\x9d\x1a\n\xffu\x9eU4\xc9\xec\xc4\x97^\xdbp' \x0e\x17&\xfb\x82\xa6i~'V1X\x14\x8d\x87^\"\xc7\x9b\xe1\xef\x88\x0bw)O\x7fh\x92b<\x97 %\xbf\xb5\x16S\xe4\xa9\x05\x9c\x83\xe23\x82P(\x94\xd7\xceHY\x99\xa6\xcb\x19\x8c&\xf6\xb9\xb2C\x02Q\xc0[U\xe4\x11N\xc1\xba\xb4\x02u\xc80\xe5\xb1\xac\xb6R\xdfP\x0e\xc9\xc5\xd9\xe5\xf5\x7f\xcf\xae\xff\xfb\xe2\xed\xec\xe3\xfb\xab\x8b\xb7\xaf\xcf\xdf\x9d\xbf}3\xec\xc5\x0f\x97\xe7\xff<\x7f\x7fv\xfd\xe1r\xd8{Wo/\x7f;\x7f\xfdv\xe0[\xe7\xef\x7f{{5\xf8[\xaf?^]\x7fxs~\xf6~\xd8k\x1f\xfe\xfd~h\xfd\xce\xde\xbd;\xff\xe5\xfc\xec\xfa\xed\xb0\xd7>\xfc\xfa\xfe\xfc\xe7\x8fW\xc3^\xba\xb8\xfc\xf0\xdb\xdb\xf7g\xef_\x0f\xfc\xd8\xeb\x0f\xef\xaf/?\xfc\xf2\xcb\xd0\xb6\xfdv\xf6\xcb\xf9\x1b\x8f\x8e\x96>\xb3q\xc3\xcb\xbdW\xe9\x8ai\x14\x8f\xfc#\xe7\xd0\xa9\xee\xc7\x16\x84\x16\xb3yEJV\xdc&Q\x92-\xc9\xa2\xce\"X\xc6\x06~M\xce\xbdS\xdd\x8fxX\x02ow\x12\x91$\xbbe\xe5\xf0\xf64\xf3\xf4T\xfb\xab\xec\x9a\xacJ\xaa{\\\xbe\x9b6\x0275Nh&\x1a*\xdc=\xa0\xe0\xa1\x0d\x85y\x7f\xba\xf5K\x13B,\xd1\xfeohQ\xdd\x8b:\xc1\xa2-W)\xbe\xfa\x0e\xfcdc7N\xb5\xbf\xa2v\xf1\x83xN\xce\x08],\x924\xa1\x15#tY0\xd8\x86\x0c\xfc\xa8\xb0:\xa7\x9a\xdf\xf0\x83\xb0\xeb\xa1)z\xd0\xf3\x85\xa8@\xb3o*\xf2\x14\x1b\xbf\xce\x92y]\x929\xcdn\xe4\xaa8\xb0*\xad-;\xd5\xff,#\x9e\xbdPn\xd3\x0d\xca\x9d$\x95\xa4\xedb\xe2h<\xe9\xaei!*M\xa3\x8a\xd0h\xc4\xa4n\xed\xe6\xa9\xfe\xe7\xee\xf8Dju\xab\xa7f\x0f)g\xbd\xd8\xc2\x90\xe7 #,\xcb+f\xdf\xcclW\xa81\xc8\xa7\xda_u\xd5\xb9\xa5i\x12\xc3\x10\x16\x943\x98\x1fM]\xac\x15\x90\xfc\"\xd7\xce\xc2\x1diR\x9e\xc5\xddW\xe3\x90n:\xf4Y\xd9\xf2\xc8!\x16.>n)\xcfo'wF.\x94y+\xf7\x97|R\x1d'\x197a\xa0\x17\xbe\xd3\xb3\x16\xb3\x9d\x85\\\x0e.\xe3k\xfe+\xdb5\x9c\xb3\xb9\x1e\x12 \xd1\x8b\xa1M\xaa|CRv\xcbR\x99\xc5\x1d\x0d\x8e\xa5$yV\xc7=\xeaQ\xbfhpds=\x13\x9a\xdd\xcb\xa3\xbb\xcd\\\xc2\xdc_\xe7q\xb2\xb0\xc2\xe6\x01U\xce\xcfG\xca\xdeX\x1e`\xb1\x06\xdd\xd3\xa7u\xe4\xd5\x19z\x14\xabUS\xef4\x01\x17l\x9e\xa9ne-L\x97\x0b\xaf\xc9\x8c\x82\xff\xe5Q\x8eU\x8e=\xba\xff88k\x94$\x8e\x94\xc8*\xe5\x1a\xa3u\xb5\xca\x8b\xe4\x0bZ\xc4\x82E,\xb9\xb5\x0d\x84|\xb18Ds\x83\xec\xe7-\x12j\xe3b0\x14\x02a\xaf\x19\x8c\xbb\x99\xf3\xb87\xb5\x1e2\xe5\xc6\x06u\xf1\xe1\xbd\x8f\xf8\xa5^\x83\xaccS\xf1\xa6\\U4\x8bi\x11wn\x1a\xc0\x15\xac\x04\x7f\xe4\x9a\x167\x9a\x10i+\xf2i+\x7f\xa6`\xa4\xac7\x9b\xbc\xe0\xf5k\x0e\x90Ps\x98\x11\xdc\x18UU\x91\xcc\xeb\x8a\x915\xbd\x07\x7f\xbc\xa5\xc09\xe3\xf6:[bf\x8d\nn\xb1\x00+/\x97F>7\"\xbe\x13\xd1\x00~T\x11n\x9f\x19\xd8\xdcY\x91\xa7i\xbdqu\xab\xcb\xb2\xfb\xf7\xeb\xbf\x85\xd9\xa7i\xdaLm9\xd2[\x97pR\x95\xcd\x14\xb7\x14&\x83r\xd2Xv\nzVJ\x93 \x19P\xac\x94#\xec\x8e\xb4\xcc \xcb\xe8<\xc5\xd39\x00\x11\xc5\x1a\xf4\x0f\xf0)c\x05\xb1T[\xdf\xb7Nm\xd9F}g\xf8\xa9\x0dR\x1a))E\x8a<\xaf06\xc02\xe1\xe2\xe3KQ\x9a2\xd8\xe2\xb4\xb1\x07S\x1d\xe5\x95'\x88\xb6\x14\x11\x0bKE\xa5\xabt\x96d\x8b\\?T\xfcZ\xd2)\xa8\xf5\xc3\xa9\x14\x19:\xcfk\xc4\xea%\xf1q\xeb\n2\x14\xd8.2\xda\x07\x9c./\xb7\xb3\xeb1\xdd\xc4\x1d%\xaa\x81'\x88N\xd2;x\xbbq\x8cu\xe2\xb6\xa6\xc9\xdeh|S\xb0E\xb2\xc5~j\xe5\x81[!\xbe/\x1b#\xfe\xc5\xadc\xc3\x8bb\xcd\xc3\xce\xc6\xe0\x7f\xd4\xf5\x13t\x8b\xd5\xb8i*([\xac\xfc\xd2m\xb5Gqv}\xf0\x11\xb0\xa3\x1a\x86\xb6P\x86\xb9\xe1\xd8\x85p\x08\xfc\x02\xb9eE9a\xdb&\xe8\xe2\xa1mS;\x0d\xfe{\xc5>\xcb\xd6y\xb7J\x19\x00f\x83\xca\x0f\x87\xd3YU\xb54\x87i5\x94\xd31\xb8\xa6\x10\xca\x03\x1bZ\xd1\x8a\x1d\xfb\xfcA\xa6\xb5\xa8\x9a\xdd\x1e\xdbJ\xe9D\xa2\xbc\xec\xb6\xec\xd3'2\xde\xfeJ\xf11\xef\xbee\xf9\xa9D\xf9\xd7\x04F\xe2Au\xd3\xabjwEh~\xb6\x14\xa7]&\xfd\xb5\xf5\x04\x0bD\xf3\xddIV \xff\xa6N0\x14F5u\x82E\xc30Z\xfa\x8d\x96\xa7\xa2\xedV\xda\xbc\x19\x0f\x85\xac\x15\xb51\xa9\xdc\xb9,\xb8\xbf@\xda\xafX\xd7\x05\xcf\xde\xf5\x9c\xea\xfe\xb8\x86i\xbf;d\xf8\x81\x97\xecS\xcd\x0fJ\xd224\xcen\x0d\xea\xe1\x8e\xdac\"\xd2\xd3\x1e\x15\xac\xf1\xb3\x0b\xc5\x9b&\x1e\x91\x87F\xb7z\xecN6\x0f7\x9b\xd7`B\xf1\x19R(N\xa7\x96\x14\xcf>\x16\x0fO\x81c\xf0C2\xf8z\xc0Q\xa6E3\x8c\xc03\x0cT\xa4\x1f\xa6a\x07T\xc3x\\\xc3Xd\xc3Xl\xc3ht\xc3(|\xc3h\x84\xc3H\x8c\xc3x\x94\xc3x\x9c\xc3H\xa4\xc3\xaeX\x87a\x16\x1e\xc5\x88w\xf0xW\xff\xe6X\xc4\xc3\xa3a\x1e\x1e\x1b\xf5\xf0\x18\xb8\x87\xbdA>< \xf6\xe1\x89\xd0\x0f{\x85\x7f\xf8:\x10\x10{\x88\x81xZ\x14\x84?\x0e\xc27^\xd6<=!\x16\xc2\x7f/8\x11\x1eb\x14\"\xc2\xb7\x96MlP8K\x18d`\xc0d\xd7\x15\x92\xe2)\xe2\x18\x80gm\x85^\x13w\xb5\x80xi\xab\xb4\xdf\xbe\xd5\xafm@\xa0\xa9\xf2V}j@^\xc4\x0d\xd9g\x16\xd5\xce\xf9*\xb6\xeb\x07\xbc~ID\xd3\xf4\x9eD)-K\xfe\x05\xe3\x8b\xe2\xa5 \x9a\xfb\x00gZy\x00A\xf6*\\]\x01W T98S\xa2\x14r\xc746%\xa6\x15\xb5\x96\xb7=D\x9d\x87ZZ\xc7\xb6\x8c\xab\xc3\xda\xf3\x1a\x8e\xd31\x99\xdf\x1f\xc8K'\xe0\xbf\xabd\xcd\xca\x8a\xae7\xe5A\xe3\x0e\xc3\xac\"\x07\xf6\xf6\x00C+\xa5HG\\\x18n\xd6@\xf1<1\xfb\x9e\x97\xd13\x10\xcfx#\\\x86\xd0s\x00\x11e\x10\xf1b\x0f\xb9Z\\E\xe3\x1c\x13x#v\xcc_\xc1\xcc'0\x81XV\x15\xf7\x90\xb8N\xd4\xd7\xabMsK\xaaj\x94\x01-\xf2\xb3\x02D\x9c\xa0\x0d~\x02\xdcr\x88\xd1\xe34p\xa4\x01~Y\x1f\x93\xd7\x9e|-]\xa8\\\xbd\xe2\xd7\xb0=\xedG\x80\xcf%\x13v\xa40\x19~\x8d5%}\xe8\x8a\x92\x02\xc2\x92#\x1a\xc5_3|\xaf,\xf6.=;\x87\x9aIJ\x92dQ\x01\xbby\x0f\xff\x11\xd8p\xc8Ue\xbc\x90\xa7\x15c\xe2\x8a\xae<\xc8\x88P\xdb-\xea\xa1\xbb\x06\xc2Y\x0eX\x80$\xcf\x8e\xb1\xbd\x84\xdd\xda\x8f=~5<\xe3K\xdc;\xbe\xba\x96$\xa2\x1b\xdcejQ8|\x06Z\x8bj\xc6yN\xd6\xf4\x86\x89\xa1.Ys|\xb9\x12\x13\x9b\xdd\x93;V8z\x8c\xc6\xa6\x07|\x17\xdd+\xb1\x81j\xf0R\xca^\xaa\xd9]\xd0%M\xb2\xb2RN'\xc6\xf2\xba\xaet\xfe\x16\xcd\"[\x82\xf2k\xc5\x8d\n\x14\xf5\x15\xbde\xca\x97\xda\xfb\xbc\xc4\xa6Vlu\x8d\x05&\xd9m\x9e\xdev\xf9\xed}\xc1[\xbf\xfe-4\xddKi{\xd9A\x04\x13*\x10e\x1d\x16\x7f_Z|\x19\x95*E\xde\xb6\xd4/p\xea\xd79\xd4KW@\x1b\xb4\xb1\x00\x1c\xfc\xbb\xb5W\xdc8\x84\x83\x16\xe3`\xdf\x0ez\xec\xa1|\xf6O\x8f\x1f\xc2\xea\x03\xb1:9\x0e\xf4\x00\x86n\x1e\x0e\xf3\xceR\xe9\x0b\x172\xe1A\xdb\xe40r[\xd5\x1c\x0bO \x9d\xac \xeeg\xbc\xf0i{\xa2\x99m\xd0\x93\xf2K\xab!kqU'\x87\x86\x9f\x86\xc4\x7f~\x1d:R*\xdb:$\x94\xdf\x84\x9e\xac\xe5u'\x99\x97\x9e\xec\xc0\x0do\xe5\x8ci\xf5\x04\xd8\x8da\xb3f\xa2\x810\xa6\xad;\x817\x8c\x03\xc5\xd2d \x12\xb4\xad\x8bdhc\xd4BqW\xad\xdb\xce!\xa2\xcf\x8a6R\xd6\xfe&\xf3\xacOOz\xad\x95\xc4s\xbd$\xc4\x07z\x8d\xe294\x88\xbf\x9d \x0f\x03\xc6Fiz\xca\xbdv\x92\xc7i\x9d\xc7q\xa6W\xe9\xf1+\xa9Z\x98\xa7\x9e\xfcVS\xb2\x7f\xba\x9abm%Da9x\xea\xcc\xb5n\x90a\xaa\x1a\xd7\xfeIV\x102p\xb4L\x9b\xbe\xbe\xbc\xe7\xdd.\xaeE\x159\xcby\xc7\xa7IvC\xe64\xba\x11\xb9\xdb=J\x02\xb4\x02\x900`\xd0\xd8}]M\x8eu\xb7\xb3k\xa0\n<\xb7\x07(\xfeSEc\xbe\xc5B\xdf\xa2\xc1\xdfyQ(\xde\x96\x15\x9d\xa7I\xb9b\xb1\x845\xb8\xe0\xe3>v|\xa0\x9a\x86\xb6\\o\xf0\x13\x16\x01\xc5@\xd9Ux\x94\xc7\x15E.\x8a|\x93\x97\xfe:h\xcc\xf2\xc3(bQ\xe4k\x98\xbbP\xa7\x05\xf8\xf6\xaa\xa2\x8e\x00W\x04{\xa45-\xca\x95\x03\xbeNHY\xd1\xaavN\xfda\xfa?oX,\xc9\x02\xb7M`\xf8\xc0D\xcaa(+\xed\xd5\x01\x0d\xc1\xe2\xf7\x1a\x10D\x88\x96\xe7]\x0c\xf1\xb2M\xed6\xcf\x83t\xec\xcf\x82\xbc|\xfb\xfa\xc3\xe5\x9b\xd9\xf9\xfb\x8b\x8f\xd7\xb3\xab\xeb\xb3\xeb\x8fW\x83\x98i\xa62..?\\|\xb8\xda\xa1\x00\xfc\xcd\xf9z\xc3\xac\xdb\xb5!\xc3-\xb9Sy>=\xe0(B!TyPC\x00\xf7E\xd3$>\xae3\xc0\xc7o\x12\x88_\xc4x\x89\xd6:)\xe1\x8ev\xb1\x1e\xe5\x05\x89YJ\xefY\xecIQ4T\x92\x0f\xbe~%\xf9oF\xbd\xb4\xa1Em\xcd\xb9\xcd0A\xd1\xa5\xf8\x1a=p-\x1ed\x98\xcaw\xd3\xa3s)q\x967\x98nI\x06\x93\x0e\xc9cjd\x82\xc3\xa2\xc7P\x1dKB\xc4\xb0\xb0\x99\x83(\x8es\x0fAA\xc4\xa2-dC\xf1m\x11\x06\xdef\x0e\x02\xa7p\xbb\x9f{\x1f\x81\xa7\x10G\x17\xe5\x9b\xfbv\x9b\x86\x7f\xe8\xf2\x93\x08\xb0\x19M\x9ft\xac\xe3\xf6\xd5\xdb\xe9\xfcv\x8eH\x9f\xfe\xdcruS9\x0deO\xe2\"y@\xd8\xd1\xd24\xa7\xf0\xd1\x17\x9f^.\xd9\xc9\x17\xfa\xa5\xaa\x7fxU}~\xf5\xf9U\x9a\xde\xbe\xfa\x1c\xfd\xf4\xa5*\xef\xbe\x7f\x19\x7fz\xf9{|\xbb\x8e\xe9\x97\xfa\xeeKD\xe3x\xb5\xfaq\xb9\xae\xbf[G_\xd8w\xba\x92\xed\xde\xde\x89Z\xdf\xf8q#\x9a\x11\x96@\x06\xf29#\x14\xa6\x9e\xb5\xd1?\xbd\xf8\xe9\xef?\xce\xe9\xcb\xc3W\x8b\xef^\x1d~\xff\xea'z\xf8\xe3\x0f\xf4\xef\x87\x0b\x16\xd1\x17\xf3\x93W/^\xb2\x13LA/\xedZd\xbe\x1b\xaf\xabe[]_|\xfab\xd4\xf2\xa7\xcf\xe9\xcd\x1dK\xb5\xcat\x10(\xa7Rg\x9bao\xb0B_\xfdx\xf2\xdd\xe2\xc7yt\xf8\xc3\xc9\x0f\x7f?\xfc\x9e\xcd_\x1d\xfe\xf4\xea\xc5\xe2\xf0\xe5\x8b\x97/~\xf8\xfb\x8b\xe8%\x8bz\n\xc5\x8f\xed\xa4R,\xe2\xc5\xa7\xcfF\xa5\xfeT~J\xa3\xd5w\xe5\xe7\xbb\xec\xfb\xef\x7f\x7fu\xf2\xfb\x97e\xf5cQ\xaen?\xdd/\x8a\xdf\xa3\xc2\xd4\x1c\xb8N\x99+!\xcf\xd2\xfbV\x05$\x01\xe2\x9e\x12>\xa0i\x99\x9b\xea'n\xbb\xd0\x9ak\xf3Y\xd9\xd9\x99\x02r\xa1\x9e^\x91\xbd\xd5\xf1\xc9U9I\xf3\xfc\x86[gM)\x82\xec\x83\x0eI[=l\xf7\x00\xf8\x8d\xaa\xce\xa7\xd0H-R\xba\x84e\xa3\xb96 \x97\x8fA\x13\xcc\xcb$\x16\"V.\x81\x10*Y\xbb\xba\xc8\xa3Z\xb9\xc9\xb3R\x8b\xe0h\xaa#\xc8\xed\x8f\xd4x\x95l\xefj\xbf}\xb8\x97;5\x9f}\xc6\nY\x8f\xe2S\xb5\xbe\xf71s\xe3\xc5\x83P{c0\x13\x8a\x00\xb0\x8f\xab\x91R\xeb\xc6]\x03\x99\xb0\x91\xbd\x8f\xf9\xf4\xb0\x91\xdf\xdb\x94\x91\x91\xfb\xbc.\xc4\xd6\xa4\xdbD{\xad\x04\x9d\xeaRh\x87\xb4\xe8:\xfc7o\xb5@d3\xf2_5+\xee\x8fer\xdd\xcb\x8b\xd7\xbd\xc2\x90\xc9\xd9~^Bi\x95\xc7:\xb59\xcbH\x9d\xb1\xcf\x1b\x16\xf1\xdd\x15\xde\xcd\xa4\xeb\xa72Z\xb15\xedv\x8bq\xb3e\xdeh\xc1\x07\xb6;\xd7b@\xa3<\xd6X;|\xc1\x94c\\\x9eJ\x93\xac\xfa\xee\xe5\x96\x82\x0c\xf9\xb9-u\x88YE\x93tO\x92`\xf0\xd7gua\xbc\x16\xc6\xb9\x18\x01wt\xf4\xdb\xda3\xff\x86\x16t\xcd*V(u>\xc4\x05S\xdd\xef\x9a\x06aoJ\x8c\xde!O\xbb/N\xb2S\xb2\xa1\x95\nm\xe4\x93=)X|J\xaa\xa2V\x8d\xbeVmR\x03r\xf3\xe1\xd9\xfc\xa1[\xe4q\x1bc\xdb~m\xcc\xc6\x97k\xeb\x137NZu-hZ\xfa\xeb\xab\xd9\xd4\xfajl\xf0.x\xec\xde\xb7\xd1Z\xa74\x8d\x06\xa7\xde\xe7\xee\xb0\xbb\xd5\xedi'\xec\xad^\xfc\xa5\xd3O\xfe\x1b\xde\x07\xaa\\g'\xeb9\x9a\xc6\xed~5\xc7\xcd1\x9b\xbe1m\xefo\x88\xb6\x1a/v\xa1C\xdb?d\x03L4\x1fyz\x0d\xf4v\xb3\x9e\n\x18\xb9\x07nw\xbb\x9d\xd2\x1e\xa3\x9d\xbd\x0d\xadg;Gm\x83\x95\x0do\xa70\xc3\xe6w\xf7VVt\xd9\xd9U\xfc\x97(\xed\x98\xdb5\x96\xd1,b\xc7kV\xd1\x98V\xf4\xf8\xf6\xc51\x0e\xb1\xe3?\x94]\xc4\xff\x1e+\x87\xe6%kv\xc3e\xbd^\xd3\xe2\xfeT\xdcMQ2ZD+y\xaf%Nh\xd9\x16\x93\x1e\xaf\x15D\xe7\x01\xb7\xc6\xd2\xda\x1e`\xce\xaev-\xc2\xa74\xeb\x91\xff\xfa\xdd]\xb8[+\xcf\x8b\xf3_\xb4\xb1\xce\xcaz\xc6\xeb\xdd\x94\xd5\xab?\xac4\xa65\xb0S\x81\xe6\x1fS\xac}\xbc\x8eM\x81JO\xeaT\xcc\xab\xd8V\xc5g\xaf8\xc5>\xb1\xfd\xe2\x7f\x90\xf3\x05.\xcb\xdd\x95\xb8\xad&^\x1b(\x97\x93\x82Uu\x91\xc1\xd5*\xda\"z\xd9\xf0\xd5b\x98\xce\x9b\xc2\xcb\xeey\xe6\xdc_\xe9\xed\xb1}>\"T\xaa\x9c\x84M\xdf\x80\x0b`\xaa\x15\xecV`\xcd\x97j9\xe8\xb4\xee@\\,\xd7\xd6\x84*W\xf5\xb4U\xe2O\xc1U>q\x9e=\xab0\xce/\xb2\xdc\x90\x92\xef*\xa0xe8R2\xa7\xb1\x1aZP*\xda\xa4W\xc2\xe0R\xed\xd4\xa5\x99\xbe\xbc[\x9at\x9b\xf0\xa3\xce\xe5C\\\x07}\xfb1\xdf\xe9\xe4\xb5@U\\\x0e\x04W\xa4\x87\xf8\xb9\x01<\x83\xffn\xb6!!\x1f1s\xe5\xf9\x9b6\xf1\x00\x0e|B\xce\xd7\x9b\x14\xeei+I\x19\xdf\x1c\x9d9\xb8t\x04|B\xc5\x82F\xe82\x83\x94\x8ex7\x15\xbe\xc9p\x86\xc8-H\x7f\x17\xd3\x95\xd7y\xb9\xceM\x1f+\xbd\xa9\xa7\x8f\xab\xcc\xd6\x80\x97\xdb\x8c\xd1&\x80l\x0fkw\xde\xc4\xfd\x10\xa4\x96`\xb2/h\x9a\xe6w\"I\x88\xa0\xea\xda\x8a\xdb:\x1a\xb5\x02\xb7z[\xe0T6\x17\x9b\x14g\xde\x0f\xe7\x9cAq\xcf\x1c\x14\xfaP9)\xa9\xfe:\xc7\xe7\x92\xc3mO\xb9U\xe4\xa93\xd7\x96\xcf\x08B\xa1P^;#ee\x94\xfc\xb2\x91\xc8\xbc\xea d\x12,o\xe6\x91or\x90\xf2\xfc\xf2ft.\xf3\x1e\x92J\xa2{\x97\xfb\xe5\xf9?\xcf\xdf\x9f]\x7f\xb8\x1c\xf6\xde\xd5\xdb\xcb\xdf\xce_\xbf\x1d\xf8\x96\xbc\xfd\x7f\xd8[\xcdu\xfe\xc3^\x83\x0b\xf8\x87\xbd\xd2\\\x9d?\xec5q\xf9\xfd\xb0\x97\xda\x1b\xea\x87\xbd\xd7\xde\x19?\xec\xbd\xe6fw\xc7kM\xb2\x92Q\xc3\xcb/`\xd5\x8ai\x14\x8f\xfc\x96\xed\x8a_\x0d\xc8\x8e\xc4\xb5h#\x9a/PJ\x96$\x95\x9b\x84p8\xae:\xbd\x10>\xea\xbb6h~\\\xc8\xf8\xcc\x03Z\xe5\xd9\x8cO]\xd6}\xd4W\xee6\xc8\xc2\xb9\xe5\xfb#K\xef\x05\x81As\xf7\xe9\x95\xbc*\xe3E\xb1\x18\x97\x15\xdeiRRQ\xc9\xc9<}r\x05\xc21L\xaeq\xe4\xefF0\xe2\xb6*\xe0\xa3\xc3\xe5\xe0D3IU\x7fb\x84s\x8e\xe1\x8a\xce\xf2\"y\x14\x1a\xb1 \x11I\x96>A\xa8+\x1e\xf3y\xe9\x96\x8f\xd7G\x0c\x0e l\xf6E\xe5\xef\x16A^\xd94NS.)\xceb\\\xc4\xa6\xc1\x90\x16L\x9c\"\xceqq\xebm\xda\xaf~\xed[\x0el\xc2\xcaj\xb1\xc8\x8bF-I\x8e\xf9;y\x95\x8d)-\x92IE \x9a\xe3\x15?\xfc\xf4\x00\x9c\x10\xa6\xaf\xb3\x1b\x12\xa3\xc9\x8asAj\xf9\xba^X\x9eE\xcc\x13az\xae$\x96\xb38\xf1\xc8c\x9fk\xaes\xaf\x8b\xaf\x7fK\xb5\x8f\xd3T/m%\xe9\xf2j'\x8bQBK\xfbej\xf3QW\x1fJY6\x00\xbd)\x95\xca\x9c&$\x8d=\x8d\xe3\xd5t\xa4e\x8eH\x86'\xa9\xd8\x9d3U\xabl\xd0\x7f\xf2\x83`\x81\xa0\x80\xea\x9b\xfbL7!R4\xda'\x03\xc66q1\xa7\xdb\xea\xa3\"\xcf\xa9QnW\\\xd4Ey\x9a\x12\xee\xe20\xb4\xa5\x0dp\x00d\x04p)\xe27\x13\x85\xb8\xaa\xf0 \xaa\x8eJ=\xa1\x970J\x1a\x80\xeas\xb8P\xd50\xf7\xd9\x8aq=`\xfds\xe8\xc8+|\xd8\xf5\x94\xc7\xc4\xdd\xb3\xf6\xb5\x8b\xbdh\x8e\x872\x087LE( \xb0\xa6\xc8\x93F\xa5\x81\x89\xff\xf1gPm\x88 \xafr\xb3 \x88|5WB'\xd0 ~\xb8\x93u\x10\x94\x0d})\xc4\xa1\x04\xba\xb1h\x1ba\x8a\xfb\xd2\xb6V*\x9cE\x00\xdc\n5\x9c[\x0e\xc3\xbd\x0b-\xa0Z\x1dp\xbauR,W(\x1bV\xb4\xc1\\q\xd0\x9codY\x07\x12\xc2\xbd\x17<\xa8}\x9f\x04\xd3\xdb\xd0\xf4\xefgg\nD\xbdCa\xc1Xb\xfck\x04%\xb1Q\xde\xb4PmZ\x04\xfd\xda\x03\xcej&\xe1\xdcz\x06\x03\x01K\xb3\x1e_0F\x10\x85A\xa4\x8e`4\x1c\xd2\xd2&\xda\x9d\xff\xe5;\xcd\xd8T\x1e\x86\xc4\xc6\xc5\xf2\xa0Y\x08\x8f\x80P8\x8fT<\xa0\xd9\x05.ux\\\xc3\xb8\xe3\xf6\x11?\xdd\xec\xb4\xae\xa0\x1d\xd9k\x8e\x80\xba`\xd8jhK\xc6\xbb\x16\x1eR\x9b\xc60{\xb6\xb3kI\xf0PK=\xc09\x96?\x1e#\x8e\x01\x16\xc9\x00=\x01\x17\xcf\xb8\xd1\x0c\x03\xe2\x19z2\x12\x16\xd3\xb0FT\xc3\xf0\xb8\x86\xa1\x91\x0dCc\x1b\x06G7\x0c\x8ao\x18\x1c\xe100\xc6ax\x94\xc3\xf08\x87\x81\x91\x0e\xeb\xc6:\xf4\xd3\xf0\xe2q\xc6;\x00\xbe\xb5\x7f94\xe2\xe1\xc9b\x1e\x9e:\xea\xe1)\xe2\x1e\xb6&\xf2\xe1Yb\x1f\x9e)\xfaa\xab\xe2\x1f^F\x04\xc4\x16\xc6@\xf3B^\xde\x1b\xc2z|Iw}\x87\xe1\x97D8MWuww\xe7\x87\xf2\xa3\x11\xc8\xdd\xc0\x9eVm@D\x1efBRqy\xce,,3\xe9Q\x9a\x90\xac\xde\xdf\xf2\xc8\x06/\xbc\xae\x88\x067\xb5\xb8\x8a\x13/w\xfa\xd0\xf3\x85o\xa7c4Y\xed\xa0j\x11\xeb\xff\xa7\xc9\x9c\x94\x14\xcf\x17\xe5\x8e>\x0e\x13\xd5\xe5\xfc\xdd\x17E\x9aS*\xfb\x83Ms7\x19\xe0\x1d3t\xbf,N\x06\xe2kFDH\x11\x02\x05\x08\x19B\xc4\xc0\xee2\xb6\x84@\x8b5&\xe3\x8d\xc8\x1e\xfb\x84iPy\xf7O2Z\xacxW0\x89/\x88\xa6\xc9jD\x8a`Z\x00\xa1Nwv\xf3\x9c@\xb8\x1cRz\x82\n\x0e\xe9\xc0/\xef\xcf\xa4\x04\xbe\x98)LqI\x15\xd2 \xc2\xb6t\x1ey\xf8\\2\xe2DJ\x95\x01#\xd6U\"\xa8\xf9\x18\x05\x83>~\x08\xc1\x05s\x86\xf9\xca\xd2wi\xe99\xc1\x19^\xf6:*\xb87\x0f8?\xe2:\x9c\xe0h&g\xdc\xfb\x81\xb3\xccQ\xf3\xd9\x88D\x98tK<,\x11x\xa1\x85\"\x15T\x92g{\x82^D\x96\xfem\x0f\x0c\xc3\x13f\xe2\xbe1\xebZ\xa2\x08/\x84\x97i\x8d\xc2a+\xd0\x0bJ\xcby\x8e\xe6\xf8\x96HQWYs\xcc\\\xc9\x85MV\xe8\x9e\x14\x81\x19\xc3\xb1\xeb\x07P\xa3{)\x1d(\x1d/e\xf8R\xda\xbb\xc078\xc9Jj\xecN\x9c\xf0\x9aG\xe9\xec+\x9cE\xc4\x13Mve\x1c\xa3\xde'i\x8afxI\x8c\x91$\x87y\x8c\x18U[\xcc\x84\xb8\xd5B\x92-\xf3t\xd9L\xdcn??\xce\xd8N\xfao\xc9\xe9\x82\xc8\x14h\x11\xdau\xd1\x88\x08FXF\x94\xb1\xf5\xe7\x04X\xc7\x97a\xc5R\x91\x17\xaf\xf8\xcb3\xca\xe7\xf9\xd2\xd5\xfb\xb5\xbe\xb4\x19\xa5\x1fL\x0b\xdc\xb0\x08\x07k\x8c\x83\xdf\x1d\x04\xf8P\x10\xff\xe9\xe9\xaf\xb0\xda\x81X\x1a\x01w\x00C\xb3\xb4\x85\xdb\xb34\xe6\"\x14\x99\xb0Q\x9a\x02J\xae\x83\xe6\xd0\xf0\x04\x13\x14\x88+\x90\xe0\xa5-\xe1L7\xe8\xc9x\x03,\xd2o\x08\x0f\x98C\xf2\x7f_\x06\x8f\x0cd\xeb\x03 \xe3\x9d\xe4\x93\x17^s\x91\x81\xf8\xe4\x0f\xdc\x003g\x08\xd5#\xc4n\xf4[5# \xc2\x10Z\xd7\n\xdep\n\x8a\x87d\x15$8fS\x99\x06P4v\xe3M\xc8L\x82l%\x02\xdaK\x84 \xa1\xd7\xe2\x01\x8a\x06\x82\xeb \xb4\x99`l\xf1\xe8\x99\n\xdbN\xf44\xd4\x01\xb63-\xa4\x87[R\x13\x18\x90O0k\x8a\xb6\x8fWc\xd8V\x84^;o\xc2)\x1fYH\x86Q\xbe\xa6=Av\x11\xb2\x93\xdf\xe9\xba2\xc6^\xcb\nt\xbc\x1d\x97=Jm\xc3\x1b\xb06M#\xf8\x1a@\x15\x02\xe5:\xea\xd1},|\xa1\x85:G\x17A\xe3\xd4\x99\xf6\xb0\x81\xda\x1eN\xadm\x98\xda\x00{\xf0)\xea\xd5\xd8i\x8bx\xd6E\x1c\x01\xba\x89Y\xbejE\xa8\x0f\xe5e\xc8p\x01Y7\x9c'\x10\xa3\xe5\x05\xb7\x0e\xf5# \xcep\xea\xd74\\\x00\xf1\xb2\xb1\x02\x82\xaf\xa9T\xb6\xea\xe6DdFe\x16%k\xc1\xe4\x89\x90RD\x83\xf0\x02L\x01\x16\xe1j\x96\xbbk\x8d\xfc[60oK\xee\x8f]b\x8f\x0eOc\x8b\xa05\x9bQ>\x9f\xe7\x19\x1f\xcf\x1f\x13*\x1a<=\x0b;\xc4\xd0\"\xe2\xea\xc9\x02\xa0{ \x1e\xf8R\xb1\xa8oi\xe8\xeb\x18\xf0o\xa0\xc4\x89\xaf%\xc5\x934)g$V\xc1\x0c\xa1\xa0q\x88\x1e\xef\xc9\xa6\xbe\x94\xdb\x15~B\"\x9eX`x\x15\x00x\x8cQ\xe8\xbc\xc8\x17y \xe7\x81V\xcb\x9ba\x04\xefi\xb8P8M\xf9\x89\x1e-\xaa\x88G\x13q\x1fi\x8e\x8br\x16\x08ZG\xa8\xa4\x98V\xc1\xa5\xdf\x8f\xff\xa7:w%\x99\n\xb7\x89+>\xae\"\x95\x18*\xa4A\x13\xa0\xd3*~U\xd1W\"\xf9\x94{\xae|\xca1\xa58\x9a\x89\xd1\xea~}y\xc1\x13\xa2\x9c\xb0\x9a+F\xca1\xdf\xbb\x07\xd3\xb5\x1b,\xd6\xad\x0f\xc5z\xc8\xe4\x81\x86|-s\x9c\xec$\xeb\x83\xabQ\xc2\x93\x9a\xd0\x02qIF\xfc\x91\x13`C\x046\x1c\x87\x04:\xc3\xdb\xe0B\xd1\xe3;C\x8b\xe4\x84\x06\xc3\x85\xeai\xd8\xe68\xa16\x96\xc3\x03\x844$\x08K`\xe1\x88\xdb\xc0\x961\x82Tk\xb1\x01\xb2G\x1c\x16\x04\xcf&\xb7\x81?\x06\xaa\x8aA\xf2\xd4\x8f\xbf\xda\x08\x87\x9e!\x0e\xca\x189\x14\x005\xc6Jy\x819\x10\x00\xaa@V\x02\x01-\x05zM\x81\x90\xcf\x13P\x17\xdc\x1d\xbc\xa6@\x0c\xe2\xd5\x18\xd6\x05\xa1\xd7\x14\x088\xe5#\x0b\xc90\xca\xd7\x8c$E}R \xa4^\x1e3\x01\xc2\x02r\xbc\xf4\x07\xe9_?e\xf2C\x93\x9e\x11<\x0b\xa0\xea\x80\xf2\x1bup\x0c\xecN\xfc\xeb\xa0_\xdaCk\xb2\xc3&i[x\xb4\xb6!j\x82\x03sh#Q\xeb\x9b\xe7\xd6\xa6\x92\x1d\x06r\xf1\xa5l\x81,\xf8Z\xf6A^H#0,d\xcf\x81l\x1aJ\xff(\x96\x1cJw'\x8fb\xcc=\x92\x15\xb8s\xaf\x04\x02\xc5\x15.Jb\xf7\x9e)H2\xc8\xd2!\xa0\xb5C=\xd3\xfd\x10\\~\x10|\xa9\xa1\x9e\x13\x83z\xa4\xff\x81\x01\xf5\xb5\x85hX\x1a \xdaZ\x0e\x86ld\x10 \xed\x95\xd0\x85`iP/\x94\x97\xc3,h\x17\x94\xc5\x8a\xf6\x84\xd0o\x0eB\xc6\x03\xf5c\xf9z|\x0c\x9a\x92 \xbc\xdeI\x96\xa8w\xaa!zJ\x8e\x8c\xb0Y\x04\x88\xea\xd0\xd4Cq-\xec\xce<\x94\xdb\xb9'K<\x14\xe3y\xf2\x0e\xf5\x0f\xd6L;\xe4\x7f\xe9\nI\xeb6\x89\xffJ\x04\xe1E\xf9bU\xfbx\xe2\x0f\xcd\xe4&\xf6\xa7R_[w\xa9\xf7:\x01~\xd3\xef?)\x0d\xcar\x98\xef\xc8\x18\x04E8C$\xe15\xbb'\x04a.\xb6;\x88\xbc\xbbq-\xc2\xcf\x07\x9f\xff\xf84\xc1\x87\xbbG\xd3\xf7G\xbb\x1f\x8e>\xe3\xddO\x1f\xf1\x1f\xbbS\x12\xe1\x83\xc9\xfe\xd1\xc1!\xd9\x17E\xdb\x95N\x88\xdc\xdd\xe4\xa4\x19\x97\x03\xfap=\xb8{\xbc!\xfb\x8f\xf8\x91V\x1f\x8f\xe8\xc3\xd1\xc3Q\x9a.\x8f\x1e\xa2\xcf\x8f\xb4\xbc{Ho\xefIj\xc38\\\x80j,\x86\xb6\xcaM\xd5\xe47k\xd1\x05H\x15?>\xb8{p\x12\xfb\xb9\xbcK\xa3\xd9\xfb\xf2\xe1>\xfb\xf0\xe1\xd7\xd1\xfe\xaf\xc7\x1b\xfa\xa9(g\xcb\xbb\xd5\xb4\xf8\x15\x156.\x04/cFbB\xeb\xeaE\xf3@i\x96\x06\x0b| \x0e\xee\x0e\x9d\x0c\xb8\xffp\x18\xdf\x1d\xfe\x8a\x97\xf3\x18?V\xf7\x8f\x11\x8e\xe3\xd9\xec\xd3\xcd\xbcz?\x8f\x1e\xc9{\x1bd\x99\xdd\xa2\xcaZ9\\n\xc1\x05_\xc5{\x18\x1b\xda\xa3 ^LS|\xc3\xb5\xa5\xae\x91\x9f\xab_z,\x83\x86\xd1\xb8\x9b\xd0\x9b\x92r\x91g\xa55VA!!\x95\xe8\xd3Pl\xaa\xf4\x81\x04+\x10}\xe9%\x0f\x02\x05\xef.s,z[\x83\xb9\xe9\x95?\xe4\xd8;\xef\xe98\x08\x1e\xc7\x12\"\xb2\xe6\xb3\xc3\xa6\xa1\x11\x89l\x0d\x06\x99Tg\xea\xaa\x86\x91\xa1U^\x15\xd2p6Il`\xc5\x0b\xbb^HV\xa0:JL\xfc\x9b\x91(#\x8b \xfagE\x8a\xd5\x9e\xa8\x04{q\xfeE&6\xd6\xb0U\x08\xe8o\x8e\xa1N2Te\xe4aA\"f\xd8E'!\xdb$\x94\xd1\x8c\xccq\x93\xe7N;\xef\xb6\xf1|\x80\xee\xccyTp\x94\xc7\x96\x935\xf1\x81\xab\"\xb6\xdaM%\x19}\x7f\xd8\xfa\xab\xb3\x9a\xb4\x07\x87\x98P\x9c\xa4[R\xbc\x81}~]\x15\xce&&As\xc6s\x1e\x07\x7fm\xdd\xab.p\x81\xe7\x84\x92\xc2\xc0yW\xa4y\x9av\xd1%\x84\xadU8\xd8\x92\x8ek?\x93\xec\x18-05C\xf2\xd8JN\n\x12\x1f#ZT\xa6\x12\xb7\xb2Mq@\xf9\x9b@\xf2\xfb\xba\xa7\xc3\x9cR\x9fO6\xc4\xe9d\xdc\xbac\xca\xc8\xca\xae)NK8\xbf\x0cw\xd2\xc5\xb3\xffk\xf1\xac\x9f\x07j\xf9t,\xb7sD>\xb4])\xa0\xfc\x0c\xf2\xc0L_\xab\x01\x0d\xe4\x87\x0c!\xbam\xa3\xdbTK_\xa8'\xd1}\x9c\xb0\x96\xbb\xd5]\x02OEr\xcb\xa3\x02\x92<\xd0\x0f\xab=\xae\xce\xcc\x18\xfeK=\xe2\x7f\xa0\xd3)\xca\xb3t\xa5\xe6F^E\xd5h\xe24m\xd57\xc3TMca\xd2I\xab\"\xe3\x9d+\xac\xb0\xeb\x19j@Oh\xcd\x07cRp\x167\xeb\xa0\xb4j\xbf\xf1\xb5k\x1f\xb0%\x0f\\\x11\x08\x91\xa53\xa2\xa5\xd9\xa0\x96of\xba\xee'G\x0b\xa7e\xcep3\xd8!1kaT#\xe1AM\xf2\xa2\xe5\xba\xd6\xb0i\xab\xd0\x16N2\x91\xe5\x83i;\x18\x86w\x1b\x99\x10\xe7Pz\x14u\x89\xafFqpa\xc7\xe4\x19n\xe4\xaf\xebIi2\xaa\xc1\xa0z\xf46\xa7B\x14\xd9(\xd1\xc0N\xd0\x04\xc7\xe6\xc9\xb3\xfa\x11J\xa6\xc7&\xc5W\x8eI\xe7H\x98\xd4\xdf't\x96W\xb49\xff\xb6\xc5\xda`\xe8\x89\x93\x9b\x1a^\xb6B\xf7x\xc5-\x8c*\x05V{Eo\x1b+\xd8\xe4:\xee\xf0\xdd\xe4\xf7o\xc67\x06n\xbf7\x90\xbb\xba\xcf\xd9\xd4\xf0\xf6/\xf9\xd43\xa3\xcd\xe5eN\xa5\xb9\x905i\xecGq\x9e\xbd\xa1\\\x05\xf0\x0b\x7fY\xee\x06\x95xNZj\xdb\xce/\x0e\xfd-S\xbb\x8a\xdb\xc6\xd0\xbc\xf8S\x87\x9b\x08\xb7\x95\xb1\xfaL,;)MqNJ\x94\xe5T\x89\x15*\xabh\xd6\xe5\x97\x07\xad\x16&\xbc\x8d\xce$\xa73C\x84'\x15\xad#\x1d4\xa08\x99\xf2WJ\x84KSd\xff\xb1R\xc7);\x86\x00\xd4c\x95\xb2]\x0f\xd5\x05\x85\x0c\x14/ \xad=s\xf5\xe1^^t-3k\x05Sv\x13V\xf5\xfd\xb5\xffV\xbd\xf1\xa5\xd8*\xf0\xca\x16D\xcd\x05N\xd3\xfc^*gy\xd1\xec\x03\x17\xb9/3y+qO4\x97\xef\xa4T=\xc1\xb2#\xc15#\x9e\xf0\xca\x11\x0f\xdeTILl\xef!\xf9V\xa5\x90\xfb+~\x15y\x1a,\xf5\x05\x91 \xf1`\x0e\xaf^\x91\n\x19\xa3\xbcm$\x0b\xbf\x02\xe3\xa8d\x929\x01\x94\xbb\xec\xc5\x95,\x9a\x0d\xe4/N\xff\xeb\xf4\xc7\xc9\xd5\xd9E\xbf\xef.\xbf^\xfcu\xfa\xe5k\xcf\xafN\x7f\xfc\xf5\xf5\xb2\xf7X_~^^\x9d\xfdyz\xf2\xa3\xdfg\xbc\xeb\x7f\xbfOt\xbf\xfe~\x9f\xc9\x8e\xfb\xfd>\xaa\xdb\xe2\xf7\xfb\xaenT\xdf\xef;\xddN>\xf0\x99\xae\x952H\xbc\xc2\xceJ\xf3qI\xf1\xc0\xe1\x11\x92\xbd\xf2\xf9\xfd]\x8f\x9a'\x8eEql\x7f-G\xe1M\xf7Q^$7I\x86)\xa4\xf4\xa3u\x0d\x1d\xdb^*\x0f\xbdD1\x99\xb0-A\xb1L\"\xb6\xaf\x9cVYD[\xa7\xe0\x90\xd1\xd4\xda;\xb6\xbd\x14\xbbI\x1e\xd8\x94D(\xc9\x96\xa4\xecO\x8f^\xa7\xc7\xd6\xb7jj2\x9a\xd0\x950\xdf\x9a\xc6\xa8*i\x1e'8\x93\x84\xca\xf3<\xce\xe0\xbe\x84\xf2u\x7f\xdcy\xd3.\xb7\xb6\xc0\x05]I\x9c\xb8\xd1VV\x8aY\xdf\x9eCj\xbdql}+\xb8+\x06\x14\xdb\xbf\x0c\xe1\xe94Iy\xb3||S\x10\xee\x86\xf4\x1cTj\x9dc\xcb;1 \xf7zp*\xee\xc9ec\xd6U\xed7\x15y*\x88\x9fg\xc9\xa4*\xd1\x04g\xb7\xca*\xf6D\xa5\xd6e\xc7\xf6\xd7\x0c!UXD\xcd\x839\x0d\x05Y\x14\xa4\xe4\xae\x18\x9b\x82\xba\xa8\x9d\x96\xed\x8ao\xb4e\x1b\xe4Z\xb4\x11\xcd\x17(%K\x92\xcaMB8\x1aX\x1d\x85\x08\x1f\xf5]\x1b4?\x9dd|\xe6Gsr\xeb\xeeS\x97u\xf3\xf6\x95\xbb\xf7\xb2pn\xf9\xfe\xc8\xd2\xfaA`\xd0\xdc}z%\xaf\xca\xd8n\x8dsY\xe1\x9d&%\x15\x85\xa4\xcc\x0bWW0 \xc3\xe4\x1aG\xfef\x08#n\xab\x02>:\\\x0eN4\x93T\xec2#\x9cs\x0cWt\x96\x17\xc9\xa3\xd0\x88\x05\x89H\xb2\xf4 B]p\x99\xcfK\xb7z\xbd>bp\x00\xe1\xb1.\xd7\\\xee\xae\x83\xdb\xbd\xb1\xf9P/\xd4\xa6\xf1a\xb3/\n\x8f\xb7\x08\xf2\xca\xa6q\x9arIq\x16\xe3\"6\x0d\x86\xb4`\xa2W\xfb\x1c\x17\xb7\x96\xb8\xa8\xfaQ\xbf\xf6-\x076ae\xb5X\xe4E\xa3\x94%\xc7\x9c\xaf\x08Q\xcb\xaaH&\x15%h\x8eW\xfc\x12\xc4\x03pB\x98\xbe\xcenH\x8c&\xe2\x08]j\xf9\xba\\Y\x9eE\xcc\x13az\xae$\x96\xc0z\xf1\xc8c\x9fk\xaes\xaf\x8b\xaf\x7fK\xb5\x8f\xd3T/\xedf\x94>\xbf\x99\xa0%\xb2\x04n\xb4\x1fuC\xa6\x94e\x03\xd0\x9bR\xa9\xcciB\xd2\xd8\xd3\xad^MGZ\xe6\x88dx\x92\x8a\xdd9S\xb5\xca\x06\xfd'?U\x16\x08\n\xa8\xbe\xb9\xcft\xe7#E\xa3}2`l\x13\xf1\x89\xba\x97?*\xf2\xdc8}\x17>/\x8a\xf24%\xdc\xc5ahw\xc3?\xcc\x87\x11\xc0\xa5(\xcf\x88\xbe!\xf1 \xaa\x8eJ=\xe1\xb10J\x1a\x80\xeas\xb8P\xd12\xf7\xd9Jmd\xac?\x08\x1ey\x85\x0f\xbb\x9e\xf2\x98\xb8\xc1D\xf3\xd2\x99\x0e\xae5\xa39\x1eJ`\xdc0\x15\xa1\x1c\xc4\x9a\"O\x16\x97\x06&\xfe\xc7\x9f\xc0\xb5!\x82\xbc\xca\xcd\x82 \xf2\x95| \x9d@\x83\xf8\x81\xbd\x99} 6\xf4\xa5\x10\x87\xf2\xf7\xc6\xa2m\x84)\xeeK\xdbZ\x99x\x16\x01p+\xd4pj;\x0c\xf7.\xb4\x80ju\xc0\xe9\x96i\xb1\\\xa1lX\xd1\x06S\xd5As\xbe\x91e\x1d\xc8G\xf7^\xf0\xa0\xf6}\x12LoC\xb3\xcf\x9f\x9d)\x10\xf5\x0e\x85\x05c\x89\xf1\xaf\x11\x94\xc4Fy\xd3B\xb5i\x11\xf4k\x0f8\xab\x99\x84s\xeb\x19\x0c\x04,\xcb{|\xc1\x18A\x14\x06\x91:\x82\xd1pHK\x9bhw\x1e\xa2\xef4cS\xe94\x8d\x90\xdb\xee\x134\x0b\xe1\x11\x10z\x8e>\xa0\xf0\xb8\x86q\xc7\xed#~\xba\xd7j]\xc0\xdbQ\xf2\x04\xd4\x84\xc3V\xc2[2\xde\xb5\xf0\x90\xda4\x86\xd9\xb3\x9dMS\x82\x87Z\xea\x01\xce\xb1\xfc\xf1\x18q\x0c\xb0H\x06\xe8 \xb8x\xc6\x8df\x18\x10\xcf\xd0\x93\x91\xb0\x98\x865\xa2\x1a\x86\xc75\x0c\x8dl\x18\x1a\xdb08\xbaaP|\xc3\xe0\x08\x87\x811\x0e\xc3\xa3\x1c\x86\xc79\x0c\x8ctX7\xd6\xa1\x9f\x86\x17\x8f3\xde\x01\xf0\xad\xfd\xcb\xa1\x11\x0fO\x16\xf3\xf0\xd4Q\x0fO\x11\xf7\xb05\x91\x0f\xcf\x12\xfb\xf0L\xd1\x0f[\x15\xff\xf02\" \xb60\x06\xe2y\xa3 \xe0q\x10\xd0\xfb2\xfd\xeb\x11c!\xe0\xbe\xe0H\xf1\x10\x83\"\"\xa0X\xea\xbbAyXBx\xdf)\x91B\xc4\xff s\xcdn2\x9e\xba\x15\xe8|\x1fDk\xa4\x12\xb40\xdaxV\x0d\xcdk\xf6\x99\x17\xf2\xf2\xde\x10\xd6bL\xba\xeb;\x0c\xbf$\xc2i\xba\xaa\x9b\xcb;?\x94\x1f\x8d@\xee\x06\xf6\xb4j\x03\"\xf2\x94\x13\x92\x8a\xcbsfa\x99I\x8f\xd2\x84d\xf5\xfe\x96G6x\xe1uE4\xb8\xa9\xc5U\x9cx\xb9\xd3\x87\x9e/|;\x1d\xa3\xc9j\x07U\x8bX\xff?M\xe6\xa4\xa4x\xbe(w\xf4q\x98\xa8c\xe7o\xfe(\x12\xa6R\xd9\x9el\x9a\xbb\xc9\x00\xef\x98\xa1\xfbeq2\x10_3\"B\x8a\x10(@\xc8\x10\"\x06v\x97\xb1%\x04Z\xac1\x19oD\xf6\xd8'L\x83\xca\xbb\x7f\x92\xd1b\xc5\x9b\x92I|A4MV#R\x04\xd3\x02\x08u\x9a\xc3\x9b\xe7\x04\xc2\xe5\x90\xd2\x13TpH\x07~y\x7f&%\xf0\xc5La\x8aK\xaa\x90\x06\x11\xb6\xa5\xf3\xc8\xc3\xe7\x92\x11'R\xaa\x0c\x18\xb1\xaeJO\xcd\xc7\xa8\xfb\xf4\xf1C\x08.\x983\xccW\x96\xbeKK\xcf \xce\xf0\xaa\xdbQ\xc1\xbdy\xc0\xf9\x11\xd7\xe1\x04G39\xe3\xde\x0f\x9c\xd5\xaa\x9a\xcfF$\xc2\xa4[\xe2a\x89\xc0\x0b-\x14\xa9\xa0\x92<\xdb\x13\xf4\"\xb2\xf4o{`\x18\x9e0\x13\xf7\x8dY\xd7\x12Ex!\xbcLk\x14\x0e[\x81^PZ\xces4\xc7\xb7D\x8a\xba\xca\x9ac\xe6J.l\xb2B\xf7\xa4\x08\xcc\x18\x8e]?\x80\x1a\xddK\x95\x07\xad\xe2\xa5\x0c_J{\x17\xf8\x06'YI\x8d\xdd\x89\x13^\xf3(\x9d}\x85\xb3\x88x\xa2\xc9\xae\x8ccT\x9e\xc3?\xc3Kb\x8c$9\xccc\xc4\xa8\xdab&\xc4\xad\x16\x92l\x99\xa7\xcbf\x01\x80\xf6\xf3\xe3\x8c\xed\xa4\xff\x96\x9c.\x88L\xa6\x16\xa1]\x17\x8d\x88`\x84eDY\xa3\x8eD\xfb\xa9\xe3\xcb\xb0b\xa9\xc8\xdb\xbe4+M\xcc\xf3\xa5\xab\xf5l}i3J;\x9a\x16\xb8a\x11\x0e\xd6\x18\x07\xbf;\x08\xf0\xa1 \xfe\xd3\xd3_a\xb5\x03\xb1\x1aE \xec\x01\x0crf\x03\xa1 \x8d\xb9\x08E&l\x94\xa6\x80\x92\xeb\xa094<\xc1\x04\x05\xe2\n$xiK8\xd3\x0dz2\xde\x00{\x04\xd0F\x91\x11\x18\x87\xe4\xff\xbe\x0c\x1e\x19\xc8\xd6\x07\x12\xc6;\xc9'/\xbc\xbc]\x81'\xcc'\x7f\xe0\x06\x989C\xa8\x1e!v\xa3\xdf\xaa\x19I\x10\x86\xd0\xbaV\xf0\x86SP<$\xab \xc11{\xda4\x80\xa2\xb1\xfb~Bf\x12d+\x11\xd0^\"\x04 \xbd\x16\x0fP4\x10\\O\xa0\xcd\x04c\x8bG\xcfT\xd8v\xa2\xa7\xa1\x0e\xb0\x9di!=\xdc\x92\x9a\xc0\x80|\x82YS\xb4}\xbc\x1a\xc3\xb6\"\xf4\xda\xf8\x13N\xf9\xc8B2\x8c\xf25\xed \xb2\x8b\x90\x9d\xfcN\xd3\x971\xf6ZV\xa0\xe3\xed\xb8\xecQj\x1b\xde\x80\xb5i\x1a\xc1\xd7\x00\xaa\x10(\xd7Q\x8f\xe6g\xe1\x0b-\xd49\xba\x08\x1a\xa7\xce\xb4\x87\x0d\xd4\xf6pjm\xc3\xd4\x06\xd8\x83OQ\xaf\xbeR[\xc4\xb3.\xe2\x08\xd0\xcc\xcc\xf2U+B}(/C\x86\x0b\xc8\xba\xe1<\x81\x18-/\xb8u\xa8\x1fIp\x86S\xbf\xa6\xe1\x02\x88\x97\x8d\x15\x10|\xe5\xa1\xa3\xbb\x03\x99>\xbb\xda@\x0b2 \xdb\xd3nL\x8d\xeeh\xea%\xb3q\xbbs+f\xf4iC\xf6\x052.9\x1b\xc9\xda>y8\xc5^=\xabu|\xb3\xact\x8a\xd0_\xbc^\x80\xcc\x16\xf7\xc2\x92!\xf5\x96\x1a\x16'i\x99\xa3\xdb,\xbf\xcfx\xd1X\xf4\x8dy0\xde8\x8b\xe78\xf3\x85q\xac\xce\x18P\x92\xab.,T\xaa@+\x1d \xa0\xf34\xaf\xd1[^l2\xa134MRJ\n\x12\xa3\xdb\xa52\xcd\x94\x14\x98\xe6\x85;\xdeK\x06\x93{\xd9\x05\"P\x02R\x8a\xa2\xe1\xb2*\xca\xc4T{k.\xa0\xbafq\xe3\x1a)\xe7\x01v\xf9t*C\xd9\x9a\x1d\xfe\xa0\xcc\n\n\xc5h')\xc0<\x07\xa0(\"\xf04 \xd4\xb9\x1a\xefD%\xf2\xe9PK6\x08MN\xac\xf7w3\\\xce\xc6'\x95\xcaf\xdf\x9c\x88\xcc(\xae\xa2d-\x98\xff\x10R\x8ah\x10^\x80)\xc0\"\xe2\xccr\xfd\xac\x91\x7f\xcb\x06\xe6\xe5\x9e\xfd\xe1G\xec\xd1\x11f\xbcm@s6\xa3|>\xcf3>\x9e?\xacS\xb4\xdaz\x16v\x88\xa1E\x84\x99\"\xa3\xbe\xee\xa49\xe4VX=\xbah4z+\xc0\xfe^\xdf\xb2r>\xedi\xd6x\xaf[\xd5\xc3To\x92-\xf3[\x8f,%\xd9\xa2\xa2/6\xe7\n\xb2\nzM<\xcc\x83l>?\xd8\xb4\x8b*B\xaa\xda8\x9b\xf84\xc9n\xd1\x04G\xb7\xb2\x9e;\x00\x12\x0f3\xe0\xd9\x13\\h\xfc\x87T\xba\x90~\xf8\x94\xaa'\x0b\x80\xee\x81x\xe0K\xc5\xa2\xbe\xa5\xa1\xaf\xc3\xb8\xbf\x81r\x1f\xbe\x96\x14O\xd2\xa4\x9c\x91X\xc5#\x84\xe2\xbe!z\xbc'\x9b\xfaRnW\xf8 \x89xn\x80\xe1U\x00\xe01F\xa1\xf3\"_\xe4%\x9c\x07Z-o\x86\x11\xbcu\xe4B\xe14\xe5\x87r\xb4\xa8\"\x1e\x10\xc4}\xa49.\xcaY \xee\x1c\xa1\x92bZ\x05\x97~?\xfe\x9f\xea\xf4\x93d*\xdc&\xae\xf8\xb8\x8aTb\xa8\x90\x06M\x80\xce\x8c\xf8\xc5\x1bt\xc80w6\xc5\xfc\xa2kQ\x85\xd5s/\x1e\xc3\xd3\x17/\xbe~9\xbb\xf8\xf3\xfa\xf4\xc7\xf9\xcf\xab\xeb\xcb\xab\x93\xab\x9f\x97\xbdR\xca\\0\xce/\xce\xce\xcf.\xd7\x00 \xde\x05?\xd7)q\xeb\x12\xd2_\x93\x07\x99\x07\x99\x81\x00\x08#\x13\n\x90\xd3\xc1\x03\xb6p\x9a\xc4{U&\xf6\x8bBn\x99\xec\x00>\x0eL\xa5\x9d\xc7\xea\xaf\xed\x9c-c\xc5d\x08\x17\x93\x84\x16\xb8X\xd5\x1a\x8c\x17\x06\xd4{>\xb1\x14\x86\xe3(\xde\xd91\x14\xef\xec\xf8%bA7<\xb0EA\x96I^\x95\xe9\xaa\xb3\xd4\x8d<'/\xaeR\xd9\\\x158\xba\x15\x87Z\xc2s\xd2;@\xa2l\x12tW\x06\xd2^\xe6 \x1d?\x9b\xd1\x16\xcd\x12\xb2\x14}I\xf2\x8a\x86\xd4N\x9e\x81\xb0\x13\x90^\xacW\xf8\xcc\xb6\xfe\xbf\xa5\x9d\xa7\xaa\x88\xa9`'\xacr\x82x\xc4\x17{u\x9f\xff\xd61\xd43X\xd0K\x0eS\xd1\xa5D\xb0>\xc6\xa87\x84\x00`u\x8a\x92\xe4\x8d\\\xcaIv\xa3Z\xdd\xecLq\x92V\x05`\x0b\x89\x98\x19^\x90,\x06Md\x9fY\xefct/\x7f~\x1fd\xa5\xba_\x9f\x9f\\\xc2\xb2\xdc\x9b\x9f]\xfe\xcf\xe9\xf9\x80\xcf\xbe\x9d\x9c~\x0f~f\xd8\xe4\xa1t\x0e\xb3\xc6\x8e\xd1 \x93\xe2\xfc\xb8a\x81Q\x95\x95$\xec\xab\xf1\x0b\x89>\x89\xed\xdd)m3\x8f\xbdk\x980b\xac&fA\xeb\x9eOC\x86d\xe2\xd0\x1e\x92\xbd3\x86\xd4$\xedEyV&\xb1:}\xe0\x83\xdf&\xfc6\"\x16\xfd\xaf\xe6IY\xb2\xc5)\xedQ^\xa0\x98\xa4xEb`n\xa1\x03I&|m$\xd9;'_\xea;A+\xe6Lg\xb8b\xc8\xd5\x03UzbSu&\xf4\x13\xc9\"\xbc(\xabT\xa3$\xf5\x16\xdf\xc5B\xce\x11Q\xedy\x00\xd2\x84a8\n\x1c\xde\x96\xbf\xa3\xba1}\x95R\xae\xa4%\xcbx\x1b\xc0Z]\x07f\x89\xfdTld\xd4\x07u=\xe0\x04\xe6:\xbc\x8cbGm,\x15\x03\xeb\xbb\x0c\x80\x9d-\xadu\x91\xac\xb5\x8fT\x9b<;\xa0\xf0l\x9f\xe8+\x91|\xca=W>\xe5\x98R\x1c\xcd\xc4h:\x15\x95\xadM\x82#w\x05\xeb\xe6\x8a\x91r\xcc\xf7\xee\xc1\x8c\xeb\x06\x8b%F\x92sy&\x0f4\xe4k\x99\xa6d'Y\x1f\\\x8d\x12a\xd4\x84\x16\x08-2B\x88\x9c\x00\x1b\"\xb0\xe1P\"\xd0\x19\xde\x06\x17\x8a\x1e\xdf\x19\x1d$'4\x18\xf1SO\xc36\x87\xfa\xb4\xb1\x1c\x1e\xe3\xa3!AX\x02\x8b(\xdc\x06\xb6\x8c\x11gZ\x8b\x0d\x90=\xe2\xb0 x6\xb9\x0d\xfc1PU\x0c\x92\xa7~\xfc\xd5F8\xf4\x0c\xa1L\xc6\xc8\xa1\x18\xa61V\xca\x0bLc\x00P\x05\xb2\x12\x08h)\xd0k\x16\x83|\x9e\x80\xba\xe0\xee\xe05\x8ba\x10\xaf\xc6\xb0.\x08\xbdf1\xc0)\x1fYH\x86Q\xbef0(\xea\x93\xc5 \xf5\xf2\x989\x0c\x16\x90\xe3e0H\xff\xfa)\xf3\x17\x9a\xf4\x8c\xe0Y\x00U\x07\x94\xdf\xa8\x83c`w\xe2_\x07\xfd2\x17Z\x93\x1d6I\xdb\xc2\xa3\xb5\x0dQ\x13\x1c\x98C\x1b <\xdf<\xb76\x95\xaf0\x90\x8b/e\x0bd\xc1\xd7\xb2\x0f\xf2B\x1a\x81a!{\x0ed\xd3P\xfaG\xb1\xe4P\xba;\xa9\x10c\xee\x91\xac\xc0\x9d{%\x10(\xaepQ\x12\xbb\xf7LA\x92A\x96\x0e\x01\xad\x1d\xea\x99\xb1\x87\xe0\xf2\x83\xe0K\x0d\xf5\x9c\x18\xd4#\x83\x0f\x0c\xa8\xaf-D\xc32\xf9\xd0\xd6r0d#\x83\x00i\xaf\x9c,\x04\xcbdz\xa1\xbc\x1cfA\xbb\xa0,V\xb4'\x84~s\x102\x1e\xa8\x1f\xcb\xd7\xe3c\xd0\x94\x04\xe1\xf5\xce\x93D\xbd\xb3\x05\xd1Srd\x84\xcd\"@T\x87f\x0f\x8akaw\xf2\xa0\xdc\xcem\"w\xd0\x8a\x91\x18\xcf\x93O\xa8~ Q\xd5\xc6\xb8\xb4\xb1Q\xa7'\xbeM\xa6\xaa\x9f3\x89\x7f\xef&!\xf2\xbftE\xa6u\xb7\xc4\x7f%B\xf2\xa2|\xb1\xaa=>\xf1\x87f\xaa\x93@\xca\x95\xf7\x18p \xfc\x8e\x80\xff\xdc4(\xd9\xe1Y@\xc6 (\xc2\x19\" /\xc2=!\x08s!\xdeA\xe4\xdd\x8dkI~>\xf8\xfc\xc7\xa7 >\xdc=\x9a\xbe?\xda\xfdp\xf4\x19\xef~\xfa\x88\xff\xd8\x9d\x92\x08\x1fL\xf6\x8f\x0e\x0e\xc9\xbe\xa8\xc2\xae4D\xe4n\x0f'\x8d\xba\x1c\xd0\x87\xeb\xc1\xdd\xe3\x0d\xd9\x7f\xc4\x8f\xb4\xfaxD\x1f\x8e\x1e\x8e\xd2ty\xf4\x10}~\xa4\xe5\xddCz{OR\x1b\xc6\xa1T\xc4\xb1\xd8Y\x17\x99\xeb\xcd\xd0\xa3O\xfb\xef\xa7\x9f&\xd1\xee\xc7\xfd\x8f\x7f\xec~ \x93\xa3\xdd\xcfG\x07\xd3\xdd\xc3\x83\xc3\x83\x8f\x7f\x1cD\x87$j1T\x0c\xb6\x16K\x05\x88\x83\xbb\x07'S?\x97wi4{_>\xdcg\x1f>\xfc:\xda\xff\xf5xC?\x15\xe5ly\xb7\x9a\x16\xbf\xa2\xc2E\x0e\xef(\xcc\x98\x90g\xe9\xaaf\x01Jx\n\x9cq\x10\x8f\xd32w\xe1'\x1b>X\x15_\xf0\x9ei\xa49m\xdd*i\xf6+\xa5\xd9\xe0\xb3\x0f\xc4\xc1\xdd\xa1\x93\xcb\xf7\x1f\x0e\xe3\xbb\xc3_\xf1r\x1e\xe3\xc7\xea\xfe1\xc2q<\x9b}\xba\x99W\xef\xe7\xd1#y\xefa\x80{\xf7=.\x03\xcc]\xb3\xc8\x1ak\x9c\x05\xd2\x1cM\x93\x8c+\xc4\x80dr\xbb\x91I_V\xcc\xafL2\xb6| \xb3\x93\xc4 \xaa\x8fL_\xc7\x01\x18\x9d\x8d\xa1\xc4TOS|\xc3\xf1\xd5\x0d\nr\xf53D\x03-/\xa5\xed\x92\xe1L%1\xd2\xe8\xd5\xc6\xb2\\\xe4Y\xe9%[\x1a\xc2\xa7!\xdc4\xcb!\xd2\xbd\xb2\xa2\xf6x=\x89&\x0f\x02\x0f\xefq\xc1XD\xb7\x06s\x13-\x7f\xc8\xb1w^\xb8r\x10< )Dd\xcdl\x87;\x82F$\xb25\x18df\x9d9\xc8\x1aF\x86VyUH\x9f\xa7I\xa2\x1f+Y\xc4\xa2\xbc\x90\xecAu\x08\xa0\xf87#[\x86\x8d\x13\xf4\xcf\x8a\x14\xab=\xf5\x0d\xba8\xff\xd2\x02'\xf2Mk\x04T\xc0\xaf\xf1\xb3\x06>'\x19\xaa2\xf2\xb0 \x11s\xdcD\xeb'\xdbL\x95\xd1\x8c\xccqsb\x9c~\x9c\xdb\x87\xe3\x03t\xa7\xd7\xa3\x94\xa3<\xb6\xa88\xf1\x81\xab\x84\xb9\xda;'\x19}\x7f\xd8a\x90\xa3\xfc\xb7\x07\x87\x98P\x9c\xa4[R\xaa\x83}~]\x15\xce\xae3A\x03\xc73\\\x07\x7fm=\x99X\xe0\x02\xcf %\x85\x81\xf3\xaeH\xea5]\x05\x97\x10\xb6\x16\xc5`\xe7b\\\x97\"\xc9\x8e\xd1\x02S3\x00\x93-\xf7\xa4 \xf11\xa2Ee\xaa{+\xdb\x14\x07\x94c\x07$\xbf\xef\xf6c\xd8\xa6\xc3\xe7\x0b\x0f\xd9T0n\xdd1\xedde\xd7\x14\xa7%\x9c_z\xc3\x00\xe5X\xef\x1d\xc6\xd0}\x85\xe6Z\x03\x9a\x85\x83c\xef!\xd6\xd89\xd8\xf6\x0b#\xce\x96\xe1 \x03\xa7k\xb0\xeflx\xc9V\n\xbb\x1e\xf3\x88t6\x0e\xb4\xe1*o\x01\xdd-o\x18H\xf7@\x1f\xba\xf6\x96\xdb\x94o\x9c\xce\x96C\x0c\xa4s\x90\x1bm8\xcc\x0d`\x0e\xe7y}*)\xbei\xf8$\xff\x94\xd0\xf6\x98\xce \x19\xce\"\xb27'\x14\xc7\x98\xe2\xbd\xe5\xc1\x9e\x14\xc0=\x9cJ\x07\xeb\x86h\xe7\xb9\xac\xe6s\\\xac\x8eU\x99\x86\x934E\x05\xa1EB\x96\x84)\xdeT\x89\xaf\"A\xd7\x819\x8d\xcd\x8f~S\x84\x88i5\xf0{s\xb8\xbf\xff\xc6\xed\xab\x1b\x99d\x9bt\xd2\x9d\xfb\xeb\xe7pw\x052~wu\xed8\xaa\x91\x825\xc2\xf9?\xe8\xb52]\xe3\x81q\xec\xb52\xddke:\xcb\x03\x14E\x04\x9e\x06\x84^+\xd3\xd5OH)\xa2Ax\x01\xa6\xe0\xb52]\xe3y\xadL'\x9e\xe7\xa9A\x02Y\x05\xbd&>t l{^+\xd3\xc1\x96\xcake\xba\xd7\xcat\xaf\x95\xe9\xea\xa7\x17\x8f\xfb\x14\xc9Y\xaf\xa0[\xa8\x9c\xd9`\x00\xaf\x95\xe9^+\xd3\xc1q|\xadL\x87^+\xd3\x99\x0f\xdc+|f[\xffZ\x99.\xf8\xbcV\xa6\xf3|\xfdZ\x99N<\xaf\x95\xe9^+\xd3\xbdV\xa6\xf3<\xaf\x95\xe9\xcc\xa7\x8f\x82ic\x89^+\xd3\xbdV\xa6\xd3\xcfke\xba\xd7\xcat\xe1\x0c8\x0d \xc2\x12X\x95\x98m`\xcb\x18\xb5\x83(\xacpW=\xe8K)\xcb\x10\xac\xc8\xb0\x19\x0e\x85Ri\x81|\x19@p0ov\xa4\x95\xa2\xeb\x0e\x8dYu\xa1\x01\x14\xbdV\xa6\xb3>\xc0\xc5\x82\xda\xbc7\xc3Z\xadv\xa3\x11\xc8\xecw\xc9\xf5D\x85-\x07z\x1a\xea\x82\xbb\x83\xd7\xcat\x83x5\x86uA\xe8\xb52\x1d\x9c\xf2\x91\x85d\x18\xe5#\x14\x1b\xb0\x88\x90ws\x01)\xe3\x03%\xc6\x022\xb0\xcdp\x82z\xadL\x07\xe07\xea\xe0\x18\xd8\x9d\xf8\xd7A\xbfj<\xad\xc9\x0e\x9b\xa4m\xe1\xd1\xda\x86\xa8 \x0e\xcc\xa1~EN\xb6\x86[\xc3\xea\xea\x04k\xea\x0c\xe5\xe2K\xd9\x02Y\xf0\xb5\xec\x83\xbc\x90F`X\xc8\x9e\x03\xd94\x94\xfeQ,9\x94\xeeN\x99\x9d1\xf7HV\xe0\xce\xbd\x12\x08\xd4ke:\xd7\xd3gb\xd0ke:\xcb\xb3.\x07C62\x08\x90\xaeY\x03\xac\xb7\xbdD\xdb\xcb\xcba\x16\xb4\x0b\xea\xb52\xddke\xba\xd7\xcat\xe1\xcat\x02t\x89p!\x02\xbeZ\xb5\xe7\xda_\xbf\xb4\xf2q\xaf\xc5t\xd43\x16\x91\x83\xb2\x80\x1d\xb0 \xc5t\xc4\xb3\xc07I\xc6\x1d\x0c;u0\xdck(\"-\x829;\xfc\x1b\x9c\x9a\x7f\xab\x8b\x9b\xa82<~\xfc\xedZ1\xe8m\x86\xfd\xcc[\xb2rkP\x90\xee\x04\x99n\x18\xf3\x90@HL\xb8HM)\x08\xad\nY\x97\xf2\x1c\xdf\x10U\xd2\xe8]F\x1e\xe85\xfb1\xcd=\xd0&\xe4&\xc9\\E\xef\xd8\xc33\xc1U\xbc \x83\xc9f\x89\xa0y^RD\xa6\xd3$JHF\xd3\xd5;t\x96\xa5+\x94g\xc4\xefm\xe5\xd3iI(\xca\x0bF\x87o\xdcr\x96Wi\x8c&\x04\x95\xc41\xbb\n\xdaH\xf3S%\x19\xfd\xf8a\x84\x19\x924\x8a\xdc\xb1jN\x8a$R\xef\xb8\xd2\x8dp\xc6\xe8\x12\xc1\xbf3\x92qV\xb8\xc1%%\xaa2\xbc\xc4I\x8a')qVPd\xcf)\x1f5\xe5\x11\x9cjn\xd8\x98\x19\xaax\x98\xd7-\x196Qr6|C\xfb'*M\xe6\xc9\xd6\xcd\x13GJy$4\xa785\n\xc0\xaa\x98+\x9a3\xd2\x8cU\xe6\x01Hu\xac\x16_$\xfe\xa9\x9a\xa2\x94L)\"\xf3\x05]\xa1\x84\xa2\xfb$MU@\xa6\x88\xfc\x11\x0b\\ \xc0\xe6b\xe2\x93\x12\x82\xa3\x19\xc2\x8b\x85k\x06\xa2\xbc\xca\xe85\xa724\x0f>\x03\x85zq\xd8\x18\x94\xf1\x99\xaf\x80\x9c\x97qB\xc2<\x89(4\xb1,\xfc\x0e\xa0\xe4+\x03!U\x834n>&c\x81\x81r}\xdas\xcc\xc3\xd8\x91^ZL\xc2<\xc0\x0c\xeb\x94d\xe8\xe7i\xe9\x9d\xdf\x16\xe9\xbc\x82\x10s D\xcd7\xbe\xeck=\xc1T\xc1;t\xea;\x11IJ\x94\xdcdya\xea\x0c\xff\xcf=\xcb\xb1 l\x13\xe29\x90\x1c[\x10\xe4\x80m!H\xeau\x86\x0b\xd2Zk>\xea\xc4\xb1\x13\x1b_\xc4\x87\xa3\xbc\x88I\xf1\xee7\x1fK.\x93,\"\xc7(\xca\xcby^\xee\x96\xf1-\xda\x7f\xf7\xe1\xbd\xf5\x83P\xe4\x9e0\xb4\xda\xf9\x12x\x93\xf9\x84\xc4\xb1\xb0\xc47\x17\xe7_\xb4k%c\xe6J\x8f|im\xed\xac?\xab\x85\xef\x1d\xfa\xda9\xa4\xf1\xb9f\xe1I2\xdd.Q\xd4I\x9e\xa2\x98\x02_\x9f\x1a\xe6S\x97?\xe9v\x90\xd7\xd8>(?\xc6\xe7R{,G\xd0\xfbj\xf0\xe7\xff\\3\xae\xbd)i.\x84c\xc5\xa6}\x81K\x19\x19jH\xc5;\xaf\xe3\xc5}\xaa\xa0Cu*m\x02\x17-n$\\\xf6\x9a\xb9\xfb\x84\xaf\xa0,G\xf3\xbc\xf0\xec\xe3\x10\xf2\x98\x0003=&8\xb4t\xb4Ft\x19\xdcZ\x1d;\xe95\x19m\xe8Y\xd7\xda\xe1q\xef\x84\xee\xa0\x84\x96*\xa1\x9b\xf9Tb\xff\x11\xa3\x9c\xf1\xef>i\x95t\xf7\xaf\x9b\xba\xb0P\x9f\x1a\xa2\x9drD\x1a\xdc\xf9\x97\xd7*\xa2\xe8\xb5\x8ah`\xfd=q\x15\xd1\xd7Zl>:\x07\x9d\xc2\xae{>\x83\x16-\x94E\n\xf7d\xd1Bq\xd6\xe1S]\xee\x19\xeb\xb2\xc9R\x97\x10\xd7\xf5F\xeb\xfb\x1a\xf6/~\xd1\xf5V[X\xae\xca\x92\x12e9\xd5\x95J\xbcF\xd35\xc3]\xac,\xb5\x08U5`\xa5;;\xf5\x08[v\x7f\x08\"\\\xd4\\\xd8\xf0?\xdaQ\xc2+\x1bBQ\x9e\xa6$\xa2\xf2\xd6\x96\xff\xb4\xac\xdd\x92\x19^\xfa\xdd\x02\x06\xbfd\xca\xd3\x93\xfa#7\xa3\xc9$%\xd7\x0b\x1c\xf0\xa4G\xf4\xec\x83>MH\x19\xb198?\xb9\xb8\xfa\x7f\xf0\xc5\xda\xf9\xe8\xec\xe2\xf4\xbfN\x7f\x9c\\\x9d]\xc0\xbf\xb9\xfcz\xf1\xd7\xe9\x97\xaf=\xbe8\xfd\xf1\xd7\xd7\xcb^c|\xf9yyu\xf6\xe7\xe9\xc9\x0f\xf8'g\x7f\xff\xe8\x83\xd3\xc9\xb7o\xa7\xdfOO\xae\xbe\xc2?9\xfb\xdf\x1f\xa7\xff\xf8\xe9/\x81\xd7\xf8\xe0\xfc\xe2\xec\xaf\xaf?N~|\xe91\xc8\x97\xb3\x1fW\x17g\xdf\xbf\xf7\xa1\xe5\xaf\x93\xef\xa7\x7f\x06&Q+\xf9\xde\"\x03\xd7\xf0n\x89t\x0d\x8b\x02\xdd\x10p&\xef\x85\x81U\xee\x1c\xc2}l\x7f\xcdo3x\x85H~\xad\x90\xf03\xcb\xd0N\xc7\xba\x16\x8em/\xeb`\x94\x98L(*I\xb1L\xa2$\xbbA\xd3*\xe3:-P\x99\xcd\xba\x86\x8em/\xc5\xb5\x0c\x8f\x85O\"\x94dKR\xf6\xa3C\xaf\xb7c\xeb[\xc9(\x92\xd1\x84\xae\x84\xd1\xd2\xb4EUI\xf38\xc1\x99$P\x84 \xa6\xf6!\x90\xaf\xdf\xe3\xce\x9bv1]\xa6\xa2W\x12\x9f\xfc>\x13\xe7\xed\xfc\x02\x96\x92y\x8f\xe1\xf4\xfa?\xb6\xbe\x15\x1c\x15\x83q/\x9b\xc9\xc9t\x9a\xa4 \xdf\"\xdc\x14\x84\xccI\x16\xa8\xcfh\xd3\x1e\xc7\x96wb0\xee\x01\xe3T\xb8\xfc\xf9T\x0e..\xd7\xf2\x8c\x16y*\x88\x9eg\xc9\xa4*\xd1\x04g\xb7\x08G\xfc\xaa\xa0\x07\x1a\xb5N:\xb6\xbf\xd6\xaeJ\xf3\xaeD\xb3\xbe \x8b\x82\x94$\xa325H\x97)\x16\x9d\x0f[\xad2p\xd4s\xd1\xd6\xfa\xef\xd8\xfe\xba)\x8b\xf7\xb3$\x9a\x19\xfc\xd1\xfb\x08\xb5\xaa\xf5\x11FB\x10\xc9r\x1a8\xb3q(\xd6c\xeb[\x1b*\xdc\xbf\xe4\xe2*N\xd7\xc5:\x80\xb8T\x90M\x14B\xe7l\x12\xf8^Je\xdb\xc4\xc9\x94\xfbL\x14\x15yJ\xc44%\xc2M\xb2\xe7\xf7\xa8GO\xd2\x1c\xaf\xd8\x94\xbb\xbd\x1eYc\xba!\x98\x86\xdf\xd4\xde\xccY\x01\x85\xc8\xb3\xed\xca\xd5\x81\x07\xf7\xe3:W\x18\x81\x8d\xba\xb8\xb8c\xfa\x16\xa7i~O\xe2=u\x7f#\x0f\x12\xf6d9i\xeb\xf70\xab\xd795\xa6\x96\x92\x83\xa5\xe5\x02\xa5\xfdx\xca\x12Z\x8a|\xd8\xddB\x18\xca\x16p\xc3j\x86\xacS1$x\xb8\x1d>\xd6n\xd2\x11r\xd9\xc7\xb8 \x81\xf1\x17upC\x83k\x84\x94}\xb2\xa2\xadE7\xb6\x99/\xa1\x9cg\x8f\xecu\x81\x01\xb9\xd2'\xbdt\x0b84$\x939\x98\xc3<\x8cs\xa0: [\xc02X\x1dD\x0f\xbc\xc1L\xf2\xa7o\x83X3\x8c\xea`\xaa\xf6X\x8b\xa9g\xc5\x0f85\xa3U\xfb\x18\xb1\xd6G\xd0F!\x90\x9dB\xbd\xab|\x80$\x05A\x17\x12\xea5\x11\xa8Gu\x0f\xfd\xc3\x00\xbc^V\x0c\x0d\xad\xec\xb1m\\\x0bY\xb7\x008\xda\xb3r\x02\xa0\xb2\xc0\x0b\xe3\xdf\x10\xdb\xd7\x05\xd4\xbf\x86\xc7p\xae\x87\xebw\x80\x99\xbc\x0e\xef \xe6`\xa3\xd27\xa2\xb0\xad\xc3\x87\xb5\xebu\x00D\xb2\xcb\x940\xc6\x96\x9dn\xa8l\x87\x05J\xd9\xb9\xbf\xae\xcbz\x00Jx\xbc\xb4\"\x1c%(\".(W\xe1\xd9A\xb66\x0c\x11\xce\x90\x0c\x98\xe0\xd7Tl\xeaw\x10yw\xe3Z\x141\x99~\x9cD\xfbx7\xfa\x1c\xc7\xbb\x1f>\xfd\xf1a\xf7\xf3\x87O\xd3\xdd\xa3\xc3\xfd\x8f\xe4\xe3\xfe\xc7}\xfc\xe9\x8380\x93+4`K\x1b\x18\xb9\x82.\xa4i\xf5\"\xa6\xc6a\x00\x0f\xee\xf6\xf7\xf7\xe3\xfd\xbbC\xf2\xe9\xfe\xa8\xc4\xab\xa3\xf7xz\x17\x93\xf2aq\xf8x\xf7x[|\x98f\xce\x14\xe1S\x11\xf2\x8f\xd32WW\x89\x96{\xfc&F\x0eP\x05\x89\x0463'6\xf7\x1f\x0e\xe3\xbb\xc3_\xf1r\x1e\xe3\xc7\xea\xfe1\xc2q<\x9b}\xba\x99Ww3\xf2\xf8\xe1\x83\x8dZ\xf7Ne$)1\xb7\x18\x99\x0cC4\x8eAh\x8e\xd2<\xbfE\xd5\xc2\xc7D\x99Q#\x8e\xa5\xa6\xdd\x93.\xe9\x7f \x91sG\xa75\xfc^\x8b\xb3\xe5E@\xe5e{\xc7\xf7\x1eV\x80]\xbc\xd7Z:\xea\x19\x8b\xc8AY\\\xce\x95\x18\xae\xa5\xe3\xc7\xcab\xdb@\xf9\xa5-0f\xb6i\xf3H\xf85\xd1T>\xaf\x89\xa6[\x94h\xdaV\x99.Il\xad\x97\xa1~\xc68\xde\x85\xc7\xa7h\xd8\xed5}\x86\xb5=\x85\x91\xfd\x83$;F\x0bL\xcdFTub\x0f-\xaa`\xfa\x9a\x9a\xf4VP\x91o\xa2\x87\xba\n\x03\x1c\x04\xc0\\;\xdc\x82\xde\xce\x80\xe7f\xcb\xe2\x02\x0c\xc9\xa8rp\xfe5\xaf\xdbG\xe7 \x8f\xe0\xc9\xf3\xba\x87\xa7\xc7\x95{8\x95\x96\x01\x98\x10W\x9e\xa4)*\x08-\x12\xb2$%\xc2\xfc_] .\xa1YpF\x01\x8c\x17\x95 \xb7%\xd6\xbd\x81\x93\xdfH\xaf\xddR\x02vn \x1e\x80_\x80\xe0\x07\xa0#\xe7\xd3\x85S\xb8\x80\xe8\x87\x021\xc43V^]\xbf\xcc\xbapn\x9d_b\xeb'\x18\x85\x0b\x920\xf1@\xe4L<\xa1)\x12\x0fp\xa2\xe4\x8f\x87e\xdaI\x1fzs\x08\x05\x0fc\xd1x\x19w\xf0\x9c\xbb\x1eYw=\xc9\x06\xaez\xf1\xf4\xe1\x11\x1d%\xfbn@\xfe\x1d,\x03\xaf'\x9b\xfaR>^\x1e\xde\x80L<8\xba\xe3f\xe3\xf5\xcb\xc7\x0b\x80\x12x\x003\xf2 9yP\xae\xf4\xcd\xcb\xf3O\x04Sk\xebe\xe6\x01U\x1eP\x9c\xa1<\xa0ce\xe8\x0d\xcf\xd1\x03f\xe9Ai\xea\x9f\xa9\xe7\x057!}s\xf5\xc0s\x04I\x91\x19\x92\xd4f\xff\x12\x90\xb3\xe7\xce\x8b\x1a\xf4\x91?o\x0f\xad\x97\xb9\x17:\xcam>\x83\xb3\xf7F\xc9\xdf\x1b\x90\xc1\xe7\x9b\xc1\xe7\xcd\xe1s\xcf\xf7\x93g\xf1\x05Do[\xf2\xf8`\x99|=s\xf9F\xdfI\x04\xd5\x15Da\xb9s\xa8\xfa|\x06\xcc\xebsd3\xf5\xf9\x06\x94\xdb\xe7\xca6\xea\xf3Q8\xbf\xcf\x95\xe1\xd3\xe7#H\x8e\x9f3\xa3\xa6\xcfW\xc0M\x9f\x8c?\xa7\xe0\x8f\x99\xf3\xe7X'\x1b\xc9\xfas\xac\xaf\xd1\xf2\xfe\\k\xf1I3\xfflk{\xa3\xb9\x7f.\xdd\xb0\xc1\xec?\xbbfy\x86\xfc?\xa7\xbe\xda\x9a\x0c@\xa7n|\x9e\x1c@\x97\xd2}\x8a,@\xe8&m\xd4L\xc0\x1e\xb9\x80#e\x03B\xc8\x1c\x90\x11\x18\x80\xb5fN \xdc:v\xce\xbc\xe9\xc0\xbc@of`\x8f\xdc@8\xea\x16\x90uXj\xbft\x8cu2\x04A\xc7\xf3\x90\x83\xf9&=\xe1\xed@\xd0\x8b\x07\x1e\x04C\xf9\x8dF\xcc\x17\xec\x11\x88'\x9e\xd6d\x87\xf3,\xb6\x85G\xa1\xec\x8a`t74\x0b\xa85l\xbf@\xf7\xad\xe1\xd6\xb0\\\x8a`&\xc5P.\x82r \xb7\x88}\xaf=\xc5\xd7\xcb.\x84/\xb7N\xca\xc5kOq\xfd@\xac\x1d\xea\x9dm\x08\x96\x1f\x04_j\xa8\xe7\xc4\xa0\x1eY\x87`@}m!\x1a\x9ay\xb8\xad\x1c\x0c\xd9\xc8 @\xda3\x0b\x0c\x941\xf5By9\xcc\x82vA\xf5\xcfG\xec\x97\x91\xd8?'\xb1\x17\xcb\xd7\xe3c\xd0\x94\x04\xe1\xbd\xf6\x14\x0f\x00\x04f)\xc2\xf0\x1e'Sq\xed\\E\xd4NJ\x8c\xba\x91\x8d\x8e\xe6\xe3\x8e\x00O\xf5\xbc\xb4,\xc8\xd7\xf4)\xf5\x8cE\xe4\xa0`i\x07,H\xfa\x94x^[\x91w\x1e\x90\xca\x05Y|\x18\xf3\xd0\xb0\xe6`\x1eh\xaf\xad\xc8\x91\xa3\xafS\xfb\x81\xcf\xd0\x90\xb6c\x1ep\xaf\xad\xc8\xc53\xfa<\x0dk`\xe6\x01H_[\x917\x9f\xbem\xcd<\xa0^[\x91\xbf\xb6\"\xd7\xcfk+r\xd7_\x03\xbb\x02+E\xaf\xad\xc85\x7f^[\x91\x83\x98\xf9\xda\x8a\xdc\x91`9j\xdd\x08\x9e\x01\xfaZ;B>\xaf\xb5#|+\xf3\x89kG\xbc&\xb3\xfb\xe8\x1ct>\xf3\xe4\xc9\xec\xe8\xb5Iy\xafB\x0e\xafM\xca\xc5\xb3a\xe6\x86\xdbk\xbf6)\x1f\x83\x8b\xafM\xca\xa1\xbbr\xf4\xda\xa4\xbc9\xc6\x0bkR^F\xf9\x82\xec\xfd\x8b\xff\xc7\xdf\x97\xfc\x92\xfd\x04\x95\x04\x17\xd1Le\x06 \xfe\x9d\x9aO\x17\x8b\xaffD\xfc\x10%\xf1\x0e\xe3\xaa\xdcI\xc7;\"\xe7\xad.\x90%~e)\x92\xf5\xf9\xe0\xf3\x1f\x9f&\xf8p\xf7h\xfa\xfeh\xf7\xc3\xd1g\xbc\xfb\xe9#\xfecwJ\"|0\xd9?:8$\xfb\xa8\xc6HW\x9f\xaa\xf9\xcf\x0b_\xf1?\x1e\xdc=\xde\x90\xfdG\xfcH\xab\x8fG\xf4\xe1\xe8\xe1(M\x97G\x0f\xd1\xe7GZ\xde=\xa4\xb7\xf7$}'p&e\xa9\"Mv\xcc\x1dW\x0b\x7f\x9e \xa7\xae\xbf\x8do\xba\x08\xe8\x7f\xc8\x9f\x1d\xdc=8Q\xf9\\\xde\xa5\xd1\xec}\xf9p\x9f}\xf8\xf0\xebh\xff\xd7\xe3\x0d\xfdT\x94\xb3\xe5\xddjZ\xfc\x8a\n\x8e\xa3\x06(\xefP\x15\xaa6\x14kT$\xae\xf2F\xd5^eT\xfc\xf1\xe0\xee\xd0\x89\xa0\xbbF\xd7\xfby\xf4H\xde\x9b\xd2\xff\x1f\xcc\x16p\x8d\"gH\x06\x04\xd5hr\xc5(\xa5\xa4\xd4\xab\xec\x9d\x03\x84`\x9f\x8e?0\xc1()\x92\x17\xda\xc2\x7fb\xb0\xc57\x1a^x\x14\x83\xa7\xd0A$K\x8d\x13 \xd7\x18\xfc(\x82;\x1e\xd2\xd1Pl\xd9iP\xc7k\x0f40\xc1\x05\xb1\x08\"\xfb\x15\x9d\x91\x15\x8a\xf3\xec\x0d\x15\xd1k\\\x91\xa9A\xa8\xab\xb3\xbak\\6\x8e\xf7\xdb\x0f\xbf\xba\xbb\xe6rw\x1d\xdc\xee\x8d\xcd\x87z\xa16\x8d\x0f\xd5\x95\xebZ\x04ye\xd38M\xb9\xa48\x8bq\x11\x9b\x06CZ0q\x888\xc7\xc5\xad\xb7\xd8\xaa\xfa\xb57\xf8\xb6 \xa8\xac\x16\x8b\xbc`\xf8\xe9\x0d$\xc7\x9c\xaf\x08\xa6\x8c(-\x92IEy\x11>~\xf6\xe9\x018!L_g7$F\x13\x11>'\xb5\xbc2\x8dlmD\xcc\x13\xb1\\\xc2\x99\x8f<\xf6\xe1\xe5\xf6V\xd7E\x9e\xa6\xd5\"4\xad!\xcd\x0e\x9f\xd7\xbf\xa5\xda\xc7i\xaa\x97\xb6\x92ty\xb3\x93\xc5\x94\xbc\x0b\xa5\xb7\xc8\xb9\xfch\x04r7\xb0\xa7U\x1b\x10Q5 !\xa9\xb8\x97\x8c8\x91Re\xc0\x88u\x15\x15j>F\x89!O\x81I\xf1\xc09\xc3|e\xe9\xbb\xb4\xf4\x9cn\xc3\x9adQ\xc1\xbdy\xc0\xf9\x11\xd7\xe1\xbc~\x84\x98q\xef\x07\xce\xc2H\xcdg#\x12a\xd2-\xf1\xb0D\xe0\x85\x16\x8aTPI\x9e\xed z\x11Y\xfa\xb7=0\x0cO\x98\x89\xfb\xc6\xack\x89\"\xbc\x10^\xa65\n\x87\xad@/(-\xe79\x9a\xe3[\"E]\xd7\xf8\xceb\xb5\xb0\xc9\n\xdd\x93\"0c8v\xfd\x00jt/\xa5\x03\xa5\xe3\xa5\x0c_J{\x17\xf8\x06'YI\x8d\xdd\x89\x13^\xf3(\x9d}\x85\xb3\xc8W\xdd\xf4\xca8F\xe5\xe5PfxI\x8c\x91$\x87y\x8c\x18U[\xcc\x84\xb8\xd5B\x92-\xf3t\xd9\xcc\xdbn??\xce\xd8N\xfao\xc9\xe9V=\xbc\x8bFD0\xc22\xa2\x8c\xad?'\xc0:\xbe\x0c+\x96\x8a\xb4x\xc5_\x9eP>\xcf9^6\x00\xf5\xa5\xcd(M\xceZ\xe0\x86E8Xc\x1c\xfc\xee \xc0\x87\x82\xf8OO\x7f\x85\xd5\x0e\xc4\xd2\x08\xb8\x03\x18\x9a\x95-\xdc\x9e\xa51\x17\xa1\xc8\x84\x8d\xd2\x14Pr\x1d4\x87\x86'\x98\xa0@\\\x81\x04/m g\xbaAO\xc6\x1b`\xe7\x19Cx\xc0\x1c\x92\xff\xfb2xd [\x1fH\x18\xef$\x9f\xbc\xf0\x9a\x8b\x0c\xc4'\x7f\xe0\x06\x989C\xa8\x1e!v\xa3\xdf\xaa\x19I\x10\x86\xd0\xbaV\xf0\x86SP<$\xab \xc11;\xa55\x80\"W\x874\x19\xd1\xe7\x8d6B\x96\xceh\x90\x99\x04\xd9J\x04\xb4\x97\x08AB\xaf\xc5\x03\x14\x0d\x04\xd7\x13h3\xc1\xd8\xe2\xd13\x15\xb6\x9d\xe8i\xa8\x03lgZH\x0f\xb7\xa4&0 \x9f`\xd6\x14m\x1f\xaf\xc6\xb0\xad\x08\x19Y\x0e@\x9e\x85\xec\x06\xea\xc7\xaaa\xf4\x8fbAPOi\x19YH\x86Q\xbe\xa6=Av\x11\xb2\x93\xdfi%6\xc6^\xcb\nt\xbc\x1d\x97=Jm\xc3\x1b\xb06M#\xf8\x1a@\x15\x02\xe5:\xea\xd1R3|\xa1\x85:G\x17A\xe3\xd4\x99\xf6\xb0\x81\xda\x1eN\xadm\x98\xda\x00{\xf0)\xea\xd5\xadp\x8bx\xd6E\\\xf2\xaf\x07\x18KJ\xd3`^\x86\x0c\x17\x90u\xc3y\x021Z^p\xebP?\x92\xe0\x0c\xa7~M\xc3\x05\x10/\x1b+ \xf8\xcaCGw+K}v\xd5\xe8Ti\x85\xd5\xbb{\xa5\x15'9`)\x82(VF\x95f]\x17Q\xff\xa2\x91\xde\xfc\xd6\xda\xd8\xc3,\x91\xd9\xfe\x0b?\xbc\xed\n\x86\x10\x87\xa7\x8d\xf7\x17\xc8\xb8\x84t$S\xfd\xe4\xb1\x18{\xb5H\xd4\xc1\xd1\x82\xd4w\x08\xfd\xc5\x8b\x0d\xc8Ts/,\x19\x8fo)\x80q\x92\x969\xba\xcd\xf2\xfb\x0ca&\xb5\xdf\x98\xfb\xe3\x0d\xd2x\x8e\x03c\x18\xc7\xeat\x03\xb5\xe8\xd4m\x87\xca3h\xe5\x12\x04\x14\xa6\xe65z\xcb+U&t\x86\xa6IJIAbt\xbbTv\x9d\x92\x02\xd3\xbcp\x07\x8b\xc9Ht/\xbb@\x04J@J\xcb4\xfc]E\x99\x98jo\xc1\x06\xadiV\xcd;\xa8\x9cG\xe7\xe5\xd3\xa9\x8c\x83k\xb6\xa2\x852+(\x14\xa3\x1d\xc3\x00\x93$\x80\xa2\x88\xc0\xd3\x80P\xe7^\xbd\x13\xd2\xc8\xa7C-\xd9 49\xb1\xde\xdf\xcdp9\x1b\x9fTF\x07\x83\xcc\x89\xc8\x8c\xca,J\xd6\x82\xc9\x13!\xa5\x88\x06\xe1\x05\x98\x02,\xc2\xd5,w\xd7\x1a\xf9\xb7l\xe0k\xf63\x7f\xec\x12{tx\x1a[\x04\xad\xd9\x8c\xf2\xf9<\xcf\xf8x\xfe\x98P\xd1\x12\xeaY\xd8!\x86\x16\xe1i\x8a\x8c\xfa\xae\x94w\xbc\x08^)\xabG\x17\x89Fo\x05\xd8\xdf\xeb+Z\xce\xa7=\xcd\x1a\xef]\xadz\x98\xeaM\xb2e~\xeb\x91\xa5$[T\xf4\xc5&lAVA\xaf\x89\x87\xb8z\xed\xe7\x07\x9bv\xd9IM\xd6\x17g\x13\x9f&\xd9-\x9a\xe0\xe8VVe\x07@\xe21\n<\xf5\x82\x0b\x8d\xff\x84K\xb7\x00\x08\x1fq\xf5d\x01\xd0=\x10\x0f|\xa9X\xd4\xb74\xf4u\x0c\xf87P\xe2\xc4\xd7\x92\xe2I\x9a\x943\x12\xab`\x86P\xd08D\x8f\xf7dS_\xca\xed\n?!\x11O,0\xbc\n\x00<\xc6(t^\xe4\x8b\xbc\x84\xf3@\xab\xe5\xcd0\x82\xb7\x86_(\x9c\xa6\xfcD\x8f\x16U\xc4\xa3\x89\xb8\x8f4\xc7E9\x0b\x04\xad#TRL\xab\xe0\xd2\xef\xc7\xffS\x9d\xbb\x92L\x85\xdb\xc4\x15\x1fW\x91J\x0c\x15\xd2\xa0 \xd0i\x15\xbf*\x1e7$b\xe4\xd9\x14\xf3[\xb2E\x15V\xcf\xbdx\x0c\xcf}\xbc\xf8\xfa\xe5\xec\xe2\xcf\xeb\xd3\x1f\xe7?\xaf\xae/\xafN\xae~^\xf6\xcaGs\xc18\xbf8;?\xbb\\\x03\x80x\x17\xfc\\\xe7\xd3\xadKH\x7fM\x1ed\x1ed\x06\x02 \x8c4*@B\x08\x8f\xf6\xc2i\x12\xefU\x99\xd8/\n\xb9e\xb2\x03\xf880\x95v\x1e\xab\xbf\xb6\x13\xbe\x8c\x15\x93!\\L\x12Z\xe0bUk0^UP\xef\xf9\xc4R\x18\x8e\xa3xg\xc7P\xbc\xb3\xe3\x97\x88\x05\xdd\xf0\xc0\x16\x05Y&yU\xf2\xfeV\xcd\xa5n$Iyq\x95\xca\xe6\xaa\xc0\xd1\xad8\x11\x13\x9e\x93\xde\x01\x12e\x93\xa0\xbb2\x90\xf62\x07\xe9\xf8\xd9\x8c\xb6h\x96\x90\xa5\xe8\x0d\x99W4\xa4v\xf2\x0c\x84\x9d\x80\xf4b\xbd\xc2g\xb6\xf5\xff-\xedOC\x86d\xe2\xd0\x1e\x92\xbd3\x86\xd4$\xedEyV&\xb1:}\xe0\x83\xdf&\xfc\xd6\"\x16\xed\xae\xe6I\xc9\xbb\xa5J{\x94\x17(&)^\x91\x18\x98\x98\xe8@\x92 _\x1bI\xf6\xce\xc9\x97\xfaB\xd1\x8a9\xd3\x19\xae\x00t\xf5@\x95\x9e\xd8T\x9d \xfdD\xb2\x08/\xca*\xd5(I\xbd\xc5w\xb1\x90sDT{\x1e\x80\x1cc\x18\x8e\x02\x87\xb7\xe5\xef\xa8n\xb0\xce\x9bW\xe6S\xc52\xd9KX\xa9\xeb\xc0,\xb1\x9f\x8a\x8d\x8c\xfa\xa0.&\x9c\xc0\\\x87\x97Q)\xa9\x8d\xa5b`}\x97\x01\xb0\xb3\xa5\xb5\xa8\x92\xb5p\x92\xbc\xf8\xfc\xc7\xa7 >\xdc=\x9a\xbe?\xda\xfdp\xf4\x19\xef~\xfa\x88\xff\xd8\x9d\x92\x08\x1fL\xf6\x8f\x0e\x0e\xc9\xbe(\xda\xaetB\xe4\xee&'\xcd\xb8\x1c\xd0\x87\xeb\xc1\xdd\xe3\x0d\xd9\x7f\xc4\x8f\xb4\xfaxD\x1f\x8e\x1e\x8e\xd2ty\xf4\x10}~\xa4\xe5\xddCz{OR\x1b\xc6\xe1\x02Tc1\xb4Un\xaa&\xbfY\x8b.@\xaa\xf8\xf1\xc1\xdd\x83\x93\xd8\xcf\xe5]\x1a\xcd\xde\x97\x0f\xf7\xd9\x87\x0f\xbf\x8e\xf6\x7f=\xde\xd0OE9[\xde\xad\xa6\xc5\xaf\xa8\xb0q!x\x193\x12\x13ZW/\x9a\x07J\xb34X\xe0\x03qpw\xe8d\xc0\xfd\x87\xc3\xf8\xee\xf0W\xbc\x9c\xc7\xf8\xb1\xba\x7f\x8cp\x1c\xcff\x9fn\xe6\xd5\xfby\xf4H\xde\xdb \xcb\xec\x16U\xd6\xca\xe1r\x0b.\xf8*\xde\xc3\xd8\xd0\x1eM\xf0b\x9a\xe2\x1b\xae-u\x8d\xfc\\\xfd\xd2c\x194\x8c\xc6\xdd\x84\xde\x94\x94\x8b<+\xad\xb1\n\n \xa9D\x9f\x86bS\xa5\x0f$X\x81\xe8K/y\x10(xw\x99c\xd1\xdb\x1a\xccM\xaf\xfc!\xc7\xdeyO\xc7A\xf08\x96\x10\x915\x9f\x1d6\x0d\x8dHdk0\xc8\xa4:SW5\x8c\x0c\xad\xf2\xaa\x90\x86\xb3Ib\x03+^\xd8\xf5B\xb2\x02\xd5Qb\xe2\xdf\x8cD\x19YL\xd0?+R\xac\xf6D%\xd8\x8b\xf3/2\xb1\xb1\x86\xadB@\x7fs\x0cu\x92\xa1*#\x0f\x0b\x121\xc3.: \xd9&\xa1\x8cfd\x8e\x9bNX\xcb\xdd\xea*\x81\xa7\"\xb9\xe5Q\x01I\x1e\xe8\x87\xd5\x1eWg\x9e7Mg\xcb\xa9\x02\xd29\xc8\x153\x9c\xae\x060\x87\x03\xb6>\x95\x14\xdf4\x8c\xdf?%\xb4\xbdE\x91/I\x86\xb3\x88\xec\xcd \xc51\xa6xoy\xb0\xc7\x05l\xef_\xca\xdc\xfd{O\x08\xe3\xde\xbf\x18\xab\xfe- \xdd\x10\xed\xb8\x95\xd5|\x8e\x8b\xd5\xb1\xee\x02P\x12\\D3\xd92P\n\xb2\xa2\xc8\xc5\xcd\xab\xfa.\x87\xa9\xc3\x1d\x94LU7\xc2xG\xd5F\nh\xce\xdfj\xf6\xac\xad6\x19B\x1a\x1e\xe7\xc4n\xc7\xf0\x8b\x85h\x18\x7f\xfd\x01\xdc\xf2\xdbL~cX\x88\xb5G\x97\xc9\x15\xba\x9b/$\xc6<\xfeYc\xf8\x93\x0eWw\xd0\xa4\xa2(\xcb\xa9\x85\xb3\xb8Q\xe5\xbc\x0bFt^\xabE\x99\x91\xa5g\x8b\xfdQ\xaf\x998'%\xc3s\x8ei\xd4\xec\xf2c|o\xce\xc8?Vj\xbb\xbdc\xb8M\xa2E\x8ct\xaeD?\x17\xaa+\xce\x18\x18^\x12Z\xbbn\xeaKFQ\xc7\x9fc\xec*D\x82_\xc3\x83k\x9c57\x05M\x9b\x06]\xac\xe84\xd6\xb6\xe4\xfdo\x8a,a\xfe\x0d;\xf6\xe6p\x7f\xff\x8d\xfb\xf0\xc0Hv\xdc\xe4\xa9\x01\xa7,p\x87a=\xc9\x91^\x9cP\x84\xba\xa2c\xa4\xda\xe6\xa0Y\x9e\xc6\xa5\xbe\xce\x10\x8b\xbf\xef\x15\xcb\xfa\xf7\x1d\xbe\x93,O(E\xe8\xa0 t\x9b\x82`\xdb}\xe0\xe5t8\x1b\x0e\xa1\x9f\xa2\xb2\xe2\xe9\x9fub\xbcX\xee\x08\x9d\xce\x17)\xef\x1eV\xa22\xbe}w\x12\xc8\xf5\x926k\x8a#q\x14\xc6K\x0e\n5%\xbe$b\xad)\x1f\xae\xed\x066\x9f/y9\xcf]\x83\x95\xe0\xd4\xc8\xa7ef\xada\xcanF\xa3\xbe\xe0\xf4_\xbb6\xbe\x14\xae$/}@\xd4\\\xe04\xcd\xef\xa5\x19\x937\x91>p\x91\xfb\xb6\x8b\xf7\x9a\xf6\x84\xfb\xf8\x8e\xd2\xd4\x13\xacK\x11\\3\xe2 \xaf\x1c\xf1\xe0M\xd5L\xc4\xf6&\x83oU\x8e\xb1\xbf$T\x91\xa7\xc1ZP\x10 \x12\x0f\xe6\xf0\xea\x15\xa9\x901\xea\x9fF\xb22(0\xd0Ff!\x13@=\xc4^\xcc\x83\xd5up\xb5\xd9\xef\xf7a\xdd\xfc\xbe\xdfw\xaa\x9b}\xbf\xafTO\xfa~_\xe9&\xf3\xfd>\xe3m\xe1\xfb}\xa2\x1b\xba\xf7\xfbL\xb6d\xef\xf7Q\xdd7\xbd\xdfwu'\xf3~\xdf\xe9~\xe3\x81\xcft1\x8dA\xe2\x15\xf6U\x9a\x8fK\x8a\x07\x0e\x8f\x90l\xa6\xce/xz\x14\xc5p,\x8ac\xfbk9\x8al\x11_$7I\x86)\xa46\xa0u\x0d\x1d\xdb^*g\xbdD1\x99PT\x92b\x99DIv\x83\xa6U\xc6;\xe3\x87\n:\xb8\xd6\xde\xb1\xed\xa5\xd8-\xf1\xc8\x97$BI\xb6$e\x7fz\xf4:=\xb6\xbeE\x8d>\xf7\xdc|k\x1a\xa3\xaa\xa4y\x9c\xe0L\x12*\xcf{D\xdb\xfb\x9eh\xf0u\x7f\xdcy\xd3\xae\xc7\xb50\x9a\xcas\xa3\xad\xac\x14\xb3\xbe=\x87\xd4z\xe3\xd8\xfaVpW\x0c(6\xca\x19\xc2\xd3i\x92\xf2n\xea\xf8\xa6 \xdc\x0d\xe99\xa8\xd4:\xc7\x96wb@\xee\xf5\xe0T\\\xa4\xca\xce\x9d\xab\xdao*\xf2T\x10?\xcf\x92IU\xa2 \xcen\x95U\xec\x89J\xad\xcb\x8e\xed\xaf\x19B\xaa\xf2\x84\x9a\x07s\x1a\n\xb2(H\xc9]1\x1ei\xa8\xab\x9e\xc9\x83\xadf\xe5]\x1c\x0dX\xd4\xb5\xde<\xb6\xbfn\xca\xe7\xfd,\x89f\x06\x9f\xea&\xeer\xd5\xeb\xa2\xa0 A$\xcbi\xa0\x08p\x17!\xad\x90\x8f\xadom\xe8\xf0Z{\\\x84E\x1d\x14\xb1> %[\x90\xee\xef\x1b\xf2,\xc2\x91\x05\xc6o\x85\xf7\xa5\xcf\xa6\xf5\x84\xbe)Q\x99\xdcdX\xb4\xea-\xf5\xe0\x1ex0O\xee\x04\x9d\x1b\xebV\xf9\x97lQ\xed\xf1B\xc4\x82/\xcc\xd3\xf3\x82\xe9\xf6\xd9\x8f\xfc\xb5E\xfaX\xb6+\xbe\xcf\x96}rk\xd1F4_\xa0\x94,I*7 \xe1pQ\xb5W\x17>\xea\xbb6h~\x92\xcd\xf8\xccc+\xe5\xd6\xdd\xa7.\xeb\xee\xde+ws^\xe1\xdc\xf2\xfd\x91\xa57\x80\xc0\xa0\xb9\xfb\xf4J^\x95\x89#E:\xd3x\xa7 ?\x83\xcd\x1b\xdd\xfa\x9cq\xfe\x0c\x93k\x1c\xf9\xab\xe5\x8f\xb8\xad\n\xf8\xe8p98\xd1LR\xc1\xad\x8cp\xce1\\\xd1Y^$\x8fB#\x16$\"\xc9\xd2'\x08uE^>/\xdd\xf2\xe6\xfa\x88\xc1\x01\x84\x07C\\s\xb9\xbb\x0en\xf7\xc6\xe6C\xbdP\x9b\xc6\x87\xcd\xbe\xa8L\xdd\"\xc8+\x9b\xc6i\xca%\xc5Y\x8c\x8b\xd84\x18\xd2\x82\x89f\xdes\\\xdcz[\xc9\xab_\xfb\x96\x03\x9b\xb0\xb2Z,\xf2\xa2Q\xeb\x90c\xceW\x84(vT$\x93\x8a\x124\xc7+~ \xef\x018!L_g7$F\x93\x15\xe7\x82\xd4\xf2u=\xab<\x8b\x98'\xc2\xf4\\I,\x91\xd7\xe2\x91\xc7>\xd7\\\xe7^\x17y\x9aV\x8b\xd0\xb4\x864;|^\xff\x96j\x1f\xa7\xa9^\xda\xcd0n6\x05 -\x91\xe5f\xbf\xfd\xa8[9\xa5,\x1b\x80\xde\x94JeN\x13\x92\xc6\x9ev\xe6j:\xd22G$\xc3\x93T\xec\xce\x99\xaaU6\xe8?\xf9\xa1\xb2@P@\xf5\xcd}}\xaa\xadh\xb4O\x06\x8cm\"\x80M7{GE\x9eS\xa3\x1c,\xf7yQ\x94\xa7)\xe1.N}\xf9\xe0\xc2\x91\x11\xc0\xa5(\xcf\x88\xbe\xb2\xf0 \xaa\x8eJ=\xf1\x930J\x1a\x80\xe0U\xad\xdcg+\xb5\x91\xb1\xfe x\xe4\x15>\xecz\xcac\xe2\x06\x13\xcd\x9b':\xb8\x18\x89\xe6x(\xc3m\xc3T\x84\x92\xd4j\x8a\x1a\x98\xf8\x1f\x7f\x86\xcf\x86\x08\xf2*7\x0b\x82\xc8W\x13$t\x02\x0d\xe2\x87;x\x1fA\xd9\xd0\x97B\x1cJ\xf0\x1a\x8b\xb6\x11\xa6\xb8/mk\xa5jY\x04\xc0\xadP\xc3\xb9\xcf0\xdc\xbb\xd0\x86U\xf2\xe8\xd6\xf1\xb0\\\xa1lX\xd1\x06s\x99As\xbe\x91e\x1dHX\xf6^\xf0\xa0\xf6}\x12LoC\xd3\x93\x9f\x9d)\x10\xf5\x0e\x85\x05c\x89\xf1\xaf\x11\x94\xc4Fy\xd3B\xb5i\x11\xf4k\x0f8\xab\x99\x84s\xeb\x19\x0c\x04,\x0dx|\xc1\x18A\x14\x06\x91:\x82\xd1pHK\x9bhw\xa2\x9a\xef4cS\xf9\x16\x12\x1b\x17\xcb\x83f!<\x02B\xcf\xd1(\x12\x1e\xd70\xee\xb8}\xc4O7\xe3\xac+<;jb\x80\xba4\xd8j\xf9\x037\xc0\xcc\x19B\xf5\x08\xb1\x1b\xfdV\xcdH\x820\x84\xd6\xb5\x827\x9c\x82\xe2!Y\x05 \x8e\xd9\xf4\xa4\x01\x14\x8d\xdd\x18\x122\x93 [\x89\x80\xf6\x12!H\xe8\xb5x\x80\xa2\x81\xe0z\x02m&\x18[\xcf3>\x9e?:T\xb4tz\x16v\x88\xa1E\xa0\x9a\"\xa3\xbe5\xa59\xe4rY=\xba\xf24z+\xc0\xfe^_\xd6r>\xedi\xd6xom\xd5\xc3To\x92-\xf3[\x8f,%\xd9\xa2\xa2/6u\x0b\xb2\nzM<\xc4\xe9k??\xd8\xb4\x8bbD\xaah9\x9b\xf84\xc9n\xd1\x04G\xb7\xb2x;\x00\x12\x8fV\xe0I\x18\\h\xfcg]\xba\xc8z\xf8\xb0\xab'\x0b\x80\xee\x81x\xe0K\xc5\xa2\xbe\xa5\xa1\xaf\xa3\xc1\xbf\x81R(\xbe\x96\x14O\xd2\x847\xe5\x97a\x0d\xa1\xf0q\x88\x1e\xef\xc9\xa6\xbe\x94\xdb\x15~B\"\x9eb`x\x15\x00x\x8cQ\xe8\xbc\xc8\x17y \xe7\x81V\xcb\x9ba\x04oQ\xb8P8M\xf9\xd9\x1e-\xaa\x88\xc7\x15q\x1fi\x8e\x8br\x16\x08_G\xa8\xa4\x98V\xc1\xa5\xdf\x8f\xff\xa7:\x8b%\x99\n\xb7\x89+>\xae\"\x95\x18*\xa4A\x13\xa0\x13,~U<\x82HD\xcb\xb3)\xe6\xf7e\x8b*\xac\x9e{\xf1\x18\x9e\x05y\xf1\xf5\xcb\xd9\xc5\x9f\xd7\xa7?\xce\x7f^]_^\x9d\\\xfd\xbc\xec\x95\x99\xe6\x82q~qv~v\xb9\x06\x00\xf1.\xf8\xb9\xce\xac[\x97\x90\xfe\x9a<\xc8<\xc8\x0c\x04@\x18 U\x80\xd4\x10\x1e\xf7\x85\xd3$\xde\xab2\xb1_\x14r\xcbd\x07\xf0q`*\xed\xe3\xddO\x1f\xf1\x1f\xbbS\x12\xe1\x83\xc9\xfe\xd1\xc1!\xd9\x17%\xe8\x95^\x8b\xdc\xbd\xf1\x9a\\\xf6\xe1zp\xf7\xe8\xe4\xf2\xddCz{OR+3\x03 \x94c\xb1\xb3\xae\xb0\xd7\x9b\xa1G\x9f\xf6\xdfO?M\xa2\xdd\x8f\xfb\x1f\xff\xd8\xfd@&G\xbb\x9f\x8f\x0e\xa6\xbb\x87\x07\x87\x07\x1f\xff8\x88\x0eI\xd4b\xa8\x18l-\x96\n\x10\x07w\x0fN\xa6~.\xef\xd2h\xf6\xbe|\xb8\xcf>|\xf8u\xb4\xff\xeb\xf1\x86~*\xca\xd9\xf2n5-~E\x85\x8b\x1c\xdeN\x991!\xcf\xd2U\xcd\x02\x94\xf0\xc4=\xe3\xfa\x00\xa7e\xee\xc2Ov\xbb\xb0\xaak\xf7^98\x992\xe4\xc2\xdc\xbd\x8a\xec\xad\xc6\x99\x1c\xcdQ\x9a\xe7\xb7L;[\xa0\xc8d\x1fq \xe9\xc3\xc3\xd7\x07\x00&U\x8d\xa1\x84\x92\x9a\xa6\xf8\x86\x9b\x0d\xdd6 W?\xe3$\xb8\xcd\xa4\x00\"-\x97\x8c\x10*Im]\xd4V\xad\\\xe4Yi\x8d\xe0\xd0\xe8\xc8\xe4\xf6'\"\xdeL\xb6\x0f\xd1\xef\x17\xf7r-\xf2\xc9\x83@\xc8\xbb\x15\x1f\x8b\xfa\xd6`n\xe2\xe5\x0f9\xf6\xce\xcbL\x0e\x82\x07\xfb\x84\x88T\\wz\x0dhD\"[\x83Af\xd8\x99\xdf\xabadh\x95W\x85tM\x9a$\xfa\xb1\x92\xe9T\x17\x92;\xa8\x8e\xae\x13\xfffT\xcb\x88l\x82\xfeY\x91b\xb5\xa7\x8a\xeb^\x9c\x7fi\x01\x13\x99\x9c\xf5\xf0*\x94\xd6\xf8Y\x03\x9b\x93\x0cU\x19yX\x90\x88yW\xa27\x93m\x9e\xcahF\xe6\xb89-Ng\xcb\xedh\xf1\x01\xba\x93\xebQ\xa0Q\x1e[\xb4\x9d\xf8\xc0Uc\\\xedJ\x93\x8c\xbe?\xec0\xc8Q\x9f\xdb\x83CL(N\xd2-)\x82\xc1>\xbf\xae\ng[\x98\xa01\xe2\xb9\xa3\x83\xbf\xb6\xee\xf9\x17\xb8\xc0sBIa\xe0\xbc+\x0c\xa66\xbd. l\xad\x87\xbe\x0e\xe20\xb7\xd0\xe7\xad\x0cq\xfb\x92\xec\x18-05\xc3 \x99bH\n\x12\x1f#ZT\xa6\x81\xb0\xb2Xq\xabu\x9a\xdd\xe0\xd4 \xf7a4\xcc\x8c}\x0bp*\x07\xeft\xc6\xdd\xdf0\x0e\xdc1\xb5ie\xc1\x14\xa7%\x98\x07\xb5\xbb\x0ddA\x7f\xff|\xa8W\xae\xd9\xd9\x80f\x91\xee\xb1=\xf05\xfcn\x9b\xb7=\xe2l5\xdcX\xe0\x84\x0ds}-{\xcd!\x1e\xdf\x10\xda\xdb\xdeP\x87x\xe9\x82\xf6\xa5\xbf\x8f\xf7\x8b,\x83\xb0\xe1\xed6\x809<\xdf\xf5\xa9\xa4\xf8\xa6\xe1R\xfcSB\xdbc\xaa\x83d8\x8b\xc8\xde\x9cP\x1cc\x8a\xf7\x96\x07{|\x1d\xee\xfdK\xa9\x9d\x7f\xef \x99\xdb\xfb\x97\xb4E\x8cc\xff\xde\x93\xe2*\x00\xdf\x10\xed\x1d\x97\xd5|\x8e\x8b\xd5\xb1*\xfdV\xa2\x92\xe0\"\x9a\xc9V\x97J\xca\x15\x89.\xf6^\x19\xd1b-\xb5/\xd4\x8aE\xf5\xc3\xdd\x18\xaf\xff\x02\xf6]\xd0e2OR\\\xa4\xab\x1ds\x05K\x8c5\xbc\xb6\xc1B5\x1b\x9c(\x8c``\x18\x0b5@\xc3\x8d\xd8aVEY\x8d\x1dU\x15\x0d\xe1zt\x88\x8b1\x86{Q\x8f\xf8\x1f\xe8t*l_\xd3\xdc\xd5h\xe245J\xf7\xc9\xdc\x1d9\x8d\x85I'\xad\x8a\x8c\xb7\\\xb1\xc2\xaeg\xa8\x01=\xa15\x1f\x8cI\xc1Y\xdc,\xdb\xd3*Z\xc8\x17\xb3}\xc0\x96gS\xc3\xfb\x16\xe5S\xcf\x8c6\x97\x979\x95\xe6B\xd6\xa4\xb1\x1f\xc5y\xf6\x86r\x15\xc0\xe3Sdu&T\xb2}^Sm\xdb\xf9\xc5\xa1\xbfejWq\xdb\x18\x9a\xd7*\xebp\x13\xe1\xb62V\x9f\x89e'\xa5)\xceI\x89\xb2\x9c*\xb1Be\x15\xcd\xba\xfc\xf2\xa0\xd5\xc2\x84\xf7\x7f\x9a\xe4tf\x88\xf0\xa4\xa2u`\x8e\x06\x14'S\xfeJ\x89pi\x8a\xec?V\xea\xd4j\xc7\x10\x80z\xacR\xf6\x99\xa2\xba\xfe\x95\x81\xe2%\xa1-\x1f\x1eg\xf1^^\x18\xfe\x8e\x80\xc1\xe6\xa1\x10\xd9\xc6\x0dO\xb6\xe1\xc8\xcbo5\x92\xe2\xad.\x9cv\x1a\xd7\xae\xc2\x91\xfc\xa3\xf2\xf6\x0c\xb7\xe5\xcd\xe1\xfe\xfe\x1b\xf7 \x9c\x91y\xbd\xc9\xa37\xc7\xbdA\xf8\xc4To\x85\x18\x7ft\xa1\xd9Hu\xf3\xe2UfK\xe9\xe2k3\xf76\xb1\x05\xb7\xb8\xeb\xcc\xaeuu\xeb \x0d\x85\xa0\xa2 d\x14\xbc\x17E\xb0C3`\xa8L87\x17\xa1\x9f\xa2\xce\xeb\xe9\x9fu\x99\x0e\xa1?\x10:\x9d/R\xde\xd5\xb0De|\xfb\xee$\x90y\x8a\xf8 j1\xc5\x918`\xe6\x05PE'7\xf1%\x11kM\xf9\xecm\xb7\xbf\xf9|\xc9\xcby\xee\x1a\xac\x04'j?-3k\x05Sv\xf3\xabu\xb8\x85?\x08\xa4\xf1\xa5\xd8*\xf0B,D\xcd\x05N\xd3\xfc^*g\x99\xd8\xee\x03\xd79K\xa8\x1f\xde\x03\xdf\x13|\xe8;\x90VO\xb0JNp\xcd\x88'\xbcr\xc4\x837U\xc1\x15\xdb\x9b\x9f\xbeU\x15\x0f\xfc\x05\xea\x8a<\x0dV\xa6\x83H\x90x0\x87W\xafH\x85\x8cQ\x8d9\x92u\x8a\x81a\x7f\xb2&\x02\x01Tg\xed\xc5\x85W\x1a\x1f\x9e]\x9c\xfe\xd7\xe9\x8f\x93\xab\xb3\x8b~\xdf]~\xbd\xf8\xeb\xf4\xcb\xd7\x9e_\x9d\xfe\xf8\xeb\xebe\xef\xb1\xbe\xfc\xbc\xbc:\xfb\xf3\xf4\xe4G\xbf\xcf\xce\xfe\xfe\xd1\x17\xbf\x93o\xdfN\xbf\x9f\x9e\\}\xed\xf7\xd9\xd9\xff\xfe8\xfd\xc7\xcfp\x8d\x9e\xc6G\xe7\x17g\x7f}\xfdq\xf2\xe3K\xcf\xc1\xbe\x9c\xfd\xb8\xba8\xfb\xfe\xbd/m\x7f\x9d|?\xfd\x130\xd1\xba\xb4\xcf \xf1\n;+\xcd\xc7%\xc5\x03\x87G\"\x16N^\x93\xf6(\xd1\xe3X\x14\xc7\xf6\xd7r\x14\\\xf2^\xadEr\x93d\x98B*\x95Z\xd7\xd0\xb1\xed\xa5\xf2\xd0K\x14\x93 \xdb\x12\x14\xcb$b\xfb\xcai\x95E\xb4s\x94\x1b\x1eM\xad\xbdc\xdbK\xb1\x9b\xe4A|I\x84\x92lI\xca\xfe\xf4\xe8uzl}\xab\xa6&\xa3 ] \xf3\xadi\x8c\xaa\x92\xe6q\x823I\xa8<\xcf\xe3\x0c\xeeK(_\xf7\xc7\x9d7\xed\xea\x80\x0b\\\xd0\x95\xc4\x89\x1bme\xa5\x98\xf5\xed9\xa4\xd6\x1b\xc7\xd6\xb7\x82\xbbb@\xb1\xfd\xcb\x10\x9eN\x934\xc1\x94 |S\x10\xee\x86\xf4\x1cTj\x9dc\xcb;1 \xf7zp*\xc2\x13dG\xe1U\xed7\x15y*\x88\x9fg\xc9\xa4*\xd1\x04g\xb7\xca*\xf6D\xa5\xd6e\xc7\xf6\xd7\x0c!U\x07G\xcd\x839\x0d\x05Y\x14\xa4\xe4\xae\x18\x9b\x82\xba\x06\xa3 \x05\xa4\x90\xee;\x1e\xf2,\xc2!<\xc6o\x85\xf7\xa5\xef\"\xf4\x84\xbe)Q\x99\xdcdX\xb4\x10/\xf5\xe0\x1ex0O\xee\x04\x9d\x1b\xebV\xf9\x97lQ\xed\xf1\xb2\xe8\x82/\xcc\xd3\xf3\x82iW\xab\x0fV:\xeac\xd9\xae\xf8F[\xf6\xef\xaeE\x1b\xd1|\x81R\xb2$\xa9\xdc$\x84\x83\xd7\xd5Q\x88\xf0Q\xdf\xb5A\xf3\xd3I\xc6g~4'\xb7\xee>u\xc9\xd7>o\xc5\xber7\x0d\x17\xce-\xdf\x1fY:\x95\x08\x0c\x9a\xbbO\xaf\xe4U\x19/!\xc7\xb8\xac\xf0N\x93\x92\x8a\xbag\xe6\xd5\xa4+l\x94ar\x8d#\x7f\xef\x8e\x11\xb7U\x01\x1f\x1d.\x07'\x9aI\xaaV\x1a#\x9cs\x0cWt\x96\x17\xc9\xa3\xd0\x88\x05\x89H\xb2\xf4 B]\x1f\x9c\xcfK\xb7\xd9\x82>bp\x00\xe1!E\xd7\\\xee\xae\x83\xdb\xbd\xb1\xf9P/\xd4\xa6\xf1a\xb3/\xea\xe4\xb7\x08\xf2\xca\xa6q\x9arIq\x16\xe3\"6\x0d\x86\xb4`%?\x8f\x9c\xe3\xe2\xd6\x12~V?\xea\xd7\xbe\xe5\xc0&\xac\xac\x16\x8b\xbchT^\xe5\x98\xbf\x93\xe1\x15\x98\xd2\"\x99T\x94\xa09^\xf1K\x10\x0f\xc0 a\xfa:\xbb!1\x9a\x88#t\xa9\xe5\xeb\xeazy\x161O\x84\xe9\xb9\x92X\xf2@\xc4#\x8f}\xae\xb9\xce\xbd.\xf24\xad\x16\xa1i\x0div\xf8\xbc\xfe-\xd5>NS\xbd\xb4\x95\xa4\xd7G\xc2 -\xed\xd1\x07\xcdG\xdd\x90)e\xd9\x00\xf4\xa6T*s\x9a\x904v\x06\xaf#\x15\xed\xc2\xaflH\x86'\xa9\xd8\x9d3U\xabl\xd0\x7f\xf2Se\x81\xa0\x80\xea\x9b\xfbL\xb7\xecR4\xda'\x03\xc6\xb6K>*o\xeb@x]\xea<7N\xdf\x85\xcf\x8b\xa2[\xa9\x8d\x8c\xf5\x07\xc1#\xaf\xf0a\xd7S\x1e\x137\x98h^:\xd3\xc1\xa5\x914\xc7C\xf9\xb6\x1b\xa6\"\x942[S\xe4I:\xd4\xc0\xc4\xff\xf8\xf3\x0d7D\x90W\xb9Y\x10D\xbe\nE\xa1\x13h\x10?\xb07\x11\x15\xc4\x86\xbe\x14\xe2P\xba\xe9X\xb4\x8d0\xc5}i[+q\xd4\"\x00n\x85\x1a\xae\xc4\x00\xc3\xbd\x0b-\xa0Z\x1dp\xbaU\x85,W(\x1bV\xb4\xc1\xca\n\xa09\xdf\xc8\xb2\x0e\x94O\xf0^\xf0\xa0\xf6}\x12LoC\x8b%<;S \xea\x1d\n\x0b\xc6\x12\xe3_#(\x89\x8d\xf2\xa6\x85j\xd3\"\xe8\xd7\x1epV3 \xe7\xd63\x18\x08XQ\x82\xf1\x05c\x04Q\x18D\xea\x08F\xc3!-m\xa2\xdd\xd9\x92\xbe\xd3\x8cMe-5Bn\xbbO\xd0,\x84G@(\x9cu-\x1e\xd0\xec\x02\x97:<\xaea\xdcq\xfb\x88\x9fn\x0d\\\xd7\x9b\x8f\xec\x15z@=cl\x15\xe7%\xe3]\x0b\x0f\xa9Mc\x98=\xdb\xd9\xe3'x\xa8\xa5\x1e\xe0\x1c\xcb\x1f\x8f\x11\xc7\x00\x8bd\x80\x9e\x80\x8bg\xdch\x86\x01\xf1\x0c=\x19 \x8biX#\xaaax\\\xc3\xd0\xc8\x86\xa1\xb1\x0d\x83\xa3\x1b\x06\xc57\x0c\x8ep\x18\x18\xe30<\xcaax\x9c\xc3\xc0H\x87uc\x1d\xfaix\xf18\xe3\x1d\x00\xdf\xda\xbf\x1c\x1a\xf1\xf0d1\x0fO\x1d\xf5\xf0\x14q\x0f[\x13\xf9\xf0,\xb1\x0f\xcf\x14\xfd\xb0U\xf1\x0f/#\x02b\x0bc \x9e7\n\x02\x1e\x07\x01\xbd/\xd3\xbf\x1e1\x16\x02\xee\x0b\x8e\x14\x0f1(\"\x02\x8a\xa5\xbe\x1b\x94\x87%\x84\xb7I\x13)D\xfc\x0f2\xd7\xec&\xe3\xa9[\xde\xd0k\x14Fk\xa4\x8a\xc90\xdaxV\x0d\xcdk\xf6\x99\x17\xf2\xf2\xde\x10\xd6\x11O\xba\xeb;\x0c\xbf$\xc2i\xba\x12=\xfe\xbd\xd5\x93\xe5G#\x90\xbb\x81=\xad\xda\x80\x88\xc4\xe5\x84\xa4\xe2\xf2\x9cYXf\xd2\xa34!Y\xbd\xbf\xe5\x91\x0d^x]\x11\x0dnjq\x15'^\xee\xf4\xa1\xe7\x0b\xdfN\xc7h\xb2\xdaA\xd5\"\xd6\xffO\x939))\x9e/\xca\x1d}\x1c&j1\xfa{\x95\x8a\x84\xa9Tv\xd3\x9b\xe6n2\xc0;f\xe8~Y\x9c\x0c\xc4\xd7\x8c\x88\x90\"\x04\n\x102\x84\x88\x81\xddel \x81\x16kL\xc6\x1b\x91=\xf6 \xd3\xa0\xf2\xee\x9fd\xb4X\xf1\x1ez\x12_\x10M\x93\xd5\x88\x14\xc1\xb4\x00\x92;h\xc79\x81p9\xa4\xf4\x04\x15\x1c\xd2\x81_\xde\x9fI |1S\x98\xe2\x92*\xa4A\x84m\xe9<\xf2\xf0\xb9d\xc4\x89\x94*\x03F\xac\xab\xa0V\xf31\xcak}\xfc\x10\x82\x0b\xe6\x0c\xf3\x95\xa5\xef\xd2\xd2s\x823\xbcH|Tpo\x1ep~\xc4u8\xc1\xd1L\xce\xb8\xf7\x03gQ\xb0\xe6\xb3\x11\x890\xe9\x96xX\"\xf0B\x0bE*\xa8$\xcf\xf6\x04\xbd\x88,\xfd\xdb\x1e\x18\x86'\xcc\xc4}c\xd6\xb5D\x11^\x08/\xd3\x1a\x85\xc3V\xa0\x17\x94\x96\xf3\x1c\xcd\xf1-\x91\xa2\xae\xb2\xe6\x98\xb9\x92\x0b\x9b\xac\xd0=)\x023\x86c\xd7\x0f\xa0F\xf7R\xe5A\xabx)\xc3\x97\xd2\xde\x05\xbe\xc1IVRcw\xe2\x84\xd7\xb2\x90\x0c\xa3|M{\x82\xec\"d'\xbf\xd3\xa3h\x8c\xbd\x96\x15\xe8x;.{\x94\xda\x867`m\x9aF\xf05\x80*\x04\xcau\xd4\xa3W_\xf8B\x0bu\x8e.\x82\xc6\xa93\xeda\x03\xb5=\x9cZ\xdb0\xb5\x01\xf6\xe0S\xd4\xab\x0d\xda\x16\xf1\xac\x8b8\x02\xf4\xde\xb3|\xd5\x8aP\x1f\xca\xcb\x90\xe1\x02\xb2n8O F\xcb\x0bn\x1d\xeaG\x12\x9c\xe1\xd4\xafi\xb8\x00\xe2ec\x05\x04_y\xe8\xe8n\x98\xa7\xcf\xae6\xd01O\xc2\xf6\xb4\xccS\xa3;{\xe6\xf1\xf3\xd7\xee\xdc\x8a\x19}\xda\x90}\x81\x8cK\xceF\xb2\xb6O\x1eN\xb1W\xcfj\x1d\xdf,+\x9d\"\xf4\x17\xaf\x17 \xb3\xc5\xbd\xb0dH\xbd\xa5\x86\xc5IZ\xe6\xe86\xcb\xef3^4\x16}c\x1e\x8c7\xce\xe29\xce|a\x1c\xab3\x06\x94\xe4\xaa\x0b\x0b\x95*\xd0J\x07\x08\xe8<\xcdk\xf4\x96\x17\x9bL\xe8\x0cM\x93\x94\x92\x82\xc4\xe8v\xa9L3%\x05\xa6y\xe1\x8e\xf7\x92\xc1\xe4^v\x81\x08\x94\x80\x94\xa2h\xb8\xac\x8a21\xd5\xde\x9a\x0b\xa8\xaeY\xdc\xb8F\xcay\x80]>\x9d\xcaP\xb6f7K(\xb3\x82B1\xdaI\n0\xcf\x01(\x8a\x08<\x0d\x08u\xae\xc6;Q\x89|:\xd4\x92\x0dB\x93\x13\xeb\xfd\xdd\x0c\x97\xb3\xf1I\xa5\xb27='\"3\x8a\xab(Y\x0b\xe6?\x84\x94\"\x1a\x84\x17`\n\xb0\x888\xb3\\?k\xe4\xdf\xb2\x81y\xb9g\x7f\xf8\x11{t\x84\x19o\x1b\xd0\x9c\xcd(\x9f\xcf\xf3\x8c\x8f\xe7\x0f\xeb\x14\x1d\xcd\x9e\x85\x1dbh\x11a\xa6\xc8\xa8\xaf;i\x0e\xb9\x15V\x8f.\x1a\x8d\xde\n\xb0\xbf\xd7\xb7\xac\x9cO{\x9a5\xde\xebV\xf50\xd5\x9bd\xcb\xfc\xd6#KI\xb6\xa8\xe8\x8b\xcd\xb9\x82\xac\x82^\x13\x0f\xf3 \x9b\xcf\x0f6\xed\xa2\x8a\x90\xaa6\xce\x1bm%\xd9-\x9a\xe0\xe8V\xd6s\x07@\xe2a\x06<{\x82\x0b\x8d\xff\x90J\x17\xd2\x0f\x9fR\xf5d\x01\xd0=\x10\x0f|\xa9X\xd4\xb74\xf4u\x18\xf77P\xee\xc3\xd7\x92\xe2I\x9a\x943\x12\xabx\x84P\xdc7D\x8f\xf7dS_\xca\xed\n?!\x11\xcf\x0d0\xbc\n\x00<\xc6(t^\xe4\x8b\xbc\x84\xf3@\xab\xe5\xcd0\x827\xf1\\(\x9c\xa6\xfcP\x8e\x16U\xc4\x03\x82\xb8\x8f4\xc7E9\x0b\xc4\x9d#TRL\xab\xe0\xd2\xef\xc7\xffS\x9d~\x92L\x85\xdb\xc4\x15\x1fW\x91J\x0c\x15\xd2\xa0 \xd0\x99\x11\xbfx\x83\x0e\x19\xe6\xce\xa6\x98_t-\xaa\xb0z\xee\xc5cx\xfa\xe2\xc5\xd7/g\x17\x7f^\x9f\xfe8\xffyu}yur\xf5\xf3\xb2WJ\x99\x0b\xc6\xf9\xc5\xd9\xf9\xd9\xe5\x1a\x00\xc4\xbb\xe0\xe7:%n]B\xfak\xf2 \xf3 3\x10\x00adB\x01r:x\xc0\x16N\x93x\xaf\xca\xc4~Q\xc8-\x93\x1d\xc0\xc7\x81\xa9\xb4\xf3X\xfd\xb5\x9d\xb3e\xac\x98\x0c\xe1b\x92\xd0\x02\x17\xabZ\x83\xf1\xc2\x80z\xcf'\x96\xc2p\x1c\xc5;;\x86\xe2\x9d\x1d\xbfD,\xe8\x86\x07\xb6(\xc82\xc9\xab2]u\x96\xba\x91\xe7\xe4\xc5U*\x9b\xab\x02G\xb7\xe2PKxNz\x07H\x94M\x82\xee\xca@\xda\xcb\x1c\xa4\xe3g3\xda\xa2YB\x96\xa2/I^\xd1\x90\xda\xc93\x10v\x02\xd2\x8b\xf5\n\x9f\xd9\xd6\xff\xb7\xb4\xf3T\x151\x15\xec\x84UN\x10\x8f\xf8bO\x9f\x02\xb4\x8f\xa1\x9e\xc1\x82^r\x98\x8a.%\x82\xf51F\xbd!\x04\x00\xabS\x94$o\xe4RN\xb2\x1b\xd5\xeafg\x8a\x93\xb4*\x00[H\xc4\xcc\xf0\x82d1h\"\xfb\xccz\x1f\xa3{\xf9\xf3\xfb +\xd5\xfd\xfa\xfc\xe4\x12\x96\xe5\xde\xfc\xec\xf2\x7fN\xcf\x07|\xf6\xed\xe4\xf4{\xf03\xc3&\x0f\xa5s\x985v\x8c\x06\x99\x14\xe7\xc7\x0d\x0b\x8c\xaa\xac$a_\x8d_H\xf4Il\xefNi\x9by\xec]\xc3\x84\x11c51\x0bZ\xf7|\x1a2$\x13\x87\xf6\x90\xec\x9d1\xa4&i/\xca\xb32\x89\xd5\xe9\x03\x1f\xfc6\xe1\xb7\x11\xb1\xe8\x7f5O\xca\x92-Ni\x8f\xf2\x02\xc5$\xc5+\x12\x03s\x0b\x1dH2\xe1k#\xc9\xde9\xf9R\xdf Z1g:\xc3\x15C\xae\x1e\xa8\xd2\x13\x9b\xaa3\xa1\x9fH\x16\xe1EY\xa5\x1a%\xa9\xb7\xf8.\x16r\x8e\x88j\xcf\x03\x90&\x0c\xc3Q\xe0\xf0\xb6\xfc]\xdf\xec\x8b+#\x86\x95d\x99h\xac\xab\xd5u`\x96\xd8O\xc5FF}P\xd7\x03N`\xae\xc3\xcb(v\xd4\xc6R1\xb0\xbe\xcb\x00\xd8\xd9\xd2Z\x17\xc9Z\xfbH\xb5\xc9\xb3\x03\n\xcf\xf6\x89\xbe\x12\xc9\xa7\xdcs\xe5S\x8e)\xc5\xd1L\x8c\xa6SQ\xd9\xda$8rW\xb0n\xae\x18)\xc7|\xef\x1e\xcc\xb8n\xb0Xb$9\x97g\xf2@C\xbe\x96iJv\x92\xf5\xc1\xd5(\x11FMh\x81\xd0\"#\x84\xc8 \xb0!\x02\x1b\x0e%\x02\x9d\xe1mp\xa1\xe8\xf1\x9d\xd1ArB\x83\x11?\xf54ls\xa8O\x1b\xcb\xe11>\x1a\x12\x84%\xb0\x88\xc2m`\xcb\x18q\xa6\xb5\xd8\x00\xd9#\x0e\x0b\x82g\x93\xdb\xc0\x1f\x03U\xc5 y\xea\xc7_m\x84C\xcf\x10\xcad\x8c\x1c\x8aa\x1ac\xa5\xbc\xc04\x06\x00U +\x81\x80\x96\x02\xbdf1\xc8\xe7 \xa8\x0b\xee\x0e^\xb3\x18\x06\xf1j\x0c\xeb\x82\xd0k\x16\x03\x9c\xf2\x91\x85d\x18\xe5k\x06\x83\xa2>Y\x0cR/\x8f\x99\xc3`\x019^\x06\x83\xf4\xaf\x9f2\x7f\xa1I\xcf\x08\x9e\x05Pu@\xf9\x8d:8\x06v'\xfeu\xd0/s\xa15\xd9a\x93\xb4-\x06MI\x10^\xef\xfb@\x1c\xdc\x1d:\xb9|\xff\xe10\xbe;\xfc\x15/\xe71~\xac\xee\x1f#\x1c\xc7\xb3\xd9\xa7\x9by\xf5~\x1e=\x92\xf7\x1e\x06\xb8w\xdf\xe32\xc0\xdc5\x8b\xac\xb1\xc6Y \xcd\xd14\xc9\xb8B\x0cH&\xb7\x1b\x99\xf4e\xc5\xfc\xca$c\xcb\x072;I\x9c\xa0\xfa\xc8\xf4u\x1c\x80\xd1\xd9\x18JL\xf54\xc57\x1c_\xdd\xa0 W?C4\xd0\xf2R\xda.\x19\xceT\x12#\x8d^m,\xcbE\x9e\x95^\xb2\xa5!|\x1a\xc2M\xb3\x1c\"\xdd++j\x8f\xd7\x93h\xf2 \xf0\xf0\x1e\x17\x8cEtk07\xd1\xf2\x87\x1c{\xe7\x85+\x07\xc1\x03\x92BD\xd6\xccv\xb8#hD\"[\x83Af\xd6\x99\x83\xacadh\x95W\x85\xf4y\x9a$\xfa\xb1\x92E,\xca\x0b\xc9\x1eT\x87\x00\x8a\x7f3\xb2e\xd88A\xff\xacH\xb1\xdaS\xdf\xa0\x8b\xf3/-p\"\xdf\xb4F@\x05\xfc\x1a?k\xe0s\x92\xa1*#\x0f\x0b\x121\xc7M\xb4~\xb2\xcdT\x19\xcd\xc8\x1c7'\xc6\xe9\xc7\xb9}8>@wz=J9\xcac\x8b\x8a\x13\x1f\xb8J\x98\xab\xbds\x92\xd1\xf7\x87\x1d\x069\xca\x7f{p\x88 \xc5I\xba%\xa5:\xd8\xe7\xd7U\xe1\xec:\x134p<\xc3u\xf0\xd7\xd6\x93\x89\x05.\xf0\x9cPR\x188\xef\x8a\xa4^\xed\xd6\xb8$\xb0\xb5\"\xfa:\xdf\xc3\\n\x9f'8\xc4\xa5N\xb2c\xb4\xc0\xd4\x0c\xd6d\xaa!)H|\x8chQ\x99\xa6\xc1\xcab\xc5-\xc3\xaf\x002l\xb0'b\xf8\x1c\xed\xd5\xeb\xf0?F\xa3\xb2\xde\x12\x00\x89\xec\xbf\x87\x18\xbas\xd0\x92\xd1\x80f\x91\x92\xb1w k\xec\x0dl;\x026Ww\xccZX'k\x8a\xd3\x12<[\x86\xb3\x0f\x9c\xae\xc1\xdb\x83q7\x05#\xf2\xa0\xe1\x07\x03\xb90\xd4w6\xbc\xe4\x06<\xb8\xf38\x84\xf0\xb6c\xd5\xa6\\z\xb1=i\xef\xe3>\x1b\x8e\xf2\x16\xd0\xdd\xf2\x85\x81t\x0f\xf4\xa0k_\xb9M\xf9\xc6\xe9l\xb9\xc3@:\x079\xd1\x86\xbb\xdc\x00\xe6p\x9d\xd7\xa7\x92\xe2\x9b\x86G\xf2O m\x8fiL\x92\xe1,\"{sBq\x8c)\xde[\x1e\xec\xf1\xe5\xb7\xf7/\xa5m\xff\xbd\xd7\xd8j\xde\x10\xedG\x97\xd5|\x8e\x8b\xd5\xb1\xee\xa2Q\x12\\D3\xd9rS~\xa5hq\xf1\xf1\xaa\xbeHe\x1aq\x87\xa9z\xa5\xcawTa\xb2\x80\xf2\xfc\xadf\xcc\xda\x9a\x93!\xa4\xe1q\x1e\xecv\xec\xadPP\x86\xcd\xd5\x1f\xc0\x1d1\x9b\x07\xd6\x18\x16\xe2|\xa1\xcbd\x9e\xa4\xb8HW;5\x0e\xb4Q\x95\xdc\xea*\xf0\xf2D-S\xdf\xa2d\x0c\xd3\xde\xe0e\xc07[\xe5\xd5\x9b\x82\xd4\xe3\xb3mM\xc1\xcf\xebQ\x92\x99\xfd]\xfe\x03\x9dN\x85{\x80\xdb&\xb6\x96\x1b\xd9\x02\xd1\xbc\xc3\xe0\x0dg\x8c\x1aw\x05\xa1U\x91\xf1\xde16\xd0\xa6\xb3Q\xc3\xc5iZ\xdfQ\xc84)1\x93}\xc1\xd7\x13\xf4\x96M\x86\x1cm\xaf~\xff\xbbu\xb4\xf6\xfc\xa8q\x9d\xe3a\xcdx\xed\xd2\xaan\x7f\x8aB\x9c\xc5{\xb5@\\'M\xfe\xb5\x16\x97m@\xfd\x93\x134\xc1\xb1yS\xa2~\x84\x92\xe9\xb1\x89\xd8USF\xb9\xe2\xe4\x82\x89\xb3\x18e\xb9\x95\xfb\xefZ\x00d+\x1fz\x9f3q\xe6\xed|\xf2iS\x97\x98$\xf1;, \x96\xff\xcb\\0+\x14\xe7\xd9\x1b*9>\x15Z\x9b/$\xc6<\xb9\x070\x86?\xe9pu\x07M*\x8a\xb2\x9cZ8\x8b\x1b]\x02\xba`D\xe7\xc2Z\x94\x19Yz\xb6\xb0\xdc\xb0\xf0_\xc69)\x19\x9esL\xa3f\x97,\xe3{sF\xfe\xb1R\xa7\x1f;\x86o%Z,IWB\xf4C\xa2\xba\xdc\x93\x81\xe1%\xa1-\x07NR\xa4_* \x8c]\x85\xc8\xaeu\x1f\x836\x05M\x9b\x06])\xec4\xd6\xb6D\x9dX(\xc3oX\xb07\x87\xfb\xfbo\xdcg9F\xa6\xf1&\x0fq\x1c\xc7\xce\xe1\xd37\xed\x083\xfe\xe82\xa9\x91j;\x85fy\x1a\x97H\xdd\x1e\x8a\xc5\xff6\xb1\xc5r\xb8o4\xd7\xbf^\xf4\x9d>z\xe2\x98B\xe76\xa1\xcbK\x04;}\x01F\x86\x84SQ\x11\xfa)\xca\x9a\x9e\xfeYW\xa5\x10\xcb\x1d\xa1\xd3\xf9\"\xe5\xdd\xf7JT\xc6\xb7\xefN\x02\x89\x96\xd2fMq$\x8e*y\xbdO\xa1\xa6\xc4\x97D\xac5\xe5\xbd\xb5\x1d\xc0\xe6\xf3%/\xe7\xb9k\xb0\x12\x9c\x97\xfc\xb4\xcc\xac5L\xd9M'\xd6\xd1\x05\xfe\x98\x87\xc6\x97\xc2\x95\xe4uG\x88\x9a\x0b\x9c\xa6\xf9\xbd4c2\x8f\xdb\x07.r_\xc4\xf0^\xed\x9eX;\xdf\xc9\xa6z\x82Ea\x82kF<\xe1\x95#\x1e\xbc\xa9\x82\xa5\xd8\xde\xa4\xf3\xadJ\xf0\xf7\xd7c+\xf24X\x88\x0d\"A\xe2\xc1\x1c^\xbd\"\x152F\xf1\xe1H\x96\xe5\x05F\xb9\xc9\x12\x00\x04P\x8c\xb4\x17\xf3`EU\x1a-\xda\xfb\xd4\x19iv\xe8\xbf8\xfd\xaf\xd3\x1f'Wg\x17\xfd\xbe\xbb\xfcz\xf1\xd7\xe9\x97\xaf=\xbf:\xfd\xf1\xd7\xd7\xcb\xdec}\xf9yyu\xf6\xe7\xe9\xc9\x8f~\x9f\x9d\xfd\xfd\xa3/~'\xdf\xbe\x9d~?=\xb9\xfa\xda\xef\xb3\xb3\xff\xfdq\xfa\x8f\x9f\xe1\x924\x8d\x8f\xce/\xce\xfe\xfa\xfa\xe3\xe4\xc7\x97\x9e\x83}9\xfbquq\xf6\xfd{_\xda\xfe:\xf9~\xfa'`\xa2u%\x9bA\xe2\x15\xf6U\x9a\x8fK\x8a\x07\x0e\x8fD\x94\x97\xbco\xebQ\x91\xc6\xb1(\x8e\xed\xaf\xe5(\xb8\xe4=E\x8b\xe4&\xc90\x85\x14\xe6\xb4\xae\xa1c\xdbK\xe5\xac\x97(&\x13\x8aJR,\x93(\xc9n\xd0\xb4\xca\"n\xc6z\x8e\xa6\xd6\xde\xb1\xed\xa5\xd8-\xf1@\xb3$BI\xb6$e\x7fz\xf4:=\xb6\xbeUS\x93\xd1\x84\xae\x84\xf9\xd64FUI\xf38\xc1\x99$T\x9e\xf7p\x06\xf7%\x94\xaf\xfb\xe3\xce\x9bv1\xbc\x05.\xe8J\xe2\xc4\x8d\xb6\xb2R\xcc\xfa\xf6\x1cR\xeb\x8dc\xeb[\xc1]1\xa0\xd8(g\x08O\xa7I\x9a`J\x10\xbe)\x08wCz\x0e*\xb5\xce\xb1\xe5\x9d\x18\x90{=8\x15\x17\xdd\xb2\xf3\xed\xaa\xf6\x9b\x8a<\x15\xc4\xcf\xb3dR\x95h\x82\xb3[e\x15{\xa2R\xeb\xb2c\xfbk\x86\x90*\xfb\xa2\xe6\xc1\x9c\x86\x82,\nRrW\x8cMA]rP\x1el5\xcb^\xe3h\xc0\xa2\xae\xf5\xe6\xb1\xfduS>\xefgI43\xf8\xa4}H\xb5\xeauE\xde\x84 \x92\xe54P\x81\xbb\x8b\x90V\xc8\xc7\xd6\xb76tx\xa1K.\xc2\xa2\x08\x91X\x1f\x90zIH\xf7\xc7\x0ey\x16\xe1h\x10\xe3\xb7\xc2\xfb\xd2\xa7\xd2zB\xdf\x94\xa8Ln2,Z]\x97zp\x0f<\x98'w\x82\xce\x8du\xab\xfcK\xb6\xa8\xf6x\x15p\xc1\x17\xe6\xe9y\xc1\xb4\x8b\xb3\x07\x0b\xfb\xf4\xb1lW|\x9f-\xfbL\xd7\xa2\x8dh\xbe@)Y\x92Tn\x12\xc2\xb1\xdaj\xaf.|\xd4wm\xd0\xfc$\x9b\xf1\x99\x076\xcb\xad\xbbO]\xd6\xdd\xf1W\xee\xe6\xd6\xc2\xb9\xe5\xfb#Kc\x0e\x81As\xf7\xe9\x95\xbc*\x13G\x8at\xa6\xf1N\x13~\x06\x9b7\xba]:\x93l\x18&\xd78\xf2\xb7\xaa\x18q[\x15\xf0\xd1\xe1rp\xa2\x99\xa4J\x831\xc29\xc7pEgy\x91<\n\x8dX\x90\x88\xfc\x7f\xf6\xfe\xae)n]Y\x1c\x87\xef\xf7\xa7\xd0]\xb2~\x05\x99@BVB\xd5\xb9`g%\xe7Pg\x1d`\x03Y\xeb\x92\xd2\xd8\x1a\xc6\xc1cOl\x0dd\xb2\x9f\xfd\xdd\x9f\xd2\xab%[/m\x8f\x07\x86\xfa\xe3\xab\xc4\x8c[\xdd-\xa9\xbb\xd5\xea\x97\xec>\xb4\x10\x9ar\xd8|^\xba\xbd\x05\xb4\x8b\xc1\x03\x84\xc7\xa6\xdc\xf0uw\x13=\xee\x8d\xcd\x87f\xa3\xda\xca\x87\xcd\xbe(\x0b\xdf\"(\xb86\x0do\xca\x15\xc5E\x8a\xab\xd4T\x18R\x83\x89f\xf8\x0b\\\xdd9\xe2\x98\x9aG\xfd:\xb4\x1d\xd8\x84\xd5\xab\xe5\xb2\xac\xacB\xa3\x1c\xf372\xbe\x00SZe\xd3\x15%h\x81\xd7\xdc!\x1f\x008%L^\x17\xb7$E\xd35\xe7\x82\x94\xf2M1\xb9\xb2H\x98%\xc2\xe4\\M\x1ci\x0f\xe2\x91n\x9f\x1b.so\xaa2\xcfW\xcb\xd8\xb4\xc6$;|^\xff\x96b\x1f\xe7\xb9\xde\xdaj\xa57>\xe1\x8c\xd6z\x8b\x07\x80\xa9[9%,-@\xafj%2g\x19\xc9So\x849R\xe1\x1e8\xafKD\n<\xcd\xc5\xe9\x9c\x89Z\xa5\x83\xfe\x8b;\x95\x05\x82\x02jh\xee\x1b\xaf\xb6\xa2\xd1=\x190\xb6]\xf1Qy\x17\x03\xc2\xcb0\x97%5j1s\x9b\x17%e\x9e\x13n\xe24\x97\x0f>\x1c\x19\x01|\x15\x95\x05\xd1W\x16\x01D\x95\xab4\x10\xf3\n\xa3\xc4\x02\xd4\xf8\xe1b%\xe5\xfc\xbe\x95F\xc98\x7f\x10uy\xc5\x9d]\x8f\xe9&\xb6\x98h\xde<\xd1\xc1\x95\x804\xc7c\xe9\xa5[\xa6\"\x96!\xdaP\x14\xc8\xb1\xd3\xc0\xc4?\xc2\xe9u[\"((\xdc\x1c\x08\xa2PA\x9e\x98\x07\x1a\xc4\x8fp\xde%\x88\x0d})\x8cfW\x8eE\xdb\x08S\xdc\x97\xb6\x8d\xf2$\x1d\x0b\xc0/P\xe3\x85\x07`\xb8w\xa1ED\xab\x07N\xb7\x88\x8e\xe3\ne\xcb\x826ZH\x004\xe7[\xd9\xd6\x91j\x01\xc1\x0b\x1e\xd4\xbeO\x82\xc9mhm\x80'g\nD\xbcCa\xc1Xb\xfco\x04!\xb1U\xde\xb4P\xb55\x82~\x1d\x00\xe7T\x93pn=\x81\x82\x80\xe5\xe0\x8f\xbf0FX\n\x83H\x1dAixVK\x9bhu*\xeaR\x19\xf2fl+\xfdEb\xe3cyT-\xc4G@(\x9e\x1a-\x1e\xd0\xec\x02\xb7:<\xaea\xdcq\xfb,?\xdd \xb7)\xaf\xee)H\x03j\x91\xe2*\xb0.\x19\xef\xdbxH\x1d\x1a\xe3\xec\xd9\xcd\x966Q\xa7\x96z\x80s,\x7fa\x12T\xde\xfd\x93\x82Vk\xde2N\xe2\x0b\xa2i\xba\x1e\x91\"\x98\x14@\xa8\xd3\xba\xdf\xf4\x13\x08\x93C\xae\x9e\xa8\x80C:\xf0+\xf83\xb9\x02\x9f\xcd\x14\xe6\xb8\xa6\ni\x10a;:\x8f<|.\x1bq\"\xa5\xc8\x80\x11\xeb\xab\xccd?F\x9d\xa6\x0f\xefcp\xc1\x9ca\xb6\xb2\xb4]ZrNp\x86\xd7DO*n\xcd\x03\xfcG\\\x86\x13\x9c\xcc\xe5\x8c\x07?\xf0V\x97\xb2\x9f\xad\xac\x08\x93n\x89\x87#\x02/\xb6Q\xa4\x80\xca\xcab\"\xe8E\xe4>|\xec\x81ax\xc2T\xdcW\xa6]k\x94\xe0\xa5\xb02\x9dQ8l\x07\x06A\xe9u^\xa2\x05\xbe#r\xa9\xab\xac9\xa6\xae\xe4\xc6&k\xf4@\xaa\xc8\x8c\xe1\xd4\xf7\x03\xa8\xd2\x95\xe5\xd8\x9ax)\xc3\x96\xd2\xd6\x05\xbe\xc5YQS\xe3t\xe2\x85g\xbb\xd2\xd9W\xb8HH \x9a\xec\xdap\xa3\xf2\x1c\xf59\xbe'\xc6H\x92\xc3\xb9\xfev\xd5+3\xcd\x07\xe3\xe2\xf2\xfc\xe2\xfcj\x03\x00\xe2]\xf4s\x9dY\xb7)!\xfd%y\x94y\x90\x19\x88\x800\x12\xaa\x00\xa9!<\xee\x0b\xe7Y:Y\x15\xe2\xbc(\xd6-[;\x80\x8f#S\xe9\xe6\xb1\xfak;\xf5\xcb\xd81\x05\xc2\xd54\xa3\x15\xae\xd6\x8d\x04\xe3\xf5\x05\xf5\x99Ol\x85\xe18\x8awn\x0c\xc5;7~\x99\xd8\xd0\x96\x05\xb6\xac\xc8}V\xae\xea|\xdd\xd9\xeaF\xbaT\x10W)l\xae+\x9c\xdc \xdf\x98\xb0\x9c\xf4 \x90(\x9d\x04=\x95\x81\xa4\x979H\xc7\xcef\xb4%\xf3\x8c\xdc\x8b\xee&\xe5\x8a\xc6\xc4NY\x80\xb0\x13\x90\x9e\xadU\xf8\xc4\xba\xfe\x7f\xa4\x9e\xa7\xaa\x16\xaa`'\xac\x00\x83x\xc4\x17\x13\xed\x05h\xbb\xa1\x9e@\x83^q\x98\x8a.\xb5\x04\x1b7Fs \x04\x00k2\x9d$o\xe4V\xce\x8a[\xd50go\x86\xb3|U\x01\x8e\x90\x88\xa9\xe1%)R\xd0D\xf6\x99\xf5>J\xf7\xea\xdb\x9f\x83\xb4T\xf7\xeb\x8b\x93+X\xb2\xbc\xfd\xd9\xd5\xff\x9e^\x0c\xf8\xec\xeb\xc9\xe9\x9f\xd1\xcf\x0c\x9d<\x94\xcea\xda\xd83\x1adR\xbc\x1f[\x1a\x18\xad\x8a\x9a\xc4m5~\xaf\xd1'?\xbe;\xa5m\xe6\xb1w\x96\n#\xc6nb\x1a\xb4\xe9\x1c5dH\xb6\x1c\xdaC\xb2w\xc6\x90\x9a\xa4IR\x16u\x96*\xef\x03\x1f\xfc.\xe3\xf7\x17\xa9\xe8\xa2\xb5\xc8\xea\x9amN\xa9\x8f\xca\n\xa5$\xc7k\x92\x02S\x14=H\xb2\xc5\xd7F\x92\xbd\xf3\xf2\xa5\xb9Ztb\xced\x86/\x14]=P\xa1'\x0eU\xe7B>\x91\"\xc1\xcbz\x95k\x94\xa4\xdc\xe2\xa7X\x88\x1f\x115\x96\x07 \xdb\x18\x86\xa3\xc0\xe1u\xfd\x1bj\x1a\xd4\xafr\xca\x85\xb4dYqk\x89\xeb\xc8,\xb1\x9f\x8a\x83\x8c\xfa\xa0)+\x9c\xc1L\x87\xe7Q3\xa9\x8d\xa5b`s\x97\x01\xd0\xb3\xb5\xb3\xbc\x92\xb3\x84\x92\xbc<\xf2\x80\x8b\xcf\xf6\x89\xbe\x12)g\xdcr\xe5S\x8e)\xc5\xc9\\\x8c\xa63Z\xd9\xde$8\xf1\x17\xc2\xb6w\x8c\\\xc7\xfc\xec\x1eM\xdc\xb6X,1\x92\x9c+\x0b\xe9\xd0\x90\xafe\xb6\x93\x9bd\xed\xb8\x1a%P\xc9\x86\x16\x89P2\"\x91\xbc\x00\xad%\xb0\xe5\x88$\x90\x0fo\x8b\x1bE\x8f\xef\x0d2\x92\x13\x1a\x0d\x1cj\xa6a\x97#\x86\xdaX\x0e\x0f\x15\xd2\x90 ,\x81\x05&\xee\x02[\xc6\x08Wm\x96\x0d\x90=\xc2Y\x10\xf5M\xee\x02\x7f\x0cT\x15\x83\xa4\xd7\x8f\xbf\xda\n\x87\x9e \"\xca\x189\x16\n5\xc6Ny\x86\xd9\x10\x00\xaa@Z\x02\x015\x05zI\x86\x90\xcf#P\x17=\x1d\xbc$C\x0c\xe2\xd5\x18\xda\x05\xa1\x97d\x088\xe5#/\x92a\x94o\x18S\x8a\xfa$CH\xb9\xfd\xa2\xf5\xc3\xfb\xc3\xf4\xc7\xe1\xf7\xf4~\x91\xe2_\xab\x87_ N\xd3\xf9\xfc\xe3\xedb\xf5n\x91\xfc\"\xef\\\x90\xc3\xde\xde\x91\xa8\xd7~\xdc\x04\x17\x88d\xbc\x02\xf9\x94 \xcc\xb7^\x90\xe8O\x07\x9f~\xff8\xc5\x87\xfbG\xb3wG\xfb\xef\x8f>\xe1\xfd\x8f\x1f\xf0\xef\xfb3\x92\xe0\x83\xe9\xdb\xa3\x83C\xf2V\x94\xa0Wr-\xf1\xf7\xc6\xb3\xb9\x1c\xc2\xf5\xe0\xc7//\x97\x7f\xfc\xcc\xef\x1eH\xeedf$\x81r,v6\x15\xf6z3\xf4\xe8\xe3\xdbw\xb3\x8f\xd3d\xff\xc3\xdb\x0f\xbf\xef\xbf'\xd3\xa3\xfdOG\x07\xb3\xfd\xc3\x83\xc3\x83\x0f\xbf\x1f$\x87$i1T\x0c\xb6\x11K\x05\x88\x83\x1f?\xbdL\xfdT\xff\xc8\x93\xf9\xbb\xfa\xe7C\xf1\xfe\xfd\xf7\xa3\xb7\xdf\x7f\xdd\xd2\x8fU=\xbf\xff\xb1\x9eU\xdf\x93\xcaG\x0eo\xa7\xcc\x98P\x16\xf9\xbaa\x01\xcax\xe2\x9eq}\x80\xf3\xba\xf4\xe1'\xbb]8\xc5\xb5\xff\xac\x1c\x9dL\x19ra\x9e^E\xf6\x96\xe5\x93\xa3%\xca\xcb\xf2\x8eIg\x07\x14\x99\xec#\x1c\x92!\xf9)\x10\n\x1e\xc5\xc7\xa2\xbe5\x98\x9fx\xf9C\x8e\xbd\xf72\x93\x83\xe0\xc1>1\"\x15\xd7\xbdV\x03\x1a\x91\xc8\xd6`\x90\x19\xf6\xe6\xf7j\x18\x05Z\x97\xabJ\x9a&6\x89a\xacd:\xd5\xa5\xe4\x0ej\xa2\xeb\xc4\xff\x19\xd52\"\x9b\xa0\x7f\xadH\xb5\x9e\xa8\xe2\xba\x97\x17\x9f[\xc0D&g3\xbc\n\xa55~fasR\xa0UA~.I\xc2\xac+\xd1\x9b\xc95Ou2'\x0blO\x8b\xd7\xd8\xf2\x1bZ|\x80\xee\xe4\x06\x04hR\xa6\x0ei'>\xf0\xd5\x18W\xa7\xd2\xac\xa0\xef\x0e;\x0c\xf2\xd4\xe7\x0e\xe0\x90\x12\x8a\xb3|G\x8a`\xb0\xcfoV\x95\xb7-LT\x19\xf1\xdc\xd1\xc1_;\xcf\xfcK\\\xe1\x05\xa1\xa42p\xde\x17\nS\xab^\xdf\nl\xed\x87\xbe\x06\xe20\xb30d\xad\x0c1\xfb\xb2\xe2\x18-15\xc3 \x99`\xc8*\x92\x1e#Z\xadL\x05\xe1d\xb1\xe2\x96q:\x002l\xf0yb\xdcS\x04\xe3\xc0\x0f&\x9c\x9c,\x98\xe1\xbc\x06\xf3\xa01j\x81,\xe8o\x05\x0f\xb5}5;-h\x8e54\xb6\x9d\xbb\x81u\xeb\xb2iG\x9c\xad\xd6\xfd\x8b5Op\x83wK\xc8Y\x96,p5\x0d\xb3~\x1d\xc7\xcd!F\xdf\x10\xda\xdb\x06Q\x87xi\x85\xf6\xa5\xbf\x8f\x01\x8c\x1c\x83<=\x07Z\xd6,\x90\x01\x03m\xe0\xc6\xda\xb5\xa0=\x06\x9d-\x83\x16H\xe7 3\xd80x-`\x1e\xe3ws*)\xbe\xb5\xac\x8a\x7fIh\x13&\xd7H\x81\x8b\x84L\x16\x84\xe2\x14S<\xb9?\x98\xf0}8\xf9\xb7\x92\x89\xff\x99\xc8\x959\xf9w\xa3&\xfe#\x00\xde\x12m\x18\xd7\xab\xc5\x02W\xebcU\xf5\xadF5\xc1U2\x97].\xd5\xeaV\xa4\xf9\xd8zm\x04\x8a\xb5t\x91\x10'\x0e}\x04\xb7`\x82\xa6\x0b\xd8lAW\xd9\"\xcbq\x95\xaf\xf7\xcc\x9d+1\xd6\xf0\xdaZ\x145l\xf0\xa20\x82\xd6c,\xd4\x00\x0d\xdbf\x8f\xa9:\xa5\xca\xf6TA4\x84\x9b\xd1!v\xcf\x186O3\xe2\xffC\xa73\xa1\x90m\x1d\xdc\xa0\x89\xf3\xdc\xa8\xda'\xd3v\xe44V&\x9dtU\x15\xbc\xdb\x8a\x13v3C\x16\xf4\x8c6|0&\x05\x17\xa9]\xb1\xa7U\xaf\x90ob\xf7\x80\xad\xf5\xc0%\x82X\xb2tN\xf4j6\xa8\xe5\xc7\xc5\xae\xc9\xca\xd1b\xa6\x08\xc3\xcd`\x87\xc4\xac\x85Q\x83D\x005\xc9\x8b\x96\xb9\xdb\xc0\xa6\xad\x92pZ\xef`*?\xd2\xf0x\x87\x9c)\xf1\x0e\xa5GQ\xf6\x8b\x1a\xc5\xc3\x85=\x93g\xd8\xaa\xb4\xa0'\xc5f\x94\xc5\xa0f\xf46\xa7b\x14\xb9(\xd1\xc0N\xd0\x14\xa7\xe6\x05\x8b\xfa\x11\xcaf\xc7&\xc5\xd7\x9eI\xe7H\x98\xd4?dt^\xae\xa8=\xff\xae\xcdj1\xf4\xc4\xcbM\x0d\xafX\xa3\x07\xbc\xe6\xaaF\x15\xad\xd3&\x15zm\xed`\x93\xeb\xb8\xc3w\x93\xdf\xff0\xbe1p\xfb\xcdB\xee\xfa\xa1dS\xc3[\x16\x95\xb3\xc0\x8c\xda\xdb\xcb\x9cJs#k\xd2\xd8\x8f\xd2\xb2xE\xb9\x08\xe0\xa1)\xb20\x13\xaa\x99\xc1l\x8bm7\xbf8\xf4\xd7L\xec*n\x1bC\xf32e\x1dn\"\xdc\x16\xc6\xea3\xb1\xed\xe4jJKR\xa3\xa2\xa4jY\xa1z\x95\xcc\xbb\xfc\n\xa0\xd5\xc2\x84\xb7~\x9a\x96tn,\xe1\xe9\x8a619\x1aP\x9a\xcd\xf8+\xb5\x84ks\xc9\xfes\xad\x1cV{\xc6\x02h\xc6\xaae\x8b)\xaaK_\x19(^\x11\xda\xb2\xddq\x91N\xca\xca\xb0s\x04\x0c6\x0f\x95H4\xb6,X\xcb\x80\x97\xdfj$\xc5[]3\xed4mL\x85w\xf2\x8f\xca\xca3\xcc\x95W\x87o\xdf\xbe\xf2;\xdf\x8c\xa4\xebmz\xdd\x021\xfe\xe8\x1a\xb3\x89j\xe4\xc5\x0b\xcc\xd6\xd2\xb4\xd7j\xeeu\xe6\x8ak\xf1\x97\x98\xdd\xe8\xd6\xd6C\x1a\x8aAEQ\xc8(z%\x8a`\xfe2`\x94L<-\x17\xa1o\xa2\xc4\xeb\xe9\x1fM\x85\x0e!?\x10:],s\xde\xd0\xb0Fuz\xf7\xe6$\x92t\x8a\xb8\xf3\xb4\x9a\xe1D\xf8\x96y\xedS\xd1\xc4M|I\xc4^S\xb6z\xdb\xdc\xb7\x9f\xcfe\xbd(}\x83\xd5\xe0\x1c\xed\xc7ef#`\xeanj\xb5\x8e\xb4\x08\xc7\x7fX_\x8a\xa3\x02\xaf\xc1B\xd4\\\xe0<\xbf<\xfd\xef\xd3\xb3\x93\xeb\xf3\xcb~\xdf]}\xb9\xfc\xeb\xf4\xf3\x97\x9e_\x9d\x9e\xfd\xf5\xe5\xaa\xf7X\x9f\xbf]]\x9f\xffqzr\xd6\xef\xb3\xf3\xbf\xcf\xfa\xe2w\xf2\xf5\xeb\xe9\x9f\xa7'\xd7_\xfa}v\xfe\x7fg\xa7\xff\xfc\x16/\xcfc}tqy\xfe\xd7\x97\xb3\x93\xb3\xcf=\x07\xfb|~v}y\xfe\xe7\x9f}i\xfb\xeb\xe4\xcf\xd3?\x00\x13\xad\xab\xfa\x0cZ^qc\xc5~|\xabx\xe0\xf0H\x84\xc1\xc9\x1b\xd2\x1e\xd5y<\x9b\xe2\xd8\xfdZ\x8e\x82k\xde\xa6\xb5\xcan\xb3\x02SH\x91R\xe7\x1e:v\xbdT\x16z\x8dR2eG\x82\xea>K\xd8\xb9r\xb6*\x12\xdaq\xe1\xc6GS{\xef\xd8\xf5R\x9c&y\xfc^\x96\xa0\xac\xb8'u\x7fz\xf4>=v\xbeUSS\xd0\x8c\xae\x85\xfa\xd64&\xab\x9a\x96i\x86\x0bI\xa8\xf4\xe7q\x06\xf7%\x94\xef\xfb\xe3\xce\x9bva\xc0%\xae\xe8Z\xe2\xc4\x95\xb6\xd2RL\xfb\xf6\x1cR\xcb\x8dc\xe7[\xc1]1\xa08\xfe\x15\x08\xcffY\x9eaJ\x10\xbe\xad\x087Cz\x0e*\xa5\xce\xb1\xe3\x9d\x18\x90[=8\x17\x91 \xb2\x99\xf0\xba\xb1\x9b\xaa2\x17\xc4/\x8al\xba\xaa\xd1\x14\x17wJ+\xf6D\xa5\x91e\xc7\xee\xd7\x0c!U\x02G\xcd\x839\x0d\x15YV\xa4\xe6\xa6\x18\x9b\x82\xa6\xfc\xa2\xf4\xa8\xda%\xc0q2`S7r\xf3\xd8\xfd\xda^\x9f\x0f\xf3,\x99\x1b|\xd26\xa4\xda\xf5\xba:qF\x10)J\x1a\xa9F\xdeEH\x0b\xe4c\xe7[\x17:\xbc\xe8'_\xc2\xa2 \x93\xd8\x1f\x90\xdaQH\xb7\x1c\x8fY\x16\xf1\xe8\x1d\xe3\xb7\xc2\xfa\xd2w\x10zB_\xd5\xa8\xcen\x0b,\xba\x87\xd7z\xf0\x00<\x98%w\x82.\x8c}\xab\xecK\xb6\xa9&\xbc\"\xba\xe0\x0b\xb3\xf4\x82`\xda\x85\xea\xa3E\x8e\xfah\xb6k~\xd0\x96\xad\xbb\x9b\xa5\x8dh\xb9D9\xb9'\xb9<$\xc4\xe3\xd6\x95+D\xd8\xa8o\xda\xa0\xb9w\x92\xf1\x99\xbb\xe6\xe4\xd1=$.\xf9\xde\xe7]\xd8\xd7\xfe~\xe1\xc2\xb8\xe5\xe7#G\x93\x12\x81\x81}\xfa\x0c\xae\xbcU\xc1\xab\xc71.+\xbc\xf3\xac\xa6\xa2\xe4\x99y%\xe9\x8b\x18e\x98\xdc\xe0$\xdc\xb6c\xc4cU\xc4F\x87\xaf\x83\x13\xcd$U&\x8d\x11\xce9\x86Wt^V\xd9/!\x11+\x92\x90\xec>\xb4\x10\x9a\xd2\xe0|^\xba}\x16\xb4\x8b\xc1\x03\x84G\x13\xdd\xf0uw\x13=\xee\x8d\xcd\x87f\xa3\xda\xca\x87\xcd\xbe(\x91\xdf\"(\xb86\x0do\xca\x15\xc5E\x8a\xab\xd4T\x18R\x83\xd5\xdc\x1f\xb9\xc0\xd5\x9d#\xf2\xacy\xd4\xafC\xdb\x81MX\xbdZ.\xcb\xca*\xba\xca1\x7f#c>0\xa5U6]Q\x82\x16x\xcd/A\x02\x00\xa7\x84\xc9\xeb\xe2\x96\xa4h*\\\xe8R\xca7\x85\xf5\xca\"a\x96\x08\x93s5q\xa4\x80\x88G\xba}n\xb8\xcc\xbd\xa9\xca<_-c\xd3\x1a\x93\xec\xf0y\xfd[\x8a}\x9c\xe7zk\xab\x95\xde\xb8\x843Z\xbb\xa3\x0e\xecG\xdd\x90)ai\x01zU+\x919\xcbH\x9ez\xe3\xd6\x91\n\xc1\xe1W6\xa4\xc0\xd3\\\x9c\xce\x99\xa8U:\xe8\xbf\xb8WY (\xa0\x86\xe6\xbe\xd0\xdd\xba\x14\x8d\xee\xc9\x80\xb1\xed\x8a\x8f\xca;:\x10^\x92\xba,\x0d\xef\xbb\xb0yQR\xe69\xe1&\x0eC[\xea\x00\x0f@F\x00_EeA\xf4\x0dI\x00Q\xe5*\x0d\xc4(\xc3(\xb1\x005~\xb8Xy=\xbfo\xa5Q2\xce\x1fD]^qg\xd7c\xba\x89-&\x9a\x97\xcetpU$\xcd\xf1X\xaa\xed\x96\xa9\x88e\xcb6\x14\x05\xf2\x0d50\xf1\x8fp\xaa\xe1\x96\x08\n\n7\x07\x82(T\x9c(\xe6\x81\x06\xf1\x03\x07sPAl\xe8K!\x8ee\x9a\x8eE\xdb\x08S\xdc\x97\xb6\x8drF\x1d\x0b\xc0/P\xe3E\x18`\xb8w\xa1ED\xab\x07N\xb7\xa0\x90\xe3\ne\xcb\x826ZT\x014\xe7[\xd9\xd6\x91\xca \xc1\x0b\x1e\xd4\xbeO\x82\xc9mh\x9d\x84'g\nD\xbcCa\xc1Xb\xfco\x04!\xb1U\xde\xb4P\xb55\x82~\x1d\x00\xe7T\x93pn=\x81\x82\x80\xd5#\x18\x7fa\x8c\xb0\x14\x06\x91:\x82\xd2\xf0\xac\x966\xd1\xeaT\xd4\xa52\xe4\xcd\xd8V\xc2\x92\xc4\xc6\xc7\xf2\xa8Z\x88\x8f\x80P<\xe1Z<\xa0\xd9\x05nux\\\xc3\xb8\xe3\xf6Y~\xba+pSj>q\x17\xe7\x01\xb5\x8bq\x15\x9b\x97\x8c\xf7m<\xa4\x0e\x8dq\xf6\xecf{\x9f\xa8SK=\xc09\x96?\x1e#\x8e\x01\x16\xc9\x00\xf5\x80\x8bg\xdch\x86\x01\xf1\x0c=\x19 \x8bi\xd8 \xaaax\\\xc3\xd0\xc8\x86\xa1\xb1\x0d\x83\xa3\x1b\x06\xc57\x0c\x8ep\x18\x18\xe30<\xcaax\x9c\xc3\xc0H\x87Mc\x1d\xfaIx\xf1x\xe3\x1d\x00\xdf\xba\xbf\x1c\x1a\xf1\xf0h1\x0f\x8f\x1d\xf5\xf0\x18q\x0f;\x13\xf9\xf0$\xb1\x0fO\x14\xfd\xb0S\xf1\x0f\xcf#\x02b\x07c \x9e6\n\x02\x1e\x07\x01\xbd/\xd3\xbf\x1e1\x16\x02n\x0b\x8e\x14\x0f1(\"\x02\x8a\xa5\xbe\x1b\x94\xce\x12\xc2;\xa4\x89\x14\"\xfe\x07\x99kv[\xf0\xd4\xad`\xe85\x8a\xa35R\xb1d\x18m<\xab\x86\x96\x0d\xfb\xcc\x0byyo\x08k\x86'\xcd\xf5=\x86_\x96\xe0<_\x8b\xf6\xfe\xc1\xc2\xc9\xf2\xa3\x11\xc8\xdd\xc2\x99V\x1d@D\xc2rFrqy\xce4,S\xe9I\x9e\x91\xa29\xdf\xf2\xc8\x86 \xbc\xee\x12\x8d\x1ej\xf1*\xcd\x82\xdc\xe9C\xcfg~\x9cN\xd1t\xbd\x87V\xcbT\xff\x9bf\x0bRS\xbcX\xd6{\xda\x1d&\xca0\x86\xdb\x94\x8a\x84\xa9\\6\xd2\x9b\x95~2\xc0'f\xe8yYx\x06\xd2\x1bFDL\x10\x02\x17\x102\x16\x11\x03\xbb\xcf\xd8\x12\x03-\xf6\x98\x8c7\"\x13\xf6 \x93\xa0\xf2\xee\x9f\x14\xb4Z\xf3\xf6y\x12_\x10M\xd3\xf5\x88\x14\xc1\xa4\x00\x92'h\x8f\x9f@\x98\x1cr\xf5D\x05\x1c\xd2\x81_\xc1\x9f\xc9\x15\xf8l\xa60\xc75UH\x83\x08\xdb\xd1y\xe4\xe1s\xd9\x88\x13)E\x06\x8cX_--\xfb1*k}x\x1f\x83\x0b\xe6\x0c\xb3\x95\xa5\xed\xd2\x92s\x823\xbc>|Rqk\x1e\xe0?\xe22\x9c\xe0d.g<\xf8\x81\xb7\x1e\x98\xfdleE\x98tK<\x1c\x11x\xb1\x8d\"\x05TV\x16\x13A/\"\xf7\xe1c\x0f\x0c\xc3\x13\xa6\xe2\xbe2\xedZ\xa3\x04/\x85\x95\xe9\x8c\xc2a;0\x08J\xaf\xf3\x12-\xf0\x1d\x91K]e\xcd1u%76Y\xa3\x07REf\x0c\xa7\xbe\x1f@\x95\xee\x95\xca\x83V\xf1R\x86-\xa5\xad\x0b|\x8b\xb3\xa2\xa6\xc6\xe9\xc4\x0b\xcfv\xa5\xb3\xafp\x91\x90@4\xd9\xb5\xe1F\xe59\xfcs|O\x8c\x91$\x87y\x8c\x18UG\xcc\x8c\xf8\xc5BV\xdc\x97\xf9\xbd]\x00\xa0\xfd\x9c\x9d\xb3\x93\xf4\xdf\x92\xd3\x15\x91\xc9\xd4\"\xb4\xeb\xd2\x8a\x08FXF\x94Yu$\xdaO\x13_\x86\x15KE\xde\xf6\x95YibQ\xde\xfb\x9a$7\x976\xa34Nj\x81\x1b\x16\xe1\xe0\x8cq\x08\x9b\x83\x00\x1b\nb?=\xfe\x15V;\x10\xcb*\x02\xe1\x0e`\x903\x1b M\xb0\xe6\"\x16\x99\xb0U\x9a\"B\xae\x83\xe6\xd0\xf0\x04\x13\x14\x88+\x90\xe0\xa5\x1d\xe1L7\xe8\xc9x\x03\xecfA\xad\"#0\x0e\xc9\x7f>\x0f\x1e\x19\xc86\x0e \xe3\x9d\xe4S\x10^\xd9\xae\xc0\x13\xe7S8p\x03\xcc\x9c!T\x8f\x10\xbb\xd1o\xd7\x8c\xb4\x10\x86\xd0\xbaQ\xf0\x86w\xa1\x04HVA\x82cv_\xb2\x80\xa2\xb1;\xd4Bf\x12\xa4+\x11P_\"\x04 \xbd\x16\x0fpi \xb8\x9c@\xdb \xc6\x16\x8f\x9e\xa9\xb8\xeeD\x8fC\x1d\xe08\xd3Bz\xb8&5\x81\x01\xf9\x04\xd3\xa6h\xf7x5\x86nE\xe8\xa5E-\x9c\xf2\x91\x17\xc90\xca7\xd4'\xc8\xbd\x84\xdc\xe4w\xda\x13\x8dq\xd6r\x02\x1d\xef\xc4\xe5\x8eR\xdb\xf2\x01\xacM\xd3\x08\xb6\x06P\x84@\xb9\x8ez\xb4\xe9\x8b_h\xa1\x8e\xeb\"\xaa\x9c:\xd3\x1eWP\xbb\xc3\xa9\x8d\x15S\x1b`\x0f>%\xbd:\xa0\xed\x10\xcf\xba\x88#@\xdb=\xc7W\xad\x08\xf5\xa1\xbc\x8c). \xeb\x86\xf3\x04\xa2\xb4\x82\xe06\xa1~\xa4\x853\x9c\xfa\x0d\x15\x17`y\xb9X\x01\xc1W:\x1d\xfd\xbd\xf2\xb4\xefj\x0b\xcd\xf2$\xec@\xb7<5\xba\xb7]\x1e\xf7\xbfv\xe7V\xcc\xe8\xe3\x86\xec\x0bd|\xebl$m\xfb\xe8\xe1\x14\x93fV\x9b\xf8fY\xe9\x14\xa1\xbfx\xbd\x00\x99-\x1e\x84%C\xea\x1d5,N\xf2\xbaDwE\xf9P\xf0\xa2\xb1\xe8+\xb3`\x82q\x16O\xe1\xf3\x85q\xac\xc9\x18P+W]X\xa8T\x81V:@D\xe6i^\xa3\xd7\xbc\xd8dF\xe7h\x96\xe5\x94T$Ew\xf7J5SRaZV\xfex/\x19L\x1ed\x17\x88@ H \n\xcbdU\x94\x89\xa9\x0e\xd6\\@M\xcdb\xeb\x1a\xa9\xe4\x01v\xe5l&C\xd9\xecF\x96PfE\x17\xc5h\x9e\x14`\x9e\x03p)\"\xf04 \xd4\xb9\x1a\xefD%\xf2\xe9P[6\nMNl\xf0ws\\\xcf\xc7'\x95\xca\xb6\xf4\x9c\x88\xc2(\xae\xa2\xd6Z4\xff!&\x14\xd1 \xbc\x00S\x80E\xc4\x99\xe3\xfaY#\xff\x9a\x0d\xcc\xcb=\x87\xc3\x8f\xd8\xa3#\xccx\xdb\x00{6\x93r\xb1(\x0b>^8\xacS43{\x12v\x88\xa1E\x84\x99\"\xa3\xb9\xee\xa4%\xe4VX=\xbah4z-\xc0\xfe\xd6\xdc\xb2r>M4k\x82\xd7\xad\xeaa\xa27+\xee\xcb\xbb\xc0Z\xca\x8a\xe5\x8a>\xdb\x9c+\xc8.\xe85\xf10\x0b\xd2~\xce\xd8\xb4\x8b*B\xaa\xda8\xefX\x94\x15wh\x8a\x93;Y\xcf\x1d\x00\x89\x87\x19\xf0\xec \xbeh\xc2N*]H?\xee\xa5\xea\xc9\x02\xa0y \x1e\xf8Vq\x88o\xa9\xe8\x9b0\xee\xaf\xa0\xdc\x87/5\xc5\xd3<\xab\xe7$U\xf1\x08\xb1\xb8o\x88\x1c\xef\xc9\xa6\xbe\x94\xbb\x05~F\x12\x9e\x1b`X\x15\x00x\x8cQ\xe8\xa2*\x97e\x0d\xe7\x81\x16\xcb\xdba\x04\xef\xdf\xb9T8\xcd\xb8S\x8eV\xab\x84\x07\x04q\x1bi\x81\xabz\x1e\x89;G\xa8\xa6\x98\xae\xa2[\xbf\x1f\xffOu\xfaI6\x13f\x13\x17|\\D\xaae\xa8\x90\x06M\x80\xce\x8c\xf8\xce\x1bt\xc80w6\xc5\xfc\xa2k\xb9\x8a\x8b\xe7^<\x86\xa7/^~\xf9|~\xf9\xc7\xcd\xe9\xd9\xc5\xb7\xeb\x9b\xab\xeb\x93\xeboW\xbdR\xca|0..\xcf/\xce\xaf6\x00 \xdeE?\xd7)q\x9b\x12\xd2_\x92G\x99\x07\x99\x81\x08\x08#\x13\n\x90\xd3\xc1\x03\xb6p\x9e\xa5\x93U!\xce\x8bb\xdd\xb2\xb5\x03\xf882\x95n\x1e\xab\xbf\xb6s\xb6\x8c\x1dS \\M3Z\xe1j\xddH0^\x18P\x9f\xf9\xc4V\x18\x8e\xa3x\xe7\xc6P\xbcs\xe3\x97\x89\x0dmY`\xcb\x8a\xdcg\xe5\xaa\xce\xd7\x9d\xadn\xe49\x05q\x95\xc2\xe6\xba\xc2\xc9\x9dpj \xcbI\x9f\x00\x89\xd2I\xd0S\x19Hz\x99\x83t\xeclF[2\xcf\xc8\xbd\xe8KR\xaehL\xec\x94\x05\x08;\x01\xe9\xd9Z\x85O\xac\xeb\xffG\xeay\xaa\x8a\x98\nv\xc2*'\x88G|1\xd1^\x80\xb6\x1b\xea 4\xe8\x15\x87\xa9\xe8RK\xb0qc4\x07B\x00\xb0&EI\xf2Fn\xe5\xac\xb8U\xadn\xf6f8\xcbW\x15\xe0\x08\x89\x98\x1a^\x92\"\x05Md\x9fY\xef\xa3t\xaf\xbe\xfd9HKu\xbf\xbe8\xb9\x82e\xb9\xdb\x9f]\xfd\xef\xe9\xc5\x80\xcf\xbe\x9e\x9c\xfe\x19\xfd\xcc\xd0\xc9C\xe9\x1c\xa6\x8d=\xa3A&\xc5\xfb\xb1\xa5\x81\xd1\xaa\xa8I\xdcV\xe3\x17\x12}\x12\xdb\xbbS\xdaf\x1e{g\xa90b\xec&\xa6A\x9b\x9eOC\x86d\xcb\xa1=${g\x0c\xa9I\x9a$eQg\xa9\xf2>\xf0\xc1\xef2~\x1b\x91\x8a\xfeW\x8b\xac\xae\xd9\xe6\x94\xfa\xa8\xacPJr\xbc&)0\xb7\xd0\x83$[|m$\xd9;/_\x9a;A'\xe6Lf\xf8b\xc8\xd5\x03\x15z\xe2Pu.\xe4\x13)\x12\xbc\xacW\xb9FI\xca-~\x8a\x85\xf8\x11Qcy\x00\xd2\x84a8\n\x1c^\xd7\xbf\xe9\x9b}qe\xc4\xb0\x92,\x13\x0du\xb5\xb8\x8e\xcc\x12\xfb\xa98\xc8\xa8\x0f\x9az\xc0\x19\xcctx\x1e\xc5\x8e\xdaX*\x066w\x19\x00=[;\xeb\"9k\x1f\xa96yn@\xf1\xd9>\xd1W\"\xe5\x8c[\xae|\xca1\xa58\x99\x8b\xd1t**\xdb\x9b\x04'\xfe\n\xd6\xf6\x8e\x91\xeb\x98\x9f\xdd\xa3\x19\xd7\x16\x8b%F\x92se!\x1d\x1a\xf2\xb5LSr\x93\xac\x1dW\xa3D\x18\xd9\xd0\"\xa1EF\x08\x91\x17\xa0\xb5\x04\xb6\x1cJ\x04\xf2\xe1mq\xa3\xe8\xf1\xbd\xd1ArB\xa3\x11?\xcd4\xecr\xa8O\x1b\xcb\xe11>\x1a\x12\x84%\xb0\x88\xc2]`\xcb\x18q\xa6\xcd\xb2\x01\xb2G8\x0b\xa2\xbe\xc9]\xe0\x8f\x81\xaab\x90\xf4\xfa\xf1W[\xe1\xd0\x13\x842\x19#\xc7b\x98\xc6\xd8)\xcf0\x8d\x01@\x15HK \xa0\xa6@/Y\x0c\xf2y\x04\xea\xa2\xa7\x83\x97,\x86A\xbc\x1aC\xbb \xf4\x92\xc5\x00\xa7|\xe4E2\x8c\xf2\x0d\x83AQ\x9f,\x06)\x97\xc7\xccap\x80\x1c/\x83A\xda\xd7\x8f\x99\xbf`\xd33\x82e\x01\x14\x1dP~\xa3\x0e\x8e\x91\xd3Ix\x1f\xf4\xcb\\hMv\\%\xed\n\x8f6VD680\x87\xb6\x12x\xbe}nm+_a \x17\x9f\xcb\x11\xc8\x81\xaf\xe3\x1c\x14\x844\x02\xc3b\xfa\x1c\xc8\xa6\xa1\xf4\x8f\xa2\xc9\xa1twR!\xc6<#9\x81{\xcfJ P\\\xe0\xa2,\xf5\x9f\x99\xa2$\x834\x1d\x02j;\xd43c\x0f\xc1\xd7\x0f\x82o5\xd4sbP\x8f\x0c>0\xa0\xbe\xba\x10\x0d\xcb\xe4C;\xcb\xc1\x98\x8e\x8c\x02\xa4\xbdr\xb2\x10,\x93\xe9\x99\xf2r\x98\x06\xed\x82rh\xd1\x9e\x10\xfa\xcdALy\xa0~,\xdf\x8c\x8fQU\x12\x85\xd7;O\x12\xf5\xce\x16D\x8f\xc9\x91\x11\x0e\x8b\x80\xa5:4{P\\\x0b\xfb\x93\x07\xe5qn\x1b\xb9\x83N\x8c\xc4x\x81|B\xf5\x03\x89\xaaV\xc6\xb5\x8b\x8d:=\xf1u6S\xfd\x9cI\xfa[7 \x91\xff\xa5\xbbdZwK\xfcW\"$/)\x97\xeb\xc6\xe2\x13\x7f\xb0S\x9d\x04R\xbe\xbc\xc7\x88I\x106\x04\xc2~\xd3\xe8\xca\x8e\xcf\x022\x06A .\x10\xc9x\x11\xee)A\x98/\xe2=D\xde\xdc\xfa\xb6\xe4\xa7\x83O\xbf\x7f\x9c\xe2\xc3\xfd\xa3\xd9\xbb\xa3\xfd\xf7G\x9f\xf0\xfe\xc7\x0f\xf8\xf7\xfd\x19I\xf0\xc1\xf4\xed\xd1\xc1!y+\xaa\xb0+ \x91\xf8\xdb\xc3I\xa5.\x07\x0c\xe1z\xf0\xe3\xd7-y\xfb\x0b\xff\xa2\xab\x0fG\xf4\xe7\xd1\xcf\xa3<\xbf?\xfa\x99|\xfaE\xeb\x1f?\xf3\xbb\x07\x92\xbb0\x8e\xa5\"\x8e\xc5\xce\xa6\xc8\\o\x86\x1e}|\xfbn\xf6q\x9a\xec\x7fx\xfb\xe1\xf7\xfd\xf7dz\xb4\xff\xe9\xe8`\xb6\x7fxpx\xf0\xe1\xf7\x83\xe4\x90$-\x86\x8a\xc16b\xa9\x00q\xf0\xe3\xa7\x97\xa9\x9f\xea\x1fy2\x7fW\xff|(\xde\xbf\xff~\xf4\xf6\xfb\xaf[\xfa\xb1\xaa\xe7\xf7?\xd6\xb3\xea{R\xf9\xc8\xe1\x1d\x85\x19\x13\xca\"_7,@\x19O\x813\x1c\xf18\xafK\x1f~\xb2\xe1\x83S\xf0E\xef\x99F\x9a\xd3\xd6\xad\x92f\xbf\x12\x9a\x16\x9fC \x0e~\x1cz\xb9\xfc\xf0\xfe0\xfdq\xf8=\xbd_\xa4\xf8\xd7\xea\xe1W\x82\xd3t>\xffx\xbbX\xbd[$\xbf\xc8\xbb\x00\x03\xfc\xa7\xefq\x19`\x9e\x9aE\xd6\x98\xe5\x0b\xa4%\x9ae\x05\x17\x88\x91\x95\xc9\xf5F!mY1\xbf2\xc9\xd8\xf1\x81\xccN\x12\x1e\xd4\x10\x99\xa1\x8e\x030:\xad\xa1\xc4T\xcfr|\xcb\xf1\xd5\x0d\nJ\xf53D#-/\xa5\xee\x92\xe1L51\xd2\xe8\xd5\xc1\xb2^\x96E\x1d$[*\xc2\xc7!\xdcT\xcb1\xd2\x83kE\x9d\xf1z\x12M~\n<\x82\xee\x82\xb1\x88n\x0d\xe6'Z\xfe\x90c\xef\xbdp\xe5 x@R\x8c\xc8\x86\xd9\x1es\x04\x8dHdk0\xc8\xcczs\x905\x8c\x02\xad\xcbU%m\x1e\x9b\xc40V\xb2\x88E})\xd9\x83\x9a\x10@\xf1\x7fF\xb6\x0c\x1b'\xe8_+R\xad'\xea\x1bty\xf1\xb9\x05N\xe4\x9b6\x08\xa8\x80_\xe3g\x16>'\x05Z\x15\xe4\xe7\x92$\xccp\x13\xad\x9f\\3U's\xb2\xc0\xf6\xc4x\xed8\xbf\x0d\xc7\x07\xe8No@('e\xea\x10q\xe2\x03_ suv\xce\n\xfa\xee\xb0\xc3 O\xf9\xef\x00\x0e)\xa18\xcbw\xa4T\x07\xfb\xfcfUy\xbb\xceD\x15\x1c\xcfp\x1d\xfc\xb5\xd33\xb1\xc4\x15^\x10J*\x03\xe7}\x91\xd4\xab\xcd\x1a\xdf\nl\xed\x88\xbe\xc6\xf70\x93;d \x0e1\xa9\xb3\xe2\x18-15\x835\x99h\xc8*\x92\x1e#Z\xadL\xd5\xe0d\xb1\xe6\x966\x96\xa1\xfc\xeam]\x0f\xb5\xa95\xcf,h\x0e\xfe\x8dm?o`5\xbbl\xe5\xd1\xe6\xca0\x82\x81\x935\xd8l\x1e\xd7Xf\x1c\xf8\xc14\x89\x93\x053\x9c\xd7}y\xd0\xba*\x02\xf0\xa0\xbf\xe5l\xd8\xc8\xce9\xee\xda\xcb#\xd2i\xd9\xc1@J\x87\xda\xce\x86\x95l\xc1\x83\x1b\x8fC\x08o\x1bVm\xca\xa5\x15\xdb\x93\xf6>\xe6\xb3a(\xef\x00\xdd-[\x18H\xf7@\x0b\xba\xb1\x95\xdb\x94o\x9d\xce\x969\x0c\xa4s\x90\x11m\x98\xcb\x160\x8f\xe9\xbc9\x95\x14\xdfZ\x16\xc9\xbf$\xb4 \x93\x19\xa4\xc0EB&\x0bBq\x8a)\x9e\xdc\x1fL\xf8\xf6\x9b\xfc[\xe9\x94\xffL\xe4\xa2\x9b\xfc\xbbQ\xb3\xff\x99\x88e:\xf97\xe3\xdf\x7f\x04\xf8[\xa2M\xecz\xb5X\xe0j}\xac\x1bl\xd4\x04W\xc9\\v\xe3\x94K\\\x91\xe9c\xf1us\xc7\xca\x94\xc2\x1e\xd3uJ\xce\xed\xa9\x9ae\x11\xfd\xf1\x8f\x86g\x1b+\x0f\x86\x90\x86\xc7\xd9\xb3\xdf18\x84\xec2\x8c\x0e\xfd\x01\xdcFs\x19g\xd6\xb0\x10\xbb\x0c]e\x8b,\xc7U\xbe\xdekp\xa0V\xc1r\xa7\xad\xc4+\x17\xb5l\x9d\x16%c\xd86\x16/#jp]\xae^U\xa4\x19\x9f\x9dx*\xee\xcaGYa\xb6~\xf9\x7f\xe8t&\xec#\xdc\xb62\x9au#\xbb#\x9a\xd7\x1b\xbc\x17\x8dQ\xfe\xae\"tU\x15\xbc\xad\x8c\x0b\xb4im5pq\x9e7\xd7\x172\x83J\xccd_\xf0\xcd\x04\xbdf\x93!G\x9b4\xef\x7fs\x8e\xd6\x9e\x1f5\xaew<\xac\x19\xaf\xad\x07\xd5\x08PQ\x88\x8bt\xd2,\x88\x9b\xcc\xe6_ks\xb9\x06\xd4?9AS\x9c\x9a\x97(\xeaG(\x9b\x1d\x9b\x88]\xdbk\x94\xcbT\xbe0q\x91\xa2\xa2tr\xffM\x0b\x80\xec\xf2C\x1fJ\xb6\x9cy\xa7\x9frf\xcb\x12\x93$~\xbd%\xc1\xf2\xff\x99\x1bf\x8d\xd2\xb2xE%\xc7gB\xa0\xf3\x8d\xc4\x98'\xcd-c\xf8\x93\x0eW\xf7\xd0tEQQR\x07g\xb1\xd5@\xa0\x0bF45l\x962#K\xcf\x16\x96\xb6!\xffeZ\x92\x9a\xe1\xb9\xc04\xb1\x1bh\x19\xdf\x9b3\xf2\xcf\xb5r\x8c\xec\x19f\x97\xe8\xbe$\xad\x0c\xd1*\x89\xeaJP\x06\x86W\x84\xb6l;I\x91~\xa9\x800vU\"\xf1\xd6\xef!\xb5\x17\x9aV\x0d\xba\x88\xd8i\xaau\xc9\xd1?\x14Y\xc2&0\x94\xdb\xab\xc3\xb7o_\xf9\xdd%H\xec\xe6\xfd\x97\xa7\xff}zvr}~\xd9\xef\xbb\xab/\x97\x7f\x9d~\xfe\xd2\xf3\xab\xd3\xb3\xbf\xbe\\\xf5\x1e\xeb\xf3\xb7\xab\xeb\xf3?NO\xce\xfa}v\xfe\xf7Y_\xfcN\xbe~=\xfd\xf3\xf4\xe4\xfaK\xbf\xcf\xce\xff\xef\xec\xf4\x9f\xdf\xe2\xd5j\xac\x8f..\xcf\xff\xfarvr\xf6\xb9\xe7`\x9f\xcf\xcf\xae/\xcf\xff\xfc\xb3/m\xba\x95\x7f\xe43]\xe4f\xd0\xf2\x8a\xdb*\xf6\xe3[\xc5\x03\x87G\"\x00L^\xc5\xf5(V\xe3\xd9\x14\xc7\xee\xd7r\x14\\\xf3v\xa3Uv\x9b\x15\x98Bjv:\xf7\xd0\xb1\xeb\xa52\xd6k\x94\x92)E5\xa9\xee\xb3$+n\xd1lU$\\\x8d\xf5\x1cM\xed\xbdc\xd7KqZ\xe21hY\x82\xb2\xe2\x9e\xd4\xfd\xe9\xd1\xfb\xf4\xd8\xf9VMMA3\xba\x16\xea[\xd3\x98\xacjZ\xa6\x19.$\xa1\xd2\xdf\xc3\x19\xdc\x97P\xbe\xef\x8f;o\xdau\xf2\x96\xb8\xa2k\x89\x13W\xdaJK1\xed\xdbsH-7\x8e\x9do\x05w\xc5\x80\xe2\xa0\\ <\x9bey\x86)A\xf8\xb6\"\xdc\x0c\xe99\xa8\x94:\xc7\x8ewb@n\xf5\xe0\\\xdc\x81\xcb\xa6\xb8\xeb\xc6n\xaa\xca\\\x10\xbf(\xb2\xe9\xaaFS\\\xdc)\xad\xd8\x13\x95F\x96\x1d\xbb_3\x84TE\x185\x0f\xe64TdY\x91\x9a\x9bbl\n\x9aj\x84\xd2\xb1eW\xc4\xc6\xc9\x80M\xdd\xc8\xcdc\xf7k{}>\xcc\xb3dn\xf0I\xdb\x90j\xd7\xebb\xbd\x19A\xa4(i\xa48w\x17!-\x90\x8f\x9do]\xe8\xf0\x1a\x98| \x8b\xfaDb\x7f@J)!\xdd:;fY\xc4\x03E\x8c\xdf\n\xebK;\xac\xf5\x84\xbe\xaaQ\x9d\xdd\x16Xt\xc1\xae\xf5\xe0\x01x0K\xee\x04]\x18\xfbV\xd9\x97lSMx\x81p\xc1\x17f\xe9\x05\xc1\xb4\xeb\xb6Gk\xfe\xf4\xd1l\xd7\xfc\x9c-[P7K\x1b\xd1r\x89rrOryH\x88\x87q\xab\xb3\xba\xb0Q\xdf\xb4AsO6\xe33\x8fy\x96G\xf7\x90\xb8l\x1a\xe7\xaf\xfd}\xaf\x85q\xcb\xcfG\x8e\x9e\x1d\x02\x03\xfb\xf4\x19\\y\xabB\xb8\x14\xe9\\\xe3\x9dg\xdc\x07[Z\x8d0\xbd\xf97\x0c\x93\x1b\x9c\x84\xbbX\x8cx\xac\x8a\xd8\xe8\xf0up\xa2\x99\xa4\xaa\x861\xc29\xc7\xf0\x8a\xce\xcb*\xfb%$bE\x12\x92\xdd\x87\x16BS)\x9b\xcfK\xb7\xed\x80v1x\x80\xf0\xb0\x95\x1b\xbe\xeen\xa2\xc7\xbd\xb1\xf9\xd0lT[\xf9\xb0\xd9\x17\x15\xe3[\x04\x05\xd7\xa6\xe1M\xb9\xa2\xb8Hq\x95\x9a\nCj0\xd1'\x7f\x81\xab;G\x88S\xf3\xa8_\x87\xb6\x03\x9b\xb0z\xb5\\\x96\x95U\x83\x94c\xfeF\x06X`J\xabl\xba\xa2\x04-\xf0\x9a;\xe4\x03\x00\xa7\x84\xc9\xeb\xe2\x96\xa4h\xba\xe6\\\x90R\xbe\xa93W\x16 \xb3D\x98\x9c\xab\x89##B<\xd2\xeds\xc3e\xeeMU\xe6\xf9j\x19\x9b\xd6\x98d\x87\xcf\xeb\xdfR\xec\xe3<\xd7[[\xad\xf4\xc6'\x9c\xd1Zo\xf1\x000u+\xa7\x84\xa5\x05\xe8U\xadD\xe6,#y\xea\x0d>G*\xde\x05\xe7u\x89H\x81\xa7\xb98\x9d3Q\xabt\xd0\x7fq\xa7\xb2@P@\x0d\xcd}\xe3\xd5V4\xba'\x03\xc6\xb6+>*op@x\x85\xe6\xb2\xa4F\x99fn\xf3\xa2\xa4\xccs\xc2M\x9c\xe6\xf2\xc1\x87##\x80\xaf\xa2\xb2 \xfa\xca\"\x80\xa8r\x95\x06\xc2aa\x94X\x80\x1a?\\\xac\xda\x9c\xdf\xb7\xd2(\x19\xe7\x0f\xa2.\xaf\xb8\xb3\xeb1\xdd\xc4\x16\x13\xcd\x9b':\xb8H\x90\xe6x,\xf3t\xcbT\xc4\x92G\x1b\x8a\x02\xe9w\x1a\x98\xf8G8\xf3nK\x04\x05\x85\x9b\x03A\x14\xaa\xd5\x13\xf3@\x83\xf8\x11N\xc9\x04\xb1\xa1/\x85\xd1\xc4\xcb\xb1h\x1ba\x8a\xfb\xd2\xb6Q\n\xa5c\x01\xf8\x05j\xbc&\x01\x0c\xf7.\xb4\x88h\xf5\xc0\xe9\xd6\xd7q\\\xa1lY\xd0Fk\x0c\x80\xe6|+\xdb:RH x\xc1\x83\xda\xf7I0\xb9\x0d-\x1b\xf0\xe4L\x81\x88w(,\x18K\x8c\xff\x8d $\xb6\xca\x9b\x16\xaa\xb6F\xd0\xaf\x03\xe0\x9cj\x12\xce\xad'P\x10\xb0\xf4\xfc\xf1\x17\xc6\x08Ka\x10\xa9#(\x0d\xcfji\x13\xadNE]*C\xde\x8cme\xc6Hl|,\x8f\xaa\x85\xf8\x08\x08\xc5\xb3\xa6\xc5\x03\x9a]\xe0V\x87\xc75\x8c;n\x9f\xe5\xa7\x9b\xe46\x95\xd7=\xb5j@\xddS\\\xb5\xd7%\xe3}\x1b\x0f\xa9Cc\x9c=\xbb\xd9\xed&\xea\xd4R\x0fp\x8e\xe5\x8f\xc7\x88c\x80E2@=\xe0\xe2\x197\x9aa@\x0f\x1e\x19\xc86\x0e \xe3\x9d\xe4S\x10\x9e\xbd\xc9@|\n\x07n\x80\x993\x84\xea\x11b7\xfa\xed\x9a\x91\x16\xc2\x10Z7\n\xde\xf0.\x94\x00\xc9*Hp\xccfD\x16P4v\xc3V\xc8L\x82t%\x02\xeaK\x84 \xa1\xd7\xe2\x01.\x0d\x04\x97\x13h;\xc1\xd8\xe2\xd13\x15\xd7\x9d\xe8q\xa8\x03\x1cgZH\x0f\xd7\xa4&0 \x9f`\xda\x14\xed\x1e\xaf\xc6\xd0\xad\x08\xbdtl\x85S>\xf2\"\x19F\xf9\x86\xfa\x04\xb9\x97\x90\x9b\xfcN\xb7\x9e1\xceZN\xa0\xe3\x9d\xb8\xdcQj[>\x80\xb5i\x1a\xc1\xd6\x00\x8a\x10(\xd7Q\x8f\xaeu\xf1\x0b-\xd4q]D\x95Sg\xda\xe3\njw8\xb5\xb1bj\x03\xec\xc1\xa7\xa4WC\xb0\x1d\xe2Y\x17q\x04\xe8B\xe7\xf8\xaa\x15\xa1>\x94\x971\xc5\x05d\xddp\x9e@\x94V\x10\xdc&\xd4\x8f\xb4p\x86S\xbf\xa1\xe2\x02,/\x17+ \xf8J\xa7\xa3\xbfu\x9c\xf6]=V\xef89`\xa0y\x9c\xfe\x85\xae\xa6\x88|\xad\xe3\x8c\xf2\x8a\xc1\xceq\x89\xbb \x8fX\x18\x8f\x1b\xf9/\x90\xf1-\xd7\x91\x94\xf6\xa3GeL\x9a\xc5\xd1\x84I\x0bR\xdf \xf4\x17/; \x93\xce\x83\xb0dd\xbe\xa3\x14\xc6I^\x97\xe8\xae(\x1f\n\x84\xd9\xfa\xfd\xca\x0c\xa1`\xb8\xc6S\xb8\x8ea\x1ck\x12\x0f\xd4\xf6S\xf7\x1e*\xe3\xa0\x95U\x10\x11\x9d\x9a\xd7\xe85\xafY\x99\xd19\x9ae9%\x15I\xd1\xdd\xbd\xd2\xf0\x94T\x98\x96\x95?lL\xc6\xa4\x07\xd9\x05\"P\x02R\xf2\xc6\xb2|\x15eb\xaa\x83\xa5\x1b\xb4\xccY\xdb\xb7Q%\x8f\xd3+g3\x19\x11g\xf7t\x842+\xba(Fs\xc8\x00\xd3%\x80K\x11\x81\xa7\x01\xa1\xce\x0d{'\xb8\x91O\x87\xda\xb2Qhrb\x83\xbf\x9b\xe3z>>\xa9T6{\xe7D\x14F\x8d\x16\xb5\xd6\xa2i\x141\xa1\x88\x06\xe1\x05\x98\x02Y\xc1\xdbq\x8b\xad\x91\x7f\xcd\x06\xe6\x8dF\xc2QL\xec\xd1\x81j\xbc\x08\xbc=\x9bI\xb9X\x94\x05\x1f/\x1c\x1d*\x9ao= ;\xc4\xd0\"PM\x91\xd1\xdc\x9a\xd2\x12r\xb9\xac\x1e]y\x1a\xbd\x16`\x7fk.k9\x9f&\x9a5\xc1[[\xf50\xd1\x9b\x15\xf7\xe5]`-e\xc5rE\x9fm\xea\x16d\x17\xf4\x9ax\x88\xd1\xd7~\xce\xd8\xb4\x8bbD\xaah9\x9b\xf8<+\xee\xd0\x14'w\xb2x;\x00\x12\x8fV\xe0I\x18|\xd1\x84}]\xba\xc8z\xdc\xd9\xd5\x93\x05@\xf3@<\xf0\xad\xe2\x10\xdfR\xd17\xd1\xe0_A)\x14_j\x8a\xa7yV\xcfI\xaa\xc2\x1ab\xe1\xe3\x109\xde\x93M})w\x0b\xfc\x8c$<\xc5\xc0\xb0*\x00\xf0\x18\xa3\xd0EU.\xcb\x1a\xce\x03-\x96\xb7\xc3\x08\xdeqr\xa9p\x9aq\xdf\x1e\xadV \x8f+\xe26\xd2\x02W\xf5<\x12\xbe\x8ePM1]E\xb7~?\xfe\x9f\xea,\x96l&\xcc&.\xf8\xb8\x88T\xcbP!\x0d\x9a\x00\x9d`\xf1}\xc5#\x88D\xb4<\x9bb~_\xb6\\\xc5\xc5s/\x1e\xc3\xb3 /\xbf|>\xbf\xfc\xe3\xe6\xf4\xec\xe2\xdb\xf5\xcd\xd5\xf5\xc9\xf5\xb7\xab^\x99i>\x18\x17\x97\xe7\x17\xe7W\x1b\x00\x10\xef\xa2\x9f\xeb\xcc\xbaM \xe9/\xc9\xa3\xcc\x83\xcc@\x04\x84\x91P\x05H\x0d\xe1q_8\xcf\xd2\xc9\xaa\x10\xe7E\xb1n\xd9\xda\x01|\x1c\x99J7\x8f\xd5_\xdb\xa9_\xc6\x8e)\x10\xae\xa6\x19\xadp\xb5n$\x18\xaf/\xa8\xcf|b+\x0c\xc7Q\xbcsc(\xde\xb9\xf1\xcb\xc4\x86\xb6,\xb0eE\xee\xb3rU\xe7\xeb\xceV7\xd2\xa5\x82\xb8Jas]\xe1\xe4N\xf8\xc6\x84\xe5\xa4O\x80D\xe9$\xe8\xa9\x0c$\xbd\xccA:v6\xa3-\x99g\xe4^t7)W4&v\xca\x02\x84\x9d\x80\xf4l\xad\xc2'\xd6\xf5\xff#\xf5\xf9\xf1\xdd)m3\x8f\xbd\xb3T\x181v\x13\xd3\xa0M\xe7\xa8!C\xb2\xe5\xd0\x1e\x92\xbd3\x86\xd4$M\x92\xb2\xa8\xb3Ty\x1f\xf8\xe0w\x19\xbf\xbfHE\x17\xadEV\xd7lsJ}TV(%9^\x93\x14\x98\xa2\xe8A\x92-\xbe6\x92\xec\x9d\x97/\xcd\xd5\xa2\x13s&3|\xa1\xe8\xea\x81\n=q\xa8:\x17\xf2\x89\x14 ^\xd6\xab\\\xa3$\xe5\x16?\xc5B\xfc\x88\xa8\xb1<\x00\xd9\xc60\x1c\x05\x0e\xaf\xeb\xdfP\xd3\xbb~\x95S.\xa4%\xcb\x8a[K\\Gf\x89\xfdT\x1cd\xd4\x07MY\xe1\x0cf:<\x8f\x9aIm,\x15\x03\x9b\xbb\x0c\x80\x9e\xad\x9d\xe5\x95\x9c%\x94\xe4\xe5\x91\x07\\|\xb6O\xf4\x95H9\xe3\x96+\x9frL)N\xe6b4\x9d\xd1\xca\xf6&\xc1\x89\xbf\x10\xb6\xbdc\xe4:\xe6g\xf7h\xe2\xb6\xc5b\x89\x91\xe4\\YH\x87\x86|-\xb3\x9d\xdc$k\xc7\xd5(\x81J6\xb4H\x84\x92\x11\x89\xe4\x05h-\x81-G$\x81|x[\xdc(z|o\x90\x91\x9c\xd0h\xe0P3\x0d\xbb\x1c1\xd4\xc6rx\xa8\x90\x86\x04a ,0q\x17\xd82F\xb8j\xb3l\x80\xec\x11\xce\x82\xa8or\x17\xf8c\xa0\xaa\x18$\xbd~\xfc\xd5V8\xf4\x04\x11Q\xc6\xc8\xb1P\xa81v\xca3\xcc\x86\x00P\x05\xd2\x12\x08\xa8)\xd0K2\x84|\x1e\x81\xba\xe8\xe9\xe0%\x19b\x10\xaf\xc6\xd0.\x08\xbd$C\xc0)\x1fy\x91\x0c\xa3|\xc3\x98R\xd4'\x19B\xca\xe51S!\x1c \xc7K\x84\x90\xf6\xf5c\xa6A\xd8\xf4\x8c`Y\x00E\x07\x94\xdf\xa8\x83c\xe4t\x12\xde\x07\xfd\x12 Z\x93\x1dWI\xbb\xc2\xa3\x8d\x15\x91\x0d\x0e\xcc\xa1\xad\xc4\xafo\x9f[\xdbJ{\x18\xc8\xc5\xe7r\x04r\xe0\xeb8\x07\x05!\x8d\xc0\xb0\x98>\x07\xb2i(\xfd\xa3hr(\xdd\x9d\x8c\x8a1\xcfHN\xe0\xde\xb3\x12\x08\x14\x17\xb8(K\xfdg\xa6(\xc9 M\x87\x80\xda\x0e\xf5L\xfcC\xf0\xf5\x83\xe0[\x0d\xf5\x9c\x18\xd4#\x11\x10\x0c\xa8\xaf.D\xc3\x12\x02\xd1\xcer0\xa6#\xa3\x00i\xaf\xd4.\x04K\x88z\xa6\xbc\x1c\xa6A\xbb\xa0\x1cZ\xb4'\x84~s\x10S\x1e\xa8\x1f\xcb7\xe3cT\x95D\xe1\xf5N\xb7D\xbd\x93\x0e\xd1crd\x84\xc3\"`\xa9\x0eMB\x14\xd7\xc2\xfe\x1cDy\x9c\xdbF\n\xa2\x00\x1dH6\x94c\xcbk\xe0n\xe6 \xcf)\xec\xcesk\x10\xfe+\x11G\x97\x94\xcbuc\xa6\x89?\xd8\xf9I\x88g3\xfa\x86\x8c\xe8\xf1\xb0\xf6\x8e:\xbf\xa3+\x122\x9f\x1dW7V\xdbP\xcd\xa4P\x92{\x88\xbc\xb9\xf5\xed)\xf1\xd3\x83\x1f\x87\xb7\xe4\xed/\xfc\x8b\xae>\x1c\xd1\x9fG?\x8f\xf2\xfc\xfe\xe8g\xf2\xe9\x17\xad\x1f\xde\x1f\xa6?\x0e\xbf\xa7\xf7\x8b\x14\xffZ=\xfcJp\x9a\xce\xe7\x1fo\x17\xabw\x8b\xe4\x17y\xe7\x82\x1c\xf6\xf6\x8eD\xbd\xf6\xe3&\xb8@$\xe3\x15\xc8\xa7\x04a\xbe\xf5\x82D\x7f:\xf8\xf4\xfb\xc7)>\xdc?\x9a\xbd;\xda\x7f\x7f\xf4 \xef\x7f\xfc\x80\x7f\xdf\x9f\x91\x04\x1fL\xdf\x1e\x1d\x1c\x92\xb7\xa2\x04\xbd\x92k\x89\xbf7\x9e\xcd\xe5\x10\xae\x07?~y\xb9\xfc\xe3g~\xf7@r'3# \x94c\xb1\xb3\xa9\xb0\xd7\x9b\xa1G\x1f\xdf\xbe\x9b}\x9c&\xfb\x1f\xde~\xf8}\xff=\x99\x1e\xed\x7f::\x98\xed\x1f\x1e\x1c\x1e|\xf8\xfd 9$I\x8b\xa1b\xb0\x8dX*@\x1c\xfc\xf8\xe9e\xea\xa7\xfaG\x9e\xcc\xdf\xd5?\x1f\x8a\xf7\xef\xbf\x1f\xbd\xfd\xfe\xeb\x96~\xac\xea\xf9\xfd\x8f\xf5\xac\xfa\x9eT>rx;e\xc6\x84\xb2\xc8\xd7\x0d\x0bP\xc6\x13\xf7\x8c\xeb\x03\x9c\xd7\xa5\x0f?\xd9\xed\xc2)\xae\xfdg\xe5\xe8d\xca\x90\x0b\xf3\xf4*\xb2\xb7,\x9f\x1c-Q^\x96wL:;\xa0\xc8d\x1f\xe1\x90\x0c\xe1\x11\xea\x03\x00[U\xd6PBH\xcdr|\xcb\xd5\x86n\x1bP\xaa\x9fq\x12\xfcjR\x00\x91\x9aKF\x08\xd5\xa4\xd1.\xea\xa8V/\xcb\xa2vFphtdr\xfb#\x11o&\xdb\xc7\xe8\x0f/\xf7z#\xf2\xc9O\x81P\xf0(>\x16\xf5\xad\xc1\xfc\xc4\xcb\x1fr\xec\xbd\x97\x99\x1c\x04\x0f\xf6\x89\x11\xa9\xb8\xee\xb5\x1a\xd0\x88D\xb6\x06\x83\xcc\xb07\xbfW\xc3(\xd0\xba\\U\xd24\xb1I\x0cc%\xd3\xa9.%wP\x13]'\xfe\xcf\xa8\x96\x11\xd9\x04\xfdkE\xaa\xf5D\x15\xd7\xbd\xbc\xf8\xdc\x02&29\x9b\xe1U(\xad\xf13\x0b\x9b\x93\x02\xad\n\xf2sI\x12f]\x89\xdeL\xaey\xaa\x939Y`{Z\xbc\xc6\x96\xdf\xd0\xe2\x03t'7 @\x932uH;\xf1\x81\xaf\xc6\xb8:\x95f\x05}w\xd8a\x90\xa7>w\x00\x87\x94P\x9c\xe5;R\x04\x83}~\xb3\xaa\xbcma\xa2\xca\x88\xe7\x8e\x0e\xfe\xday\xe6_\xe2\n/\x08%\x95\x81\xf3\xbeP\x98Z\xf5\xfaV`k?\xf45\x10\x87\x99\x85!ke\x88\xd9\x97\x15\xc7h\x89\xa9\x19\x06\xc9\x04CV\x91\xf4\x18\xd1je*\x08'\x8b5\xb7\xb4A\x07\xe5Wo\x0bp\xa8\xdd\xa7yfAs\xf0ol\x1bo\x03\xcb\xcee\xcf\x8d6W\xad\x9b\x07k\x96\x06\x99z\xa3af\x9c1\x81\xcbh\xf0\xa9t\xdc\xb3(\xe3\xc0\x0f\xa6\xe2\x9c,\x98\xe1\xbc\x06\xf3\xc02b\x81\\\x18f\xf8:N\x9aC\xec\xbd!\xb4\xb7m\xa1\x0e\xf1\xd2\x00\xedK\x7f\x1f\xdb\x179\x06yz\x0e\xb4\x0cY \x03\x06\x9a\xbf\x8d\xa1kA{\x0c:[\xb6,\x90\xceA\x16\xb0a\xebZ\xc0\x97\xf2+E\xa0\x8f\xb9\xd7\xcd\xb5#\x93\x99{LI)%\xb4\xa7\xcaxE\xc4\xeb?\x1anm,[\x19B\x1a\x1eg\xcc~\xc7R\x10\xd2\xce\xb0\x16\xf4\x07p\xe3\xcaeUY\xc3B\x0c*t\x95-\xb2\x1cW\xf9z\xaf\xc1\x81Z\xa5\xc0\x9dF\x0e/\xe6\xd32RZ\x94\x8ca\x94X\xbc\x8c(\xf8u\xb9zU\x91f|vT\xa9x\x89=\x94\x15fS\x95\xff\x87Ng\xc2\xb0\xc1m%\xdc\xac\x1b\xd9w\xd0\xf4\xf8\xf3./FE\xb8\x8a\xd0UU\xf0\x86-.\xd0\xa6\x99\xd4\xc0\xc5yn\xcbe6\x0c\x9f\xc9\xbe\xe0\x9b z\xcd&C\x8e6i\xde\xff\xe6\x1c\xad=?j\\\xefxX3^Q\xa1[\xec)\nq\x91N\x9a\x05q\x93\xd9\xfckm.\xd7\x80\xfa''h\x8aS\xf3\x8aB\xfd\x08e\xb3c\x13\xb1k{\x8dri\xca\x17&.RT\x94N\xee\xbfi\x01\x90\xfds\xe8C\xc9\x963\xef\xa1S\xcelYb\x92\xc4o|$X\xfe?s\xc3\xacQZ\x16\xaf\xa8\xe4\xf8L\x88r\xbe\x91\x18\xf3\xf8g\xd6\xf0'\x1d\xae\xee\xa1\xe9\x8a\xa2\xa2\xa4\x0e\xceb\xab4\x7f\x17\x8ch\x17\xd8,eF\x96\x9e-\xf6G\xbdg\xd2\x92\xd4\x0c\xcf\x05\xa6\x89\xdd\x9a\xca\xf8\xde\x9c\x91\x7f\xae\x95Gc\xaf\xb1\xbcd_#i\xb2\x88&DT\x17G20\xbc\"\xb4e\xe2I\x8a:v\x0fcW%rQ-K\xc72\xf4\xec\x85\xa6U\x83\xae\xabu\x9aj]\xa2z\x9b)k\xc0Pk\xaf\x0e\xdf\xbe}\xe5\xf7\xcf\x18y\xb9\xdbt\xccx\xbc\xcaq\x7f\x9a6\x95\x19\x7ft\x19\xd2D\xf5z\xe25H\xeb\x96 \xf8:sE>\xf8\x8b\x90nt\xaf\x17\xf5\x97\x07\xa2~b\xbe\x98\xd8\xa5\x19\x82yT\x80q\x14\xf1\xc4M\x84\xbe\x89\"\xa0\xa7\x7f45\x1c\xc4vG\xe8t\xb1\xccy\xcb\xbb\x1a\xd5\xe9\xdd\x9b\x93HZ\xa2\xd4Y3\x9c\x08\xef#\xaf\x8e)\xc4\x94\xf8\x92\x88\xbd\xa6L\xba\xb6Uh?\x9f\xcbzQ\xfa\x06\xab\xc1Y\xbc\x8f\xcb\xccF\xc2\xd4\xdd\xe4[}\x17\x1f\x8e\x10\xb0\xbe\x14\xa6$\xaf\xd2A\xd4\\\xe0U9\xec\xb6\xf8\x97\xa7\xff}zvr}~\xd9\xef\xbb\xab/\x97\x7f\x9d~\xfe\xd2\xf3\xab\xd3\xb3\xbf\xbe\\\xf5\x1e\xeb\xf3\xb7\xab\xeb\xf3?NO\xce\xfa}v\xfe\xf7Y_\xfcN\xbe~=\xfd\xf3\xf4\xe4\xfaK\xbf\xcf\xce\xff\xef\xec\xf4\x9f\xdf\xe2\x05\\\xf6\xdd\xcd\xfe\xfb}\xd7\xb4\xdf\xef\xf7\x9dn\x92\x1f\xf9L\xd7}\x19\xb4\xbc\xe2\xb6\x8a\xfd\xf8V\xf1\xc0\xe1\x91\x08\x94\x92wh=\xea\xb7x6\xc5\xb1\xfb\xb5\x1c\x05\xd7\xbc\x91g\x95\xddf\x05\xa6\x902\x96\xce=t\xecz\xa9\x8c\xf5\x1a\xa5dJQM\xaa\xfb,\xc9\x8a[4[\x15 \xedx\xfa\xe2\xa3\xa9\xbdw\xecz)NK<\xc2+KPV\xdc\x93\xba?=z\x9f\x1e;\xdf\xaa\xa9)hF\xd7B}k\x1a\x93UM\xcb4\xc3\x85$T\xfa{8\x83\xfb\x12\xca\xf7\xfdq\xe7M\xbbt\xdc\x12Wt-q\xe2J[i)\xa6}{\x0e\xa9\xe5\xc6\xb1\xf3\xad\xe0\xae\x18P\x1c\x94\x0b\x84g\xb3,\xcf0%\x08\xdfV\x84\x9b!=\x07\x95R\xe7\xd8\xf1N\x0c\xc8\xad\x1e\x9c\x8b\xbbk\xd9nv\xdd\xd8MU\x99\x0b\xe2\x17E6]\xd5h\x8a\x8b;\xa5\x15{\xa2\xd2\xc8\xb2c\xf7k\x86\x90*\x92\xa2\xe6\xc1\x9c\x86\x8a,+RsS\x8cMAS\xa0O:\xb6\xec\"\xd18\x19\xb0\xa9\x1b\xb9y\xec~m\xaf\xcf\x87y\x96\xcc\x0d>i\x1bR\xedz]\xbf6#\x88\x14%\x8d\xd4\xab\xee\"\xa4\x05\xf2\xb1\xf3\xad\x0b\x1d^\x16\x92/aQ\xb2G\xec\x0fHu!\xa4\x9bR\xc7,\x8bx|\x87\xf1[a}iW\xb5\x9e\xd0W5\xaa\xb3\xdb\x02\x8b\xfe\xd2\xb5\x1e<\x00\x0ff\xc9\x9d\xa0\x0bc\xdf*\xfb\x92m\xaa \xaf\x99-\xf8\xc2,\xbd \x98v)\xf3h\x19\x9c>\x9a\xed\x9a\x9f\xb3es\xe7fi#Z.QN\xeeI.\x0f \xf1\xc8fuV\x176\xea\x9b6h\xee\xc9f|\xe6\xb1\xc1\xf2\xe8\x1e\x12\x97MK\xfa\xb5\xbf\xa3\xb40n\xf9\xf9\xc8\xd1\xc6B``\x9f>\x83+oU\x08\x97\"\x9dk\xbc\xf3\x8c\xfb`K\xab\xc5\xa47%\x85ar\x83\x93pc\x87\x11\x8fU\x11\x1b\x1d\xbe\x0eN4\x93T!-F8\xe7\x18^\xd1yYe\xbf\x84D\xacHB\xb2\xfb\xd0Bh\x8aG\xf3y\xe9V\xe2\xd7.\x06\x0f\x10\x1eor\xc3\xd7\xddM\xf4\xb876\x1f\x9a\x8dj+\x1f6\xfb\xa2\x88z\x8b\xa0\xe0\xda4\xbc)W\x14\x17)\xaeRSaH\x0d&:\xd0/pu\xe7\x88Mj\x1e\xf5\xeb\xd0v`\x13V\xaf\x96\xcb\xb2\xb2\xcarr\xcc\xdf\xc8\xc8\x08Li\x95MW\x94\xa0\x05^s\x87|\x00\xe0\x940y]\xdc\x92\x14M\xd7\x9c\x0bR\xca7\xa5\xd7\xca\"a\x96\x08\x93s5q$ \x88G\xba}n\xb8\xcc\xbd\xa9\xca<_-c\xd3\x1a\x93\xec\xf0y\xfd[\x8a}\x9c\xe7zk\xab\x95\xde\xf8\x843Z\xbb/\xa7\xedG\xdd\xca)ai\x01zU+\x919\xcbH\x9e\x06z\xf0\xab\xe9\xc8\xeb\x12\x91\x02Osq:g\xa2V\xe9\xa0\xff\xe2Ne\x81\xa0\x80\x1a\x9a\xfb\xc6\xab\xadhtO\x06\x8cm\xa2\xff>\xaf\xf9Ox\xd1\xe2\xb2\xa4F\xe5bn\xf3\xa2\xa4\xccs\xc2M\x9c\xe6\xf2\xc1\x87##\x80\xaf\xa2\xb2 \xfa\xca\"\x80\xa8r\x95\x06\xa2Xa\x94X\x80\x1a?\\\xac\x00\x9b\xdf\xb7\xd2(\x19\xe7\x0f\xa2.\xaf\xb8\xb3\xeb1\xdd\xc4\x16\x13\xcd\x9b':\xb8n\x8e\xe6x,\x19s\xcbT\xc4\xf2)\x1b\x8a\x02\x19i\x1a\x98\xf8G8\x19mK\x04\x05\x85\x9b\x03A\x14*_\x13\xf3@\x83\xf8\x11\xceR\x04\xb1\xa1/\x85\xd1\\\xc4\xb1h\x1ba\x8a\xfb\xd2\xb6QV\xa1c\x01\xf8\x05j &\xb7\xa1\x99\xf4O\xce\x14\x88x\x87\xc2\x82\xb1\xc4\xf8\xdf\x08Bb\xab\xbci\xa1jk\x04\xfd:\x00\xce\xa9&\xe1\xdcz\x02\x05\x01\xcbX\x1f\x7fa\x8c\xb0\x14\x06\x91:\x82\xd2\xf0\xac\x966\xd1\xfeT\xba\x907c[)-\x12\x1b\x1f\xcb\xa3j!>\x02B\xf1\x94\\\xf1\x80f\x17\xb8\xd5\xe1q\x0d\xe3\x8e\xdbg\xf9\xe9\xbe\xb1M1rO\xf9\x16PC\x11W9r\xc9x\xdf\xc6C\xea\xd0\x18g\xcfn6\x80\x89:\xb5\xd4\x03\x9cc\xf9\xe31\xe2\x18`\x91\x0cP\x0f\xb8x\xc6\x8df\x18\x10\xcf\xd0\x93\x91\xb0\x98\x86\x0d\xa2\x1a\x86\xc75\x0c\x8dl\x18\x1a\xdb08\xbaaP|\xc3\xe0\x08\x87\x811\x0e\xc3\xa3\x1c\x86\xc79\x0c\x8ct\xd84\xd6\xa1\x9f\x84\x17\x8f7\xde\x01\xf0\xad\xfb\xcb\xa1\x11\x0f\x8f\x16\xf3\xf0\xd8Q\x0f\x8f\x11\xf7\xb03\x91\x0fO\x12\xfb\xf0D\xd1\x0f;\x15\xff\xf0<\" v0\x06\xe2i\xa3 \xe0q\x10\xd0\xfb2\xfd\xeb\x11c!\xe0\xb6\xe0H\xf1\x10\x83\"\"\xa0X\xea\xbbA\xe9,!\xbc\x87\x96(\x85\xc6\xff 3\x83n\x0b^[,\xd2\xc5?\x8a\xd6H\xe5ta\xb4\xf1\x0c\x1aZ6\xec3/\xe4\xe5\xbd!\xac]\x9a4\xd7\xf7\x18~Y\x82\xf3|\xdd4\xca\xf7~(?\x1a\x81\xdc-\x9ci\xd5\x01D\xe4\xb5f$\x17\x97\xe7L\xc32\x95\x9e\xe4\x19)\x9a\xf3-\x8fl\x08\xc2\xeb.\xd1\xe8\xa1\x16\xaf\xd2,\xc8\x9d>\xf4|\xe6\xc7\xe9\x14M\xd7{h\xb5L\xf5\xbfi\xb6 5\xc5\x8be\xbd\xa7\xdda\xa2P_\xb8\x91\xa5H\xd1\xcae\xab\xb5Y\xe9'\x03|b\x86\x9e\x97\x85g \xbdaD\xc4\x04!p\x01!c\x111\xb0\xfb\x8c-1\xd0b\x8f\xc9x#2a\x9f0 *\xef\xfeIA\xab5o\xb0&\xf1\x05\xd14]\x8fH\x11L\n \xd4ito\xfa \x84\xc9!WOT\xc0!\x1d\xf8\x15\xfc\x99\\\x81\xcff\ns\\S\x854\x88\xb0\x1d\x9dG\x1e>\x97\x8d8\x91Rd\xc0\x88\xf5U[\xb2\x1f\xa3\xf6\xd2\x87\xf71\xb8`\xce0[Y\xda.-9'8\xc3+\x88'\x15\xb7\xe6\x01\xfe#.\xc3 N\xe6r\xc6\x83\x1fx+F\xd9\xcfVV\x84I\xb7\xc4\xc3\x11\x81\x17\xdb(R@ee1\x11\xf4\"r\x1f>\xf6\xc00\x0f\x1e\x19\xc86\x0e \xe3\x9d\xe4S\x10\x9e\xbd\xc9@|\n\x07n\x80\x993\x84\xea\x11b7\xfa\xed\x9a\x91\x16\xc2\x10Z7\n\xde\xf0.\x94\x00\xc9*Hp\xcc\xfe<\x16P4v\x0fS\xc8L\x82t%\x02\xeaK\x84 \xa1\xd7\xe2\x01.\x0d\x04\x97\x13h;\xc1\xd8\xe2\xd13\x15\xd7\x9d\xe8q\xa8\x03\x1cgZH\x0f\xd7\xa4&0 \x9f`\xda\x14\xed\x1e\xaf\xc6\xd0\xad\x08\xbd41\x85S>\xf2\"\x19F\xf9\x86\xfa\x04\xb9\x97\x90\x9b\xfcN\x03\x9b1\xceZN\xa0\xe3\x9d\xb8\xdcQj[>\x80\xb5i\x1a\xc1\xd6\x00\x8a\x10(\xd7Q\x8fFn\xf1\x0b-\xd4q]D\x95Sg\xda\xe3\njw8\xb5\xb1bj\x03\xec\xc1\xa7\xa4W\x8f\xac\x1d\xe2Y\x17q\x04h\xcc\xe6\xf8\xaa\x15\xa1>\x94\x971\xc5\x05d\xddp\x9e@\x94V\x10\xdc&\xd4\x8f\xb4p\x86S\xbf\xa1\xe2\x02,/\x17+ \xf8J\xa7\xa3\xbf\x9b\x9a\xf6]m\xa1\x9d\x9a\x13'9`\xa0\xc9\x9a\xfe\x85\xae\xa6\x88x1E\x070\xa3\xbcb\xa0\x98\xa2U\xfe\xd8|\xc4\xc2x\xdc\xc8\x7f\x81\x8co\xb9\x8e\xa4\xb4\x1f=*c\xd2,\x8e&LZ\x90\xfa\x06\xa1\xbfx\xd9\x01\x99t\x1e\x84%#\xf3\x1d\xa50N\xf2\xbaDwE\xf9P \xcc\xd6\xefWf\x08\x05\xc35\x9e\xc2u\x0c\xe3X\x93x\xa0\xb6\x9f\xba\xf7P\x19\x07\xad\xac\x82\x88\xe8\xd4\xbcF\xafy\xcd\xca\x8c\xce\xd1,\xcb)\xa9H\x8a\xee\xee\x95\x86\xa7\xa4\xc2\xb4\xac\xfcac2&=\xc8.\x10\x81\x12\x90\x927\x96\xe5\xab(\x13S\x1d,\xdd\xa0e\xce\xda\xbe\x8d*y\x9c^9\x9b\xc9\x888\xbbc\"\x94Y\xd1E1\x9aC\x06\x98.\x01\\\x8a\x08<\x0d\x08un\xd8;\xc1\x8d|:\xd4\x96\x8dB\x93\x13\x1b\xfc\xdd\x1c\xd7\xf3\xf1I\xa5\xb2\xff9'\xa20j\xb4\xa8\xb5\x16M\xa3\x88 E4\x08/\xc0\x14\xc8\n\xde\x8e[l\x8d\xfck60\xef\xf5\x1e\x8ebb\x8f\x0eT\xe3E\xe0\xed\xd9L\xca\xc5\xa2,\xf8x\xe1\xe8P\xd15\xebI\xd8!\x86\x16\x81j\x8a\x8c\xe6\xd6\x94\x96\x90\xcbe\xf5\xe8\xca\xd3\xe8\xb5\x00\xfb[sY\xcb\xf94\xd1\xac \xde\xda\xaa\x87\x89\xde\xac\xb8/\xef\x02k)+\x96+\xfalS\xb7 \xbb\xa0\xd7\xc4C\x8c\xbe\xf6s\xc6\xa6]\x14#RE\xcby\x83\xa0\xac\xb8CS\x9c\xdc\xc9\xe2\xed\x00H\xf3\x89\xad0\x1cG\xf1\xce\x8d\xa1x\xe7\xc6/\x13\x1b\xda\xb2\xc0\x96\x15\xb9\xcf\xcaU\x9d\xaf;[\xddH\x97\n\xe2*\x85\xcdu\x85\x93;\xe1\x1b\x13\x96\x93>\x01\x12\xa5\x93\xa0\xa72\x90\xf42\x07\xe9\xd8\xd9\x8c\xb6d\x9e\x91{\xd1\xdd\xa4\\\xd1\x98\xd8)\x0b\x10v\x02\xd2\xb3\xb5\n\x9fX\xd7\xff\x8f\xd4\xf3T\xd5B\x15\xec\x84\x15`\x10\x8f\xf8b\xa2\xbd\x00m7\xd4\x13h\xd0+\x0eS\xd1\xa5\x96`\xe3\xc6h\x0e\x84\x00`M\xa6\x93\xe4\x8d\xdc\xcaYq\xab\x1a\xe6\xec\xcdp\x96\xaf*\xc0\x11\x1215\xbc$E\n\x9a\xc8>\xb3\xdeG\xe9^}\xfbs\x90\x96\xea~}qr\x05K\x96\xb7?\xbb\xfa\xdf\xd3\x8b\x01\x9f}=9\xfd3\xfa\x99\xa1\x93\x87\xd29L\x1b{F\x83L\x8a\xf7cK\x03\xa3UQ\x93\xb8\xad\xc6\xef5\xfa\xe4\xc7w\xa7\xb4\xcd<\xf6\xceRa\xc4\xd8ML\x836\x9d\xa3\x86\x0c\xc9\x96C{H\xf6\xce\x18R\x934I\xca\xa2\xceR\xe5}\xe0\x83\xdfe\xfc\xfe\"\x15]\xb4\x16Y]\xb3\xcd)\xf5QY\xa1\x94\xe4xMR`\x8a\xa2\x07I\xb6\xf8\xdaH\xb2w^\xbe4W\x8bN\xcc\x99\xcc\xf0\x85\xa2\xab\x07*\xf4\xc4\xa1\xea\\\xc8'R$xY\xafr\x8d\x92\x94[\xfc\x14\x0b\xf1#\xa2\xc6\xf2\x00d\x1b\xc3p\x148\xbc\xae\x7fCM\xcf\xf9UN\xb9\x90\x96,\x13\xed[\xb5\xb8\x8e\xcc\x12\xfb\xa98\xc8\xa8\x0f\x9a\xb2\xc2\x19\xcctx\x1e5\x93\xdaX*\x066w\x19\x00=[;\xcb+9K(\xc9\xcb#\x0f\xb8\xf8l\x9f\xe8+\x91r\xc6-W>\xe5\x98R\x9c\xcc\xc5h:\xa3\x95\xedM\x82\x13\x7f!l{\xc7\xc8u\xcc\xcf\xee\xd1\xc4m\x8b\xc5\x12#\xc9\xb9\xb2\x90\x0e\x0d\xf9Zf;\xb9I\xd6\x8e\xabQ\x02\x95lh\x91\x08%#\x12\xc9\x0b\xd0Z\x02[\x8eH\x02\xf9\xf0\xb6\xb8Q\xf4\xf8\xde #9\xa1\xd1\xc0\xa1f\x1av9b\xa8\x8d\xe5\xf0P!\x0d \xc2\x12X`\xe2.\xb0e\x8cp\xd5f\xd9\x00\xd9#\x9c\x05Q\xdf\xe4.\xf0\xc7@U1Hz\xfd\xf8\xab\xadp\xe8 \"\xa2\x8c\x91c\xa1Pc\xec\x94g\x98\x0d\x01\xa0\n\xa4%\x10PS\xa0\x97d\x08\xf9<\x02u\xd1\xd3\xc1K2\xc4 ^\x8d\xa1]\x10zI\x86\x80S>\xf2\"\x19F\xf9\x861\xa5\xa8O2\x84\x94\xcbc\xa6B8@\x8e\x97\x08!\xed\xeb\xc7L\x83\xb0\xe9\x19\xc1\xb2\x00\x8a\x0e(\xbfQ\x07\xc7\xc8\xe9$\xbc\x0f\xfa%@\xb4&;\xae\x92v\x85G\x1b+\"\x1b\x1c\x98C[\x89_\xdf>\xb7\xb6\x95\xf60\x90\x8b\xcf\xe5\x08\xe4\xc0\xd7q\x0e\nB\x1a\x81a1}\x0ed\xd3P\xfaG\xd1\xe4P\xba;\x19\x15c\x9e\x91\x9c\xc0\xbdg%\x10(.pQ\x96\xfa\xcfLQ\x92A\x9a\x0e\x01\xb5\x1d\xea\x99\xf8\x87\xe0\xeb\x07\xc1\xb7\x1a\xea91\xa8G\" \x18P_]\x88\x86%\x04\xa2\x9d\xe5`LGF\x01\xd2^\xa9]\x08\x96\x10\xf5Ly9L\x83vA9\xb4hO\x08\xfd\xe6 \xa6;\xaen\xac\xb6\xa1\x9aI\xa1$\xf7\x10ys\xeb\xdbS\xe2\xa7\x07?\x0eo\xc9\xdb_\xf8\x17]}8\xa2?\x8f~\x1e\xe5\xf9\xfd\xd1\xcf\xe4\xd3/Z?\xbc?L\x7f\x1c~O\xef\x17)\xfe\xb5z\xf8\x95\xe04\x9d\xcf?\xde.V\xef\x16\xc9/\xf2\xce\x059\xec\xed\x1d\x89z\xed\xc7Mp\x81H\xc6+\x90O \xc2|\xeb\x05\x89\xfet\xf0\xe9\xf7\x8fS|\xb8\x7f4{w\xb4\xff\xfe\xe8\x13\xde\xff\xf8\x01\xff\xbe?# >\x98\xbe=:8$oE z%\xd7\x12\x7fo<\x9b\xcb!\\\x0f~\xfc\xf2r\xf9\xc7\xcf\xfc\xee\x81\xe4NfF\x12(\xc7bgSa\xaf7C\x8f>\xbe}7\xfb8M\xf6?\xbc\xfd\xf0\xfb\xfe{2=\xda\xfftt0\xdb?<8<\xf8\xf0\xfbArH\x92\x16C\xc5`\x1b\xb1T\x808\xf8\xf1\xd3\xcb\xd4O\xf5\x8f<\x99\xbf\xab\x7f>\x14\xef\xdf\x7f?z\xfb\xfd\xd7-\xfdX\xd5\xf3\xfb\x1f\xebY\xf5=\xa9|\xe4\xf0v\xca\x8c e\x91\xaf\x1b\x16\xa0\x8c'\xee\x19\xd7\x078\xafK\x1f~\xb2\xdb\x85S\\\xfb\xcf\xca\xd1\xc9\x94!\x17\xe6\xe9UdoY>9Z\xa2\xbc,\xef\x98tv@\x91\xc9>\xc2!\x19\xc2#\xd4\x07\x00\xb6\xaa\xac\xa1\x84\x90\x9a\xe5\xf8\x96\xab\x0d\xdd6\xa0T?\xe3$\xf8\xd5\xa4\x00\"5\x97\x8c\x10\xaaI\xa3]\xd4Q\xad^\x96E\xed\x8c\xe0\xd0\xe8\xc8\xe4\xf6G\"\xdeL\xb6\x8f\xd1\x1f^\xee\xf5F\xe4\x93\x9f\x02\xa1\xe0Q|,\xea[\x83\xf9\x89\x97?\xe4\xd8{/39\x08\x1e\xec\x13#Rq\xddk5\xa0\x11\x89l\x0d\x06\x99ao~\xaf\x86Q\xa0u\xb9\xaa\xa4ib\x93\x18\xc6J\xa6S]J\xee\xa0&\xbaN\xfc\x9fQ-#\xb2 \xfa\xd7\x8aT\xeb\x89*\xae{y\xf1\xb9\x05Ldr6\xc3\xabPZ\xe3g\x166'\x05Z\x15\xe4\xe7\x92$\xcc\xba\x12\xbd\x99\\\xf3T's\xb2\xc0\xf6\xb4x\x8d-\xbf\xa1\xc5\x07\xe8Nn@\x80&e\xea\x90v\xe2\x03_\x8dqu*\xcd\n\xfa\xee\xb0\xc3 O}\xee\x00\x0e)\xa18\xcbw\xa4\x08\x06\xfb\xfcfUy\xdb\xc2D\x95\x11\xcf\x1d\x1d\xfc\xb5\xf3\xcc\xbf\xc4\x15^\x10J*\x03\xe7}\xa10\xb5\xea\xf5\xad\xc0\xd6~\xe8k \x0e3\x0bC\xd6\xca\x10\xb3/+\x8e\xd1\x12S3\x0c\x92 \x86\xac\"\xe91\xa2\xd5\xcaT\x10N\x16kni\x83\x0e\xca\xaf\xde\x16\xe0P\xbbO\xf3\xcc\x82\xe6\xe0\xdf\xd86\xde\x06\x96\x9d\xcb\x9e\x1bm\xae\x8c\x93\x1cp\xb2\x06\x9f\xfd\xc6=\xf11\x0e\xfc`\x8a\xc4\xc9\x82\x19\xcek0\x0fZ\xb7/\x16\xf1pswK\xc8Yv,p\x8a\x86\xd9\xbe\x8e\xc3\xe6\x10\x93o\x08\xedms\xa8C\xbc\xb4A\xfb\xd2\xdf\xc7\xfcE\x8eA\x9e\x9e\x03-[\x16\xc8\x80\x81\x16pc\xebZ\xd0\x1e\x83\xce\x969\x0b\xa4s\x90\x11l\x98\xbb\x160\x8f\xe9\xbb9\x95\x14\xdfZ6\xc5\xbf$\xb4 \x93\xec\xa4\xc0EB&\x0bBq\x8a)\x9e\xdc\x1fL\xf8>\x9c\xfc[i\x85\xffL\xecC\xe3-\xd1\xa6p\xbdZ,p\xb5>Vu\xdejT\x13\\%s\xd9\xd7R}\xa7\xc8\xf1\xb1\xf2\xda\x08\x0dki`!B\x1cZ\x18n\xb3\x04\x8d\x15\xb0\xa1\x82\xae\xb2E\x96\xe3*_\xef\x99\xbbUb\xac\xe1\xb5m\x07\xd4\xb0\xc1\x8b\xc2\x08\xba\x9e\xb1P\x0344\xe4\x1eS\xf0J\x81\xef\xa9\x12h\x087\xa3C\xb4\xe7\x18\x9a\xb3\x19\xf1\xff\xa1\xd3\x990Cl\xcb\xa3A\x13\xe7\xb9Q\xa7O&\xea\xc8i\xacL:\xe9\xaa*x\x7f\x15'\xecf\x86,\xe8\x19m\xf8`L\n.R\xbbFO\xabB!\xdf\xb8\xee\x01[\xeb\x81K\x01\xb1d\xe9\x9c\xe8\xd5lP\xcb\x0f\x88]\xc3\x87\xa3\xc5\x0c0\x86\x9b\xc1\x0e\x89Y\x0b\xa3\x06\x89\x00j\x92\x17-\xa3\xa9\x81M[E\xe0\xb4\xae\xc1T~\xa4\xe1\xf1\x9e8S\xe2\x1dJ\x8f\xa2l\x165\x8a\x87\x0b{&\xcf\xb0U[AO\x8a\xcd(\x8bA\xcd\xe8mN\xc5(rQ\xa2\x81\x9d\xa0)N\xcd+\x15\xf5#\x94\xcd\x8eM\x8a\xaf=\x93\xce\x910\xa9\x7f\xc8\xe8\xbc\\Q{\xfe]\x9b\xd5b\xe8\x89\x97\x9b\x1a^\xb1F\x0fx\xcd\xd5\x8b*S\xa7\xcd(\xf4\xda\xda\xc1&\xd7q\x87\xef&\xbf\xffa|c\xe0\xf6\x9b\x85\xdc\xf5C\xc9\xa6\x867)*g\x81\x19\xb5\xb7\x979\x95\xe6F\xd6\xa4\xb1\x1f\xa5e\xf1\x8ar\x11\xc0\x83Qd)&T3#\xd9\x16\xdbn~q\xe8\xaf\x99\xd8U\xdc6\x86\xe6\x85\xc9:\xdcD\xb8-\x8c\xd5gb\xdb\xc9\xd5\x94\x96\xa4FEI\xd5\xb2B\xf5*\x99w\xf9\x15@\xab\x85 o\xf64-\xe9\xdcX\xc2\xd3\x15m\xa2p4\xa04\x9b\xf1Wj \xd7\xe6\x92\xfd\xe7Z\xb9\xa8\xf6\x8c\x05\xd0\x8cU\xcb\xa6RT\x17\xbb2P\xbc\"\xb4e\xaf\xe3\"\x9d\x94\x95a\xdb\x08\x18l\x1e*\x91ZlY\xad\x96\xd1.\xbf\xd5H\x8a\xb7\xbaJ\xdai\xda\x98\n\xca\xa9\xa4,;\xc3Dyu\xf8\xf6\xed+\xbf\xbb\xcdH\xb3\xde\xa6\x9f\xcdsI\x10w\x8f\xeac\x0f\xe3\x8f\xae*\x9b\xa8\xd6]\xbc\xa4l-\xcdy\xad\xe6^g\xaeH\x16\x7fQ\xd9\x8d\xeei=\xa4\xa1\x18T\x14\x85\x8c\xa2\x97\xa0\x08\xe6!\x03\xc6\xc5\xc4\x13q\x11\xfa&\x8a\xba\x9e\xfe\xd1\xd4\xe4\x10\xf2\x03\xa1\xd3\xc52\xe7-\x0ckT\xa7woN\"i\xa6\x88\xbbK\xab\x19N\x847\x99W;\x15m\xdb\xc4\x97D\xec5e\x9f\xb7M|\xfb\xf9\\\xd6\x8b\xd27X\x0d\xce\xca~\\f6\x02\xa6\xee&S\xeb\xd8\x8ap\xc4\x87\xf5\xa58*\xf0\xaa+D\xcd\x05\xce\xf3\xf2A\ng\x99\xc5\x1e\x02\xd7\xf1\x1b4\x0fox\x1f\x884\x0cy\x9f\xd5\x13-\x89\x13\xdd3\xe2\x89\xef\x1c\xf1\xe0m\x95k\xc5\xeeN\xa7\xafUy\x83p5\xba\xaa\xcc\xa3e\xe8 +H<\x98\xc3kv\xa4B\xc6(\xbd\x9c\xc8\xa2\xc4\xc0\x18?Y\x00\x81\x00J\xb1\xf6b\x1e\xac\xa4\x8c\xd5\xe7\xbeO\x95\x15\xeb\xc3\xf3\xcb\xd3\xff>=;\xb9>\xbf\xec\xf7\xdd\xd5\x97\xcb\xbfN?\x7f\xe9\xf9\xd5\xe9\xd9__\xaez\x8f\xf5\xf9\xdb\xd5\xf5\xf9\x1f\xa7'g\xfd>;\xff\xfb\xac/~'_\xbf\x9e\xfeyzr\xfd\xa5\xdfg\xe7\xffwv\xfa\xcfo\xf1\x82<\xd6G\x17\x97\xe7\x7f}9;9\xfb\xdcs\xb0\xcf\xe7g\xd7\x97\xe7\x7f\xfe\xd9\x97\xb6\xbfN\xfe<\xfd\x030\xd1\xba\x8e\xcf\xa0\xe5\x157V\xec\xc7\xb7\x8a\x07\x0e\x8fD\xe0\x9b\xbc\x13\xedQ\x8f\xc7\xb3)\x8e\xdd\xaf\xe5(\xb8\xe6\x8dY\xab\xec6+0\x85\x94%u\xee\xa1c\xd7Ke\xa1\xd7(%Sv$\xa8\xee\xb3\x84\x9d+g\xab\"\xa1\x1d\xb7m|4\xb5\xf7\x8e]/\xc5i\x92G\xece \xca\x8a{R\xf7\xa7G\xef\xd3c\xe7[55\x05\xcd\xe8Z\xa8oMc\xb2\xaai\x99f\xb8\x90\x84J\x7f\x1egp_B\xf9\xbe?\xee\xbci\x97\x02\\\xe2\x8a\xae%N\\i+-\xc5\xb4o\xcf!\xb5\xdc8v\xbe\x15\xdc\x15\x03\x8a\xe3_\x81\xf0l\x96\xe5\x19\xa6\x04\xe1\xdb\x8ap3\xa4\xe7\xa0R\xea\x1c;\xde\x89\x01\xb9\xd5\x83s\x11\x8b \xdb\x07\xaf\x1b\xbb\xa9*sA\xfc\xa2\xc8\xa6\xab\x1aMqq\xa7\xb4bOT\x1aYv\xec~\xcd\x10REo\xd4<\x98\xd3P\x91eEjn\x8a\xb1)h\n.J\x8f\xaa]\xf4\x1b'\x036u#7\x8f\xdd\xaf\xed\xf5\xf90\xcf\x92\xb9\xc1'mC\xaa]\xaf\xeb\x11g\x04\x91\xa2\xa4\x91\xfa\xe3]\x84\xb4@>v\xbeu\xa1\xc3\xcb|\xf2%,J0\x89\xfd\x01\xa9\x16\x85t\x93\xf1\x98e\x11\x8f\xd71~+\xac/}\xef\xa0'\xf4U\x8d\xea\xec\xb6\xc0\xa2_x\xad\x07\x0f\xc0\x83Yr'\xe8\xc2\xd8\xb7\xca\xbed\x9bj\xc2k\xa0\x0b\xbe0K/\x08\xa6]\x9a>Z\xd6\xa8\x8ff\xbb\xe6\x07m\xd9\xac\xbbY\xda\x88\x96K\x94\x93{\x92\xcbCBr\xb4%\x11\x18\xd8\xa7\xcf\xe0\xca[\x15\xbc^\x1c\xe3\xb2\xc2;\xcfj*\x8a\x9c\x99\xd7\x90\xbe\x18Q\x86\xc9\x0dN\xc2\x8d:F\xf3B^\xde\x1b\xc2\xda\xdfIs}\x8f\xe1\x97%8\xcf\xd7\xa2\xa1\x7f\xb0T\xb2\xfch\x04r\xb7p\xa6U\x07\x10\x91\xa4\x9c\x91\\\\\x9e3\x0d\xcbTz\x92g\xa4h\xce\xb7<\xb2!\x08\xaf\xbbD\xa3\x87Z\xbcJ\xb3 w\xfa\xd0\xf3\x99\x1f\xa7S4]\xef\xa1\xd52\xd5\xff\xa6\xd9\x82\xd4\x14/\x96\xf5\x9ev\x87\x89\xc2\x8b\xe1\xc6\xa4\"a*\x97\xad\xf3f\xa5\x9f\x0c\xf0\x89\x19z^\x16\x9e\x81\xf4\x86\x11\x11\x13\x84\xc0\x05\x84\x8cE\xc4\xc0\xee3\xb6\xc4@\x8b=&\xe3\x8d\xc8\x84}\xc2$\xa8\xbc\xfb'\x05\xad\xd6\xbca\x9e\xc4\x17D\xd3t=\"E0)\x80\xe4 \xda\xe3'\x10&\x87\\=Q\x01\x87t\xe0W\xf0gr\x05>\x9b)\xccqM\x15\xd2 \xc2vt\x1ey\xf8\\6\xe2DJ\x91\x01#\xd6W=\xcb~\x8cZZ\x1f\xde\xc7\xe0\x829\xc3lei\xbb\xb4\xe4\x9c\xe0\x0c\xaf\x08\x9fT\xdc\x9a\x07\xf8\x8f\xb8\x0c'8\x99\xcb\x19\x0f~\xe0\xad\x00f?[Y\x11&\xdd\x12\x0fG\x04^l\xa3H\x01\x95\x95\xc5D\xd0\x8b\xc8}\xf8\xd8\x03\xc3\xf0\x84\xa9\xb8\xafL\xbb\xd6(\xc1Kae:\xa3p\xd8\x0e\x0c\x82\xd2\xeb\xbcD\x0b|G\xe4RWYsL]\xc9\x8dM\xd6\xe8\x81T\x91\x19\xc3\xa9\xef\x07P\xa5{\xa5\xf2\xa0U\xbc\x94aKi\xeb\x02\xdf\xe2\xac\xa8\xa9q:\xf1\xc2\xb3]\xe9\xec+\\$$\x10Mvm\xb8Qy\x0e\xff\x1c\xdf\x13c$\xc9a\x1e#F\xd5\x113#~\xb1\x90\x15\xf7e~o\x17\x00h?g\xe7\xec$\xfd\xb7\xe4tEd2\xb5\x08\xed\xba\xb4\"\x82\x11\x96\x11eV\x1d\x89\xf6\xd3\xc4\x97a\xc5R\x91\xb7}eV\x9aX\x94\xf7\xbe\xb6\xc8\xcd\xa5\xcd(\xad\x92Z\xe0\x86E88c\x1c\xc2\xe6 \xc0\x86\x82\xd8O\x8f\x7f\x85\xd5\x0e\xc4\xb2\x8a@\xb8\x03\x18\xe4\xccFB\x13\xac\xb9\x88E&l\x95\xa6\x88\x90\xeb\xa094<\xc1\x04\x05\xe2\n$xiG8\xd3\x0dz2\xde\x00\xfbWP\xab\xc8\x08\x8cC\xf2\x9f\xcf\x83G\x06\xb2\x8dC\xc2x'\xf9\x14\x84W\xb6+\xf0\xc4\xf9\x14\x0e\xdc\x003g\x08\xd5#\xc4n\xf4\xdb5#-\x84!\xb4n\x14\xbc\xe1](\x01\x92U\x90\xe0\x98\xfd\x96,\xa0h\xec\x9e\xb4\x90\x99\x04\xe9J\x04\xd4\x97\x08AB\xaf\xc5\x03\\\x1a\x08.'\xd0v\x82\xb1\xc5\xa3g*\xae;\xd1\xe3P\x078\xce\xb4\x90\x1e\xaeIM`@>\xc1\xb4)\xda=^\x8d\xa1[\x11ziJ\x0b\xa7|\xe4E2\x8c\xf2\x0d\xf5 r/!7\xf9\x9d\x86Dc\x9c\xb5\x9c@\xc7;q\xb9\xa3\xd4\xb6|\x00k\xd34\x82\xad\x01\x14!P\xae\xa3\x1e\x8d\xf9\xe2\x17Z\xa8\xe3\xba\x88*\xa7\xce\xb4\xc7\x15\xd4\xeepjc\xc5\xd4\x06\xd8\x83OI\xaf\x9eg;\xc4\xb3.\xe2\x08\xd0h\xcf\xf1U+B}(/c\x8a\x0b\xc8\xba\xe1<\x81(\xad \xb8M\xa8\x1fi\xe1\x0c\xa7~C\xc5\x05X^.V@\xf0\x95NG\x7fw<\xed\xbb\xdaB{< ;\xd0\x1fO\x8d\xeem\x90\xc7\xfd\xaf\xdd\xb9\x153\xfa\xb8!\xfb\x02\x19\xdf:\x1bI\xdb>z8\xc5\xa4\x99\xd5&\xbeYV:E\xe8/^/@f\x8b\x07a\xc9\x90zG\x0d\x8b\x93\xbc.\xd1]Q>\x14\xbch,\xfa\xca,\x98`\x9c\xc5S\xf8|a\x1ck2\x06\xd4\xcaU\x17\x16*U\xa0\x95\x0e\x10\x91y\x9a\xd7\xe85/6\x99\xd19\x9ae9%\x15I\xd1\xdd\xbdR\xcd\x94T\x98\x96\x95?\xdeK\x06\x93\x07\xd9\x05\"P\x02R\x82\xc22Y\x15eb\xaa\x835\x17PS\xb3\xd8\xbaF*y\x80]9\x9b\xc9P6\xbbu%\x94Y\xd1E1\x9a'\x05\x98\xe7\x00\\\x8a\x08<\x0d\x08u\xae\xc6;Q\x89|:\xd4\x96\x8dB\x93\x13\x1b\xfc\xdd\x1c\xd7\xf3\xf1I\xa5\xb2\x11='\xa20\x8a\xab\xa8\xb5\x16\xcd\x7f\x88 E4\x08/\xc0\x14`\x11q\xe6\xb8~\xd6\xc8\xbff\x03\xf3r\xcf\xe1\xf0#\xf6\xe8\x083\xde6\xc0\x9e\xcd\xa4\\,\xca\x82\x8f\x17\x0e\xeb\x14\xed\xcb\x9e\x84\x1dbh\x11a\xa6\xc8h\xae;i \xb9\x15V\x8f.\x1a\x8d^\x0b\xb0\xbf5\xb7\xac\x9cO\x13\xcd\x9a\xe0u\xabz\x98\xe8\xcd\x8a\xfb\xf2.\xb0\x96\xb2b\xb9\xa2\xcf6\xe7\n\xb2\x0bzM<\xcc\x82\xb4\x9f36\xed\xa2\x8a\x90\xaa6\xce\xbb\x14e\xc5\x1d\x9a\xe2\xe4N\xd6s\x07@\xe2a\x06<{\x82/\x9a\xb0\x93J\x17\xd2\x8f{\xa9z\xb2\x00h\x1e\x88\x07\xbeU\x1c\xe2[*\xfa&\x8c\xfb+(\xf7\xe1KM\xf14\xcf\xea9IU\x9f_\xfeqszv\xf1\xed\xfa\xe6\xea\xfa\xe4\xfa\xdbU\xaf\x942\x1f\x8c\x8b\xcb\xf3\x8b\xf3\xab\x0d\x00\x88w\xd1\xcfuJ\xdc\xa6\x84\xf4\x97\xe4Q\xe6Af \x02\xc2\xc8\x84\x02\xe4t\xf0\x80-\x9cg\xe9dU\x88\xf3\xa2X\xb7l\xed\x00>\x8eL\xa5\x9b\xc7\xea\xaf\xed\x9c-c\xc7\x14\x08W\xd3\x8cV\xb8Z7\x12\x8c\x17\x06\xd4g>\xb1\x15\x86\xe3(\xde\xb91\x14\xef\xdc\xf8ebC[\x16\xd8\xb2\"\xf7Y\xb9\xaa\xf3ug\xab\x1byNA\\\xa5\xb0\xb9\xaepr'\x9cZ\xc2r\xd2'@\xa2t\x12\xf4T\x06\x92^\xe6 \x1d;\x9b\xd1\x96\xcc3r/\xfa\x92\x94+\x1a\x13;e\x01\xc2N@z\xb6V\xe1\x13\xeb\xfa\xff\x91z\x9e\xaa\"\xa6\x82\x9d\xb0\xca \xe2\x11_L\xb4\x17\xa0\xed\x86z\x02\x0dz\xc5a*\xba\xd4\x12l\xdc\x18\xcd\x81\x10\x00\xacIQ\x92\xbc\x91[9+nU\xab\x9b\xbd\x19\xce\xf2U\x058B\"\xa6\x86\x97\xa4HA\x13\xd9g\xd6\xfb(\xdd\xabo\x7f\x0e\xd2R\xdd\xaf/N\xae`Y\xee\xf6gW\xff{z1\xe0\xb3\xaf'\xa7\x7fF?3t\xf2P:\x87ic\xcfh\x90I\xf1~li`\xb4*j\x12\xb7\xd5\xf8\x85D\x9f\xc4\xf6\xee\x94\xb6\x99\xc7\xdeY*\x8c\x18\xbb\x89i\xd0\xa6\xe7\xd3\x90!\xd9rh\x0f\xc9\xde\x19Cj\x92&IY\xd4Y\xaa\xbc\x0f|\xf0\xbb\x8c\xdfF\xa4\xa2\xff\xd5\"\xabk\xb69\xa5>*+\x94\x92\x1c\xafI\n\xcc-\xf4 \xc9\x16_\x1bI\xf6\xce\xcb\x97\xe6N\xd0\x899\x93\x19\xbe\x18r\xf5@\x85\x9e8T\x9d\x0b\xf9D\x8a\x04/\xebU\xaeQ\x92r\x8b\x9fb!~D\xd4X\x1e\x804a\x18\x8e\x02\x87\xd7\xf5o\xa8i\xfe\xbf\xca)\x17\xd2\x92e\xa2\x89\xae\x16\xd7\x91Yb?\x15\x07\x19\xf5AS\x0f8\x83\x99\x0e\xcf\xa3\xd8Q\x1bK\xc5\xc0\xe6.\x03\xa0gkg]$g\xed#\xd5&\xcf\x0d(>\xdb'\xfaJ\xa4\x9cq\xcb\x95O9\xa6\x14's1\x9aNEe{\x93\xe0\xc4_\xc1\xda\xde1r\x1d\xf3\xb3{4\xe3\xdab\xb1\xc4Hr\xae,\xa4CC\xbe\x96iJn\x92\xb5\xe3j\x94\x08#\x1bZ$\xb4\xc8\x08!\xf2\x02\xb4\x96\xc0\x96C\x89@>\xbc-n\x14=\xbe7:HNh4\xe2\xa7\x99\x86]\x0e\xf5ic9<\xc6GC\x82\xb0\x04\x16Q\xb8\x0bl\x19#\xce\xb4Y6@\xf6\x08gA\xd47\xb9\x0b\xfc1PU\x0c\x92^?\xfej+\x1cz\x82P&c\xe4X\x0c\xd3\x18;\xe5\x19\xa61\x00\xa8\x02i \x04\xd4\x14\xe8%\x8bA>\x8f@]\xf4t\xf0\x92\xc50\x88Wch\x17\x84^\xb2\x18\xe0\x94\x8f\xbcH\x86Q\xbea0(\xea\x93\xc5 \xe5\xf2\x989\x0c\x0e\x90\xe3e0H\xfb\xfa1\xf3\x17lzF\xb0,\x80\xa2\x03\xcao\xd4\xc11r: \xef\x83~\x99\x0b\xad\xc9\x8e\xab\xa4]\xe1\xd1\xc6\x8a\xc8\x06\x07\xe6\xd0V\x02\xcf\xb7\xcf\xadm\xe5+\x0c\xe4\xe2s9\x029\xf0u\x9c\x83\x82\x90F`XL\x9f\x03\xd94\x94\xfeQ49\x94\xeeN*\xc4\x98g$'p\xefY \x04\x8a\x0b\\\x94\xa5\xfe3S\x94d\x90\xa6C@m\x87zf\xec!\xf8\xfaA\xf0\xad\x86zN\x0c\xea\x91\xc1\x07\x06\xd4W\x17\xa2a\x99|hg9\x18\xd3\x91Q\x80\xb4WN\x16\x82e2=S^\x0e\xd3\xa0]P\x0e-\xda\x13B\xbf9\x88)\x0f\xd4\x8f\xe5\x9b\xf11\xaaJ\xa2\xf0z\xe7I\xa2\xde\xd9\x82\xe8192\xc2a\x11\xb0T\x87f\x0f\x8aka\x7f\xf2\xa0<\xcem#w\xd0\x89\x91\x18/\x90O\xa8~ Q\xd5\xca\xb8v\xb1Q\xa7'\xbe\xcef\xaa\x9f3I\x7f\xeb&!\xf2\xbft\x97L\xebn\x89\xffJ\x84\xe4%\xe5r\xddX|\xe2\x0fv\xaa\x93@\xca\x97\xf7\x181 \xc2\x86@\xd8o\x1a]\xd9\xf1Y@\xc6 (\xc1\x05\"\x19/\xc2=%\x08\xf3E\xbc\x87\xc8\x9b[\xdf\x96\xfct\xf0\xe9\xf7\x8fS|\xb8\x7f4{w\xb4\xff\xfe\xe8\x13\xde\xff\xf8\x01\xff\xbe?# >\x98\xbe=:8$oE\x15v%!\x12\x7f{8\xa9\xd4\xe5\x80!\\\x0f~\xfc\xba%o\x7f\xe1_t\xf5\xe1\x88\xfe<\xfay\x94\xe7\xf7G?\x93O\xbfh\xfd\xe3g~\xf7@r\x17\xc6\xb1T\xc4\xb1\xd8\xd9\x14\x99\xeb\xcd\xd0\xa3\x8fo\xdf\xcd>N\x93\xfd\x0fo?\xfc\xbe\xff\x9eL\x8f\xf6?\x1d\x1d\xcc\xf6\x0f\x0f\x0e\x0f>\xfc~\x90\x1c\x92\xa4\xc5P1\xd8F,\x15 \x0e~\xfc\xf42\xf5S\xfd#O\xe6\xef\xea\x9f\x0f\xc5\xfb\xf7\xdf\x8f\xde~\xffuK?V\xf5\xfc\xfe\xc7zV}O*\x1f9\xbc\xa30cBY\xe4\xeb\x86\x05(\xe3)p\x86#\x1e\xe7u\xe9\xc3O6|p\n\xbe\xe8=\xd3Hs\xda\xbaU\xd2\xecWB\xd3\xe2s\x08\xc4\xc1\x8fC/\x97\x1f\xde\x1f\xa6?\x0e\xbf\xa7\xf7\x8b\x14\xffZ=\xfcJp\x9a\xce\xe7\x1fo\x17\xabw\x8b\xe4\x17y\x17`\x80\xff\xf4=.\x03\xccS\xb3\xc8\x1a\xb3|\x81\xb4D\xb3\xac\xe0\x021\xb22\xb9\xde(\xa4-+\xe6W&\x19;>\x90\xd9I\xc2\x83\x1a\"3\xd4q\x00F\xa75\x94\x98\xeaY\x8eo9\xbe\xbaAA\xa9~\x86h\xa4\xe5\xa5\xd4]2\x9c\xa9&F\x1a\xbd:X\xd6\xcb\xb2\xa8\x83dKE\xf88\x84\x9bj9Fzp\xad\xa83^O\xa2\xc9O\x81G\xd0]0\x16\xd1\xad\xc1\xfcD\xcb\x1fr\xec\xbd\x17\xae\x1c\x04\x0fH\x8a\x11\xd90\xdbc\x8e\xa0\x11\x89l\x0d\x06\x99Yo\x0e\xb2\x86Q\xa0u\xb9\xaa\xa4\xcdc\x93\x18\xc6J\x16\xb1\xa8/%{P\x13\x02(\xfe\xcf\xc8\x96a\xe3\x04\xfdkE\xaa\xf5D}\x83./>\xb7\xc0\x89|\xd3\x06\x01\x15\xf0k\xfc\xcc\xc2\xe7\xa4@\xab\x82\xfc\\\x92\x84\x19n\xa2\xf5\x93k\xa6\xeadN\x16\xd8\x9e\x18\xaf\x1d\xe7\xb7\xe1\xf8\x00\xdd\xe9\x0d\x08\xe5\xa4L\x1d\"N|\xe0+a\xae\xce\xceYA\xdf\x1dv\x18\xe4)\xff\x1d\xc0!%\x14g\xf9\x8e\x94\xea`\x9f\xdf\xac*o\xd7\x99\xa8\x82\xe3\x19\xae\x83\xbfvz&\x96\xb8\xc2\x0bBIe\xe0\xbc/\x92z\xb5Y\xe3[\x81\xad\x1d\xd1\xd7\xf8\x1efr\x87,\xc1!&uV\x1c\xa3%\xa6f\xb0&\x13\x0dYE\xd2cD\xab\x95\xa9\x1a\x9c,\xd6\xdc\xd2\xc62\x94_\xbd\xad\xeb\xa16\xb5\xe6\x99\x05\xcd\xc1\xbf\xb1\xed\xe7\x0d\xacf\x97\xad\xcc\xe6\xea\x07\x93\xa3\xce\xc9\x9a\xe1\xbc\x06\xcf\x96a\x06\x03\xa7k\xb0\xe1<\xae\xb9<>\x0fZ\x97E\x00\x1e\xf4\xb7\x9d\x0d+\xd99\xcb]\x8byD:-K\x18H\xe9P\xeb\xd9\xb0\x93-xp\xf3q\x08\xe1m\xd3\xaaM\xb9\xb4c{\xd2\xde\xc7\x806L\xe5\x1d\xa0\xbbe\x0d\x03\xe9\x1ehC7\xd6r\x9b\xf2\xad\xd3\xd92\x88\x81t\x0e2\xa3\x0d\x83\xd9\x02\xe61\x9e7\xa7\x92\xe2[\xcb&\xf9\x97\x846a2\x83\x14\xb8H\xc8dA(N1\xc5\x93\xfb\x83 \xdf~\xf5\x04\xe7\xd2\xbe\xba%\xdav\xaeW\x8b\x05\xae\xd6\xc7\xa2QF}\x92\xe7\xa8\"\xb4\xca\xc8=a\xaa'\x17[W\xfb;u\x11\x98\xd3\xd4\xf8\xe4\x1f\x8a\x081\xa5\x06n\xaf\x0e\xdf\xbe}\xe5\xb7\xd3\x8d,\xb2m\x1a\xe8\x82\x86\xdd\xb0t\x03\xee\x8d(l\x04\x80\x8f\xa2\x0ee\xf1\x00lb\x04\xbf\xb1\x8b' \xb1\xe7\x9b(9w\xfaG\x931,\x94\x1bB\xa7\x8be\xce;#\xd5\xa8N\xef\xde\x9cD\x92`\x10\xdfG\x94T3\x9c\x88\x83$\xaf\xc6&\xfa\xc1\x88o\xd9\xfa\xad\x88\xdeY\xed\xcd\xd9~>\x97\xf5\xa2\xf4\x0fX?Y\xe6\x18\x8c\xb5\x8d\x96\xad\xbb\x89_\xfa\x1e(v;e}+\xee}x\x8e8Qs\x83\xf3\xbc|\x90\xd9\xfe2\xe7.\x0c0\xe06C\xa2\xb7\xee\xb3M\xe4\x07\x96\x9a\x03\xaf\x07\xf9c1\xdd\xf8\xa5\xa5\xbe\xe3\x93>\x8c\x84\xa7\xc7\x0f\xecn\xde\xee\xb7\xfc\xd2R\xdf\xf9\xd1KK}\xf3yi\xa9\xef\xd80/-\xf5{\x8f\xf1\xd2R\xff\xa5\xa5\xfeKK\xfd\x97\x96\xfa\xff_k\xa9\xdfG\xff]s\x07\x9bj\xaf\xaf\x97;\xa2\xe5\x12\xe5\xe4\x9e\xe4\xf2\x00\x02\x89\xdbS>\xbc8\x9a\x82\xa9|\x9e\xba\xd5\xa7\xb5\xa3\xc3\x0b\x86\xdf_\xde\xf0\xf5x\x038Xn\x83#\xcdf\xb6\x15\x16[\x13\xa2\x80p\x8b\xb0\xc8\xaa5\xbc;W\x14\x17)\xaeRS\xc9H\xbd'\x1a'/pu\x17i\xdb\xad~\x1f\xde,l\x02\xeb\xd5rYVVa:\x8e\xff\x1by\xeb\x86)\xad\xb2\xe9\x8a\x12\xb4\x08\xaeL\xa4\xef\xe6\x929.nI\x8a\xa6k\xce\x0d\xa9\x1b\x9a\xf2Ce\x910K\x06\xc5\xbc!\xc4\x11D\xab\x1e\xe9\xa8\xba\xe1\x12\xfc\xa6*\xf3|\xb5\x8c/\x81\xb8\xae\xe8\xb3\x06\xfe\x96\xaa\x04\xe7\xb9\x16\x0ej\x7f\xc8+\xe6\"E\x19\xad\xb5\x90\x08\x82\x93m(\x90\x12\xbc\x16\xa8W\xb5\x12\xbf\xb3\x8c\xe4i\xa0\xcd4R\xd7\xa58\xafKD\n<\xcd\x85\xc7\x80 n\xa5\xdb\xfe\x8bV+\xe5\x02\x13p\xc3\xeb\xa4hz\x99HJ}S\x03e\xa0h5\xad\x9bq\xa3\xaa,\xa9Q\xeb\x93\xdb\xd8()\xf3\x9cpS*\xe4%\xd17F\x0f\x85Xue\xc1k\xb7\xf3\x1e\xd7At\x95\xebw\x94\xccb\x0bX\xe3E\xdc\xb4tQP\x14\x02\x1cu\x10\x17\xdd\xe3\xbb\xc0-\xa6\x9a\x17\xf8t\x83\xfa\x13z\x06\xe2iM[\xa4&\"5ZH\xa2\xc1)\xbe\n\x10\x80\x1f\xe2\x1f\xb1\xcc\x90\x1d\xe0I\x83(\n\xd5\x94\x18\x8d7\xb1\xf4! K\xfa\xd3\x1aM\x15\x1a\x93\xca\x91&\xbe?\x95\x1b\xa6\xff8\x96EH\x8eCrj\xa14t!F$\xba\x17R\xb7J\x84\xe3\xe6\xe9Q\xe4; _\x16\xb8\x12\xb6&\x02\"\xc9\xb1\x91\x1b2\xd4\xbe\x94\x83\xaa\x0cx:\xec\x8e0h$\xe5\x11M/\xb4\x075\xfe7\x92H\xd9:\x9fZ(\xdbZE\xbf\x0e\x02l\x958\xe8\xcf\xb9'S2\xb0\xa4\xd4\xed,\x97\x91\x16\xc8@\xa2GQ<\x9e5\xe4\"\xdfB3\xde\x9421\x0f\x87n\x98]\x03Y\xf8\xab\x18E\xba\xbddbF\x1b\xa9\xe7\xb9%t\xbe\xa4\xb7\xa8g,\"\x07\xc5\xe5y`A\xd2[\xc4\xb3\xc4\xfc\xca\x91\xa1\xb6\x01\xee\x0d\x14\xed\x1cPN\x0b\xf3oM\xba\x81J\x8c \xe3\xef\x96YQ\xf3*n\\\xdd\x91\xb5_\xcc\x81\x84\x1cH\x07\xc2\x98\x87\x04Bb\xc2\x85\x17\xb2\"tU\xc9L\xf1\x0b|KT\x92\xd1\x9b\x82\xfc\xa47\xec\xc7\xb4\x0c@\x9b\x92\xdb\xac\x089\x9bxl\xa6\xaaM\xce`\xb2Y\"hQ\xd6\x14\x91\xd9,K2R\xd0|\xfd\x06\x9d\x17\xb9\xf4\xcc\x84\xe2]\xca\xd9L\xdc_3:B\xe3\xd6\xf3r\x95\xa7hJB~B\x01m\xa4\xf9Ye\x05\xfd\xf0~\x84\x19\x924\xf2I*V\x0b~\xb5-\xdf _2.\x18]\xa2Q\xcc\x9c\x14\x9c\x15~pY\x8dV\x05\xbe\xc7Y\x8e\xa79 z\x06O\xf9\xa89\xef\xf6\xa1\xe6\x86\x8dY\xa0\x15o pG\x86M\x94\x9c\x8d\xd0\xd0\xe1\x89\xca\xb3E\xb6s\xf3\xc4\x91RV\x04-)\xce\x8d\x92\x0c\xaa>?-\x19i\xc6.\x0b\x00\xa4\xba\xae?\xdf$\xe1\xa9\x9a\xa1\x9c\xcc(\"\x8b%]\xa3\x8c\xa2\x87,\xcfU@\x8c\xa8\x12/6\xb8@\x80\xcd\xc54\xb4J\x08N\xe6\x08/\x97\xbe\x19\xe0\xd7\x057\x9c\xca\xd8<\xc4\xbc\xe8p\x0e\x1b\x832>\xf3\x1dP\xf2d)\xd4\xba\x87\xc7\xb1\x9aU\x92\xaf\x0c\x84\x14\x0dR\xb9\x85\x98\x8c\x05\x06\xca\xf4i\xcf1\xbflCzk\xb1\x15\x16\x00fh\xa7\xac@\xdfN\xeb\xe0\xfc\xb6H\xe7w'\xcc\x80\x10Y\x98|\xdb7r\x82\x89\x827\xe84t\xd5\x9b\xd5(\xbb-\xca\xca\x94\x19\xe1\x9f\x07\xb6cE\xd8\xd9 \x10\x129\xf6B\x90\x03\xb6\x17A\xd6\xec3\\\x91\xd6^\x0bQ'\xeef\xd9\xf8\xa2\x97\x10*\xab\x94To\xfe\x11b\xc9UV$\xe4\x18%<\xb4y\xbfN\xef\xd0\xdb7\xef\xdf9?\x88\xdd\xfe\x0bE\xab\x8d/\x817YLI\x9a\nM|{y\xf1Y\x9bV2\x1f\xb5\x0e\xac/-\xad\xbd\x15!\xf4\xe2{\x83\xbet<\x18!\xd3,>I\xa6\xd9\xa5\xc2\xa2\xb8\xd7\xc1\\\xf0\x8dK\x8co&\xa7=\xe97\x9078>(;&dR\x074G\xd4\xfa\xb2\xf8\xf3\xff\xf3\xcd\xb8\xb6\xa6\xa4\xba\x10\x86\x15\xbf\xce\xc3\xb5\x0c+2V\xc5\x9b\xa0\xe1\xc5m\xaa\xa8Au*u\x02_Z\\I\xf8\xf45\x15\x91\xfe\x15AE)n\xc5\xbc\xe78\x84\x02*\x00\xcc\xcc\x80\n\x8em\x1d-\x11}\n\xb7\x11\xc7^zMF\x1br\xd6\xb7wx\x8f$B\xf7\xf8i\\6\xffe6\x958\x7f\xa4\xa8d\xfc{\xc8ZE\x96\xc2\xfbFg\xfb\xf4J\xeaW\x1f\xbdd\xf5\xbfd\xf5;\xff\xbeKY\xfd/\xb9\x91!:\x07\xf9`\x1e=7\xb2\xa1\xd20 \xec\xe3fH\xff\x0d\xf05H\x8f\x82 e\x88\x0b\xa1\xe5(0\xc1y=\x03C\xd8\xd5\xd90N{\xc1\xc1D\x81\x1fp\xb1\x0c\xf1\x08\x84\xcf\xfd}O\xfaQ~\xda\xe0\xb7\xcc\xdc\x96\xfd\xe0`/?\x9b\x03\xb9;\xec\x1co\x9c\xd6-h\x8e\x93\xfb\xa0\xb3\xba\xf3D\xfe\xc8\\4\x8d\xa3\xe6\xfb\x10/\xfb\x9e\xd8\xbb\xe7r\x0b\x9c\xf3\x8c\xde\xffTn\x1fE,`\xdds\xf8\xa0\x93\xb7q\xbe\xb6\x80\xb9\xcf\xda\xdd\xd3\xf5\x90\x89\x05\x88jyn\x06N\xde\x90S\xb6\xab\xd8F\xec\\\x1d=Io\xce\x8daI\xfdK\x92L\xfe\xddNN\xfe\x8f\x80\xe3J\xf37\xf8\xc7m\xf3++\xb8@\xb0\xa8V\x15hZ\xa1\x07\xca\xb4\xe7\x11\xfe\x1a\x8c\xfd\x9b\xe6\xe2\xcf7m\xd7s\xd2\xedp \xa8\xf2\x93&\x1f\xdf\x11\xfc\xfb\xdb}\x82\x93t\xff\xfd\xdb\x19\xd9\xff\x84\xd3\xd9\xfeA2\xfbp\xf0\xfe\xe3t\xf6\x11\x1f:\xca\x90z\xf0t\xd7\xa4\xd1<=\xf8Q<\xdc~\xfcP\xd4\x98\xfe\xd9/F\xaa%\xf8\x18<\xeb\".\xf9\xd7\x03\x8c\xa3\xd8\xf1`^>A\xed\xc9.\x02\xb1\xab\xb5 \xb8M\xa8\x1fi\xe1\x0c\xa7~\xa3\xdb6\xd0\xf2r\xb1\x02\x82\xaf\xd3d\xf0\x97\xac\x0cJ\xc7\x96T,RT\x97\x0b\x82\xc8OZa\xe3\xfaI\x98\n\x99\xa3\xeaP\x1ca\x8bp\xd1I\xbaX\x1bI\xa1*\xf5(\x80\xa7\x85e\xbbS\x83M\xc2k\x9e\x12\xc9S\xf1I\xfa[\x1b_3\x8f\xec\xe5Zs\x84\xfd\x05\x14\xcc\xa3_k\x8ek\xefG\x04\xc3\x99<\x0e\\\xca\xde\xf6\xech\xa5\xea\xf7$\x15\xc1:\xf98P\x8cS<\x1d[8\xd8\x0e4+\x98\x95\x1e's\xb4k\x8b\xe8]+l\x9d\x89'6E\xe2\x01N\x94\xfc\xb1q<\xd3+\x87s)\xf2)\x1b%zFl~\xda\x17\xa1\xa8\x83\x06q7\x88\xc6\x02\xbd\xa6\xebe\x96\xe0<_#\xccXJKy\xe6\x8czl\xad\x13o\xccy%\xc5]x\xa7\x8b\xa7\x17\xd9\xc0]/\x9e><\x8a\xba5^\x7f\x05\xb1\xe8K\xcdN\xe5Y='\xa9\xdc\xb5\xde\xd8]\xf5\xc4\xdc\x1b\xe2\xe9\xc5\xa6\xbe\x94+\x7f\x08.\x8cN[\xcb\x8c$\\\xfa\x18'M\x00<\xc6(tQ\x95\xcb\xb2\x86\xf2\x00\x8a\xee)\xdbpn\x7f\x05\xe6\xcbx\xafY\xe9\xdc\xfb\x10\x81'\x9c\x16F\x07\xa1\xd72C\xbe\xe4n\xe4r6\x93\xad\xa0\xc3\xf5n\x91\xb8\xee\xca\n\xc2o\xef\xb9T\x88\xfc\\\xd7H\xdaXE\x9c\xf0\xb2\x0c|\x96\xb8g\xc5\xf2n\xd6\x98f5\xd3w\xdc\x8f\x8e\x97\xcb\xfc\x8fn\xa4\xf0\xda\x85\x92\xd5\x19O\xfc\xb4\xb9\x0eDs|\x1f3-xx6\x13\xb2L\x0e\x86\xc4\xe0\xb2,\xeal\x9a\x8bV\x8b\x11\x8b}\xe4\x93DT\\A\x04\xd6K\x00\x94\xe7\xa3\x97\x00\xa8\x97\x00(\xe7\xf3\x12\x00\xf5\x12\x00\xf5\x12\x00\x05G\xe4%\x00*\xeaCz \x80\nYM\x02\xbfkk\x99\x1a\x96W\xfb\xc0\xe8\x01\x15'\xd3\xe5\x0d0\x83D\xec\x83h8\xaeC\xba\xb1E\xcd<\x1eI%r\xb6':\xd2D81&2L\xc4\x03\x08\xaa\x1d;>o+\xfe\xc3u\x90\xf6\x82\nF\x7f\x18w;c\xc5~8@\x8e\x17\xf9\xe1\xa2|\xcbq\x1f6=\xf1\xe3@\xd4\x8a\x07:\x82\xa1\xfcF\x1d\x1c\xbd1\x1f\x00\x17R\xdd/\xe2\xa35\xd9\xbb\x1c\xef\xe1Dux\xb4\x87\x0d\x0e\xcc\xa1\xad\\\xd8o\x9f[\xdb\x8a\xf3\x18\xc8\xc59\xae\xe7$\x1d\xcbS\xbb}\xf6\x19\xf8\xaa\x15'^\x85\xdd\x11\xa8\x9bb>\x84aO\x10\x14\xd3\x1e>\x16\x12\x13]JP\xba;!$!\x95\x86zR\xe5\x04\x8e\xb2\xbej\xcd\x04\xc5\x05.\xca\xd2\xc6\xe1e\x14c\x87\x91\x0c\xd2t\x08\xa8\xedP\xcfHG\x04_?\x08\xbe\xd5P\xcf\x89A=\"\x1f\xc1\x80\xfa\xeaB4,\x02\x12\xed,\x07c:2\n\xb0_,\x1b\x82E\x80=S^\x0e\xd3\xa0]P\x0e-\xda\x13B\xbf9\x88)\x0f\xd4\x8f\xe5\x9b\xf11\xaaJ\xa2\xf0z\xc7\x97\xa2\xdeQ\x96\xe819\xb2a\xc4e\x17\xe0\xa8Q\x97\x8e\x13\xb8?\xe62p:\xa9\xb7\x1fqiU\xcb\xf7\xc6[:k\xe3\xbb\xbb\xa0\x0e\x8e\xb6|^\xed\xcckP|dt?\xc4'\x089\x06\x83\xb4\x86\xb0\x9f\x81\x8d\"\xdc\xc0,t|q3\xeef\x12\xf6\xc3\x07\xa9\xa1\xad%\xba\xdf\xbb\x1bB\x84\xa6b\xbc\xae\xebI7T9\xd4\xf8\xcb\x03\x8dz\xd3zB5\xef\x90\xbfY7\x05w\xa8O\x02\xd1\xcdh\x0b\x0c\xebH\x9aH\x9f4\x1f\xcb\xdc\xb2(\xc8,\x0e\xcd\x0b\xce\xcf\xacV\x17\xbb\xed\xf2i`\xcb0\xaf\x062!\x1a\xfc\xba\x9d\xe52\xd2\x02\x19H\xf4\x86\xf1\xad\xc15\xe4\"\x1f\x82fW\xd5\xfb\x83Z\xfdr\xae%\xdf6\x8ciu]\x05i3ZE\xaf\x86\xae\xc3\xd4\xf3\xdc\xe2O_B\xd3\xd43\x16\x91\x83\xee\x95=\xb0 \xa1i\xe2Yb\xee\xb8\xf2\xde\xcc\xc0po\xa0h\xeb\xbb\xe4\xdf\xe0\xdc\xfc[\x13\x16\xe4 eS\x8f\xc4\xdf-(\xa36]\xdc\xa2\xbb#k\xbfl\x05IV\x90\xe2\x851\x0f \x84\xc4\x84\x8brL\x15\xa1\xff\x7f\xf6\xdem9n\x1cI\x00}\xef\xaf\xc0\xc3\x89\xb0{\x8f\xae\xb6\xd5m+b\x1e4n{W\xb1=\xb6F\x92{\xce>iQ$\xaa\x8a\x16\x8b,\xf3\"\xa94;\xff~\x02W\x02$.I\x16K*\xf5\x14#&\xa6]\"\x13\xc8D\"o\xc8L\xd4E\xc6k\xd2.\xf0\x8c\xc8\xb4\xc0\x83\x8c\x83\xc4\xb1\xba\x12\xdaH\xebS'Y\xf5\xcb\xbb\x11VH\xe0\xc8\x16)\xab\x17,P*~\xe3\xa15\x9cQ\xbcX\xbc\x8b5\xd8\xa5\xa4p\x83KJTg\xf8\x0e')\x9e\xa4\xe4\xc0G\xb4s6jJ\x1d \xb56t\xcc\x0c\xd5T\xdb\xd1\x81\x06-\x94X\x0d\xdf\xd0\xfe\x85J\x93E\xb2u\xeb\xc4&%M\x97*\xafp\xaa\xd5\x93\x08MH\xa5\xe8\xc4\xd8e\x1e\x80BI\xd4)\xdf$\xfe\xa5\x9a\xa2\x94L+D\x16\xcbj\x85\x12\xd1zY\x1c\xa3\xf0\x96j|\x83\xf3 \xd0\xb5\x98\xf8\xb8\x84\xe0h\x8e\xf0r\xe9Z\x01\x16\xb4\xbdaX\x86\xd6\xc1\xa7\xa0P/\nk\x83R:\xb3\x1d\x90\xb3\x94E\xd4\x8a\xf4\xe2PA\xae\xa0+\x05!D\x83,W\xf0|\x84\xf9\x0c\xa4\xe9\xd3^c\x16ZCjkQ\x0e\xf3\x00\xd3\xb4S\x92\xa1o\xe7\xa5w}[\xa8\xe7t\xd3\x15,mJ\xf5\xd5n\xe4\x04\x15\x05\x07\xe8\xdc\x17TOJ\x94\xcc\xb2\xbc\xd0e\x86\xffu\xcfv,\x08uH\xfd /\xde\xea\xab?1\x15u\xb3\xa9\xf9\xdeG\xcb\xbe\xbe|\xd7c7\xc0Y\xbd\xf7\xfe\xfe\xba\xe9\xa4\x18\xc0\xba\x1e\xfa \x9f\\\xf3\xbc\x0d`v/\xbc\xebw\x0fYX\x80\xa8\x16\x1e5p\xf1\x86\xf8\xdf\xb2\xa0P\x87\x13\xf2\xb8\x83>\xf6\xfa\xd4\xe8]\xaeF\xca2\xc9\xb3\xc3\x7f\x8a\xff`\xa7\xb4\xff\xe2Ul\x1c\x8e\xb3x\x0d\x95\x04\x17\xd1\\&\x99\xf2\xd39\xb9\xb6.r_\xab\xb4\x93$\xde\xa3\x14\x16>u\xbc\xc73\xd1\x9aBd\xfe\x96\xa5\x18\xf9\xc3\xf1\x87_\xdfO\xf0\x9b\xfd\x93\xe9\xdb\x93\xfdw'\x1f\xf0\xfe\xfb_\xf0\xaf\xfbS\x12\xe1\xe3\xc9\xd1\xc9\xf1\x1br\x84\x9a\x19\xa92\xe3f-\x9az\xe3\xe3\x1f\x8f3r\xf4\x88\x1f\xab\xfa\x97\x93\xea\xe1\xe4\xe1$M\xefN\x1e\xa2\x0f\x8fU\xf9\xe3!\xbd\xbd'\xe9\x01\x9f3'\x0f\x03\xb6\xa7\xfb^\xad\xf9\xb3\njy\xba\xad}\xd3\x9d\x80\xfa\x87x\xed\xf8\xc7\x83s*\x1f\xca\x1fi4\x7f[>\xdcg\xef\xde}?9\xfa\xfe8\xab\xde\x17\xe5\xfc\xee\xc7jZ|\x8f\n6G\x05PT\xd6\xca\xa9\xda\xa6\xd8LE\xccU4\xe3\xb07{\xe1\x7f<\xfe\xf1\xc69\xc1\xfbwo\xe2\x1fo\xbe\xc7w\x8b\x18?\xd6\xf7\x8f\x11\x8e\xe3\xf9\xfc\xfdlQ\xbf]D\x8f\xe4\xad\xbe\x13\xfe\x83\xea\x05&]\xc4\n\x89<\x9bf\x9aLH\n.)\xd5\x8e;p\x80\xd0\x18\xb7\x0dFr\x918\xd7\xe6\xb6\x14\x85\xcd\xbfQ\xf0\xc2\xa3h4\x85\x0e\"H\xaa\xc5\x82\\c\xb0\xa0\x043B\x84\xd1!\xc9\xb2g`\xc7\x93\xe8\xf4\x99\xe0\x82X\x18Q\xa4f\xaeP\x9cg\xaf*\xde\x99\x91 5y\x87\x08\x03\xaf\xb1#F\x13\x1c\xebg\xe2\xdaD\xd5K\x17\x0c>\xbf\x84_\xe7l\xc4\x1ch\xc5=(\xce \xbf\x0b\x86\x9b\x17U\xb3yJ\xe3^0\xfeM3V\xa7\xaf\x94&3\xf2\x92\xe8g\x9eT\x1a\xb3u\x91I\xd1\xac\"L\xad\x84>\xeb\xbf\xae\xa4\xbd\xb1gLC\x0d\xcf\xe3B\x95\xd4\xb8\xfa\xda\\\x11\xf5\xf3\x8d\xfe\xeda^\xb4\xaa\xd8K\xa534\xc7E~\xd2\x90\x99\x7f*>\x91\xdb\xab[\xc7+=\xf8\xed\xae\xdb\x0d\xc4R\xd5\xf6\xed&p\xb8\x0e\xd1\xd7\x08\x83:f\x84BPQ\x102RY8\xbe4\"@\x14\x01\x10lE\x80\x08!}\xbe\xf1\x82\xdd\xf3\xdf\xb4B]\xc6\xf8\x08\x9d/\x96)+\x85(Q\x19\xdf\x1e\x88J>\x0f\xac$\xabH1\xc5\x11\xb7\x17\xeb\x92P\xd3\xadPZ\x93\xf0\x1dR4]\xe2=\xb0>2\xc3\xc6EDp\x99\xf3\xd3\x12\xb3r4\x8cPu\x1e,!\xca\x7f\xfc\xd6\xca[R\x17\xe1\x11\xb9\x162\xc5\xfb>\xa9\xe6I\xf0\xceXw\xd2\x95\xa8!\xf5d\xd8\xfa\"t\xf2 &\xcd\x07\xf7\x0c\x7f\xc2;\x87?\x82\x97\xfc/\x01\xd7]\xbc\xca\x17\xb6\x95\xcf,\x8ao\xd0kY\xd6\xe1/+)\xf24\\\xdc\x0d\xe0 \xfe`\x06\xaf\xd9\x91r2j\xc9\xb9\x85@\x1e*h\xeb\xd9e\x91G|\x0bzo\x0c\x16\x1f\xc0\x89\x07\xa9y\x1d\\\xf5:\xb4\xeeuX\xe5\xeb\xb0\xda\xd7\x81\xd5\xaf\x03\xea_\x07V\xc0\x0e\xaa\x81\x1dZ\x05;\xb4\x0evP%,Z\xab\x166t\xee\xd4}F\xae\x87\x1dX\x11\xfbD5\xb1O[\x15\xbb\xf9\xba\xd8-\xa9\x8c}\x86\xda\xd8g\xa9\x8e\xdd\xa2\xfa\xd8\x97P!\xbbu5\xb2\xcf[%+\xf3\x94C\x96\x05,yJ\xbc\xcb\xad/u*\xa8\x16\xf4U\x89\xcad\x96\xe1\xaa.\x98\x93)\x07\xf7\xc0\x83Yrg\xbc\x8aW\n`a_\xd2Mu\x98dT\x841\xbaPK\xcf\x0b\xa6}\x036\x0e\xd51\xf6\xd1l\xd7\xac\x18AV\xf1*\xd6FU\xbeD)\xb9#\xa9\xd1\xaf\xc5\x9f6\xc8\xa3\x17\xdcF=h\x83f\xe1BJg\xd6M\\\xc4f|\xe2\x92W\x14\xe7q2\xf5\xa6\xdf\xb1\xec4\xea\x1fi\xb6\xb1t`\xf9\x0cL\xef\xd3\xcbyuF\xbd5Fe9\xef4)+Y!\xdb\xc4a\\\xe9~t&7\x98\xc5M\x9e\xc4\xad\n\xd8\xe8p>h\xda\xf4\x08\x97\x92\x17\x1bS\x8a\xe1\xba\x9a\xe7E\xf2\xc8%bA\"\x92\xdc\xf9\x18!\x9fNE)\xac\xfb\x02w#\xbe\xdf~\xd89\xde\x8d\xd1\xe0(D\xcc\xf1\xe8\xd0lTS\xf9T\xeaZ\xe6\x16B^\xde\xd4\xa2)W\x15\xceb\\\xc4\xba\xc2\x10\x1a\x8cG\x11\x17\xb8\xb8\xb5\xe4\xe34\x8f|\xdb\x9b\x87[\x10T\xd6\xcbe^T\xa2\n\x9cM\x82\xcd\x9c\xed\x08*\x8c\xaa\xaaH&u\xc5n\x98f\xc1O\x0f\xc0 \xa1\xf2:\x9b\x91\x18Mx&\x9d\x90\xf2R5\xd2\xbd\x11QK\xc4r\"\xa7?\"\xec\xc3\xee\x92^\xdd\x14y\x9a\xd6\xcb\xd0\xb2\x86$;|]\xff!\xc4>NS\xb5\xb5%\xa7\x8b\xa3\x9d,fik\x9dPk\xf7i\xf790\x00\xbd*\xa5\xc8\x9c&$\x8d\xbd\xa9\xcb|9\xd22G$\xc3\x93\x94{\xe7,S@\xe8\xa0\xbf\xb0@0\x9f \x87\xea[\xfb,V\xd1t\x81\xa3}1`d\xe3\x07s\xb2t\x08\xa3\"\xcf+\xed.r~Pg^F.t\x80\x03 E\x80q\x11;\x99(\xf8Q\x85g\xa22T\xea)f\x83ab\x00\n\x94\xbc\x9b\xa5\xed\x0e\x80\xda\xf1\x80\xf5\xcf\xa1\x90W8\xd8\xf5\x94a\xe2n\xac=X\xad\x1e\xaaAW\x14\x0f\x15\x9fo\x18\x0bHI\xb9z9\x88\x0c\xff\x0f\x7f\x11\xf0\x86\x10\xf2\n7\xcb\x04\x91Q\x13\xde\xef\xa2$\x18=\xfc\x05\xe0 2\xf4\xc5p\x84\xaao\x18n#,q_\xdc\xd6*\xee\xb60\x80[\xa0\x86;\x8a\xc0\xe6\xde\x856\xac\x9b\xc8\x1a\xbdDF\x13\xb4\xc1.\"\xa05\xdf\xc8\xb6^\xb7{H\xaf\xde!\xe6\x9a>\x93\xf0\x86\x13\x05\"\xde\xa1\xb0`$\xd1\xfe5\x82\x90\xd8(mZSE\xbd\xbb\x84\x0c\xe9\x11\xa2\xbd\xf4\x0c\nb\xac\xde }Q\x1d\x81\x15\x06\xa1:\x82\xd2\x00\xf6\x03\x91^Q\x17K_4cSe\x1cb6.\x92\x07\xd5Bx\x04\xd4\x8c\xf2\x84\xdd\xa5\xe0y\x0d\xe3\x8e\xdb\x87\xfdP\xd3\xe3]J\x06G?:\x16@\xb9\xc7\xfe3\x11\x19i\x8f\n\xa2\xe2\xec\x82\xf0\xae\x8d\xa7\xfa@\x87\xc93Z\xcb\xbf`\xfe\x02\x8c\xa5\xf8\x13\x0cj\xc9\x07\xb8\xc6\xe2\xe51\xf2\x18`\x99\x0c\xd0\x088\x7f\xc6\xcdf\x18\x90\xcf\xd0\x93\x90\xb0\x9c\x865\xb2\x1a\x86\xe75\x0c\xcdl\x18\x9a\xdb08\xbbaP~\xc3\xe0\x0c\x87\x819\x0e\xc3\xb3\x1c\x86\xe79\x0c\xcctX7\xd7\xa1\x9f\x84\xe7\x8f3\xdf\x01\xf0\xad\xfd\xcb\xa1\x19\x0fO\x96\xf3\xf0\xd4Y\x0fO\x91\xf7\xb05\x99\x0f\xcf\x92\xfb\xf0L\xd9\x0f[\x95\xff\xf022 \xb60\x07\xe2y\xb3 \xe0y\x10\xd0\xf32\xf5\xf6\x88\xb9\x10p[p\xa4|\x88A\x19\x11\xd0Y\xaa\xb3A\x11,!\xacD\x92\xb7\xa0l\x1a\x9dS\x1a\xb1N\x8e\xde\xd4\xeb`\xc3\xe9\xf0\x9dP@\xbb\x15\x86\x1b\x1d\x8cU\xcaJ\xf2\xe9\x07\xf2\xe2\xdc\x90<\x90\xa8\x0e\xeeWa\xae\xef\xd1\xf9%\x11N\xd3\x15\x8aR\\\x96t\x04\xe7\x87\xe2\xa3\x11\xd0\xdd\x80O+\x1d\x10\xdeB !)?<\xa7\x1a\x96\xaa\xf4(e\xc5\xddJ\xa6\xc4\xb8\xf2wW\xef\xb2h\xd0\xa9\xc5u\xec\xeb\xdc\xd6\x0f\x9f\x8f\xcc\x9d\x8e\xd1d\xb5\x87\xeae\xac\xfe\xbbJ\x16\xa4\xac\xf0bY\xee\xa9p\x18/\xfbuwaG\xe2l\xb9 )\x83\x13\xba$\x0b\xe81C\xfde\x1e\x19\x88o(\x12!A\x08d \xa41\x11\x05\xbbO\xc9\x12\x02\xcd\xf7\x98\xc87\"\x87\xf4\x13^\x9a\xcc6\x10\xc9\xaab\xc5\x1a\xe0\x88\xf9\x82p\x9axZ^\xf2\xa7\x07F0)\x80\x84\x07\xed\x88\x13p\x93CpOP\xc0!\x95\xf8\xe5}Mp\xe0\x8bY\xc2\x14\x97\x95\x9c4\x08\xb1-]G\x96>\x97\x8c\xb8\x90Bd\xc0\x90uu\x182\x1f\xad\xdf\x90\xa7\xd7$\x7f\xe0\x94\xa1\xb6\xb2\xb0]Zr\x8eS&)Q\x92E\x05\xb3\xe6\x01\xf1#&\xc3Y3 \xbe\xe2\xde\x0f\x9c]\x92\xccg#\x1c\xa1\xe3-\xe6a\xc9\xc0\x0bm\x14!\xa0\x92<;\xe4\xf8\xb2+\x12\xd7\xb7\xae\xce\xa8\x8a\xfbL\xb5k\x89\"\xbc\xe4V\xa65\x0b\x87\xee@/(\xc5\xe79Z\xe0[\"X]u\xfb\xceb\xb9\xb1\xc9\n\xdd\x93\"\xb0b8v\xbd\x00U\xbaW\xc2\x80R\xf9R\x9a-\xa5\xac\x0b<\xc3IVV\x9aw\xe2\x84g\x86\xd2\xe9W8\x8b|\x8dN\xaf\xb50*\xeb\x8d2\xc7wD\x1bIP\x98\xe5\x88\xe9W\xf78\x01\xcaK\x16}\xbd\x1e\xbf|\xa5\x9e\xf4?\x04\xa5[\xad\xf1.\x8d\x8c`\x84EF\x19\xdd\x7fN\x80M~\x19\x96$\xe5u\xf1\x92\xbe\xac\xa2|\x91\xb3y\xd9\x004\x876\xe3\\\x99b\x82\x1b\x96\xe1`\xcdq\xf0\x9b\x83\x00\x1b\nb?=\xfd\x11V;\x11KM\xc0\x9d\xc0`\xb6\xb6p[\x96\xdaZ\x842\x136\x8aS@\xc8u\xa694=A\x07\x05\xa2\n$yiK(\xd3Mz\xd2~i(\xe4\x05\xa71\x0f\x98B\xe2?_\x06\x8d\xb4\xc96\x01 \xed7A'/\xf4\x1e\x99\xed\xbf\xb0\xe0m\x9718;M\xb2[4\xc1\xd1\xadh\xcb\x0e\x80\xc4r\x14X\xe9\x05c\x1a\x7f\x84K\xdd\x01\x10\x0eq\xf5$\x01\xd0<\xe0\x0f|\xabX\xc4\xb7P\xf4M\x0e\xf8gP\xe1\xc4\xa7\xb2\xc2\x934)\xe7$\x96\xc9\x0c\xa1\xa4q\x88\x1c\xefI\xa6\xbe\x98\xdb\x05~B\"VX\xa0Y\x15\x00x\x94P\xe8\xa2\xc8\x97y \xa7\x81\x12\xcb\x9b!\x04\xbb%~)\xe74e\x11\xbd\xaa\xa8#\x96M\xc4l\xa4\x05.\xcay i\x1d\xa1\xb2\xc2U\x1d\xdc\xfa\xfd\xe8\x7f\xaejW\x92)7\x9b\x98\xe0c\"R\xb2\xa1\x9c4h\x01TY\xc5\xf7\x9a\xe5\x0d\xf1\x1cy\xba\xc4\xec\x94lY\x87\xc5s/\x1a\xc3k\x1f/?}\xfcz\xf9\xdb\xcd\xf9\x97\x8bo\xd77W\xd7g\xd7\xdf\xaez\xd5\xa3\xb9`\\\\~\xbd\xf8z\xb5\x06\x00\xfe[\xf0sUO\xb7.\"\xfd%y\x90x\x90\x15\x08\x80\xd0\xca\xa8\x00\x05!,\xdb\x0b\xa7I|Xg\xdc_\xe4|Ky\x07\xf0q`)\xed4\x96\x7fm\x17|i;&C\xb8\x98$U\x81\x8bU#\xc1XWA\xe5\xf3\xf1\xad0|\x8e\xfc7\xfb\x0c\xf9o\xf6\xf9%|C\x1b\x16\xd8\xb2 wI^\x97\xec\xb2+s\xabkER\xde\xb9\nas]\xe0\xe8\x96G\xc4\xb8\xe5\xa4<@\"u\x12\xd4+\x03I/}\x90\x8e\x9dMq\x8b\xe6 \xb9\xe3\x17E\xe6u\x15\x12;y\x06\x9a\x1d\x87\xf4b\xad\xc2g\xd6\xf5\xff%\xf4|%;\xa0rr\xc2\xda.\xf0\x87\x7fq\xa8\xa2\x00\xed0\xd43h\xd0+\x06S\xe2%Y\xb0 c4\x0e!\x00XS\xdf$h#\xb6r\x92\xcd\xe4\xf56{S\x9c\xa4u\x01p!\x11U\xc3K~'[\xf0\xe5^\xab\xdeG\xe9^}\xfb}\x90\x96\xea~}qv\x05+\x917?\xbb\xfa\xef\xf3\x8b\x01\x9f}>;\xff=\xf8\x99\xa6\x93\x87\xe29L\x1b;F\x83,\x8a\xf3cC\x03\xa3:3\xaf*u==\xab\xe2\xbbK\xda&\x1e\xfd\xcdPaD\xdbM\xec\xc2nu\xcf\xd3\x90!);\xb4\x87\xa4\xbfiC*\x94\x0e\xa3<+\x93XF\x1f\xd8\xe0\xb7 ;\xb5\x88\xf9}W\x8b\xa4dW\xa7\n}\x94\x17(&)^\x91\x18X\x98\xe8\x98$e\xbe\xf6$\xe9oN\xba4\x07\x8a\xd6\x99S\x99\xe1J@\x97\x0fT\xe8q\xa7\xea+\x97O$\x8b\xf0\xb2\xacS5%!\xb7\x98\x17\x0b\x89#\xa2\xc6\xf2\x00\xd4\x18\xc3\xe6\xc8\xe7\xf0\xba\xfc\x195\x97\xad\xb3\x9b,\xf3\xa9$\x99\xb8XX\x8a\xeb\xc0*\xd1W\xb9##?h\x9a '0\xd3\xe1etJj\xcfR\x12\xb09\xcb\x00\xe8\xd9\xd2\xdaT\xc9\xda8I\x1c\x1e9\xc0\x85W\xfbL\x1d\x89\xe4Sf\xb9\xb2%\xc7U\x85\xa39\x1f\xad\xb9\xaf//XA\x94\x13\x96\xb9c\x04\x1f3\xdf=X\xaem\x90X]}\xc8\xf7C&\x02\x1a\xe2gQ\xe3dGY\x05\xaeFIO2\xa1\x05\xf2\x92\xb4\xfc#'@\x83\x056\x9c\x87\x04\x8a\xe1mp\xa3\xa8\xf1\x9d\xa9EbA\x83\xe9B\xcd2ls\x9eP{\x96\xc3\x13\x84\x14$\x08I`\xe9\x88\xdb@\x961\x92T\x1b\xb6\x01\x92\x87\x07\x0b\x82\xb1\xc9m\xa0\x8f6UI \x11\xf5c?m\x84B\xcf\x90\x07\xa5\x8d\x1cJ\x80\x1ac\xa7\xbc\xc0\x1a\x08\x00V -\x81\x80\x9a\x02\xedJ \xc4\xf3\x04\xd8\x05\xbd\x83] \xc4 Z\x8d\xa1]\x10\xda\x95@\xc01\x1f\x99I\x86a\xbef&)\xeaS\x02!\xe4\xf2\x98\x05\x10\x16\x90\xe3\x95?\x08\xfb\xfa)\x8b\x1fL|F\xb0,\x80\xa2\x03Jo\xd4\x99c\xc0;\xf1\xef\x83~e\x0f\xad\xc5\x0e\xab\xa4m\xa1\xd1\xda\x8a\xc8\x04\x07\xa6\xd0F\xb2\xd67O\xadM\x15;\x0c\xa4\xe2Kq\x81,\xf3\xb5\xf8A^H#\x10,\xa4\xcf\x81d\x1a\x8a\xff(\x9a\x1c\x8aw\xa7\x8ebL\x1f\xc9\n\xdc\xe9+\x81@1\x81\x8b\x92\xd8\xed3\x05Q\x06i:\x04\xd4v\xa8g\xb9\x1f\x82\xf3\x0f\x82o5\xd4saP\x8f\xf2?0\xa0\xbe\xba\x10\x0d+\x03D[K\xc1\x90\x8e\x0c\x02\xacz\x15t!X\x19\xd4\x0b\xa5\xe50\x0d\xda\x05e\xd1\xa2=!\xf4[\x83\x90\xf2@\xfdH\xbe\x1e\x1d\x83\xaa$\x08\xafw\x91%\xea]j\x88\x9e\x92\"#8\x8b\x00V\x1dZz\xc8\x8f\x85\xdd\x95\x87\xc2\x9d{\xb2\xc2C>\x9e\xa7\xeeP\xbd\xb0f\xd9!\xfbK\x97IZ\xa7I\xec-\x9e\x84\x17\xe5\xcbUc\xe3\xf1?\x98\xc5M\xf4O\xa5:\xb6\xeeb\xef5\x02\xfc\xaa\xdf\x1f)\x0d\xf2r\x98\xeeH\x1b\x04E8C$a=\xbb'\x04a\xc6\xb6{\x88\x1c\xcc\\\x9b\xf0\xc3\xf1\x87_\xdfO\xf0\x9b\xfd\x93\xe9\xdb\x93\xfdw'\x1f\xf0\xfe\xfb_\xf0\xaf\xfbS\x12\xe1\xe3\xc9\xd1\xc9\xf1\x1br\xc4\x9b\xb6K\x99\x10\xb9o\x93\x13j\\\x0c\xe8\x9b\xeb\xf1\x8f\xc7\x199z\xc4\x8fU\xfd\xcbI\xf5p\xf2p\x92\xa6w'\x0f\xd1\x87\xc7\xaa\xfc\xf1\x90\xde\xde\x93\xd46\xe3p\x03\xaa\xb1\x08\xdaj7\xd5\xa0o\xf6\xa2\x0b\xa0\xca_>\xfe\xf1\xe0D\xf6C\xf9#\x8d\xe6o\xcb\x87\xfb\xec\xdd\xbb\xef'G\xdf\x1fg\xd5\xfb\xa2\x9c\xdf\xfdXM\x8b\xefQa\xa3B\xf00f$\"\xb4\x8e^\x14\x0d\xa4d1H\xe0\x03q\xfc\xe3\x8d\x93\x00\xf7\xef\xde\xc4?\xde|\x8f\xef\x161~\xac\xef\x1f#\x1c\xc7\xf3\xf9\xfb\xd9\xa2~\xbb\x88\x1e\xc9[\x1bdQ\xdd\"\xdbZ9LnN\x05_\xc7{\x18\x19\xda\xa3qZLS\x10a \xa2/\xbe\xe4\x81O\xc1\xebe\x8e\x85ok07\xbe\xe2E6{\xe79\x1d\x03\xc1\xf2XBH6tv\xe844\"\x92\xad\xc1 \x8b\xea,]U02\xb4\xca\xebB(N\x13EcV\xac\xb1\xeb\xa5 \x05j\xb2\xc4\xf8\xbf)\x8a\"\xb3\x98\xa0\xbf\xd7\xa4X\x1d\xf2N\xb0\x97\x17\x1fEac\x03[\xa6\x80\xfe\xe4\x18\xea,CuF\x1e\x96$\xa2\x8a\x9d\xdf$d[\x842\x9a\x93\x056i\xee\xd4\xf3n\x1d\xcf\x06\xe8\xae\x9cG\x04Gyl\x89\xac\xf1\x0f\\\x1d\xb1\xa57\x95d\xd5\xdb7\xad\xbf:\xbbI{\xe6\x10\x93\n'\xe9\x964o\xa0\x9f\xdf\xd4\x85\xf3\x12\x93\xa0:c5\x8f\x83\xbf\xb6\xfa\xaaK\\\xe0\x05\xa9H\xa1\xcdy\x9f\x97y\x1a\xc6\x81\x8b\x0b\xff\xcf\xdc\x86=\xed \xcb\xa7c\x19\x11Iv\x8a\x96\xb8\xd2\xd3\xf2\xe8nN\n\x12\x9f\xa2\xaa\xa8uAn%\x9d\xa2\x82\xb09]\x14h \xa2\xbe&\xea0\xc3\xd4g\x97\x0d1<)\xb5~P\x81d%\xd7\x14\xa7%\x98^\x9a5\x05$\xd9`\xfbk\\\xabkD\x1a\xb4M) !\x06Y`\xba\xade@\x03\xd9!C\x90n\xeb\xe86\xd6\xc2\x16\xea\x89t\x1f#\xacenu\xd9\xff\xa9PnYT@\x94\x07\xdaa\x8d\xc5\xd5Y\xe7M\xe3\xd92\xaa\x80x\x0e2\xc54\xa3\xcb\x00\xe60\xc0\xd6\xc7\xb2\xc23C\xf9\xfd]@;\\\x16\xf9\x1d\xc9p\x16\x91\xc3\x05\xa9p\x8c+|xw|(\xf6\xdb\xe1?\x9b\x16A\xff\xe2\xdf\xcf\x882\xd7\xcaz\xb1\xc0\xc5\xeaTv\xce*QIp\x11\xcd\xc5M\x81r\xcfJL\\T\xbc\xd6\xd2nZ\x1a\x85\xf3\xb9E\xab\xc05\x8aW\x95\x80\xd5\x08\xbaJ\x16I\x8a\x8bt\xb5\xa7\xcb#1c\x05\xaf\xad\x0bQC\x06\xe7\x14F0 ( \x15@M\xd3\xec\xa1d*/t\x8c\xf7d{)\x84\x9b\xd1!Zh\x0c\x0d\xd4\x8c\xf8\x1f\xe8|\x8a\xf2,]\xc9\xb5\x11GP\xcd4q\x9a\xb6\xfa\x9a\xe1J.c\xa1\xe3Y\xd5E\xc6n\xac\xb0\xc2nV\xc8\x80\x9eT\x0d\x1d\xb4E\xc1Yl\xf6?i\xf5|c{\xd6>`\x8b\x1f\x98\x00\xe0,[\xcd\x89\xe2f\x0d[\xe6\xc4t\x0d\x086-\x9c\x969\x9d\x9bF\x0e1\xb3\xd6\x8c\x9aIx\xa6&h\xd12>\x1a\xd8U\xab\xc1\x16N2^\xdd\x83\xabv\x12\x0c\xbbedB\x9cC\xa9Q\xe4\xe1\xbd\x1c\xc5A\x85=\x9df\xd8\xa8[W\x8bb\x12\xca P3z\x9bR!\x8cl\x98(`gh\x82c=\xe2,_B\xc9\xf4T\xc7\xf8\xda\xb1\xe8l\x12:\xf6\xf7I5\xcf\xeb\xca\\\x7f\xdbf5\x08z\xe6\xa4\xa6\x82\x97\xad\xd0=^1\xcd\"[\x805\xd6\xd0kc\x07\xebT\xc7\x1d\xba\xeb\xf4\xfeI\xfbF\x9b\xdb\xcf\xc6\xe4\xae\xefs\xba4\xec\xda\x97|\xeaYQs{\xe9K\xa9od\x85\x1a})\xce\xb3W\x15\x13\x01\xec\xa0_\xb4\xb9A%^\x90\x96\xd8\xb6\xd3\x8bA\x7fM\xc5\xae\xa4\xb664k\xfa\xd4\xa1&\xc2ma,?\xe3\xdbNpS\x9c\x93\x12ey%\xd9\n\x95u4\xef\xd2\xcb3\xad\xd6L\xd8\xf59\x93\xbc\x9ak,<\xa9\xab&\xc3A\x01\x8a\x93)\xfbI\xb2p\xa9\xb3\xec_W2\x8c\xb2\xa71@3V)\xae\xe9\xa9T#!m\x8aW\xa4j,r\xf9\xe1a^t,V\xba\x0e\x05/\xdb4\xecr\xe3\x04A|\xab&\xc9\x7fU\x1d\xa8\xce\xe3\xc6T\x10\x7f\x936\x9df\x9c\xbczst\xf4\xca\x1d\x11\xd2*X7\x19\nb\x88\x05\x0e\xa6\xac\xe19a\x9a\xf3\xa8\x98j\xd3\x19\xc9\xbb\x90\xd0%j\xcb \xa0\xcbe/\xe2\xc1\xbau\x18\x17\x87\xf7i`a\xde\x1b\x7fy\xfe\x9f\xe7_\xce\xae\xbf^\xf6\xfb\xee\xea\xd3\xe5\x1f\xe7\x1f?\xf5\xfc\xea\xfc\xcb\x1f\x9f\xaez\x8f\xf5\xf1\xdb\xd5\xf5\xd7\xdf\xce\xcf\xbe\xf4\xfb\x8c]\xf6\xdf\xef\x13uM\x7f\xbf\xcf\xc4E\xfb\xfd>jn\xc3\xef\xf7]s?}\xbf\xef\xd4-\xf2\x81\xcfT\x8b\x94A\xec\x156V\xcc\xc7\xc5\xc5\x03\x87GH\\\x91\xcf\x8e\xedz\xb4:ql\x8aS\xfb\xcfb\x14q\xf1\x7f\x91\xcc\x92\x0cW\x90\x8e\x8f\xd6=tj\xfbQ\x1a\xe8%\x8a\xc9\x84z\x04\xc5]\x12Q\xb7rZgQ\xd5\n~CF\x93{\xef\xd4\xf6#w&Y>S\x12\xa1$\xbb#e\x7f|\xd4>=\xb5\xfe*\x97&\xab\x92j\xc5\xd5\xb7\xc21\xaa\xcb*\x8f\x13\x9c DE8\x8f\x11\xb8/\xa2l\xdf\x9fv~iwY[\xe2\xa2Z\x8991\xa5-\xb5\x14\xd5\xbe=\x87Tr\xe3\xd4\xfa+\xa7.\x1f\x90{\x7f\x19\xc2\xd3i\x92\xb2;\xf2\xf1\xac \xcc\x0c\xe99\xa8\x90:\xa7\x96\xdf\xf8\x80\xcc\xea\xc1)?\x1e\x17\xf7\xb1\xae\x1a\xbb\xa9\xc8S\x8e\xfc\"K&u\x89&8\xbb\x95Z\xb1\xe7T\x1aYvj\xff\x99NH\xf6\x13\x91\xeb\xa0/CA\x96\x05)\x99)F\x97\xa0\xe9e'\x02\xaaf?e\x1c\x0d\xd8\xd4\x8d\xdc<\xb5\xffl\xf2\xe7\xfd<\x89\xe6\x1a\x9d\x9a\xab\xf9\xc5\xaeW\xad^\x13\x82H\x96W\x81\xd6\xce\xdd )\x81|j\xfd\xd56\x1d\xd6A\x91\xb10\xefn\xc3\xf7\x07\xa4\x11\x0fR\xb76\x87,\x8bp\xbe\x88\xf6.\xb7\xbe\xd4\x89\x83Z\xd0W%*\x93Y\x86\xf9\x05\xcc\xa5\x1a\xdc\x03\x0ff\xc9\x9d\xa1\x0bm\xdfJ\xfb\x92n\xaaC\xd6^\x9a\xd3\x85Zz^0\xed\xae\xdf\xc1\x8e1}4\xdb5s\xb4\xc5\xed\xc7\x0dk\xa3*_\xa2\x94\xdc\x91T8 \xe1$`\x19 \xe16\xeaA\x1b4\x0bNR:\xb3\xc8\x9cp\xdd}\xe2\xb2\xb9\xb3}\xe5\xber\x99\x1b\xb7\xcc?\xb2\xdc\xf8\xc0g`z\x9f^\xce\xab3\xea\xad1*\xcby\xa7IY\xf1\xfeQ\xfa9\xab+\x07\x90\xce\xe4\x06G\xfe;\x10Ft\xab\x026:\x9c\x0f\xce\x14\x91d\xca2E\x9cQ\x0c\xd7\xd5\x10\x19\xfab\x88Ce{c\xe16\xc2\x12\xf7\xc5m\xad\x02<\x0b\x03\xb8\x05j\xb8\xa2\x1d6\xf7.\xb4\x80hu\xc0\xe9vg\xb1\x1c\xa1lX\xd0\x06+\xd4Ak\xbe\x91m\x1d(C\xf7\x1e\xf0\xa0\xf6y\x12LnC\x8b\xce\x9f\x9d(\x10\xf1\x0e\x85\x05#\x89\xf6\xaf\x11\x84\xc4Fi\xd3\x9a\xaa\xa9\x11\xd4\xcf\x1epV5 \xa7\xd63(\x08Xq\xf7\xf8\x8c1\x02+\x0cBu\x04\xa5\xe1\xe0\x966\xd2\xd2+\xeab\xe9\x8bfl\xaa\x8aF\xcc\xc6E\xf2\xa0Z\x08\x8f\x80\xd0s\\\xff \xcfk\x18w\xdc>\xec\xa7\xaeXm\xfav;:\x9d\x80\xee\xde\xb0u\xee\x16\x84wm<$\x9d\xc60y\xb6\xf3\xae\x94`PK>\xc05\x16/\x8f\x91\xc7\x00\xcbd\x80F\xc0\xf93n6\xc3\x80|\x86\x9e\x84\x84\xe54\xac\x91\xd50<\xafahf\xc3\xd0\xdc\x86\xc1\xd9\x0d\x83\xf2\x1b\x06g8\x0c\xccq\x18\x9e\xe50<\xcfa`\xa6\xc3\xba\xb9\x0e\xfd$<\x7f\x9c\xf9\x0e\x80o\xed_\x0e\xcdxx\xb2\x9c\x87\xa7\xcezx\x8a\xbc\x87\xad\xc9|x\x96\xdc\x87g\xca~\xd8\xaa\xfc\x87\x97\x91\x01\xb1\x859\x10\xcf\x9b\x05\x01\xcf\x83\x80\x9e\x97\xa9\xb7G\xcc\x85\x80\xdb\x82#\xe5C\x0c\xca\x88\x80\xceR\x9d\x0d\x8a` a\xd7M\xf1\n\"\xf6\x07Qj6\xcbX\xe5V\xe0\xc2\xfb\xe0\xb4F\xea<\x0b\xc3\x8d\x15\xd5TyC>\xfd@^\x9c\x1b\xc2n\x16\x13\xe6\xfa\x1e\x9d_\x12\xe14]5w\xca;?\x14\x1f\x8d\x80\xee\x06|Z\xe9\x80\xf0\xf2\xe4\x84\xa4\xfc\xf0\x9cjX\xaa\xd2\xa34!Y\xe3\xdf\xb2\xcc\x06/\xbc.\x8b\x06\x9dZ\\\xc7\x89\x97:}\xf0\xf9\xc8\xdc\xe9\x18MV{\xa8^\xc6\xea\xbf\xabdA\xca\n/\x96\xe5\x9e\n\x87\xf1\xf6u\xfe;\x1fy\xbdT*n%\x9b\xe6n4\xc0\x1e3\xd4_\xe6\x91\x81\xf8\x86\"\x11\x12\x84@\x06B\x1a\x13Q\xb0\xfb\x94,!\xd0|\x8f\x89|#rH?\xa1\x12T\x9c\xfd\x93\xac*V\xec.21_\x10N\x93\xd5\x88\x18\xc1\xa4\x00B\x9d;\xe1\xf58\x0179\x04\xf7\x04\x05\x1cR\x89_\xde\xd7\x04\x07\xbe\x98%LqY\xc9I\x83\x10\xdb\xd2ud\xe9s\xc9\x88\x0b)D\x06\x0cYW\x83'\xf3\xd1\xda=\xfd\xf2.\x04\x17L\x19j+\x0b\xdb\xa5%\xe78eX\xb3\xed\xa8`\xd6< ~\xc4d8\xc1\xd1\\\xac\xb8\xf7\x03g\x93*\xf3\xd9\x08G\xe8x\x8byX2\xf0B\x1bE\x08\xa8$\xcf\x0e9\xbe\x88\xdc\xf9\xdd\x1e\xd8\x0c\xcf\xa8\x8a\xfbL\xb5k\x89\"\xbc\xe4V\xa65\x0b\x87\xee@/(\xc5\xe79Z\xe0[\"X]V\xcdQu%66Y\xa1{R\x04V\x0c\xc7\xae\x17\xa0J\xf7J\x96A\xcb|)\xcd\x96R\xd6\x05\x9e\xe1$++\xcd;q\xc23C\xe9\xf4+\x9cE\xc4\x93Mv\xad\x85QY \xff\x1c\xdf\x11m$Aa\x96#VI\x173!n\xb1\x90dwyzg\xd6\xff\xb7\x9f/_\xa9'\xfd\x0fA\xe9\x82\x88Zj\x9e\xdauid\x04#,2\xca\x8c6\x12\xed\xa7\xc9/\xc3\x92\xa4\xbcl\xfbJo4\xb1\xc8\xef\\7\xce6\x876\xa3\xdcB\xd3\x027,\xc3\xc1\x9a\xe3\xe07\x07\x016\x14\xc4~z\xfa#\xacv\"\x96\xd1\x03\xc2\x9e\xc0 V6\x90\x9a`\xacE(3a\xa38\x05\x84\\g\x9aC\xd3\x13tP \xaa@\x92\x97\xb6\x842\xdd\xa4'\xed\x17\xe0\xd5\x00\x95\xd1c\x04F!\xf1\x9f/\x83F\xdad\x9b\x80\x84\xf6\x9b\xa0\x93\x17^\xden\xc0\x13\xa6\x93?q\x03L\x9c!X\x8f\x90\xbb\xd1o\xd7\x8c\xc4\x08Cp]+y\xc3\xc9(\x1e\x94e\x92\xe0\x98W\xd9\x18@\xd1\xd8\xd7}BV\x12\xa4+\x11P_\"\x04I\xbd\xe6\x0f\x905\x10\\N\xa0\xcd$c\xf3G\xadTXw\xa2\xa7\xc1\x0e\xe0\xce\xb4&=\\\x93\xea\xc0\x80t\x82iS\xb4}\xb4\x1aC\xb7\"\xb4\xbb\xef\x13\x8e\xf9\xc8L2\x0c\xf35\xf5 \xb2\xb3\x90\x1d\xfd\xce]/c\xf8ZV\xa0\xe3y\\\xf6,\xb5\x0d;`m\x9cF\xb05\x80\"\x04Ju\xd4\xe3\xce\xb3\xf0\x81\x16\xea\x84.\x82\xca\xa9\xb3\xeca\x05\xb5=\x94Z[1\xb5\x01\xf6\xa0S\xd4\xeb:\xa9-\xa2Yw\xe2\x08p\x87\x99\xe5\xabV\x86\xfaPZ\x86\x14\x17\x90t\xc3i\x02QZ^p\xeb`?\x12\xe3\x0c\xc7~M\xc5\x05`/\x1b) \xf3\x15AG\xf7\xc5c*v\xb5\x81\x9b\xc7\x04l\xcf-crt\xc7]^\xa2\x1a\xb7\xbb\xb6|E\x9f6e\x9fO\xc6\xc5g#i\xdb'O\xa78lV\xb5\xc9o\x16\x8dN\x11\xfa\x83\xf5\x0b\x10\xd5\xe2^X\"\xa5\xde\xd2\xc3\xe2,-st\x9b\xe5\xf7\x19\xeb\x19\x8b>S\x0b\xc6\x9bg\xf1\x1c1_\x18\xc5\x9a\x8a\x01\xc9\xb9\xf2\xc0B\x96\n\xb4\xca\x01\x022O\xd1\x1a\xbdf\xcd&\x93j\x8e\xa6IZ\x91\x82\xc4\xe8\xf6N\xaa\xe6\x8a\x14\xb8\xca\x0bw\xbe\x97H&\xf7\x92\x0b\x84\xa0\x00$\x05\x85a\xb2J\xcc\xf8R{{.\xa0\xa6e\xb1q\x8c\x94\xb3\x04\xbb|:\x15\xa9l\xe6\xc5~Pb\x05\x99b\xb4H\n\xb0\xce\x01\xc8\x8a\x08\xbc\x0c\x08u\x8e\xc6;Y\x89l9\xe4\x96\x0dB\x13\x0b\xeb}o\x8e\xcb\xf9\xf8\xa8V\xe2\x8eo\x86D\xa65W\x91\xbc\x16\xac\x7f\x08 E4h^\x80%\xc0<\xe3\xccr\xfc\xac&\xff\x9a\x0e\xcc\xba=\xfb\xd3\x8f\xe8\xa32\xcc\xd8\xad\x01\xe6jF\xf9b\x91gl<\x7fZ'\xbfa\xebY\xc8\xc1\x87\xe6\x19f\x12\x8d\xe6\xb8\xb3\xca!\xa7\xc2\xf2Q=\xa3\xd1k\x0e\xf6\xe7\xe6\x94\x95\xd1\xe9P\x91\xc6{\xdc*\x1f*z\x93\xec.\xbf\xf5\xf0R\x92-\xeb\xea\xc5\xd6\\AvA\xaf\x85\x87Y\x90\xe6\xf3\x85.;\xef\"$\x9b\x8d\xd3\x85O\x93\xec\x16Mpt+\xda\xb9\x03 \xb14\x03V=\xc1\x98\xc6\x1f\xa4R}\xf4\xc3Q\xaa\x9e$\x00\x9a\x07\xfc\x81o\x15\x8b\xf8\x16\x8a\xbeI\xe3\xfe\x0c\xaa}\xf8TVx\x92&\xe5\x9c\xc42\x1f!\x94\xf7\x0d\x91\xe3=\xc9\xd4\x17s\xbb\xc0OH\xc4j\x034\xab\x02\x00\x8f\x12\n]\x14\xf92/\xe14Pby3\x84`7F.\xe5\x9c\xa6,(W\x15u\xc4\x12\x82\x98\x8d\xb4\xc0E9\x0f\xe4\x9d#TV\xb8\xaa\x83[\xbf\x1f\xfd\xcfU\xf9I2\xe5f\x13\x13|LDJ6\x94\x93\x06-\x80\xaa\x8c\xf8\xce\xee\xe7\x10i\xeet\x89\xd9A\xd7\xb2\x0e\x8b\xe7^4\x86\x97/^~\xfa\xf8\xf5\xf2\xb7\x9b\xf3/\x17\xdf\xaeo\xae\xae\xcf\xae\xbf]\xf5*)s\xc1\xb8\xb8\xfcz\xf1\xf5j\x0d\x00\xfc\xb7\xe0\xe7\xaa$n]D\xfaK\xf2 \xf1 +\x10\x00\xa1UB\x01j:X\xc2\x16N\x93\xf8\xb0\xce\xb8\xbf\xc8\xf9\x96\xf2\x0e\xe0\xe3\xc0R\xdai,\xff\xda\xae\xd9\xd2vL\x86p1I\xaa\x02\x17\xabF\x82\xb1\xc6\x80\xca\xe7\xe3[a\xf8\x1c\xf9o\xf6\x19\xf2\xdf\xec\xf3K\xf8\x866,\xb0eA\xee\x92\xbc.\xd3Ug\xabkuN\xde\xb9\nas]\xe0\xe8\x96\x07\xb5\xb8\xe5\xa4<@\"u\x12\xd4+\x03I/}\x90\x8e\x9dMq\x8b\xe6 \xb9\xe3\xd7\x92\xe4u\x15\x12;y\x06\x9a\x1d\x87\xf4b\xad\xc2g\xd6\xf5\xff%\xf4|%\x9b\x98rr\xc2:'\xf0\x87\x7fq\xd8\\\xef\xdf\nC=\x83\x06\xbdb0%^\x92\x05\x9b0F\xe3\x10\x02\x805%J\x826b+'\xd9L^u\xb37\xc5IZ\x17\x00\x17\x12Q5\xbc$Y\x0cZ\xc8>\xab\xdeG\xe9^}\xfb}\x90\x96\xea~}qv\x05\xabr7?\xbb\xfa\xef\xf3\x8b\x01\x9f}>;\xff=\xf8\x99\xa6\x93\x87\xe29L\x1b;F\x83,\x8a\xf3cC\x03\xa3:+I\xd8Vc\x07\x12}\n\xdb\xbbK\xda&\x1e\xfd\xcdPaD\xdbMT\x836w>\x0d\x19\x92\xb2C{H\xfa\x9b6\xa4B\xe90\xca\xb32\x89e\xf4\x81\x0d~\x9b\xb0\xd3\x88\x98_\x7f\xb5H\xca\x92nN\xa1\x8f\xf2\x02\xc5$\xc5+\x12\x03k\x0b\x1d\x93\xa4\xcc\xd7\x9e$\xfd\xcdI\x97\xe6L\xd0:s*3\\9\xe4\xf2\x81\n=\xeeT}\xe5\xf2\x89d\x11^\x96u\xaa\xa6$\xe4\x16\xf3b!qD\xd4X\x1e\x802a\xd8\x1c\xf9\x1c^\x97?\xa3\xe6>\xfa:\xad\x98\x90\x16$c\xb7\x006\xe2:\xb0J\xf4U\xee\xc8\xc8\x0f\x9a~\xc0 \xcctx\x19\xcd\x8e\xda\xb3\x94\x04l\xce2\x00z\xb6\xb4\xf6E\xb2\xf6>\x92\xb7\xe4\xd9\x01\x85W\xfbL\x1d\x89\xe4Sf\xb9\xb2%\xc7U\x85\xa39\x1fM\x95\xa2\xd2\xbdIp\xe4\xee`m\xee\x18\xc1\xc7\xccw\x0fV\\\x1b$\x163\x12\x94\xcb3\x11\xd0\x10?\x8b2%;\xca*p5J\x86\x91 -\x90Z\xa4\xa5\x109\x01\x1a,\xb0\xe1T\"P\x0co\x83\x1bE\x8d\xef\xcc\x0e\x12\x0b\x1a\xcc\xf8i\x96a\x9bS}\xda\xb3\x1c\x9e\xe3\xa3 AH\x02\xcb(\xdc\x06\xb2\x8c\x91g\xda\xb0\x0d\x90<4}7\x0e\xc0\xf04\x86\xe2K=M\xf1\x8c\xcdW]P\x90\xcb\xd7P\x15\xb8\xf2R\xe8.\x91\xceT\x12\xad\x8c^:\x96\xe52\xcfJ/\xdaB\x11>\x0d\xe2\xbaZ\x0e\xa1\xee\xe5\x15\xe9\xe3\xf5D\x9a<\xf0yx\xc3\x05c!\xdd\x1a\xcc\x8d\xb4x\x91\xcd\xdey\xe0\xca@\xb0\x84\xa4\x10\x92\x0d\xb1\x1d\xe6\x08\x1a\x11\xc9\xd6`\x90\x95u\xd6 +\x18\x19Z\xe5u!l\x1e\x13E\xff\xacD\x13\x8b\xf2R\x90\x075)\x80\xfc\xdf\x14m\x916N\xd0\xdfkR\xac\x0e\xe57\xe8\xf2\xe2c\x0b\x1c\xaf7m& \x13~\xb5\xd7\x8c\xf9\x9ce\xa8\xce\xc8\xc3\x92D\xd4p\xe3W?\xd9V\xaa\x8c\xe6d\x81\xcd\x85q\xdaqn\x1b\x8e\x0d\xd0]^\x8fP\x8e\xf2\xd8\"\xe2\xf8\x07\xae\x16\xe6\xd2wN\xb2\xea\xed\x9b\x0e\x81\x1c\xed\xbf=s\x88I\x85\x93tKZu\xd0\xcfo\xea\xc2y\xebLP\xc1\xb1\n\xd7\xc1_[#\x13K\\\xe0\x05\xa9H\xa1\xcdy\x9f\x17\xf5j\xe6\x9f\x8b\x07[{\xa2\xbf\xbd8\xd4JTv\x8a\x01\xadk\x1b\x8en\x11\xaea\x07\xda\xac\xbf$;EK\\\xe9\xa9\xa2T0%\x05\x89OQU\xd4\xbab\xb2.\xb0Z+14t\xa5z:J\xc3\xdc#\x9f\xd5>\xc4\xfd\xa1\xd4\xfaA\xe5\xa8\x95\\S\x9c\x96`zif0\x90d\x83\x0d\xe7q\xcd\xe5\xf1i\xd0:,\x02\xd0\xa0\xbf\xed\xacY\xc9\xd6=\xd1\xb5\x98G\xc4\xd3\xb0\x84\x81\x98\x0e\xb5\x9e5;\xd9\x80\x077\x1f\x87 \xde6\xad\xda\x98\x0b;\xb6'\xee}\x0ch\xcdT\xde\x02\xbc[\xd60\x10\xef\x816tc-\xb71\xdf8\x9e-\x83\x18\x88\xe7 3Z3\x98\x0d`\x0e\xe3y},+<3l\x92\xbf\x0bh\x87Tf\x90\x0cg\x119\\\x90\n\xc7\xb8\xc2\x87w\xc7\x87\x82\xc7\x0e\xff\xd9X!\xff:\xe4\\y\xf8OJ\xae\x7fqh3\xa2l\xea\xb2^,p\xb1:U7j\x94\x04\x17\xd1\\\\\xbf)8Zb\xe5\xa2\xe8us\xa8Ju\xc0\x1e5\x05\xa4X\xdb\x93M\xca\x02\xea\xe2\xa7\x86Dk\xeb\n:!\x05\x8f\xc9\xa4\xfd\x8e\x9e\xe7\xa2J\xd3\xf5\xea\x03\xb8\xa2\xb7ixcX\x88rGW\xc9\"Iq\x91\xae\xf6\x9a9TF\x87r\xab\x89\xc2Z\x15\xb5L\xc1\x16&c\x98~\x06-\x03Zo\x95\xd7\xaf\n\xd2\x8cO]\x9c\x82\xc5\xeeQ\x92\xe9w\xbd\xfc\x07:\x9fr\xf3\x11\xb7\x8d\x8a\x86o\xc4u\x88\xfay\x06\xbb|F\xebwW\x90\xaa.2v\x8f\x8c\x0d\xb4n\x8c6pq\x9a6\xe7\x15\xa2d\x8a\xafd_\xf0\xcd\x02\xbd\xa6\x8b!F;l~\xff\xd9:Z{}\xe4\xb8\xce\xf1\xb0\"\xbc2\x16\xe4\xcd\x7f\x12C\x9c\xc5\x87\x0dC\xdc$&\xfdZ\x9b\xcb6\xa0z\xe5\x0cMp\xac\x9f\x9a\xc8\x97P2=\xd5'vm\xf2(\x13\xa1\x8c1q\x16\xa3,\xb7R\xff\xa0\x05@\\\xebS\xdd\xe7\x94\x9d\xd9\xd5>\xf9\xd4\x94%:J\xec\x1f\xf3r\x91\xbb\x06+\xc15\xcaOK\xccF\xc2\x94\xdd\xd2b\x95i\xe0\xcf\x7f0\xbe\xe4\xa6$\xebAB\xe4Z\xe04\xcd\xef\x85\x1a\x135\xdd>p\x9eC\x19vo\xbb'\xef\xce\x17\xe5\x94O\xb0ALp\xcf\xf0'\xbcs\xf8\x837\xd5\xbc\x14\xdb/\xec|-\x8b\xfd\xfd\xbd\xd9\x8a<\x0d6e\x83p\x10\x7f0\x83\xd7\xecH9\x19\xad\x11q$Z\xf4\x023\xdeD;\x00\x02hL\xda\x8bx\xb0\x06+\xc6u\xed}z\x8e\x98\xb7\xf5_\x9e\xff\xe7\xf9\x97\xb3\xeb\xaf\x97\xfd\xbe\xbb\xfat\xf9\xc7\xf9\xc7O=\xbf:\xff\xf2\xc7\xa7\xab\xdec}\xfcvu\xfd\xf5\xb7\xf3\xb3/\xfd>\xfb\xfa\x8f/}\xe7w\xf6\xf9\xf3\xf9\xef\xe7g\xd7\x9f\xfa}\xf6\xf5o_\xce\xff\xfa-\xdc\x9e\xc6\xf8\xe8\xe2\xf2\xeb\x1f\x9f\xbe\x9c}\xf9\xd8s\xb0\x8f_\xbf\\_~\xfd\xfd\xf7\xbe\xb8\xa9\xbb\xfb\x03\x9f\xa9\xae6\x83\xd8+l\xab\x98\x8f\x8b\x8b\x07\x0e\x8fx\xc6\x978{\xeb\xd1\x9d\xc6\xb1)N\xed?\x8bQp\xc9\xee\x17-\x92Y\x92\xe1\n\xd2\xa4\xd3\xba\x87Nm?Jc\xbdD1\x99T\xa8$\xc5]\x12%\xd9\x0cM\xeb,bj\xac\xe7hr\xef\x9d\xda~\xe4\xde\x12K:K\"\x94dw\xa4\xec\x8f\x8f\xda\xa7\xa7\xd6_\xe5\xd2dUR\xad\xb8\xfaV8FuY\xe5q\x823\x81\xa8\x88\xf70\x02\xf7E\x94\xed\xfb\xd3\xce/\xed\xc6xK\\T+1'\xa6\xb4\xa5\x96\xa2\xda\xb7\xe7\x90Jn\x9cZ\x7f\xe5\xd4\xe5\x03rG9Cx:M\xd2\x04W\x04\xe1YA\x98\x19\xd2sP!uN-\xbf\xf1\x01\x99\xd5\x83S~\xe8-n\xc1]5vS\x91\xa7\x1c\xf9E\x96L\xea\x12Mpv+\xb5b\xcf\xa94\xb2\xec\xd4\xfe3\x9d\x90l\x01#\xd7A_\x86\x82,\x0bR2S\x8c.A\xd3~P\x04\xb6\xcc\x16\xd88\x1a\xb0\xa9\x1b\xb9yj\xff\xd9\xe4\xcf\xfby\x12\xcd5:)\x1bR\xeez\xd5\x9d7!\x88dy\x15\xe8\xc6\xdd\x9d\x90\x12\xc8\xa7\xd6_m\xd3aM/\x19\x0b\xf3\x86D|\x7f@z'!uWv\xc8\xb2\x08g\x86h\xefr\xebK\xc5\xa7\xd5\x82\xbe*Q\x99\xcc2\xcc\xaf\xbd.\xd5\xe0\x1ex0K\xee\x0c]h\xfbV\xda\x97tS\x1d\xb2\x8e\xe0\x9c.\xd4\xd2\xf3\x82i7j\x0f6\xf9\xe9\xa3\xd9\xae\x99\x9f-\xee\x9cnX\x1bU\xf9\x12\xa5\xe4\x8e\xa4\xc2I\x08\xe7mK_\x9d\xdb\xa8\x07m\xd0,\x92M\xe9\xcc\x92\x9c\x85\xeb\xee\x13\x97\xcdM\xf9+\xf7E\xd7\xdc\xb8e\xfe\x91\xe5\x92\x0e>\x03\xd3\xfb\xf4r^\x9d\xf1\x90b5W\xf3N\x13\x16\x83\xcd\x8d\x9b/\x9d\x057t&78\xf2_[1\xa2[\x15\xb0\xd1\xe1|p\xa6\x88$\xdb\x84Q\xc4\x19\xc5p]\xcd\xf3\"y\xe4\x12\xb1 \x11I\xee|\x8c\xd0\xb4\xc6f\xeb\xd2\xbdg@\x85\x18\x1c@X\x9e\xca\x0d\xe3\xbb\x9b\xa0\xbb76\x1d\x9a\x8dj*\x1f\xba\xfa\xbcE|\x0b!/oj\xd1\x94\xab\ng1.b]a\x08\x0d\xc6/\xc6_\xe0\xe2\xd6\x92\xd3\xd4<\xf2m\xdfv\xa0\x0bV\xd6\xcbe^\x18MG\xd9\xcc\x0fD\xfe \xae\xaa\"\x99\xd4\x15A\x0b\xbcb\x01y\x0f\xc0 \xa1\xf2:\x9b\x91\x18MV\x8c\nB\xca7\x8d\xe5\xf2,\xa2\x96\x08\x95s%\xb1\x94@\xf0G\x84}n\x98\xcc\xbd)\xf24\xad\x97\xa1e\x0dIv\xf8\xba\xfeC\x88}\x9c\xa6jkKNob\xc2IU\xaa-\xee\x01&O\xe5\xa4\xb04\x00\xbd*\xa5\xc8\x9c&$\x8d\x9d\xd9\xe6H\xa6\x03\xe1\xb4\xcc\x11\xc9\xf0$\xe5\xde9\x15\xb5R\x07\xfd\x85\x05\x95\xf9\x049T\xdf\xda7Qm\x89\xa3}1`d\xbbb\xa3\xb2\x1b\x0d\x08k\xc9\x9c\xe7\x95\xd6\x97\x99\xd9\xbc(\xca\xd3\x940\x13\xa79|p\xcd\x91\"\xc0\xb8(\xcf\x88:\xb2\xf0LT\x86J=\xf9\xaf0L\x0c@M\x1c.\xd4^\xce\x1d[i\x94\x8c\xf5\x85`\xc8+\x1c\xecz\xca0\xb1AD\xfd\xe4\xa9\x1a\xdc\x15HQCOB\xc2r\x1a\xd6\xc8j\x18\x9e\xd704\xb3ahn\xc3\xe0\xec\x86A\xf9\x0d\x833\x1c\x06\xe68\x0c\xcfr\x18\x9e\xe700\xd3a\xdd\\\x87~\x12\x9e?\xce|\x07\xc0\xb7\xf6/\x87f<Z\x8d\xa1[\x11\xda]\xd1\n\xc7|d&\x19\x86\xf9\x9a\xfa\x04\xd9Y\xc8\x8e~\xe7z\x9e1|-+\xd0\xf1<.{\x96\xda\x86\x1d\xb06N#\xd8\x1a@\x11\x02\xa5:\xeaqM]\xf8@\x0buB\x17A\xe5\xd4Y\xf6\xb0\x82\xda\x1eJ\xad\xad\x98\xda\x00{\xd0)\xeau\x03\xd8\x16\xd1\xac;q\x04\xb8v\xce\xf2U+C}(-C\x8a\x0bH\xba\xe14\x81(-/\xb8u\xb0\x1f\x89q\x86c\xbf\xa6\xe2\x02\xb0\x97\x8d\x14\x90\xf9\x8a\xa0\xa3\xfb\xae8\x15\xbbz\xaa\xcb\xe2\xc4\x80\x9e\xdb\xe2\xd4\x1b\xaa\x9b\"r\xdd\x15\xa7\xb5W\xf4^\x15\x17\xd9o\xdd\xe1\x8c\xf1\xb4\x99\xff|2.v\x1dIi?yV\xc6a\xc3\x1cM\x9a4G\xf5\x00\xa1?X\xdb\x01Qt\xee\x85%2\xf3-\xad0\xce\xd22G\xb7Y~\x9f!L\xf9\xf735\x84\xbc\xe9\x1a\xcf\x11:\x86Q\xac)<\x90\xdbO\x9e{\xc8\x8a\x83VUA@t*Z\xa3\xd7\xacgeR\xcd\xd14I+R\x90\x18\xdd\xdeI\x0d_\x91\x02Wy\xe1N\x1b\x139\xe9^r\x81\x10\x14\x80\xa4\xbc1,_\x89\x19_jo\xeb\x06%sV\xe6iT\xce\xf2\xf4\xf2\xe9Td\xc4\x99\x978B\x89\x15d\x8a\xd1\x022\xc0r +\"\xf02 \xd49a\xef$7\xb2\xe5\x90[6\x08M,\xac\xf7\xbd9.\xe7\xe3\xa3Z\x89\xdb\xdd\x19\x12\x99\xd6\xa3E\xf2Z\xb0\x8c\"$\x14\xd1\xa0y\x01\x96@t\xf0\xb6\x9cb\xab\xc9\xbf\xa6\x03\xb3{E\xfcYL\xf4Q\x89j\xac \xbc\xb9\x9aQ\xbeX\xe4\x19\x1b\xcf\x9f\x1d\xcao\xdbz\x16r\xf0\xa1y\xa2\x9aD\xa395\xadr\xc8\xe1\xb2|T\xe7i\xf4\x9a\x83\xfd\xb99\xacet:T\xa4\xf1\x9e\xda\xca\x87\x8a\xde$\xbb\xcbo=\xbc\x94d\xcb\xbaz\xb1\xa5[\x90]\xd0k\xe1!F_\xfb\xf9B\x97\x9d7#\x92M\xcb\xe9\xc2\xa7Iv\x8b&8\xba\x15\xcd\xdb\x01\x90X\xb6\x02+\xc2`L\xe3\x8fu\xa9&\xeb\xe1`WO\x12\x00\xcd\x03\xfe\xc0\xb7\x8aE|\x0bE\xdfd\x83\x7f\x06\x95P|*+&\"%\x1b\xcaI\x83\x16@\x15X|\xafY\x06\x11\xcf\x96\xa7K\xcc\xce\xcb\x96uX<\xf7\xa21\xbc\n\xf2\xf2\xd3\xc7\xaf\x97\xbf\xdd\x9c\x7f\xb9\xf8v}su}v\xfd\xed\xaaWe\x9a\x0b\xc6\xc5\xe5\xd7\x8b\xafWk\x00\xe0\xbf\x05?W\x95u\xeb\"\xd2_\x92\x07\x89\x07Y\x81\x00\x08\xad\xa0\nP\x1a\xc2\xf2\xbep\x9a\xc4\x87u\xc6\xfdE\xce\xb7\x94w\x00\x1f\x07\x96\xd2Nc\xf9\xd7v\xe9\x97\xb6c2\x84\x8bIR\x15\xb8X5\x12\x8c\xf5\x17T>\x1f\xdf\n\xc3\xe7\xc8\x7f\xb3\xcf\x90\xfff\x9f_\xc27\xb4a\x81-\x0br\x97\xe4u\x99\xae:[]+\x97\xf2\xceU\x08\x9b\xeb\x02G\xb7<6\xc6-'\xe5\x01\x12\xa9\x93\xa0^\x19Hz\xe9\x83t\xecl\x8a[4O\xc8\x1d\xbf\xdd$\xaf\xab\x90\xd8\xc93\xd0\xec8\xa4\x17k\x15>\xb3\xae\xff/\xa1\xe7+\xd9\x0b\x95\x93\x13\xd6\x80\x81?\xfc\x8bC\x15\x05h\x87\xa1\x9eA\x83^1\x98\x12/\xc9\x82M\x18\xa3q\x08\x01\xc0\x9aJ'A\x1b\xb1\x95\x93l&/\xcc\xd9\x9b\xe2$\xad\x0b\x80\x0b\x89\xa8\x1a^\x92,\x06-d\x9fU\xef\xa3t\xaf\xbe\xfd>HKu\xbf\xbe8\xbb\x82\x15\xcb\x9b\x9f]\xfd\xf7\xf9\xc5\x80\xcf>\x9f\x9d\xff\x1e\xfcL\xd3\xc9C\xf1\x1c\xa6\x8d\x1d\xa3A\x16\xc5\xf9\xb1\xa1\x81Q\x9d\x95$l\xab\xb1s\x8d>\xf5\xf1\xdd%m\x13\x8f\xfef\xa80\xa2\xed&\xaaA\x9b\x9b\xa3\x86\x0cI\xd9\xa1=$\xfdM\x1bR\xa1t\x18\xe5Y\x99\xc42\xfa\xc0\x06\xbfM\xd8\xf9E\xcco\xd1Z$eI7\xa7\xd0Gy\x81b\x92\xe2\x15\x89\x81%\x8a\x8eIR\xe6kO\x92\xfe\xe6\xa4Ks\xb4h\x9d9\x95\x19\xaeTt\xf9@\x85\x1ew\xaa\xber\xf9D\xb2\x08/\xcb:US\x12r\x8by\xb1\x908\"j,\x0f@\xb51l\x8e|\x0e\xaf\xcb\x9fQsY}\x9dVLH\x0b\x92e3C\\\x07V\x89\xbe\xca\x1d\x19\xf9A\xd3V8\x81\x99\x0e/\xa3gR{\x96\x92\x80\xcdY\x06@\xcf\x96\xd6\xf6J\xd6\x16J\xe2\xf0\xc8\x01.\xbc\xdag\xeaH$\x9f2\xcb\x95-9\xae*\x1c\xcd\xf9h\xaa\xa2\x95\xeeM\x82#w#ls\xc7\x08>f\xbe{\xb0p\xdb \xb1\x98\x91\xa0\\\x9e\x89\x80\x86\xf8YT;\xd9QV\x81\xabQ\x12\x95Lh\x81\x0c%-\x13\xc9 \xd0`\x81\x0dg$\x81bx\x1b\xdc(j|g\x92\x91X\xd0`\xe2P\xb3\x0c\xdb\x9c1\xd4\x9e\xe5\xf0T!\x05 B\x12Xb\xe26\x90e\x8ct\xd5\x86m\x80\xe4\xe1\xc1\x82`lr\x1b\xe8\xa3MU\x12HD\xfd\xd8O\x1b\xa1\xd03dDi#\x87R\xa1\xc6\xd8)/\xb0\x1a\x02\x80\x15HK \xa0\xa6@\xbbb\x08\xf1<\x01vA\xef`W\x0c1\x88Vch\x17\x84v\xc5\x10p\xccGf\x92a\x98\xaf\x99S\x8a\xfa\x14C\x08\xb9 \xb1jF\xd7\x90\x01=\xee\xd7\xde\xc1\xe0w\x90#!\xeb\xd9 uc\xb9\x0d\xe5Jr%\xb9\x87\xc8\xc1\xcc\xb5\xa7\xf8\xab\xc7?\xde\xcc\xc8\xd1#~\xac\xea_N\xaa\x87\x93\x87\x934\xbd;y\x88>{\xf7\xee\xfb\xc9\xd1\xf7\xc7Y\xf5\xbe(\xe7w?V\xd3\xe2{T\xb8\xd0a\xd7)S\"\xe4Y\xbajH\x80\x12V\xb8\xa7\x1d\x1f\xe0\xb4\xcc]\xf3\x13\xb7]X\xc5\xb5\xdbW\x0e.\xa6H\xb9\xd0\xbdW^\xbde\xc4\xe4\xaa\x1c\xa5y~K\xa5\xb3\x05\x8a(\xf6\xe1\x01I\xdf<|\xf7\x00\xc0\xb8\xca\x18\x8a\x0b\xa9i\x8agLm\xa8k\x03r\xf9\x1aC\xc1\xad&9\x10\xa1\xb9D\x86PI\x1a\xed\"]\xb5r\x99g\xa55\x83CMG\x14\xb7?\x11\xf2z\xb1}\x08\x7f?\xbb\x97k\xa1O\x1e\xf8\x84\xbc\xae\xf8X\xd8\xb7\x06s#/^d\xb3w\x1ef2\x10,\xd9'\x84\xa4\xa4\xba\xd3j@#\"\xd9\x1a\x0c\xb2\xc2\xce\xfa^\x05#C\xab\xbc.\x84ib\xa2\xe8\x9f\x95(\xa7\xba\x14\xd4AMv\x1d\xff7\xc5Zdd\x13\xf4\xf7\x9a\x14\xabC\xd9\\\xf7\xf2\xe2c\x0b\x18\xaf\xe4l\x86\x97\xa9\xb4\xdak\xc6l\xce2Tg\xe4aI\"j]\xf1\xbb\x99l\xebTFs\xb2\xc0\xe6\xb28\x8d-\xb7\xa1\xc5\x06\xe8.\xaeG\x80Fyl\x91v\xfc\x03W\x8fq\xe9\x95&Y\xf5\xf6M\x87@\x8e\xfe\xdc\x9e9\xc4\xa4\xc2I\xba%M0\xe8\xe77u\xe1\xbc\x16&\xa8\x8cX\xed\xe8\xe0\xaf\xad>\xff\x12\x17xA*Rhs\xde\xe7\nS3Q\\<\xd8\xda\x11\xfdm\x9a\xa1\x96\x8c\xb2Y\x0ch]\xfbet\xabe\x0d[\xc5f\xa1$\xd9)Z\xe2JO\xc2\xa4b))H|\x8a\xaa\xa2\xd6\xd5\x93u\x81\xe5Z\xb5b\xe9\xc6*\x0d2^F\x9b\x99\xe65\x01\xd9h\xb0\x9f5\xaewE)\xf0\x83\nm+ \xa68-\xc14\x90\x8c\x01$@_Wk\x98\x83\xe5\xb3\xfb\x878P#\xd2\xcb0c\x81D\x1bf\xfaZ|\xcd!\x16\xdf\x10\xdc\xdb\xd6P\x07ya\x82\xf6\xc5\xbf\x8f\xf5\x8b,\x83\xe5v\x1fn\xdb(\x0d\xdf\x88\x8b\x06\xf5\x10?\xbb\xd6Ek\x01W\x90\xaa.2vC\x8b\x0d\xb4nE6pq\x9a\x9ab\x98\x0e\xc3V\xb2/\xf8f\x81^\xd3\xc5\x10\xa3\x1d6\xbf\xffl\x1d\xad\xbd>r\\\xe7xX\x11^b\xa1\xee\xd4\x93\x18\xe2,>l\x18\xe2&1\xe9\xd7\xda\\\xb6\x01\xd5+gh\x82c\xfdLB\xbe\x84\x92\xe9\xa9>\xb1k\x93G\x99\xf0d\x8c\x89\xb3\x18e\xb9\x95\xfa\x07-\x00\xe2\xc2\x9c\xea>\xa7\xec\xcc.\xcd\xc9\xa7\xa6,\xd1QbG<\x02,\xfb\x97\xbeaV(\xce\xb3W\x95\xa0\xf8\x94Kn\xb6\x91(\xf1\xd8g\xc6\xf0g\x1d\xaa\xee\xa1I]\xa1,\xaf,\x94\xc5F/\xfe.\x18~?`\xc3\xca\x14-\xb5Z\xf4\x8fj\xcf\xc49)\xe9<\x17\xb8\x8a\xcc\xbb\xa8\xb4\xef\xf5\x15\xf9\xebJ\x860\xf6\x1aCK\\d$,\x14~\xebP\xa5\xba!i3\xbc\"U\xcb\xa2\x13\x18u\xcc\x1cJ\xae\x82\x17\x9f\x1a\x86\x8da\xd7\x99\x8c\xa6T\x83j\xa4u\x1e+]\xf2\xcbO\x12-\xae\xfc5-\xf6\xea\xcd\xd1\xd1+w@F+\xc4\xddd$\xc6\x11F\x0e\x07\xd0\x94eL\xe9\xa3\xfa\x8eF\xf2r'\xd6t\xb4lY|\xaf\x13[\xaa\x83\xbb\xeb\xe8Z\x07y\xc1\x00\xb9'\xcd'\x14| \x9d\x92!X\x08\x05\x988\x11\xae\xd4D\xe8\x1b\xef\xfay\xfe[\xd3\xb4\x81ow\x84\xce\x17\xcb\x94\xddqW\xa22\xbe=8\x0b\xd4!\n\x9d5\xc5\x11\x0f7\xb2v\x98\\L\xf1/ \xdfk\xd2\x82k\x1b\x81\xe6\xf31/\x17\xb9k\xb0\x12\\\xb6\xfb\xb4\xc4l$L\xd9\xad\xb6U\x87\xef\xfe\x94\x00\xe3KnJ\xb2\xb6\x1cD\xae\x05N\xd3\xfc^\xa81Q\xe6\xec\x03\xd7\xf1,\x9b\x87\xdd\x88\xeeIE\xf3\x85'\xe5\x13\xec\x99\x12\xdc3\xfc \xef\x1c\xfe\xe0M\xf5\xf3\xc4\xf6\xab0_\xcb\xfaw\x7f\xbb\xb2\"O\x83}\xca \x1c\xc4\x1f\xcc\xe05;RNF\xeb\xcd\x1b\x89\xae\xb5\xc0$0Q!O\x00\xbd:{\x11\x0f\xd6s\xc4\xb8\x08\xbdO\x1b\x0e\xf3\x1e\xfc\xcb\xf3\xff<\xffrv\xfd\xf5\xb2\xdfwW\x9f.\xff8\xff\xf8\xa9\xe7W\xe7_\xfe\xf8t\xd5{\xac\x8f\xdf\xae\xae\xbf\xfev~\xf6\xa5\xdfg_\xff\xf1\xa5\xef\xfc\xce>\x7f>\xff\xfd\xfc\xec\xfaS\xbf\xcf\xbe\xfe\xed\xcb\xf9_\xbf\x85;\xb68.\xfd\xef\xf7]s\xdf~\xbf\xef\xd4\xad\xf8\x81\xcfT\xa3\x97A\xec\x15\xb6U\xcc\xc7\xc5\xc5\x03\x87GH\\\xf9\xcf\x0e\xcdz4lql\x8aS\xfb\xcfb\x14\\\xb2\x9b;\x8bd\x96d\xb8\x82\xf4\xad\xb4\xee\xa1S\xdb\x8f\xd2X/QL&\x15*Iq\x97DI6C\xd3:\x8b\xaaN`/<\x9a\xdc{\xa7\xb6\x1f\xb9\xb7\xc4R\xba\x92\x08%\xd9\x1d)\xfb\xe3\xa3\xf6\xe9\xa9\xf5W\xb94Y\x95T+\xae\xbe\x15\x8eQ]Vy\x9c\xe0L *\xe2=\x8c\xc0}\x11e\xfb\xfe\xb4\xf3K\xbbW\xdc\x12\x17\xd5J\xcc\x89)m\xa9\xa5\xa8\xf6\xed9\xa4\x92\x1b\xa7\xd6_9u\xf9\x80\xdcQ\xce\x10\x9eN\x93\x94\xdd\xf9\x8fg\x05afH\xcfA\x85\xd49\xb5\xfc\xc6\x07dV\x0fN\xf9a\xb5\xb8_v\xd5\xd8ME\x9er\xe4\x17Y2\xa9K4\xc1\xd9\xad\xd4\x8a=\xa7\xd2\xc8\xb2S\xfb\xcftB\xb2+\x8a\\\x07}\x19\n\xb2,H\xc9L1\xba\x04MG>\x11\xd82\xbbB\xe3h\xc0\xa6n\xe4\xe6\xa9\xfdg\x93?\xef\xe7I4\xd7\xe8\xa4lH\xb9\xebU\xc3\xda\x84 \x92\xe5U\xa0AuwBJ \x9fZ\x7f\xb5M\x87\xf5\x81d,\xcc{\xf4\xf0\xfd\x01i'\x84\xd4-\xd4!\xcb\"\x9c\xd0\xa1\xbd\xcb\xad/\x15\x99V\x0b\xfa\xaaDe2\xcb0\xbfP\xbaT\x83{\xe0\xc1,\xb93t\xa1\xed[i_\xd2Mu\xc8\x9ads\xbaPK\xcf\x0b\xa6\xdd\xbb<\xd8\xf7\xa6\x8ff\xbbf~\xb6\xb8\xcd\xb9amT\xe5K\x94\x92;\x92\n'!\x9c\xca,}un\xa3\x1e\xb4A\xb3H6\xa53K\x06\x16\xae\xbbO\\6w\xd0\xaf\xdcWHs\xe3\x96\xf9G\x96{+\xf8\x0cL\xef\xd3\xcbyu\xc6C\x8a\xd5\\\xcd;MX\x0c67\xee\x94t\xd6\xa0\xd0\x99\xdc\xe0\xc8\x7f\x93\xc3\x88nU\xc0F\x87\xf3\xc1\x99\"\x92\xec\x9cE\x11g\x14\xc3u5\xcf\x8b\xe4\x91K\xc4\x82D$\xb9\xf31B\xd3-\x9a\xadK\xb7\xf5\xbe\n18\x80\xb0\x04\x93\x1b\xc6w7Awol:4\x1b\xd5T>t\xf5y\xd7\xf4\x16B^\xde\xd4\xa2)W\x15\xceb\\\xc4\xba\xc2\x10\x1a\x8c_9\xbf\xc0\xc5\xad%\x19\xa9y\xe4\xdb\xbe\xed@\x17\xac\xac\x97\xcb\xbc0\xfap\xb2\x99\x1f\x88\xc4\x11\\UE2\xa9+\x82\x16x\xc5\x02\xf2\x1e\x80\x13B\xe5u6#1\x9a\xac\x18\x15\x84\x94oz\xad\xe5YD-\x11*\xe7Jb\xa9\n\xe0\x8f\x08\xfb\xdc0\x99{S\xe4iZ/C\xcb\x1a\x92\xec\xf0u\xfd\x87\x10\xfb8M\xd5\xd6\x96\x9c\xde\xc4\x84\x93\xaa\xb4\x9fE\x9b\x8f<\x95\x93\xc2\xd2\x00\xf4\xaa\x94\"s\x9a\x904\xf6\\\xba/\x97#-sD2A\x0e\xd5\xb7\xf6MT[\xe2h_\x0c\x18\xd9\xf8\x85\xfb\xac\xc9?a]\x8a\xf3\xbc\xd2Z\x153\x9b\x17Ey\x9a\x12f\xe24\x87\x0f\xae9R\x04\x18\x17\xe5\x19QG\x16\x9e\x89\xcaP\xa9'm\x15\x86\x89\x01\xa8\x89\xc3\x85:\xae\xb9c+\x8d\x92\xb1\xbe\x10\x0cy\x85\x83]O\x19&6\x88\xa8\x9fO\x82\xc9mh\xe9\xfc\xb3\x13\x05\"\xde\xa1\xb0`$\xd1\xfe5\x82\x90\xd8(mZS55\x82\xfa\xd9\x03\xce\xaa&\xe1\xd4z\x06\x05\x01+Q\x1f\x9f1F`\x85A\xa8\x8e\xa04\x1c\xdc\xd2F\xda];\xe7\x8bfl\xaa\x86E\xcc\xc6E\xf2\xa0Z\x08\x8f\x80P\xb8\x06\x97?\xa0\xd5\x05nux^\xc3\xb8\xe3\xf6a?uQl\xd3}\xdc\xd1\xaf\x05t\x83\x88\xad\xff\xb8 \xbck\xe3!\xe94\x86\xc9\xb3\x9d7\xbe\x04\x83Z\xf2\x01\xae\xb1xy\x8c<\x06X&\x034\x02\xce\x9fq\xb3\x19\x06\xe43\xf4$$,\xa7a\x8d\xac\x86\xe1y\x0dC3\x1b\x86\xe66\x0c\xcen\x18\x94\xdf08\xc3a`\x8e\xc3\xf0,\x87\xe1y\x0e\x033\x1d\xd6\xcdu\xe8'\xe1\xf9\xe3\xccw\x00|k\xffrh\xc6\xc3\x93\xe5<c\x7f\x10\x95A\xb3\x8c5\x13\x0b\\\xdb\x1f\x9c\xd6H\xfdsa\xb8\xb1\n\x9a*o\xc8\xa7\x1f\xc8\x8bsC\xd8\xfdh\xc2\\\xdf\xa3\xf3K\"\x9c\xa6\xab\xe6f|\xe7\x87\xe2\xa3\x11\xd0\xdd\x80O+\x1d\x10^\xc6\x9a\x90\x94\x1f\x9eS\x0dKUz\x94&$k\xfc[\x96\xd9\xe0\x85\xd7e\xd1\xa0S\x8b\xeb8\xf1R\xa7\x0f>\x1f\x99;\x1d\xa3\xc9j\x0f\xd5\xcbX\xfdw\x95,HY\xe1\xc5\xb2\xdcS\xe10\xde\x99\xcf\x7fs%/\xd1J\xc5\xddj\xd3\xdc\x8d\x06\xd8c\x86\xfa\xcb<2\x10\xdfP$B\x82\x10\xc8@Hc\"\nv\x9f\x92%\x04\x9a\xef1\x91oD\x0e\xe9'T\x82\x8a\xb3\x7f\x92U\xc5\x8a\xdd\xa8&\xe6\x0b\xc2i\xb2\x1a\x11#\x98\x14@\xa8s\xb3\xbd\x1e'\xe0&\x87\xe0\x9e\xa0\x80C*\xf1\xcb\xfb\x9a\xe0\xc0\x17\xb3\x84).+9i\x10b[\xba\x8e,}.\x19q!\x85\xc8\x80!\xebj\xafd>Z\xb3\xa5_\xde\x85\xe0\x82)Cmea\xbb\xb4\xe4\x1c\xa7\x0ck\x19\x1e\x15\xcc\x9a\x07\xc4\x8f\x98\x0c'8\x9a\x8b\x15\xf7~\xe0l\x11e>\x1b\xe1\x08\x1do1\x0fK\x06^h\xa3\x08\x01\x95\xe4\xd9!\xc7\x17\x91;\xbf\xdb\x03\x9b\xe1\x19Uq\x9f\xa9v-Q\x84\x97\xdc\xca\xb4f\xe1\xd0\x1d\xe8\x05\xa5\xf82\x93\x0c\xc3|M}\x82\xec,dG\xbfsc\xcd\x18\xbe\x96\x15\xe8x\x1e\x97=Km\xc3\x0eX\x1b\xa7\x11l\x0d\xa0\x08\x81R\x1d\xf5\xb8\xb9-|\xa0\x85:\xa1\x8b\xa0r\xea,{XAm\x0f\xa5\xd6VLm\x80=\xe8\x14\xf5\xba\x14k\x8bh\xd6\x9d8\x02\xdc\xc4f\xf9\xaa\x95\xa1>\x94\x96!\xc5\x05$\xddp\x9a@\x94\x96\x17\xdc:\xd8\x8f\xc48\xc3\xb1_Sq\x01\xd8\xcbF\n\xc8|E\xd0\xd1}}\x9a\x8a]m\xe0\xfe4\xeb\x9c\xc4\x80\x9e[\xd5\xd4\x1b\xaa\x9b\"b\xcd\x14-\xc0\xb4\xf6\x8a\x9ef\x8aF\xfbc\xfd\xe1\x8c\xf1\xb4\x99\xff|2.v\x1dIi?yV\xc6a\xc3\x1cM\x9a4G\xf5\x00\xa1?X\xdb\x01Qt\xee\x85%2\xf3-\xad0\xce\xd22G\xb7Y~\x9f!L\xf9\xf735\x84\xbc\xe9\x1a\xcf\x11:\x86Q\xac)<\x90\xdbO\x9e{\xc8\x8a\x83VUA@t*Z\xa3\xd7\xacgeR\xcd\xd14I+R\x90\x18\xdd\xdeI\x0d_\x91\x02Wy\xe1N\x1b\x139\xe9^r\x81\x10\x14\x80\xa4\xbc1,_\x89\x19_jo\xeb\x06%sV\xe6iT\xce\xf2\xf4\xf2\xe9Td\xc4\x99W$B\x89\x15d\x8a\xd1\x022\xc0r +\"\xf02 \xd49a\xef$7\xb2\xe5\x90[6\x08M,\xac\xf7\xbd9.\xe7\xe3\xa3Z\x89\x0b\xcf\x19\x12\x99\xd6\xa3E\xf2Z\xb0\x8c\"$\x14\xd1\xa0y\x01\x96@t\xf0\xb6\x9cb\xab\xc9\xbf\xa6\x03\xb3\xcb\xdd\xfdYL\xf4Q\x89j\xac \xbc\xb9\x9aQ\xbeX\xe4\x19\x1b\xcf\x9f\x1d\xca\xaf\xc9z\x16r\xf0\xa1y\xa2\x9aD\xa395\xadr\xc8\xe1\xb2|T\xe7i\xf4\x9a\x83\xfd\xb99\xacet:T\xa4\xf1\x9e\xda\xca\x87\x8a\xde$\xbb\xcbo=\xbc\x94d\xcb\xbaz\xb1\xa5[\x90]\xd0k\xe1!F_\xfb\xf9B\x97\x9d7#\x92M\xcb\xd9\xfdIIv\x8b&8\xba\x15\xcd\xdb\x01\x90X\xb6\x02+\xc2`L\xe3\x8fu\xa9&\xeb\xe1`WO\x12\x00\xcd\x03\xfe\xc0\xb7\x8aE|\x0bE\xdfd\x83\x7f\x06\x95P|*+&\"%\x1b\xcaI\x83\x16@\x15X|\xafY\x06\x11\xcf\x96\xa7K\xcc\xce\xcb\x96uX<\xf7\xa21\xbc\n\xf2\xf2\xd3\xc7\xaf\x97\xbf\xdd\x9c\x7f\xb9\xf8v}su}v\xfd\xed\xaaWe\x9a\x0b\xc6\xc5\xe5\xd7\x8b\xafWk\x00\xe0\xbf\x05?W\x95u\xeb\"\xd2_\x92\x07\x89\x07Y\x81\x00\x08\xad\xa0\nP\x1a\xc2\xf2\xbep\x9a\xc4\x87u\xc6\xfdE\xce\xb7\x94w\x00\x1f\x07\x96\xd2Nc\xf9\xd7v\xe9\x97\xb6c2\x84\x8bIR\x15\xb8X5\x12\x8c\xf5\x17T>\x1f\xdf\n\xc3\xe7\xc8\x7f\xb3\xcf\x90\xfff\x9f_\xc27\xb4a\x81-\x0br\x97\xe4u\x99\xae:[]+\x97\xf2\xceU\x08\x9b\xeb\x02G\xb7<6\xc6-'\xe5\x01\x12\xa9\x93\xa0^\x19Hz\xe9\x83t\xecl\x8a[4O\xc8\x1d\xbf\xdd$\xaf\xab\x90\xd8\xc93\xd0\xec8\xa4\x17k\x15>\xb3\xae\xff/\xa1\xe7+\xd9\x0b\x95\x93\x13\xd6\x80\x81?\xfc\x8bC\x15\x05h\x87\xa1\x9eA\x83^1\x98\x12/\xc9\x82M\x18\xa3q\x08\x01\xc0\x9aJ'A\x1b\xb1\x95\x93l&/\xcc\xd9\x9b\xe2$\xad\x0b\x80\x0b\x89\xa8\x1a^\x92,\x06-d\x9fU\xef\xa3t\xaf\xbe\xfd>HKu\xbf\xbe8\xbb\x82\x15\xcb\x9b\x9f]\xfd\xf7\xf9\xc5\x80\xcf>\x9f\x9d\xff\x1e\xfcL\xd3\xc9C\xf1\x1c\xa6\x8d\x1d\xa3A\x16\xc5\xf9\xb1\xa1\x81Q\x9d\x95$l\xab\xb1s\x8d>\xf5\xf1\xdd%m\x13\x8f\xfef\xa80\xa2\xed&\xaaA\x9b\x9b\xa3\x86\x0cI\xd9\xa1=$\xfdM\x1bR\xa1t\x18\xe5Y\x99\xc42\xfa\xc0\x06\xbfM\xd8\xf9E\xcco\xd1Z$eI7\xa7\xd0Gy\x81b\x92\xe2\x15\x89\x81%\x8a\x8eIR\xe6kO\x92\xfe\xe6\xa4Ks\xb4h\x9d9\x95\x19\xaeTt\xf9@\x85\x1ew\xaa\xber\xf9D\xb2\x08/\xcb:US\x12r\x8by\xb1\x908\"j,\x0f@\xb51l\x8e|\x0e\xaf\xcb\x9fQs\xc9|\x9dVLH\x0b\x92\xf1\xdbZ\x95\xb8\x0e\xac\x12}\x95;2\xf2\x83\xa6\xadp\x023\x1d^F\xcf\xa4\xf6,%\x01\x9b\xb3\x0c\x80\x9e-\xad\xed\x95\xac-\x94\xc4\xe1\x91\x03\\x\xb5\xcf\xd4\x91H>e\x96+[r\\U8\x9a\xf3\xd1TE+\xdd\x9b\x04G\xeeF\xd8\xe6\x8e\x11|\xcc|\xf7`\xe1\xb6Ab1#A\xb9<\x13\x01\x0d\xf1\xb3\xa8v\xb2\xa3\xac\x02W\xa3$*\x99\xd0\x02\x19JZ&\x92\x13\xa0\xc1\x02\x1b\xceH\x02\xc5\xf06\xb8Q\xd4\xf8\xce$#\xb1\xa0\xc1\xc4\xa1f\x19\xb69c\xa8=\xcb\xe1\xa9B\n\x12\x84$\xb0\xc4\xc4m \xcb\x18\xe9\xaa\x0d\xdb\x00\xc9\xc3\x83\x05\xc1\xd8\xe46\xd0G\x9b\xaa$\x90\x88\xfa\xb1\x9f6B\xa1g\xc8\x88\xd2F\x0e\xa5B\x8d\xb1S^`5\x04\x00+\x90\x96@@M\x81v\xc5\x10\xe2y\x02\xec\x82\xde\xc1\xae\x18b\x10\xad\xc6\xd0.\x08\xed\x8a!\xe0\x98\x8f\xcc$\xc30_3\xa7\x14\xf5)\x86\x10ry\xccR\x08\x0b\xc8\xf1\n!\x84}\xfd\x94e\x10&>#X\x16@\xd1\x01\xa57\xea\xcc1\xe0\x9d\xf8\xf7A\xbf\x02\x88\xd6b\x87U\xd2\xb6\xd0hmEd\x82\x03Sh#\xf9\xeb\x9b\xa7\xd6\xa6\xca\x1e\x06R\xf1\xa5\xb8@\x96\xf9Z\xfc /\xa4\x11\x08\x16\xd2\xe7@2\x0d\xc5\x7f\x14M\x0e\xc5\xbbSQ1\xa6\x8fd\x05\xee\xf4\x95@\xa0\x98\xc0EI\xec\xf6\x99\x82(\x834\x1d\x02j;\xd4\xb3\xf0\x0f\xc1\xf9\x07\xc1\xb7\x1a\xea\xb90\xa8G! \x18P_]\x88\x86\x15\x04\xa2\xad\xa5`HG\x06\x01V\xbdJ\xbb\x10\xac \xea\x85\xd2r\x98\x06\xed\x82\xb2h\xd1\x9e\x10\xfa\xadAHy\xa0~$_\x8f\x8eAU\x12\x84\xd7\xbb\xdc\x12\xf5.:DOI\x91\x11\x9cE\x00\xab\x0e-B\xe4\xc7\xc2\xee\x1aD\xe1\xcem\xa2\x04\x91\x83\xf6\x14\x1b\x8a\xb1\xc51p\xb7r\x90\xd5\x14v\xd7\xb95\x08{\x8b\xe7\xd1E\xf9r\xd5\x98i\xfc\x0ff}\x12b\xd5\x8c\xae!\x03z\xdc\xaf\xbd\x83\xc1\xef GB\xd6\xb3\x13\xea\xc6r\x1b\xca\x95\xe4Jr\x0f\x91\x83\x99kO\xf1W\x8f\x7f\xbc\x99\x91\xa3G\xfcX\xd5\xbf\x9cT\x0f'\x0f'izw\xf2\x10}x\xac\xca\xfbwo\xe2\x1fo\xbe\xc7w\x8b\x18?\xd6\xf7\x8f\x11\x8e\xe3\xf9\xfc\xfdlQ\xbf]D\x8f\xe4\xad\x0d\xb2?\xda;\x12\xf6*\x8e\x1b\xe1\x0c\x91\x84u \x9f\x10\x84\xd9\xd6\xf3\"\xfd\xe1\xf8\xc3\xaf\xef'\xf8\xcd\xfe\xc9\xf4\xed\xc9\xfe\xbb\x93\x0fx\xff\xfd/\xf8\xd7\xfd)\x89\xf0\xf1\xe4\xe8\xe4\xf8\x0d9\xe2-\xe8\xa5\\\x8b\xdcw\xe3\x99T\xf6\xcd\xf5\xf8\xc7\xa3\x93\xca?\x1e\xd2\xdb{\x92Z\x89\x19(\xa0\x1c\x8b\x9cM\x87\xbd\xde\x04=y\x7f\xf4v\xfa~\x12\xed\xffr\xf4\xcb\xaf\xfb\xef\xc8\xe4d\xff\xc3\xc9\xf1t\xff\xcd\xf1\x9b\xe3_~=\x8e\xde\x90\xa8EP>\xd8Z$\xe5 \x8e\x7f<8\x89\xfa\xa1\xfc\x91F\xf3\xb7\xe5\xc3}\xf6\xee\xdd\xf7\x93\xa3\xef\x8f\xb3\xea}Q\xce\xef~\xac\xa6\xc5\xf7\xa8p\xa1\xc3\xaeS\xa6D\xc8\xb3t\xd5\x90\x00%\xacpO;>\xc0i\x99\xbb\xe6'n\xbb\xb0\x8ak\xb7\xaf\x1c\\L\x91r\xa1{\xaf\xbcz\xcb\x88\xc9U9J\xf3\xfc\x96Jg\x0b\x14Q\xec\xc3\x03\x92\xbey\xf8\xee\x01\x80q\x951\x14\x17R\xd3\x14\xcf\x98\xdaP\xd7\x06\xe4\xf25\x86\x82[Mr Bs\x89\x0c\xa1\x924\xdaE\xbaj\xe52\xcfJk\x06\x87\x9a\x8e(n\x7f\"\xe4\xf5b\xfb\x10\xfe~v/\xd7B\x9f<\xf0 y]\xf1\xb1\xb0o\x0d\xe6F^\xbc\xc8f\xef<\xccd X\xb2O\x08IIu\xa7\xd5\x80FD\xb25\x18d\x85\x9d\xf5\xbd\nF\x86Vy]\x08\xd3\xc4D\xd1?+QNu)\xa8\x83\x9a\xec:\xfeo\x8a\xb5\xc8\xc8&\xe8\xef5)V\x87\xb2\xb9\xee\xe5\xc5\xc7\x160^\xc9\xd9\x0c/Si\xb5\xd7\x8c\xd9\x9ce\xa8\xce\xc8\xc3\x92D\xd4\xba\xe2w3\xd9\xd6\xa9\x8c\xe6d\x81\xcdeq\x1a[nC\x8b\x0d\xd0]\\\x8f\x00\x8d\xf2\xd8\"\xed\xf8\x07\xae\x1e\xe3\xd2+M\xb2\xea\xed\x9b\x0e\x81\x1c\xfd\xb9=s\x88I\x85\x93tK\x9a`\xd0\xcfo\xea\xc2y-LP\x19\xb1\xda\xd1\xc1_[}\xfe%.\xf0\x82T\xa4\xd0\xe6\xbc\xcf\x15\xa6f\xa2\xb8x\xb0\xb5#\xfa\xdb4C-\x19e\xb3\x18\xd0\xba\xf6\xcb\xe8V\xcb\x1a\xb6\x8a\xcdBI\xb2S\xb4\xc4\x95\x9e\x84I\xc5RR\x90\xf8\x14UE\xad\xab'\xeb\x02\xcb\xb5\xd2|\x13\xe0b\x0d\xf6f\xc6\xf5a(\x05~P\xd1h%\xc1\x14\xa7%\x98\x06\x92\xfc@\x02\xf4uh\x86\xb91>\xebz\x88\x9b2\"\xbdZ\xe7/\x06\xad\xe0\x06\xef\x86&gX\xb2\xc0\x15\x1df\xfdZ\xdc\xcd!F\xdf\x10\xdc\xdb\x06Q\x07ya\x85\xf6\xc5\xbf\x8f\x01\x8c,\x83\x84\x84WN\x0f\xbc?\xbb}\xa3\xef\xee\xd2v\xebG\xbbK\xdb\xf5gwi\xbbe\xc3\xec.m\xef=\xc6\xee\xd2\xf6\xdd\xa5\xed\xbbK\xdbw\x97\xb6\xef.m\xb7=\xbbK\xdb!\x1dQ\xa2\xdd\xa5\xed\xbbK\xdb\x9d\x0f\xd0c\x86\xfa\xcb\xbbK\xdb\x81\x18\xc1\xa4\x00B\xe1\xcb\xbew\x97\xb6\xef.m\xb7>\xbbK\xdbw\x97\xb6[\x1f\xd8\x0cw\x97\xb6\xef.m\xdf]\xda\xae\x9fp\xbb\xec(\x80\x0d\x05\xb1\x9f\x9e\xfe\x08\xabEZ-\xfd\xca\xd9k\xc5L\x9fr[\x96\xdaZ\x84\xcb\xf86\x88S@\xc8u\xa6\x89\x06\x17\xb57\xa0@T\x815\xcd\xd8\n\xca\x8c\xd1K\xa5\x02^\xeb\xac\x0f+\xfe\xf3e\xd0H\x9bl\x13\x90\xd0~\xdb]\xda\xee\x05\x06\xc1u$F\x18\x82\xeb\x9a\xa5\x82\x0eF\xf1\xa0\x1c\xbd\xb86e\x90\x95\x04\xe9J\x04\xd4\x97\x08\x85*\xd7\x9a\x07\xc8\x1a\x08.'PG{F\xbb>e\xbb>e}i5\x86nEh\xd7\xa7\x0c\x8e\xf9\xc8L2\x0c\xf35\xf5 \xb2\xb3\x90\x1d\xfdN\x8d\xfa\x18\xbe\x96\x15\xe8x\x1e\x97=Km\xc3\x0eX\x1b\xa7\x11l\x0d\xa0\x08\x81R\x1d\xf5\xe8\xd5\x12>\xd0B\x9d\xd0EP9u\x96=\xac\xa0\xb6\x87Rk+&x\xe7\x0b@_\x88\x17B\xb3\xee\xc4\x11\xa0\xf7\x8a\xe5\xab\xdd\xa5\xed\xe2Y\x07\xfb\x91\x18g8\xf6k*.\x00{\xd9H\x01\x99\xef\xb3^\xda.`\x97,\xa6Ji\xd3\xbe\x96\xbd\xfd\xfdK\xeb\x91\xb2+E\x97\xcfXH\x0e\xaa\xc1q\xc0\x82\x94\xa2\xf3g\x89Y~\xa5\xf3\\\x106\xf7\x06\x8a:CQ'Y\xda\xdf\x9a\xe2`Y\xc5\xee\x9f\xbf]\n\x06\xad\xbb\xb0mwK!\xbe\xe0\xfc:\xdf\x82Tu\x91\xf1X\xca\x05\x9e\x11\xd9\x11\xe0 #\x0f\xd5\x0d}\xb9\xca=\xd0&d\x96d\xee\x83\x1f\xc4\xeb\xb0\xe4\x1d=\x14&]%\x82\x16yY!2\x9d&QB\xb2*]\x1d\xa0\xafY\xbaByF\xfc:,\x9fNy\xb2.\xc5\xc37n9\xcf\xeb4F\x13\x96\x9c\xe5\xd2q\x1c\xdaH\xebS\xfb\x8f\xa6\xe1+$pd\x8b\x94\xd5\x0b\x96\xc7+~\xe3i\x178\xa3x\xf1\x0b\x13\xe7$c\xa4p\x83KJTg\xf8\x0e')\x9e\xa4\xbe\xa3A\x84\xce\xd9\xa8)\xbb\xf5N\xae\x0d\x1d3C5\xbb\x1a\xeb\x96\x0c[(\xb1\x1a\xbe\xa1\xfd\x0b\x95&\x0b_\xd2\xd3\xf3\xac\x13\x9b\x94\xb4H\xaa\xbc\xc2\xa9\xd6\xafL\xdeSU\xe5\x145m\x97y\x00V\xea~+\xb6I\xfcK5E)\x99V\x88,\x96\xd5\n%\xe20Wd\xff\xf3\xdb\x92\xf8\x06\xe7\x13\xa0k1\xf1q \xcbZ\xc0\xcb\xa5k\x05\xd81\xfa\x0d\xc32\xb4\x0e\xa1\xf4R8\x85\xb5A\x11\xcb>d\x98UEMP+\xe9\x18\x87z\xb7\n\xbaR\x10B4\x08\xe5\xe6#2\xe63\x90\xa6O{\x8dYY\x18R[\x0b\xd9{(\xc9G\xd3NI\x86\xbe\x9d\x97\xde\xf5m\xa1\xcez6P\x03\x82\xf7La\xdb\xbe\x91\x13T\x14\x1c\xa0s\x9f\xbf\x9d\x94(\x99ey\xa1\xcb\x0c\xff\xeb\x9e\xedX\x10\xeapxRW\xc6f\x041`\x9b \x92f\x9f\xe1\x82\xb4\xf6\x9a\x0f;~n@\xc7\xe7wj\xa2\xbc\x88I\xe1Ka@\xe8*\xc9\"r\x8a\xa2\xbc\\\xe4\xe5~\x19\xdf\xa2\xa3\x83wo\xad\x1f\x84\xd2\\\xb8\xa2U\xc6\x17\x9f7YLH\x1csM<\xbb\xbc\xf8\xa8L+\x91\xa0Sz\xf8KIkg\x8f1\xc5|\x07\xe8S'h\xe23\xcd\xc2\x8b\xa4\x9b]\xb2\x06\x84E9t\x86o\x82rl3Y\xedI\xb7\x81\xbc\x86\xfb \xed\x18\x9fI\xed\xd1\x1cA\xeb\xcb\xa0\xcf\xff\xb9V\\YSB]p\xc3\x8a.\xfb\x12\x97\xa2\x86B\xe3\x8a\x03\xaf\xe1\xc5l\xaa\xa0Au.t\x02c-\xa6$\\\xfa\xba\x9b\x93\xe3\xf4\xe3\x10\xf2\xa8\x0001=*8\xb4u\x94Dt)\xdcF\x1c;\xf1\xd5 \xad\xc9Y\xd7\xdeaw\x85\x92j\x0f%U)\x94*\xb3\xa9\xb8\xff\x11\xa3\x9c\xd2\xef>)M\xfe\xf0\xef\x1b\xad\xa6\xbfO\x0f\xaen+\x00\xf9P\x81\xb1\xeb\xc3\xb5\xeb\xc3\x15\xd8\x81O\xdc\x87k\xd7\x0b\xc5\x87\xe7\xa08\xcc\x93\xf7Bi\xb0\xd4\x8c\x08\xd3\xe5\xf4\xe9\xc0\x01\xf1\x06\x11U\xd0\xa1\x0c #\xb4\x82\x05:8gt`\x08\xb9:\x1b\xc6j3X\x88\xc8\xe7\x07d\x96!Q\x01\xbf\xef\xdf\xd7\xdb\x0f\xd2\xd3\x04\xbfa\xe2\xb6l\x08\x0by\x99\x7f\x0e\xa4\xee0_^\xf3\xd8\x0dh\x16\xef}\x90\xbfn\xf5\xca\x9f\x98\x8a\xba\x81\xd4|\xef\xa3e_\xaf\xbd\xeb\x9b\x1b\xe0\xac~z\x7f\xcf\xdctG\x0c`]_|\x90\xf7\xad\xf9\xd8\x060\xbb\xbf\xdd\xf5\xb0\x87,,@T\x0b\xdf\x19\xb8xC\x90\xb4\xc7\xe8D_\x1f\xed\x1f\x1f\xed\x1d\x1d\x1d\xb5\xa5\x178\xcck9d\xd7\x9b\xd9j\x7f\x96\x99\xf3\xcec\xf4]\xe4V\x7fv\x91\xdb\x17\x10\xb9\x15\x88\xa8 ,\xe5q\x15\x06\xa1\x96\xe8\xa2\x9c\xbd\xe2\xadt\xddF\xa8\x82\xb8\x0b\xbf\xb6\xfe\xba\x0b\xbf>q\xf8u\x17=\xec\x17\x9a\xd9E\x0f7H\xdcp\xdck\x17=\x1c\x83\x8a\xbb\xe8\xe1.z\xf8o\x11=d\x9aO|`\x0b ^\xb0\xbf\xb39%*1\xc5H\x0e~\x90\xe0\xc4\xa7F\xdc\x90;\xc8\x1c\xc8O\x12\x9d-\x0d\x1a\xea\xa4\xd0\x9f\x96o\xc7\xe8!\xfd\xba\x16=\xc4\xc6\\\xe4q\x9d\x8e\x9b\x873M\xf3\xbc\xb8\x99\xe1\xf2fY$\x91\xc3\xfc\x81E\xa1Z\xa0\x9a\xe8\x05\xbb\x99\xa3j\xee\xb1\xc6iT\xa7Tfi\xab\xdb~\xd86\x9f\xe1\x92\x9b\xf2\xe5\x1c\x17\xec\x16\xd1,_pc~Q\xce\xe8\x9f\xdc\x11\xac\x8fy&:\x03z\"}\xfb\xe8\x01es\\\xce\x0f\xeb2\xde_$)\xfa\x0b:\xa6>:\xfd\xdf\xe1\x03\xaa\xcb\xf8\x90\xfe\xd9\x03`\xa5^2\xbe]\x99p]\xb3\xfc\xf4\x80\x17\xcb\xd4\x17\x8c\xdcG\xef\x8e$T\xcf\\\xb5\x97\xb4\xf9\xfc?G\x07GoN\xd8\xbf\xdc\x97\x97\xed\xb3\xd7\xde\x1du\x91`?w\x06}sb\x9f\x8fu\x80`H6d\xd6\x07\xc3\xb1\x00\xcb<\x14\x8a\x0d\x80`X\xde,IqS\x97\xf1\xcd\"\xd9\xa0\xb7\x0e\xdbi\x9d \xb5l-\xb6\x90KRPV@\xf4\xcf\xee\x14\xc5\x88m\x93\x8aj\x16\xfar\x95\xf3\xafm\x81\x8aH\xed\xa8\x9b)!7\x9ee R\xc2@\xd3\x06W\"\xc4\xffAg\x96\x94r\xaeL\x8a\x98\x13\xf4\x93\x8d\xa9*\xae+@)]\"\x89K\xa8\xa8\xcb\x8b\x8f-x\xbbT\xae],\xe1\xe9c \x10\x03\xacz\xa0\xb6\x97R\xb07\x8brv\xc3\x02\xe4\xcd\xd9\xde2/\xbd\xc5\x9c\x1f\xe5\xc7\xd7\x0f\x9f\x99\xeaM\x16\xec\x9f\xa5\xbc\xac+\x9b!\x8c\xaa\x02g%\xbf\xb6\x98\xed\x1aRV\xc9\x02\xb3?\xcep\xa3\xd3k~\xbbZ\x16\xb7\xa3\xff\xd6\xc3\xe0\xd6\xd0\xe2\x95\xad\xb5\xeb\xcc\x13\xcf-\xe1\\\xaf\xb2\x0c2\x9e_Q\x06>\x87\xe8\xaeq\xcf)\x07\x9dQ\x8a\xb3H+@\xdf\xf9d\xff\xb3I_\xe8\xbd\xc5<\xaa\x83\xb1@$\x9f\xa2(O2\x19%aw\xc8\x8b/\xa8\xe9k\x01h\xb1\xa5\x995\xb0\xe3M\xb4\xe3\xcd.o\x86 \xd2p\x8fbNn^6,\xca\xfe\x98\x11\x12\x93\xd8\x91\x0e\xcf\x005\xba\xa2D\xaf\x85\xe3V\xa2\xffW\xbaw\xd6S\xdf,\xaf\xc4=\xb4\xe2-f\x00J\x05\xa1\xd5\xaa3\xaf\x93\xbd\xc4\xbcN\x0b(\xee5sw\xbaM\x08\xa1\xb7HL\xfd\xd6^\xf6J\xd0\x9c\x17\xbb\xdf\x18A\x9a\x9d\x0d \xe9\x8f&\x05uz\x19@\xfdK\xd6R\x9e=\x0c\xdd\x9d\x85\xbb\xb3p\xad\x7f\x7fj\x0b\xd7wZ6\xc9c\x9d8I\xd6\xf9\xc9Y\xa90\x12\xd3U\x0f7\xec\xa2\x97^k\x1e\xc8w06\x91\x1c@9\xf3\x9a\x8d]\xe5\xca\x10o\x8b0\xb17\x99\x9d\xefr\xca\xbd3\x0c'\\t\x87\x90\x91z61R\x19\xbe\xba\x10e2xg\x81\x97L\xa9|g\x1fZ\xcen\xac\x01\x88\x19.op\xfc\xbd.\xab\x855\xd1\x8bc\xc8\xcf,\x9ck0Ms\xcb\xc5\xba>3\xcd\x1cV\x89\xef\xe6\x97)\x8e\xaa\xbc\x10f\xda\xa2N\xabd\x99&\xd6*Wy\xb31\x05 \x95B\x13\xf4\x9f\xf0\xfc\x93\xeaA\xae\xf3\x9a\xd2\xbf\xa9b\xd5{\xae\xf4\x97\xfd\x10\xaf\x93\xeeP\xeaw\xa6y~[\x83\x9a\x07]\xf2s\x91\xdf\xd9\x07\xea\x10\x80Y\xb9i\xcav|\x89&yM\xed,u\x1f\xb4\xadU\x90\xe1>\x1a@\xc5\x0b[\xeb<2\xa9\xe6\xe0\xe2A\x9a\xc0\xb1\xb9\x05sSs\x95B\xa5&\x07\x9c\xbc\xf2\xd9e\xa8\x19OX`\xa2]\x86\x9ax\x001\xef?M\x86\x1a \nm\xc8(\x90\x8dn\x83rxI\xca<\xbd#;;\x1d\xed\xec\xf4\xed\xb2\xd3\xbb\n\xc4`@y\xe1d\x95\xa3i\x92\xc5\xec#T\x90(/\xe2v#\x8d\xd1\x8a\x91w\x89v\xfd\xb2\x98v\x89v\x1b$n8El\x97h7\x06\x15w\x89v\xbbD\xbb?o\xa2\x9d\xf4\xb8{f\xd9\x89$3\xc1}L\xf7\x9a)e\x86?\xfd\x05/v\x19v\xe2Y\xc3\x1b]\xe0\x87\x9b\x92\xcc\x16$\xabnR\x92\xcd\xaa\xb9\xcf\x95\xf2U\x15\x86j\n\x95+\xb5\xc0\x0f\xac\xe4\x8e\x0f'}~$f\xc1\xc4v\x9a\xe6\xf7\xb6\xc9&\xd9\x93OV\xd4\x07\x0e\x98,~\xb8\xa1\xef\xde\xa4\xe4\x8e\xd8\x0cv4\xeeL\x9d\x1e\xaa\xa4w#\xc9u\x14J\x85\xc3\x81J\xf8s\x19\xe4\xff;\xcd\xf3\x83 .\x0e&\xf8\xf1\x7f\xd1\xbd4\xf7l\xfd\xec\x18\xc4\x9b:+\x08U\x93T\xc23bx\xc9\xe0k\xfd'\x90\x8c\xe9~X\xb0-\x92L\x91\x0e\x9e#uKV\\\x98\xb2\xf1\xa9/\\\xa0,77\x05\xc0\x11\xde\xa5c\xed\x9c`\xf5\xbcD'\xb8\x8f\x9a.x\xb8\xe6\xf0\x9f\xf4\x07oX\x9c\x87u\xf4\x808?o\xe0^s\xbb\xa2QFm)X\x01\xab\x15\x11g\xf0\xc4\x9f\xb6V};;\xb4{WFF\xb6\xc5\xdf\xe5\xd5\xe3\xd2\xdbV\x91\x06i\xe9\x88E(\xbbA\xd6F\xc4\xb9\xa6\xe0\x92\x9b\x06\xb9\xfe!\x1a\x94\xb1\x0b\x0b\x9a\x94\x0c\x94hI\x19T\x13\xc41*\xeb\xc9>\x13\xd6\xbd\xd3X\xc5\x92\xf6\x11\x9c&\x17\xc8g'5wR\xf3\xe9\xa5\xa6/t\xa8I1\xd4\xe6>\xb6\x83\xab\\nbc\x87\x8f\x1a6\x84\x88\xf5\xbc\xc0Q\xca\x04;\xff/\xb7@\xff\xca\xfeNgx\x8f\x8b\xb8DX\x1e\xe4\xe4\x9a\xb7\xf1\xaaD\x1c\x8e\xf8\xda\x10\xe1_\xf5\xbfl\xad\x04\x8fq\x85{m\x94>y\x11\xbf\xe1\nK\xe9\xce\xa5\xdd\xf72\xcf\xd8\x98\x8d/?-\xf2\x05\xfb\x1b'eo\xb9\xca\xe9\xac\xc4\xaa1\x9c\x08\xf4\x08\x17\x91\xaf`)|\x93\xee M{\x02;\xc1\xda\xfa\xebN\xb0>\xb1`m\xc7\xa3\x0c\xf6\xe3i \x06\xbfs\x0eg\xfb\xab9\xaa\xb6\xef\xad!\xe1.\xc8\xc1\xc3\x101|c\xd8\x91nq|&\xf4\x86~O\x95\xd4%b\x8f\x87\xe4\xf1\x99q\xca\xb5\xb5by-\xc3\xfa:@\x16\xfety\xc9\xa0\x90]\xa0Z\xc1\xee$\xe6Nb>\xa5\xc4\x84\x88\x98\x820\xbb\x8d\x15U\xa58Y\xdc,I\x91\xe4\xf1\x0d\xff\xfd&N\xe8\xa0\x93\xbaj\xaa\x8c\x03W\xe5}\xa4P.\x18\x90K\x06\xe37\x1d\x84\x12IX\xdd\xd7\xc6\x86E|X\xc4\x87m\xf6\x89\xf1\xed\x02W\xd1\\z\xbf|\xb6e\x85\xab\xdaQk\xe5\x9d\x88\xf8bk\x05\x1bp1\xf4\xe79\xd8\xde\x98fb\x89.\xf0\xa7\x07\xffzoI2\x96\xe2Zr\x81d\x9e$\xb6\xe5v!\xc1T7\xcb\"\x9f\x15x\xf1\xd4\xd3\xf4\xf4\xb4\xbc\xe67[\xab{\x03\xe94\x91\x98\xa6<\x85e\xb1\x15\xf6\x87 I\xf3l\xe6j'\x80:%\xc3\xcd\xef\x15N\x05\x0f\x957\xcbz\xd7h\xe1\x8fW&\xec\x12\xd2w \xe9\xdb\x97\x90\xeeB\x84\xb9:~\x0f@9\xeez\x94D8%\xf6\xddHb\x98S\xb1\xf3\xefw\xfe}\xe7\xd9\x80\x7f\xbf\xeb\xbd\xba\x91\xc8\xec.%|l\xe2\x86\x93\x99w)\xe1cPq\x97\x12\xbeK \xff\xf3\xa6\x84\xf7 U\x1f\xfeS\xfc\x9a\xc4\xff2\xde.\x0f\xff\xd9\x8aYz\xb2\xd5\xc0a\xed\xbf\xae\xce\x7f\xd3B\xdb\xd0\x90\xb6\x19\xd1>\xffm@\x1c\x9b\x8e,\xbez\xb1\xb1l\x97\x857\xc8\x13\x05E\xa4\x83\xf6\x16\xc0\x87\x1a\x12\x8b\x06F\xa272\xbd\xde\x81fG@yp8\xb93\xa3^\x11co\x10,\x18\xcd\x0c\x99\xf7\xc1HfpI\xc2Q\xcc\x00\x88p,x\x13\x91\xe0?\x03\xe5\xc2\xb1\xdf\xe0\x1c\xc2q\xdf\x0e\xf1{\x85v=k\x00\x0d\xe0\x86\xc3\xb7\x908\xe9\xd8\xa1[O\xe06<\x9d\x91\x83\xb6\xa1\x90\xed\x1a\xc1\"\xaafm\x01\xa3\x16$\xd1\xeb#\x14(R_\xed\xe2D\xad\xbf\xee\xe2DO\x1c'Rf\xb2\x8b\x05[\xbb\xe5\xdai?\x10\x9b\xd9k\x9a\xbb\xb6\x13l\xd3\xc8X3\xb7\x19\x85\xdd\xe5\x96}\xd8\x03m\x03=8\xd2\xf7\xd8D8*\x08\x93f\xadS\x9fMa\xde\xd3\xb3\x12\xfc\xc0\xb0*!\x8d\xae4BY\xe5f;\x17\xb1I\xfc\x11\xc4\xe2C \xde\xd0\x11\x12)\x998\xe2\xe1\x03\x9c\xc5\x96\x0c\xa0\xc6S\xf5\xa4\x02\xf9&&\xde\xdfZ\xe7iX\x86c\xc7Zi\x8a\x85T \x87Q_R\xd7m\xf3\x0b\x8e\x10/\xb2\x8c\xabq\xfbz\x0d\x96\xb5@o\xaa\x97\xd8\x84\xe7\xf5\x00}*.\x1f\xfc.\x95\xe9T\xf1\xcd\xe7\xb6\xb6CV\x15\x7f\xb8y*=\x02\x06R\xb4-\xa4\xfe\x16I\x93Y2IM\xf1U\xb6\x83m\xfa#0\xfbw\xc9'\xe1j\x82\xcb\x14\xd0R0\x87\x96\xbd.Y\x82\x81\xf0\xd3\xcb\x8b\x07\xc9j\x0f)\xf6\xd1\xc7\xdf\xcf\xce\xffvsu}v\xfd\xed\xea\xe6\xdb\x97\xab\x8bO\x1f\xcf?\x9f\x7f\xfa\x0d\xfe \xfb\xe7\xd9_\x7f\xff\x04\xfdd\xd8\x07\xf0)}\xfa\xff.\xce/\x9d\xafKk\xb9/\xe6\xc2\xeeg&\xf9\x15_\"qz\xc0\x84\x99\n\xd8%\xce\x0d\xc0\xb9\xe1\x19\x04\x8c\xcf\xe6\xf0\xcb\x14\x88\x9c\xe0z\xf1\x8cKv\xbd\xe0\x12\xab>\x89\xaf\x0c5\xcd\xe5\x87G\x18K1\xf1*\xe4\xf7ZSg\x8c\xf9\xec\xf2c\x9ag\x97\x1f\xd3~y\x97\x1f\x03\xca\x8f\xf1K\x01Qo\xed6\x8e\xad92\xd6x\x90\xb0\xe2\x99|\xc8Lk\x93\x19\xed\xc8\x95\xb3\xbf\x0b\x82\xec\x82 \x9d\xe7\x89\x83 \x81\x96\x8eV\xff\xc9\xa7\x83\xd7\xf6\xe5\xcd`\x05\xdf0\xae\xd9\xfd_7R!\xecP\x97\xaf\xb7\xa8\xcb\n\xcd\xf1];\xef\xc1cS\x9ej\x92\x86\x19M\x81\x0f\x95\xa1H?dX0a\xd8\xc1\xc4cb\x9a_\xaa\xff\n\x7f\xccg\xdb\xfa\xb4\xdd\xb0\xdcnx\x9a\x1f\x92\x87eb&\x08\x0c9\xe8\xee0j\xd7\xae\x07\xda\xf2@\xfb\x1dd\xb3\x03\xec\xf4\xa0m\x0e\xb7\xc7wYi\xfdXd\x97\x95\x86vYi\xbb\xac\xb4]V\x1a\x7fvYi/\"+\xcd\x8cG\x8b/Ag&\x17\xe2\x13\xf7)\x89\x04j\x1e\x81\x98\xe8Q\x14<\xe7\x1fr\x10\xf1\xc6\xd6\x9exX\xc9\xa8?\xcf\xe1\xd2\xf3P \x04\xb1\x1e\xbat\x8es\x92.\xcd\xf9]\xda\xe2\x04\xcd#\xd8\xf1\xe0\xf5\xdf\xf0\xc35\x1d\xe6w\xd6\x1e\xf5/\xc7\xef\x8e~\xb6~\xa4\x13h\x93\x18]\xcd\xf3\xa2\x92\x9bU\x8c:\x91;\xae\x07R\xbf5\xf3\x95\xa8\x1d\x1d\x1d\xb9\x90\x93\xf1\x17r3-\xf2\xc5\x8d\xf3\xd8\x8f?\x00D\x0d~2\xdcW*\xbd\x92\x98\x94hZgq\xd3\x83Q?1B\xcb\x7f\x1a>\x10\xac\xbb\xe3\x03\xed\xe9\xb1Xh\x83|\xa0\xc9\xf3;rSV\xf8\x96P\x0b;\"T\x19\x07\xf4\x0b\xea7\xd6 \xd6\x11\"\xa4\x99\x92\x91\x1e5!i~\xef\xb5\x0d\x9aGq\xc8\xab\x12-\xf3{R\xa0\x02g\xb7N\xcf\xa3yt\x9d\xb0\x954\x12\xdb\xeb\xf9h\xd4o\xcegL\xb7\xfe&vp\xd3\xfb\x80\xdb\xcbrg#\xae\x82\x11\xce\xdc\xbe#\x7f\x92J\xbb\xf1\x8c\xd7\xd2%iR\xadPT$\x15)\x12\xec\x9b|U\xe0\xac\x9c\x12K\x8e\xb9\xf1\x16Td\xc0\xc5\xc5\x0b\xb5\xa4$\xbd\xc2\x96\xc6\xcb\xb4\xa4\xe0\xf8=\x87%\xd5\x0c\xd6(Sb\xa4\x92\x03\x80\xb1\xf3b\x1c\x15yY\xb2\x83J\xb5\xe9\xcb\xbd&\xfd@\x90\x01\x00N\xecS\x9eC\xc6&\xe2>\x87n\x1e\xf0\x8eB\xbdv\x15zyJ\xb8\x1f7p\xe1y-\x96\xa7-<\xe5\xb2=\x91\xf0\xbc\xcbw.(TpRZ\x85\x85\xca\xcb\x14\x9a0\xdc\xfe\xd4\x02\x93\x92\x00\x00j',\xadO\x0f\xd0\x8a\xf87\x8b:\xad\x92e\x9a\x84\x8c7\xd4o\x80\xde\xfb$\x9c\xc4\xd8<\x17y\x99P/\x025\x93\xe7\xc6zR\"\xbc\xa4\xff\x96\xb7\xdf\x01\x80\x89\xe6f\xf8\x1e\x171OP\x92\x9c(\xf9\xec~N\xdc\x87\x0d\xcd\x13\xe5Y\x9c0\x89\xe3\x8e\xa16\x0f.\x08Z\x90\xea\xf5\x94]\xc5\xce\\\x0b\x9eR\xaf\xc0\x84b\xbf\xcd#\xcfD\xd9\xa4e]\x11__\xf6\xdb\xcf\x07\xe8LTR8\xae\x860\x9fGR\xe4\xb2\xc6\x99m[\x16\x82\xc7\x0b\x02B\xacDy\xe6\x9fu?I\xc4\x95\xf5\x1fy\xd7\xcb\xb9\xcbY\xab\xb7FMSE\x1c\x806PM\x1bS\xfe\xbb\nw\xf3\xb9I'Q\x94\x04-p\xb6R2j\xb5t\x0bu\x03(\x07%RX\xb8d\xadr\x96\x88\xaf\x1dz\xd8 \x89\x9dc\x04\xfc;\xaf\x19C\x99\xcd \xe4\x19\x81\xbc\xc3\xa3\x9b\x8e\x7fSii\xf8\xf2\xd9\xf5+0\x1f\x03\xe7]\xbf\x02\x101\xff\x1d\xfa\x15x[4\x9ae,\xf6\x8b7S\xdbnm\x8b9O\x0d\xcd\xae\x19A\x9bV\xbbf\x04O\xdb\x8c\xa0Q\".\x1el\xc9\xcb34M\xd2\x8a\xeeg~.\xc1\xb4\xa8\xa5t\xac[\xed\xff\xf7o\x9f.\xff\xe7\xe6\xfa\x7f.>\xb5k\xfd\xcb%\x89\x92)3\x0d\xcd\x89\xb4\xbf;\xfb\xfd\xf7S\xe6\xa1\xb4\xeb\xd4\xd8\x01x\xa7\xd4_\xfbRd`\x9c\xa2\xa5H;k%\xad0\x00\x7f\xf1\x0d\xfd\xf1\xfa\xfc\x8fO\xa7\x88\x07\xc9\xad\x9f{\xbe\xfe\xfa\xed\xfa\xea\xfa\xac5\x05j\x15y\xc0\xf9\xd0\x91\x89\x08\xa7h\x9adI9W\xed\x98\x9d3\x1aR\x9f\xd8a4[3\x01\xfb\xb2\xba_:\xfb\xfdw\xf7\x1fm\x892\x96ep\xff]#\xb4\xfb%K\xfa\x8cJ\x85 \xa0\xb3\xeb-\xd0\x8fcv\xbd\x05\xd0\xae\xb7\xc0\xae\xb7\xc0\xae\xb7\x00\x7fv\xbd\x05^bo\x81\xc3\x7fz/\xae1\xbc\x9f\xd6\xe54-\xab\x04r\x05M\x07\xdcO\x12\xe3\x17\xd1B\xc0\xe5\x87\x0c\x8a\x8c<\xd9\x9d-\xe3\xb4\x00\xf04\x00\x08\xce8\x14U\x18X\xfa\xdf\xb3\xf0_'\xcaf\xf0\x18^\xf0?\xb0\xdc\xbfW\xb1\x7f\x10=\x83kF+\xf4\x07\x96\xf9\x1b\x83\x8fY\xe4\x1f\xf0\xfaC\xdb\x14\x85\x0f\x9a\x82\x84\x0d\x1f(\x05@\xf4)\xeb\x87\x85\xf9\x07\x94\xf4{\x8b\xbf\xc0\x05\xfd\x7f\x86\xe5\x80\x94\xf0\xc3\x97\xa1w\xf9>\xdd\x7f.\xc4z\x14\xef\xff\x19V\xa2G\xb9\xbe5%`p\xb1\xfe\x9f\x82x}\xca\xf3\xad\xd9\"k\x16\xe7\xff\x19\x88\x08/\xc7\x0f\xce\xa5\xafa\xb7f!>\xb4\x0c\x1f\xdb\xc8S.o\xccsh\xb1|\x90`\xbeByx\x99<\xacH\x1eV\"\x0f,\x90\x87\x94\xc7\xf7,\x8e_\xbf4\x1eX\x18\x1f\\\x95\xd1\xd8x\xd4\x82\xf8\xfe\xe5\xf0\xa1\xb2w\xa7\xf4\x87\x96\xbcsJ\xba\x0b\xde\xbd\xe5\xeeA\xb7\x04\xe2\x98 P\xa1;`(\x04\x1c\x0e\xf5\xaf/\x08\xf2[\xf3\x008\xafy\xac\xbe\xe2:\xc5\xdf=k\x0b\x9e\x06\xaf\x11\x8a\xda\x07\xd7\x15\xc0vy\xf3\xc0\xca\xd9\x9b\"\xe5 \xc0\xe1E\xcc@\x96G=\xd8\x1e\x85\x03\x01\xcd\xd3\x839\xc2\xc1\x81\xe6\x01\x83\x1d\\\xbe\xde{\xcdA\xa5\xeb\xbb5o?\xb0\xd5@}\xc0\xaeY\xaa\x0e\x1eg\x00\x93\x8cU\xa4>\xb0\xfcz\xcd\x02\xf5MRf\xac\xd2\xf4A\x94\xe93\xdbq\x8b\xd2\xd7\xa8\xaa\x84\x14\xa4\x03E\x01T\x0c\xbc8\x8b\x07X\xa4\xfd\xe2,\x1e(^Om\xf1\x84\xab(a\x1d\\\x80E\xe7b\x97\x05\xc1\xf5\xaa\xa2\x04\xee\x19\xd4c\xdf\xa0\x97\xa3>\xfb\xac\xfc\xb8%\xe6k\x88\xc2Py9pI\xa1\xcb\xf9\xe2\xc4 \xa0\xec\xfa\xc5\x89@\x08N\x7fR\xf1\xa7\x17\xee2\xd1\x16\x04\xb8\x13} \xb0CJ\xc6\xc1\xc0{\xee\x84P\xfa[\xf3\x8cX*>R\xa1x\x9f2\xf1\xf1\x8a\xc4\xc7-\x11_\xa3@H\xbd\x1a\x93\x1d\xa7,\xdc\x009\xb0(\xbc\x7fI\xf8u\xe7\xf0@\x88:>\xf4=\xf6\xdc]\x0f\xafp\xfd\xeb\xea\xfc7{\x91k\xc1\xcbp;gtv\x14v%\xad\xad\xbf\xeeJZ\x9f\xb8\xa45\x89]\xbcGwR\x12\xdb\x0f\xe4\xa8\xaaa5\x16:\x13\xae}\xb5\xb6Cy:\xcb1x\x0d\xc8a\x893&]\x0e\xef\x8e'\xa4\xc2\xc7\x878\x15\xe4\xb7\xd5_\\\x89\xb7I,.\xd2'\xb6\xab\x1dK\xf5\x96LZl\xc4\x9cQ\x7fa\x01\xf7\x93\xc4}K+0\x14B\xa3\xee\x18\x07S\x1a\x18\xaa\x91\xe5\x99\xaf\x8d\xdc\xc2\x90\xee\x90]>\xeb\xf4\xeb\xa0c\x1a\xe5\\\x82\xb7wm:vm:\xfe$m:\xfcf'\x93\x9d\x16\x99\xa5\x8c\x19}\xa7\\^|T{\x83\xa5\xd1\xb7\x80\xd9DiK+\xec\x0c\x9c\xd6_w\x06\xce\x13\x1b8\xbb\xde\x03\xfd\n\xbbw\xbd\x076H\xdcp\xd5\xfc\xae\xf7\xc0\x18T\xdc\xf5\x1e\xd8\xf5\x1e\xf8\x93\xf5\x1ep9\xbb\xd1\x9cD\xb7\x87\xff\x14\xee\x92\xa7\xf1\xc0y\xd9\xd8k\x88}UR\n\xe1L\xb9\\s\\\xa2 !\x99\xe6\x8eY}^\x1d\xd2O\x12\xc9-uv\x93\xf2\xa6\xc1\xc6eA\xb5\x19R>\xc6\x8c\x0dHL\xea\n\x1ec\xc7?\xa2\xb6\x9br`\x87x\x16`v\xc3\\',\xcc\"o\xcf\xd9X\xe4\x9d-\xbe\xb3\xc5\xb7\xca\x16\x17\xbbD\x03\xb6f\xcc\xb0\xb7\xb4d\xb3+\xddB\xf2\x82\xfd]\x05\x04\xf9q\x10\x87\x81\x16y\\\xa7\xe4U\xc9Q\xf4\x87\x039\x9c\x9f$F[*\x1cuj\xe8O+\x8c\xc6H\xc24h\x97\x1c\xdaz\x8f\x1a>K\x16\x0b\x12'\xb8\"J\xe8\xde,\x92\xec&&\xcb\xbcL\xbc\xc5\x1e\xcf]\xa2\xb0%\x97\x9a\x87\x14N\xf3|\xcc\x13\xad\xa31\xaa\xf2[\x92\xa1\xfb\xa4\x9a#\xcc\xd1\x91\x16(k\xc1(\xb3\x1e\xda\xb6\x91\xfe|\xf9z\xfd\x89\x1f \x88\x0c\x89iBR\xa63q\x86\xce\xb3\n\xdd\xcf\x93h\x8e\x92\xc52%\x0by\xd4\xe9\x84\x16\xd5e\x95/\xd0\x82T\xf3<\xf6\\\xeb\x98\xcc2\\\xd5\x05\xd12\x8c&+4\xcbg\xf9\xb2\xc8\xab\x1cpJ\xe9$\x92\x9f\x1b\xa5\x0b\xb6P\x19\"\xfcgOS\x89f\x1bU9\x9a\xe3\xe5\x92d\xcd \xe9\xaa\xdd\x0fT=\xe7S^\xf4\x98\x94\xec\xecz\xaf\xf9HA\xa4\xd6kR\xa2,\xaf\x90\xcb\x89n\x9e\xaf2\x86\xb8\xc7l\xc1fZ\xb3\xfc\x8e\x14\xac\xd5\x15c\xfb\xbc\xe4NER\x96\xb5\xb3\xfeP\xf1\x0cG\x1fW(%\xb8\xac\xf8\x8cS\\\xcc\xc8\x1e\xe5/\xb2X\xe6\x05.Vj0g\x00T\x84\x915\xc2\x88 \x88\xc3\\\xfawV\x08F\xb8\xbf\xc2\x0f\xcb\x1d\xd0H\x16\x972\xcd\xde\x82\x9d\x8d=\x9ae\xaf\xb3\x9d\x18\xb2=\x000\xb0\x1d\xb6\x13C\x00\"\x85\xf8\xd1!\x88\x1c\xd0Xk\x11j\xf3\x8f/\x8b\x1a\x98\xebH#cnO \x90\\\xd3\xd2f\xd1C$\xb9\xe6\xd4\x08\xaa~\"\xa9\x95\xa2C\x8a\x1572a\x8e\xa2\xb4lw>\xe1\xce'|r\x9f\xb0\xb7\x9bF\xb7\xa4\xdbI\xbb\x96\x1b\xf6SV\x15\x89\x96\xbf\xd15-\x0e\xb5\xbd\x9bd\xd3\xdc\xea\xb4\xb5\xe1\x89w\xb6\xd6m#|\x9a\xdb\xc1o\xde\x0ea \x86\xb1\xa5\x88HM&\xff\x99\x0b]\xd3\xac0%\x82\xb5A R\xf2\xf3\xc6\xd5\x10\x144-@\xd2\x00To\x1bS\x92\xa8Y\x15Z\x8cpY\xe6\x11\xd5,\xeeB\n\xa6\xd6\xe0\xe4(+\\\xd5\xce\x0520\xe0\xaf\xd2\x19\xde\xcf U\xc6l\xa6\x0c6?\xc4S\x9b)/4\xb5h\x1f\x17De_W\x0c**\xae?\xfd\xed\xe2\xe6\xea\xfa\xec\xfa\xdbU\xb0\xabD\xf7\x8b\xab\xb3/\x1f\xaf\xcf\xbf~\x01\x7f\xf0\xedK\xf0\x13\xd5\xea\x02>5\x08\x97\x18Bhe(s*\xb8(/r!v\x97\xa7w\xfc\xf8\xa2\x9d\x8f\xc1\x9f\xae\x10\xf4/\xd6.\x9f\x8a=\xbb|\xaa\xe6OPb\xee\xf2\xa9\x98%\xd3\xb6\x1f`\x16y\x0bR\xc7\xa8\xd9Y\xea;K\xfd\xc9-\xf5~\xa77.\xcbM\xbf\x16Ou\xbd\xce);VE\x12UZn\xca\xba\xa9\x04-\xfcvI_}\xa8\xb5K\xfa\xe2\xcf\x86\x89\x1bNW\xda%}\x8dA\xc5]\xd2\xd7.\xe9\xebO\x96\xf4\xa5]8S\x15\xc9lF\x8a\xc3\xbbc\xf9\x9f\xff?{o\xdb%7n\xe3\x8b\xbf\xcf\xa7\xc0\xf5\x8b\xb5\x9d\xf4\x94c\xe7a\xcf\xf5\xbd\xde\xb3~\x9c\xe9\xc4c\xf7u\xb7\xb3{O\xce\xfc\xdb\xaa*V\xb7\xb6\xab\xa4\x8a\xa4\xb2\xdd\xc9\xe6\xbb\xff\x0fIQ\x8f P\xac\x8e'Wx3\x9e. $A\x10\x04\x81\x1f!\x07\x8c\xe1\xa2~\xa2\x07d0\x97m\xcc\xebx,\xac\xfe\xf1\x17f\x1c\xdfh\x0c\xac/\x83\xde/\xff\x00W\xee\x8e\x03M\x94\xef\xcf\xd4\x02\xc2C3\xf9\x97\xcc~\xe9\x9d\xd0\xe5^o.\xae\x85f\xd8\xd88W\xd3\xe2\xb3\xb0\xa7\x14G|\xd5\xd3\xda\xfe\xaa\xca\nKy\xa8\xaa\xb4qk\x0b\xc5\xa8\xe6\xa4(6ia-q\xec\x99b L3\x10\xbcv\xa0I\x10\xbcG\xcb>=\x87\x8f\x1f\xde>*D\x99\x1f\x8a\x95P\xb6S\x8be8\xfb\xa9\xf0_\xa4\x97\xfd3\x93U\x8a\"M\xb6\xe9_\x85#\xa7 Z6U\xbe\xca\xb7\xb0\xf5\xcc\xfd/\xe5\xa1\xa0\x19!\xe8\xa2\xeb\x9f\xd3\xb5X7BP\xc7\xbd\xb2<\xec\xc4\xda\x9a\xde7\xcc\x9eg\xf0\xc3\xc5\xc5\x19|\xff\xfa\xc2d\xbf?~x\xab\xd7\xe6\xad\x82h\xe0\x91mC\x7f\x1e.\xa5\x8b\xdb\xbd\xf8\xe9\xcf?9_\x02\x13\xf2\xcb\x8c\xfe\xe9}W\xcd\xde\xbe\xc8\xd7\x87\x95\x80$\xd3\x81-\xdb\x1e\xa2\xe9\x97\xf0|\xbf\xdf\xca\xa3\x81\x96q!\xa4.\xe7_t\xf8w\x95\xac\xa4\x8d\xca\xf3\x9b\xc3\xde\xb8\xa2\xee\xe5P\x7fj\xc2\xbbn\x94\xc2\xaa\xfe\x9aZ%\xbb\xce\xda[\xeb\xc5\x97\x98\xe1\xc9\x7f\x7f\xce\xd35$\x19\x8eCjIwV\x99\xa1Bl\xf2B\x9c\x18&\x92wR\x99*\"\x99\x10ks\xb8T&\xb4\xf8\xecHSi\xca3i\xbe\xb3+\xa1^T\xeb}\x01\x0f>\x96\x02\xa4\xfb\xae\x81\xeaJ\x8d\xa5\xfd\xd3z\x9cd\xc9\x95O\x12\xcbB$7\xd2\x96\xd5\xcc\x17\x0f\xddZ\xf7.\xaf\xc4S\x9d4\xdb\x1ct\"$Qc\xaa\xed`S\xb3\xb5=\x8b\xf9L\xb0\xd4\xdb\\\x85#\xec1gMFQ\xa1\x10r\xd7\x13'u!\x17\xd3\xb8\n\x85(w\xc6\xacg\xb7\xc2\x88\xab4S\xc8\x9a/iu\xed\xd9\xc4n\xf7b\xa1\xd7K\xb2O\xcb\xc5*\xdf\xf9,\xfd\xb9Z\xe5\xa5\x8e\x87\xeb0\xcb\xc0\xe2\xc1\x83\xda\xf5R1\x02\x82\xc9|\x08\xbb\xf4\xeaZ\xbao\xee\xa6uL(\xad:\xa0,}\x0e\xae?z\xbe\x82R\xec\x92\xacJW\x8e\xaa`\xce\xb0(\xd0\xdd3o\xcaH\x13\xc7\x8b\xfb\xb1\xf6a\xeb\xaaE\x1d\xe7k\xe4_i'\xc3\xc9-Y\xe6\x9f\x05\xf4\xbf\x07\x8f\x8b\xc5S\xf0\xcdud\xd2\xe4\xc4,\x92|k\x9awM\xf3\xaf\xc9S\xc8\x9b\x9d\xc8^v\x98\x9f\x1d\xe0i{\xf8\x19\xd8\x9b\xaf\xdd\xa8\xdev\x80\xbf\x1d\xd1\xe3\x0e\xf0\xb9}\xfb\x8d\xe0{\xddQ\xfc\xee\xa8\x9ew\xb8\xef\xcd\xf7\xbe=\xec\xe4v\xc7\xf5\xbfcz\xe0\xa1>x\x80\x17\xee[\x9f%\xd5\x0f\x8f\xec\x89\xc7\xf0\xc5\x83\xbd\xf1\x88\xfext\x8f\x9c\xe5\x93\x1f\xcd+?\xae_~4\xcf\x9c\xef\x9b3\xbcs\xdfRjA#\x1c\xff<\xba\x87\xce\xf3\xd1\x83\xbc\xf4\xc8~:\xd7S\x8f\xe4\xab\x13\xbcu\x86\xb3G\xf4\xd8\xb9^a\\\xaf\x9d\xe3\xb7\x03\xab\xaf\x9f\x9eg\xb7\x9f\xdar\x94I\x06I\xb1L+\x8d\x05\xb4\xf6\xd9\xc1\xd0\xece\xc96\xaf\x15\x19\x12\x97Z\xc8\x9dCm\x8b\xba\xcf\xcb\x1a\xfa\x84\xbb\xc1\x8d_\xebT\xf43\xb30\xb7\xe9R\x0d\xa4\xf9pzy\xd8\xef\xf3By#\xfbdu\xf3\xe8\x90\xc9\xffH\x1f\xc4\xa7m\xa5\xb1\x0e>\x17.\xdf\xc0\xa1\xd2&\xd6\x98\xa5R\x1a\xfad\xad\x8b\xd6&[\xb8\x12\x99(\xd4\x17\\\xf4\xc5 \x97]\xa8E\xf0<\xbb\xad\xa7\xdc\xd5\xf6\xeb\xaf\x89\\V\xf0\xf8)\x9c\xc9qI{T\x0f1i&&\xcd\xe0\xe5\xaf~\xe5\xdd\xe6\xdf\xe49l\xf2\x1c\x9e\xc1b\xb1\xf8_\x9e\x87e\xf7\x92\xec\xd6\xf7X\x92\xdd.d\xc7\xde\x14\xf9\xee\xc1&\xcf\x1f\xfa^X,|\xbbx\xba\x81\x07\x92\xedG5\xcc\x8b\xfc\xc1\xbfH\xbe\x0f\xe1o\xde\x1d\xc7\xcf\xfb\xef\x14Y?\xf1\xc8\xfa\x0f\xc9\xe7\xe4(\xc2\x86g\xcaw\x96-F\x96eZ>x\x93\xe7\x8b\xd56)K\x92(u\xd7\xe5\xabZ\x02\x9d\xd7}\xbdr\xca\xb8\x11\xf2o\xbb\xad\xae\xf3\xcc+f\xdd\xcf7y\xfe`\xb1X<\xf4+\xab\x16\xf1\x03\xc2\x93J\xad\xd54\xc4\x98\x05\xc9\xf0TO\xc2\xab\xd7\xe7/?\x9c\x9e]\xbc\xff\xf0\xd0\xbd\xe1A\xdd\x11\xbd\x10(]\xd1\x9d\xa1\x88\xff\xb7\x1e\xf1\x7f\x9f\xfb$\xafD\xff\xf4\x19\xfc\xcb~\xb9x\x93\xe7\x7f[,\x16\x7f\xf7\xbd\x92d\xb7'\xd2\x95\x97\xef\xed\xb5\xab\xf9cR\x94\xd7\xc9VN\ne\x80~a\x0f\xfb\xe5\xedT\xba\x19t\xe9c\xb6k;\xa5\xba\xac\x16\xa3z\xea\x7f<\x83,\xdd\x12\x16\x10\xa5\xa7\xce\x95r\xa1@\xf5\xab\x1b\xb3\xa34G\x80\x19\x8a\xfe\xf2\x82\xa8W\xc9\xbdM\x9e/\x96I\xa1\x84\xf0\xf5\xd1\xed\xe2\xaf\xf7\x94\xa4\x1d\xfc\xf4i\xd9\x17@PC\xb8'\xf9\xc9\xed\xdf\xf1\xe0\x1f\xce\xdf\xbfs\xfd\xfe\xec\xd9\xb3g>-\x92<\xda\xe8\x9b\xf6\xceU\xd5\xa0\xdaU\xd4'\xf0C\xe9\x0df\x16\xe2\xea\xb0M\nW{\xe3f*\xf5\xa9\xac\xd6\xe1;\x01\xb1[\x8a\xf5\xbau\xfd\\1\"\xedm:\xe3|\x1d7L\xdf\xec\xfe\xf4\xefR\xfc\x9f\xea\x90R\xaf.\xbb\x99f\xd7\xd2\xacM\xe4S\x9f\x01\x94\n-\xade\x1b\xf8\xd8\xa4[\xe1\xdb\x1d\x8d\x8d=\x13E\x99g\x04CRGz7iQV\x97Jo\x9e\xc1c_+\xcdkr \x98\xb7\x9e\xf8\xder\xef\xdc\x00\x84\xde\xdeS\xb2\xbf\xf7\x14\xeeav\xa4/\xaa\x85\x96\xc1=_\x8c\x10\xe0\x9e\x1a\xfd\xbbd'9\xffo=\xb4\x7f#\xbc&G?xk\x8a\x08N7\xf51\xba\xaf\xbfZ\xab\xd2\x12\xbe\x88\xed\xf6\xbb\x9b,\xff\xa2\xab\x13\\'\xa53lV\x97\x12\xf0-\xf1\xfe\x92:\xd1G\xab\xc1:k\xaf\x06\xe9\xaey\x96Kv\x05\x89^,\xae\x86?)\xc3`\xd6\xd1u\xbe\xad?\xd3\xd0\xe9\xb7\x8a\x86\xd7\xeb\x0f\xbc\x91\xe7za\xba\xdaT\x9dZ4n\x8a\xfaTH-f\xc7[\xa3\xe0\xa3\x89\xf0\xff\xf4\xe7\x9f\x1ez\x17r<\xad\xee7NQl%b\xc9\xf8\xf1\xe2\xc9\xe3'\xe5=\xafz\xe2\x7f\x1f!\xe6j\x99\xe9\x0b\x17\x07\xfd-\x17\xe8\xc2\xe46i\x81\x7f\xb2\xa3\xbe\xb2U#@G\x0f\xf4Zz[cI\xeb\x87\xeb\xd4_\xd4Z\xed\xddK$\x9d\x9f\x0d\xeao\xbed8_2\xfc\xe7\xbcd\xa8\xef\x14\xd6\xf8f\xfc+3\xdb\xfe\xf2+\xe7k\x82\xf35A*\\\xdb\x11B\xe6\xc2\x1fLd\xd7\xca\x90\n|`C\x1e\\\xe0b\x0f\xd8\x81\x0bs\x18\xd6\xa7\xec\x13\x15\xe0\x10\x05\xda\xc0\x065h\xd8\x82\x95\x1f\x1d\xce0\x11\xc8\xc0\x830\xd4IN{\xb79\xe0\x05.l\xc1 \x1a\xe6\x00\x16XP\x85\x0e\x18\xc1\xce\x90\x06R`\xc3\x13\\ a\x020!\x1a$a\x1a\x18!\x00\x86\x10\x05\x80\xc0\x87\x1ehp\x81\xc3>y\x0eSG\x80\x1b\x1c\x0bhp\x04\x88\x01\x07\\@\x86\x15\xf4\x80\x03N\x1b\xee\x07\x14D\x84\x12PA\x04\xc8\xd9\xd4e\x8d\xb9\xc0\x01\x03\x0d\xb0o\x82^\xc8\xc0d\xb0\xc0\x11j\x1d\x0c\x89\xea%\xb1\xe1\x00:\xe1o7\xd8^ \x00\xa5g\x11\x93\xff\xf4\xb4\x7f\xd4\x84\x7fH\xaa\xbfN\xe8\xa3\xfc\xbcI\xfe\x90\xf4\xbe\x0b\xe1\xe1K\xec\xc7I\xe9\x13\xf3\xcb\xde4>#\x81\xef\xcah\x85$\xed]\xfc,q\xd8H)z\x9e\xf0\xe8iy\x8a\x84\x18\xa9\xf8\xa0$\xbc-\x82\x1d-\xf1NL\xb9S\x92\xed\xb44\xbbG\xaa\xfc\xd4:=\xa9nO\xa7GI\xa4\xb3R\xe8S\x92\xe7\xced4=a\x1e=U\xee\xec\x97E\x93\xe3%\xc6\xbd)\xf1\x90d\xb8Iy\xa3\x0c]i\xf0\x90\x04\xb8\xb5!w\xea;(\xe9\x0d\xea\xec\x85\xf2\xb3\x1fE \x89n{\xfe\xcb\x9e\xdc\xe6\xa7\xb5\xdd\xc9\xeb\xa0\xb4\xb5v\xc71v\xb6\x84u\xbcT\xb5?I\xcdMO3\x12\xd3\xec\x944/\x19\xed\xc8\xc1\xbazEM\xd2QS\xcf\xec\xa43+\xddl\x19dH\x8a\xb9N\xc82\x17WHZ\xb9N\x1e\xe3\xba\xedJ(GL%;\x93\xc8\x8e\xf4qp\x928\x86\xce1\x12\xc3\xf4\x94\xb0\xd9\xa8\xe7\xef\x9e\xb2\x0b/\xcd%\xf0\xe6\x12xs \xbc\x96\xe6\x12xs \xbc\x9fq \xbcG\x7fK\xd7\x8eo\x9e\xd6\xf8\x88\x17\xb7\xa7\xaf\x9aRxI\x83\x84\xda%\xd5\xea\xda\xecS\xa7\xaf\xcc\xf4b\xf5\xf0$\x87_\x98q}\xdb%\xf1l\xa8\x85 @\x94\xad\xb0\x9d7\xe2N@\xef\xc4,i\xe7(h\xe7\xedjp1;G)\xbb\xe3\x15\xb2sN&x'\x14\x08\x88\x12\x82\xcc\x80\x98\x95\xd0\x14\x84+q\xf0c\x95\xd4\x88\x8a-\xf1\xa2Kb\xe3K\xe8\x08\x93H\x18\x930\x94\x89\x83\x1d\xb3l\xc6D\xa4Il\xac \x13m\x12\x19o\xc2C\x9c01'.\x1d\x0e(\x8d\x11\x15wBB\x9eD\xc4\x9eLE\x9f\x04\xe1O\"!PB0(\x0ef\xe4\xd2\x17G\xc0\xa1\x1c\x0f\x89r\x14,\n\x0f\x8d\x12\x1d\x8fBE\xa4D\xc5\xa4\xd0Q)l\\\n\x1f\x99\xe25\x85\xb4r\x16\x93\xd1)\xde2\x16$\x87\x8a\x80Q\xe1x]l\x9c\x8ak\x13$\x96\xacp\x16\x9a\xab4\xcf\x8b\x8e\xe2G{=i\xb2{F\xf2\xa6y^\\L\x8f\x9a\xeeS\x03\xa3\x97\x11Q\xe0\xc0B\x82Cl48\x04\"\xc2\xddzE,\xfd\x16\x88\x0c\xb7\xf2\xab\x88e\xdf\xe2 \xc4\x81\x0et\x06\nR\x1cxhq\xf0\xc1;\x03Q\xe3@\xe0\xeb@\x90EB\x90C\x90p\xe9Hr \x8c2\x00Q\x0e\xa1\xa8r\xf0\xd4F\x89\x86.\x07:\xc2\x1c\x88(s #\xcd\x81&u>\xe2\x1cX\xa8s\xf0\x16r\x8b\x82>\x07.\x02\x1d&\xa2\xd0\x81 ^\x06\x1a\x1d\x8e\x81H\x07J\x1f\x1d+!\x1e:\x1d(\x08u\x98\x80R\xb72\xac\x08\x05\xdb\xa2\xa2\xd5\xc1\x8bX\x87P\xd4\xba\x95\x1b\xa5P\x1b\x01\xbd\x0e\xde\"m\xee\x12m|$\xbb\x95\x95\xb7<[\x10\xca\xdd\xca\xcd[\x9a-\x1e\xda\x1dH\x88w\x08@\xbd\x03\x0f\xf9\x0e!\xe8w`#\xe0\xc1W\x89\xcc_\xb4\x8a\x8aL\xa6\xa2\xe1!\x04\x11\x0f\\T<\xb8\x07\x1e\x82\x8e\xb72#\x95_\x0bA\xc9;\x17\x04\xa5\xf4ZD\xb4<\xf8\x10\xf3\x10Xt-\x14M\x0f\x11u\x97\x81\xaa\x07\x16\xb2\x1e\xac\xa5\xd6\xa2\x15Z\xe3\x94Y\xbb\xe8\xb0\xd3\xa9/\xad\x87_\x92R\xe1-S\x1dx\xea7b-&\xf5\xe2\xf6\xf4\x15^O\xaa\xd0\x05\xae\xc4\xdat\xab\xe58\x17\x94\x1a\xfc:\x17\x94\xa2\x87\xa3\xb8iO\x13+\xb22\xa4\xa6<\xa3\xa6;\xe7\x82RsA\xa9\x96\xa2\xa619)LV\xfar.(55U\x19\x90\xa6\x8c\x92\xa2\xe4\xa7'\xe7\x82RS\xd2\x91\x9cTd@\x1ar.(5\x17\x94\x9a\x0bJQ\xd3\x88QS\x88!\xe9\xc3\xb9\xa0\x94\xed1o\x9a\x90\x91\"\xa4\x94K\xe2\xa4\x06\xe7\x82RsA)J\x9ao.(\xa5hJ*o.(\x85q\xf2\xa6\xebBSu\xd6\xbda.(5\xa6\xb9\xa0T@\x8a\xcd\x9f^\xe3\xa6\xd6\x18i5vJ\x8d\x97N\x9b\x0bJ\xf1RfsA\xa9\x86\xe6\x82R5\x99*%i\xd7`\x8f\xb2T\xe9zP0A\n^\x95\x04\xe9Z\x9dT}\xea\xa7g\xea\xda2!Uq\x08-\x86\x83W\x0f\xe9\x84$\xe5\x8f\xba|\xc9\"9T\xd7\x8b\xcf\x8f\x97\xa2J\x1e/\x9e\xaf\xd7\x85(\xcb\x17\xb7\x95(/\xf2s\xd5\x98I\x91i\x86\xd50\xd92N\xaf$\x9a\xc9\xa5\xeek\xdb\x8f\xd1\x08\xf0c\xb7\xab\x0f\xa6\xca\x91\xc9\xa8\xe9\xd5+u\xb1~K?\x0e\xc5~Us\xd3{\x7f{bDk\xb7\xfc\xde-\x0e\xcd\xf4\"W]\n\x16\xc7R\xbe\xed\x90\x06`Q\x14\xa7\x88\xd0~yE\xa4\x9e\x8e%\xa1\x17bu\xfd\x9b'g\x85\xd8\xa4_\xd9\x92Y\xaa\x97/\xf7\xeam\xaa\x9e4%\xda\xb0\xa6\xed\x83\xef>-\x07\xdf\x0e;`\xd4g\xd2.\x94\xe4q\xee\x92\xaf\x97;\xb1\xcb/\x9b\x94\x18U\x0f\xfa\xab\xfa\xebe\x99^]\xaar_\xc1\xef\xffU\\\xae\xf2\xb2\xba\xdc\x8bBid\x08#\xd9\x8b\xcf\xa2H7\xb7\x9a\x97X?\xf9\xdd\xef\x1e\xff\xcf\x18\xacJ\xb1\xda?\xf9\xdd\xefo\x1e\xf3\x99\xf5\xb4D\xcfP\xf3\xf1\xb4J\x9dl\x8c1o*\xcc\xc8I\x85]\xbe>lUX\x10\x9bje:\x9f\xafTQ\xadf\x01\xb5\xb8\x01\xb2\x0e$\x9a\xc5em\x0d\xa8\xda~\x1f\xd7\xcb\xc5\x93\xfb\xba\xe1\xc1\x17\xbf<\xbd\xb5.\x8f\xfa\xf5\xf1\x9b\x9d\xa5B\x10P\xa8T\x86\xd2\x18\xe4\xf2\xf1\x0c~\x85\xe6\xed-\xdb\xa4/\xc6\x1b\x9a\x99G\x9c){>>$\x0b\x8fg\xdb\x83r\xec\x8a\xf5\x80\x915\xb3>!\x9f\x1e\x98E\x1f\xe5\x1e\xdd\xb9\xf3\xa0\x8cyP\x9e\xbc\xcd\x87\x8fdd\xc9\x8e\x87\xe4\xc4;\xb9\xef\x017K&<4\xff\xdd\xe4\xb9\x87\xa3AB\x0d!\xb9n{N{b&\x9b\x94\xbf\xa6\xe7\xa9'd\xa7Cs\xd2\xb6\xdcs\xb4\x8cs\xdc_\x98/0\xd0\x17;\xd4\xe7\x08\xf6\xc5\x0e\xf7Y\x03~\x93C~#~\xb6\xab.q\xc3~\x93\x03\x7f\xd1C\x7f\x93\x82\x7f\xf1\xc3\x7f\x11\x03\x80\xb1C\x80\x11\x83\x80\x940`\xc4@\xa0=\x148-\x188b\x86_\x1dA<\n\xccJM\x0b\x10\x8e\xd8aWD\x02C\x86\x96+!\x8e\xad\xd8q\x05\xc4\xb7K\x07\x06\x0f\xc7\x86\xcbz\xd5\xc3\xd5\x83\xc8!D,\x88\x18%\x8c\x189\x908\x0e%N\x0e&\xf6xU\xc8U\x8d)\xa1E\xef\xed\x02\xeb\x95\x0co\x80\x11\xc7K\xd3\x83\x8c\xf8\xfb\x7f\xc7\xc7\x1e\x14j\xa4\x0e\xde\x17nt\x8f\xd4\x1brd\x05\x1d\xc7G\xec\x89\x81G\xef\x15 \xd7\xd5\x08\xf7\x95\x08\x8bT\xa8!H\x7f\x10\x12\xbb\xf20!\x10I\nE\x86\x04#-W\x07|\x01\xc9h!IK\xfb\x03M\x8a\x1a\x98\x8c\x1e\x9a\x8c\x1c\x9c\x8c\x1b\x9et^\x1d\x18\xa3\x9a\xc7W\x05\xe2\x84)#\x06*c\x87*\xa9\xc1JB\xb8\x92\x1c\xb0\xa4\x85,Qt;\xd6*5\xb4\xe5\x83\xec\x13C\x97\xa4\xe0\xe5\xa8\xf31\x03\x98\xd1C\x981\x83\x981\xc3\x98\xd3\xe6\xdb\x1b\xca\xf4\x073\xbb\x15\xa1j\xfc\xa1\x89\x0e\xea\xefk\xca)\xfd\x9a\x96\x95\x12l\xfdK\xfdF\xfbi\xcfv\x0b\xedy\xe6\x9d\x0f\x9d\xf6\xb1\x9b\x9d\xef\x9fB74\xdan\x15h\xac\x11\x8f4\x9a\xef5GED\xfc\xf7\xf0X\xd3|\x15\xba\x8e\xe66\x1f\x88\x86}R\x96:X\xa0?#\xad\xaaM-\xf4\xef\x03&\xea\xce\x80z\xdd\xf5\xe5\xe8\xd3\xaa\xa3\xda\xea#\xbd\xc3\x9aA\xf2|)\xd4\xfcd9\xec\xf2\xc2|\xb9\xb6w\xe6S\x1f\x8de\n\x05\xf9\xa2\xe5\x10\x95\xda\xfc\xdd|\x93\xd6\xf6\x91\xe2\xce\x91~\xd8\xff\xae\xa0\xba\x9f\xf5\x1d<\xf6%Q\xdf~=\x81\xb4*M\x90\xa7\x84C\xa6\x95i\xad\xcf\xd9_\xd2\xd2\x85\xaeG#\xe5\x8c\x90|\x89\xc4\xe4M?\xad\x9f\x8e\xb5\x86\xec\x7fT\xf0\xe4\x9a\xf5\x8b[ibC\xa3\xf73\xcc\x96\x19\x89\x8f\x16\x87\x9fa\xb6\x13b\xef3\xcc\x96\x17o\x9f\x18m\x8f\x1ck\x9f\x10i\x8f\x1dg\x8f\x16e\x8f\x1bc\x8f\x16a\xf7\xc7\xd7\xa3E\xd7g\x98\xed\x0c\xb3\x9d\x12#\x9fa\xb6\xd3b\xe1\x14\xe4\xe9\x0c\xb3\xed\xd0\x0c\xb3\x85\x19f;\xc3l\xf9\xb1\xec\xa8\x91\xec\x98q\xec\x19f;\xc3l\xfb\\h\xb1jB\xa4z\x86\xd9\x86\xc7\xa7\xc3g\xd7\x1b\x9b\xf6E\xa6\xbd0[G,\xcd\x19\xdf\xeb\xf2x\x840\x81\x0fg/)\xf0\xdb\xde\xab3\x087$\xec7\x83p;\x14+\x04\xe8\x0b\x02\x06\x86\x01c\x07\x02g\x10nxPprX0z`pRh0~p0bx0v\x800b\x88\x90\x12$\x8c\x18&\x9cA\xb85\x05\x06\x14g\x10nh\x80q\x06\xe1j\xaaf\x10.:\xf6\xa0@$u\xf0\xbe`\xe4\x0c\xc2\x9dA\xb83\x08w\x06\xe1\xce \xdc\x19\x84\xeb\x0dk\x92\x03\x9b\xa4\xd0\xe6\x0c\xc2\x8d\x11\xe4\x9c6\xdf\xde@\xa7?\xd4\xc9\x0dv\xd2p\x8c\xdd\xd7\xfbq\xce\xb2\x17\xe24\xe2`\x15\xcdU\\u]Vv\xe4s\xdf)\xb8;\x1a\xf6\xdeY\xeb\xb5\xb6hm\x95WM\xa3F\xf1\x86\xc1W\xbe\x17(\x18\x8f\x11F\x16/\xe5;\x81\x97\xbd\xaco\x18So\x89\xdf8l\x91r\xbf\\\xc6=U@t\x8c\x02\xdc\xad\xab\x05\xa3Q\xfceR\x8a\x85\xae\xdc\xde\x96\x7fn\xb0\xc8d\x0d\xee\xa1\xcd\xd1\xf1\xa1'w;\xc2\xbc\x06\x96'\xf5._\x88\xeaPd*NUc\xa5k||\x83BWQ\xa6\xab\xde\xe7\xf7\xd4\xb0\xa4\xe9\xad<\xf8\xf2\xf7\xd2\x83\xca3uH\xce7\x9bRT\xf2\xd2@\x15;\xde\x8cM\x17\xebG\x1ae\xfc\xa2\x84\xd7\xfa\xf5\xab\xbc\xd0\x0f\xa9\xe3\xd6@w\xd5\xc9N\xed\x98\xddQ5\x0b\xb9\xbf(\xeb\x96F\xab\xb2\x10{\xa1\xa2\xd2/\x92\xa2\x11\x99}]\xd6l\x94f\x0c\x97\xe4\xf0\xb8\xf4<\xbb%/\x88j\x04a@\xf5\xc2n\x17#\x01\x16p\xa8B\x1c\x90B8<\x01\x87#`\xb11\x02\x10!\x18\x82\xd0B\x0e:\xdc\x86\xb9\x106\xec`\"\xe0@Mr_(\xbd\xedw\"\xc8@\xc5<{\xdc\xbb\xcc'\x02\x0b\x10 A<\x08\xc1\x04\xf0@D\xd8@ ` &T \nH \x1e< \n0\xc0\x0d \x08\x07\x03\xa0\xc9\xff)i\xffQ\x9a\x1f\x89\xb3\x0d\x9c\xcfI\xa9\xfdA*? \x89?H\xdf\x07\xfae\xbd\xbd)0M\x8f\xde\x00\xaa\x9a\x04=\xde^\x8c\xa4|\xf7c\x9eM:~b\"~z\n\xbe\xb7\xd5LL\xb8\xd7b4\xdcB\xd3\xeb\xd6\xdc2\x92Rw&\xd3\xfb\xb9;Z\x02\xbd\xff\xce\xdf\x87ca\xa7\xcb}\x83q\xa5\xc8\xf1\xfe;\xd3\xe2\xc4\x84x\x9b\xfb\x98\x90\x04\xb7\xa6\xbf\xf1\xc4\xb7-\xe5=\x1a%%\xcd\xedJpwS\xdb\x81ImO:\x9b\x97\xc8\x1e\xa4\x90]\xc9\xeb\x08i\xebAk\xcdLGKRGLOGKL\xc7JI\xa3\xc9\xe8nv\xaf\x9b\x80\x9e\x9ez\x8e\x92t\x8e\x97n\xf6'\x9a\x9d)fBr\xd9\x97V\xee\xe5d\xfb\xdc\xa9IE{\x12\x99\x90>\xf6$\x8e\x9b\xee\xc5J\x16GL\x13\xc7I\x10\xc7I\x0d\x87\xcd\x9c3\x1d\xecJ\x04\xab0I\xb1_-\xae\x92J|In\x17\xc5!\xab\xd2\x9dX\xbc\x96' r\xb4D\xb4O\x03\xee\xa3\xae\xf2\xf5\xc8\x89M\xb3J\\\x89\xa2\xf9\xab\xf1b\xd3\xac\xfa\xcd\x93\xfa\xaf\xb5\x04\x9d\xbc\xd7\xa2J\xd2\xed|\xa7e\xbe\xd3\xa2)8\xa04\xe24\xdfi\x19\xf2\x9b\xef\xb4\x8c\x19D\x0bNi\n\x0cQ5\xbd\x89\x16\xa8\xd2\x14%\\\xa5)^\xd0JS\x94\xd0\x95\xa6\xf9N\xcb\xe8\xb1i\x81\xaf\x11\xbb\xf9N\xcb|\xa7e\xbe\xd32\xfaa\xbe\xd3\xd2\xa1\xf9N\xcb|\xa7e\xbe\xd3\xd2g\x171h\xa8)Z\xe8PS\xac\x00\xa2\xa6\xf9N\xcb|\xa7\xc5\x1b\x8e\xac\xf9\xf8\x83\x92\xf5\x83\xf3\x9d\x96\xff\xa7\xee\xb44\xd8\xc8\xec\xa6AE\xbe\x12Y\xbe{\xff%\x13\xf4\xa0f\xb2^\x17\xa2\x1c\x85\x15]\x08\xb0\xfa\x95\xdeE\x12\xf375\xe7\xf9\x17\xe9\xc4\xc3>)\xaat%\xcd\x0e\xace\xc7\x0c\xb8\xb3\xe6\xbaL\xb6I\xb6\x1a\x05=IWM\x14\xbfq\xe8\x129\x17%\xbb~Eo\xeb\xa3v\x80\xe7\xcbdi\xa5\xc2\xabpH\xaa|\xf7\xd0,\x0d\xf1u\x9fgb\\\x88\xde\x91K \xdd\x860|\xbb\xdd\xdc\xe7_\xf4\xa1\xfe\xf1\xaf\xdb\xdf\xf5\x84gB\x87\xb4;\x1c\x8a$\xad}\xa9eR\x8aK=\x0cu\xc1@C\xda\xe5\xbf\x85t\xb0:cm\x84\x7f\xbf\xd4\xe3\xee2|\\\x8b\xe2\x19<\xfe\xf5\xff\xd7\xb4\xdf2\xef>\xab\x02\xd1f\xe5u\xda\x97gf)\xbf6\xf2\xba*DR H\xda\xb6\xe5C\xf7\xe5C\xf7;\x0c\x87\x91\xa3\xa6\xfdg\xf0{\xb9\x7f\x1d\xca\xa7\xf0\x18\xe4[\xba\x7f\xbf\x1f\xccS\xb2M\x93R\x84\xe5d\x06\xbad\xbe\x10\xa29\xea+;\xdb\xb4T\xfd\xae\xb5\xc8\xfcf\xeedu4\xc9\xb7\xe0\x95\x04:\x93\x9e\xd4\x8b~\x18\x10I4\xd3\xee\x1a0\xc6\xedP\x0b\xb1\x9e\xfbte\xd6#\xbe\xe2~\x14U\xb2N\xaa\x84\xb1\xe0\xda\xde\xbb\x96\x9d\xea\xd4\xa5\xecM\x98\xdc\xc9\xb90d\x8f\x99\x94\x08\x9bd F\xdc\xfa\x8a\xa8il64\xe1\xc6C\x13nB4\xf9F4\xdd\x9ch\x9ahTpI\x8f\x9b\xe1\x98\x1aM\x13\x0d\xce\x88\x9f6@\x96\x805\xd7\xf8h\x1a\x99 M\xd8\x82\xd04Z\x16\xdd\x17P\xc5\x8e`\x9a4\xd9]\xacIf\xca0\xa7\x19\xab\xde\x98:\xc6d\xb82\xcd\x08\xbb\xbb\x97\x1c^\xdd6\xac\xf2\xe6\x8a\xa8\xd4\x0c\x8e\xab\xd0[J\xf2\xe5a\xdb\xeaoZ\xd5\x1e\xb4\xc9[\xf9K+&\xa5\x95Fg:\xfc\x9e\xc1\xaf\x1b\x15Y\xa7\xe5~\x9b\xf8\xee;\xd9\xa7\xa5~\xbf\xb9>X\xdb\xac\xc3\xd5\x95(\xa5GV\xafT99M7\xc7\xaf\xeb\xbb7\xabm*\xc7g\xba&-\x1e\xa7_\xf7\xf1\xebq\xf7\x873z_\x99\xd2\xee\xd1\xa4\x97QW\xbe\xfb\x03q\xf5\x14^*F\xf0\\.)\xc3\xa5\xbc\xdd-\xf3\xf0\xdb0\xfa\xf5\xf6\xb6\xa9l\xab\xfe\x9b\xc9|\x97\xd7\xf20\x9dg \xbe\x9a\xa4\x9e\xea\xcd\xf3\x8b\xf7?>\xd4P\x85\x0e\xc3U?\xccR\xeb@\xa9\x02V\xba\x91Z\xc4\xe4\x9b\x84\x00\x87\"\x0d\x1e\xe0\xc7\x0f\xa7\xfaZ\xeb:_\x1d\x14\x08\xe2A.m4\xe4\x9b\xcdw\xab\xeb$\xcd\x1e\xd6\x17\x8b\x9bTN\x13\x17\xea\xb0I3\xbd\xeb\xa8\x9b~\xef\xeb$9a\x08\xbfo\x87py\x9d\x94\xd7S\xc6\xf1CR^kSV^'O~\xf7{\x90\x0cU\x04\xad\x1d\xdc>\x97{\xa6:[}\xfcp*O3\xf7\xeb\xab_\xbd\xfb{\xfa\xa2\xbe\xbe\x12\xd3\xf9\xb3\x9a\x1e\xc3j\x9d\xae\xb3\xfbU\x9dw\x0d\x184\xbeF\x8d\x93E\xb0\x99\xf5\x1b \xc5w;\xebT\x91 xn\xa5\xc8\xd6\x97\"K\x96[\xb1\xfe\x96\\\xb2Q\x97\xba\xcf\x0f\xef\xfe\xba\xbd\x9ds\x91\xad_kv\x1a\x8f\xb1\xd21\x81\xdaQIz2\x80\xb2J\xaaC \x0f\xbe\\\x0b\x95UN\xc6\x83\x80\xb4\xec{\x00\x92\x81|\xbb\xb3\xbd\xdb;\xf4JN\xb74\xc8\xeb\xa7\xf0\xb1T\xd6\xad\xdb\xc343\xb5>Ry\xe22\xcf\x0ep\xe7\x85J$\x96iy\xd2\xc4\xc73\xf1e{+\xd7\xac\x1cDwDu\xb8B\x07\xc1\xeb\xd7:\xcc\xf4\x04\xf6\xf8\x9fWy\xa1\xc2\xc5\x1a\x0e\xa1\x13\xfc\xbb$K\xf7\x87m'\xdc\x9c\x96]k\xa0\xd3\xff_\xc6\x99\xd2\x1b!\xf6\xc3\xfb\xd2\xcfU\xde\xb3\xbfX\xfe\xf5D\xf3TQ\x7f\xf5qE\xbdi/\x93\xd5\xcd\x97\xa4X\x97\x03\x0cF\xcfG\xab\xc7\x05\x9bt+\x9a}\xaa\xceX\\\xba\x94\xbc\xabK\xbdI;sV\\1\xce\x92\\{\x9d\xba+\xd8\x8a\xd4\x9f\xda\xdbn_\xe8\xe8\x08\xbf0L\x1dV\xf9\xa6\x8eLXh\xce\xfa\xb8\xcbw\x8c\x10\xa0\x8b\x1d\xa2\xa3\x06\xe9FC3\x13e\xbc\x88\xe6\xff\xe5\xd6\xb4\xd5' i|\x1a\x05\x9d?\x15\xca\xb9k\x0f\x91\xee\xdb\x03\x10\xee\xdc\xab\x87\xe6O\x856\x9f\n\x1d\xdb/ \x14\x1d\xea\xbcVs\xfbp\xf6\xd2t\x12)C44\x9b\xf5\xcb\xa1&sh1I\xab\x011\x84\x96Y\x9f\xf3\x13\x88\xa6\x0c\xa6\x8c\xa2%\xf5+\xc8'e\x1d\xaa\xa1N\xd3\xc6\x89f+\xc8\xae\x17\xe2D_\xc2_\x1c\x8e\xde?\xf9\x96\xb0'X\xf6q\xb0\xc5y,\xfb98\xf6t\xb0\xed\xeb\xe02e\xe6=w\x00\x11 <,\x8a2Cr)-\xd9\xc2\xa3\xd0\x0c\x04\x0f\x91\x82'L\n\xc4\x91\xc6\n\x97BX\xc8\x14\xe5\xe3\xcc\xcd\xb4\xc4\x0f\x9d\xc2\xc4\xf0)\xca\xb0\xc9\xe1XB\xa8\x10\x1cF\x05{(\x15\x1c\x8bL\x93%\xa4\n\xfe\x05\x12-\xb4\n^\xd7)B\x88\x15\x80\x1bf\x05\x88\x1cj\x85Q\xb8\x15\\Rv/\xcb)\xa1\xd7\x01\xab\x8e\xd6\xfd\xba\xa7Z\xa3\x10,\x90\xfb;\x9a\xc2\x89\xe1\xd8\x0e\x0b4$\x0b\xa3\xb0,\x90\xfb\xea\x0d\xcf\x02\xc4 \xd1\x02\x12\xa6\x05r7G*09d;\xe0\xa7\xee\x9a\xad\x86\xe88z\xe8\x16|\xe1[\x18\x86p!|\xf0\x91\xc2\xb9@\x0b\xe9\x82/\xac\x0bhh\x17&\x8doR\x98w\xc0\xae\xcam\xa1^\x80\x90p/\xf8\x05b\xb7\x07\xfc\xd0/`\xe1_\xa7\x1b\x8e\xba\xc7Ng\xbc\xfb\xf6\xa3\xde\xeb\xccC[\x0bS\xe2\xc7\xba\xf4N\x93\xab\x97\x87\xbey\xdcx\xd7\x08<\xd7\xe5\xe2\x07 D\x02\xd2i\x1a\x1dW\xbb}\xb9#\x8f\x1f\x8f\xe8y^\xf3\xb9\xce\xc1\xc7\xdb\x11\xa7)\xa7\xdc\x11\xb3\xfa\xd4;\xfa;\xed\xf0\xab\xc95\xf4\xc9@\xbd\x1e7\x03\xda\xeb\xfdq2v\xaf\xbf\x18j\x1c\x1f\xa6\x95.8_\xefy\xa7=\x9cC\x9ds\xa8\xf3\xe7\x11\xeaD\xb6\xaf\x9eF\xf6\xea\x90*o\xa4\xf3F'\x86\xa5\x8b\xde\x92\xbf#`\xd9G\xcb\xc9!\xae#\xef\xa3\xd6`\x98\xd3\xf5\xb3\x04\xc4\\\xa7u'\xf8 \xdd$\xdd\xdb\xa4c\xa3\xf4\x9e\xfd\xfd;\x9fy*b\x80\xcc\x13\"s\x07\xc9\xfca2\x7f\xa0\x8c:\xea\x98\xc1\xb2x\xe12r\xc0,4d\x16\x124\xf3\xf5\x94\x146\x9b\x128s\x86\xce|\xc13g\xf8\x8c\xb0\x88\xa2\x86\xd0|\x9b2\xc4\n\xa3\x85\x04\xd2\x8e\x10J\xc3\x82i\x93\x9c\xf5\x88!5GP\xcd\x12V\xa3\xf7\x1c\x99\xd8\x08\xc15\x7fx\x0d\x0b\xb0\xd1{M\n\xb2\xc5\x0b\xb3\xe1\x816zw\x11\xf5\x08\x0f\xb7\x8dXu\x10\x93X\xc0\x8d\x17r#\x04\xdd\x90\xb0\xdb$QD\x0c\xbe\x91\xc3o\xdex\x13XCpS\xc7\x1a3\x10\xe7\x0b\xc5\x85\x06\xe3\x08\xe2qY\x91\xb0\x90\x1c\x1a\x94\x1b5\xd5\x13\xaa\xf1\xca\xdb\xe2#*N\xa1\xccM\x0fN\xa7,\x7f\x0d\x1a*\xc4UZV\xa2\xe8\xd75\x96M\xceP\xa2\xf9|\xfds<_\x8f\x8e\xb5\xcc\xd0t\x19\x18\x9b\x8e\xf4m>\xc6\x8a\xc0\xc1\xa7\xe0\xf0\xad\xff\xf1\xe8\x0f\x0b\xfa\xba}o\x8c\xc0\x06\xc2V\x12\x13\x89\x0d\xcd\xe9z\x88\xc6\x06\x1c\x91\x0d\xde\x0eF@fClt6\xe0\x08m\x98\x8e\xd2\x1e\xea\x972\xa3c\xa46\x84\xa2\xb5\x07<\x86\xd8m\x1c\xb1\x0dj\x92\\\xa8m\xb0\xea`or\x83\xd0\xdbN\xb35\xf8\xe2b\x97\xf3\xd8f5\x1f\x1d\xfc\xfaH\xb6\xd1\xb5\"\xaa\x07N\x1b\xd5Q:\xb6\xa1\x9a\xefs\xb0\xac\x08nAF\xd6cv\xaef\xe7\xea[u\xae\xfe\xbbg\xa5\x10\xdb\xe1I^\xb4o4\x19\x0b\xcd\x0f=O\xfd\xab\xd3p\xed\xeb\x853_u\xc1\x96Vp2\xbc\xcbdJ\x1e\xfc\x88W]J3\xf5\xf3\xa5\x97\x1e\xcd\xc6t\xd8\x87o\xda\x98\xf6]>\xab=\xeb\xe9e\xff\xc3\x94-\xcec\xd3\xc08\x8c7h:\xda\x82>\xee\x97\xc8\xca\x99\x923>?\xec\xf7\xdb\xdb\xf7\x1b\xb6\xe5\x1dZ9\xc6JB\xcc\xa9Ec\xe6\x0b3\x98\x96\x0d\xa6\x8crc\xc6\xbc\xc3\xbb2s!W\x8b~\x95\xad\x1f\xa5zm\xde\x97\xbf\xbd}\xb9\xb6\xb4z\x82\x9a\xfdX\xff_\x9d0R\xfbo\xfd\x82w\xfb\xedI'`/\xee\xbc\xedI\xcc0l\xcc\xbc[\xcf\xbb5 \x1d\xb5\xd95\x8a\x11\xed\xbcVs\x1b\xc5\x92-\xd6\xb4s\xca\"\x1b\xd0\x81qCf\x89[\xa1\xa0Q\xdf\x89\x11\x916\n\xa2\xd9\xf5\xc2\x1f\xcd\xf0K\xd1\x0c_\x1a\xcc\x88\xe3\xc6]\x8f\xce#\xf8\xa8'\x9a\xedx\x06\x9bb\xaa\xbbb\xacD\xb6\x16\xc5.\xcd\xaaF\xa2\xcf_\xbc\xd8\xa3p0U]\xb7;\x81\xf5A\x7f\x1f\xa9\xc1\xfb\x18\xc9(k\xa2\x1f\xacw\xc7\x11C\xeckc\x17\xad\xbdi~\xb3\xfbAuc*\xb2S\x0bX-#\xd3\xa44mU\x07\xadf\x9e\xef\x1f\xb18\xe3*\x91\x81\xf5\x13T\xe3\x11\\K\x99\xbb\xf6\x0c\xb0\x98\x1fi/\xcb}2\xae\x0d\xe1\xddoF6\x1a\xcf\x01\xf5\x02\x00\xea\xa7\xe6E\x15*\xa8\xb9\xf5c\xad4y\x99\x8653\x97\xd0\xfa\x02\xf3l>/\xb6\xf9\xea\x86\xbc\xe1\\\x8bd-F\x9fR$\x19\xd4\xfa\x9bW\x03\xa3\xaa=:\x0d\xa3Y\xca\xae\xa8\xbd\xa7\xff\x8c\xcd\x96\xda-\xe9\xb2\x1dT\x97\x9c\xe6\xcb\xe1 \x03$\xfb}\xd9\xa1[G\xbf\xf2\x98\xb4\x9fv\xbb?J\xcbK\xc7S@U$Y\xa9k\xfe\xef\x92\xd5u\x9a\xf5\xbe4\xa5Z\xbeL\xd1\x84\xefH\xccC#\xe0x\xd4\x0en\xafR\xf2\xadi\xc3b\x9dT\xe2;\xf9^\xe7W\xf5\xe5 %\x02\x17\xa5/u\xb0$\x02;\xf19]\x8bl%\"\xb0j\xe6\xaf\xddV\x06\xfb\xae\\\xf8y)\x8aK\xf4\xaa\xb4\xb5=\xf7\xde6dj\x025y\x91^\xa5YRo@\xcdc\xe6\xc6\xeaI=\x8cj\xe4\xf3\xaa\xef\xda\xbc\x10\xab\xeb\xdf<\xa9{3BJ\x9df\x1d\x87\xa8\xc6-\x197\xeb\x93\x14K\xf9\xe9\x04\x96\x87\xca\xc42\xcf_\xfd\xf1\x04\xbe\xa8\x0d\xf7\xb3(*\x18\xdd\xc7RA\x95^\x9b\xc3&\x15\x14JT\x95(\xe0\xe3\x7fZ\xdcnmwz^d\xeb<\xaa\xdc|\xdb\xebZ,\xda\x80\x1b~\xc1\x05\xac\xaa\xaf\xd3O\xb6\xa8\xed\xa5\xc5]GJq\xf1\xb5\xd4 k\x13\x12U~\x84>kh\xaf\xe1\xdf\xb5\x00\x16?\xa8-\xffW\x8fGs\xac\xc39\xea\xc3\xc6\xdb\xad\x1c 4\xe1Seb\x16\x00\xff!\xee\x17\x02\xfe\xebPV\x90\\\x15BH\x97\x07\xfd\xa8\xac\xbeV\xa6>\xde4jG\xf9\xe8;\x91du\x8fu\xb7\x9e\xef\xf7\n$\xbf\xce\x85\xfe\x08\xaav\xaa\x14\xf6\xaf\x14\xb2;\xa3x\xfd+}6\xed\\\xd2.\x85\xbeG$\x1d\xa4\xa4\xfezd\xcd\xa7A\x08vm\xa81\x06A*0~\x19\xc2\xf4\x80\x1d\xe1h\x8e5\x97\x9f\xf3J\\\xe2\x1d\xd1\xe4\xf4K|\x9e \x80\xe2\x8fF1\xc0\xcf\x1c\x08\x0d\x80ac\xfd\x95\xe0\xa9h\x12\xd9\xc1r\x15\xd5\xd0wp~\xfa\xfd\xbb\xd7\xaf.\x7f<\xff\xfe\xf2\xe2\xff\x9e\xbd\xbe\xfc\xf8\xee\x8f\xef\xde\xff\xc7;\xe6[g\x1f^\xff\xe9\xfd\xc5k\xfe[/\xdf\xff\xf8\xe3\xe9\x05\xfb\xbd\xf7g\xef\xcf\x9f\xbfu\xbcV\x03>\x9f\x06\x8c\xcf\x17S\xea\xd2yz\x95\x89\xf5\x8f\xe5\xd5Es\xc2\xae\xea\xef\xc7\x96\xea\xa7\xeeG#\xf1/M\xb7\xd4l\x9a\xc8g6{d\x95\xffS\xf8S^!\x9fJ\xf7\xbe\xad\xe5\xf9\x14\xce\xd4\x16\x99l\xed,\xb0\xf3Q\x9f\x88\xca\xe9\xf3\xd35\x15\xf9!C1\xe3\x86\xfc\x07\x02M\x9d\xe6~\xf3\xc4\xfa\x1c~\xd8\xea\x13a\x8d\x03q\x9d\x83\xf3<\xd2\x12Q\xa4\xe0;\xa3t\xc9{\x80\xeb\x13q\xd4\xc0\x189\x80\xf3\xa87x\x908\xcf\x86h\xeae\x882 \xc0\x9b\x08\xe0L\x06\xe1\xf8\x88>>>L\x0e\x1f\xdb\x89\xb2JvH\x98\xa9\xf3\x10mP\xaeHE\x9f\x9a\xf3\x17\xee\xe5\xf7\x89\xd9\xbaS\x94m\xc3\x83L\xd2\x98\xa8\xfaD\xb3\x1bM\xba\xce\xdfd\x8c\x91R\xb7(\xb9\x1b\xf4o\x1f\xcaCs^\x89\x13\xf9\x0f\x1dr8\x81\xbc\x00\xfdO\xe5\xdcX\x99\xa9\x83w{\xb4\x96\xfd\xb4\xefS\x9d\xbd\x0c\xfbYyQ\xcb\xd9\x8b\x9a\xbd(\x98\xbd(\x94\x88\xcaI\xdb\xe6f/\n\xe8\"\x05\x9a\x0d\xd64{Q\x1d\xa2L\x02\xf0&\x028\x931{Q\xd4\xd6g/\x8a\xb1E}\xb3^\x94Z\xf6\x97\x9f\xf3*\xcd\xae.U1,\xb7G\xe5\x14\x9a\x7f\xa9\xb7zq\xfc\xb6\xbcK\x8e\xd1\x8ak\xa9Qt\xe0\x95 .JEx]\x87\x16\xdb0\xab 6\xea\xf0z#$\x94U\xed\xceT_r\xf9\xfef\x9b\xae\x14\xe8Hj\x0c2\xc7[\xe9$\\\xea:\x1e\x97IU%\xab\x9bc\x866;=\xba\xb4@\x1d4\x11v1_[\xd0\x08\x83\xb0s\x12\xda\x03b\x9b\x80\xa0Mp\"6\n\x8c\x86\xc1\x86W\xc1\x89\x82b\xb1\xbcI\xef;0\xfb\x0fv\x1c\x0cN\x84\x85:$\xb3pQ\xcc\x0cN(\x92\x06\xa7\xbb\xe8\x10\xc5\xac\x0c\x89\x8e\xd0!\xb1CQ<>\xdc\x0eN\x1c4\x0f\x89\xe1\x10\xf1\xe3\xc6\xf8\xe0DA\xfe\xe0\x84\xe3\x81pb)\x8b\xffTg\x88\xc5\x96\xb2_vi\x8c>\xb2<\x17\xd6 \xbf\xe7j\xc8\x81_\xc2\xe9\xc8v\x8bz>\x01\xbep\x80\xe6r\xf6\x89yx4\xc4\x94\x12\x04H\n8\x87JC\xd4\xc3\xc0\x90x\xdam\x883\x99\x106\xa1\x102\xa9\xecC\xe8\xe05\xdfa\xd4\x90\x1b5\x86\x13S\x06\xcc\xb1\xd3pg8Y\xd0h8\x1ds\x18N\xec\x18N\xc7\xec\x8e\xfd\x1a\x1dNT\xe0\x1c\x89\xd9\x10\\\x87\x93\x1fr\x87\xd31\xc5\xe6\x02\xed\xe1t\xcc\xde\xe0\xb0?\x9c\x8e\xd9\x0f\x0fp\x10\xa7cv\xc8\x01=\xc4\xe9\x98\x9d\xf1\x83\x17qrC\x1aq:\xde8\x98h@\x0c\x02\x88\x93\xdej|\x83c\xf8&\x1c\x9f\xe4\x1b\xf1\xac\xbdy\x14C\\W\x88\x16\x1f54\xbb\xd4V\x9a]jE<\xb56\xc4\x99L\x08\x9bP\x08\x99\xd4\xbbr\xa9\xdbK\xd7\x14)\xe8\xd1\xdb?c\xd0'\xe7G\x0d\xfa\xc4VF\xbe*\x1a\x0br\xb9\xd9&H-u\x1b\x05M\xb8\x1f?\xd1\xa7\xef\xe0\xc5\xdb\xf7/\xffxy\xfa\xea\xf2\xcd\xdb\xe7\xdf\x13\xb0\x06C\x1arx\xfe\xe2\xfc\xf5;7<\xa2OC\x06\x04|E\x9f\x86\x0c\xde\x9d\xba`\x16}j@\x17\xd3\xc4\xc0;7h\xd2\x0be\xfdf\x9b\\u\xbe{\xa0\x8b\x16\xbc\xd8\xae\xf2\x9b\xd3W^\xfcE\x9f\x9a%\x05)=t\xc9\xcc}\xf6)HG\x83L\x12!)\xdc\xa7I]\xa3\x87\xdd4\x91\x92\xa9}\x9a\xd4?\xb2\xe8Bb\xe3\x00/\x95\xfby\x9e^i|\x90\xdc\xe7M\xf0X\xe5g\xcd\xa5\x06\"\xbb4\x83\xa4\xe6\xe9\x0b\x18s\xfb\xab\xb9\xf6\xafa49Bu\xbf\xc3\xb8\xdd_\x12\x0f\xc8\xa8q\xbb\xeb\xaf $\xe6>G{\xdc\xb6\xf7\xbe]C\xa5 @\x8d\xbc\xfb\x0du\x97i\xfb\xe6\xd3<\xfa\x0eJ\xdc=\x89#\xd1D\x1d\x8f&\x96\x1db/$\xe6\"\xda\x1f\x96\xe3\xc2U6b \x05\xd8\x82\x91$\xd6O~\xf7\xbb\xc7\xff\x93\xfax\x80\x80\x80/$Pe\x87V\xfb'\xbf\xfb\xfd\xcd\xe3o\xadk\xdc\xdd\xf9\xec\xb0\xdc\xa6\xab?\x8a\xdb\xdea\xfeF\xdcv\xcbe\xd1\xf7\xd7C)tY\xa3?5\x8b\x95\xf0&\x05i\xd2'\xb60\xb9\x07\x97&\xf8\xb2/\xd2\xbcH+\xd6\x9a8J\xbfL\x8f|\x1da,K\xce\x82d\xd8)\xa6\x10X:\xce\xb0P\x0cA\x00S\x18\xc0\xb7ML\xa1\x00W0\x10b\x95\x8e\xdf)\x9e=\xa2Z#igH\x0c\xb9\xb6\x88k\x89\x98\x02\xa4\xafv\x08\xb5AG\xeb\x11\x1d\x14\xd8\xbcA\xef\x8a\xbf\x1b\xd2_\xcd\xb3Kw\xc0\x96\xd0\xa2\xbf\xa5\xe5\xed_\x93\xacJ3q\xe9\xf78\xfd\x9e\xa6\xc7\xc3$\x19)\x9ai\"Yh\x82\x844\x11\xd79\xc9\x1e\x93\x06 \xe4\x81\x02\xc7\xfa\x92\x07\x0c\xf4A\x03\xcf\xd6\x1e\xa7\x0bT\xcb\xca\xb1\xa9\xf8\xe71\xfbD\xb2\xa6t3A\x16\x8e\x7f\xe1jbZ\xcd\x88\xed\xd3-$\xa1QBs\xbe@\x11\xa3\x95\xa9P\xe6\xb7\xd2*\xbfT\x80\xe2\xe7\nO\xec\x833\xebx\x03\xca\xab\x03bO\xaaJ\xec\xf6\n\xca\\\xe5\xb0K\xcb\xadH\xd6\xea\xbb\xbbW\xd7U\xfd!B\x13\xa8\xe8\xe0VZ\x81\xa0\x96\x07\xb72Q\nt!\x89<\xcd\x03K\xb5\xd8\x92sse\xae\xdeOV\xf9\x19\xf2-\x95o\xaf2\x97-!ds'b\x964\xf1\xa6hE-f\x07\x9c\x82v0\xb9\xa8\x9d\x8d\x03\xbd\xb0\x1d\x90/k1\x14\x9a\xe2\xd5k\"]\xd0\xa2\x1d%4\xd9r?c\xa2^\xca\"\xda\x0e`\xd8\x0f\xf0\x9ejZb\x88\x1d|;\xfc\x90HG\xc5>1\xa4\x01L\x89Hb]\xb8\xe2\xe8\x85!\xbaj\x1a\xa2N\x14\xf0'\x0b\xb8\x13F<\xa8\xa2\xafP.UyS\xdf\xcd\x83\xf4\x81\xfab,}\"\xa5p\xba\x14\xd0\x13\xaf\xa8\x19\x05\xf5\x80\xa9\x87t\xfbD\xbe\x0f\x12_\x02\x9c-4j\xb1=I\xac\x82{\xe0/\xba\x07\xde\xf2\xc5@\xb7kT{6{\x88\xb3\x87h\xa7\xd9C\xa4o\xc3\xb3\x87\xe8#\x86\xd8\x81\xbe\x07h\x9a=D\x02Q'\n\xf8\x93\x05\xdc \x9b=\xc4\x11\x05\xf4\xc4+\xea\xd9C\xa4o\xa1?\x0b\x0f\x91\x8e1\x06\xba@i\xa6\x84X\xa6\x19b\xb7KZ\xca\xcc\x16}K\x98\xaa7\x11K8\x03\xbb\x8c3\x04\x94r\x06\xda\xceG\xd9\xed\xc8e\x9d\x81\xd6&\x10\xdb\x05N\x89g\xa0\xb7\x0d\x8c\xf6\x81\\\xee\x19x\x1d\x00f'\x80W\xfa\x19\x80\x8e\xa7\xc2\x899\x16\x08\x18\x0fpKA\x03\xdd\x00\x0c\xc9\x18\x04r\x05fM\x8c\xb2\xd0p\xc7\x9d\xa3\x9a\xae!\xd1\xb0bdv\xd6\x0f\xbe\x93N\x9e\x86\x07\x9b9B\xe2tL\x93\xbb\xc9\x8b\xa4j\"c\x04\xfa4\xb9\xaf,\x91\x868\xef\x9a\xa8\xe5L\x18,\x19\x95\xc6!\xb0\xef\xe4b)$n\xd6\x82*\xa4\xaa\xe3\xc0\xa9<\x0e\xbc=\x8e\xb3\xb3\xf9kBv\x89\xb7\x933vq\xc6\xe84q\xc6\xa8\x89m\xe3\x82\x16c\xc0B$\xd5\x9c\xec\x12[X\x10$0\xe0\xd4\xa5\xecR\x90\xe0 Lx\xc0\xab]\xd9\xa5\xbb\xedf\x88\xd7@\xadu\xc9`\x19V\xd1\x1cX50\xbb\x14$\xe4\x90\x03\xdb\x9eW'\xb3Kw\xd0\xc7=\xb1\xda9\xf0\x977wa3\xed`\x80p\xd8\xeb\x83i\x01\x99\x02\x82\x00!A\x98\xed\x0b\x10\x16\x84\x08\x0cB\xad\xde\xddu\x90o\xef\xa2[\xbbP[\x17b\xe9\x02\x04\xcb\xb3 0\xc5\xc6\x1d\xbdw<\x1co\xf3\x16\xaf[\xb4.\x91*\xab\x03\xbduZ\xab\x9c*\xeb@\xf6\xa4 \x1e4\xd9\x18\xd2M y\x87 JP\x13\xc3\x86\x90\xf7\x03\xf2\xe0\x81%\x00\xe0Z\x7f\x96 \x80'\x0c\xe0\xdb\xfa\xe3v\x87c\xd9\xa96\x9d\xf8\x05\x0c\x9e5\xe7\x99#\x96\xd0hFAS\x80\xd5>B_x\x16\x9a\xd8\x01b\xd3\x94\xc0\x1d\xb3E_P\x8e\x1a\x1f\x8aY\xe9\x1d\xc2\xab\xbd\x83\xad\xe2;\xb8\xac\x9c\xdd\xa2E\xaf\xf2hI\x12k~\x84\xd2\xb2\xa3\xc4\xef\\\xde\x11\xa5\xb9\xbcc\x8f\\\xc9F\x97\x0bu\xacJ[\xa4\xf4\x1fAx\xee\x94\x1e7y\xc7L\xd31\x13r\xf4\xd4[P\x92-v5z\xe0d\xb6\x08SE\xd0\xf2\xbb\xf9p !\xab\xc4h\xc92\x9c\x88U\xebG\xecF\xdb09!cI\xb6\x0c\xd8\xa1\xa9\x97\xa6*x+3SH\xfc<\xcdV\n\x90W\xee\xf2\xf2\xbbr}\x03\xbf^\xfc\xf6_\xe7\xa2\xe1#\xf2\xaa\x95Q\xaa\xb9hx\xfb\x14\xed\xd2\xd6\\4\xbc\xfbW\n\xbb\xb9h\xf8\x90|N\xcb\xecUb\xaa2\x17\x0d\x1f\xfe\xc8\x18\x97\xf7\x16\xc9\\4\xdc\xc1\x91p\x83\"\x94\xf5\xcf\xb9h\xb8\x7f/\x1f6\xa0\xbeBt- /\xd2\xab4K\xea\x8d\xb6y\xccD\xb2O\x10Vz\xb0\xd2\x9bL\xa4o\xfb\xa2\xff\xe9!\xe4\x85\xd3\x0c.\x84\xf9\x04\xd1 T\xd7\xb2\xed\xba2\xd9')\xb2\xf2\xd3 ,\x0f\x95q\x10\xce_\xfd\xf1\x04\xbe`&\xac\xfe\xe6\x11\xa4\x15T\xf9\xb0m\xaci\xe9\x9b,EU\x89\x02>\xfe\xa7\xc3\xc1\xf6\xdf\xachG0\x97V\x87\xb9\xb4\xfa\\Z\xdd\xe7;\xcd\xa5\xd5\xfb\xcf\xf8\xbc7M4\xc4\xfa\\8\x936^\xbf\x19\xeb\xd3\\8\xd3\x9f\xfc\x07\x9eBS\xce>\x9aH\xb7\xe9h\x07.M\xae$J\x9f\xa8\xb7\xe6\x88\xb6\x03\x18\xf6\x03\xbcg\xbf\x96\x18b\x07\xdf\x0e?$\xd2\x81\xbaO\x0ci\x00S\"\x92X\xb7\xdd8za\x88\xae\x9a\x86\xa8\x13\x05\xfc\xc9\x02\xee\x84\x11\x8f\xf3\xe8+\x94[k\xde\xe0|\xf3 }\xa0\xbeHT\x9f\xc8\xb9\x08C\x01=\xf1\x8az.\x9cI\xdfB\x7f\x16\x853\xe7\xd2\xea\xdc7g\x0f\xb1\xa5\xd9C\x9c=D\x17\x11m\x070\xec\x070\x1c\x0f\x86\xd8\x81\xbe\x07h\x9a=D\x02Q'\n\xf8\x93\x05\xdc \x9b=\xc4\x11\x05\xf4\xc4+\xea\xd9C\xa4o\xa1?\x0b\x0f\xf1\x1f\x08\xf8\x9dK\xab\x8fi.\xad>\x97V\xf7=\xc7\xea\x000;\x01siuMD\x030$c\x10X\xd5\xcb\xe7\xd2\xea~\x9aK\xab\xe3DE\xf4\xe14\x97Vw\xd3\x84\x0e\xf9\\\x82>\xcd\xa5\xd5\xa9.x\x9f\x02\x0e\xea\x86\x02\xa4\x07\x81\x12\x04\xee\x01\xde\x10\xe7\x005$\xfe\xca0\xc4\x9dp\x08\x9ft\x08\x9d\xf8\xa0\x03\xbf!\xc6\xc1\xdf\x90\x1f\x0d\x8aS\x80\\\x02\xe4A\xc7\x93\xe24\x97V\xe7u\x8dw\xbfY\x13\x15\x14KfH\xafBF\x83\xd4\xe2t\x17\xe2\xf4\x81rq\xba\x8b\x9e\xcd\xa5\xd5\x99\x9d\x9bK\xabw\xe8\xf8\xe3\n9\x9d\xf9\x01\xc0t\xcb2\x97V\x1f\x12\xdf\xed\"\xa5\xfa\x0c\x85x\x84\xf4\xd0\xba\xa1\xf9$\xc2X\x83\x9a\xe6\x93\x88\x95\xf8K\xc2\x10w\xc2!|\xd2!t\xe2\xef\xfa$2\x97V\xf7\xd6V\xc0)X1h0\xa4>q\xab3\xe0\xc4\xac\xd9\x80\x13\xb3\x92\x03N\xf4\xfa\x0e8\x05U}\xc0\x89\x7f\xf4\xd2D,\x1e\xc1\xe4J*5\x81\x13;\xa5\xdf\xa7`}\x0e6s\x84\xc4\xe9\x98&w\x93\x17I\xd5D\xc6\x08\xf4ir_Y\"\x0dq\xde5Qkn0X\xce\xa5\xd5]\x8f\xb2\xf68\xce\xceF+\x04i\x88\xb7\x933vq\xc6\xe84q\xc6\xa8\x89m\xe3\x82\x16c\xc0B$\x17\x924\xc4\x16\x16\x04 \x0c\xb8\x05&\x0d\x05 \x0e\xc2\x84\x07\xfc\xc2\x93\x86\xee\xb6\x9b!^\x03\xb50%\x83eh\xb9an\xa1JCAB\x0e9\xb0\xed\xf9\x05,\x0d\xddA\x1f\xf7siu\x071- S@\x10 $\x08\xb3}\x01\xc2\x82\x10\x81A\xa8\xd5\xbb\xbb\x0e\xf2\xed]tk\x17j\xebB,]\x80`y\x16\x04\xa6\xd8\xb8\xa3\xf7\x8e\x87\xe3m\xde\xe2u\x8b\xd6\xa5\xb9\xb4:Nt\x13H\xde!\x88\x12\xd4\xc4\xb0!\xe4\xfd\x801\xa4\x01L\x89Hb]o\xe4\xe8\x85!\xbaj\x1a\xa2N\x14\xf0'\x0b\xb8\x13F<\xa8\xa2\xafP\xae)z\xb31\xcd\x83\xf4\x81\xfab,}\"'\x9f\x0c\x05\xf4\xc4+\xea\xb9R*}\x0b\xfdYTJ\x9dk\xe9s\xdf\x9c=\xc4\x96f\x0fq\xf6\x10]D\xb4\x1d\xc0\xb0\x1f\xc0p<\x18b\x07\xfa\x1e\xa0i\xf6\x10 D\x9d(\xe0O\x16p'l\xf6\x10G\x14\xd0\x13\xaf\xa8g\x0f\x91\xbe\x85\xfe,<\xc4\x7f \xc2{\xae\xa5?\xa6\xb9\x96\xfe\\K\xdf\xf7\x1c\xab\x03\xc0\xec\x04\xcc\xb5\xf45\x11\x0d\xc0\x90\x8cA`\x95\xab\x9fk\xe9\xfbi\xae\xa5\x8f\x13\x15\xab\x86\xd3\\K\xdfM\x13:\xe4s \xfa4\xd7\xd2\xa7\xba\xe0}\n8\xa8\x1b\n\x90\x1e\x04J\x10\xb8\x07xC\x9c\x03\xd4\x90\xf8+\xc3\x10w\xc2!|\xd2!t\xe2\x83\x0e\xfc\x86\x18\x07\x7fC~\x9c#N\x01r \x90\x07\x1d)\x89\xd3\\K\x9f\xd75\xde\x85vMT\xb8'\x99!\xbd\xec\x1c\x0d,\x8a\xd3]\x88\xd3\x077\xc5\xe9.z6\xd7\xd2gvn\xae\xa5\xdf\xa1\xe3\x8f+\xe4tFD\xfd\x92x\xcd\xb5\xf4\x87\xc4w\xbbH\xa9>C!\x1e!=\xb4nh>\x890\xd6\xa0\xa6\xf9$b%\xfe\x920\xc4\x9dp\x08\x9ft\x08\x9d\xf8\xbb>\x89\xcc\xb5\xf4\xbd\xc54p\nV\x0c\x1a\x0c\xa9O\xdcr\x1c81\x8bt\xe0\xc4,\xdd\x81\x13\xbd\xa0\x07NAe>p\xe2\x1f\xbd4\x11\xab\x850\xb9\x92j\x8b\xe0\xc4N\xe9\xf7)X\x9f\x83\xcd\x1c!q:\xa6\xc9\xdd\xe4ER5\x911\x02}\x9a\xdcW\x96HC\x9cwM\xd4\"+\x0c\x96s-}\xd7\xa3\xac=\x8e\xb3\xb3\xd1*\x7f\x1a\xe2\xed\xe4\x8c]\x9c1:M\x9c1jb\xdb\xb8\xa0\xc5\x18\xb0\x10\xc9\x95C\x0d\xb1\x85\x05A\x02\x03nEQCA\x82\x830\xe1\x01\xbf\xd2\xa8\xa1\xbb\xedf\x88\xd7@\xadD\xca`\x19Z_\x9a[\x99\xd4P\x90\x90C\x0el{~\xc5RCw\xd0\xc7\xfd\\K\xdfAL\x0b\xc8\x14\x10\x04\x08 \xc2l_\x80\xb0 D`\x10j\xf5\xee\xae\x83|{\x17\xdd\xda\x85\xda\xba\x10K\x17 X\x9e\x05\x81)6\xee\xe8\xbd\xe3\xe1x\x9b\xb7x\xdd\xa2ui\xae\xa5\x8f\x13\xdd\x04\x92w\x08\xa2\x0451l\x08y? \x0f\x1eX\x02\x00\xae\xf5g \x02x\xc2\x00\xbe\xad?nw8\x96\x9dj\xd3\xe7Z\xfa=:B_x\x16\x9a\xd8\x01b\xd3\x94\xc0\x1d\xb3E_P\x8e\x1a\x1f\x9ak\xe9\xb7\xe4\x9a\xcd\xb9\x96>!\xbd\xea\xdd\x8e\xfc[\xd0\\\xde\xb1Gs-}J\x96\x8a\x99\xa6c&\xe4\xe8\xa9\xb7\xa0$\xdb\\K\x9f\xbc\xady\xb3J\x8c\x96,\xc3\xf9\xa7\xab\xa5\xdfT\x05oef\n\x89\x9f\xa7\xd9J\x01\xf2\xca]^~W\xaeo\xe0\xd7\x8b\xdf\xfe\xeb\\4|D^\xb52J5\x17\x0do\x9f\xa2]\xda\x9a\x8b\x86w\xffJa7\x17\x0d\x1f\x92\xcfi\x99\xbdJLU\xe6\xa2\xe1\xc3\x1f\x19\xe3\xf2\xde\"\x99\x8b\x86;8\x12nP\x84\xb2\xfe9\x17\x0d\xf7\xef\xe5\xc3\x06\xcc\xd7\x86\xf2\"\xbdJ\xb3\xa4\xdeh\x9b\xc7L$\xfb\x04a\xa5\x07+\xbd\xc9D\xfa\xb6/\xfa\x1f>B^8\xcd\xe0B\x98\x0f\x10\x9d@u-\xdb\xae+\x93}\x92\"+?\x9d\xc0\xf2P\x19\x07\xe1\xfc\xd5\x1fO\xe0\x0bf\xc2\xea/.AZA\x95\x0f\xdb\xc6\x9a\x96\xbe\xc9RT\x95(\xe0\xe3\x7f:\x1cl\xff\xcd\x8av\x04siu\x98K\xab\xcf\xa5\xd5}\xbe\xd3\\Z\xbd\xff\x8c\xcf{\xd3DC\xac\xcf\x853i\xe3\xf5\x9b\xb1>\xcd\x853\xfd\xc9\x7f\xe0)4\xe5\xec\xa3\x89t\x9b\x8ev\xe0\xd2\xe4J\xa2\xf4\x89zk\x8eh;\x80a?\xc0{\xf6k\x89!v\xf0\xed\xf0C\"\x1d\xa8\xfb\xc4\x90\x060%\"\x89u\xdb\x8d\xa3\x17\x86\xe8\xaai\x88:Q\xc0\x9f,\xe0N\x18\xf18\x8f\xbeB\xb9\xb5\xe6\x0d\xce7\x0f\xd2\x07\xea\x8bD\xf5\x89\x9c\x8b0\x14\xd0\x13\xaf\xa8\xe7\xc2\x99\xf4-\xf4gQ8s.\xad\xce}s\xf6\x10[\x9a=\xc4\xd9Ct\x11\xd1v\x00\xc3~\x00\xc3\xf1`\x88\x1d\xe8{\x80\xa6\xd9C$\x10u\xa2\x80?Y\xc0\x9d\xb0\xd9C\x1cQ@O\xbc\xa2\x9e=D\xfa\x16\xfa\xb3\xf0\x10\xff\x81\x80\xdf\xb9\xb4\xfa\x98\xe6\xd2\xeasiu\xdfs\xac\x0e\x00\xb3\x130\x97V\xd7D4\x00C2\x06\x81U\xbd|.\xad\xee\xa7\xb9\xb4:NTD\x1fNsiu7M\xe8\x90\xcf%\xe8\xd3\\Z\x9d\xea\x82\xf7)\xe0\xa0n(@z\x10(A\xe0\x1e\xe0\x0dq\x0ePC\xe2\xaf\x0cC\xdc \x87\xf0I\x87\xd0\x89\x0f:\xf0\x1bb\x1c\xfc\x0d\xf9\xd1\xa08\x05\xc8%@\x1et<)Nsiu^\xd7x\xf7\x9b5QA\xb1d\x86\xf4*d4H-Nw!N\x1f(\x17\xa7\xbb\xe8\xd9\\Z\x9d\xd9\xb9\xb9\xb4z\x87\x8e?\xae\x90\xd3\x99\x1f\x00L\xb7,si\xf5!\xf1\xdd.R\xaa\xcfP\x88GH\x0f\xad\x1b\x9aO\"\x8c5\xa8i>\x89X\x89\xbf$\x0cq'\x1c\xc2'\x1dB'\xfe\xaeO\"siuom\x05\x9c\x82\x15\x83\x06C\xea\x13\xb7:\x03N\xcc\x9a\x0d81+9\xe0D\xaf\xef\x80SP\xd5\x07\x9c\xf8G/M\xc4\xe2\x11L\xae\xa4R\x138\xb1S\xfa}\n\xd6\xe7`3GH\x9c\x8eir7y\x91TMd\x8c@\x9f&\xf7\x95%\xd2\x10\xe7]\x13\xb5\xe6\x06\x83\xe5\\Z\xdd\xf5(k\x8f\xe3\xecl\xb4B\x90\x86x;9c\x17g\x8cN\x13g\x8c\x9a\xd86.h1\x06,Dr!IClaA\x90\xc0\x80[`\xd2P\x90\xe0 Lx\xc0/\xbc\xd0wxJ\xa8DSqR\x8aP\xffp\xa2\xddM\xd9\xa9\x1a\xb2\xb6\x1f\x94\xec\xec\xb0\xda\xa4b\xbb6E3\xc5Z\xee\xf8\xcb~\xb5\xceQW\x1aq|/\xaa\xb7R\xdb+\xd5\xec\x07Q\xee\xf3\xac\x14\xa6lha\xfe_\xf5L\xfa\xca\xf2\xaf\xff\xe7 \x8a\xdbG\xfd7kv\x1f\xce^\x9a\xfb;;Q]\xe7k\xd9\xb6\xae\x1f\xbfX&\xa5X\xb4\xa3]|~\xbc\x14U\xf2x\xd10j\x9c\xebsQ\x99\x9ehm\x1bY\xce\xb1\xad\xd4\xd6q\xe8{\xa0J\x89mQ\xd8\xc9\x193\xf2#\xe3n1\xea6cn\xb1 \xd6\xc5c9\x8e:\xb6\x12\xd76\"_\xbb<\x14\xe8&\xefY\xbf\x14\xa7\xf69|\xfc\xf0\xf6Q!\xca\xfcP\xac\x04d\xc9\xae^J\x87,\xfd\xcbAloA\xae\xaf*\xdd\xa4\xf5a\xac\xaak\xaa\xd8\xa0\x07\xa5(\xd2d\x9b\xfeU\xac\xf1[a\xfb\"\xaf\xf2U\xbe\x85\xe5a\xb3\x11\x85)\xca\xb2\xd0\xf5?\xf5X`w(\x9bu\x0eI\x05[\x91\x94\x15\xce/\xcf\x04\xdc{t\x0fV\xd7I\x91\xac*QHNBy\xc7P\x8a\xab\x9d\xc8\x1a#\xf4\xf1\xc3\xdb\xfb%\xec\x93\xeaZ5\x80\xb2kn\xc0\xe3\xadI6\x9b\xc3v{\x0b\x7f9$[)\x95\xb5\x96Y\xdd\x84\x92\xce\x83\xa4\x844\xc3\x19|\x92\xcd?\xba\xca\xf3\xab\xadX(Y,\x0f\x9b\xc5\xabC\xa1\xae\xd2}z\xa8{\xafX\x96\xd7\xf9a\xbb\x86\xa5*X\x83_\x8cX%Y\x9e\xa5\xabd\xab\x16\x08\xde\xe2\x03\xb1\xb8Z\x9cH\x11\xaaK\x81\xf7\x16\xf7\xa4\xa9Pu]W+\xb1\xaf\xc4\xfa\xe1\xe2\x17\xf8\xab\xa7\x19\xec\xa5P\xd3\x958\x81J$\xbb\x12\x0e\xe5!\x91\xc3\xd75\x01\xf6\xe9V\xf6\xae\xcau\xf9\xd44K\x8a[H\xb6[\\v\xb7{Q\xd7v\xad\xae\xc5-\xde\xa4\xf8\xba\x17+SF\xf8P\x9ab=J\x19\xc4W5\x95\xcf\xb3\xdb\x05\xfc\x90\x7f\x11\x9fEq\xa2,\xdc\xc7\x0fo\xf1\xc3\xbd\xf6\x07$\x1b\xa9\xae\xb8\xbe\xae\xae\xc5N\xc0\xa7\xeb\xaa\xda\x7f:\xd1\xff-?\xa9J\x07Y^\xffz\xa2\xb4l\x95d\x90\xab\xd5\xa4$0\xdeP4\x1d\xf6u\xe5!K{\xa2\xf8,\n-\x86]\xb2\xaf\xeb-\xcb\x11\xa8c_]\xa2H\x85?R]\xa56\xc1\xc7\xb6\xc9\xb7\xdb\xfcK\xf9\xd42w\xbf\x84\xd3M;\x029\xe5\xfb\"\x97\x9b\xe5\xba\x19\xa4\xda\xa6\xcb\xf2\xb0\x13kK\x89\xa3_\xc2\xf3\x0c~\xb8\xb88\x83\xef__\xd4\xa5}e_\xf5\x02\xbdU\x9b\x18\xae\x99\x7f\x1e\xaa\xf8\xc5\xed^\xfc\xf4\xe7\x9f\xd0\x87\x95-?\xa8\xb9\xaeuH\xdb{5\x0b\xfb\"_\x1fV\x02\x92\x0cDQ\xe4\x16\xf4\xf6/\xe1y{#\xb5TU\x8a\x13)\x1f\xbd\xb7\xae\x92\x95\xb4 y~s\xd8C}\x17\x01\xe4\xe6\xb6\x86<\xb3-tKW?~x\xab\xfau\x9d|Vj\xb5\xeb\xac\x85\xb5^\x0c\x89\x19\x86\xfc\xf7\xe7<]C\x92\xd9\xe2\xb6\xbaSj\xd9\x17b\x93\x17\xe2\xc4\xbc,y&U\xbaL\xb7iu\x0b\x99\x10\xebR\xfb \xa0LT\xf1\xd9\n\x98\xc93i\x0e\xb3+\xa1^P\xebn\x01\x0f>\x96\xc2\\\x96\x97R\x91j'\xed\x8c\xd6\xbb$K\xael#^\x16\"\xb9\x91\xb6\xa3f\xbax\x88k\xcb\xbb\xbc\x12Ou\x11\xf1\xcd![\xe9\x95\"\xfb^\xdb\x9b\xd5\xa1(DVmo;\xc1<\xc7\x8d\xe8|\xb3IWi\xb2u\xec#\xcb\xc3\x06\n!w\x07q\xa2\xee)\xa7\x95i\xec 'W\xb9?\xcd\xfaZ\x8a\xab4\xcbl\xbe\xae\xf4\xde,F\xffv/\x16Z\x9f\x93}Z.V\xf9\xcef1\xcf\xd5j+!\xaf\xae\xf5\"\xcf\x86\x96\x05\x1e\xd4.\x99\xd8\xed\xab\xdbzy>D\x99\xedT\xe4gi1$j\x80\xca\xe5Lw\xfb\xad\x90\x1b\x9dR~(\xf7b\x95n\xd2\x15\x94b\x97dU\xbaBpEj\xbd\x05\xb8\x14\x9c\xe3\x80\xc5\xe3\xf8Q\x9a\x8e\xa50\x15A:\x0e\xc3\xc870w\xcd\x97\xf9g\x8b\xb3\xa1\x87Z\xab\xf3p\x98\xbe\xde|z\x9e\xdd~j\x8f\x13I\x06I\xb1L\xabB.>G\xafj\x1b=b\x97l\xf3\xecJ\xcfH2\x9e2i5\x95\xd1\xd7\xbdZ\x8e\xdd\xa9n\x9b\xc6+B\xd4\xec\xcc(\xfe6]\xaa\xae\xd6v\xbd\x84\xf2\xb0\xdf\xe7\x85\xda9\xf7\xc9\xea\xe6\xd1!\x93\xff\x91\xfb\xa5\x9eo\xe5\x95\x0c\xd9)\x8f\x06u\x1e\xf2\x0d\x1c*m|\xccr.\xa5\xe1K\xd6\xebT\xafm\xb8\x12\x99(\x92JuX\x1e\x1d\x9a\xf2\x00\xcf\x11{\xa7\xa7h\xdc\xce\xeb\xaf\x89T`x\xfc\x14\xced\x7f\xe5:\xae\xbb\x9etk\xf6\xbd\xfc\xd5\xaf,\xdb\xd4\x9b<\x87M\x9e\xc33X,\x16\xff\x0b}D\n!\xc9n\xf1\x1f\x93\xecv!\x9b~S\xe4\xbb\x07\x9b<\x7f\x88?\xb6X\xe0{O\xba\x81\x07\x92\xc5G\xd5\xe9\x8b\xfc\xc1\xbfH\x1e\x0f\xe1o\x16{j\xe3\xf3w\xbbl\x9exd\xf3\x87\xe4s2Y8\xf0L\xf9V\x92\xfb\x04)\xa4\xe5\x837y\xbeXm\x93\xb2t\x08AwI\xbe\xa0\xc7\xd3y o\x17\x91N#\x9e\xdfx\xc4sv[]\xe7\x99E@\xba'o\xf2\xfc\xc1b\xb1\xc0-q#\x9c\x07\xd6\xdf\x95\x02)\xb1q\xa5&_>\xd5B{\xf5\xfa\xfc\xe5\x87\xd3\xb3\x8b\xf7\x1f\x1e\xdab6\xad\xa2\xd9\x1b\xd3\xcd\xd9\xc5\xf5[\x8f\xb8\xbe\xcf-\x15=\xa4\xa8\x9e>\x83\x7f\xd9/\x17o\xf2\xfco\x8b\xc5\xe2\xef\xf8\x83Iv{\"\xdd5\xf9\xf4^; ?&Ey\x9dl\xa5\x10\xed\x1d\xb7\x89i\xd8\xb2\xa5\xd9t3h\xf4c\xb6k\x9bU\x9dR\x8a\xad\x9e\xfa\x1f\xcf K\xb7V\x05\xb5\xf7\x05\xd1DyhSr4v\xd08\xdb\xb0\xbcm]\x15c\xb1\xf5\x879nM\x00t\xc4\xedP\"{\xfe}\xc4\x0dy$\xcf\xa2\x0b\xf5\x83t\xe5\xeeC\xd2\xd9U\xe4\x8eS\xd7n\x19\xb7\xa0f}\xdcHc\xc6\xb3\xed\xad97\x8d\x0e\xbc\x8d\xeb\x08\xc9\xa6\x12\xda\x9b\x91\xe7\xedq\x97\x1f\xdd\x1f7Q\x1f\xe8L\x17\xf5 N\xd4\x9ayo\x93\xe7\x8beR\xa8\xc1}}t\xbb\xf8\xeb=--}\xd6\xc0\x8fU\xaa+\xf7\xe4\xb3r{\x19\xfd\xfc\x87\xf3\xf7\xef\xc6\x7f}\xf6\xec\xd93|\x1e\xe5\xf3m\x1c@\xfbT\xb9\\\xa6\xb5\xc3\xa0\xcf*\x87R\x98\x80\xdb\xd5a\x9b \xb5\xed\xc6,\xe4\xe3k\xd1n\xf3' vK\xb1^\xb7\x1b~\x1dDL\x90\xe8Ag\xdb\xd5\xd1\xc3O\xff.\xc5\xf1\xa9>\xe4\xf6\xa2\xa2F\xb8\x0b\xb3\xe4\x9fZ\x9c\xe8du#\xd7|{X\xdb\xa4[\x81\xdb_c\x1f\xceDQ\xe6\x99u\xd9\xd4\x11\x1c\xf5\x9d\x97K53\xcf\xe01\xce\xb1yX\xa52\xebg\x9f\xd0\xad?\x80\xb5\x17\xf7\x94l\xee=\x85{\xd8\xaa\xe9\x0fw\xa1Gt\x0f\xfb\xa2\x92\xe2\xa5\xc6\xf2.\xd9I~\xff[w\xf9\xdf\xac\x0f\xcb\xb1\x0c\x9e\xa5\x0e\xe8tS\x1f\x0c\xfa:\xa1g3-\xe1\x8b\xd8n\xbf\xbb\xc9\xf2/\x99Z\xd7\xd7\xea#O\xabCY\xe5;\x8b\x92\xf7U\xf0D;\xa0\x03\xbd4_ j\x9a\x95\x8a\x96]!\xe7z\xa5v\xe3F>\xa9\x05a\xf4\xf0:\xdf\xae\xeb\xdaYm\xcfT\x04\xab\xd6_\xa8\xa3E\xb5\xfa\x8e\xf9\xa9f\x1a\xcd\x85\x07\xd2>\x18Q\x8c\xc2\n&r\xf6\xd3\x9f\x7fzhQ\xf2\xa9:\xd2o\xc8\xae&J\x0c\x92\xdd\xe3\xc5\x93\xc7O\xca{\x96i\xef\xfe\x9f\x0b_\xe18\x89\xd9\x13\xb6^\xf0H\x00\xd7\xde1\xaa \xf8\x9b|C\xd5M34!\xf9\xefJ\xd1\xa4v\xf6\xc9U\x9a)\xd9\xb5\x9d\xe9\xf1l\x1fh`?I\xd6\xfd\xabaor\x1b\xed\xbe\\aAu<\x9c\xae\xaa\x8a\x8c\xe2\xf2VyXO\xba\xf6\xfc\x10tZ1\xe2\x91\xff\xac\x836IY\xeah\xd4Yr%>\x88\xbf\x1cDY-\xf4\xef\x03&\x7f9\x88\xe2V\xbd.\xd9II\x08\xd8\xe5e\x05B\x85DT\x0ce\x01\xa7Ug\xed\xee\xab[H\x878\x93\xaa\xf9bW\x96\xc3./\x84\x89}u\x1d\x1b\x04B\xe0\x15\nR\x92\xcf\x06\xf3R\xec\x954\xd4?\xb2\xc3n\xa9O\xf6&\x0c\xd7\x89\x05\x0d\xfb\xdf\x15\xd4*?d\xd5\xa5b2\\\xe6_\x92\x12JQ\x9d@Z\x95&\x92X\xc2!\xd3\xca\xb4\xd6\xc1\x98/i\x0d\x19\xc3\xe7\xcf\x99\xd1r\xe6\xd6j\x06M\x86\xad\xcb\xe0\xc5\xad\xfe\xc4\x1a|8{\xc9\xca\xae\xbd\xcb\xd7\xe24\xdb\xe4\xec\x9cZ\xedR^f\xf9Z\\\xa6\xd9&\x1f\xe6\xc6Hk\xc5\x84<.\xd1\xe2\x9a(#;3\xf5\xcb\x13$\xdd\xed\x8c59T\xcdZ\x1f3\x9c!Z\xd12\x8c]\x7f\x06\xd6\xa4\x95\xb5M\xcbJd\n}@z>\x13\xd5\x97\xbc\xb8!=\xeb\x98\xc2\xd1\xb3\xab\xeb$\xcb\xc4\xb6$=l\xb5\x91\xbb\x11{\xd03\\\xc8\xbc1\xc3\x85f\xb8\xd0\x0c\x17\x82\x19.4\xc3\x85f\xb8\xd0\x0c\x17\xd24\xc3\x85f\xb8\x90\x92\xd4\x0c\x17\xea\xd2\x0c\x17\x1a\x11\x1d\x113\xc3\x85\xb0Gf\xb8\xd0\x0c\x17\x9a\xe1BC\x9a\xe1B3\\h\x86\x0b54\xc3\x85f\xb8\xd0\x0c\x17\x9a\xe1B3\\h\x86\x0b\xfdS\xc2\x85\\9\xad;\x06\x0c\xfd\xd0)23R\xf1\xb1z\x8f\xc1\x0b\x9eo\xe22\x96\x0d\x82\xcc\xe1\xab\xc7\x08\x8d\xc3ea\x0f\xe5\xd0\xbe\xf3\n\xd4\xef\xb7Z\xbe\xd0J\xfd\x06+\xfam\xd5\xbe \xf0\xaf\xac\xfa\xbe\xa3:\xfeR*\"\xc2\xe0Tj\xff\x9b\xa4\xce\xd7\x86\x15J,_\x0eeh\xd8\xb8\x12\x91W;\x06F\xd9Y\x9c \xed \xb8\xd1Gx\x11&\xcd\x89P\xecj\x84F\xc3\x8b-9\xf6b\xc7\xfe\xe3,\xaa\x84\x16S\xb2\x7f;\xd29\xd3\xbd\x96\xfd_xD\xbe\xe1Heo\xfd4 \x95\xc1\xb0\x7f\xde\x8f\x1c\xf6\xea\xfc\xbb?OH\xed\x83\xed#\x82\xd4\xf7\xc7\x9f\xfa\xa3\xbe\xe9\xf8 \x1f\x95\x85\xe5\xb3y\xd4\xd7\xdd\x1f\xb7\xdb[?_\x87\xf2\xb7\xdb\xfa!#\xb3+\xe7E*}\xc5\xda0\xc3\xb0L\xcfI\xdd\xe5J\x1en\xba\xc9\xd4\x04^\xf4k\xf4t~;\xcd\xe0\xa2\xd9\x98OtV\xcb\x1c\xc4>\xc9\xa1\x97\x9fN`y\xa8L<\xe3\xfc\xd5\x1fO\xe0\x8b0%\x80t\x06\xdb\xdeV\xb7)\xb97-EU\x89\x02>\xfe'\x02k\xf2\x7f0\xaf\xedi-\x82\xf6\xbbx\x1eOCc\xc3\xc8\x9eF\x1f_\x87N\x9f\x15Kg\x81X:_\xef\xa3\xe5z\x189\xd7\xdb=<\x1c\x07\x05\xe7\x91\xd6Y\x91\xe7\x9b\xf7{\xb2\xb8\xd4#\xae\x1e\xf7\xce#\xd4\xd5&--\xf7-|Q\xd5\xe3\xe9\x1e\xbb\xe4\x10\xf4\xa9\xab\xc9\xa0\xae\x92\xed\xea\xb0MT%\xcb\x1fEq\xb3\x15P\xe4y\xa5\xa1*\x9d\x1d`\x95\x1f\xda\xf8\xc0Rt\xb2i&\x9d\xaf\xa3\xa2\x92O&\xcaR\xac\xe4o\xca\x83\xea\xc6\x003\xe9\xc5,\xf3Cg@Y\xben\xe2~\xd2B\xb5i$\x9ds\xbe\xe8\xae\xce\x04\xd6\x07\xede5\x9953Nu\x9a\xd7\x0f\x9a\xc3A\x0b\xd4i\x17\x11a\xdd\xd4\x1cK\xb2*\xe4\xfb#\xc3\xd4\xfa\xba\xd6e\x81x\x18V|\x9a320>\x0b\xf741\x94\x8f+O;]CG\x1d\xee\xeb\xa9\xa6`m\xedq\xe9jnOg5\xf55WSD\xfd\xd5\xd4\xd7b\xdbq\xd7\xa8\xafl\xaf\x16\xd8^\xfe\xa9a\xbb\xd4\xf1\x87mZ*\xcc\x95y~\x11\xb4\xeeJK\xc7\xb1\x1e{\xd6]s\xb6&/<\x8a\xd31\x82l\xa2k\x0f_y\x15\n\xd0\xb4\xae\x027(!\"\x1c\xd3\x0e\xc4\x8c\x07\xc1\x8c\x06\xbe\xb4\xc2.\xb1\xfc\x13\x11p\x19\x0bj\xe9\x06Y\x06\xc1+\x83\x81\x95j\xbcC<\xa0\x15R\x19\x0c\xa6\xd4\xb1\xfc\x017\x0b\x8cr\n\x80R\x81%\x87\xa3Ar|!\xa0I;@r\"4\x92\x04\x8a\xa4\x03 '@\x1f'\x80\x1e\x11\x83\x11\x11\xda\x18\x17\xd4\x18\x0d\xce\xe8\x072F\x830\xda\xc0\x8bS`\x8b(D\xb1\xa2\x80\x13Ca\x89V\x08b \xf8\x10\x81\x1dZ7JZ\x02f\xb4\x83\x06\xc2\x0b[(!&\xdf_\xf8\xdb\x9e\x06&\xd4\xe0\xc1\x0e\xbb1\x8c0\x02\x80p\x1atp\xa0\xe5\xc3\xcdp\"\\\xb0\x16t\x97\xe3\x14`\xa0\x13\xf5f\x01\x03za\x80cD\x10\x1d\xfa7~\xf7\xef\xd8X\x83\x80~\x94\xc1\xfa\xc0}\xf6\xb1y\x01}\x0c(_\x1f\xf50\x11\xbe\xe7\x04\xee\xd9!{.\xb0\x1e*\x05*@\xcf\x07\xcd\x1b\x82\xf2&\xc0\xf1\x08@<>\x04\x0f\x01\xbc\xf9`w\x91\x00wH\xcb=M\x99\x04\xaf\x1b\xc2\xe9\xa6\x00\xe9\x10\xe0\xdc$\xc8\xdc\x10\"\x17\x13\x1cg\x85\xc5\x0d\xb1BC(\\\x1c\x10\\4\xf8[\\\xe0\x1b\x0d\xf2\xe6\x05\xbb\xd5\xa7d\x1f\xcc\xad~\xcc p\x1b!\xc1\xc6\xadQ\xa1Jn8\x1b\x11\xc8F\x80\xb0\xf5\xba\x1c\x13\xb66 \xb06\x06\xa8\xc5\x83\xa6\xc5\x03\xa5\x85\xcf\xae\x17\x88\xe6\x83\xa0\x19\xf3\x8d\xc3\xcePO\x1c\xcbj;@fD\x1eS e\xbe\x00a\x9b\xcf!\x87\x08\xfb59\x901\x8c\x0bw \x0fQ\xf2[X\xa1\x0e\xe41\xac@\x07\xc6\x0d)\xcca\xe5\xd6/\xc8Q\x1d!\x03\x81\x15\xdf\xb0\x1e\xef\xbcE7,\x057\xc8\x0c\xb1B\x1bH\x91\x0d??\xa4\xb8\x06'\xa5\x08\x9e\xa2\x1ah\x07(\xc54b\x16\xd2\xe8,\xa4Uq\xbb\xaf\xf2E\xf3\xe5F\xf2*\x1a}1\xd3i\x0c:\xc7z\xe4\xeb\x96\xb4W\x0d\x14\x86\xf1\x91I\xe4\x13\x92\x9d\xb1\xef\x9f\xec\x17\xaf\xb4\xd7h\xa4E\x1e\xbe\xbd\xc4\x16\xba\x8c,u\xba\x86e\xb5\xac\xeai\xc5\xda}\x0b\x80=k\xc9,\x84\x0dZ*\x0bynT\"+\xd0\x04\x8fKb\xd1\x94\x0d)\x83\x85\xbc8(\x7f\xc5\x98z\xbc\xe4\x95E\xee\xd6RW\x83\xe7\xdd\xba\xfd\xbe\xed,A\xc1\xc7\x1dD:\x87v\xcc\xdd\xa9\xb3z\xe1\xfc\xa9;y\x84\xfe\xf4\xd6\x8as\x0e{\xba9X\x1f\xf4\x17{k\x82\xf6Zg\xa4\x95:\x1e\xbfh\x1b'\x8cp\x08gdh\x13^\xbb\xc9\x03\x0b\xb6\xb6\x01N\xb8\xe4\xb7\\\xbc\xcf\x17.\x9e\n\x1f\x1e\xb0S\xd9:\x1cB\x0c\x11a\xc4\xe0\x82\x12\x03\x01N\x0c(\xa4\x18\xecb\xc6>(\xeb\xdd\x13\x86\x93\xd1\x87\x19\x93X`\x1fD\xb4@\x8e!L{cbs \xdf\x89\xb5\xf6\x10\x9c\xbdT\xaf\xda\xbf\x0d\xab\xb9\xba\xbe\x0bk\x9b\x13C\xc7\xfat\xae\xf7\x1b\xb0\xd6\xef\xbf\xdaa\xcb@\xd1\x1c\x1bp\xda\x01a\x06\x1c\xc6\x0c\x01\xcdY\xe1\xc4!\xcc\xa6\xc1\x9b\xc1\x0bq\x86\x80>\xd9\xe0\xce!\xbc\xc6\xd0\xe7\x10.\x0e\x18t\x08;\x0b$:\x84\x95\x1b\x1e\x0dN\x884\xb0\xdbcb\x87\x87\x80a\xb0 LInG\xf5\x15\xed:\xab\xe8'ji\x02\xb3\xc1\x17_\xeb\x8ac&h\xa8vM\x9d7\xd0{\xe4\xbfk\x01,\xf45\xad_=\x1ee\x99\xde\xbd\xbfx\xfdT\x03z\xb6[9@hn\xd5\xa9\x05\xb5\x00\xf8\x0fq\xbf\x10\xf0_\x87\xb2\x82\xe4\xaa\x10Bn\xf0(\xc4\"/\xe4d\xa80\xec\xa8\x1d\x05\xbe\xda\x89$\xab{\xac\xbb\xf5|\xbf\xff!)\xafa\x9d\x0b\x0d\x10\xa8\xbf\xb9+\x99\x97Bv\xa7s\x19R+\xd9+\x8dq\xecD\xc5\xf57\xeb\xb5;\x90\xd4\x99\xd9\xee\xb7{\x1b\xaf\xa5feT?H\x05\xc6/C\x98\x1e\xb0K%6\xf0\xc3\xcb\xcfy%.\xf1\x8ehr\xee\xc2\xbe}X\x05P\xc5\xe5\x08\xf9j\xc8\xc3\x1c\x08\x0d\x80ac\xfd\x95\xb0/kr\x7fj\x1c\xd4\x07\xbe\xcfO\xbf\x7f\xf7\xfa\xd5\xe5\x8f\xe7\xdf_^\xfc\xdf\xb3\xd7\xde\x0f\x8e\xe3o\x9d}x\xfd\xa7\xf7\x17\xaf\xf9oy>@n{\xef\xfd\xd9\xfb\xf3\xe7\xb6o\x91C\x1b\x86x\x1a0>_\xed\xa8.\x9d\xa7W\x99X\xffX^]4H\xd8\xaaFe\x94\xea\xa7n2\xd7^XNS\xb3EX\xaa\xd54d\x95\xffS\xf5qn\xbch\xa0\xf3m-\xcf\xa7p\xa66\xa3dkg\x81\x9d\x06\xfaDTN\x9fW\xaa\xa9\xc8\x0f\xd9\xda\xdf\x9a\xcb\xfd\xd5\xd4i\xee7O\xac\xcf\xe1G\x8b>\x11\xd68\x10\xd798\xbd\xef\x96\x88\"\x05\x9fG\xde%\xefq\xa5O\xc4Q\x03c\xe4\x92\x1c\x07\x9b\xc1\x83\xc4y6DS/C\x94I\x00\xdeD\x00g2\x08\x87%\xf4\xf1\xf1\xd1i\xf8\xd8N\x94U\xb2C\x82*\x9d\x87h\x83r\x9d\xcb\xfb\xd4\x9c6\xec5\xf9[b\xb6\xee\x14e\xdb\xb0\xe5\x13\x02-Q\xf5\x89f7\xa4\xb1O\xa4c\xedo2\xc6H\xa9[\x94\xdc\x0d\xda\x1c\xba\xdc\x9d\xe4\x111\xaf\xc4I\x0d\xef\xdd\xa5\x1an\xac\xff\xa9\x9c\x1b+3u\xccl\x0f\x92\xb2\x9f\xf6}\xaa\xb3\x97a?+/j9{Q\xb3\x17\x05\xb3\x17\x85\x12Q9i\xdb\xdc\xecE\x01]\xa4@\xb3\xc1\x9af/\xaaC\x94I\x00\xdeD\x00g2f/\x8a\xda\xfa\xecE1\xb6\xa8o\xd6\x8bR\xcb\xfe\xd2UI\xaey\xd2/4\xffRo\xf5\xe2\xf8my\x97\x1c\xa3\x15\xd7R\xa3\xe8\xc0+\x13\\\x94\x8a\xf0\xba\x0e-\xb6aV\x13l\xd41\xf5FH(\xab\xda\x9d\xa9\xbe\xe4\xf2\xfd\xcd6]\xa9\x8b\xebRc\x909\xdeJ'\xe1r\xb5MEV]&U\x95\xacn\x8e\x19\xda\xec\xf4\xe8\xd2\x92\xd8\xd7D\xd8\xc5|mA#\x0c\xc2\xceIh\x0f\x88m\x02\x82\xad\xc0\x89\xd8(0\x1a\x06\xf7\xc7\xc4\x86D\xc1lX\xde\xa4\xf7\x1d\x98\xfd\x07;\xea\x03'\xc2B\x1d\x92Y\xb8(B\x04'\x147\x82\xd3]t\x88bV\x86D\xc7\xa3\x90\xd8YK\xde\xb9P*8q\xb0+$\x86C|\x8b\x1b\xd1\x82\x13\x05\xe7\x82\x13\x8e~\xc1\x89\xa5,\xfeS\x9d!\x16[\xca~\xd9\xa51\xd6\xc6\xf2\\X'\xfc\x9e\xab!\x07Z\x07\xa7#\xdb-\xea\xf9\x04\xf8\xc2\x01\x9a\xcb\xd9'\xe6\xe1\xd1\x10SJ\x10 )\xe0\x1c*\x0dQ\x0f\x03C\xe2i\xb7!\xcedB\xd8\x84B\xc8\xa4\xb2\x0f\xa1\x83\xd7|\x87QCn\x8c\x14NL\x190\xc7NCY\xe1d\xc1^\xe1t\xcca8\x91R8\x1d\xb3;`\xad\xae\x8c\x13\x15&Fb6\x84\x92\xe1\xe4\x07\x98\xe1tL\xb1\xb9 j8\x1d\xb378\xc8\x0d\xa7c\xf6\xc3\x03\x93\xc3\xe9\x98\x1dr\x00\xedp:fg\xfcP=\x9c\xdc\x00>\x9c\x8e7\x8e\x08\x10@\x9c\xb0\x8f\x8c\x8f\x89\xe1\x9bp|\x92o\xc4\xb3\xf6\xe6Q\x0cq]!Z|\xd4\xd0\xecR[iv\xa9\x15\xf1\xd4\xda\x10g2!lB!dR\xef\xca\xa5n\xf2\x0f\xa4)\xd5\xa3\x1f\xe3ZqB\xd1\xae8\xb1\x95\x91\xaf\x8a\xc6\x82\\n\xb6\xc9\x15\xf5\xa5\xc0 \xf7\xe3'\xfa\xf4\x1d\xbcx\xfb\xfe\xe5\x1f/O_]\xbey\xfb\xfc{\x02\xd6`HC\x0e\xcf_\x9c\xbf~\xe7\x86G\xf4i\xc8\x80\x80\xaf\xe8\xd3\x90\xc1\xbbS\x17\xcc\xa2O\x0d\xe8b\x9a\x18x\xe7\x06Mz\xa1\xac\xdfl\x93+H\xb3\xb5Jz\xd4\x15!\xe1\xc5v\x95\xdf\x9c\xbe\xf2\xe2/\xfa\xd4,)H\xe9\xa1Kf\xee\xb3OA:\x1ad\x92\x08I\xe1>M\xea\x1a=\xec\xa6\x89\x94L\xed\xd3\xa4\xfe\x91E\x17\x12\x1b\x07x\xa9\xdc\xcf\xf3\xf4J\xe3\x83\xe4>o\x82\xc7*?k.5\x10\xd9\xa5\x19$5O_\xc0\x98\xdb_\xcd\xb5\x7f\x0d\xa3\xc9\x11\xaa\xfb\x1d\xc6\xed\xfeb\xf9\xbe{\x97\xb4\xdb]\xe9{+\x89\xb9\xcf\xd1\x1e\xb7\xed\xbdo\xd7P)\x08P#\xef~C\xdde\xda\xbe\xf94\x8f\xbe\x83\x12wO\xe2H4Q\xc7\xa3\x89e\x87\xd8\x0b\x89\xb9\x88FE\xab]\xc4\x12\n\xb0\x05\x03X\xfd\x0f\x1f\xb1\x05\x04|!\x01^_\xc4Gw\xd35\xee\xeeL-tBd\x87\x97C\xf1\x11\x05i\xd2'\xb60\xb9\x07\x97\xbd\xef\xab\x878\x1d\xb1_\xa6G\xbe\x8e0\x96%gA2\xec\x14S\x08,\x1dgX(\x86 \x80)\x0c\xe0\xdb&\xa6P\x80+\x18\x08\xb1J\xc7\xef\x14\xcf\x1eQ\xad\x91\xaa\xbf\xe9c\x06\xa6\xe61\xc3\x16q-\x11S\x80\xf4\xd5\x0e\xa16\xe8h=\xa2\x83\x02\x9b7\xe8]\xf1wC\xfa\xabyv\xe9\x0e\xd8\x12Z\xf4\xb7\xb4\xbc\xfdk\x92Ui&.\xfd\x1e\xa7\xdf\xd3\xf4x\x98$#E3M$\x0bM\x90\x90&\xe2:'\xd9c\xd2 \x81h\xe0\xd9\xda\xe3t\x81jY96U\x7f\x0e\xc0\xcd\x8fdM\xe9f\x82,\x1c\xff\xc2\xd5\xc4\xb4\x9a\x11\xdb\xa7[HB\xa3\x84\xe6|\x81\"F+S\xa1\xcco\xa5U~\xa9\x00\xc5\xcf\x15\x9e\xd8\x07g\xd6\xf1\x06\x94W\x07\xc4\x9eT\x95\xd8\xed\x15\x94\xb9\xcaa\x97\x96[\x91\xac!\xd1\x00f\xd0\x00f\x13\xa8\xe8\xe0VZ\x81\xa0\x96\x07\xb72Q\xcaQ!\x89<\xcd\x03K\xb5\xd8\x92ss\x1d\xaa\xdeOV\xf9\x19\xf2-\x95o\xaf\x0e\x95-!ds'b\x964\xf1\xa6h\xe5y?q\xc1\xd8\xc0\xb1\x8fX\x04X\xd7\xb1\x1f\x00>\x93b\xcbJS}\x02\xfcY{\xe1d\xbao`{\xdaR$\x99\xe5#\x80\xd7O\x80\xc8\xbe\x02\x04\xf8\x0b\xb6w|e\x8dmXO\xd26\x8bmY\x96k\xf6\xee}\xd0f\x7f\xc1ya~\xc2\x8e}\xacM\x95\xe0g\x80\xaf\xe7\xe0\xed=\xb8}\x0e\xf0\xca\xdb\x90\xcf\xf7\x00\xef\xc5r\xaf\xb8\xc0/2\x82/\x02.\x7f\x04\xec> \xf8\xba\xe8\xce\x98x\xfd\x13\xa0\xf2G\x86\xee-\xd5\x1b\xbef\x1c\xe8\x91\xb0\xde\xba\xf1\x89\xc1~\x8cM\"hi]\xb4\xa0.\xf61\x82y7\x9cw\xc3y7\xec\xd1\xbc\x1b\xce\xbba\xfd\x13E\x95\xe7\xdd\x10~\x96\xbb\xa1\xefv\x84u\xb86\xd5w\x96\x8dgs\x8b\x178\xb2\xcf@\xacH\x00\xd8\xa2\x01@.\xee\x8e\xda5\xdc\x96y\xca\xb7\x07x4\x9e\x02\xedSv\x8b\xe3\x9aro\x91uniuo\x9f\x80\xd4/\xa0\x15O'm\x01\xd0Qno]roy\xf4\xd8MR.#i\xa2\x97=\x87\xb6\xa4\xb9k\xa8A\xc5\xce9%\xce\xdb\xf2\xe5\x0e\x86\xdc\xc2\xe6\xdcr\xe6\xfe\"\xe6\x84)\xf5\x95U$\xb0\xa0\xb9<\xee\x92\xe4\xacf|u\x90\x88E\xc7#\xaeh\x7f\xd9<\xd2\x00\x81\xe2\xd7i\"\xb9\xc4\x86H#\x05\xf2h\xc1\xef*7\x8f\x91\\fC\x14=2\xe4\x179p\xc4\x0et\xd1\x13]\xeb\xc1\xc3\xee\n\x84\xf4R\xde\xa4\x11\x91F\xc2/\xd6M(\xd1\x1d\xab{\xe4j\xd2\xb1\x1a\x1c\xca\xc3[?\xdbY\x1b\x9bW\x11;\xd6\x18\xa85\xafc\xb5\xe7\xafj\x1d\xab%F\xdd\xeaXM\x12+S\xc7j\x0eX\xb5\xa7\xf7\xe4\x8a\xd3q\xfa\x17\xb9\xa6\xb4\xab\x92\xb4w\xb3\xf2oRw\xe6\xd4x\xaaA\xd3v?W\xd0\xc1\xd0\xec\xcd\xb4D\x1a)\x90G\x0b\xb37\x13\xdb\x9b\xa1TQ\xd6cqW~\xf4\xd6|$\xaa\x02U\x11\xbc\x17\xee\xbb\xc4\x98\x0cZ\xfdc\xff\xcd\x1e\xda{\xc4Z\xc7\xde[@\xb4\xd7\xfcu\x8d\x897\x86p\xa2\xd6\xce\x89W\xb9\xd8[\x13\xa0K\x84Pv\x9f\x18Z\xc3X\xc0\xc4:\xc4\x01\x8d\xfb\xce\xda\x9a\xc8\x95\x86\x03z\xe0\x19>=\xccD\xaf \xacna\x118\xe1\x91\x19Z\x8f\xc2\xaf'Z\x18\x12*\x03{\xea\x01;\xad\xa9\xdb\x86\xfa\xea\xaf\xf9\xac\xbd\xd3\xd2\x13\xac<\xc5\xc2\x13V(Q=I\xaaI\xa8\xb7F\x18\x18\x10\x07\x07\xf4Jk\xc4A\x02u\xa0\xc0\xa9\xb1\x16\xbfq\xda\x0e\x11\xb7\xb6\x1a\xa1\xb2\x1a\xa5\xb8\x18\xd0\x05Bs&\xf7\x9c\x8aj\x91Z\xde;\xab\xddzU\xdc\xaf\xdc\xdeuK\x1a\x08A\x9b\xbc+\xd6;\x18 \x0d\x08\xa8k\x9540\xa0\x0d\x0e\xe8\xab4n\xb3\x94\xf5\x19suz\xd7&me\x92\x84\xe0[\x1b\xc0[\x93Q\xda\xf4e\xef\x9b\xe7|\x8d\xd9\x1ar\xd4w\xb5\xf2\xb4\xf1\xf2Wp\xb5y\x0e1\x0b\xad\x1d\xa9\xb6\x97\xc3\x9ex,\x89\xcf\x86x\xac\x87wj K\xd7k+\xa67b\x02\x0f\xdc\xc5\xefZ\xe2>\xbd'\xce'\xbe\xb8HK9\xb0\x05\xdf\xb2e/\xad\xbb\x80\xc9\x04\x16\x13\xc5/\x1eQK\x88Z/\xd2\xbcMKz\x11-\x1b\xd0\x86T c\xb4pm\x0b\xd6{e\xc7\xc9\xd5\xc5\x19,\x97x4M\xb4/\xea\xf5\xf0u\xef\x8ewq\xa0\xcd\xb67\xec\x00g\xc7\x1b\x9e\x08\x17\x03\xec\xac\x89\x0dy6\xafQ\xe2\x03|\xf8\xb3\x95\x91\x07\x16\xad)\x04\x1cm\x7f\xd3\x07\x91\xd6t\x07%\xe2\x9d\x19\x1a\xdd\x82;\x9e\xef\xcf\xce\xf8r3\x84S\x83o=\x02!E@\x10\x17\xf8\xf7dM\x8c|\x0cat@\x1c!\x001\x13C\x997C~\x151\xe4\x130\xd0\x85\x0cTA\xb3\xb2/\x84\xdc\x8b7\x14L\x18\x00-\xf4K\x8e|3Z\xb4\x8a\xca\x0b\xeb\xd6D\xd1\x0b\xffz\xf6\x06\xb3\xa7\x8f\x88\xb2\x05\xc4\x02\x80kr\xc3\xc05\xa1`\xf0\xfau\xe4\x82\x94\xa6\xd9\xd3\x98=\x8d\x86fO\xe3\xa8\x96i\xf64fO\x03!\x92\xa0gO\x03(\xa2\x9a=\x8d\x7f\xb0\xa7\xe1\x8b\x83\xd5O\xb9\x05\xe3^\x8a\xce\xebh\x9a&\xf1?\xe67\x1d|\xf39\xe9\xe2\xdax$_r\xfb\xf55M\xb4Kl5\xbb\xb00\x97\xe7Z\x9b\xa6\x89~\xa8\xe7\xa2\x9b&\xc2\x0e\xe4k\x07\xbc\xd8\x18\x19\x86\x88p\xb8\x93\xa3R\xc6V`\x1f\xab\xe5|m\xb8\xbc,H+\x86\x86\x8dS+^\xed\x18\xec\n\xce\x0c\x96ug\xb5\xef\xa6\x96\xfc\x93\xe6D\xf8\xaa\xcb\xc8\xb2\xe1\xd9#\xa7A\xb3n\x80\xce\xdc\x0f\x9a\xe5\xb1c~\x9c3\xddk\xd9\x8f\xd8A\xb09T\xf6V\xf4 \x95\xc14\\\x8c\x1b\x01C\xed\x83\x0d\xbfB}\x7f\x8c>\xa1\xbe\xe9\xc0\x8ePYX\x90\x1f\xd4\xd7\xdd\xb8\x0d;B\x83\xc6\x7f\"\xbeb\xb4\xbb\xaa\x9d\xfeE\xbb\xaf\x11vX\x0bp\x9fc\xe5\xe2\x98&+\xc8\xde\xb7\xe57\xcf\xb9\x0e\x1a\xee\x03\x86\x03,\xefu/\xad\xae\x81!+\x04~*k\x9f\xdf7\xd1\x85@\xf8\xd1\xc0\xeb\xb1\\\nC^\x80\xba\xcf\xc50d\x07\xa1;\xa6\"\xfa\xd7\x08q\xf88\x89\x9d\xed\x04\xe0\x01\x85OX\x19vt\x08Y{-\x07]\x128\xc7\xd9s\xf0\xf6\x1e\xec.O\xf3\xb3\xd3\xf51D9\xb3\xba\x814^q\x81_dDx\x8c\x13\x10\xe3\x87I\x934\x11\xed\xa1\xdf\x952\xe4\x80;\x876\xef\x05\xfa\x862\x9e\xe6\x82\x19\xa2\x81\x91C\xfb\xe8\x83\x18\x87\xf2\xb5\x03\x87C9\x12\xe0\xc0\xa1\xac= \xdfP\xb64\xe8\xae\x1f\xac\x1b\xd6\xfeD\x17\xd1\x10\x06\xba\x0dp\xd2\xa2o\x86\xf3\xa7y\xe7]pHw\xb0\x0b\xba\x80\xa0\xba\x8fx\xda\xc6\x9a\xb4\xf1L\x91o\x82H\x10N\x82\xf0|\xf5|x\x08E&\x14\x93 \xbe\xa4\xc3-\x83\x00\x96\xbd\xf9\xf7\"%i\x18H2\xea\x910U\x04-\xbf\xab\n!^\x84\"\xa3%\xcbpz\xdb\x18\x0bR\x88\x02\x06\xddG_\x16(\x10\x01\xfe\x0d\xd8\xa10@\x0b\xf0\x0f\xb5\x03\xf8\xea\x9f+6w\xdf\xf4\x18\xc8\xb9b\xf3?]\xc5f\x1c7\x16\xe0\x94F\xf6\xb8\x1dj<\xc1\x85t*\xb0W\xb3\x9d\xae\xb7,\xd2l-\xbe\x86\xe8\x18r\xcc\xa5\xb5\x8e/dul-\xc4\xbe\x10\xa5\xc8*u\xa8-\xc4\xe7\xbc\x12'\xf2\x1f\xfa\xa4y\x02yQ\x1f:\xe5\x8e tp\xbcS\x11\xbd\x8d&t\x96x\xcf\xca\xd6\xf9\xd3E\x93\x1f$\x1b[\xf4b\xb7e\xac\xbdte/\xebI}\x0d?\xa2O\xcdjv\xd2\x8dH63F\x16\x13\xcd^\xba\xb2\x96\xab\xbc\xdc\xe5\xe5b\x99\x94b\xf1\xf9\xf1RT\xc9\xe3\xc5+\xb1z\x99\xa7\x19yj\xd6\"\xcbwN\x19'\xbb\xfc\x90\xb9L0\xae\x94uG\x1a\xdf%\x81*\xbf\x11\x99vT\x12\xddn\x9a\xa9\xd1*\xa1\xc8?\xad\xd2]\xb2\xad\x1bl\xf6\x97wj\x17\xb9\xb8\x16\xf5\x0f\xb0I\xc5v\xad\xf6\xaaL\xb6R\x87\xc9\xd2\xdd~+vJ\xff\xd5\xbc\x1e\xca*\xdf\xc1NT\xd7\xf9z\xb8\xecJ(\xc4_\x0ei\xa1\xa3/W\xf9U\xbe/\xf2*\xef\xc8t\x9d\xca\x01.\x0f\xb2{\x1d\xd9n\xc5\x95\xeaq\xfd\xaf\xbc\xf8 \xbe$\xc5\x9a,m\x9e\xf9):\xcc\xdbG\xe2\x9e\x07\x07\xf3\xdf\xe5\x81X\xf3\xa1.8\x1f\xb7{\x1d\x11\xb5CS<\x1d\xd1D\xd1\x14\xbb\xe2[\xb4\xa4k\xa2uV\xd2LI\xfd\xa6\xca=\xad\xcdK\xf7K\xf3o)\x04\xad\x0b>\x0d=K\x8adG\xb7\xcbr?8diu{Y%\xa3\x8d\xac7\x9f\xd2\xc6\\6\xee?\xae\x98\xfd\x17\xf2\xecP\xb2\xde\x90S\xbf.\x92/ji\\\x8aL\x1eoFo,\xf3|+\x92l,~=\xf2~ROc\xaf\xf6\xfa\x17i\xd8\xe5_\xbbr\x83]\xbe>l\x85O\xaa\xff\xe7 \x8a\xdb\x97FVgy\xbe\xfd \xca\xbd\xdc8\xc8\x92\xde\xe7\xf9\x08\x7f5/\xe4oe!\x8f\x06)\xa7\xab\x19R\xb3J\xd4\x9f\xef\xcb?\xa4Y\x89\x98\x80\xc6\xd7\xb0+\x8c\x1c\x89\xda\xfe\xcd\xffK\x91\x1b\xdd\xec\xbe\xfd\xa8\xf7\xba\x11\xd2\x87\xb3\x97\xf5(I:\xdb\x9a\"m\x81J\xb6\xde\xeau{\xe4\x98\xe4\xac\xba\x11U\xb7\x9e\xb1\x9e%4\x7fKV\xab\xe2`RN\xed\xe6\xe2\xda\xcd\xdczDW\xe7\x11\x8bp]\xbe\x90G\xdaoZ\xa1\xbdYX\xabr\x0f\xf7\xc9\xee\xe3\xd8\xad7\xcb\x9d7K\x7f5\xb9\xf1\x12\xe8b\xd4d\xed\xb5&|a\x12^\xf5_f\x0c^\xaa\xd6n.~\x81\xd5L\x9a\xb2\x86\x11v\xf5\xaaF~\xa1/n\x9f\x0d\x0bu65\xd1\\N\xa4\x1fC3#\x8f\xbd>S\x937`*\x14\x8f\x1ew\x0d\xce\x9bJ\xc4ME\xcdW\xdf\xb9>\xec\x94\xf2\xf4\xa7\x9d\xb1\x93`V\xe6\xc9\xd7%;)\x08y\x8a)+\x10\x9bM\xbaJEVmo\x17p*\x15k\xbb\x95\xbc\xc5n_\xddB:,\xde^]\x8bB\xa8\x89\xcfr\xd8I\xc5\xab/fv\x95\x0f\x81ky\x85\x82\xacB[-\x1f\x1d\xc7\x91\xd2P\xff\xc8\x0e\xbb\xa5(\xa4\x02\xd7]\xe9\x00KG\xfd\xef\nj%\x15\xffR1\x19\xeeM_\x92\x12JQ\x9d@Z\x95R\x0f\x0f\xca\x06\x1f2\xadLk\xc8\xa5\x1c\xbe\xa4\xa5\x0b\xd0\xe4\xb4\xa2\x01&\xbd\xe6\xc0\xb0\xe3\xcd\xab\xcfW\xab\xc3N-\xfd\xf5\xcb\xc1\xd1\x82`\xc8\xb1\xd3\xc81l\xf9\x1c\xec\x0c\x0fv\xe2\x03t+@o\x1fj\x1f\xe8\xccw\xcdf\xe8\x04\xdd\x88}\x05\x89\x94Tq\xc82\xb9e\xa8\xa5$\x8a\x13X%\x99\xb4\x1e\x9d]\xa1\x82$\xbbU\x90G\xb2\xba\x8e\x9d\x17\xb2\xae\xdeIflV\xd4\xa3)j\xa8\x17\xdf\xf8\xee\x9a_\x14\xb7\x9d\xa4\xab\xad[G\xd6Q\xbb\xcf\x8a*\x05\xbaC\x8e=\xd4\xd1\xbb\x1eI\x07\xf9\xa3LO4\x92\x0f:\xdd\xfb\xac\xa7\xd2\xdcd\xed\x9ft\x9eo\xb7\xa6\x02\x16\xfb\x90#z\x9f\x8a\x82#\x19\x1c\xf9\xf8\xe5\xa1\x18A\xe0'\x04\x11\x9e\xc3\xc7\x0fo\x1f\x15\xa2\xcc\x0f\xc5J@\x96\xec\xea\xfb\xbd\x87,\xfd\xcbAloA\x0e\xacJ7i\xed;W\xf5\x8d\x8aq\xc1\"\x80R\x14i\xb2M\xff*\x90C\xbeZ\xfb\xab|\x0b\xcb\xc3f#\ns\x15c\xa1\x95C\xf7\x1dv\x87\xb2\xb9t,\xb7\x8c\xadH\xcaj\xcc+\xcf\x04\xdc{t\x0fV\xd7\x89\xd4\x7fQ,\x94\xfd\xda&e\x05\xa5\xb8\x92V\xca\x84\xe8?~x{\xbf\x84}R]+\xe6#V\x8d\xce\x8f[\x91\xafo\x0e\xdb\xed-\xfc\xe5\x90l\xa5\x04\xd6Z>5k%\x89\x07I i6~\xf9\x93l\xf2\xd1U\x9e_m\xc5B\x8d}y\xd8,^\x1d\n\xa5\xbb\x9f\x1e\xea\x1e+v\xe5u~\xd8\xae\xe5v)\x07=\xe2\xb4J\xb2-\x17\xab|\x87Y\xa9s\xb5\"J}\xd0\x96\x0b.\x1b\xaenxPg\x0eu\xa4B/\xa1\x87\xb0\x93\x0e\xca\x88\xdd\x12Y\xccj0\xcawn\\\\\xed;\x97{\xb1J7\xe9\nJ\xb1K\xb2*]\x95}UWk\x84\xb1\x15;n\xdd\xfav\xe9\x1f\xe52^\n\xe3\x96u6\xda\xd1\xbeZoN\xc92\xff\x8cl\xd0zH\xb5Jv\x87\xe3\xea\xc1\xa7\xe7\xd9\xed\xa7\xb6\x16H\x92AR,\xd3\xaa\x90\x8b\xc6\xd1\x13c\x07\x93m>\x90\x85>\xa9\xf4\xa7BZ+ePuO\x96cw\xa3\xdb\x96\xf1\x1e\x06*sf\x14w\x9b.U\xf7j;ZBy\xd8\xef\xf3B\xed@\xfbdu\xf3\xe8\x90\xc9\xff\xc8}G\xcfc\x89\xad\x92\xf1\x86\x9bo\xe0Pi\x03a\x96_ \x1aI\x91\xea\xb5\x08W\"\x13\x85:@\xeb\xc3Q\x83\x16x>\xb0Gz\n\xfa\xfc_\x7fM\xd4!\xe4\xf1S8\x93\xfd\x93\xeb\xae\xeej\xd2\xbd\xbd\xfa\xf2W\xbfB\xb6\x817y\x0e\x9b<\x87g\xb0X,\xfe\xd7\xe8g9\xd8$\xbb\x1d\xff\x90d\xb7\x0b\xd9\xdc\x9b\"\xdf=\xd8\xe4\xf9\xc3\xf1#\x8b\xc5\xd8\xce\xa7\x1bx _\xfd\xa8:x\x91?\xf8\x17\xf9\xeeC\xf8\x1bb\xdb\xb0\xf7\xff\x8e\x8f\xfd\x89g\xec\x7fH>'\xc1\x83\x87g\xca\xd7\x90\\\x03F\x9a\x96\x0f\xde\xe4\xf9b\xb5M\xca\xd22P\xdd\x05\xf9\xb0\xee{\xe7\x85q[\x03 4\"\xf8\x8dG\x04g\xb7\xd5u\x9e!B\xd0\xad\xbf\xc9\xf3\x07\x8b\xc5\xe2!6\xd1Z\x00\x0f\xd0\xdf\x94\x12(\xb1P\xa5\"_:\xd5By\xf5\xfa\xfc\xe5\x87\xd3\xb3\x8b\xf7\x1f\x1e\x0e\x8d\"\xd4\xec\xb5\xa2\xe0\x0d\xe8&pq\xfc\xd6#\x8e\xef\xf3\xb1$\x94(\x9e>\x83\x7f\xd9/\x17o\xf2\xfco\x8b\xc5\xe2\xef\xe3\x87\x92\xec\xf6D\xba1\xf2\xc9\xbd\xde\xbc\x7fL\x8a\xf2:\xd9J!\xe1\x1d\xc5D1l\x0di*\xdd\x0c\x1a\xfa\x98\xed\xda\xa6TG\x94B\xaa\xa7\xfe\xc73\xc8\xd2-\xaa`x\xfb\x03M\xbaPY\x8e\xd5Mc\x83\x8cC \xcb\xdbv{7VR\x07\xfbo\xcd\x1d|\xb9%\xf6\xd9\xddG\xb6\xebG\xf2l\xa4\xaa\x15,\xa4ks_\xfa\xb8\x8d\xc5\x96\xd6\xdc\xdc\x0e\xd53\xd6g\xd8\x98\xc6l{k\xfc\xf9\xd1a\xabq\x9b\xeaS}e\xcex\xf7\x1f\xdd\xef\xb3\xab\x0f\x14\xa6i}\x82\x10\xb5\xf6\xdc\xdb\xe4\xf9b\x99\x14\xaa\xd3_\x1f\xdd.\xfezO\x8fX\xfb\xc5c\x17_5yO>'\xcds\xef\xa7?\x9c\xbf\x7f\xd7\xff\xcb\xb3g\xcf\x9e\x8de/\x9fk\xcf\x96\xda\x9f\xc8\xe5r\xa97S\xed_\x1f\xca\xe6N\xc3\xd5a\x9b\x14}>\xe3\xd7+\x85\xdek\xb7\xc1\x13\x10\xbb\xa5X\xaf\xdb\x0d\xf1\xa4\xde[\x07'\xd2\xce\xf6\xa4\xa3{\x9f\xfe]\x0e\xfbS\x1dB\xe9\x95\xf92B\\\x98\xe5\xf7\x14q\x10\x93\xd5\x8d\\{\xed\x81b\x93n\xc5\xd8\xbe\x995z&\x8a2\xcfPu\xaeO\xfe\x9b\xb4(\xabK%\xf9g\xf0x\xcc\xa9yPU\x01\xad\x9f{\xe2\xb7\xa8\x00h\xab\xf7\xd4\xf8\xef=\x85{\x98f\xf7\x87\xb5\xd0\xbd\xbfw\x82\xf1Q\xfd~\x97\xec$\xaf\xff\xad\xbb\xf8o\xe8\x83\xb2\xdf\x83\xe7|\x9d?\xdd\xd4\x8em\x7f\x8e\xf5\x0c\xa5%|\x11\xdb\xedw7Y\xfeE\xc7y\xafU(\xbe\x0e\xcc\x8e\x15\xb5\xafN'\xda\xd9\x1a\xe8X\x9b\xf5\xab\x9b\x94\x8a\xa3n\x8e+\xb5\xe93\xfc\xa4\x94\xd8\xe8\xd0u\xbe]\xf7B\xc3j \xa4Y\xa3{PG\x12j\xd5\xeb\xf3R\xec\x1b\x8d\x83\x07r\xfd\x9a\xe1\x8e\x8e\xad&\x8a\xf2\xd3\x9f\x7fz\x88(\xe7\x94\xf9\xee7\x80O\xb9\x1a\xb6d\xf5x\xf1\xe4\xf1\x93\xf2\x1e2\x8d\xe6_=\xaf\xba\xa9\x9fW\x88\xeaPd\xfa\x9a\x81\xf9c9\xe7\xb4\xe7\x9c\xf6\xb7\x9e\xd3\xee\xdf E\xe2\xe5\x14lo\xe7\xb5\x9a\xdb\x87\xb3\x97\xa6\x93\xa3\x846\x1e\xaa\x8f\x1e\xa7'\xad\x89\n\x0d\xbf[\xa7\xdf}\xa8\x8f\x18x\xb7\x87\xdd\xe3\x05\xdd\xa3\x85\xdc\xad\x01\xf7 \xe1\xf6X\xc1vw\xa8=(\xd0\x1e7\xccn\x0d\xb2\xc7\x0d\xb1[\x02\xec\x13\xc3\xeb#q\x8f=\xef\xd8\xa1\xf5\x89\x81\xf5\xc8a\xf5 A\xf5\xd8!\xf5h\x01\xf5\xb8\xe1\xf4h\xc1t\x7f(=Z \xdd\x16F\x9f\x12DG\x83\xe6\x88\xe7:\xb67\xd3\x02\xe6H\x80<0<\x8e\x04\xc7\xbd~\x92\xdby\x1c\xed\xa0\x81A\xf16\x08\x8e\xc9\xf7\x17\xfe\xb6#\x87\xc3\xc7\xc1\xf0\x08\xa1\xf0\xa8\x81\xf0\xe1f81\x08\x8e\x04\xbe\xa7\x84\xbd\x9dq_K\xc8\xdb\x1b\xf0\x1e\xc7\xd8\xe8\xc1\xee\xf1\xbb\x7f\xc7\xc6\x1a\x14\xe6\xa6\x0c\xd6\x17\xe2\xb6\x8f\xcd\x1b\xdef\x04\xb7\xfb\xb1\x8c\x89\x81mgX\xdb\x1e\xd4v\x85\xb4Q)P\xc3\xd9\xbe`\xf60\x94=!\x90M\x08c\xf3\x83\xd8H\x08\xd9\x17\xc0\x8e\x14\xbeFZ\xeeiJ\xd4\xc0u\xe4\xb0u\xd4\xa0u\xcc\x90\xb55`=\x8c\x02\x0e\x83\xd5qB\xd5\xd1\x02\xd5q\xc3\xd4\xb4 \xb57DM\x0cPS\xc2\xd3\xa3\xe0\xf4\xb85j\xa0\xd2\x1d\x98&\x86\xa5 A\xe9^\x97c\x06\xa4#\x87\xa3\xe3\x05\xa3\xe3\x85\xa2\xc3g\xd7\x1b\x86\xf6\x05\xa1\xb5\xf9v\x04\xefB\"w\xcd\xf7a?\x9c\xbd\xacy\x8d\xe2uW\xf9\xe7N\x89\xd1}^\xa6t@\xf4\xbe\xae\x97\x8d\x14\xac\xa6`\xa1\xd7\xba\xb9\xdc]{\x1d\xaf\x00\x1b\x17\xa7\xfb\x0f\xba\x18\xc0\xbb\x15\x90\x05\\\x078\xcd\xaa\xbb\xbc\x0eP+P;&\xd3g3\xd7uM\xa6\x0c\x92\x95\x8axw+\x9a\xa8\xbfVi\x83\x822\xda\xe5VVf\xd1\xd1]\x9a]\xae\xbbj\x0e\xb3J}#*5\x1a\xda\x8fi\x96\xee\x0e;\xa3;\xf5\xe5\x10\xa3\x16ReD&=6\xfd\x19\x07\xd0\x972\x0c\xaf]\xf2\xd5L4\xed\xba\x86=~\xf0c\xf2U\xf5C\xb3Q\xddx.G*7-Q(\xdd5]\x94\x82m\x15\x17N\xb3\xb4J{\xf7\xf7u\x98\x05\xba\x9fE\x84]\x9eU\xd7\xd8\x85\xf3\x9e\x8a\x8fK\xdb\x94\xf5\x05\x0b\xf5\x90\xf4r\xe1*\xff,\x8a,\x91&\xdft\xa2\xb4,\x1f\xf3\xad\x03\xf2\xca\x99h\xecU`{l\xc7\xe7<\xce\x9c\xc7\x99\xf38\x86\xe6<\x8ey}\xce\xe3\xccy\x9c9\x8f3\xe7q\xe6\xbb\x91\xf28\xfa\xcby\x87Q9\xa3\x81\x0f>\xfe\xc6\xab\xf9\x16\xe9\xe5\xf9\xc5\xf3\x8b\x8f\xe7\x97\x1f\xdf\x9d\x9f\xbd~y\xfa\xe6\xf4\xf5+\xe7s\xaf^\x9f\xbd??\xbd\xb8<{\xfd\xe1\xf4\xbd\xfb\xd1?\xbd\xbf8}\xf7=\xe5\xc9\xb3\xe7\xe7\xe7\x9ev?\xbc\xfe\xc3\xeb\x97\x17\x9e\x87\xde\x9c\xbd<\xa9cE&\x05\x95\xe5\x15\xec\xf3}]\xf3\xee\x90U\xe9vpl6,\xee\x97\xfd\xd4\x90\xda\x17E\xb6\x0e,\xee~\xffV\x94\xf7I\x91\x95dYJ\x7f\x89\xf4\xec\xfd,\xa71\xcd\xf2K\xe9\xb9]~\x16U\xee}\xa1<,wiuY\xa5;\xeaW~\x87\xdf*6\xb93\x91\xad\xa7\xb0\xd1\x1fZ\x9f3\xae\xdfh\xc6\xb5\xfe\x02~Y%\xc5$m\xa9\xf9LR\x96\x9e\x90\xcd\xee>\xf8fC!j\xc9\xec\xa4kZ\xd4\xb6\x0eI{z\xb2\x9e\xe7\x1d\xf7l\xd4\xc5\xae[Fq\xc9|\xdb\xba\xf51\xcc\x15\xf3\xb8a^\x17\xcc\xe9~\x91]/\\\xe1c\xb8\\w\xe4n\xf9\xe6\xe4\x18\xae\xd6\xc0\xbd\xb9s\x17\xcb\xdb\xfeq\\\xab\x81[u\x97.\x15\xeeN\xdd\x95+\xd5\xbaQ\x88\xa5\xa9?\xbd\xa4\xf4\x83}\xeb\xd5\xb2_\x92\xdc\x14\x14\xa7\x01\x944\xd0\xe8\xda3\x02\xd0s0\xc2vTl\x9f\x87\x7f\xde/|\x04\xfb\x02#NS\x1c\x82\x11\xb3\xc8\xdf\xf1\xe89@Q!\x7f0\x80\xfd9\x11\xb1\x83\xc5E\x01\xc4\x9a\xce\x12\xf1\xb0\xddf\xf8\xdf\xd10\xc0\xac\xe3z\xbd\xd6\xe5\xeeTdG\xa5\x03\xcb\xa2\x0ft\xa5\xff\x1f\xfell\xc9,\xf4\xf5K\x9b\x08T\xedM\x7f\xe6*,s\x15\x96\x9fG\x15\x96\xe1~\xc2\xd8\xb7J\xd6\xc6\x15\xf8\x95\xcd\xfa(\xef\xfc\xd8f\xef\x9910Y\x7fs\xb3\x10:DW\xe5\xf5\xf3A+\xca4\x85|%\xca\xaaA\xbd\xbe\xbe\x15\xd9UumB\x90(V\xbc\xc1\x89\xbb\xc6\xdc\x7f\x880\xe8\xfa\x85\xa0Q\xa3\xd7\x14`v\xa8\xc3\xf7\xd0\xa8;\xe8t\x87\x1a\x86\x83\x9ft\xd9\x01<\x17\x1e\x80\xbcZ\xc6`\xbf\x88\x97\x1f\xc0r\x01\x02\x06\x97 @g\x0f\xdc\xeb\xb1\xfb\x08a5\xaa\xc7\x83\xd6\xe2_\x0eyq\xd8\x11\x85I\xdb\xd1\xc7R\xaeg\x7f/\x8a\x95\xc8*\xb9\x17K\x83\xa5v\xb3\xb2JnD\xe7S\x1c\x9f\xf3J\xd4\xeaQ\xa7WF{\xfbr\x04\xcc]\xe5Y\x99\xae\x85TH\x15\xa7\xebm\xce\xd7\x85(\xe5|\xde\xd1\x18\xa5\x86\x14U\x8dX\xf9\xbfBei\x84\xbe\xcc\xd2\xd5w\xe9\xcb,\xe0\x95\x0e\xf4\xe1Z\xf4\xeb\xc5\xef\xba\x03\xf9,\xaa\xfc\xf2\x8eG\xa3]\x81|\x03\x7f\x12\xf5\xdc\xa85\xa1>\x0c_\xff\xaf\x02\x13\x0c\x87\xe7\x9d19\x18\xb1n\x04`\x86\xfc\xf8\xd1o\x90\x93\xf1\x11>\xdb<\xf6'\xea\xce\xb3=\n3\xea\xa7!\xab/b8kt\x05 \\{\xa4}\x87\xac,_u\x99|b\x8cx5 <_w\x89yE b^S\x02\xf77^&]W\x82\x88W\x96\xc0{m B\xaf.\xc1\x94\xebK\x98\xc4n\xf7J_\xac\xdf{\x99p\x8d \xe1\xa5\x1d)\xeb7_\xa6]gB\xd8\x1d\xf6\xd6\xef\xbe\xc4\xbe\xd6\x04\xd3\xaf6A\xfc\xebM0\xed\x8a\x13L\xbb\xe6\x84/Q\xb4\x93\xd1.?A\xf4\x0bP\x10\xf3\x12\x14\x90.BA\xcc\xcbP\xe0\xfc>\xcc\xb4KQ\xd8\x1aG\xbf\x11\xa3M\x8d\xf7\xaa\x14L\xbe.\x850\xc4\xbe\x14\x13|\x89\nl_\x8b\xf1l\xf1\x8e/\xc6P\xf6\xff\xc0\x8bU\x98\xd9\xb3~7\xc6\xd7\x8fi\x97\xac\x06\xcc\xd4\x95+\xf4\xeb1Q.[A\xec\x0bW\x80\\\xba\x82\xe9\x17\xaf\x06\xdc*\xe4;2\xd3\xaeb\x81\xef\x86\x12\xb8\xbe&C\xb8\x96\x05\xb6\xcfX0\xaeg\xd9y\x8c\xe0\xf9\x93\xaej\x01C\x18\xbe+[\xe0\x1d\xb7\xf7\xea\x16\xf0\xaeo\x01\xfaM\x84\x89\xd7\xb8\xc0w\x95\x0b<\xdf\x9a\xf1}m\xc6!%\xea\xd5. \\\xef\x02\xf4\xab3\x93\xaey\x01\xed\xaa\x17\x04]\xf7\x02\xab`\xbc\xd7\xbe \xde\xd5/\xb0\xf7b\xa4iQ\xaf\x81\xc1\xc4\xab`\x03V\xd8wi\"_\x0e\x83\xc8\x17\xc4\xc0\xfdu\x1a\xec\xfb4\xd8\x17jb]\x18\x83\x98\x97\xc6 \xfa\xc51\x00\xea\xe51\xa0\\ \x03\xfa%2 ^$\x03\xfc\x8b5\xf87L\xe8\xd7\x8e|_\xad!_,\x03\xda\xe52\xc0\x86\x11\xf3\x92\x19L\xbdh6\xe0\x85|\xcd&\xe6\xd53\x88z\xfd\x0c&\xeb\x83\xf7\x1a\x1a\x10\xae\xa2A\xef\xcb6\xe3+i\xe0:\xcd\x0c\xaf\xa6\x81\x0f\xba\xeb}\xd6zE\x0d\x7f\xdcvM\x0d\x7fztU\x0d\x7f\x0c\xb9\xae\x86?8\xb8\xb2\x06\x1c\xect\xfb\x82\x0b\xc3\x11\x03Km\xe8\x8e0\xd5\xf6\xe6\x8e\x8f\xad6\x84\\!\xc3\xbbtd\xac5\xbb?\xc7\xc1^7\xdd\x18_m\xc3\xbbq<,\xb6!\xfb\x157\xbcG\xc7\xc1f\x1b\xea_u\x03\xcfu7\xf0\x86G\"\\{\x1bp\x9cx\xf7m\xc0\x0d \xb9\x1b\xae\x94\xebp\x10\x96\x11C\xae\xc6\x81;V\x86^\x91\xf3\xbc3\xbe*\xe7y\xc1~e\xce\xf1\"zu\xce\xf1\xbc\xfdR\x14t\xa0E\xe3\x9bQ\xc1,-W\xeaZ~3:\xe8\xe7\x8f\x0er\\\xcc\x83P\xc5\xb1^\xd2\x0b\xe4\x18\xfd\xc2\x9e\x1379\x84\x1f\x90\xf0\x0d\xa6S,\xdcd\xfd\x12\x1f:i\xc6\xf2s\x83\xfc\xa3\xc0\x88`\x03QY\xe1\x11\x1e\x1b\xe1_\xf0\x10\x1f$\xe1\x83I\xc4\x06JD\x86Jx\xc0\x12\x93\xe1\x12q\x01\x13\x14\xc8\xc4\x04\xd0D\\\xd8\x04 8\x11\x17:A\x00OD\x87Ox\x00\x14a\x10\n\x94\x91\x13V\x11\x05XA\x84V\xa0o\xb2\xe0\x16\x93\x01\x17\xb1!\x17v\xd0Ed\xd8\xc51\x80\x17\x91\xa1\x17T\xf0Ed\xf8\x85\x1b\x80\x11\x1d\x82a\x07a0`\x18\xe1@\x0c\x94\x99\xad\x96\xad\xa6 `\x0c+\x1c\xc3\xebR8!\x194\x8f#\x1e,\xc3\x0d\xcc\xf0\xf7&*8\xc3\x0d\xcf\x88\x06\xd0\x98\n\xd1\x18\xb1S\x1e\x0d\xea<\xc4\x85i\xd8\x80\x1a\xd3\xa1\x1a\x04|\x82\x13\xaeA\x04lX\xb3\xbeL\xd0\x86\x9d\x0f\x92\n\x9b\x0c\xdd\xe0\x08\x87\x02\xdf\xf0K\x81\x04\xe1`\x838\xf0Da\x04 \x07\x01\xca\xe1\x03s\xf8\xe1\x1cN\xa9q \x1d4P\x07\x0e\xeb\x98\x0c\xec C;B\xc1\x1dv1\x91\x00\x1eQ!\x1e\x8e\xbe \x9a8 \xe81\xe2\x86\x00?\xa2B?l\xe0\x8f\x89\xf0\x8fq\x97\xc7p\x90\xf8\x80\x10\x0f$\x04\x07\x85\xe0\xb0\x90\x98\xc0\x90\xc8\xd0\x90c\x80C8\xf0\x10\"@\x84\x05\x11\xa1\x83D,0\x11\x1b0\x80\x0e\x0d\xf0CEX`\x112\\\x04\x1dPl\xc8H\\\xd0\x88\x056\x12\x1b8\x12\x1b:2]GH\xf0\x11\x1a\x80\xa4\x0f!\xc1A$\xce3\x18\x06$\xe1AI\xfc\x80\x03\xc2\x0b.8 \x19P\xc2\x80\x94\x10A%\x01\xb0\x92\xff\x9f\xbdwm\x92\x1b\xb7\xb2E\xbf\xfbW\xec\xa3{c$yJ\xa9Q\xdb\x9e\x88\xd1\x9cvL\xb5T\xdd]c\xb5TW*u\x8f\xc3\xe1\xc8Be\xa2\xb2h1\xc9l\x92Y\x0f\xcf\xf8\xbf\xdf\xc0\x8b\x04\x81\x8d\x17\x89*\xb7\xcfI|\xe9V%\xb9\xf1 \xb0\xb1\x01\xac\xb5\x10\x02\x96\xe4\x85\x96<:\xb8$\xfc\xb5\x1f\x12^\xe2\x04t\x04\xfb\xd4\xc3AL\x92\xca\xf4\xb00\x13'\xd0\xe4\xef\x035 \x81M\x1e\x1fn\x82\x01N\xc2\x90\x93\xf0\xc6\xcf,\xd8\x89e\x0d\x83\xa1\xe4\x06\xa2\xa0P\x94t0\xca\xe4SH\x07$%\x04Sp\xc1R\x02\xef\xe1\xd0\x94\xc0K~x\x8a\xe7e'D%\xea\x00\x18\x83\x06\x84\x80*3\x0c{\xe0*n\xc0\xcaA$.\x19\xc2\x92\x19\xc4\x92K$.\x08e\x99\xd1\xb5\xbc\x80\x96\xc9v\x1f\x00\xd6r\xd0\xa7;\xe8\xd3\xfdr\xf5\xe9\xfe\x07\xc5Y\xa5 \xc9\xa8\x97\x92\x90V\xe7,j\xf9\xc8\x9b \x19k\xc5#\x1e\xc7X\x12\xd1\x90>\x8c\x1a\xd1\x80\xac\xebM\xd6\x81\xfa\xc7\xb9\xff\xc1\x83\xa2C\x9a<\xe6\xfb\xf2\xd7\x92\xbe\xed\x8fuG\x93?\xeaM\xddYw\x07D}\x1b'$.}\x14\xb32\xc4 ^\x0bh\xcd\xf8Q\xff\x8c\xff\x96\xee\x1a\xbab13\x9bY\xe8\x15m\x14h\xe8B\x18k/\xa0\xa8\xda\x8e\x92\xb5\x84\x97\xf5SxK;\xfb0\x94\xf9\xc8\x82\xb6\xa6/\xe0G4k\xb1%^\\\xc1EI\xabg\xd2\xfes\xf8\xfakxu!\xb7\xd9I'+\xc1\xc3\xef[\xca\x8f\xef_\x99\x11\xf8i\xc5\x11R\xc6_\x05``EZ\xda\x8eV\x07\xdc\x1d\xab\xd5~W\xc3\x8f\x1f\xceO\x96\x1f\xce\xceO?\xbc\xd77\x070\xcc9\xf2\x99p\x1e\x92\xc3\xa6\xf7\xb9?\x9e|\xf2\xfe~\xfc\xcd\xa7\xf3\xe3\xd3\xf7\xdeg\xde\x7f\x08\xfc\xbc\xfc\xe9\xf4\xfc\xfb\xe5\x8f'\xe7\x1f\x8c^!7y\xc2\x05\x97\xdf \xeb\x80\x0f\x8b\xeb\xc6z\xb3H\x81\xe8\x18\xdf\xe1\x83\x84\x0f\x85=m\x7f.\xec)\xfc\xa3aOZ\x9f\x0e\x7f\xc8\xf1\x01EJ\xf8\x8c\xc3+\xa1\x15\x00\x00s\x95\x1f\xc40D\xf7\xea\xb8\xe0\x9f\xec\x17 \x84\xff6\xc5\x0d\xc5a`h\x0c\x8a>\xe9\xfe<\xce\nj+\x95\xaa~Q\xef\xf4\xa29\x8e\x1e\xad\xaf\xfa\xda\xfc\x83f\xf4^\x8a\x01\xa6\x98\x94]\xe05\xf6G\xd0\xe5\xa7\xc5\xa4\x9cl\xff\xfd\x87\xd7\xc6\xbfG\xad0\xc1\xde\xd0\xc7L\xcb\xc3/\xe3<\xf8\x82\xf0F \x0c:s\x13\x0e\xf1\xf0R8\xa4\xcb\x1c\xd4%\x85u\x8f\x14\xd8=Hh\xf7\xf0\xc1]\xfe\xf0\xee\x11\x03<_\x88\x97r\x14\x81\x84yY\x03\xbd\xa8P/>\xd8\xf3\x97~j\xc0\x97+\xe4\xb3\xca'T\xbf\xd5\xc6+{G\x04\x02b\xd0\xb7\x87#\x81\xc3\x91\xc0/\xfdH\xc0^^\xc4.]\"\xd4\xe4\xf9f\xf2\x99v\xb7C\xc4\xa2\xc5\xbc\x84\x01\xfd\x14h\xdft\xf7\xcb\xb9\x97.\x18\xa2\xfd\xae+\x16\x90\x0b &\x96\xfe\xf7h\xe9\x9b \xd7)\xd8t*\xed*\x05\xd75\n\x13K\x8d\xb6\xf9\xd4k\x13\x8c6O\xba$A\xebw\x86C\xe5\x7f\xe2}\x99=RT\x1bY\x84\xba\xc2&\x91\xd6\xd7\xaf?j\xf8\x9e\x88~m\x1c*!Ml\x1d&!\xcf\x8c\x0f\x91\x90\x07\xf0\xc3#\xebA\xbb\xb9Du\xb4\xe9\xb5\xedH\xb5&\x8d9\xda\x9cR\xb4\x19eh=\x12\xb4\xdd\x1c\xf9\xd9|\xd2\xb3!\xd9\xd9\x89\x92\xb3\x93\xe5fy\xbdm\xf2\xb8Gjv\xb2\xcc\xac\xf0\xbd\x96=\xa7\xc4\xec\x1cyY\xd8\xef,{.i\xd9)\xb2\xb2> \xd9\xd9\xf2\xb1Q\xd2\xb1)2\xb1\xb3$bg\xc8\xc3\xa2n%\xab\x0cln \xd8\x8c\xf2\xaf1\xd2\xaf\x19e_\xdd\x92\xafY\xe5^q\xa9\xd7.N\xe6u\xaa\xc4\xab\xe3\xae]L\xdeu\xb2\xb4+*\xeb\xea\x99\x8a=r\xae\xa1Y:\x97\x8c\xab[\xc2\xd5W\x82y\xd2\xadB\xaaud\x10\x93m\xcd\"\xd9:O\xae\xd5\x1a%\xf6\x84\x9bS\xa6\xb5C$Z\xe7\xc9\xb3\x06\xd4G\x9d\xb2\xac\x11\x92\xac\x98>c\x8a\x14+\xf6\xfe\xdf\xf0\xbaO\x94_\x8d\xab|Xv\xd5W\xd3\x08\xb9\xd5$\xa9US\x97n\xb6\xc4j@^\xd5'\xad\xea\x97Uu\xb4J\xbc\x9cjXJ\xd5\x96Q\x9d%\xa1\x1a%\x9f:E:\x15\x95*\x0dK\xa6f\x93KE\xf37z\xd2,\x89T[\x12u\x8e\x1c**\x7f:K\xfa\xd4\x96:\xcd+s\xea\x918\xb5\x95\x1fmi\xd3\\\xb2\xa6\x19%Ms\xcb\x99\xc6J\x99F\xc8\x98\xca\x95\x7fX\xc2T>\x18\x90/E\x94>\xb1\\c\xe5(C\x92\xa5\xd1r\xa5QR\xa5F\xe1\xf3J\x94\xce\x92'\xc5\xe4HsJ\x91\xe6\x94!\x9d\xf3\xbd#\xe4G\xc3\xd2\xa3\xca\xf9\x9b\x82\xa3\xe8\xda\xc0>\x15\x8eS\xd3\x0cIMz\x1fuI\x8aF\x88\x89F\xc9\x88\x06\x05D\x93\xa4C\xddg\x00\xb9\xe4B\x1fQ(4\xf4\xdd\x1eJ\"\x14\x11\xe2\xfc\xbb\xc8\x82F\x95\xe3\xe1\xa4@\x11\x11\xd0\xc7\x96\xfft\x0b\x7f>\xa6\xe4\xe7X\xec\xd3'\xf3\xe9\x1e~\xb3\xa4=\x85\x94\xe7`l\xa6\x86\xa7\xb1xW&b\xc4:;\xec\x14\x06?\x83\xb9\xa7\xedre\x1f_:v}$\x84#\xe1\x8d\xaaN{\xb8gFD\xbe\x86\xcao\xa2\xe6]2\x83n\xb1\xcd$3\x0ei\xcd\xee\x01N\xcd\x0e\xa7\xd3C\x8a=\x9d\xf6\x08_&}f\xa7\xcce\x92\x95-\xed\xc8\x9at$\xe5T[\xbd#\xda\xea^\xdb\xb2\xec\x7f!]GV\xd7\xe2T\xa2\xb3T\x87G\xd6rhi\xe2\x07\xd3\x9f\xb4 \xd1\xaa\xd5\x18R\x1c\x8e\x95B\xc1\x85\xf31, \x0c\x04\x83\xc1@\xd0\x1b\x04F\x07\x80\xf8\x10\xcb\x11\xf8=R\xd0\x17\xfa&\x0f\x11\xf0\x19A\xd6\xa3\x07z\xc1\xfc\x1f&\xc03\x82\xbb\xc7\x0c\xec\xf0\xa0\xee\xb1\x02\xba!\x98\x1b;\x19\xcem\x96\xc8\x9ad\xb1%\xc7\xe4\x1c\x15'\xa9\x82f\x10\xb5D@\x93\x1eC\xd8\xf4\x8d\x05\x15\x90Y\x82\xf0p\xb5|H\x95{\xfe\xd5\xf2\xeeh++\x0c\x13\x0c(\xa6\xab\xc5\xb1\xc1\x15#5\xa0\n\x1b\x94\xa4\x1d\x0d\xdft\xb14\x05\x96{\xd8\xe8\xda9\xd2\xa3\xce\xc2\x11\xd5 \xc7x\x9f\x18\xb2?\x8e~\xd5A\x9f?\xc5\x13\xe4\xd2\xe7\xf75\xc1L\x8f0\xee_\xc2;\xa0\xdd^\x95\xe7\xa0\x88sP\xc4\xf9\xa5*\xe2\xa03V\x92:\x8ez'v\xce\x12(\xee\xe4\x19K1\x085\x9a\x83U\x99\xd136N\x9cvl\x19\xdeP\xb13\xd8\xd5\xf2\xf9I\x83\xc9Ah\x04_\xe7I#6\x0e\xdbi\xde:\x8f\x1f\x8a\xa8\xb4|aR\xadQ\xd6\x08\x1c\xc2\xe8\xe9\xd3g\xd6\xc9s~\x18\x0df\xe5gqO \xc0?\x81\xe8\xd1b}\x83\x9c\\\x14p\xf0Q\xc0\xe0\xa4\xc8\xdb9\xfc\xe3Q\x7f$b4N\xbf\xb7\xc3\x94\x0e\x83\x19\x8d9S1\xcc0wi\x81K]\x1ab\x00\xa8\x8e\x18d\xa8J3A>\x0c\xef\x13\x9a\x84\x18xd\xc4`~\xa1\xa7\xaa\x87\x05\xdb?IO\x0c\x99\xa5c\xe2\x00\xc9\xce\xf2\xc8\xe4-F\x17\xf1$G\x00\xaa\xc2\xaf\xa7\x8c\x96\xf9{M6\x8d\x0b\x1ei\xe2\xeb\x1c\xd4.\x08\xcd}\xa1~'RV\x9a\x17\x04\xa8^\x00y\xe9^\x90\x97\xf2\x05~\xda\x17\xc0L\xea\x17d\xa5\x7fA\x04\x05\x0c\xa6\xd3\xc0`\x0e\x15\x0co\xbb\xfb\x1d\xefCN:\x18\xcc\xa1\x84\xa1\xd6D\xfc\xe4\xa4\x85\xc1Lj\x18jp\xbfs\xd2\xc3`\"E\x0c5\xe4\xa1\x8dA\x0e\xea\x18\xc4\xd2\xc7\xd07\x13(e0\x97V\x06\xf3\xa8e\xae\x81\xee(jF\xca\x19<\x00\xed\x0c\xf2R\xcf \x92~\x06y)h\xe0\xa5\xa1\x01d\xa6\xa2\x81\x93\x8e\x06\xd2qEP\xd2`\x06-\x0d5\xc6\xa9j(5\x0d\xe6\xd0\xd3\xc0EQ\x83pH\xe1\xa1\xaaAd\xc4\x91\x8b\xb2\x06^\xda\x1aD\x94f\x1e}\xcd2\xc7\xe9l(\x85\x0dr\xd1\xd8`6\x95\xcd2\xc7#\x1a4x\xc8Ii\x035\x8c\x90\n\xcd\xa3\xb6A\x98\xe1\x05>\x8a\x1b\xc4\xd1\xdc\xc0\xc5\xafI\xa4\xbb\x81\xc7\x0eBQ\x98I}\x83\xa4\xc6 S\xe0 \xa2\x15\"\xa8p\x90J\x87\x03\xbcu\xe6\xd3\xe2 L\x8d\x83\x00=\x0e\x82\x149\xf0\xb7Z\x07\x9ef\x8a\xa0\xd1AN*\x1d\xf8\xca\x82\xf4\xc4Y\xb4:\xcb\x9aE\xb3\x83\x99T;;\x07\x84z\x07s\xe9wv\x91M:\x1ed\xa7\xe4\x81\x9f\x96\x07(5\x0fPz\x1ed\xa4\xe8A^\x9a\x1e<\x00U\x0f \x9e\xae\x07q\x94=H\xa1\xedA4u\x0f\x1c\xde\xdfA\xe9\x82\x04ZW\x88\xc6\x07)T>\x88\xa5\xf3\x01^\xa1\xbc\xb4>\x98K\xed\xb3\xac!T?\xc8L\xf7\x83\xcc\x94?\xc8\xd0G\"\xa8\x7f\x10E\xff\x03\x8d\x02\x08\x08\x0d\x10|\xeb/\xfc\xd2\xe8\x10H\xda\xf7\xac\x93\x16\x88?\xee\xa2\x06\xe2O[\xf4@\xfc1\x84\"\x88?h\xd0\x04!\x05)>\xbc\xe0\xc3\xae\xe4@\x8e\xab\xf4H\x08rwv\x0f\x8f$W \xa1\xed\xe1Ez`dyry\x1e\x06i\xde\x17\xc3\xa6\x13\xe2\xc5x8\xe4\xb9JnZ!^\xa2\x87A\xa2\xab4\xa6\x17B\x80b\x08\xc1m\x9c\x0cTC\xc3\xe2L\xbe\xa1a\x0d9xPVc(\x88\xe0;9t\x9f\x1b:\xe8\x88\xe0\xdf\xe1\xf3\xd0\x12\x03o\xe2\xf4\xc4\xf0K^\x9a\xa2\xe7u\x94\xae\xe8y\xdeM!\x03\x0dke\xb3\xd1&\x9bt\xd0\x18\xe1\x91N\x8d\x0fp\xa9\xc7\x80Ky\xc8\x900\xb5\xe38\x89\x91\x93-\xda$I\xaf\xa9\xbcdI\xcbb\x0e\xc2\xa4\x17\xc6jBL\xa2\xe0+\xaaP\xb10V\xf9|:\x92UU\xe3\x81\xc9\x17\xb98\x178\xee\xc5\xed\xc3\x1e\x82C\xd1y\x100\xc1\x03\xab\xb0\x7f\x12i*\x0e\xc6an|\x9c\xe3\xd8M\xcd\x8e\x85\xc9\x8e\x86 \xe2a2 brcb\xe2P1\xb3p1\xb9\x911\x91\xd8\x98\xdc\xe8\x98(|\xcct\x84\x8c\xcb\x1c\x97T\xf6bd2\xa2d\x828\x99LH\x999X\x99d\xb4L\x06\xbc\xcct\xc4\x8c\xd3\xf3\xa0\x07\x0d*eF\xcd<\x0cn&;r&\x1e;\x93\x1d=\x13\xc2\xcfLA\xd08\x0c\xf5\xb8\x1a\x0f\x86& E\x93\x19G\x13B\xd2\xcc\xc4\xd2x\xd04\x11\xe1I\x00Q\x13\x1b\xbf\xe4D\xd5\x84p51e\xca\x8c\xad \xa1k2\xe2k\xb2#l|\x18\x9bY(\x1b\xc4\x1a+I\xe7\xc0\xd9\xe4@\xdaD\xc1I\x02h\x9bh\xbc\x8d\xe7\x08>\x19s\xe3\xb3\x85\x9e-f@\xde\xa45V\x1c\xfa&\xa6M\"\x118\x1308\xaes\xd8,8\x9c($N\x18\x8b\x13\x83\xc6 \xb4b\x1a\"'\x16\x93\xe3B\xe5d\xc0\xe5$ s\xa6cs|\x8d\x16\x89\xcf\xc9\x8c\xd0\xf1\x96\x08\xed\xa9yq:\x0e\xa4Nf\xac\x8e\x1b\xad\x93\x1b\xaf\xe3@\xec\xcc\xc2\xec \xd6\\\x0b\xbf\x00\x8e\xc7\x85\xe4qay\xf2\xa2y\xb2\xe3y\x1e\x06\xd1\x93\x86\xe9\x89F\xf5$\xe2zR\x90=Nl\x8f\x1b\xb9\x11\x8f\xdd\x88\xc1\xf7$\"|\x120>\x8e\xaa\xcd\xc0\xf9$\x0c\x8a\xbc\xd8\x1f'\xfa'?\xfe'?\x02(GO\x8aD\x01\xc5\xe2\x80\xc6H \x1c\x0b\xe4]=bx\xa04DP\x187\x12\xf1\x82\x0f\x15\x14\x8d\x0bJ@\x06Eb\x83&\xa0\x83B\xf8\xa0\xbc\x08\xa1G\xc7\x08\x85\xbf\xf6C\xa2\x84\x9c\xb8\x9c`\x9fz8\xa4PR\x99\x1e\x16-\xe4\xc4\x0b\xfd}\x10C!\xcc\xd0\xe3\xa3\x860\xdcP\x189\x14\xde\xa8\x9a\x85\x1e\xb2\xacah\xa2\xdcx\"\x14Q\x94\x8e)\x9a\x8c,\xf1 \x8bB\xe8\x12?\xba(\xf0\xb6\x1ba\x14~1\x882\xf2\x98p\"\x8d\xa2\x8e\xd41\xf2\xda'\x03\xe7x$\xe6\x18F\"J\xd3GP#\xda\x8e\xf5\xba\xc9\x1ak\xff\xd8W\xbax\x10\x92\xc8g\x88\xf9\xdc\xfc\xb5\xd8O\xfdc\xdd\xd1\xe4o|Sw\xd6M Q\x9fJ9\xde\x0c\xaa\xf2\xac\x0cq\x8a\xf2\x02\xe9\xf4w\x90\x04\x13\x19'E\xb1\"\xe1{F\xc0\xd7s?~8?Y~8;?\xfd\xf0\xde\xbbgd?\xfd\xc7\x93O\x11O\x1d\x7f\xf3\xe9\xfc\xf8\xf4}\xc4\x93\xef?D=\xb4\xfc\xe9\xf4\xfc\xfb\xe5\x8f'\xe7\xd8\xe3\xfd\xeeO|\xb5\xc2\xf1#\x00\xeb\xd5\x1f\xf8#\xf8\xee\x0f\xd7G\x94\xfd\x02\x84N\xe2\xa6\xb8\xa1\xb8\xc4\x10\x1a8\xa0O\xba?\x8f\xb3\x82Z\x9c[\xd5/\xea\x9d^4\xc7\x91\x99\xf5U_\x9b\x7f\xd0\x8c\xdeKQ\xc5\x14\x93\xb2\x0b\xbc\xc6\xfe\x08\xba\x1e\xb7p\xa5\xc9\xf6\xdf\x7fxm\xfc{\xd4\n\x13\xec\x0d}\xcc\xb4<\xfc2\xce\x83/'n\x94\x82\xa33\xb7[Zl\xae\xd3\x16\xa2F\x0f\xfd\x89[\xa0k\xadK\x0e\x05\xd9W\x05\xdf\xae\xe8\xf5:\xf9\xff\xb4\xbbR\x97\xfe\xcd\xcb\x0c\xc0\x02\xef\xae\xb6boV\x90\xa1\x08\xee\x88\x92UK\xab\x90h\xcc\xca\x1fn\x03\xc7q\xf37\xb9\xe6h\xdb\x99\xbbK\xa7o\x8f\xfaR4G\xfdE\xc4\xd6\xa7\xb2%1\xf5\xf9,f\xb2\xe4\xa5\x08\xcaa\xb2\xa7\xd29\x04\\\x0c\xd4\x9c'\xf3\xf2\x07\x9c\x13j\xd4J\x0f \x92\x91i\xd5c\n\x9dZ\x1fw\x07\xc3=\xc9\x06\xa7Y\xdfD\x9b:\xd5\xc6N\xb6)\xd3m\xe4\x84\x9b8\xe5N\x9at\xe3\xa6\xdd\xcc\x13o\xd2\xd4\xfbH\x93\xef\x83L\xbf\x0f?\x01\xe7\x9f\x82\x1fq\x12\xf6M\xc3)\x9b\x8d9\xa6\xe2\xfc\x1ba\x93&d\xff&\xcf\xd4I9\xd7\xb4l\x95O\xc8b\xab\xdd\x0e\xf6\xce\xcf{\xda\x14T8\x84\xf6\xb0\x0fw\xd8\x87\xfb\xa5\xef\xc3\xd9q`lx\xe9\x97[\xe7\xbb5g\xdae\x05\x11\x81\xa5y\xab\x00\xfa\x15\xdc\xbdo\xeeM\x02\x86v\xbd\xeb\xde\x00D~?\\\xd0\xdf\xa3\x05m&\xdc\x13`\xb3=\xb4;\x02\\\xf7\x03\x84\x0b\x88\xb6\xe4\xd4;\x01\x8c\x96L\xba\x01@\xeb8\x863\xe4\x7f\xe2\xfd\x90=RT\x1bY\x84\xba\xc2&\x80\xd6\xd1'?j\x07\xf5\x11}\x12\xd9\x85E\x1a\xd3\xb1\xfb\x8a\xb8,\xeb\xd5\x97\x96\xcd1\xcb{J\xfcKc\xe7\xd6\xa4\xccNH7\xd1\xb54\xca\xb2\x05f\xd4\xee\x9cr\xb2\x11D:\xed\xe2P\xb5\x03\xc8\xbe>l\xeb\xf5\xbe\xa4\xae\xfe\xc87 \x8f\xf9w=k\xea\x9b\xa2e\x9e/\xf9\x9cYt\x8c\xe5\xae\xb7\x10\xd9\x00\xa3\x0d\xebQ\xd5,\x8bj\xafS\x8a\xdb\xf0\xbaq\xaa\x84\xe8\x93\xda\x83|\xcf\xca\x17\xb2{\xeb\xec\xddS\xd5\x0d\xbc4-\xe0\x9b\xacvk\x9f\xaaN\x99\xdc\xcc}w\x9e\xdd\xbc\xc3\xc0p4\xeb\xf0@\\sZ\x95\x8a\xd9\x9b\xee_\xf2a\x05\xed\x06\x9cx5\xb8\xf7>^\xffM\xbc2\x04\x1c\x86\x92\xde\xf8Q':\x98#\x07\xdffU\xd8\xa1C\xd8\xa9\xc7\xe4\x90\xe6\xdc\xc1\xed\xe0S2\x8b\xb1]T\x89\xb6}N\x1f\\\x8e?\xc6r\xc4\x04\x00\xbeI\xc0\x9bG\xf8\x9c*~Bx\x80;y\xc5\xc0\x18\xc7/o\xb4n\x161\xf0\xda\xfde\xbb#+\x7f\xb01:\xedD~7\xceR\xfcQ[\xef\x9b\xb4\xe2\xea\x81lQ\xad\x8b\x9bb\xcd'\x0e5\xcae\xcf\x17\x8a\x15B1Q7\xc2\x1e\x11\x86\xce\xec-x\xa3\x91f{)\x9f\x93\x1a\xf9(u\x88\xdd\xd7b\x92s\xb2?\x10\xb8{l\xec\xb14\"u\xe6\xffh\x8e\xce\x9b\xa9\xe3\xf2\x17>\xc9\x8a\xa6\x7f\x16\xd5D\x0f|\xa2\x81\x7f \x8f\xf7\xf8B\xefs\x81\xdf\xfc[\xb6\xc6a\x81jIm54\x8c$U\x0b)%S\xad\x81\x94\xa5\x82\x18\xb4\x9c\xb9;2F\xef\x8a\xb6c\x9fv|B\xc0^P\xa6Ln\xdd\xa7\xa2Z\xd1\xd7\xf2[\xbfh\xd7_\xe0_\x16\xbf\xfdW\xbbS\x8d\xa3\x14\xeb\xfb\x8f\x06\xd3\xa8\xa7\x89(\xbag\xe4\xf2\xbd\x80^\x94\xb5\xa1\x9b\xa2\xed\xf8\x81s\xdf1\xfaz\xf2:\x8a\xbd\x03\xad\xf4\x81b\xe3\x9d\xf6\xd3\xa8;$t\xd3\x90\xab\x9d\xd6\x8d\x83\xeevn\xaf\xd0z\x82\xccw\xdc\x05d.\x81F\xfcyO\x1a\xc2\xc2X\xda7\xe4\xf1\xbe\xab\xb11\xef\xdc!?\xfe|\xfea\xf9\xf1\xe4\xd3\xd9\x87\xf7\x9fN\xd0=\xf2\xf1\x13\xc7o\xde\x9c\x9c\x9d;~|{\xf2\xe6\xdd\xe9\xfb\x13\xd9pr\x13\xcb\x9f\x03>\xf6\xf4j\x98\x1bXC\xad\x81\xec\xbb\xfaE\xdf\x9b\xe5v\x96\xbe\xbd\xed\xcc\xdbS,m\xa8\x90\x8e\xef\x06\xed\xbbzK\xbab5\x0c\x9ck\"\x88\xe9\\\x14\xa0\x97\x86Ts\x12\xd7\xaa\xdeRRI\x1bU\xad\xd9 \\\xd0P\x93m\xee\xc8\x17Z\x1dA\xb1\xa0\x0bN}\x97F\xc6u+Xl~u\xa4\xaa\xc6:\x95\x92\xb9\xd0\xda\xe3\x92^\x93\x9b\xa2n8\xd4F\x17O\xc0\xbf\xa2\xd9\x08\xe2\xaf\xe3\xfa\xb7\xb4Z\xb7Zi\xfb\x8a\xf0c{\xa5\x0b}\x04\x97\xf7;\xd2\xb6\xcc\x83h\xbd\xd2\x95\xbd\xec'f\xfe\xf2\xcf)\x05X\xd3UYTT\x9f\x0f\x03\xa3\xe2\xa4\xea\x9a\xfbh?\xd3\xd5K\xb2^7\xb4\x0d\xad\xf4G\xfdxxk\x88JW\xb4\xb8\xe1\xebx\xf1\x83j\x9b\xab\xa6\xdeN\xc9B\x7fOe\xc2\x9a\n\xc9\xa2\x19\xf9\x03\xcbRc\x04\xd0\xe3\x8e\xd7\xd2\xaeS\xf3BwM\xd9\xa4q[\xab\x1chk\x86a\xc1}\xf7\x90\xbf\xc1\x9e\x1a\xf9\x1c\xec\x01\xdd\xef\xc0D\xdfc\xf5\x91\xd1\x94\xc9\x1aE\x9b7k.\xee\xad\x9a\x9f}\x0b \x15\x87\xb4\xf9;\xe2\xff\xd7\xffi\xfd\xed\xbeZ\xc7\xef\x8fN\xeb\x87\xa3X\xc6\xee\x94E\xd5Q\xbe\xc0k\xe8\xaa\xd8\x15\x9a\x12>[\x85\xb7Jy\xe4\x86r?\xa7\x99\x1aj\xd6\xbb\x98}\xa5|\xc1R\xef\x9a\x13\xe3\xc8\xe8J9\xb3\xe5\x08K5(h\xa3W\xa6w\xdc;\xd2t\xe3\x0b\x0b\x98\xb7\xe7\xf6\xe0\x9evZ\x9f\xe7\xed\xa1\xaa\xca\xff1\xa9Z\xd1\xe11*\x16\xe1\x8c\x8dq\x81\x88\x98`\xd7\x80\xcaN\x96\x83\xd0\x8d\xcc\xd1\x81P\xaa\x0f\xba\xbdx\xb9\x87Q\xd5D\x17V>M\x94d\x10\x0c/*\xbd\x13\xf7\xab-\xd4\xb7\xa99\xc6\xfc\xe4\x97u]RR\xe1\xd9\xab\x97x \x9a=\x85\xe2J\xf6\xa5+6\xf0\xe1\x966\\}\xfd\xa6\xa8\xf7\xad1\x91\xb9:\xbc\xe9=\xfaO\xd5v\xcd~\xc5\x9a\xc8\x90\xb4k}\x03\xd9\x18\xc4>\xa7E\x9b{\xdd=\xa6\xaf*\x99\xfb\\*\xf7\xf9\xc0c\x07s\x95\xba!d\x00M\x9f\xbeE\xc2'\xf1\xb4L\x13&t\x91\xeci\x1d\xb1\x9air\x17\xc9S\x15\x17\xe00f\xba\xc7\x9f\xb5&}\xfc1s\xea\x17)2\x00P\x0f\xbb\x97\xff3\xa3\x82\x91--B@2\x1e\x0f\x91~\xfa\x1a\x7f0ZuMAe\xc4\xd1 \xe1\x16!\xd6\xcb\x17\xf0\xcat\x06v\x87}(p z\x1c\x88\x1ey\x89\x1ec\x0d\x0et\x86\x19u\xcf\x8fgo\x86\xd1\xc6\xb1\x84\xa3w\xa4\xb1~$\x04f\xb4\xd3V\x9bO\x93g\xb4\xa2]j\x13hRh0~\xd5\x08\x10\xf4\xc9\xe7\x9a\xb4P\xb3\xd8V\xdc\x06c.\xac=m\x89\xd6\xcd\xdf\x96\x15\x8c^JlL34In\xcf\x9f\xd1\x95\x11\xfcbc\x04\x04S\x9eq\x81%\x12\xb2\xcc\x12)b\xb1%\x12\xd6v\"\xa5\xed\x90CD\xf5\xe7,\xc5,cri\x16\xb7 \x13\xc9X\x96\x894\xb1\x01&\xf1\xe3\x0f\n\x7f\x7f\x1f\x85\xbfp3L]\x0bZ\x86\x1c\xa1\xb1\xbdB\x14 \x9f\x0c\xd4;\xd9V\x8b\x88A\xa3\x11\xe6\xaf\x1cG\xe6\xf8\xee \xea\x9dF\x850}:\xab]Q]\xd5@.\xeb}'sh\x8bN\x02q\x90\x9d\xe3C {\x08d\xc5\xdf\xff\x81\x02YW,\xe4\x8f\xbfz\x0b\xc6\x981#\xb0\xb6$\xeduQm\xa6\"m\x99o\xa5\xeb\xa5\xc4\xf0\xdc\x16\xd5\xba\xbe5\x83-\xe3\x9b\xa9\xef\xa5\x7f\xaemQ-\xa5\xa9\x1dm\xd2\xech\x83a]\xdfV]\xb1\xa5\xcb\xbf\x90\xa2\\\xae\xe5]\x02^;\xbc\x01\x96W\x8d8H[\xae\xeb\xfdeIyY\xd2\xb3\xb7l\x89\xd2\xa4\x1a\x1au\x06\x89\xd5\xd0\\i7\x06\xd9\xf5\xb7\x08^\x8a\xd1\xa9\xbe\xa8\x8d`\xb5\xbe\xf5l\xc0\x8d\x15WG9=\x7f\x9f\x81\x98\xb1n\x0e\xf5@\xff\x89\xb2i8\xd5P_\xf2\xd8\x8c\xe9S\x9e\xd7\x9dE\n\xf6\xaft\xa3\xd9\xfbZ\xefts\x81\xeaB\xfd\xf7S\xb1\xa9\x8ajsZ]\xa1P\x05?\xc7\x89\x94\xfc\xb3\x14\xd5f\xc9B\x89I\xdd\x19]\xfa\xb9z\x06\xd7\x8d\xbeF\x18\xa0\xc1\xcf\xe6\x9c\xdd\xbe\xe7\xd6\x80\xa8\x80\x99SrHW7|\x0e\xe27\xef\x00\x81\x15\xa9\xd6\xec\xcf\x14>|\xe4?\xec\xab\xbfp\xc5\x7f\xcddQ\xad\xe9\xdd\xb2\xbe\xbaj\xe9\xfc\xd2\xf9\xa3\xe8S\x96\x95\x8a\xf0Y\x1c\xb7jx\x90O\xd7@\xc9\xea\x1aX\xbf\xe6\xbdb\\\x1b\"A\xa4\xe6l[T\xec'\xe6P\xf8\xcacK\xee\xc5\x8aP\xf8\x04N\x13\xa5\xabz\xbb-:q\xabr'\xaf\x00\xb7n\x93\\\xd5\xd5_\xe4-\x91b]\x83\\\x06p\xf1\x89[\xfd\x86\xfb\xaf\x9f\xb8\xab\xb9\xe8A\x86\x1dm\xb6\xfd\xb4\xcc\x1b\x14\xbfD\xf6\xe2\x87\x82\x85^\xc2\xc87Ew\xcc\x16\x95\x17z\x0c$>\xcf\x92\xdfQ\x90\xf85\\\xaa\xf8\xbe/r^li\xdb\x91\xedN\xdc\x8a \xbf\xcd\xf8\x13\x14\xad,\x15\xac\xf7|\x87\xba,nhE[\xf36 \xe5\x99\xc6!\xdd\xf6\xb2\xedjk]\xe3^\xd5\xf8\xcb\xfb\xd35\xe5w\xd7\x8a\xef\xa9\xeee\xe5\xc5\xbc&\xadXT\x0cy\xc2\xb3/E\xc9\n\xce\x96\n\xd6\xad\xf2\xc3\xab-\xed\x9e\xf3(\xb6\xe0\xe1\x9b\xf9\xe9\xebjevK\xd1\xad\xf8\xa2\x95-.ojq\xe13+\x17G\xb3U\xf7\"\xd6\xb3;\xdaU\xb1\xd9\xb3\xb5\xe8\xb6h/\xe9uAn\xc6wIoy\x07Q\xd3$\x0f5#\x85s\xa7\x0f\xcbc\x90\xf9\xc0\x17\xba\xeb\x86\x8b\xa2\xf7UEW\xb4m\xf9%\xeb\xac\xa7BC\xc9\xba\xb5\xb4 \xde\xd7\x9d\\\xfb]|\xdao\x9fa}\xfc\xf9\x05\x90\xf2\x96\xdc\xb7\xac\xb9Hiv\x9d\xd1\xb8x#\ns\xe1X\x11\x8e9\x8a\xea\x8bh\x13\x82\xb6U\xd1\x7f\xb0\xa7-H\x97/V\x8f\xec#m\xeb\xaa\xe8j\xa3\x15\xbbkZ\x8c\xa0\x95\xaa\xb3s\xd0\xd5M\xd1\xe9\xaa\xd7\xc2\x15\x9b\xf3I\x7f\xf2\xa6g\xc8\x97\x19J=\xfb\x86\x94\x9c\xd0\xaef\x91_\x01\xb2lq\xcds1\xf3\xa9\xf6\x9a\xb4\xf6\xf1\xec\x8d\xaaU\xf2\x0c\x9b\x1e'b\xd3j\xde\xdd\xd7\xd4\xadW\xf7\x1c\xec\xdd\x1es\x0f\xa9\x07\x98\x89}s\xf1\xe4R\x86\xf6\xb52\xcf\xc9\x19g\xe5\xb8y9\xd3\xcc\x1c37\xfbf\xe7\xa8\xef\x83\xcf\xd0\xe1o\x94s\x96\xc6\xe7i\xf7L\x9d\xb0\x03\x89\x94<\xe7|\x9d0c\xe7\x9c\xb3cf\xed\xa8y;\xaa\x8bL\x19\xc2s\xe7\xef\x1c3xp\x0e\xf7Wc\xc6<>\xfe\x0c\xfd\x9cn\xcf\xe41s\xb9o\xfe&e9\x14D\xd5\x1f\xdb]NXF\x1e\xb6\x82\x0f[\xc1\xea\x0d\xf77\x14Yj\xe1_=\xba^\xb6\xa8\xf8\xadwCD(oum\xe1\x96\xb7\xf5x\xb6[\xd5\x8dx\x90\xc3\xc2dP\xda_\x04\xcb\xbc2\xdf\xf0\xd1\xab9\xaa\x9bz\xf2S\xbd\x1d\n\x85\xde\x04\xdb\xd0\x1d\xe57\xee}C\x9a\xbee]\xf7\x1b\x8f\xea\xc8;\x97y\xb7\xb1\xb8\xda5\x14&'\xed;\xe9\xefI{)\x812\xe6\xb5\xa2c\xe4\x18,6\x1e\xb5\xa2#\x01\x9f@\xb2\xc6\xa8xt\x9aP\x1a\xf7\x0c\x901\n\x9d\x1e\x7f\xea\xf1\xa6f\x10\x8b\x0cD\x86Y\x86\xcf\x9c\x08p^\xec\xe7\x89\xfa\xf0\xe2\xce\x88\xf4\xec\x1d\x9bQ\x8c\x87Fw\xcauw\xe4\x8b\xee\xb9\xbf\xa9\xab\xf5'\xedrp\xeb+\x8c\x19\x8e\xdf|x\xff\xd6}\xd3\xb5\xf9;\xfb\x97\xf7\xc7\xd3\xf7\xdf\xa1\xbfj/\xf6\xe8c_\xd6x\xc40\xd4\xad\x8fd\xb5;\x81\xfb\x06\xd69\x8e\x8eL^\x03*\xbcUAQI \xb0a\x90\x8d\xef\xc7\xc6\x9b\x84\xd9\x13\xff\x87}q\xd1 \xe5u\xbd\xc2\xaf{\xed\x9d\xbe\xffN\x19<}\xff\x9d\xd7\xe2\xbe\xba\x14\xf1\x8e\xc3\xa0*^D\xe1\x86\x829\xba\xd6\x1b\xe6@\xda\xb6H\xd0\x9f[\xf5\xafpi\x12-&p\x0fy\xf3\x9d\x112\xa0\xa8\x8a\xae\xe0\x9b\x8c\xea!\x90\xe4W\x1e9\xaa\x13=\xdd\\C\x89\xd0\x08\xd2{\x88\xfa5aE\xc3\xf2\x89\x0c\xdcG\x95c\xef\xa9\xfej\x14\x1bV\xd7\xa4\xd9\x88e\xca\x9a\x96t\xc3\x17`G\xc0\x03\x00u0:\xdaD'w\xcb\xa9\xe5\xb0\xd6\n\xca\xd8\xa8\x81\x956\x8bYR3\xbcZY;&\xf4F\xc8g4\x1b\x1a\xa8\x81\xd0\xd8\xc8[\x11\xcd&Z\x9f5)8\x9a\x8du\x07\x01*\xb1\xb7\xca\x8c\xb9\x92\xd7\xdeQ\x95\xfd\x8e\x85%\xcb\x04,\xa5\xfe\xd9\xb7\x96}H\xcck\xfc+\xec\x9az\xbd_Q\x0e=j\x1a\x13a\xae\xd2\xaf\xe1xX\x16 a\x1c\xc2\xdaG\x9c\xf4\xad\xc8\x8a\xf9\x84\xba\xfe\xb2\xdf\xf5\x98\xcbK\xd2\xd25\xd46\xc1\x02\xc4@w\x14\xf5\xf3\xc7w\xbc\\\x1c>\xd7]\xd3\xad6\x16\xa4\x9e\x14Q\xd5\xe8!G\xa42UrT\x12\x85\xe2\xc3\xbe\xa1WuC\x8f\xd4\xcb\xcc&\xe9\x8a\xcb\xa2,\xba{~\x9d\xb9:\xe3\xe2.\xaa\xb91h2C\xaa+y\xba\xcb_\xe0\xe3n\x01\xcf>\xb7T\xed\x0e\xb0Va\xdd\x8e\xf9\x19\xd1\xefHE6\xae\x1a_6\x94\xefj(\xa3\x8b\xe7xoy_w\xf45W\xda\x86+ \x18$\xbc\xec\xd2\xdf\x0c\xc20\x1a\x90\x18\xa7\x9d\xb0Ts\x04\xb5\x8d!\x16Iu,h(\x9b\x1d\xa8\xdc\xb4\xee\xa12=?{\x18_\x97tST\x95k\xa5r[t\xd7\x0e\xa7\x7f\xbf\xa3\x0b\xd1\x9f\xc9\xaeh\x17\xabz\xeb\xf2\x98\x9f\xf8hk\xe56SwM*\xd3\xb3\xc03\xb9\xb7(\x80\xe0bx>G\x8dm9<\xf5\xd2\xe1Hx\x05\xf9\x06u\xbf\xa1,\x8f\x15\x84j\xfa\nZ\xba%UW\xac,\xb9I\xf4j\x0d\x91\x02!\x85w9\x17\x17q\xfc\xc0\\\xc7%U\x9biZ\xc0`\xc5\x06rR%\x97\xf5\x8d#\xd8P\x02\xf1\xe2\x1b\x19\xcf\x84Jsq\\\xdd_h\xbb\xdd\x95v\xa1\xaf\xa7T\xd2G[\xe6HYW\x1byd`\x7f2\xe65\xb9\xd3\x17\xa5\xba\xb4\xc3)=O\x15\x15!\xdd\xecLu\xfc\xb2\xb8\xe4E\x95~\xbd\x85v\xbf\xdb\xd5\x0d\x9f9wd\xf5\xe5\xe5\xbeb\xffa\xf3\xa5\xf8\xde(\x9b\x8cG4h\xf0P_\xc1\xbe\x13\xceG\x0d\xe7\x969>u\x04@J\xd8\xd0\x8a\xdf\x1f\xb0\x96\xc7\x17}P}\x8c\xf8;\xf1\x89\xec|N\xee\x08\xeb\xc0\xf0\xea5\x9c\x11\x89O\x96E'\xfd\x84XT\xf0\xe6\x9f\xff\xd91M}[\xd7pU\xd7\xf05,\x16\x0b\x14G\xcf\x1b\x81T\xf7\xf8\x8f\xa4\xba_\xb0\xac\xbfm\xea\xed\xb3\xab\xba~\x8e?\xb6X\xe0sOq\x05\xcf\x98\x89\xcf\xbc\xd0\xe7\xf5\xb3\x7fb6\x9e\xe3\xf0\x7f\x8f\x9d\xbf\xb9\xdb\xe6\xab@\xdb\xfc'\xb9!\xb3\x1b\x07\xbe\xe6\xb1\x15\xb3>\xa3\x15\x8a\xf6\xd9\xb7u\xbdX\x95\xa4m=\x8d \x8a\xc4^\x10\xf5\xd1^\xc2\xf3EZ\xa7o\x9e\xdf\x04\x9a\xe7\xec\xbe\xbb\xae+G\x03\x89\x92|[\xd7\xcf\x16\x8b\x05\xee\x89\xfb\xc6y\xe6\xfc\x9dw \xdel\xa9\xad\xc6^>\x15\x8d\xf6\xf6\xe4\xd3\x9b\x8f\xa7g\xe7\x1f>>\xc7\xf7\xdbDV\xa2\xa3\xb93\x13\xd9\xb9\x9b\xeb\xb7\x81\xe6\xfa\xae\xc6[\x8a7\xd5\xeb\xaf\xe1\x9fv\x97\x8bo\xeb\xfa\xbf\x17\x8b\xc5\xdf\xf0\x07Iu\x7f\xc4\xc25\xf6\xf4N\x04 ?\x90\xa6\xbd&%kDw\xc1]\xcdd\xe6\xec\xc8\xb6\xb822\xfd\\m\x87ly\xa1x\xc7\xe6O\xfd\xaf\xaf\xa1*Jg\x07u\x97\x05\xe9\x89\xe7\\\x1cf\xf5\xa5\xf7\x83\xbd|\xf0\xe5\xfd\x10\xaa(\x8f-\xb8`\xf7\n\xcelY\xdb\xb7\xc8\x9c\xff\x14 C^\xb2\xb5\xe8\x82\xff\xc0B\xb9\xa7@\xb4Y\x85\xcd8\xf28\xc1\xce\x81\x7fu;\x93\xde\x8dW\xe5\xbdZ7Y\x0b\xde>t\x04r\xd5Q\x11\xcd\xb0\xf5\xb6]\xe4\x97O\xed,\xe4\x82N\x15Q\xac\xe0\xa8\xec\x99O\xae\xeazqI\x1a^\xb9\xbb\x97\xf7\x8b\xbf>\x11\xad%\xd6\x1a\xf8\xb2\x8a\x17\xe5 {\x96M/\xd6\xcf\xff\xf9\xe9\xc3{\xfb\xaf_\x7f\xfd\xf5\xd7\xf8wd\xcf\x0f\xfb\x00\x92\xe7\xc0\x053E\xc0 \xd6*\xfb\xb6\xbf\xf3i\xb3/Ic\xdb\xb2M\x08\xfc\xc70\xcd\x1f\x0dl59\xfa\x8ed\xfc\x80\xec\x1eh\xd3\xae\xc0\x15\\\xfc\x07k\x8e\x0b\xb9\xc8\xed\xc3\x18\xbdq\x17j\xc8\xbfv\x04\xd1d\xf5\x85\x8d\xf9a\xb1vU\x94\x14\xf7\xbf\xca?\x9c\xd1\xa6\xad+\xe7\xb0\x91;8\x9c=\xb5\xe4_\xc6\xc5m\x1b\x1e\xe6\x1b\xb7\xf2\xd9\xaf\xe2\xbd?\x80\xb3\x14Ox\xdb\xcd\x8f\x8e$g\xd04\xa8X2\x82\x14\xf8+\xfb'\xb3\xf4c\xdc\xc7\x88qc\x12c\xe0\x99\xc8\xf4e\xcfD\x91\xff\xc7\xf7$\xc7f=\x0bS\xd7\x15 ~~\x92\xfb\xc9\x11S\xc9\xff\xd8\xc0Yr=\x87\x1a\x8b\xe21\xa9$\xf0|SOG$\x1a\xd0F \xf2\x9d1\xfe\xdb\xb3\xa2Z\x95\x0bhiy\xf5b\x80'\x1a_`\x00xbh\xc8\xf8\xf2 }\xd64=\x9c\xd6p\x1e\xba\xfcc\xd1\xb6{\xb1\x9bG\xbcg6\x03\xaa\xdf\xac\x80\x010\xc3\x7f\xd2\xff1:6\xd2\xff\xde\xd1f\xdb\xbaQb*u\xd3\x8e|,X\xdb\x90\x02\xdb39\xa1nC\xb2AoCJ)\x90cCh:$\x0e5W7\x168nH\x16LnH)5I\x85\xce\x0d\xc9\x0d\xa2\x1bRJI\x1cm:\x11o\x87\xda20xC\xb2\xd0xCJ\xa9B\x02BO\xa5~\xbe\xc8\xab]\x15jY3[\xd5\xaaGl\xe1\xd9\xffx\xc4\xc7\xd3\xb5!.\xa0]@9$sJ\xde\xec+\x84\x95i\xe4m\x83\xa9\xa2*\x8b5\xa8F\xde\x97\xa68\x10\xb4?7\x92\xd2@]\xdd\x88\n\xa8\x8b\xa3$\xc5E\xea\xdc\xb3\xb1\xdd\xf1.(\xc2\xdc\x1dm\xda\xa2\x95\xd4\xb6\x8b\xeaB\x1a\xdb\xd6\x03~\xaf\xa1+ZuF\xc1\xd5\x8f\xcf.\xaa\x0b)I\xd4+\xeb\x9b\x19^\\\xf7\xaf.\xe5\xbd\x8d\x17C\x94\xf7\xdcC\xc7I\xbc\xd1\xc3\x15s\xa3\xfer\xf4y\x8c\xa0YzD\x11@\xcb\x8dD~\xben\x86\xbel^\x1cP\xdaf\x8e&\x86?B\x10ilP\x15DM\xb1\x83\xc4\xdf\xf0\x8c^\x14\xd9\xba\x19\xcaa)\x0c\xa8\x0b7\x87\x12\x0dwp\xd6\x0d\xd0\x82{\xe2\xbe\x81tW0\"\xc25T\xfb\xe5\xd9\x8e6\xb0#E\xf3\xb2k\x8a\xba_\xff\xdb\xfd%C\x8dl\xa3\xaa.C\xab\x0e\xcf\xf4\x95\xebj5FT\xe9X\x0d\x97\x06\xd75\xdc\xc3\x86\xb7F\xc1\x13\xfb3\xdf\xdcY >\xeb@\\\xed\xbfkQ-\x8d\x95G _L/\x12\xb1\xd2\xc7\xe8\xd7\xa4\xa8^\xdc\x16k\xaa&z+\x80\xe1\xe7\x10z\x84>\x8e_E\xe8*'\xd0a\xd6\xf9\x95\xd5\x08\xf2\x86\x0c\xbd\x01\x0cy\x12\xdb\x81\xf8\xdcC]\x97\xd1\xce\xa1\xaa\xbb\xa5p\xe7Ks\x87\x16i\xc5\xd8'G\xd5\xeb\xf9\xbc\xac`\xacy\x07P[CV\xbcNrBan\xbe\xaa\xbb\x17\xf2\x9f\x82\xbd\xdc\xeew\xbb\xf2^\x1d<\xb2\x9f\xa49\xb3[8\x9a\x83\xabAf\xd1%X\xdaW*\xa3kO\xaf@\x81\x15\xb8:\x97\xaf\xee\x85k@\xeb\x00BA\x7f(\x1cFr\x88\xd2\x1d\xf0\x192\x97-\x01y\x04\x98_\x87i\xda >Cf\x1d\xf03\x84\x94\x82OSV\xb0\xccX\xf5\x9f\xad\xb0`\xd8+,\x8a\xe6|\xd1\x05\xd3`e\x81\"\xd0\x86\xb7\xb4\x18`\xea B\xaf\xe3\xf4|;\xd75\x9c\xceW\xfc\xdfh\xb2V\x83ag\x8e`\x83a\n\xbfr3N\xc3\x01\xbc\x15\xce\xa3\xe5\xa0\x19\x1c\x81SgJ;h\x96F\"\x0f\xae\n9\xa6\x14\x96\x85O\x91X\xab\xdf\xc7\xb37\xd2\x96h\xf2\xc8\xf9\xabn\x06\x1b\xe97w 3\x995\x89\xe7%\xc7\x856k\x927\xad#f\xbe\xe0\x86Wx\xe6\xc88\xffyf\xc0\xa890Km\xb2\xcd\x84\x9e\xb9\xd0=\x1b\xa6Ua\xfa\x8c\x18n\x8by\xb3\xa2eN\xe8\x10Y\x7f\x9e93\xda\xf6\xae\xb0\xb9\xd1\xf9)\xd0\xf9q\xc6\x80s\\Z\xed\xfd\xa6\xee\x0b\xabgl\xd2\xe6\x9a/\xb3\xce\x98\xeek\xaa\xe3gM\x7f\xd5g\xcd\x9c#K\x9a\"\x12\xd6c2\xcc\x9e\xd6\xfc f\xe5\xb09h\xf8\xa8ei\x8c\xf8\xf6\xe9pE\x87\xedI3\\\xff,7\xa2\x0fw>\x1f.\xfa\x98}\xd1\x07\xfe\xfd\x82\xf1\x9b3l\xd4\x0d\xbc\xc4,h\x97\xaaF\x07\x90\x9f\xd5^\xe4\x9cHr\xd8\x18~\xdc@\xf2Ad\x162\xc5z\x8e8/\x18\xe3\xcd(y\xa6\xb8\xce\x11HX\x9b\xcc\"a\x9fW$\xeb#\xeb/L\xd2\x03\x12\x10\x90\xbar\x00\xa4D\nD\x97aa\xa0pC\x8bd\x94F5\xb6\xfc\xd7p\xd1\xc6\xb0\xdd\xdf\xd5\xf5\x17\x87\xb1]IV\x16\xd7\x13\x04\x9efWR\x9e\x8f\xebD?\xa1\xce\xbeS}\xa3\xdeF\xc6\xaaz\xfb\xaa\xb8\x1b\x00QC\xdd\x86\xc7\xb1ZH\xe0\xcf\xd2\x11\x8d\x8a\x14\xacE\xdcw1\xf2\x1aM\xf52\x9c\x97\x8f\x94\x82\xaa\xbc\xde\x97\xe2\\\x17\xb7'\x97\x17@\xba@%3V\xceS\xf6\xae\x8e-Q\xb8\xb9\x10\xef\x7fRu\xcd\x08\xb5:|b1f\x05\xa7\xdc\xb6\xd5\xd0\x92\xde\x90\xaac3\x10Y\x93\x8ex\x97c\xea\xe4\x88\x88K\xab\xf031\xf9Plh\x8c\xd4F\x1c\xf5\x8aP\x92\x07\x8dmQmJm\x1d\xf6T\xbb1bd\x8c\xfd\xcdX\xcd\x89\xc3eiA?\x7ff\xcd\xc4\x86\xc4\x8b\xbaYS\x16\xd8\x97\xdaI\xd8!*=D\xa5\xff\x18Q\xa99~f\x84\xa7^SS\xe2\xd4\x1e\x93\x94\x1c\x9c\xf6\x03\xd5\x0cI\xa3\x86\x8d_\xcf\xcb\xd9S\xfc\xaew\xa2\x92\xd7\xa0\xdce\xd8\x0b\xe9x\xf9U\xbc\x9c\x01\x99;\x18\xeb\x9c\xfa]\xdei.\x15\xab\xac\x1aV\xf9\x15\xac\xe2\xf5\xab\xa2\xd4\xab\xe4>F\x8cv\x95|4\xa8\\\x85\xeaV\xe1\xb9\xc7\xea\x11\x855\xab\x12\x14\xab\"\xf5\xaa\xacj\xe4\xd6\xaa\xca\xa9T\x85\xeaT\xe5U\xa9\xca\xabQ5\xaf?D\xe9S\xc5\xa8S\xe9\xd3\n\xa6L%V3\x98.\x95\x7f\x95\x90Y\x93\xca\xa9H\x85\xe9Q\x8d\x11\x92\x99\xd4\xa8\x9c\xcb:L\x89*V\x87*J\x85*N\x83*\xa8@\x95\xa0?\x85\xa9O9\xeb?j\xed<\xcaS\x03\xc6d\xfa-\x9cV\x8f4\x8d\xceQ\x9c\x1a\xf8i\xae\xc3Ww\xc1\xb4\x7f\xcc\xd3\x9a\xea\xd2\x0f&\x9c*S\xdeM\x8bQ\xf13)L\xb9\xf5\xa5\xe2\x8b\x82n\x91LW\x96\x1asLUr\xe9J9U\xa5\xe2\xcb?UQ*\xac'\x15_\x06\xb4\x0d\xf3)I9t\xa4\x9c*R\xf1\x05OV\x90\xf2\xebG93v\xc3\xa1\xfc\xed\x98Y7\xca\x9c4\x9d\xaaQ>\xcd\xa8`%q\xfcSlEgjE\x0dU\x0c*E\xb9t\xa2L\x84\xd6D\x95\xa8 \x9e5\xac\x0f\x15\x1evy\xb5\xa1\x12\x95\xa1\x9cu\x86 \xee\xd0\xad\x1f\xe4\x1d\xce\x10\xd5(\x90]\x0d\xca\xa7\x8b\xe4W\x82\xcaT\x9dl\x1aPc\x06}\x9a\x02T\x94\xfeS\xc6\n'+?9\xce\xb0`\\\xefX\xdd'\xaf\xea\x93\xb7\x9aal\xe8\xa8\x11\xa6\x08;a\"NA \xa7\x89a\xf0\x1c\xf1&\xfeW\xc3\xde`\xc6>\xb1\x08\x087\xb9\x0b\x9a[\xb4)\xabd\x13.\xd8\x94Q\xae\xc9\x16k\xca'\xd5\xa4/\xc7\xf4\x1cr\xca4\xa1\"M\x97y%\x9a\x10\x81\xa6\xdc\xf2Li\xe2L\x0e\x06\x8b\x05\xcc\x8b@\x07\xda/\xcf\x82\x04\xa6\x13V\x06a\xa0\xc1\xe5\x88\xd7\xf2\xf2T\xfc\xe8A\xaf_\x0eM<\x131\x84N;\x87\xdb@#1\x85!Tan\\afd\xe1\xe16\xd0Q\xca\x892\x8c\xc2\x19\xe6E\x1aF`\x0d\xb3\xa3\x0d\x0f\xb7\x81\x8a\x94\x84N\x9c\x8dO\xcc\x8dP<\xdc\x06\xaa\xa78\xacbf\xb4\xe2\xe16\xd0\xc3m\xa0\x87\xdb@\x0f\xb7\x81\x86\x91\x8d\x11p\xbe\xc3m\xa01\x8d\x13\x83v\x0c\xb7B\x14\xe21\x19\xf3x\xb8\x0dT\xa6\x18\x0c\xe4\xe16\xd0\xf9\x88\xc8\xc3m\xa0\xc9hI\xbb\xc8\x87\xdb@s!)\x1f\x02K\x99\x82\xa6\x8c\xc4S&!*\xe31\x95\x87\xdb@\xa7 ,\xf3b,\x0f\xb7\x81\xfa\xd0\x96qx\xcb\xc3m\xa0\x13\xf1\x97\xde\x85\xe9\xe16P\xd3zvL\xa6\x0d\xa0\x9cZ\x1e\xaf\xa8\xd8|l&8\xd0\x99\xe0\xc6gZ\xd0\xb2L\x08\xcd\xc9G>\x87\xdb@#1\x9b\xa8\xb9\xc3m\xa0Y1\x9c\x87\xdb@\x87\x94\x19\xd5\x99\x80\xeb<\xdc\x06\xaa\xa5L8\xcf\xc9\xfe9\x8c\xf6\x0c\xb7*fg\x1e\xe23\x19\xf3\x19@}\x86p\x9f\x87\xdb@\xe7V,\x1b\x12t\x1e\x164\x12\x0d\x9a\xbd\xea\xc9\x98P\xa7\xb5\xeep\x1b(O\x87\xdb@\xfd\x05\xce\x0d,\xcd\x0c-=\xdc\x06\x9a\x003\xfd\xbf\xef6P0{\xf7\x00\xd4\x1c\xf9\xcf\xe1\xcf\x87\x0b\x01T:H\xaf\x9ae\xf8\x07\x92^\xf5\x80\x9a\xe3\x04W\x11\x03 \x98\xea\xf1\xb5\xb5\xc9p\xea\xeb\xa2\xed\x1c#\x8c\xfd4\x1a[\xda\xed\xa1|\xe4\n\xa8\xa4\xb8\xb2W\xae('\x0d2q50\xd6\x9b\x92hn\x12=f\x87J\xb2\x97]\x92\xb6X\x89K\x85y\xf9\xed\xe7|\x0b\x0e\xffr\x83[\xc5#\xd3`\\\xea\x19\x1f\"\x91\xdd\xeeaL\x87\xc2'\x807\n6\x0e+\xb2\x13W\xe0\x88\x90O\xfd\xb9\xd9\x97\xf2\x86\xdc]S\xafh\xdb\x8a\x85\x1do\x0f\xc4\x9e\xf4\xc9\xfcg~/\xeb\x11v*RT\xabr/\x8ey\x98\xab\xea\x1ff\xb1,a\xf5\xdd\xafDYd #K\xe1\xc4}\x93\x01|\xf9\x14\xb9\xe6I\x9c\x15P\xe8\x1aR\xb5\xe2\x14hKV\xd7Eea\xb6x)\x96\x85u&\xe2\xfd\x14\xae\x1b\x0f\xbc_\xcf\xb7\x11\xf4\x00D1~\xc6\xc9\x1b\x1a\xaf\x9d\x18A\xbb\x86\xde<\xd0\x00\xba&\xed\xf5\xccN\xee@\xfd\xedH\xd3-[\xda-17\xa3R`\xaf!Tz\xc0\xa7\xc4\xd1\xcf<\x07\xf3^g3\x85/\xb8\xf05\x15\xc44\x17\x84\x9b\xac\xff\xe0g\xa4\xe9Z\xda}\xcf[\x0e\xeb2|\xed\xd7-\xf1\"E\xf5H\xb4\x082{fV\x8ck\xd1\xe9\xd8\xf07\x9ee\x7f\xca\x9c\xfd\x10\xa1f6l\xd6\x8b\x1fl\xf2\xc0\x7f\xb7\x83z\xdf\xed\xf6\xdd\xf0\xb7a\xac\x19Vx\xb0\xf8`e\x1cxBy\xed\x92\xdd.\xb3E\xde\xffd<\x98\xd94e\xab\xadjE3\x9b\xed\xbf\xff0}\"n\x94y\x9a\xba\xa5SoS\x8e[\x82\x88\x11=\x8a\xee\xfaiU\xac\xc8\xc4\x88\x13>S\x9f\x06oH\xd9RT\xa0\xc2\xbeH\x08\xbdF\xc8\xe3j}N6\xc4\xc7\x83P\xc3\xc4\x84;\xf9\xb8y\x90\xc8\xcf\x83\x08\x8e\x1e\x84'\xaa\xd04\xd5y\xf8z\x10nA\x88lE\x98\xc1\xdds\x1a\xecF t\x07\x06t\"\x87\xcfi\xcc\xc3\xed\x83\xa9\xfc>\xa75^\xa8\x00\xc7\x0f \x03\xcf\x0f\xa6s\xfd\x9c\xf6H\x14\xdf\x0f\xe6q\xfe`*\xef\xcf]\xec\xb2\xe4\xed\x15\xe4\xfe\xc1D\xfe\x9f\xd3\x18g\xfdDp\x00a\x06\x0f\xd0m\x90v!. \xe4\xe4\x03B\x98\x13\x08\xb9x\x810\x8b\x1b\x08\xe9\xfc@\xc8\xc1\x11\x84\x19\"j\x8f\x95\xa7sp\x12!\x0b/\x11\xe2\xe8w\x10\xe2'B\x17\xc9\xf5\x84h\xbe'X\x9cOp\xf2>\xa1_\x1b\xe3\xdcO\x88\\[N\xe6\x80\xa2\xd6\x14d\xd1\xcd\x03\x05'\x17\x14\xcc\x12\xe7\xe3\x83Bx#\x01\xe7\x85B\x127\x14{\xda\xc1\x0fu=\x8aqD\xedg\x9dF\x93\xb8\xa2\x00.\xbe(\x84\xdbk\xf4\xa5r\xf1Fa@\x04;\xb9\xa3\x90X6G\xbfO\xe6\x91\xa2Vt\xd8\xba\x8bK\nF\x89B\x05\xd6\xfe1\x97S\n\xf3\x8f(=\xfcR\x08\x7f 0+\x97\x8dg\n\x01\xae)L(\x9cgcp\n\xef\xd4iL\xdd!\xe2\xe1\x9e\x82\x9f\x7f\n\x13j7\x9d\x87\n\x91\\T\x98P*O\x9b\xe7\xe4\xa5\x82\x8f\x9b\n\xbcPN~*L\xa8\xd6\x04\x9e*DpU!\\\x94\x10f-\xa6\xf5gpWQ{c.G\x98\xbf\nA\x0e+\xc47\xc4l\xc6U>N+\xa4\xf2Z\xc1\xcbm\x05\xb3\x06s\xf8\xad0\x7f\xae\x88\xe1\xbaBd\xab\xc3\x0c\xce\xab\xd3\xe0%M\xe7\xbdB\xb8] \xa2m \xc0\x81\x85p\x87V)\xb6\xf9`\x12\x1f\xd6k.\x82\x1f\n\x11\xbcXx\x98\xcaf\xe4\xc8\xc2l\x9e,\xc4se\xe1\xe1\x9a#\x8d7\xeb5g\xc2\xecR\xb8\xb3\x10\xe6\xcfB\\#\xc4xuHh\xa8l|Zpqj!\x8eW\x0b\xe1\xfa\xc7\xd4)+\xc7\x16\xe2x\xb6\x10\xc3\xb5\x85\x88\n\xcc\xe5\xdcZ\x06Q\x14\xd7d\x1e\xaeeI\xf1r\x9d\\\\\xc8\xcd\xc7\x05\x07'\x172\xf3raX\"#\xdc\\\xb0b\xba$~\xaee\x8b\xf3u]\x1c]\xc8\xc0\xd3\xc5:\x06\xce\xd5\x85\xb9|]\xcb\x1a\xc6\xdf\x85\x18\x0e/>Z<4C'\xc1QR\x1b\xc7oI{\x1f\xcf\xde\xa8\xb2\xc5Q\x1c\xcfX\x08\x99~S\x0c\x8f<\xb5\xe0hT;\xf1\xa3\xdcC\xe6\x18P~\x1e\xa8bU1\xf7\x14-l\xeb\xf5\xbe\x9c\xc6\x1d\x9et\xdb\xe1\xa8\x90\xc6B@zU\xb1(\x90\x9b\xc0\x1cw\x82\x85\xf2l.\x1eX\"X\xee\x18\x17\xc9\xbd\x96\x1bo\xaa\x8c\x8c\xab\x82\xa9)~\xa0\xeb\x0e\xcf\x98E\xa3U\xd7X\xa1\xeb\xecrY\x1e^\xcbJ+%\xa8?\xf1\x03\xcb\x82{\xf8\xbe\x11uZ\xbf\x85\xdem\xa8\xf6\xeb\xb3\x1dm`G\x8a\xe6e\xd7\x14\xf5hOe\xa0\xca>PM\xed\x0cT\xfd\x86\xd6\xd7\xf8\xba\xea\x99\xae\x86\x1dm\xda\xa2\x1dmJ\xb0\x9a/\xd7\xb4\xaa\xb7Sz\xe9\xf0\xf6(\xe0c\x7f\xe6\x1bl\xccI\x02\xff]2\xf3G}\xa1\xa8\x96\xc6\xaa+\xb2\x0c.\xee8b\xb1_\x8f\\\x93\xa2zq[\xaci\x7fk\x9c\x19lu\xd7\x16\x19\x80\x18q\xb9\x08\xc9\xe5\xc4=\xccn\xfc\xadQ\xc3 \xce+\xe40\xc5\xd3 \xf4\xef\xb3\xba.\xd3=c]\x97.\xbfX\xd7\xe5XP\x81\xfd\xa1\xa8\xae\xeaI>\xb0\xaa\xbb\xa5\x98\xa5\x96 \x17w\xa7\xbc\x81\xb4\xb8\xd6$\xc1\xf6f\xb5\x8bo\xed\x8f\xda\xf0O\x9f\x90t\xe7\xb1T\xa5\xd2\xea'L\xe4\xbd\xc6L\xcf\xd3\\\x00x6\x19|\x9b\x0b\xc3A\xc6\xc3R\xb1\xac|\xd40\xbe\xa4\xab\xeb\xdf|\xf5B\xf1\xa9\xc6\xac,\xbf);\xa2\xee\xc7\xf6\xb2mV\x0f\\#4/\xfb\xb8q4\xc9\x08\xfa\x14jN\xf1\xcbT\x0b\xf8*\xb7n\xbbG\xab\x9c\x96\x97\xbfr\x8eo\xd5vJ\xc2%\\Ctv\x15 \x1bNCB\xb9\x89\xfa\x8b\xb3\xc8\xe0b\xaf\xaf\xae<\xbb\xea\"El@\x84w\xd8E\x8a\xf9H\"\x19\xa5\x83\xb1\xca\x87\xf8\x9b\xd2\x85\xf4m\xd1\x8c:jW\xd7_`W\x92\x15\x8a:\x07\xb1\xbb\xba+)\xcf\xd8\xb7'\x93\xd8(\xa1}\x99\xa4\x86\x19\x97p\xd4.\xfb\xaa\xb8\x1b6\xdb\x83\xdd\xd84\xe8j\x14\xb9\xab\xbc\xbc$%\xa9Vs\x1b%\xbe\xaaF\xbe\xe8N\xb7\xfa\xed\xf6\x9a\xfa*9\xf6W\x1di:lGJ$\xb16e.\xe2\xd1j:d\xa9\xbc\xd1\xb0\x80\xd7\x9c\xcd\x8b\xdeG\x05m\x89\x01$\x96\xd1z\xe5]\x07}1%\xd5C\x8b\x93\xaak\xb4\x83\xdfq\x03\x0b\xbf\xe4F\x0d\x02\xe7\n\xdd\x90\xaacA\x0dY\x93\x8e`\xe5\x1a\x95J-\x0fH#\xb6 G\x19\xca\x1fM#\xa1j\xe9\x15\x1ac\x12\xcb\xa2\xed\x04\xc9|G\x9a\xaeX\xedK\xa2\x05\xd2\x08\x99z(N\xb5\xe1\xc1!\xb2\xb9\xc1\x85\x13F\x16%\xf1xt\xfced\xd9\x7f|\xcb\x9c\xe3\x84\xc61\xdd\xb8\xa7\x1a\xc74\xe3\x9db\x027\xda\xebQ$+\x8f\x03\x8dp\x98\xc5\x0e\xb3\xd8a\x16;\xccbN[\xff'\xccb\xde\xfe\xe6\xfd\x02\xe1\xfaXu\xd17\x15\xe8\xcf\xfb\xe2\x86\x94\xb4\xea\xc4\xb4b=\x8c\x18\xa4w+\xba\xeb\x04D\xba@\xe5\x1d\x06\xc6e\xdfk\x0d<\xb3\xfct\xc2\xaf\xf1\xfdi\xe4\x1c\x05\xa0\xdd\x17\x1d\xdf|\xe3\xc0\x83\xb2p\xc8I\xf4\x9b\x10z\xdb\xfaZF\xaffls\x18\xf5\x1eO\xefrB\x1d\x17\xae\xd7\xe5Hi\x85Q\x9d\xc7\xe6\x90\xfa[5?\x08\x8e\x1e\x04G\x7f\xa9\x82\xa3\xe3\xa38t\x132\xb4\xd19zIZK>\x88\xfb\xac\xceH\xdeZN z\x13T\x9c\xb3\x98\x9b\x9eQc#\xb0\xf1\xe8\xec\x0f\xa3\xb6\x9c\xb6\xab\x88\xef \x0e[^3\nd\x19\x89+\x10\xba@\xf1\x9c5=\xac:W\xc4J!\x10\x0f\x85V\x07\xe1\xf9\xda^\x11\x14\xf8Z@;\xebc\xe1>j\xca\xb1\x04\x88\x08\xfe#\xeb\x19\x0d\x125\xa3\xf9\x02\x0b\xe4\x87\x1a\xf9b\xf5\x88(=\xc3F\xb0/&\x97\xdc\x0c\xf9H)\xd4@\xd6\xfbR@>0k\x0d]\xd1\xe2\x86\x02\xe9\xbcU\xcbT%O\x99\xbb:\xae,\xa1&B\x9c\xa8\x11)k(eo\x9c\x1c\x88\x90\xbd;<\xe8q\xb7\xb5\xd3\xe3\x8e\"\x90Z@\xdb\xd5\x1c\xd5T\x96bw\xa7-\xaaMI\xf5\x9d\x1d-[\xb1\x8d3\x18d\xbd\xb8\x7fE\x83\xf5T\xac=X?\x7fQ7k\xda\xd05\xdf>\x12E\xc4\x8b\xa7\xabr\x1ba\xaao\x86Dj$\x0d\xc6\x9f\x0f\xf6@\xaf\xb7\xf6\x0c\x1d=Cj\xdb;\x8ftH8\xe4\x98i:\x08\xcc\xd4\"\xa5\x8c\xcb_\xc8\x11\xe1\xc3\xd6fZ$\xe07e\xd7&\x0f\xc9m\xc4a\xd3#$\xee\x08\xc4\x8f\xd2]Z\xbb(\xa1\xb6\xd0\\J\xcf$\x1e0%\x12\x8b)\x9c\xf25-\xf9\xfe\x05\xa9\x80\xacx\xf0mW\xf8\x94\x05\x02\xf6\xea\xb7\xbe\xad\xc4\xdeG]i>J\nlq\x89\xb9zU\x90\x1eN\xc8c.\x0d\x97g\xdb\xbbb\x96\xec|\x1c\x9f\xc21aM\x1ep\x16xG$\xef7\x15;H\x89\xaf\x85\xbe\xde\x1b\x01\xf7Q\xbb>\xfcC\x0d\x88\xcc\x01\x05\xc4\x1b\x9a}\xb7\xad\xf8lv\xcb\xbd\xffp~\xf2\x9a\x8b4\xc8\xad.\xa1vP\xf0)\xf2\xb4R\x11]/\x02&A>8\x8d]8p;\x93\x9eA\xc7\xfa\xeb\xcf\xfb\xa2\x11\x9dbSoj\xce\xb8\x8e\xdd\x19\xc1'\x9c\xf1\xbe\xc8[\xd7\x9e\xc8\xc8\xd2\xb0 \xf4+\xac\xc7$\xef\x85\xa8\xfd\x0f\xdd\xd6a\xfb\xe3\xb0\xfd\xa1\xff\xfd\x97\xb6\xfd!\x0b:\x8e\xe9|\xd1\x953\xba\xd3\x0d\xbc\xc4,h\xe1]lt\x97\x1c\xd2\xf5s\xc0\xa4}\x0f\xbf\xf4u\xdc.\x83\xf5\xc9'\n]\x0f\xa2\xd6\x86\xbd\x90\xc4\xb5_\xdc\xda9\xed\xb9'\xbd\xce)e\xed\x9d\xf3B\xd3\xd7t\xe1jG0\xe6\x97\xac\x9e\"V\xed\x16\xa5\x9e$G\xcd\xcd#\xc6\xbcB\xd4\xdd< \xea\x89\xe2\xd3\xa8(BXvz\xb2\xe0\xf4$\xa9i\xb6\x00\xc6Z,,2=E^\xda%\xfa\x1a\x14\x96\x9e*)\xcd\xbc8b\xce+&=EF\xda/\x17\x9dA(:J\":M\nz\xa6\x08\xf4T\xf9g@O\xef]k\xc3\xac\x92\xcf\xf9\xc5\x9e\xb3\xca<\xc7 1f\x7f9\xa6 0+Oj\x18\xf3I/g\x12]\x9e!\xb7\x8c\x8f$l*\x9f!\xb1\xcc\xf23\xacu\xa8\xb8\xf2\\Y\xe5\xa0&\xb0GJ9JD\x19\xd7:M\x13N\xc6mXZ\x82\xb3e\x92c\x1b#F\x1a\xd9_\xef(9\xe4D!d[[1\x83\xf8qP\xf6\xd8/x\x1c\x92:v\xb6R\x8a\xbcq\x8c\xb01&i\xae[\xce\xd3;\x9c!\xaaQ`\x92p+\xd7\xe0tX\xf3)s\xfa\xc5Z3U'\x9b4\xebX\xfc)M\x945J\x8e5c\x85\xd3\xc4W}\x00\xd2Q\xbdceW\xbd\x82\xab\xdej\x86Y\x11\xa3F\x98\xa2\xa1\x8ai\xa5\x06UR'\x86\xc1s4Q\xf9_\x0d{:9\xd7\\\xe7\x06tP\xdd\x05\x9d\xab}\n\x06\xb0`\xb2\xcai\xafj\xaa\x19\xc3\xf5M3*\x9b\xda\x9a\xa6\xf9\xd4L\xf5\xe5\x98\x9e\xc3\x0c\x05S\xa1X\xaa\xd9B\xb5K/g\xaa\x96\x1a\xee\x00\xd1+\x9d\xa5T\x8a(\x93\x065I%\x12\x10\x07\xe0\x858\x1dC\x17O\x07\xf9!|\x90t.\xc7\x10\xb7=.\x95\xc3\xcdU\xf0\xb8\xe1\xd0<\x93\x89m\xe1`Z\x04Y\x163J\x9e\x89Y\xf1\xcb\x15\x85\x89\xe0_F\x04\x1a!\x0ef\xb8\xa1E\xca\xc8\xc3t21\xa3\xb8\x98 u\xf6\x0b\xb0\x98k\x9e\\\x8c\xcc(NfD-\xe2\xbeK^ff47s\x8eL\x07\x98\x95\xcb\xc0\xd0\x8ci\xae|,\xcd O\xd3(\xce4\xa6\xa6\xbfNs\xd9\x9a#c\x97\xb6\x00\xd7\x14\xf2\xe6\x81sr\xe0\x9c\xfc\xa28'\xf8\xf7\x8b\x0f\n\x13)(\x98\xa9)T\xe3\xf4\xa0\xb4\x1f\xa0\x0f\x1c\x8b\xfay+\xb3\x02\xba\x89\xec\x15\xa7\x9d\x7f\x0f\xf2WB\x0c\x16o\xf8\xe6\x0b\xde:'\x8f%85\x86Z \xf2\xb3YB|\x96\xdc\x8c\x96\xcc\x9c\x96\x00\xabe6\xaf%/\xb3%\x86\xdb2\x83\xdd\x92\x97\xdf\"zk\x80\xe1\x92\x97\xe3\x12\xc1r\xc9\xces 0]\xa6q]PC^\xfeK\x16\x06L$\x07\x06}3\x89\x173\x9b\x19\x93\x9b\x1b\xe3f\xc7d\xe6\xc7<\x04C&3G&\x96%\x93\x99'\xe3g\xcad\xe7\xca\xb8\xd92\xc2qE\xf1e\xa63fPc\x9cE\xe3\xe0\xcc\xccb\xcd8y3\xc1\x90\xc2\xcb\x9d\x89\x8b8\xf2\xf1g\xfc\x0c\x9api\xb2\xb2h\xfc<\x9alL\x9a\xb9\\\x1a\xcb\x1c\x8fh\xd0\xe0!/\x9fF\x0e#\xa4Bs95\x11D\x12/\xaf&\x92Y\xe3\x84\xe7'\xb2k\xdcv\x10\xcc\xf2l\x8eMJ\xe3\xc4\xf0l\xc2\xad\x10\xc5\xb5If\xdb\xe0\x88\xee\x0c\x8c\x9b\x08\xceM\x88u\x13\xe6\xddx[-\x85{\x13\xc7\xbe\xc1\xf97\xb3\x198\xd1\x1c\x9c\xa9,\x1cw3E1q\xb2rqqL\x9f1\xd7\x07g\xfb\xa85\x18\xc6\xf7 \xafi2s~<\xac\x1f\x9c\xf7c\x940\x17\xf3\xc7\xbb0\xc5\xd8?\xf1\xfc\x9fH\x06P,\x07(\x82\x05\x04)< \x9c \x14\x7f:\x92\x87\x0d\x04\x01>P|y\xbc\xc0\xa1\xf9\xac p\xf0\x82\xc6\xa5\xf0\x15P\xfb\xc7\xdc\xc1\x8d\xf7\xfc\xe6\xf9\xb1\xb1\xdfrz,o\xe9l/e\xeeJNpF\x88\xf3q\xba\x9d\xf0\xbc9\xcb\xaf\x98~\x04\xf3 \xe1\"\x8cF\xea\\\x7f\x01\x97\xfa\xf9\x84\xed)F9\xcfr\n#G\x10;\x1c\x92yvz1\x96t\x18Q\xe8\xeb\xb8 \x08\x85\x12\xc1\xa5C\xaa\xa4\xda\xcc\xa1gX\xb3\x02\x08o\xf8\x10\xacL\x84tZ\xb6\x81 \xa1\x98\xc0YZ\x7f\x03\xcf\x1a\xb5\x86-$\x16pE\x02\x13K;wL\x1b\xe6\x9c\x11\x80\xbb\x14\xb3\x06\xbaf\xc7\x9c\xfb\xc3\x0e7<\xc9\x8f\xfc\x02X\xf7=\x12\xa4\xf0\xda\xc5\x8f\xd2`\xd1\xef<\x0d\x9b<\xb3/{\xec]\x90v\xcfc\x84\xa3\x9b\xe5\xe3&y\xb7>\x08\x9as\xbb\x9ded\xe2\xaa\x1b\xc2+\xef\xf8BYci\xfa*\xdc0\xe4Z\xd9Bx5\x0e9\x8a?we\x0e\x81:\xa0\x82:\xd8*\x1d\\b:\x8e\xd5:\x84\x0e~\xc32:\x9e\xf5\x14DH\xe8\x84\xd6\\0k\nF\xcd\xd9\x11\xb1\x96UXC'\xb2\xc2s\xcf\xc8\xa6\xcd\xdb\x01Sv\x85#\xe4v\x02\x15\x8e\xa9L\xea\x1c\x8f\x1a\xf1E\xebCr\xaf\xfc!O]\xa6F\x00\xee\xae-\x0e@\\;\x01\x10Q\xae\\1\x81H\xb8,\xcf\xc4\x9d\x01\xebUg0\x93\xb6C\xa0\x19\xd1\xf7\nl5\x9ey;\x05\x9a!\x0bY\xf2(\x1b\xa7\xbeE\x93\xd7\xa0\xcf(\x1c|\xfb\x14Ww\xf0\xedH:\xf8\xf6\x7f|\xdf\x9e\xb6\xc7\x9f\xb47\x9d\xb4\x1a\x1c\x99\xd2V\x86\xda\x9aP\xa4\x0c+\xc3\xb1\xbd\xd1*Q\xa4\xd1Z1f\xf5\x1b[U\xa3f\xaa\xf7\xc8\xe9\xc4X\xfc\xce\xa8\xe1\x84\xb5/\"\xc2\x15\xbd\xf4\xf5\xac\\\xc3\x1b\xa7\xb9V\xac\xc3\xa2lB!\xac\x97\xe3\n\xf1\xf7 \x0c\x1e\xe1Du\x9an\xe9\xdf\xf1\x944\x93\x12\xe9\xdf\xe7\xe83Mq4B\xd9sf\xf1g*\x8b\xfa\x9ab\xb2\x9ah\x96c\xcc\xb0\x82\xe8\xe8\xf5\x1ec5W5T\xaeM\x84\xb1t\x89\xd0x\x97\xfd\x0b;\xad\x9c\xe26\x1e\xe5\x902\xd9=\xcc8\x9c\x1c\x8d\x80\xc9n@\x1bv\x9a9\xbb\xa0\x13\n8y\xb8\xe3\xd5\xcc6\xc4#\x8e&{,\\t\x9fwKq\x86\x1bj\xf4%'\no\x1aB\x9b\x9aA\x87\xe4\xa6[l\x13\x0d\x1b\xf0\xa0\xa1C\xa55\x9d\xf3\x81\x7f2\xcb(\xa4\xe9\x96\xd0\xcc'\x9e\x99M6\xd3)\x98\xd9M\x97\xca\xcc%\x92\xe9\x97\xc7\x9c$\x8c9Y\x12\x93\xd7\xd7\\\x19;\xc50'\xcb`\xa2\xe9\x92\x9d\x9c#8\x89\x8aKv1\xb2\x92S\x05%\x9d\xe2\x91\x13e#\x11\xc1H\xe7D\x19\xc7\xd5\xb0f\xd0\x89\xc2\x90\x83\x08$\xd6\xbe\xbf\n\xe7=O\x06R\xc8>j\xe6l\x01\xc8\x0c\xd2\x8f\xf3D\x1f\x8d^nN\x863\x85\x1eeC\xeb\x16\xe7H:z\xf5\n\x1d2\x8eA\x01G[\xcb-^\xb4\xd1~\xf7oX]'I4\xc6T6$\xcb\xe8\xae[P\x8a1A\x84q\xacW5Sx\xd1+\xb9\xe8\x16[\xf4\xc9,\xa2\xad\x10+\xad\x18\x12U4\xe5\x14g\x08)FH(\xa6\x8b'\"R\x85!\xc1\xc4LR\x89H\xce\xa3\x9e2K\x18\xd1\x14B\x9c#\x81\x88H\x1e\xce\x12;4\xc5\x0ds\xca\x1a:\x05\x0dM\x957S\xc40\x8f|a6\xe1\xc2\xbc\x92\x85qb\x85A\x99B\xb9J\x0e \x14\xca\xc7\xbc\xd2\x84\x96\x86\x9f\x9d[\xac\xc8\x9c_\x880R\x820B|pT\xe4\x9c\x82\x83\xb3\xa4\x06mi\xc1|\xa2\x82\xf9\xe4\x04\xa7\x7f\xdd\xa0\x84`H\xe7\x12xT\xd4\x0cB|\xb8\x04_\\\xf66\xc5d\xb2\xe0\x1e\x188\x11@\xa5\xf6P\x91\xbd\xb8\xb2N\x11\xd6\xf3K\xea\xc5\xe5;Q/\x0f\xd3\xc6CU\xf1\xe2J\x91\xa4\x84\xe7\xd6\xc0C3\x8b8\xa8\x1cu\x94\x8cZw\xe6\xcc\x82\xaa\xdc\xb9\xf4\xed\xbc\x95 \x1cp:*\xd4%\xea\xd8\x0d\x15\xd0\xccy\x15\xec0\xed:\xf3\xe8u\x82j]\x82\xbb\xf2k\xd4\xf9\xfd\xc3\x0c]:\xbe\xbdh\x98\x8bS\xa4C\xeb\x06^\xd0.\xaeU\xe6\x1cj\x10\xac8dU\x9bs\xc9\x8e\xb9\x15\xe6f\x16=]O\x0e\xed\xd9*\xa5)\xc9\x055\xe42T.Y1\x0e\xd9\xde\x87\xb1Z^\x8cV\x9cS%\xceY\xa5\x04B\xea\x14\xf17S\xe8\xcd+\xf1\x96\x18\xd3\xcd\x11t\xe3\x7f\xfd\x95^\xd1\x01\xe5\xab/\xa6<\"nx\xc1r\n\xb7\xcd\x97lSGr\xd2\xe0p~=W\xa6\xcd\x90f\x9b)\xca6\xac\x0b\xa4\xbdA\x8em\xb6\x10\x9b\x14\x8e\x92\xe6\x06 \xb6\x8c\xe2k\x86\xecZN\xc1\xb5\x80\xd4\x9a\x84\xd5\xb0\xc2/\xc8\xe5\xaa\xe8\x815\xc7\xdf\xbc9\xfdAl\x1d\xbc\xab7\xd1\xe8\x9am\xbbY\x16\xd5\x9a\xde\x99\x83\xb2\xa8:\xba\xa1\x83\xef\xc5b\xb4Re\x04\xf8X\xa67\xb4\xea\x1e\x18[\xcb\x1f\x1f\xfd\xc5\xe3\xfbH\xd75\xc5\xe5\x1e\xd1\xc5\xc5\x8a&\x12J\xd2\xf4\xc4\x04\x10T\xa7E.\xe0\x15\xc9;\x0dy.\xc6\x9b=\x81\x1d\xabv\xd1\xd7\x16}c\xc1mCv;\xe6\xc2\xb8H\\'\xb5\xea\x98S\xe2EB\x0c\x12S\xc4Q$Q\xc0\x16\x8a\xaa\xed(Ysm7r\xcb\x0fc\xdd\x17\xc2\x1b\xc2y\x9f\xb8\x8d\x13\xd6\xb5\xfa\xd2\xd2\n\xc4\x1f\x148mT`\xa5;8|\xfd\x91A\x05G\xfaB\xef_\x8a\x0d\xe8\x1d)\x9aV\xec\x122_\x15Wjw\x99y\xd1t\x1dDh\xcbb\xc5c\x00\xbd\xd42\xc7[Vd\xba-:\xee}\xf6|\xa7\xb7\xadG\xd34\xbd\xa3\xab}\x17@\xf5\x8d\x1d\x8269\xb5]\xb3_\xf1\xc5\xb3,\x11\x8f}+\xe0n\x80E\x90w\xfc]\xe3.\xc1\xb2\xde\xf8\xfd\x8fj\xdch\xd7\x83@\xe3F\x1d\xd8\xe8\xee\xd6\x13x\x83\xcf\xeb\xca\x9a`h\xe8\xab;[\xe2;\xd2\x9eVWut;lH\xbb\xbc%Ug\xef\x9d:V\x96{\xcf:\xf9;\xd2\xfe\xc4m\xa9\xc0H\xc5\x9f\xfb\xaa\xe8\xf8\xc9\xf8m\xdd|\x81[\x89\xe9\x11\xb3mw\xc7\x8f\xe8i\xc3rXh\xc5b+\xa6<\x85\xfa\xdc\x0eE\x1a&\xdb\x0d\x8bkW\x9d\xc0\xa8\xad\xeaJB\xa30\x03\xacI\x87\xc0\xfan\x18\x03\xdc\x88\xc4\x9ey\xbf\xcbG\x1e\x19E\x7f\x965\xe9Hd\xddG`\x12\xb7\xb7}K:\xc2!`\xd5=\xb7\x0e\x0d\xed\xf6M\xa5v\xb1\xd5\xc6?\xdf\x8b\xa8\xd6%m\xb4\x81\x0e\xa7\x1d\xfc\xf0\xf9\xd3\xb9fn\x8c\x9f)i\xb5\xe9\xaea\xd7\xd0\xab\xe2N\x80R9*\x9d\xd3\x8f([\xb1\xb3!\xc1r\x15\x99\x890\x83\"7\x86\xf6\x99\xb6\xa3\x83\xe5\xb7t\xd7\xd0\x15\x8b`$\xa4S\x1c\x9bqlgQ\x96\xb0\xabw\"\xc09\x82\xcb}\xc7\x0bB\x1b\x1e_(6\x93fL\x0e\xaa_\x8d\xaa\xb3\"\x1cM\xd8\x01)\xdbz|\x02\xf7C\xbb\x19Kl~\xfe\xf8Nu\xd4P\x14b|\x12\xe6\x0c\xc7\xf4\xe5z\x03E%\xbe%\xebO\xe1\x8f!\x0d\x1f\xc2\x9b\xac\xe1\x8d\x07\x9c%\xd2\xd4\xf8\x07\xc2\xa6\x8d\x10XO\xc24~\xe3ULl\xc5\xa7\xf8aV*\xda\x81K\xf2\x85\xde\xbf\x18\"\x0e\xb6\xcao\xebUA\x86\xb5\x0d\xc6\xc0\xe5\xbd\xce\x19,\x19E\x10\xf1\x05w\xf5-\x90\x01\xd6 kzCK\xf6\x15\xf9\xe6\x18\xe9:\xb2\xba\xd6\xcf\xc4\xb5\x011\xee\x8f\x06jD\x11)\xbf\xa1\x9b\xa2\xfa\xa6\xacW_\x8e\xfa\xbf\x9dTk\xe3/o\xae\xe9\xea\xcb\xf9\x1d\x9boQ+oiY\xdc\xd0\xe6\xfc\xce@\xe5\xbc#\x1deK\xc1\x86T-\x91 \xb0-\xb9g\x0b+%&\xbdo9;\xe5\x9a\xb6T\x0eLGh\xf6\xfb\xac\xa1\x99fKyR\xedO>\xef\xa1{\xc6Gp\"6\x99\xc0;jB\xfd:#\xa5\xc0G*\xc8I+\xc8H,\xf0P\x0bf\x91\x0b\xf2\xd1\x0bB\x04\x83\x89\x14\x83\xdc$\x03\x0f\xcd 7\xd1\xc0I5\x98M6\xb0\xec\x11^W$\x9f\xac\x84\x83\xd9\x94\x83\xec\xa4\x83Y\xb4\x83\xfc\xc4\x83\x8c\xd4\x83\xdc\xe4\x83\x8c\xf4\x83\x18\x02BF\n\x82\x9b\x840\x8f\x86`\x19\xc3h b\xca\n\x12\x13\xe6R\x13,s6Ua2Y\xc1\x11\xc6z\xa6bO\xe8\x1a\x9a\xa5'\xd2\x16l\xc7\xa5h\x0c\xa2\xfd\xb5\xdf}%\xc8L^\xc0\xe8\x0bY\x08\x0c\x99)\x0c6\x89a6\x8dad\xab\xb3(\x0d\xf3H\x0d\x01\xa4\xbf\x93\xd8\x10Am\xc0/\xaa\x8f\xa77\xe0\xef\xff\x0d\xaf\xfb$\x92Cl\xe5CD\x07\x7fM\x83d\x87$\xba\x83\x0d\xee\x9dIy\x08\x90\x1e|\xb4\x07?\xf1\xc1\xd9*\xb1\xe4\x870\xfd\xc1&@\xcc\xa2@D\x91 \xa6\xd0 \xf0\xa6\x08R!\xb2\x91!\x1c\xf9\x1b=)+%\";)\"3-\"/1\xc2C\x8d\xb0\xc9\x116=\"\x17A\"#E\"7I\"\x96&\x11A\x94\x88\xa6J\xc4\x91%\x10\xba\x04~7\x7f,\xa8\xdeO\x99\x88&MD\xd1&\xac\xc2\xe7\xa4Nd'O\xe4\xa4O\xe4$P\xcc\xfb\xdeA\x12E\x98F1\x10)|g\xc9\xa3]C\xfb\x8cD\xed6\x0e\x8f\xf0\x8f\xce\xc6\x9d8\x13:\xae\xee\xc7\xc7:\xb1x'qz\xa6\xe9\xf0\x08\xd7\xa2vn\xbf\xe5\x8b\x14\xde\x9f\x8c\xcd^\xef\x99\x9cv\x98\x1f}0\xd7\x8d\x8eD\x90\x85\x13v\x0c\xd2=\xc0\xb6*r\xd0\xe1\\\xc6\xa5,\xfa|\xe8\x87l\xc7\xdb\"\x85\x0e\xb9]\x85\xc9\x08\xc2\x98\x0d\xbfpv\xae\xf3\xbb\xe4;\x01f\xc0\xd5\xe5e\x81l\x16\xbf,\xeb\xd5\x17iKu\xda\xbbk\xd2^\xa7\x9cS2C\xda\x81\x07s\xd3\xd7\x8b\xbe\xcd\xd6\xb4\xdd\x91\xa0j\x94,\x13\x9b?\xf8\xe3=j\xfcM\xbd\xa6\x9a-\xd3L\x0c\xf8\xcb\xf6\x0f\xe2t\x96\xd9S\xe5\x8c8C\xc7\x9c\x0c\xff\xb4Gj\x9d \x1fm\xc8\xed2\xf1\xa8w4vX{\xd6\xfbn\xb7\xef\xf7\xf8\xb5\xf3\xb0\xa7-\x94\xf5fC\x1bx\xc6\xfa\x960\xfa|\x01?\xf0C&\xcdJUW/\xd6\xb4\xa3\xcd\xb6\xa8\x8a\xb6+V\xda)\xf4\x03\xbb\x1b\x04\xaa\xa7\xdb1\xbf\x99Hn\x01\xc9Q[\xea\x86\x10\xefe\x9et\xeb\x8f?\xce\xa1r\x87\x9c\x83k\xbf\xb8\x8f~\xddg\xe2\xfa\xebX%DrTE$o\x85D\xf2WK$\xe7\x89\xb9H\x81\x1a\x8a\xe49\x1c\x17)\xc2Jh;Q\xa5\xa9\x93\x90\xbf\xf0.\xd0\xa0H\xa1Y`\x9c\xc25\x99<\x83y\xfb\x18V\xfe\xd9\x13\x9c\x9eB\x15\x9b~\xa0m\xb7\xa1\x86=\xb4~\xb4\x8e\xb3!P\xb8\xb9p\xc4\x911\x15\xe2KPb(\xf7X\xd7\xcf\x86\xc8:\xc9\xeb\x17=\xd0\x0f\xa2f\xa4c\x14a\xa1rt\xe7\x93\x8c\x11\xf4\xcc\xd4\xc7#\xf8]#.MV\x073C\xc01\x11\x07\x18\x9d\xb1\x82\xfbqd\xbd\x9dmg!\xd2\xa3\xb8e\xddA7q>\xbc\xe1\xa0\x9b8\x03\xd2p\xd0ML\x831\xcc\x041d\x860\xcc\x000\xe4\x86/d\x03/\xe4\x85.d\x03.\x84a\x0b\xd9@\x0b\x07\xdd\xc4\x83n\xe2\x1c\xe8\xc1A7q\x1e\xc4 FJ\xf0\xa0\x9b\xa8\xa5\x83n\"\x1ct\x13\xadm\x8d\x10X \x13T\xe0\xa0\x9b(SNx\xc0A7\xf1\xa0\x9b8\xb6\x12\x07\x01\x88\x00\x00\x1ct\x13\xa7\x1f\xfbO\xff\xba\xc1#\xff\xd0\x81\xbfr\xdf]\xb1\xa5mG\xb6\xbb\x94\x8d\xc4\xf1\xfef1l\xc1\xec\x1azS\xd4\xfbV\x1cB.\xe0[\xb6\x82\xe4'\x91-\xfc\x1e^\x1dA\xd1=\x15\xcd~\xcb\xff\xca\xbb\xc8\xba\x18Q\xcd\x06\xcd\x0c\x90\x9b>}\x19\xc77\xa4\xc0M\xdd\xf5\xd1\xa8\xcc\xf1\x1di\xbb7\xf5v[tz\xe6#\x07\x07\xaf\x8eFn\x96\x95\x88E\xa3m\xd1\xf2\x9c\xd4\xf4s X\x1e\x08\x96\xa1\x03\x8f\x03\xc1\xf2\x1f\x81`\xd9\x1f\xf7H\x14\x880\xd0s)E\xdc\xb8\xa2m+\xa6\x0e\xe4<\x00\xe4~\xd0\x91\xe1\x9a\xfa\xd2@Q\xad\xca\xfd\x9aE|uK]\xa6e\xfer\xb2h\x8d\x86\xe2\xaf\xea\x19(+\x9c\x13\xce\xb7'\xaa\x8er1\xa3\x86\x92\x16\xde\xd5\x1b\x03\x84%\xcardm\x0ei_^\xdd\x92u\xd4[\xe7\xc1\xea\xb8\xa0z!#\x04\xaa\xbeZ\xbczu\xc4\xfe\xe7\xb7\x8b\xdf\xf1\xff\xfe\x8e\xbf\x81\x7f\x97\x01\x17\x13:\x86S\xf7{Aw'\xb4\x03X\xc8`^\xe1w>\xecBwd\xd3jG\x9a\"\xdaV\xc1:\xe7\xd9\xb7b\x9a_S~u\x96\x06\xdfY5\xf7\xbb\xae^p]\x82\xb6\x18.\x0c{Sowd\xd5}St\xc7\xcc\xb9\n\x17b9O\xdba\xd2\xbb\xae!\xcb\xcb\xa2k\x97\xfc\xe2?\xeb\xfc*\x06\xe3B\xcb\x91\xefF\x9d\xa0\xe5\xf8p\x08\x8aQ\x0f\xa1\x03a\xee\xd7\x89{ 9R\x87\xf2-K\xe6\\.\x8bNL,C\x83\x17\\\xc1\x8ao\xfbu5\xd0\xaa\xdd7\xb4?x\xe8\xef%\xe3_\xac#_h\xcbw\xf6\x85\x12\x9a.=&\xed\x89\x0c\xc5R\x88\x076\xc2\x82\xa6\x19\xa9r\xacj\x96CC\xc9\x1aZr\xa5\xb6K\xc5\xdfY{r=+\xae\xa9XWrs\x16\xf6b\xe7\xab\xff\xd0\xdd\xdd\xa2-6\x95~)\xdc\xa7bS\xfd\xd0\xc3\x90\xacV\xd6%\x94_\xc0\xa7\xd3\xef\xde/\x7f\xf8\xf0\xf6\x04Q,\xd6\x7f}{\xfa\xf1\xe4\xcd9\xf2\xc3\xf9\xc9\x7f\x9d\x7f>~\xe7|ey\xfc\xf9\xbf\x90\x1f\xdf\x9d|w\xfc\xe6\x8f\xcb\xe3\x1fN\xdf\x7fX\xf2H\xd9~\xe6\xe4\xf4l\xf9\xea\xdf^\xc9n E\x96\xdd\x05v`\xebdk\x0c\x91\xb6\x98\xd1x\x9b\xc1\x96\xfd\"\xf6z\xbb\x16X\x18\xdf\x0b\xben\xf6\xa4a\xfe\x89\x0e\x08O\xfe\xe1X\xfbi\x87j\xab\xbaj\x0bq_%aK\xc5\xa2\xed\x9a{\xde\xf5\xca\x12\xc4\xca\x80e\xc6s\x1at\xe4x\xcfz\xc3?!\xd0U\xdd\xde\xb7\x1d\xdd.\xe0x\xb7\x13#\x9eu\x01q\xc2%:\xa5\xda\xc3\xec\x8d\xaa\xce\xd6\x9b\x96/\x0b \x02/\\Y|\xa1\xfa\xbbra\xa0\xbd\xa3\x01\x18Y\x1f\xdd7Dj^\xd6;Z\xb1V\xda\xb2\xfc\xce>\x02\xd90\x97\xdc\xc9\xc3\x83\xa2\xe4v\xc9\x9aU\xb9\xa2\xb7\xb0\"\xbd\x1c _e\x14\xed\xd0\xec\xbc\xb9\xe4\xb6\xaet\xc5E3\x94\x01\xdaZ\xee\xfc\x16WW\x94\xcb\xc0 C\x84\xd5\x86\x1f\xd6\x10\xd1\xc6m\xc7\xfa\xbf<\x15\x11q\xb3\xfc\x1a\xc3\xec\xeb\xe8\xcf\x8e^\xd3\xef\x8b\xcb;\x19\x87\xaf\xd5w\x0d6\"\xe5\x9aL\xe6\xd1\xd0\xbf\xf0\xaf\xb2\xc0\xf2\x14]\xfe\xb5\xf5\x17='\xa3\xef\xf1\xd5\x1b\xdfk`M\xf6\xb6^I/ \xcd\xdf\xd0F\xf8}qC\xa4\x02\xb2\x88)T\xc0\x81\xadR\xc8!\xf9\xda\xfe\x93\x08\xe7\x84\xf6\xe0\xb8\x1c\xa2\xdf\xb0\x9a\xf2\x1c\xefu\x91,C\xc3\xba\xa3w\xdd\x9e\x94\xd6&\x08[b\xee\xd4\x82F\x1e\x89\x8d\x9f\x91\xf6x\xd9\xcd&\xe2\x9a\xb1?\xbf`\x93\x90|\xef\x8d\xea\x9eGH\xa1\x8aV\xce\x00b:`-6\xf6\x837\xa4)H\xd5\xa9\xdd\x8d\xcb}\x7f6\xda\x87.\x83\x8a\xe6\xa7\xb7\x7f\xd0vz\x17p\xce\" >\x02ON\xcfX\x99\x8e\xe0\xbe\xde\xf3s\xe6\xc1\xf9\xeeH\xabmA]\x9c\xdf\xbd\xa9\xab\xabbs!\x068\xdf\x9fB\xe2$\xf9\xfe\x85*\xed\xf7\x82\xf8p\xa1\x9a\x93\xe5& %\xacPl)\xb3\xa6\xabb\xcd\xa7\x01\xb1\x1d,\x07\xaa4$_1?\xb1\xaf\x8f\xfen\xf1\xd5(\xaa\xe9\x95\xf0\xf6\xddu\x92\x00\x9c6\x98R7;\xfe\xdf\x86u\x88\xa7\xff\xcfK\x0dm\xf1\xd2.\xd2'\x9e\x03+\xd4\xd3\xfee\xf7\x9aM/\xcfH\xcbXwH\xc3\xdd\x05\xd2q\xac\x95{\xe0\xcd\xae\x99\x93r\xac\xda_\xd8\xd8\x12\xe2d\xf5\x15\x8f\xb1y\x8c\xc3\x01\x1b[\xd2\xc9+\xa7M\xb3j\x02\xf9\xa6^\xdf?m\xc7{\xfer\x9d\xc4\xbf7\xdfVUV\x15_e\xd7\x14[~\xf6\xcbm\xf5K\x92\xba\xa2\x16\xb8fG\xee[s\xfb\xeb\x8a\xf6\xc3\xfd\x8aj;$\xee6\xfc\x96\xf6\x92\xc9WT\xcc\xca\x1b\xd2BYl\x8b\xaeo9}\x99\xab\x95]\x16r\xa4So@}B\xf5\xe1\xb5\xe8\x8b.lS*\xc5h5;\x83,\xadn}$\x8d\xbb\xaa[\x8eM\xa27\xa4\xdc\x0bq_>]\xd6kA,Y\xd7\x1c%\xaand\xd0\xcc\x88H@\xec\x87\xe8\xe6\xd5\xf9\xf8\xd0]\xd8,*tri\xdb\x15[\xbeAsS\xb0\x19p+\x15\x88\x17\xc6\xb8\x88\x02\x03\x8a\x85\x0e\x86p\xb07\xea\xd0m:\xcf&\x9do\x8bnM\xabz\x8bmvyw\xd1\xb0\xd2\x06_\x0bm\x8f\xbd\xa9\x8bJ[\xe5\xf3KX\x06\xe1\xe4\xaa\xde\x16\x95p\xa9\xecS\x92J\x16\x02\x93\xd4x\xff\xe1\xfcD\xb0R\xe4\xfa\xb1\xd7\xff#\x15\x9cV\xea~\x85\xdeS\xeb{\xfb\x961qLgg\xd2w\xa3v\x18\xff\x97\xf7\xb0\xa975_\x99\x8e\x0f&%\xbdE\x96\xc7R\x97\x14R\xce\x12\xcfD\n9\xbf]Q\xbd\x8fnH\xbb\xe4\x832\x11\x07\xb3\xb7 \x15\xb24\xd6G\xe8\xb3\x00C\x92sC\xe4\xeaG\xf6}\xbe\x9e\x1f\x87Iv\xa7\x93\x1bDf\xd3]r`\x17\xbf\x12d\xdfCl9L\x0d\xea\xd5j\xdf\xe8\xbedG\xee\xa7]\x16cU\x8d\xdfO\xd1\xd2N\xa8t\x1b\xdeK\x91\x10\x0b\x16\x000\x97\xb7#\xf7\xca{\\\xb1E*\x9c^\x19\xf6zS\x83\xe0\x08Y\xad\xf8\xf7\xe4\xb3\xc3\x8e\xdc\x0f\xaf\x9bM\xc0\xfd<\xab\x9ax\x96\xa3\x8e\xba;U\x9eg\xc2G\xee\xe5\x12\x8d\xffu\xad\x96\x87\xbc#\x9b\x8d\xad\xe6\xf1\xe7VN-\xed\xa4\x1f\xec\xdf\xe6\xc1\xf4\xaf\xab\xba\xfb\xb5\x84\xb3 \x7f\xcc&9\x1e\xd0]\xf5\xfd\xd9\xb4\xa5f7dN\xd0\xfb)_\xd9\xc7~5WW,\xae\x86&f\xf3\x81h\xaeg\xb4\xe8o\xda\x1a}\xc3\xe1\x8a\x91\xbd\x03\xd6,\x0c\xf0&x\xae\xa0\xe4\x8a\xd9\xc0s\xe0\xe5\xee/\xdf0\xbfX\xcd\xbf(\xfb\x9a:\xf9aT\xba\xa7b\x93\xe3\x92\x94\xa4ZQ\xd6g\xec]{\xb2c\xde\xb8)HG\xb5L\xd5\xfa\x06\xe8]\xc1\xa60Q\x99\xd55a\x1e\xb1\xb6\xb9\x1a\xda\xeam\xb0\xd2\xcae\x13_\n\\\x91\xa2\x94/u\xc5.&\x0c8/vj\xd4\xf7w\xe5t\xc5N\x03\x16\xea;\xee\xbc!\xb8\xa7*\x98C\xe6\x8b.\xcd\x18\xf7\xd7c\xd7<\x16b-6U\xcd\xaa\xa4\xb1Er\xa9~\x1b\xf6I\xd8\x9f\xcf\xef>\xd1\xe6\xa6X\xd1\xa1\x85\xe0\xe3\x99*\xa9\xe8\x9d\xfa\xfe\xaa\xbb\\\xaf\xe1\xaf\xb4\xa9\xe5\x011\x87\x90\xb0|\xd4\x9c\xed\xb4\xc0\x1b\xcd\xaa/\xff\xab>\\\xef\x86\nh\x9bx\x8a\x11\xb9*\xf9\xd9\xce-a\xfe\xf4\xaa\xbf\xe3\x88\xf7\xc0;\x19\xb3\xf2\xdbu\xf8\x01!\x9b\x0e$\xbc\xc2Y,\xf6E\xacR\xb1?\xce.\x14\x01u\xac<\x88\xae\xf7b\xdcuU\xde\xbb\x0bu\x8c\x96\xeaxR\xb1\x84Zz\x7f\"\xb1\xe5\xb0\x95\x8e\x8a\xec=\xe3\xe7\xfc\xee\xa3\x08L\xa27d\xba\xbb%\xdf\xb3N=\xf9\x03\xb3\x9f+C\xca\x055\xe4\x16\x0b\xf0\xb6\x08\x05\xdf\xc8\x0b\xb9F44\xda\xd1\xc7\xf4\x11\x8f>\xa0\x8dz\xf4\xf7\xe3\xd1\x03\xb1\xa3\x1f\xbc\xf3]\x1e/\xa0\x19\xfcx\xf6\xc6\xf2\x04hm\x92\xbd\x01j\xe5!=\x02$y\x05\xb4x\x0f\xe7\x19 \xc9;\xa0\x85{8\x0f\x01\xb6\x97pM\xeb\xb6\xaf\xe8G\xac\xfc'\x1b\x94}\xe7\xb3\xba^\xff\x9a\xb4\xa7\xf7\xbf\xa0oJ\x94(\xe9\xeez\x01 \xd3gDE\xd6\xa6\xc4 \xc4lw8w;\x1cr'\xfc C\xf2\x04\xa2\xf7\x19|\xd2'\x80\xcb\x9fx\x8d\xc7\xc8\xa0\x80%\x852\x98\xc4\xa45\xdc-3\xaa\n*\x8b\xc2\x9f\x1aI\xa3@t\xdb\xf8$R\x00\x93I\x897\xfd?\xe6\x1a$\x967\xef\x97L\x01\x1f\x81\x1e,\xe9\x14x\xa4\x95\x9eSN\x05\xbc\xdf]$\xf7\xd7\x07\\Z\x05BKH\\b\x05<\x8d!\x92G\x9f\xc4\xd30\"\x85\xb5I\xb8 \xc7o\x81\n\x89\x14\x92_\x81`\x05E\xf2\xca\xb0@LeE\nWY\xa4\x80$\x0b\xc4\xd5^\xa4\xa04\x0b\xc4[\x0bm\x1a\xe8i\x8aL\x8b\xd7\xe0XG\xcc\xfb\xa8\xa8H\x9c\xa6\x89Hq5\xcb)\xdb\x02A\xe9\x16\x98.\xdf\xe2\xb0\xe6l\x80\x98\xeag\x14wa\xc9+\xf0\x02.\x91\x17\x88(lV\xb1\x17p \xbe@\xb0$\xb1\x13X\xe7\x12~\x81\xd0\xdc5\x16\x80\x81\xe8\xb9v\xaa\x10\x0c8\xc4`\xbc9G\xc6*\x89\xc20\x80\x8a\xc3@\xf6\x82\x04\x84bx\x86wX\x01\x90\xc9\xc0\xed\xfe;\xc7\x1d9\x01\xcf\x1c\x1a YEd pWNN1\x19\xc8)(\x03\xfe\x1bsf \xcb@Fq\x19\x08\n\xcc\xc0T\x91\x19\x98#4\x83\xb5\xd8\xfdN\xed1\xe3\xb7\xe7\xcc\x10\x9cAl\xf5P9@o\xd0\x99'<\x83\x98\xe3\x80\xf5\x0e\xbdE'\xb7\x00\x0d\xcc\x17\xa1\x81\xfcB40O\x8c\x06\xe6 \xd2\xe0C\x14-d6\x99\x1a\xc8.U\x039\xe5j J\xb2\x06r\xca\xd6\x80\xf7\xb6\x9dy\xf25\xd8\x18Go\xdc\x11\xae&(j\x03\xb3\x85m\x10\x83\xd8\xbd;\x93\xe5n\xc0\xbd\x14\xf3N\xf1^fcx\xfe\x9f(\x81\x83\xb9=\xe7-<\xa1r\xcc\x93\xc31\x8cqq\x1c\xf4.\x9e,\xb28\x90[\x1a\x07\x10y\x1c\x98/\x91cX\xeb\x90[y\xe6\x89\xe6@HK\x06|w\xf3D\x08\xe8\x80\xebR\x90\x04!\x1d\xb7\x0dKHa\x96\xa8\x0e$4FH\\\x07\x82\xf5\x0e\x8a\xec@\x9a\xd0\x0e\xa07L\xcc\x14\xdc\x81\x90\xe8\x0e\x04n\xee \xdd\xdd\xe3i\xa5X\x11\x1e\x88\x10\xe2\x01\xf4\x0e\x9fY\x82<\x10'\xca\x03\x93\x84y\xc0\xd90A\x81\x1e\xc8'\xd2\x03\xeeRX=-\xab`\x0f\xcc\x14\xed1La\xb7\xfcd\x96\xf1\x81\xccR>\xe0\xbf\xeb\x07\xbb\xed\x07\xbb\xef'\x97\xb4\x0f\xe4\x94\xf7\x81\xec\x12?\x10-\xf3\x031R?\x10/\xf7\x03\x91\x92?\x80\xdf\xff\x83\xdf\x08\x13/\x10\x13\xba\x03(Z\x02\x08\xe2d\x80\x00\xabFN9 \x98+ d\xd8B\xee\x06\xca)\x12\x04Y\x85\x82`v\x7f\x08\n\x06A\x84h\x10\x8c\xee B\xc5\x83 z\x13\xda\xde/\x9f%$d\xf9\xf0uA*CL\x08`\xae\xa0\x90aL\x14\xc9\x16\x15\x02\x9f\xb0\x108\x0e\\\xbbG8w\xee\x1cG\xaa\xde5\xa8\xff\x18\xd5Ul\x91\x1e\xf6\x84\xd8{P\xea\xad\x93J\x01\xe5 \x08\x9f\xa0\xe6\xca\xc6#R\x04}6.\xa1\"\x08\x8e.\x95\xa6\x0b\x169\x0c\x92\xca\x16-\x82\x88\xe2L\x15/\xb2\x0ciGX\x96\x80\x11d\x131\x82\x08!#\x98/f\x04\xc1\x96\xcb*j\x04\x98\xb0\x11@\x06q#\xc3\x9e\x88\xbfk;\x9a\xcf&r\x04Y\x85\x8e Q\xec\x08\xfcL\x9cY\xa2G\x9a\xa1^\xfeH\x17>bi\x8a\xf8Q\x14 Q\x16\xbbG$\xca\x7fw\x1a$Q\xbe\x86\x00\x13\xbd8\xc4oi<\xee\xd0\xe4\xb8`\x93\xce\\1>\x94}\xe3\xf4\xee8\xeb\xc6\xf1\xb8\x0f\xe96\x99i\xa3\x1b\x99C\xb2Q\xa4\x1a\xdd^<\x9ff&\x0d\x16\xa1\xc0\xa2m\xe8\xa0\xbeb\\\xc3L\x94W\x9c\xee\x1aKu5h\xaeh\x9d\xdc\xfeb6\xb5\x953-\xf5\xa10\x81\xd6\xdae\xa4\xb4\xe2t\xd6YTVE^\xd5\xecyh\xac\x16\x85\x15\xfd\"Xw\xcaJ[\x9dNY\x9dLW\xd5 \xaaz[M\xa2\xaa&\xd0T\xf1\xde\xcd\xa5)D8\x81\xbb\n\xc5@\xe5\x15U\x13\x98\x1c\xc1\xbf\x1a\x9c\x86t)|\x08_\xde[_\x9d\xbbB\xbe\xd6\x05\xbe\x8d\xc6\xfd \xbd\xba\xa2\xab\xae\xe8\x8f\xb7\x9elH\xbbk\x8a\x15}\xd2\x87?\xc2M\xf6\xfd]\\\x07Qo)l\x8bmQ\xed\xb72[\x05\xb5\x18\xe0\x12[\xba\xdd\xd5u\x89\xcft\xdf\xd1\x8eG\x99?\x15\xdd\xf5\xf9];\x01u\xff@\xd2,\xe7w\x0eI\x96\xeeND\x13F\xbb\x1a\x8bc\xf9.\xff\xc7\xb2\xb0D\x0e\xe3\x18\x01\xf10}\xc7\"jG\x9an\xd9\xd2nyM\xc9\x1agi\xa6\x81\xb1\xea\x8e8\x91X.T\xb6\x0f\x93mW\x11B\xebF\xe7zQz\xa83\xd2t-\xed\xbe\xe75\xfe\x95\xf1#\xefk\xa7o\xf5\xaf3\xed\xd3\xe4iO u@Z@\x14\xf7\x92\xb4\xc5J\xf28\xd8Z\xce\xd1R\x93\xd4\x8a\x8d\xca\xeb)\xb8n\xf7\xa8m\x88Dv\xbb\x871\x1dZ:\xb3\xa0\xb1ji\xd5\xee[X\x91\x9d\x88\xd3:\x01\xae\x92\x7fn\xf6\xa5TI\x1a-\x03y{ \xf6\xf4a\xcd=\xbf\xb5 \x14O1\xc7\xadV{\xc3\xc3b\xa5\xd2\xafg\x06\xbf-J\xe1\x84\x13\x8e\xf0\xb0X\x86mG:\xe9\x80\xc4\x86\xeb\x96\xac\xae\x8b\x8a\x9aKX^\x8a\x91\x07R\xc9\xf3)0.R\xe0\x15\xff8\xef\x8a\xedTx\xc7\x9at\xf4\x05{\xdfx\x82\x1f\x1d\xd8\xfeU\xa5\x19#\x03wJ\x10*0\x847\xb3\xbc\xfeX\xa5\x0c\x9b\x7f\x0e?\xdd\xff\xec\xf5\xd7*\xf9\xb94\"\xb9\x9b\nb\x9a\x0b\xc2M\x16\xf0\xeb\xc6Cc\xff\xae\x12\xef*\x82\x9f\xb9\xcc9\xe3\xc0\x9013+\xc6\xb3\xf0\xd6l\xd8\x1b\xcf\xb2?e\xce\x9e\xef\xcd\x93\xaen\xda\xcc\x86\xcdz\x0d[P\xbb\x9dB\xee\xf7\x7f\xdb5\xf4\x06u\x9f\x15\xbd\xeb\x96\x0fV\xc6\xde\xa3g\xb6Kv\xbb\xcc\x16y\xff\x93P\xce\xcc\xa6\xe9M\xb1\xa6\xd5\x8af6\xdb\x7f\xffa\xdaD\xe2\x0f\xe6\x88\xea\x966K)\xe1\x91+\xff\xd1$/\x06\xfcX\xef\xb0\xdf\x1e\xe4\xc2\xdc\x8a\xe7\xca\x9e\x8b\xa1r&\x85h\xa3\x05F\xffGd\xa1\xa1\x92\xf3X'\xe0\x0dg\xc2\x19\xcf\xefZMz\xf7R2j\xc4\x12P\xc4\n\xff!\x97&\xdf\xf3\xc9\xfd\x9f_\xa1\xc0%\xb1[\xc61\xf3e\xc9\xd7:\x82\xac\xd5\xc8\x83\xc0\x05\xc0O\xf4iC\xe1/l!H6\x0d\xa5\x830*bO\xc8I\xf2m\x004?\xce\x7f\xd8RR\xc9\xd2\x8b\"\x1e\xefv\xdf\x93\xf6zX\x7f\x0f\xdb\xec\xb4\xa5\xacX\xe30Gv\xd6\xb7,\xd6\x1a\xed\x88\xb7T0!\xc6\xeb4nk=\x8a\xec4sjH\xcd\xee:\xb8!\x98\xd7\x7f\x9cqA(*X\xefEDI\x977uG\x97\xee\xc2\x89\x14\x8cB\xc29\xb2\xc4\xf3\"\xee\xdf\xa32\x82\xc8\xcc@\x99\xf3>\x11\x1c\x89z2\xf5=\xf0$\xa4\x86O\xde.\x7f\xf8\xf4\xdd\xf2\xfc\x8fg'\xcb\xcf\xef\xff\xf0\xfe\xc3O\xef'\xbcy\xf6\xf1\xe4\xc7\x0f\xe7'\xd3\xde|\xf3\xe1\x87\x1fN\xcf'\xbd\xfb\xe1\xec\xc3\xa7^}\xdf\x95F\xe2\xf9\xe9\xf5\x0d\xbb\xb1q\xe2\xfa\xb8\xeb\x1f\xda\xcd\xb9\x84\xc5\x08\xee \x1b\xd2rWU\xc3\x1b\xba\xc9\xa4C\xea\xa73\xd4\x19\x19\xc9\xf9m^\xc3\x8fug\x9d\xe3EZ\x10\xed\xfc\x1a\xce\xf8\xe4IJ\xbf\x19\xd7Jl\x9c\x12:tLT/RS\xef+da5NqK \x91\xb4\xac\x7f\xf3\x95\xf7Y\xf7\xb2n\x9c\"}\x07$\xf8\x0f\x08\xaej\x86\x94\xd0\xec\x10\x9a\xe1\xcd\x14\xb5T\x1c\xa7\x84\xd6\x80\xc4\x16a)\xb0\xa8\x1c\xa7\x94~\xa1R|\xd7T)\xf6CA\xfa\xc7\x82\xd4\x0f\x16\xb9PE_\xc1\x97\xad\xe6\xa3(\xa2\x0cy0\xbe\xa2\xa1=\x96q\xeaWr\xeex\x7f\x9c&\x94$\xd8\xd4C!\x02\xa8 \x91R\xfaa\xbc\x7f\xea\xcf\x80\xe3\xb2\xcf\xd9\x02)S(\x9b\xa5\xc6\xb7\xd5\xb0\xa5z\xdd\xd1#\xc9\x05\xdc\x16\x82\xb5(\xfe\x97\x07k^\x83|\xc9?,\xe8Y\x99\xfd\xf3\xa86\xdf\xba\x1e\xe1\x11\xe2\xe5!B\x8c\x7f\xf3\x10!\x0e\xe9\x10!\x1e\"D_\x8a\xf4\x1d\x90\xe0? !\xf0Hhv\x88\x9f\x03D:D\x88\x11)\xf6CA\xfa\xc7\x82\xd4\x0fv\x88\x10\xad4\xa1$\xc1\xa6>D\x88\xf1S\xe8?D\x84\xc8\xdd\xca\xf2\xa6\xee\x8aj\xb3\xdc\xd5\xb7~_\x17\xd9\xa0q\xaed\xe8K\x8f\x9bo\xd4PN\xcc14\x84c\xfb\xcd[\xb5\x91\xcc:\xcf\x89\xdcF\x1e\xb6\xdd\xd5\xc6\xb28\x9b\xe9\x1b\xd0iN\xc1#okf\xe3\xaa,V\x1c\xf8\xc8 Gx\x9f(Y\xc0\xb3\x14\xda\xb2KN\x82\xf8\xf2X\xdb\xd9Z \x97\x1e\x00\x8dH\x11yBd\xbe\xd07T\xe4l\x1f\x997$\xe4\x0f\x0e\xdc\x13\x9e\x12\n\x00\x89\x85\x00\x1fr\nO\xb1x*<%\xd6\x05&\xd4\x07\xfc\x88,\x8c0\x1a'\xd3H$Li\x9cL#\xefOCh\xa5q\x1an\xcd\x9c\xdd,\xe9K/\x91\xc4 [\x7f[\x92\x0d\x14\xd5\x9a\x9f\xb3\xb5R{\xe1\x9brU\x7f9}\x9b\xb4\x99,R?\x1c\xa10\xaf\x89\x0c\xa5\xe4#\xfdq\x9a\xdc\x9f'\xbb\xb9\x88\x83S;\xcd.f\xdaN\xaaH\xd1\x18\x81q\x9a]\xd6\xa4&\x9d\x12\xbc\x8b$\xb4!?\x15\x1b\x01\xcbc\xb1\x87:G\xe0\xb0\x03\xc5\xc3J0\xc9oV\x95\x9a\x93\x11\xafM)\xbb\xb0n\xea\xaa\xc9#m\xa9F\x13\xbf\xf4\xb8\xe5\xf7$m\x07Y8\xa2(i\xc3N\x87\xbf&\xc3\xf8kipI\x900\xc7\xa5\xcclCY\xc3\xcf\xa6\xce\xe4 \xb3xB\xedDJ\xa9\xa3H\xc9>n\xd2`\x9c0\x10w\xfb\xcbe\xc4\xdd\x87CJn,\x98\xd4`,\xd1\xf5W\xbf\xfb\xdd\xab\x7fKyeb\xc3\xc1\xb4\xc6\x03.\xa8\xb5\xda}\xf5\xbb\x7f\xfd\xf2\xea\x97\\\xcc)Q\xc3\xd9\xfe\xb2,V\x7f\xa0\xf7\xa3\xcd\x92/\xf4\xbe\xd5\xae\xb1I\x9b\xf3\xf7-\x152{?\xf6\x03?\xf2\xedX\x90\xd68Mj\xe4)\x0b\xb6~\x8fl\xd7\x14uSt\xc9\xe3\xe9A\xcb\xa8J\x17S\xa8\xc4\xe1\x9d:\xb0\x13\xfd\xe0\x84\xc6I\x1e\x1f\x89\x1e0\xb1\x81`B#\xc14\xdf7\xa1\xb1`J\x83\xc1T\xaf\xf7x\x05L\xf7w\xd9\xbd\xddT_7\xc5\xd3Mh\xd84\x0f\x02s|\xdc\x83\x97.\x0d\xc7\xdb\xbf\x95V\xac\xb8\"\xb1\x98\xbc\xae\x96\xe1\x8d\xf6\xc8\xdc\xe3r\xbd\xbc\xff+\xa9\xba\xa2\xa2\xcb\xb8\x88:.\x92\x8e\x88\xa0\xa3\x9da\xbc\x0b\x8c\x9e!\"[P\xa4\x04\x1f\x12=\x1fDW\x1e\x92\x1a\x00R\xbd\x7fRC@Zc@\xba\xaf\x7f\xd8\xe2\xa4x\xf6X\x9f\xceo<\n\x19\x83Do\x9e\xe6\x8e\x92\x1a-\xce)\x884\xc1k?@Y\xd2UD/\x0fLo \x99\xf8\xa7\xb5\xe0\xa9RBN\x8e\xea\x8c\xe6\xcd\xd8c\x1e\xf7\xe1\x8d\x7f\x1a\x8e>\x90q\x1c\xb6\x18\xe6\xd0\xa3\x97\x1d\xd9\xc8\xabD\x86F\x1b\x95jx@\xbb\x8fD\xfb\xa3\xba^A]\x02\xa3]\x02\x82\xf9\x12\xdc\x83p\x04\xac\xb5\xa4q~.\xe7G\xf2]\xa92\xe4\xa2\xae\x00a\xff\xab.!i[q\x07\xfd\x19\xd9\xd0\x8f\xe2\n\x86\x85\xf8\xdd0\xf2\xf3\x9e6\xe2j\x01f\x8e\xb5\x04\x85m\xddv@\xf9\xb5\xe8\xfc\x16\xf5\x05\x9cv\xda\x9d\x83\xbb\xee\x1e\n3&\xeazu\xc9\xaa\x86m\xddPu\xe3\xbd\xdeC\x90\xe9.\xd8(\x08}\xcc\xb5$\xe1\xe6yk\xf0\xff\xa9\xf6\xdbKq\xe7\xb7\xba|_\xbb\x0d\xde,\xbf\xdeP\xfc\xe2\x90%7bR\xa3X\xcf\xe47e\x14]+\xef\xbf(Z\xd8W\xa2/\xad\xc5\xc5\xec\xb7\x85\\\xde\xe0\xe3\xc1qSB\xca\xf5C\x86\x89\xfe\n\"U\\\xf4V\xa7\xdf-\xber\xdd\xdc0\\\x82$\xbe\x8e\xd5\xd7\xed~\xdei|\xfc\xf971\xa8\xca\xab\xeb\xc3\x90\xdbM\xba\xbbe3*$ZP\xbc\xb0\xe0\x08\x92\x83\xbd\xcf\xd9\xf9\xce\x95\xde\xa8\xb4\xab\xf7\xf2;;\xdarf4j\x87\xf3\xf1M\x14lAVu\xd5\xee\xb7\xf2\xee7\xbc\x18\xdd\x1dV\x80\xa4\xbdc\xf6\xcar\xdf8/\x03sx\xe6\xd0H\x008\x86\xcf\x1f\xdf\xbdlh[\xef\x9b\x15\x85\x8al\xe5*\x7f_\x15?\xefiy\x0fl\xe9\xdf\x15W\x85<'\xea\xa4\xdc#\xee\xb4Z\xda\x14\xa4,\xfeJ\xad\x0b\xedA\xd4\xaf\xabWu \x97\xfb\xab+\xda_A\xbf\x10\xd7\x12\x88:\x88+\xef\x94[#\x1d\x94\x94\xb4\x1df\xad\xae(\x7f|\xf7\xb4\x85\x1d\xe9\xc4\x8dz\x88\xb1^\x94\x0b\xcb\x89\x99\xb8\xda\x97\xe5=\xfc\xbc'\xa5\xb8\xb9\x92\xb7\x944\xcf\xdb\xe4\x19aN\x16{\xfd\x82e\xec\xbc\x01\xff\xe2\xb9(77\xd8^\xd7\xfbr\xcd\xc6\x18\xab\xc9\x93\xc5\x13\xb6l\xe3WL\xc8\xbb\x02\x9f\xdb\x17\x0c\xb3tZ\xc1\x8e5d\xb1\xa2G\xd0Q\xb2ma\xdf\xee \xab\xb6\x10'\xdb\x15lM\xae\xee\x19\xbc,*\xd2\xdc\xb3 \x0ck\xb1\xfb\x1d\x95\x8e\xbe\xbb\xa6\xf7Xv\xf4n\xc7\xa6\xc3\xa2\x83\xae\xe6\xb0\x10y?\x04\xfb\xf4\xf4\x8e\x7f\xba\xe3\xea~\x01\xdf\xd7\xb7\xf4\x866G|\xa0\x7f\xfe\xf8\x0e;a\x14[\x92\xccHw\x8d\xce\x16\xed\xea\x9an)\\\\w\xdd\xee\xe2H\xfc\xb7\xbd\xe0RkU-\x7f=\xe2=jE*\xa8w\xc2\xf9\x95\xf7\xc8\x8e\x16K\xfb\x9d\x14>E\xf3\xa2\xcd\x0d\xbf\x8f\x93t\xb0%\xbbVt\x0fVr~\xe6$\xe7\nm\x11\x0e\xa4\x85\xab\x9a_?\xfe\x1a\xfd2\xbf\x86\xd3\xab\xa1\x9c\xecs\xee\x9a\xfa\xa6X\xd3u_\x15\xbe\x1b\xd8rO\x84*\xa9\xfe\x1a\x8e+\xf8\xfe\xfc\xfc\x0c\xbe;9\x97\xf7\x87\xb02\x89\xe1\xc6o\xa6\x04\x02\x7f2;\xe9\xf9\xfd\x8e\xfe\xf9O\x7fF\x0c\x82\xdaX\xa9TO\x10\xee\x93\xb7\xe9\xae\xa9\xd7\xfb\x15\xbf\x9c\x96\xdfH\x8b\x85\x14\xbf\x86\xe3a\xb6\x13w<\xf2+\xd8\xc5\x96\xd8\x8a\xac\xf8u\xd1\xf5\x97\xfd\xae\xdf\x19\xba$-\xbf=\x1b\x1f\xa2h!?\x7f|\xc7K\xc4\xaf\x86\xed\xae\xe9V\xeb\xcb\xf2\xd2L\xa2*\xc0\xfe\xff\xa6.\xd6l\xd1\x8a\x1a\x13\xc5\xe1\xc3\xb5\xe1\xb7\xef\x1e\xa9W\x99E\xd2\x15\x97EYt\xf7PQ\xba\xee\xaf\x1afn\xa5\xb9q\x049u%/\x97\xe5\x8f\xf3Q\xb3\x80g\x9f[\xaa\x14\xb7Xk\xb0\xee\xc3\xbc\x83\xe8?\xa4\"\x1b\xbc\xae\x97\x0d%_\xd8\x98\x97&\x17\xcf\xd1+g\xea\x8e\xbe\x96\x17\xdd\xee\xab\x95\xe8\xe9\xac\xd4\xd2K\xac\xf6M\xc37\x14\xf5\x8d8\xe7}3|\xff\xd1\xde\x81\x03\xe5\xed/\xf7W\xfc&q\xd2\xd2#\x1e\xa1\x8b\xcb\x90YF\xfc\xc6T>{\xf7\xe3\xe3\x92n\x8a\xaa\xc2\xd7\x18\xd8-\xeb ]\xcdB\xf4[\xb2+\xda\xc5\xaa\xde\xe2\xfe\xed\x13\x1f=\xad\xd8\xfdc\xc3\xb32\xfd\x01<\x93;/b\xfbT\x0c\xb7\xe7\xb05\xb6\x8eT\xbaD\x87?\xaf\x16\x07E\xf4w\\\x8bMky\xeb\xf1\nZ\xba%UW\xac\xacH\xdb\xb1\x14\xf3N\xf1\xde\xb3\x83\xf0\xfc\xffC\x7f\xa12\xdf\xa6\xd7&pk\xb6V1\xeae}\x83N\xfd\xfd\xa5\xce\xfc\x8b\x8c\x9e\xf0\x97\xe3\xe2\xb8\xba\xbf\xd0\xd6\x0d\x15\x90\xe6\xb2\xe8\x1a6\xb0<\xe5\x91\x9e\xd40F\xca\xba\xda\xc8[\xcb\xcd\xcf\xc3\xfc\x1dw\xcb\xa2<\x97vH\xa3\xe7\xa7\xa2\x13\xab3\x9d\xa9\x8e]\x16\x97\xbc\x90\xd2\x1b\xb7\xfd\x85\xc4\xfc\x8a\xe4\xd5\x97\x97\xfb\x8a\xfd\x87\xcdc\xe2\xdb\xb6\xf8H\xc2\xa6\xf2\xfa\n\xf6\x9dp'j\x98\xb6\xcc\x91\x91!4\xdf\xd0\x8a6\xa4\xe3E\xed\xae\xebu\xaf\x1bvl\xf9/\xf1I\xccl\x03r\xd5\xc9\xfb\xf9\xf9\xda\xf4\xe9\xcb\xa7\xa6A\xb9\xf4Q\x85\x11k\x1d*{\xd8\x93\xab\xba^\\\x92\x86W\xe3\xee\xe5\xfd\xe2\xafOD+\x88\xa8\x1d[\x86\xf0l\x9f\xb0'\x99\xd37~\xfc\xcfO\x1f\xde\x9b\x7f\xfb\xfa\xeb\xaf\xbf\xc6\xbe\x0b{vX\x1b\x8b8\xa6\xe6w\xf9\x8bI[\xac\x01\xf6-U\xa7\xa2\x9b}I, j\xdb\x00{xM\x87\xc9\xf6\x08\xe8\xf6\x92\xae\xd7\xc3\xb4{$\xe7pkE\xadM\x80W\xbc\x01.\xfe\x835\xc1\x85\\\x04\x8e\x80\x0b\xaaA\x17j\xb8\xbeF\x03U\xb2\xfa\xc2F\xeb\xb0\xf8\xb9*J\x8ayI5\xae\xcfh\xd3\xd6\x95\xa3\xe3\xcb}\x0c~ \xe3\x92\x7f\x89\xaf\xe1\x15f\xad\x7f\x94\xa3\x0c\xe5\x93_\xc5yg\x00G\xeeOxk\x12\x85|\x8d\xc3\xbe\x8e\xd1\xaf\x1e\x19B\xcf2,\xb4\xaa\xc9\x8a\x82\xf5\xe0`3#a\xfdX\xd8\x00\x1a\xd6u\x10\xde=\"F\xa0s\x1eu\x07\xd6\xd4\xa1\xe3mw%Dz\x8cs\xfc\xc0\x01v\xa0\x86*E\x80X#\xce\xb6sf\x16\xc0\xcc\xaa\xcc|\xa8\xd9\xf0\x88Ti\x12r\xd6iM\x06\n8v6\xa6P\xd9\xf0\xb3a\x04mN\x0cm\x1c\x8a6\x0b\x8e6\xdc\x8a\x93\xb0\xb4\xb6\xd7\xd1N\x11q4\xedt<\xadeH\xc1U\xdd\x88\xda\xcc\x98\xda\xdc\xa8\xdat\\\xad\xff;f\xc3\xd6z\xd0\xb5S\xf1\xb5V\xd9u\xc4\xa8\x0bi:T(^Qw\x84\xef\x9b.\xaf\x0b\xf0\x96E\x97+\xbe'\xb8\xab\xdb\x0en\xfee\xf1\xdb\x7f]\xdc\xbd\x16\xabI\xa1\xed*@,\xc3[\xe8$u\x10\xe5\x95\xe9 \xca\x8b\x88\xf2Z5Fk\xeb\xa8\xa9\xace|\xa5\xf8\x9bx\x97A\xf0\xe9q\xd0\xf7\xf3\xbb\xf6\x9b{1\x7fHS\x1f\xcf\xdex\xa1\xf0?\xd4kz\xdac~\xacAc\x0f\x18\x11\\\xbc6\xeb-c\x8e~\x1d\xa8\xc5!m\xb1\xa94\x08k\xc2\xc0\xdc\xda\xea\xb3\"7\xf6\x83j\x11f\x9e\xe3;\xd8\xdf\xd4\xa9\x07\x9a3\xf8:0\xa6\xc4\xff\x02>\x9d~\xf7~\xf9\xc3\x87\xb7'\xcb\xcf\xef?\x9d\x9d\xbc9\xfd\xf6\xf4\xc4\xbc\x9b@\x7f\xea\xed\xe9\xc7\x937\xa6\x84\xbe\xfe\xc0\xf9\xc9\x7f\x9d\x7f>6\x85\xf3m\x13\xcb\xe3\xcf\xff\xe5y\xe8\xdd\xc9w\xc7o\xfe\xb8<\xfe\xe1\xf4\xfd\x87%_\xa7\xbb\x9f=9=[\xbe\xfa\xb7W\xa3'z\x85\xfep\x05\xfd\xe1\xca\xa7bS\xb1>d~y\xed\x9b\x88\xf3\xc4\xae\x85\xfa\xb6\x82\x96\xae\xf6M\xd1\x99\xab\x8e\xcd\x9e4,\x1e\xc0\xe6f\x0e\xe2a\x9fGC\xaf\xac\xea\xaa-\xd6\xb4a\xf3\x1d4tS\xb4]s\xcfw\xd4\xca\x12\xc4v\x06+\x03/\x80\x85\x91\x94+\xc87|0\x00]\xd5\xed}\xdb\xd1\xed\x02\x8ew\xbbV:\xc5N\xa2F\x84_V\xa7`6\x0c\x85\xe7ef0d-m\nD#/|Y|\xa1\xbaI\xb9\xa3\xa1\xbd\x83\xc1Ui\xb5\xaa\xf7\x0d\xd9\x88\xe2\xd4;Z\xb1V\xde\xb2\xda\x9e}\x04\xb2aAS'\x8f\xc9\x8b\x92g@\xd6\xacm*z\x0b+b\xc7c|\xc3\xa4h\x87\xef\xc7\x1bX\x9e#\xcax\xa9h\x86RA[\xcb\xa3\xc6\xe2\xea\x8a6\x08\x98\x89\xb0\x8ar\x00\x03\x11\x9f\xa7\xed\xd8Z@\xa2\x03\xc4\xc8\x94\x1f\xd2\x8e\xad\x1d#\xcd\xd1?\xfb3Z~\xc0\xba\xaf\x86\x0f\xdew:\x16\x05\xc99\xd0\xc8\xab\xa1\x7f\xe1\xdf\xd5Z\xde\xd8\x83\xf0\xb5\xf5\x17=g\xa3\x97+X\x90h\xd3\xb7\xf5J\x80\x07L\xa0\xcd\x0dmD\x9c\xc6\x87E\x8f1\x16a1[vxJ%\x9d\xc7k\xfbOb\xe1w\xb5\xe7\xd1\xe5\xa8\\\xa2\xeb\xb1\x96\xe09\xdf\x0b\xb8\xec8\x8f\xeb\xfd\x96T/\x1aJ\xd6|\xb6\xed\xe8]\xb7'\xa5\xb5\xd9\xcc\xd6a;\xe5b\x05\xa0\xc4j[\xfd\x0d\xf3+\xf3*\x9a-\xca\xa3\x95\xa2\xd5\x80\x1cl\xf0\xc9\xd1\x11\xf5\x95\x98\xab\xb4\xbf\x14\xfbk\xcc\xd7B\xfc\xd9\xdbz\xf5\xb6h\xe8\xaa;\xde\xdf-\xe0\xb8\x85z\xb7\xabe\x84ffs$zu?N\x0cs\xeb\x9ar\xe8\x88\xd9\x14\x0d\xfdy_4j\x86j\xfb\xc2\xd57,Z\xe0@\x0f\xf9\xd3S\xb8\x10\xff\xb7d\x0b\xe2\x0b\xde\\\xa4l\xcd\xc0P,\xb9\xad\x16\x97G\xeb\xd5\x06\xce\x8b\x9d\xd8;\x1bQ\xc6\xcc\x17\xd0U\xd0\xbf\xfa\xbe\x815\x13\xbd\xf6\xfd(\xfa\xe9%Y}\xb9%\xcd\xba5\xf0H\xfeOs\xbc-\xaaZ\xacg\xb4\xd1\x0d\x0d\xdd\xd67\xe2\xee\x11q\xb0\xc4\xc6\x80\xb7\xdb\xc8 \xf1\xb5\xfd'\xad\xc3\xa8\xd0B\x14\x8a5\xe4\xc9\xe9\x19\xf0g\xd4\xb7\xd2\xa7\x11\xb3\x1d\xdf\xfea\x01\x1f\xe9\xd5k\xe0\x08\x9d\xd7/_\xd2b\xd7.(\x8f\xbb\xf7\xdbE\xddl^\x9e\x9c\x9e}b\x7f~\xc1&g\xf3C\xbcQ\xc3\xe1\x08)e\xd1\xca9OL\x80\xacIG~\xdct9\xa4)H\xd5Y\x1b\x00\x97\xfb\x1e\xd9\xd4\xc3}\xf8\xe2Y\xc4\x94o\xff\xf0\xff\xb3\xf7\xb7\xcfq\xdbJ\xbe8\xfe\xfe\xfc\x15\xa8Tm9\xd9\x92\x15gw\xeb\xde\xfa\xf9\xd4\xf9U\xc9\xb6rV\xf7\xc6\x0fW\x92\x93\xbb\xaf\xc6\x9c\x19\x8c\xc45\x87\x9c\x90\xa0\xa49u\xcf\xff\xfe-\xa0\x01\x12\xcf\x00I\xc8\xb1\x1c\xe0Ebq\xc8\xc6S\xa3\xd1\xe8OwC\xc2\x13O\xd1u\x83p\xcd\xe4\xc3\xf9\xc5\x07\xdaf\xddh}lz\xe6Qf\xd9j\xe8 g\xc4\x15>]?\xbcn\xea]y\xf3 \xa4\x13\x03\x1dj\xdd\xe5\xc8\xb4\x0e\x7f\x12\x9d\xfc\xcf\xa2\xdeV\xb8\xfd$\xa6\x85\xb6\x06\x9c\\i\xa3\xf7\x05m\xf5\xa6\xdc\xb2m\x10\x80F.Ot\x8a\xfc[\x9dw\xa2V\x05\\\x9aA\xcb\xbe\xafH9\xea\x8e\x91\xf1\x9eB\xf3>}K?\x1fc?\x85\x8aK\x9f\xaaZU\x0d.\xeb\xec\x97\xae\xbc\x91\xd5[EI\x13\x945\xb7 ]Q\x1e\x14\xf4\xa6u\x90\xf6\x1f\x19\xa0\xe1\xd1\x07\x87uI\x98\xbd\xd98:\x88\x1f\xa4\xc5\x072\x80]\x0fI\xb7I>=C\xeb\x8aq\x93\x1b\x89\xc5\x1f+\xf0\x03i\x8b\xd5\xba$\xdd\xaa#Mk\xcf\xd5<\xe5\x86\x0b\\\x19\xd6\xf2\xe0AY\xb1\x1e\xb8u\xec\xd7T@n\xc8\xab\x92\x9c\xb11*\xedK\x85N&\x8b>\x1d\xec\x00tX\xc1\xc0\xafh[L\x99\xa6g`\xbe\x9f\xe1\xba\xeb[\x9e{\x8f\xe6\xfecy\xf0H\x1e{\x1c\xf7\x1d\xc5#\x8f\xe1n\xf10\xf7\xf8\xed\x93\x07\x0e@k\xc1g\xe4a\xc5\x9eG2\xa2\xdb\x13Lk\xef\x8a\xd7\xc6w_\xda\x029U\xac\xf4\xae\x15\xdb\xf9w/+(\xb33F\x1b\xc1\x9f\xc4\x16l$\xbe\xe1$B\x91Fc\x15\x13o\xdc\xb8):Mn)}\x10?\x8b6\xcbq\xc3\xc5\xba\xe9 K\xb0\xcbl\x17\\\xd1\xe2\x13\xac\xe4\xd75\xdaao\x0b\xf2$*\x0e\x1a5,\xb1q~\xb3\xc6\xdf\x8b\xee7V\xd1\x00\xbc\x15\x0f\xe5\xbe\xdf\xa3\xbef\x0e=;t\xdf\xb4\x9f\xd1=\xb7\x00\x82 \x8b<\x98a\x83\x07\xdc\xd2F\x9cj\xbd0s\x1b/\xee\xc3\xdf\x8b\xeec76\xb8P\xb2\x1c\x17\x1b\x02\xf6n\x91\xeeX4\x08\x0c\x95\x8e \x86\x1fG\x96d\x7f\x0d\x1b\xc9\xa2\xa94\xaf\xc7\x08\x0e\xc0D\xcb\xd4\x9b\x82\x14\xe0\xb4y\x04\x9f\xca\x16\x93\xbe\xadE\x1c\xb4\xd0&\x98\xfd\x95\xe1\xbeR\xcart\xa1#&o?^][\x0cs\x15\xaeo\xc8-\xdd\x01v\xe5\x03\xf09\x03\xcb\x984\xc3\x87\xa2-\x08\x86\xda\xa1R\xba\x81R\x85\xc6\x9euph@g\x1c\xbee1x\x0d\x9eQT7g\x00\x12U\xd0\x0e\xcd\x81\xad\xf1\xed \xc3\xdci\x83p\xcbn\xba\x10q\x8b\x1aA.9\xf5z\xd6xS0\xe8\x02\x1c:Tu\xffmw\xa3\x86AR\xd5_\"`\xdc{\xe1\x9cS\xff\xd4\xfd\xd2\xdc\xa8\x15\xb3\x88jI\xba8f\xd05\x9cr\x1b\xf3U{\xde.@ '\x11\xc9W\xedI\xc5\xcf\xcd\xa2\xccJ\x18\x92\xaf\xdaS(}\x0dW\xed\xcd\xb8F\x83_\x98\xa1\xd1\x13\x9b\x80\xf6\xd8\xba#I\xef\xc8B\xfd\x0f\x12d\xf9\n\x83|\x85\x81\x95Z\xbe\xc2\x00\xe5+\x0c\xec\xf5,t\x03\x11D\"\x9cA\xac_F;\x88@Y\xe0&\x02e\x81\xb3\x88k\xa1;\x9a\x9a\xcc\x8d\x04JZg\x12(\xc9\\J\xa0\x84\x1dK\xa0$s/\x81\x92\xaf0\xc8W\x18\x80m%_a \x95en.\x069\x92\xaf0\x08\xbb\xc6@ %\xef\x0f\xbb\xc9@\xc9W\x18Ls\xab\x81\x92\xaf0`%\xe4\x86\x03%_a@\x168\xec@\xc9W\x18Lt\xf71\x9b\x9c\xaf0H\xe1\"\x04%\xad\xa3\x10\x948w!(A\xa7!(\x91\xaeC\xca\xcb\xf9\n\x03VR\xba\x1aAY\xe4pdP\xcbW\x18\xa4\xbe\xc2\xc0\x7fBQ,\xcf&4(\xac\xd6\xe3+\x8cQ\xe8\x9af\x86\x08\x8d\xdaY}\x9c\x96\x07-\xe4@\x11\x91\xafU|\xa39R\x84<(\xae\xcbC\xb4\xd3\x04\x00\xef\xba\x07J )\x8eA\x17\x8a\xcb\x0e\xbf\xc5uc\xe4Lu\x9e\x94\xf5\x16y_w\xbb\xc1 \xf4\xba)\xe5\x1c\xd2\xa4\xf9\x8ck\xbe?@\x93DJi*\x0d\xe8\xe9\x95U\xac)~\xef\xde_\x9f\xbfd\xfb\x1awQ\x18\x90\xec\xa2F\x175\xe1\xcbv\xb0!(k\x17&I\xa1\xd7\x957uA\xfa\x16w\"\x81\x01\xd3qn\x9a\x9b\x86\xad\x15\xc9=\x01|\xe7x\xb5\x86\x9f\x04\xdb\xa7\xca\xc3_\xc4\xcb\x87\x03n\xf5i\xd4\x86K\xa4\x1ef\xef\x0e\x14\xc1uLsRC\x87\xe2\xc8\xf6!nm\x115\xd9\xc7\xfb\xba<\x0c>R\xe5a\xb4\x1d\xed1)\x9ekY\x13\xe0\x0b\xe7\xba\xb1yiE3\xf3\xba\xd9Z\xd2\x865\xdb!\x976\xcf\xf3\xceLg\xcc$.\x8d\xe5\xd8Lm\x14\xa3Dp\xcd\xeb@\x13\xf0\x146?\x87\x9bk\xd9{\xf693,$,a\xf1\x0e\xb7-\x18\xa4\n\x01X\x94{v\xda\x1c\x13!\x1c\x8a#\xfc\xb6\xc3:P(\xca\xfdmS\x997\xb9\xc91\xe0\xe3\xe3=\xde76\xd0br\x18$%$\"X\xc7cr\xdd\x10\xfc\xe3\xa6\xd933;0\xa4\x98\x1f\xa4\xc1.\xc6\xc8\xffvv\xf9\xee\xe2\xdd\xdf_R\xe1\xb0\xa9J\xb8\xe5\x97\x92\x87\xbc\x03\xd5\x11\xe1\x07\x9eM\x1c?\x10a\x0e\xaf\x1bb^\xe6\xb6)\xaa\x8a \xcc}c\xbd\xdeH\xba\xc4\x00\xde\xfcD\x1b\xfeI\xc4\x9d\xa2\xef;\xac\x93\x14\x19\xaboJr\xdb\xaf\x99H\x00\xf0\xea\xc7\x11\xd5\xfa\xb1\xec\xba\x1ew?\xfe\xff~\xfa\xb7\x7f\xfbA\x1eu\xcasMOVp\xef|\xe4\xf8\x87\xefN5.\x93\xe5\xf5\x08\xfc\x8b]\x86/.\xbb\x07\xdd\x0c\x842D\x84K\xf9\x0d\x98\xd0\xaf\x1b\x9d{\xd7\x03\x86\x06\x9a+\x13\xe3\xb7\x85\xb2\xda\xf1\x03\xc1uW6\xf5\n\x8c\xe1\x19\x13\xcb\x98X\xc6\xc42&\x961\xb1\x8c\x89eLL/\x19\x13\xcb\x98XX\xe3\xc8\x98X\xc6\xc4\x94\x9211^2&\x961\xb1\x8c\x89E\xd5\x9c1\xb1\x8c\x89\x0d%cb\x19\x13\xd3J,\xde\x911\xb1\x8c\x89\x85x\xe4\x1111n\xeb6\xce&\x86\xdd\x19\x0c\x1a\xc3\xe9D\x1b\xe3\xb31>\x1b\xe3-%\x1b\xe3\xb31>\xacqdc|6\xc6+%\x1b\xe3y\xc9\xc6\xf8l\x8c\xcf\xc6\xf8\xa8\x9a\xb31>\x1b\xe3\x87\x92\x8d\xf1\xd9\x18\xaf\x95XCk6\xc6gc|\x88G\xb21>\xb91\xfe8p]yS7r@\x8drf\xbb~x%\xa5\x9fb\xa9\xa8\xd8\xc5\x88\xcaU\x82t\x08\x8a\xaa\x1a\x82p\xe8\xffQs\x87\x07CQ\xd1\x93\xdbyWr\x0eQ7\xc3\x87\xb6H\x81\x81\xfe\x90\x14\xac'\xb7M[\xfe\x03\xd6W\x8b\xd9]]\x9e\x8cY2G\x89\xc3;\x98\x18\xa1K'\"\x80e\xdf\xd0c\x1e\x1d\xd5\xdd\x10P1F\xfa\xccJCg\x9c\xf4\xc3\xf7%\xaa\xd7v\x8e\x19\xd9\x940*\xe997u\x92\xcd-\xdf1\xf9EjC\xe8\x93DN\x8d\xa0\x1a\xa3\x9e\xd40'\xd2\xf0\xab\xf86M]\xe3\x0d\xa1\xe2j\xa8\x90\xe5M\x93\xaf+\x92\x08V\xe5gE\x7f\xf0]\xc1I\x15\xb7\xa6c\xbc\x01\x9c\xa4\xb1\xa6\x98\xed\x8e\x14\xf5\xb6h\xb9Z4\x98\x9d\xd6mSl7E\xc7\x1a\xa7fq\xb3\xe7i{5\xa4_#\xe1\\m\"\xa2l\xd6\x9cG\xa7\x1e$\x0e\xec\xc9c$\n\xd9\\\x92\xe2M>\xac)%\xce\x94\x10c\xf2\xe0K\x8b\xb0\xa5t\xb8R\x08S\x9a\x89'\xcd\xc6\x92\xc0~m\x19-'\x8e4\x1bC\x02\x15\xc6\xa0\xe7\xc4\x8f\x96`G\xa8?\x18\xf4\\\xb8\xd1\x1c\xcc\xc8\x87\x0f-\xc6\x86\xa2p\xa1)\x18\xd0\"\xfcg\x01\xf6c\x15+I1\x9e\xd4\xf8NBl'\x06\xd7I\x88\xe9\xb8\xf1\x9c\xa4X\x8e\x1d\xc7\xb1\xa8\xf86)5\x17\xbf\x01\xac\xc6 g\xc3nf\xe36V\xcc\xc6\xb3\x15{\xb0\x9a\xd0.\x9d\n\xa3q\xe33\xbe\x16,\xc3e\x00\x87Q\x08\xda0\x99$x\xcc2,\xc6X%\xe6\x86\x9b\x12\x83!\x16\xfce\x19\xf6\x12\x80\x16\x9c\x98K\x04\xdeb3\xbeN\xc1Yl\xdf\xff\xd3\xde\xf7\x99\xd8J\\\xe7\xc3\x98\x8a\xaf\xa7\x11X\xca$\x1cE7:-\xc6O\x02\xd8\x89\x0f7\xf1c&\x8eQ\x89\xc7J\xc28\x89\x89\x91,\xc2G\xa2\xb0\x919\xb8\x88\x15\x87\x08\xe3!\xc9\xb0\x10k\xfd\x1a'-\xc2?L\xbcc \xd6a\xc56\x16\xe1\x1a&\x8e\x91\x16\xc3\xf0\xe0\x17\xa6Y\xd7\xc4-Ra\x16 \xf1\x8a\xd4XE,N\x11\x81QD\xe3\x13q\xd8\x84\xc5\x8co\xab5\xd6\xd6\x1c\xc2#\xa2\xb1\x88(\x1cBk|Z\xfca\x11\xf6`\xc3\x1aR\xe2\x0c)1\x86%\xf3\x1d\x81-\x84q\x85Q\xf8\xbb\xb5ja0\x9c\x91\xec\xca\x91\xdejvj+G2\xab\x94\x89\xaclI\xac\xc8\xf4\x04V \x93W\xf1qRN\xd8\x8b\x92V\x99i\xaa,)\xaa\xd4\xf4T\xd6\xb3\xa2\x8feR\xa6\xa4Z\x92\x8e\x8a\xa7\x95\xd2\xda\xa6\xa4\xa2\x9a\x91\x86jv\n*W\xfa)\xeb\xf8:\xd2N\xd9\x80\xa4\x94\xe9\xa6B\xa9\xa6<\x91-$# J\xc9HBF\x122\x92\x90\x91\x84\x8c$d$!# \xdaO\xa1]:# $# \x19I\xc8HBF\x122\x92\x90\x91\x84\x8c$d$!# \x19I\xf8\xea\x91\x04[d\xc2\x92\xa8\x04K\x1cB\xc2\x18\x04\x8b%lQ\"\xa0\xd8$@$\x9bJ\x95\x92M\xa5\xd9T\x9aM\xa5\xd9T\x9aM\xa5\xd9T\x9aM\xa5\xdaO\xa1]:\x9bJ\xb3\xa94\x9bJ\xb3\xa94\x9bJ\xb3\xa94\x9bJ\xb3\xa94\x9bJ\xb3\xa94\x9bJ\xb3\xa9\xf4\x8f3\x95\xda\xd3\xb4$N\xd1Bp\xbd\xc5\xed\xbe\xac\xc9i\xb1\xde\x94\xa7\xe7w\xb8&\xd1\x890\xd8+\xe3T\x98\x07\xb3\x82\x90\xb6\\\xf7\xe4\xb1se|\xc6\xc7\x14\xc7\xc4d\xe7\xcd\xb2\xde\xe2\x07;\xa1u\xd3T\xb8\x90\xf3\xa2(S\xca&\xe0L\x0c\x1b\x04\x0cte}Sa\xda\xc9\xe7\xb0\xab\x1d\x8a\xb2=AE\xd75\x9b\x92\x9d\x83\xf8\x96\x840\xfd\xda\x920eX\x1e\x8c<\xd8\x8a:T\x8c6$\xb4\xc5w\xb8\xa2\x83\x0b ^\x08)6\xb7\xf2\xa6&\xa5t\x91\\\xfb/qwh\xea\x0e\xbf\xc27e\xfd\xaaj6\x9fO\x86g\xe7\xf5V{\xf2\xfa\x16o>_?P\x96\xd7\xbe\x7f\x83\xab\xf2\x0e\xb7\xd7\x0f\x83~\xfaKAp{\xa2\xe4nA\xfb\xe2H\x97\xc3\xef=n\xa9\xf2\xd2w,\xbb\x0b[f\xac\xe3\x9d\x93\xa3\x87\x01\x8dfm\x85\xa3\xac,`\x99|\x8d\x7fb?\xd3\xb8\xc5\xe4\x93\xc7\xe0\x10\x9e\x05\xa7?\xdc\xb4\xc5\x16\x0f\xa9p\xde6\xdb\xbe\xc2\xbf\x82a-z\xb4\xa8\xb6\x10\xe87\x17\xd4\xb2y\xbf8\x1c\xd0\x9e\xd5'\xc6O\xae\xd6I\xc9\xef\xd4\xbf\xa1\xfcTw}'\xa89jS\xc6t\x88\x04P\xba?\x18s\xe8\x10\xc3\xa7\xdcL\xd7\x99\xd5\x0c\x9c{U\xd6\x1b\xd6\x0e\x11\xc6\x80^\x9c\xfe\xc7\xbf\xbbG\xfcCU$\x1dh\xb7\x9d\xe9\n\x13\xd8)\xd8$\x88P\x16\xd1\x1e\x80\x89\xd8Ob\xe3\xe9\xa5\xf8\x05\xfe\x9a\xa2\xa1h#\xdc5;rO7E*A\x0e\x87\n\xcc\x01l\x10\x8b\n}\xd7\xd4\xcf9\x91\xef\xd0\xa6\xd9\xef\x8bz+\x83\x1c\xdb\x9euCzB\x86\x90\x9fQ\xbe\xf0s\x8dt^\xe14\xd9B\xa0\x02\x0doO\xd1\x053\xa4\x16U\xd7H\xe4ho\x14\xf2\x0d\xdab\x827\x84\xee\xf0\xcc\xfaY\x8c]\x10]\xa3\xea\x01\xec\xca\xa8@7\xe5\x1d\xae\xc7\x01c\x90\x82LQ4\x05>ha\xd1\x91aX\xa9\xfa\xb8\xc6\xb8f`\x08?P\x89\nOPI\xd8\xb8K\xe4T[*\xc7&\x06\x18hlk\xd9\xa1\xa6'\xcf\x9b\xdd\xf3mA\xf0\xa8\xaf\x88\xe6\\\x97t\xcd\xc9\x99\xbe\xfe\x13\xe2ZJE\xcfiq\xb1\xb9\xa5\x1a)?U\x0e\xf4\x19;\xe0\x87\x92\xc818\x91\x8b\x94\xb6\xe89}?\x82?\xdfPUyC\xc5\xd5Kh3`\x16\xbc\x1b\x1d`\x13l\x00\xb7\xc3\x9b\xa7\xd2\x9b\x96\x99\xa8\x9a\x9br#wr\x98\x83\x16\xef\x9b;\xbc\x1d\x83\xc6\xae\xde\xfco\xc5:\xc2\xce\x06e\xc7\x8fs\xdc.\xcfL\xe0'\x0323\xac\x14r\xdb6\xf7C\xe4\xd7\xa4\xd8$U\x8a\xd9\xc5\x12\xe2\x87^\x11\x8fD\x86`\xa4q\x96\xf7\xdc\x82}\xc0-%\x8d\xb7\xb2\x0d\xe3=\xb7\x02lQ\xb9\x83\x11\xe3\x1d\xea\xf00\xabj\x96>\x9f\x10W\xda\xc5\xcc~\x92&1\x18\xf5\x87\x85Y\xef\x1a\x0e\xf3\x94\xf5\xa6\xea\xb7\x0c\x87z\xae\xdf\xbd\xdf\xf5T\xe3\xe8\xd82#L@\x94\x04\x98\x9dY\xe4\x0b\xd2\xb4T\xec\xf6\xd5\x16\x15=i\xa8.\x02\x89\xfaD=D,v!\xaaV\x10\xea\xb6\xeaHA\x0c~\xd5tK\xbbfI\xac\xee\x00N\x8d\xd0\x0f2$t\x04p\xbb\x01\xa4s\x02H\xe6\x02\xe0t\x00\xb0Y\xa4\"\xe1\xffT\xe0\xbf\x1f\xfa\x9f\x05\xfc\xa7\x85\xfd\x9d\xa0\x7fZ\xc8\xdf\x01\xf8/\x84\xfb\x8d\xe1&\x16\xb0?-\xd4\xbf\x10\xe8O\x0c\xf3/\x00\xf9SC\xfc\xc9\x00\xfe\xb4\xf0~2p?\x0c\xed'\x03\xf6]\xb0\xfe\x12P\xdf\n\xe2[,i\xa6\xbcY\x06\xe0[\x00\xfb\x99p\xbd\xc5x\xe2\xdc(\x9d\x86\x13\xff\x0e:\x13\xa4\x1fAy\xdb\xf8\xfe%\\wbx\xde\x04\xe7\x13@\xf3I\x81y}3\\\x08\xca\xf3\x81\x96).\x81\xe1\xbd8\xb4\x03\x82\x0f\x02\xf0&\xe6\x17\x0f\xbe\x9b\xdf\xfe\xd3\xd6\xd7Y\xb0{LgC\x90\xbb\xbboA\xb8}\x02\xd8\xaeb+\x0b\x81v/\xcc\xee\x06\xd9}\x10\xbbu\x14b\xe1\xf5\x10\xb8\xaeC\xeb\x0b\x80\xf5\x08X}:\xa8n\x81\xb4C\x80z\"8\xddR\xb3\xc2)I\x81\xf4\xc40zR\x10=%\x84\xee\x04\xd0uTR\x07\xcf\xd3@\xe7\xc9\x80\xf3\xb4\xb0y\x1ch\x1e\x84\xcc#\x01\xf3\x18\xb8\xdc\x00\xcb\xcd\xdab\x81S?P\x1e \x93G\x80\xe4J\x93S\x02\xe4\x89\xe1\xf1t\xe0x:h|\xfe\xec\x06a\xf1\x10(\x0e\xe2\xdb\xae\xc3~\xa8\n\x19\xcc\x90\xb1\xbcb\xdd\xf4\x04\x15\xe8P\x15u=\x1a[\xd9l2Cr)R;qZ,S\x97\x07@\xfa?=n\x8fg`\x88\xa7\xf5\n\x88/\x1a\xe2He<\xbd\x156n0\xb3(\xf9\x9cd\xfb)\xed9\xba/F\xf4\xc03\x90\xae\xce\x89ZZ\xf17[\x1f\x02aa_\xfd(}\xc6\xa9]~x-\x18\x086\x9a\xe0\xb0\xc2\xdd&\xe48yPy\xa26\xcf\xa8*\x1d~f\x05\xb1\xfe\x07\\\xc5\xc2\x8d\xc0\xf6\x16\xb9G\x82\x8f\x82\xf8 \xd0\xd5\xd7p\x18\x9f\xc5A\x87\x01Q3:\xc6&\xbb\x14\x82\x82U1\xb0<\xfd\xedT\x1b\xa0(+\xb1\n\xca\xa1\xf9\x16\xe2%\x00\x9dF\xca\x06\xd7\xa1\xd4\x90\x1d\xb2\xc2vh9t\xa7Q+\xaa\xae1\xe0;\x94\x00\xc2\xd3\xc8\x19\x80\x1eZ\x0e\xeai\xd4\xf8\xcc\xe9\x95\xa4\x04\xf7\x90\x0b\xe0C\x93@>d\x00}(\xc6\xa4c\x02~(\xc8\xf7 \x81?\xe4\x03\xff\xd0$\x00\x10-\x03\x01\x91e/C1#\xa8\xeei\xc8\x0b\n\xa2\xa5\xc0 \x8a\x04\x07\x91\x01\x10\"__\\w\xab-\x03\x0b5bK\x11CC\x98H\x0f\x02\x18\"r\xed\x10\xc8\xe3\xa5\xe6\xc2\x13\x91o$Qp\xf5\xa0\xb4\xd8\"\n\x84\x19\xa7\xc4\x18QJ\x9c\x11\xf9\x83\x8d\x17\xe1\x8d(!\xe6\x88\x82\xb8#\x9a\x8b=\xa2%\xf8\xa3m\xc4\x8e\x07q\x87\x9c=\xf0x\x01\x0ei\xa1\x05\xb2\xcb\x19|\xbc\x0c\x8f\xb4\x90\xeb\x0f\xce\x00\xe4\xd4\xb8$Z\x8eM\xa2\xf4\xf8$Z\x86Q\xa2e8\xa5}\x89Z\x1b\x99\x0c\xbdD\xc9\x11L\x94\x12\xc5DQH&J\x89f\"o\xa0\xf22T\xd3\xb6\xc6\xad\xc1\xca\x91X'Z\x8cwZ\x08\xdaB\x96g\xa3\xa0\xc8\xe5F\x1e\xd8\xe2=\xa1\xcb1\xfb\xffLd\xd4&\xf6\x9c\x01\xcc\xa1v,CI5b\x0c3\xb5\x861'AKQj\xc4\x14Y\x83\x99\x17#\xa7\x1a5b h^\x86\xa5\xa2\x10\xc4\x88|a\xcd\x11\xb8*r^\xe6\x1f\x8f\xaf\xbai\x18\xf6\xf5EX+\x9a0\x18!\xcc\x15\x05\xfb\x1d\xc4^\xd14\xfc\x15Y\x83\xf3\x16\xe2\xb0(\x84\xc5\xa2@\xd0s(\xec\xd93J\xb1\xd8,\x8a\xc0g\x915\xfcy\x11N\x8b\xe2\xb0Z4\x0b\xafE\xce\x81 \xe2\xb6(\x1dv\x8b\xdc\xad08-)\x8e\x8b\x16b\xb9\x1a)[\x80tbt\x17%Fx\x91?L\xda\x16(m\x0b\x95N\x85\xf8\xa2\x94\xa8/J\x8e\xfc\xa2h\xf4\x17\xc5 \xc0(\x1e\x05F\x91H0\xb2\x87N\xdb\x83i\xe3q\xc3P\xf8t42\x8c\xe2\xd0ad\xebFJ\x94\x18-E\x8a5Z\x96\xb0\xea\x94\xd81J\x8a\x1f\xa3\xc5\xfc\x10\xc4\x91Q\x04\x96\x8c\x02x\xb2\x0b\xa1\x8b\x81A\xa5\xcf8\xb5\xc90\xa8\x12\xa4\xd7M\x86\x07!\x92o\xc5O\xe6\x8f\x1c\x99lb\x83\xde\x83`L\x94$\x14#V2H\xdb\x117\xc9\xbf\x9b\x16= \xc5\x87K$\x88\xa4\x84\xe2\x8c\xa7\xb4\xb4A\xbdBK\x9dg\xa4^\xbe\x06\x8d\x00{\x0c\x87\xf4p\xd9\x8e\xad\x91\x08 \nA\xcf\x00;czW\x85\xfc\xf9\x8f\xea\xf7\x7f\x19\xd7\xc7\xb00\xc4\xb3\xa9A\xa6\x8c\xfeG\x8ei\xbc\x16}\xbc\"\x05\xc1\x93\xd7\xcf\x08\x8d\x08:\xf6\x08\xabp\xe0\xf3\xc0vv\x7f\x83\x7f\x7f\x16\x1ap\x7f\x8f\xe2\x07\xdeN\xc76\x01\xc3\x08\x17=\xb9\xfd\xc70\xbe\x7fo\x8b y\x13\np\x82\xf8\x07\x93\xd1\xfa\xb0E\xb9\x1c\x90\x1c\x98\xb6\x1c0\xca\x81iq\xc0\x10\x18\xb4\x8d1\xca\x81iS\x00\xa0\x85\xe0Ob\xe0g\x01\xe8\xb3\x00\xf0\xb1\x08\x8c\x84\xd0NZX'\x19\xa4\x13\x86s\x92A990-\x07\xa6M\x80\\r`\x1a\x1fh\x99\xe2\x120%&V+\x07\xa6I%\x07\xa6\xa1\x1c\x98\x96\x03\xd3r`Z*\x98\"\x19D\x91\x16\x9e\x88\x83&\x82\xb0D$$\x11\x03G\xe4\xc0\xb4\x91\xd6\"\xb8!\x07\xa6E\x05\xa61\xbb@\xd9Z-^\x0eC\xa1\x19I`\xf3*\xa7/\x8cQ\x117mQ\x13\x11\xcbp([\x1e\xc8\xc6'\xef\xd0\xf65\x8b1\xd9\xa1\xba\xaf*\x96fU\xd70\x19\x05y\xf8\xb6\x0d\xee\xeag\x04\xce\xa7\x05\xd47\xf6\x05}\x0f\xc7\x9bMSo\xb9\x15\x80N\xee'\xc5\xc4\xa7L\xea\xbe8\xf2P\x1b\xd2\xa0\xb2\xe6\xae\xeaxl>l\x91v\xdb:\xb33\xb2 \x96\x0e\x1dp\xbb/;\xb0m\x93\x06\xe1\x07\xbc\xe9\x87S\x0b\xa5\xc6\xf7+\x11w\xc3\xa4\x9c\xd4r\xda\x13\xbfA\xf3\xcc\xb4S\x92\xb0u\x93u\x02\xb7\xdeY\x86w\x02\xc9c\xb3\x954[I\xb3\x954[I\xb3\x954[I\xb3\x954[I\xb3\x954[I\xb3\x95\x14e+)/\xd9J\x9a\xad\xa4\xd9J\x9a\xad\xa4Z\xc9V\xd2\xa1d+\xe9\x9f\xccJ\xaa[HM3\x1e\xdc\x8e\xb5eY3\xb8\xb1\x94\xdc\xa2u\x03\x1e\xb0\"Q\x14\x1e\xf4?n\xa9\xe3\xf4(\x97p\xfb\xde\xb0a\xc2e\x1b\x90?\xa4f\x8adWv0(\xec\xfd\xdf{\xdc\x1e\xe1o\x97\xb5\x91ya\xfe\x1djb\xff\x9b\xee\xd5\xcdZ\xf5\xc8\xce\xdc\x86eS\xa6b9'\x19V\xce\xc0\xfb\x0e\x8b\xa7\xfc\x95%\xdd\x88/\xe1\x88\xcb\x06:\xfe\xe6\x8cH\x0e\x9d\xe6\xa0$\xb4\x8aB\xf1\xa7\x1eIi!\x85\x92\xccN\n\xc5\x9b\x80d\x91\xcd\x14J*\xcb)\x94p\x1a\x92\x99VT(\xb3m\xa9\xf6\xb1\x0b'#Y`W\xb5R\x0b&$Yfc\xb5\x12\xf4&%\x99go\xb5\x12\xf2\xa6*Yl\x89\x15D\"\xec\xb1\xd6/\xa3m\xb4P\x16Xj\xa1,\xb0\xd7\xba\x16\xba\xa3\xa9\xc9,\xb9P\xd2\xdas\xa1$\xb3\xeaB \xdbv\xa1$\xb3\xf0B\xf1%5Yf\xed\xb5\xcb\nGb\x93H;0\x94\xb9\xd6`+1\x97\x85\x18\xcaL;1\x14G\x8a\x93\xa0J\xe1Ms\x12\xa7q\xcc\xb4\"\xdb\x85\xa9'\xd9I\xb85\xcb\xec\xca\x069_\xca\x93$6f(\xcb,\xcd\x069\xa6\xd1X\x95\x87\x85Vg\xb3&k\xf2\x93e\xb6h(\xc1\x9c\x1f\xde\x14(\x11\xd6i(\x8eL\n\x13,\xd5P\\t,\xe1\xe5\x8bl\xd7P\xe2\x07'd\xc7\x86\x12\x1a\x85\xa0M\x1b\xca\x04\xcb6\x14[\xf0\xfdB+7\x94`z\x94P\x82\x94p\x8a\x14\xef\xa8\xc5\xda\xc0\xa1\x84,\xe1Pl\xa9R\x16Y\xc5\xa1D\xd8\xc6\xa1L\xb7\x90Cq\x0dS\xd0Z\x0e%\x91\xcd\x1c\x8a\xb3-\x16N\\dE7\xa8Y\x92\xa9,\xb3\xad\x9b5X\x13\xaa,\xb4\xb8\x9bM6S\xac\xa4\xb5\xc3C\xf1\xa6Y\xb1'Z\xb1\xa7ZIe\x9f\x87\x92\xccJ\x0f%\xad\xad\x1eJ\x9c\xc5\x1eJ\xd0n\x0f%\xd2z\xaf\xbc\x1cL\xbc\xe2H\xbd\xe2J\xb6\x11o\xf7\x0d\xa7_\x89\xb6\xed\xf3\x97\xc3\x16~(\x96\x0e\xa5\xb4\xf6CYd\xf37\xa8YS\xb1\xa4D\x02\xa4j\x92\xe0\x01P\x96\xf2H\x10\x1b\xe0\xe4\"\x92\xb2\x8c8\x01\x14\x1bZ\x00\xc5s\x0e\xf3ej\xb7\xe7\xed^\x8c\"(\xd4\xb8U\xdc\x8a%@\x99\x86(@Q\x0ek\x00\x06\xa8\x19?\xf83\xa8q+\xb8\x887F\xec\xd4\x87\xe2\xa6\xac\xb5\x01U/\x90\x18^\x00\x1b\x1bf\xe7>\xe9\xa9\xc8v#\x92N\x8c:\x00\x89w\\\xae\xf1\x03Y}\xc6\xc7\xa4\xfeXF\xe2xQ\x8b\xc8\x93A\xff\xc9\x0dDE\xd7\xc1\x18}(n\xf0%\xfe\xbd\xc7\x1d9\x85\xdf5\"l.\xd8\xe7\x94\x1c\x1d \x8c\xf6MG\x10f\xe6\x17f\xafa\xb7:\x8cr\xe2@\x8e\xa8\xdc\xe9\x0c{\x8b[\xcc\xecnu\x83\xf6M\x8b\x85\x9dMV\xa2HC\x8aXonO\xba\x1bWvzF\x9e\x8d\x06\xfbG\xdd\xef\xd7`E\x10&?\xc9\xee\xa4\xb7_\x1e\xa8M\xd3\xd7d\xc5\x88\xe8\"\xe5\xbe\xe8P\x87\xc9 K}\xc3\xad\x96\x1d\xeak`\xa6-\x18~\xee\xcb\x0e\xe6\xd1\x93\xfa\xc4\x8a\x96\xc5g\x8f\xc9p\"U\xdaf\x88.Ct\x19\xa2\xcb\x10\x9dQH\x86\xe82Dg}9Ct\x19\xa23K\x86\xe82D\x872D\xa7\x13\xca\x10\x9dQ\xe2Q\xa8\x0c\xd1\xd9^\xc9\x10]\x86\xe82D\xa7\x97\x0c\xd1e\x88.CtC\xc9\x10]\x86\xe82D\x97!\xba\xaf\x04\xa2\x83\x8b\xcd\xc7\x06\x00\x95\x0c\xd1e\x88\xee)At\xed2\x88\xae\x9d\x03\xd1}\x9d\xd8\\\xc6\xce2v\x96\xb1\xb3\x8c\x9de\xec,cg\x19;\xcb\xd8Y\xc6\xce,%cg\x19;SJ\xc6\xcex\xc9\xd8Y\xc6\xce2v\x16Us\xc6\xce2v6\x94\x8c\x9de\xecL+\xb1\xb8H\xc6\xce2v\x16\xe2\x91\xa7\x84\x9d!\x0f\xb2\xb0\xec*\x11\x93\x98B\xc7\x1c\xfa9\xd7\x8a\x98\xbc\xe5\xbef\x04J\xe4e#P|PT\xf4\xc5#PH\xfc\xf5#\x96\xba\x95^\xf91B\xca\xfd\x02\xad\\\x1f3V\x98\xb1B\xe9\xf9S\xc3\n\xe3@B\x0e\x0f\x9e\xa9\x8b\xe4\xf2\xc3kN\xcf@ w\x18\xb3u1\xf3\xb6r#\xa4\xce:Gnk\x12\xff^\xf4\x89;\x1e\x08\x85\xaf\xef0_\xc1lW\xad\xc1.]\xd4\x1ba\xf7)[\x89\xd6\xae\xaf\xb7\x03\x0b\x19\xb1{\xb3\x1a\x86}\x0d[c\xda*!l\xb4\xd6I\xa4\x8a\x1a\xe45\xfd\xe8Y\xa76s\xf8\xc4!\x83F\x92\x9b\xa2f\xa6\xbf\xfaH\x1b\xb1.\xbarsB\xa5m\xd9l\xe9\xbf\x84\xc5~\x87\xf1\xf8\xd1,\x81D\xf2\xc5H\xcb\x11\xd1|1R\x1c\xda \x08\x8b1F\xf9b$\x13\xc9\xcc\x17#\xe5\x8b\x91\xb4\x12F\x17\x93\xe1\x8a\xf9b\xa4o\xeeb$\xae\x1a\xc3\xe9\x8dm\x94M\x0b.\x9b\x94\xca\xff\xfe\xf5\x8a\xfeM\xb9\x8f\xae\x99v\xab\xfa\x8a\xd2=L\xc8]\x8f6\xc9\xd4\xd13\xa1\x8fL\xf6<\x8bW\x8f\xd89p\xfc3\xee\x088I/\xb2f\x8f\x98\xa9\x16\xa5T{\x91\xae\xfa\"W\xea\x8aE\x8dM\xa2\n\xa3\x80:\x8c\xecs\x8e\x1eK-F.\x16@^\xd7B\xbb\x8a\x8c\xfc\xb6\xa7\xd00\xa3\xb4\xea2\n:\x14\xa6S\x9bQJ\xd5\x19\x85\\ \x17\xa8\xd0(\xa1\x1a\x8d\x82\xaa4\x9a\xabN\xa3%*\xb5m\xc4\xc2\xee\x83\xb3Uk\x0b\xad\xa0\xeb\xe0\x12\x15\xdbB\xce\xeb6\x98V\xd5F\xcb\xd5m\x94^\xe5F\xcb\xd4n\xb4L\xf5\xb6/Qk#\x93)\xe4(\xb9R\x8eR*\xe6(J9G)\x15t\x14p\xfb[\xa2\xa8\xdb\xd6\xb8\xc3\xe5/J}G\x8bUx\x0bA\xbb\xb3\xdfL\xc5\x1e\xb9\x1d\xfd\xbc[\xbc\xd7\xc9/\xbc\xff\xcfT\xf6mb\xcf\xe1\xde\x97R\xe9\xf7\x1a\xad\x0d\xa5?\xcan=\xe8uSL\xd6j}\xdd+\x11\\3\xff\xb8\xf1\xc8\xc1.\xd6\xa3\x84\x97\xb3B\xac\xb3\xe0@a28=`\x98z\xf9\xf4|x\xb1\xcdNv\xb4\x08\x1f.\x9c\xc7\x8bG<`x\x8e\x189~i\xfe\x81#\xf1\x91#\xc7/)%\xe5\xf1#\xea\x00\x92\xf6\x08\x12q\x08I~\x0c\xc9\xf1KP&\x1d[\x16\x1f\\R\x1f]r\xfc\x92\\\xe2\x0e1\x89\x8f19~)\xc7/-\x88_J{\xc4AN\xd5\x90ohL\x18\xac1\xaeQ\xd9u}NM\x81\xb2\xbb\xd9\xd3v7\xf3\x9c\xa4\xbdgx\x99\xc6\x8f\x16\"J\x9a\n\xd1\xfa\xab\x92\x1e\xc5\xf8\xd1\xfey\xb7\xfd\x8c^\x9c\xfe\xc7\xff\x88?\xec\xe73~>\xe3\xe73~>\xe3\xe73~>\xe3\xdb^\xc9g\xfc|\xc6\xb7\x94|\xc6\x1fK>\xe3\xe73>/\xf9\x8co\x9c\xf1\x07QC\xff|\x96\x83\xcb\xf2i_\xfa\xe6\x9b:\xedG\x1d\xf2\x8d\xe3\xbd\x0f\xa9\xafw\xe3\xb9\xfduUt]\xf4)\xbd\xdc\xea\xa7smflC_n\x87\xb5\xc4\x8e\x96\xec\x883\x1ep\x06\x81\xf3\xee\xe7k\xc4\xd2\xa5P1\xca\xc3\xbb\xbbr_VE\xab\xf2\xa5\xd0L\xa9\x92,\x1f\\\xcf/_\xff\xcf\x7f\xfb\x89\xbfH7\xd9\x19\x8deg\x00\xb9\xb9\xb7\xfd\xbe\xa8\x9f\xb7\xb8\xd82\xc6\x90\x8f\x1df\x83ef~\xcf\x95V\xfe\xa8;\xee\xd7M\x15\xd7\"x\x97)\x8a5*\xd6\xeb\x16\xdf\x95,'\x11\xab\x9dNy\xbd#z\xd5z\x852sE\xd5*}\xc0\xaaF\xeb\xb6\xc4;\xe5q\xb3\x8b\xa9\xb9o\xcb\xb8\x1a\x95\x91\xef\xdbr\xe0fV\x01e\xdcb[\x90Bl#\xcdnG\x95\xa1\xb2f\x02\x87\x1e\x0c`\xa2`;/\xe8\xd7\x12=\xc6\xd9L=\xa1\xf3\xf4\xe9MA\x8aO\xa8 \xa4-\xd7=\xa1\xaa\x99\xd9\xea\xd5m\xd1\xdd\xc65]\xbc\x0d#\xc5\xfe%\xd2a4\x9b\x9e\x9d\x7f\x0fM)r\"\xf7mi\xceOA\n\xbd\xae\xa8\xdd\xc3n\x9bp\n\xca\x1c \x98#\x01\xe7\xdb\x14\xe0\x1cc\x8cQ\x8e\x04\x9c\xe2\x9e\xbc\xd0*\x10e\x0f\x88?\xfb/8\xf5/8\xef[\x0f\x9c\xc9N\xf5i\xcf\xf3\xc9N\xf2\xe13|\xb2\xd3{\x8e\x04\xfc\xe6\"\x01\xfdu/\xcb\xf5 \xb9=%rf\x96\xcf\x04\xf9=\x97e\xf6\xd4\xb8\\\xdf\x0c\x17f\xf3\xe4\x03-S\\\x92\xb7\xd3\x9b\x94\xd2\x91\xab3\x98\xa5\xd3L\xd8\x17\x9f\x99\xd3\xfc\xf6\x9f\xb6\xbe\xce\xca\xc3\x19\xd3\xd9P\xeeMw\xdf\x82\xf96'd\xdaT\x93\x92-\xcc\xae\xe9\xcd\xab\xe9\xce\xa8\xe9\xcb\xa5i\x1d\x85\xd8\xfc\x99\xa1\xcc\x99z\xce\xcc\x05\xd92#\xf2dN\xcf\x90i\xc9G\x19\xca\x8a\x99(\x1f\xa6\xa5f\x85S\x16e\xbfDZ\xb6\xcb%y.-y-\x17e\xb4\xd43X\xa6\xcc]\xe9\xccZ\xa9\xa7\xf2\xd33U\xa6\xc9Q\x99,;e\xda\xbc\x94q\x19)\x83\xb9(\xf9)9\x94\x85\x92\xbf\xe6\xcd?i$j4k\x8b\xcd$\xe8\xcf6\x19\x99g2\"\xc3\xa4\xd2\xe4\x94Y%\x17\xe5\x934\xf3G\xa6\xcb\x1c\x99.g\xe4\xfc\xd9\x0d\xe6\x89\x0ce\x88\x1c\xc5\xb7\xb01\x16\xa4\x18\\\x8e\x0e\x87Q{\x1fl}\xbamU\xb3\x9b)\xfa0\x98\xf8dk-\x18\x0e9\x8dzG\x06m\xdab\xfa~\xf7\xf3u\xb4\xe1\x9b\xd1]\xcd2\x7f\x8bO\xe9\xf1\xbe\xd9\x80\x1d\x97 \x1d\xdeM\xd9\xc8=\x18K4\xd3\xb6DN1r\xc76\xa8\xdc\x82\x9d\xd2g{\xe7\xdfD\x1boe{-\x9d-\xa7\xb5v$\xfc\x98\xf6UN [U\xb3U5[U\xb3U5[U\xb3U5[U\xb3UU\x14\x92\xad\xaa\xd9\xaa\xcaK\xb6\xaaf\xabj\xb6\xaa\xca%[U\xb3U5[U\xb3U5[U\x9f\xb4U\x95j\xab\xb2QU3\xa8\xfaL\xa9\xef~\xbeV\x0c\xa9\xf4u\xbb\xd9\x94y\x1a\xbf*\xaay\x99\x83\xf7M/\xee\xb1@\xaec\x83\xc5\xb5\x9bw\xd4Vw\x8c_4\xffD\nu\xf6\xf4\x8dY\x95'\xf7l3:R[\xbf\xb0\x7f\x854#.\xf2\x1d\xa5\\~\xed\x0b\x1c\xac5JaK\xb4j\x7fF\x86\xa35\x9a\xd3\x81tN\xd7\xc8t\xbcF\x16\xe7k\x14\xd1\xca$N\xd8\xc8\xe5\x88\x1d\xd3\x82d\x0e\xd9H\xb7\xeb\xc7\xd4n\xcc\xd2b\x07m\x8d\x1e\xa55\xd5I\x1bY\x81\x04\x14\xd1\x9d\xc9\x80\x82}.\x15x\x01\xb9\x16:\xcay\xaa'\xc0\x0f(%\x04\x81B\xe1\xe46\xbd>\x12\x8a@ \xe1\x08\x14\x84$\xd0\\X\x02-\x81&l#\x16\x0e!\x9f\x0dQXh\x05\xc3\xc7\x97@\x15\x16r9O\xf52\xf8\x02-\x830\xecK\xd4\xda\xc8d\xc0\x06J\x0en\xa0\x94\x00\x07\x8a\x029PJ\xa0\x03\xe5<\xd5\xb6jf\x02$\xe8[\xcdS\x8d\x82\xedX\x06\xa0h\xc4\x18\x9cb\x01QP\x1a \x05\xa5\x06S\x90\x05PA\xcbA\x15\x8d\x1a1 \x16\xb4\x10fA!\xf4\x01\xb9\xe1\x16\x14\x03\xb9 \xe7\xed\xf3\xf1\xd0\x8b\x9b\x86az[\x04\xc3\xa0 \x83\x11\x82cP\xb0\xdfAX\x06M\x83f\x90\xf5&\xee\x85\x10\x0d\n\xc14\xc8\x0b\xd5\xa0\x00\\\x83|\xa3\x14\x0b\xdb\xa0\x08\xe8\x06Y\xe0\x1b\xb4\x0c\xc2Aq0\x0e\x9a\x05\xe5 \xe7\xc0\x04!\x1d\x94\x0e\xd6A\xeeV\x18\x9c\x96\x14\xe2A\x0ba\x1e\x8d\x94 \xfa\xa0\xd4\xc0\x0fJ\x0c\xfe \x1f\x00\x84, \x10\xb2\x00A(\x19\x18\x84R\x02B(9(\x84\xa2\x81!\x14\x03\x0e\xa1x\x80\x08E\x82D\xc8*\x9d\x9dW\xfa\xc7B\n~\xc0\x08\xc5\x83F(\x0e8B\xb6n\xa4\x04\x90\xd0R\x10I\xa3e@J()\xac\x84\x92BKh1?\x04!&\x14\x013!\x05jB&\xdcD\xe6:\xf1\xa3\x05\x8e\xfc*\x16\xa4`51H\x10\xd4\x14\x8f\x03\xcdHe\xbb\x81\xeft,(m\x1e[\x1d4\xf2\x1e,]\x16\xfd\x94\xd0\xd1<\xf0\xc8\x06\x1f\xcd\xecJZ\x10\xc9\n#\xd9\x81\xa4\x98\xf6&\x03\x93.\x95\x18\x99\xca\xa9\x8e\x95\x92\x12\xa5\x8a\xc2\xa9\xd2\"U\x11XUr\xb4*\xa7:\x862 \xddZ\x8co\xa5F\xb8r\xaac\xb9\xc4a]\x89\xd1\xae\x9c\xea8\xa7:\x0e\xa0`~\x1c,\xdc\x9a\xa4X\x98\x1f\x0dK\x86\x87-E\xc4\x0crL\xa3\xb1*\x0fiQ1\x17.\xb6\x1c\x19\x8b\x80\x83\xbc\xe8X$>\xe64\xb2O\xc4\xc8\xdct,\x96\xc7\xc5H\xd9\x94\xc1\x89A\xcb\xc2\xa3\x10\x85\x98M\xc6\xcc\xecv\xd9\x04\xb8Y\x04r\x16\xc2\xce\xc2\xe8\x99w\xd4\xa6 hq\x18\x9a\x1dE[\x8c\xa3E#is\xb14\xf70E\xe1iI\x115O[,\x9c\xb8\x08W3\xa8Yp\xb6\xa4H\x9b\x0bk[\x88\xb6\x99M6\xd1\xb7\xf4\xf8[\x00\x81\xb3cpv\x14.%\x0e\x97\x18\x89{\x0c,n\n\x1a\x17\x89\xc7MB\xe4\xe219\x07*\xe7\xc2a\xe2\x91\x98027 \x9b\x8bF\xe7\xac\x1dJ\x8d\xd0\xa5\xc5\xe8\x1c(]j\x9c.5R\xb7\x9cG\xa2\xd0\xba8\xbcNG\xec\xd2bvKP;\xfb\xe5+$>L*_\x9a\x92/M\x11_\xb8\xe7\x10\xaa\x94\xf0\xe0F\x11=e\x8dn.?\xbc\x1e!b\xbe\xee;t\xcf\xc6ZUe6M\x0b/2y\xd5BO\x06QA\xc5#\xb3\x91\xc8\xddT\xfa&\xde\xbcj\xf6c\xa3\xac\xd2\xa2\xc5\x07\xcc\x8e\xb9\xaf\x8av\x18Y\xd7\xbe\xa6\xf4\x911\x97\xbe\xab\x81\x100\x80\xf2i\x97\xc9\xf0O\xe2\xc0\xf2w?_O\x06\xca\xeb\x9d\x11 \x1a% \xccd|\xc8\xc7\xf4.\xce^\x9c\x98O\xa3g\xc3\xb7\xa76rB\xa2>4'\xa8oj\xd2>\xf4\xe5\xe2\xed$\"9\xcan(i\xd1\xcc\xa4Xf\x8e\xb2K\x8a_\x920z\x99\x12\xbb\x0c\"\x97\x89q\xcb\x1ce\xb7\x1c\x85L\x8bA\xe6(\xbbX\xe41)\xee\x98\xa3\xec\x8c\xb2\x00i\xccQv\xcb\x91\xc5\x1ce\x97\xa3\xec\"h\xe4(;\xb5\xe4(\xbb\x1ce\x87\xd2b\x829\xca.G\xd9AI\x8a\xed\xa5G\xf6\xe2q\xbd(To\x02\xa6\x17\x8b\xe8\xe5(\xbb8\x0c/%\x82\x97\xa3\xec,\xc4\"P;o\x94\xdd\xb4\xa4\x8e(2\xb1\xa3\x8a\x0eH\xd6\xfb\x18d\x80\xd2\x8cE\x05\xa6\xc7\xcf\xd5;\xf2\xc8\xc1sv\x00!&~\xc7r \x9c\x0d#\x18\x94\xfc\x81rs\x9a;\x11N\x98\x19\xad5\x07T\xf8\xa2AT\n\x99\x1c:\x95C\xa7\xec\x04R\x82\x0e1\xb0\xc3\x02\xe0!-\xf4\x10\x05>\xa4\x85\x1f\"\x00\x88\xe4\x10D\x0e\x9d\x822 \xb2X\x0cZ\xa4\x86-r\xe8\x94\\\xe2\x00\x8c\xc4\x10F\x0e\x9d\xca\xa1S9t*\x87N\x85\xe1\x8e\x08\x1b\x7f\x0e\x9d\x8a\x19\x9c\x18\x08$<\nQ0\xc8d $\x87N\xf1\x12\x03\x8c\xe4\xd0\xa9\xe50I\x0e\x9d\x9a\x0c\xa1\x98M\xce\xa1S\xa9\xe0\x95\xc7\x00X\xa6@,\x91 \xcb$\x98%\x1eh\xc9\xa1Ss`\x97\xb4\xc0K\x0e\x9d\xfa\x02\xa1S\xd3\x81\x98X(&\xc7F\xe5\xd8\xa8\x1c\x1b\xf5\x87\xc5F\xc9(e$\xfc)GEu\x1e\x00\xf4\xfd}\x8d\xdb\xc9\x08hC\xbf\xd2\x05\x81\xc4\xb2r\xe3\x95\x1abZ\xcf>\x88\x83o\xaf\xfa\xc3\xa1:Nn~\x8aK\xfe\xd4\xaac\xfa\x05_X;v\xd36\xfd\xe1\xf4\xee\xa7\xd3\xbf\xd3\x7f\\\xd4\xbb&\xba/2\xea\x1a\xdb\x0f\xa4\xafB\x80a\xc9\x98`\xf5\xe2\x8d\xd88\xa0ib\xe0\xb6\xfb\xd2\xd8\x00\xb4\xfa\x14\xc2\xec\x03A\xbb\xd809\"\xc3\xc8C\x0d\xcf:xW\xd4$ \xda)\x95\x0d\xb0.\xdb\x0b\x8f\x92An\xf8\x854\xa8 \xa4\xd8\xdc\xc2f`t\x90\x9b\xb8\xe7\x0d\xa9M\ns\x82L&\xf2\x1d\x88\xb4\xf4\xac'\xd9\xd8\x8ba\x08\xf6T\xd6\xb5\xddmy\xa0U\xf6\x1b\xd2\xb7\xb2H\xa3\x1a\x98,\xa3\xee\x01\xe3kq\xf1\x19\xe1\x87\xb2#T\xd2Q\x16i\xba\xa2\xeaN\xd1o\xb7\xb8\xc6w\xb8e\xa3\xc1i\xa3{\xcc,\xc3\xa5\x0c\x0cAc\xb6'2\xf1F\xfe\x8c\x0d)\x13\xc2\x0d\x15q\xfb\xe6\x8e\xf6\xe5\xb6\xec\xe4\x0e\x96\xf5\xa6e\xa6d\xaa\x07\xd6[\xb6A\xca\x147\x05=\x14\x0e\xed\x1b0\x14\xd4T[\xdc\nJ\x9c/\xca\x0eF\x85\x0e\xd0\xae(\x85\xce\xc2\xf6\xa0\x15\xf4a\no\xc8\xdf ~\xec\xfa\xbd\xc2\x83b\x88\x9e\xf11\x1av\xeaM\xcb\xe4\xfb\xaa\x08U)\x18c[\x10\xfc\x9c\x94{\xc7\xa67\xd2\x03\x0f\x01\xfafG\x8a\xbd\xd0\xdd\x8et\x1e\xefoq-X\x83\xed\xb2\xfc+h\x94Bo\x90\x1a\xa3z\x0e=\xbc-on\x9fW\xf8\x0eW\xa8\xa9\x9f3\x17\x07T\xd6\xd0J:iT@\x15\xe3\n\xb0J\xa3\xb7lP\xa2\xe5\x11\xfbx\x95D* Rq\xb2i/\xb5\xd3 5r1\xfd\x8e\xffE%\xc2\xa9\xd6\xcc(m\x96\x0b\xb0H\xbdM\x13\x88 \xfb\x94\x96P\xe1\xa7\xcaFYG\xd4\x99=\xbe2C\x1fT\xf9\x7f\xa8\xfc\xaea\x92\x83\xff\xca\xcey\xa3\xff\xc0\x0dc;\xc0\xa34r/\xe4f\x9a\x12\x1bE74Br\xebb\x1b\x1a\x7f\xaa\xce\x8a\xb6F\xbd\x0dp\xafUd\x99\xb4\xc8\xd5\xca9\x8b.W\xf6\x91k\xb1\xc2\xa2\xd2\x97k\x8b+\x80\xa0\xe9\x06\xb0\xc6\xe4\x1eK\"\x80J\xd4B\xea\xb6u\xb1~h\xaars\x9c\xa4@\x18\xcc\x1c\x16\xa6\x1a\x13[\xf6uh\xf2\x81\xb5\xe6\xf4\x8f\x96\x0c\x8f\xa7\xb5\xfc\xa1:\x8b6\xbc\x8bT\x17\xb7\xd8\x98\xa6\xc0hL(\xd1\x19\xf4\x19\x87\x16\x03\xbb\x1b*\xd0\xb6\xdc\xedp\x8bk\xc2\x8fRTA(P\xdb3\xf0}\xd0\x1eD\xaf\xb7xS\xd2\xf6\xad`0\xf4\xdeG\x89sb\xf5\x92\x8b\x93\\\x86\x88M\xe8\x13\xe7\xf6\x86K\xe7\x07\x97\xcc\x03\xce\xe9\xfbF\xe6{\xbd\xa5\xf2w\xf3{\xba\xcd\xf2q\x9b\xed\xdd\xc6\xfa\xab;e9\xfd\xdaf{\xb4\x81AU\xa3\xe6\xf0e[\xe2\xc5\xc6<\xd6\xf4\xdeX\x80\x969\x9ekn/\xb5\x85\xfeiQ\x9ei\xf1^h\x0b\xfc\xcf\x16x\x9eY\x04FB\xff\xb2\xb4\x9ee\xc9|\xca\xc2\xded\xc9\xfc\xc8\\\x1edK|\xc7\xac~b$\xc6Cl\xaeo\x98\xd3\x0fl\xa6\x07\x98\xc5\xf7+\xa8a\xfb\xad\xf8\xc6\x0e:\xd3\xc7k\xf4\xe7\xb2\x8d\xef_\xc2u/\xf3\xe8\x02\x0f.\x89\x9c\xe9\xcb\x95\xc0\x8bk\x99\xff\x96\xc6\xe5\xfaf\xb8\xd0g\x8b\x0f\xb4Lq\x89w\x96\xd7\xf5\xc8\xe1\x91\x15\xf4\xc52\xdd2\xe2\xfd\xaf\xcco\xffi\xeb\xeb,o\xab\x98\xce\x86<\xac\xdc}\x0bzUM\xf0\xa7R\xa1\xe7\x85>T^\xef)\xb7\xdf\x94\xcfc\xca:\n\xb1^R!\xff(\xdd3j\x81OT\x847\xd4t?(\x8b\xd7Q\xc8\xf7)\x91\xd7\x93\xa5f\x85S\x16\xf98\xe9>MK\xbc\x99,\xdeK\x8b\xfc\x96t?\xa5\x94\x1eJN\xdf$\xddaC\xf7GJ\xe3\x89\x94\xcc\x07)\xad\xf7Q\x9c\xdfQ\xd0\xe3(\xd2\xd7(\xc6\xcb\xc8p\xc71k\x8b\xf5\x17\xf1\xfb\x14Ez\x13E\xf8\x11)MN\xe9;\xb4\xc8k\xc8\xf4\x12J\xe7\x1f\x94\xce3h\xfe\xec\x06\xbd\x81B~@B|\xff\xf1\x88\x14\xd8\xdb\x02\xc0\xd4\xa0_kv\xc1\x058\x15'8\xda>u;\xf8D\xbcj\xb9\xf9;\x84\xe1L\x07+\x97\xc24#0\xf3H&i?\x18c\x021KX3)\xf82\xb8\x1b\x99\x00L\xa1\x80\xc0b\x1b\xd3'U,\xd9\xba\xa9\x9f\xff\x03\xb7\x0d\x9f\x8d\x13il\xea\xed\xd8\xe6\xa1\xb96N\xfd\xc0m\xd9\xd1\xbc\x9a\x04;1P\x93r+\xb6v\xdd\xb8\x0e0\x0b,\xb5\xd5\x8c\x85b\xfb~\"h\xf4H\x0cl\xc1T\xf4\xce\xc3\xdf\xb8\x9d\x97\xea\xc1\xd7\xbe\x812\xb3\xf7Y\x06\x03w\xea\x8c\xe0v\x10&]\xbf\xde\x97dE\xf9*\x92\x17\x02\xcbK\"\x18^ab\x8c\xc0\xeb\x8f}9\x08~\xc1.\xe9p(\xc57P!\x0e\x10\x140\x92x\xa4\xe2rdl+kg\xd7i7\x023\xa4\x04\xb4\xd1\xb2C\xcc\x7f\x90\xee2\xd2\xaeST\xe8\xd0\xb7t\xf8\xe1h`]\x15\xe9z\xfb\xff7{\xab\xd6\x11\xec4\xdf\x92\x0b=\xc3\x881\n\xd2\xef\xbf\xc1\xc4\n\x18M\xd0(\xbb\xc1'\xc8\xe2Y\x84vm\xc3,\xcbwe\xd3\xcbX\x06|-\xd3\x1f\x9cz\xb8\xce\xb7i(\x9f\xd5`\xd9\x1b\xb2\x90|:{\xf5\xfe\xf2\xfa\xfc\xcd'\xd4\x91\x82\xf4\xdd\xe9_\x92\xcc\x14\x10{\x191\xde\xf0\xa6M-A\xa0\x96\x1c\x9a\x0e\x14L~\xbe\xab\xca\x1dF\x9b\xe3\xa6\xb2`w\x83$A\x17uI\xca\xa2\x1a\xfdb\xaf\xf45\xe3`\x18\\\xf7{Y\xa8\xff\x10z\xe9\xf2\xfc\x7f\x9d\xbf\x0e\xbd\xc4g\xd2\xfb\xceo\x17\xd7\xff\xf9\xe6\xf2\xec\xb7w\xd2\xcc\xb0\x83\xfe\xcb\x88n\xee\xca\xba\xa8V\xa4\xa8\xaa\xe3\n0\x91\x98 6\xbfR\x8f\x9d]\xbfgB\xb7\xa8*\xbe\xa5\xe3-U\xb8p\xc7\xbd8\xcb\xee/\xb6e\xc5N\xf7\xc5\xe6\x96\xbd\xcb\xb11\xe6\x1d^v\xdc\x10O\xb5\xb4a\xed\x01X@yT\xa1\xd6\x1c\xfa\x8aYU\xb9m\x816\xb3\xacoN\xe8\xc7\\\xeb;\xe0\xb6l\xb6\x08\xd7\xcc\x05O\x92o\x12\x1d\xfc\x807=;v\xc9\xd4\xd9\xd1\x89\xb9\x01\xde\x16\x87\x03\xae;8\xf3\xea\x1c\x18\x05\x95\x1fq\xb7\xda\xa8\xce\xb3(\x1a+\x1f>\x16:\xc00\xd0\xdc\x13\xef\x88;\x18sYP\x17\xeb\x8eN\xd3\xfcj\x15\x02\xae\xaa\xf9K\xd2N\x8b\x98\x967\xbfZ\xf1\xad\xab\xc6\xba1\xfbZ7+*\x13Ww\x98,\xabY\xa3\xe2j\x03}c\xf0\x1fa|\xb6\x02>[\xe1:V\xd7\x0c\xe8\x17\xaa3\x89^\x87h\xd8\xa8t\xac\x19\xda\xc8\xcf\xfb\x9c\xf7\xf7\x1c\x11\xda65V\xb6\x86\x8fuEu\xc7\x02u\xfdf\x83\xbbn\xd7W\x15z\xdb\xdd\x9c?\xe0\x0d\xdb\xc3\x8a\xaa\xc2[A\xf3{\xd2\xf0%\x82%]FY)\x8djhd\x0b\x91\x12\x1a\xe9\x0bbl\x17\xd6\x97f\xf7\xc3\xc9\xb0x\xc5\x8e'\x91\xa3\xedW\xecb\x04\x80J\x96\x0c\xead\xb0P~2\x85\xd5'\xfa\xdb'\xd8\xa5>\xc1f8l\xa9\n\xc5\xcd\xa6i\xb7e}S\x1dQ\x7f\xd8\x16\xd2N\x03=o\xda BS\xfbDL\x16k\xde\xe0\x9d\xa3\x1e\x1dF\x194\xec~\xf2\xfc\x8b}\xf0]C.\xfbz\xfe&x\xfe\x7f\xcf_\x7f\xbc~\x7f\xb9\xba<\xbf\xfa\xf8\xcbux7\xd4?x\xf7\xfezu\xf9\xf1]\xdc\xcbW\x1f_\xbf>\xbf\xba\x8a{\xf9\xe7\xb3\x8b_>^\x9eK\xc3\xabom\xe1\xc6\x8b\xc0\x96YG\x8f\xe8,s\xc4\x91\x1d\xcc)eB\xc8mR\xef'\x7f6\xb0t\x1eP }\xa0\xbc\x19\xc0\xc8|?\xa8t\x9eP!_\xa8\x99\xdeP\xa9\xfd\xa1<\x1eQ\xa9}\xa2\x9c^Q\x8b\xfd\xa2\x0cz\xae\xcc^i}\xa3\x16{G%\xf7\x8fZ\xe4!\x95\xdeG*\xa1\x97Tj?\xa9\x84\x9eR1\xbeR \xbd\xa5|\x19\xb7\x96xL\x19\xc4\xec\x99\xb6H\x8c\x0f\xd5R/*\x83\x9c-\xbb\xd6L\xbf*GV-\xcfV\xec\xc9\xa6\x15\xda\xa5gzX\x99\x82\xcb\x99A\xcb\xd7\x82\xc4~V6O\xab$\xbeV\x89\xbd\xadL\x7f\xab\xc5\x1eW\n-b\xc9\x90\xb5\xc4\xff*\x98\xfc\xc9\x99\x15+\xe8\x85eO\x8f\x13\xef\x89e\xff\xfe\x9f\xf6\xbe\xcf\xf2\xc7\x8a\xed|\xc8'\xcb\xdf\xd3\xa0_\xd6$\xcf,\xd3\x0fa\xa1wV0\xbb\x95/\xb3\x95?\xab\x95cTb\xfd\xb4\xc2\x9eZ\xb6,V\x0b\xbc\xb5\xa2\xfc\xb5\xe6xl92E\x85\xbc\xb6\x92\xf9m9\xea\xd78)\xa9\xf7Vr\xff\xad\xc4\x1e\\i}\xb8\xbc\x19\xa6\xcc\xc4;ff\xa94\xbe\\ \xbd\xb9R\xfbs\xc5ztE\xf8tE{u\xc5\xf9uY\x13-\xd9j\x8d\xf5\xff e\x8c\x8a\xf4\xef\x8a\xf2\xf02\x1a\x9f\xd2\xcb+\xb9\x9fWJO\xaf\x94\xbe^\xcb\xe6;\xe8\xef\x15\xf6\xf8\x92\xb3>\xb9\xb5\xea!\x13\x0e\x83\xf0\xab\xb2cf\x90O\xdd\xf6\xf3\xe9\xdb\xee\xe6S\x07\xd33\xcc\x07\x18\xc1\xb7t\x13\x91\x8d\xb7\x12A\x960\xa9\xf3\xb9t \xef\x95!c\xd4\xe0\x196\xc0\x9fgc\xfe\x08*\xad\xf8\xef\x9b\xa2\xe6\xbe\x03\x83yjh\x00\xff[\xf2\xf7\x12\x884i\x18H\xbd\xc5\xa8?H\xba\xca\xd9hy\xde4uWv\x04`\xea:)\x1a\xb4l\xb3g=B&\x9a\xf8\xd8\xdf\x8e\xa4\xd0\xb1\x0f8N\x04\x1b/\x03\x8d-+\xc9\xb6\x95\xa7\x05\x8c\x89\x15.^\n\x16\x07\xd1P\x0fP\x1c\x05\x13\xdbQ\xa3i\x10\xb1\x9d\x86a1^\x0c\x0e\xc7\x0eF\x0c0\xec\xefw\x14(<\x11\x126-\xe8 \xe0\xe0 \x18\xec\x87\x82C@\xb0s\x94\xa6\x80\xc01\x10\xb0\x0d\x00^\x08\xffF\x82\xbf\xf3\xa0_\x07\xd8\x1a\x03\xfb&\x04}\x1d\xad08m\x11\xdck\x83w\x13\x82\xbbvhw\x11\xb0k\x03rS\xc3\xb8^\x10\xd7\x86n\xd9\x00\xdct\xf0mR\xf06=t\x1b\x0f\xdcF\xc1\xb6\x13@\xdbX\xc8\xd6\n\xd8\xdak\x8f\x05\xe2\xc2`\xed\x04\xa86\x12\xa85\xba\x91\x1a\xa4M \xd1Z\x01\xda\xb4\xf0lZpv\x19?D\x01\xb31\xb0\xac\xbc\xadk\xceu\xf9E\x07E\xad386\xdcY\xa3\xb0\xe5{e\xd3\xef\x19\xa2\xdf\x80SDT\x9e\xa0Uv\x83&n\xd1\xea\xd1\xaem\xf6Fe\xf8\xael\xfa\x8eS\xd0\xeb\x19\xd4f\xbe\x9fo\x1a\xca\xc05\xb8\xd6\x0f\xa6\xa5Og\xaf\xde_^\x9f\xbf\xf9\xc4\xf4\xab\xbeK<\xa3@\xf4\xe5\x84\xf9\x80/l\x1a'\x02\x8d\xf3\xd0t\xa5\xac\xbfU\xe5\x0e\xa3\xcdqS9B\x01\x07Y\x87.\xea\x92\x94E5\xee\xe6W\xb6%\xe9a2\\\xf7{]\xe4=G\x1f.\xdf\x7fx\x7fu\xf6\xcb\xea\xea\xfa\xec\xfa\xe3\xd5\xea\xe3\xbb\xab\x0f\xe7\xaf/~\xbe8\x7f\x13|\xf7\xea\xe3\xab\xb7\x17\xd7\xd7\x11o\x9e\xbd~}\xfe!\xe6\xc5\xcb\xf3\xffu\xfe:\xe6E>\xf3\xc1\xf7~\xbb\xb8\xfe\xcf7\x97g\xbf\xbd\xd3f\x91\xf9\xbc\xbe\x8c\xec\xfe\xae\xac\x8bjE\x8a\xaa:\xae@I\x9b\xc2\x14\xe6\xd7\xaaoe\xd7\xef\xd9\x96AO\x0fp\"\xc3[t\xd7\x10\xdcQf\xd5\x88\xd13\xa4\xce\xe5\xc3\xc2e\xce\xae\xc5\xe6\x96}\xcd\x83\xef\x98V\\v\\!.\x88\xb4\xba!\x8e\x88r\xbdA\xb19\xf4\x15\x0b\x88\xe0.\xb7\xb4\xf1e}sB \xdc5\xb0\xbcq[6[\x84kv\xa8v\x0b\\\xfc\x807=m\x89qHg\xbe\x7f\xec\xb0\x7f[\x1c\x0e\xb8\xee\xc0\xd5\xd3\xc6\xcf\x93b|\x8f\xb8[\xb1-Y\xff\xc1{\x84\xd5\xa6q \"t\xa2aj\xf8y\xfa\x88;\x98\xa5S\x8dP\xb1\xee\xe8\xe4.o\x82B\xc8\xd5\x0c\xfe\x92\xa6e\xd0R7\xcb\x9b h\xb8j\xaf\x1b\xfb\x18\xd4\xcd\x8aJ\xe9\xd5\x1d&iZ\xa1Qs\xb5\x87\xbe!\xb7\x05xu\x05\xbc\xba\xc2\xf5T\xdd}\x8e\xcee\xd4)\x1a;\xea^k\x16\xf4\xc8\x9d_\xf9z\xdaC\x00\x99Fl\xdb\xd4\xd8\xd8\xd6>\xd6\x15\xd5\xca\x0b\xd4\xf5\x9b\x0d\xee\xba]_U\xe8mws\xfe\x807l/.\xaa\noE-\xdf\x93\x86/Bl\xf8\xe6\x8e*\xdfmc\xfa\xff\xb3eO \x8e\xf5\x08\xa2L\xbb\xd0\x05A\xf7\xc3\xc9 *\xc0\\\xa6\xd2[c\xd6\x1f\xc3\x11\x9d\x80i\xec\xd0\x9459\x11\x01\x04\xe8\x93)8?\xd1\xdf>\xc1.\xfb 6v]S\xe5\n\x83Q\xc7f\xd3\xb4\xdb\xb2\xbe\xa9\x8e\xa8?luK\x12\x8cO\xd3\xce\x10\xef\xda\xa7b\xb2Y\xe3\x874\x07\xeaqn\x94\x89\xfa\xba1v\xf9w\x0d\xb9\xec\xeb4[\xfc\xf9\xff=\x7f\xfd\xf1\xfa\xfd\xe5\xea\xf2\xfc\xea\xe3/\xd7q{\xbd\xfe\xd1\xbb\xf7\xd7\xab\xcb\x8f\xef\xe2?\xb8\xfa\xf8\xfa\xf5\xf9\xd5U\xfc\x07?\x9f]\xfc\xf2\xf1\xf2\\\x9b\x02}\xc3\x8e\xeb\x0cw\x02_~,\xcc7$$M9\x918\xe9D\xbe!A))\x13P\x00\xb7v\xf9\x86\x84\x19\xc9(\xac\x84\xf2\x0d rI\x9b\xbc\"\xdf\x90 \x97\xb84\x16\x89\x13Y\xe4\x1b\x12\xf2\x0d \x81\x04\x17\xf9\x86\x84\xe9\xc9.\x0cr$\xdf\x90\x10\x97\xfa\"|7@\\\xfa\x8b|C\x02+\x13\xd3a\xe4\x1b\x12x\x89I\x8f\x91oHX\x9e,#\xdf\x9009\x91\x86\xd9\xe4|CB\xaa$\x1b\x8f\x91fcJ\xa2\x8d\xc8T\x1b\x93\x92m\xc4\xa7\xdb\xc87$\xa0\x19\xc97\xd2\xa6\xdf\xc87$\xf8\x12q\xc4\xa5\xe2\xd0oH\xf0\x9fP\x84\xd1\x19}A\xaf\xbed~}\xcbg\xd9\xe6\xdb\x17\x9e\x9fe\xfe}\xa6\x1c\x93ee\xb4\x87\x9f\x97\xfdl.\x00\xd3\xfc\xfc\xa6x\xfaM\xf0\xf5\x9b\xe0\xed\x17\xef\xef\x17\xef\xf17\xd9\xe7/\xec\xf5\x17f\x97\xa4\x9e\x7fv\xdf\xbf\x85\xde\x7f\x065\x9b7`Z\x7f@\x9fG`\xa4O\xe0l\xa7\x0c\x8fg`\x10BI\xe4\x1d\x18\xf4\x0f\x9c\xd6\x90\x85>\x82>/\xc1i\x0d\x99\xeb)\x18\xe7+8\xb9-3\xfd\x05\x83\x1e\x83Q{\xff\\\xbd/\xa9\xe7\xa0\xc3w0\xa5\xf7`\xc8\x7fp\x99\x07\xa1)\x1b\xf8\x89\xd9\xe6C\x98\xd8\x8b\xd0\xe9G\x18\xf4$\x0c\xf8\x12\x86\x99 \xa9?a\xa4G\xe12\x95\"\xce\x15/\xf8\x99\xdd\xb3p\x86o\xe1d\xef\xc2\xf9\xfe\x85.\x0f\xc3\xd9\x87Z\xeb\x96\xe6\xdf\xd4\xfc\xbe\x86A\xc9\x19\xe6H(s=\x0e\x1d\xe4\x88\x02\x9c;p\xab\xe4^\x87\xc9\xfd\x0e\x83\x9e\x87 |\x0fS{\x1f\xc6\xf9\x1f.\xf2@L\xed\x83\x18\xe9\x85\x98\xda\x0f1\xca\x13q\xbe/\xa2\x8b\x1c&!o\xc4\x84\xfe\x88A\x8f\xc4D>\x89K\xbc\x12'\xfb%&\xf0L\x9c\xef\x9b\xe8\x94<\xc8\xed\x9d\x98\xdc?\xf1q<\x14\x93\xfb(\xc6{)&\xf7S\x0cy*\xce\xf1Ut\x10\x1a<\x18=\xde\x8a\x93\xfc\x15\x13{,\x86|\x16\x17z-z\xfc\x16#\xd4\x93\x80\xefb\xac\xfe\x92\xd2\x7f1\xe4\xc1\x18\xd3\xa6\xc4^\x8c!?\xc6\x84\x9e\x8c\xc9}\x19}\xde\x8c\x8b\xfc\x19-\xd4hK\x88\xc3\xa31\x85Oc\x94\xe3^\xc0\xaf1\xda\xb3\xd1\xe3\xec4\xd9\xbb\xd1G\xcb\xea\xc5\x91\xc0\xc7q\xda`\xc5\xf99\xc6\x8cI\xa4\xaf\xe3\x0coG\x97\xc7K\x12\x8f\xc7(\x9f\xc7\xb0\xd7c\x8c\xdfc`\x14\xa7\xf9>\xc6z?\xba\xfc\x1f\x13x@N\xf0\x81\x9c\xef\x05\xe9\x1b\xb4HO\xc8\xc4\xbe\x90\xde\x16Y95\xadG\xa4\xc3'2\xb1W\xa4\xdb/2\xb5g\xa4\xc37r\x91w\xa4\x85\x9a\xeb\xe0\x17\xf0\x98t\xf9L\xba\xbc&\xd3\xfaM&\xf7\x9c|\x1c\xdf\xc9i\xde\x93\xd1\xfe\x93\x13=(\xa7\xf8P:\xbd(\xdd>r\xf1^r1\x9e\x94\x13})'xS:\xba\xb6\xc0\xa3r\xc2\xa2H\xebe\xe9\xf4\xb3L\xefi\x99\xde\xd72\x05'E\xfa[\xc6z\\\xea>\x97\xe13UJ\xbfK\x87\xe7%\x14_C\x06_K\x91\xb8s\xb8#mp\xf48\x1b\xf3\xd2R9\xcb\x7f\xdf\x145w\xd7R\xe8\x8d\x0e^\xea\xcc\xb14\xa5\xaa\x07\x10i\x98\x13\xcf\x16\xa3\xfe`\xe8\x90gc\x876M\xdd\x95\x1d\x01\xd7\x03fm\x8c\x1b&\x85\x9e\x8c?\xa95\xc1x\xd1\xcd\x9b.S\xfa\xff\xae\xd9\xe3\xc1\xec9z\x0e\x16]\xd7lJvl\x13\xae?*!\xc3\x8d\xd0\xe2\xddWT\xa3w\xdf\xf8\x84\xd1\xbb)\xefpmu\x8e\xcc Xs\x02\xd6\xaf5\x01\xabz+\x8f\xdf\x17\xdb\xee\xe6\xad\xbc\xca\x89\xc5y~_\x17UE\x89\xf7\x15\x99\xec\xee\xcd\x10v\xc7r\x027\x00y%\xb50\x86\x94\xfb\xe8o\xb3\x96\x8f\xc3\x9b\xc7\xc9* \xeb\xd0\xe6\xb6)7X\xe0\x8f\xf6X\x05g\xab\xed)\xb6~}\x7f}\xbez\xff\xe1\xfa\xe2\xfd;oV-\xf9\xbd\xff:7sb\xc9\xbf\x9f\xbd\xba\xba>\xbb0\x13m\xc9\xef\xbc{\x1f\xf8\x99y\xc3\xae~=\xbf~\xaf\x8d\x12ww 7\xfc\xcb\xe7w\xa6\xf3$\xcf\xc6\xa3fL\xd6B-\x88\xe2l\xc7\",\xc6\x05L\xf7t\xd5%\xdb\xb3q{\xc4\x8b*\xb9,/N\xbaR\x8f~\xd1\xbd\x9a\x9f@\x9d\xc9\xfd\x97\x9a\xf0I\x1b\xa2\xe5\x94RQ\xde\x94\xe1H\x8aY\xb2\xca*\xad\xbc\x0dZ.\xb1\xec2+\x99\xd4\x9a\xe5\xc6\x17\x16\x01\xb67M\xe9\x15'\xbf\x82\x12,Z\x86M\x92b\x7fT$\x9c.\xcb\xbeHD\xd92\x99f!HE\x8c\x1c\xf4R\xc0\xc7`\x82\x08\x9c\xd2!\x9cA\x9c\xd0\x85Qf\x08r05\xa2|F\xcfg\xf4\xaf\xfd\x8c\xee\xdbx\xcd\xdd]zi\xc2\xd9\xa4{u\x9c\x7f(\xc9\x1b\xfaPb\x05|\xde\xd0\x03o\xe4\x0d=o\xe8\x81\x0d}}\xe4\xfb\xb9\xb2P\xf2N\x9ew\xf2\xa7\xb0\x93\x07\x0e\xe9\xe2\x8d\xf0\x1e.\x19#\xa3wm\x8b1\xdb:\x0b\x0b\x8d\xd8\x0e\x03v\xb8\xaa\x99\x86k\xd3h\x1d\xaej\xaa\xb1\xdag\xa8\x8e\xaam\x99\x81Z5=+\x99\x01\xf8\x87fl\xb7\x19\xa8ma\xa3_\x07\xebr\x04\xffXU2k\xef\x1dkx\x99\x02\xa6\xa9^\xe1a\x9f\xacn\xe9\x8aV\x02\x15\xcb\xdaJ]\xad\x8aQ\xa8|\xaaTH\x89\xf2\xa8O\x11\x8aS\xa4\xcad*K\xe1\x19Z\xae YU#/O\x9a\xeaPBEh\x9e\nd[\x95\xef%^4\xfa#3P\x88y\\\x8c\xe3c\x1a\x07\xc3\x04\x98%\x8aQ\xec\xaa\xcd\xd8c\xd67\xe6i\xcf\x17\x1a\x8b\xa4\x90\xc4X'\xfcR\x14\xab\xce\xe8\x8a\xe2\x1c\x0fg\xbbF?\x9a\x1a\xf5\xf5\x18v!U\xca\xfd\xaa\xa4\x0bgZL\xfa\xb66\x03\xbc\x8c\xe1~\xa9?\x90\xdcv\xc4\xde)Ih\xf7\xdc\xbc\xb4=\x94\xdb\xce\xb7\xc6\x08\x8a\xef\xde\xbf\xd4\xfe\x96\x1a\xc5\xf7\xbe\x10\x85q\xf2uZ\xe3/*U\x06O\xd2\x1dN\xa7\x7fh\x9b;\\\x17\xf5\x06\x9f\x16\x84\xb4\xe5\xba'\x98\xae\x833\xf1G\xf4\x16U\x17A9\xa0n\xactg\x10\xb5\xb0\xaf\x87\xddF\x0d'\xf2\x8a\x14E\x7f\xf7\xd0g4\x075I<^1\xda\xd1\xdf\x0f*\xa1\xa7a\xe6\x06sv}}y\xf1\xea\xe3\xf5\xf9\xea\xfa\xbf>\x9c;\xf7\x18\xfd\xb5\x8f\x17\xde\xdf\x99\xdb\xa3\xe7\xf7\xab\xeb\xcb\x8bw\x7f\xf7\xd6py\xe1\xfb\xf9\xe2\xdd\xb5\xef\xe7\x9f\x7fy\x7f\xe6}\xe1\xc3\xe5\xfb\xeb\xf7\xbe\x17^\xfd\xd7\xb5\xb4\x95\x0e\x12,b\xb8l\x87\x91\x81a\xaf\x8f\x07\xac\x1c4\x89\x14\x02\xc5\xf6\xb5\x8e4-\x0b\xba\x04\xedD|(\x11c\xb3-\x98EO\xf6g\x9dv\xde$\xc64\\\xcdQ\x88\xd3\x0dm\xdd\xf4\xf5v<\x0e\xe2\x87C \xde\x94+\xba1F2|`\x0f\xbd.E\xe0>\x95JC\xed\xec$\xc9*\xe4\xfc\xab\x0f\xe10|\xdc\x81\x15\xc2\x93\xb7\xf4\x80\xfb#\xf0\xfex\xf7?\xdd\x04\xac.~\x85\x08\xfe\xe2\x1a_\x8c|\xb9\x1eV``\xab\x0d\xf2\x85o \xf9\x96\x8f\x7f\xe9x\x96\x8dg\xc9x\x97\x8bw\xa9x\x96I\xec\x12Q\x18b\x98a\xdf\x08\xfaHJ\xdb\x1c\xa7\xd4\xd7\xcc9\xfbG\x91\xd9\x8dN\x9c\xe0F\xeb$\x98\xe4?^([\xbf!g)\x03\x8f\xc1\x93\x9c)\xf8\x8f\x96`\x06\xf4\xeb\x7f\xa0\xbe/\xb7\xceV\xd0\xe96Z\xc1<\xb3'\xb4\x82\xee5\xa2)\xfc1\xfd\xe7\x7fwM\xcd\xd6\x83\xb3v`(\xa3~x<\xa5\x05,\x12\xb2\xdc(\xe3\xe1\x1e\xf9\xcb\x0bs\xe0//\xa6\xd4'm\x116f7\xc8_\xbc\xbb\x9e@\xbeFeM\xf0\x0dn\xd1\xf7\x9b\xa2#\x88%\xc9 \xff\xe3?~p\xd6\xc9V\x91Q+{:\xa1^\xb4\xab\x9a1\x9f\xa2}5\x1a\x95\xb0\xa7S*\xd1\xa3|\xa5\x9c\x05G\x82;g\xf5l\xbd\x1b\xd5\xb3\xa7\x13\xaa\xa7\xea4Hp\x86\x0d\xd1U2V\xcb\x85\xff\xf2-s\xe0@\x97\x98\xffP\xb4\x85\xc0\xa2\"t\xc8}\xf1\xb0b$W\x15\xaeo\xc8\xad\xbe'r~\x19\x9e\x8aMQ\xb5u\xf0\xee\xed\x8b\x87r\xdf\xef\x11\x90\xa2\xdd\x19N\xb5U\xd5\xdc\xb3\x98\x0cc\x1cM\x01\n]P\x86\x87;\xd5\x1f\xe0\x97\x1d\x0f\xc4\x1f)\xed\x9bm_a\x9fz\xcd\xec\x8eg\xb0K\xbe)H1\x1d\x06\x8c\xd0\x91U\x8b\x8c0\x9cJ\x16\x19\xd8\xc45F\x12\xdd\x19}x\xf9\xdb\x96c\xb6\xea\x14e\xe9\x8f\xa8P1\xaa\x0eU\x80\xf5U\xfaL\xb0\x01\x8b\xea\x0b\x8f\x9fx\xc2)t\x93G\x91\xf7l\x1e\x9ej\xd7\x00\x05db\xe6\"f+\x94\xe5\xff\x18\xba\xd2\x81\xa5\x9c\x0d4;\x02qjs0\x15)\xf7\x8c\xfc\xb36\x9d\x19[\xc9\xd8\x8aT\x16`+\xda\xdaw\xadE\xaf\x04\x90)\xfch\x90\x98,\x07\xe6\xae\xff)rT\x99\xa5\xc2\xa2\x0e\x12\xe9\x08(R\x8dpY\xa0\xec\x12\x0ce\x95iu]y\xc3\xf2\xeb4\x86\x9db\x9e\x80\x8av\xf8PM72\x890\xd0\xee6\xe3@\xb1\xe6\x86\xf1\x10\xf7\xe4\x83 \x99g\xd4\x8a]F\x9e8Z\x9a\xa9\x07\x8a\xa7\xd9.w\x8d\xe0\xa9\xd5\xf7\xb2j\x02r\xbc\xa5\x19\x82\x1co\x19\xe6 \xc7{\xaaQ\xc8\xf1\x92j\x1ar\xbc\xa4\x1b\x88\x1c\xaf\xe9f\"\xc7k\xaa\xb1\x08J\xecyx,.I;\xdf|d\x10\xb2\xe9\x93\xc3o\x93\xef\x8d\x98aV\x82\xe24.\x05\xab\x9c\xe4\xbb\x12kn\xe2\xb5Z\x87?\x85\xe9I\x1d\xe6Z2@)5\x8fq\xc3\xda4\x89\xe3XV\xbc\xb2\xe2\xf5D\x15\xaf(\x85KW\xb58\xa5\xa9\x8a\xd6\xec\x93V@\xd3\xb2M\xc8#\xe9X\x7f\x13\x0d\xcb:\x96\\BzQ\xd6\xb1\xdcoe\x1d\x0be\x1d+\xaa\xca\xacce\x1d+\xebXOO\xc7\x8a\xb3j\xe9J\x96`\xfcH-\x0b\x00\x87\xc9\x1a\xd6A\x82Z\x8c\xfe\x1cL\x10\x83=\xc2\x04\xb7\x83\n5\xc2\x16P&,\"7p3\x12\xd2\xc1\x1b\xe4\x04p\x10J\x0d\xe2X\x066f\n9\xf6s\xf9\xe1u\xec\xe4]m\x8az\xf2\xd4e\xe58+\xc7Y9\xce\xcaqV\x8eQV\x8e\xb3r\x9c\x95\xe3\xaf[96\x14\x9d\x18U\x8a\xbe\x1f\xa1D\xbd\xedn\xce\xb6\xdbXDWi\x96\xe3SE\x96\xbe\xedn~\x94_2\xa3\xfd<\x0d{\x83+L\xf0\xdc\xb69\xbe6\x9a\xa7\xbd7\xa3\x85o\xd8u\xbe\x1b2\xab\xa5\x03/\x86\xc99\x9an\xbc\xcf N\xe9\xc8\x15&\xf1\xdeQ\xfaH\xdb?6Z\xab\xbe6\xa9y\x1f\xd9\xcd\x80C\x07\xcf\x87\xbdnbK\x83t\x8cF\xf3\xc0\xa6\xd9M]\xd6@g\xb3\xb4\xf7\xbc-\xc4\x0fp\x17\x10s\x03g\xf7F\xfe\xbd-\xea\xf8X\xda8\x87|\xa5'\xfa%\xfb\x83&\x03\xf7\x8du\x18\x1dp\xcbo\xce\xedPq8TG\xc9\x0dC\xfam\xd61\xc8\xd8\x13L]\xfd9\xfap~\xf9\xf6\xe2\xea\xca\x97\x13Ay\xe9\xea\xfc\xfa\xfa\x97s\xef\xef\xab\x8b7W\xee\x17^\x9f\xbd{}\xfe\x8b\xfbwq\xd3\xb2\xa7\x9d\x1f\xde\x9c]{\x9a0\xfe\xd3\xd3\x8cAu\x96\xdf\x19/l\x0c\x8d\x8a\xdb7\x07\xa1\x0f\xc3\xbc)\xfc\xba-w;\xdcbz\x1cf\xb7\xce5;i\x86\xb9\x1fmQ\xebW\xaeB\xcc\x1bi$\xe5\x0eA4\xdc\xbeh?c\xa2\xdfl\xe1\x9aQW\x9f\x04o\xfe\x03\xb7\xcds\xd8\x8f\xc7\xf6\xff\x95_K%B\xde\x90\xb8\xfeN\xbf:\xd9\xc2\"/\xcdG\xc3:\xe0w\x84qj\xf4\xd1\x15&\xa4\xc2\xe8\xfa\x01\xe1z\xcb.[E\x0d\x1d\x8b\xdb\xa2\xda\x81\xab\xbd\xe8\xae\xb7^\xcazz\xc5\xf4\x99\xbf\xe6\xf7\xed\x16\xb7\xe7\x0f\x04\xb7uQ]\xbcY\xd6\n\xe0\xef\x97\xe6#O\x1b^S\x01U-\xabW\xac\x9b\x97\xb6\x87\x9e\xba\xdf2\xca\xbf\x95\xe4v\xdb\x16\xf7r\x1b|\xb5\xc1\x1a|i>\n\xd6\x04\"\xfb_\xe5\x8a\xf4\xcb\xbd\\\xab\xf9\xa5\xe3y\xb0\xce\xb7\xec\xb2\xb8\x0f\x92\xac\x8d\xec\xe6(%^\xda\x1fGV}\x89\x7f\xa7\x9b\x94\xa3^u\xcf\xe0\x97\x01r\xc2\xe2\xdc\xa6l\x14\x83\x16>\xf8\x80\xc3\xcerjn\xa6c\xa4\xd5v\xdb\xca#0\x1c$\xc1\xad\x9foM\x10O\xe5\xaf\x95\x13\x84\xba\x0b\"W\xee\xden\xa9\xe0:\xdb\x8f\xe6\xc6\x98\x0d7\xca<\xe9\x96\xc4B\\\xf2\x91\\\xe3\xcd\xed\xbf\xff\xdb\xd0Sn\xc0\xd4,\x95\xee\xe35{k?:\xa4#\xfe\xd7\xac\xad9\xdaB\xb9\xc5uc\xd8\xd7\x9cG>\xbdE\xde\xd7}g\xe3\xd7M)\x9d\xf3\x11i>\xe3Z\xf0\x06k\x928\xec\x17\xf5\x96\xb1\x0f\x1f\x18\x85\xc8\xbb\xf7TB\\\x0f\xe3\xc6o[\x81\xfd\xe4\xa2&<\xc2z\xb8\xfa\x0f\xa6\x89__\x01G6\x85^W\xde\xd4\x05\xe9[\xdc1\xdbB\xd9\xc2\xf5A7\xcdM\xc3\"]\\\x0bj/s\xc1\xae\xaf\xb7\x9d\xed\x92\x00\xcf\x1aR\xd8W_8\x9cq\xf8\xe0l\x1a\x16\x063\xf0\x89kAt\x9f\xd9\xa6\x13\xbd\x16@\xfe[\xd2p\xc4\x85\xa6(\xdd\x19h\xe9w+\xc3\x0fB=-;\xd4\xd06\xa25\xae\x9a\xfa\xa6\x934\xd3\x0eW\xd5\xb4\xc4\x1c\xca\xc2\x84\xcfu\xad\xd8\xc0\x0c\n\x82\x9a{v\x0f\xcf\xd0\x14q/\x8bj\x80,\xba\x0e\x13v+(\xa5<,O\xf6Tod\x94\xf9\xc9\xb2\xea\x1c\x8b\xc8\xb6\xe2\xc2\xa3\xa1\xac\xb6\x04k-\xedJ\x8b]g\x87\xb6\xdc\x18\xb1@y|\x93\x8d/,\x93U\xc7TcJv\xb5\xab\n\xb2\xda\xe1<\xe8\x8f7\xe8L\xfdZ\x1d\x8a\x96\x94\xb2\xa5\x15\xba\xbfn\x9a\n\x17\xb5\xbd\xff\xaa\xee!\x93\x91\xaeO'm\x8fQ\xc9b\xf8\xd8/\xbb\xbe\xda\x95U5^\x10/D\x9d\xdc\xf4\xe1k\xae\x1b\xc2\x8d\xc1\xe3\xe3]QuX\xdc8$}\x082s\xcf\xaf\xa8\xc5%\xbb\xd4\x97V\x07(\xce\xae\xaf*\xb8M\x9c\x88\xa7T\x9b\x1b%(\xe6G\xa2p\xf6'\xf7@H4\xf8\xd4\x0d\x98\x01\xd7\xc0zni\x17o\x8ew\xfe\x1f\xd9x\xe8\x1d:Eo\x8b\x07\x01\xcc\x97\x1d\xfa\xe9\xc5\x8b\xf1\xde\xfdNa\xa1\x0bv\xe1\x1c\x0c\x03\x83\xad\xcaNlr|\xdb/\xbb\xa1^TnQQ\xb5\xb8\xd8\x1e\x11~(;\xd2\x9dX\xeb\x1f\x0c\xf9-\xa6\xab\xce\x9a\x07H\xec\xefr.\xa0\xae\xd9\xe3\xa6\xc6\xcf:\xfaj\xd9b\xb1_\xb1\x1f\xc8-\xbb\xff\x8b\xd0\xa3^Y3\xd7\x03&^=:\xc4\xabr\xfb\x94u\x88u\x7f\\\xa0B\xb0\xaf\xd3i\x10l\xac\xd9\x84\x1cp\xbd\xcd\x1a\xc4\x17\x12\xb6Y\x83x\xdc\xf1e\xabDQ \xf0c\xbb\xd4\xe4\x03\xebXb\xa7)(\xe8\xf4)\x1c\x12\xe5\xb2?\xbe_7\xe4\x16Q\xdd\x90\xf5\x8e\xe5Gka\x8f\xfd\x81 Ay6o1\x97\x9dl\x17;\x14G\xf4\xbd\xe5\x92H\xb60\x7f\x90Gg\xc8\x83\xc7wS\x86\xe2\x92\noO\xd1\x19\xf3_\xa0\x8f\x0eU\xb1\xc1[H\x8d\xc8P]RV\xcaG\x12A\xaeq4-\xda0\xebg5f\x16\xce:X\xd6\xc1\x96\xeb`B?\n\xe9`\xeb\xfe\xa8\xab`\x16\x83\x84Z\xbc\xc1\xe5\x1d\x16y\x87\xca\x0eZ/\x91+k\xb4.:\xaa\x06pPO\xfa\xed\xfc\xf4\xe6\x94\xed\x12\x7fC?\xfd\xcb)z[\xd6\xe8o\xe8\xc5 \xdbF\xfeF\x7fx\xf1\xc2\x07^\x8d\xd3\xa3\x98\xdf-\xa3\xc8\x13\x02\n\x1e\x94\xbb\xc0ii\x1d)\x08\x10\xf00\xc7\xcf\x18_R\xea\xd1\xac\x91\xcf5\xf3\xc4O\xac\xf0\xc9&\xd0\xc7\x1b]\xfb\x02\x14K@\xea\x10\xf3\x18c 13\x9e\x88\x05\xd7\xd0\xd9\xd1;\xf3s\xd3\x8eZ \xb8\xd8\xb2\x1c\x8e\xe0\x06\n\x04\x06\x1d\xf9\x0e\xd7\xd5\x11m\xcb\xbb\xb2+\xd7\x15\xa6m,\xb4f<\xeb\x82\xaa\x19\xc0\xef\xd1K6\xa5z\xe4\xd2\x88\x98~;\xe8D\x83\x1cU};\xf8\xc7[L\x8a\xb2\x92\xb8\xd7V\x03\x7f\x89\x9d\xc6\x9a=V\xb6\xbfb\xdd\xf4\xc4V\xc1\xa4\x15cF\xc88\xf5\"\xa5\x81\xf4;\xc6\xa7h\xdf\xd4\xe5g\xcc%\xed\x017\x87\n3?'\xe6&\xd1\xa0\x16\xef\x80%\xac-U\xa9\xceh\x87\xe1\xe2,\xfdJO\x1dm\x11\x184\xb6\xfa\xc4\xb2\xd3h\xedq\x01\x1c\xbf\xc6\xe8\xb6\xdf\x17\xf5szr)\xd6\x95\xe2\xfc\x7f\x8f\xd7]I\xf0\xaaoc=\xb7\xfd=\x90\xe8\xc1\x08\xd3\x7f\x98\x03{\x83\x896\xac'\xf4\xa0\xa9X\x03h\xa9p\xd1\x11\xf66s:\x8fd!\x84\xcaMS\xaf\xfa\xb6\x9c\xd3'\xf1\xadh\x7f .m5\xfb\x819\xbb\x89M^:#\xaaM\xd8a\xbc\xda\xb4\xb8 xUt\x9f\x192\x96\x0f O\xe9\x90`\x99\xc0\xe1\xc4@\xffMw\x91\xcdm\xd1\xdeP\xed\xbdi\x11{\x97\x9d\xd0kTt\x9f\xb9\x1dB\xd11\x8b\xcd-h\x84\xb8&\xed\x11\x98\xab\xc3\x87\xa2-\xc6\xdc\xf3\xe8\xb7[\\\x0b\x1ae\x07d\xf1\xf6\x0455F\x8d\x1c\xd4\x00\x0e\xbabW:\x14\xe5V\xb7k\xb0H\x8e\x13T\xc3\x96WJ\x83A\x1aNXk\xad\xd1\xf5u\xb9\xcd\xbc\xfb\x94yWL`$\xef\xa2u\xb9]\xc8\xba\x8c\xc4\x97\xe0\\\xb9\xadc\xbf\xed^ \x99\x7f\x9f\x1a\xff\xda\xe7\xd1\xc9\xc6\x1c\x18\x80\xaf\xe4\xf1\xeb\x99\xf5q$3\x9d\xaf\xe5\x0f4\xe9\xcc1\x86\x13\xa9\xee\x11\xb8 \xe3\x98\xf2\x04\xd1\xbaE\x82\xe9\x9c\xfb\x82lnE\xf2\x01\xc0yo\xf1Q\x98\x01\xb6~\xdef\x87\x9cG\x86\xcc4k\x81\x97\x86\x8f\x0er\xad\x14\xe4[-\xc8\xb9b\x02\x9f\xf9\xb5\xd4\x05\xab\xc7\xa0\xb4d \x19\xc4\xf8\x922\x9e\xc7\xaf+\xa4[ \xa0\xe4\x19\x1b\xcbW7c\xbe\xae/\xb4mp\"\x89,\x1cj\x93d;G\xa8#>\x016\x88u\xcc\xce\x86 \xd4\x99(f\"\x15\x84\xb8Dk$\x80\xd6E' ]E~\x16\xad\xb0 \x97\xf5\x8d2\x18\xd7\xc3\x8b\x94Oh\x95\x8cy\xba\xb1\xff\xbf\xf7E\x85\x86\x0b\x0b\xd9\xd6\x00xjC\xc7\xa5\xa9e\xfb?l\x1cp>\x14\x17\xc1\x0e\x96t\x0e\xc6\xca2\xdc\x04\xcc\xb3z\xf2\x04\xd5\x13\xeb4\x86\xb4\x13\xf0l\xf0ps\n\xe5\xc4\xd0\xbfA7\x19\x16\x0c\x83N\x0emsWn\xf1\x16x\x9e\xe3S\x1ag\x03(:\xde;l\xedvV@\xf2v\x96\x15\x90\xa7?c\x7f\x12\x05\xc4!\xbf\\\xfaGP`{\xd5\x0f\xe6\xac\x1b\xad}l\x1b\xe6e\xc5|\x10H\x03J\xc8)z\xdbW\xa4\xb2'\xe3@\xca\xb5\xb3\xc9\xa2\xbcN\x87\x15\xdd\x8b\xf1\xbc+1\xd5\x1a\x8bN\xc4\xc0\xff7\x15\x93\xc3\x184\xf0@\xa23tM\xc8@y\x91\xac\xb4-w\xa2vl\x92\x12\xc2\x8dc5\xb4\x03\xa0`\xd0\xc5\xa3\x8c\xdd\xf70Z\x12\xb55\xe67\xe1\x8c/\xb1=\xf2\xb6(\xebg\xdd\xb8x\xcd|\n\x9b\xa2\xda\xf4UA\xc4j\xe0Q\x97\xf4\xb4\xdd:\xa4\xe5 k\x98\x841\x96\x1d\xdd\x9fXC\xbaa\xe3g\xc2\xba\x03\xde\xd9\x15\xa5\x92\x91\xbf\xa4\x0b\xe0\xdd\xd9\xaf\xb4\xfb5\xc6[*Hz\xc2\xd4\xc5\xc1\x04\xe0:\xc3l\xb4\xd8w4M\xbb\x8a\x9e,w\xbd\x91'\x1ay\xf5K6Z\xdf\x89F\x1e#i7\x9e}\xa4\x91\xc9\x99\xbb|\xb23\x8d\xa2[\xe7C\x8dv\xa8QX\x0c\xecyc\xe48m\x84\x19\xfb$\x9bp\xbdq\x86\x13S\xdb~\x89hC9\xd6\x90\x8c\xfa\xfdm\xd1\xe9!\xf89\xdb\xc2\x13;- \xafw\xae\x90\xcfHi+s\xad\x1aR\xcf\x0f\xe1\xf7\x93\xf2\xd9\x02\xb9Wm\x89w_\xd5\x1a\x98\x12q;\xe3~\x07\xf5K\xe4\xcd\xcf\" y]\x97\xd6Z\x91\xe3~M\xaa3\xda\x91\xe3~\xbf\xc9\xb8_\xfb\x08I\xd2\x87\xf3\x1e\xee\xba\xe2\x06\xcb\xb7S\xae\xe9\xaf'\xa8\xeb\x0f\xb8\xdd\x95\x9b\xb2\xb0n\xf7\xcaZ\x0c\xca\xbb7\xf2Z\x8d\x90x\xea\xa2\n\x8b\x97$\x8b\xc9\xba\x90\xc2u+\xec\xb7h\xf1\x0c\xcbE\"\xe8\\8\xd6E3\xb1\xb5K\x17\n,\x0d\x89\xe0\xb4Eb.\x90p\xfb\xd3.\x0c\x85;\xed\xc9\x91\xe2\xd5\xdb\xee\xe6\xef\xcd\xddkv\xbe\x00\xba\xfc\x92\xb7h\xae/zr\xdb\xb4%9N\x19\x90\xe1#\xd9$s\x8b\xd1Ms\x87[\xd6J~m\xf0xs\x83\x8aOC\xc7\x1c\xdb\xa8\xc2.#\xea\x00\x96\x97\x92%\x05\xe4O7M\xbd+oz\xb8\x1d\xcbv0S4\x8f\x17`\x13a\x17\x01\x8e\x10\xfa\xf8\x8a\xb0\xdf0\xe3\xe0\xf7M\xbd\x91\xcd\x08w\x0d\xb3\x03\xe0z\xdb\xfd\xa0\xd7\x04.>\xf4\xc0\xf3\x0f\xdc6'\xf4ov\xfe\xa4O\x8e\x98\x99\x9bK`\xec!O#'w\xc0m\xa9(\x9dX\xca 7I%\xb0\xe8k\xc8\xa9\xb3!\xa7\xde\x86\x92\xean\xc8\xa39\xb9j\x9a\xa9=!\xf7Q\xc7\xe7`o\xbbc\xd8\xb3_\xa2G\xd9\x04l\x94\x17\xb4\xc9\xea^\xb7h\x93\xb0\xd0\x8b\xd3\xb2\x90O\xd3B\xcb{\xb5h3\xb1\xd0\x13\xdb\xcb\xc4ME\x14\xbb\xf6\x85&\xf5s\xf1f\x03\xc5\x9b\x81\x059\x8c\x07\xc8\xe5d\xeb\\Y9xe\x92\x95\xc1 \x96\"x%\xd4\xf9\x85\xb9\\4j\xa6' \x9a\x88\xd8Z\xb3\xbb\xe8\xb5\x04\xf1Z4\x01\xb3\xb5dyA\xa1L/(\xaf\x91?\xe7\x1a\x99\x913&\xf9\x12\xb1e\x91y\xd4\x15bf\x93A\x91\x19eP^'\x7f\xb2u\x92(7\x0d\xab\xcc\x9b\x9f\x06\xc5\xae\x1a\xfd\xa3Eyj\x0cf\x180\xe7\xc8\\5(:_\x0d\xfaBk\xc7\x1aB\x8e\xfc\xf4P\x80&\xf2\xadI\x14Z\x97\xc8\xbb6Q\xf8\xf3\xd0\x1aEI\xd7)J\xbdV\x91g\xbd\xa2\xc9k\x16\xd9C\xceQ\x9e\xe1og\x86C\xc3\x91$L\x1d-\x0fU7\xe8\x15\x9epu\x14\xecX\xca\xbc9(>x\xdd\x9e;\x07-\xcf\x9f\xa3Q\x1b\xe2\xca#s\xe8\xa0\xb8<:\xe8\x0bm,Y)\x0b\x89\x81/\xa5\x94\xcd\xcf\xc8\xa3\x8f\xf3c\xaad\xf3\xb3\xf3X\xd6\x8d\x9e\xa1\x07\xc5f\xe9A_hud\xb5k\xe1JD\xa9W#J\xbc)g\xb5\xeb[\x9f\xe1\xd0p|\xc3jW\x9alA(^\xe9\xb2f\x0cB\xcb\xb3\x06\xe9}S4\xad\x89\x99\x83P\x92\xecA\xc8\x9bA\x08\x0d\xabT\x0f\xe1C\xc1\x89K\x98M\x0893\n\xa1pV!\xb4\xa4\x0f\x0b2\x0ci\xa4D\xbe!\x14\xce2\x84Rd\x1a\xd2{\"\xb2f\xfa\xb2\x0d\xa1t\x19\x87\xd0\xd4\xacC\xc8\x9dy\x08}!-\xc9\x91\x8d\x08M\xdc\xaaRd%B\xfe\xccD\xc83\"P\x1c\x19\x8aP\xb8/\xeeLEhZ\xb6\"\xe3ug\xc6\"\xdb\x9b\x8e\xacE\xc6\xab\xce\xccE\xc6\x9b\x9e\xecE\xc6\xbb\xce\x0cF\xc6\x9b\xfe,F\xc6\xeb\x9eLF\x881\xd2\xb4lF((\xc2D\x99\x9d\xd5\xc8A\x8f\xee+\xb33\x1b\xa1?8\xbb\x91Q\xff\x17\xcfpdk\xc1\x1f\x99\xe5\xc8h\xcf\x17\xcftd\xb4\xe0\x0be;2\xea\xfd\x02\x19\x8f\x8c:\xff\x98\xacGF3\xbed\xe6#\x14)\xba\xe6$E\xb2\x132\x13%\xa1\x886$M\x98\x84\"\x93&\xa1`\xc3\x92&O\xa2\xc5\xe1\xbe\xe5M\xa2\x84\xe6if!\xff\x7f\xa3\xb3\xcb\xd3\xd4h\x04C\x81\x9d\xae\xe4J(E\xbe\x1a\xdd\x848T\xe5\x0b\xf0DS\x83<\xbd\x89\x96\x90#\xce\x13\xa5\x88\xf5\xd4\xe8\x0daf\x8exO\x94\"\xe6S\xa3'\xa2\x93\xa7$_B\xa1\x04L\xe8[\xe5vGb&\x94\x82\xd9\xf5\x89\x115%\xe5uo\x92&\xf4'\xe5u\x7f\xe2&\x14N\xde\x84\x96XN\xd2%rB\xdedN(2\xa1\x13\x9a\xb7x'\x1b\x112\x10\x192\x8c\x7f) 2Uj(\xe4N\x0f\x85bAHk\x8a(\xbd\x0e\xc9\xc52\xb5S\xa5\x99*\nE\xa6\x8bB\x03\x0f.\x88\xdd1\xe6g~\xfa(\x8d\x90d\x96\x9d\x96B\n%I#\xa5\x11,\xbbi\xa9\xa4P\xeatRhjJ)\x94$\xad\x94Fp}\x84\xad=2\xb5\x14B\x0b\xd3Ki\xb4\xc4|\x87SL\xa1\xd4i\xa6\xd0\x8cTS(i\xba)\x14N9\x85\x16\xa6\x9d2\xd8\x87\x0d\xda\x94\xd4S(A\xfa)\x83\x81\xe8R.\xa6\xa4\xa0B \xd3P![**\x14HG\x85\xe6\x9f\x11\x16\xa4\xa6\xd2\xe7\x81\x8f\xeb\xac\xf4T(E\x8a*\x9b\xfc\x9a\x95\xa6\nMLU\x85\"\xd3U\xa1y\xba\xe3\xe4IM\x99\xc2\n\xcdLc\x85R\xa4\xb2\xd2\x87\xc3\xaa\x89$=\x01\xfaSZ\xa1|\x04\xf4\xa7\xb9\x1aX\xd1\x19\xc7\x0f\x1c\xd8\xf2?D\xe6\x0c\x91\x84^\xfb\x86\x13\x93M\xbf\xde\xbc\x01`5\xfe\x19\xe3\xee)e\x0dx\xa4\x9cD\xe2T\xbc\x95\x94\"\xae@u\xa0B\xf5\x0cg\x18ZSl\xb7+o\x94\xadMv\xe5\xf4\\\xf3\x8e\xb3)\xd3s\xd9\xe7\x0d\xd40Z!{\xfe\xbc\xe8>\x8f\xa7U8O2\x1bH\xb1\x1d\x9c'Z\xbco\xeepf\x82'\xc8\x04\x8a\x12\xe0\x9e\xc7H\xa60h9d\x84\x19e\x9c\xd9\xe3\xabd\x0f\xc7\xbc\xe9\xec\xb0.\xb7\xd3eDf\x82'\xc2\x04\x01\x191\x91)\x822\"\x14h\x9d\xb9\xe4\xeb\xe7\x12\xff\\\x0e\x9c\xc2\x03\xd4\xe4\xc0\x17\xce0\x12\xad\xa0<\xc9\x0c\xf3\xf4\x19&8\x9d\xb3y&V\xc8\xe4+\xcc\x9d\x9f\xfd\xa9\x91\xbe|\x85\xf9\xd3\x9a1_\xd7\x93\x04)-\x0cPJp\x85yH\x88\xf9d%\xc6\xd0e\xf5\xda\x8e\xe8\x9d5K\xc9\xbc\xe6\xb2\x94|\xfa3\xf6'\x90\x92\x11r\xcc/(eZ\xf0\xbaS\x9d\x0c\xa4\xa1x\x0c)\x99O c\x89\xe7\xfc\xf0\xa6jO !\x18\x05\x82{\xa3\x0f\x1f\xf6m5s\xcb\x93\xe7\x96\xd0l\xcee\x98H\xf1\x92\xd5\xb0\xbc\xa9g5\xec\xe9\xcf\xd8\x9f@\x0d\x0b\xc80\x8f\xa0\x1c\x8e\xaa*j\x10\xb9\xa7f\x11\x99\x17\\\x16\x91O\x7f\xc6\xfe\x04\"2,\xc6b\xa4\xa4,\xc6\\\x8ad(L\xe91\x84d>z\x8c%\x9e\xf1\xc3\x1b\xaa#\xc0HC\xe1%\x87\xd79G\xd5\xcc0O\x9fa\x82\xd39\x9bgT!\xd3a\x02\x95D\xc4u\xc1\xfc\xcc\xf0WUz\x16\xaeQx\xb5\xd6\xf8^\xfa.\xf0\x8dp+\xb6x\x86C\xccVyS7t&Jq\xe7\xd5?p\xdb\x9c\xa2\xeb\x86\xb6\x88\xfb\xba\xd3G\xf4O\xe9\xe3\xbe\x8eh0ixf\xac\xf8o\xf4a\xd5\xe3e\xdd\x03\x18C\xfd\x84\x05\xea\xb4=>\xa1\xdda\xc3\x19?\x94| \xd41\xdc\xa1]Qu\xf8\x84\x0f\x1e\x1fM\xe8\xb1\xbd\xad\x0e?\xed\xa0W\xf8\xf8\x05'\x14\xe7\x13\x0en\xe4\xaf\x87nA\xae\x9d\xc9\xce\xe1\xdb}9\xff6C\xf6\xb5`\xdf!\xda\x8a\x05\x06\xc0 \x7f'\xa7J\xe2c`\xb9\x17\x7f\x9c\x11\xc1R)\xdd\xc7\x95&\xc7\xdd\x91\xa6\x84\xd3Mj8\x84z=\xee\xe6\xc3G:r?A\x11\xba\xf9\x10.\x08c\xe2\xb9wWr\xf8\x1f\xaeI6\xc8\x0d\x01\x1eb\xffQ\xea\xf2l\x86\xb6\\m\x8e\xdaV\x91\xc77\xe9\xf8\xda\x17\xe2r\x81.\xadH\x97(O!\xc4\xa5\xe4\x82\x93\xc4\xb7C\x04\xb0K\x02\xa2\x97>\xf3\xc4\xb0\xc0\x13\x1a\xcf\x08t\xa2\xf7\xc0\x13\x82\x94\x17\x90\x18\x92})\xf7~\x17\xddg\xb8:\xe8\xa5\x9d\xb4\n\xd6\x88\x97EEt[\xa2\xcdc\x9c\xb9nz\"\xd5\xc0a\xc3!\xf1#g\x83\xcf\x12=\xed\x06\xf2 \x8b\xd3\x02\xee\x8c\x14\x16\xe4\xd0\x94\xb0\x1d1r\x9d|\"\xe2'\xa4\xa1\x8fk\\5\xf5M\xa7]-\x03q\x16\x11\x02\xc1\xa8\xdf\xd0\ny\xc8\x86v\xcd\x8df\xad`\xadj\xee\xebNn\x1a][\xb7\x85\x9e\xa0\x8b}\x06\x8b\x8f4\x8c\xfa\xa92\xc1\xe6i\xc8\xa9W\xbb\xb5j\x87N\xedQ\x8d]\xfa\xf4\xccQ\x9b-N5:Kd\xaaF\xca\xaeE\xc7\x89Y(\x96SO\x9e\x9b\xafdn\xec\xd1\xfc+\xc3\x0b3O\xd8W2ap\xe9\xdc\xa1hIYT\xb69\x9a\x91\x8d]&)'\xbdk{L7C\xf1\xcb\xae\xafveU\xd1.\x8a\xa3\x9a5\xa1\xe3Ha\xb8\x9d\x90\x8e\xf0\xf8\x98\xb9\x97\xc0]sf\xcaU\xb6\x07\x0c\x0e\x9d\x90_\x95V\x0bG\xb2]_U\xa8iY>C\xfe\xb4`\x97\xeb\xc9c\x84\xf9}G\x8emv2#I\xf4\xf8\xac\x83\x93\x15\x1d-8=\n-P\xbcY\x1d\xc5>|\xb4e\x9b\x04\xfd!p`\xd4\xbe\xb9\xd8\x8dn\xb0jnLa\x94-\xbb\xa1~Tn\x07S%~(;\xd2\x9dh\xe4\xa4\x0dWd\xe5m1]\xdd\xe3%\xde\xebr\x1b\xafb\x0d/\xcfT\xb1(\x01\x89\xdc\xb7\xaaa1\x07\xe1$L \xae\xc6I\xf5+~\xcfi\x037\x9cf\xfd\xea\x89l Y\xbfR\xcaW57f\xf4)\xd6\x87\x1e\x86kR\xee\xe8\x0c\x16\xa0\xb4\x13\x9d\x06,\x08u\xde\xca\x0c\x83w7\xfb\xe3\xfbuCn\xc1\xad\x1blL\xcd\xa1iA\xd7\xf8Ag\x05\x01z\xc2N\xc0v\xf1CqD\xdf\x97\xec\xe2\xb9\x92\x0d\"\xb7/1\x11a\xcf\xcdN\x7f\x1e6nh\xdb\xf6\x14\x9d\xa1\xdb\x06\xc6\xf2P\x15\x1bq\x15v\xd9\xa1\xbe&e\x85\xcc<\xff\x03 \xae\x955\xecr\xe9\x0d=^l\xb3\xfe\x9a\xf5\xd7/\xae\xbf*C\xf2\x1e4\x1f\xc5\x0b\x817\x85\xfb4\x8c\xd7\xea\x88P\xb3#\xbf\xab\xc1a4\xfdP\xb4\x85\x90\xcf\x11VS~w\xef\xaa;T\xa5\x11\xa0\xb3\xd4\xb3[!\x8e\x86\xab\x1e\xd8CI\x86\xd0\x0e\xf2\xab\x17\xc6\x9b\x16P\x8b7\xb8\xbcS\xae\x9f\xd7.\xba\xb1\x84X0\x86\x81\x15\xd0bTv\xf53\xc2\x84\xf5\xe1P\x95\x1bv}%\x93\xe5\xcf\xbb\x03\xde\x94\xbbr\x83\xa0i \xf7\xd5\xab\x8aX\xba{\xca<\x7fC?\xfd\xcb)z[\xd6\xe8o\xe8\xc5 \xe3\xae\xbf\xd1\x1f^\xbc8\x1d\x06\xb1n\xf6\xd0\xcbGv\xaf\x98\x16\xe4\xa4\xcd\x0d\xfbXL\xc3\x06\xf6;icc\xac\x0b\xe3\xc1\xc6\x0b\xeb\x87\x04\x844.\x91\xab\xb7\x1da|\x87\x98\x90p\xe0\x95\x89\xe6\xc6r\xcb`\x967\xc8\xf1\xde{X\x08\xca\x84yG\x81^\xbc\xa1U^\xc1\x88Jk\xdc2\xf6\xa0h\x08\xad\xc2\xd8\xc7\\\xdd,\x08\x90q`\xe02_\x0e\xfb\xb9\xb6\x00\xa0F\xc7h\n\xbaR\x10\xd8\xa18\xees@\xdfS\x0c\xe8sL\"\xd2\xef\x96\x13\x91z\xce\xbb\xe5\xf8\xd7zt\x16%\xd25};\xc6O\x97\x1dS(XL\x1b\xbb\x13I\xb9$\x8e\xd6\x85k\xd2\x96\xccmN\xa25\xf4p\xbc\x82\x85\x89\x00K\xb5\xd7\xb7L\xb5\xe3c\xbb\xe9\xdb\x16\xd7\xa4:\xca\x17\x9a\xb1\xda\x9b\x96\xd5\xcd\xab\x93\xd9\x1a\xee|\xccl\xfd\xa4\xd9\xda2\x89^\xb6\x1e.\xfa\x8c\xe5kR\xb47\x98$\xe4kh\xc1\xa3\xf0\xb52T\xa0\x0e\"\xee\xaa\xc3\xed\x9a\x83\xdb\x80\"\xf4\xf9\xed1\x07\xfa\x05\x16\xceAN-\x93\xb59Z\xcd\x04\xb9\xa0/\xach\xdf(.V\xb4\xb0F\xb6\xff\xf1\x0b(A{\xe1\xcd:\xe5\xda\xe0\xa6\xa9\xbbr\x8b\xd9\x90+;js_\x8f!\x85\xc3\xf8\xcbu\xad\xf4\x85\x97E\xc1\xd7\"\nHI*le\x90\xd5\xb8>\x89\xe9\x84=2\xd1`\x93\x90\x96v)\x1f\xed\xb5\xcb\x18\xc5K+\xcbHp\x8b\xc4p\x85\xa7j\x96\x10\x0d\xaa\x95\xdd\x91\xf3\xaf\xb0Y(B\x82\xb30\x1bH&#\xe89_\x1c!5\xf3\x85)\xa7\x8cq\xa0R\xe2DY\x1c\xec\x022\xb8\xb5P,\x0eY\x08~\xc7\x97\x83p\xec;\xfd\x8e\xff\x08C0e +l'\x86\xd9\xb6\x84\xc1\xf7\x1e\xe4\xa1\xb4\x8a\xa5\xaf\xaf\xa5\x89\x02\nM\xcd\xee\xa6d2\\\xba\x1c\x0e\xa6\xad\xacQ\xa1\xafkZ.N\xf1)*\x87!`\xb7\xb3\xa1\xb2.I\xc9l\x0b\x94\xdf\x85\x17hU\x10v4\xe7\xf7\xf1\x9d*\xa3\x90\xa5\xc3\x93\x92\x0e\xca\xa49\xa4\x03\xe7.E4\x08\x89\xe1\x15\x0d\xca\x92s\xeb\x0e\xcb\xd6$\xc6\xeds\xd2<\xa7\xffG\xdf\x7f\xf8\xb7\x0f?\x0c\xdc-\x96\xa7\xd58\x17^\xa3\xaa\x0b\xb2j\x90c\xc6\x94\xa2j\xea\x9b1\xbe\x86\x0f iP_\x97\xbf\xf7\xd8c\x91\x1b\x96\xb1*.9\x05\xdac\xb6\x86\xd9\xdd\x8cT\x89\x11c\xc1\xcf\xc2GtS\xde\xe1Z\xb6\xbd\x9d:)1\"\xe4\xbe\x11\xc3\xc2/C\xa4O\xb6\xe5n\x87\xa9\xfa$SR\x0f\xfe\xd7\xcak@\xb6ctq\xb1\xb9\xe5\xb7G\n\xd2\xd2X\x14{<\x10\x95\xc8i\x0d}\xd5\x13TH\x8d\xa5\xaa\xe3\xd0\xde\xb1\xda\xa1\xe5\xacN\xa5\x12\xcb\x14A%\xf2p(#%\x18\xaa\xc5l\x12\xd7\xc7\xb1\x05M\xbdQ\xceS\xcaN#\x11\x14{\xce\x89\xbe\xe9\xc8\x03w\x8b\x95Z\xd5\xab\xa4\x7fz\xf1\x02\xad\x8f\x04w\xecBN\x10\xb6\xdc\xb0\xcb\xf4Q\x96/\xcb\xd57\xe4\xe4\xd4\x0f\xc3\x065\xc0\xf4\x94}\xf8\x96\xf2\xac\xa3\x9f\x95\x10\xbc \x17\xe4\x8a`M\xc6V\x0d\xb9\x1d\xacT\xfc\x13\x9f\x9e;\xe4\xca\x90U]iA\xe1\xba\x1fd\xf4s\xf4\xe1\xfc\xf2\xed\xc5\xd5\xd5\xc5\xfbw\xab\x8f\xef\xae>\x9c\xbf\xbe\xf8\xf9\xe2\xfc\x8d\xed\xe7\xab\xf3\xeb\xeb_\xce\x1d\xbf\xac.\xde\\\xd9~z}\xf6\xee\xf5\xf9/\xb6_~\xbb\xb8\xfe\xcf7\x97g\xbfY[\xf2\xe1\xcd\xd9\xb5\xb5\xaa\xf1\x9f\xd6\xea\xce\xae\xaf//^}\xbc>\xbf\xe2\xb3\xc1\x0c\xb7/}\xbdt\xcc\xd8\x98qDl,\xcc\x125\xf0>3j\xb3\xf4k\xe3\x9b\x83j\xb0\xc6\\\x12\x0c\xf9\x1c\xa5X=v\x9a3R\xee\xb8f\xc2\xd5v\xb1'P\xc9\xfc\x1c<\xa4\xc76\xff\x95'\x9c\xa1\xe2\xa0m\x1b\x96\xed\xad\xef0\xbb\"\xd5V\x1fL\xedK\xf3\xd1\xa0\xfc\xac\xcb\xaa$GA\x87>\xe2q\x11\xd7\x0fCh\x04U!\xd7\xf8\xb6\xa8v\xcc\xbf[\x0b\xe4\xb3\xb2\x8c^%}\xe6\xaf\x93\xe1\x0f\xe7|\xd9]\xbc\x99[?\xf0\xe5K\xf3\x91\xa7\xf6\xd7L\xa2\xcc\xadQ\xf0\xfbK\xdbCO\xad\x10\x8f\xf2[In\xb7mq/\xd7n\xaf\x07\xd6\xceK\xf3Q\xb0\x8e\x8fL\x8f\xfcW\xb9\x8a\xce^\x87\xb4\n_:\x9e\x07k\x83\x8cE#\xcfv\xe1\xae\x8d\xab\xfb\xa5\xfdqd\xa5\x97\xf8\xf73BZ\xa3F\x87D\xfd?=n\x8fz@\x10\xfd\xd7\xcf\x18\xbf.\xaa\xcd%\xee\x0eM\xdd\xc5\x87\xfc\x08\xe2\xab\xc7\x8f\xa5\xcf\x1a\xf9X\xe25r\x9f\xbe)M\x9d`7\xb8\x92\x7f\xd0\xcb\x07}\x1b\xae\xb9\x1fMaTI\xdf52\xe0D\x00'\xba+\xb7x\xeb\xca\x03\xb5b\xe43\x9b|\xe5l\"\xcd\x95\xe0\x8b\xae\xdf\xb3}\xa1bn\x1e\"\x0f\x10\xb7\xacx\xa6\x1d\xee\xe2'x\x9b\xa7\xfeIL\xbd\"!\xb4\xc9C\x83\x13\xef\xc8\x1e\xc3+\xcc\xac\x8e\xba\xb2\xbe\xa90\x83\xa3\xdb=\xde\x96E{T\x06\xb1n\xf6\xf4@S\xe1\x1dA\x05\xb7\x04`\xac\xc2\xa8@\x92\xee\xa3\xab\x9c1!\xca\xb5\xe0\xcf\xe6P\x973&<\xb59\xf3u}y\x80\xadB\x8e|\x03\x19\x134\x118x\x8f\xbc;\xfb\xb5\x1b\xfa\xceE\xaf!\x92\xa1C\x06\xb5A\x8c\x0f\xc6\xf4\x86%\x91\xad\x8b;]\xc4F\x85Td\xef\x7f\x95N\xc25\xb7\xdc\xc3<{\xff+\xe5+\x9a\x1bw\x87\x97\xcbAm\xdd\xfb\xa4`b\x198C\x02\xda\x07\"\xd6@\x81\xb8O\x05\xff\xcb\x9e\xff\xc4C\x07\xfdN+\nYJ\xfe\x8e OY6\x92\xea&\xdbH\xc6T\xdb\x8f\xac\xcc:\xa2\xdc\x04\x9d\xf4N\xa2\xae\xe4\xd1r\xa6\x062\xae\xba\xdb\xa2Ck\x8ck\x83\x8e\x9c8MU\xf5|\x87\xb4\x9c\x82p\xb1`Di\x85#\xfa\xfaS\x10\x82\xf1\xd4\x92\x81P\x89;\x98\x9e\x7fPZ\xe4\x83\xe9\x96}\xdcI\xdc=\x88\xd2\xc1\x03\x03\x04oQ\xcb|,\x9b\xde=R\xd2+\x9c\xa2\xe4\xa3\x95B\xbcd\xac\xaa'!\x15\x17\xe6`\x8dJ\xb8:\xb0\x9f4\xd7\x94EU\x96\xfe*\xe5\xb3\x9a\xda\x9f\xc8\x19x\x0dzYN+%4\xfc\x7fF9m\x19\x06\x9b\xe8f\x08\x03\xf3\xc3\xa0\n\x81\xc4X\xeb\xa3& M\x1e1\x12\xab\"\xbd\x11\xa3\\\xa2\x87_RPQ.\xa7\x1ehj\xf7BU\x08Y\xa4:\xf7\xcc\xc3[\xe9G\x99\xb8\xa0t(n\xf8\xe4\xbe\xb4\xd3\x1e_\x18Iw}\xc5\x1c\xa3\xa5\xdfT\x8f`>\x04\xf1\xc7\xf4\x1a?\x90\xd5g|\xb4\x1d\x06-l-\xa4\xcd\xfaH\xd4\xe5\xef3\x80\x8f\xb5\x88\x9e\xd0\x7fB\xfa\xee\x03=\xb3\xb0\x03\xc0\x07\x80+\x99[#\xfc\xae\x11a\x1b\x0f\x88)\xfc@\xe8\x18`\xb4o:\x82\xf0nWnJ\x06<1\xe7b\xe1\xee\xc9=\x08w\xba\xd4a\xe1gE\x8bQ\xdd\xa0==\x8d\xc0\xc0*\xd2X\x83#P\xcc\xa0\xf4\xa6\x0c\xb69\xbc!A\x9e\x8d\x06\xfbG\xdd\xef\xd7 kySPqW\x94\x15\x8b\x893\xda/\x0f\x14[\x05`\xb7\xd1\x97\xea}\xc1Bs\xe1\xca;8\xeb\xb1P\\\x1eN\x87\x98\xaf\xcd}\xd9\xc1<\x06\x14 \xeb^\x1e\xadD(_OQ @\x1b\x9b\xae<\xc0\xfa\x7fd\xc5\xe1q\xb7\xeb\xb8\x8bw\x86\xad\xa2.\xf6\x06\xce\x80BZAxx\x11'\x0d\xebk\xdf\xd4\xe5g\xcc\x03\n\x0f\xb89T\xe0U\xc9\xdc=\x1a\xb0\xa1\xc0A\xc1\x12W\x89\xb4\xf3\x82\\\xe4f},\xdd-\xf2\xe9C\xfaP\x19\xb0/\xe5\x9d\xcc\x7f\x10\xe8\xcap3\x13\xd3Q3\xa4\x98!\xc5\xa7\x07)\x9a\x18_\x04\xa48~\xc4\xc9\xc5B\x8ac\"\xcb\xc9\x88\xa2\xaeW\xd9\xb4\xc4\xa5\x88\xa2U\xfbsr\x87\xcf\x83\xcex\xdd\xb7\x8cf\xebr2\x91Y\n\\\xfa+\xceT\xcf1X\x04\xe0\xdd!\xa7\xb7\x96-\x1cjN\xe2\xd3\x08\xa65\xb9(\xcc\xb3\xe37\x13Y\x16\xf2z\xfd\x19r\xb1\xdb\xb0\xe8\x98\xf4\xec\x9a\x15h\xbc7\xc0 7\xde#\xb0o\x8c\xa4\xa5\xd9!\xf5\xcf\xeb\x90\xea\x11!\xf3/\xa3\xe0\xb7/Xn\xa3\x18\xef\xd8\xe6\x03\x19q\x1fE\xd4\x15\x14\xaadc\x17R\x14\xf5Q\xf7_\xcb\x1ab\xd6\x10\x9f\x8c\x86\xe8\xdc\xff\xfc{.\xa7b#0q\xeb\xcd\x1eh\xd9\x03\x0di\xe5i\xe2s\xd9\x03M-!s|Fo\xe6\xebf\xa9\xd1\x9b\x8c\xd0}\xfbs\x9c=\xd0\xc6\xf2\xa7\x9a\xf8\x8c\x01e\x0c\xe8 b@\xd9\x03\xedk\xd3p\xb3\x07\x9a\\\xf2\x16(\x95\xaf|\x0b\xcc\xfa\xed\xb7?\xc7\xd9\x03\x8d\x95 \x89\x18\xc6I\xcd:3\x99\xc7A+{\xa0\x19\xd4\xb2\x07Z>},\xdd-\xf2\xe9C\xfaP\x19\xb0/\xec\x81\xc63y\x0d\x0eh\xea\xad}\x19_\xcc\xf8\xe2\x13\xc3\x17\xa7\xba\xa0\xc9_q\x82\xd3P\xc5\xc9x\xa2q\x0f\xb0u\xceTG\x8697\xfc\xea\xce\x02\xf0\xdc\xb1\x90\xb9\xac\xe3\x89o\x14\x1bF\xbdE\xe2R_.;T!1i);\xac\x11n;\x84\xdb\x02\xe1\xb2=\xc4\x80\x9cz\x0f\xfc7\x1d\xdbjZp\xcf\xb1S\xb7w\xeb\xf4\xf6\x1b\x8e\xbd\x1b\xb1\xd2\xe8y\xd7\x18[[\xafR^\xd0&\xabj \xbd\x81\xa6]Ul\xcb|\x85&\\T\xec\xbd\xa6xa\xaf\xe6_P\x8c\x1a\x9bYn\xe1\xf5\xc4\xee\xcb\x89\xe3\xfb\x99\xe8b\xe2\x1d\xc6+H\xb9\xbb*\xba\xcf\x0c&\xb2I\x06\xf3\x04m=;\xcf4\x91:O\xca\xde\xe1p\x9f\x8e=\x9f\x85x%\xddYx\xd6)\xd8eBq\x9d\x7f\xa7\x9d|\xfd\x9d\xb7\xb0\x82\x10\xe6\xec\xdf;\x8c\x99\x1e\x7f\x83\xb7\x8c\xd7\xd8\xbb,\xff)s\x0b\xd1\xa8q\x13\xba\xf6\xf4\xbc\xd8\xdc2\x1f=\x84k\xd2\x1e\x81y;L\xf5S\x82\xf9\x19\xe4\x14\xfdF\xcf\xb1\xdc\xd9\xa4\xecDJ\xe8\x13\xaay\xeb\xb5\xb0\x0d\x91j\x16\xfc\xd8u(,\x19\x04/v\xa0\xe6\x9dPe\x8ev\xa3\x94\x86\x8b4\xbc\x02\xa7{\x8b40\xebr\x9b\xd7H^#2+D\xae\x11\xb4.u\xf3\xd0\xf2%\xc2\xc0\xaa/\xb9B\xec\xe8\x18\x1d\x15\xbb\xcbA^'\x7f\xdeub\xe7\x08\xe7r\xe1\x1e\xd7\xf0\x95>\xd2=;a\x8d\xa4\xe6\xad\x1a\xfd#m\x9f\xe1\xc6\xd2\x13\xa9\x1djnd\xe1\xcf^[\xac\xb3lBA\xab\xdf\x17ds\x8b\x15H\xf2\x16\x1fQ\x8b7\xb8\xbcSMO\xf6qj)[t_~\xedd\xe8l\xe1:E\xa9\xd7*J\x0e\x9de\x1f\xb0o{\x86C\xc3\xf13\xc6\x97\xb4\xaf\xd2p0qC\x15\x05\x10V\xbcS\x04\x14\x81a(\x0cBp\xdc\xe4&pv\xc0gi\xa6\xc1\x96\x08\xa4\x060\xe4\x0e\xd7\xd5\x11m\xcb\xbb\xb2+\xd7\x15Fk\xd3p_\x0cM{\xc6?_\xbe\xe1\x80 \x1d\xb6\x1c\xccN\xf9\xb0\xe1\xb0\xed\x81\x89x\xd8\\4z#\x11\xb4.:\x81\x97)\xf2\xbc`Fa*\xd3\xcb\xfa\xc6\x18\xa0\xeb\xe1e\xcaS\xb4j\xc6h\xdd8&\xbf\xf7E\xc5\x94D\x96\xae\x9cm[\x00:5\xb5\x01\xb645\xe6\x1b\x1b\x9c\xf2E\xcaw\xd8u\xc0j\xd8\xdc\x9b{\x8b\x89`f\xa5,\x95(H*\x06\xbe\x94Rfe\x88\x90N\xc6>\xd2\xc7\xf91U2\xe3\\\x03\x1a\xd9\xb0$\x19\xf4>bftEm\x9a\x9a\x14\xa5\x0e*\x8fX]\x87\x83k#\xab]r\xc9\x9br\xbaM9\xab]\xdf\xfa\x0c\x87\x86\xe3\x1bV\xbb\x1cr\xd4\xa5u\x81\xdf\xd3\x12\xa5\x8by\xf7N\xd2\xb9\xb6\x0d\x1a\xef\x8ci@\xf5:Eo\xfb\x8a\x94\x87\n4\xab\x12\xeb\xf0\x95\xaai\x01\xdd\xa6\x1d\xc9\x82S\x87\xf0\x16Z\xf7Do\x0e\xd3\xeb\xe0;n\x1dh\xa4\xaf\x0fE\xd9Z\xee\xf6a{\xa5<\x05p{LY\xdf\x80\x9b\xbbu\x7f\xb2yT\xf9'N\xa7Jg\xeb\xfe\x163\x9f%\xd9\xf9F\xa8\x96\x0c\xe0\x867\x19\xd3i\xe4\xc4\xad\x8dt\xccJ\x05`\x02w\xad\xbeSX$Q\x1fl\xa4]\x1da/\xb3[\x9bX\x174Rp\xfb\x1aaLV\xb6\xa8\xb9\xaf%f4}\x96\xe8\"\xc4\x0f\x05\x954\xa0\x9b\xfc\\V\xd5\xabr\xdb1\xc6\xa3\x7f\x9cu\x9f;\x84\xeb\xed\xa1)Y\x98\x01e\x15\xb7\xb7\x86\xd0\xfa\xc1\xbf\xac\x84\xb5\xd3\xf6\xd8\xca\xe1\xe0\xf6p\xc5\x9a7TA\xbf`\x14\xc6ZH3\xf4}C\x9aVg\xef\x16\xdf\x14\xed\xb6\x92|\xef\xc1\xffC\xb810\xe9\xaa3b\xd7\xadn\xda\xa2\xd6\x9d\xe8\xbf\x84\x96d\xb8m\x8ce\xcaV\xa5\xb9r\x88?\x85[f\x87\xd1\x01\xb7\xfb\xb2\xeb\xca\xa6\xeePq8TGk\x80\x84\xf4\x96\xbbI\xb3\x1d\x8f=\xbb6\xae{\xe7\x96\xff\x1c}8\xbf|{quu\xf1\xfe\xdd\xea\xe3\xbb\xab\x0f\xe7\xaf/~\xbe8\x7f\x13\xf3\xfa\xd5\xf9\xf5\xf5/\xe7\x91o\xae.\xde\\\xc5\xbc\xfa\xfa\xec\xdd\xeb\xf3_b\xde\xfc\xed\xe2\xfa?\xdf\\\x9e\xfd\x16\xf3\xee\xc7\x0fo\xce\xae\xa3\x9a:\xfe3\xaa\xb9g\xd7\xd7\x97\x17\xaf>^\x9f\xdb\xdf\xde\xe2]\xd1W\xe4\xe5\x94Q\x0e)\x06P>\x0c\xdc4(\x08\x94;\xc7\xbb\xcd([\xb0\x85:\xf2\x1d\xe3Y\x07=~a\x19l]\xa4AR\xa2\x14\xb6\xad\x0d\x9e\x00\x8e\xef\x9d\x9c\xe4\xea\xbbXO\xff\xc0m\xf3\x1c\x04\xc9\xd8\xa7\xbf\xa2\x92p=\x0d\xb7m\xc3\xf4\x96\xbe\xc3\xdaN\xe1\xae\x1fX\xf3\xa5\xf9hX\xc5\xeb\xb2*\xc9Q\xd0\xa5\x8f\xb8|\xbc~\x18EdC\xc7\xe4\xb6\xa8vt\x1c\x0b\x87o\x86\xb3\x05\x94\xe5\xf5&\xd0g\xfe60\xc7\xb6s\xee\xb7z\xf1&U{`]\xbd4\x1fyZ\xf3\x9a9n\xa7j\x81X\xaf/m\x0f=\xad\x80\xdd\xeb\xb7\x92\xdcn\xdb\xe2^nM\\\xbd\xb0\xf6_\x9a\x8f\x82u~dw\xaa\xfe\xab\\e\x17W\xa7$E^:\x9e\x07k\x7f[\xd4\xc5\x0d\xfe \xed-\x93\xbb>J\xa7\x97\xf6\xc7\x91\x8d\xb8\xc4\xbf\x9f\x11\xd2\x06[\x10#\xba\xc4\xdd\xb7\xbc\xe6\xaa\xec\x88*\xa5d/U5\xa3\x8cF\xc8\xcc\x01\x85\"\xdap\xb6\xdd\xb6\xf2\xa0j\xc9\xa1\xf8\xee\xce\xcf\x9c\x96\xd6\x19\x04\xf5\xd6\x16\xc4\xde\xb4\xb0z=\xe8J\xfa\xe0pz\x18\xb4Ey\xa8\xd8\xfb\xa0Fk\x04\x1d\xee[-\xfe}U\x10\xd2J\x8e;\x8b53\x8b\xee\xe1\xef\xac\xa5\x11`\xec\x1b:LH[\xae{\"\x1f\xa6\x9bZ\xda\x944\x82p\x8a\xe0\xa7[\xf9ve\x9b\x9f\x8e\xf6\xed\xd9\xb8\xd3\xb1c0\\CZU\xa3#\x84\xd4\x9aR:H\x0f\xc4\xf5\xa9\x14Uiq 6\x1f\x8aa\x96\xcbN\xf8SHY\xc3\xd8\xae,\xaa\x11T;AV\xa36Tb\xf6\x0f\xcc\xa9\x8c5;R\xb4\xe2\xf2\xd6\xef\xfe\xf5\xf4;\xc0\xab\x19\x00\x0d5\x8f}e\xefc#FiH\xc2\xd6b\x98\xac\xd2b\xc9=\xbd9\xa5\xe4\xd7\xa7\x85Z\x03\x0c\xebw\x1b\xf6\xcb \xfa\xee\x81\xff\x83\xf2\xf5w\xf8t{\n\xbf\xfcU\xa3\xb7\xee ;\x8f\x7f'>\xe3\xff_\x9f>\xb0\x7f4-\xa7y\xfa\xf0\x9d\x8f\xdb\xd7v7\xe6o\x8c\xdbe\x9f\x9b\xd4\xcc\xaeO\x8c\xa8))\xaf\x0fT3\xaf\x8f\xbcN\xdf\xf6s\xfbh\xa2\xb1\xe6\x1dEK,'6\xd2\xaa\xe5\x04\xdb,@\x0e\xeb \x10\x11\xb7\x8b7\x9a^/\xf9\xcc\x8d\xb5e 2\x9dq<\xa9a\xfcK\x01\x91v\x8ep\"\x91\xaa3\xa5\x95\xff\xe6\x83\x90\x02u\x1c\xe9\x98\xc1\x0c\xb2\x8bej\xa7J\xb9\xfdR\x8d\xe3\xd0H\xc6\xf5uy\xb0\n\x81\x05\xb1;\xc6\xfc\xb8k\x1e\xe6\xa7-6\x8c9\xd9\xb9q\xa3\xa7d\x16E2\xcb2\x91,\x82\xee\xe8p py\x88\xec2\x86\x8f\xc0\x80\xf1\\-\x10E\xbb.\xba\xb2C\xdc\xaa\xfa\xfdO?\xfe\xf4\xe2\x05\xb9\xa5\xad\xf8\xe9_N\x10\xa6\xb2\xfb\xc5\xe9\x8b\x17/~\xfa\xc1\x12\x8e\xad\xde\xa1\xfe\x02\xb1\x8b\xd4O^\xbcx\x81\xcazS\xf5]yg6\xe2\x0d\xc0\xdc\no\x8c\xbd\x02\xe3oY\x1fzn\xe3\xed\xfa\xfd\x1eo\xd9\x92}w\xf6+{\xa6\x11\x14q\xb5\x9b\xa6\xbe\xc3\xadH\xca\xc2\x02\xfcx\xd4\xb7\xde\xea\x9a\xe0v\x8f\xb7e\xd1\x1eA0\xb0ZE\x90\xf8\x88(\x9c\xa2\xeb\xdba\x05\xd5h\x0f\xe8Fido^\xf3`]\xb0\xd2\x88\xb0\x17N $\x88\xde\x06e\xf2H[\xd4\xdd\x0e\xb7L\xaf\xe9\x89\x1a\x946\x86\xbd\xd1\x86\xdb\xc2\xd8\xc5|\x8f\xe7+\xc5\x87@{\xfb\xaa\xdf\xef\xe9\x04H\xe3\x8cw;\xbc!\xe5\x1d\xae\x8eh\xdb\xf4\xeb\x8a\x1b\xcb$\xf3\xb5\xec,\xa0\xcb\x9e\xb6\xd9\xa3{\xd6\x1f>Z}\xd7\x17UE\x07\xa5\xe9oni\x7f\xf4F\x14Z\x05\x05\\v\xcf\x07\\\nA/\xa8\x0cg\xfd\x1e\xd2\x12\xdfb\xfd@A\x9b\x06]\x12\x93`WB\xca\x1d\"\xf7\x03%\x9ew\xa0-\xb6\xf4\xdb\x9f^\x14\x87\x03\xed8\x1d\xc4\x9f^\xbc\xb8i\x8b\x03f\x11\xcf\xfap\xf3A\x03\x0e\x13S(>?\x19>\xd5[\xf0=\xec\x19\xfb\x92\x8e\x08\xe3\xa75\x16<\x0b\x0c\xfc\xf1\xea\x0d\xfcP\xdf\x16\xdd-Z\xe3]\xd3b0\x98\x9b\x9b!\xeb+\xc3\x05\x7f\xf8+\xfa\x08\x03~\xc2G\xfcd\x1c\\\xbd\x15l2\xe9\xfa\xa0\xc3\x8d\xee\xc58\xdf\x95\xf8\x9e]\xd6!\xa2\xec\xff\x9b\x8a\xe1aL\x1ax\xa0\xd1\x1a\xba*\xcbXyq\xad,\xca\xc1\xcc3\x82IV\x08N\xc9M\x18\xd4%\xba\xf8\xe4q\xd5\xe7\x81\x8f\xeb\x1a\xd3iW&\x80m\xe2\xb7EY?\xebF!`d\x86`9!6E\xb5\xe9\xab\x82\x88\x95\xc4\xfcg\xc0\xb6\xd1:\xa4\xb1W~\x0dq\x9c\xd0\xa0nPS\xd8\xa6\xd0\x01\x9f\xed\x8a\xd2\x887.\xe9\xe2yw\xf6+\x1d\x8e\x1a\xe3-U\"\xb8\x82<\x18^|'\xbeQ\n/\xd6\x1d'O\xaa\xbb-\x91\xe7?]\xaaH\x06y\xdf\xf9O\x1fCI[\x98w\x00\xd4\x87\xc3\xaa\x89$=\x01*\xa7\x8c|\x04\x8c8\x02*\xach\x0fxG\x91\xb1\xf5\xd1\xf1\xf4\x0c\xabxu\x1c\xd1\x8a\xc9\xa1\xf5\x8c\xbd\xc6\xe5\xa6tbH%\x03\xa3\xcfR\x13`#\x98\xc8z\xae\xb3\x9f\xe8\xd8\x97\x8eH\xf6i \x18\xccvF\x07\xb2\x1b\xb1P\x8e\\\xdd\x81\xf3\xf8\xa2<\xdd\x1e\x9b\xe5\xa9el&\x05\xbe;\xf2\x05 \xef\xb9\x03\x053\x17*\xc3!\xe5\x0eX\x98\xb7\xd0\x95\x97\xdb{\xba\x0f\x1d\xd4\x17d\xe4v\xe4\x84\x8a\xcb\xc7\xed\xcaV\xe8\xf5\x19\xcc\xf7\xa2\xa43\x85\xa4\xbc\x17\xc5\xe1\xe3\x9b\xe7\xf2 \xce\xe5\x94\xec\xday\x82\x9f\xe0\x04\x07\xf2\xd8\xb9\xad\xee(j\x0c\xd3f\xb0\x83\x8dfq\xfe: \xb3<{\x9d7w\xddB\xe6\x9b\x93\xb5n\xc8Pg\xa1\xb7(g]\xc2\x8cu\x13\xf3\xd59re\xfb\xc7/q\x9elG\x96\xeco^\xc3t\xe4\xc5^\xc8\xd8\x893b\xc7\xe5\xc3\xce\xfa\xe57\xb4ee\xfd\xf2\xdb\x99\xcb\xc8\xec\xd6.\x9b'\xf29\x98{\x19\"\xc4\x12^\xa6\x08\xb2E\x0e8K\x19p\x163 )\xf2W\xa7\xcc^\xed\xce]=;s\xb5\xa3\xa6\x81LD\xde\xea\xac\xedgm\xff\xab\xd4\xf6\xedC\x14\xb4\xd6\xfbq\x01N\xc5F`\x1aP\xb0\x14\x1c\xc8\x96\xfe9\xc7\xb0l\xe9\x87\x92-\xfdY{O\xa9\x9c\xa5\xd3\xde\xf3I\xec\xdb\x99\xcbl\xe9\xff\xc6'8\xeb\xfeY\xf7\xff*u\x7f(\xd9\xd2\xcf\xca\x1f\xa2afK\x7f\xde\xb2\xbe\xc6-+\xeb\x97\xdf\xce\\fK\x7f\xb6\xf4\x07\x99$f@\xb2\xa5?[\xfa\xb3\xb6/\xca\x93\xd4\xf6\x95aZv\x0b\xa5B\xcaj\xb4\xf7c\x04\x03:\x10\x8f\x08\xdc\xd7\xb8U\xaf\xfe\x03.1v!\x07. \xedB\xb6\xdd\xce\xd8\xe5\x1c\xbb\x9bkW\xb3#\x08^\xc6\xf5\xa0\x08iq\x04'\x92\x10^:\xcb\xd0\x04\x93\x9c\xe3\x02$\xe4W'|\xaa\x84\xe7\xcc\x17:\xf5\x85\xce}\x8fv\xf2s\xa3\x0bIT\x97\xd9\x18\x83\x95\x1a\xdd\x0d\xe2P\x06\xf790+\x8b\xdf\x90\xb2\x98\xb3\x89\x7f\xfbs<\x05\x97\xc8\x13\xff\x0dM|\xbea?\xc5Y&\xdf\xb0\xbf\xec\\3\xf1d\x83\xdcHFx,\x13\xa3\x19N<\xe3O\xa6\xe1:\xd0\x8d$\xac\x9f\x18\xe3\x88E9\xb2~\xfb\xa7\xd8\x02\xb3~\xfb\xed\xcfq$.b\xb7\x15\x8d%\x98f\xdf\xc9,av 0Lp\xceQ\x90i\"H\xc40Nj\xd6\x99\xc9<\x0eZ\xc0R^\xf6\x99\xc3@qC\x93\x025I\x8b\x9b\xf8\x90\x93\x05\xd8\x89} \xc8\x84\"\xd0\x93|\xfa\xc8\xa7\x8f'y\xfaH\x88\xac\x18\xe4\x00\xbc\x80\xfb}\xd0\xa1\xb8Q?\xed\x06De\xb8\xacPK&\x7f(n\xb8\xf4}i\xaf`|\x01\x0d\xb9\x93\xba\xbeb\xa9\xdc\xa4\xdf\x0eE[\xec1L\x80\xa0c\xdd\xe3\xec\xfbZ\x8d\x1f\xc8\xea3>\xaa\xec\xe8dDqlY\x1f\x89*\xc5\x94\xa6\xff?\x9d7E-\xa2'\xf4\x9f\x90\xf6\xec@Uw\xc6\x8f\x1f\xe0\x82\x82\x1ew\xe4\x14~\xd7\x880H\np\x16\xfc@`\xcc\xf7MG\x10\xde\xed\xcaM\x89kR\x1dO\xd1\xc5\x98\xaf\x92\xa5&3\xef\\\xa2\xcb\x17\xb3\x89\xab\x1b\xb4oZ1\xb0J~@\x966q\xe2\xa0X\x00#R\x92\n[\x16+de,Ez\xc6\xba\xdf\xafqK9\x887\xc5wg\x94$\xdb\xb2\x95I^Y\x91\xe6\xed\x92\x1d\x9dI\xda\xe4[-\xcf\xa7V\x0ej\xa4\xa2\xca~)\xff\x19\x97\xb2g\"\xd5\x8a\xee\xde\xb1V\xb3F\xa9;\x1b\xac\\\xae\x98E\x8c5\x12\xb7\x8aebZ\xf4\"\x16\xae\x1ft\x14 \x9b\x95O\x0c\xb2\xd6+6\xc9\xfb\xc5\xfeO\xb0\xd8\xad\x99\xc4V;\x7fi\xe7\xcb\xbdk\xa5\xbf\xde\xfb\xdf\xdb-p]*\xe9\xea\xb4\x84\xd6\xbfF\xcf\xd8 \xae\xf5os \x13\xbc\x05\xd3r\xec\xb6e\xfb\xf5\x1d%\xe9MYSaU\n+\x15\x16\xcca\xcf\x9e\xaa\xb3\xe2:\xa7\x84\x16M\xb5\xd52\x8b\x05\xcbKe\xa5d\x15\xa9\xdbu\xf4HhE\x19\x0fE\xf7\xd8\x9cn\xda\x8a\xfb\x10\xbar8\x89\xee\xe0\xe5\x9d\x91\x96\x19\xb9)?\x93u\xcb-_\x99'\xbb.\xefh\xcf\xcf\xb4\xaa\xca5\xebq%\xea\xac@-\x1d\x18\xc2\x9a$\xc2-\xca\x7f;\x82\x99W?\xb2\xa5\xc2t\xfbC]&p\x87j\xd3&\xb9\xdc)\xe0K\xaa\xcaE\xb2\xc8\xb7\x8c\x89\x9c\xa9\xa6\x15\x82\xef\xed\xab\xc4\x98V\xea\xd7\x84\x89\xfe\x89 \x15\xa5\x00\x9f1\xfbnx Sn\x16\xd6N\xd3\x92\xfd\xa8\xf6\xa1r\x95\xad\xcbe\x9b\xd3\xce\xa4\x04\xb3a\x9ca\xb9\xa4\xab\xa4\xcd\x9b\xabz\x93ghr\x0cV\x82\xc8]|\xc8\xef\xee\xea5&\x8dL\xf1G\xd2UC`\xbb\x91\xef:\xbd\xd7\x06\xa9\x8a\xa64\xbb\xa35\xdb\xb0\x8b\xa4\xcej\xb2)\xb3\xa2\xb1]J\x90\xd8\xc8],\x90\xa3_\xb1%P|\xdd\xf0\xfd\xb1\xd9\xe4Y\xca\x85\x16\xdf\x96O\xeb\x0dM\xb3U\x96\x12\xce\xa2\xcd>3\xc9\xac&\xde\x1c]\x1fq\xef\xc9\x8f\xe4\x9b\xff\xe3\x88\xfc\x92\x15\xe4G\xf2\xec\x90g\xbb\xff\xc8~x\xf6\xac\xef\x1a)\xca5\x8cA\x8d\x8d\xf8cLG2f\x96\x13\x91\x13\x98\xc2\xe9\xa8\x1d\x83\xdc\x0b \x93\xccG\x98:\x8a\xa5\xdak\x0e\x1e\xf7\xca\x83gP\xf1+G\xa1\x83\xde\x1a\x0c\xac\xbdn\xb5\xadJ\xbc\x98*\xef\xb1\x18\x95\xc0\x82\x84g\xe0\x9a!\x11\xbdz\xcd\x9a\xbf\x80Q\xd7\xaa\x14 \xf3#`3\xc0\xcb\xb1v\x02g\x7f\xac\xab\xbc\x93\x7f{G\xcb#w\xb4tS\xa56\x1a\xa5\xce\xb3@\x9a\xef\x06\xbe\xa7\xdb\xba\xfb\xf9\xfe\x13\xcc\xb7\x90S\x8e\xf9\xd6\xa5\x18:\xdf\x1eW\x06.7\x82\x82I\xffH\x90\x8b\x12S\xbf&y\xb6L\x1a\xfa\x8a/\xd1_x\xbd\xb5\xc1\xc2\x8aVUi\xdd\xdbn\xac\x0f\xf7\xc9\xc5\xbf\x86Y\xdcr\xe7ON\xd75\x13\xdfY\xc1\x11=uC\x8b4\x03\x0f@oH\xaf\xcb;\xce\x0cY\xd7\xd7\xbd\xa5\xc2\x8f\x88\xeb\x92-\xb5EyG\xf9\xa2Z\xd0mY\x00\xd2\xf7\x0e\xfa\xcc\x96\xdb\x92\x1d\x11\xbch\"8\xa2z5\xee6U\x99\xd2\xba\x96\xf1\xa2\xeb\xf2\x8eV|\x18\xc1\x8c\xac\x93\xdct\x14&E\xd7\x9b\x8a6mU\xc82\x82\xd7\xe5\xdd\x15\xfb\xea\xeas\x96\xe7W\x9b\xa4\xe60\x85\xa6j\xe9!\xc9\x1a\xb2\xa6 /tL\xb1q\xe11\xf1\x92Q\xd7\x9b\xd3Gg\x0b\x06\xdb:\xbb\xbeiH\x9a\xb45%)\xad\x9a$+H\xc2L\xb1FUW\x96\x85\xa0K\xb2\xa07\xc9\x9d\xde^[\xd0/\x1b\x0e0\xc9\xb7r\xe9\xdbl\x9b\xd3l\x96rt\xcf32\x04\xd2\xd7(+7r\xbdB\x9f\xe2u}-_\xd2(\xd5m\xca&f\xd5\xe6\xf9V\xce\x12\x14S\xe4ff\xb1d\xbd\xe5n\xe7\xbb\x92\xa96\xfa\xb0mh\x95\x95Kr\x90\xd4u\xbb\xe6\x90\x97\x06@\x0f\xf5\x93\xe0\xde\xf4m\x96\xa8\xc0;F`\xd8>\xfd%)\x92k\xfa\x96\xd2\xe1.\xc8\xfd.%\xfb]*\x9e\x7f\x85]jo\x95A{\xb4\xfb|\xe8\x0e\xbd\x9f3t\xf4\x86\x84\xc55`\x18\xe3\xc5\x1c\xe9\x7f$\xc8\x85\x86\xef\x97\xfa\xfa\x84kLF\xb1\x16\xc7\xd8\xe1<\xbb\x88\x04\x18\xee}#\xa7\xa2Xr\x97\xae\x9f\xe5W\x1c\x80\xd9\xbb3/\x86a\xfc\xcb\x00\x97\xda\x17\x83\xb8\x93(\xaf!\x0c\xea#\x8aS\x89bV~4lL\xf9?\xc4\xa7QImn\xd6\xdd\xa4\xa2\xc4\x00\xf2}l'\xca\xf5:k\xde\xb6\xc5r\xd0\xb8\xe3_\x86\xc6\xba\xfb\"\x96;\xaez\x9c\xd4\xb7\x83%\x14\x8f/\xf7@\xf1\xa8\x90r\xa0/{}\x95\xa4\xa4\x01\x95-\xfb\xf5\x94E\x1a\x1f\"\xa3\xb0\x1e\x84\xc6H\xbe?h\x84~\xca\x96\x7f\xf2\x11\xd2z\x105B?e\xcbA#4QZ\xa3D\xa2\x18\x1d#\xad\xdffy~R\xdf\x0e\xdd\x91\xe6g\x01\xfe\xe4\xeb\x03\x98\xfa)\x1b,&\xcc\xcf\"\x98b\xafG2\xf5\xf7\xf2\xeeU^\xd6qz\x8csvq*\x01N\xfb\x1f\x0d\x9a_\xf6i\xbc\x0b\xc3\xcb\xf6`\xe3\x8e\x18_\x0de<\xda\xa6\xf3\xb1=T\xdb%\xbdo\x86\xb2\xfc\x91g\x18Faa|Lcd\xc2l\xeb_\x0db\x1c\xa6\x07\xceL&A.88i,\xff~jQJ\x06NbPo`\x0e\xcfh\xb5\xce\xea:+\x8b\xd1\xd3\x11 7\xa0?\x16\x8d\x11\x1d:\xa7\x9fN\x9a&xWtToLZ\x83\xbb\" \x0c\xea\xc79\xcdiR\xd3nr'\xf6\xc5Mo@\x7fl\"\x83\xfat!n\xfd~#r\xc1N_O\xeb\x93\x9b\xde\x80>\xd9D\x86\xf6i\xb2\x10\x18\xb2\xf5\x89\xfe\xc9\x08\xf1\x05\xd2\xefD\x86mg[_a\xba\x03\xe6\xc4MlJ_\xa3\xae\x8f\x1f\xd6\xcd!wU\xf8z\x08tFt\xee5m\x92,\x9f\xa5S\x06\xa9\xc1\x9d\x11\xdf\x8f\xe8\xc4\x9b\"Y\xe44d0Eu\xc2 5\xb8\x13\xe2{\xad\x13\xe2\xa5\xd7tS\xd1\x94\x19M/\xc1\xf5,\xdf \x1c\xbb@\xf2\xb2\xb8\xa6\x15ik\xf6\xbd\xbc'\xa3\xa2\xa2\x84\xc6b\x1b\x9e\xfd\xf8\xf1:-\x1aZ\xad\xe92K\xaa-G\xf3\xcd1rN\xa2\x83\xc7\xd0\xa24bI|\xaci5\x87huQ\x1b\xdc\xa9\x8e\xc4\xa0\xde\xfc\x9657\xcb*\xf9<\xad\x17&\x95\xa8#B~4\xe8\x908\xe7I\xe2\x13ms\x94H\x80\xe7\xde7\xe3Y\x1e- q*C\x98\x0e\x18\x137e\xbed\x1c\x9f@\x16\xfa\xcfe\xbe\x8c\xf6\x0c\x89;\xbd\x02\x8e\xa1^\xdf\xe4\xb5\xb8F\xe5\x19\xf9g\x1eJb,\xe9\xb59\xca\x82\xff\xe9H\xb6j\xc07\xa0\xd1=\xa0D>\x8f\x04P\xd2A\xe8\x18\xf9E\x92\xb3\xe5&f8\xa9\xa8\x9cU\xb5h{\x17\xc4\xf5(iK\xd3\xb8\xc0N.\x1b\x03\x11\xde'\x9d4:md\xe9\xff\x9d6'y\xce\xc8\x87\xb6\xa9\xbd\\\xf8Z\xdd\xedZ\xb4v\x99N%\x0c&\x9da\xc7 ><\xab|_Si\xf8\x9eEhM\xd9\xba\x08\xb9\xf9j*\xcd\xb7\xb3\x11z\xc6\xb0N\xde\xee\xd8\xeeq\x08\xa9^\xd3\xb0\x0b\xf8\xd1\x9ag5\xbf]U|ME\x9b\xbd\xdd\xc1'\xb4QsU\x93\x05\xed\xaf\xa0\x1b-\xe9xH!\x16\xb5\x98\xb4\xdbK\xb5\x9f\xe5\xb0\xcaRq\x86\xf01v\x16\xbe\xa3\xf6\x05Y\xf6\x05Y\x889\x7f\xc89H\xba\xa2@\xf0o6\x1aj\x05rD\xc5\xb1\xf6\x19\n\x8a\xd0\x8e\xd9qg\xec^\xe1\xfb\x13*|\xb0\xc2\xcd\xa3\xa0\xabS\xe5V\xf7\xccu\x12\xb9\x06\xdd\x0b0[\xa47ey[\x0b\xc3\xec\xcd:kN\x7fzu\x92\x0e\x07\x0b\xa4e\xd1TI\xda\\\xc1~\xf5\x1a>\xd9\"\xbdJ\xd2[\xcf;BJ\xa0,\xc9N\x9f\xfe\xf4\x8a\x9c\xa4\xb7E\xf99\xa7\xcbkQ`@\xbcc\xf5\xb2J\x1a\xca\x13FXO\xcf\xb4\xdc\xec!]\x1ba\xd4\x99\xdf*]S\xfcS\xc4\xf8\x19{\"\xa1\xa5R\xdf \x0b@$\xa4\xc8m\xd1\xdch\xc9\xe2\xdd\xcd\xd2z\x7fEN\xb9=\xef\xc8\x88\x0c\x9e\xf4\x98$w\x07\xaf\x12\xf8\xa8\xb8\xd3G4\xea\xa0vO\x0b\xf1 \xa8\xddO\xcf\x90\xdd)&\xf4\xfc\xec\x95\x107\x81\x89\xfaSEc9\xf0\xb0\x12.\x145C\xd6\xcc\xd0\xa2U\xe7\xcbSr\xf2\xea\xd5\x9b\x8b\x8b\xab\x8f\xef/\xce\xde\xbc:}{\xfa\xe6\xb5\xf9\xd3/\xa7\xef/\xcd\xbf\xfd\xf4\xf1\xfc\xbd\xf9\xb7\xd7o\xce>\\\x9cZ\xaf\xfevz\xf9\xf3\xeb\xf3\x93\xdf\xec\xd7\xdf\xbd\xb9|c\xfe\xf5\xe4\xf5/\xa7\x16\xe5\xcb\xf3\x93\xf7\x17o\xdf\x9c\x9b\x7f\x7f\xfb\xe1\xfc\xd5\x9b\xfe\xaf\xa2\x08\xc2KW\xbf\xf0\xf9\x81\xf1\xea\xed\x9d\xaep%\x1b@\xbe47Z\xc4\x15L\x0c\xc0zV\xa4n7\x9b\xb2R\x0e\xae\xeb*)\xa0\x0cV\xa9\x19\x0b\xddY\x89\x8d:\xc6\xb1v\x1e\x17\xe5\xd3rC\xee\xcaFf\x17\x1eY\xc4\xd8<\xbd\xd4\xff\xa1v\xd7\"\xcb\xb3\x86+\xbcY\x91V4\xa9E\x15\x95v\xb3\xc9\xb7\xdc\xb8\x10\x1d\xb1\x89\xb2\x89~\xa9\xff\x03!\xba\xa4(\xd1F\x02\xad+\xd2r\xf88\xcf\x9fg\xa6\x08;\xc3\xbb_\xedF\xc5Jzi\xfc\x1bi\xba\xa9\x92\xa2^\xd1J\xd8C\xbc\x80\x8a\xa8l\xd9\xd5\x92.\xa1\xaa\x80\xe0E\xfcY4\xca\xf6\x19\xaf\x99\xc3w!\x9fq(\x11\xab\x7f\"\x10\xbek\xda$\xcb\xa4I\x8e\xeb\xb4dK\xc2\x10\xa6\xd6\x8a\x7fi\xfe!\xb2\x03\x08\xb7\xb0\x92z\xfd\xeau\x00\x8a\xc9\xcc\xd8\x07\xd8\x9d/\xfb\xffD\xf8\x17\xcdB*\x00]\x1e\x92UV$y\xf6\x07\xd4-O\xd2&\xbb\xa3\x1d\x0b\x9c'\xda\xd5V%u\x934\xaau\x1e5J`+&y]B\xe9\xeeZ{\x1d\x08\xd5\xc2t\xe3\xff\x02\x8dnIs\x8a\xef\n.P^\xf6\xfe\x85t#Y.e\xcb|\xf3\xaa\xdc]\xb0\xa7\x05\xdf\xd2\x16\x17\xfd\xd1\xe4\x81\xb3\x0b\xd7\xbc\xe4\x83\xd1\x1a\xd4\x0f\xd7\xb6\xc0\xd7\xb2\xe6\x85\x9c\x1e\xbb\x1fR\xca\xbd4\xff\x80M\nGUtk\xab\xa6\x0d\x13G5\xa4\x80T%c^\xfe\xd8\xcf\x89P\x9b\xf1Dv]\x94L\xea\xba\x95&\x9d\xe3\xe0)\xf9\x88tE\xa9\xeaI\xd3T\xd9\xa2m\xb4\xa4\xfa\xde\x175-\x96O\x97\xb4\xd8\xf2\x91\xd5\xdf\x11\xc2D\xf5\xa0\xac\xc8\")n\xf9\x17\xea\xf8\xab\xd5\x02\x14\x13\"\x9c\"m#\xfa\x94U\xa4\xfc\\\x98em\xf59\xaax\xaeHVC g!\xc6\xa1\xa2\xff\xf9\x9b\x8b\xcb\xf3\xd3W\x97o^\xcbegOJ\xff\x00z\x89\xff\xd9\xb7\xeb+\xca\x0ef^\xe6\x9fIG)\xc1\xc8\xb7\xd5\xf2\xe9&\xa9\x9a\xad\x12\x00l\x1eX\xcfD\xf5*i\x18M\xee\x14_\x13\xa2\x80\xb5<\xbf\xd64)\x98\xc0\x86\x94 \xb6 \xafVe\x95\xd2\xe5\x95b\\\xa4\xed\x044\x90\xbf\xb3\xbd\x14\xad\xde\xc6\xe8\xfb\xda\x9e\x1be\x86[\x1a\xaa\xae\x0d\xc1\xe3\xd1\x89\x8c\x174\xcd\xc8\xf8E\xd3\x8f\x8c_\xfaZ\x92\xf1\xa3\xa1+Y\x9fj\x1a\x93\xf1\x9b\xae7\x19?\x19\xda\x93\xf1+\xa2C\xc1\x13\xd2\xa4\xe4[^\xf7\xe9\x14\xad\xaaGKjXA\xdd\n\x9eY5,\x83\xe4\x9cz\x96A\xfa>\xb5-\xa3\xe9{\xd4\xb9\xe0\x99Q\xf32\xbar\xaf\xfa\x97\xde\x99\xb1ZX\x8f\x94\xbfo\x0f\xa1\x97\xc13\xa7vft\xea~u4Gw\x86ij\xfd)3\xb56\xa3\x7f\xf7\xac\xbb\xc1\x13\xa7\xc1IN\x87\xeaq\xc8w\x0emN\xbd\xb9K\x9d\x0e\x9e\xd1J\x90k\xe2\x1e\x8f~7\xb1\x83J\xcb\xeb\x91\xbbI\xea\x81\xba\x9e\xdf\x81\xc2\xd5=\xb3f^\x9e\xd3\xb4\x11\x05\x01\xf5\xb3^\x85N\x85\xef\xaf\xab\x08\xc8\xc4\xc55\xbf`\xc9\x10\xc2\xdc\x15X\xe6N\xa5\xf3'\x08\x00\xcf\xaap\x060\x0c}\xc7\xa5\x88@\xf3HC\xb7\x1f\xf9\xcc\x8f\xd2V\xf7A\xa3\xfb\x0b\x1a\xc1\xfe\xc4\x95U\xf8\x8d\xcbP}\x8a\x85\xdc0c\xacb\x19\xea\xd1s\x13\xeb\xc2\x85\xb9xm\x93d\x95\xa8\xabZ\xf0\xa8Q\xd6\xab\x8f\xa9\x0e8\xd6\"\xaf#\xd6\xe9\xc7\xe8.\xe0\xe0\xc6\xea\xa2I\x9a6\xce\x05\xfc\xcb\xc9\xf9\xbf\xbd9\xbf\xba\xb8<\xb9\xfc\x88{\x82\xfbo\x9c\x9d\x7f8\xfbp\xe1\xfc\xf9\xed\xe9\xfb\x93w\xa7\xff\xaf\xf3\xf7\x93W\x97\xa7\xbf\xbeq\xfc\xf8\xea\xe4\xfd\xab7\xef\xde9?~\xcdD\xdb\x87\x7fW\xde\\a\xa3\xf8\xbb\x80/a}\x9cz\xf3~\x97TY\xd9\xd6\xa0\x04\xd5\x9d\x97W\x89!\xb8o(+t\x8f\xae\x93\x03\x0fs\xecT,n\x8b\xf2sq|Z\xc0-@\xc0\x14\x01\xae\\\xd4\xe5\x04\x98\xa4\xe5\xdf\xc9Sr\n\x17\xd61\x91\xb9\xca\xae\xdbJ\\\x9e\xc3\xcb>\x1c\n\xb5\xa6\x96w\xe3\x1d\x8a\x9d+\xac\x89\xa2l\xfa\xf9\xaf\xbeI6yP?\x90\xa7\xe4U\xafq\xa5\x81\x1e\x92\x8a&\xcb-W\xdfD\x93\xf2\x8a Ws\xb0f\xcc\xb6\xe0\xaf\xe4)\xb9\x00*Y-\xf9>$U\xcbkfW\xbc\x129?\xd1\x9c}Qk\xce\xa4\xaf~`\x9f\xc0\xc4\xb0#sAi\xd1\xa9\xbd\x87dC\x0b\xbe1\x97\xec\xb0/\xb7\xaef\xd4\xd25\x9bQ?t\xcd\x88aa\xad%\x1cKB\x0bR\xd14\x81\x06\xa5\xde^\xebW\xb2\x89\xd6)\xa0\x81\x8a\x92\xac\xdaJ\xbb\xe1)\xe1\x87\xb0\x9ar\xe7\x19\xfa\x9e6'uM\x9b_\x93\xbc\x8d?IyMr\xf3\x88\x8b\n+\"'\x97\xe3 \xc2N\xad\xf0\x81\xdd;\xb1f8\xaf\xe6=\xad\xe2\xcf*q\xc8\x88\xc2\xf0\x82j\xc9Zi\xa8@\xd7\x08%$a\xd3\xc7\xab\xbe\xe4\xad\xba\xcc\x0d\xfe\x11\xd0t\x1c8\"\x0cC\x04\xf4$#\x1d|\x88\x0f\xa9a\x97\x80[\xe73\x85\x92\xf9\xe9MR\x83]\xa8\x91kx\x01\x95L]m(n\xd8\xbcZ\xe4ez{uC\x99\xae;\x89y\x8c\xa0\xe4\x9e\xff\x8d\x88\xbf\x95+\x92'u#>\xf8\x8bF\xa2\xb73\xb4U\xa4\xec\xa5\x8260\xf80\x1f\xae\x1d6\x10\x0e\xb1N\xbe\x00\xbe\xea\n\x84\xc2\xa4a\xe8\xcd\xa1\x9e\xb1s\xc6]\x16\xdc\xe4\xad)\xf9\x9d5\n\xcd\xfdN\xb2\xa2nh\xb2<\"\xbf$_\xb2u\xbbV`G\x1d\x17&\x04V#\xdc\x02\xdd\xa1 \xce\x00yo4\xdbk\xe2+\xca\x13\x89\xae\xbazRf\xc7\xbc5\x95\xb2b\x99\xa5\xfc\x0c\xcbVzM\xaa\x05_\\\xc2P\xa8;G\x80\xbc\xb5N\xca>\xc2K=u\xe6\xd9\x15\x14\xdb\xae\xe85\xfd\x12\x18al(\x13R\xd1\xeb6O*B\xbfl\x98\x86\xc7\x84H+\x80\x85\xa2\xd2\x96\xda\x0e\x10\xea\x81\xbb\x06\xc0 ,\xd8\xa4\xe9wG\x88\x8a\x96\x02\xa4T\x93\x83\xae\x8b\xba0R\xbf\x03\xd8\x95\xdb\x81|-\xb1f7y\xd2\xb0\xd5\x00\x9e@\xbd\xdc\x97\xe1\xc0\xe8X~\xa2\xad\xb9\xa8\xd5&\xc6bm\xae\x8c\xc1\xeb!\x04\xbba\xbb\x8a\x19\x90\xf0\x8b\xc2\xf3\n\x8d\x0c\x05\xddt;\x8ec?\xc0D\x1d\x8c\xb9\x91\xea\xf7n\xed\xb7\xa1\xc8z4\x0c\xa2\x7f3\x18\x06\xef@\x9d\xdb\xe1\x11x\x82A\x12\xe35+Tb\xfcn\x05L\x8c\xdf\xb1\xb0\x89\xf1\n\x1a<\xb1\xc8X!\x14\xe3\x0d;\x90b\xbc\x80\x86S\x8cw\x9cA\x15x\xe2B+\xf2\xdd\x10\xec\x7fl\x98\x05!\xb5\xee\xb4\xcf\x01\xc1\x16xv\x10r1\x08\xcf\x1fx1\x1a\xb8\xff\xf0\x8b\xc1\xc0\xbd\x07a\xe0\x99\x10\x8a\xc1\x16\x11\x16\xc0\x80\xe7!C4\xf0\xcc\x18\xa8\x81'\xa6\xb7\x0f\x17\xb4\x81g|\xe8\x06!\xe6\x08\xe6\xc0\xf3\xa0!\x1dxF\x07v\xd0\xbe\xa2\xa0\x1c\xfdy\xd8 \x0f\x12\x07IM\xb2\xc2\xfe\xf8w\xd6\xe4\xf1uY^\xe7\xf4\x88\xf7}\xd1\xae\x8e^\x8b@\xc3\xefO\x80cNN\xbf\x04\x141y\xd2\xa4(\x8b,Mr\xee7\xb3[:\xa0G\xd7G\x87l\xa8\xb8\x87\xff\xab\xa3\xaf\x88\xb8\x89\x07\xee\xa0\xa0\xcb'X\xfe\xf4iA6l\xf0\xb2\x94\x1e\x92\x86&\xeb\x9a\xb45/\xacN6\x15M\xcb\xf5&\xcbi\xa7\xc2-\xb2\"\xa9\xb6\xdc\xd3\xcf\xed5d\xb4\xa0\xaa\xf7\xd6n\n\xaa\x95\x93\xac\x91\xbe;\xa1\xb9\xb2\x89\xa6_\xf8T\x9d\x14\xdb#\xf2s\xf9\x99\xde\xd1\xea\x90\xef\xde\x8f\xe7\xefjpT[\xf4Z8\xa9\xed\x86\xea\xf4\x86\xae)\xf9\xfd\xa6i6\xbf\x1f\xc2\xff\xd7\xbf\x1f\xb2\x93\xbc(\xc5\xaf\x87|\xf5\xa4Z\xba0;\x8bhC\xda\x8dE/\xe1}E\xda\xa1\xd5\x9d\xf4\x19\xaf\x93M\x0dK\x81s\xcc\xb4\x03\x91 \xc3\x8d\xc8L\x844\x98\xda\xc85\xda\x97\xc8\\\xfcWr\xba\xea8d\xd3\xb7\x11\x95\xbaU'\xb8o\xb0\xae\xdb5r'%#pR\x90\x9f//\xcf\xc8\xdf\xdf\\\x92\xb2\x90K\x1f6\xd4\x96\xbb\xff\x13\xf2?\xcc\xe5x\xb9\xdd\xd0\xff\xf8\x1f\xffa\x91#2\x17\xb6\x90\xf3\x0e.[>\x92\x9b\xaa\\\xb6)U%\xf4\xedS\xff\xbf\x92\x13\xb8k\xb3Qw\x0b\x0b\xb7&\x1b\x9e4I\xd9^-\xcb\xdbv\xa3Ry\xc1'Z\x9aWS\xcb\xe7\xe3\xf9;\xde\xb6\xbc]w\xad\xad\xd1%,\xd2D\xb2\xca\xfe\xfb\xae\xcc\x96$)L\xef\x12{\xa0a\xbe\xfd*\xba*+z(?d\xf4\x92&\x13\x9aQA\xe9R\x1a\x1b\\DTw\x14WH\x08T\xb2\x01[\x80\xed\x8d#r\xc0\x94\xc9;Z1-\x81\xf5\x9a-\x0f\xb6\xd7\xebN\xb3FH-*\x9a\xdcr\xc3\x1c\x08\x1e=\xb1g\xfa}\xd9\xd0\x97\xa0?\xaf\xda\"\x85\x15\xcc\xf8\x15{\xbe\xbb\x0cK\xcb\x8e\xc6\x87\xb5\xe4)\xe1vR\xb4\x90\xd5\x8bvE*\xa8\x15\x087#d\xea\x8a\xafVDG\xb4u\xbf\xa0\xd7YQ`\xee9\xee?\xb5\xc5\xc5vC\x8f`=&\x9b\xac>J\xcb5&\xa5.\xf8\x8e\xa8!\x11\x9bm\xb8\xc2\xdc\xdd\xe4@\x1c\xf5\x90\xc9\x0e[\xe8 \xdc\xb0`\x91[ \x9b\x99w\x86+r* \x06>\xe8\xee~X\xbaN\x8a&K\x0d\x05\xdcP{\xe0\xf1\x1c\xc5\xce\xba\x00\xe1S\xfa\x17\xb6\x8d\x17\xcc\xf0\x86\x10|w\xd0Z\xe7\xaa\x8c\xb0-\xca;\xe4\x80\x86.\x89%\x19\xab\x18\xff~Rl\x7f\x97\xc72`E\xaaE\xd6Tl\xd3x8\x91r0\xc9Kc,@m\xeeO\x05\x93V\xe2\xcaQ\xc6\xc9\xc2V7\xf4\xb6\xa4\xf6`,\x993\xb9p\xf3l\xc1\xd9\x13r\xb4\x96\xd6\x06\x0f:$\xe9\xedq[\xb0\xffc\xe7\x8e\x8cr \xbb\xc4>p\xcb\x15i\x1b\x10\x10r\xfb\xf1\x0b\x17\x92\xe52\x83\xbdH\xaeiA+\xd0\xf9\xb9\xde\xad\x8c\xe3\x13C\x1e\xc1\x14\xf4\xe9\xbf\xf9\x92\xb0EH\xbeyI\xce\x18\x7fl\xdf V\x135\xa0YA^\xfd\xb7\xff\x86\x1c\x03o\xcb\x92\xac\xca\x92\xfcH\x8e\x8e\x8e\xfeO\xebg\xd6\xd9\xa4\xd8\xda?$\xc5\xf6\x885\xf7\xb6*\xd7\x07\xab\xb2|b\xbfrtd\xcb\xf9lE\x0e\xd8\xa7\x1f9\x83\x97\xe5\xc1\x7fa\xdf>!\xff\x13\x91m\xd8\xf7\xff\x89\xf7\xfdy\xa0\xef\xff=\xb9KFw\x9e\xfc\xc8u\x0dFuDO\xb3\xfa\xe0mY\x1e\xa5yR\xd7\x8e\x8e\x02\x0b\xece\xe0]\xfb\xc0n\xcb\x18\x015\x04\xdf\x06\x86\xe0l\xdb\xdc\x94\x052\x08\xd0\xfa\xdb\xb2<8::z\x82M4\x0c\xc0\x01\xfa\x1b_\x04|XbG\x85}t\n\x83\xf2\xfa\xcd\xc5\xab\xf3\xd3\xb3\xcb\x0f\xe7O0\x7fN\xb7P\xf0\x06\xa0 |8^\x04\x86\xe3\xef%\xe2\xeegC\xf1\xf2G\xf2_6\x8b\xa3\xb7e\xf9?\x8f\x8e\x8e\xfe\xd3~))\xb6\x87L\x8daon\xe0\xf0\xfe%\xa9\xea\x9b$g\x83\x843\x8a\x0d\x85\xd9\x1a\xd2T\xb62\x1a\xfaX\xac\xbb\xa68#|A\xf2\xb7\xfe\xb7\x1fI\x91\xe5\xe8\x02\xc3\xdb7V\xd2%O\xadOo\x95\x0c\x92\n%Yl\xbb\xe3]JI(\x06\xb3U\xd7\xb3\xb7\xb5qN~\x8d\x1c\xd7\xc7\xcc6:\xe2?0\xd5\xe6k\xa6\xe3*\x89\xcd\xa4\xb9\xac\xf8\x033\xd6'\xa8Dc\x91o\xa5>o\x19[Jm\"\xc9\xaa\xa1p\xcas\x1b\xef\xeb\xe3\xaf\xfb\xe4\x84A!\x9b\x06\x0b\x82\x8a\xd5\xf3\xd5\xaa,\x8f\x16I\xc5\x99\xfer\xbc=\xfa\xe3+\xe81\xe8\xc5\xb6\x8a\xcf\x9b\xfc\x8a\xbd\xc7\xc4s\xef\xa7\xff~\xf1\xe1}\xff/?\xfe\xf8\xe3\x8f\xf6\xd8\xb3\xf7:\xdb2\x91\xbe#\xa6\xbe\xf0\xc3\x14\xf4\xeb\xb6\xa6\xd2y\xc1#\xf3}:\xf6\xe7\x0d\xbf\\\xbb;\x06\x0f ]/\xe8r\xd9\x1d\x88\x87\xd2%\xd5'\xa5\x1dO\x80\x05\xfa\xfd\xffa\xdd\xfe] \x81\xd4\xd1\xae\x0f\xe2\x91\xdc~/\x11\x051Io\xd9\xde\xeb\x0c\x8aU\x96S[\xbe\xc9=zF\xab\xba,\xd0\xe5,,\xffUV\xd5\xcd\x15\x1f\xf9\x1f\xc976%\xf5\"[\x00\xf2\xbd\xe7a\x89J\x08\xda\xeaW\xbc\xff_\xbd$_a+\xbb\xdf\xad#\xe0\xfe\xabC\x8c\x0e\xe7\xfb}\xb2f\xb4\xfe/`\xf1\xffF_d|\x1b\xef\x85\x98\x17\xb7\xec\x9as\x0c3\x94\xd5\xe43\xcd\xf3\xa7\x1c\x9b\xc9\xf7\x1aG\xe2I\x18\x97\xbdP\xfb\xcb\xe9\x10\x94-c\x8duU\xa1D\x93l\xe1p0\x08\xfa\xcfDm\xae\xf5\x05\x98\xb0v\xda\xb41\xfd^\x89c\xd1\xf4\xe0\xffl\x1fv9}u\x96\x02\xae\xbd?\xb4\xa2\x8f\x9a\x003w\xbb\xec\xb1\xbe\x189\xc0Et6-3\x9d\x11\xb6\x92\xa2dfh[2B&/\xfco\xb0L\x0f\xba\xa0\x18\xfb\xa5\x1b>\x0d\x9d-\x1fm\xd5=\xeb-\xadeVo\xf2$V\xdf\xf1O\xa1\xa0\xa5\x81\xba\xb9\xacl\xaf\xaf\xb5\x805L\xa4b\x1d'\x01Iti\xce\xb4\x98\x9e\x1e\xc2$\xee\x18^\xbf\xbe\xc8\x8a\x94\xbe$iY\xaf\xcb\xfai\xbd\xbc%\xcf\x8e^|\xfb5\xb6\x12\xbe\xe6b]\xc7a\xf6\"\x9a<\xd9\xe4\x80^\xbf$\xaf81r\xc2\xb6\xabN\xa9\xde\xae\x17e\xac\xb6\xe4_\x02@J*\x18\"\xbd\x0b\xfe&#\x91\xf5\x0d3n\xca\x82\xc8\xeb\x02j\xe0\xee\xe4\xf2\xc3/\x96\x14\xe1\x81\xe4\xd44}\x89\\C5w$H\xf0)\x9f\n;\xe2\x80\x0f\xa5\xf6R[e\xb3t\xfe\xe3\xf9)\x8fT\x91e\x99\xb6<`}\xc0l|v\x1e\xad\x9e\xa67IV<\x81\xd5\xd4\xb9\xdd\x95\x0do\x90\xca\n8!\xb3\xb28\"\x1f\x84\xf1\x10\xd9\xb5\xef\xfb]\xbb\xbaI\xea\x9b\xb9\xfa\xf7sR\xdf\x80X\xado\x92\xe7\xdf}\xcf\x0c\xd4\x1b@\xba\xaaNsL\x15x\xa5>\x9e\x9f2\x95\xfe\xeb\x9aGd\x0crMI\xeeh\x95\xad\xe0\xfel\xb3k|J%\xc9e\xb6,\xbenD\x0cm\xc2\x80\xb8\xe5\x81\xd4Z#d\xb9\xf6Ub\x8bi\xd3dp+\xc6^5\\\xff\xfa\xb8\xf7\xb9W\x03\x7fS\xa7U\x19\xba\xd4\xc4VM)\xffl\xb7@\x97}\xaex\xf7\xc4\xe5\xdfy\x8c\xba\xfe<\xc7\x18t`\xcd\xc1w\x82R\x8cI\xf73d\x7f\x0f^Q\xb2(\xfen\xd7\xd4\xd0\xfc\x15cL\xc7TU\x80\xc7\xa8\xad\xa07;8\x05f\x7f\x13\x04fyL\xd9r\x08\xb9\x1d\xdd\x041\xbez\x03<\xb8\x83i\x86J\x0e=z=t;R\xcf\x81\xec\x1d\x9b{\xc7&\xfc\xfdO\xe4\xd84\x8e\xa6\xf8C\xf0g.\xd0\x8786\xe1\xbb\xc1\x87 P1\x8f\xc0\xa8\xf5\xdf\xa0\xb0\xe0\x91\x8a\xfb\x8c\x80`7\x1cx>0\xf0lP`'\x10\xb8\x19\x0f\x03\x9e\x0b\x04\xec\x87\x00\x8f\x02\x00\xcf\x0b\xffu\x82\x7f\xe7\x85\xfe:\x80\xbf\x13a\xbf\xd6p7\x08\xe8w^\xc8\xefD\xc0\xef\xccp\xdf `\xdf\xb9\xa1\xbe\xb3\x01}\xe7\x85\xf9\xce\x06\xf2\x0dC|g\x03\xf8\xba\xe0\xbdS\xc0\xbd\xa8\xef\xbf\x89\x81\xf2N\x03\xf2\"\xc0\xdd\x91\xb0]\x04\xb4\x1b\xd4\x89\xfc\x8a\xa2u\x82\x8e\x04\xebv\xe0\\l|\xff\x12n{f\x98\xae\x0d\xd2\x9d\x01\xa2;+@\xd7<\x0c'\x82s\xc5@\xeb\x14\xa7\xc0q\xbdxT\x07\x147\x08\xc4\xb5\xb1\x7f\xf1 \\\xfb\xdb\xff\xc4\xfa:\n~\x1b\xd3\xd9\x10\xf4\xd6\xdd\xb7 \xecv\x00\xe8\xb6\x8f\xb1\x9a\x08\xb8\xf5\xc2m\xdd`[\x1f\xd4\x16\x1d\x85X\x98m\x08dkBl'\x00l#\xe0\xb5\xc3\xc1\xb5\x08\xb45\x04\xac\x9d V\x8b\xb4\xdc[)\xb3\x02jg\x86\xd3\xce\n\xa6\x9d\x13J\xeb\x04\xd2\x9a\xe8D\x13D;\x0f\x84v6\x00\xed\xbc\xf0\xd98\xf0l\x10:\x1b \x9c\x8d\x81\xcdZ\xa0Y\xbb\xb5X\x00\xa5\x1f0\x1b \x97\x8d\x00\xcb\xf6X\x9e\x13(;3Lv>\x90\xec|\x10\xd9\xf1\xb3\x1b\x84\xc7\x86\xc0\xb1 \xbe{:,\xe24\x8bw\xcfEy\xe4zU\x11\x87\xa7\xf6\x17\xb4\xb9\xe25\x13\xaf@\x11\xddm\x98\xca(S\xea\xa5\xe1\xa3CFc\x07\xddA\x1f\xcfg\xa1\x80\xcf|\xe1\x9eY\x83=\xaeP\xcf\xd0@\xcf\xc4\xd2\xa7\xf0\x98\x05P\x05i\xf7\xa0{\x9c\xf6n\xb7\xfd\xf4\xc2\xa8\x16A\xb93\xf5\xf2\xa8\xf0\xf8\x8b\xa4\xc23\xb1\x83S\xca\xa6\xf6\x08\x8d(\x9e\xda\xfb\xde\xf8\x19ptb\x14;\xcc\xa0'Ha\xca)\x1e\x1e\x89G~\xf4?\x8f\x92\x8cQ\xf7\x85>\xb2K^\xdd\xc5fI\x8c3g@\x80k\xce\xe2\xb3dT\x01Z\xe2/BKT\x87\xcdB\xb4\xc4\x9c\x959\x8a\xd1\x92\xa8\x82\xb4\xc47\x0b\xae\xa1\x9eV\x9c\xd6 \x06\xa5jc\x0b\xd4\x92\xd9\x8a\xd4\x12\xb4P-q\x14\xab%\x11\xe34s\xd1Zd\xcf\xc7\xa8Z\xa1\x1b\x89\x0d\xa1\x02\x95\xee\x07\x0b\x15\xfc\xe2\xfa(\x91\xb0/\xd0\x1e\xd6U<\xe7N\x7f\xc2bV\x84\xb8\x97\x82\x7f'(u+#[\xa4G\x89\x16\x15:\x92\x05\xd9\xc4m\xd5\x97\xe2\x9f\xd1+\x03B\xd1W\x9b\xb2\n\x15X\x17\xdb\x86\x9f9e\xd5\x10f\xab\xf1\xa1l\x84\xfb\x86v\xc8\n\x1e\xeb\xed5\x90\xde$EA\xf3\xf86\xc4\x07l\xb4c\x9a\xe1K\xe5%FHh^\xb0\x87\xe5pU\x9a\xa6\xb5\xdf\x0c\xb3n\x06\xc2\x8b:\xdap\x0b\xf7T\xc3\xfbF\xa1\xbf\x8a\xa64\xbb\x1bB\xa6\xa2i\xb6\xc9\xa8\x06\xce\x12\xd1\xdb%\xad\x1b9V\x1c\xfe-\xd7L\xb6\xa6e\xdbX\xaa\xb3{J.\xe1\x0b\xa9\xf5V4OxQVY\x8b\x15\xe2\x87=\xd5X?\xe0\xd9D\x88F\xd9\x1c,\xb3\x9a\xa9\x1fK\xa8\xb3\xc8\x94\xdb\xa6$\xcfF)n\x15\xbd\xcb\xd8\xc1x\x05\x16G\xc4\xba#Qz\x1b\x8c+\xd0VH\x04\x91`\xc1\xba\xd0EL\xcb\x02c\x07\xb3J&\xb2#\xc6\x9em\x04\xe1O\x85l\x1a\xd9\xa6\xb94z\xfa\xd0\xcf\xca\x84I\xc8\xba,\xca\x06\xb0\x1f\xf9VV\x8e\xe6\x17\xb9$\x8d]\x9d\x0c\x12\x06\xe0\xea\x1f\x1e\xe6\xe6\x85R\xaf\x13\xa6\xa1\xaa\xc2\xc3\x82\xbc\xb2\xd9\xdajS\xd6\xbc\x00\xb7F\x89\xdbH\xdc\xa5U\xf4\xac\xe3UE\xe9\x1f<~\x0d\xf9+\xc6*e\xff_7\xc9z\x13\xd8\x11\x8eQ\x0c/j\xd5\x00w\x9a-\xea2o\x1bJ\x8a\xa4(k\x9a\x96\xc5\xb2&u\xc6\xd4\xda\xb6\xc8\xbe\x10\xba)\xd3\x9b\xd1k{M\xd7e\xdc\xc6V\xb8F\xf6\xc9_\x082\xad\xda\xa9\xa7\x1b\x965\xafZ\xae\x17\x8f\xbe\xce\x16\xb9:\x0e\x0e\xb2#\xca%l\xfd\x84,h\xf3\x99R\xe5\x95>}u\xf1\xfc\x990\x0d\x96 0\xea#rA)\xfb\x85\\lhJnh\xd5\xf9\x9ey\x88\xfd\xe5\xf1\xf1u\xd6\xdc\xb4\x0b\xee\xd5\x83\xbc\x87\xe3l\x91\x1e7\x15\xa5\xc7\xeb\xa4nhu\\ohz\x9cl6\xc7YZ?}\xf6\xfc\xd9S\xc9\xd5S\xce\xd5S\xc9\xed\xff\xceV\xe0SHz`\xe2V\x1c\xfciY\xd1#X\x1c\xec\xb8\xffY\xdb[\x11'\xbdSD\x0cYE\xe3\xc5\x82S$\x8cl>J\x0c\xe0\x8b\xfe=\xb7ar\xc0\x8a\x9e\x8b\xf7;\xc9\xc0%\x01;\x0dy%dB\x93\xf4F\xb5v\x93\xe5\x94\xdcR\xba\xe9\x98\x95\x04\xde\x83\xaf\xa7\x11\xe9P\nwE\xear\xcdAY5-\xea\x96\x19~\xd7e\x9557\xeb\x9a\xac\x93-Io\xca\x92)\x82\xa5\x1a'\xbeY\xba\x1ef\x05Ii\xc5\x81zl\x17\n\x04\x14OA\xbdI*\x0e'\xb9\xad\x0f\xa1\xfa\xf7\xd3u\x92\xded\x85\xf4]\x98\x88\x18r\xcaG\xaa\xa6$MjZ\x1f\xf6\x06@\xf0o\x0c@]BV\x10\x10\x14,1\x936+Z\xaa\n\x86\x97E\x86JR\xcafD\x04\xdb\xfa\x03-\x08^S\x9e6Y\xd3\x06\xdd\xdb\xe3\xc4\xf5DQ\xad\x04\xb4 \xa7\x89iDD{\xee\xe0\xbbd+[\xdb\x9e\xda\x1aGo\xe0\xbb\xfc\xf7\xb37\xbe\xfb\xf7\xf8\xef\xaf>\xa8\xfb)\xfa?te\x9e\xc5\xd2\xef\xdf\x8d\x87\x12\xc7\x0d\x17'CNbB\xa3\xcc\xe0\x16\xbb\xe3\x16n\xb5\x13\xe4\xa4\x11\xadCm\xec>\xbd\xb4\xfe\"\xa6]s\x95\x1a9aI\xb1\xe4\x1b@\x8av\xeeC8\x10\x1d\x7f\xe2h\xab\x1b\xa6\x97\x8e\xbf\x07\xda\x05\x0f \xd7\xc3\x99\xe2z%\x0f\x8a\x1f\xc9*\xc9k\xd1E\xb1\x90\xbbu\xd0\xf3\xd95\xf2V\x0e\x85\xfc\xc7WQ}}\x926\xd9]\xd2\xd0\x80\xc5/\x9b\xb3?\xe8\xb5\xfbK}},_\xe8\xdb\xa0>\x16\x96\xcb\xa8\xbbs4\x1e\xcc/l&\xe4\x1bC\xb8x+nC\x90=\x88\x02\x83#\xdaB\x90\x94\xcen\xf7\xd9\xb1\xf3\xbb!\x9d\x18\xc24\xf6\x056\x94\xc3\xb9\x18\x14\xb5\xc3\x87\x10'\x81\xb1\xd7\xf7\xfdK.\xa5\xac\xf6\xf3\xfaS[\x15q\xec\x19/[\x8c\xb0\x1f\xa3\x87\xe8\x15\xbf\x19#\xba\xe1\xfe\xebV\xd3\xf0st\xe3\xafiN\x1b:p\xcfa\x1fY\x8c\xe8/\x0ddg #\x01\x16\xa2\x1b\x97\x1b.\xbay\xf3\x03\x8b\x01\xf9B4\x0b\xfc\xd2\x82\x93x\xad\x07\x17\xfa\xe0U\x0e\x17\xe2\xbc\xe5\x97\xa4\x0ccG\x1f<\x1f\x15\x8bG\xec\xe5\x81\x03\x07$\xce\x85/\xf7D\xdd\xfa3\x96s7%\x87J\xe5\xfal`\x0f.h\xb1|M\x8b\xed\xbb\xac\x8e\x9456\xef\x18\x0d\xc7\x98\xeb\xaf\x0e\xd4g~\xcb\x9a\x9be\x95\x84*CtK\xd5\xfc\xc0bI\xbe\xe0\x1d2y\x83\xd5\xdd7G\xf1R\xf1^.\xa3\x91\xacu\x97\x0bZD\xd4\\M\xbf\xa1\x86\x9c\x9f\xbd\x12\xc4\xf0h\xab>P\xed2k\xdef4_\xd6\xd1\x03$B\xc4Wl\x95Dz\xb8\xd8\xabO\x9blmA^X\x07\xd8\x8f\xc7\xecGp\xa3\xf2\xcc%Z4\xd5\x96g\xef\x8a\xd6\x8c\xb6\x17\x91\x97\xb66v\xa5\x05u\x95\x1ew\xa0\x88p7o\xb4\xa2iY\xc9\x96$*\xe8~z\xa9\xe1\x8aL\x06\xe6\xea\xea\xba\\\n \xb7\xd5W\x91\x83f\xb6cV\xd4\xc3\xeb\xe8\x89\xe6\xf5\xf4|AO\"\xc3x\xf3\x86\xcb\x8d\xbb\x16\xb8\xd7\xb1\x87\xa6\x12x\xd4\xb8\x1e\xebM\xaa$$y\xef\xd6R^\x14G\xd5\xc5\xfb\xc7\xe2B\xbd\xaa74\xbd\xca\x96\x91\xeb\xb6\x97\x9e\xe6\xc6a\x9a\xd4\x95XJ>s\x12j\xd9\xc9\x17U&\x1d\x1f\n\x8dRO\x0c\xda\x84\xaf6\x15]e\xa1+\xaa\xc3\xdc;\xe8J\xbe\xc5\xbf6e\xd5h\xe8~\xf3#'\x93\xfd?\xb4\xed\xae\x87\x1bi\xb0\x03\x8aZ\xbf\x88^i\xf4\x06\xf5\x8f\xcd\xd0\x903\xd0\xc39#\xa5\xe0\x944\xbd\xf9\xf6\xb9\xa0\xa4\xc4\x84\x95\xfb\x1f\xc7c\xc4\x90\xc7\xf2\xa8\x0f&\xff\xef\x1b\xfaEr\x19\xe4\x0e\x99\x18\xdf\x01o\xef\xef.\xff\xe3.\xa9\xb2\xb2\xad\xb9\xcc!\x15\xbdN*\x91\x16 \x9b\x104z\x1b\x8bd\xbe\x13^oN}\x12-Qz\x0d\x8d\x94(B\xc8B\xf9\x87\xae\xf8C%4\x98\xac6\xbac\x00\x18\xf4Q4i\xbe\xee~\xeb\xc9iE9 \x8a\xac\x11 \xee\x1a1#\x8b+\x9e\x90\xf7\xc9\x9av\x1c57Yq\xad\xc7\x94\xd1\xfe\x0d\xa1\xaf\xfd\x13\x16+\xd6\xcag\xba\xa8\xb3ft\x95\x0f\x9e\xb9[\x92UV,!\xde\xc5K\xc6\xb0!\xd7\x1b\xc9\xd2\xb2\x98\xd2\x02dg1*G\x11[X\x9f|\xc8\x8b\x81\xe4\xdc\xbc\xb7\x14\xa4\xf2q\x93\x14K\x80=J\x0d\xc1\xc4\xc9\xca\n|\xdaE\xa4\xe5\xe7\x82VW\xe2\xb8\x1a\x99\xb8\x81\xeb.'\x1eM\xad\xfc,K9\xa9U\x9b5j\xd5n\x12\xbe6\xaf\xb2\xe2\xae\xcc\xef\xa8\xb5%\xc70\x85\xdd\x81\xff\x94\x9c\x9d\x9c_\xfe\xbb+`\x87\xbc\xf4\xe1\xfc\xf4\xef\xa7\xefO.?\x9c\xbb\xdf\xb9xs\xfe\xeb\xe9\xab7\x9e7N\xdf\xff\xfa\xe6\xc2K\xe3\xd5\xc7\x8b\xcb\x0f\xafOO\xde{X\xf9\xed\xbd\xaf\x8d\x93\xb7oO\xdf\x9d\x9e\x18\xb7\xe4\xf7)\xfc\xf2\xfe\xf4\xa7\x8f\x17\xee\x17\xce\xce?\xfc\xfa\xe6\xfd\xc9\xfbW\x1e\"\xaf>\xbc\xbf<\xff\xf0\xee\x9d\x8f\x97_O\xde\x9d\xbe6\x06M\xc55\x83S\xe0K\x9bq\xcd\xa0\x8b\xac\x08p\xf2:\x1d=B*$\xdf\xfb\xabk\xf2_\xe2\x7f\x16\xd4!\xc1\xa1\xac2^\xc1\xcb\xbc}\x1b]+/\xb1?\x12\x95\xf8\xbf\xa4\x8b\x86\x97W\xc9R\x9e\xcf(3\xf7=\x94\xe5\x1a{\x89\xfd\x11B\xa3\\\x96d)\xc9\x8a;Z\xfb\xf9T\xeb\xf1%\xfaW9\xacE\xc3/Lf;\\\xf1\xceQ\x88\xcb,)D\x07D\xd2\x07\x1f$_\x07\xf8\xfa~i\xfd\xa5W]8\xab \xdc\xba\x0c\xedsY&\xe5\x0d\x13\x0b\x1e\xf2j\x7f\xbcD\xff\n#\x04\xc4\xd5\x0d\xc6\xabU\x96s\xb1\x9a\\W\x94\x9by>\xfeaw\xbdD\xfe\x06\xc4\xb9\xe4K\xa0X\x10c\x1a\x1aS\x05my\xae\x01\xeb\xd4\xba\xc8\x16m\x0d\xf7l\xa37\xe2;\xf6\xecK\xfc\xcf\xacq\x995 \xc7R\x1fJ\xb3\xe0t^\xa6\xb7\\Y\xe1e\"H\xbdN\xaa\xa6S:\x924\xb0i:\xf9\xf0\x12\xffs\x7f\xedt\xd9\xc2\xd0\xff\xaeT\x89\xd8UBs\"\x07\x19%\xb4(\x1b\xfa\xc4\xd3\xb8\x12N\x17\x12\x99\xcfU\xa6\xc8\xb9F\x90\x04\xcb\x88\xdb.4\xf9xG\x90\x0cv\xa9a_\xcd\xd2n\x94\xabM>N\x97\x9b|\x86\xb5\x1e\xe7\x82\x93\x0f\xee\x8a\x93\xcf\xf0\x961\xd7\x1c\xfa2R.b\xac\xab\x0e!\xd4w\xdea.;\xf98]w\xf2\xc1\xbce\xf2q^\n\xe5\x1d\xb8\xc9\xae=\xf9\xb8]|\xaa\xa9\xd9\x99\xc7\\\x80\xf2\x89r\x05\xa2/;\\\x82\xe8\xbb\xa8k\x10}\x13u\x11\xa2o\xe2\xaeB\xf4U\xdbe\x88\xbe\x86\xbb\x0e\xd1W1\x17\"\xfa\xa2\xc3\x95\x88\xbe\xebp)\xa2\xefb\xaeE\xf9\xc4\xbb\x18\xbb/B\xdb|F\x97\xa3|\x1c\xaeG\xf9\xec\xc0\x05\x89\x92\x9e\xd5\x15\x89\xb60\xd9%\x89R\xbd\x1f\xd7$\xda\xf4\xfc.J\xb4\x99]\xb8*\xd1\x86\xee\xcfe\x896\xff\x08\\\x97(_\xf7\xed\xc2D\x99\xd8\xa9+S>\x98\x0f\xb2{&x:Qz\xba\xf7S>>\x0ef\xf2\x86\xaa\xa6\x06{E\xe5\x83zG\x15\xd9\xa9\xa6\xd2,^S\xf9\xd8\x97\xd5\x91\x10\x8f\xd3\xbc\xa9\xf2\xc1\xbc\xaa\xaa\x85\x88\xe6GzY\x0d*\xd6:\x9a\xe6u5\xfb\xd8\xf9`\x87x_\xbb\xa7\xa7o\xa0\xbe\x83\xb2\x10\xe3\x8c/\xcc\xae\x82x\x8f\xab\xce\x19a{\xba\xacv\xad1B \x10\x85\xe0\xc1\xd1\x82\xd9\xf2\xb8[\xb4\x06A7b\xaeo\xd2\x8cp]\x98\xbc\x0e\\l\xde\xfd\x18\xd6\x06\xcd\xd6I\x08/\x88\xd0@=\xbe\xa6\xa9gM\x89\x89\x1f\x94\xcf}\xf66\x06l\x18A&\xd8\xd7\xfe\x1f\xfa\x988\xf9\xdck\xbfm\x86\x88\x13\xa6\x88\xd0\x8b\x84c\xe2\xcd\xf7a\x8b\xf2\xf1v\x7fh\x0fG\xc0\x19qB\xa1\xbe\x8c\x98\xca\xa1}\x19\x04{\xc4Ix\xe0\x8f\x84hq\x8e.Naz\xeb\xa3\xf0J\x96\xd8s \xbd\xda\xed\xfb\xf5\xfa.}\x9e\xcb:\xe8\x01\x0e\xfaV\xbc\x9bl6?\xb0\xdb\xc5\x1a`\xcf\xaf\xda\xbe\x17\xda\xc69\xa8ZP\xd0UT'S\xf5\x02UR\x83O7\x84'Co\xe8%$+\x98J\xe0f\x7f\xf4\x15\xee\x0eo5 z\xac\x89\xd7kM\xc2\x03+^\xd2\xb465\xa3\xbc\xb7\x8eO\x18U\x87z\xa8\xbf\x12\xdbp\xd2\x11$\x07\xcdv#\xca\x8b$\x84W4\x13\xdad\xa5i\xa5\x0e\x9bKnh|\x0b\xc0\x13\xc5W`;\xc0\xe3_\x94\xe2\x9d\x909p\xf0\xb6\xac\xc8\x9b\x9a\xe9\xc0Y}\x83,\xba\xee\x81\xe5]\xbb\xfa\x8e\x1b\x0b\xf2\x89\xeavl\x8f\xd4=\xd7Ew\x9b7\xd9d4\xe5\xdbPW1Y\xf7<\xc4 \xd7\x94.\xfd}\x0b\xb1u\xcaV*n\x13$|\xf1\x1cv\xeb\x0bt}0 \x9c\x8b\x88\x9b\xc5)%\x07\x02\xb0\xa0..'\xf2\xe2\xf2R\xb4\x00\x05W\xd8Fq\x10S\x95\x81\x07K\xb5\x13^\xb0\x8b\x8f'\xb7Dz\xa6r\x9d4Y-\xd2\xa5J\x92@\xc9\xd4\x9b\x0c\xf7{\xc1\xe0\xf6\x07\x88[\x17\xdc\x9d\x07>\xac5W\xfe\xb7_\xdc\x8c\xcb\xfb\xee\xb4-s\xf4<9\xdf\xde|o\x17,\x00\x05\x048\x07f\x96\xfcn\x7fn\xf7<\x8c\xba\xd0\n\xd18\x85X\x84B\x1c6!\x0e\x95\x10\x89G\x88@\"Db\x10\xa2\xd0\x07\xb1\xb8\x83X\xc4A\x14\xd6`\x18\xca d9\x8eC\x168r\xb2=\x98\x82\x1d\xa1 v\x8b#\x98\x1fA\xf0@\xd8\x81{@\x0d\xdc\x0b^\xe0\x01\x91\x02\x8f\x11#\xf0\xe0\xe8\x80\xfb\xc5\x05\xcc\\6R#i \xc6\x19\x13\xa6\xc7%K;\x13\xa5G\xdb\x01M(\x1b\"69\xda\xceu\x08)E\xcd\xf8\x84hW2t\xa8\xc9 I\xd0\xd8\x9a\x98-\xf9yR\xe2\xf32\x1e\xae\x81/0\x13\xb0a\xb9y\xfb\x9e\x10\xb7\xf2\x80~\xd8\xf9s# \x1a\x04\xbf7\xc1\x05\xcf\x18`G\x9b\xbcE.\x1c\xe7\xfe\xf1\xabPfk\xc1P\x9c\x17z\x81\x04\xe0\xac\xa1\xc6\xc2n\xbb\xee\xd5\x88p\x9a/L\x12\x11^\xb8\xe7\xfe\xb9#'\xf6/\x06\xad\x01\x81\xb0\xfeov\xf8k\xa4;\xdd&;\"\xc0\x15\xcf\xf7\x80\xe9\x19\xc2\xf7\xe0pU\xc4$\x0ev<\xbaCS\x0e\x89\x9a\x14r=\x04\xc3RC\xdc\x8f\xf5I\x9e\x0f\xad\x1f\xbc/\xd1:\xd4c\xed+\xd1J\xc8&\xe1vg\xe6,^\xda\xbd\xa0T\x01u\xe7\x98\xf6\x9bJC\xac\xa5\xe7Z\xb20\xea|\xbb\xa5\xdb\xc8\xdd\x17'\x1c\xff\x97\xb9-o)\xd8}\"\x97\xa7\xa2M[\x15\x80\xb99K\xae\xd5\x9d\xbcG\x05\xfd\xd2\\\xb1\x97\x9b\x92,\xe8\xb5\xa5\xaf\x7fji\xb5e\xbb\x97\xf5\x98\xbd\xcc\x06\x85\x92uY7\x84\xaeVY\x9a\xd1\xa2\xc9\xb7G\xe4C\x91oIYp\xf5\xac\\\xad\xc0\xe8gl\x18\x04\xeb\x9b\xb2\xcd\x97<\x05\x936=\xff\x1e\xffh\xe0\xa8\xb4\xfd\xab\xeaHP\\ \xd6\xf8\xd0\x14\xed\x9a\x9b\xfa\xe2o`T&\x05\xe3\x8d\xdb}\xdc$\x80\x814\xa8\xb4Er\x97d9S9\xb1PaV\x93\x9ciHj\x80\x18\xed\x82\xb4L\n1\x82CG\xcbl\xc2\x1e\xbc<[g;\x1f;\xde\x88\x94\xeeM\xd9$\xb9\n\xb4\xcb\xac\xce\x1a\xd6Qo\xbd\x89\xd8O\x9b[h\\\xae\xc5\x9a\xc3\xb7\"9]5\x84\xae7\xcd\x96d\xa2\x10\x81p\x98A\x06\x1a,ih\x88\x8d\xdcb\x0b\x17\x0d&\x9bM\xff\xc0k\x8b\xe6\x8a\xf3\x89\x8d\xcc\xf0\xd8\x9aF\x90\x8d\x02_3%i\xaa\x96\x12\xc3G\x904Z\xaf\xf9\x8bb\"\xfb\x04\x85D\xb3B\xd7\xd0\x92TF\xcc\x91\xe6\xaeb\xa2\x16 \x97G\x9a\xa4\xb2\xb6\xf0\xc7\xd3\xda\x1ae\xa3+%[\x8eL\xc2\xd3T\xd5z\xe8v\n\xdb\x0cGb]g\xd7EYYY\xf6r\xa7X\xa1\xdb\xda\\\xa8\x15e\n\x0cj\x08\x0e\x9f\x10A\xcc\x9c\x8c\xac[\x8d\xdc\xbb\x80\xadH\x83\x12k\x87\x16\x1c}_VKZ\x1d\xfd\xc5\xec\xcaEV\xa4\xf4%I\xcbz]\xd6O\xeb\xe5-yv\xf4\xe2[\xf5\x9208{r\x18\x04mW\xf9\x9b\xf3A\xd7\x0b\xba\\\x02\x1f\xd7\xe7g\xaf\xd4I&\xcc:8_\x94\xe4\xd0\xc8us|D\xde\x08\xdba\x80V\xa4i#dR\x1drFhBP\x16\xf8\x98\xa5\x1e\xf9\xbe\xd4\x0c\xf6\xf5\xf4\x901<\xde\xe0\xe9\xac\xe1cA\xd0=\xa2$\x02\xe5\xeb\xab\xa6\x12\x18Q2*\xb8l\x7f7[\xeb\xd1\xe1fx\x82\x85\xc8\x87\xf3\x10\x1f\x80\x86\xc7_\x8e|\\\xfb\xbe\x92\xe4\xa1\xa3\x01\x9eq\xe1i\x94T|a\xf2\x88\xd2\xe4\xee80<\xe3\xf3\xd8g a\xc3\x13.R\xbe\xbbn\xec\xd3\xf1\xcd\xd0^\xcc\x8b\xfbt|\x12)\x18\xc6\x06\xcd\x1d\xc4\xf6\xe9\xf8\xe6\x1fc\x83\xe9\x08\xdd\xfb\x0b\xa9#\x8d\xef&\xb0\x8e4\xb4\xab\xf0:\xd2\xd4\xfd\x06\xd9\x11\x06\x1eI\xa8\x1d\xe1\xec!\x02\xee\x08\x1b;\x0f\xbb\xc3\xf3\xc8\xd2\xf1\x1d|\xcc\x18\xb7\x87g\\\xf4\x1e\x1eo\xb1\xf3\xa0\x1a\x13g\xaa9\xc6aT\xb0\x1f\xa5\xe4\x9c(W\xc9\xc38%s\x02$\x00\x1e_\x95\xf4X&&\x80\x04zt\x90I\x98\x0d0\x00\xcf$\xd8\x00<\xb3\x83\x07\x14g\xfd \xdc\x98z\x0f(\x91.\x06\x17\x82\x13X\xf4\xbc!w\xd3\xe6\x1a\xe9\x8d1y\x1e\xb1\x0cgHz7\xb9\x08\xc2\x0fP*FH\xd3\x95\x05lM\xd3C\xd6~p03\x04\xa2\x80\x13\x8a\xe8w(\x1e\x0e\xcf\x03\x8c\x813\xa2\x1e\xf1\xf9\xb8\xac\xde\xfe\x1b;,\x83`74\x02\xe4\x80\x91\n\xf7j\xe4\x04\x0f\xef\xd5`\x08\x04FdR\xb6\xeeHPD\x8fFm\x02$\xc2\xd0\x08\x84\xb1^\x1f:\xb7\xbdR/\xfdw\x83*\xe9\xf5\xd8\xf2i\xf7i\x87&\xf3SA\x1c\x069+\xed\x10\x1e\x0c\xccAv\x08\xe8 >\xcd\xc2\xadWX\xe0\x0e\x12\x923\x13\xaf\xe8\x18\x0f\xf6@\x88MC|\xe0\xdca\xed8\x81 \xc4\x01\x06!\xb1\xa3\x88\x00\x1bH\xd48\xce\x03\x0e!\x01\x80\x08\x99\x1b$B\x9c@\x11\x82\x82E\x08\x0e\x18!;\x1f\xdf\xf1\x00\x12\x84\x98\x00W\xa0 \x122 H\x82\x103\xa0%\xc4\x07/!^9J\xa2Fj\x02\xd4\xc4\xbd\xd5\x1cp\x132\x15r\x82\xd0\xcb\n\x14vB&@O\xb0V\x00\x8c\xe2\x84\x9f\x10\x14\x82B\\0\x142\xc3\xc4\xcd\x07I!Q\xb0\x14\x12\x86\xa6\x10\x8f\x93cd\xa6:\x84\x85\x1cT\xe71\xd9$\xb5\xf0\x81k\xd3r\x04\xbf\x1bD\xf8!\x1d<\xa1O\xbbk|\x84\x14D\xee\xa6\xab\xc0\xdb[\x94\x10\xe2\xb7\xf4bB\x9c\x10\xbaa\xe0B\xd7\x1aT\xa2\xc0u\"tr\xc7\xe2_\x1f(M\xb0\x98\x8b\xf0s\xc2\xb7\xe3!\xc9\x9aZ\xab\xf8_\x80\x82\xb8$%\x1b\x87\xcf\x99pV\xe3\xbb<\x08f\"\xd3\xea\\\xc4\xc3\xaa^3\xae\xb9'\xf1r\xbb\xe9a\xa8\xb4 \xd1\xe3\xe71\xb7Y\x04\xef\xaf\x08\xdcX\x11\xbe\xa3\"\xfaV\n|\xfc\xc7\xdf<\xd1\xbbeBP\xf3\xde5\xf1\x18n\x97x\x90\xfb$\x1e\xdd\x0d\x12\x8dug\x84\x82\x9d\xe9{\xc0h]\xb9\xe5\x97\xea-}3f\xb5\x9an\xe7\x0e3@]\xd6)b\x9f \xfd0\x06* \x97\xd1\x18\xb3%\x86*\x8b\xa1\xb9\x0c!\xc7P\xacX\x98r\x18\x0ff#\xc0\xe2\xa8\x9a(/|\xf7\x8fCrY\xa8-A\xad\x87\xddr\xac\x81\xbf\xd3\xe6\xa7\xed\xc9rY\x0d\x06\xab\xd6i\xb9\xa1\xbb\xc6\xa6\xb26\x90\x88\x85\xc7\x80\xf38\x19\xdc1\xb0\x8f\x00#=}\xad\xc1GY\xd3G\x84\x9c\xae79\x07!\xd4\xa4^\xde\x1eI\xc8YV4\xb4Z%)E\xb4D~\xeb5S\xd7+\x15\xda\xa4\xa0\x11k\xb5\xce\xc9+\xae\xc8\xf6\xbb\x1b\x80\xcd\xce\xddm.wX?\x0dG\xa8\xc2Dp\x17jcVx\xc74c\x02\x97sQ9V\xa2\xba;_\x90Y\xa1\x0di\xef;\x0e*q\x14\x84\xc1\xe0v\x0e\xa8\x9d'.\x16B\xd4\x8a\xf9\xc1~\nz\xcd\xd5\xd0&8\x0e\xf1@J{\x0c\x1eQ\x95\xb9\x03\xc8\x1b\xc2/$\xfc\xdbn\xa5\xca\xe6\xd4P\x83\xb3\x9bi\xcc\xde\xda\x99\x9b\xaaLai\xa2\xd7X\x92\x98\x01\xd8\xe3\x17\xfb\x08\xaa\x98\x17\xf7\xf8E\x12\xe5d {\xfc\xe2\x1e\xbf\x887\xbe\xc7/\xee\xf1\x8b\xff\xa4\xf8E\x19\xc5\xf3i$.\xc7-\xe9\xb4\x07\x15\x8cT\xd3\xf3u\xcd\x01\x84 3\x08\xb8KZ4dQ\xf1\xe9\x1f'\x80\x9e\x94BO\xe8=l\xe9\x1fg\x05\x13%\xbc\x97\\?1kMc\xa8E\x07\xd4't6\\\xf2\xd8\xb6Di\xaaeG\x9arCrzGs\xa1Xv!\xf2\xb4\xac\x96\xb5\xd0\x90\x8eH\x80 \xf7'\xb0\xb1\xe2U\xb6\x85[Xb3\xcbe\xb6B\\\xf0\xac\x19\xae\x01kZ\x984!\x80z\xdf\x12\xc8\n\xd2\x16L\xd7f\xef[\xd4$'yV\xb3\xf1+\x05=Z\xd7:`\x00\x1e\xd6\xeaU\x92\xa6\x88\x16;R\x91F\xf5\xbd\xd0\x9c\x9c\xa8\xeeIu\x9f\xe3[Y_\x93\xb6\xb9)\xab\xec\x0f\x90\x1c\x15MivG\xb5+\xa1Y\x0f,zh\xa9r\x18\xd1\xde\xbb\xdc\xc7q\xd5\xcbE\x1a`6\x05{\xd5-\xf2\xbe\xa0\xed\xdc?\x1eF\xed\x85v\xd1$\xc52\xa9\x96\xbap\x142\xba\xe6\xf8\x93uR\xdd\xd2J\xfd\xcd^hl@\xebv\xb3)+\xd6b\xdf\xd5\xc3\xd7\x1a\xdb\x9aMSe\x8b\xb6\xe1\xbe)\x88=-l+ \xbdI\x8ak\xba$\x0bp\xb1\x0b\xb9%\x05;[u);)\xd1\xd8\x920d\xf9\x1d\xa6\xdb\xab\xaa\xcc\xf3v\x83\x0f;.\xabB\xe3\xfe\x9b\x10_I\x9e\xab\xcd\xd03#\xf9`e\xcc(\x17\x9bBz\x01\xed\xbd$\x84C\xef\xf3\xafk)\"V\x19\xcd\x97H\x08\x0f\x062\xafKB\x8bd\x91\x83\x95\xc4c\xd4Bn\xfe\xc8C^\xc0\x8c\xa0\xc5\x01D\xc0\x8fkK\xc7\xa2\x9b.8\xdd\xee~\xf2\xaa,\x1b\xcd\xc3(\xf1\xb3\xba\x8bQJ9\xc6\x0c\x9b\xd5\x1e=\x1e`\xaf\xc0\x9fe\xb1\xd2c\x04\xfc:\x1a\x82\xaa\xd8\xca\xbf\xf1-\xf0\x99V\xb4\xbb\x0d\x80\xf7yU\xb6\x85\xc2m\xc9 \xd9\xb1g\x08Z\x99\xc9I\xb2\x1b\xc7Kh\x91\xab\xe4e?\nX\x0c{\xd2)_p#\xbbE\x0f\x967\x0cL\x7f\xbbn\xf0\xab\x86G\x9e\x0f{G\xcb\xde\xd1\x12~w\xefh1\xad\x94\x98\xb7\xf7\x8e\x96\xbd\xa3e\xefh\xb1\xfe\xbaw\xb4\xec\x1d-{G\xcb\xec\x8e\x16\xc1\x81\xb2\xb0D\xb0\x8fr\x85\x06\xf2\x1f\xf8\x0f|\xed\xb3N\xf1\xc4\x02\xbc\xd82^\x9b\xc6\xa3\xd8\xb8\xbb\xcf\xb3\x1d\xed\xb8\xb6\xae\xdf\x8aLG\xf6_B\x07;dmei\x92\xe76r\x98\xa7L*p\x85\xfa+|8\x80\xe5 \xca\xbe\xd4\x14!g\x80\x19\x9d\\\x16\xb3c\x80\x9d5i\xce\xc1\xd1j\x03q_R7\xb3\x169Y\x9e\x05\xd3\xf6\x93vi\xa3\x9eC\xfc\xbd\xe26\x05\xb3\x1b\x0fI\xbbY\xaa\xffn\xb25\xad\x9bd\xbd\xa9\x0fU\xc2\x12\x80\xd7 \xbf\xb3\xa29\xca VD\xc7c>x\xf3\x17\x81\xb5+\xc6\x14\xb6[\x03\xca\xb3\x9c4\xf6\xf9S\xd6\x1d\x8cD\x97\xeb\xcb^;f\xaf\x01\xe0\x96/:Z4\xd5\x96\x9b`\x82\x17'\x8f\x0b$)\"\xc8!^\xf7\xbc1K\xda\x886$\x064\xc5\xeeW\x17S\xf7(\xc6*O\xeaF2\xe4dt\x97\x03\xc6\x9d\xb5Y`\xc4\xc4\xa2vs\x91\x15\x0d\xbd\xa6\x98\xb2&G\x0b\xcf\x14\x08\x19\x98L\x85\x10G\x83\xb1\xb3\x14\xc2'+\xd2\x8a+6R\xb6;\x80\xfbr8\xad\x9f\x04\x96y\xfc\x10G\xf0.\xda@\x1c\xa1\x14\x96lV\x16\xc7\x0e\xfe\xd8C\xefl\xcd\xcd\xdd\xfa \x13no\x99\xfc\xacI\x9al\xe0\x90E\xb3\xae\xf9\xf2S\xeb\xa1$\xeb\xe4\x16\x19 \xbeDT\xc6^\xb1\x94+\x99n\xc1\xd3\xb5N\x96\xfaW^\x9f\x9d8\x9a\x94\xd7\x0e9\xa5Hr\x9dd\x05cL\xc9\xfa\x1e\x8d\xbe\xe7G\x16\x150\xfc\x93\x97\x9a\xe7\x81C\x9fo\x92;\xaaQ\xd4\xd2\x19\xa9*1\x01.T(re\"\xec\xdf\x7f`\x8a\xf7o\xa2\xe7\x06V\xfa\xbc\x17=!\x89\xf0M\x8a\xba\x0c\xd2#\x99`Cq\xc8'B\x8e\x0b\xdf\x83\xeb\x92\xb7/_\xec\xbb\x1e\xa5/\xb7\xef|\x94\x7f\x8dr?\n/\xe8n\xbd\x8f\xb3j:\xc7X\xf5B\xe8\xc6\x11!\xbf\xf6 \xae\xc2e\x08SaQ\xd3\x83N'y]\x12\x8e\xfe% S9\xde2S\xc0R\x81\xe6u\xa3\xfaz\xday9\xa5\x06'W\xb0\xc3\xbd\xe9\x15\xda\x07\x1ca\xc7\xa4\xcc*\xcb\x1bZ\xd1%\xb9\xbd\x93i\xf5\x0d\xad\x92\xa6\xac\xfa\xb6\x86p\xc2Y\xddt2,>\x90k\xb1'd$\xa70\x1d\xf9V\xe6\no1\x9fH'\x03Jn\xa0\x95\xab\x95^\xdaDO\xd9uux\xa4\xe2\xe4\xf1\xb9\xc6I\xff\xc6,\xceb\x98\x96|\x1c\xd4\x9a\x15#f\x91\x9b\xaf\xfeJRhaC9A\xa8SuZ\xb9\x15\xd7\xa9\x07\x96 v\xd0If\x0eX\x03\xbc\xd8\xcbagu\xe0\x19\xa3\xc4\x1c\xcd\xb4\\\xaf\x99\x0e\x90\xac\x11;\x19\xf2%f\xef\x12\x90\x05\xabD\xb0j\x02\xd9\x95M\xc2\x16\x9a+\x15\x8e\x90\x03 \xf5\xa4;'\xa0P\x8d\xea\x9e\xda\xe7\xec\x14\xba5\xe6,+6m\xf3\xa0\x01\nwe\xd5\xa0s\xbew\x88q\xbc\xbb\xc8\x88\x80TD.*\xf2\xac\xb8%\x8b$\xbd\xe5\xd9r7TG\xed\xb3\x11\xb6+;\xa8\xdb\xbf]\x17\xb2\x07\xf9\n\xd4\xedpos\xb3\x06\xd3\xc1\xdb\xb2\"o\xea&Y\xe4Y}C\x97R'\xc0\xdc9\xae\xdd\x1e\xc1o( \xe3\x16\x05\x19M\xb9\xabN\x17\xd2\x8ci\x07\xa13\x99\xb9\xe2\xe9\x87\xda\xc8\xd3:\xc3/\x99P\x992+\x1e\xdd\x93\xb8|8B\xd6IU\xdf \xee!B\xea&iZW\xc8,0V\xa7\xcaC\x9b\x89\x04 \xbe\xc5\xf8\x06\x94\x13,\x19R\xf3\xec\x1c\xb0\x7f\xb4\\e\x05\xaf\x13\x9b\x02\x8ea\xdf\xb4\xb8\xc3386\xfeh\x96H\xb89}\x7f\xf6\xf1\xf2\xea\xe2\xf2\xe4\xf2\xe3E0\xca\xe1\xfa\xceH\xef\x8a\xfb\xa8\x97\xf2\xd5\x7fT\x04f\x0c\x93!\x1f\x0c<\xc1\x01p\x8d\\\xe03,A\xcc|D\xa2\xd8\xb1H\x1c\x13k\x86\xcd\xa7\xe3\x83\xc0\xb0\xe3\xe3\x84d\x93\x99+\xb4 I\xb5\xc8\x9a*\xa9\xb6\xdd\xee\xe6N1u\x8c\xc02\x1c\xc6\x97\xcc.s\xff\x86\xf3\x94\xd5v\x82\xd7\xa6\xa2wY\xd9\xd6<\xb3\xdb\xd8N\x9dK\xde\xe2Ol\xdc\xcb*Io\xc1\xdf\ng\x9fR*\xa9\x94\xb3>\x85\xd0\xadgk\xc4,\xed\x84\xf1\x9d\xded\xf4\x0e\xea\xaa@56\x80\x97!\xa9\xe7H\xcb\xa2~\xdbC\x9e\xd3;<_~\x16g\x8b\x02\xf3\x89\x01RK\x0e\xfe}\xdc\xa9\xecR\xf7u\x10tX/\xd3$\xfb\x05\xffV\xf2)\xa7\xb6\xb320@\x9a\x83\x94\xe8\x9fX\xf2YqM\xea\x96# \x0fWI\x96\xb7\x15=d\xfa\xe0\x06\x92\xf3\xc7\x8dyH\xd4_||\x17-?\xed/\xceN.\xdc!\xfb\xfe\xab\x17\xffvz\x16\xf9\xea\xdb\x93\xd3w!\xe9?\x84\xefx\xb9\xef\xa0:\xb4A\xd2\x93\xf5\xa4-j\xda\xc4\xc4\xe3\xed\xc15[f\x7f3\xf2P\xbb\x95\xc7\x13\xd0a\x01\xadZL\xa1A\x9ba\x13c6\xc3\xfe\xa65\xa3X?\xee\x97\x93\xe4\x0d\xdef\xbc\xba\xd6\x12\x8a\x9c\xac\xb3\x9a\xd7\x96\x11r\xb0\xac\xc8\x92\xe6\xc9\x96.;>c\x19c\xcb\xc0d\x8c\xfd\xcd\xd9\xff\x0e\xc6\x85r\xcb\xf6\x14EJ\xb8\xf96<(\xa8\x1f`\x9f\xd2\"M6u\x9b\xab\xa6\xa5\x00_A66\x17\x04\xea,B;\xea\xb9\xad\x16i\x1f\xe8\x1f\xd4OH\x97\xf5\xcf\x8b\x15\x94+\xd9mQBI\xb6.\xa0\xca\\Q\xc4\x04{\n\xc9\x93\x12c*A\x99\x88\xa0|\x18L\x9e\xd9\xaa\xecx\xe7\xbe\x12\xb6\x11\x0e\xd1\xb3\xe8\xb9}Z\xbd\xda\x13\xe8\x0c\x9c\xc8\xb6\x0e\xca\x15\xd7,\xf84$M\x93\xa47@U\x05\x00\xd9:\xe7\xb7C\xf5V\\\x8f\x9aX+\xdc\x1e \xdd\xd8*\xa1\xa4=?\xac\xfcc\x94\x1b\x162w\xd9 \xed\xd8\x15\xbb\x9be\"&d\xda\xf52hz\xbb\xfd\x13\xf9;\x92\xe3-\xc3\x18\n\xef\\\xef\xa00\xecH'Y|\x82?\xfe\xcd\xe4\x16\x83\xe9\xff\xdd\x13\xb84fH\xbb\xe1\xe2\x00\xdd\xe3\xbb(fh\x9b\xae\x0bb\x02\xf7\xaf\x8c\xd4\xc9\xc3i\x12]\xa6\x87\x90\x88z\xb2M\xccz\x0d]\xb92'\xe7n\x05t\x00j6\x1e1\x1b\x8b\x96\x8dE\xcaF\xa3d\xa3\x10\xb2\xd1\xe8\xd8Hdl<*6\x1e\x11\x1b\x89\x86\x1d\x8a\x84\x0d\x9d\xfb\xee\xf5\xe0G\xc0\x02\xd6\x15!\xe7\xd5\xb6w\x86|\xdd5\xeau\x17\x88\xd7\x07C\xbb\xde\x0b\xd2\xf5\x9eP\xae\x0f\x8ap}\x9c\xe8\xd6G\x80l\xbdoT\xab\xcf\x92\x1cy\xed Y\xa3\x97\x9e\xd9W\x9ex ;\xbd\xabN2\xf3\x9a\x13\x99\xa0\xc7\x9b\x05\xe5\xe1\x80\xd9\x13\xcd\x0d\xcdl\x81\xa1y\xb78\xd7\xfdqO\x8d\xfa\xe2;\xd5\x8a&\x19\x9a\xdd\xa08\xb2\xbe\xb2eWE\x07\xd2\xfd`l\x16 \x16\xef.\x0b\xc4, \x9b\x98\x1c\xca3\xc3\xcd\x1f\x93n\xfdp\x0f\x95fE\x12;!\xd1\xacJ\xe40L5z=\x13\xb5\xb7V\xf6V*b\x99 \xfa\xf3\\~\xba\xb7Q\xff\x05m\xd4\xb0\x1c\x9cZ\xf2\xce\x1eM\xef\xc5\xa5\xf7h4\x8b\xdd3\xf5\x92\xd2\xbd\xb5\xbc\xb7\x96\xf7\xd62\xb2\xa0\xf6\xd6\xf2\xdeZ\xde[\xcb{k\xf9\x9f\xccZ\x9e\xf5b\xd0\xb1\x97\x82z.\x04\x9dd\xaa\x04\x91\xa6\"\xab\xa4w\xdb\xa7m1\x12\x07\x0e(\xac\x8d5Sn\xf3t\xdf\xe4\x19nx\xd2\x0d\x9e\xf8j\x99\xf1\xe6\xce\x1d\xd9\xef}\x13\xbbo\xc2\xe3\xabP\xb3\xe25:\xc1|\x9f\x7fq\x1b~\xdc\x92D\x84\xcf{\xb1J\xcf\xb5\xda\xfd\xf2r\x0d\x99~\xda\xa5z\x1a\x0e+\x1c\xfd\xd0\xfb\xe3\x9f\x1a\xe6\xaf\xefd5;.\x14t3\x0f|<\xe9\x08\xf1\xdc\x12Hp\x07\xb8OS\xaa\x94\x8dN2\xa1%\x90\xf6y\x04\xfd\xdf\xef/\x8f\xc0\xc7\xca)[:\xb8\xf0\x86d\x9c\xc3n\xf2\x0f\xc5\xed\x94Lv\xa33,\xa1\xc9\x074\xe3\xf5(\x8c\\\xb3'L\x7f\x04\xea\xdcS\xc3W-BH]\x18\x18-2NT\xbd\x08@\xdc\xf54\x95:i\xb2Z\xe4`\x97$\xd9l\xf2-\x8eG\x85\x01\xbc\xb0\x12X\x05n*\x11/\xf4\xbesn\xb1Q\xa2\xef\x04\xf4{\xb5\xbb\x8d\n\x0cZ \n\x89\xca\xd2\xb6\xa3E\x8doH\x0e\x9eU\xfb\xb4\xbf8\x00Iw\xc5Y\x8d\xe6\xf1R\xa8\x0c\xe2\x1e4#[\xd4\x90\xc7\x07r\x12\x04\xb0\x1dY\xc5\xda\xd5&\xe6\xd2\xf5\x8c!\xee#\x8a\xb9~\xc7\xf7\xb63S#p%O\xf8\xc5\xeer\x9e\xee\x89\xbe\xa6G\xff\xc4\xef\x14\x19\x7fu\x8fE\xca@\xefz.\xf1\xf15\x7f\xff\xd7\xf9\xf8\xb8\xb9\x87\x8b}\xc2\xcd?\xd8\x15?\xdd\xd3X\x97\xfd\xc8G\\\xa9\x95-r(\xac:_\xc5\xc6\xbd\xb3\xb7\xe7\xa6\n\xbd\xb4w\xf6\xf6\x9f\xbd\xb3w\xef\xec\xdd;{\xf7\xce\xde\xbd\xb3w\x92\xb3\xf7\xb2\xb7\xa4\xb4\xd3\xdeT\xe4\xffb}j\xb0\x8dYK\xba\xdf\xafo\x08\x80\xdbN\xb8t\xa0&\x81\xa9\x0d\x08\xa0\xd1\xb1vA\x193\xe6\x8e\x85\xe7O\xbd\xeb>+t?\x1cA\xf2F\"\xc0:\x1a5\xcb\xcdW\x94\xcd\x15\xff\xc3(\x1f\x9f\xa1\xff\xf4z\xa1(\xf7\xb9N\x96\xcb\xaa\xd6\x1c\x8f\x8b\xb6\xe1:\xaf\xc6\x95\x91\xc4a\\\xa4G|\x17\xa5\x8a+R\xd5GqW\xa2\xda\x0e\x03\xe8\xaa\xe5\x0e\x1buoc\xd0\xbd\x85\xd8\xdb>B\xa3]W\x88\xbb\nm\x07uK\xcd\xe5\x8a\xea\xbb\x9f|\xfd\x1c\xeeMr\xf8\x8d\xcc\xbd>\xd6?d{\x83\x04\xc1\x01>!\xdd\x0f\xe4X\x8d\xefis\xc2\x84.\xafP\x15\xbd\x107U\x96\xea\x0b\x08\xfa\xcc\xff*wLZ\xae79m\xa4\xf1%\x813\xac\xad\xafkrW\xe6\xadf8\xa1\xae`\xdc\x05\xbc\xa4Ei\xd8;\x0e\xf3(Y\xb3\xf3<\xe2\xd5\x9e\x08\xe8]\x82\xfd\xaa\xcc\xf4\xe9j\xca[ZHl\x12gD^\xf0\xcd\xe6\x8d)3\xbc\xc9^\xa17\xa8\xcav\xc9\xfa\xce\x7f\x14eC\xe10<-\x1aq\x12f\xdd\x0d\x95|\xf4\x98\xae\xb7\x16\xc2D\xa3\xa6j\xd2\xd6]Xh\xb1%\xd7\xe5u\xc97\xa4\x94\xb4\xaa0#S.\xaenhv}\xd3DnD\xe3:l\x19\xda@\x08\xca\xa9\xe6\x7f#\xe2o\xe5J/\x19\xa9o\x89\xdeR\xd3FU\xde\xe5Q\xd0Fh\x1f\x81+o?\\\x9c\xe4\xf9\xbb2eFB-\xae\xd4\x8e^\xba\xa2\x9c\xcfU\xa5\x7f\xd7}k\x16\x0bv\x9f\x95\x06!P\x1ce\xccF\x03V\xb8\x13\xce\xf4\xef{\x02\x02\xd2n\x13\x08\xf5\xee\xe2;Jh\xb1\xdc\x94Y\xc1\x87\x14\xbd_L\xf4\xe8\xaa\xad\xb2\xe1-\x8a\x8f\xbbV\xda*\xeb\xbdI\x8b\xb4\xda\xf2)\xbf\xb2\xd4\x88\x98\x06D\x86zG\x86\x9fq\xa2\x83\xda'\xbe\xbd\xf7\xba\xab\xea,\xe6]\xcc\x04\xaf\xe1O;\xd3\xf2P\xe8\xe5\x9a\xb3.\x01\x0e\x0ez\x04\xf5+\x00\x81\x93'\xf6]\x0ejL\xfa\x9b\xb3\xad2\xbe\x923f\x11i\x1f\xe9\x1cu\x08)C]\xed\xf5\xb2\xa7\x83\xa6\xe5fKT\x9d\x13\xb1k\xcc\"\xb5\xb4Vu`F)\x82N5\x9aL\x90\x8bSUj\x83\x1cS\xb0\x0d\xb5\x9a8Tk\xb2C\xf5\x9a\xb87\xbd\x0f\xe7\x84\xec\x91@$\xd0\x8b\xf0 \x07\x88\xc6\xab\xde\x08\xb1i\xfa7\xce\x1d\xd6\x8eS-'\x0e\xd5\x9c\xc4\x8e\"\xa2f\x92\xa8q\x9cGU'\x01u\x9d\xcc\xad\xb2\x13\xa7\xdaNP\xd5\x9d\xe0\xea;\xd9\xf9\xf8\x8eW\xe7\x11bB\xd5EUz2I\xadG\x88\x19\x8a>\xf1)\xfb\xc4+GI\xd4HMP\xfc\xdd[\xcd\xa1\xfc\x93\xa9\x06\x00B/+P#\x80L0\x04\xb0V\xc04p\x1a\x03\x045\x08\x88\xcb( 3L\xdc|\x06\x02\x892\x12H\xd8P \xc4\x1d~\x1bo0\x18\x84:\xf3\xc1\xf8\x01\xb3!\x869\xc9T\x18\x9d\xad\xcc\x9e\xd9\xd9\xb9\xf5%\x8e_F{FiF\xf2x\x1c\xe8\xd5\x18\xe8'S\x87\xb0\x90\x83\xea<&\x9b\xa4\x16\xc1gmZ\x8e\xe0w\x83\x08?\xa4\x83'\xf4i\x87\x1e\x17Rpe\xd0\xb1\xaf\x1b\xb1TKB\x9c\x0e\x8da\xae\x1e\xd7\x1aT\xa2\xc0u\"tr\xc7\xe2_\x1f(M\xb0\x98\x8b\x90\x17\xaa\xa4\xcd!\xbf\xb2\xba\xc3\xd7\x15\xa0 .I\xc9\xc6\xe1s&\"\xc7Q&n|\x94q\x82\x91+\xbe:c\xbaj\x1dm\xde\xae\x93/\xcc\x10\xbc\xcaiq\xddXQ4\xf3>%\xfb\x16\xa5^\xff\xa1\xed^x\x1bQ\x9d%\xdbO\xa5-\xb9.\x97mNE\x1f\xeb\xf8N\xfeS\x06\x05\\\x0b\n\xeby\x94\xd7\xa4\xf7\xa1 \x17\x15\xc2\xb6\xda\x1c\xe89\xd9h+\xd1\xea\xd9\xc6\xbbT\x84j\x01\x0bc\x94|v\xadk\xe2\\\xdb\xc4qK\xd8\xde&\x8fX\xd1\x069\xcb&\x8f\\\xd5C\x04\xe5\xf4u=T~\x18N:\xe4\\\xfb\xf3I\x18s0\x86\x88\x94\xc1\xc3=P\x80\x88\xf3\xc1\x1c\xc5\xa8]\x828T\x9dz\xc8xg\xaa\xd3\x95\x1aj+\xe0F\xf59QC\xa4\xe3\x1c\xa8\xee\xa57\xb3\xf3t\xbc\xeb\xf4\xcf\xec8\x8d_~\x7f~qnm\xf0A\xf2{\xa0\x10\xa9\x7f\xda\xf2BhCe7\x94'\x0b\xe0\xd4\xfe|\xe2\xdb>J\x8d\x01\xf2\xc9s\xf1\xa91!\x92\xc0\xe8\x89\x19'\xe5\xf7\x01\xb6\xa8\x93a\x1f`\xfb\xa7\n\xb0\xd9b\x89\xfc3\x1f\x15>q\x15qv\x88\x8fg\x13X\x1f\xcfO\x87\x9e#\xbd=\xfdg=B\x86\xf9T\xa7FF\x07l\x87xew\xa4Cu|\xf4\xb3OgZ\xe0s\x0f<\x9c\x18\xc5\xdc\x03\x0f\xe3#\x94{\xe0a\xb3\x07\x1e\x8e\x8c+\x86c\x8a\x7f.\xe0!v\xf4\x0f\xf1x\xc1\x87\x82\xdc8uco\x1d\xed\xad\xa3\xbdu\x14\xa7\x0e\xc6\xbaU\xff\x94\x86\x11<{\x98\xe2\x1e\xa6\x181\x8a\xa3at\xf3(\xf6d\x0fS\xdc\xc3\x14\x9dr\x94D\x8d\xd4\x043\xc1\xbd\xd5\xf60E\xf5\xeca\x8a\xf0\x8c7/\x0cB{\x98b\xf7\xf8\xbdj{\x98\xa2\xc9\xc3\x9f\x05\xa6\x88\x1a\xa7^\x1f\xfc\x0c&1_\xb8\x17\xcc\xf0x\xa7#<\"\xac\xe10\x02g\xacm\x8aZ\xa5>\xfa\x1eK\xd4e\x83\xfa\xc8\x85\xedN|\ng\xb45\xc7Y\x99\xb1\xf6\xa5k1\xf0~\xdfd\x9b\xa1\x81\x18\xc1\xa2wt\xf7\xc1\x98}0&h\xde\xed\x831\x13m\xb5}0&\xde\x0e\xdb\x07c\x9a}0f\xa4\xf5\x14\xb6\x9c\xfe\x04\xc1\x18\xf3\xbc\x8f\x89\xbe\xc8O\"\xd5\xcb\xae\x85\x81\xb1\x16\x00\xe3\xb4m\xef.\xda&>\xdcb\xc8\xb1^\xbf\xbb;d\xe1>\xd4lY\x93\x03\xd6\x94\xadc\xb1\x9e\x8bB\x99\xa0\xe3\xce$qfL\xb8fM\\\xaa\xe6:-\xc0Z\xda\x8d\xe5\xd7\x987I\x19\xb3\xc8\xd7\x832\xed\x84\xe1&\x88\xccq\x89\x14\x10\xd4\xed\xc0\xf8+\xb8z\x0e\n\xb83\n\x8d\x0c\xcaF\x0e\x9a\xee>)~/\x97\xbc\xa4\x8b\xf7Y\xa3\xa5z\x9f\x96\xebuY\xf4\xee\xb7\x06\x1f\xc1\x08\x06\xe1C\xd8\xda\xb2a\xe3\xc6]\xb5\xae\xd9\x94\x82\xbf\xec\x00>{\"\xac\xe9^\x87y\x1f\x8e\x15\xb3p\xe7\\R3\xb9\\\xde\x8a\xf149\x11\x8b\xa9\xbb\x0dNw\xce\xc9\xcd\xdf\x16\xd9\xa7\x96\xe6[\x92-\xd9nX\xb1\xdd h\x8bW\x045\x19\x1a5\xae\xf7s,d\xeer\xf9W\xa9Chw\x96\x84\xe3\xf6\xc2k\x14\xe5\x8b\xea500l\x7f/u\x06\x1f[\xec\xfdO\x19Ow\xaf\xa9x'\xe7\xe0U\xc5k\x83\xf4n%\x1b\xbe\xc4\n\xda\\\xf1\xd3\xf2\nn\x0e7\xb7l\x14<$:\x1b\xd7\xb8wO\xd0\x00\xd97\xfe\xf6=A\xc6\x05,\xf0A\x0b\x08v\x1f\x1f\xee4A\xa9pY\xa4\x8ca%#\xc4\xe1\x05\x7f\xdf@!i\xea\xaa\xad%e\x92Cd[\xf1\xf5\x96\x15\xd7\xa4nSF\xe8p\x95dy[\xd1C&A7\x80\x06\x8d\x1fC\xb7|\xbc\xf8\xf8.B\x0c\xd9\xef\x9e\x9d\\\\\x04_\xba\xf8\xb7\xd3\xb3\xe0KoON\xdf\xb9\x85e\x1c\x7f1b\xd2A\xc9\xd3H\xb7\xed-\x82IA\xda\x82\xd9\xca(\x98\x08o\x94\x0d\x99\xd9\x1a\xfb[O\xbaPm\xc5p\xbc\"L\xff\xaa\xcd\xc3\x0d\xb0\xe16\x1b`\x7f\xd3\x1aP\xec2U\xb5\xce\x96R\xbd\xe5M\xddf\x9b\x0d]\x92%\xa0\xe1\xd7Y\xcd\x93\x10\x84l)+\xb2\xa4y\xb2\xa5\xcb\x8e\xc30KlrM\x96\xd8\xdf\x9c}\x16\xdb\xc7\xc5'\xdb\x05tyd\x0bPP\xa1>\x80\x00\xa0E\x9al\xea6W\xf4\xa5\xcc[q\x11\x0d;S\xc9g\x03\x03\x82\xefq\xa0pP?\xd1\xfc\x1a\x1c\x96Z\xae$\xf7\"YF\xd2/\x01\x9d\x08j\x8dm\xe0\xc9\x01\x10\xb8oS\x12K\x13\x84w{\xa4C\xc0\xbd+L\xea\xb2S\x9d\xbb@h\xd7\xbd\x17\xfb>\x03}\x0e0\xef\x01L\x929\x96'\xca\xb7P\xae\xf8\xc9\xc8\x074i\x9a$\xbd\x81\x03/Q\xae\x8a\xb2\x82\x1c\xdd\xfe\x12\xe8\x89L\xae\xe9\xc6\xa0b`}\x9c.O\x8bU\x19\xed:B,\x99\x91\xa3\xaf(\xa9\xe5\x93|\xe6\xaf\xd7\xc6\x80[)\x86\xe2\xbb+p\xb6\xcc\xc7\xc8\x95\xf4\xde\x88 \x0c\xfckSV\xfa6To\xdb\xfct\xc9\x993\xf2\xd4\x11\x95|i\x7f\x89\xe7\x0d\xf4\xbf\xab\x08\xcf\xdf\x10\xe64\xaa\x92;a\xad\xf0?E\xb2\xc7&8\xc0\x14\xd6>\xfbLy\x85iz\xf3\xeds\xf1\x15\xb9\xa3U\xedkW\x96\xb4\xbf\xca\xd4\xd2\xb7\x1a\xe9\x0b\x07\xfd\x03\x92\xf5\xa3\xb8\xc9\xa2l\x9bnf\x98\xc4P*0\x92\xc2bq3\xc8\xf36\xa8\x1a\x7fl*\x86$\xea\xdc\x89\xd01c#\x12}`\xcc\xbdH\xe6\xe3*j[\xca\x97Q\xe6\xb0\x8dIfdp\xc8\x1eu3\xda\xdf\x06\xc4\xc7\x1f\xc2F\xf4np30`\x80\x10\x06\xf4\xee\xf3\xff\xbe\xa1_$\x0bF\xd3\xda\x80!QW\xfd\\\xeap\x13wI\xc5\xacH\xbe\xf3HE\xaf\x93\x8ag\x7f)\xa7W\x16\x8e\x8f\x9c2\xb5-\xfa\xa4\x8b\x10\x95s:\n'\x1d\xacs9\x04\xe7@\x18\x05}}f\xa3\x88W\xcf\xd7\xf2PO\x9ei\xb4b\xaa\xec4\xbf\x1d(\xb4\x1a9\xd4c\x87\xf6\xc9\xce\xb6\x89w\x86E{\xe6\xa2|r\x83\xbdq\xee\xd32\xd8\x89\xf8F\x88\xd7\xf7\xe6\xf0\xb5=&/\xdb\xa3\xf2\xaf\x8d\xf6\xac\x85\xc5\xea\x85\xb6\xcb\xac\x95\xde\xc7\xd7\xc7\xcd}\xd4\xea\x0e\xae\xecA\xab\x1a_\xd1A\x86\xe3\x88\x0f^\xc9\x8fe\x15?\xc6\x15|\"\x93;\xd9\x80\x01,C\xfad\x8a\xee\xd8S\xf6th\x05\x83\x8f$Z3\x88?%\xc7\xbbc\x0d\xd7G\xc4\x196\xc1\xd9\xaa9W5\x821n\xd6\xe8C-\xec\xb4\x0c\xb8S\x03\x8eT\xaf\x0bu\x80\xf3\xd4\x7f\xaaMq\x98\x92\x1e\xce\xd1\xe3*\xdd\xa1\x93\xf4Q\xb9G\xef\xd31:\xabK\xd4+K.64\x1d\xe7Sc\xd6\xc0H\xfd\x1fs\x8f\x08r!\xefZ\xdf\x9d\x89\xfb\xda\x04\xa9\x99\x1dn}\xaaQ^7\xf1\x89\x83=\xe9\xf2\x84?\xcc\xe2\x87\xebI\x80`s\x1d\xe8\xd5\xfa\xa5\xeb\x8fF0\xbagsz\xef|]\x1a\xe4\xcfs\x92\xc1:1\xd2\xc7\xa7\xbe\x8drm\xe0l\xf4gc\x80\xd7\x0f\xfd\xd0\xed\xfdSH'\xf6:\xc9\x96\xbd\xf11\xfc\x81\x0eV\x07\xb9\x02M\xf6\"]7q\xbe-+bh\xb6\xe6\x94+\xbdaP\x92\xc5\xa0\x86\xb8\x12\xad\xd1\xde\x81K1\xd8\xab\x18a\x14 \xe1\xed\x93OD\x91\xfb\xe8\xdf\x10\xa1e\xd02Dr|\xbf\xc7:6\x03\xbd\x89\x15\x0b\xa3\xe7k\xc0\xf4\x0c\xe1;\xec(\x1d>\x89\x88\x1bUqa\xea%\xf1>Ul\x07G\xf8Y/\xf4\xcf\xa2\xb5\xa0z\x86\xf0\xae\xcc\x1f\x00\xe09\x06U\xef\xb5b\xc6\xb9#\xceW\x99X\xc0Q\xb2+1\xb6\xc2\x9e\x13\x15\xa5 \xee+\x8a\xaf!\x8df\xbd`\xf1#\xc4\xbf\xca\xec\x07\xd6G5p6\xfc\x10\xf1\xdb\xc6\x92N\xba\x8f9\x1c:K\x93<\xdf\x82\xda\xdd\x94\n\x83\xcc\x11\xc4W&\xe4y\x0f\xa7\x0d\xba\xd8-Z\x08\xa7x\xc3\xe0\xcc\xeb\xad\xd7.m\x060\xebM\x07_O\x8a%\xa9\xcb\xb6Ji\xa7\xe2\xf4\xc8\x1d\xd0\x8c'\xe4\x01tA\xa5#\x94\xe9'u\xd2d5\xdb\xfe\x80\xa1\xd8l\xf2\xad\x89tC\xe4\x15\xef\x93\x80n$\xe2\x05\xf1\x05\xb2\xe0}2\xc2\xe0\x94\xbd\xda\xed)\xee\x0dB]2\xd2y\xa5o\x0b\xbe\x11\xfaEd\xbb\x9d\xa2\x8a\x85q\xf8\xcd\x15g\xc9\xcb\xcb\xa5(p Jc\x1a.'CZ\x1d\xc8\xe1\x14^\xbd\x1e\x13\xc2\xfb\xf7\xee\xf4\xe2\xf2\x89\x7fLl\x9f\xd0\xeb7oO\xdf\x9f^\x9e~x\x8f\x97\nq\xbd\x87\x068\xcc\x97\x8c\xe0\x86\xfb\x15\xce\xbbzO9\x8ab\x98\xf3\xb9\x8a<\xdf{\x89\xa3\xf8:\x8e\xac\xe3n\xe2c\xe166\xd2\xd5\xbc\xe3d\xb7\x87x\x89\x93.\xa2\xd6U\x01d\xff\xe2e\x10\x0f\x94,\xe4\x1b,\xabIQ6\xa4,\x9e\xf6\x8a\xd59\xf8\x90\x9eb\xfc\xef\x86s\xe7\xae\x97@fy\x8a\x0d\x89\x1c\xd30\x9f`W\xeb\xfcG\x9c\x85d\x8b1\x90\x96yNS\xa9\x06\x8b\xac@u@\xdc$w}\x01\xcf\xe8\xd5l\xcbk\x19m\"\xfb/[\xe4\xf4JT\xa8\x18u\xfa[\xa7\x89\x8dh\x0d\xd42B^B\xab\xf7\x11o]#\xe4\x0d\xa4\x82\x1f\xf1\xd78B^1\xab\xf8\x11\x7f\xbd#\x8c\x82U\xc9\x8f\x04j\x1f!\xef\xa0\xd5\xfc\x88\xaf\x0e\x12<1\xd5\x90\xe4\x9bn\xdbaJe\xa4\x1e!\x07(w\xd6ZI\x08\xc9\x99*&!\x94'\xd4MB\xa8\xed\xbaz\x12\xd2\xe4\x9c5\x94\x10\xf2\xf3VR\xc2\xf8\xbf\x87zJH\xb3\x0fZU \xe1\xe7\xfej+!\x8d\xef\xa8\xc2\x12\xf7\x1c\xe9\xd1\x94B\xf8\x8d\xb4\x00\\S\x92\xbc,oI\xbb1;\x9fi\xf58\xb2\x95\xbd\xbe\x85\x17\x1e&\x99@)D\xef4unw\xab!yc\x80\xb7\x1d\x8f[\x90\xd8N}\xfa\x05J\xf5X\x11\x17\x18\xbf\xf8\x1aR\x06!\xe2\xac\xf9#^\x84\xe3q nM\x0e\x174\xa3U\xfdZ\xf8\x7f\xbebW>y\x18Q\xfdJ|\x0c\xb5F0\x91\x1aU\xba\x08m{`\xd5\"-\x0cfx\x8cQ\x028\x11b\xaes\xcci?\xe8\xa2\"\xb7|\x96\x8f\xc7\xa3\x17\xb8\xb5h\xa2\x8fZ>\x98\xe35\xc0\x96\xdb\xd5H&:\xb4\x11\x82\xad\xed\x864]\xdd\xf2\xc1\x8c^\xf5\x8di\xfc\xf6?B\xabD\x91@\xa5(\xe2\x1c>x\xbc\x83(^\x89s\x91\xab\xd7]\xaer\xfd\x85\xb8&'\xba\xce\xe5\xe3t\xa1\xcb'\x82#\xef2\x87\xc7\xb7\xe4\xc4\x1bC\xbd\xeeNJ\xa87^>\x98W^>\x11]\x8d\xeb\xc70o\xbd\x93\x94\x0b(\xaf?~\x86\xc6z\xf1\x1dKE\xba\xc0F{\xf3\xe5c{\xf5\xe5\xe3\xeb\xcfT/\xbf|\x86y\xfb\xe5\xe3\xd9\xbb\xa3\xa5\xed\xa4h\x00BO\xc6\x07\x90\xa8\x80|\xd0\xe8\x80||\xbcN\x89\x16 \xe4\xca\n\x8f\x1a\xc8\xc7;\xa6x\xd2~|4\xc1\xfd\xbe\xb3\xa0ITt!\xf4j?\xca \x9fA\xd1\x86\xee#\x1f\xd2\x80\x84\x06cXc\x06h=\x18\x85p\xb3\xf00\xd1\x087?\xf7\x14\x95\x081\xf0\xa0\xd1 \xf9`Q\n\xf9x\xa3\x15\x8a\xc0x\x05\xcey\xea\xba\xb6zdT\x03}\xd9\x11\xdd@\xdfE\xa3\x1c\xe8\x9bh\xb4\x03}\x13\x8fz\xa0\xaf\xda\xd1\x0f\xf45<\n\x82\xbe\x8aEC\xd0\x17\x1dQ\x11\xf4]Gt\x04}\x17\x8b\x92\xc8'>Z\xd2}\x11\x92\x833FO\xe4\xe3)mBv\x13MAI\xcf\x1aUA[\x98\x1c]A\xa9\xdeO\x94\x05mz\xfeh\x0b\xda\xcc.\xa2.hC\xf7\x17}A\x9b\x7f\x04Q\x18\x94\xaf\xfb\x8e\xc6\xa0L\xec4*#\x1f\xbf\x018!h\x83\xd2\xebW\xbd\x85gT@\xc7\xf8\xd8b\x7f|\x80\xc7 \xa4\xc2=\x11\x81\x9e\xee\xe9\xd750a\x9b\x8c\x01\xa9g\xe2\xf6\x8f\xb8\x08V\x0f\xb6\x18)\x16}W\xb8\xd5\xa65 \xc8\xe7\x1d\x80\x17OD\xc8\x96\xc7\x9dG\xc5 \xd782\x7f\x8e\xfa\xb33\xdce\xda\xe7s\xa0\xad\xec\xf5$\x85O\xfa~\xdbdH\xc6\x13B\x0d\xc9M\xb0\x1bA\xb3\x13\xc8\xbd\xf6sD\xae\x82M$\xd0\xcb\x10 \x9e\xdco\x8f'd/\x10;\x83a\xd0H\xa0)X\xf2\xb9\xc7!\x18\x9b\xa2\x85\x93\xf3u\xdaN\xdb \xa1\xae\x0e\xeb\xcd\xc8\x04\x0e\x93\x8c\xdd\x0b+a\xc2\x16\xba$\x8a[\x94\x10\x89\xcb\x00C\xc8a\x95\xa1\x02] \x04:\xfca\x0e\x93}\xdc\x9e\x0e\xba\xbf\x83~\xfe\xf0@\x921\x19d\x0e:5\x1e\xd2\xb6_\xb4f\xcf%\xb3\xc9\x03\x8e\xc2H)\x8e\x91\x8a\x1a\x83\x18\x89N\x1er<\x9c2>\x8a\x00Vrk\xf88\xe1\xa2\x8f\xc4\x0c\xcb\x98^O\x10\x846\xb1\x98\xfeM\x98\xf61\xfd\x1b\x9c\xf1\x86\x93\xf1d\xbe\x11/g\x88Q\xf1[\x95l6\xb4\xeaT\xe9\x84\xd4Yq\x9d\xbb\xf2\xe2\x0b]\x9f\xa8\xcb5%\xf4KS%Z\xfc^\x94!i\xba\xec\xe7\xc7u\x1dW\xed\xc548\xe7\xdd?\xdf&\xd18\xfc\x19\x99 \x83fq`F\x1d\xe7\xc3\xa2\x91\xe9x42/&\x8d\x0c\xbb\xb0\xc4?\x8f\xe30jd>\x9c\x1a\x89\xc2\xaa\x91Y\xf1j\x047\xf6\x9c\xb85\xa2\xc6w\xf8\xbdu\x931l\x06\xbdF\xbbGJg\xfe\xcf\x7f\xe9\x9e\x1f\xdb\x16q\x0b\x9f\xf8|~t\x9b83`L-\xc9\x1b@\xf9v3\xb1{\x99\xedT\xcdf\xc0\x9e\x0d\x109.\x1f\xdf\xacX3\x03g\x86a\xcc\\\xe1I44\xe91\xb7|\xc6\x96\x0b\xdc\x15\xd0\xa7\x06\xe0\xc8\x1a\x1f\x86,\xae\x99\x19\xb0c^\xdcX\x80\x8b\x80\xc50o\x1a6\xf1\x80\xbe\xe2F\xcb\xa1\xdc6\x83\x81^\xee\xb4l\xe2\x86\xad\xb9\x99\x98\x0d\xdc5\x13\xb0\x0b\x07u\xb9\xf8\x9f\x03\xcc5\x1c\xc8\xe5\xd8<\x83E\xd7\x9c\xc0\xad\x00h\xcb \xd8r\xf16\x05\xa8E\xac\xf8\xad\x13\xa4\xe5\x1c3\x0c\xb11\x04\x98\x15\x0d\xca\x8a\x04d\xc5\x83\xb1\x06\x03\xb1\xfc\xea\xd2l\x00\xac\xe1\xe0\xab\xc7\x04\xbczP\xd0\xd5\xa3\x05\\5\x0e\xb0U\x10h5B\x8bAO8\xd7\xc5G\x91\xc8\x9bX@U\x1c\x98*\x0eH\x15 \xa2\x8a\x00PE\x82\xa7\xa2\x80S\xb1\xa0\xa9X\xc0T\x14Xj\x18P*\xe4\xac\x9b\x15 \xe5\xbd\xf7 ]4S\x81Q\xbb\x05E\xcd\x0f\x88z 0\xd4=\x00\xa1\xee\x05\x04\xf5\x80\x00\xa8\xc7\x08~zp\xe0\xd3\xfd\x82\x9efNG\xd7H\x0eG0a*\xf8x\xe4\x92\x95\x9aN\xa2\xd2\xd3\xe1\x99\x19\xb1\xe4E+\xb9\x8f\x93\xa9(%\x82\xd5\x93u!\x94\x068\xd0|\xa8\xa4\xe1\xee\xb3!H-gt{\x9cS:\x02}4\xb1?\xc3\xc1E\x1e\xe8B\x10\xb73+\xeb!\xd0\x9c;\x1ai\xffbP\x1a\xdbc'\\h\xc7]\x9d\x02\x0f\x8a\xeb\xdcl\xd5\\g\x80\x02\xb99\xb6\"\xc7Cq\x97(\x01\x12\x07\xfd!\xd62\x1a\x06\xfbq\xfa\xa0\xdd\x1eh\x93]\xdb\xc2\xf3:='b\xd4\xcc\xd6\x9d\xc2\xcf\x11\xf9#\xb1\xb0\x1ekV\x1e\x02\x86\xe9`\xc2++#\xc8\x04\xfb\x1a\x92\xa2\xe4\xbe\xfb=A\xae\x92a\x05\xa5\xed\xe6w\x82N\xb4\x9b\x18!\x94lB\xa1\xbe\x8c\x98\xca\xa1}\x19\x05\xc1\x89\x98\xf0\x81\x01\xdc\xe1\xb0\x1b\x0e\xb6\x11\x04}\x90\x9b\xf80n}\x92\xe7C\x0b6\xedk\xd9\x0c\x8d\xf9\xfbj\xd9\x10\xb2I\xb8S\xa7\x17\x17\xef\xf1\xd2\xbd\xa0\x8c\xa8\x92\xff\x94\xe4\xfao*\xf6T\xcb\xe8\xbfda\x94\xb9pK\xb7\x91\xaaM\x9c\xb6\xf6\xbf\xcc\x8dyK\xc1\xa9\"\xdc\xca\x15m\xda\xaa\x00\xa5\xe0,\xb9\xa6\x12\xdfpT\xd0/\xcd\x15{\xb9)\xc9\x82^[\xc6\xf0\xa7\x96V[y\xbd6{\x99\x0d\n%\xeb\xb2n\x08]\xad\xb24\xa3E\x93o\x8f\xc8\x87\"\xdf\x92\xb2\xe0\xf6m\xb9Z\x81G\x8d\xb1a\x10\xaco\xca6_\xf2\x18\x1cmti\x05\x1f\x0d\x1c\x956+\x9a\xef_\xb8\xc7\xc5\x12X\x825>4E\xbb\xe6~4\xf17\xf0\xd8$\x05\xe3\x8d;U84\x00\x06\xd2\xa0\xd2\x16\xc9]\x92\xe5\xc9\"\xa7\x0e\xd8P\xce\xef\xc4\x92\x03\xc4h\x17\xa4\xe5\x97\x16\xdd\xd2\xc1\xa3e6a\x0f^\x9e\xad\xb3\x9d\x8f\x1doD\xca\xf6\xa6l\x92\x9c\x0d\xe1\x02\\v\xf2Nv\xbe\x8ez\xeb\x0d\xf6\n\xfb\xd5\xa0\xb7\xe1\xee\x00s\xf8V$\xa7\xab\x86\xd0\xf5\xa6\xd9\x92L\x006\x847\x1a\x82!\xb0\xa4\xa1!6r\x8b-\xdcU\x9el6}\xcd\xbc-\x9a+\xce'62\xc3\xd1I\x1aA6\n|\xcd\x94\xa4\xa9ZJ\x0c\x07\\\xd2h\xbd\xe6/\x8a\x89\xec\x13\x14\x12\xcd\x02\x13BKR]1G\x9a\xc7a\x88Z\x80\\\x1ei\x92\xca\xda\xc2\x1fOml\x9b\xd1\x95\xb2\xc8\xc1\x1fES\x85\x89\xe9v\n\xdb\x0cG}8\x9cAN\xee\x14\xb3\x19\x18\xa5\xbe\x81\xc7T\x1a\xd4T\x1d>!\x82\x989\x19Y\xb7\x1a\x93\x8a\xe2+\xd2\xa0\xc4\xda\x81\x1b\xe7HY-iu\xf4\x17\xb3+\x17Y\x91\xd2\x97$-\xebuY?\xad\x97\xb7\xe4\xd9\xd1\x8bo\xd5K\xc2Q\xd7\x93\xc3 h\xbb\"i\x9c\x0f\xba^\xd0\xe5\x12\xf8\xb8>?{\xa5N2\xe1\x1f\x83\xf3EI\x0e\x8d\\7\xc7G\xe4\x8d\xb0D\xa2\xf5!M\x17!\x13\n\xb612\xa3am\xc0\xc3\x0c\x85\xdb\xc6\xd5\xb1\x8e\xbe\xc5\xa2\xc6\xe1t^Z>z$\x08\xb0\x83\xc7\xab\x87\xc7\xa2\x9a\xa6@\xee\xe0\x99\x06\xfdr\x80\x99&@\xf1Pz\xfd\xbbM\xb4\xbf;J\xbf\xb9\xc3\xda\xe2;W\xf5\x10\xef\x8c\xc3\x13*\x01\xe7/\x02\x17\x1cX\xf1R<\x80O|\x10*\x057\xac\xe1\x19 }\xf0x\x81}\xf0D\xf1\x15L\x0b\"\xc1E)\xde\x19\x8a\x03\xf4\xd0\xf2\x96\x86\xf3\x17\x87\x8b\xecvl\x8f\x86!\x07=\xc4b\x8a\xc4\x85\xd9\x9a\x0dK\x08\xcfL\x88Bx\xdc\xc5\xe2B\xfd\x9a\x03c\x08\xcfp\xa4!<\xde]>IbO@ \xa2\xf4\x92\x10\x0e\x11\x1eo\xf9\xb8\x10\xcfS\x90\x89(\xc1P\x11\xb9\xe0\x18\xfb\xaaK\xc5\xe3\xf3\\_x\x8a\xc9E\xa3\x17\xfd/\xe3\x05\xe5F \x19\xe5g!o\xe2\x8c\xa8Fx\x86c\x1b\xe1yL\x08G\x17G\xf7\x88s\xf4\xb3\xf0\xe0hGx\x1aO\x81\xb9\x08\xe4\xa3 2MQ\xf4\x9c\xdfna0\x00\x17\x89\xbc\x1e(7\x17\x8b\x91D\xde\xf5\x96\x9c\x8b\xc6K\"/\xbb\xcb\xceEc'\x91\x97}\xa5\xe7\xe2q\x94\xc8\xdb\x81\xf2s\x91\x98Jx\x86!+\xe57a\xb99\x16e\xe9 \xc6\xb1\x97>\xac%<;B\\\"\xc4g\xc7]\"m\xcc\x82\xbeD\xe8\xde\x1f\x06\x13i|7HL\xa4\xa1]\xe11\x91\xa6\xee\x17\x95\x890\xf0H\xb0\x99\x08g\x0f\x81\xd0D\xd8\xd89N\x13\x9e\x90\xe19\x12\xc6\xe9\xa0\x86\x81;\xe1\x19\x0d\xf1\xec}\x8etc<\xdc\xd3\"5\xaeT\xdd\xec\xd0Ox\xbc\x00P\xa4]dh\xa6\x82A-\x82MT\xd1\xba\xd1N`\x1fH\x14\x9ei.\xe0\xd0x\x91Y\xc1\xa3\xf08\xcb\"E\x00I\xe1\xb9\xef>\x8fDQ\xf9@\x80h31\xd0\x9b\x07\xe8\xfdD,\xd5\x00\xa4*\xda\xbc\xb7\xbc\xdd\x03\x0c\xc7\x14\x1c+F\xd0?\x00\xaezO\x81n\x0f\xed\xd7\x04@Y\xb8?\x11\x88Wxb\xb8\x9e\x82~E \x8e*}\x17\x0c\xf2\x84B{h\x9f=\xb4\xcf\x1e\xd2\x9f\x08\xbf\xf0>{\xc8z\"\xe2&\xa1E)\xde\xd9g\x0f\xed\xb3\x87\xf6\xd9C\xe6\xb3\xcf\x1e\xdag\x0f\xed\xb3\x87\xf6\xd9CQ,\xec\xb3\x87\xc2\xa2`\x9f=d\xe6/\xc4\xbc\xb8\xcf\x1e\"\x91rs\x9f=\xb4\xcf\x1eB\x1b\xdfg\x0f\xed\xb3\x87\xf6\xd9C\xfb\xec\xa1}\xf6\xd0>{\x88\xec\xb3\x87F#\xc6C9\x08\xc14\x9dG\xd1{7t\xd8\xfe\x05\xa5\xb7\xcf\x1e\xf2\x11\xdcg\x0f\xa9'\x86k\x94\x18\xd9g\x0f\xed$\x1f\xc4)\xed\x03Z\xcf>{(\x8aX\xe4x\xc4\x9d\x0b\xe4\xe1\xc7\xc6yRD\x92\xd8g\x0f\x0d\xed\xe9\xc4\xc50\xae\xa7\xfb\xec!\x07Sx*\x11\xb7[\xb7\x1an\xd0\x9bS\xa4\x91Ccg\xbd\x01\xb3\xec\x0d\xfcWc\x99\xa0\x0b\xc3\xdd+\x0f\xcd\xde*\x90\x18W\xe4l\x18\xc2k\x7f\xf3\xce\xc3\xab\xbe7{\x1a\x81uD\x91\xa4\xee]\xa6,v2-\xd2rI\x97\x82\x11\xd9\x83\xc7\x96\xf7U{1CNy\xe0\x97\x02&\xd18\xb0$\x99 0iq`UN\x9f\x0d8I\xa6\x83'\xc9\xbc\x00J\xb2\xcf\xe5C\x98\x9f\n\xb24\xc8Y\xb9|s\x00-=\x98kA\xef^\xa1\x96\xe2`\x84\xf1\xb7\x04\x8a\x0bCiJ\xe1(\x19d\xdb\xe9N\xb9\xe3ra2\x12\xc7\x18\x1e\x11\xd8:\"\xe4\xd7^dZ \x18\xd9\x19\x89f\xaa\xd4i\xb9\xa1G\x84\x9c\xb0]\xcd\xc3\xf9\\\xca\x93\xb7\xec\x140\x02\xbf5\xad\xebA\xc2\xd3\xa9O\xbbz'OJ*\xdb\xe2B\x8b~\x11\xe7\xc1\xe7\xa4\x8b\x02\x08,O\x0f3c;\x93\xb9n\xb0\xca\xf2\x86VtIn\xef\xa4\x85\xd2\xb0s\xa5\xact\xe7\xfb\xa6*SZ\x1b&\xa9\x8bQ\xf1\xb2\xd4\xa6z\x06\xb6\xe4\x10\x86>\xdfJ\x85i\xcb]\xf4_h\xdaZ\x1a\x161\x11W\xf6\xf9\x87\xfb\xba\x9d\x96\xb6\xdb\xc6\x16\x02\xda\xd6\x8c\xbd:\xb1\x18\x88\xc6\x84\xf7\x19\x91\x15\xdew\xb5&\xc5(\x19\xc4p\xdc^l\xeb8\x14OL\x07\x82b\xc5}c1\xad\xa1:?\xe0\xeb\x10\xf5\x93*&\x0e\x9a\x0e{\xc7QZ\x02\xce\x89P3F/-\xd7\xeb\xb2@\xb1\\ \xccf\xec\x08\x10\x84\x03B\xe2M\x0d\xe4\x88<\xd8 [J\x12\xe6\xc5?\xc3\x82VB\xc4\x08d\xda\xb1\xea\x94\xda\xb9YqW\xde\xf6\xe6\x07\xc3\x17\xbb\x00#\x9e\xeb\xf6\x07\x87\x0eF\xfaK{\x87\x1f\xc7`\x0b0\x12\x9c\xa5|\xd3\xe7YqK\x16Iz\xcb\xd3\x07o(D\x97x\xd0\x9f\x8f\xa7\xd3\xa3\xb9\x0b\x87\xb6k\xd3\x1a\xe8$\x0b\x93\xebF\xa7\xba0\xb7\x01>\xfdqE\xf7\xb6v!l\x15\x8e\x16\xa5\xe7\xe4\xbe\x99\x8e\xef\xe4\x193\n\x8c\xb6\xe2\xb6RS\xb5i\xd3Bjh[\xac\x93\xaa\xbeIr\x8bD\xdd$M\x8bc\xa4\xbc\xa3s\xaa\x80\x05\xd9J\x03\xaa\xf3-%\xa7R\xb2\xa2f\xb4\xac\xc8?\xda\x1awA&\" ,<\xf3.\xd8{`<|XL\x81T;}\x7f\xf6\xf1\xf2\xea\xe2\xf2\xe4\xf2\xe3E\x10\x94\x83\x7f\x15\xc0db\x9f8q\x99\n*4\x9c\xbd\x18_P\xb0\xdb\xf8h\x05>\xea#.\x05\xd2\xf2X /Q\x82\xb0:4m\xdax\xfc\x03\x8d\x8f\x0e\x02\xc94WbA\x92j\x915URm\xbb}\xcba\xce\xea\x00\x80\x057\x84+ \xc9t\xff\x86s\x94\xd56\x0erS\xd1\xbb\xaclk\x9e\xb2nl\x9a\x0e/bp'\x81\x08U\x92\xde\x82\xbd\"\xc0\xe9R\xc9\xa3Rj\xbaU4 \xa1\x7fg\xa9\x0c\x8c\xc1\xf4&\xa3w`M\x02p\x801\x86\x13\x15\xc0\x82\xfb?8w\"\xfe\x7f\x16\xa2\x9f\x9f\x96l\xc1\x88\xee\xabu\x03\xff>\xee\xb4a\xa9`\xa2\xe4\x90) \x13\xc4\xef\x05\xffN\xf2''L\xa9\xf1\xb8#\x128vlO\xbe^\xb3\xe2\x9a\xd4m\xca\x88\x1d\xae\x92,o+z\xc8\xd1\xfcP2`\xf8\x18\xfb\xe5\xf1\xc5\xc7w\x91\xa2\xce~\xff\xec\xe4\x02\x07\x81\x9a/^\xfc\xdb\xe9Y\xd4\x8boON\xdf\xf9\x05t<\xbf\xb1\xa2\xd9AqXc\x16\x00\xbe\xa6\\}\xf7\xa1:\xb1\xe14[e\x7f30\xdd\xdd\n\xe3 \xf0\xb0TV\xad\xadW\xa0\x8d\xb0\xa90\x1ba\x7f\xd3\x1aQl3U\xbd\xce\x96R\xc5\xe7\xcd\xddf\xdc\x0b\xbf\x84\x12+\xeb\xac\xe6\x95m\x84\x0c++\xb2\xa4y\xb2\xa5K\xa79\xeb`\x8bM\xbc\xc9\x16\xfb\x9b\xb3\xef]\xa0\x0b\xe5\x95\xed\x1cj\x05\x83B\xf0\xaf\x0f _h\x91&\x9b\xba\xcdU\xb3R\xec\xae \xdf\x80otuT ]\xb4\x0f\x0cW\xcb@\xf9\xa0~\xa2y\xbdxy\x84r%;+\x8a6\xc9vK\x88\xb5sM\xcd\x16\xd0\xfc\x159f\"0\x8f\x1d\x14#\x9d\xdeq\xd51\xc2\xdep\xd1\xd9\xce\xab\x83z\x8c\xa5\x9c7\xa8\xb9\x1d=\x9a\xff\x1f\x19\xef\x13\xe5\x0e*W\xfc\x80\xe7\x83\x9e4M\x92\xde\x88\xec1\xe5]*+\xb8*\xb5\xb7\xaa4ZbEp\xa5\x1f\x813\x1a!\x0d\xde\xaa\x03\xc3g\xa0\xf6\x94\xd1g8\xae\x83\xf1\xb31\xc8\x03\xa4\xdc\xbe\xf3\xe2\x02\xec\xd2\x82\xe0\xa8 \x85\x92\xfd\x92g\x9eK\n|\x17\x14\xccz9\x01~1\x81=x\xc8\x85\x04\xf3\x8f\xdd\xf8\x0b\x08\xc4\xaf\x06=\xf4\xf2\x81\xf1\x17\x0f\x98\xd7\x0c8\xaf\x18\xc0%\x14 \xf6\x7f\xc2\xb5\x02r\"\xfb\x04\x1dW\nL\xbaN\xc0\x86\x90cW \x8c\xbdF@^\x1a`\x90s]!`_\x1f\x80^\x1d0vB\xe6\xbb.`\x19\xbc* pM\x80\x88\x83\xf5\xe4\xf0\xf8\xeb\x01\xb4\x0b\x01:r\xd8]\x00\x88b\xa3i\x1d\xca\xcc\xd1j)\xab\xe3K\xc7\xf4\x0f\xad\xa0\xae\x97n\x8fVm@\xaf\xdaq\xb1ch\xc4TV\x9d\x06\xebNP\xaa~8\xcb\xb8\xfc\x01\x94T\x97S0(\x8b\x00\x1eW.\x01<\x81.\xc6\xc1^\x1d#0.\xc7\x00%%t\xf5\x83\xb6\xa6C2\x0d\xe0A\xf3\x0d\xe0\xf1w`l\xee\x01JL\x83Z\x8c\xcb@\x80\xc7\xb3\xc4ID\xc6\xbf3'\x01\x9e\xc0r d\xd6\xfc\x04x|\xd5\x85\x87\xf134c\x01\x1e\xd7\xee'\x83\xdaw,!2!\x93\xc1I\xb0\xac\x06\xe43\xc0\xe3\xcaj\x80g\x96n\x8e\xcaspR\x93\xf9\x0fc\xb2\x1d\xe0\xf9\xa7\xad\xa9\x1e\xf6\xb9\xc8gx\xea\x84\x87X\x8d&U\xc0\xa3\x82\xe2\x13\xbb\x16Q\x17\"f)\xee\xab\xa3\xcfR\x1d\x1d\xb8\x9f\xb1\x1a\xff\xf8\x9c\x0ex\xdc\xd0bxb\xc6qL\x96\x87\x87\x9c\xc8\xff\x88\xcd\xf5\x80'j\xcc|ewIL\x1a\xc4\xe0o\xbd9 \xbe\x0f=\x15\xba \x17X\xa3\xf3A$\x81X\x89\x17\x1c\x14\xdf\x88\x0e\xc9\x10\xf1\x901rG\x82y\"\xf0<\xcel\x11\x1fo\x0f\x9e3\x02\xcf\x0c\x99#=B.kftZ J\xce\xc1\x05\x9ap\x02\xcfCj-\xf7t\xc6\x8dJP\xf1\xd0\xf3\xcf7\x99\xe9D\x19\x93\xb8\xe2;Q\xa0\xcf\xa3\xd3W\xe0\x89\x9a\x93\x98#fH\xce\x06\xfe\x953\xad\x05\x7f\xdd\x99\xdc\x82\xbf\xeeHq\x81gT\xa2\x8b\xfct\xc8\x993S\xd2\x0b<\xc3S_\xe0\xb9\x97\x04\x18\xbc\xa9G\x92\x06\x833w?\xc90\xf0\x84\x04\xc6\xf8\xc4\x18\x07A\x8f\x8e\xea\xe7el\xaa\x0cJ\x0c\x94\xdf\x01 3\xf0\xd4\xde\xb4\x19x\xa6\xb9(c\xb6\xb1\xc9\x05\x89O\xa7A\xe9\xf9\xab\xa7\x98\xeb\xc6=K#\x12l,\x1a\xfd\x95\x1bH\xb3\x81\x07\x81c\x92\xb8d\x1bx\x943`Ju\xec\x19\xd0\xbb:=k\xd0\xc7E\n\xbc~\x8e\x19\x17\xaaj'\x04\xdf\x0d\xd5\xb1\xbe\xaf\x12\xd6fsQ\x80]O\xd9\xe1\x00\x92\x7fV\xde\x1dR\x01\xe3\x84\x84p\xfe~J\xbe\xee>\x96\n\xd3\x13\xc1\xbb\x06-g\x8f\xe7()\xad\x91\x8a\xc1\xc7\xf9\xb8\xf2\xa4\x17!\x0d\xbb\xce\x91\xd1\xa9F(\xb9>Bw'\x05\xa0\xdd)H\xf0DX\x11\x11.\xdb\xde\xd8MKJ\x82'\x98\x9a\x04\xcf\x0e\xb9\x8f\x12s\xae4\x1bx\xa2R\x96\xe0\xd9AG<\x16\xcd\x98\xfc\xa6 1\xdf\x18\xccY)y\xa6L(xf\x99\x99a\xc3>\n \xab\x13@\xd3\xa9\xe0\x11\x92\xc4\x9d\x8a\x10f\x16!1HE\xb3\x08\xba\xb4\xeby\x156g6Bp\x06\xe7;XC9 \xd8(\xa0\xf4B:_('\xe1\xfe\xfb\x1c#-#\xc8\x04{\x1c\x03g\x7f\x80\xdeO\xccO\x18\x90\xfd\x856\xffX4K\x84\x9fi\xeae\xd4\x00\xcc\xa1hF\xf4+\xf6\xc4 \x12\xc2\xfac%@L\xd1RQbnm5\xd53\xcaP\x82\xfb\xbbK\xba\xc7\xe4\xca)\xed\x1d\xbe\x97\xee\xa9c\xf2\xd0\xe0\xb1f\xf4\xde\xd5\xe2\x01#2\xfa,\xc0\x88E\x8eG\xdc\xb9@\x1e~l\x9c'E$ \xac\xf2\xc0\x981\x9bS#\x8f\xee\xff$\x11j\x93\x8b\xeb\xe9\xc4\xc50\xae\xa7\x13\x94\xfc\x88%\xa3w\xdb\xc7\xdf\xe4\x04\xb9\x1e5\xef\x05%@\xaaV\x97Y\xf6/\x1fQb\xed\xb1]e\xb1\xbf\xf6\xc0d~j\x16\x9fA\xce\xba\xf6\x00\x1e,\x9b\x8f\x98\xbc\xcd\x98\xd1G|\xea\x88[\x11\xb1\xb2\xfbHHhL\xcc|\x1e\x9f\xed\x87\x10\x9b\x96\xf2\x87s\x87\xb5\xe3\xcc\x04$\x8el@\x12;\x8aHf\x1b\x89\x1a\xc7y\xb2\x03I C\x90\xcc\x9d%H\x9c\x99\x82\x04\xcd\x16$x\xc6 \xd9\xf9\xf8\x8e\xcf D\x88\x89\xec:4\x8b\x90L\xca$D\x88\x19\xb9\x85\xc4\x97_H\xbcr\x94D\x8d\xd4\x84\\C\xf7Vs\xe4\x1b\x92\xa99\x87\x08\xbd\xac@\xf3\x0e\xc9\x84\xdcC\xac\x15\xc8Ft\xe6\x1f\x124\x07\x91\xf0\xc5\x83\xe4!\x92\x19&n\xbe\x9cD\xd9\x9e?/\x91\x84s\x13\xd9\xe3\x02\x13\x8c\xcfQ4\x08u\x19\x8b\xc6\x0fX\xda\xe2\xb0\xbc\xfcMU\xdeeK\x81\x84\xe9e\xbav~\x89r%5\nS\xe1\x19\xa0\xd6\xc9\xe3\x11S\x89\x10\x91825_\x1d\xc2B\x0e\xaa\xf3\x98l\x92Z\xa0C\xb4i9\x82\xdf\x0d\"\xfc\x90\x0e\x9e\xd0\xa7B\xe8\xf19\xe5R\xd0t\xb43\xb5\x0c\xee\x92/J\xb2.+D/&\xc4\x99C\xed\x19\x14\xe4\x8cp\xadA%\n\\'B'w,\xfe\xf5\x81\xd2\x04\x8b\xb9\x089\x96\x8c6\x87$kj\x99\xf8R\x93\xb6\x00\x05qIJ6\x0e\x9f3q{\x11\xbe\xcb\xed\xd4W\xd2\x01\xa4\xba\x1b\xb4\xbc \xb6\x82Tl\x9a\xed\xd0\xea!h\x0c\x1d\x9d*\xb7 3\x82\xe7\xea\xfa;i\xf5\xf5n\x973?\xfb\xe6\xd3\xf3k\xfa\xec\x8f\xe4\x8f\xa6\xfd\xfe\xbb\xe6\xcbw_\xbe\xcb\xf3\xbb\xef\xbe\xa4\x7f\xfb\xa3\xa9\xdd\xf7\xca}\xbbN\xff\xa0\xdfJjv\xecy`\x0fT$9\xea.\xc0\xbf}\xf3\xb7\xbf\xfe\xb0H\x9e?\xfdn\xf5\xedwO_|\xf7\xb7\xe4\xe9\x0f\xdf'\x7f}\xba\xa2i\xf2\xcd\xe2\xd9w\xdf<\xa7\xcfz\xf7\x00\xf6\xe2\xd0\xf6-{\xfc\xe7o>\xfd\xe1\x1c\x87O_\xf2\xdb\xcf4W\xddE\xf2p\x87vX\x91\x88\xeb\xf2w?<\xfbv\xf5\xc3\"}\xfa\xfd\xb3\xef\xff\xfa\xf4\x05]|\xf7\xf4o\xdf}\xb3z\xfa\xfc\x9b\xe7\xdf|\xff\xd7o\xd2\xe745\xba,\xc0d\xeeN\xc3\x0b\xdf|\xfa\xe2\xec\xf6\xdf\xeaOyz\xf3m\xfd\xe5s\xf1\xe2\xc5?\xbe{\xf6\x8f?\xae\x9b\x1f\xaa\xfa\xe6\xee\xd3vU\xfd#\xadt\x06/\xf9M\x9dI\x01\xca\x81\xea\x08;E\x93\x1eP \xc9\xebR\xe7C\x1c\x15\xca\xd5\xd1\x8fm\xa0\xc3*\xa4\x92\x1eu\x80,\xc5^\xf4\xad)I^\x96\xb7\xda\xc1'-^\xce\x8e\xd9\xc6\xf0\xf27\x02\xfc\x116\x9b\xe1\x7f\xfcu\x8d\x8c\xf0\xd2\x08\xb3\xad\xa6\xca\xb3\xd2\x15\xe0@\xcb\xf7\x88\x89\xb3\xb2\xf2Gt@P\x8a\xeb\x83|{B\x17\xf6\xa5\x92\"F:\xbaTR\xaf\xd5\xfe\xf1C\xa2\xcbH\x0c\xaa!1\xb8\x80\x84\xb1\xd3z\x1c\xab\xed\xa3{\x11\xe1\x8f\xdcD\xba)\xf3em\xac\xab\x03\xae\x94\xf3>\xd1\xe5\x93Q\x1a\xa3\xc1\x92\xf3k7\x05\xe2E[E\x99\xe3\xa8\xd3\xc8\x87\xf1\xfe\x08WR\x9e\xbe&*\x11\x9f\xb3pD\xc8\xe9z\x93\xd35-\x9a\x9a\xd4\xcb\xdb\xa3\x13\x01\xd0\xc8\x8a\x86V\xab$\xc5l\x14F\x83\xd7_\x00U\x12\xbe\xa0`\xe7\xb0\xe1\xcd*\xb0$^q\xf3\xc4\xecz\x10\xe8\xbd\x9b!P2\x14\xbb\nA\xb9\xbc\xf9[\xbd\xfbN\x11\xcb\x87=<)\x89\xca\x91K\xf2\xbc\xfc,\xb2z$\xd0\xdd\x14\xd8\xec)?\x17\xb4B\xc2\x98\xd0e<\xa3\xcb\x99\xcf\xe5\\w\xf0\x84\xc2\xa6\xb3\x15\x80\xe8\xc3\xaeI\x92\x82c\xe1@\xe6#\xe0)\xc5U\x99\xbb\x8b-\x04s\xad\x12\xfe}\xb7\x9ae\xa3Z\x81\x94T\x94\x18 \x84QD\xa6\x02\xf5\xd4\x85\x88\x1a\x0c\x7f\x06\xd5Srvr~\xf9\xefW\x97\xff~\xf6&*\xf7\xa7\xf7\xc1\x87\xf3\xd3\xbf\x9f\xbe?\xb9\xfcp\x1e\xf7\xfe\xc5\x9b\xf3_O_\xbd\x89|\xfb\xf4\xfd\xafo.\xa2i\xbf\xfaxq\xf9\xe1\xf5\xe9\xc9\xfb\xb8\xd7?\xfc\xf6>\x96\x8f\x93\xb7oO\xdf\x9d\x9e\\\xbe\x89{\xfd\xc3/\xefO\x7f\xfa\xe8\xce'\xeb\xbd|v\xfe\xe1\xd77\xefO\xde\xbf\x8a$\xfe\xea\xc3\xfb\xcb\xf3\x0f\xef\xde\xc5\xf2\xfe\xeb\xc9\xbb\xd3\xd7\x9e R\xe9g\x83\x96A\xd8\xf9\x04\x8fku\xb9\x9a\xe3z\x84;q\x8aVUY\xc5$\x9a9\x16\xe9K\xfc\xcf\xd0*Ijpkg\xdc\xad\xe3\xcb\xdaD\xd7\xf4K\xec\x8f\x9d\xc7hI\x17\x0d\xa9iu\x97\xa5L\xaf\\\xb5E\xda\x18j\xa7\xaf\x15\xb9\x17^b\x7f\x04\xf5\x8b\x87\x15\xb3\x94d\xc5\x1d\xad\xe3\xf9W\xfb\xe6%\xfaW18\xb4h\xb2f\x0b\x87\x92\xeaS\xda\xd6M\xb9\xcc\x92BtL\x94\x0c\xe3\x03\x19\xdb1\xbe\x0f_Z\x7f1\xf3\xb27I\xd5l\x05/\xfc\xb0\x92R\x9d\x9dB\x91M\xa9}\xfc\x12\xfd+\x8c\"4\xc4\xb3`\xd9\x9aX\xad\xb2\xe1\xde\xf3+\xbe\n\xae\x9cF\xc3\xd4\xfeu\xdb\xa0/\x9a\xd9,\x81\xfb>\xb2x\x82\\$\x17MR,\x93j\xa9\x8bS!\xd7k\x8edZ'\xd5-\xad\xd4\xdf\xd0\x18iEI\xddn6e\xa5_\x81\n\xfc\x1c \xa7e\xd24U\xb6h\x1bJ\xd6\xc9V\xba/\x11Z\xe9MR\\\xd3%Y@\x10GH\xba.?\xba,Rv\xca:\xa3\x97\xdc\xac\xbe\xe2r\xe8\xaa*\xf3\xbc\xdd\xb8&a|(\xf37!\xf2\x92\xfe\xca\xa5\xa3\xdd5\x15\xd7F\xc6Zn,\xce\x0e&P\x9f\xa2\xed\x85\x10\xd5\x19\x1d4!7\xba\xc6\xd7\xed\x83\x9e\x81\x7f\xf2\xbf&e\xb6\xd4>\x8f\n\xae\x81\xde1\x8b\x11pt\xdee=\xda9]2\xb4\xc6\xd0\xd4k\x82\xa6\xfd \xc9\xf2 I(\x8d\xf6\x93Q\xaa\xf3\x9c\xb0[e\xb0\x19t.\xac\x1a\xd0\xe1\x9e\x0d\xce\xb7k\x0c\xd3A\x0c\xdc\xc0\x9e\x87h\xcf B\x01\xfd.\x83\xd2\xa8>\x82\x0cL\xc6\xb8<\x02>\x87\x90\xae\xb1\xb2\xc9aO\x06\xf55T\x19\x07\x90\xf2\xf7*q\x80\xe3{\x95\xa8\xa8\x03\xa6\x81\xdcE\x17_\xdc\xd1`O\x8c;\x9e\x7f3d\xc6U\xda\xe6\x84Yn\x95f'\xa5\xc8\x1aS]\x887\xc6l\x17\xc8Hv!\x114\xd3^\xf0\xf7\xa6\xa1d\x03\x98\x17X\xc7\x1a\xd1\xa7K\xe2&\xb3\xb78\xd7\xb3i\xc0&\x14\x14c}\x81\xd0\xbf\xd0\xebG\xfc\xa2\x0b\x07\xbf\x81\xa4\x80\xabj\xe7u\xdf\"V\xfc\x99V\x15\x7fK6`0\x00\xb6O\xb7\x8e\xa7\x9e\xf1Rw\xe7\x08\x1f\xa1\x0e\xe0\x93\xc1z )\x9e;\xe9 \xcd\x0eR\x0dwhU\xd5\x03\xee\xf0\x12\xdd?\x88\x1di\xc0]1\xb4\x9d\x19\xb5\xe6\xd01\xb0\xfb\xce\x0e\x88b\x93|}*\x16\x92\xe0\x9c\x0d[\xbd\x13ksgC\xe4H\xb5?i\xf8\xbf]\xadx\xc0\xddH*\xed,!=\xef\xd8\x98-9\xc7\xa0\x86L\x0c0\x03\x95\xcf8\xe7\xb9$A\x92\xae\xca\xcfq\xfc\xdc\xf1\xe2\xceE3]S\x1c\x07\xd1\n\x1b\xb4\xad~\x14\xd5\xbe+v\xc1b\xdeP\xb8B0\xf7\x844D\xeb\x95\x9c9b\xd9\xe2i;]\xdae\xbb^\xb7\x0dm\x07Fm\xb0TJ{\xed&k\x82\xc5\xbaY\xde\xb3N\xaf\xc1>F\xba\xc9$\xb5\x97\x1f\"\xcf\x13F\xee\x9b\xc9\xa3O\xe5\xf2l\xec\xf2\xa8C\xaa\xe6\xa1\xbd\x07\xc6\x96\x95\xf6\xb5+\xbd\xc7\x81\xf6\xbaf[\xd0@\x84Y<\xecyG\x86\x81'\xa9d\x89\xbcX\xfe\xb9\xaa\xb9G7EyO\x93\xca\xde\xf1\xeb\x88>\x88 \x19<\xf8\xb0=\xa6z\xb4\x9f\xb6\x03\xbb\x16\xe0\x0b \x99\x8a\xc8TO|\x07\x99PNo\xdb\x0e\xbd\x11u\xfb\x1d\x88\xe21]\xa7\x0d\x0eu\xa0\xca\xf5v\x05W\xe1\x92B\xe0\xe4\xed\x89t\xcfA\xecC\xd7nZ\xa2\xa1=}\x1b\xd5R\x9e\x0e\xd2\x14w\x1b\xd1\xf6\x8a:\x0d\x86n[\xd2@*\xddL\xd7E\xd7\xdfY\xe0Vyj\xe9_\x8c\xe8\xc8j\xc56'\xaa(\xa8*\x11\xd3D0\xe7A\xa3!\xa6\x8b\xff\xb6\xa5aT\x86\xe6\xe2u\xa6(\xcdy2\xf3\xa3\xd4?\xbey\xf5\xfe\xe3\xeb\xeb\x8bw\x1f>E\xd6\x7f\x87\xbf\xfd\xf0\xf1\xfd\x87\xf7\x97 \x1f\xb2\xdf\x1c\nk\xac\x91\x9f\xc6p\xb8\xc6\xf3\n\xc5%Q\xcf\xa7J\xd5|\x07\x99\xaa\xa1\xe0\xc6g\xdb\x86\x19\xe8l~\x911w|\xe4\x19\x12Xv\xe2\xaf:\xe4W\x9a\xd1\x0d*\xba\x9bj\xe8\x8an7i\n\x9a\xa8a\xdc@\xd9\x94\x8d\xe7\x8d\xfd\x06s\xc6~\x83\xf9\xaa\xd8BS,\x83M\x87\x1f\xaav\xdb\xd3\x0c\xee\xda\x12\x9c`\xb3 \x8f|\xd1_uEy\xcf\x0e\xf5\xbc\xa8\xbf0\xd1\xb1\xd0\xf2>\xd3\xda}\x9a\x91\x88\x1a\xf6\x1b\xe9CyW\xe1\x07\x96\xd2S\x14\xd9o|'\x1a\xe3O\xec\xcb\xa3\xb3Z\x0e\xb4\xc7\xfd\x85\xefo\x83H\xd2\xc2\x059NU\xf6\xefg\xd3a N\xa2(\x1e\x1f\\+\xcf\x8erIi\x08\xbe\xc5\x94\x98\xce{\x81 F\xc4\xc3\xfb\xcc\x97N\xd5\xdc\xa2~K3\xc6\x9c\xad\x8a\xaa\xdev\xf8\x8cl:\x1b\x96\xcc\x7f\xde\x98\x84l1\x97\x9f~\x8a\xd2\xd5\xe6W\x1f\xce/\xddW}\xd4\xd7/\xff\xc7\xc5\x87\x88\xd7\xdf\x9e_\xfc\x14\xb2\xf3\xc4\xf6#n\xcf\xb1POi\x18)\xfb\x0c\xda6=\xa6'\xbd\x90;<\xa6\xe0u\x0e\xc8o\x8aZ\xc6\xd2L\xa5\xc9\xed\xd9d[mmF\x18\xd8\x14\x194\xbd)\xf2\x9b\xd4\xd4\xd8\x05r\x86\xeb\xab%?\x01\xb2F\xef+\xea|\\\xb2\"*\xeb\xaa\xa7\xb5k\xb8\xcem;\xb4\xc4u\xb1\xc3\xcb\x89\xd7\x18\xe6\xc8\x14\xd1\x99#\xbfY\xe50\xf9\xe5A\x8e\xc9:\xd4\xb1a\xe2\xf1)\x0cfp\xbfgk\x1c7e\xb1\xe9\xb7\xf5\xc8\x82\xd88VtKd\x8aD\xec\x87\x16\x82\x0e\x1b\xd5\xcd\x0bk\xebI\xff\x0d\x9a\x8a\x0f\xd0\" \xedJ\x88\x82\x97n\x12\x9c\xb4\xb6\xe2\"\x88\x1b\xbf\xe2\xc5)\xfb\x90H\xd2cQ\xc2\xc7q\xefX\xe7B\x08dr`\xf2\xd3co\\C\x06\xe9Y<\x9b\xc2\xf3\xab}c\x1f\xa5\xf3\xd1\xef\xd9\xae\xa85D\x87\xaa\x18\x86\xa2\xbcc\xd4\xc7\x8b\x00d\x8d\x80\xf8]u\xe6\xf2\xf9E\xcfa\xd6\xcb$\x8a\xc88\x07\\\"m\xc3\x0f\x9d\xfcg\x0e\xc5U\xbb4:\x03\x92\xa2\xd4\xea\xd7\xe1\xe1i[\xe8\xc6\"\xf4\xb4H\x81\xd3\xcf\x91q\xa2\x8e\xedX#\xcd|\x00\xacQ\xe4I\x8c\x07 \x1f\xeb\xcd\xb9\xe15\xe3\xdb.\xbe\x1f\x1b\x1c q\x92\x86\xa6 \xea\xee\xb1\xd4\xd0\xceY>\xdb\xd1\xe3\x1c1l\x89TH\x94\xda\xc5\xd5\x11\xc3\x08\x1d\\{\xcfv\xbe\x93\xdd E\x98\xc8}\x90\x9a\x0b\x81\xa8y\x15\x1d\xdaOG\xbcp\xb6\x0cz\x0f\x9dP\x84\xd1bO\x04\xa7\xa0\x10\x14!\xd7$s0\x84\x00\x89(\x13\xcd h\xb3\xae\xf3\x1al\x8f\x8a\x1eTy\xf0Yt\xbd'q\x9c5u\x9c18\x071\xfc\x82\xfa\x1c\xa2-\x03\xc8x{\x9c\x05P\x96\xbf\xf7v\xf8\x99\xf9\x17\x90\x1el>\x87J\xe5X,K\x80\x9fy\xe6e\x90\x00r\x18\x9a\x01\xfd\n\xddq\xbc\x84\xfc@\xc9\x99V*H\xccn\xad\x962\xbc\x1b$\xa8X\xb2\x9a\xd5j\xed\xd2l\xd3U\xef\xc6\x8c\x1d:\xa3\xed\xa4s\x95\x86\x14G\xe1hq\x14\x87\x18G\x8f.\x91\xe4\xbd\x00\"\x16(\x8f\xb0}\x01=\xbel\xac;E \x894t\xb9I'\xa7E\x1e\xdc\xffY*\xd4$\x17\xd6\xd3\x99\x93!\xad\xa73\x8c\xfc\x80)\x13\x8aBg\xa1\x08;\x08\x9d\x1b\xa490\xe8\x8c\x94\x03u\xce\xdb\xd2JF\x1bu.5\xa2R\xf1\xca\xb2\xdd\xec&\xfb\x88\x97\x97\xd4\x81\xb5\x0c\xc6\xaeU\xa5\x06\xf7!x\xf7\xb1\xfa\xae\xac3\xc5=?4\x07Vh\x85\xe4\xe9\xd3\x1cU\x92\x91\xd5\x0f\x94\xd8\xab\xd1\xc3\x13TB\x18\xcd\xaf\x9c\xacQ\xd3K\n#\xc1SD-e\xe4@\xce\xa7\x8aeJ{\x10,\x98\xd9\xf5\x95CD\xc3>\xc9Uq\x19\xcd\xa9\xba\x8c\x80\xca\xcb\x08D\xcdZ\x07\x81\x87\xd3\xa2\xab0#{%\xe6\xa9=(\xaf\x9c{\xd43UeF\\\xf5\xc7\x945F\xce\xea\xcc(G\xa7\xe4\xdbD\xde~\x89\xb73t\xcbZ\xb1\x19\xcd\xe8\xd5\xec\xea\xcd\x1a=\xdf\x98\x18\xbb\x1b\x9a\xc1\xfc\xdc\x8a\xce\x1a\xb9]\xbb\xed\x02\xaa:\xb3\xce\xa1 @\xc0\xfe=\xcc\xae\xebL\x1a\xbe\x94\xb0Y\xc6r\x97\xa1K~\x98\x92\x03\x92\xe4\x80\x1fY\xa1F\x81\xb0\"x\xc4\xd2\xe0B\x00(\x88\xd33\xa0A{\x82\x01\x1d\x0d\xe4\xe7\x90\xf0\x1e\xbe\x9b\xc8\x13R#\xfbPtU\xbb\xed)\x92\x10\xcb\xe0\x19\xd6\x90\x80\x94\xdb'\xfb\xe5\xb4\xd9\x18\xa6\xa8\xa5t\xb9b\x92\x80;!xH\x85\x90&3*x#^\xaf[\xa2\x16U\xb9\xbb\xb7\x82\x7f\xe6ui\x80\x8b\xb0\x04U\xe4\xd6sp\x06W\xe2\xd6+p\xb3.\xe4\xbd\xf4j\xb9\xbc\xe78\xa6r\xf1\x14Q%\x00\xa0\xc4\xff\x82PlF\x7f\xe4\xcc\xdb\xef\xe0\x1c\x86\xa6\x06g\xe6\x0f\xcd\xc7\x1f\x96\x85?,\xf7~`\xc6\xfd\x80<\xfb\x81\xd9\xf5\x83r\xea\x87f\xd2\x0f\xcd\x9f\x1f\x945?.W\xbe\xcf\x89\x92\x96\x17\x9fe\xbf7\x889\x90\xb4{\xca\x81\xbf\xdf\xcc\xf7\xf9\xf3\xdd?R\x96\xfb\x03\xe4\xb6?HF\xfbG\xccc\x7f\x8c\xd9\xeb\x1f=g\xfd!3\xd5\xdb\xf2\xd3\xdbOu\xe3\xd6\x9a\x94\x8b\x1e\xc6\x0e\xa7\xe7\x9d\xd7\xca@\x1bA*\xbb\xa6N,\xf7\xac\x15w\x96\x08\xa6\x95y\x1e\xe6\x94w\x06\xd2\xd2\xba\xcb:\x83\xe5\x9c#,?\xcd\xf2\xb1K7\xbdL\xb3n\xd0\xfa\xcb3;\xcb2\xc7\xf2\x9dV~Y\x0c\x99DiN\xd9\xe5\xe4r\xcbRqem\x8e\x05\x96Yv\x97W\x86\xb5\x82]\x9a\xe9e\x94\xa5\xa2\xc9JGB\xca''\x96M\x16<\x98K\x1ap(\x8d\xdd\x9c[\x1ey*\x88\xcc \xeae\x91]\x87\xf0\x8b\xe5\xc5\xe8L\xdc\xf3Q|ib\x16c!\xb1#\xdcO\x8f\xf6\xcf\xe4\"$@o\xe0&\x01\xeca>\x86Ld\xa4\xf4K\x10cj\xc4\xce\xaf\xc4\xa6\xafB\x02\xd2\x96F\x03\x84\x004\xea\x8f\x0d\xdb\x81\x9e\n9iJO^\x0f\xe1\xad\xa2>\xeb\x0e\xdf\x16\xdd\x92\x10\xe6Q\x19T\xb9\xbc\xb2\x94\xe0G\xd9i\x9do\x91\xd8\x95\xde\xb88\x82\x82f3#\x89F\x80\x8c\xfe9\"n\x08\xa7|\xf6w\xf9\xdf\x95.k\xb9\x9e\xad\xd1=\xbd\xf7\x19Cy`\xa8\xdb\xdf\x0fe\xe8\x12\xc3\xdb\xf9B\xdb\xf6\xe8W\xec\xd6;/\xe2e\x82:\xf8r\x83#\\S,\xa7\x842\xe9\xc5s-\xc3/\xbcL\x8f\xfbi\x14\xcf\xd6\x88\\,\xcf\xb3\xa3p\x1a\xd7v\xe1j\xd1\xb7XF\xe7F\xdch\x8cMe\x14\x8e\xb6\xc9zw\n\xb5q\x88\x8b\x19ic&TP\x9c\x8dSf\x02\x8aS\xe9/a \xf19\xc2\x98\x1cSJ\xd2\x1f\xe5\xfe\x81-\xc1\xad\x01-Z\xbf\xb6S@V\x90\x0br\xfb\xa1=x?\xd7\x15\xeb\x19\xa1\x15\x80\x1a\x0f\xb6\xc4\x85X\xc4c\x0f\xb5\x88g?\"\x98\x13\x8a\x01\xc8\xd1\x93}pHFh.p'\xb5\x12\xed\x13\x8f[\x1cs\xa3\x7f\x1a\xb91\x16hD\x01\xc53FR\xcc[\x04nN\x95\x0f'OF@\x06\x0c\xe0\\\x0c(\x80#qoe\x08S\x8ag\x94\x98\xedrrf.\x93\xc2\x98\xe2\x01\"l\xfbgxj+>\xcc)\x1e\xf6\xbbyA\x11\xf9\xf8\xcd\x19\xfe\x14O\xb2\xf02\x87E\xd9\xc3~\xed\xad\x19\x14B\x16\xbc\xfcu\xd4\xaa\xd7\xa8Y\xfc\xa2\x99t\x805#B\xa6\x19\x0bncJ\xd3\x1e\x15\xd1{r\xdc8U\x88/\xc9\xc1\xc1:\x19\xa2a|4\xdc]\x94\xfe\x95\xb0\x8a\xb2\xf6UcE\xd5PF\xee\x01\x80\x9c\xb2H\xfd\xbd\x9f\xab\xc2|]\nUn>\xc18\xba\x900dQ]\xf0\xabD\x1f\xf3\xfa\xa8j(\x864Pc\xf0u\x16\xde\x8a.\"G\x84\xe5q\xca\xd7\xfb\x83g\xf3\xe8\x87\x0c;\xe2\x85\xc6\xa4\x9c\xc4\xa5\x9c\x98G\x0b\xadI\x19\x88AbrVb.8}\"\x8f\xa7w{w\x1f\xa7\x16\x81'\x84\xe6\x1d\x0b\xfe\xd2\x9c0\x9a;\x90\xe6sD\xb1'_0-0\x9c\x16(\x18\x7fM\x80\xa8h\x8a\xf1I@X-6\xb0\x16\x1bZ\x8b\x0e\xaeE\x85\xd7\xa2\x03l\x91!\xb6\xf8 [|\x98-2\xd0\x96\x1aj\x0b\xd3|\xec\xc9\x1cn\x8b\x08\xb8\xed=\xe4v\xa8\xa0\xdb>\xc3n\x8f\x1ex;h\xe8\xed\xc0\xc1\xb7\xa3\x08\xbf\x1dw\x00\xee\x88Bp\x8f\x13\x84\xf3\x87\xe1|\xae\xea\xf1\xad\x0c\xa18\xbf\x0d\x94\x1e\x8e\xb3\x10\xb4\xd6\xb3@\x137\xa3\x7f\x9d\x9f^15\xaeXJ3\xfa\x07\xbaFH'E!^+\xcd\xc4t\xaan\xb1\xd0LEC;\xf5X\x0e\x13q\xbf\xfa\x94^\x82\xdb\x87z\x92'\xf6\x0c\xbbMU\x16u\xbds\x14\x94\xe5\x04\x12\xba\x91\xe1@#\xac[\x86\x9b\xadp\xcd\x82=d\x9b!\xfbYYW\xb8\x99\x0e7\xfa=\xb6\xe91\x82\xb5\xf6\x13M\xb1]V`oC\xf8}E\xcfLKt\xb3;C\xdb\xcdr\xfc\xef\xa1Z\xe3~(\xd6\x9b\xfel\xf4\x1d\xb0\x04wg\x96\x08 B\x1d\xaeyy\x9cUk\xb2\xe9=&\xf9\x0eI\xecx\xb7\xbc&L\xda\xb4A\xc0a@\x0c2!\xf3\x94t\xd3F\x8a\xcdi\x1e=\xc6\xcf\xc8\xabD}\xf0\x18\x14n\x86nG\x8f\xa4\x9c/'\xcf7\xbb\x19\x1cK\x9cXNvl\x13\xe4C\xc9\x11\xd9\xa5\xad>\x1c\x1f\xe6\xa3\x93c]\xf4\x83`\xce\xc9\xf8!\x84I\xe1\x04U\x804\xf9\xe2psT5\x03\xbe\xc56CSH\xb2j\x86?~\xeff\xdb\x85cm\xc6\xadK[\xb1\xacG4\x17r\xd9Q\xa3Lh\x15\xb0\xb8\x92x\x98\xb8\xc1?\xf3\nI\xf3\x87!\xb0?\xbc=\xb0\xda8\x9d\xf6U\xdb\xe3\x0e\xa3u\xb1\xd4\xbb\xe1S\xe5\x97|\x1b\x1d\xa3\xcc\xc0\x8e\x8a\x8a\xdb\xa2jhU_\xb1\xff\x18tT\xaf\x1by\x9b^\xaf0c\xebW\x92'\xe7sU\xd7\xe8\xaex\xc0\x12e.\x1dzcv\x10\xd6\xbaz\x0b\x9d=U\xf3\xd0\xd6\x0fx\xb9\xf8\x83\xd9\xc8\xbb\xf7\xe4\xf0\xf1W.\x9d\x0eS\x14E\xd3\xb2\xc0\xf7G\xe5\xae=*x\x9c\x1d\xac_6E\xdb\x0b!\xaa3:hBnt\x8d\xaf\xdb\x07\xbd\x00\xde\xe4\x7fM*,\xa1}\x1e\x15\\\x03\xbdc\x16#\xe0\xe8\xbc\xcbz\xb4s\xca\x12j\x8d\xa1\xa9\xb7\x00M\xfbA\x92\xe5Aj@\x18\xedy\x82\xee\xe3\xebN\xd6]\xd1\xe3\xac\xec[\xf4\x19\xc8\x8a72\xef!\xe5\xee1\xff\xcf\xe3\xe8\xb3\xc4\xcct^\x92~\xcb\xd4o8\xd0\xe7\xed,8\x01C\x83zA\x8c%\x8eB\x8c\x98\x93\"x\xd6Q\x02\xba\"\x10\x11s\xeaE(DP\xae\xaaf\xae\x11\x98}\xfe\x11,\xcf\xb0\xbab\xb3\xfc\x8b&=\xc8\x07\xab\xceF(\x00\"\xc5\x9e=r\x1f\xa6\xbf\xf9\xcb\x9eN\xb8\xf57\xdaOG\x1cV2\xc0X\x9a6\x97\x89\xb9d`\xd3l(\xac\xeb\xfb@d\xb1'\xcb\xc8\xc4\x89=Q\xd3!x\xdc\xd4n\x95zI\x84\x14\xfb\x13$\x12n\x85\x1a\xf4\x9cA\xfaLF\xa9\xces\xc2n\x95\xc1f\xd0\xb9\xb0j@\x87{6\xb8\xdc\x8d1L\x071p\x03{\x1e\xa2=\x83\x08\x05\xf4\xbb\x0c\xaab\xf2\x0820\x19\xe3\xf2\x08\xf8\x1cB\xba\xc6\xca&\x87=\x19\xd4\xd7Pe\x1c@\xca\xdf\xab\xc4\x01\x8e\xefU\xa2\xa2\x0e\x98\x06r\x17]|qG\x83\xbd.\xcdx\xfe\xcdP\x98Fi\x9b\x13v\x94\xa9\x99\xdeP.h<\xa9d\x80/\xbfm\x85\x97\xdf\x88F-\x89\\\xf2\xc2\xe9X#\xfa$I\xdcZ\xf6\x16\xddz6\x0d\xd3\x84}b\xac/\x10\xfa\x17z\xe9H$\xadc\x907\x90\x14pA\xed\xbc\xee[t\xdf\xb4\x9f\x1bT\x90\xd9\xf2\x96l\xbb`\xd8k\x9f\xce\x1c\xb7\x04&\xf4\x9e\x98\xc4\xc23\xa8\xc3\xf6d\x88\x1eH\x8a'QzBs\x82T\xc3\x1dZU\xf5\x80;\xbcD\xf7\x0fb\x1f\x1apW\x0cmg\xc6\xaa9`\x0c\xec\xbe\xb3\x03\xfcC\xb1*\x15\xbbHp\xce\x86\xad\xde\x89\x15\xb9\xb3\xe1p\xa4D\xf94\xe8\xdf\xaeV<\xccnTnrE\x16f\x1e\x16\xb3\xa5\xe4\x18\xd4@\x89\x01a\xa0\xf2\x19\xe7<\x97$H\xf2\xae\xe8\xef\xf2\xf0C(Qf\x1a)%\xa8\x18D+X\xd0\xb6\xfaQT\xfb\xae\x88\x05\x8btCA\n\xc1\xdc\x13\xd2\x10-\x12z\xe6\x88`\x8b\xa7\xedti\x97\xedz\xdd6\xb4\x1d\x18\xab\xc1\xb2#\xed\xb5\x9b\xac \x16\xe1fE\x88:\xc9\xc1>\xb42\xd0\x84LR{\xcd_\xf2b\x8f\xc9\xef\xecg\xec\xc0\xae\x05x@B\xa6\"2\xd5\x13\xdfA&l\xd3\xdb\xb6Co\xfa\xa1\xb8\xa9\xab\xfe\xce\x81#\x16\xa5\x03{\x1b\x08\xca\xa5\xbf\x02\xbb\x1d\xda#X\xc1U\xb8\xa4\xc07y{\"\xdds\x10\xfb\xd0\xb5\x9b\x96hhO\xdfF\xb5\x94\xa7\x834c\xddF\xb4\xbd\xa2\xae\x82\xa1\xdb\x964|J7\xd3u\xd1\xf5w\x16\x90\x15\xa2eg\xb6.0|\x80\x1c/FLd\xb5b\x9b\x13U\x14T\x95\x88i\"\x98\xf3`\xd0\x10\xd3\xc5\x7f\xdb\xd2\xe0)\xc3p\xf1\xe2\xce\x94\xe6<\x99\xf9\xb1\xe9\x1f\xdf\xbcz\xff\xf1\xf5\xf5\xc5\xbb\x0f\x9f\x1c\xe5\xa0\xc2\xbf\xfd\xf0\xf1\xfd\x87\xf7\x97 \x1f\xb2\xdf\x1c\nk\xac \x95\xc6p\xb8\xc6\xf3\n\xc5%Q\xcf\xa7JU*\x07\x99\xaa\xa1\x90\xc6g\xdb\x86\x19\xe8l~\x911w|\xe4\x19\x12Xv\xe2\xaf:\xd0W\x9a\xd1\x0d*\xba\x9bj\xe8\x8an7i\n\x9a\x9ea\xdc@\xd9\x94\x8d\xe7\x8d\xfd\x06s\xc6~\x83\xf9\xaa\xd8BS,\x83M\x87\x1f\xaav\xdb\xd7;s N`Y\x90G\xbe\xe8\xaf\xba\xa2\xbcgGy^VK\x98\xe8Xhy\x9fi\xed>\xcdHD\x0d\xfb\x8d\xf4\xa1\xbc\xab\xf0\x03\xcb\xd0\xd9n\x07\xd2\xd1\xb6\xf1\x9dh\x8c?\xb1/\x8f\xcej9\xd0\x1e\xf7\x17\xbe\xbf\x0d\"5\x0b\x17\xe48U\xd9\xbf\x9fM\x87%8u\xa2x| \xad<;\n\xaf\x94\xc6\xf9\x16Sb:\xef\x05\xa6\x15\x11\x0f\xef3_:Us+\xca\xd3\x9d\xad\x8a\xaa\xdev\xf8\x8cl:\x1b\xdc,\x9d\xe2\x0e\x19\x93\x90-\xc6]k0\xe4+\xa9\xfe`\xc8\xebRM\xc2\x90\xd7\xc7:\x85\xd0\x13X\xbb\x10\xfe4f\xcf\x89\xafq\xe8\xdc@\xf4\xea\x87(\xf0\xe6\xce^j!\x864\xf5h\xf5\x11C\x98\xdbg\xcdD\xfd\xf1)\x0cfp\xbfgk\x1c7e\xb1\xe9\xb7\xf5\xc8\x82\xd88VtKd\x8aD\xec\x87\x16\x82\x0e\x1b\xd5\xcd\x0bk\xebI\xff\xcd\x18\xc3b\xc5\xc2\xd1T\xd5\x91U\xa9\x1d9a)\xad@b\xcc\xf8\x15/N9\x87\x84\xeb\xd8\xa2\x84\x8f\xe3\xb6\xb1\xce\x85\x10\xc8\xe4\xc0\xe4\xa7\xc7\xde\xb8|\x0c\xd2\xb3x6\x85\xe7W\xfb\xc6>J\xe7\xa3\xdf\xb3]Qk\x88\x0eU1\x0cEy\xc7\xa8\x8f\xf0\x7f\xb2F@\xd4\xae:s\xf9\xfc\xa2\xe70\xeb\x15\x12Ed\x9c\x03.\x91\xb6\xe1\x87N\xfe3\x07\xe0\xaa]\x1a\x9d\x01I\xb1i\xf5\xeb\xf0\xa0\xb4-`c\x11zZ\xa4\xc0\xe9\xe7\xc88Q\xc7v\xac\xf1e>\x00\xd6\xd8\xf1$\xc6\x83\x04\x8d\xf5\xe6\xdc\xa0\x9a\xf1m\x17\xdf\x8f\x0d\x89\x848I\xc3\xd0\x04u\x97\x9d\xc2\xac\xce\x96C\xf6WbEt\x98\xbb5\xe8OYz\x9c#r-\x91\n\x89M\xbb\xb8:b\xf0\xa0\x83k\xef\xd9\xcew\xb2;a\x07\x13\xb9\x0fRs!\xc04\xaf\xa2C\xfb\xe9\x88\x17\xc4\x96A\xef\xa1\x13v0Z\xec\x89\x90\x14\x14\x82\x1d\xe4\x9ad\x0er\x10 \x11e\xa2\x19\x04m\xd6u^\x83\xedQ1\x83*\x0f>\x8b\xae\xf7\xa4\x8b\xb3&\x8c3\x06\xe7 \x86_P\x9fC\xb4e\x00\x19o\x8f\xb3\xc0\xc8\xf2\xf7\xde\x0e:3\xff\x02\xd2\x83\xcd\xe7P\xa9\x1c\x8be \xf03\xcf\xbc\x0c\x12@\x0eC3\xa0_\xa1;\x8e\x97\x90\x1f\x1e9\xd3J\x05\x89\xd9\xad\xd5R\x06u\x83\x04\x15KV\xb3Z\xad]\x9am\xba\xea\xdd\x98\xb1Cg\xb4\x9dt\xae\xd2\xf0\xe1(\x1c#\x8e\xe2p\xe2\xe8\xd1%\x92\xbc\x17@\xc4\x02\xe5\x11\xb6/\xa0\xc7\x97\x8du\xa7\x08$\x91\x86)7\xe9\xe4\xb4\xc8\x83\xfb?K\x85\x9a\xe4\xc2z:s2\xa4\xf5t\x86\x91\x1f0eB\xb1\xe7,\x14a\x87\x9es\x834\x07\xf2\x9c\x91r`\xcd\xc7\x17t\xa89\x080\xd7\x8aYjMI\x15*\xcbv\xb3\x9b\xac&^ER\x87\xdb\xe2~\x8c}L\xec\x83\xbb\x93\xa3`\xa3\xb1\x03Y'\x8f{\xca\x8c\xee\x91\xa0\n\xc0h~\x15`\x8d\x9a^\x13\x18 \x9e\"\xea\x02#\xe4\xba\xf1\x9c*\x18\xed\xda\xb3\xa7N0\xfcu\x8eb\xc1\xc8\xe5\xc4L\xec\x9c\xe6\xc9\x0c-\x1e<}\x9a\xa3\x800r\x16\x11Fc\xef\xa0\x94j\xee\xee\xcd.(\xac\xd1\x93\xbc\xa8p\x81^\xe4*,\x8c2\xf4DVh\xde\x8e\x88\x97\xd3\xfaa-6\x8cf\xf4cv\xe1a\xa0'\xeeA\xd0t6\x9a\xc1\xfc\xdcb\xc4\x1a\xb9]\xbb\xed\xbc\x05\x89Y\xd7\xd0\x14*g\xff\x1e\xe6\x97$\xbe\xdc\xe0\x92U\xaeg\xd21v\x1e[\x9dy\xe3\xe0\x03*\x1f\xd0\\\x05\\\xa6\xbe\x03\x0b\x9b\xa7\xceS\x89B\xc88\x84\xe4\xe0.\xe4\xf0\xa0~\x01\xf3&\xfdK5\x00\x13\x99T\xa6\xa8\xb3)\xd5\x93n3\xdam\xd4\x80\xde\x14\x91E\xeb\xb5OC\x0cn/\x0f\x012\x0c\x12W\x94]\xec\x14\xb3m!O\x8bm2x\x1f\x8a\xaej\xb7\xcc\xff\x81:|[tK\xd2`\x01N\xf9*h=\x8f\xef\x87/i+\x12&|Jr$\xc9\x98<\xdf\xbc{\xa8\xf6E\x83\x0e\xc9\xd2\x82\xc7\xed\x9f\xa9\xd5\\\x83\x9e\xa2\xd1h\xefa7~\x84Amz*\xc3\xcc\xaasv\xe1e\xec\xedpW5\xb7\xb6\xd3P\x12}\xe9\x9flBB\xad|\xc67}5\xe0\xebmW\xa7\xb4\xf2\xe9\xe3Od\xefZU\xcd\x92&\xa7ci\xcd\xf4\xe4\x99U\xd96sZ`\xb7H\x08\x15AU)\xbf\x87\xd3\xee\xef\xba\x16\xfdT`\x90k\x15\xb9\xea\xa3{\xf6\xf0$q\xd7\")\\\x0e\xde \xf4kP\xba\xff\x90\x04\xff\xfe\x94\xfe\xfe$\xfe\x01i\xfb=\x89\xfa\x03R\xf3{\x93\xf1\x87\xa4\xdf\x0fI\xb8\xefM\xb1\x1f\x9eT\xdfe\x1c\xa6%\xceg\xe9\xf1\x15B\x16\xc0\xed\x1e\x92\xe3\xef/\x1d~\xde\x04\xf8\x8f\x90\xf2~\xcfI\xee\xf7\x9e\xd6\xfe\x91\x12\xd9\x1f[\xea\xfaGMV\x7f\xb8\xf4\xf4\xdc\xfc\xa2\x99\xde\xaf\xc8\x18\x16\x1d;7/\xab\x15\x0d\x8f\x0d4\xc3{?&fo\x1b \x84K\x8b\xbbn{\xc3\x9aS\x14\xdc9+\xca;\xe5M\xe5Y\x89y\x0e Q\x10\x95\x12\xe6.\xd4\xa2\xa1>\xceJ^\xcd\xd2\x8d\x14\xca\x91\x10\x99\xee\\\xceb\x04D\x9f\x9f\xa6N*\xb1G\xd9\x06\xefQQ\xd7\xedg\x9eb@\xf4\xf5\xa6\xe8E\xe1e\xe5\x86\x0d`S\xe8\xc25-\xf71g\xae\xf0\x1dW\x1d^\n\xb1\x9f\xa1\x0e\xf7\xed\xb6+\xc9\x7f\x8e[\xc5\xe8L%2\x87\x80\xd7\\\xd3\xc9\xc1\xbf\xe0\x93\xc4G\xd9\x83\x92\xff@\xe18\x9f\xe9\xe8\xf8 \xcf\xf4\xb2\xfc\xd3w\xb8\xf8\xc7\xe7OqQ.\x9f~\xff|\x85\x9f\xfe\xb9X\xae\x9e\xbe(W\x7f|\xf1\xfd\x9fnV\x7f*\xbe\x05\xbc\xd2Jc\xb2\x13Wq\x81\xb2\x97\xc9\xbb/~m>\xdf\xfe\xe9\x8fM_\x0c_~\xd8\xd4?\xfcq\xbd\xfd\xfc\xfc\xe1\xcf\xbb\xa1\xfe\xed\xbb_\xb7\xdf\xfd\xed\xcb\x1f\xd7\x82+\xe15R&\xb91\xc3uo\x94].0\xbd\x10g\x14\x18\xfdUz\xee\xf4\xbaT\x8a` \xcf\x9b\xea\xa5\xcc\xd5Q\x99ZX7\xd9\x17\x89\x9d\xa4\xc7}\xe9[\xbd\x93V\xbfhl\xfff\xfbB5\xc7\x84}44\x1fh,\xa3s\xfd\x9e\xd4\xd3\xa92\n\xfb<\x1dj\xf1\xe3\xd4\xb6\x12T\x93\xfc\xa0\xfc[\xc9\x1b\xaa*\xd68\xd7\xa8\xd42\x13k\xb8\x06\x1c]B\x9a;\xc6\xe8/\xf0\xa6\xe8\xe0\x98\x0c+\x93o\xc3\xc2\x8e\x95\x8a\x9d\x92A-s\x15\xdc\x99\xde$\xf1X}.\xfa\x1fgy\x97\xc4c\x95!\xf2B\x8a\xeci.\x9c2D\xd1^(\xe8\xab,\xed\x06y\xa7\xc4c\xf5R\x89'\xae\xf50\xaf\x95x`\xef\x95x\xe2[6\xbdY\xe2\xb1z\xb5\xc4\x03\x19\xb6\xe2\xb1^\xaawr\x98\xcb\xeb%\x1e\xbb\xf7K<\xf9\xfb\xe0\xba\x1b\x1e\xe4%\x03_\xf6\x94\xc3\xf4{\xcd\xc07\x9d%0\x03\xbch\xe0\xab\xf6\xb2\x97\x01^5\xf0UW\xa9\xcb\x10/\x1b\xf8\xae\xa7\xbc\xa5\xd7\xeb&\x9ep\xef\xdb\xf4\x85\xdd\x0b'\x9el\xde8\xf1x\xae\xc1\xef\xc1;\x07\x92\xce\xea\xa5\x03[\x98\xed\xad\x03\xa9\x1e\xc6k\x076\x9d\xdf{\x076\xb3\x0f/\x1e\xd8\xd0\xe1\xbcy`\xf3G\xe0\xd5\x03\xf9:\xb4w\x0fdb\xaf^>\xf1\xb8\x93+\xccp\x02\x82\xf4d\xc7\xa0x\\\x1cdr\x14\x8a\xc7\xe60\x14\x8f\xc3q(\x9e}\xd8(\xce\xf3\x8b\x7f\x83\x9a\xe7h\x04\x08\xb6\x0dp0R\xcd9\xdb\xa0\xcdp@\x9ac!\xdc\x911\x8e\xc8\xe9Q\x8f\xc6\xd0\xa1xL\x03\x01yn\x80\x9c\x10*T\xc3D\xb1\xb9\x87\xca\xfcz\xc2n\xc4_9\xb48\x9c\xb4QJ8\x8a\x97 &K<\xe9\xe7p\xff\xd6\x18/k\x8c\x9f5\xca\xd3\x1a\xeck\x8d\xf2\xb6F\xf8[\xe3<\xaeq>\xd7\x08\xafk\x8a\xdf5L1\xa4\xfa^-\xc4\xa8G\xd6\xe7}\xdd\xab\xff\xf5\x10\x1e\xd8}\xf9`\x1f\xd5\x0b{0?\xec\x01=\xb1\x8f\xee\x8b=^o\xec\x91\xf8c\x1f\xc3#\xeb\xf3\xc9&{e-\xd4t\xc0\xe6\xf4\xb8\xf9(\x14\xdf\xec\x8e\xb7\xac\xf8gW\xdb\xba^Uu\x8d\x97\xe8\xf3\x1dnP_\xdd6\xf4N\x12\xdc\xed\xaehz6)\xa2\x8f%\xc2\x8d\xb8\xcf\xa3\x9aE\x0e\x83\xafF\x0b\x15\x89\xb24,\x89\xd3\xad\x03e\xcb[\x1ffd\x0eR\xc9\x95Q\x9c7USt;\xf4d*\xc0R5\xfdP4%\xb0\x14h\xc9\xa2\xd4\xc4K\x9c VJ\x89\xa7\xf2\xa0%\x90\x84\x16S\x87\x99\xa5l.nj} \xec\x83\xf0\x8a\x7f\x9b\xc5\xed\x9c\xc1\xf1\x1c\xe5z\xb6\xb8\xec\xc1\x8c\xc4zx\")\xf5\x1dH$\xdc\x13m\xd0\xd3\xd2\xb3\xb81 \x89\xde\x18\x9d\xe7\x84i\x98!\xff\x97\xce\x85\xd5E\xedT\xb8\xea8[\x13\"\x19\xc3\xf4\x98i\xf0,\xcc\xc4\xfa\xadCR\xdb\x18M\xa9?<^2\xbc\x00\xc6\x90#\xc9\x11\xf0vt\x82#\xf5\x8d=f\x843\x1bJtt\xc7\x8fx\xe2\x00\xc7\xf7*\xc9\xf7\x1d4\x0d\xe4.\xba\xf8\x02\xf7-{\x1e#P\xabh\xda\xc4\x9a\xe3\x08\x85W\xd4U:\xe4\xc8u\x04k\xfc^MLa\x03\x07Zs\"\xd9\x91\xfe\xa7\xa0A\xc6\xa0\xc1\x15\xd24\x9e\xa0n\x87\xf6\xe8\xc0\x854}l]\x90\x99\n\x9f\xc2X-\xdd\xb3i~\x9d\xf1\xcd\x8a\x1c\xc2\xac\x93H\xd4\xd6{\xc2\xef\xe9\xb5j\xc9\xe9o\xd0\xd0\xf2\x16h\x04\x8a.\x14\x0b\xb1M\xd1\x15k<`H\n\xee~\x9d#\xea2Z\x892N\x8a\x87\xa3/\x86\xaa'*\x98\xd5\xb1\xd9l\xea\x9d\xfd|\xcf\x84{il\xd9\xbc\xb8N\xc1_0\xbeu\xae\xf2Y\x1a\xfb\x9c\xf9\x12G\x85C\xab\xd5A\x85\xde\xc4z\x99\xb4\x02H\x8f\x977\xa6\x95\xddF\x95aN&vc\xeb\x9a\xb2\x1e\xcd\xf3\x15\xf7\x1b0\"\x93\x9e\x84\x12\x8f\xa3'b\xa0\x1c\xb5=\xdbN\xd4~\xfc\xe9\xe2\xf2\n\x9a\xfa\x1e\x19\xbb\xee\x18\xbc~\xf3\xf6\xe2\xdd\xc5\xd5\xc5\xfbwaQ\x11\xf3\x0bg9S\xf3uGGm/\xd3~\x03_\x8cQ\x9d\xb8N\x84\xd8\xe2N\xc1\xc46h\x94\x9a\xa3\x05K\x9f\xf1\x02\xa6\xacr4\xac\x16\xec\xd26y\x00\xaa\x94\xd2\x8d\x91)N^\x9e\x9a\xfb\xc7\xefp\x87\xd1\x93q\x97\x11\x91\xeb\xa6\x1dF\xcf\x8f\x15\x01\x0c\x8f\x91\xc9\x0fP\x9bTT\xc9\x16\x93\xde\xa8O\xaa\xedzq,\xd0ib\xe3\x83\xfe\x11f\xa6\xd8A\xac\x94m]\xe3R\x1c\x80\xe9\xab\x93[\x1c\xdd\x15\x0f\xb6\x0d\x92b\xc0\x88\xc2\x02\x8b\xcb\xf3[\xab\xd5M\x8d\xaf\xb9\xb7o\x0f\x86\xe2) \x1e\xf2\xf2) ~\n\x88\x9f\x02\xe2\xa7\x80\xf8) ~\n\x88\xff=\x05\xc4\xaf\x94\xe9&Y\x1c\xfaa\xe4\x0f\xe0\xe7@7\xa0\x93\xa1\x1c\xc0T\x0f5,\xf6h9,\xb2\xa4\x194\xca\xce\xae\xfc<\x1b\xa3\x9f\xec\x00\xfb\x8c\x870\xb5/#b\x96\xe0I\xcbUC\xb5\x9f\x11\xaf\x04H\x84G+O\xa5\xbaN\xa5\xba\xe2\"\x94\xbe\x82?Z3Y\x82W\xf9{o\x0fu\x99\x7f\x01\xe9\x9dJu\xb9\x08\xba\x05\xb0\xc7\xc0\xac\xdeLrX\xd6\xd7\x1f#\xccy*\xd5\x15\x84BA\xfeqF\xfe)\x8e\x02\x05\x8b\xb2\xa1RP82\x05\xc5\xa1S\xd0\xa3K$y/\x80\x88\x05\xca#l_@\x8f/\x1b\xebN\x11H\"\x0d\xc9b\xd29\x95\xeaB\xfb\xeci\"\xda\xc5$4\x0b\xf1\x02\x1cs\xbcu\xbbz\xabu\x9a\x05\xedbd\x83t\xd4\xf52\x91.z\xac/\x06\xe9rd\xd5\xbf\x9c\xd8\x15\xeb\xbct\xcfF\x9dhX\xceUJ7)\xef\xaa\xaby=0U\xd6\x8aO\xd3\x0b\xe3\xfe\xda\xd2?\x15\xb5\xfc\xb7\xf1\xf2[/\x1c\x9f\x82\x85\xa4\x0d\xe4\x1e\xef\x02\xd7Z\x98N\xfbw}\x11\xdecv|\xe17H:\x14\xb7X\xb8v\x17\x0d\xfe2\\\x93\x97\x87\x16\xdd\xe0[\xc3\xec\xfcu\x8b\xbb\x1dY\xae\xa4\xc7\xe4e\"\x14\x8c\xd6m? \xbcZUe\x85\x9b\xa1\xde-\xd0\xfb\xa6\xde\xa1\xb6\xa1g\x8dv\xb5bgW\xc2\x86\xbe\xc2\xef\xdam\xbd\xa4\x17\xff\xf0\xa0x\xab\xe8G\x91R\xd9V\xcd\xf0\xc7\xef#\x94\x13g\x8d\x8a\xa6\xd9\xae\xe9\x89\x95\xff\xc6\xceFECx\xa3\xc7\x17z\xd1\x9a R\xa3\xb2m\x8a\x87\xa2\xaa\x8b\x9b\x1a/\xf4\x18\xc7\x05\xa5^\x13\xfbc\x14\x10\xa1\xdd\xa0-\xd1?\x84`\xac\xb4\xf4&L\xe1\xd5\xd5\xba\xda\xbb\xech#B\x9d\x0f\xedP\xd4R\x9c\x97GN\xd9\xd4\x18\x92L\x91)\x9a\x17]\xb0\x91PI\x0d\xe81\x0e\xe6\x17n<%5\x81\xbe\x9e\x1fkd\x8f3\xe6\x969\xee\xc8\x1e\x87LQ\x00\xa2\xf4\x94\x0b=w.\xf2\xb0\xc8%{\x0e\x9d\x0b\xfd\x11\xd3\x8d\xe7\x8ct\xb2\xe7\x94u\xfct\xc9Z\x0f\x9d\x84\xbc}\xbadmyk_qV\x80x\xf6h+\xd0F\x96\x98+@\xf7p\x91W\xa0\xf1\xfd\xc4_\x81\x86\xf6\x15\x85\x05\x9a:l,\x16`\xe0H\"\xb2\x00g\x8f\x11\x97\x05\xd8\xd8{t\x96=Gv\xc9\xda\xc2G\xc6\xf0.{|5!\xbd\xa1^\xf6\xec\xcf\xd6\xc9p\x1d25\x1c\x0c\x12\x13!bgP\x98=\xf6\xa1\xcc\x13 f\xcf\xac01{\xf2\x06\x8b\xd9\xe3\n\x19\x03\xad\x02B\x9a\x19>6\xe8Y\x82\xaf\xc6\xa8%:\nJkX\x99=\xf3\xbc\x04>a!\x9d\x85\x98\xf83\xac\x19l7 \xfd\x91i\xf6\x1c\xb8\xc3!!l?\x15_w\x9dAW\xf6\x1c\xba\xdfqAo\x90\xa0/\xd4l4\xbb\xc7K\xde 1r\x1f\x1dOg\x12\x072\xb23\xd1\xf1t\x83\x82\xbd\xde$\xf2\xb0\x93!\xc2\xae\xd0K\xb9w\x08\xf9\x83G[J\xdc4\x04\x1a\x1f5\xd0\xb1\xdd\x19<]~:\xf4\xe5'\xf6@\xb0\x00\xb4Gh\x00r\x19\x05v\x93\xc0\x80 \x9fJq\xee\x0c~m\x93\x0e\x1b\x00\x88\xcd\xc3\x0e\xc0\xdcA\xedX!\x05\xc8\x02+@\xa1R\x04B\xe4(H\x8ey`\x06\xc8\x035@\xb9\xe1\x06\xc8\n9@ \xec\x00\xc1\xd0\x03\xb4w\xf9\xa6C\x11\x00b\xe8|\"\x8bn\x18\xba\xeaf;\xd0r[\xcc\x99x\x83\x89\x06in\x0d\x13\xfc\x86yL\xb8\x16\x12*\x9a\xcc\xac\x92\xecv\x80\xab\x90\x1f\x1diA\xad\xddu\xd7\xd6\xf5v\x93'`\xf6W\xae\x8a\x8a\xba\x1e'\xbar|\xa3\x02\xaa\xc8\xf1\x97Ox\x1d\xea\xa5\x11T>\xfe\xba\x17\xcb~U\xe1zi\xf8a\x99\xe8\xea\xbeE\xb8)njL7.\x1af\xe0\xfa\xefG\xea\xb5d\x8cpJ\xf4\xae5\xe3\x05^\xa8\x96\xe8\xaf\xd2u\xea\xc0\x90\x8acvm;H\x05\xd2\x04VI\xae\x90&4\x16ac\x89n\xe4\x85Lc#\x1d\xf3[iL\x08\xd7\x85+e\x85\xf2N\x14\xc2H\xd2k#\xe9G\xf0\xab\x80\xbdAn\xf8\x8f5\xe1\xc4>sM\x84at\xc6\x97A\xe6\xd8\x7fD\xe4;\x88dp\xa2\x8f\x14\x1c\x0d\x94\xe8\xdb\xce\xe8\xbc\xfc\x10\xa1\xb0\x17\x07\x03\x11\x02\x02\x18\xf0CU \x81\xa9\x8b\x0eF\xfe\xd9u\x82\xf9U\xf4Z\xd4\xa9\x9d\x92\xc5LONn#V1\x00\xbfRII\xff\x8a\x98\xb3aL\x1b\xdb\xad\xb3itJ\x16\x13i'Z\x04\x18\x04ns\x0e\x05c\\i\xfc\x92\xd9\x1c>\xd8\x9a0\x97\x04\x15W\x04\xe5\x94\xe2%\x84\xd1\xb9\x98\xaeS\x8a\x97S\x8a\x17\xf9On\x95\x92\x07{uJ\xf1\x12\x87\xab:\xa5x9\xa5xa\xcf)\xc5K\x08\xea)-\xc5\x8bnt G2\x17\x19%\x12 \x0cIO\xd6\xb2\xef\xf4,\xa5\x82@q\xd2p\xd1AV\xdf {\xac\x9a\x95=a\xe9X,\x81\xd5\x19X\x15\x90\x1e\xa1\x92\x84Xa\x8f\x1b\xb7\xc2\x9e}\x8a\xc3vD\x0d\xc1\xb3\x80\x04i\xd4 \n\xd5\xc2\x1e\x08\xdb\xc2\x1e\x9b\xf3\x9f=\xde\x9b\xa9\xd6\xe46\xfe\xf46N\xe4\x0b{,6\x07``\x7f\x08\x1d\xa0\xb1}\xe2t\x80\xe6\x0e\x8f\xd6\x01\x988\"\xcc\x0e\xc0\xddc!w\x00V\x0e\x80\xdfa\x8f\x0b\xc5\xc3\x1e\xfb\x99Syk&\xa2G\xa1b\xd5\xe9\xe9\xe8\x1e\x0bAgz\x98\x90}&\x11\xef\x03\xd2\x12\x18\xa0\xd9\xa8\x1f\xf6\x0c\x89\xd8\x1f+o\x11\x08 \xf6Xq@\xec\x99y \xb0\xda\xa4!\xe3\x96\x8e\x12\x02\xc9Q9\x87a\x85\xd8\xe3E\x0c\xb1'GO\xd30D -1}\xe6\"\x89\xd8\x93\x8c'\x02\xa9q\x8cQ\x02\xaa\x88=~l\x11{|\xfa0dL\xd2\xd1F 9\xa1t\xa20G\xecID\x1e\xc1\xb3\x83\xf1j\xe2\x8f\xd8\xe3\x13\xcc\\,\x92A\xf0f\xe7B$\xb1G\xb8\xaff\xe4E\xca\x00\x92\x90\xc8\xe9R;:\xb7\\&\x90\x13{F \x1e$y\x91\xd6Z\x08l\xc2\x9e\xb0\xc6\x01\x81bOF\xc6-j\x04`\x04\xf9\xb0RNB\xb6\xbe\xe6H24Q\x8a\xc0O\xd8YJ\x94z\xb8X\xa3\x81\x14\xf2\xc7 \x1cK~\x01\x06e\xb1\xc7\xc7\xa3I!J\xf7\x18\xf4,\xbe\xe3\xac\x9a\x08\x04n\xb1\xe7P\xeb$\x01\xe1\x05R;\xa5c\x83\x1a\x91\xfe\x95\xb84\xb3\xf7[c \x9d\xd2\xb1\xe9t\xfe\xf3\xa5cKD\xaf\x01\x94\xe8\x8b\x96\xbci\xa7LiQ\x08:\x8d\xdep\xca\x946\x17a\x87\\\xfb\xf5)S\xda)S\xda)S\x9a\xf4\xf8\xe5\x9b\x8e\xe8\x03\x88\x9d2\xa5\x9d2\xa5\x9d2\xa5!?V\x109BB\xe9\x98A\x8d\xd0)S\xda\xf4(\x1d9eJ\x1b\xbf\xf9]fJ30\xa8\xc8\x95\x13-\x11\xe7\xca\x8eSL\xc4\xc6\x84\x05\xd0\xad\xec}\xc5\x13\x04\x8e\x080E\xed\x10\xcbP\n.58V\xfd\x13;\x89\xa5B\x05\xdd\xb7\xc8\xa8\x08\x98B\xd9a\x01R\x90\xc8\xf1\x8e.F\xad\xa1\xadY(\xf69\x17\xd6k\x89#:,\xa3$@#\x04c\x14\x84b\xf1\x89n\x14\xa2\x83s\x18q\x18\x8c3\x0cE\x17\x86a\n\xc3\x90\x84\x81\xf8\xc1\x00\xd4` V0\x08!\x18\x8a\x0b\x0cE\x03\x06a\x00\xe3\x90\x7f>\xdb%\x0d\xe5g\xc9\xb1\xe5\xc0\xf6\xed \xd1\xb7_\x1c_~\xf4\xde#a\xf6\x0e\x80\xd4;\x08>\xef\x11Qy\xc7\x88\xc5{t\x04\xde!qw6\xb4\x9d\xeb\xec6\x07Y\x07\x1b\xae\xe9(:-G\x96\x81\x9d\xe3\xed\x8d\x90\x16\x1ep\xc1t\xbbg\xf5I\x86\xb1T\x1aa\x9e:\xb5\xab^\xa7\xa4\xd6#\x06\xcd\x00\xa8k\xe43\xea\x1f\x11\\\xcb8,\x0eN\xc1_p\xb9\xa5\x96\x1c\xb7D\xce\x08\xfd\xaa,\xeaZ\xf6N\x95u\xd1\xf7\x84\x1e\xff\x8d\xbf\x9c\xd7\xe6\x14\xb6\x10\xf39W\xb8f((\xa2v\x89V/k\xea\\\x1b'5\x082\x93GD3:\x8b\xed\xb2\xb2\x85\x1e^Q\xabu\x89nvgh\xbbY\x8e\xff=Tk\xdc\x0f\xc5z\xd3\x9f\x8d\xb1$v\xaea5\xcd:\\\xd3w\xd5j\xc6\x11GUf./\xafI\x93\x91'3\xf2\xc9S\xc2\xa0\xfa\x19\x9b\x08\x03C;\xe2g\xe4\x05\xe6W\xa1\xe3\x8e\x9b\xa1\xdbQ\x83\x9d\xb7\x0c\xf0r\x13zp\x96\xda\xb2\xd8\xccL3s\xe1\xf2\x83}\xd9vr\xab\\\xdc\x8f \x81\xba\xe8\x07\xd1<\xc0Pn1Ppje\x95\x03\x9f^P\x9bU3\xe0[\xdc\x812\xb0\x1e\xcf\xc96(\xc2%\xea\xd4e\xecT=\xaa\x9a\xb2\xa3\xdb\xb2X=\xf4:4\xeb\xbfD\x92{\x8b\xe2\xa4!7\xcf \x00\xc0J\xcc&G\xd56\xcfX\xb3\xb4B\xb8\xa1A\x155qN\xd6\xf1[\xa2\x1ezT\x16\x1b\xa6\xefA\x9c\x07\x1d\xe0q\x0cZ\xb4.\xee\x95~\xd1\x01\x19+>5K1K\xf0\x0e}\xc6\x1dF\xebb 8\x12Ff\xf8i\x7f\xc2\xe8\x01\xea\x14\x15\xb7E\xd5\x106&\xc5\x05a*\xc8;\xd4\x9d <\x1eW\xd2\xe1\x90\xfa~\xee\x8a\x07,Q\xe1}\xa5Y\xcf\x94\xba\x9b\xa2\xf2\xf7\xe4b|\xf7\x9eXm\x7f\xe5}\xd3\xdcD\x1f\x95\x8c\x8b\xa8\xe0\xb8C:E&\xb4a\xa1v\xf9\x8c\x8aW\xf4\x9f\xce\xe6uK\xdb\xf4\xb9F.\x96\x17c\xa0u\xcf\x0e\x12=@=\x92BV\xc8\x0b\xef\x90\x06i\x99\xbe4P,\xb3y A\xa3H\xaf\x03,A\xf8\xaf\xf9l\x99\xa0/\xe9\x97(\xf6\xf8\x7ffgP\xa2;YV\xd2o\xc1L\xaa\x18\x15\x903\x90\x89P\xd4\x89\xa3\xe9\x00\xa1\x80M\xfb1\"6Q\x8d\x1c\x94\xad7\x01\xa1\xa2u\x95\x0f\xd8\xe6\x01\xa9\\\x86\x17\xa9\x96\x93\xee\x00\xa2\"\xa6@\xa2l&\xc1J\xe0\x86\x14\xe6\xde\x17D\xed\xca\xa1<\xe5'\xa4\x0f\xcc`\x94\xc2\xb02:/%Y\xf8\x8a\xb42\x10! \x80\x81\x90ui\n\x8cq\x01\xe1\xb2\xd8n9\xc1\xb2\x1e\x8a\xaej\xb7l\xed\xa1\x0e\xdf\x16\x1d\x0d)\x16\xe3\xce\xe5N.\xc6^\x8a.\xd0\xc2>\xd3\xf5T\xd8R\x05\xf6o\x940\xeb\xec\xc1\x8e\x14j>\x1f\xea\xcc\xe0\x87FM>o\xab ( h\x01\x05B\xd0\xa9\xeeIt\xfc\x04\xa4w\xaa{bx\xa4\xfd\xaf\x9e\xea\x9e\x9c\xea\x9eXIg\x8f\xcf\x18-d\x89\xd1\x18T\x0f\x17\xa71\x9a\xdeO\xac\xc6hf_\xf1\x1a\xa3\xa1\xc3\xc6l\x8c\xe6\x8f$nc\xf0\xf5\x18\xb1\x1b\x83\x89=\xc7o\xd0\x7f\xe2\xba'\xb9b;\xc8\x88\xef\xa0\x00\xef\xaa\xd1\xe5\x8c\xb1\x1e\x04\xc4{\x10\x14\xf3A{0\xbd\xe7\xc5\x804bl\xf6\x02E\xe4 7![\xc8 !W\xd8 9CO\xc8s\xa4K\x8dI\x01\xa4\x8c(\x15\xb2E\xaaP\xa0@\xf3D\xac\x90C\x04\xd9\"W(*z\x85\x9c\xda-g\x14\x0bA\x91,\x947\x9a\x85\xf2F\xb4PXT\x0b\xa9Q\x8d`\xaf\xb9\xfaI\xd4\xc5t\xd8i\x9e\xe61\xcf\xe4\x86\xcb\x16RC\xee\xb0\x1a\xca\xc9[\x98\xef\x1c\x08Ix\xc3l(+\x9bQ\x1et/\xbb`\x84 \xcdg\xd8Pj\xe919+!\xa8O\xc9\x91\x01\xe9\xfb\xb0\xd8\x80\x93\x8d\x08y\x86\x89\xcd\x1f2\x08\x937\x18\xf41/5{\x98\xca\x18\xe4C\xd6!M\xb2v\xe1\xa0\x1f\xf2\xed\xed\xd6I\x8d\xf2\x05\x00\x91/\x08\x88\xf2s\x19\xa6\xd4\x800\x17\n \n\xa2=0\x1c\xa5\xde\x9c\x8c\xc3I%\x9c\xfc\xe6\x0e\x16\"G\xc0\x10%0\xe3\xd7\x02\xf6\xc0\xe1\xe4\xa0\xb0\xa4\xd1\xb1\xafy\xf0\xc39F\n\x1c(K\xb2Yt\xde\x02\xb5n\xe2.\xa6\xb7f\xd5\x02p\x0f5j\x80\x920D\xbd\x07\x9b\xc7\xdb\xab\x10\xad\xe1!\xe1\xec\x93\xfaC\xc4^\x99\xab\x7f&\x03\xa2\xaf\xe6_4Z\x9a\n\n\xefw\xaae\xe2\xe9M\xa8~J\x1e\xaf\x88\xe1\x89\xe1\xdb\xaf\xca\xe2\x07\x11@H\xe8(LG\n\x1bq\x04!\xa7\xcbv\x8d\x11\xfe2t\x05\xf7\xd1\xae*\x9e8\x84S\xab\x06?\x80\xe2T\x9f-\x84\xd1\xb9\x99dN\xf5\xd9N\xf5\xd9\xe4?\xb9uP\x9e\x8c/\xa7\xfalq\xd9\\N\xf5\xd9N\xf5\xd9\xd8s\xaa\xcf\x16\x92k%\xad>\x9bn\xeaD\x96j\x9b>B\x1f?\xbc\xe2\xa4BSY\xa4\x15m\xe3\xdf\xea\xc6C\xde\xfc\x0e\xbc\x15\xfd\xf0m\xf5-y\xf2\xb2Z\\\xe4\xecq\x9e\xe7=\xee\x107v\x95=s\xe8\xfbV\x13{R1\xad 1)\xc9\x07\x14]g\x0f\x88oe\x0f4\x1d\xa6\xc7[\xea\xe0T\xfb,\x01\x1b\xeb\xa0u\xaa}\x06\x81\x0bC\xdf?\xd5>\xf3}q\xaa}\x06N\xe0\x1ch\\\xa0\x81\xbd`r\x81v\xb2!s\x01\xda\x87\xc5\xe7\x02\x0c\xec\x0f\xa5\x0b4\xb6O\xac.\xd0\xdc\xe1\x11\xbb\x00\x13G\x84\xdb\x05\xb8{,\xf4.\xc0\xca\x010\xbc\xec9\xd5>\x83p\xbe\xec\xc9\x89\xf6e\x8f\x89\xf9\xe5-\xb9\x8d,\xb7X\xd2P\xc0\xb0\xfc\x052\x18\xc4\x02\xb3\xa7\x84\x10\xc1\xe3\xe7{>\xd0\x94\xf1Ha\x90\x8e\x81\xff\xb6\x9fh\x00\xd40{B\xf8MD\x10\x83\xb4\xe0\xb43\xd3\xe39&\xf9\x0eInd1{\x02\x0e\x03~\x1c-{\x82\xd1\xb40\xd6\x98=.\xc41{\x028\x0e\x84\xd6\xfa\xd1\xc7\xecqc\x90\xd9\x13\xc0Uv9:P\xc9\xecqa\x93\xd9\x13\xc0v\xa00\x03p\xca\xec\xb1\xa2\x95\xd9\xc38\xb2a\x96\xd9\xe3F.\xb3\xc7\xb7\xf1dE1\xb3\x07\xc42\xb3\xc7\x8ahfO\xf80\x04\xf6'\x02\xf8l\xa5g\x02\xa2\xd9\xe3\xe6$\x19\x1c\x0d\xcb\xad\xb8\xc7\x91\x10i\xf6\xf8Ty\"\\\xda\xa0\xa3z\xdd@\xd04{R\xa1\xd3\x06!\x18J\xcd\x9eT@\xb5AH\x02X\x87\xc2\xaa\xd9\xa3!\xa5\xf5 \xef\x1b\x16\xed\xf39\x18&\x85\xa0\xbe\xbb\x1e\x9dw\xd9\x02wM\x83d\xb3\xc7\x80N\x1f\x8c\xe7\x10|\x92\x15T\x8a\xc2\x00\xdb\xec\xc9\xc8\xbeE\x9f\x81\xac \x1f\xf4\xd1C\xca\xddc \x0e\xfc\xf8}\x96\x98A\xd1Xp\x9d\x9c\xbd\xdf0\x18\xd4\xdbYp\x02\x86B\xae\x82\x18K\x1c\x85\x181GC\xad\xd4\xcf\x1d\x08r\xfe\xa2\x1dG\xce\x9e f\x931\xe5 \xb9\xaa\xf1\x8e\xc0\xec\xf3\x8f\x1dk\xce\x9e\x00\xab\xcb\xb3\x98\x10\x0c\x03NE\x9f\xb3\xc7\x8bAg\xcf\x1e\xb9\x0f\xd3\xdf\x16<5{\x82\xb0\xe9\xec\xd9CG\x1cVr\n\x90\xddK\xcc%\x03\x9bfCa]\x07\x06(\\\xbf\x05\xb07sd\xe2\xc4\x9e\xa8\xe9\x10K\xb9A\x14{U\xda\xf4\xbe\x83CeWd\xa3/\x9d\x18;\xb8\xa2v\xfb\x0dF\x05=\x90\x9e!\xbc\xb8\x95\xa7\xc6\x9f_\xfc\xf9\x1f\xfftS|\xfb\xf4\x87\xd5w?<\xfd\xfe\x87?\x17O\xff\xf4\xc7\xe2\x1f\x9f\xaepY\xbc\xb8y\xfe\xc3\x8bo\xf1s\x06)\x15\xa7t\xd9\x13\xcf\xc9\xe9\xad\xbf\xf8\xf5\xb7[\xfc\xfc\xb7\xe2\xb7a\xfb\xc7\x1f\x86/?|\xf9\xa1\xae\x1f~\xf8R\xfe\xf9\xb7\xa1\xff\xf5K}\xff\x19\xd7\x82\x07(4\x1c\xdb\xe1)\xe8\x1b\xd4\xe5\x1f\xfe\xf4\xfc\xbb\xd5\x9fn\xca\xa7\x7f|\xfe\xc7\x7f|\xfa=\xbe\xf9\xe1\xe9\x9f\x7fx\xb1z\xfa\xed\x8bo_\xfc\xf1\x1f_\x94\xdf\xe2R\xeb\xb2\x1a2\x06:\xcd^x\xf1\xeb\x17k\xb7\xff\xdc\xffZ\x97w\xdf\xf5_>7\xdf\x7f\xff\xb7\x1f\x9e\xff\xed\xb7\xdb\xe1O]\x7f\xf7\xf0\xebn\xd5\xfd\xad\xecd\x06\xaf(t\xb2h\xd8\xd6:v\x84\xecA\x85\x12*)\xea\xbe\x95\xf9\xe0\x8av9\x1d\xbb\xcb\xb6[F\x97xQ\xa4+\xd1`v5\x17\n\xfb]\x93\x89\xfe\xd9\x8b_\xbf\xb5J\xe4\xf3\xf7\xdf.\x7f\xfd\xf6o\xcb\x87\xf5\xb2\xf8m\xfb\xf9\xb7\xb2X.\xef\xee\xfet\xbb\xde~\xb7.\x7f\xc3\xdfi\x9d\x08\xa8\x02\xe8\xed\x04\x05\x88\xf2%O\xff{\xf43\xd0\xbe\x0c-ZU\x0d\xf5/\x8ccN\xfd\x1f\xfa\xee.\xe4\xcc\x06C0*\x8e\xd0\xf4G\x9d\xd5\xf8\xcc\x01<$\xe8?\x87\x8b\xe8\x18\xf7\xf5\xa8\n\x9d\xf9JFG\xcdtq\xd9\x92\xf6\x80b]\xe63\xcf \x85\xb1/^f\xa3\xd1cseY\x19?%\x96\x08\x90ppb \xa5Um\x03C\xe1wm\xa3\xaa\xc5\xf7\xf1\xf7k\xd5\xf5\xb54\"}\x82\xd5\xd1\x1bY\x8e\x190\xef\xdaz\xd9\xeb\x8b\xe2 5\xeei\xb7\xf0\xf2\x9b$\xcbS\xe3\xc9\xfa\xb5\x9d\x02rF\xde\x83\x8e\xf5\xa0\xf3\xc9\x05;\xfc\xc4n\xc5^\xbcF\xe3EJ\xa6\xd1\x10\xbaXoj\n\xe1\xecQ\xbf\xbc_\x9cs\xb8X\xd5\x0c\xb8[\x15%t\xd6!4\xb6=\xc5\xdcv\xa3\x85\x80\xd9y\x89\x88\xb7\xea\xd8\x89\xe4\x15=\xe6\xe8]\xf7^\x13\xde\x8f\x08&\xf5 \\\x04\x1e\xbd\xe7\xf4-\xf9\xef\xd0 \x8a<4#7\x16\x92+\xea\xba\xfd\xcc1\xa4U# X\xfb\x92\xde\x9d\x02B\x94\xac\xcb\xf0Ea\xeb5a\xeb\xbcc\x8f\x0f\xfd\xe1\xb9 \xec \x99 4\xf3r\xb0\xebjp\x00\x967\xdb\xb5\xe0\xa0K\xc1\x01\xc2p_\x08\x8e\xbe\x0e\x1c{\x198\xee*p\xdcE\xe0\xc8k\xc0\x11\x97\x80#\xaf\x00G]\x00\x8e\xbd\xfe\x1b{\xf97\xea\xeao\xda\xc5_\xbf\x13\x8b=\x99/\xfd\x06_\xf9\xdd\xf3\x85\xdf\xc3\\\xf7\xdd\xdfe\xdfG\xbe\xea{\xc0\x8b\xbe\x07\xbd\xe6{\x04\x97|\x8f\xf9\x8a\xef\xd1\\\xf0}\x8c\xeb\xbd\xbe\xcb\xbd\xee\xa0\x01\x7f'\xc3\xc5^\xcf\x1d\xa0\xe4K\xbd@\xd9\x1e$\xe1J\x8c?\xfaw\x90+zD\x127~\xc7\xa9\x88\x86v\x83j\xfc\x80kn\xb4\xaa.\x14H\xed0\xdbk\xa1\x93\\o{vW\x18\x15\xcdN\x1c\xbfz\xe9R\x1c\x18\x0c\x1a\xd8\xed\xbeB\xb6\xe8\xc4\x91\x85\xd1W\xcf\x1dU\x83\xb6\x0d\xb1\xe7-W\x9f\x057uE\xce~\xa8U\xe0\xd5\x06\x82\x8e\xb4|]\x94%h\x1f\xcf0\xd6-\x16\xa4\x7f\x94\xce\xc7\xce\x8a\xe3\x05\xe9\x08\xedy\xb1\x1d\xee\xda\xae\xfa\x8d\xe9\x97\x0e\x97\xb8z \x9an\xf5\xd4\xb6L\xb4jB\xf2\xe5i\xd9\xcd%\x1e\xea\x85\xbf\xa6\xb3\xe0\xdazh\x98\xdb\xbfi\x19\xa8\xaa\x99\x8c\x12\x0b\x03@\x0c\x03\x94\xc4$\xb9\x1c\x8afYtKY\x9dr\xbd\xce\xee\xc8\xad\x8b\xee\x1ew\xe3o`\xac\xb5\xc3\xa8\xdfn6mGZ\x1d\x0f\x1b\x94\x9f\x05w\xdf\x16\xc3\xd0U7\xdb\x01\xa3u\xb1\x13\x8e\\\x80VyW4\xb7\xf4.4\xed\x13\xd7tb; 3\xb2$\xbb\xac5\nJ\x8f\xd5\xd7T\x0f]wm]o7\xb6AH\x0f\x89\xfe\x95\xab\xbc\xa2\xae\xa5\xca$\xd2\xd4\xa0\x82\xab\x86~r\xa9\xd0\xd5\x0dvX(\x12\x85\xc0\xd7\xbdP'\xf4*;\x18vfb\xad\xfb\x16\xe1\xa6\xb8\xa9\xd9\xc9\x8c\"+\xb8\xbe\xfd\x91\x06j\x19C\x9c\x1a|\x83\\\xf8vy_T\xa1\xba\xc5\xc1\xee\xfe\x8d\xb7\x1fQ\xd7\xb6rY\x15j\x7f\xa1\xb2\xadk\\\x8a\xb0\xe6\xe8\xdd\xfc\xdc\x18\x07\xc9\x1b\x0e\x0f\xe9X\xe8\x0e`h\xc4o\xcf+f\x10\x0c\xc5\x86\xcf\xc5\x80\x028\x12\xf7\x96\xe9\xfdK\xbeF2J\xecT\xc4\xc0\xc2\xf0\xd4\x16\xf2\xdd\xfd\xf00\x0e\xe3\x8c\xc3w\x8b\x89\n\n\x00\x11{\x98I\x10\x1e\xc0\x8c\x1f\xfb\x0b \xd2\\\xeb\xf6{\x18!\x0b>\xed\x02\x06j\x01\\\x01\xe4\x17\xcd\xa4\x03\xacW.2\xcdXp\x1bS\x9a\xf6\xa8\x88\xdeQ\xde\x00\xc1%\x0e\x8c&\xf6\xadG\xfc\x9d\x0c\xd10>\x1a\xee.J\xffJXEY\xfb\xaa\xb1\xa2j(\xe3\x82\x04@NY\xa4\xfe\xde\xcfUa\xbe.\x85*7\x9f`\x1c]H\x18\xb2\xa8.\xf8U\xa2\x8fy}T5\xd8\xc8)\xc7.}\xfc\xc1\xb3y\xf4C\x86\xfd\x94cw|U~\xca\xb1{\xca\xb1{L\xdee=\xda9]\xb7\xb4\xc6\xd0\xd4\x0b\x93\xa6\xfd \xc9\xf2 )\xc8\x8c\xf6\x93Q\xaa\xf3\x9c\xb0[e\xb0\x19t.\xac\x1a\xd0\xe1\x9e=\xe5\xd8\x8d\xca\xb8z\xca\xb1k\xa7\x91\xc3\x9e\x0c\xeak\xa82\x0e \xe5\xefU\xe2\x00\xc7\xf7*QQ\x07L\x03\xb9\x8b.\xbe\x1e'\xc7.\x0dC\xed\xa4\xecZZ\xb2]=\xf1\x97%\x97K^\x84\x1ckD\x1f\xf7\xc4\xddbo\x01\xabg\x93\xe4'8\x13c}\x81\xd0\xbf\xd0{D\xfc\xc6\nG\xb1\x81\xa4\x80;g\xe7u\xdf\xa2\xfb\xa6\xfd\xdc\xa0\x82L\x80\xb7d'\x05#Y\xfb\xf4\xcf\xb8%0\x01\xf2\xc4L\x11\xce>\x1d\x89'\xa3\xee@R5\x8fy\xee\xec\xc7\xe6\xc0\xae\x0585B\xa6\"2\xd5\x13\xdfA&\xb8\xd2\xdb\xb6Co\xfa\xa1\xb8\xa9\xab\xfe\xce\x01\x0dF\"Hd\xc35\xb9\xf4W`\xb7C{\x04+\xb8\n\x97\x14\xcb&oO\xa4{\x0eb\x1f\xbav\xd3\x12\x0d\xed\xe9\xdb\xa8\x96\xf2t\x90\xe6\xab\xdb\x88\xb6W\xf4\xf4?t\xdb\x92FD\xe9f\xba.\xba\xfe\xce\x82\x9bB\xa8\x1f\x8aa\xeb\xc2\xb7\x07\xc8\xf1b\x849V+\xb69QEAU\x89\x98&\x829\x0f\xac\x0c1]\xfc\xb7-\x8d\x872X\x16\x19\"\n_\xd9l\xed\x88\xc1 \x99\xf9\xe1\xe6\x1f\xdf\xbcz\xff\xf1\xf5\xf5\xc5\xbb\x0f\x9f\xae\xae/\xaf\xce\xaf>]\x06A\x8bm\xdf~\xf8\xf8\xfe\xc3\xfb\xcb\x84\x0f\xd9o\x0e\x85\xc5!\xd0\xa9\x0c\x87k<\xafP\\\x12\xf5|*!d\x9d\xf0\xe9\xaa\xa1(\xc5g\xdb\x86\x19\xe8l~\x911w|\xe4\x19\x12Xv\xe2\xaf:vW\x9a\xd1\x0d*\xba\x9bj\xe8\x8an7i\n\x9aqa\xdc@\xd9\x94\x8d\xe7\x8d\xfd\x06s\xc6~\x83\xf9\xaa\xd8BS,\x83M\x87\x1f\xaav\xdb\xd3\x94\xee\xda\x12\x9c\xf0\xaf \x8f|\xd1_uEy\xcfN\xe7l\xe7\x1fMt,\xb4\xbc\xcf\xb4v\x9ff$\xa2\x86\xfdF\xfaP\xdeU\xf8\x81\xe5\xe7l\xb7\x03\xe9h\xdb\xf8N4\xc6\x9f\xd8\x97Gg\xb5\x1ch\x8f\xfb\x0b\xdf\xdf\x06\x91m\x85\x0br\x9c\xaa\xec\xdf\xcf\xa6\xc3\x12\x9c\x0dQ<>\xdcU\x9e\x1d\xe5\x92\xd2\x10|\x8b)1\x9d\xf7\x023\x85\x88\x87\xf7\x99/\x9d\xaa\xb9E\xfd\x96\xa6~9[\x15U\xbd\xed\xf0\x19\xd9t6,\xbb\xff\xbc1 \xd9b.?\xfd\x14\xa5\xab\xcd\xaf>\x9c_\xba\xef\xec\xa8\xaf_\xfe\x8f\x8b\x0f\x11\xaf\xbf=\xbf\xf8)d\xe7\x89\xedG\xdc\x9ec\xa1\x9e\xd20R\xf6\x19\xb4mzLOz!\x97qL\xc1\xeb\x1c\x90\xdf\x14\xb5\x8c\xa5\x99J\xb3\xdd\xb3\xc9\xb6\xda\xda\x8c0\xb0)2hzS\xe47\xa9\xa9\xb1\x0b\xe4\x0c\xd7WK~\x02d\x8d\xdeW\xd4\xa5\xb8dUU\xd6UO\x8b\xd9p\x9d\xdbvh\x89\xebb\x87\x97\x13\xaf1\xcc\x91)\xa23G~\xb3\xcaar\xb0\x83\x1c\x93u\xa8\x83\xbc\xc4\xe3S\x18\xcc\xe0~\xcf\xd68n\xcab\xd3o\xeb\x91\x05\xb1q\xac\xe8\x96\xc8\x14\x89\xd8\x0f-\x04\x1d6\xaa\x9b\x17\xd6\xd6\x93\xfe\x1b4\x15#\xa0U\x13\xda\x95\x10\x05\xaf\xe5$8im\xd5F\x107~\xc5\x8bS\x1a!\x91m\xc7\xa2\x84\x8f\xe3\x02\xb1\xce\x85\x10\xc8\xe4\xc0\xe4\xa7\xc7\xde\xb8O\x0c\xd2\xb3x6\x85\xe7W\xfb\xc6>J\xe7\xa3\xdf\xb3]Qk\x88\x0eU1\x0cEy\xc7\xa8\x8f\x88~\xb2F@ \xae:s\xf9\xfc\xa2\xe70\xeb\xad\x10Ed\x9c\x03.\x91\xb6\xe1\x87N\xfe3\xc7\xd4\xaa]\x1a\x9d\x01I\xe1f\xf5\xeb\xf08\xb3-\x06c\x11zZ\xa4\xc0\xe9\xe7\xc88Q\xc7v\xac!c>\x00\xd6p\xf0$\xc6\x83\xc4\x81\xf5\xe6\xdc8\x99\xf1m\x17\xdf\x8f\x8dr\x848I\x83\xc5\x04u\x97\x9d\xc2\xac\xce\x96C\xf6WbEt\x98\xbb5\xe8OYz\x9c#\x18-\x91\n 7\xbb\xb8:b<\xa0\x83k\xef\xd9\xcew\xb2;\xc1\x01\x13\xb9\x0fRs!X3\xaf\xa2C\xfb\xe9\x88\x17\x97\x96A\xef\xa1\x13\x1c0Z\xec\x89(\x13\x14\x02\x07\xe4\x9ad\x0e\x18\x10 \x11e\xa2\x19\x04m\xd6u^\x83\xedQa\x80*\x0f>\x8b\xae\xf7d\x80\xb3\xe6\x803\x06\xe7 \x86_P\x9fC\xb4e\x00\x19o\x8f\xb3 \xc3\xf2\xf7\xde\x8e#3\xff\x02\xd2\x83\xcd\xe7P\xa9\x1c\x8be \xf03\xcf\xbc\x0c\x12@\x0eC3\xa0_\xa1;\x8e\x97\x90\x1f\xf18\xd3J\x05\x89\xd9\xad\xd5R\xc6i\x83\x04\x15KV\xb3Z\xad]\x9am\xba\xea\xdd\x98\xb1Cg\xb4\x9dt\xae\xd2 \xdf(\x1c\xf6\x8d\xe2\xa0\xdf\xe8\xd1%\x92\xbc\x17@\xc4\x02\xe5\x11\xb6/\xa0\xc7\x97\x8du\xa7\x08$\x91\x06\x137\xe9\xe4\xb4\xc8\x83\xfb?K\x85\x9a\xe4\xc2z:s2\xa4\xf5t\x86\x91\x1f0eB\xe1\xe4,\x14aG\x93s\x834\x07\x98\\i\x99\xd1u\x00\xcb\xc5\x0b\x9c\xa5qS\x91j'J\xe4\xe0*\x8aF\xbdK\xcds$\x15\xb1,\xdb\xcdn2\xadx\x95I\x1d\x93K\x1a7*\\\x83[\x98\xa3P\xa3\xb1MYg\x98{^\x8d>\x94\xa0\xba\xc3h~\xb9e\x8d\x9a^\x87\x18 \x9e\"\n0#\x076=U,S\x86\x80`\xc1\xcc.\xca\x1c\"\x1a\xf6I\xae2\xcdhN\xa9f\x84\xccr\xcd\xc8\xe5\x96M\x1c\x0b\xcd7\x1bZ\xbey\xfa4G g\x89\x11\xf3\xf43\xafc\xc9%\x9d5r\xcc\x06\x82\xca:#{ig4\xb2\x0fe\xacs\xf3\x9fZ\xe6Y#S\x8eE\x9fQX\xa9g\xe4*\xf7\x8c2tH\xdeV\xbc]\x12/C\xf5\x07\x02;c-\x01\x8dftfv9h`z\xb9GB\xdb&\xd1\x0c\xe6\xe7\x96\x88\xd6\xc8\xed\xdam\x17R&\x9a\xf5\x0eM(\x06\xf6\xefan\xa1hz?\xeb=-\xe8sWm>\xca\x9226~s\xd37n\xda\x00\xfa\xe6wQ\x9c\x1b\xa1MA\x13\xf5Vr\x862\x85\x97\xe9\x851y\xd4\x98vK\xfa\xdb\xa6\xe8\x8a5\x1eh\xb9%>.\x9c\x85$\x93\xea\x1e\xef\x025\xba\xf5\xc8\xa6\xf4\xe2\xdf\xf5\xf9|\x8fY\x12N~\x85\xa2\xc3\xc3\xb6\xe3\xd6\xe8\x87\xe2\x16\x8b\x99\xb7h\xf0\x97\xe1\x9a\xbc<\xb4\xe8\x06\xdf\x1a\x13\xf9W2\xf9\x04\x98\x86\xbcL\x84\x82\xd1\xba\xed\x07\x84W\xab\xaa\xacp3\xd4\xbb\x05zO6sZ\x98i\x85\xda\xd5\x8aeI&lh\x04\xfb\xbbv[/\xc9\xb6\xaf\xd5\xe6b\x1fEJek\xe6\x8cs\xafs\xce\x1a\xbb\xe9\xb3]\xd3<\xc8\xfc7\x96D\xb0h\xe8\x8dF\n\x95\xbd\xc3\x0d\x17\xa4Fe\xdb\x14\x0fEU\x177\xb5\x99\x1b\xec\x82R\xaf)\x8eR\x08\x88\xd0n\xd0\x96\x02\xc3\xeeq\xb4\xb4\xf4&L\xe1\xd5\xd5Z\xcf\x81\x99_v\xb4\x11\xa1\xab\x86v(j\xe9\x00$\x10Xt\x1e)\xf3m\x18\xf1Y\x1a\xbd\x0d\x85\xdf\xe8\xe2[\xa1\x1a\xaf\x06\x84\xd7\x9ba\x87*\x9e]\x8d\x83!\x19n\x88Mi\xd6\x10\x91\xdc\xcd\x8e\xe2\x87P\xb1\xd9\xc82\xa1\x99\xe8\xae)\x9fy\xf6\x08\x89 b\xb5\xe5\xe8%\xa4n\x8b\x91\x96\x0e\xb9\x18\xa4^\xd3\x17\xf9@\xaa\x04\xb9F\xd3EP\xb0\x96\x84Y\xa6K\x9a\xc2\xa5\xd18\x01\xa9>\x924\x95\xb1\x84?]\xf4\x86\x94\xb5\xaePK\x9c\xec>\xb8\x1c\xc4\xc4\x9fV\nY\x0c\x0b>\xaf\xab\xdb\xa6\xed\x8c\xa0\xbfX)z3f\x05\xbe\x0e?\xe0\xae\xcfd\x0frb\xfa`T\xd3l,:\x0c\xcfH\x8d\x12i\x87\xa1\x92Q\xdb-qgf\xe3\xbb\xac\x9a\x12\xbfD%-\xc4\xff\xb4_\xde\xa3\xe7\x8b\xef\xbf\x1b_\xe2H8E\x0f3E;\xeej\x8c\x0f\xbc\xbe\xc1\xcb%\xe3\xe3\x96\xec\xe5b'\xe3x4\xb6\xbf\x8c\x9aC\"7\x8d\xf1\x02\xbd\xe1\x1eRX>\xe0\xee?\x19\x19\xdcM`\xda\x18\xeaw\xc4\xd2\xe0\x04\xa3\xed\x0d\xb6\xbb\x04\x1b\x1cS\xd47\xed\xee\xbd\xa6\xe5\x14\xa9\x9c\xb3\xfa\x9e\xedj\x04\xaf\xf4\xe8 i\xea\x1b\xf0Z+\xcf\xcd\xad\xfa\xac\x8f\xcd#\x03^\x85\xb6(\xfc\xdf\xa5\xb9\xcc\x1e\xc8xC{4\xe0\x90m\x14\x903\xa8c\x18s\xc8\xe7\x80u\xfa\xe1\xfd~\xd9t\xe3\x0e 6\xcf\xc2\x83\xb9\x83\xda\xb1\x1a~\xc8b\xfc\xa1P)\x02\x86\x0c\n\x92c\x1ec\x10y\x0cB\x94\xdb(DV\xc3\x10\x81\xc6!\x82\x0dD\xb4w\xf9\xa6\x1b\x8c\x001nL\x81F#\x9ae8\x02\xc44S\x12\xb9\xccI\xe4\xd4\xa3(HR3LK\xfbR\xb3\x98\x97h\xae\x89 \xd0\xab\x1a\xd0\xccD3LM\xa8\x15f|Z\xcdM\x04\x9a\x9c\xc8fv\xa2\x0c\x03\x97\xcf\x04EAf(\xf2\x9b\xa2\x08\xd9/f\xa4\x9b\xa4\x1a\xa1\xc9@\xd5\xfe\x00Y\xa9qn\x98\xb1f\x10\xf5/\xcb\x07\x9b \xe3\xd1\xae\x84E\xa1\xfb\x07#\xac(\xb1=\x06\x99Q\xc9\x9e\x98q\x13\xe6zp\xdc\x8f\xd1\xa6\xe8\xf9M\x1biX\x16\xec\xef\x1a\x11\xbaI{w\xe8\x0b\xae\xf4\xe8\x98R-\x08\xb8\x88\xb54\xe2\x86\x19\x8a\x90\xf5\xc8\x1c\xe7L\xb0\xcd\xc1Q\x15\xd8v\x84I\xef\x18\xfc\xcb\x82\x92\x14\x8b> \xe9\xbd<<\x9c\xd1\x02\xeb<\x89H\x8f\xb6\x0d3\x10\x97\xa8%r\xf8\\\xf5l\x1c\xc3\x0eQ\xe1\xaeZ\xf5KN.\xc8m\xfbs\x7f{\xbe\\\xbe\xe2a\xf1\xcb\x0d.\xafZ\x9a\xd6\x9d\xfc\xa7\xe7T\x05\xf7\"\x88\xa2\xb3S\x13\xa1gvJ1\xdd{\x87\x87\xf3\xbe\xc7\x03\x15S\xef\xe9\x95>\x89\\$F\xfb\x9f\xf4\x85\xf3\xab\xbc9v\x90\x13\x1bX^\x03'\xb7\xb4\x8b\xaf\x8b\xa18\xa7wK\x93\xd8\xb5\xd00\xc4N+\xa2-\xa9\xfa\xa7W\xc8\x8bR\xcal\xa7\x14\xbc%S\x12Ag{S\xef\xf1kG\x11j^\xfd\"Z\xbf\xf3\xef%\x82\x86>\x9f\xa5\xc4G\xf6\x02'Z\x98\x1e\x18\xa9Z\xb5\xb4z\x01m\x01\nl\x0f\nX'\xeeT\xb4\xd3\xdb0\x7f\xb6\xbcD\xd9x\x8c\xc8\xfc\xe4\xe3\xd5\x9a}$\x1b\xb3Q\xf9D\x9c\xec\xa6\xeak\xed\xb2\xa3O/\xc3<\x8c\xe9\x9b\xcc\xdbdn%\xab|\x88b\xd2\xce\xc1 \x1a\x90;\xcb\xdaFNP'|\xe9\x19\xb9\xe4\x8a\xa2\x90\x9d\xf2MWp\xb5+\xd7\x98\x176\xc1\xd9\xf2ed\xe62h\xe9\x8b\x97\xad\xcc\xda\x16?\xda\x03\xc31z\xc0\xcd8\x9cQ\xc2\xc9/\xc0R\xf0\ns3\x93 <\x80\x19\xbf9\x03 2\xc4`\x89\xf5\xddK\x1fE\xba,\xa5/\xe7\x9dF\xb9\xd2\x88=\x8b\x02\x9fE[*\x06\xb9C\x9dCU\xe6\x037\x8e\xb0\xdd\xcdP\xf2j[>\xeb&\xf2\x04\xaa\x8d\xc2\xfe\xcc\x9f\x88\xc3\xa6\xf6\x89\x83\xdd\xe4\xb3K\x18\xeb\x9e\xa1\xc8x\xb0\x0c\xee\xf1\xbel*_W\xa3,-')[\xe7R-0'\xe7\xa1\xbbF0\xc7\x1e\xd7\x1b\xf2r\x07\xbb\xe0\xc2r\xb0!c\x1a\xc5e_K\xb0\xe3\xdc\x0e7\xe4\xdb;\xc3\x0d\x0fCP(\xc5\x01\x07\xd0\xe8C\xb2\xa9\x059\xe2\xd0\x81{\x1b\xa2+\x03\xc8x\xfb\xea\xd3\xa2\xe8\xd0\xfd\x9e\xa1WQ\x9c\xd3\xcel~\xae\xb5\x1a\xd0\xc3D\xa5d\x12\xf2\xf5%a(c\xfb\xe2\xb7\x84\xbd$\x92\x9d{\x19P\"6:q\x8e\xbd\x10\xa4\x82\xed\xd6n\x84\xc5\xac\x9e\xf6cme#\x97O^\xa7\x1e|\xe0\x9fi\x95\xa4\x1f\xf2\x9d\x07\xfcL\\\x85\xe8g\xf08\xea=\xd0\xe7bp\xee!\xdev\x80\x0f\xb3\xcc2\x1c\xdc\xa3\x05t\xd0\xc3z$\xbch\xfa&\xe5\xa8\x1e\x0d.\xb2i\x1c\xd8r\xf5\xa9\x1d\xc5\\\x8d\xd5=:5\xdf1=\x83&\x02\xed\xd5,\xeb\xcag\x8bB=\xb4j(\x97\xbd\x99\x93\xdb\x08]\x05\x98\x16*)\xe9_\x11+3\x8ci\x8b\x8b\xdb\xd2\xb4\xaa\xd5\xa6\x9f\xa7~i\xd4B{9O\xe5EYyA\xfcD\xc89X\x9c~\xbd\x183\x14\xc1\xfar\xbe\xbd6\x03\xce\xc8\xbeg\xb9\xe0\xe2\xd5\xe7\x98d4\\w\xaa\x9f\xccR\x9c<\x97dfe\x19\x9b\x875l\x19K\xf9X\xadjR\xcd\xa6\xba\x80\xa5\xb6\x0f\xbd\xa8S\xf7(\xc5\xf1u\x0b\x8b\xd16J4\x9b\xa6\x1d#\xfd\x12\xcd.\xff\xcf\xec\x0c\x9b\xba\x06nt\xec\x83\xfc\x9b\xd3\xab\xe1\xeeS\xb2\xae\x96\xbe\x0fS\xd4N6\"\xe4\x19&\xb6x\xfd\x0c\xcb\x1b#\xf4\xaa\xad\xa6\x0c\x98\x05\x1a\xda{\xdc\x88\xeba\x94%\x91G\xabh\x96\xa8hx\xc3Z\xca\xb6w\xef\xaf\xde\xbcDWd\x02\xd1?3\xe5C\xd5c\x83.\x9a\x81_Y\xab\xd6\x9b\x1a\xaf\xb9\x0e\xc2\xa8\xdc\xf6C\xbb\xe6\xa3\xa8\xd0\xeb\xab\xdb\xa6\x18\xb6\x1df\xc9?\xab\x8e\xcd\xa7\xdb\xf6\xb6\xddt\xed\xd0.\xf4\xa9\xad\x8d\x14\xcb\x9e6\xb1\xd3\xaeP\xd9\x12\xa5\xc8f\xb3H?C\xfb\xb5\xeeo\xe5\xd5I\x13C\x9d\x86\xfbH\x87\xdb~X\x9b\xc6m\x1c|\x96(l\x9a\x02\xf4\x8f\x0d\xc6K\xae\x97\xb5\xadC\xa9\xb0$f\x05\xfa\x07\xa1\xbe\xbf\x91e\xd0\xb4\x03~I \xf0\xbf\"Z\x9c\x86\xab\x1b)/\xf0\xaan\xf9\x0e\xb0\xe9\xaa\x12\xa3u\xbb\xdc\xd6\x98\xa5\x95\x15\xdd\x12\xbasy}[\x84n\x8eZ\xe24\xbe\x0c\x14J\xa3N\x1f\x05@~\xb4\xf7\x9f\x12s+\xe7\x10\x8b9\\=\xff\xdc\xdf\xbe\xc5\xe1\xdax\xdd\xdf^\x93\xd7\xae\xb7]\xed\x94\x92\xaa\x0c^\xeaBR\xa6\x8d\xfa.M\xdd\xba)v\xe4\xec^4;\xbaZ\x9e\xa0\x9b\xa2\xaf\xca\xa2\xaew\xa8@\xaf\xe9\xd6N\x16\xc79\x15\xab\\\x0c\x89\xfd\"\xd2\xbf\xfe\x86\xbb\xf6\x1b\x8d\xcd \xd7$\xa0\x19,\x0b\x1d\xd2\n\x91\x06M\x06}\x90W\x1b\x84\xea\x82\x0e\x97\xd5\xa6\x02,\"\xa5\xeb\xe3[\xc4b\xab\xfakz\xdb\xd9XcU3\xe0[\xc0\x8a\x9a\xd6\x18\x90\x1f\xe2-\x1e\x17B\xd9v4\xfb\xeeg\x96\xb0{\xe8\xa5;\xdb\xf4\\3^\xc6\x16r\xab\x06b\xa8\xf7U?Pg\xca\xaa\xddvD'\x0c\xbdx\xe1\xc5\x82~I\xd4\x10]]\xdb\xae>C\xd5\x02/\xd03\x96\xc0sqS4\xf7\x8b\x87\x177x(\xf8\xed\xe7fL\xec\xfb\xed\x02\xad\xab\xa6Zo\xd7\xd2\x04\xa7\xfa\xec \x9f\x9d\xed\x8aNp:\xc4\xa3f\xfbn1\xe5\xc0\x1e%\xc75'Y\x05\xacG\xbf\xc0B\xfdEP\xf9~\xc1\xf2\x98\x8a\xef\xab\x1e-qY\x17\x1d\xcba\xbec\xe6.\xf9;~`\x8a\x9a\x92A\x8c\x8c8\xdc\xaf\xb00/\x9f<\x7f\xfa\xe2\xf9\xd9\xf3\xe7\xcf\xbf\xb1j\x92\x0fD\x9d\x86\x1f\xae\xa9R&*\xf2\x9a*\xe5\x97\xf0:Q\xf4\x84\xf6\xc94\xf2M?\x14\xcd0\x1e\x01\xc6=\x80\xed\x1e4\xe5,`\xff\xf7w\x05\x99\xe1\xec\xa0@\x97\x1b\xdfp\xd4\xd4\xad\xaf\xda\x86\xbb^4\xeb\xe1)\xfa\xc2N \xcf\xb6\xfd\xf2\xe9\xba\xaa\xd1\x8f\xe8\x05\x91\x11\xf9\xdf\xb3/h\xdb/\x9f\x91?k\x1f\xed\xc6?(\xef\xefTZ2\x07o\xbe\x14d\xdd\x1a\xcd\x7f\xff\\|\xed\xe0CzIj\xf7\xff~\xbex\xfe\xed\x0f\xf4_g\x1aU\xf2\xa7\xef\x9f\x9b\x0c\xd2\x9f\x8d\x86\xbe\xfd\x01\xe6A[\xdd\x8f\xa3t)G\xd7\x1b\xdc]o\xfb\xe5\xf5\xbaroY\xd6\x8d\xdd>#\x8d\x06\xc6\xd30\xcb\x8fJ\x85\xb8\xc1\x1d\x11=\"\x7f&\x1btI'\x14\xbd\xe6O~V\x12\xc6*\xa7\xcer\x9cyd_\x8c?5C\xdf\x0b\x06\xc5\xf1\x98\xee\x11\x9c#\xbaz\x00\xef\x1d[\xd9J\x8aN\x9a\xe0|\xc5L\xa8\xc9\xbf\xc1\xb5\x017\xb0\xecF\x075O\xce\xeb\x9ai\xf0\xf83!\xb1B\xf6\x7f:\x80m\x1d\x99\x14tH\xb0\xd8=\xfc3K^\xdd\x196\x90A\x89\xdbDNK\x88=\x16y g\xc4\xc3rjB.\xa1 \xeb\xe9\xc9\xf3\x99;.4\xc3r2(\xcd1\xa0\x0cb\xdc\xa02~\x0f\xb5\xab\xd8\x03XW\xec\xb1\n\xccgi\xc9\x9f\xeb\xf6\x16{L\xab\x8b\x7f\x03N\xdc\xb9\x16\x18{\xbcv\x18{\xe6Yc\xecI\xb4\xc9\xd8\x93\xc72c\xcfl\xfbL\xa1\xc6m5\xd5J#OL\xee\xf6\xe5\x94\xfc\x08*\xc2\xb2\xcaP:\xef\x94\xb5\xfd\x94\xb5\x1dM\x8c*\xa9\xa8\xc7Z6E]\x93E\xfeu\xcf\x149\xf3&\x99\xd5\x9e\xd6n\xeb\x82\xd9,\xd1\x96\xc5F:\xc4 s\xb1\x18v\x90T\x9a\x88\x9f\x99&\xdb\x87=\x11\xcb\xc3z$281\x86x\xe6\xd1H\xa7F\xfe\x16x\x8b\xe2\x90\xa2\x8e\x19\xfd\xf2z\xdbt\x98l\x97\xe5\xc0s7\x18\xec\xeb\xa5\xdb8\xa3KbO\xaf\xe9\xb4\xabVH&\xc3\x98\xbc\xc7;\x16_\xa6\xed\xb0k\x08M\x0b\xe8\xfc`\xbf%%\x0b:-\xc5\x8c\xfd\xdd\x9e)\\k\x07Y'\x12r\xb8\x82\x12\xd7\x11\xf2\xac%4\x93\x99\xa8u\x85\\k\x0b\xcd\xe3\xc4\xb0`s\xae5\x04\xad7\x14\xb4\xe6\x90u\xdd\xa1=\xac\xbd=\x19\xb0\xcaz\xfc\x88\xfb\xb6~\xf0\x99\x81 \xa4L-\xc1\x0c\xda\xf6\x02\xd5$`\xa5\x1c\xd4Y\xf1r\xbb\x85\x94*\x9d\x8a\xa6c\xdcH\xa5\xb3&\xe1\xf94\x9f\"\xba\xbf\xf2\x12\xcc\xac\x8a\xc1\xe83F\x95\xe45&sf\xb9D\xfd\xf6\xe6)\x1df\xdb\x11B\x13Q\xc8\x10\xf0O\x82\xe4O\x0bh\xfe\xd4\xb6\xf7\xdb\xf8\xc2\xe1j\x1a!\xf6AP\x00\xc72N\x0d\xfbZ\xac\xaf\x1e\xdd\xb4\xdbf\x82J\x16jyp\xfe\xf9\xc9Azr\x90\x1e\xa1\x83\x14>\xba\xda\x17]\xc4\xba\xe6\xb4\x9c\xab\x9b\x17U{W\xac}\xcaUa\x14\xf8\xcc8\x07\x89\x17TV\xed|\xbc\xeap1\xe0\x8fm;$p\x03\x7f<\xf2D\xf8Q_ \xe5\x8a\x956I\xe0\xc8\xfc\xd0\x90\xd0\xf4J(7\xacVC\x027\xe6\x87\x067\xd3+A\xdc0Ze\xdb-g\xed\x03\xb0\x8a'<1\xa5N\xbe\xe1\x7f\x8d\xda\xcc]\x1b\xf72e\xe3\xe6t?'l\xd9\x7f@\x80F\x9a\xe4GC\xcf\xa4\x1b\xdb\x92\x92\x12\x1e\xfc\x9b\xaaY\xf2B'w\xd5\x86\xc6+Y7\xee*\xdc\x15]yGu\xb9\xb8QR\xb6u\x8d\xd9\xa5\x0c\xf2\xa6\xa8!\xa1\x0e^\xdb\x15e=m\xeb\xef\xe9?y\xe9\xa4\xe8m=j<\xae\xa4\xf1\xe0g\x1d\xc6\x8c9]\xed\xacM\xd7m\x06\x1b\xb9E@\x87\xa3{\xba,\x86\xc2\xd3M\xff5\x9a\xd7\xc5P\xa8\x1d\xf8[Ol\x0d\xf2\xf3x\x8d\x83\xd6\x06Q{c\x97\x0e,\x16^t\x9eK\x85m\xde=?\x19\x05\xc8\x89G\xd3\xe7\x88\xab'\x9bdS\xfa\xd6z\x08\x06\xeb\x8a\x9e\xe4\x199\xb1[\xd3\x0bU\xdb\xa6\xfau\x8b\xeb\x9d\xb8\xffUqMF\xfb\x0b\x88\xcd\xde-Uz\xd5R\x9dO\x13A\x9b\xb4\x98\x8b,HT:G\xd0\xa7\xf6\x0d~,\x19c\x1d\xc5\x0e\x7f.\xba%\xe1\xeb\x9cj\x02\xb2\xc1\xdc\x16C\xf8\xc8\xf1\xb3\xf55\x87\xe8g\x18\xc0\x9f\xf9i}\xb2\xb4\xfa-\xad4\xb7\xda\xd6h\xc9\xf9\x1b-@~\x80\xce\xd9\xbeq$w\xb6\xcf\xfb\xcf\xff@\xef\xedkQ3{\x0cKt\x95\xc3\x8a\xe84%C\xb5\xedq\x87\xd6\xdb~@w\xc5\x03F\xe5\xb6\xeb\xa8\xcd<6/p3\x12\xad\x87\xa2\xae\x96\xc5\xd0vI\x87\x8b\xf0\xa0V \xbcR\x8cK\x9a\\\xf8\x10\xfc=\xcaEZ/\x0f\xf8\xba\x1f\x8a{|\xbd\xc1]ItR\xedS\x80\xe0B\x99\xbef\x92\xe2h\xa5\x1b\\\xb7\x9f\xa9\xd8F\x11|\xdd\xa3M\xfb\x19w\xa8+\x9a\xfb\xaa\xb9\x85\x16\xd1\\\xa6\xf8\xd0\xcde\n\x9e\x1c\xaa\x92\x92K\xac\x0d4\x88\xca\x7f\xe7WM\x8bfI\x8fT\xa3\x99\x85\xeb\xea\xb6\xba\xa9\xeaj\x10\x8e\x84\xb2\xab\x06\xdcUz\xc9/]-^uE\xd3\xafD\xe5\xbc\xe3S\x8b\x03\xe7\xef\xb1\xd4\xa2\xd9~\x0e\xb58}\xeb\xf5N\xe5\x9b\xf5\xff\xd2\x1e\xaf!\xf0\xd0>\x9e\x11\xa0\xb6}\x943\x9d\xb0x\xb4\xb3\\\xda\x94\xaf\xc7\x8b\xeb\xbe\x0c\x15\xee\x8b\x95\x8aT?\xb4}E6\xb2\xe9VL\xc2\x94\xcduP\xe9c!\xc9\xdd\xe1\xa4B\xf3\x1cU\xb6 \x90\xea\xacB\xaa\xc3\n\x05\xa8\xac,\x8e+\xa49\xaf\xb4f\xf5S\xa00b\xda\x86vm]4\xbbq\x8e\xef6l\x89Z\x8e\x93\xb8\xdb9O\xb0\xfd?\xed.^Gc%\x94\x03;\xf7X-\x0d\xd7\x1aH\x0c&h\x10\x0d\xce\x17\x1f\xaa\xe8\x1c.7\xe4v\xbb\xa1\\\xcd\xcfq\xc1Q&b\xdcp \x07\xf3\\q\xe8H\x15'\xec\xa6C\x19]u\xe8H{\x0e\xbb\xf1\x1c\x1f\xb8\xee\x87du\xe9!\x8f[\x0f\x8d\xbcy\xf7\xfa\xe2\xdd?[\xfe\no\x0c\xe2\xafbqX\xfe\x0c\xf9;Go\xa7\x9b?~\xb0\xbc\xa4\xb2Q\xdc\x9b\xa0[_\xfa\x16\x7f\xd9T\x1d\x83:\xb7\xabU\x8f\xfdw+\xd9\x13:?\x0c%\xf2\xcf]Qb1\xbb\xd9\xc9DW\xeaBN\xd4\xa1\xc5{3\xce/\x8d\x9c\xb00\xb6\xcdP\xd5\x06%\xdc\xd0<\xce\x84\x80\x90\xae\xfe\xbd\xbei\xff:\x82S]\x90t5\xd0\x83\xa0`\x0fr\x19\x80\xbe\xc0\x84~\xdbqz\x1c$\x91\x87,\xf2A\xff\xa7\xc7ao\x8a\xc7\xe9\xeb\x16\x0fhM\x87\xdfL\x9c\x1e\xe75\x81\xe9\xd9\x0f\xdf\xd17*\xa7'\xf0J\xc1\xf4\xb8W\xcf\xf4\xc4\xde\xb7\xb4\x12\xd2\xef\x11\xdan\x0eN\x8fg\n\xa2\x80i\x88\xecG\x9d\xe9 \x18LW8N<^2\x81\xf77\xa7'x\x8c\"\xeft\x9e\xc6\xc8>F1wD\xa7\xc7K7b0\x13n\x90Z\x89\x819\xc2\xd4'\xeaV\xe9\xf4\xe4\xecq\xc2\x9d\xd3\xf4\x1e\x87p\x95t#\x15\xa4\x04\xdd^1.\xd8M\x8fyKU\xfa\xdb\xdf\xe9\x8e\x0c\xde(\x9d\x9e\xa3\xdd\x91}|\xef{G\x8e\xbb\xf8gW\x9aj\x06*\x94pcvz\xfe\xbe\xb6\x83\x90\x11I\xba\x81\x9bCU\xa8\xb7r\xa7\xe7\xefUM\x18\xb7h\xa7\xe7hU\x84\x8b\xe7\xdf\xb9z\x08\xbc!<=\x7f_\xaa!\xe4\x9e\xf1\xf4x\x89\x05\xce<[`\x7fz\xa2\xef#\xdbE\xf4\xd9H\xa4\x17x3Y\xa2\x91tG\xd9JNM\xb2\x17x[\xd9J\x0d\xba\xc5<=\xda}\xe6\xe9 Y\x87\xa9w\x9cAb!\xdb\x81\xc2T\xca\xbdg\x0b)F\x80\x07\xd6\x98\xe6\x18Z\x86\xa6\x9d\xdc}\xd3\xf7|~*\xce\xb1?\x80\x84\xafL\x0c0S\x0d\xac\xa9\xcf\x05\x80\xec\xe3\xd4\xdd\x18%=\x1f>\xbf\xe4g\xf0\x14\x08\x7f\xea\x05\n\x8c\xfe\xe9\x8a\xacc\xc6\x8b\xbe\xa2ew\xefS\xf4??\xbd\xf9\xf8\xbf\xae\xaf\xfe\xd7\x07\xc8\x97\xaa\xfc\xf9\xfc\xa7\x9f\xa0\x9fU\xff\xaf\xfa\xc5\xab\xab\x8b\x7fy\x03\xfd\xe5\xfd\xa7\xab\xcb\xabs\xeb\x87\x8a_x\xf4\xf8:XUFl\x04\x1c\xdaz\xf7\x12m\x9b~\x83\xcbjE\x95\x0c+\x0b v\xf8%\xddU\xd4\xe1\xef\x99\x8b\xb4\x07\xbf\xe1\xd2x\x896ik\x86\\\xd4s\xef\"\xec \x06=\x0f\xfc\x07\xc2\xff\x9c\x9ce\x86\x00\xaa\xbd\x89f\x03\xd8\xa5\xe2\xa1\x80\xd1`\xc0@8\xa0\xb3\x03\xca \xce\x86\x04zA\x81\xc0&5\x17\x16\xe84|\x8f\xe2\xd6H\x08H\xd0o\xf6$\x03\x05\x0dJ\"\xa4k\x85\n\x1e\xbfH]\xc0\xc10Q&\x83\x07Mq\x16\xfd\xe0\x82\x0f\x1e\xbf4\x03\xc0\x84\x96Cy4\x9c\xf0w \x8c\x10p\xa1\xc5\xaf\x92\x08/<~\xa1\xf8\xc1\x86\x99\xec\x88D\xc8\xa1\x1ft\x18\xc4\x1f\x0c\xa6\nP(\xf9\xc0\x87\x00\x92!\x18\x80\xf8H}L\x02\"\xda\xa1\x88!`\xc4|=\x8d\x83$\x06\x81\x12\xf31\x07\x0cC*8\xd1 $\xc0\x8a6xb @q\xaf\x9d\xcd\x0cT\x84\xa1\x8aN\xb0bP\xf7b\xd4Z\x02d1\x04\xb4\x98\x89O`\x0c\x12\xd1\x8c\xe6r\x07\xd0\x8d\xe1\xf8\xc6L\xfd\xcb\x86r\x04q\x8eZc\xb1HGg\x1fm\xf7\xc1}xG\x1f\xe2\xd1\x87y\xf4\xa2\x1e\xdd\xb8G\x14\x8a|\x9c\x83}\xf4\xa2\x1f3\xcd\x1e`udFA\xce\xc7A\x82\xf6\x83\x0f\x0b \xbb\x9a\xd8\x03\xe2!\x9d\x16\xab/\xce\xe4BEz\x08#/q\x14\x1eb\xf5\x98\xc9\xe2 \n\x1cY\x0e\x04)H\xc3\xe0p\xeb>\xf9\x9f\x81\x94L\x08\xbd\xfa\xd7\xd9\xf4d\xc3K\xa2\x044^\xc0\xf4DAS\x14\xb9No\xd3\x134\xc0!\xd1\xd6 R\xd1\xf8\xc9\xa8q\xcb\x85\xa1<\x8d\x9b\xfe$b*\x83hG\x0dqNde\x00\xd2\x10\xa5\xa3+\xf3\xf7='\xc62\xa8\xefa\xbc\xe5CZF\x03\xa8\xdch\xcb\x80%\xe9_\x8eG\xbe\xd3{\x10\x8cG\xbf\xd3\xfb\xf9?\xc4N\x9f h\x95\x19\x89\x190\x7fQ\xd0\x1cF\xc7\xb7\xa5\x84\x8dQ>df\x82j\xb1\xa13\x03\x86\xc5?$G\xaeV\x1c\xa8\xc7\xa3W)n\xde\xff.\xd4I4r3`\xce\xa2\xa0y\x8b\x8eO\x95\xc4\xe18\x83\x08\x06\xcfJ?\x9a3'\x9e3\x0f\xa23;\xa637\xaa\xd3\x87\xebt ;CWkVtg\x18\xbeScm\x1e\xc2S#\x16\x89\xf1\x8cAy\xaa9\x1b\x85\x97\x90\xe9\x91\x9e\xe5\xa6\x13\x98#\nc\xbb&\xdc\x8a\xa6Ni\x1c\x87S\x1a\xc7#L\xe3\x08f\xbc\x861\x96*\x18\xb9\x86V\xc3\xb4\x0c8\xb9q1\xd80\x9d\xecs-\x01+\x93\xbf1\x9b}h\xce\x83\x16Fg\xb1,w]t=\xa9\xb3\xd2N\xb6t\xce\x11\xab>{\xcdp\x16E\xd4\x934\x1b\xf2t\xa6g\x069\xd0CpA\xc9\x98\x83\xd20\x07$`\xf6\xa6^\xf6$]\x0eO\xb7\x9c\x92h\x99\xc9<\xdb\\Wb\xcd\x9e\x84\xca\xb0I\x01\xae\xe1\xe0$\xcahL\x9c,\xf7OJ\x9f\xec\xd7\x1b4\x8c\xb9\x90\x84(+\x10I,\xea\xb5\x06\xcf\xe0x'\x93g\"9'\x91c\x02\x85M\x1ex\xdf\xb5w\xea\xa5\xb4\x03h\xf7\x04l\xdd$\x9f\xd0\xb1\xa0\xdb\x11[\xc2\x96\xaf,\xdf\x8c\xff\xe5\xfa\x8c\xf1\xa6}4\xd9\x97\xb0\xa4\xd4OhD\x9a\x7f\x12\xbb\xa2\x1c\xb3\x8boj\xc1\xbbQ\x96%\x99\x0e\xee\xd7`\xfd \x07\x19\xa1\xfc2\xd7A\x8d*\xc6P\x1cd?\x02\xac\xef\x85\xe9\x83,*C0\x0b\x9a\xef\x00\xe5\x1b\xaaw\x0e\x1c\xff1w}\x1f\xc8\xde~\xf2L\x06\xd6+@z\x89\xa0\x0e\xa9\x7fL\xb1p\xcde\xb8\xd1\xdc\xe2H\x06\xc7\xeb\x99u\x159\x1d\x87D<`w\xd0\x93\x19\x05s\x7f\xd4\xce\xf9\xc0\xeb\xa0\x939\x01\xb6\xfe\x98\x9dT \xb8\x06\x18=y\x97K\x80\x9e\xbb@\xe7N>L@\xac\xaa\x88g\xe0\xc9U\xfcW\x00r|\x0e\xa3\xaa\xe6\x98\x89\x10G\x95\xac:\x0cl\xb8\x1b\x15>\xa7\x17\xe1\x18pe\xea\xedQ\x94\xa9(o(\x05-\x80\xef\xf6\"\xbb\xb3ud.\x82\x1b)\xd5\x08\x15\xec\xb6\x05-\x9ca\xfd\xab\xbb\xbb\x17\xa3\xedFg'\xf3\x93\x08\xbc6\x80\xd6!\x10\xebd&\xb3\x00\xaa5(5(\x85\x10\x10u\xa0\xd7\xc6\x05D\xb6\x83\xa5\xed0i\x07@\xda\x06\x8d\x0e\x00E\xa7\xc1\xa1\x1d@\xe8\xe41V\x16tF\xc0\xf3\x1c\xa8\xb3\xb2\xc9\xb9\xe0\xcd\xac\xd7y\xef\xd0\xdb\x00\xcc\x162.R(\x0cm`1\x98\xc4\xe3\x8d\x87\x82f_,\xb87\x00Y\x90\x97\xcfD\x10r\x14\x8a\xc0>\xd3\xa7'\x16r<\x01TAr!\xa0U\xc7TB\x01P\x00'\x08\xc03H\xbe\xc0\xbf\xf3\xf3(\x08q\x90\xec#a\xc3\xff\x99e\x1f\x0f\x03\xf6\xb0\x134@ \xa0_\x06o\x05\xc9Y!\xaf @\xdf\x1c\xbdK\x80\xf5\xc6\xf7\xce\xc7I\x12\x88\xd7\x0e\x8b\xf0\x03\"l\xc0\xdd\xbf\x87\x1d\xce\x01j=\xaa\x1d\xce\xc5\xe7\xbev\xb88l\x1c\x98\x0e\x03\xc9\x90\xaf9 \xdb\xdf\xa7\x1a\xf6I; 4;g)C@\xd9\xbf\x87el\x01\x92\x1e\xd5\x12\xb6\xf1\xf8;\\\xbeQ\xa0\xd6\xdf\xe7\xd2\x0d\x87\xaa\xce\x9dAn`j4$U\x02\x9e\x82\x04\xf5\xf1\x0b\x02\xa3\xa6\xc1P)\x8f\xeeI\x15\x08@u\xc0LA\x80\xa9o\x9dd\x03\x95\xfaT\xae\xc2H:\x90T!\x13\x01!\xb5\x80G\xfd\x98\x82\xc5\xe5\xe4\x863&\xb8\nS\xb1y\xad`\xef\x19\xec9\xb3x\xcd \x8f\x99\xc7[\xa6HJ\xc2\x9d\x18o\xcb\x80\x13K\x82J\x85\xff)/\xa5%=\xa4\xfe\x1d\xef\xe1K\x16\x9f\x11\xb0\x16\xffw@\x06\xcb\xc0/G\xec \xc7\x9b8\xbf\x8bw)\x82\xb3\xe6\x15\x8b\x01\xf3\xc9C=\x81\xaf\xf1PT\xb5~x\xe53\xa8S\xadi\xa79\x15t \xf3XIV\x15\xe1\xd0\xd4\xe1\xf6\x91\xcf:\xb2jQ\xbb\xf6\xb4hM\x87\xaa\xb3iI\xeb'\xee\xc5\x9fK\x1b&iA\xd8\x16\x82\xb5_\x8c\xd6\x8b\xb0\x82l6P\xcer\xd5\x01\xb6\x8fgo\xf3\x1a\x1a\x81V\x8f\xcf\xe6\xc9\xc4F\xba\xb5\x13h\xeb\xa4Z:\x1e;\xc7g\xe5y\x97}\xf6W\x0e\xef\xb2\xab\xebY\xed\xad8[+\xd0\xce\x82\xb9\xcfj_\x85\xdbVe\xdb\xaf\xdb~\xd1\x17\x0d\x05\xa0,\x1e^\xdc\xe0\xa1x\xb1\xf8PL\x95*\x03v\xb9j\xbd\xc6\xcb\xaa\x18\xf0\xb5\xa0t\xbd\xae\x9a\xeb%\xde\xb4}e\\Q\xca\xab\x0cO\x91\xca\xe9 _E\xf65\xe4\x1eK1\x1f\xd7#\"\x91\xfd\xcc&\x98\xf8B\x1e\xcd\x16\xdd\x15\x9b\x0dn&\xc2\xf5N\x11\xc3\xc5\x8a]\xc1\xacz\x8a\x13;\x9b^\x1c\xe9\x91y^\xf5\xa8i\x87)s\x83B\xe3\xbdH0v\x86\xaa\x95\xc4\x08\xbam\x1fpG\xad::\x81\xda\x9e\xa5B\xab\xfa~\x8b\x97\xd3x\xd1NH\xf4\x8a\x01\xd5\xb8\xe8y\xde\xad\xba\xe8n\xf1\x19\x19e\xbc\xde\xb4]\xd1\xed\xa6\x9eJ\x1f\x89\\pRGEC\xac&3\xf9;\xc3\xf10\x88\x1e\x07\xa6\xe1f\xd9\xf3\x8b+\x125\x80\xf3\x85\xb1\xdc\xb6\xcdi\xc1\xfd\xfd,8x4\x9dKN^j\xd3\xe7\xf3V\xddD'v\xdd52\x0f!KO\x19{\xd6-\xdf\xd2\xfb\x03\xdc\xe3\xc4\xc5'\x11\x93\x96\xa1}\xf1)\xc3\xc8v\xc9qR\xd2\xa9\xd26\xab\xeav\xdb\xd1\xdc2\x1b\xf2wL\xaf\xb9r\x00\xde\xc8\xee\xba]nk\xec\xda\x82iV\xc4\x8b\xfe\x92\xffNl\x9aXOC?\xaapl\x9c;o\xda\xb6\xc6\xd2\xf4Q:\xa6|I\xe7_\xb7\xc5d\x84)\xdc\x9c\xa7*\xaaz4\xbd\xe4\xb2m\xac=Q$\xf7\xf1\xc3+\xc9\xca\xa1\x93I\xfe\x86\xd3\xa2\x89\x1d\xbdbc\x03\x13-\xb0M\xa1\xd6\xe7V\xba\xc3\xfeHa\xd3\xc0HJc\xbd\xd0$\x1dt\xe6\x0e\xb5\xa0\x90E\xa9\xa3\xcc\xa1\x82\xd3I\xe6\x10'\x19_\xe7g\xd8b\x1a\xa5\x88\x9d\x01e\xb2\xc9\xd0\\\xbb\xcc\x98'a\x1b\x04h\x9b\xa1\xf9\xf6\x99\xbe\xb0\\\xdb\x04{|;\xfbiY\xffg_\xd63->\x14k\xf5\xa1l\x96\x1f\xcak\xfd\xa1\x88\x05\xae\xb3\x91\xd5\nDI\x96 `u\xb8\x8d\x1ba;\x86\xd93\x93\x19t.}\xfc \xaa\xb3\xcb\xe24\x84\x08\x99\x96\xd0\xbc,\xef\xf0\x1a\xa3_\xee\x86a\xf3\xcb\x19\xfb\xff\xfe\x973DS\x98\xf1\xbf\x9e\xd1\x19UJ\x85LY\xa5\x01\x80\xdcvC\xb6\xdf\xdd\x06n\x0bw\x0f\"1\xdb\xba\xd8\xf4lz\x10\xceIO\xf9\x9cg\xfb\x01K\xb3\x86\x8a\x1e\xad\xda\xban?\xf7/\xc1\x91\xf9\xaf\xe8b5\xf1\x89X\xd5\x81\x87j\x89\x97cW\xa8\xc1\xd4\xf7\xdb5^\x1a\xd1\x16F\xe2\xbcA\x7f\xb9\xba\xfa\x80\xfe\xf9\xcd\x95\x08Q|\xfa\xf8\x13[n;\x1a\xf7*\xd0\xbf\xea\x93\xf4j\xb7\xc1\xff\xf6\xaf\xff\x06\x10D\xe2\x9c\xd8\x88\x99\xc0\xf4>\x95\xe9\xa6k\x97\xdb\x12\x13\x83\x1cw\x1d\x9cL\xf9\xbf\xa2\xf3\xcd\xa6&\x96;\x93\x019g\x13\x19\xb0\x13~Y\x94d-\xb7\xed\xfdv3\x1etEe\x10x\x89\x82L~\xfa\xf8\x13\xe5H$\x8f[Ksy\xc9&s!:@\xfe\xfb\xa1%\xb6n\x03\xa7\xcbc\xec\xd0\xe5\xda\xe1U\xdb\xe13\xf1)\xa1X\x0c\"\xf9[\x83\xf1\xb2\x17N\x0b\xa2V\xba\x07{\xd6\xe9\xf2\xaehn1}\x9d\xae\x9a\x05z\xf2\xa9\xc7\xe8\x01w=;\xc5\xd0\xe9C\xb4\x03\x9b?ES\xdc\xc2}\xbd\xe9pqO\xd6<'\xb9\xf8\x06\x9a \xef\xda\x01\xbfd\xe7\x8d\xd5\x96\xd9=\x05\xe5\x9ak\x89)a\xb6\xe4W\xd01\x86\xe2i\xa9;\xc5t( \xa1\xedo\xb6+\xd4a\xa2\xc3\xf1\x19\xcf\xa0'\x1a\xda\xf6b\xc3\x1c\xd7\xc7\x0d\xbe\xad\x9a\x06\xda\xc9\x10=u\x80\xca\x99\x98Ll\xde\x16\x9b\xaa_\x94\xed\x1a\xd6o\x97t\xf5\xf4\xcc\x99A\x96g\xa3\xeb\x03\xf4\x84o\xdf\xcc\x1b\xc4\x96\xdb7h]\xdd\xdeAZ\xe0\x06\\\xfe\xb4[\xf4\x884\xc6\x8d\x99\xf1\xceO\xd5%\xea\xf1\xbah\x86\xaa4\x12\x80\xd2\x15\x15\xb9\xc5[\xbdl(h\xff\xff\x99[0\xbc\x0e\xb8\xb4\x81\x1b\xbb5\xdf\xec\x8a\x9b\xf6\x01\xdc\xfaG\xa7\xc1 \x95\x92F\xac\xa8\x8c\x99qu\x00\x02 (3h\xc1n5y\x84\x1a\"\xb9\xec\xb6\x93\xcfz\xcam?e\xb6\xa0<6\xd4l+*\xaf\x1d\x15bI\xcd\xb0\xa5\xf2ZSA\xf6T^\x8b*\xc0\xa6\xcanUy\xec\xaa4\xcb\n$\xe4\xb4\xb6\xb2\xd8[\x81\x16\x17\xf8e\x94\x156\xdb\x0e\xcbm\x89\xd9m\xb1\xcc\xd6\xd8>\xec\xb1\xcc\x16Y\xa8M\x96\xd9*s\xdbe\xd9-3\xbbm\x16a\x9d\xa5\xdbg 1j\xb3Y,\xb4Y6\x9a\xd5J\xf3\x9a\x14NK-\xcc\xe2\xc8g\xad\xb9\xec5\x14\xc0\xcd/\xe7\xcd\xee\x17af\xb0\xe2\xe9\xddM50o\xb4\x9d+\xae\xa3\x0drE\xdd6\xb7\x02\xdcg\xfc\x95hM\xaa\xf4\x19W7\xa69%\xb7)\xac\"`\x9a}\x10\x13\xbf\xaen(\xabc\xc1\xe4~\xbb\xd9\xb4\x1d\xdd97Ey\xffl\xdb\x90\xff#\xfb%\x1bo\xa9\xa4\xfd\xf4P\x8b\x064\x1e\xda\x15\xda\x0eL\xf9\x88\xe5\xdc\x13\xc5W,Y\x86\xf4\xa2\x96\xf2-0\xe4\xe8x\xd5\xe3\x1c\xd0wl\x88\xccv\xde|)\xc8\x04F/^\xa2\x0f\x84_\x16\xbf\xa3\xac\x17\xe3\x86X5\xe8\xd5?\xfc\x83e\x9bz\xdb\xb6h\xd5\xb6\xe8G\xb4X,\xfe\x1f\xf0\x15\"\x84\xa2\xd9\xc1\x7f,\x9a\xdd\x824\xfd\xb6k\xd7OVm\xfb\x0d\xfc\xdab\x01\xef=\xd5\n=!$>Q\xa6\xaf\xda'\xff\x85\xd0\xf8\x06\xfdo\x8b>\xb5\xd1\xf9\x0f\xbbl\xbe\xf5\xc8\xe6\xbf\x17\x0f\xc5l\xe1\xa0\x1f\xa9mE\xa8\xcf\x90B\xd5?y\xdb\xb6\x8b\xb2.\xfa\xde!\x04\xc6\x12\xf9\x80\xf5G\xfa\x08n\x17\x90\xce(\x9e\xef<\xe2\xf9\xb0\x1b\xee\xe4\x00\xb3\xf20N\xde\xb6\xed\x93\xc5b\x01k\xe2Q8O\xac\x7f\xa7\x13\x88\x8a-Vj\xe4\xe3\x0b&\xb4\xd7o._}\xbc\xf8p\xf5\xfe\xe37\x90rF\xbc)6\xd1\xec\x8d\xb1\xe6\xec\xe2\xfa\xde#\xae\x7fnaIQQ\xbd\xfc\x11\xfd\x97\xcd\xcd\xe2m\xdb\xfe\xef\xc5b\xf1\x1f\xf0\x8bE\xb3;#\xe6\x1ay{\xc3\x0c\x90\x9f\x8b\xae\xbf+j\"D;\xe361\xe9-[\x9a\xadVZ\xa3\x9f\x9a\xf5\xd4,e\x8aNl\xfa\xd6\xff\xf5#j\xaa\xda:A\xed\xbc\x003\xf1\x8a\"\x95\xca\xfbQ\x0f\nc\x9b\xd6\x12\xd756\x03\xec\xecD\xb0\xd5\xa0\xb6\xed\x81=\xffk\xc0\x0cyF\xce\xa2\x0b\xfa\x07b\xca}\x8d\niW!;\x0e\xad\xa6\x0b\xd8Wl\xd4\xcdFF5\xde\xd4;qn2\x0e\xbc\xa3\xe9\xc8Kd\x0e\xfc\xbcm\xb2\xfc\xeck\xb3 ~\xa0\x13,\xb2\x13\x1c\xe63\xf3\xabU\xdb.n\x8a\x8ev\xee\xcb\xb3\xdd\xe2\xb7\xaf\x98\xb4\xd8Y\x03>VQV\xbe\"\xef\x92\xed\xc5\xf8\xf3\x7f\xbf|\xff\xce\xfc\xf5\xc7\x1f\x7f\xfc\x11\x1eG\xf2\xfe\xe4\x07`6\x15\xbb\x92\xc7\x0c\x06vV\xd9\xf6|\x07\xef\xf0\xed\xb6.:\x93\x96Ib\xa0\xf5\xcc\xa6m\xfe\x0c\xe1\xf5\x0d^.\xa7\x0d\xff\x8c\xdb\x0f\x80\xf7@\xdav\xd9\x15\x8f_\xfe?\"\x8e_\xf8!w4cd\xe1.\xc4\x92\x7fi1\xa2\x8b\xf2\x9e\xac\xf9\xe9\xb0\xb6\xaaj\x0c\xeb_\xa1\x1f>\xe0\xaeo\x1b\xeb\xb2\xe1\x1e\x9cU\xd5\xf5\xc35\x1d\x99\x1f\xd1\x0b\x98\xe2\xf82\x99<\xe2\xddo\xc3\xb5?BV.\xbe\xa2\xb2\xf9\xea%\xfa\nZ5jw\x17\xacG_\x9d\xd9h\xd1\xbe\xbc+\xd6\x84\xde\xff\xcbX\xfeo\xd6\x97I_\xb4wC;t\xb1\xe2\x07\x03uN\xb0\xd1\xacz\xf4\x19\xd7\xf5\xd3\xfb\xa6\xfd\xcc\xae\x05\xdd\x15=*\xc4\xf5lx\x92\xabS\xf0\x8c\x19\xa0\xda\xbc\x9c\xd0\x83\xbcY2\xd1\x9a[\xe0\\O\xa7\x9d\xd9\xc8/tA\x88yx\xd7\xd6K\xe5\xe28]NU3\xce_Q\xdd\x87O_\x93\x1emf\x9c\xb9\x88\xd6\xe8\x11\xa20\xdc\n\xc2s\xf6o\xff\xfao\xdfX&\xf9\xdc9\xa26d\x9f&T\x0c\x84\xdc\x8b\xc5\xb7/\xbe\xed\xbf\xb2\x0c\xbb\xfc/#.\xcf\xfbI\xcf\xe4\xdd\x96\x173\x1a\xa4`\xfc\xaa\xea\xe4::\x1co\xc9\xf1\x14\x7f\xb0\xd2\x15\x9f\xf3\x04*\xec:P\xc1\xd0\x89\x15;(3\xa2\xe6\xc5\x1e\x00\xab\xa1*\x9b\x8ea3\xf1R\xb0\x11\x06\xfe\xf0!R\xac\xc8\x8f=#\xf9\xf7\x84\xa2OD\x8a\x80X\x11'K\xd1x\x11\x101\xb2\x0f\xcc\xc8)\x06\xc2\x9fS\x0c\xe4\x14\x03A\xa7\x18\xc8)\x06\xa2<\xa7\x18\xc8)\x06\xa2?\xa7\x18\xc8)\x06\x82\xd2c \x96:\xc1\x90\xd9\xcc\x9e\xfc%\x87\\\xb6\x9bW\xd4a\xd2L\xb7\xe0,\xe4\xd4`\x0c<\xf5\xf2[q\xd9\xed8\xaf%\x97\xc1\x96\xcbm\xcd\x85\xd9s\xb3,\xba\xdc6]\xa0U\x97\xdb\xae\x0b\xb2\xec\xd2m;\x1b9<\xf8\xac\xbb\x8c\xf6\x9d\xd7\xc2\xcbd\xe3\xcd\xb1\xf2\xa2\xed\xbc\x0c\x96^\xba\xadg\xd5<\x0ek/\xbb\xbd\xb7\x1f\x8b/\xbb\xcd\x17n\xf5e\xb7\xfb|\x96_\x8a\xedg!4Z\x84\x0e\xeb/\xca\xfe\xcbl\x01\xfal\xc0\x99V\xa0\xc3\x0e\x0c0O<\xb6`\xa8\xfd\x92\xd3\x1e\xf4\xa1bBx\xca\x8c\x8c\xf1ac2\xa2c\xb2\xe3c\\\x08\x99Y\x18\x19\x80\x1a\xe1d\xb0\xa0dr\xe0d\x82\xc0 \x1e\xacL0Z\xc6\x11@\x8fF\xcc\xb8h\x81\x91\xc1\x0c\xb8\x998a\x85agBd\x12\x88\x9fI@\xd0\xd8\xa2\xa8YP4A8\x1a?\x92&\x04K\xe3\x91b\x1c\x9e&\x14Qc\xc3\xd4d@\xd5D\xe0j\xd2\x915.\xa1\x05\xa2k2\xe3k\x9c\x1c\x8135/\xca\xc6\x82\xb3\xc9\x8c\xb4\xb1cmr\xa3m,x\x9bY\x88\x1b\x80\x9a\xed\xe0\xe7A\xe1\xd8p86$N^,Nv4\xce~\xf08q\x88\x9c`LN$*'\x06\x97cE\xe6\xd8q\x17\xe1\xc8\x8b\x10tN$>'\x02\xa1c\xe9\xda\x0c\x94N\xc4\xa2\xc8\x8b\xdc\xb1bw\xf2\xa3w\xf2\xe3wr\xcc\xa4@\x0cO(\x8aG\xc7\xf1d@\xf2\x84ay~\xe2\xc9e\xaf\x14<\xcf\xac|\xb2\x92\xd7O\xfe\xb3@t\x9c\xb2\xed\x9d\xb2\xed\xe5\xcd\xb6\x07\x82\xc0\xd4\xfd\xb2V\xa7yoG\x94]\xc9\xd9\x80\x8c\x99 \x94\x05\xc9\x91~,\x01\xcb\xa5\xa1\xb8\xc0\xa6\xa3\x90[\x1af+/Z+b\x89\x0f`|\xcf:\x9b\xdd\xbe\xa7\xd48\x1e`y\xdb\xe3w\xf9\xe2v\xd9\xe2u\xd68\xdd\x8c\xf8\\\xae\xb8\x9c;\x1e\x97\x14\x87K\x8e\xbf1\x9f\xbe!#K\xdc-9\xde\xc6\x8c!\x8d\x9a%\xce\x96\x1a_\x1b#izo\x80\xe3UJ<\xcd\x1e9\x9b\x191\x0b\x8a\x94\x85\xc7\xc4f\xc4\xc2Rc`\xb6hW\xb6(W\xde\xe8V\xb6\xa8\x96?\x9a\x95-\x8ae\x8b^\xc5G\xad<\xf1)\xc0\xec7\xf5Mj<\xca\x1ayJ\x8c8\x01\x91&\xaf\xd9\xe7\xb6\x85\x8d\x1d41\x924\xc5\x8c \xf9\xf2\xdf\x0c4\xd1\xb0\x07\xf8=lO\x84#\xde\x81xVF\xab\xc2\x8d\xed\xcegYd\xb4-\x9c(\xa0\x19\xf6E>\x0b\xc3gc$Z\x19\xb9\xed\x0c\x87\xa5\x91\xdb\xd6\xb0Z\x1b\xb3\xed\x0d\x83\x9e\x0d\xc9\x93\xd7\xe6\x98mud\xb7;fY\x1e\xf9m\x8f\x8c\xd6Gn\xfb#\xa3\x05\x12b\x83d\xb4B\\(\x9a9\x96\x88A\x0cF\xce\x04\xd9&s\xad\x13\x83\x1c\x84\x93I\xb4W,\xd8\x18\xc7V\xec\xc0\xc3\xf8v\xe9D\xcb\xc5T\\V\xf4\x8b\x8b\x83y\x88\x17\x86oQ\x08BX\x97,(\x97y\xf8\x16c\x95\x98\x1b\xee\x0cL\x8b\x91\xf7e\x00\xd0,\xf3p,\x1eP\x86\x15\xbb\x12\x80Z\x81\xc2\xd11H\x15\xe8\xfb\xff\x80\xfb\x9e\x88K \xeb\xbc\x1f\x8b\xe2\xeai\x00\xfe$\ny\xa2\x07\xd1f\xa3M<8\x13\x17\xc2\xc4\x8d-\xb1H%\x1cO\xe2G\x92\x98\x18\x92Y\xe8\x91 \xdcH\nb\x04Df\xf8Q\"\xd9\xf0!`\xfb\xdaL\x9a\x85\x061\xb1\x1fsP\x1f \xc6c\x16\xba\xc3\xc4r\xcc@q\x00&\xbe\x03\xada\x86\xa4M\x84F.lFFTFn- + GetAllCommitments gets all fund committed to any market from any + account. + operationId: GetAllCommitments responses: '200': description: A successful response. schema: type: object properties: - accounts: + commitments: type: array items: type: object properties: - address: + account: type: string - permissions: + description: >- + account is the bech32 address string with the committed + funds. + market_id: + type: integer + format: int64 + description: >- + market_id is the numeric identifier of the market the + funds are committed to. + amount: type: array items: - type: string - enum: - - ACCESS_UNSPECIFIED - - ACCESS_MINT - - ACCESS_BURN - - ACCESS_DEPOSIT - - ACCESS_WITHDRAW - - ACCESS_DELETE - - ACCESS_ADMIN - - ACCESS_TRANSFER - default: ACCESS_UNSPECIFIED + type: object + properties: + denom: + type: string + amount: + type: string description: >- - Access defines the different types of permissions that - a marker supports granting to an address. + Coin defines a token with a denomination and an + amount. - - ACCESS_UNSPECIFIED: ACCESS_UNSPECIFIED defines a no-op vote option. - - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker - - ACCESS_BURN: ACCESS_BURN is the ability to decrease the supply of the marker using coin held by the marker. - - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to set a marker reference to this marker in the metadata/scopes module - - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to remove marker references to this marker in from metadata/scopes or - transfer coin from this marker account to another - account. - - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. This - access also allows cancelled markers to be marked for - deletion - - ACCESS_ADMIN: ACCESS_ADMIN is the ability to add access grants for accounts to the list of marker permissions. - - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to invoke a send operation using the marker module to facilitate exchange. - This access right is only supported on RESTRICTED - markers. - description: >- - AccessGrant associates a collection of permissions with an - address for delegated marker account control. + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + amount is the funds that have been committed by the + account to the market. + description: Commitment contains information on committed funds. + description: commitments is the requested commitment information. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise description: >- - QueryAccessResponse is the response type for the - Query/MarkerAccess method. + QueryGetAllCommitmentsResponse is a response message for the + GetAllCommitments query. default: description: An unexpected error response. schema: @@ -34216,29 +34234,113 @@ paths: "value": "1.212s" } parameters: - - name: id - description: address or denom for the marker - in: path - required: true + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean tags: - Query - /provenance/marker/v1/accountdata/{denom}: + /provenance/exchange/v1/commitments/account/{account}: get: - summary: query for account data associated with a denom - operationId: MarkerAccountData + summary: >- + GetAccountCommitments gets all the funds in an account that are + committed to any market. + operationId: GetAccountCommitments responses: '200': description: A successful response. schema: type: object properties: - value: - type: string - description: The accountdata for the requested denom. - title: >- - QueryAccountDataResponse is the response type for the - Query/AccountData + commitments: + type: array + items: + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id is the numeric identifier the amount has been + committed to. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: MarketAmount associates a market with a coins amount. + description: >- + commitments is the amounts committed from the account to the + any market. + description: >- + QueryGetAccountCommitmentsResponse is a response message for the + GetAccountCommitments query. default: description: An unexpected error response. schema: @@ -34429,202 +34531,62 @@ paths: "value": "1.212s" } parameters: - - name: denom - description: The denomination to look up. + - name: account + description: >- + account is the bech32 address string of the account with the + commitments. in: path required: true type: string tags: - Query - /provenance/marker/v1/all: + /provenance/exchange/v1/commitments/market/{market_id}: get: - summary: Returns a list of all markers on the blockchain - operationId: AllMarkers + summary: >- + GetMarketCommitments gets all the funds committed to a market from any + account. + operationId: GetMarketCommitments responses: '200': description: A successful response. schema: type: object properties: - markers: + commitments: type: array items: type: object properties: - type_url: + account: type: string description: >- - A URL/resource name that uniquely identifies the type of - the serialized - - protocol buffer message. This string must contain at - least - - one "/" character. The last segment of the URL's path - must represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in - a canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary - all types that they - - expect it to use in the context of Any. However, for - URLs which use the - - scheme `http`, `https`, or no scheme, one can optionally - set up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based - on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in - the official - - protobuf release, and it is not used for type URLs - beginning with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) - might be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer - message along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values - in the form - - of utility functions or additional generated methods of the - Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by - default use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the - last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield - type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with - an - - additional field `@type` which contains the type URL. - Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom - JSON - - representation, that representation will be embedded adding - a field + account is the bech32 address string of the account + associated with the amount. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - `value` which holds the custom JSON in addition to the - `@type` - field. Example (for message [google.protobuf.Duration][]): + NOTE: The amount field is an Int which implements the + custom method - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: AccountAmount associates an account with a coins amount. + description: >- + commitments is the amounts committed to the market from any + account. pagination: - description: pagination defines an optional pagination for the request. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -34643,8 +34605,8 @@ paths: was set, its value is undefined otherwise description: >- - QueryAllMarkersResponse is the response type for the - Query/AllMarkers method. + QueryGetMarketCommitmentsResponse is a response message for the + GetMarketCommitments query. default: description: An unexpected error response. schema: @@ -34835,28 +34797,14 @@ paths: "value": "1.212s" } parameters: - - name: status - description: |- - Optional status to filter request. - - - MARKER_STATUS_UNSPECIFIED: MARKER_STATUS_UNSPECIFIED - Unknown/Invalid Marker Status - - MARKER_STATUS_PROPOSED: MARKER_STATUS_PROPOSED - Initial configuration period, updates allowed, token supply not created. - - MARKER_STATUS_FINALIZED: MARKER_STATUS_FINALIZED - Configuration finalized, ready for supply creation - - MARKER_STATUS_ACTIVE: MARKER_STATUS_ACTIVE - Supply is created, rules are in force. - - MARKER_STATUS_CANCELLED: MARKER_STATUS_CANCELLED - Marker has been cancelled, pending destroy - - MARKER_STATUS_DESTROYED: MARKER_STATUS_DESTROYED - Marker supply has all been recalled, marker is considered destroyed and no further - actions allowed. - in: query - required: false - type: string - enum: - - MARKER_STATUS_UNSPECIFIED - - MARKER_STATUS_PROPOSED - - MARKER_STATUS_FINALIZED - - MARKER_STATUS_ACTIVE - - MARKER_STATUS_CANCELLED - - MARKER_STATUS_DESTROYED - default: MARKER_STATUS_UNSPECIFIED + - name: market_id + description: >- + market_id is the numeric identifier of the market with the + commitment. + in: path + required: true + type: integer + format: int64 - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -34915,190 +34863,164 @@ paths: type: boolean tags: - Query - /provenance/marker/v1/detail/{id}: + /provenance/exchange/v1/fees/commitment_settlement: get: - summary: query for a single marker by denom or address - operationId: Marker + summary: >- + CommitmentSettlementFeeCalc calculates the fees a market will pay for a + commitment settlement using current NAVs. + operationId: CommitmentSettlementFeeCalc responses: '200': description: A successful response. schema: type: object properties: - marker: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of - the serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally - set up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based - on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs - beginning with - - type.googleapis.com. + exchange_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Schemes other than `http`, `https` (or the empty scheme) - might be + NOTE: The amount field is an Int which implements the custom + method - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. + signatures required by gogoproto. description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in - the form - - of utility functions or additional generated methods of the - Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go + exchange_fees is the total that the exchange would currently + pay for the provided settlement. + input_total: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - The pack methods provided by protobuf library will by default - use + NOTE: The amount field is an Int which implements the custom + method - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + signatures required by gogoproto. + description: >- + input_total is the sum of all the inputs in the provided + settlement. + converted_total: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - methods only use the fully qualified type name after the last - '/' - in the type URL, for example "foo.bar.com/x/y.z" will yield - type + NOTE: The amount field is an Int which implements the custom + method - name "y.z". + signatures required by gogoproto. + description: >- + converted_total is the input_total converted to a single + intermediary denom or left as the fee denom. + conversion_navs: + type: array + items: + type: object + properties: + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the + custom method - JSON + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - ==== - The JSON representation of an `Any` value uses the regular + NOTE: The amount field is an Int which implements the + custom method - representation of the deserialized, embedded message, with an + signatures required by gogoproto. + description: >- + NetAssetPrice is an association of assets and price used to + record the value of things. - additional field `@type` which contains the type URL. Example: + It is related to the NetAssetValue message from the x/marker + module, and is therefore often referred to as "a NAV". + description: >- + conversion_navs are the NAVs used to convert the input_total + to the converted_total. + to_fee_nav: + type: object + properties: + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + NOTE: The amount field is an Int which implements the + custom method - If the embedded message type is well-known and has a custom - JSON + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation, that representation will be embedded adding a - field - `value` which holds the custom JSON in addition to the `@type` + NOTE: The amount field is an Int which implements the + custom method - field. Example (for message [google.protobuf.Duration][]): + signatures required by gogoproto. + description: >- + NetAssetPrice is an association of assets and price used to + record the value of things. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } + It is related to the NetAssetValue message from the x/marker + module, and is therefore often referred to as "a NAV". description: >- - QueryMarkerResponse is the response type for the Query/Marker - method. + QueryCommitmentSettlementFeeCalcResponse is a response message for + the CommitmentSettlementFeeCalc query. default: description: An unexpected error response. schema: @@ -35289,24 +35211,107 @@ paths: "value": "1.212s" } parameters: - - name: id - description: the address or denom of the marker - in: path - required: true + - name: settlement.admin + description: >- + admin is the account with "settle" permission requesting this + settlement. + in: query + required: false + type: string + - name: settlement.market_id + description: >- + market_id is the numerical identifier of the market requesting this + settlement. + in: query + required: false + type: integer + format: int64 + - name: settlement.event_tag + description: >- + event_tag is a string that is included in the + funds-committed/released events. Max length is 100 characters. + in: query + required: false type: string + - name: include_breakdown_fields + description: >- + include_breakdown_fields controls the fields that are populated in + the response. + + If false, only the exchange_fees field is populated. + + If true, all of the fields are populated as possible. + + If the settlement does not have any inputs, this field defaults to + true. + in: query + required: false + type: boolean tags: - Query - /provenance/marker/v1/escrow/{id}: + /provenance/exchange/v1/fees/order: get: - summary: query for coins on a marker account - operationId: Escrow + summary: >- + OrderFeeCalc calculates the fees that will be associated with the + provided order. + operationId: OrderFeeCalc responses: '200': description: A successful response. schema: type: object properties: - escrow: + creation_fee_options: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + creation_fee_options are the order creation flat fee options + available for creating the provided order. + + If it's empty, no order creation fee is required. + + When creating the order, you should include exactly one of + these. + settlement_flat_fee_options: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + settlement_flat_fee_options are the settlement flat fee + options available for the provided order. + + If it's empty, no settlement flat fee is required. + + When creating an order, you should include exactly one of + these in the settlement fees field. + settlement_ratio_fee_options: type: array items: type: object @@ -35323,9 +35328,28 @@ paths: method signatures required by gogoproto. + description: >- + settlement_ratio_fee_options are the settlement ratio fee + options available for the provided order. + + If it's empty, no settlement ratio fee is required. + + + If the provided order was a bid order, you should include + exactly one of these in the settlement fees field. + + If the flat and ratio options you've chose have the same + denom, a single entry should be included with their sum. + + + If the provided order was an ask order, these are purely + informational and represent how much will be removed + + from your price if it settles at that price. If it settles for + more, the actual amount will probably be larger. description: >- - QueryEscrowResponse is the response type for the - Query/MarkerEscrow method. + QueryOrderFeeCalcResponse is a response message for the + OrderFeeCalc query. default: description: An unexpected error response. schema: @@ -35516,115 +35540,163 @@ paths: "value": "1.212s" } parameters: - - name: id - description: address or denom for the marker - in: path - required: true + - name: ask_order.market_id + description: market_id identifies the market that this order belongs to. + in: query + required: false + type: integer + format: int64 + - name: ask_order.seller + description: >- + seller is the address of the account that owns this order and has + the assets to sell. + in: query + required: false + type: string + - name: ask_order.assets.denom + in: query + required: false + type: string + - name: ask_order.assets.amount + in: query + required: false + type: string + - name: ask_order.price.denom + in: query + required: false + type: string + - name: ask_order.price.amount + in: query + required: false + type: string + - name: ask_order.seller_settlement_flat_fee.denom + in: query + required: false + type: string + - name: ask_order.seller_settlement_flat_fee.amount + in: query + required: false + type: string + - name: ask_order.allow_partial + description: >- + allow_partial should be true if partial fulfillment of this order + should be allowed, and should be false if the + + order must be either filled in full or not filled at all. + in: query + required: false + type: boolean + - name: ask_order.external_id + description: >- + external_id is an optional string used to externally identify this + order. Max length is 100 characters. + + If an order in this market with this external id already exists, + this order will be rejected. + in: query + required: false + type: string + - name: bid_order.market_id + description: market_id identifies the market that this order belongs to. + in: query + required: false + type: integer + format: int64 + - name: bid_order.buyer + description: >- + buyer is the address of the account that owns this order and has the + price to spend. + in: query + required: false + type: string + - name: bid_order.assets.denom + in: query + required: false + type: string + - name: bid_order.assets.amount + in: query + required: false + type: string + - name: bid_order.price.denom + in: query + required: false + type: string + - name: bid_order.price.amount + in: query + required: false + type: string + - name: bid_order.allow_partial + description: >- + allow_partial should be true if partial fulfillment of this order + should be allowed, and should be false if the + + order must be either filled in full or not filled at all. + in: query + required: false + type: boolean + - name: bid_order.external_id + description: >- + external_id is an optional string used to externally identify this + order. Max length is 100 characters. + + If an order in this market with this external id already exists, + this order will be rejected. + in: query + required: false type: string tags: - Query - /provenance/marker/v1/getdenommetadata/{denom}: + /provenance/exchange/v1/fees/payment: get: - summary: query for access records on an account - operationId: MarkerDenomMetadata + summary: >- + PaymentFeeCalc calculates the fees that must be paid for creating or + accepting a specific payment. + operationId: PaymentFeeCalc responses: '200': description: A successful response. schema: type: object properties: - metadata: - type: object - properties: - description: - type: string - denom_units: - type: array - items: - type: object - properties: - denom: - type: string - description: >- - denom represents the string name of the given denom - unit (e.g uatom). - exponent: - type: integer - format: int64 - description: >- - exponent represents power of 10 exponent that one - must - - raise the base_denom to in order to equal the given - DenomUnit's denom + fee_create: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - 1 denom = 10^exponent base_denom - (e.g. with a base_denom of uatom, one can create a - DenomUnit of 'atom' with + NOTE: The amount field is an Int which implements the custom + method - exponent = 6, thus: 1 atom = 10^6 uatom). - aliases: - type: array - items: - type: string - title: >- - aliases is a list of string aliases for the given - denom - description: |- - DenomUnit represents a struct that describes a given - denomination unit of the basic token. - title: >- - denom_units represents the list of DenomUnit's for a given - coin - base: - type: string - description: >- - base represents the base denom (should be the DenomUnit - with exponent = 0). - display: - type: string - description: |- - display indicates the suggested denom that should be - displayed in clients. - name: - type: string - description: 'Since: cosmos-sdk 0.43' - title: 'name defines the name of the token (eg: Cosmos Atom)' - symbol: - type: string - description: >- - symbol is the token symbol usually shown on exchanges (eg: - ATOM). This can + signatures required by gogoproto. + description: fee_create is the fee required to create the provided payment. + fee_accept: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - be the same as the display. + NOTE: The amount field is an Int which implements the custom + method - Since: cosmos-sdk 0.43 - uri: - type: string - description: >- - URI to a document (on or off-chain) that contains - additional information. Optional. - - - Since: cosmos-sdk 0.46 - uri_hash: - type: string - description: >- - URIHash is a sha256 hash of a document pointed by URI. - It's used to verify that - - the document didn't change. Optional. - - - Since: cosmos-sdk 0.46 - description: |- - Metadata represents a struct that describes - a basic token. - title: >- - QueryDenomMetadataResponse is the response type for the - Query/DenomMetadata + signatures required by gogoproto. + description: fee_accept is the fee required to accept the provided payment. + description: >- + QueryPaymentFeeCalcResponse is a response message for the + PaymentFeeCalc query. default: description: An unexpected error response. schema: @@ -35815,74 +35887,495 @@ paths: "value": "1.212s" } parameters: - - name: denom - in: path - required: true + - name: payment.source + description: >- + source is the account that created this Payment. It is considered + the owner of the payment. + in: query + required: false + type: string + - name: payment.target + description: |- + target is the account that can accept this Payment. + The target is the only thing allowed to change in a payment. + I.e. it can be empty initially and updated later as needed. + in: query + required: false + type: string + - name: payment.external_id + description: >- + external_id is used along with the source to uniquely identify this + Payment. + + + A source can only have one Payment with any given external id. + + A source can have two payments with two different external ids. + + Two different sources can each have a payment with the same external + id. + + But a source cannot have two different payments each with the same + external id. + + + An external id can be reused by a source once the payment is + accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string is a valid + external id. + in: query + required: false type: string tags: - Query - /provenance/marker/v1/holding/{id}: + /provenance/exchange/v1/market/{market_id}: get: - summary: query for all accounts holding the given marker coins - operationId: Holding + summary: GetMarket returns all the information and details about a market. + operationId: GetMarket responses: '200': description: A successful response. schema: type: object properties: - balances: - type: array - items: - type: object - properties: - address: - type: string - description: address is the address of the balance holder. - coins: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string + address: + type: string + description: address is the bech32 address string of this market's account. + market: + description: market is all information and details of the market. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id is the numerical identifier for this market. + market_details: + description: market_details is some information about this market. + type: object + properties: + name: + type: string description: >- - Coin defines a token with a denomination and an - amount. + name is a moniker that people can use to refer to this + market. + description: + type: string + description: >- + description extra information about this market. The + field is meant to be human-readable. + website_url: + type: string + description: >- + website_url is a url people can use to get to this + market, or at least get more information about this + market. + icon_uri: + type: string + description: >- + icon_uri is a uri for an icon to associate with this + market. + fee_create_ask_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Int which implements the - custom method + NOTE: The amount field is an Int which implements the + custom method - signatures required by gogoproto. - description: coins defines the different coins this balance holds. - title: >- - Balance defines an account address and balance pair used in - queries for accounts holding a marker - pagination: - description: pagination defines an optional pagination for the request. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + signatures required by gogoproto. + description: >- + fee_create_ask_flat is the flat fee charged for creating + an ask order. + + Each coin entry is a separate option. When an ask is + created, one of these must be paid. + + If empty, no fee is required to create an ask order. + fee_create_bid_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + fee_create_bid_flat is the flat fee charged for creating a + bid order. + + Each coin entry is a separate option. When a bid is + created, one of these must be paid. + + If empty, no fee is required to create a bid order. + fee_seller_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + fee_seller_settlement_flat is the flat fee charged to the + seller during settlement. + + Each coin entry is a separate option. + + When an ask is settled, the seller will pay the amount in + the denom that matches the price they received. + fee_seller_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. + + For an order to be valid, its price must be evenly + divisible by a FeeRatio's price. + description: >- + fee_seller_settlement_ratios is the fee to charge a seller + during settlement based on the price they are receiving. + + The price and fee denoms must be equal for each entry, and + only one entry for any given denom is allowed. + fee_buyer_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + fee_buyer_settlement_flat is the flat fee charged to the + buyer during settlement. + + Each coin entry is a separate option. + + When a bid is created, the settlement fees provided must + contain one of these. + fee_buyer_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. + + For an order to be valid, its price must be evenly + divisible by a FeeRatio's price. + description: >- + fee_buyer_settlement_ratios is the fee to charge a buyer + during settlement based on the price they are spending. + + The price and fee denoms do not have to equal. Multiple + entries for any given price or fee denom are allowed, but + + each price denom to fee denom pair can only have one + entry. + accepting_orders: + type: boolean + description: >- + accepting_orders is whether this market is allowing orders + to be created for it. + allow_user_settlement: + type: boolean + description: >- + allow_user_settlement is whether this market allows users + to initiate their own settlements. + + For example, the FillBids and FillAsks endpoints are + available if and only if this is true. + + The MarketSettle endpoint is only available to market + actors regardless of the value of this field. + access_grants: + type: array + items: + type: object + properties: + address: + type: string + description: >- + address is the address that these permissions apply + to. + permissions: + type: array + items: + type: string + enum: + - PERMISSION_UNSPECIFIED + - PERMISSION_SETTLE + - PERMISSION_SET_IDS + - PERMISSION_CANCEL + - PERMISSION_WITHDRAW + - PERMISSION_UPDATE + - PERMISSION_PERMISSIONS + - PERMISSION_ATTRIBUTES + default: PERMISSION_UNSPECIFIED + description: >- + Permission defines the different types of + permission that can be given to an account for a + market. + + - PERMISSION_UNSPECIFIED: PERMISSION_UNSPECIFIED is the zero-value Permission; it is an error to use it. + - PERMISSION_SETTLE: PERMISSION_SETTLE is the ability to use the Settle Tx endpoint on behalf of a market. + - PERMISSION_SET_IDS: PERMISSION_SET_IDS is the ability to use the SetOrderExternalID Tx endpoint on behalf of a market. + - PERMISSION_CANCEL: PERMISSION_CANCEL is the ability to use the Cancel Tx endpoint on behalf of a market. + - PERMISSION_WITHDRAW: PERMISSION_WITHDRAW is the ability to use the MarketWithdraw Tx endpoint. + - PERMISSION_UPDATE: PERMISSION_UPDATE is the ability to use the MarketUpdate* Tx endpoints. + - PERMISSION_PERMISSIONS: PERMISSION_PERMISSIONS is the ability to use the MarketManagePermissions Tx endpoint. + - PERMISSION_ATTRIBUTES: PERMISSION_ATTRIBUTES is the ability to use the MarketManageReqAttrs Tx endpoint. + description: >- + allowed is the list of permissions available for the + address. + description: >- + AddrPermissions associates an address with a list of + permissions available for that address. + description: >- + access_grants is the list of addresses and permissions + granted for this market. + req_attr_create_ask: + type: array + items: + type: string + description: >- + req_attr_create_ask is a list of attributes required on an + account for it to be allowed to create an ask order. + + An account must have all of these attributes in order to + create an ask order in this market. + + If the list is empty, any account can create ask orders in + this market. + + + An entry that starts with "*." will match any attributes + that end with the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and + "e.d.c.b.a"; but not "b.a", "xb.a", "b.x.a", or "c.b.a.x". + req_attr_create_bid: + type: array + items: + type: string + description: >- + req_attr_create_ask is a list of attributes required on an + account for it to be allowed to create a bid order. + + An account must have all of these attributes in order to + create a bid order in this market. + + If the list is empty, any account can create bid orders in + this market. + + + An entry that starts with "*." will match any attributes + that end with the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and + "e.d.c.b.a"; but not "b.a", "xb.a", "c.b.x.a", or + "c.b.a.x". + accepting_commitments: + type: boolean + description: >- + accepting_commitments is whether the market is allowing + users to commit funds to it. + fee_create_commitment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + fee_create_commitment_flat is the flat fee charged for + creating a commitment. + + Each coin entry is a separate option. When a commitment is + created, one of these must be paid. + + If empty, no fee is required to create a commitment. + commitment_settlement_bips: + type: integer + format: int64 + description: >- + commitment_settlement_bips is the fraction of a commitment + settlement that will be paid to the exchange. + + It is represented in basis points (1/100th of 1%, e.g. + 0.0001) and is limited to 0 to 10,000 inclusive. + + During a commitment settlement, the inputs are summed and + NAVs are used to convert that total to the + + intermediary denom, then to the fee denom. That is then + multiplied by this value to get the fee amount + + that will be transferred out of the market's account into + the exchange for that settlement. + + + Summing the inputs effectively doubles the value of the + settlement from what what is usually thought of + + as the value of a trade. That should be taken into account + when setting this value. + + E.g. if two accounts are trading 10apples for 100grapes, + the inputs total will be 10apples,100grapes + + (which might then be converted to USD then nhash before + applying this ratio); Usually, though, the value + + of that trade would be viewed as either just 10apples or + just 100grapes. + intermediary_denom: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + description: >- + intermediary_denom is the denom that funds get converted + to (before being converted to the chain's fee denom) - was set, its value is undefined otherwise + when calculating the fees that are paid to the exchange. + NAVs are used for this conversion and actions will fail + + if a NAV is needed but not available. + req_attr_create_commitment: + type: array + items: + type: string + description: >- + req_attr_create_commitment is a list of attributes + required on an account for it to be allowed to create a + + commitment. An account must have all of these attributes + in order to create a commitment in this market. + + If the list is empty, any account can create commitments + in this market. + + + An entry that starts with "*." will match any attributes + that end with the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and + "e.d.c.b.a"; but not "b.a", "xb.a", "c.b.x.a", or + "c.b.a.x". description: >- - QueryHoldingResponse is the response type for the - Query/MarkerHolders method. + QueryGetMarketResponse is a response message for the GetMarket + query. default: description: An unexpected error response. schema: @@ -36073,115 +36566,49 @@ paths: "value": "1.212s" } parameters: - - name: id - description: the address or denom of the marker + - name: market_id + description: market_id is the id of the market to look up. in: path required: true - type: string - - name: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. - in: query - required: false - type: string - format: byte - - name: pagination.offset - description: >- - offset is a numeric offset that can be used when key is unavailable. - - It is less efficient than using key. Only one of offset or key - should - - be set. - in: query - required: false - type: string - format: uint64 - - name: pagination.limit - description: >- - limit is the total number of results to be returned in the result - page. - - If left empty it will default to a value to be set by each app. - in: query - required: false - type: string - format: uint64 - - name: pagination.count_total - description: >- - count_total is set to true to indicate that the result set should - include - - a count of the total number of items available for pagination in - UIs. - - count_total is only respected when offset is used. It is ignored - when key - - is set. - in: query - required: false - type: boolean - - name: pagination.reverse - description: >- - reverse is set to true if results are to be returned in the - descending order. - - - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean + type: integer + format: int64 tags: - Query - /provenance/marker/v1/netassetvalues/{id}: + /provenance/exchange/v1/market/{market_id}/commitment/{account}: get: - summary: NetAssetValues returns net asset values for marker - operationId: NetAssetValues + summary: >- + GetCommitment gets the funds in an account that are committed to the + market. + operationId: GetCommitment responses: '200': description: A successful response. schema: type: object properties: - net_asset_values: + amount: type: array items: type: object properties: - price: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Int which implements the - custom method + NOTE: The amount field is an Int which implements the custom + method - signatures required by gogoproto. - title: price is the complete value of the asset's volume - volume: - type: string - format: uint64 - title: >- - volume is the number of tokens of the marker that were - purchased for the price - updated_block_height: - type: string - format: uint64 - title: updated_block_height is the block height of last update - title: NetAssetValue defines a marker's net asset value - title: net asset values for marker denom + signatures required by gogoproto. + description: >- + amount is the total funds committed to the market by the + account. description: >- - QueryNetAssetValuesRequest is the response type for the - Query/NetAssetValues method. + QueryGetCommitmentResponse is a response message for the + GetCommitment query. default: description: An unexpected error response. schema: @@ -36372,54 +36799,88 @@ paths: "value": "1.212s" } parameters: - - name: id - description: address or denom for the marker + - name: market_id + description: market_id is the numeric identifier of the market in the commitment. + in: path + required: true + type: integer + format: int64 + - name: account + description: >- + account is the bech32 address string of the account in the + commitment. in: path required: true type: string tags: - Query - /provenance/marker/v1/params: + /provenance/exchange/v1/market/{market_id}/commitments: get: - summary: Params queries the parameters of x/bank module. - operationId: MarkerParams + summary: >- + GetMarketCommitments gets all the funds committed to a market from any + account. + operationId: GetMarketCommitments2 responses: '200': description: A successful response. schema: type: object properties: - params: - description: params defines the parameters of the module. + commitments: + type: array + items: + type: object + properties: + account: + type: string + description: >- + account is the bech32 address string of the account + associated with the amount. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: AccountAmount associates an account with a coins amount. + description: >- + commitments is the amounts committed to the market from any + account. + pagination: + description: pagination is the resulting pagination parameters. type: object properties: - max_total_supply: + next_key: type: string - format: uint64 - title: >- - Deprecated: Prefer to use `max_supply` instead. Maximum - amount of supply to allow a marker to be created with - enable_governance: - type: boolean - description: >- - indicates if governance based controls of markers is - allowed. - unrestricted_denom_regex: + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string + format: uint64 title: >- - a regular expression used to validate marker denom values - from normal create requests (governance + total is total number of results available if + PageRequest.count_total - requests are only subject to platform coin validation - denom expression) - max_supply: - type: string - title: >- - maximum amount of supply to allow a marker to be created - with + was set, its value is undefined otherwise description: >- - QueryParamsResponse is the response type for the Query/Params RPC - method. + QueryGetMarketCommitmentsResponse is a response message for the + GetMarketCommitments query. default: description: An unexpected error response. schema: @@ -36609,36 +37070,267 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } + parameters: + - name: market_id + description: >- + market_id is the numeric identifier of the market with the + commitment. + in: path + required: true + type: integer + format: int64 + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean tags: - Query - /provenance/marker/v1/supply/{id}: + /provenance/exchange/v1/market/{market_id}/order/{external_id}: get: - summary: query for supply of coin on a marker account - operationId: Supply + summary: GetOrderByExternalID looks up an order by market id and external id. + operationId: GetOrderByExternalID2 responses: '200': description: A successful response. schema: type: object properties: - amount: + order: + description: order is the requested order. type: object properties: - denom: - type: string - amount: + order_id: type: string - description: >- - Coin defines a token with a denomination and an amount. + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it + represents an ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this + order and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - NOTE: The amount field is an Int which implements the custom - method + NOTE: The amount field is an Int which implements the + custom method - signatures required by gogoproto. + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of + this order should be allowed, and should be false if + the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it + represents a bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this + order and has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to + the price) + + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of + this order should be allowed, and should be false if + the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. description: >- - QuerySupplyResponse is the response type for the - Query/MarkerSupply method. + QueryGetOrderByExternalIDResponse is a response message for the + GetOrderByExternalID query. default: description: An unexpected error response. schema: @@ -36829,31 +37521,235 @@ paths: "value": "1.212s" } parameters: - - name: id - description: address or denom for the marker + - name: market_id + description: market_id is the id of the market that's expected to have the order. + in: path + required: true + type: integer + format: int64 + - name: external_id + description: external_id the external id to look up. in: path required: true type: string tags: - Query - /provenance/metadata/v1/accountdata/{metadata_addr}: + /provenance/exchange/v1/market/{market_id}/orders: get: - summary: |- - AccountData gets the account data associated with a metadata address. - Currently, only scope ids are supported. - operationId: MetadataAccountData + summary: GetMarketOrders looks up the orders in a market. + operationId: GetMarketOrders2 responses: '200': description: A successful response. schema: type: object properties: - value: - type: string - description: The accountdata for the requested metadata address. + orders: + type: array + items: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it + represents an ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this + order and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it + represents a bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this + order and has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition + to the price) + + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the orders in the provided market. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise description: >- - AccountDataResponse is the response type for the Query/AccountData - RPC method. + QueryGetMarketOrdersResponse is a response message for the + GetMarketOrders query. default: description: An unexpected error response. schema: @@ -36873,658 +37769,547 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } parameters: - - name: metadata_addr - description: |- - The metadata address to look up. - Currently, only scope ids are supported. + - name: market_id + description: market_id is the id of the market to get all the orders for. in: path required: true + type: integer + format: int64 + - name: order_type + description: >- + order_type is optional and can limit orders to only "ask" or "bid" + orders. + in: query + required: false + type: string + - name: after_order_id + description: >- + after_order_id is a minimum (exclusive) order id. All results will + be strictly greater than this. + in: query + required: false + type: string + format: uint64 + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false type: string format: byte - tags: - - Query - /provenance/metadata/v1/addr/{addrs}: - get: - summary: GetByAddr retrieves metadata given any address(es). - operationId: GetByAddr - responses: - '200': - description: A successful response. - schema: - type: object - properties: - scopes: - type: array - items: - type: object - properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address - interface for use where addresses are required in Cosmos - specification_id: - type: string - format: byte - title: >- - the scope specification that contains the specifications - for data elements allowed within this scope - owners: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of the - processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role associated - with a contract - description: >- - These parties represent top level owners of the records - within. These parties must sign any requests that - modify + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. - the data within the scope. These addresses are in union - with parties listed on the sessions. - data_access: - type: array - items: - type: string - description: >- - Addresses in this list are authorized to receive - off-chain data associated with this scope. - value_owner_address: - type: string - description: >- - An address that controls the value associated with this - scope. Standard blockchain accounts and marker accounts + It is less efficient than using key. Only one of offset or key + should - are supported for this value. This attribute may only - be changed by the entity indicated once it is set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions must - be present in this scope's owners field. + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. - This also enables use of optional=true scope owners and - session parties. - description: >- - Scope defines a root reference for a collection of records - owned by one or more parties. - description: scopes contains any scopes that were requested and found. - sessions: + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/exchange/v1/market/{market_id}/validate: + get: + summary: ValidateMarket checks for any problems with a market's setup. + operationId: ValidateMarket2 + responses: + '200': + description: A successful response. + schema: + type: object + properties: + error: + type: string + description: >- + error is any problems or inconsistencies in the provided + market. + description: >- + QueryValidateMarketResponse is a response message for the + ValidateMarket query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - session_id: - type: string - format: byte - specification_id: + type_url: type: string - format: byte description: >- - unique id of the contract specification that was used to - create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of the - processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role associated - with a contract - title: >- - parties is the set of identities that signed this - contract - name: - type: string - title: >- - name to associate with this session execution context, - typically classname - context: + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: type: string format: byte description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, and - related info. - type: object - properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: - type: string - title: the address of the account that created this record - updated_date: - type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: - type: string - title: the address of the account that modified this record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented with - each update - message: - type: string - title: >- - an optional message associated with the - creation/update event - title: >- - AuditFields capture information about the last account - to make modifications and when they were made + Must be a valid serialized protocol buffer of the above + specified type. description: >- - Session defines an execution context against a specific - specification instance. + `Any` contains an arbitrary serialized protocol buffer + message along with a - The context will have a specification and set of parties - involved. + URL that describes the type of the serialized message. - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - description: sessions contains any sessions that were requested and found. - records: + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: market_id + description: market_id is the id of the market to check. + in: path + required: true + type: integer + format: int64 + tags: + - Query + /provenance/exchange/v1/markets: + get: + summary: GetAllMarkets returns brief information about each market. + operationId: GetAllMarkets + responses: + '200': + description: A successful response. + schema: + type: object + properties: + markets: type: array items: type: object properties: - name: - type: string - title: >- - name/identifier for this record. Value must be unique - within the scope. Also known as a Fact name - session_id: + market_id: + type: integer + format: int64 + description: market_id is the numerical identifier for this market. + market_address: type: string - format: byte - title: >- - id of the session context that was used to create this - record (use with filtered kvprefix iterator) - process: - title: >- - process contain information used to uniquely identify an - execution on or off chain that generated this record + description: >- + market_address is the bech32 address string of this + market's account. + market_details: + description: market_details is some information about this market. type: object properties: - address: + name: type: string - title: >- - the address of a smart contract used for this - process - hash: + description: >- + name is a moniker that people can use to refer to + this market. + description: type: string - title: the hash of an off-chain process used - name: + description: >- + description extra information about this market. The + field is meant to be human-readable. + website_url: type: string - title: >- - a name associated with the process (type_name, - classname or smart contract common name) - method: + description: >- + website_url is a url people can use to get to this + market, or at least get more information about this + market. + icon_uri: type: string - title: >- - method is a name or reference to a specific - operation (method) within a class/contract that was - invoked - inputs: - type: array - items: - type: object - properties: - name: - type: string - description: >- - Name value included to link back to the definition - spec. - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For Established - Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information (For - Proposed Records) - type_name: - type: string - title: from proposed fact structure to unmarshal - status: - title: >- - Indicates if this input was a recorded fact on - chain or just a given hashed input - type: string - enum: - - RECORD_INPUT_STATUS_UNSPECIFIED - - RECORD_INPUT_STATUS_PROPOSED - - RECORD_INPUT_STATUS_RECORD - default: RECORD_INPUT_STATUS_UNSPECIFIED - description: >- - - RECORD_INPUT_STATUS_UNSPECIFIED: - RECORD_INPUT_STATUS_UNSPECIFIED indicates an - invalid/unknown input type - - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed - - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain - title: Tracks the inputs used to establish this record - title: >- - inputs used with the process to achieve the output on - this record - outputs: - type: array - items: - type: object - properties: - hash: - type: string - title: >- - Hash of the data output that was output/generated - for this record - status: - title: >- - Status of the process execution associated with - this output indicating success,failure, or pending - type: string - enum: - - RESULT_STATUS_UNSPECIFIED - - RESULT_STATUS_PASS - - RESULT_STATUS_SKIP - - RESULT_STATUS_FAIL - default: RESULT_STATUS_UNSPECIFIED - description: >- - - RESULT_STATUS_UNSPECIFIED: - RESULT_STATUS_UNSPECIFIED indicates an unset - condition - - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful - - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution - - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. - title: >- - RecordOutput encapsulates the output of a process - recorded on chain - title: >- - output(s) is the results of executing the process on the - given process indicated in this record - specification_id: - type: string - format: byte - description: >- - specification_id is the id of the record specification - that was used to create this record. - title: >- - A record (of fact) is attached to a session or each - consideration output from a contract - description: records contains any records that were requested and found. - scope_specs: - type: array - items: - type: object - properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain - description: - description: General information about this scope specification. - type: object - properties: - name: - type: string - description: A Name for this thing. - description: - type: string - description: A description of this thing. - website_url: - type: string - description: URL to find even more info. - icon_url: - type: string - description: URL of an icon. - owner_addresses: - type: array - items: - type: string - description: Addresses of the owners of this scope specification. - parties_involved: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an - error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: >- - A list of parties that must be present on a scope (and - their associated roles) - contract_spec_ids: - type: array - items: - type: string - format: byte - description: >- - A list of contract specification ids allowed for a scope - based on this specification. - title: >- - ScopeSpecification defines the required parties, resources, - conditions, and consideration outputs for a contract - description: >- - scope_specs contains any scope specifications that were - requested and found. - contract_specs: - type: array - items: - type: object - properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain - description: - title: Description information for this contract specification - type: object - properties: - name: - type: string - description: A Name for this thing. - description: - type: string - description: A description of this thing. - website_url: - type: string - description: URL to find even more info. - icon_url: - type: string - description: URL of an icon. - description: >- - Description holds general information that is handy to - associate with a structure. - owner_addresses: - type: array - items: - type: string - title: Address of the account that owns this specificaiton - parties_involved: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an - error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: >- - a list of party roles that must be fullfilled when - signing a transaction for this contract specification - resource_id: - type: string - format: byte - title: >- - the address of a record on chain that represents this - contract - hash: - type: string - title: the hash of contract binary (off-chain instance) - class_name: - type: string - title: name of the class/type of this contract executable - title: >- - ContractSpecification defines the required parties, - resources, conditions, and consideration outputs for a - contract - description: >- - contract_specs contains any contract specifications that were - requested and found. - record_specs: - type: array - items: - type: object - properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain - name: - type: string - title: >- - Name of Record that will be created when this - specification is used - inputs: - type: array - items: - type: object - properties: - name: - type: string - title: name for this input - type_name: - type: string - title: a type_name (typically a proto name or class_name) - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For Established - Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information (For - Proposed Records) - title: >- - InputSpecification defines a name, type_name, and - source reference (either on or off chain) to define an - input + description: >- + icon_uri is a uri for an icon to associate with this + market. + description: >- + MarketBrief is a message containing brief, superficial + information about a market. + description: markets are a page of the briefs for all markets. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - parameter - title: >- - A set of inputs that must be satisified to apply this - RecordSpecification and create a Record - type_name: - type: string - title: >- - A type name for data associated with this record - (typically a class or proto name) - result_type: - title: >- - Type of result for this record specification (must be - RECORD or RECORD_LIST) - type: string - enum: - - DEFINITION_TYPE_UNSPECIFIED - - DEFINITION_TYPE_PROPOSED - - DEFINITION_TYPE_RECORD - - DEFINITION_TYPE_RECORD_LIST - default: DEFINITION_TYPE_UNSPECIFIED - description: >- - - DEFINITION_TYPE_UNSPECIFIED: - DEFINITION_TYPE_UNSPECIFIED indicates an unknown/invalid - value - - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) - - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain - - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having - the same name - responsible_parties: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an - error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: Type of party responsible for this record - title: >- - RecordSpecification defines the specification for a Record - including allowed/required inputs/outputs - description: >- - record_specs contains any record specifications that were - requested and found. - not_found: - type: array - items: - type: string - description: not_found contains any addrs requested but not found. + was set, its value is undefined otherwise description: >- - GetByAddrResponse is the response type for the Query/GetByAddr RPC - method. + QueryGetAllMarketsResponse is a response message for the + GetAllMarkets query. default: description: An unexpected error response. schema: @@ -37544,705 +38329,429 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte - parameters: - - name: addrs - description: ids are the metadata addresses of the things to look up. - in: path - required: true - type: array - items: - type: string - collectionFormat: csv - minItems: 1 - tags: - - Query - /provenance/metadata/v1/contractspec/{specification_id}: - get: - summary: >- - ContractSpecification returns a contract specification for the given - specification id. - description: >- - The specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a - specification address, e.g. - contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record - specification + URL that describes the type of the serialized message. - address, e.g. - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If - it is a record specification - address, then the contract specification that contains that record - specification is looked up. + Protobuf library provides support to pack/unpack Any values + in the form + of utility functions or additional generated methods of the + Any type. - By default, the record specifications for this contract specification - are not included. - Set include_record_specs to true to include them in the result. - operationId: ContractSpecification - responses: - '200': - description: A successful response. - schema: - type: object - properties: - contract_specification: - description: contract_specification is the wrapped contract specification. - type: object - properties: - specification: - type: object - properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain - description: - title: >- - Description information for this contract - specification - type: object - properties: - name: - type: string - description: A Name for this thing. - description: - type: string - description: A description of this thing. - website_url: - type: string - description: URL to find even more info. - icon_url: - type: string - description: URL of an icon. - description: >- - Description holds general information that is handy to - associate with a structure. - owner_addresses: - type: array - items: - type: string - title: Address of the account that owns this specificaiton - parties_involved: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is - an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: >- - a list of party roles that must be fullfilled when - signing a transaction for this contract specification - resource_id: - type: string - format: byte - title: >- - the address of a record on chain that represents this - contract - hash: - type: string - title: the hash of contract binary (off-chain instance) - class_name: - type: string - title: name of the class/type of this contract executable - title: >- - ContractSpecification defines the required parties, - resources, conditions, and consideration outputs for a - contract - description: >- - specification is the on-chain contract specification - message. - contract_spec_id_info: - description: >- - contract_spec_id_info contains information about the - id/address of the contract specification. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of the - contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - record_specifications: - type: array - items: - type: object - properties: - specification: - type: object - properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain - name: - type: string - title: >- - Name of Record that will be created when this - specification is used - inputs: - type: array - items: - type: object - properties: - name: - type: string - title: name for this input - type_name: - type: string - title: >- - a type_name (typically a proto name or - class_name) - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For - Established Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) - title: >- - InputSpecification defines a name, type_name, and - source reference (either on or off chain) to - define an input + Example 1: Pack and unpack a message in C++. - parameter - title: >- - A set of inputs that must be satisified to apply - this RecordSpecification and create a Record - type_name: - type: string - title: >- - A type name for data associated with this record - (typically a class or proto name) - result_type: - title: >- - Type of result for this record specification (must - be RECORD or RECORD_LIST) - type: string - enum: - - DEFINITION_TYPE_UNSPECIFIED - - DEFINITION_TYPE_PROPOSED - - DEFINITION_TYPE_RECORD - - DEFINITION_TYPE_RECORD_LIST - default: DEFINITION_TYPE_UNSPECIFIED - description: >- - - DEFINITION_TYPE_UNSPECIFIED: - DEFINITION_TYPE_UNSPECIFIED indicates an - unknown/invalid value - - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) - - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain - - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having - the same name - responsible_parties: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: Type of party responsible for this record - title: >- - RecordSpecification defines the specification for a - Record including allowed/required inputs/outputs - description: >- - specification is the on-chain record specification - message. - record_spec_id_info: - description: >- - record_spec_id_info contains information about the - id/address of the record specification. - type: object - properties: - record_spec_id: - type: string - format: byte - description: >- - record_spec_id is the raw bytes of the record - specification address. - record_spec_id_prefix: - type: string - format: byte - description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: - type: string - format: byte - description: >- - record_spec_id_hashed_name is the hashed name - portion of the record_spec_id. - record_spec_addr: - type: string - description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordSpecificationWrapper contains a single record - specification and some extra identifiers for it. - description: >- - record_specifications is any number or wrapped record - specifications associated with this contract_specification + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - (if requested). - request: - description: request is a copy of the request that generated these results. - type: object - properties: - specification_id: - type: string - description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification + Example 2: Pack and unpack a message in Java. - address, e.g. - contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - It can also be a record specification address, e.g. + Example 3: Pack and unpack a message in Python. - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - include_record_specs: - type: boolean - description: >- - include_record_specs is a flag for whether to include the - the record specifications of this contract specification + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - in the response. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - description: >- - ContractSpecificationResponse is the response type for the - Query/ContractSpecification RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } parameters: - - name: specification_id + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification - - address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + offset is a numeric offset that can be used when key is unavailable. - It can also be a record specification address, e.g. + It is less efficient than using key. Only one of offset or key + should - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - in: path - required: true + be set. + in: query + required: false type: string - - name: include_record_specs + format: uint64 + - name: pagination.limit description: >- - include_record_specs is a flag for whether to include the the record - specifications of this contract specification + limit is the total number of results to be returned in the result + page. - in the response. + If left empty it will default to a value to be set by each app. in: query required: false - type: boolean - - name: exclude_id_info + type: string + format: uint64 + - name: pagination.count_total description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. in: query required: false type: boolean - - name: include_request + - name: pagination.reverse description: >- - include_request is a flag for whether to include this request in - your result. + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean tags: - Query - /provenance/metadata/v1/contractspec/{specification_id}/recordspec/{name}: + /provenance/exchange/v1/order/{order_id}: get: - summary: RecordSpecification returns a record specification for the given input. - operationId: RecordSpecification2 + summary: GetOrder looks up an order by id. + operationId: GetOrder responses: '200': description: A successful response. schema: type: object properties: - record_specification: + order: type: object properties: - specification: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it + represents an ask order. type: object properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain - name: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + seller: type: string - title: >- - Name of Record that will be created when this - specification is used - inputs: - type: array - items: - type: object - properties: - name: - type: string - title: name for this input - type_name: - type: string - title: >- - a type_name (typically a proto name or - class_name) - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For - Established Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) - title: >- - InputSpecification defines a name, type_name, and - source reference (either on or off chain) to define - an input + description: >- + seller is the address of the account that owns this + order and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - parameter - title: >- - A set of inputs that must be satisified to apply this - RecordSpecification and create a Record - type_name: - type: string - title: >- - A type name for data associated with this record - (typically a class or proto name) - result_type: - title: >- - Type of result for this record specification (must be - RECORD or RECORD_LIST) - type: string - enum: - - DEFINITION_TYPE_UNSPECIFIED - - DEFINITION_TYPE_PROPOSED - - DEFINITION_TYPE_RECORD - - DEFINITION_TYPE_RECORD_LIST - default: DEFINITION_TYPE_UNSPECIFIED + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - - DEFINITION_TYPE_UNSPECIFIED: - DEFINITION_TYPE_UNSPECIFIED indicates an - unknown/invalid value - - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) - - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain - - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having - the same name - responsible_parties: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is - an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: Type of party responsible for this record - title: >- - RecordSpecification defines the specification for a Record - including allowed/required inputs/outputs - description: >- - specification is the on-chain record specification - message. - record_spec_id_info: - description: >- - record_spec_id_info contains information about the - id/address of the record specification. - type: object - properties: - record_spec_id: - type: string - format: byte + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - record_spec_id is the raw bytes of the record - specification address. - record_spec_id_prefix: - type: string - format: byte + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + allow_partial: + type: boolean description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: + allow_partial should be true if partial fulfillment of + this order should be allowed, and should be false if + the + + order must be either filled in full or not filled at + all. + external_id: type: string - format: byte description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: - type: string - format: byte + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it + represents a bid order. + type: object + properties: + market_id: + type: integer + format: int64 description: >- - record_spec_id_hashed_name is the hashed name portion - of the record_spec_id. - record_spec_addr: + market_id identifies the market that this order + belongs to. + buyer: type: string description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. + buyer is the address of the account that owns this + order and has the price to spend. + assets: type: object properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: + denom: type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: + amount: type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: type: string - description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: + amount: type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordSpecificationWrapper contains a single record - specification and some extra identifiers for it. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - specification_id: - type: string - description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification + description: >- + Coin defines a token with a denomination and an + amount. - address, e.g. - contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. - It can also be a record specification address, e.g. + NOTE: The amount field is an Int which implements the + custom method - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - name: - type: string - description: >- - name is the name of the record to look up. + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - It is required if the specification_id is a uuid or - contract specification address. - It is ignored if the specification_id is a record - specification address. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to + the price) + + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of + this order should be allowed, and should be false if + the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + description: Order associates an order id with one of the order types. description: >- - RecordSpecificationResponse is the response type for the - Query/RecordSpecification RPC method. + QueryGetOrderResponse is a response message for the GetOrder + query. default: description: An unexpected error response. schema: @@ -38262,310 +38771,401 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte - parameters: - - name: specification_id - description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a - address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + URL that describes the type of the serialized message. - It can also be a record specification address, e.g. - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - in: path - required: true - type: string - - name: name - description: >- - name is the name of the record to look up. + Protobuf library provides support to pack/unpack Any values + in the form - It is required if the specification_id is a uuid or contract - specification address. + of utility functions or additional generated methods of the + Any type. - It is ignored if the specification_id is a record specification - address. + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: order_id + description: order_id is the id of the order to look up. in: path required: true type: string - - name: exclude_id_info - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. - in: query - required: false - type: boolean - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean + format: uint64 tags: - Query - /provenance/metadata/v1/contractspec/{specification_id}/recordspecs: + /provenance/exchange/v1/orders: get: - summary: >- - RecordSpecificationsForContractSpecification returns the record - specifications for the given input. - description: >- - The specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract - - specification address, e.g. - contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record - specification - - address, e.g. - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If - it is a record specification - - address, then the contract specification that contains that record - specification is used. - operationId: RecordSpecificationsForContractSpecification + summary: GetAllOrders gets all orders in the exchange module. + operationId: GetAllOrders responses: '200': description: A successful response. schema: type: object properties: - record_specifications: + orders: type: array items: type: object properties: - specification: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it + represents an ask order. type: object properties: - specification_id: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + seller: type: string - format: byte - title: unique identifier for this specification on chain - name: + description: >- + seller is the address of the account that owns this + order and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: type: string - title: >- - Name of Record that will be created when this - specification is used - inputs: - type: array - items: - type: object - properties: - name: - type: string - title: name for this input - type_name: - type: string - title: >- - a type_name (typically a proto name or - class_name) - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For - Established Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) - title: >- - InputSpecification defines a name, type_name, and - source reference (either on or off chain) to - define an input - - parameter - title: >- - A set of inputs that must be satisified to apply - this RecordSpecification and create a Record - type_name: - type: string - title: >- - A type name for data associated with this record - (typically a class or proto name) - result_type: - title: >- - Type of result for this record specification (must - be RECORD or RECORD_LIST) - type: string - enum: - - DEFINITION_TYPE_UNSPECIFIED - - DEFINITION_TYPE_PROPOSED - - DEFINITION_TYPE_RECORD - - DEFINITION_TYPE_RECORD_LIST - default: DEFINITION_TYPE_UNSPECIFIED description: >- - - DEFINITION_TYPE_UNSPECIFIED: - DEFINITION_TYPE_UNSPECIFIED indicates an - unknown/invalid value - - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) - - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain - - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having - the same name - responsible_parties: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: Type of party responsible for this record - title: >- - RecordSpecification defines the specification for a - Record including allowed/required inputs/outputs - description: >- - specification is the on-chain record specification - message. - record_spec_id_info: + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: description: >- - record_spec_id_info contains information about the - id/address of the record specification. + bid_order is the information about this order if it + represents a bid order. type: object properties: - record_spec_id: - type: string - format: byte - description: >- - record_spec_id is the raw bytes of the record - specification address. - record_spec_id_prefix: - type: string - format: byte - description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: - type: string - format: byte + market_id: + type: integer + format: int64 description: >- - record_spec_id_hashed_name is the hashed name - portion of the record_spec_id. - record_spec_addr: + market_id identifies the market that this order + belongs to. + buyer: type: string description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. + buyer is the address of the account that owns this + order and has the price to spend. + assets: type: object properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: + denom: type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: + amount: type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: + amount: type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordSpecificationWrapper contains a single record - specification and some extra identifiers for it. - description: >- - record_specifications is any number of wrapped record - specifications associated with this contract_specification. - contract_specification_uuid: - type: string - description: >- - contract_specification_uuid is the uuid of this contract - specification. - contract_specification_addr: - type: string - description: >- - contract_specification_addr is the contract specification - address as a bech32 encoded string. - request: - description: request is a copy of the request that generated these results. + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition + to the price) + + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the all orders. + pagination: + description: pagination is the resulting pagination parameters. type: object properties: - specification_id: + next_key: type: string - description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification - - address, e.g. - contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. - - It can also be a record specification address, e.g. + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. + was set, its value is undefined otherwise description: >- - RecordSpecificationsForContractSpecificationResponse is the - response type for the - - Query/RecordSpecificationsForContractSpecification RPC method. + QueryGetAllOrdersResponse is a response message for the + GetAllOrders query. default: description: An unexpected error response. schema: @@ -38585,265 +39185,431 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } parameters: - - name: specification_id + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification + offset is a numeric offset that can be used when key is unavailable. - address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + It is less efficient than using key. Only one of offset or key + should - It can also be a record specification address, e.g. + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - in: path - required: true + If left empty it will default to a value to be set by each app. + in: query + required: false type: string - - name: exclude_id_info + format: uint64 + - name: pagination.count_total description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. in: query required: false type: boolean - - name: include_request + - name: pagination.reverse description: >- - include_request is a flag for whether to include this request in - your result. + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean tags: - Query - /provenance/metadata/v1/contractspecs/all: + /provenance/exchange/v1/orders/asset/{asset}: get: - summary: ContractSpecificationsAll retrieves all contract specifications. - operationId: ContractSpecificationsAll + summary: GetAssetOrders looks up the orders for a specific asset denom. + operationId: GetAssetOrders responses: '200': description: A successful response. schema: type: object properties: - contract_specifications: + orders: type: array items: type: object properties: - specification: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it + represents an ask order. type: object properties: - specification_id: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + seller: type: string - format: byte - title: unique identifier for this specification on chain - description: - title: >- - Description information for this contract - specification + description: >- + seller is the address of the account that owns this + order and has the assets to sell. + assets: type: object properties: - name: + denom: type: string - description: A Name for this thing. - description: + amount: type: string - description: A description of this thing. - website_url: + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: type: string - description: URL to find even more info. - icon_url: + amount: type: string - description: URL of an icon. description: >- - Description holds general information that is handy - to associate with a structure. - owner_addresses: - type: array - items: - type: string - title: Address of the account that owns this specificaiton - parties_involved: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: >- - a list of party roles that must be fullfilled when - signing a transaction for this contract - specification - resource_id: - type: string - format: byte - title: >- - the address of a record on chain that represents - this contract - hash: - type: string - title: the hash of contract binary (off-chain instance) - class_name: + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: type: string - title: name of the class/type of this contract executable - title: >- - ContractSpecification defines the required parties, - resources, conditions, and consideration outputs for a - contract - description: >- - specification is the on-chain contract specification - message. - contract_spec_id_info: + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: description: >- - contract_spec_id_info contains information about the - id/address of the contract specification. + bid_order is the information about this order if it + represents a bid order. type: object properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte + market_id: + type: integer + format: int64 description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: + market_id identifies the market that this order + belongs to. + buyer: type: string description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: - type: string + buyer is the address of the account that owns this + order and has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - ContractSpecificationWrapper contains a single contract - specification and some extra identifiers for it. - description: >- - contract_specifications are the wrapped contract - specifications. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - pagination: - description: >- - pagination defines optional pagination parameters for the - request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to - begin + Coin defines a token with a denomination and an + amount. - querying the next page most efficiently. Only one of - offset or key - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key - is unavailable. + NOTE: The amount field is an Int which implements + the custom method - It is less efficient than using key. Only one of - offset or key should + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in - the result page. - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the - result set should include + NOTE: The amount field is an Int which implements + the custom method - a count of the total number of items available for - pagination in UIs. + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - count_total is only respected when offset is used. It - is ignored when key - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned - in the descending order. + NOTE: The amount field is an Int which implements + the custom method + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition + to the price) - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the - pagination. Ex: + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the orders for the provided asset. pagination: - description: >- - pagination provides the pagination information of this - response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -38862,8 +39628,8 @@ paths: was set, its value is undefined otherwise description: >- - ContractSpecificationsAllResponse is the response type for the - Query/ContractSpecificationsAll RPC method. + QueryGetAssetOrdersResponse is a response message for the + GetAssetOrders query. default: description: An unexpected error response. schema: @@ -38883,24 +39649,197 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } parameters: - - name: exclude_id_info + - name: asset + description: asset is the denom of assets to get orders for. + in: path + required: true + type: string + - name: order_type description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + order_type is optional and can limit orders to only "ask" or "bid" + orders. in: query required: false - type: boolean - - name: include_request + type: string + - name: after_order_id description: >- - include_request is a flag for whether to include this request in - your result. + after_order_id is a minimum (exclusive) order id. All results will + be strictly greater than this. in: query required: false - type: boolean + type: string + format: uint64 - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -38959,37 +39898,222 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/locator/params: + /provenance/exchange/v1/orders/market/{market_id}: get: - summary: >- - OSLocatorParams returns all parameters for the object store locator sub - module. - operationId: OSLocatorParams + summary: GetMarketOrders looks up the orders in a market. + operationId: GetMarketOrders responses: '200': description: A successful response. schema: type: object properties: - params: - description: params defines the parameters of the module. - type: object - properties: - max_uri_length: - type: integer - format: int64 - request: - description: request is a copy of the request that generated these results. + orders: + type: array + items: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it + represents an ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this + order and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it + represents a bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this + order and has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition + to the price) + + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the orders in the provided market. + pagination: + description: pagination is the resulting pagination parameters. type: object properties: - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise description: >- - OSLocatorParamsResponse is the response type for the - Query/OSLocatorParams RPC method. + QueryGetMarketOrdersResponse is a response message for the + GetMarketOrders query. default: description: An unexpected error response. schema: @@ -39009,263 +40133,198 @@ paths: properties: type_url: type: string - value: - type: string - format: byte - parameters: - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/locator/scope/{scope_id}: - get: - summary: >- - OSLocatorsByScope returns all ObjectStoreLocator entries for a for all - signer's present in the specified scope. - operationId: OSLocatorsByScope - responses: - '200': - description: A successful response. - schema: - type: object - properties: - locators: - type: array - items: - type: object - properties: - owner: - type: string - title: account address the endpoint is owned by - locator_uri: - type: string - title: locator endpoint uri - encryption_key: - type: string - title: owners encryption key address - description: >- - Defines an Locator object stored on chain, which represents - a owner( blockchain address) associated with a endpoint + description: >- + A URL/resource name that uniquely identifies the type of + the serialized - uri for it's associated object store. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - scope_id: - type: string - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - description: >- - OSLocatorsByScopeResponse is the response type for the - Query/OSLocatorsByScope RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte - parameters: - - name: scope_id - in: path - required: true - type: string - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/locator/uri/{uri}: - get: - summary: >- - OSLocatorsByURI returns all ObjectStoreLocator entries for a locator - uri. - operationId: OSLocatorsByURI - responses: - '200': - description: A successful response. - schema: - type: object - properties: - locators: - type: array - items: - type: object - properties: - owner: - type: string - title: account address the endpoint is owned by - locator_uri: - type: string - title: locator endpoint uri - encryption_key: - type: string - title: owners encryption key address + description: >- + Must be a valid serialized protocol buffer of the above + specified type. description: >- - Defines an Locator object stored on chain, which represents - a owner( blockchain address) associated with a endpoint + `Any` contains an arbitrary serialized protocol buffer + message along with a - uri for it's associated object store. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - uri: - type: string - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - pagination: - description: >- - pagination defines optional pagination parameters for the - request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to - begin + URL that describes the type of the serialized message. - querying the next page most efficiently. Only one of - offset or key - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key - is unavailable. + Protobuf library provides support to pack/unpack Any values + in the form - It is less efficient than using key. Only one of - offset or key should + of utility functions or additional generated methods of the + Any type. - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in - the result page. - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the - result set should include + Example 1: Pack and unpack a message in C++. - a count of the total number of items available for - pagination in UIs. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - count_total is only respected when offset is used. It - is ignored when key + Example 2: Pack and unpack a message in Java. - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned - in the descending order. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + Example 3: Pack and unpack a message in Python. - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - pagination. Ex: - pagination: - description: >- - pagination provides the pagination information of this - response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + Example 4: Pack and unpack a message in Go - was set, its value is undefined otherwise - description: >- - OSLocatorsByURIResponse is the response type for the - Query/OSLocatorsByURI RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } parameters: - - name: uri + - name: market_id + description: market_id is the id of the market to get all the orders for. in: path required: true + type: integer + format: int64 + - name: order_type + description: >- + order_type is optional and can limit orders to only "ask" or "bid" + orders. + in: query + required: false type: string - - name: include_request + - name: after_order_id description: >- - include_request is a flag for whether to include this request in - your result. + after_order_id is a minimum (exclusive) order id. All results will + be strictly greater than this. in: query required: false - type: boolean + type: string + format: uint64 - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -39324,208 +40383,200 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/locator/{owner}: + /provenance/exchange/v1/orders/market/{market_id}/{external_id}: get: - summary: OSLocator returns an ObjectStoreLocator by its owner's address. - operationId: OSLocator + summary: GetOrderByExternalID looks up an order by market id and external id. + operationId: GetOrderByExternalID responses: '200': description: A successful response. schema: type: object properties: - locator: - type: object - properties: - owner: - type: string - title: account address the endpoint is owned by - locator_uri: - type: string - title: locator endpoint uri - encryption_key: - type: string - title: owners encryption key address - description: >- - Defines an Locator object stored on chain, which represents a - owner( blockchain address) associated with a endpoint - - uri for it's associated object store. - request: - description: request is a copy of the request that generated these results. + order: + description: order is the requested order. type: object properties: - owner: + order_id: type: string - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - description: >- - OSLocatorResponse is the response type for the Query/OSLocator RPC - method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - parameters: - - name: owner - in: path - required: true - type: string - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/locators/all: - get: - summary: OSAllLocators returns all ObjectStoreLocator entries. - operationId: OSAllLocators - responses: - '200': - description: A successful response. - schema: - type: object - properties: - locators: - type: array - items: - type: object - properties: - owner: - type: string - title: account address the endpoint is owned by - locator_uri: - type: string - title: locator endpoint uri - encryption_key: - type: string - title: owners encryption key address - description: >- - Defines an Locator object stored on chain, which represents - a owner( blockchain address) associated with a endpoint - - uri for it's associated object store. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - pagination: + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: description: >- - pagination defines optional pagination parameters for the - request. + ask_order is the information about this order if it + represents an ask order. type: object properties: - key: - type: string - format: byte + market_id: + type: integer + format: int64 description: >- - key is a value returned in PageResponse.next_key to - begin - - querying the next page most efficiently. Only one of - offset or key - - should be set. - offset: + market_id identifies the market that this order + belongs to. + seller: type: string - format: uint64 description: >- - offset is a numeric offset that can be used when key - is unavailable. + seller is the address of the account that owns this + order and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - It is less efficient than using key. Only one of - offset or key should - be set. - limit: - type: string - format: uint64 + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - limit is the total number of results to be returned in - the result page. + Coin defines a token with a denomination and an + amount. - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - count_total is set to true to indicate that the - result set should include + Coin defines a token with a denomination and an + amount. - a count of the total number of items available for - pagination in UIs. - count_total is only respected when offset is used. It - is ignored when key + NOTE: The amount field is an Int which implements the + custom method - is set. - reverse: + signatures required by gogoproto. + allow_partial: type: boolean description: >- - reverse is set to true if results are to be returned - in the descending order. + allow_partial should be true if partial fulfillment of + this order should be allowed, and should be false if + the + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it + represents a bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this + order and has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - pagination. Ex: - pagination: - description: >- - pagination provides the pagination information of this - response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - was set, its value is undefined otherwise + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to + the price) + + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of + this order should be allowed, and should be false if + the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. description: >- - OSAllLocatorsResponse is the response type for the - Query/OSAllLocators RPC method. + QueryGetOrderByExternalIDResponse is a response message for the + GetOrderByExternalID query. default: description: An unexpected error response. schema: @@ -39545,170 +40596,386 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte - parameters: - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - - name: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. - in: query - required: false - type: string - format: byte - - name: pagination.offset - description: >- - offset is a numeric offset that can be used when key is unavailable. + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a - It is less efficient than using key. Only one of offset or key - should + URL that describes the type of the serialized message. - be set. - in: query - required: false - type: string - format: uint64 - - name: pagination.limit - description: >- - limit is the total number of results to be returned in the result - page. - If left empty it will default to a value to be set by each app. - in: query - required: false - type: string - format: uint64 - - name: pagination.count_total - description: >- - count_total is set to true to indicate that the result set should - include + Protobuf library provides support to pack/unpack Any values + in the form - a count of the total number of items available for pagination in - UIs. + of utility functions or additional generated methods of the + Any type. - count_total is only respected when offset is used. It is ignored - when key - is set. - in: query - required: false - type: boolean - - name: pagination.reverse - description: >- - reverse is set to true if results are to be returned in the - descending order. + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + Example 2: Pack and unpack a message in Java. - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: market_id + description: market_id is the id of the market that's expected to have the order. + in: path + required: true + type: integer + format: int64 + - name: external_id + description: external_id the external id to look up. + in: path + required: true + type: string tags: - Query - /provenance/metadata/v1/ownership/{address}: + /provenance/exchange/v1/orders/owner/{owner}: get: - summary: >- - Ownership returns the scope identifiers that list the given address as - either a data or value owner. - operationId: Ownership + summary: GetOwnerOrders looks up the orders from the provided owner address. + operationId: GetOwnerOrders responses: '200': description: A successful response. schema: type: object properties: - scope_uuids: + orders: type: array items: - type: string - description: A list of scope ids (uuid) associated with the given address. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - address: - type: string - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - pagination: - description: >- - pagination defines optional pagination parameters for the - request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to - begin + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it + represents an ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this + order and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - querying the next page most efficiently. Only one of - offset or key - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key - is unavailable. + NOTE: The amount field is an Int which implements + the custom method - It is less efficient than using key. Only one of - offset or key should + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in - the result page. - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the - result set should include + NOTE: The amount field is an Int which implements + the custom method - a count of the total number of items available for - pagination in UIs. + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - count_total is only respected when offset is used. It - is ignored when key - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned - in the descending order. + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient + If an order in this market with this external id + already exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it + represents a bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id identifies the market that this order + belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this + order and has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. - pagination. Ex: + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements + the custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition + to the price) + + when the order is settled. A hold is placed on this + until the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment + of this order should be allowed, and should be false + if the + + order must be either filled in full or not filled at + all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id + already exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the orders for the provided address. pagination: - description: >- - pagination provides the pagination information of this - response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -39727,8 +40994,8 @@ paths: was set, its value is undefined otherwise description: >- - OwnershipResponse is the response type for the Query/Ownership RPC - method. + QueryGetOwnerOrdersResponse is a response message for the + GetOwnerOrders query. default: description: An unexpected error response. schema: @@ -39748,21 +41015,199 @@ paths: properties: type_url: type: string - value: - type: string - format: byte - parameters: - - name: address - in: path - required: true - type: string - - name: include_request + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: owner description: >- - include_request is a flag for whether to include this request in - your result. + owner is the bech32 address string of the owner to get the orders + for. + in: path + required: true + type: string + - name: order_type + description: >- + order_type is optional and can limit orders to only "ask" or "bid" + orders. in: query required: false - type: boolean + type: string + - name: after_order_id + description: >- + after_order_id is a minimum (exclusive) order id. All results will + be strictly greater than this. + in: query + required: false + type: string + format: uint64 - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -39821,10 +41266,10 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/params: + /provenance/exchange/v1/params: get: - summary: Params queries the parameters of x/metadata module. - operationId: MetadataParams + summary: Params returns the exchange module parameters. + operationId: ExchangeParams responses: '200': description: A successful response. @@ -39832,20 +41277,95 @@ paths: type: object properties: params: - description: params defines the parameters of the module. - type: object - request: - description: request is a copy of the request that generated these results. + description: params are the exchange module parameter values. type: object properties: - include_request: - type: boolean + default_split: + type: integer + format: int64 description: >- - include_request is a flag for whether to include this - request in your result. - description: >- - QueryParamsResponse is the response type for the Query/Params RPC - method. + default_split is the default proportion of fees the + exchange receives in basis points. + + It is used if there isn't an applicable denom-specific + split defined. + + E.g. 100 = 1%. Min = 0, Max = 10000. + denom_splits: + type: array + items: + type: object + properties: + denom: + type: string + description: >- + denom is the coin denomination this split applies + to. + split: + type: integer + format: int64 + description: >- + split is the proportion of fees the exchange + receives for this denom in basis points. + + E.g. 100 = 1%. Min = 0, Max = 10000. + description: >- + DenomSplit associates a coin denomination with an amount + the exchange receives for that denom. + description: >- + denom_splits are the denom-specific amounts the exchange + receives. + fee_create_payment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + fee_create_payment_flat is the flat fee options for + creating a payment. + + If the source amount is not zero then one of these fee + entries is required to create the payment. + + This field is currently limited to zero or one entries. + fee_accept_payment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + fee_accept_payment_flat is the flat fee options for + accepting a payment. + + If the target amount is not zero then one of these fee + entries is required to accept the payment. + + This field is currently limited to zero or one entries. + description: QueryParamsResponse is a response message for the Params query. default: description: An unexpected error response. schema: @@ -39865,804 +41385,594 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte - parameters: - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/record/{record_addr}: - get: - summary: Records searches for records. - description: >- - The record_addr, if provided, must be a bech32 record address, e.g. + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The - scope-id can either be scope uuid, e.g. + URL that describes the type of the serialized message. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - the session_id can either be a uuid or session address, e.g. + Protobuf library provides support to pack/unpack Any values + in the form - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - name is the name of the record you're + of utility functions or additional generated methods of the + Any type. - interested in. + Example 1: Pack and unpack a message in C++. - * If only a record_addr is provided, that single record will be - returned. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - * If only a scope_id is provided, all records in that scope will be - returned. + Example 2: Pack and unpack a message in Java. - * If only a session_id (or scope_id/session_id), all records in that - session will be returned. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - * If a name is provided with a scope_id and/or session_id, that single - record will be returned. + Example 3: Pack and unpack a message in Python. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - A bad request is returned if: + Example 4: Pack and unpack a message in Go - * The session_id is a uuid and no scope_id is provided. + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - * There are two or more of record_addr, session_id, and scope_id, and - they don't all refer to the same scope. + The pack methods provided by protobuf library will by + default use - * A name is provided, but not a scope_id and/or a session_id. + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - * A name and record_addr are provided and the name doesn't match the - record_addr. + methods only use the fully qualified type name after the + last '/' + in the type URL, for example "foo.bar.com/x/y.z" will yield + type - By default, the scope and sessions are not included. + name "y.z". - Set include_scope and/or include_sessions to true to include the scope - and/or sessions. - operationId: Records + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + tags: + - Query + /provenance/exchange/v1/payment: + get: + summary: GetPayment gets a single specific payment. + operationId: GetPayment responses: '200': description: A successful response. schema: type: object properties: - scope: - description: >- - scope is the wrapped scope that holds these records (if - requested). + payment: + description: payment is the info on the requested payment. type: object properties: - scope: - type: object - properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address - interface for use where addresses are required in - Cosmos - specification_id: - type: string - format: byte - title: >- - the scope specification that contains the - specifications for data elements allowed within this - scope - owners: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - description: >- - These parties represent top level owners of the - records within. These parties must sign any requests - that modify - - the data within the scope. These addresses are in - union with parties listed on the sessions. - data_access: - type: array - items: + source: + type: string + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: type: string - description: >- - Addresses in this list are authorized to receive - off-chain data associated with this scope. - value_owner_address: - type: string - description: >- - An address that controls the value associated with - this scope. Standard blockchain accounts and marker - accounts + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - are supported for this value. This attribute may only - be changed by the entity indicated once it is set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions - must be present in this scope's owners field. - This also enables use of optional=true scope owners - and session parties. - description: >- - Scope defines a root reference for a collection of records - owned by one or more parties. - scope_id_info: + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay the + target in exchange for the target_amount. + + A hold will be placed on this amount in the source account + until this Payment is accepted, rejected or cancelled. + + If the source_amount is zero, this Payment can be + considered a "payment request." + target: + type: string description: >- - scope_id_info contains information about the id/address of - the scope. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - scope_spec_id_info: + target is the account that can accept this Payment. + + The target is the only thing allowed to change in a + payment. + + I.e. it can be empty initially and updated later as + needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the + source in exchange for the source_amount. + + If the target_amount is zero, this Payment can be + considered a "peer-to-peer (P2P) payment." + external_id: + type: string description: >- - scope_spec_id_info contains information about the - id/address of the scope specification. - type: object - properties: - scope_spec_id: - type: string - format: byte - description: >- - scope_spec_id is the raw bytes of the scope - specification address. - scope_spec_id_prefix: - type: string - format: byte - description: >- - scope_spec_id_prefix is the prefix portion of the - scope_spec_id. - scope_spec_id_scope_spec_uuid: - type: string - format: byte - description: >- - scope_spec_id_scope_spec_uuid is the scope_spec_uuid - portion of the scope_spec_id. - scope_spec_addr: - type: string - description: >- - scope_spec_addr is the bech32 string version of the - scope_spec_id. - scope_spec_uuid: - type: string - description: >- - scope_spec_uuid is the uuid hex string of the - scope_spec_id_scope_spec_uuid. - sessions: + external_id is used along with the source to uniquely + identify this Payment. + + + A source can only have one Payment with any given external + id. + + A source can have two payments with two different external + ids. + + Two different sources can each have a payment with the + same external id. + + But a source cannot have two different payments each with + the same external id. + + + An external id can be reused by a source once the payment + is accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string + is a valid external id. + description: >- + QueryGetPaymentResponse is a response message for the GetPayment + query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - session: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: source + description: source is the source account of the payment to get. + in: query + required: false + type: string + - name: external_id + description: external_id is the external id of the payment to get. + in: query + required: false + type: string + tags: + - Query + /provenance/exchange/v1/payment/{source}: + get: + summary: GetPayment gets a single specific payment. + operationId: GetPayment2 + responses: + '200': + description: A successful response. + schema: + type: object + properties: + payment: + description: payment is the info on the requested payment. + type: object + properties: + source: + type: string + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: type: object properties: - session_id: - type: string - format: byte - specification_id: - type: string - format: byte - description: >- - unique id of the contract specification that was - used to create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: - PARTY_TYPE_UNSPECIFIED is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - title: >- - parties is the set of identities that signed this - contract - name: + denom: type: string - title: >- - name to associate with this session execution - context, typically classname - context: + amount: type: string - format: byte - description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, - and related info. - type: object - properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: - type: string - title: >- - the address of the account that created this - record - updated_date: - type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: - type: string - title: >- - the address of the account that modified this - record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented - with each update - message: - type: string - title: >- - an optional message associated with the - creation/update event - title: >- - AuditFields capture information about the last - account to make modifications and when they were - made description: >- - Session defines an execution context against a specific - specification instance. + Coin defines a token with a denomination and an amount. - The context will have a specification and set of parties - involved. + NOTE: The amount field is an Int which implements the + custom method - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: - description: >- - session_id_info contains information about the - id/address of the session. + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay the + target in exchange for the target_amount. + + A hold will be placed on this amount in the source account + until this Payment is accepted, rejected or cancelled. + + If the source_amount is zero, this Payment can be + considered a "payment request." + target: + type: string + description: >- + target is the account that can accept this Payment. + + The target is the only thing allowed to change in a + payment. + + I.e. it can be empty initially and updated later as + needed. + target_amount: + type: array + items: type: object properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: >- - session_id_prefix is the prefix portion of the - session_id. - session_id_scope_uuid: - type: string - format: byte - description: >- - session_id_scope_uuid is the scope_uuid portion of - the session_id. - session_id_session_uuid: + denom: type: string - format: byte - description: >- - session_id_session_uuid is the session_uuid portion - of the session_id. - session_addr: + amount: type: string - description: >- - session_addr is the bech32 string version of the - session_id. - session_uuid: - type: string - description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the session_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - contract_spec_id_info: - description: >- - contract_spec_id_info contains information about the - id/address of the contract specification. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - SessionWrapper contains a single session and some extra - identifiers for it. - description: >- - sessions is any number of wrapped sessions that hold these - records (if requested). - records: - type: array - items: - type: object - properties: - record: - type: object - properties: - name: - type: string - title: >- - name/identifier for this record. Value must be - unique within the scope. Also known as a Fact name - session_id: - type: string - format: byte - title: >- - id of the session context that was used to create - this record (use with filtered kvprefix iterator) - process: - title: >- - process contain information used to uniquely - identify an execution on or off chain that generated - this record - type: object - properties: - address: - type: string - title: >- - the address of a smart contract used for this - process - hash: - type: string - title: the hash of an off-chain process used - name: - type: string - title: >- - a name associated with the process (type_name, - classname or smart contract common name) - method: - type: string - title: >- - method is a name or reference to a specific - operation (method) within a class/contract that - was invoked - inputs: - type: array - items: - type: object - properties: - name: - type: string - description: >- - Name value included to link back to the - definition spec. - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For - Established Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) - type_name: - type: string - title: from proposed fact structure to unmarshal - status: - title: >- - Indicates if this input was a recorded fact on - chain or just a given hashed input - type: string - enum: - - RECORD_INPUT_STATUS_UNSPECIFIED - - RECORD_INPUT_STATUS_PROPOSED - - RECORD_INPUT_STATUS_RECORD - default: RECORD_INPUT_STATUS_UNSPECIFIED - description: >- - - RECORD_INPUT_STATUS_UNSPECIFIED: - RECORD_INPUT_STATUS_UNSPECIFIED indicates an - invalid/unknown input type - - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed - - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain - title: Tracks the inputs used to establish this record - title: >- - inputs used with the process to achieve the output - on this record - outputs: - type: array - items: - type: object - properties: - hash: - type: string - title: >- - Hash of the data output that was - output/generated for this record - status: - title: >- - Status of the process execution associated - with this output indicating success,failure, - or pending - type: string - enum: - - RESULT_STATUS_UNSPECIFIED - - RESULT_STATUS_PASS - - RESULT_STATUS_SKIP - - RESULT_STATUS_FAIL - default: RESULT_STATUS_UNSPECIFIED - description: >- - - RESULT_STATUS_UNSPECIFIED: - RESULT_STATUS_UNSPECIFIED indicates an unset - condition - - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful - - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution - - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. - title: >- - RecordOutput encapsulates the output of a process - recorded on chain - title: >- - output(s) is the results of executing the process on - the given process indicated in this record - specification_id: - type: string - format: byte - description: >- - specification_id is the id of the record - specification that was used to create this record. - title: >- - A record (of fact) is attached to a session or each - consideration output from a contract - description: record is the on-chain record message. - record_id_info: - description: >- - record_id_info contains information about the id/address - of the record. - type: object - properties: - record_id: - type: string - format: byte - description: record_id is the raw bytes of the record address. - record_id_prefix: - type: string - format: byte - description: >- - record_id_prefix is the prefix portion of the - record_id. - record_id_scope_uuid: - type: string - format: byte - description: >- - record_id_scope_uuid is the scope_uuid portion of - the record_id. - record_id_hashed_name: - type: string - format: byte - description: >- - record_id_hashed_name is the hashed name portion of - the record_id. - record_addr: - type: string - description: >- - record_addr is the bech32 string version of the - record_id. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - record_spec_id_info: description: >- - record_spec_id_info contains information about the - id/address of the record specification. - type: object - properties: - record_spec_id: - type: string - format: byte - description: >- - record_spec_id is the raw bytes of the record - specification address. - record_spec_id_prefix: - type: string - format: byte - description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: - type: string - format: byte - description: >- - record_spec_id_hashed_name is the hashed name - portion of the record_spec_id. - record_spec_addr: - type: string - description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordWrapper contains a single record and some extra - identifiers for it. - description: records is any number of wrapped record results. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - scope_id: - type: string - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope - address, e.g. + Coin defines a token with a denomination and an amount. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: - type: string - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session - address, e.g. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also + NOTE: The amount field is an Int which implements the + custom method - provided. - name: + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the + source in exchange for the source_amount. + + If the target_amount is zero, this Payment can be + considered a "peer-to-peer (P2P) payment." + external_id: type: string - title: name is the name of the record to look for - include_scope: - type: boolean description: >- - include_scope is a flag for whether to include the the - scope containing these records in the response. - include_sessions: - type: boolean - description: >- - include_sessions is a flag for whether to include the - sessions containing these records in the response. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. + external_id is used along with the source to uniquely + identify this Payment. + + + A source can only have one Payment with any given external + id. + + A source can have two payments with two different external + ids. + + Two different sources can each have a payment with the + same external id. + + But a source cannot have two different payments each with + the same external id. + + + An external id can be reused by a source once the payment + is accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string + is a valid external id. description: >- - RecordsResponse is the response type for the Query/Records RPC - method. + QueryGetPaymentResponse is a response message for the GetPayment + query. default: description: An unexpected error response. schema: @@ -40682,841 +41992,296 @@ paths: properties: type_url: type: string - value: - type: string - format: byte - parameters: - - name: record_addr - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - in: path - required: true - type: string - - name: scope_id - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + description: >- + A URL/resource name that uniquely identifies the type of + the serialized - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - in: query - required: false - type: string - - name: session_id - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, - e.g. + protocol buffer message. This string must contain at + least - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also + one "/" character. The last segment of the URL's path + must represent - provided. - in: query - required: false - type: string - - name: name - description: name is the name of the record to look for. - in: query - required: false - type: string - - name: include_scope - description: >- - include_scope is a flag for whether to include the the scope - containing these records in the response. - in: query - required: false - type: boolean - - name: include_sessions - description: >- - include_sessions is a flag for whether to include the sessions - containing these records in the response. - in: query - required: false - type: boolean - - name: exclude_id_info - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. - in: query - required: false - type: boolean - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/record/{record_addr}/scope: - get: - summary: Scope searches for a scope. - description: >- - The scope id, if provided, must either be scope uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, + the fully qualified name of the type (as in - e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if - provided, must be a bech32 session address, + `path/google.protobuf.Duration`). The name should be in + a canonical form - e.g. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - record_addr, if provided, must be a + (e.g., leading "." is not accepted). - bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + In practice, teams usually precompile into the binary + all types that they - * If only a scope_id is provided, that scope is returned. + expect it to use in the context of Any. However, for + URLs which use the - * If only a session_addr is provided, the scope containing that session - is returned. + scheme `http`, `https`, or no scheme, one can optionally + set up a type - * If only a record_addr is provided, the scope containing that record is - returned. + server that maps type URLs to message definitions as + follows: - * If more than one of scope_id, session_addr, and record_addr are - provided, and they don't refer to the same scope, - a bad request is returned. + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + Note: this functionality is not currently available in + the official - Providing a session addr or record addr does not limit the sessions and - records returned (if requested). + protobuf release, and it is not used for type URLs + beginning with - Those parameters are only used to find the scope. + type.googleapis.com. - By default, sessions and records are not included. + Schemes other than `http`, `https` (or the empty scheme) + might be - Set include_sessions and/or include_records to true to include sessions - and/or records. - operationId: Scope3 + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: source + description: source is the source account of the payment to get. + in: path + required: true + type: string + - name: external_id + description: external_id is the external id of the payment to get. + in: query + required: false + type: string + tags: + - Query + /provenance/exchange/v1/payment/{source}/{external_id}: + get: + summary: GetPayment gets a single specific payment. + operationId: GetPayment3 responses: '200': description: A successful response. schema: type: object properties: - scope: - description: scope is the wrapped scope result. + payment: + description: payment is the info on the requested payment. type: object properties: - scope: - type: object - properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address - interface for use where addresses are required in - Cosmos - specification_id: - type: string - format: byte - title: >- - the scope specification that contains the - specifications for data elements allowed within this - scope - owners: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - description: >- - These parties represent top level owners of the - records within. These parties must sign any requests - that modify - - the data within the scope. These addresses are in - union with parties listed on the sessions. - data_access: - type: array - items: - type: string - description: >- - Addresses in this list are authorized to receive - off-chain data associated with this scope. - value_owner_address: - type: string - description: >- - An address that controls the value associated with - this scope. Standard blockchain accounts and marker - accounts - - are supported for this value. This attribute may only - be changed by the entity indicated once it is set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions - must be present in this scope's owners field. - - This also enables use of optional=true scope owners - and session parties. - description: >- - Scope defines a root reference for a collection of records - owned by one or more parties. - scope_id_info: - description: >- - scope_id_info contains information about the id/address of - the scope. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - scope_spec_id_info: + source: + type: string description: >- - scope_spec_id_info contains information about the - id/address of the scope specification. - type: object - properties: - scope_spec_id: - type: string - format: byte - description: >- - scope_spec_id is the raw bytes of the scope - specification address. - scope_spec_id_prefix: - type: string - format: byte - description: >- - scope_spec_id_prefix is the prefix portion of the - scope_spec_id. - scope_spec_id_scope_spec_uuid: - type: string - format: byte - description: >- - scope_spec_id_scope_spec_uuid is the scope_spec_uuid - portion of the scope_spec_id. - scope_spec_addr: - type: string - description: >- - scope_spec_addr is the bech32 string version of the - scope_spec_id. - scope_spec_uuid: - type: string - description: >- - scope_spec_uuid is the uuid hex string of the - scope_spec_id_scope_spec_uuid. - sessions: - type: array - items: - type: object - properties: - session: + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: type: object properties: - session_id: - type: string - format: byte - specification_id: - type: string - format: byte - description: >- - unique id of the contract specification that was - used to create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: - PARTY_TYPE_UNSPECIFIED is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - title: >- - parties is the set of identities that signed this - contract - name: + denom: type: string - title: >- - name to associate with this session execution - context, typically classname - context: + amount: type: string - format: byte - description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, - and related info. - type: object - properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: - type: string - title: >- - the address of the account that created this - record - updated_date: - type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: - type: string - title: >- - the address of the account that modified this - record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented - with each update - message: - type: string - title: >- - an optional message associated with the - creation/update event - title: >- - AuditFields capture information about the last - account to make modifications and when they were - made description: >- - Session defines an execution context against a specific - specification instance. + Coin defines a token with a denomination and an amount. - The context will have a specification and set of parties - involved. + NOTE: The amount field is an Int which implements the + custom method - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: - description: >- - session_id_info contains information about the - id/address of the session. + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay the + target in exchange for the target_amount. + + A hold will be placed on this amount in the source account + until this Payment is accepted, rejected or cancelled. + + If the source_amount is zero, this Payment can be + considered a "payment request." + target: + type: string + description: >- + target is the account that can accept this Payment. + + The target is the only thing allowed to change in a + payment. + + I.e. it can be empty initially and updated later as + needed. + target_amount: + type: array + items: type: object properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: >- - session_id_prefix is the prefix portion of the - session_id. - session_id_scope_uuid: - type: string - format: byte - description: >- - session_id_scope_uuid is the scope_uuid portion of - the session_id. - session_id_session_uuid: - type: string - format: byte - description: >- - session_id_session_uuid is the session_uuid portion - of the session_id. - session_addr: + denom: type: string - description: >- - session_addr is the bech32 string version of the - session_id. - session_uuid: + amount: type: string - description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the session_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - contract_spec_id_info: - description: >- - contract_spec_id_info contains information about the - id/address of the contract specification. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - SessionWrapper contains a single session and some extra - identifiers for it. - description: >- - sessions is any number of wrapped sessions in this scope (if - requested). - records: - type: array - items: - type: object - properties: - record: - type: object - properties: - name: - type: string - title: >- - name/identifier for this record. Value must be - unique within the scope. Also known as a Fact name - session_id: - type: string - format: byte - title: >- - id of the session context that was used to create - this record (use with filtered kvprefix iterator) - process: - title: >- - process contain information used to uniquely - identify an execution on or off chain that generated - this record - type: object - properties: - address: - type: string - title: >- - the address of a smart contract used for this - process - hash: - type: string - title: the hash of an off-chain process used - name: - type: string - title: >- - a name associated with the process (type_name, - classname or smart contract common name) - method: - type: string - title: >- - method is a name or reference to a specific - operation (method) within a class/contract that - was invoked - inputs: - type: array - items: - type: object - properties: - name: - type: string - description: >- - Name value included to link back to the - definition spec. - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For - Established Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) - type_name: - type: string - title: from proposed fact structure to unmarshal - status: - title: >- - Indicates if this input was a recorded fact on - chain or just a given hashed input - type: string - enum: - - RECORD_INPUT_STATUS_UNSPECIFIED - - RECORD_INPUT_STATUS_PROPOSED - - RECORD_INPUT_STATUS_RECORD - default: RECORD_INPUT_STATUS_UNSPECIFIED - description: >- - - RECORD_INPUT_STATUS_UNSPECIFIED: - RECORD_INPUT_STATUS_UNSPECIFIED indicates an - invalid/unknown input type - - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed - - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain - title: Tracks the inputs used to establish this record - title: >- - inputs used with the process to achieve the output - on this record - outputs: - type: array - items: - type: object - properties: - hash: - type: string - title: >- - Hash of the data output that was - output/generated for this record - status: - title: >- - Status of the process execution associated - with this output indicating success,failure, - or pending - type: string - enum: - - RESULT_STATUS_UNSPECIFIED - - RESULT_STATUS_PASS - - RESULT_STATUS_SKIP - - RESULT_STATUS_FAIL - default: RESULT_STATUS_UNSPECIFIED - description: >- - - RESULT_STATUS_UNSPECIFIED: - RESULT_STATUS_UNSPECIFIED indicates an unset - condition - - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful - - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution - - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. - title: >- - RecordOutput encapsulates the output of a process - recorded on chain - title: >- - output(s) is the results of executing the process on - the given process indicated in this record - specification_id: - type: string - format: byte - description: >- - specification_id is the id of the record - specification that was used to create this record. - title: >- - A record (of fact) is attached to a session or each - consideration output from a contract - description: record is the on-chain record message. - record_id_info: - description: >- - record_id_info contains information about the id/address - of the record. - type: object - properties: - record_id: - type: string - format: byte - description: record_id is the raw bytes of the record address. - record_id_prefix: - type: string - format: byte - description: >- - record_id_prefix is the prefix portion of the - record_id. - record_id_scope_uuid: - type: string - format: byte - description: >- - record_id_scope_uuid is the scope_uuid portion of - the record_id. - record_id_hashed_name: - type: string - format: byte - description: >- - record_id_hashed_name is the hashed name portion of - the record_id. - record_addr: - type: string - description: >- - record_addr is the bech32 string version of the - record_id. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - record_spec_id_info: description: >- - record_spec_id_info contains information about the - id/address of the record specification. - type: object - properties: - record_spec_id: - type: string - format: byte - description: >- - record_spec_id is the raw bytes of the record - specification address. - record_spec_id_prefix: - type: string - format: byte - description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: - type: string - format: byte - description: >- - record_spec_id_hashed_name is the hashed name - portion of the record_spec_id. - record_spec_addr: - type: string - description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordWrapper contains a single record and some extra - identifiers for it. - description: >- - records is any number of wrapped records in this scope (if - requested). - request: - description: request is a copy of the request that generated these results. - type: object - properties: - scope_id: - type: string - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope - address, e.g. + Coin defines a token with a denomination and an amount. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_addr: - type: string - description: >- - session_addr is a bech32 session address, e.g. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - record_addr: + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the + source in exchange for the source_amount. + + If the target_amount is zero, this Payment can be + considered a "peer-to-peer (P2P) payment." + external_id: type: string description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - include_sessions: - type: boolean - description: >- - include_sessions is a flag for whether to include the - sessions of the scope in the response. - include_records: - type: boolean - description: >- - include_records is a flag for whether to include the - records of the scope in the response. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - description: ScopeResponse is the response type for the Query/Scope RPC method. + external_id is used along with the source to uniquely + identify this Payment. + + + A source can only have one Payment with any given external + id. + + A source can have two payments with two different external + ids. + + Two different sources can each have a payment with the + same external id. + + But a source cannot have two different payments each with + the same external id. + + + An external id can be reused by a source once the payment + is accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string + is a valid external id. + description: >- + QueryGetPaymentResponse is a response message for the GetPayment + query. default: description: An unexpected error response. schema: @@ -41536,468 +42301,10835 @@ paths: properties: type_url: type: string - value: - type: string - format: byte - parameters: - - name: record_addr - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - in: path - required: true - type: string - - name: scope_id - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - in: query - required: false - type: string - - name: session_addr - description: |- - session_addr is a bech32 session address, e.g. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - in: query - required: false - type: string - - name: include_sessions - description: >- - include_sessions is a flag for whether to include the sessions of - the scope in the response. - in: query - required: false - type: boolean - - name: include_records - description: >- - include_records is a flag for whether to include the records of the - scope in the response. - in: query - required: false - type: boolean - - name: exclude_id_info - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. - in: query - required: false - type: boolean - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/record/{record_addr}/session: - get: - summary: Sessions searches for sessions. - description: >- - The scope_id can either be scope uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can - either be a uuid or session address, e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - record_addr, if provided, must be a + description: >- + A URL/resource name that uniquely identifies the type of + the serialized - bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + protocol buffer message. This string must contain at + least + one "/" character. The last segment of the URL's path + must represent - * If only a scope_id is provided, all sessions in that scope are - returned. + the fully qualified name of the type (as in - * If only a session_id is provided, it must be an address, and that - single session is returned. + `path/google.protobuf.Duration`). The name should be in + a canonical form - * If the session_id is a uuid, then either a scope_id or record_addr - must also be provided, and that single session + (e.g., leading "." is not accepted). - is returned. - * If only a record_addr is provided, the session containing that record - will be returned. + In practice, teams usually precompile into the binary + all types that they - * If a record_name is provided then either a scope_id, session_id as an - address, or record_addr must also be + expect it to use in the context of Any. However, for + URLs which use the - provided, and the session containing that record will be returned. + scheme `http`, `https`, or no scheme, one can optionally + set up a type + server that maps type URLs to message definitions as + follows: - A bad request is returned if: - * The session_id is a uuid and is provided without a scope_id or - record_addr. + * If no scheme is provided, `https` is assumed. - * A record_name is provided without any way to identify the scope (e.g. - a scope_id, a session_id as an address, or + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - a record_addr). + Note: this functionality is not currently available in + the official - * Two or more of scope_id, session_id as an address, and record_addr are - provided and don't all refer to the same + protobuf release, and it is not used for type URLs + beginning with - scope. + type.googleapis.com. - * A record_addr (or scope_id and record_name) is provided with a - session_id and that session does not contain such - a record. + Schemes other than `http`, `https` (or the empty scheme) + might be - * A record_addr and record_name are both provided, but reference - different records. + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + URL that describes the type of the serialized message. - By default, the scope and records are not included. - Set include_scope and/or include_records to true to include the scope - and/or records. - operationId: Sessions4 + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: source + description: source is the source account of the payment to get. + in: path + required: true + type: string + - name: external_id + description: external_id is the external id of the payment to get. + in: path + required: true + type: string + tags: + - Query + /provenance/exchange/v1/payments: + get: + summary: GetAllPayments gets all payments. + operationId: GetAllPayments responses: '200': description: A successful response. schema: type: object properties: - scope: - description: >- - scope is the wrapped scope that holds these sessions (if - requested). - type: object - properties: - scope: - type: object - properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address - interface for use where addresses are required in - Cosmos - specification_id: - type: string - format: byte - title: >- - the scope specification that contains the - specifications for data elements allowed within this - scope - owners: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract + payments: + type: array + items: + type: object + properties: + source: + type: string + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - These parties represent top level owners of the - records within. These parties must sign any requests - that modify + Coin defines a token with a denomination and an + amount. - the data within the scope. These addresses are in - union with parties listed on the sessions. - data_access: - type: array - items: - type: string - description: >- - Addresses in this list are authorized to receive - off-chain data associated with this scope. - value_owner_address: - type: string - description: >- - An address that controls the value associated with - this scope. Standard blockchain accounts and marker - accounts - are supported for this value. This attribute may only - be changed by the entity indicated once it is set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions - must be present in this scope's owners field. + NOTE: The amount field is an Int which implements the + custom method - This also enables use of optional=true scope owners - and session parties. - description: >- - Scope defines a root reference for a collection of records - owned by one or more parties. - scope_id_info: - description: >- - scope_id_info contains information about the id/address of - the scope. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - scope_spec_id_info: - description: >- - scope_spec_id_info contains information about the - id/address of the scope specification. - type: object - properties: - scope_spec_id: - type: string - format: byte - description: >- - scope_spec_id is the raw bytes of the scope - specification address. - scope_spec_id_prefix: - type: string - format: byte - description: >- - scope_spec_id_prefix is the prefix portion of the - scope_spec_id. - scope_spec_id_scope_spec_uuid: - type: string - format: byte - description: >- - scope_spec_id_scope_spec_uuid is the scope_spec_uuid - portion of the scope_spec_id. - scope_spec_addr: - type: string - description: >- - scope_spec_addr is the bech32 string version of the - scope_spec_id. - scope_spec_uuid: - type: string + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay + the target in exchange for the target_amount. + + A hold will be placed on this amount in the source + account until this Payment is accepted, rejected or + cancelled. + + If the source_amount is zero, this Payment can be + considered a "payment request." + target: + type: string + description: >- + target is the account that can accept this Payment. + + The target is the only thing allowed to change in a + payment. + + I.e. it can be empty initially and updated later as + needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - scope_spec_uuid is the uuid hex string of the - scope_spec_id_scope_spec_uuid. - sessions: + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the + source in exchange for the source_amount. + + If the target_amount is zero, this Payment can be + considered a "peer-to-peer (P2P) payment." + external_id: + type: string + description: >- + external_id is used along with the source to uniquely + identify this Payment. + + + A source can only have one Payment with any given + external id. + + A source can have two payments with two different + external ids. + + Two different sources can each have a payment with the + same external id. + + But a source cannot have two different payments each + with the same external id. + + + An external id can be reused by a source once the + payment is accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string + is a valid external id. + description: >- + Payment represents one account's desire to trade funds with + another account. + description: payments is all the payments on this page of results. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryGetAllPaymentsResponse is a response message for the + GetAllPayments query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - session: - type: object - properties: - session_id: - type: string - format: byte - specification_id: - type: string - format: byte - description: >- - unique id of the contract specification that was - used to create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: - PARTY_TYPE_UNSPECIFIED is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - title: >- - parties is the set of identities that signed this - contract - name: - type: string - title: >- - name to associate with this session execution - context, typically classname - context: - type: string - format: byte - description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, - and related info. - type: object - properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: - type: string - title: >- - the address of the account that created this - record - updated_date: - type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: - type: string - title: >- - the address of the account that modified this - record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented - with each update - message: - type: string - title: >- - an optional message associated with the - creation/update event - title: >- - AuditFields capture information about the last - account to make modifications and when they were - made + type_url: + type: string description: >- - Session defines an execution context against a specific - specification instance. + A URL/resource name that uniquely identifies the type of + the serialized - The context will have a specification and set of parties - involved. + protocol buffer message. This string must contain at + least + one "/" character. The last segment of the URL's path + must represent - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: - description: >- - session_id_info contains information about the - id/address of the session. - type: object - properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/exchange/v1/payments/source/{source}: + get: + summary: GetPaymentsWithSource gets all payments with a specific source account. + operationId: GetPaymentsWithSource + responses: + '200': + description: A successful response. + schema: + type: object + properties: + payments: + type: array + items: + type: object + properties: + source: + type: string + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay + the target in exchange for the target_amount. + + A hold will be placed on this amount in the source + account until this Payment is accepted, rejected or + cancelled. + + If the source_amount is zero, this Payment can be + considered a "payment request." + target: + type: string + description: >- + target is the account that can accept this Payment. + + The target is the only thing allowed to change in a + payment. + + I.e. it can be empty initially and updated later as + needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the + source in exchange for the source_amount. + + If the target_amount is zero, this Payment can be + considered a "peer-to-peer (P2P) payment." + external_id: + type: string + description: >- + external_id is used along with the source to uniquely + identify this Payment. + + + A source can only have one Payment with any given + external id. + + A source can have two payments with two different + external ids. + + Two different sources can each have a payment with the + same external id. + + But a source cannot have two different payments each + with the same external id. + + + An external id can be reused by a source once the + payment is accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string + is a valid external id. + description: >- + Payment represents one account's desire to trade funds with + another account. + description: payments is all the payments with the requested source. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryGetPaymentsWithSourceResponse is a response message for the + GetPaymentsWithSource query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: source + description: source is the source account of the payments to get. + in: path + required: true + type: string + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/exchange/v1/payments/target/{target}: + get: + summary: GetPaymentsWithTarget gets all payments with a specific target account. + operationId: GetPaymentsWithTarget + responses: + '200': + description: A successful response. + schema: + type: object + properties: + payments: + type: array + items: + type: object + properties: + source: + type: string + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay + the target in exchange for the target_amount. + + A hold will be placed on this amount in the source + account until this Payment is accepted, rejected or + cancelled. + + If the source_amount is zero, this Payment can be + considered a "payment request." + target: + type: string + description: >- + target is the account that can accept this Payment. + + The target is the only thing allowed to change in a + payment. + + I.e. it can be empty initially and updated later as + needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the + source in exchange for the source_amount. + + If the target_amount is zero, this Payment can be + considered a "peer-to-peer (P2P) payment." + external_id: + type: string + description: >- + external_id is used along with the source to uniquely + identify this Payment. + + + A source can only have one Payment with any given + external id. + + A source can have two payments with two different + external ids. + + Two different sources can each have a payment with the + same external id. + + But a source cannot have two different payments each + with the same external id. + + + An external id can be reused by a source once the + payment is accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string + is a valid external id. + description: >- + Payment represents one account's desire to trade funds with + another account. + description: payments is all the payments with the requested target. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryGetPaymentsWithTargetResponse is a response message for the + GetPaymentsWithTarget query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: target + description: target is the target account of the payments to get. + in: path + required: true + type: string + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/exchange/v1/validate/create_market: + get: + summary: >- + ValidateCreateMarket checks the provided MsgGovCreateMarketResponse and + returns any errors it might have. + operationId: ValidateCreateMarket + responses: + '200': + description: A successful response. + schema: + type: object + properties: + error: + type: string + description: >- + error is any problems or inconsistencies in the provided gov + prop msg. + + This goes above and beyond the validation done when actually + processing the governance proposal. + + If an error is returned, and gov_prop_will_pass is true, it + means the error is more of an + + inconsistency that might cause certain aspects of the market + to behave unexpectedly. + gov_prop_will_pass: + type: boolean + description: >- + gov_prop_will_pass will be true if the the provided msg will + be successfully processed at the end of it's voting + + period (assuming it passes). + description: >- + QueryValidateCreateMarketResponse is a response message for the + ValidateCreateMarket query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: create_market_request.authority + description: authority should be the governance module account address. + in: query + required: false + type: string + - name: create_market_request.market.market_id + description: market_id is the numerical identifier for this market. + in: query + required: false + type: integer + format: int64 + - name: create_market_request.market.market_details.name + description: name is a moniker that people can use to refer to this market. + in: query + required: false + type: string + - name: create_market_request.market.market_details.description + description: >- + description extra information about this market. The field is meant + to be human-readable. + in: query + required: false + type: string + - name: create_market_request.market.market_details.website_url + description: >- + website_url is a url people can use to get to this market, or at + least get more information about this market. + in: query + required: false + type: string + - name: create_market_request.market.market_details.icon_uri + description: icon_uri is a uri for an icon to associate with this market. + in: query + required: false + type: string + - name: create_market_request.market.accepting_orders + description: >- + accepting_orders is whether this market is allowing orders to be + created for it. + in: query + required: false + type: boolean + - name: create_market_request.market.allow_user_settlement + description: >- + allow_user_settlement is whether this market allows users to + initiate their own settlements. + + For example, the FillBids and FillAsks endpoints are available if + and only if this is true. + + The MarketSettle endpoint is only available to market actors + regardless of the value of this field. + in: query + required: false + type: boolean + - name: create_market_request.market.req_attr_create_ask + description: >- + req_attr_create_ask is a list of attributes required on an account + for it to be allowed to create an ask order. + + An account must have all of these attributes in order to create an + ask order in this market. + + If the list is empty, any account can create ask orders in this + market. + + + An entry that starts with "*." will match any attributes that end + with the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "b.x.a", or "c.b.a.x". + in: query + required: false + type: array + items: + type: string + collectionFormat: multi + - name: create_market_request.market.req_attr_create_bid + description: >- + req_attr_create_ask is a list of attributes required on an account + for it to be allowed to create a bid order. + + An account must have all of these attributes in order to create a + bid order in this market. + + If the list is empty, any account can create bid orders in this + market. + + + An entry that starts with "*." will match any attributes that end + with the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + in: query + required: false + type: array + items: + type: string + collectionFormat: multi + - name: create_market_request.market.accepting_commitments + description: >- + accepting_commitments is whether the market is allowing users to + commit funds to it. + in: query + required: false + type: boolean + - name: create_market_request.market.commitment_settlement_bips + description: >- + commitment_settlement_bips is the fraction of a commitment + settlement that will be paid to the exchange. + + It is represented in basis points (1/100th of 1%, e.g. 0.0001) and + is limited to 0 to 10,000 inclusive. + + During a commitment settlement, the inputs are summed and NAVs are + used to convert that total to the + + intermediary denom, then to the fee denom. That is then multiplied + by this value to get the fee amount + + that will be transferred out of the market's account into the + exchange for that settlement. + + + Summing the inputs effectively doubles the value of the settlement + from what what is usually thought of + + as the value of a trade. That should be taken into account when + setting this value. + + E.g. if two accounts are trading 10apples for 100grapes, the inputs + total will be 10apples,100grapes + + (which might then be converted to USD then nhash before applying + this ratio); Usually, though, the value + + of that trade would be viewed as either just 10apples or just + 100grapes. + in: query + required: false + type: integer + format: int64 + - name: create_market_request.market.intermediary_denom + description: >- + intermediary_denom is the denom that funds get converted to (before + being converted to the chain's fee denom) + + when calculating the fees that are paid to the exchange. NAVs are + used for this conversion and actions will fail + + if a NAV is needed but not available. + in: query + required: false + type: string + - name: create_market_request.market.req_attr_create_commitment + description: >- + req_attr_create_commitment is a list of attributes required on an + account for it to be allowed to create a + + commitment. An account must have all of these attributes in order to + create a commitment in this market. + + If the list is empty, any account can create commitments in this + market. + + + An entry that starts with "*." will match any attributes that end + with the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + in: query + required: false + type: array + items: + type: string + collectionFormat: multi + tags: + - Query + /provenance/exchange/v1/validate/manage_fees: + get: + summary: >- + ValidateManageFees checks the provided MsgGovManageFeesRequest and + returns any errors that it might have. + operationId: ValidateManageFees + responses: + '200': + description: A successful response. + schema: + type: object + properties: + error: + type: string + description: >- + error is any problems or inconsistencies in the provided gov + prop msg. + + This goes above and beyond the validation done when actually + processing the governance proposal. + + If an error is returned, and gov_prop_will_pass is true, it + means the error is more of an + + inconsistency that might cause certain aspects of the market + to behave unexpectedly. + gov_prop_will_pass: + type: boolean + description: >- + gov_prop_will_pass will be true if the the provided msg will + be successfully processed at the end of it's voting + + period (assuming it passes). + description: >- + QueryValidateManageFeesResponse is a response message for the + ValidateManageFees query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: manage_fees_request.authority + description: authority should be the governance module account address. + in: query + required: false + type: string + - name: manage_fees_request.market_id + description: market_id is the market id that will get these fee updates. + in: query + required: false + type: integer + format: int64 + - name: manage_fees_request.set_fee_commitment_settlement_bips + description: >- + set_fee_commitment_settlement_bips is the new + fee_commitment_settlement_bips for the market. + + It is ignored if it is zero. To set it to zero set + unset_fee_commitment_settlement_bips to true. + in: query + required: false + type: integer + format: int64 + - name: manage_fees_request.unset_fee_commitment_settlement_bips + description: >- + unset_fee_commitment_settlement_bips, if true, sets the + fee_commitment_settlement_bips to zero. + + If false, it is ignored. + in: query + required: false + type: boolean + tags: + - Query + /provenance/exchange/v1/validate/market/{market_id}: + get: + summary: ValidateMarket checks for any problems with a market's setup. + operationId: ValidateMarket + responses: + '200': + description: A successful response. + schema: + type: object + properties: + error: + type: string + description: >- + error is any problems or inconsistencies in the provided + market. + description: >- + QueryValidateMarketResponse is a response message for the + ValidateMarket query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: market_id + description: market_id is the id of the market to check. + in: path + required: true + type: integer + format: int64 + tags: + - Query + /provenance/hold/v1/funds: + get: + summary: >- + GetAllHolds returns all addresses with funds on hold, and the amount + held. + operationId: GetAllHolds + responses: + '200': + description: A successful response. + schema: + type: object + properties: + holds: + type: array + items: + type: object + properties: + address: + type: string + description: >- + address is the account address that holds the funds on + hold. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: amount is the balances that are on hold for the address. + description: >- + AccountHold associates an address with an amount on hold for + that address. + description: >- + holds is a list of addresses with funds on hold and the + amounts being held. + pagination: + description: pagination defines an optional pagination for the request. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + GetAllHoldsResponse is the response type for the Query/GetAllHolds + query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/hold/v1/funds/{address}: + get: + summary: GetHolds looks up the funds that are on hold for an address. + operationId: GetHolds + responses: + '200': + description: A successful response. + schema: + type: object + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: amount is the total on hold for the requested address. + description: >- + GetHoldsResponse is the response type for the Query/GetHolds + query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: address + description: address is the account address to get on-hold balances for. + in: path + required: true + type: string + tags: + - Query + /provenance/ibcratelimit/v1/params: + get: + summary: >- + Params defines a gRPC query method that returns the ibcratelimit + module's + + parameters. + operationId: IBCRateLimitParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + contract_address: + type: string + description: >- + contract_address is the address of the rate limiter + contract. + description: >- + ParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + tags: + - Query + /provenance/marker/v1/accesscontrol/{id}: + get: + summary: query for access records on an account + operationId: Access + responses: + '200': + description: A successful response. + schema: + type: object + properties: + accounts: + type: array + items: + type: object + properties: + address: + type: string + permissions: + type: array + items: + type: string + enum: + - ACCESS_UNSPECIFIED + - ACCESS_MINT + - ACCESS_BURN + - ACCESS_DEPOSIT + - ACCESS_WITHDRAW + - ACCESS_DELETE + - ACCESS_ADMIN + - ACCESS_TRANSFER + - ACCESS_FORCE_TRANSFER + default: ACCESS_UNSPECIFIED + description: >- + Access defines the different types of permissions that + a marker supports granting to an address. + + - ACCESS_UNSPECIFIED: ACCESS_UNSPECIFIED defines a no-op vote option. + - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker. + - ACCESS_BURN: ACCESS_BURN is the ability to decrease the supply of the marker using coin held by the marker. + - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to transfer funds from another account to this marker account + or to set a reference to this marker in the + metadata/scopes module. + - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to transfer funds from this marker account to another account + or to remove a reference to this marker in the + metadata/scopes module. + - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. + This access also allows cancelled markers to be marked + for deletion. + - ACCESS_ADMIN: ACCESS_ADMIN is the ability to add access grants for accounts to the list of marker permissions. + This access also gives the ability to update the + marker's denom metadata. + - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to manage transfer settings and broker transfers of the marker. + Accounts with this access can: + - Update the marker's required attributes. + - Update the send-deny list. + - Use the transfer or bank send endpoints to move marker funds out of their own account. + This access right is only supported on RESTRICTED + markers. + - ACCESS_FORCE_TRANSFER: ACCESS_FORCE_TRANSFER is the ability to transfer restricted coins from a 3rd-party account without their signature. + This access right is only supported on RESTRICTED + markers and only has meaning when + allow_forced_transfer is true. + description: >- + AccessGrant associates a collection of permissions with an + address for delegated marker account control. + description: >- + QueryAccessResponse is the response type for the + Query/MarkerAccess method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: id + description: address or denom for the marker + in: path + required: true + type: string + tags: + - Query + /provenance/marker/v1/accountdata/{denom}: + get: + summary: query for account data associated with a denom + operationId: MarkerAccountData + responses: + '200': + description: A successful response. + schema: + type: object + properties: + value: + type: string + description: The accountdata for the requested denom. + title: >- + QueryAccountDataResponse is the response type for the + Query/AccountData + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: denom + description: The denomination to look up. + in: path + required: true + type: string + tags: + - Query + /provenance/marker/v1/all: + get: + summary: Returns a list of all markers on the blockchain + operationId: AllMarkers + responses: + '200': + description: A successful response. + schema: + type: object + properties: + markers: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + pagination: + description: pagination defines an optional pagination for the request. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryAllMarkersResponse is the response type for the + Query/AllMarkers method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: status + description: |- + Optional status to filter request. + + - MARKER_STATUS_UNSPECIFIED: MARKER_STATUS_UNSPECIFIED - Unknown/Invalid Marker Status + - MARKER_STATUS_PROPOSED: MARKER_STATUS_PROPOSED - Initial configuration period, updates allowed, token supply not created. + - MARKER_STATUS_FINALIZED: MARKER_STATUS_FINALIZED - Configuration finalized, ready for supply creation + - MARKER_STATUS_ACTIVE: MARKER_STATUS_ACTIVE - Supply is created, rules are in force. + - MARKER_STATUS_CANCELLED: MARKER_STATUS_CANCELLED - Marker has been cancelled, pending destroy + - MARKER_STATUS_DESTROYED: MARKER_STATUS_DESTROYED - Marker supply has all been recalled, marker is considered destroyed and no further + actions allowed. + in: query + required: false + type: string + enum: + - MARKER_STATUS_UNSPECIFIED + - MARKER_STATUS_PROPOSED + - MARKER_STATUS_FINALIZED + - MARKER_STATUS_ACTIVE + - MARKER_STATUS_CANCELLED + - MARKER_STATUS_DESTROYED + default: MARKER_STATUS_UNSPECIFIED + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/marker/v1/detail/{id}: + get: + summary: query for a single marker by denom or address + operationId: Marker + responses: + '200': + description: A successful response. + schema: + type: object + properties: + marker: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in + the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last + '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + QueryMarkerResponse is the response type for the Query/Marker + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: id + description: the address or denom of the marker + in: path + required: true + type: string + tags: + - Query + /provenance/marker/v1/escrow/{id}: + get: + summary: query for coins on a marker account + operationId: Escrow + responses: + '200': + description: A successful response. + schema: + type: object + properties: + escrow: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + QueryEscrowResponse is the response type for the + Query/MarkerEscrow method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: id + description: address or denom for the marker + in: path + required: true + type: string + tags: + - Query + /provenance/marker/v1/getdenommetadata/{denom}: + get: + summary: query for access records on an account + operationId: MarkerDenomMetadata + responses: + '200': + description: A successful response. + schema: + type: object + properties: + metadata: + type: object + properties: + description: + type: string + denom_units: + type: array + items: + type: object + properties: + denom: + type: string + description: >- + denom represents the string name of the given denom + unit (e.g uatom). + exponent: + type: integer + format: int64 + description: >- + exponent represents power of 10 exponent that one + must + + raise the base_denom to in order to equal the given + DenomUnit's denom + + 1 denom = 10^exponent base_denom + + (e.g. with a base_denom of uatom, one can create a + DenomUnit of 'atom' with + + exponent = 6, thus: 1 atom = 10^6 uatom). + aliases: + type: array + items: + type: string + title: >- + aliases is a list of string aliases for the given + denom + description: |- + DenomUnit represents a struct that describes a given + denomination unit of the basic token. + title: >- + denom_units represents the list of DenomUnit's for a given + coin + base: + type: string + description: >- + base represents the base denom (should be the DenomUnit + with exponent = 0). + display: + type: string + description: |- + display indicates the suggested denom that should be + displayed in clients. + name: + type: string + description: 'Since: cosmos-sdk 0.43' + title: 'name defines the name of the token (eg: Cosmos Atom)' + symbol: + type: string + description: >- + symbol is the token symbol usually shown on exchanges (eg: + ATOM). This can + + be the same as the display. + + + Since: cosmos-sdk 0.43 + uri: + type: string + description: >- + URI to a document (on or off-chain) that contains + additional information. Optional. + + + Since: cosmos-sdk 0.46 + uri_hash: + type: string + description: >- + URIHash is a sha256 hash of a document pointed by URI. + It's used to verify that + + the document didn't change. Optional. + + + Since: cosmos-sdk 0.46 + description: |- + Metadata represents a struct that describes + a basic token. + title: >- + QueryDenomMetadataResponse is the response type for the + Query/DenomMetadata + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: denom + in: path + required: true + type: string + tags: + - Query + /provenance/marker/v1/holding/{id}: + get: + summary: query for all accounts holding the given marker coins + operationId: Holding + responses: + '200': + description: A successful response. + schema: + type: object + properties: + balances: + type: array + items: + type: object + properties: + address: + type: string + description: address is the address of the balance holder. + coins: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: coins defines the different coins this balance holds. + title: >- + Balance defines an account address and balance pair used in + queries for accounts holding a marker + pagination: + description: pagination defines an optional pagination for the request. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryHoldingResponse is the response type for the + Query/MarkerHolders method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: id + description: the address or denom of the marker + in: path + required: true + type: string + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/marker/v1/netassetvalues/{id}: + get: + summary: NetAssetValues returns net asset values for marker + operationId: NetAssetValues + responses: + '200': + description: A successful response. + schema: + type: object + properties: + net_asset_values: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: price is the complete value of the asset's volume + volume: + type: string + format: uint64 + title: >- + volume is the number of tokens of the marker that were + purchased for the price + updated_block_height: + type: string + format: uint64 + title: updated_block_height is the block height of last update + title: NetAssetValue defines a marker's net asset value + title: net asset values for marker denom + description: >- + QueryNetAssetValuesRequest is the response type for the + Query/NetAssetValues method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: id + description: address or denom for the marker + in: path + required: true + type: string + tags: + - Query + /provenance/marker/v1/params: + get: + summary: Params queries the parameters of x/bank module. + operationId: MarkerParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_total_supply: + type: string + format: uint64 + title: >- + Deprecated: Prefer to use `max_supply` instead. Maximum + amount of supply to allow a marker to be created with + enable_governance: + type: boolean + description: >- + indicates if governance based controls of markers is + allowed. + unrestricted_denom_regex: + type: string + title: >- + a regular expression used to validate marker denom values + from normal create requests (governance + + requests are only subject to platform coin validation + denom expression) + max_supply: + type: string + title: >- + maximum amount of supply to allow a marker to be created + with + description: >- + QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + tags: + - Query + /provenance/marker/v1/supply/{id}: + get: + summary: query for supply of coin on a marker account + operationId: Supply + responses: + '200': + description: A successful response. + schema: + type: object + properties: + amount: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + QuerySupplyResponse is the response type for the + Query/MarkerSupply method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: id + description: address or denom for the marker + in: path + required: true + type: string + tags: + - Query + /provenance/metadata/v1/accountdata/{metadata_addr}: + get: + summary: |- + AccountData gets the account data associated with a metadata address. + Currently, only scope ids are supported. + operationId: MetadataAccountData + responses: + '200': + description: A successful response. + schema: + type: object + properties: + value: + type: string + description: The accountdata for the requested metadata address. + description: >- + AccountDataResponse is the response type for the Query/AccountData + RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: metadata_addr + description: |- + The metadata address to look up. + Currently, only scope ids are supported. + in: path + required: true + type: string + format: byte + tags: + - Query + /provenance/metadata/v1/addr/{addrs}: + get: + summary: GetByAddr retrieves metadata given any address(es). + operationId: GetByAddr + responses: + '200': + description: A successful response. + schema: + type: object + properties: + scopes: + type: array + items: + type: object + properties: + scope_id: + type: string + format: byte + title: >- + Unique ID for this scope. Implements sdk.Address + interface for use where addresses are required in Cosmos + specification_id: + type: string + format: byte + title: >- + the scope specification that contains the specifications + for data elements allowed within this scope + owners: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of the + processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role associated + with a contract + description: >- + These parties represent top level owners of the records + within. These parties must sign any requests that + modify + + the data within the scope. These addresses are in union + with parties listed on the sessions. + data_access: + type: array + items: + type: string + description: >- + Addresses in this list are authorized to receive + off-chain data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with this + scope. Standard blockchain accounts and marker accounts + + are supported for this value. This attribute may only + be changed by the entity indicated once it is set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions must + be present in this scope's owners field. + + This also enables use of optional=true scope owners and + session parties. + description: >- + Scope defines a root reference for a collection of records + owned by one or more parties. + description: scopes contains any scopes that were requested and found. + sessions: + type: array + items: + type: object + properties: + session_id: + type: string + format: byte + specification_id: + type: string + format: byte + description: >- + unique id of the contract specification that was used to + create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of the + processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role associated + with a contract + title: >- + parties is the set of identities that signed this + contract + name: + type: string + title: >- + name to associate with this session execution context, + typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, and + related info. + type: object + properties: + created_date: + type: string + format: date-time + title: the date/time when this entry was created + created_by: + type: string + title: the address of the account that created this record + updated_date: + type: string + format: date-time + title: the date/time when this entry was last updated + updated_by: + type: string + title: the address of the account that modified this record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented with + each update + message: + type: string + title: >- + an optional message associated with the + creation/update event + title: >- + AuditFields capture information about the last account + to make modifications and when they were made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + description: sessions contains any sessions that were requested and found. + records: + type: array + items: + type: object + properties: + name: + type: string + title: >- + name/identifier for this record. Value must be unique + within the scope. Also known as a Fact name + session_id: + type: string + format: byte + title: >- + id of the session context that was used to create this + record (use with filtered kvprefix iterator) + process: + title: >- + process contain information used to uniquely identify an + execution on or off chain that generated this record + type: object + properties: + address: + type: string + title: >- + the address of a smart contract used for this + process + hash: + type: string + title: the hash of an off-chain process used + name: + type: string + title: >- + a name associated with the process (type_name, + classname or smart contract common name) + method: + type: string + title: >- + method is a name or reference to a specific + operation (method) within a class/contract that was + invoked + inputs: + type: array + items: + type: object + properties: + name: + type: string + description: >- + Name value included to link back to the definition + spec. + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For Established + Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information (For + Proposed Records) + type_name: + type: string + title: from proposed fact structure to unmarshal + status: + title: >- + Indicates if this input was a recorded fact on + chain or just a given hashed input + type: string + enum: + - RECORD_INPUT_STATUS_UNSPECIFIED + - RECORD_INPUT_STATUS_PROPOSED + - RECORD_INPUT_STATUS_RECORD + default: RECORD_INPUT_STATUS_UNSPECIFIED + description: >- + - RECORD_INPUT_STATUS_UNSPECIFIED: + RECORD_INPUT_STATUS_UNSPECIFIED indicates an + invalid/unknown input type + - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed + - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain + title: Tracks the inputs used to establish this record + title: >- + inputs used with the process to achieve the output on + this record + outputs: + type: array + items: + type: object + properties: + hash: + type: string + title: >- + Hash of the data output that was output/generated + for this record + status: + title: >- + Status of the process execution associated with + this output indicating success,failure, or pending + type: string + enum: + - RESULT_STATUS_UNSPECIFIED + - RESULT_STATUS_PASS + - RESULT_STATUS_SKIP + - RESULT_STATUS_FAIL + default: RESULT_STATUS_UNSPECIFIED + description: >- + - RESULT_STATUS_UNSPECIFIED: + RESULT_STATUS_UNSPECIFIED indicates an unset + condition + - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful + - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution + - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. + title: >- + RecordOutput encapsulates the output of a process + recorded on chain + title: >- + output(s) is the results of executing the process on the + given process indicated in this record + specification_id: + type: string + format: byte + description: >- + specification_id is the id of the record specification + that was used to create this record. + title: >- + A record (of fact) is attached to a session or each + consideration output from a contract + description: records contains any records that were requested and found. + scope_specs: + type: array + items: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + description: + description: General information about this scope specification. + type: object + properties: + name: + type: string + description: A Name for this thing. + description: + type: string + description: A description of this thing. + website_url: + type: string + description: URL to find even more info. + icon_url: + type: string + description: URL of an icon. + owner_addresses: + type: array + items: + type: string + description: Addresses of the owners of this scope specification. + parties_involved: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an + error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: >- + A list of parties that must be present on a scope (and + their associated roles) + contract_spec_ids: + type: array + items: + type: string + format: byte + description: >- + A list of contract specification ids allowed for a scope + based on this specification. + title: >- + ScopeSpecification defines the required parties, resources, + conditions, and consideration outputs for a contract + description: >- + scope_specs contains any scope specifications that were + requested and found. + contract_specs: + type: array + items: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + description: + title: Description information for this contract specification + type: object + properties: + name: + type: string + description: A Name for this thing. + description: + type: string + description: A description of this thing. + website_url: + type: string + description: URL to find even more info. + icon_url: + type: string + description: URL of an icon. + description: >- + Description holds general information that is handy to + associate with a structure. + owner_addresses: + type: array + items: + type: string + title: Address of the account that owns this specificaiton + parties_involved: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an + error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: >- + a list of party roles that must be fullfilled when + signing a transaction for this contract specification + resource_id: + type: string + format: byte + title: >- + the address of a record on chain that represents this + contract + hash: + type: string + title: the hash of contract binary (off-chain instance) + class_name: + type: string + title: name of the class/type of this contract executable + title: >- + ContractSpecification defines the required parties, + resources, conditions, and consideration outputs for a + contract + description: >- + contract_specs contains any contract specifications that were + requested and found. + record_specs: + type: array + items: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + name: + type: string + title: >- + Name of Record that will be created when this + specification is used + inputs: + type: array + items: + type: object + properties: + name: + type: string + title: name for this input + type_name: + type: string + title: a type_name (typically a proto name or class_name) + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For Established + Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information (For + Proposed Records) + title: >- + InputSpecification defines a name, type_name, and + source reference (either on or off chain) to define an + input + + parameter + title: >- + A set of inputs that must be satisified to apply this + RecordSpecification and create a Record + type_name: + type: string + title: >- + A type name for data associated with this record + (typically a class or proto name) + result_type: + title: >- + Type of result for this record specification (must be + RECORD or RECORD_LIST) + type: string + enum: + - DEFINITION_TYPE_UNSPECIFIED + - DEFINITION_TYPE_PROPOSED + - DEFINITION_TYPE_RECORD + - DEFINITION_TYPE_RECORD_LIST + default: DEFINITION_TYPE_UNSPECIFIED + description: >- + - DEFINITION_TYPE_UNSPECIFIED: + DEFINITION_TYPE_UNSPECIFIED indicates an unknown/invalid + value + - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) + - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain + - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having + the same name + responsible_parties: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an + error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: Type of party responsible for this record + title: >- + RecordSpecification defines the specification for a Record + including allowed/required inputs/outputs + description: >- + record_specs contains any record specifications that were + requested and found. + not_found: + type: array + items: + type: string + description: not_found contains any addrs requested but not found. + description: >- + GetByAddrResponse is the response type for the Query/GetByAddr RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: addrs + description: ids are the metadata addresses of the things to look up. + in: path + required: true + type: array + items: + type: string + collectionFormat: csv + minItems: 1 + tags: + - Query + /provenance/metadata/v1/contractspec/{specification_id}: + get: + summary: >- + ContractSpecification returns a contract specification for the given + specification id. + description: >- + The specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract + + specification address, e.g. + contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record + specification + + address, e.g. + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If + it is a record specification + + address, then the contract specification that contains that record + specification is looked up. + + + By default, the record specifications for this contract specification + are not included. + + Set include_record_specs to true to include them in the result. + operationId: ContractSpecification + responses: + '200': + description: A successful response. + schema: + type: object + properties: + contract_specification: + description: contract_specification is the wrapped contract specification. + type: object + properties: + specification: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + description: + title: >- + Description information for this contract + specification + type: object + properties: + name: + type: string + description: A Name for this thing. + description: + type: string + description: A description of this thing. + website_url: + type: string + description: URL to find even more info. + icon_url: + type: string + description: URL of an icon. + description: >- + Description holds general information that is handy to + associate with a structure. + owner_addresses: + type: array + items: + type: string + title: Address of the account that owns this specificaiton + parties_involved: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is + an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: >- + a list of party roles that must be fullfilled when + signing a transaction for this contract specification + resource_id: + type: string + format: byte + title: >- + the address of a record on chain that represents this + contract + hash: + type: string + title: the hash of contract binary (off-chain instance) + class_name: + type: string + title: name of the class/type of this contract executable + title: >- + ContractSpecification defines the required parties, + resources, conditions, and consideration outputs for a + contract + description: >- + specification is the on-chain contract specification + message. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the + id/address of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of the + contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + record_specifications: + type: array + items: + type: object + properties: + specification: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + name: + type: string + title: >- + Name of Record that will be created when this + specification is used + inputs: + type: array + items: + type: object + properties: + name: + type: string + title: name for this input + type_name: + type: string + title: >- + a type_name (typically a proto name or + class_name) + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For + Established Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + title: >- + InputSpecification defines a name, type_name, and + source reference (either on or off chain) to + define an input + + parameter + title: >- + A set of inputs that must be satisified to apply + this RecordSpecification and create a Record + type_name: + type: string + title: >- + A type name for data associated with this record + (typically a class or proto name) + result_type: + title: >- + Type of result for this record specification (must + be RECORD or RECORD_LIST) + type: string + enum: + - DEFINITION_TYPE_UNSPECIFIED + - DEFINITION_TYPE_PROPOSED + - DEFINITION_TYPE_RECORD + - DEFINITION_TYPE_RECORD_LIST + default: DEFINITION_TYPE_UNSPECIFIED + description: >- + - DEFINITION_TYPE_UNSPECIFIED: + DEFINITION_TYPE_UNSPECIFIED indicates an + unknown/invalid value + - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) + - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain + - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having + the same name + responsible_parties: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: Type of party responsible for this record + title: >- + RecordSpecification defines the specification for a + Record including allowed/required inputs/outputs + description: >- + specification is the on-chain record specification + message. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the + id/address of the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record + specification address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name + portion of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordSpecificationWrapper contains a single record + specification and some extra identifiers for it. + description: >- + record_specifications is any number or wrapped record + specifications associated with this contract_specification + + (if requested). + request: + description: request is a copy of the request that generated these results. + type: object + properties: + specification_id: + type: string + description: >- + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification + + address, e.g. + contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + + It can also be a record specification address, e.g. + + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. + include_record_specs: + type: boolean + description: >- + include_record_specs is a flag for whether to include the + the record specifications of this contract specification + + in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + ContractSpecificationResponse is the response type for the + Query/ContractSpecification RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: specification_id + description: >- + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification + + address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + + It can also be a record specification address, e.g. + + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. + in: path + required: true + type: string + - name: include_record_specs + description: >- + include_record_specs is a flag for whether to include the the record + specifications of this contract specification + + in the response. + in: query + required: false + type: boolean + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/contractspec/{specification_id}/recordspec/{name}: + get: + summary: RecordSpecification returns a record specification for the given input. + operationId: RecordSpecification2 + responses: + '200': + description: A successful response. + schema: + type: object + properties: + record_specification: + type: object + properties: + specification: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + name: + type: string + title: >- + Name of Record that will be created when this + specification is used + inputs: + type: array + items: + type: object + properties: + name: + type: string + title: name for this input + type_name: + type: string + title: >- + a type_name (typically a proto name or + class_name) + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For + Established Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + title: >- + InputSpecification defines a name, type_name, and + source reference (either on or off chain) to define + an input + + parameter + title: >- + A set of inputs that must be satisified to apply this + RecordSpecification and create a Record + type_name: + type: string + title: >- + A type name for data associated with this record + (typically a class or proto name) + result_type: + title: >- + Type of result for this record specification (must be + RECORD or RECORD_LIST) + type: string + enum: + - DEFINITION_TYPE_UNSPECIFIED + - DEFINITION_TYPE_PROPOSED + - DEFINITION_TYPE_RECORD + - DEFINITION_TYPE_RECORD_LIST + default: DEFINITION_TYPE_UNSPECIFIED + description: >- + - DEFINITION_TYPE_UNSPECIFIED: + DEFINITION_TYPE_UNSPECIFIED indicates an + unknown/invalid value + - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) + - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain + - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having + the same name + responsible_parties: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is + an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: Type of party responsible for this record + title: >- + RecordSpecification defines the specification for a Record + including allowed/required inputs/outputs + description: >- + specification is the on-chain record specification + message. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the + id/address of the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record + specification address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name portion + of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordSpecificationWrapper contains a single record + specification and some extra identifiers for it. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + specification_id: + type: string + description: >- + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification + + address, e.g. + contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + + It can also be a record specification address, e.g. + + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. + name: + type: string + description: >- + name is the name of the record to look up. + + It is required if the specification_id is a uuid or + contract specification address. + + It is ignored if the specification_id is a record + specification address. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + RecordSpecificationResponse is the response type for the + Query/RecordSpecification RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: specification_id + description: >- + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification + + address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + + It can also be a record specification address, e.g. + + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. + in: path + required: true + type: string + - name: name + description: >- + name is the name of the record to look up. + + It is required if the specification_id is a uuid or contract + specification address. + + It is ignored if the specification_id is a record specification + address. + in: path + required: true + type: string + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/contractspec/{specification_id}/recordspecs: + get: + summary: >- + RecordSpecificationsForContractSpecification returns the record + specifications for the given input. + description: >- + The specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84, a bech32 contract + + specification address, e.g. + contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn, or a bech32 record + specification + + address, e.g. + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. If + it is a record specification + + address, then the contract specification that contains that record + specification is used. + operationId: RecordSpecificationsForContractSpecification + responses: + '200': + description: A successful response. + schema: + type: object + properties: + record_specifications: + type: array + items: + type: object + properties: + specification: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + name: + type: string + title: >- + Name of Record that will be created when this + specification is used + inputs: + type: array + items: + type: object + properties: + name: + type: string + title: name for this input + type_name: + type: string + title: >- + a type_name (typically a proto name or + class_name) + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For + Established Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + title: >- + InputSpecification defines a name, type_name, and + source reference (either on or off chain) to + define an input + + parameter + title: >- + A set of inputs that must be satisified to apply + this RecordSpecification and create a Record + type_name: + type: string + title: >- + A type name for data associated with this record + (typically a class or proto name) + result_type: + title: >- + Type of result for this record specification (must + be RECORD or RECORD_LIST) + type: string + enum: + - DEFINITION_TYPE_UNSPECIFIED + - DEFINITION_TYPE_PROPOSED + - DEFINITION_TYPE_RECORD + - DEFINITION_TYPE_RECORD_LIST + default: DEFINITION_TYPE_UNSPECIFIED + description: >- + - DEFINITION_TYPE_UNSPECIFIED: + DEFINITION_TYPE_UNSPECIFIED indicates an + unknown/invalid value + - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) + - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain + - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having + the same name + responsible_parties: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: Type of party responsible for this record + title: >- + RecordSpecification defines the specification for a + Record including allowed/required inputs/outputs + description: >- + specification is the on-chain record specification + message. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the + id/address of the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record + specification address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name + portion of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordSpecificationWrapper contains a single record + specification and some extra identifiers for it. + description: >- + record_specifications is any number of wrapped record + specifications associated with this contract_specification. + contract_specification_uuid: + type: string + description: >- + contract_specification_uuid is the uuid of this contract + specification. + contract_specification_addr: + type: string + description: >- + contract_specification_addr is the contract specification + address as a bech32 encoded string. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + specification_id: + type: string + description: >- + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification + + address, e.g. + contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + + It can also be a record specification address, e.g. + + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + RecordSpecificationsForContractSpecificationResponse is the + response type for the + + Query/RecordSpecificationsForContractSpecification RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: specification_id + description: >- + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification + + address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + + It can also be a record specification address, e.g. + + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. + in: path + required: true + type: string + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/contractspecs/all: + get: + summary: ContractSpecificationsAll retrieves all contract specifications. + operationId: ContractSpecificationsAll + responses: + '200': + description: A successful response. + schema: + type: object + properties: + contract_specifications: + type: array + items: + type: object + properties: + specification: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + description: + title: >- + Description information for this contract + specification + type: object + properties: + name: + type: string + description: A Name for this thing. + description: + type: string + description: A description of this thing. + website_url: + type: string + description: URL to find even more info. + icon_url: + type: string + description: URL of an icon. + description: >- + Description holds general information that is handy + to associate with a structure. + owner_addresses: + type: array + items: + type: string + title: Address of the account that owns this specificaiton + parties_involved: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: >- + a list of party roles that must be fullfilled when + signing a transaction for this contract + specification + resource_id: + type: string + format: byte + title: >- + the address of a record on chain that represents + this contract + hash: + type: string + title: the hash of contract binary (off-chain instance) + class_name: + type: string + title: name of the class/type of this contract executable + title: >- + ContractSpecification defines the required parties, + resources, conditions, and consideration outputs for a + contract + description: >- + specification is the on-chain contract specification + message. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the + id/address of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + ContractSpecificationWrapper contains a single contract + specification and some extra identifiers for it. + description: >- + contract_specifications are the wrapped contract + specifications. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to + begin + + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key + is unavailable. + + It is less efficient than using key. Only one of + offset or key should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the + result set should include + + a count of the total number of items available for + pagination in UIs. + + count_total is only respected when offset is used. It + is ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: >- + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + ContractSpecificationsAllResponse is the response type for the + Query/ContractSpecificationsAll RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/locator/params: + get: + summary: >- + OSLocatorParams returns all parameters for the object store locator sub + module. + operationId: OSLocatorParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_uri_length: + type: integer + format: int64 + request: + description: request is a copy of the request that generated these results. + type: object + properties: + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + OSLocatorParamsResponse is the response type for the + Query/OSLocatorParams RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/locator/scope/{scope_id}: + get: + summary: >- + OSLocatorsByScope returns all ObjectStoreLocator entries for a for all + signer's present in the specified scope. + operationId: OSLocatorsByScope + responses: + '200': + description: A successful response. + schema: + type: object + properties: + locators: + type: array + items: + type: object + properties: + owner: + type: string + title: account address the endpoint is owned by + locator_uri: + type: string + title: locator endpoint uri + encryption_key: + type: string + title: owners encryption key address + description: >- + Defines an Locator object stored on chain, which represents + a owner( blockchain address) associated with a endpoint + + uri for it's associated object store. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + scope_id: + type: string + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + OSLocatorsByScopeResponse is the response type for the + Query/OSLocatorsByScope RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: scope_id + in: path + required: true + type: string + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/locator/uri/{uri}: + get: + summary: >- + OSLocatorsByURI returns all ObjectStoreLocator entries for a locator + uri. + operationId: OSLocatorsByURI + responses: + '200': + description: A successful response. + schema: + type: object + properties: + locators: + type: array + items: + type: object + properties: + owner: + type: string + title: account address the endpoint is owned by + locator_uri: + type: string + title: locator endpoint uri + encryption_key: + type: string + title: owners encryption key address + description: >- + Defines an Locator object stored on chain, which represents + a owner( blockchain address) associated with a endpoint + + uri for it's associated object store. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + uri: + type: string + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to + begin + + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key + is unavailable. + + It is less efficient than using key. Only one of + offset or key should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the + result set should include + + a count of the total number of items available for + pagination in UIs. + + count_total is only respected when offset is used. It + is ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: >- + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + OSLocatorsByURIResponse is the response type for the + Query/OSLocatorsByURI RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: uri + in: path + required: true + type: string + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/locator/{owner}: + get: + summary: OSLocator returns an ObjectStoreLocator by its owner's address. + operationId: OSLocator + responses: + '200': + description: A successful response. + schema: + type: object + properties: + locator: + type: object + properties: + owner: + type: string + title: account address the endpoint is owned by + locator_uri: + type: string + title: locator endpoint uri + encryption_key: + type: string + title: owners encryption key address + description: >- + Defines an Locator object stored on chain, which represents a + owner( blockchain address) associated with a endpoint + + uri for it's associated object store. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + owner: + type: string + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + OSLocatorResponse is the response type for the Query/OSLocator RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: owner + in: path + required: true + type: string + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/locators/all: + get: + summary: OSAllLocators returns all ObjectStoreLocator entries. + operationId: OSAllLocators + responses: + '200': + description: A successful response. + schema: + type: object + properties: + locators: + type: array + items: + type: object + properties: + owner: + type: string + title: account address the endpoint is owned by + locator_uri: + type: string + title: locator endpoint uri + encryption_key: + type: string + title: owners encryption key address + description: >- + Defines an Locator object stored on chain, which represents + a owner( blockchain address) associated with a endpoint + + uri for it's associated object store. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to + begin + + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key + is unavailable. + + It is less efficient than using key. Only one of + offset or key should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the + result set should include + + a count of the total number of items available for + pagination in UIs. + + count_total is only respected when offset is used. It + is ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: >- + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + OSAllLocatorsResponse is the response type for the + Query/OSAllLocators RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/netassetvalues/{id}: + get: + summary: ScopeNetAssetValues returns net asset values for scope + operationId: ScopeNetAssetValues + responses: + '200': + description: A successful response. + schema: + type: object + properties: + net_asset_values: + type: array + items: + type: object + properties: + price: + title: price is the complete value of the asset's volume + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + updated_block_height: + type: string + format: uint64 + title: updated_block_height is the block height of last update + title: NetAssetValue defines a scope's net asset value + title: net asset values for scope + description: >- + QueryNetAssetValuesRequest is the response type for the + Query/NetAssetValues method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: id + description: scopeid metadata address + in: path + required: true + type: string + tags: + - Query + /provenance/metadata/v1/ownership/{address}: + get: + summary: >- + Ownership returns the scope identifiers that list the given address as + either a data or value owner. + operationId: Ownership + responses: + '200': + description: A successful response. + schema: + type: object + properties: + scope_uuids: + type: array + items: + type: string + description: A list of scope ids (uuid) associated with the given address. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + address: + type: string + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to + begin + + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key + is unavailable. + + It is less efficient than using key. Only one of + offset or key should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the + result set should include + + a count of the total number of items available for + pagination in UIs. + + count_total is only respected when offset is used. It + is ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: >- + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + OwnershipResponse is the response type for the Query/Ownership RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: address + in: path + required: true + type: string + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/params: + get: + summary: Params queries the parameters of x/metadata module. + operationId: MetadataParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + request: + description: request is a copy of the request that generated these results. + type: object + properties: + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/record/{record_addr}: + get: + summary: Records searches for records. + description: >- + The record_addr, if provided, must be a bech32 record address, e.g. + + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The + scope-id can either be scope uuid, e.g. + + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, + + the session_id can either be a uuid or session address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The + name is the name of the record you're + + interested in. + + + * If only a record_addr is provided, that single record will be + returned. + + * If only a scope_id is provided, all records in that scope will be + returned. + + * If only a session_id (or scope_id/session_id), all records in that + session will be returned. + + * If a name is provided with a scope_id and/or session_id, that single + record will be returned. + + + A bad request is returned if: + + * The session_id is a uuid and no scope_id is provided. + + * There are two or more of record_addr, session_id, and scope_id, and + they don't all refer to the same scope. + + * A name is provided, but not a scope_id and/or a session_id. + + * A name and record_addr are provided and the name doesn't match the + record_addr. + + + By default, the scope and sessions are not included. + + Set include_scope and/or include_sessions to true to include the scope + and/or sessions. + operationId: Records + responses: + '200': + description: A successful response. + schema: + type: object + properties: + scope: + description: >- + scope is the wrapped scope that holds these records (if + requested). + type: object + properties: + scope: + type: object + properties: + scope_id: + type: string + format: byte + title: >- + Unique ID for this scope. Implements sdk.Address + interface for use where addresses are required in + Cosmos + specification_id: + type: string + format: byte + title: >- + the scope specification that contains the + specifications for data elements allowed within this + scope + owners: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + description: >- + These parties represent top level owners of the + records within. These parties must sign any requests + that modify + + the data within the scope. These addresses are in + union with parties listed on the sessions. + data_access: + type: array + items: + type: string + description: >- + Addresses in this list are authorized to receive + off-chain data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with + this scope. Standard blockchain accounts and marker + accounts + + are supported for this value. This attribute may only + be changed by the entity indicated once it is set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions + must be present in this scope's owners field. + + This also enables use of optional=true scope owners + and session parties. + description: >- + Scope defines a root reference for a collection of records + owned by one or more parties. + scope_id_info: + description: >- + scope_id_info contains information about the id/address of + the scope. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + scope_spec_id_info: + description: >- + scope_spec_id_info contains information about the + id/address of the scope specification. + type: object + properties: + scope_spec_id: + type: string + format: byte + description: >- + scope_spec_id is the raw bytes of the scope + specification address. + scope_spec_id_prefix: + type: string + format: byte + description: >- + scope_spec_id_prefix is the prefix portion of the + scope_spec_id. + scope_spec_id_scope_spec_uuid: + type: string + format: byte + description: >- + scope_spec_id_scope_spec_uuid is the scope_spec_uuid + portion of the scope_spec_id. + scope_spec_addr: + type: string + description: >- + scope_spec_addr is the bech32 string version of the + scope_spec_id. + scope_spec_uuid: + type: string + description: >- + scope_spec_uuid is the uuid hex string of the + scope_spec_id_scope_spec_uuid. + sessions: + type: array + items: + type: object + properties: + session: + type: object + properties: + session_id: + type: string + format: byte + specification_id: + type: string + format: byte + description: >- + unique id of the contract specification that was + used to create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: + PARTY_TYPE_UNSPECIFIED is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + title: >- + parties is the set of identities that signed this + contract + name: + type: string + title: >- + name to associate with this session execution + context, typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, + and related info. + type: object + properties: + created_date: + type: string + format: date-time + title: the date/time when this entry was created + created_by: + type: string + title: >- + the address of the account that created this + record + updated_date: + type: string + format: date-time + title: the date/time when this entry was last updated + updated_by: + type: string + title: >- + the address of the account that modified this + record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented + with each update + message: + type: string + title: >- + an optional message associated with the + creation/update event + title: >- + AuditFields capture information about the last + account to make modifications and when they were + made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the + id/address of the session. + type: object + properties: + session_id: + type: string + format: byte + description: session_id is the raw bytes of the session address. + session_id_prefix: + type: string + format: byte + description: >- + session_id_prefix is the prefix portion of the + session_id. + session_id_scope_uuid: + type: string + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of + the session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion + of the session_id. + session_addr: + type: string + description: >- + session_addr is the bech32 string version of the + session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the + id/address of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + SessionWrapper contains a single session and some extra + identifiers for it. + description: >- + sessions is any number of wrapped sessions that hold these + records (if requested). + records: + type: array + items: + type: object + properties: + record: + type: object + properties: + name: + type: string + title: >- + name/identifier for this record. Value must be + unique within the scope. Also known as a Fact name + session_id: + type: string + format: byte + title: >- + id of the session context that was used to create + this record (use with filtered kvprefix iterator) + process: + title: >- + process contain information used to uniquely + identify an execution on or off chain that generated + this record + type: object + properties: + address: + type: string + title: >- + the address of a smart contract used for this + process + hash: + type: string + title: the hash of an off-chain process used + name: + type: string + title: >- + a name associated with the process (type_name, + classname or smart contract common name) + method: + type: string + title: >- + method is a name or reference to a specific + operation (method) within a class/contract that + was invoked + inputs: + type: array + items: + type: object + properties: + name: + type: string + description: >- + Name value included to link back to the + definition spec. + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For + Established Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + type_name: + type: string + title: from proposed fact structure to unmarshal + status: + title: >- + Indicates if this input was a recorded fact on + chain or just a given hashed input + type: string + enum: + - RECORD_INPUT_STATUS_UNSPECIFIED + - RECORD_INPUT_STATUS_PROPOSED + - RECORD_INPUT_STATUS_RECORD + default: RECORD_INPUT_STATUS_UNSPECIFIED + description: >- + - RECORD_INPUT_STATUS_UNSPECIFIED: + RECORD_INPUT_STATUS_UNSPECIFIED indicates an + invalid/unknown input type + - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed + - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain + title: Tracks the inputs used to establish this record + title: >- + inputs used with the process to achieve the output + on this record + outputs: + type: array + items: + type: object + properties: + hash: + type: string + title: >- + Hash of the data output that was + output/generated for this record + status: + title: >- + Status of the process execution associated + with this output indicating success,failure, + or pending + type: string + enum: + - RESULT_STATUS_UNSPECIFIED + - RESULT_STATUS_PASS + - RESULT_STATUS_SKIP + - RESULT_STATUS_FAIL + default: RESULT_STATUS_UNSPECIFIED + description: >- + - RESULT_STATUS_UNSPECIFIED: + RESULT_STATUS_UNSPECIFIED indicates an unset + condition + - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful + - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution + - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. + title: >- + RecordOutput encapsulates the output of a process + recorded on chain + title: >- + output(s) is the results of executing the process on + the given process indicated in this record + specification_id: + type: string + format: byte + description: >- + specification_id is the id of the record + specification that was used to create this record. + title: >- + A record (of fact) is attached to a session or each + consideration output from a contract + description: record is the on-chain record message. + record_id_info: + description: >- + record_id_info contains information about the id/address + of the record. + type: object + properties: + record_id: + type: string + format: byte + description: record_id is the raw bytes of the record address. + record_id_prefix: + type: string + format: byte + description: >- + record_id_prefix is the prefix portion of the + record_id. + record_id_scope_uuid: + type: string + format: byte + description: >- + record_id_scope_uuid is the scope_uuid portion of + the record_id. + record_id_hashed_name: + type: string + format: byte + description: >- + record_id_hashed_name is the hashed name portion of + the record_id. + record_addr: + type: string + description: >- + record_addr is the bech32 string version of the + record_id. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the record_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the + id/address of the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record + specification address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name + portion of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordWrapper contains a single record and some extra + identifiers for it. + description: records is any number of wrapped record results. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope + address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_id: + type: string + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session + address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + name: + type: string + title: name is the name of the record to look for + include_scope: + type: boolean + description: >- + include_scope is a flag for whether to include the the + scope containing these records in the response. + include_sessions: + type: boolean + description: >- + include_sessions is a flag for whether to include the + sessions containing these records in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + RecordsResponse is the response type for the Query/Records RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: record_addr + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + in: path + required: true + type: string + - name: scope_id + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + in: query + required: false + type: string + - name: session_id + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, + e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + in: query + required: false + type: string + - name: name + description: name is the name of the record to look for. + in: query + required: false + type: string + - name: include_scope + description: >- + include_scope is a flag for whether to include the the scope + containing these records in the response. + in: query + required: false + type: boolean + - name: include_sessions + description: >- + include_sessions is a flag for whether to include the sessions + containing these records in the response. + in: query + required: false + type: boolean + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/record/{record_addr}/scope: + get: + summary: Scope searches for a scope. + description: >- + The scope id, if provided, must either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, + + e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if + provided, must be a bech32 session address, + + e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The + record_addr, if provided, must be a + + bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + + + * If only a scope_id is provided, that scope is returned. + + * If only a session_addr is provided, the scope containing that session + is returned. + + * If only a record_addr is provided, the scope containing that record is + returned. + + * If more than one of scope_id, session_addr, and record_addr are + provided, and they don't refer to the same scope, + + a bad request is returned. + + + Providing a session addr or record addr does not limit the sessions and + records returned (if requested). + + Those parameters are only used to find the scope. + + + By default, sessions and records are not included. + + Set include_sessions and/or include_records to true to include sessions + and/or records. + operationId: Scope3 + responses: + '200': + description: A successful response. + schema: + type: object + properties: + scope: + description: scope is the wrapped scope result. + type: object + properties: + scope: + type: object + properties: + scope_id: + type: string + format: byte + title: >- + Unique ID for this scope. Implements sdk.Address + interface for use where addresses are required in + Cosmos + specification_id: + type: string + format: byte + title: >- + the scope specification that contains the + specifications for data elements allowed within this + scope + owners: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + description: >- + These parties represent top level owners of the + records within. These parties must sign any requests + that modify + + the data within the scope. These addresses are in + union with parties listed on the sessions. + data_access: + type: array + items: + type: string + description: >- + Addresses in this list are authorized to receive + off-chain data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with + this scope. Standard blockchain accounts and marker + accounts + + are supported for this value. This attribute may only + be changed by the entity indicated once it is set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions + must be present in this scope's owners field. + + This also enables use of optional=true scope owners + and session parties. + description: >- + Scope defines a root reference for a collection of records + owned by one or more parties. + scope_id_info: + description: >- + scope_id_info contains information about the id/address of + the scope. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + scope_spec_id_info: + description: >- + scope_spec_id_info contains information about the + id/address of the scope specification. + type: object + properties: + scope_spec_id: + type: string + format: byte + description: >- + scope_spec_id is the raw bytes of the scope + specification address. + scope_spec_id_prefix: + type: string + format: byte + description: >- + scope_spec_id_prefix is the prefix portion of the + scope_spec_id. + scope_spec_id_scope_spec_uuid: + type: string + format: byte + description: >- + scope_spec_id_scope_spec_uuid is the scope_spec_uuid + portion of the scope_spec_id. + scope_spec_addr: + type: string + description: >- + scope_spec_addr is the bech32 string version of the + scope_spec_id. + scope_spec_uuid: + type: string + description: >- + scope_spec_uuid is the uuid hex string of the + scope_spec_id_scope_spec_uuid. + sessions: + type: array + items: + type: object + properties: + session: + type: object + properties: + session_id: + type: string + format: byte + specification_id: + type: string + format: byte + description: >- + unique id of the contract specification that was + used to create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: + PARTY_TYPE_UNSPECIFIED is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + title: >- + parties is the set of identities that signed this + contract + name: + type: string + title: >- + name to associate with this session execution + context, typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, + and related info. + type: object + properties: + created_date: + type: string + format: date-time + title: the date/time when this entry was created + created_by: + type: string + title: >- + the address of the account that created this + record + updated_date: + type: string + format: date-time + title: the date/time when this entry was last updated + updated_by: + type: string + title: >- + the address of the account that modified this + record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented + with each update + message: + type: string + title: >- + an optional message associated with the + creation/update event + title: >- + AuditFields capture information about the last + account to make modifications and when they were + made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the + id/address of the session. + type: object + properties: + session_id: + type: string + format: byte + description: session_id is the raw bytes of the session address. + session_id_prefix: + type: string + format: byte + description: >- + session_id_prefix is the prefix portion of the + session_id. + session_id_scope_uuid: + type: string + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of + the session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion + of the session_id. + session_addr: + type: string + description: >- + session_addr is the bech32 string version of the + session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the + id/address of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + SessionWrapper contains a single session and some extra + identifiers for it. + description: >- + sessions is any number of wrapped sessions in this scope (if + requested). + records: + type: array + items: + type: object + properties: + record: + type: object + properties: + name: + type: string + title: >- + name/identifier for this record. Value must be + unique within the scope. Also known as a Fact name + session_id: + type: string + format: byte + title: >- + id of the session context that was used to create + this record (use with filtered kvprefix iterator) + process: + title: >- + process contain information used to uniquely + identify an execution on or off chain that generated + this record + type: object + properties: + address: + type: string + title: >- + the address of a smart contract used for this + process + hash: + type: string + title: the hash of an off-chain process used + name: + type: string + title: >- + a name associated with the process (type_name, + classname or smart contract common name) + method: + type: string + title: >- + method is a name or reference to a specific + operation (method) within a class/contract that + was invoked + inputs: + type: array + items: + type: object + properties: + name: + type: string + description: >- + Name value included to link back to the + definition spec. + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For + Established Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + type_name: + type: string + title: from proposed fact structure to unmarshal + status: + title: >- + Indicates if this input was a recorded fact on + chain or just a given hashed input + type: string + enum: + - RECORD_INPUT_STATUS_UNSPECIFIED + - RECORD_INPUT_STATUS_PROPOSED + - RECORD_INPUT_STATUS_RECORD + default: RECORD_INPUT_STATUS_UNSPECIFIED + description: >- + - RECORD_INPUT_STATUS_UNSPECIFIED: + RECORD_INPUT_STATUS_UNSPECIFIED indicates an + invalid/unknown input type + - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed + - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain + title: Tracks the inputs used to establish this record + title: >- + inputs used with the process to achieve the output + on this record + outputs: + type: array + items: + type: object + properties: + hash: + type: string + title: >- + Hash of the data output that was + output/generated for this record + status: + title: >- + Status of the process execution associated + with this output indicating success,failure, + or pending + type: string + enum: + - RESULT_STATUS_UNSPECIFIED + - RESULT_STATUS_PASS + - RESULT_STATUS_SKIP + - RESULT_STATUS_FAIL + default: RESULT_STATUS_UNSPECIFIED + description: >- + - RESULT_STATUS_UNSPECIFIED: + RESULT_STATUS_UNSPECIFIED indicates an unset + condition + - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful + - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution + - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. + title: >- + RecordOutput encapsulates the output of a process + recorded on chain + title: >- + output(s) is the results of executing the process on + the given process indicated in this record + specification_id: + type: string + format: byte + description: >- + specification_id is the id of the record + specification that was used to create this record. + title: >- + A record (of fact) is attached to a session or each + consideration output from a contract + description: record is the on-chain record message. + record_id_info: + description: >- + record_id_info contains information about the id/address + of the record. + type: object + properties: + record_id: + type: string + format: byte + description: record_id is the raw bytes of the record address. + record_id_prefix: + type: string + format: byte + description: >- + record_id_prefix is the prefix portion of the + record_id. + record_id_scope_uuid: + type: string + format: byte + description: >- + record_id_scope_uuid is the scope_uuid portion of + the record_id. + record_id_hashed_name: + type: string + format: byte + description: >- + record_id_hashed_name is the hashed name portion of + the record_id. + record_addr: + type: string + description: >- + record_addr is the bech32 string version of the + record_id. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the record_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the + id/address of the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record + specification address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name + portion of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordWrapper contains a single record and some extra + identifiers for it. + description: >- + records is any number of wrapped records in this scope (if + requested). + request: + description: request is a copy of the request that generated these results. + type: object + properties: + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope + address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_addr: + type: string + description: >- + session_addr is a bech32 session address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + include_sessions: + type: boolean + description: >- + include_sessions is a flag for whether to include the + sessions of the scope in the response. + include_records: + type: boolean + description: >- + include_records is a flag for whether to include the + records of the scope in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: ScopeResponse is the response type for the Query/Scope RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: record_addr + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + in: path + required: true + type: string + - name: scope_id + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + in: query + required: false + type: string + - name: session_addr + description: |- + session_addr is a bech32 session address, e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + in: query + required: false + type: string + - name: include_sessions + description: >- + include_sessions is a flag for whether to include the sessions of + the scope in the response. + in: query + required: false + type: boolean + - name: include_records + description: >- + include_records is a flag for whether to include the records of the + scope in the response. + in: query + required: false + type: boolean + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/record/{record_addr}/session: + get: + summary: Sessions searches for sessions. + description: >- + The scope_id can either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can + either be a uuid or session address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The + record_addr, if provided, must be a + + bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + + + * If only a scope_id is provided, all sessions in that scope are + returned. + + * If only a session_id is provided, it must be an address, and that + single session is returned. + + * If the session_id is a uuid, then either a scope_id or record_addr + must also be provided, and that single session + + is returned. + + * If only a record_addr is provided, the session containing that record + will be returned. + + * If a record_name is provided then either a scope_id, session_id as an + address, or record_addr must also be + + provided, and the session containing that record will be returned. + + + A bad request is returned if: + + * The session_id is a uuid and is provided without a scope_id or + record_addr. + + * A record_name is provided without any way to identify the scope (e.g. + a scope_id, a session_id as an address, or + + a record_addr). + + * Two or more of scope_id, session_id as an address, and record_addr are + provided and don't all refer to the same + + scope. + + * A record_addr (or scope_id and record_name) is provided with a + session_id and that session does not contain such + + a record. + + * A record_addr and record_name are both provided, but reference + different records. + + + By default, the scope and records are not included. + + Set include_scope and/or include_records to true to include the scope + and/or records. + operationId: Sessions4 + responses: + '200': + description: A successful response. + schema: + type: object + properties: + scope: + description: >- + scope is the wrapped scope that holds these sessions (if + requested). + type: object + properties: + scope: + type: object + properties: + scope_id: + type: string + format: byte + title: >- + Unique ID for this scope. Implements sdk.Address + interface for use where addresses are required in + Cosmos + specification_id: + type: string + format: byte + title: >- + the scope specification that contains the + specifications for data elements allowed within this + scope + owners: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + description: >- + These parties represent top level owners of the + records within. These parties must sign any requests + that modify + + the data within the scope. These addresses are in + union with parties listed on the sessions. + data_access: + type: array + items: + type: string + description: >- + Addresses in this list are authorized to receive + off-chain data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with + this scope. Standard blockchain accounts and marker + accounts + + are supported for this value. This attribute may only + be changed by the entity indicated once it is set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions + must be present in this scope's owners field. + + This also enables use of optional=true scope owners + and session parties. + description: >- + Scope defines a root reference for a collection of records + owned by one or more parties. + scope_id_info: + description: >- + scope_id_info contains information about the id/address of + the scope. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + scope_spec_id_info: + description: >- + scope_spec_id_info contains information about the + id/address of the scope specification. + type: object + properties: + scope_spec_id: + type: string + format: byte + description: >- + scope_spec_id is the raw bytes of the scope + specification address. + scope_spec_id_prefix: + type: string + format: byte + description: >- + scope_spec_id_prefix is the prefix portion of the + scope_spec_id. + scope_spec_id_scope_spec_uuid: + type: string + format: byte + description: >- + scope_spec_id_scope_spec_uuid is the scope_spec_uuid + portion of the scope_spec_id. + scope_spec_addr: + type: string + description: >- + scope_spec_addr is the bech32 string version of the + scope_spec_id. + scope_spec_uuid: + type: string + description: >- + scope_spec_uuid is the uuid hex string of the + scope_spec_id_scope_spec_uuid. + sessions: + type: array + items: + type: object + properties: + session: + type: object + properties: + session_id: + type: string + format: byte + specification_id: + type: string + format: byte + description: >- + unique id of the contract specification that was + used to create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: + PARTY_TYPE_UNSPECIFIED is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + title: >- + parties is the set of identities that signed this + contract + name: + type: string + title: >- + name to associate with this session execution + context, typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, + and related info. + type: object + properties: + created_date: + type: string + format: date-time + title: the date/time when this entry was created + created_by: + type: string + title: >- + the address of the account that created this + record + updated_date: + type: string + format: date-time + title: the date/time when this entry was last updated + updated_by: + type: string + title: >- + the address of the account that modified this + record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented + with each update + message: + type: string + title: >- + an optional message associated with the + creation/update event + title: >- + AuditFields capture information about the last + account to make modifications and when they were + made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the + id/address of the session. + type: object + properties: + session_id: + type: string + format: byte + description: session_id is the raw bytes of the session address. + session_id_prefix: + type: string + format: byte + description: >- + session_id_prefix is the prefix portion of the + session_id. + session_id_scope_uuid: + type: string + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of + the session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion + of the session_id. + session_addr: + type: string + description: >- + session_addr is the bech32 string version of the + session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the + id/address of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + SessionWrapper contains a single session and some extra + identifiers for it. + description: sessions is any number of wrapped session results. + records: + type: array + items: + type: object + properties: + record: + type: object + properties: + name: + type: string + title: >- + name/identifier for this record. Value must be + unique within the scope. Also known as a Fact name + session_id: + type: string + format: byte + title: >- + id of the session context that was used to create + this record (use with filtered kvprefix iterator) + process: + title: >- + process contain information used to uniquely + identify an execution on or off chain that generated + this record + type: object + properties: + address: + type: string + title: >- + the address of a smart contract used for this + process + hash: + type: string + title: the hash of an off-chain process used + name: + type: string + title: >- + a name associated with the process (type_name, + classname or smart contract common name) + method: + type: string + title: >- + method is a name or reference to a specific + operation (method) within a class/contract that + was invoked + inputs: + type: array + items: + type: object + properties: + name: + type: string + description: >- + Name value included to link back to the + definition spec. + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For + Established Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + type_name: + type: string + title: from proposed fact structure to unmarshal + status: + title: >- + Indicates if this input was a recorded fact on + chain or just a given hashed input + type: string + enum: + - RECORD_INPUT_STATUS_UNSPECIFIED + - RECORD_INPUT_STATUS_PROPOSED + - RECORD_INPUT_STATUS_RECORD + default: RECORD_INPUT_STATUS_UNSPECIFIED + description: >- + - RECORD_INPUT_STATUS_UNSPECIFIED: + RECORD_INPUT_STATUS_UNSPECIFIED indicates an + invalid/unknown input type + - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed + - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain + title: Tracks the inputs used to establish this record + title: >- + inputs used with the process to achieve the output + on this record + outputs: + type: array + items: + type: object + properties: + hash: + type: string + title: >- + Hash of the data output that was + output/generated for this record + status: + title: >- + Status of the process execution associated + with this output indicating success,failure, + or pending + type: string + enum: + - RESULT_STATUS_UNSPECIFIED + - RESULT_STATUS_PASS + - RESULT_STATUS_SKIP + - RESULT_STATUS_FAIL + default: RESULT_STATUS_UNSPECIFIED + description: >- + - RESULT_STATUS_UNSPECIFIED: + RESULT_STATUS_UNSPECIFIED indicates an unset + condition + - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful + - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution + - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. + title: >- + RecordOutput encapsulates the output of a process + recorded on chain + title: >- + output(s) is the results of executing the process on + the given process indicated in this record + specification_id: type: string format: byte description: >- - session_id_prefix is the prefix portion of the - session_id. - session_id_scope_uuid: + specification_id is the id of the record + specification that was used to create this record. + title: >- + A record (of fact) is attached to a session or each + consideration output from a contract + description: record is the on-chain record message. + record_id_info: + description: >- + record_id_info contains information about the id/address + of the record. + type: object + properties: + record_id: + type: string + format: byte + description: record_id is the raw bytes of the record address. + record_id_prefix: type: string format: byte description: >- - session_id_scope_uuid is the scope_uuid portion of - the session_id. - session_id_session_uuid: + record_id_prefix is the prefix portion of the + record_id. + record_id_scope_uuid: type: string format: byte description: >- - session_id_session_uuid is the session_uuid portion - of the session_id. - session_addr: + record_id_scope_uuid is the scope_uuid portion of + the record_id. + record_id_hashed_name: type: string + format: byte description: >- - session_addr is the bech32 string version of the - session_id. - session_uuid: + record_id_hashed_name is the hashed name portion of + the record_id. + record_addr: type: string description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. + record_addr is the bech32 string version of the + record_id. scope_id_info: description: >- scope_id_info is information about the scope id - referenced in the session_id. + referenced in the record_id. type: object properties: scope_id: @@ -42026,44 +53158,237 @@ paths: description: >- scope_uuid is the uuid hex string of the scope_id_scope_uuid. - contract_spec_id_info: + record_spec_id_info: description: >- - contract_spec_id_info contains information about the - id/address of the contract specification. + record_spec_id_info contains information about the + id/address of the record specification. type: object properties: - contract_spec_id: + record_spec_id: type: string format: byte description: >- - contract_spec_id is the raw bytes of the contract + record_spec_id is the raw bytes of the record specification address. - contract_spec_id_prefix: + record_spec_id_prefix: type: string format: byte description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: type: string format: byte description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: type: string + format: byte description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: + record_spec_id_hashed_name is the hashed name + portion of the record_spec_id. + record_spec_addr: type: string description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. description: >- - SessionWrapper contains a single session and some extra + RecordWrapper contains a single record and some extra identifiers for it. - description: sessions is any number of wrapped session results. + description: >- + records is any number of wrapped records contained in these + sessions (if requested). + request: + description: request is a copy of the request that generated these results. + type: object + properties: + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope + address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_id: + type: string + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session + address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + record_name: + type: string + description: >- + record_name is the name of the record to find the session + for in the provided scope. + include_scope: + type: boolean + description: >- + include_scope is a flag for whether to include the scope + containing these sessions in the response. + include_records: + type: boolean + description: >- + include_records is a flag for whether to include the + records of these sessions in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + SessionsResponse is the response type for the Query/Sessions RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: record_addr + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + in: path + required: true + type: string + - name: scope_id + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + in: query + required: false + type: string + - name: session_id + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, + e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + in: query + required: false + type: string + - name: record_name + description: >- + record_name is the name of the record to find the session for in the + provided scope. + in: query + required: false + type: string + - name: include_scope + description: >- + include_scope is a flag for whether to include the scope containing + these sessions in the response. + in: query + required: false + type: boolean + - name: include_records + description: >- + include_records is a flag for whether to include the records of + these sessions in the response. + in: query + required: false + type: boolean + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/records/all: + get: + summary: RecordsAll retrieves all records. + operationId: RecordsAll + responses: + '200': + description: A successful response. + schema: + type: object + properties: records: type: array items: @@ -42304,84 +53629,457 @@ paths: contract spec id referenced in the record_spec_id. type: object properties: - contract_spec_id: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordWrapper contains a single record and some extra + identifiers for it. + description: records are the wrapped records. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to + begin + + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key + is unavailable. + + It is less efficient than using key. Only one of + offset or key should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the + result set should include + + a count of the total number of items available for + pagination in UIs. + + count_total is only respected when offset is used. It + is ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: >- + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + RecordsAllResponse is the response type for the Query/RecordsAll + RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/recordspec/{specification_id}: + get: + summary: RecordSpecification returns a record specification for the given input. + operationId: RecordSpecification + responses: + '200': + description: A successful response. + schema: + type: object + properties: + record_specification: + type: object + properties: + specification: + type: object + properties: + specification_id: + type: string + format: byte + title: unique identifier for this specification on chain + name: + type: string + title: >- + Name of Record that will be created when this + specification is used + inputs: + type: array + items: + type: object + properties: + name: type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: + title: name for this input + type_name: type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: + title: >- + a type_name (typically a proto name or + class_name) + record_id: type: string format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: + title: >- + the address of a record on chain (For + Established Records) + hash: type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordWrapper contains a single record and some extra - identifiers for it. + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + title: >- + InputSpecification defines a name, type_name, and + source reference (either on or off chain) to define + an input + + parameter + title: >- + A set of inputs that must be satisified to apply this + RecordSpecification and create a Record + type_name: + type: string + title: >- + A type name for data associated with this record + (typically a class or proto name) + result_type: + title: >- + Type of result for this record specification (must be + RECORD or RECORD_LIST) + type: string + enum: + - DEFINITION_TYPE_UNSPECIFIED + - DEFINITION_TYPE_PROPOSED + - DEFINITION_TYPE_RECORD + - DEFINITION_TYPE_RECORD_LIST + default: DEFINITION_TYPE_UNSPECIFIED + description: >- + - DEFINITION_TYPE_UNSPECIFIED: + DEFINITION_TYPE_UNSPECIFIED indicates an + unknown/invalid value + - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) + - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain + - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having + the same name + responsible_parties: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is + an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: Type of party responsible for this record + title: >- + RecordSpecification defines the specification for a Record + including allowed/required inputs/outputs + description: >- + specification is the on-chain record specification + message. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the + id/address of the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record + specification address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name portion + of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. description: >- - records is any number of wrapped records contained in these - sessions (if requested). + RecordSpecificationWrapper contains a single record + specification and some extra identifiers for it. request: description: request is a copy of the request that generated these results. type: object properties: - scope_id: + specification_id: type: string description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope - address, e.g. + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: - type: string - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g. + contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also + It can also be a record specification address, e.g. - provided. - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - record_name: + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. + name: type: string description: >- - record_name is the name of the record to find the session - for in the provided scope. - include_scope: - type: boolean - description: >- - include_scope is a flag for whether to include the scope - containing these sessions in the response. - include_records: - type: boolean - description: >- - include_records is a flag for whether to include the - records of these sessions in the response. + name is the name of the record to look up. + + It is required if the specification_id is a uuid or + contract specification address. + + It is ignored if the specification_id is a record + specification address. exclude_id_info: type: boolean description: >- @@ -42393,8 +54091,8 @@ paths: include_request is a flag for whether to include this request in your result. description: >- - SessionsResponse is the response type for the Query/Sessions RPC - method. + RecordSpecificationResponse is the response type for the + Query/RecordSpecification RPC method. default: description: An unexpected error response. schema: @@ -42418,56 +54116,32 @@ paths: type: string format: byte parameters: - - name: record_addr + - name: specification_id description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + specification_id can either be a uuid, e.g. + def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract + specification + + address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. + + It can also be a record specification address, e.g. + + recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. in: path required: true type: string - - name: scope_id - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - in: query - required: false - type: string - - name: session_id + - name: name description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, - e.g. + name is the name of the record to look up. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also + It is required if the specification_id is a uuid or contract + specification address. - provided. - in: query - required: false - type: string - - name: record_name - description: >- - record_name is the name of the record to find the session for in the - provided scope. + It is ignored if the specification_id is a record specification + address. in: query required: false type: string - - name: include_scope - description: >- - include_scope is a flag for whether to include the scope containing - these sessions in the response. - in: query - required: false - type: boolean - - name: include_records - description: >- - include_records is a flag for whether to include the records of - these sessions in the response. - in: query - required: false - type: boolean - name: exclude_id_info description: >- exclude_id_info is a flag for whether to exclude the id info from @@ -42484,61 +54158,33 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/records/all: + /provenance/metadata/v1/recordspecs/all: get: - summary: RecordsAll retrieves all records. - operationId: RecordsAll + summary: RecordSpecificationsAll retrieves all record specifications. + operationId: RecordSpecificationsAll responses: '200': description: A successful response. schema: type: object properties: - records: + record_specifications: type: array items: type: object properties: - record: + specification: type: object properties: - name: - type: string - title: >- - name/identifier for this record. Value must be - unique within the scope. Also known as a Fact name - session_id: + specification_id: type: string format: byte + title: unique identifier for this specification on chain + name: + type: string title: >- - id of the session context that was used to create - this record (use with filtered kvprefix iterator) - process: - title: >- - process contain information used to uniquely - identify an execution on or off chain that generated - this record - type: object - properties: - address: - type: string - title: >- - the address of a smart contract used for this - process - hash: - type: string - title: the hash of an off-chain process used - name: - type: string - title: >- - a name associated with the process (type_name, - classname or smart contract common name) - method: - type: string - title: >- - method is a name or reference to a specific - operation (method) within a class/contract that - was invoked + Name of Record that will be created when this + specification is used inputs: type: array items: @@ -42546,9 +54192,12 @@ paths: properties: name: type: string - description: >- - Name value included to link back to the - definition spec. + title: name for this input + type_name: + type: string + title: >- + a type_name (typically a proto name or + class_name) record_id: type: string format: byte @@ -42560,139 +54209,79 @@ paths: title: >- the hash of an off-chain piece of information (For Proposed Records) - type_name: - type: string - title: from proposed fact structure to unmarshal - status: - title: >- - Indicates if this input was a recorded fact on - chain or just a given hashed input - type: string - enum: - - RECORD_INPUT_STATUS_UNSPECIFIED - - RECORD_INPUT_STATUS_PROPOSED - - RECORD_INPUT_STATUS_RECORD - default: RECORD_INPUT_STATUS_UNSPECIFIED - description: >- - - RECORD_INPUT_STATUS_UNSPECIFIED: - RECORD_INPUT_STATUS_UNSPECIFIED indicates an - invalid/unknown input type - - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed - - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain - title: Tracks the inputs used to establish this record + title: >- + InputSpecification defines a name, type_name, and + source reference (either on or off chain) to + define an input + + parameter title: >- - inputs used with the process to achieve the output - on this record - outputs: + A set of inputs that must be satisified to apply + this RecordSpecification and create a Record + type_name: + type: string + title: >- + A type name for data associated with this record + (typically a class or proto name) + result_type: + title: >- + Type of result for this record specification (must + be RECORD or RECORD_LIST) + type: string + enum: + - DEFINITION_TYPE_UNSPECIFIED + - DEFINITION_TYPE_PROPOSED + - DEFINITION_TYPE_RECORD + - DEFINITION_TYPE_RECORD_LIST + default: DEFINITION_TYPE_UNSPECIFIED + description: >- + - DEFINITION_TYPE_UNSPECIFIED: + DEFINITION_TYPE_UNSPECIFIED indicates an + unknown/invalid value + - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) + - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain + - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having + the same name + responsible_parties: type: array items: - type: object - properties: - hash: - type: string - title: >- - Hash of the data output that was - output/generated for this record - status: - title: >- - Status of the process execution associated - with this output indicating success,failure, - or pending - type: string - enum: - - RESULT_STATUS_UNSPECIFIED - - RESULT_STATUS_PASS - - RESULT_STATUS_SKIP - - RESULT_STATUS_FAIL - default: RESULT_STATUS_UNSPECIFIED - description: >- - - RESULT_STATUS_UNSPECIFIED: - RESULT_STATUS_UNSPECIFIED indicates an unset - condition - - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful - - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution - - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain title: >- - RecordOutput encapsulates the output of a process - recorded on chain - title: >- - output(s) is the results of executing the process on - the given process indicated in this record - specification_id: - type: string - format: byte - description: >- - specification_id is the id of the record - specification that was used to create this record. + PartyType are the different roles parties on a + contract may use + title: Type of party responsible for this record title: >- - A record (of fact) is attached to a session or each - consideration output from a contract - description: record is the on-chain record message. - record_id_info: + RecordSpecification defines the specification for a + Record including allowed/required inputs/outputs description: >- - record_id_info contains information about the id/address - of the record. - type: object - properties: - record_id: - type: string - format: byte - description: record_id is the raw bytes of the record address. - record_id_prefix: - type: string - format: byte - description: >- - record_id_prefix is the prefix portion of the - record_id. - record_id_scope_uuid: - type: string - format: byte - description: >- - record_id_scope_uuid is the scope_uuid portion of - the record_id. - record_id_hashed_name: - type: string - format: byte - description: >- - record_id_hashed_name is the hashed name portion of - the record_id. - record_addr: - type: string - description: >- - record_addr is the bech32 string version of the - record_id. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. + specification is the on-chain record specification + message. record_spec_id_info: description: >- record_spec_id_info contains information about the @@ -42764,9 +54353,9 @@ paths: contract_spec_uuid is the uuid hex string of the contract_spec_id_contract_spec_uuid. description: >- - RecordWrapper contains a single record and some extra - identifiers for it. - description: records are the wrapped records. + RecordSpecificationWrapper contains a single record + specification and some extra identifiers for it. + description: record_specifications are the wrapped record specifications. request: description: request is a copy of the request that generated these results. type: object @@ -42866,8 +54455,8 @@ paths: was set, its value is undefined otherwise description: >- - RecordsAllResponse is the response type for the Query/RecordsAll - RPC method. + RecordSpecificationsAllResponse is the response type for the + Query/RecordSpecificationsAll RPC method. default: description: An unexpected error response. schema: @@ -42963,333 +54552,499 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/recordspec/{specification_id}: + /provenance/metadata/v1/scope/{scope_id}: get: - summary: RecordSpecification returns a record specification for the given input. - operationId: RecordSpecification + summary: Scope searches for a scope. + description: >- + The scope id, if provided, must either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, + + e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if + provided, must be a bech32 session address, + + e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The + record_addr, if provided, must be a + + bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + + + * If only a scope_id is provided, that scope is returned. + + * If only a session_addr is provided, the scope containing that session + is returned. + + * If only a record_addr is provided, the scope containing that record is + returned. + + * If more than one of scope_id, session_addr, and record_addr are + provided, and they don't refer to the same scope, + + a bad request is returned. + + + Providing a session addr or record addr does not limit the sessions and + records returned (if requested). + + Those parameters are only used to find the scope. + + + By default, sessions and records are not included. + + Set include_sessions and/or include_records to true to include sessions + and/or records. + operationId: Scope responses: '200': description: A successful response. schema: type: object properties: - record_specification: + scope: + description: scope is the wrapped scope result. type: object properties: - specification: + scope: type: object properties: - specification_id: + scope_id: type: string format: byte - title: unique identifier for this specification on chain - name: + title: >- + Unique ID for this scope. Implements sdk.Address + interface for use where addresses are required in + Cosmos + specification_id: type: string + format: byte title: >- - Name of Record that will be created when this - specification is used - inputs: + the scope specification that contains the + specifications for data elements allowed within this + scope + owners: type: array items: type: object properties: - name: - type: string - title: name for this input - type_name: - type: string - title: >- - a type_name (typically a proto name or - class_name) - record_id: + address: type: string - format: byte + title: address of the account (on chain) + role: title: >- - the address of a record on chain (For - Established Records) - hash: + a role for this account within the context of + the processes used type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional title: >- - InputSpecification defines a name, type_name, and - source reference (either on or off chain) to define - an input - - parameter - title: >- - A set of inputs that must be satisified to apply this - RecordSpecification and create a Record - type_name: - type: string - title: >- - A type name for data associated with this record - (typically a class or proto name) - result_type: - title: >- - Type of result for this record specification (must be - RECORD or RECORD_LIST) - type: string - enum: - - DEFINITION_TYPE_UNSPECIFIED - - DEFINITION_TYPE_PROPOSED - - DEFINITION_TYPE_RECORD - - DEFINITION_TYPE_RECORD_LIST - default: DEFINITION_TYPE_UNSPECIFIED + A Party is an address with/in a given role + associated with a contract description: >- - - DEFINITION_TYPE_UNSPECIFIED: - DEFINITION_TYPE_UNSPECIFIED indicates an - unknown/invalid value - - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) - - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain - - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having - the same name - responsible_parties: + These parties represent top level owners of the + records within. These parties must sign any requests + that modify + + the data within the scope. These addresses are in + union with parties listed on the sessions. + data_access: type: array items: type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is - an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: Type of party responsible for this record - title: >- - RecordSpecification defines the specification for a Record - including allowed/required inputs/outputs + description: >- + Addresses in this list are authorized to receive + off-chain data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with + this scope. Standard blockchain accounts and marker + accounts + + are supported for this value. This attribute may only + be changed by the entity indicated once it is set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions + must be present in this scope's owners field. + + This also enables use of optional=true scope owners + and session parties. description: >- - specification is the on-chain record specification - message. - record_spec_id_info: + Scope defines a root reference for a collection of records + owned by one or more parties. + scope_id_info: description: >- - record_spec_id_info contains information about the - id/address of the record specification. + scope_id_info contains information about the id/address of + the scope. type: object properties: - record_spec_id: + scope_id: type: string format: byte - description: >- - record_spec_id is the raw bytes of the record - specification address. - record_spec_id_prefix: + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: type: string format: byte - description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: type: string format: byte description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: type: string - format: byte description: >- - record_spec_id_hashed_name is the hashed name portion - of the record_spec_id. - record_spec_addr: + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: type: string - description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordSpecificationWrapper contains a single record - specification and some extra identifiers for it. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - specification_id: - type: string - description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification - - address, e.g. - contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. - - It can also be a record specification address, e.g. - - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - name: - type: string - description: >- - name is the name of the record to look up. - - It is required if the specification_id is a uuid or - contract specification address. - - It is ignored if the specification_id is a record - specification address. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - description: >- - RecordSpecificationResponse is the response type for the - Query/RecordSpecification RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - parameters: - - name: specification_id - description: >- - specification_id can either be a uuid, e.g. - def6bc0a-c9dd-4874-948f-5206e6060a84 or a bech32 contract - specification - - address, e.g. contractspec1q000d0q2e8w5say53afqdesxp2zqzkr4fn. - - It can also be a record specification address, e.g. - - recspec1qh00d0q2e8w5say53afqdesxp2zw42dq2jdvmdazuwzcaddhh8gmuqhez44. - in: path - required: true - type: string - - name: name - description: >- - name is the name of the record to look up. - - It is required if the specification_id is a uuid or contract - specification address. - - It is ignored if the specification_id is a record specification - address. - in: query - required: false - type: string - - name: exclude_id_info - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. - in: query - required: false - type: boolean - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/recordspecs/all: - get: - summary: RecordSpecificationsAll retrieves all record specifications. - operationId: RecordSpecificationsAll - responses: - '200': - description: A successful response. - schema: - type: object - properties: - record_specifications: + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + scope_spec_id_info: + description: >- + scope_spec_id_info contains information about the + id/address of the scope specification. + type: object + properties: + scope_spec_id: + type: string + format: byte + description: >- + scope_spec_id is the raw bytes of the scope + specification address. + scope_spec_id_prefix: + type: string + format: byte + description: >- + scope_spec_id_prefix is the prefix portion of the + scope_spec_id. + scope_spec_id_scope_spec_uuid: + type: string + format: byte + description: >- + scope_spec_id_scope_spec_uuid is the scope_spec_uuid + portion of the scope_spec_id. + scope_spec_addr: + type: string + description: >- + scope_spec_addr is the bech32 string version of the + scope_spec_id. + scope_spec_uuid: + type: string + description: >- + scope_spec_uuid is the uuid hex string of the + scope_spec_id_scope_spec_uuid. + sessions: type: array items: type: object properties: - specification: + session: type: object properties: + session_id: + type: string + format: byte specification_id: type: string format: byte - title: unique identifier for this specification on chain + description: >- + unique id of the contract specification that was + used to create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: + PARTY_TYPE_UNSPECIFIED is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + title: >- + parties is the set of identities that signed this + contract name: type: string title: >- - Name of Record that will be created when this - specification is used + name to associate with this session execution + context, typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, + and related info. + type: object + properties: + created_date: + type: string + format: date-time + title: the date/time when this entry was created + created_by: + type: string + title: >- + the address of the account that created this + record + updated_date: + type: string + format: date-time + title: the date/time when this entry was last updated + updated_by: + type: string + title: >- + the address of the account that modified this + record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented + with each update + message: + type: string + title: >- + an optional message associated with the + creation/update event + title: >- + AuditFields capture information about the last + account to make modifications and when they were + made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the + id/address of the session. + type: object + properties: + session_id: + type: string + format: byte + description: session_id is the raw bytes of the session address. + session_id_prefix: + type: string + format: byte + description: >- + session_id_prefix is the prefix portion of the + session_id. + session_id_scope_uuid: + type: string + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of + the session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion + of the session_id. + session_addr: + type: string + description: >- + session_addr is the bech32 string version of the + session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the + id/address of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + SessionWrapper contains a single session and some extra + identifiers for it. + description: >- + sessions is any number of wrapped sessions in this scope (if + requested). + records: + type: array + items: + type: object + properties: + record: + type: object + properties: + name: + type: string + title: >- + name/identifier for this record. Value must be + unique within the scope. Also known as a Fact name + session_id: + type: string + format: byte + title: >- + id of the session context that was used to create + this record (use with filtered kvprefix iterator) + process: + title: >- + process contain information used to uniquely + identify an execution on or off chain that generated + this record + type: object + properties: + address: + type: string + title: >- + the address of a smart contract used for this + process + hash: + type: string + title: the hash of an off-chain process used + name: + type: string + title: >- + a name associated with the process (type_name, + classname or smart contract common name) + method: + type: string + title: >- + method is a name or reference to a specific + operation (method) within a class/contract that + was invoked inputs: type: array items: @@ -43297,12 +55052,9 @@ paths: properties: name: type: string - title: name for this input - type_name: - type: string - title: >- - a type_name (typically a proto name or - class_name) + description: >- + Name value included to link back to the + definition spec. record_id: type: string format: byte @@ -43314,79 +55066,139 @@ paths: title: >- the hash of an off-chain piece of information (For Proposed Records) - title: >- - InputSpecification defines a name, type_name, and - source reference (either on or off chain) to - define an input - - parameter - title: >- - A set of inputs that must be satisified to apply - this RecordSpecification and create a Record - type_name: - type: string - title: >- - A type name for data associated with this record - (typically a class or proto name) - result_type: + type_name: + type: string + title: from proposed fact structure to unmarshal + status: + title: >- + Indicates if this input was a recorded fact on + chain or just a given hashed input + type: string + enum: + - RECORD_INPUT_STATUS_UNSPECIFIED + - RECORD_INPUT_STATUS_PROPOSED + - RECORD_INPUT_STATUS_RECORD + default: RECORD_INPUT_STATUS_UNSPECIFIED + description: >- + - RECORD_INPUT_STATUS_UNSPECIFIED: + RECORD_INPUT_STATUS_UNSPECIFIED indicates an + invalid/unknown input type + - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed + - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain + title: Tracks the inputs used to establish this record title: >- - Type of result for this record specification (must - be RECORD or RECORD_LIST) - type: string - enum: - - DEFINITION_TYPE_UNSPECIFIED - - DEFINITION_TYPE_PROPOSED - - DEFINITION_TYPE_RECORD - - DEFINITION_TYPE_RECORD_LIST - default: DEFINITION_TYPE_UNSPECIFIED - description: >- - - DEFINITION_TYPE_UNSPECIFIED: - DEFINITION_TYPE_UNSPECIFIED indicates an - unknown/invalid value - - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) - - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain - - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having - the same name - responsible_parties: + inputs used with the process to achieve the output + on this record + outputs: type: array items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + type: object + properties: + hash: + type: string + title: >- + Hash of the data output that was + output/generated for this record + status: + title: >- + Status of the process execution associated + with this output indicating success,failure, + or pending + type: string + enum: + - RESULT_STATUS_UNSPECIFIED + - RESULT_STATUS_PASS + - RESULT_STATUS_SKIP + - RESULT_STATUS_FAIL + default: RESULT_STATUS_UNSPECIFIED + description: >- + - RESULT_STATUS_UNSPECIFIED: + RESULT_STATUS_UNSPECIFIED indicates an unset + condition + - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful + - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution + - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. title: >- - PartyType are the different roles parties on a - contract may use - title: Type of party responsible for this record + RecordOutput encapsulates the output of a process + recorded on chain + title: >- + output(s) is the results of executing the process on + the given process indicated in this record + specification_id: + type: string + format: byte + description: >- + specification_id is the id of the record + specification that was used to create this record. title: >- - RecordSpecification defines the specification for a - Record including allowed/required inputs/outputs + A record (of fact) is attached to a session or each + consideration output from a contract + description: record is the on-chain record message. + record_id_info: description: >- - specification is the on-chain record specification - message. + record_id_info contains information about the id/address + of the record. + type: object + properties: + record_id: + type: string + format: byte + description: record_id is the raw bytes of the record address. + record_id_prefix: + type: string + format: byte + description: >- + record_id_prefix is the prefix portion of the + record_id. + record_id_scope_uuid: + type: string + format: byte + description: >- + record_id_scope_uuid is the scope_uuid portion of + the record_id. + record_id_hashed_name: + type: string + format: byte + description: >- + record_id_hashed_name is the hashed name portion of + the record_id. + record_addr: + type: string + description: >- + record_addr is the bech32 string version of the + record_id. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the record_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. record_spec_id_info: description: >- record_spec_id_info contains information about the @@ -43458,13 +55270,44 @@ paths: contract_spec_uuid is the uuid hex string of the contract_spec_id_contract_spec_uuid. description: >- - RecordSpecificationWrapper contains a single record - specification and some extra identifiers for it. - description: record_specifications are the wrapped record specifications. + RecordWrapper contains a single record and some extra + identifiers for it. + description: >- + records is any number of wrapped records in this scope (if + requested). request: description: request is a copy of the request that generated these results. type: object properties: + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope + address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_addr: + type: string + description: >- + session_addr is a bech32 session address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + include_sessions: + type: boolean + description: >- + include_sessions is a flag for whether to include the + sessions of the scope in the response. + include_records: + type: boolean + description: >- + include_records is a flag for whether to include the + records of the scope in the response. exclude_id_info: type: boolean description: >- @@ -43475,93 +55318,7 @@ paths: description: >- include_request is a flag for whether to include this request in your result. - pagination: - description: >- - pagination defines optional pagination parameters for the - request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to - begin - - querying the next page most efficiently. Only one of - offset or key - - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key - is unavailable. - - It is less efficient than using key. Only one of - offset or key should - - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in - the result page. - - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the - result set should include - - a count of the total number of items available for - pagination in UIs. - - count_total is only respected when offset is used. It - is ignored when key - - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned - in the descending order. - - - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient - - pagination. Ex: - pagination: - description: >- - pagination provides the pagination information of this - response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - RecordSpecificationsAllResponse is the response type for the - Query/RecordSpecificationsAll RPC method. + description: ScopeResponse is the response type for the Query/Scope RPC method. default: description: An unexpected error response. schema: @@ -43585,121 +55342,110 @@ paths: type: string format: byte parameters: - - name: exclude_id_info + - name: scope_id description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + in: path + required: true + type: string + - name: session_addr + description: |- + session_addr is a bech32 session address, e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. in: query required: false - type: boolean - - name: include_request + type: string + - name: record_addr description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - - name: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. in: query required: false type: string - format: byte - - name: pagination.offset + - name: include_sessions description: >- - offset is a numeric offset that can be used when key is unavailable. - - It is less efficient than using key. Only one of offset or key - should - - be set. + include_sessions is a flag for whether to include the sessions of + the scope in the response. in: query required: false - type: string - format: uint64 - - name: pagination.limit + type: boolean + - name: include_records description: >- - limit is the total number of results to be returned in the result - page. - - If left empty it will default to a value to be set by each app. + include_records is a flag for whether to include the records of the + scope in the response. in: query required: false - type: string - format: uint64 - - name: pagination.count_total + type: boolean + - name: exclude_id_info description: >- - count_total is set to true to indicate that the result set should - include - - a count of the total number of items available for pagination in - UIs. - - count_total is only respected when offset is used. It is ignored - when key - - is set. + exclude_id_info is a flag for whether to exclude the id info from + the response. in: query required: false type: boolean - - name: pagination.reverse + - name: include_request description: >- - reverse is set to true if results are to be returned in the - descending order. - - - Since: cosmos-sdk 0.43 + include_request is a flag for whether to include this request in + your result. in: query required: false type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}: + /provenance/metadata/v1/scope/{scope_id}/record/{name}: get: - summary: Scope searches for a scope. + summary: Records searches for records. description: >- - The scope id, if provided, must either be scope uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, + The record_addr, if provided, must be a bech32 record address, e.g. - e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if - provided, must be a bech32 session address, + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The + scope-id can either be scope uuid, e.g. - e.g. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - record_addr, if provided, must be a + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + the session_id can either be a uuid or session address, e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The + name is the name of the record you're - * If only a scope_id is provided, that scope is returned. + interested in. - * If only a session_addr is provided, the scope containing that session - is returned. - * If only a record_addr is provided, the scope containing that record is + * If only a record_addr is provided, that single record will be returned. - * If more than one of scope_id, session_addr, and record_addr are - provided, and they don't refer to the same scope, + * If only a scope_id is provided, all records in that scope will be + returned. - a bad request is returned. + * If only a session_id (or scope_id/session_id), all records in that + session will be returned. + * If a name is provided with a scope_id and/or session_id, that single + record will be returned. - Providing a session addr or record addr does not limit the sessions and - records returned (if requested). - Those parameters are only used to find the scope. + A bad request is returned if: + * The session_id is a uuid and no scope_id is provided. - By default, sessions and records are not included. + * There are two or more of record_addr, session_id, and scope_id, and + they don't all refer to the same scope. - Set include_sessions and/or include_records to true to include sessions - and/or records. - operationId: Scope + * A name is provided, but not a scope_id and/or a session_id. + + * A name and record_addr are provided and the name doesn't match the + record_addr. + + + By default, the scope and sessions are not included. + + Set include_scope and/or include_sessions to true to include the scope + and/or sessions. + operationId: Records3 responses: '200': description: A successful response. @@ -43707,7 +55453,9 @@ paths: type: object properties: scope: - description: scope is the wrapped scope result. + description: >- + scope is the wrapped scope that holds these records (if + requested). type: object properties: scope: @@ -44103,8 +55851,8 @@ paths: SessionWrapper contains a single session and some extra identifiers for it. description: >- - sessions is any number of wrapped sessions in this scope (if - requested). + sessions is any number of wrapped sessions that hold these + records (if requested). records: type: array items: @@ -44377,13 +56125,16 @@ paths: description: >- RecordWrapper contains a single record and some extra identifiers for it. - description: >- - records is any number of wrapped records in this scope (if - requested). + description: records is any number of wrapped record results. request: description: request is a copy of the request that generated these results. type: object properties: + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. scope_id: type: string description: >- @@ -44392,27 +56143,30 @@ paths: address, e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_addr: + session_id: type: string description: >- - session_addr is a bech32 session address, e.g. + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session + address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - record_addr: + This can only be a uuid if a scope_id is also + + provided. + name: type: string + title: name is the name of the record to look for + include_scope: + type: boolean description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + include_scope is a flag for whether to include the the + scope containing these records in the response. include_sessions: type: boolean description: >- include_sessions is a flag for whether to include the - sessions of the scope in the response. - include_records: - type: boolean - description: >- - include_records is a flag for whether to include the - records of the scope in the response. + sessions containing these records in the response. exclude_id_info: type: boolean description: >- @@ -44423,7 +56177,9 @@ paths: description: >- include_request is a flag for whether to include this request in your result. - description: ScopeResponse is the response type for the Query/Scope RPC method. + description: >- + RecordsResponse is the response type for the Query/Records RPC + method. default: description: An unexpected error response. schema: @@ -44456,12 +56212,10 @@ paths: in: path required: true type: string - - name: session_addr - description: |- - session_addr is a bech32 session address, e.g. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - in: query - required: false + - name: name + description: name is the name of the record to look for + in: path + required: true type: string - name: record_addr description: >- @@ -44470,17 +56224,30 @@ paths: in: query required: false type: string - - name: include_sessions + - name: session_id description: >- - include_sessions is a flag for whether to include the sessions of - the scope in the response. + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, + e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + in: query + required: false + type: string + - name: include_scope + description: >- + include_scope is a flag for whether to include the the scope + containing these records in the response. in: query required: false type: boolean - - name: include_records + - name: include_sessions description: >- - include_records is a flag for whether to include the records of the - scope in the response. + include_sessions is a flag for whether to include the sessions + containing these records in the response. in: query required: false type: boolean @@ -44500,57 +56267,72 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}/record/{name}: + /provenance/metadata/v1/scope/{scope_id}/record/{record_name}/session: get: - summary: Records searches for records. + summary: Sessions searches for sessions. description: >- - The record_addr, if provided, must be a bech32 record address, e.g. - - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The - scope-id can either be scope uuid, e.g. - + The scope_id can either be scope uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - the session_id can either be a uuid or session address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can + either be a uuid or session address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - name is the name of the record you're + record_addr, if provided, must be a - interested in. + bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - * If only a record_addr is provided, that single record will be + * If only a scope_id is provided, all sessions in that scope are returned. - * If only a scope_id is provided, all records in that scope will be - returned. + * If only a session_id is provided, it must be an address, and that + single session is returned. - * If only a session_id (or scope_id/session_id), all records in that - session will be returned. + * If the session_id is a uuid, then either a scope_id or record_addr + must also be provided, and that single session - * If a name is provided with a scope_id and/or session_id, that single - record will be returned. + is returned. + * If only a record_addr is provided, the session containing that record + will be returned. - A bad request is returned if: + * If a record_name is provided then either a scope_id, session_id as an + address, or record_addr must also be - * The session_id is a uuid and no scope_id is provided. + provided, and the session containing that record will be returned. - * There are two or more of record_addr, session_id, and scope_id, and - they don't all refer to the same scope. - * A name is provided, but not a scope_id and/or a session_id. + A bad request is returned if: - * A name and record_addr are provided and the name doesn't match the + * The session_id is a uuid and is provided without a scope_id or record_addr. + * A record_name is provided without any way to identify the scope (e.g. + a scope_id, a session_id as an address, or - By default, the scope and sessions are not included. + a record_addr). - Set include_scope and/or include_sessions to true to include the scope - and/or sessions. - operationId: Records3 + * Two or more of scope_id, session_id as an address, and record_addr are + provided and don't all refer to the same + + scope. + + * A record_addr (or scope_id and record_name) is provided with a + session_id and that session does not contain such + + a record. + + * A record_addr and record_name are both provided, but reference + different records. + + + By default, the scope and records are not included. + + Set include_scope and/or include_records to true to include the scope + and/or records. + operationId: Sessions5 responses: '200': description: A successful response. @@ -44559,7 +56341,7 @@ paths: properties: scope: description: >- - scope is the wrapped scope that holds these records (if + scope is the wrapped scope that holds these sessions (if requested). type: object properties: @@ -44955,9 +56737,7 @@ paths: description: >- SessionWrapper contains a single session and some extra identifiers for it. - description: >- - sessions is any number of wrapped sessions that hold these - records (if requested). + description: sessions is any number of wrapped session results. records: type: array items: @@ -45230,16 +57010,13 @@ paths: description: >- RecordWrapper contains a single record and some extra identifiers for it. - description: records is any number of wrapped record results. + description: >- + records is any number of wrapped records contained in these + sessions (if requested). request: description: request is a copy of the request that generated these results. type: object properties: - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. scope_id: type: string description: >- @@ -45259,19 +57036,26 @@ paths: This can only be a uuid if a scope_id is also provided. - name: + record_addr: type: string - title: name is the name of the record to look for + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + record_name: + type: string + description: >- + record_name is the name of the record to find the session + for in the provided scope. include_scope: type: boolean description: >- - include_scope is a flag for whether to include the the - scope containing these records in the response. - include_sessions: + include_scope is a flag for whether to include the scope + containing these sessions in the response. + include_records: type: boolean description: >- - include_sessions is a flag for whether to include the - sessions containing these records in the response. + include_records is a flag for whether to include the + records of these sessions in the response. exclude_id_info: type: boolean description: >- @@ -45283,7 +57067,7 @@ paths: include_request is a flag for whether to include this request in your result. description: >- - RecordsResponse is the response type for the Query/Records RPC + SessionsResponse is the response type for the Query/Sessions RPC method. default: description: An unexpected error response. @@ -45317,18 +57101,13 @@ paths: in: path required: true type: string - - name: name - description: name is the name of the record to look for + - name: record_name + description: >- + record_name is the name of the record to find the session for in the + provided scope. in: path required: true type: string - - name: record_addr - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - in: query - required: false - type: string - name: session_id description: >- session_id can either be a uuid, e.g. @@ -45342,17 +57121,24 @@ paths: in: query required: false type: string + - name: record_addr + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + in: query + required: false + type: string - name: include_scope description: >- - include_scope is a flag for whether to include the the scope - containing these records in the response. + include_scope is a flag for whether to include the scope containing + these sessions in the response. in: query required: false type: boolean - - name: include_sessions + - name: include_records description: >- - include_sessions is a flag for whether to include the sessions - containing these records in the response. + include_records is a flag for whether to include the records of + these sessions in the response. in: query required: false type: boolean @@ -45372,72 +57158,57 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}/record/{record_name}/session: + /provenance/metadata/v1/scope/{scope_id}/records: get: - summary: Sessions searches for sessions. + summary: Records searches for records. description: >- - The scope_id can either be scope uuid, e.g. + The record_addr, if provided, must be a bech32 record address, e.g. + + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The + scope-id can either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can - either be a uuid or session address, e.g. + the session_id can either be a uuid or session address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - record_addr, if provided, must be a + name is the name of the record you're - bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + interested in. - * If only a scope_id is provided, all sessions in that scope are + * If only a record_addr is provided, that single record will be returned. - * If only a session_id is provided, it must be an address, and that - single session is returned. - - * If the session_id is a uuid, then either a scope_id or record_addr - must also be provided, and that single session - - is returned. - - * If only a record_addr is provided, the session containing that record - will be returned. + * If only a scope_id is provided, all records in that scope will be + returned. - * If a record_name is provided then either a scope_id, session_id as an - address, or record_addr must also be + * If only a session_id (or scope_id/session_id), all records in that + session will be returned. - provided, and the session containing that record will be returned. + * If a name is provided with a scope_id and/or session_id, that single + record will be returned. A bad request is returned if: - * The session_id is a uuid and is provided without a scope_id or - record_addr. - - * A record_name is provided without any way to identify the scope (e.g. - a scope_id, a session_id as an address, or - - a record_addr). - - * Two or more of scope_id, session_id as an address, and record_addr are - provided and don't all refer to the same - - scope. + * The session_id is a uuid and no scope_id is provided. - * A record_addr (or scope_id and record_name) is provided with a - session_id and that session does not contain such + * There are two or more of record_addr, session_id, and scope_id, and + they don't all refer to the same scope. - a record. + * A name is provided, but not a scope_id and/or a session_id. - * A record_addr and record_name are both provided, but reference - different records. + * A name and record_addr are provided and the name doesn't match the + record_addr. - By default, the scope and records are not included. + By default, the scope and sessions are not included. - Set include_scope and/or include_records to true to include the scope - and/or records. - operationId: Sessions5 + Set include_scope and/or include_sessions to true to include the scope + and/or sessions. + operationId: Records2 responses: '200': description: A successful response. @@ -45446,7 +57217,7 @@ paths: properties: scope: description: >- - scope is the wrapped scope that holds these sessions (if + scope is the wrapped scope that holds these records (if requested). type: object properties: @@ -45842,7 +57613,9 @@ paths: description: >- SessionWrapper contains a single session and some extra identifiers for it. - description: sessions is any number of wrapped session results. + description: >- + sessions is any number of wrapped sessions that hold these + records (if requested). records: type: array items: @@ -46115,13 +57888,16 @@ paths: description: >- RecordWrapper contains a single record and some extra identifiers for it. - description: >- - records is any number of wrapped records contained in these - sessions (if requested). + description: records is any number of wrapped record results. request: description: request is a copy of the request that generated these results. type: object properties: + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. scope_id: type: string description: >- @@ -46141,26 +57917,19 @@ paths: This can only be a uuid if a scope_id is also provided. - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - record_name: + name: type: string - description: >- - record_name is the name of the record to find the session - for in the provided scope. + title: name is the name of the record to look for include_scope: type: boolean description: >- - include_scope is a flag for whether to include the scope - containing these sessions in the response. - include_records: + include_scope is a flag for whether to include the the + scope containing these records in the response. + include_sessions: type: boolean description: >- - include_records is a flag for whether to include the - records of these sessions in the response. + include_sessions is a flag for whether to include the + sessions containing these records in the response. exclude_id_info: type: boolean description: >- @@ -46172,7 +57941,7 @@ paths: include_request is a flag for whether to include this request in your result. description: >- - SessionsResponse is the response type for the Query/Sessions RPC + RecordsResponse is the response type for the Query/Records RPC method. default: description: An unexpected error response. @@ -46206,12 +57975,12 @@ paths: in: path required: true type: string - - name: record_name + - name: record_addr description: >- - record_name is the name of the record to find the session for in the - provided scope. - in: path - required: true + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + in: query + required: false type: string - name: session_id description: >- @@ -46226,24 +57995,22 @@ paths: in: query required: false type: string - - name: record_addr - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + - name: name + description: name is the name of the record to look for. in: query required: false type: string - name: include_scope description: >- - include_scope is a flag for whether to include the scope containing - these sessions in the response. + include_scope is a flag for whether to include the the scope + containing these records in the response. in: query required: false type: boolean - - name: include_records + - name: include_sessions description: >- - include_records is a flag for whether to include the records of - these sessions in the response. + include_sessions is a flag for whether to include the sessions + containing these records in the response. in: query required: false type: boolean @@ -46263,57 +58030,72 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}/records: + /provenance/metadata/v1/scope/{scope_id}/session/{session_id}: get: - summary: Records searches for records. + summary: Sessions searches for sessions. description: >- - The record_addr, if provided, must be a bech32 record address, e.g. - - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The - scope-id can either be scope uuid, e.g. - + The scope_id can either be scope uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - the session_id can either be a uuid or session address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can + either be a uuid or session address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - name is the name of the record you're + record_addr, if provided, must be a - interested in. + bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - * If only a record_addr is provided, that single record will be + * If only a scope_id is provided, all sessions in that scope are returned. - * If only a scope_id is provided, all records in that scope will be - returned. + * If only a session_id is provided, it must be an address, and that + single session is returned. - * If only a session_id (or scope_id/session_id), all records in that - session will be returned. + * If the session_id is a uuid, then either a scope_id or record_addr + must also be provided, and that single session - * If a name is provided with a scope_id and/or session_id, that single - record will be returned. + is returned. + * If only a record_addr is provided, the session containing that record + will be returned. - A bad request is returned if: + * If a record_name is provided then either a scope_id, session_id as an + address, or record_addr must also be - * The session_id is a uuid and no scope_id is provided. + provided, and the session containing that record will be returned. - * There are two or more of record_addr, session_id, and scope_id, and - they don't all refer to the same scope. - * A name is provided, but not a scope_id and/or a session_id. + A bad request is returned if: - * A name and record_addr are provided and the name doesn't match the + * The session_id is a uuid and is provided without a scope_id or record_addr. + * A record_name is provided without any way to identify the scope (e.g. + a scope_id, a session_id as an address, or - By default, the scope and sessions are not included. + a record_addr). - Set include_scope and/or include_sessions to true to include the scope - and/or sessions. - operationId: Records2 + * Two or more of scope_id, session_id as an address, and record_addr are + provided and don't all refer to the same + + scope. + + * A record_addr (or scope_id and record_name) is provided with a + session_id and that session does not contain such + + a record. + + * A record_addr and record_name are both provided, but reference + different records. + + + By default, the scope and records are not included. + + Set include_scope and/or include_records to true to include the scope + and/or records. + operationId: Sessions3 responses: '200': description: A successful response. @@ -46322,7 +58104,7 @@ paths: properties: scope: description: >- - scope is the wrapped scope that holds these records (if + scope is the wrapped scope that holds these sessions (if requested). type: object properties: @@ -46718,9 +58500,7 @@ paths: description: >- SessionWrapper contains a single session and some extra identifiers for it. - description: >- - sessions is any number of wrapped sessions that hold these - records (if requested). + description: sessions is any number of wrapped session results. records: type: array items: @@ -46993,16 +58773,13 @@ paths: description: >- RecordWrapper contains a single record and some extra identifiers for it. - description: records is any number of wrapped record results. + description: >- + records is any number of wrapped records contained in these + sessions (if requested). request: description: request is a copy of the request that generated these results. type: object properties: - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. scope_id: type: string description: >- @@ -47022,19 +58799,26 @@ paths: This can only be a uuid if a scope_id is also provided. - name: + record_addr: type: string - title: name is the name of the record to look for + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + record_name: + type: string + description: >- + record_name is the name of the record to find the session + for in the provided scope. include_scope: type: boolean description: >- - include_scope is a flag for whether to include the the - scope containing these records in the response. - include_sessions: + include_scope is a flag for whether to include the scope + containing these sessions in the response. + include_records: type: boolean description: >- - include_sessions is a flag for whether to include the - sessions containing these records in the response. + include_records is a flag for whether to include the + records of these sessions in the response. exclude_id_info: type: boolean description: >- @@ -47046,7 +58830,7 @@ paths: include_request is a flag for whether to include this request in your result. description: >- - RecordsResponse is the response type for the Query/Records RPC + SessionsResponse is the response type for the Query/Sessions RPC method. default: description: An unexpected error response. @@ -47080,13 +58864,6 @@ paths: in: path required: true type: string - - name: record_addr - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - in: query - required: false - type: string - name: session_id description: >- session_id can either be a uuid, e.g. @@ -47097,25 +58874,34 @@ paths: This can only be a uuid if a scope_id is also provided. + in: path + required: true + type: string + - name: record_addr + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. in: query required: false type: string - - name: name - description: name is the name of the record to look for. + - name: record_name + description: >- + record_name is the name of the record to find the session for in the + provided scope. in: query required: false type: string - name: include_scope description: >- - include_scope is a flag for whether to include the the scope - containing these records in the response. + include_scope is a flag for whether to include the scope containing + these sessions in the response. in: query required: false type: boolean - - name: include_sessions + - name: include_records description: >- - include_sessions is a flag for whether to include the sessions - containing these records in the response. + include_records is a flag for whether to include the records of + these sessions in the response. in: query required: false type: boolean @@ -47135,72 +58921,57 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}/session/{session_id}: + /provenance/metadata/v1/scope/{scope_id}/session/{session_id}/record/{name}: get: - summary: Sessions searches for sessions. + summary: Records searches for records. description: >- - The scope_id can either be scope uuid, e.g. + The record_addr, if provided, must be a bech32 record address, e.g. + + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The + scope-id can either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can - either be a uuid or session address, e.g. + the session_id can either be a uuid or session address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - record_addr, if provided, must be a + name is the name of the record you're - bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + interested in. - * If only a scope_id is provided, all sessions in that scope are + * If only a record_addr is provided, that single record will be returned. - * If only a session_id is provided, it must be an address, and that - single session is returned. - - * If the session_id is a uuid, then either a scope_id or record_addr - must also be provided, and that single session - - is returned. - - * If only a record_addr is provided, the session containing that record - will be returned. + * If only a scope_id is provided, all records in that scope will be + returned. - * If a record_name is provided then either a scope_id, session_id as an - address, or record_addr must also be + * If only a session_id (or scope_id/session_id), all records in that + session will be returned. - provided, and the session containing that record will be returned. + * If a name is provided with a scope_id and/or session_id, that single + record will be returned. A bad request is returned if: - * The session_id is a uuid and is provided without a scope_id or - record_addr. - - * A record_name is provided without any way to identify the scope (e.g. - a scope_id, a session_id as an address, or - - a record_addr). - - * Two or more of scope_id, session_id as an address, and record_addr are - provided and don't all refer to the same - - scope. + * The session_id is a uuid and no scope_id is provided. - * A record_addr (or scope_id and record_name) is provided with a - session_id and that session does not contain such + * There are two or more of record_addr, session_id, and scope_id, and + they don't all refer to the same scope. - a record. + * A name is provided, but not a scope_id and/or a session_id. - * A record_addr and record_name are both provided, but reference - different records. + * A name and record_addr are provided and the name doesn't match the + record_addr. - By default, the scope and records are not included. + By default, the scope and sessions are not included. - Set include_scope and/or include_records to true to include the scope - and/or records. - operationId: Sessions3 + Set include_scope and/or include_sessions to true to include the scope + and/or sessions. + operationId: Records5 responses: '200': description: A successful response. @@ -47209,7 +58980,7 @@ paths: properties: scope: description: >- - scope is the wrapped scope that holds these sessions (if + scope is the wrapped scope that holds these records (if requested). type: object properties: @@ -47605,7 +59376,9 @@ paths: description: >- SessionWrapper contains a single session and some extra identifiers for it. - description: sessions is any number of wrapped session results. + description: >- + sessions is any number of wrapped sessions that hold these + records (if requested). records: type: array items: @@ -47878,13 +59651,16 @@ paths: description: >- RecordWrapper contains a single record and some extra identifiers for it. - description: >- - records is any number of wrapped records contained in these - sessions (if requested). + description: records is any number of wrapped record results. request: description: request is a copy of the request that generated these results. type: object properties: + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. scope_id: type: string description: >- @@ -47904,26 +59680,19 @@ paths: This can only be a uuid if a scope_id is also provided. - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - record_name: + name: type: string - description: >- - record_name is the name of the record to find the session - for in the provided scope. + title: name is the name of the record to look for include_scope: type: boolean description: >- - include_scope is a flag for whether to include the scope - containing these sessions in the response. - include_records: + include_scope is a flag for whether to include the the + scope containing these records in the response. + include_sessions: type: boolean description: >- - include_records is a flag for whether to include the - records of these sessions in the response. + include_sessions is a flag for whether to include the + sessions containing these records in the response. exclude_id_info: type: boolean description: >- @@ -47935,7 +59704,7 @@ paths: include_request is a flag for whether to include this request in your result. description: >- - SessionsResponse is the response type for the Query/Sessions RPC + RecordsResponse is the response type for the Query/Records RPC method. default: description: An unexpected error response. @@ -47982,6 +59751,11 @@ paths: in: path required: true type: string + - name: name + description: name is the name of the record to look for + in: path + required: true + type: string - name: record_addr description: >- record_addr is a bech32 record address, e.g. @@ -47989,24 +59763,17 @@ paths: in: query required: false type: string - - name: record_name - description: >- - record_name is the name of the record to find the session for in the - provided scope. - in: query - required: false - type: string - name: include_scope description: >- - include_scope is a flag for whether to include the scope containing - these sessions in the response. + include_scope is a flag for whether to include the the scope + containing these records in the response. in: query required: false type: boolean - - name: include_records + - name: include_sessions description: >- - include_records is a flag for whether to include the records of - these sessions in the response. + include_sessions is a flag for whether to include the sessions + containing these records in the response. in: query required: false type: boolean @@ -48026,7 +59793,7 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}/session/{session_id}/record/{name}: + /provenance/metadata/v1/scope/{scope_id}/session/{session_id}/records: get: summary: Records searches for records. description: >- @@ -48076,7 +59843,7 @@ paths: Set include_scope and/or include_sessions to true to include the scope and/or sessions. - operationId: Records5 + operationId: Records4 responses: '200': description: A successful response. @@ -48856,11 +60623,6 @@ paths: in: path required: true type: string - - name: name - description: name is the name of the record to look for - in: path - required: true - type: string - name: record_addr description: >- record_addr is a bech32 record address, e.g. @@ -48868,6 +60630,11 @@ paths: in: query required: false type: string + - name: name + description: name is the name of the record to look for. + in: query + required: false + type: string - name: include_scope description: >- include_scope is a flag for whether to include the the scope @@ -48898,57 +60665,72 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}/session/{session_id}/records: + /provenance/metadata/v1/scope/{scope_id}/sessions: get: - summary: Records searches for records. + summary: Sessions searches for sessions. description: >- - The record_addr, if provided, must be a bech32 record address, e.g. - - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The - scope-id can either be scope uuid, e.g. - + The scope_id can either be scope uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - the session_id can either be a uuid or session address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can + either be a uuid or session address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - name is the name of the record you're + record_addr, if provided, must be a - interested in. + bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - * If only a record_addr is provided, that single record will be + * If only a scope_id is provided, all sessions in that scope are returned. - * If only a scope_id is provided, all records in that scope will be - returned. + * If only a session_id is provided, it must be an address, and that + single session is returned. - * If only a session_id (or scope_id/session_id), all records in that - session will be returned. + * If the session_id is a uuid, then either a scope_id or record_addr + must also be provided, and that single session - * If a name is provided with a scope_id and/or session_id, that single - record will be returned. + is returned. + * If only a record_addr is provided, the session containing that record + will be returned. - A bad request is returned if: + * If a record_name is provided then either a scope_id, session_id as an + address, or record_addr must also be - * The session_id is a uuid and no scope_id is provided. + provided, and the session containing that record will be returned. - * There are two or more of record_addr, session_id, and scope_id, and - they don't all refer to the same scope. - * A name is provided, but not a scope_id and/or a session_id. + A bad request is returned if: - * A name and record_addr are provided and the name doesn't match the + * The session_id is a uuid and is provided without a scope_id or record_addr. + * A record_name is provided without any way to identify the scope (e.g. + a scope_id, a session_id as an address, or - By default, the scope and sessions are not included. + a record_addr). - Set include_scope and/or include_sessions to true to include the scope - and/or sessions. - operationId: Records4 + * Two or more of scope_id, session_id as an address, and record_addr are + provided and don't all refer to the same + + scope. + + * A record_addr (or scope_id and record_name) is provided with a + session_id and that session does not contain such + + a record. + + * A record_addr and record_name are both provided, but reference + different records. + + + By default, the scope and records are not included. + + Set include_scope and/or include_records to true to include the scope + and/or records. + operationId: Sessions2 responses: '200': description: A successful response. @@ -48957,7 +60739,7 @@ paths: properties: scope: description: >- - scope is the wrapped scope that holds these records (if + scope is the wrapped scope that holds these sessions (if requested). type: object properties: @@ -49353,9 +61135,7 @@ paths: description: >- SessionWrapper contains a single session and some extra identifiers for it. - description: >- - sessions is any number of wrapped sessions that hold these - records (if requested). + description: sessions is any number of wrapped session results. records: type: array items: @@ -49510,166 +61290,456 @@ paths: type: string format: byte description: >- - record_id_scope_uuid is the scope_uuid portion of - the record_id. - record_id_hashed_name: + record_id_scope_uuid is the scope_uuid portion of + the record_id. + record_id_hashed_name: + type: string + format: byte + description: >- + record_id_hashed_name is the hashed name portion of + the record_id. + record_addr: + type: string + description: >- + record_addr is the bech32 string version of the + record_id. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the record_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the + id/address of the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record + specification address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name + portion of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordWrapper contains a single record and some extra + identifiers for it. + description: >- + records is any number of wrapped records contained in these + sessions (if requested). + request: + description: request is a copy of the request that generated these results. + type: object + properties: + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope + address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_id: + type: string + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session + address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + record_name: + type: string + description: >- + record_name is the name of the record to find the session + for in the provided scope. + include_scope: + type: boolean + description: >- + include_scope is a flag for whether to include the scope + containing these sessions in the response. + include_records: + type: boolean + description: >- + include_records is a flag for whether to include the + records of these sessions in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + SessionsResponse is the response type for the Query/Sessions RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: scope_id + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + in: path + required: true + type: string + - name: session_id + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, + e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + in: query + required: false + type: string + - name: record_addr + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + in: query + required: false + type: string + - name: record_name + description: >- + record_name is the name of the record to find the session for in the + provided scope. + in: query + required: false + type: string + - name: include_scope + description: >- + include_scope is a flag for whether to include the scope containing + these sessions in the response. + in: query + required: false + type: boolean + - name: include_records + description: >- + include_records is a flag for whether to include the records of + these sessions in the response. + in: query + required: false + type: boolean + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/scopes/all: + get: + summary: ScopesAll retrieves all scopes. + operationId: ScopesAll + responses: + '200': + description: A successful response. + schema: + type: object + properties: + scopes: + type: array + items: + type: object + properties: + scope: + type: object + properties: + scope_id: + type: string + format: byte + title: >- + Unique ID for this scope. Implements sdk.Address + interface for use where addresses are required in + Cosmos + specification_id: + type: string + format: byte + title: >- + the scope specification that contains the + specifications for data elements allowed within this + scope + owners: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: + PARTY_TYPE_UNSPECIFIED is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + description: >- + These parties represent top level owners of the + records within. These parties must sign any + requests that modify + + the data within the scope. These addresses are in + union with parties listed on the sessions. + data_access: + type: array + items: + type: string + description: >- + Addresses in this list are authorized to receive + off-chain data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with + this scope. Standard blockchain accounts and marker + accounts + + are supported for this value. This attribute may + only be changed by the entity indicated once it is + set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions + must be present in this scope's owners field. + + This also enables use of optional=true scope owners + and session parties. + description: >- + Scope defines a root reference for a collection of + records owned by one or more parties. + scope_id_info: + description: >- + scope_id_info contains information about the id/address + of the scope. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: type: string format: byte description: >- - record_id_hashed_name is the hashed name portion of - the record_id. - record_addr: + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: type: string description: >- - record_addr is the bech32 string version of the - record_id. - scope_id_info: + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string description: >- - scope_id_info is information about the scope id - referenced in the record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - record_spec_id_info: + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + scope_spec_id_info: description: >- - record_spec_id_info contains information about the - id/address of the record specification. + scope_spec_id_info contains information about the + id/address of the scope specification. type: object properties: - record_spec_id: + scope_spec_id: type: string format: byte description: >- - record_spec_id is the raw bytes of the record + scope_spec_id is the raw bytes of the scope specification address. - record_spec_id_prefix: + scope_spec_id_prefix: type: string format: byte description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: + scope_spec_id_prefix is the prefix portion of the + scope_spec_id. + scope_spec_id_scope_spec_uuid: type: string format: byte description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: + scope_spec_id_scope_spec_uuid is the scope_spec_uuid + portion of the scope_spec_id. + scope_spec_addr: type: string - format: byte description: >- - record_spec_id_hashed_name is the hashed name - portion of the record_spec_id. - record_spec_addr: + scope_spec_addr is the bech32 string version of the + scope_spec_id. + scope_spec_uuid: type: string description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordWrapper contains a single record and some extra - identifiers for it. - description: records is any number of wrapped record results. + scope_spec_uuid is the uuid hex string of the + scope_spec_id_scope_spec_uuid. + description: SessionWrapper contains a single scope and its uuid. + description: scopes are the wrapped scopes. request: description: request is a copy of the request that generated these results. type: object properties: - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - scope_id: - type: string - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope - address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: - type: string - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session - address, e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - - provided. - name: - type: string - title: name is the name of the record to look for - include_scope: - type: boolean - description: >- - include_scope is a flag for whether to include the the - scope containing these records in the response. - include_sessions: - type: boolean - description: >- - include_sessions is a flag for whether to include the - sessions containing these records in the response. exclude_id_info: type: boolean description: >- @@ -49680,8 +61750,92 @@ paths: description: >- include_request is a flag for whether to include this request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to + begin + + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key + is unavailable. + + It is less efficient than using key. Only one of + offset or key should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the + result set should include + + a count of the total number of items available for + pagination in UIs. + + count_total is only respected when offset is used. It + is ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: >- + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise description: >- - RecordsResponse is the response type for the Query/Records RPC + ScopesAllResponse is the response type for the Query/ScopesAll RPC method. default: description: An unexpected error response. @@ -49706,274 +61860,183 @@ paths: type: string format: byte parameters: - - name: scope_id - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - in: path - required: true - type: string - - name: session_id + - name: exclude_id_info description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, - e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - - provided. - in: path - required: true - type: string - - name: record_addr + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + include_request is a flag for whether to include this request in + your result. in: query required: false - type: string - - name: name - description: name is the name of the record to look for. + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. in: query required: false type: string - - name: include_scope + format: byte + - name: pagination.offset description: >- - include_scope is a flag for whether to include the the scope - containing these records in the response. + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. in: query required: false - type: boolean - - name: include_sessions + type: string + format: uint64 + - name: pagination.limit description: >- - include_sessions is a flag for whether to include the sessions - containing these records in the response. + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. in: query required: false - type: boolean - - name: exclude_id_info + type: string + format: uint64 + - name: pagination.count_total description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. in: query required: false type: boolean - - name: include_request + - name: pagination.reverse description: >- - include_request is a flag for whether to include this request in - your result. + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean tags: - Query - /provenance/metadata/v1/scope/{scope_id}/sessions: + /provenance/metadata/v1/scopespec/{specification_id}: get: - summary: Sessions searches for sessions. + summary: >- + ScopeSpecification returns a scope specification for the given + specification id. description: >- - The scope_id can either be scope uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can - either be a uuid or session address, e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - record_addr, if provided, must be a - - bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - - - * If only a scope_id is provided, all sessions in that scope are - returned. - - * If only a session_id is provided, it must be an address, and that - single session is returned. - - * If the session_id is a uuid, then either a scope_id or record_addr - must also be provided, and that single session - - is returned. - - * If only a record_addr is provided, the session containing that record - will be returned. - - * If a record_name is provided then either a scope_id, session_id as an - address, or record_addr must also be - - provided, and the session containing that record will be returned. - - - A bad request is returned if: - - * The session_id is a uuid and is provided without a scope_id or - record_addr. - - * A record_name is provided without any way to identify the scope (e.g. - a scope_id, a session_id as an address, or - - a record_addr). - - * Two or more of scope_id, session_id as an address, and record_addr are - provided and don't all refer to the same - - scope. - - * A record_addr (or scope_id and record_name) is provided with a - session_id and that session does not contain such - - a record. - - * A record_addr and record_name are both provided, but reference - different records. - - - By default, the scope and records are not included. + The specification_id can either be a uuid, e.g. + dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope - Set include_scope and/or include_records to true to include the scope - and/or records. - operationId: Sessions2 - responses: - '200': - description: A successful response. - schema: - type: object - properties: - scope: - description: >- - scope is the wrapped scope that holds these sessions (if - requested). - type: object - properties: - scope: - type: object - properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address - interface for use where addresses are required in - Cosmos - specification_id: - type: string - format: byte - title: >- - the scope specification that contains the - specifications for data elements allowed within this - scope - owners: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - description: >- - These parties represent top level owners of the - records within. These parties must sign any requests - that modify + specification address, e.g. + scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m. - the data within the scope. These addresses are in - union with parties listed on the sessions. - data_access: - type: array - items: - type: string - description: >- - Addresses in this list are authorized to receive - off-chain data associated with this scope. - value_owner_address: - type: string - description: >- - An address that controls the value associated with - this scope. Standard blockchain accounts and marker - accounts - are supported for this value. This attribute may only - be changed by the entity indicated once it is set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions - must be present in this scope's owners field. + By default, the contract and record specifications are not included. - This also enables use of optional=true scope owners - and session parties. - description: >- - Scope defines a root reference for a collection of records - owned by one or more parties. - scope_id_info: - description: >- - scope_id_info contains information about the id/address of - the scope. + Set include_contract_specs and/or include_record_specs to true to + include contract and/or record specifications. + operationId: ScopeSpecification + responses: + '200': + description: A successful response. + schema: + type: object + properties: + scope_specification: + description: scope_specification is the wrapped scope specification. + type: object + properties: + specification: type: object properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: + specification_id: type: string format: byte + title: unique identifier for this specification on chain + description: + description: General information about this scope specification. + type: object + properties: + name: + type: string + description: A Name for this thing. + description: + type: string + description: A description of this thing. + website_url: + type: string + description: URL to find even more info. + icon_url: + type: string + description: URL of an icon. + owner_addresses: + type: array + items: + type: string + description: Addresses of the owners of this scope specification. + parties_involved: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is + an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: >- + A list of parties that must be present on a scope (and + their associated roles) + contract_spec_ids: + type: array + items: + type: string + format: byte description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. + A list of contract specification ids allowed for a + scope based on this specification. + title: >- + ScopeSpecification defines the required parties, + resources, conditions, and consideration outputs for a + contract + description: specification is the on-chain scope specification message. scope_spec_id_info: description: >- scope_spec_id_info contains information about the @@ -50008,201 +62071,100 @@ paths: description: >- scope_spec_uuid is the uuid hex string of the scope_spec_id_scope_spec_uuid. - sessions: + contract_specs: type: array items: type: object properties: - session: + specification: type: object properties: - session_id: - type: string - format: byte specification_id: type: string format: byte - description: >- - unique id of the contract specification that was - used to create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: - PARTY_TYPE_UNSPECIFIED is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - title: >- - parties is the set of identities that signed this - contract - name: - type: string + title: unique identifier for this specification on chain + description: title: >- - name to associate with this session execution - context, typically classname - context: - type: string - format: byte - description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, - and related info. + Description information for this contract + specification type: object properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: + name: type: string - title: >- - the address of the account that created this - record - updated_date: + description: A Name for this thing. + description: type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: + description: A description of this thing. + website_url: type: string - title: >- - the address of the account that modified this - record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented - with each update - message: + description: URL to find even more info. + icon_url: type: string - title: >- - an optional message associated with the - creation/update event - title: >- - AuditFields capture information about the last - account to make modifications and when they were - made - description: >- - Session defines an execution context against a specific - specification instance. - - The context will have a specification and set of parties - involved. - - - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: - description: >- - session_id_info contains information about the - id/address of the session. - type: object - properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: >- - session_id_prefix is the prefix portion of the - session_id. - session_id_scope_uuid: - type: string - format: byte + description: URL of an icon. description: >- - session_id_scope_uuid is the scope_uuid portion of - the session_id. - session_id_session_uuid: + Description holds general information that is handy + to associate with a structure. + owner_addresses: + type: array + items: + type: string + title: Address of the account that owns this specificaiton + parties_involved: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: >- + a list of party roles that must be fullfilled when + signing a transaction for this contract + specification + resource_id: type: string format: byte - description: >- - session_id_session_uuid is the session_uuid portion - of the session_id. - session_addr: + title: >- + the address of a record on chain that represents + this contract + hash: type: string - description: >- - session_addr is the bech32 string version of the - session_id. - session_uuid: + title: the hash of contract binary (off-chain instance) + class_name: type: string - description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the session_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. + title: name of the class/type of this contract executable + title: >- + ContractSpecification defines the required parties, + resources, conditions, and consideration outputs for a + contract + description: >- + specification is the on-chain contract specification + message. contract_spec_id_info: description: >- contract_spec_id_info contains information about the @@ -50238,208 +62200,125 @@ paths: contract_spec_uuid is the uuid hex string of the contract_spec_id_contract_spec_uuid. description: >- - SessionWrapper contains a single session and some extra - identifiers for it. - description: sessions is any number of wrapped session results. - records: + ContractSpecificationWrapper contains a single contract + specification and some extra identifiers for it. + description: >- + contract_specs is any number of wrapped contract + specifications in this scope specification (if requested). + record_specs: type: array items: type: object properties: - record: - type: object - properties: - name: - type: string - title: >- - name/identifier for this record. Value must be - unique within the scope. Also known as a Fact name - session_id: - type: string - format: byte - title: >- - id of the session context that was used to create - this record (use with filtered kvprefix iterator) - process: - title: >- - process contain information used to uniquely - identify an execution on or off chain that generated - this record - type: object - properties: - address: - type: string - title: >- - the address of a smart contract used for this - process - hash: - type: string - title: the hash of an off-chain process used - name: - type: string - title: >- - a name associated with the process (type_name, - classname or smart contract common name) - method: - type: string - title: >- - method is a name or reference to a specific - operation (method) within a class/contract that - was invoked - inputs: - type: array - items: - type: object - properties: - name: - type: string - description: >- - Name value included to link back to the - definition spec. - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For - Established Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) - type_name: - type: string - title: from proposed fact structure to unmarshal - status: - title: >- - Indicates if this input was a recorded fact on - chain or just a given hashed input - type: string - enum: - - RECORD_INPUT_STATUS_UNSPECIFIED - - RECORD_INPUT_STATUS_PROPOSED - - RECORD_INPUT_STATUS_RECORD - default: RECORD_INPUT_STATUS_UNSPECIFIED - description: >- - - RECORD_INPUT_STATUS_UNSPECIFIED: - RECORD_INPUT_STATUS_UNSPECIFIED indicates an - invalid/unknown input type - - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed - - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain - title: Tracks the inputs used to establish this record - title: >- - inputs used with the process to achieve the output - on this record - outputs: - type: array - items: - type: object - properties: - hash: - type: string - title: >- - Hash of the data output that was - output/generated for this record - status: - title: >- - Status of the process execution associated - with this output indicating success,failure, - or pending - type: string - enum: - - RESULT_STATUS_UNSPECIFIED - - RESULT_STATUS_PASS - - RESULT_STATUS_SKIP - - RESULT_STATUS_FAIL - default: RESULT_STATUS_UNSPECIFIED - description: >- - - RESULT_STATUS_UNSPECIFIED: - RESULT_STATUS_UNSPECIFIED indicates an unset - condition - - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful - - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution - - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. - title: >- - RecordOutput encapsulates the output of a process - recorded on chain - title: >- - output(s) is the results of executing the process on - the given process indicated in this record - specification_id: - type: string - format: byte - description: >- - specification_id is the id of the record - specification that was used to create this record. - title: >- - A record (of fact) is attached to a session or each - consideration output from a contract - description: record is the on-chain record message. - record_id_info: - description: >- - record_id_info contains information about the id/address - of the record. + specification: type: object properties: - record_id: - type: string - format: byte - description: record_id is the raw bytes of the record address. - record_id_prefix: + specification_id: type: string format: byte - description: >- - record_id_prefix is the prefix portion of the - record_id. - record_id_scope_uuid: + title: unique identifier for this specification on chain + name: type: string - format: byte - description: >- - record_id_scope_uuid is the scope_uuid portion of - the record_id. - record_id_hashed_name: + title: >- + Name of Record that will be created when this + specification is used + inputs: + type: array + items: + type: object + properties: + name: + type: string + title: name for this input + type_name: + type: string + title: >- + a type_name (typically a proto name or + class_name) + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For + Established Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information + (For Proposed Records) + title: >- + InputSpecification defines a name, type_name, and + source reference (either on or off chain) to + define an input + + parameter + title: >- + A set of inputs that must be satisified to apply + this RecordSpecification and create a Record + type_name: type: string - format: byte - description: >- - record_id_hashed_name is the hashed name portion of - the record_id. - record_addr: + title: >- + A type name for data associated with this record + (typically a class or proto name) + result_type: + title: >- + Type of result for this record specification (must + be RECORD or RECORD_LIST) type: string + enum: + - DEFINITION_TYPE_UNSPECIFIED + - DEFINITION_TYPE_PROPOSED + - DEFINITION_TYPE_RECORD + - DEFINITION_TYPE_RECORD_LIST + default: DEFINITION_TYPE_UNSPECIFIED description: >- - record_addr is the bech32 string version of the - record_id. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. + - DEFINITION_TYPE_UNSPECIFIED: + DEFINITION_TYPE_UNSPECIFIED indicates an + unknown/invalid value + - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) + - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain + - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having + the same name + responsible_parties: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + title: >- + PartyType are the different roles parties on a + contract may use + title: Type of party responsible for this record + title: >- + RecordSpecification defines the specification for a + Record including allowed/required inputs/outputs + description: >- + specification is the on-chain record specification + message. record_spec_id_info: description: >- record_spec_id_info contains information about the @@ -50511,54 +62390,38 @@ paths: contract_spec_uuid is the uuid hex string of the contract_spec_id_contract_spec_uuid. description: >- - RecordWrapper contains a single record and some extra - identifiers for it. + RecordSpecificationWrapper contains a single record + specification and some extra identifiers for it. description: >- - records is any number of wrapped records contained in these - sessions (if requested). + record_specs is any number of wrapped record specifications in + this scope specification (if requested). request: description: request is a copy of the request that generated these results. type: object properties: - scope_id: + specification_id: type: string description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope - address, e.g. + specification_id can either be a uuid, e.g. + dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope + specification - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: - type: string - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - - provided. - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - record_name: - type: string - description: >- - record_name is the name of the record to find the session - for in the provided scope. - include_scope: + scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m. + include_contract_specs: type: boolean description: >- - include_scope is a flag for whether to include the scope - containing these sessions in the response. - include_records: + include_contract_specs is a flag for whether to include + the contract specifications of the scope specification in + + the response. + include_record_specs: type: boolean description: >- - include_records is a flag for whether to include the - records of these sessions in the response. + include_record_specs is a flag for whether to include the + record specifications of the scope specification in the + + response. exclude_id_info: type: boolean description: >- @@ -50570,8 +62433,8 @@ paths: include_request is a flag for whether to include this request in your result. description: >- - SessionsResponse is the response type for the Query/Sessions RPC - method. + ScopeSpecificationResponse is the response type for the + Query/ScopeSpecification RPC method. default: description: An unexpected error response. schema: @@ -50595,53 +62458,30 @@ paths: type: string format: byte parameters: - - name: scope_id + - name: specification_id description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + specification_id can either be a uuid, e.g. + dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope specification - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + address, e.g. scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m. in: path required: true type: string - - name: session_id + - name: include_contract_specs description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, - e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also + include_contract_specs is a flag for whether to include the contract + specifications of the scope specification in - provided. - in: query - required: false - type: string - - name: record_addr - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - in: query - required: false - type: string - - name: record_name - description: >- - record_name is the name of the record to find the session for in the - provided scope. - in: query - required: false - type: string - - name: include_scope - description: >- - include_scope is a flag for whether to include the scope containing - these sessions in the response. + the response. in: query required: false type: boolean - - name: include_records + - name: include_record_specs description: >- - include_records is a flag for whether to include the records of - these sessions in the response. + include_record_specs is a flag for whether to include the record + specifications of the scope specification in the + + response. in: query required: false type: boolean @@ -50661,150 +62501,100 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scopes/all: + /provenance/metadata/v1/scopespecs/all: get: - summary: ScopesAll retrieves all scopes. - operationId: ScopesAll + summary: ScopeSpecificationsAll retrieves all scope specifications. + operationId: ScopeSpecificationsAll responses: '200': description: A successful response. schema: type: object properties: - scopes: + scope_specifications: type: array items: type: object properties: - scope: + specification: type: object properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address - interface for use where addresses are required in - Cosmos specification_id: type: string format: byte - title: >- - the scope specification that contains the - specifications for data elements allowed within this - scope - owners: + title: unique identifier for this specification on chain + description: + description: General information about this scope specification. + type: object + properties: + name: + type: string + description: A Name for this thing. + description: + type: string + description: A description of this thing. + website_url: + type: string + description: URL to find even more info. + icon_url: + type: string + description: URL of an icon. + owner_addresses: type: array items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: - PARTY_TYPE_UNSPECIFIED is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional + type: string + description: Addresses of the owners of this scope specification. + parties_involved: + type: array + items: + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain title: >- - A Party is an address with/in a given role - associated with a contract - description: >- - These parties represent top level owners of the - records within. These parties must sign any - requests that modify - - the data within the scope. These addresses are in - union with parties listed on the sessions. - data_access: + PartyType are the different roles parties on a + contract may use + title: >- + A list of parties that must be present on a scope + (and their associated roles) + contract_spec_ids: type: array items: type: string + format: byte description: >- - Addresses in this list are authorized to receive - off-chain data associated with this scope. - value_owner_address: - type: string - description: >- - An address that controls the value associated with - this scope. Standard blockchain accounts and marker - accounts - - are supported for this value. This attribute may - only be changed by the entity indicated once it is - set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions - must be present in this scope's owners field. - - This also enables use of optional=true scope owners - and session parties. - description: >- - Scope defines a root reference for a collection of - records owned by one or more parties. - scope_id_info: + A list of contract specification ids allowed for a + scope based on this specification. + title: >- + ScopeSpecification defines the required parties, + resources, conditions, and consideration outputs for a + contract description: >- - scope_id_info contains information about the id/address - of the scope. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. + specification is the on-chain scope specification + message. scope_spec_id_info: description: >- scope_spec_id_info contains information about the @@ -50839,8 +62629,10 @@ paths: description: >- scope_spec_uuid is the uuid hex string of the scope_spec_id_scope_spec_uuid. - description: SessionWrapper contains a single scope and its uuid. - description: scopes are the wrapped scopes. + description: >- + ScopeSpecificationWrapper contains a single scope + specification and some extra identifiers for it. + description: scope_specifications are the wrapped scope specifications. request: description: request is a copy of the request that generated these results. type: object @@ -50940,8 +62732,8 @@ paths: was set, its value is undefined otherwise description: >- - ScopesAllResponse is the response type for the Query/ScopesAll RPC - method. + ScopeSpecificationsAllResponse is the response type for the + Query/ScopeSpecificationsAll RPC method. default: description: An unexpected error response. schema: @@ -51037,111 +62829,185 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/scopespec/{specification_id}: + /provenance/metadata/v1/session/{session_addr}/scope: get: - summary: >- - ScopeSpecification returns a scope specification for the given - specification id. + summary: Scope searches for a scope. description: >- - The specification_id can either be a uuid, e.g. - dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope + The scope id, if provided, must either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, - specification address, e.g. - scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m. + e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if + provided, must be a bech32 session address, + + e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The + record_addr, if provided, must be a + bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - By default, the contract and record specifications are not included. - Set include_contract_specs and/or include_record_specs to true to - include contract and/or record specifications. - operationId: ScopeSpecification + * If only a scope_id is provided, that scope is returned. + + * If only a session_addr is provided, the scope containing that session + is returned. + + * If only a record_addr is provided, the scope containing that record is + returned. + + * If more than one of scope_id, session_addr, and record_addr are + provided, and they don't refer to the same scope, + + a bad request is returned. + + + Providing a session addr or record addr does not limit the sessions and + records returned (if requested). + + Those parameters are only used to find the scope. + + + By default, sessions and records are not included. + + Set include_sessions and/or include_records to true to include sessions + and/or records. + operationId: Scope2 responses: '200': description: A successful response. schema: type: object properties: - scope_specification: - description: scope_specification is the wrapped scope specification. + scope: + description: scope is the wrapped scope result. type: object properties: - specification: + scope: type: object properties: + scope_id: + type: string + format: byte + title: >- + Unique ID for this scope. Implements sdk.Address + interface for use where addresses are required in + Cosmos specification_id: type: string format: byte - title: unique identifier for this specification on chain - description: - description: General information about this scope specification. - type: object - properties: - name: - type: string - description: A Name for this thing. - description: - type: string - description: A description of this thing. - website_url: - type: string - description: URL to find even more info. - icon_url: - type: string - description: URL of an icon. - owner_addresses: - type: array - items: - type: string - description: Addresses of the owners of this scope specification. - parties_involved: + title: >- + the scope specification that contains the + specifications for data elements allowed within this + scope + owners: type: array items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is - an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED + is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional title: >- - PartyType are the different roles parties on a - contract may use - title: >- - A list of parties that must be present on a scope (and - their associated roles) - contract_spec_ids: + A Party is an address with/in a given role + associated with a contract + description: >- + These parties represent top level owners of the + records within. These parties must sign any requests + that modify + + the data within the scope. These addresses are in + union with parties listed on the sessions. + data_access: type: array items: type: string - format: byte description: >- - A list of contract specification ids allowed for a - scope based on this specification. - title: >- - ScopeSpecification defines the required parties, - resources, conditions, and consideration outputs for a - contract - description: specification is the on-chain scope specification message. + Addresses in this list are authorized to receive + off-chain data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with + this scope. Standard blockchain accounts and marker + accounts + + are supported for this value. This attribute may only + be changed by the entity indicated once it is set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions + must be present in this scope's owners field. + + This also enables use of optional=true scope owners + and session parties. + description: >- + Scope defines a root reference for a collection of records + owned by one or more parties. + scope_id_info: + description: >- + scope_id_info contains information about the id/address of + the scope. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. scope_spec_id_info: description: >- scope_spec_id_info contains information about the @@ -51176,100 +63042,201 @@ paths: description: >- scope_spec_uuid is the uuid hex string of the scope_spec_id_scope_spec_uuid. - contract_specs: + sessions: type: array items: type: object properties: - specification: + session: type: object properties: + session_id: + type: string + format: byte specification_id: type: string format: byte - title: unique identifier for this specification on chain - description: + description: >- + unique id of the contract specification that was + used to create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: + PARTY_TYPE_UNSPECIFIED is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract title: >- - Description information for this contract - specification + parties is the set of identities that signed this + contract + name: + type: string + title: >- + name to associate with this session execution + context, typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, + and related info. type: object properties: - name: + created_date: type: string - description: A Name for this thing. - description: + format: date-time + title: the date/time when this entry was created + created_by: type: string - description: A description of this thing. - website_url: + title: >- + the address of the account that created this + record + updated_date: type: string - description: URL to find even more info. - icon_url: + format: date-time + title: the date/time when this entry was last updated + updated_by: type: string - description: URL of an icon. - description: >- - Description holds general information that is handy - to associate with a structure. - owner_addresses: - type: array - items: - type: string - title: Address of the account that owns this specificaiton - parties_involved: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use + title: >- + the address of the account that modified this + record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented + with each update + message: + type: string + title: >- + an optional message associated with the + creation/update event title: >- - a list of party roles that must be fullfilled when - signing a transaction for this contract - specification - resource_id: + AuditFields capture information about the last + account to make modifications and when they were + made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the + id/address of the session. + type: object + properties: + session_id: type: string format: byte - title: >- - the address of a record on chain that represents - this contract - hash: + description: session_id is the raw bytes of the session address. + session_id_prefix: type: string - title: the hash of contract binary (off-chain instance) - class_name: + format: byte + description: >- + session_id_prefix is the prefix portion of the + session_id. + session_id_scope_uuid: type: string - title: name of the class/type of this contract executable - title: >- - ContractSpecification defines the required parties, - resources, conditions, and consideration outputs for a - contract - description: >- - specification is the on-chain contract specification - message. + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of + the session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion + of the session_id. + session_addr: + type: string + description: >- + session_addr is the bech32 string version of the + session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. contract_spec_id_info: description: >- contract_spec_id_info contains information about the @@ -51305,28 +63272,56 @@ paths: contract_spec_uuid is the uuid hex string of the contract_spec_id_contract_spec_uuid. description: >- - ContractSpecificationWrapper contains a single contract - specification and some extra identifiers for it. + SessionWrapper contains a single session and some extra + identifiers for it. description: >- - contract_specs is any number of wrapped contract - specifications in this scope specification (if requested). - record_specs: + sessions is any number of wrapped sessions in this scope (if + requested). + records: type: array items: type: object properties: - specification: + record: type: object properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain name: type: string title: >- - Name of Record that will be created when this - specification is used + name/identifier for this record. Value must be + unique within the scope. Also known as a Fact name + session_id: + type: string + format: byte + title: >- + id of the session context that was used to create + this record (use with filtered kvprefix iterator) + process: + title: >- + process contain information used to uniquely + identify an execution on or off chain that generated + this record + type: object + properties: + address: + type: string + title: >- + the address of a smart contract used for this + process + hash: + type: string + title: the hash of an off-chain process used + name: + type: string + title: >- + a name associated with the process (type_name, + classname or smart contract common name) + method: + type: string + title: >- + method is a name or reference to a specific + operation (method) within a class/contract that + was invoked inputs: type: array items: @@ -51334,12 +63329,9 @@ paths: properties: name: type: string - title: name for this input - type_name: - type: string - title: >- - a type_name (typically a proto name or - class_name) + description: >- + Name value included to link back to the + definition spec. record_id: type: string format: byte @@ -51349,81 +63341,141 @@ paths: hash: type: string title: >- - the hash of an off-chain piece of information - (For Proposed Records) + the hash of an off-chain piece of information + (For Proposed Records) + type_name: + type: string + title: from proposed fact structure to unmarshal + status: + title: >- + Indicates if this input was a recorded fact on + chain or just a given hashed input + type: string + enum: + - RECORD_INPUT_STATUS_UNSPECIFIED + - RECORD_INPUT_STATUS_PROPOSED + - RECORD_INPUT_STATUS_RECORD + default: RECORD_INPUT_STATUS_UNSPECIFIED + description: >- + - RECORD_INPUT_STATUS_UNSPECIFIED: + RECORD_INPUT_STATUS_UNSPECIFIED indicates an + invalid/unknown input type + - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed + - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain + title: Tracks the inputs used to establish this record + title: >- + inputs used with the process to achieve the output + on this record + outputs: + type: array + items: + type: object + properties: + hash: + type: string + title: >- + Hash of the data output that was + output/generated for this record + status: + title: >- + Status of the process execution associated + with this output indicating success,failure, + or pending + type: string + enum: + - RESULT_STATUS_UNSPECIFIED + - RESULT_STATUS_PASS + - RESULT_STATUS_SKIP + - RESULT_STATUS_FAIL + default: RESULT_STATUS_UNSPECIFIED + description: >- + - RESULT_STATUS_UNSPECIFIED: + RESULT_STATUS_UNSPECIFIED indicates an unset + condition + - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful + - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution + - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. title: >- - InputSpecification defines a name, type_name, and - source reference (either on or off chain) to - define an input - - parameter - title: >- - A set of inputs that must be satisified to apply - this RecordSpecification and create a Record - type_name: - type: string - title: >- - A type name for data associated with this record - (typically a class or proto name) - result_type: + RecordOutput encapsulates the output of a process + recorded on chain title: >- - Type of result for this record specification (must - be RECORD or RECORD_LIST) + output(s) is the results of executing the process on + the given process indicated in this record + specification_id: type: string - enum: - - DEFINITION_TYPE_UNSPECIFIED - - DEFINITION_TYPE_PROPOSED - - DEFINITION_TYPE_RECORD - - DEFINITION_TYPE_RECORD_LIST - default: DEFINITION_TYPE_UNSPECIFIED + format: byte description: >- - - DEFINITION_TYPE_UNSPECIFIED: - DEFINITION_TYPE_UNSPECIFIED indicates an - unknown/invalid value - - DEFINITION_TYPE_PROPOSED: DEFINITION_TYPE_PROPOSED indicates a proposed value is used here (a record that is not on-chain) - - DEFINITION_TYPE_RECORD: DEFINITION_TYPE_RECORD indicates the value must be a reference to a record on chain - - DEFINITION_TYPE_RECORD_LIST: DEFINITION_TYPE_RECORD_LIST indicates the value maybe a reference to a collection of values on chain having - the same name - responsible_parties: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: Type of party responsible for this record + specification_id is the id of the record + specification that was used to create this record. title: >- - RecordSpecification defines the specification for a - Record including allowed/required inputs/outputs + A record (of fact) is attached to a session or each + consideration output from a contract + description: record is the on-chain record message. + record_id_info: description: >- - specification is the on-chain record specification - message. + record_id_info contains information about the id/address + of the record. + type: object + properties: + record_id: + type: string + format: byte + description: record_id is the raw bytes of the record address. + record_id_prefix: + type: string + format: byte + description: >- + record_id_prefix is the prefix portion of the + record_id. + record_id_scope_uuid: + type: string + format: byte + description: >- + record_id_scope_uuid is the scope_uuid portion of + the record_id. + record_id_hashed_name: + type: string + format: byte + description: >- + record_id_hashed_name is the hashed name portion of + the record_id. + record_addr: + type: string + description: >- + record_addr is the bech32 string version of the + record_id. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the record_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. record_spec_id_info: description: >- record_spec_id_info contains information about the @@ -51495,253 +63547,44 @@ paths: contract_spec_uuid is the uuid hex string of the contract_spec_id_contract_spec_uuid. description: >- - RecordSpecificationWrapper contains a single record - specification and some extra identifiers for it. + RecordWrapper contains a single record and some extra + identifiers for it. description: >- - record_specs is any number of wrapped record specifications in - this scope specification (if requested). + records is any number of wrapped records in this scope (if + requested). request: description: request is a copy of the request that generated these results. type: object properties: - specification_id: + scope_id: type: string description: >- - specification_id can either be a uuid, e.g. - dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope - specification - + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. - scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m. - include_contract_specs: - type: boolean - description: >- - include_contract_specs is a flag for whether to include - the contract specifications of the scope specification in - the response. - include_record_specs: - type: boolean + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_addr: + type: string description: >- - include_record_specs is a flag for whether to include the - record specifications of the scope specification in the + session_addr is a bech32 session address, e.g. - response. - exclude_id_info: + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + include_sessions: type: boolean description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: + include_sessions is a flag for whether to include the + sessions of the scope in the response. + include_records: type: boolean description: >- - include_request is a flag for whether to include this - request in your result. - description: >- - ScopeSpecificationResponse is the response type for the - Query/ScopeSpecification RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - parameters: - - name: specification_id - description: >- - specification_id can either be a uuid, e.g. - dc83ea70-eacd-40fe-9adf-1cf6148bf8a2 or a bech32 scope specification - - address, e.g. scopespec1qnwg86nsatx5pl56muw0v9ytlz3qu3jx6m. - in: path - required: true - type: string - - name: include_contract_specs - description: >- - include_contract_specs is a flag for whether to include the contract - specifications of the scope specification in - - the response. - in: query - required: false - type: boolean - - name: include_record_specs - description: >- - include_record_specs is a flag for whether to include the record - specifications of the scope specification in the - - response. - in: query - required: false - type: boolean - - name: exclude_id_info - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. - in: query - required: false - type: boolean - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - tags: - - Query - /provenance/metadata/v1/scopespecs/all: - get: - summary: ScopeSpecificationsAll retrieves all scope specifications. - operationId: ScopeSpecificationsAll - responses: - '200': - description: A successful response. - schema: - type: object - properties: - scope_specifications: - type: array - items: - type: object - properties: - specification: - type: object - properties: - specification_id: - type: string - format: byte - title: unique identifier for this specification on chain - description: - description: General information about this scope specification. - type: object - properties: - name: - type: string - description: A Name for this thing. - description: - type: string - description: A description of this thing. - website_url: - type: string - description: URL to find even more info. - icon_url: - type: string - description: URL of an icon. - owner_addresses: - type: array - items: - type: string - description: Addresses of the owners of this scope specification. - parties_involved: - type: array - items: - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - title: >- - PartyType are the different roles parties on a - contract may use - title: >- - A list of parties that must be present on a scope - (and their associated roles) - contract_spec_ids: - type: array - items: - type: string - format: byte - description: >- - A list of contract specification ids allowed for a - scope based on this specification. - title: >- - ScopeSpecification defines the required parties, - resources, conditions, and consideration outputs for a - contract - description: >- - specification is the on-chain scope specification - message. - scope_spec_id_info: - description: >- - scope_spec_id_info contains information about the - id/address of the scope specification. - type: object - properties: - scope_spec_id: - type: string - format: byte - description: >- - scope_spec_id is the raw bytes of the scope - specification address. - scope_spec_id_prefix: - type: string - format: byte - description: >- - scope_spec_id_prefix is the prefix portion of the - scope_spec_id. - scope_spec_id_scope_spec_uuid: - type: string - format: byte - description: >- - scope_spec_id_scope_spec_uuid is the scope_spec_uuid - portion of the scope_spec_id. - scope_spec_addr: - type: string - description: >- - scope_spec_addr is the bech32 string version of the - scope_spec_id. - scope_spec_uuid: - type: string - description: >- - scope_spec_uuid is the uuid hex string of the - scope_spec_id_scope_spec_uuid. - description: >- - ScopeSpecificationWrapper contains a single scope - specification and some extra identifiers for it. - description: scope_specifications are the wrapped scope specifications. - request: - description: request is a copy of the request that generated these results. - type: object - properties: + include_records is a flag for whether to include the + records of the scope in the response. exclude_id_info: type: boolean description: >- @@ -51752,93 +63595,7 @@ paths: description: >- include_request is a flag for whether to include this request in your result. - pagination: - description: >- - pagination defines optional pagination parameters for the - request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to - begin - - querying the next page most efficiently. Only one of - offset or key - - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key - is unavailable. - - It is less efficient than using key. Only one of - offset or key should - - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in - the result page. - - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the - result set should include - - a count of the total number of items available for - pagination in UIs. - - count_total is only respected when offset is used. It - is ignored when key - - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned - in the descending order. - - - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient - - pagination. Ex: - pagination: - description: >- - pagination provides the pagination information of this - response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - ScopeSpecificationsAllResponse is the response type for the - Query/ScopeSpecificationsAll RPC method. + description: ScopeResponse is the response type for the Query/Scope RPC method. default: description: An unexpected error response. schema: @@ -51862,89 +63619,69 @@ paths: type: string format: byte parameters: - - name: exclude_id_info + - name: session_addr + description: |- + session_addr is a bech32 session address, e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + in: path + required: true + type: string + - name: scope_id description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. in: query required: false - type: boolean - - name: include_request + type: string + - name: record_addr description: >- - include_request is a flag for whether to include this request in - your result. - in: query - required: false - type: boolean - - name: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. in: query required: false type: string - format: byte - - name: pagination.offset + - name: include_sessions description: >- - offset is a numeric offset that can be used when key is unavailable. - - It is less efficient than using key. Only one of offset or key - should - - be set. + include_sessions is a flag for whether to include the sessions of + the scope in the response. in: query required: false - type: string - format: uint64 - - name: pagination.limit + type: boolean + - name: include_records description: >- - limit is the total number of results to be returned in the result - page. - - If left empty it will default to a value to be set by each app. + include_records is a flag for whether to include the records of the + scope in the response. in: query required: false - type: string - format: uint64 - - name: pagination.count_total + type: boolean + - name: exclude_id_info description: >- - count_total is set to true to indicate that the result set should - include - - a count of the total number of items available for pagination in - UIs. - - count_total is only respected when offset is used. It is ignored - when key - - is set. + exclude_id_info is a flag for whether to exclude the id info from + the response. in: query required: false type: boolean - - name: pagination.reverse + - name: include_request description: >- - reverse is set to true if results are to be returned in the - descending order. - - - Since: cosmos-sdk 0.43 + include_request is a flag for whether to include this request in + your result. in: query required: false type: boolean tags: - Query - /provenance/metadata/v1/session/{session_addr}/scope: + /provenance/metadata/v1/session/{session_id}: get: - summary: Scope searches for a scope. + summary: Sessions searches for sessions. description: >- - The scope id, if provided, must either be scope uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, + The scope_id can either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. The session addr, if - provided, must be a bech32 session address, + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can + either be a uuid or session address, e.g. - e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The record_addr, if provided, must be a @@ -51952,31 +63689,55 @@ paths: record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - * If only a scope_id is provided, that scope is returned. + * If only a scope_id is provided, all sessions in that scope are + returned. + + * If only a session_id is provided, it must be an address, and that + single session is returned. + + * If the session_id is a uuid, then either a scope_id or record_addr + must also be provided, and that single session - * If only a session_addr is provided, the scope containing that session is returned. - * If only a record_addr is provided, the scope containing that record is - returned. + * If only a record_addr is provided, the session containing that record + will be returned. - * If more than one of scope_id, session_addr, and record_addr are - provided, and they don't refer to the same scope, + * If a record_name is provided then either a scope_id, session_id as an + address, or record_addr must also be - a bad request is returned. + provided, and the session containing that record will be returned. - Providing a session addr or record addr does not limit the sessions and - records returned (if requested). + A bad request is returned if: - Those parameters are only used to find the scope. + * The session_id is a uuid and is provided without a scope_id or + record_addr. + * A record_name is provided without any way to identify the scope (e.g. + a scope_id, a session_id as an address, or - By default, sessions and records are not included. + a record_addr). - Set include_sessions and/or include_records to true to include sessions + * Two or more of scope_id, session_id as an address, and record_addr are + provided and don't all refer to the same + + scope. + + * A record_addr (or scope_id and record_name) is provided with a + session_id and that session does not contain such + + a record. + + * A record_addr and record_name are both provided, but reference + different records. + + + By default, the scope and records are not included. + + Set include_scope and/or include_records to true to include the scope and/or records. - operationId: Scope2 + operationId: Sessions responses: '200': description: A successful response. @@ -51984,7 +63745,9 @@ paths: type: object properties: scope: - description: scope is the wrapped scope result. + description: >- + scope is the wrapped scope that holds these sessions (if + requested). type: object properties: scope: @@ -52379,9 +64142,7 @@ paths: description: >- SessionWrapper contains a single session and some extra identifiers for it. - description: >- - sessions is any number of wrapped sessions in this scope (if - requested). + description: sessions is any number of wrapped session results. records: type: array items: @@ -52655,8 +64416,8 @@ paths: RecordWrapper contains a single record and some extra identifiers for it. description: >- - records is any number of wrapped records in this scope (if - requested). + records is any number of wrapped records contained in these + sessions (if requested). request: description: request is a copy of the request that generated these results. type: object @@ -52669,27 +64430,37 @@ paths: address, e.g. scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_addr: + session_id: type: string description: >- - session_addr is a bech32 session address, e.g. + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session + address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. record_addr: type: string description: >- record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - include_sessions: + record_name: + type: string + description: >- + record_name is the name of the record to find the session + for in the provided scope. + include_scope: type: boolean description: >- - include_sessions is a flag for whether to include the - sessions of the scope in the response. + include_scope is a flag for whether to include the scope + containing these sessions in the response. include_records: type: boolean description: >- include_records is a flag for whether to include the - records of the scope in the response. + records of these sessions in the response. exclude_id_info: type: boolean description: >- @@ -52700,7 +64471,9 @@ paths: description: >- include_request is a flag for whether to include this request in your result. - description: ScopeResponse is the response type for the Query/Scope RPC method. + description: >- + SessionsResponse is the response type for the Query/Sessions RPC + method. default: description: An unexpected error response. schema: @@ -52724,10 +64497,16 @@ paths: type: string format: byte parameters: - - name: session_addr - description: |- - session_addr is a bech32 session address, e.g. + - name: session_id + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, + e.g. + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. in: path required: true type: string @@ -52747,17 +64526,24 @@ paths: in: query required: false type: string - - name: include_sessions + - name: record_name description: >- - include_sessions is a flag for whether to include the sessions of - the scope in the response. + record_name is the name of the record to find the session for in the + provided scope. + in: query + required: false + type: string + - name: include_scope + description: >- + include_scope is a flag for whether to include the scope containing + these sessions in the response. in: query required: false type: boolean - name: include_records description: >- - include_records is a flag for whether to include the records of the - scope in the response. + include_records is a flag for whether to include the records of + these sessions in the response. in: query required: false type: boolean @@ -52777,72 +64563,57 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/session/{session_id}: + /provenance/metadata/v1/session/{session_id}/record/{name}: get: - summary: Sessions searches for sessions. + summary: Records searches for records. description: >- - The scope_id can either be scope uuid, e.g. + The record_addr, if provided, must be a bech32 record address, e.g. + + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The + scope-id can either be scope uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, the session_id can - either be a uuid or session address, e.g. + the session_id can either be a uuid or session address, e.g. session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - record_addr, if provided, must be a + name is the name of the record you're - bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + interested in. - * If only a scope_id is provided, all sessions in that scope are + * If only a record_addr is provided, that single record will be returned. - * If only a session_id is provided, it must be an address, and that - single session is returned. - - * If the session_id is a uuid, then either a scope_id or record_addr - must also be provided, and that single session - - is returned. - - * If only a record_addr is provided, the session containing that record - will be returned. + * If only a scope_id is provided, all records in that scope will be + returned. - * If a record_name is provided then either a scope_id, session_id as an - address, or record_addr must also be + * If only a session_id (or scope_id/session_id), all records in that + session will be returned. - provided, and the session containing that record will be returned. + * If a name is provided with a scope_id and/or session_id, that single + record will be returned. A bad request is returned if: - * The session_id is a uuid and is provided without a scope_id or - record_addr. - - * A record_name is provided without any way to identify the scope (e.g. - a scope_id, a session_id as an address, or - - a record_addr). - - * Two or more of scope_id, session_id as an address, and record_addr are - provided and don't all refer to the same - - scope. + * The session_id is a uuid and no scope_id is provided. - * A record_addr (or scope_id and record_name) is provided with a - session_id and that session does not contain such + * There are two or more of record_addr, session_id, and scope_id, and + they don't all refer to the same scope. - a record. + * A name is provided, but not a scope_id and/or a session_id. - * A record_addr and record_name are both provided, but reference - different records. + * A name and record_addr are provided and the name doesn't match the + record_addr. - By default, the scope and records are not included. + By default, the scope and sessions are not included. - Set include_scope and/or include_records to true to include the scope - and/or records. - operationId: Sessions + Set include_scope and/or include_sessions to true to include the scope + and/or sessions. + operationId: Records7 responses: '200': description: A successful response. @@ -52851,7 +64622,7 @@ paths: properties: scope: description: >- - scope is the wrapped scope that holds these sessions (if + scope is the wrapped scope that holds these records (if requested). type: object properties: @@ -53247,7 +65018,9 @@ paths: description: >- SessionWrapper contains a single session and some extra identifiers for it. - description: sessions is any number of wrapped session results. + description: >- + sessions is any number of wrapped sessions that hold these + records (if requested). records: type: array items: @@ -53520,13 +65293,16 @@ paths: description: >- RecordWrapper contains a single record and some extra identifiers for it. - description: >- - records is any number of wrapped records contained in these - sessions (if requested). + description: records is any number of wrapped record results. request: description: request is a copy of the request that generated these results. type: object properties: + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. scope_id: type: string description: >- @@ -53546,26 +65322,19 @@ paths: This can only be a uuid if a scope_id is also provided. - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - record_name: + name: type: string - description: >- - record_name is the name of the record to find the session - for in the provided scope. + title: name is the name of the record to look for include_scope: type: boolean description: >- - include_scope is a flag for whether to include the scope - containing these sessions in the response. - include_records: + include_scope is a flag for whether to include the the + scope containing these records in the response. + include_sessions: type: boolean description: >- - include_records is a flag for whether to include the - records of these sessions in the response. + include_sessions is a flag for whether to include the + sessions containing these records in the response. exclude_id_info: type: boolean description: >- @@ -53577,7 +65346,7 @@ paths: include_request is a flag for whether to include this request in your result. description: >- - SessionsResponse is the response type for the Query/Sessions RPC + RecordsResponse is the response type for the Query/Records RPC method. default: description: An unexpected error response. @@ -53615,14 +65384,10 @@ paths: in: path required: true type: string - - name: scope_id - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - in: query - required: false + - name: name + description: name is the name of the record to look for + in: path + required: true type: string - name: record_addr description: >- @@ -53631,24 +65396,26 @@ paths: in: query required: false type: string - - name: record_name + - name: scope_id description: >- - record_name is the name of the record to find the session for in the - provided scope. + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. in: query required: false type: string - name: include_scope description: >- - include_scope is a flag for whether to include the scope containing - these sessions in the response. + include_scope is a flag for whether to include the the scope + containing these records in the response. in: query required: false type: boolean - - name: include_records + - name: include_sessions description: >- - include_records is a flag for whether to include the records of - these sessions in the response. + include_sessions is a flag for whether to include the sessions + containing these records in the response. in: query required: false type: boolean @@ -53668,7 +65435,7 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/session/{session_id}/record/{name}: + /provenance/metadata/v1/session/{session_id}/records: get: summary: Records searches for records. description: >- @@ -53718,7 +65485,7 @@ paths: Set include_scope and/or include_sessions to true to include the scope and/or sessions. - operationId: Records7 + operationId: Records6 responses: '200': description: A successful response. @@ -54341,105 +66108,452 @@ paths: type: string format: byte description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name + portion of the record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the + contract spec id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the + contract specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of + the contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the + contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version + of the contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordWrapper contains a single record and some extra + identifiers for it. + description: records is any number of wrapped record results. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope + address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_id: + type: string + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session + address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + name: + type: string + title: name is the name of the record to look for + include_scope: + type: boolean + description: >- + include_scope is a flag for whether to include the the + scope containing these records in the response. + include_sessions: + type: boolean + description: >- + include_sessions is a flag for whether to include the + sessions containing these records in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id + info from the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + description: >- + RecordsResponse is the response type for the Query/Records RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: session_id + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, + e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + in: path + required: true + type: string + - name: record_addr + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + in: query + required: false + type: string + - name: scope_id + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + in: query + required: false + type: string + - name: name + description: name is the name of the record to look for. + in: query + required: false + type: string + - name: include_scope + description: >- + include_scope is a flag for whether to include the the scope + containing these records in the response. + in: query + required: false + type: boolean + - name: include_sessions + description: >- + include_sessions is a flag for whether to include the sessions + containing these records in the response. + in: query + required: false + type: boolean + - name: exclude_id_info + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + in: query + required: false + type: boolean + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + tags: + - Query + /provenance/metadata/v1/sessions/all: + get: + summary: SessionsAll retrieves all sessions. + operationId: SessionsAll + responses: + '200': + description: A successful response. + schema: + type: object + properties: + sessions: + type: array + items: + type: object + properties: + session: + type: object + properties: + session_id: + type: string + format: byte + specification_id: + type: string + format: byte + description: >- + unique id of the contract specification that was + used to create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of + the processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: + PARTY_TYPE_UNSPECIFIED is an error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role + associated with a contract + title: >- + parties is the set of identities that signed this + contract + name: + type: string + title: >- + name to associate with this session execution + context, typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, + and related info. + type: object + properties: + created_date: + type: string + format: date-time + title: the date/time when this entry was created + created_by: + type: string + title: >- + the address of the account that created this + record + updated_date: + type: string + format: date-time + title: the date/time when this entry was last updated + updated_by: + type: string + title: >- + the address of the account that modified this + record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented + with each update + message: + type: string + title: >- + an optional message associated with the + creation/update event + title: >- + AuditFields capture information about the last + account to make modifications and when they were + made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the + id/address of the session. + type: object + properties: + session_id: + type: string + format: byte + description: session_id is the raw bytes of the session address. + session_id_prefix: + type: string + format: byte + description: >- + session_id_prefix is the prefix portion of the + session_id. + session_id_scope_uuid: + type: string + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of + the session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion + of the session_id. + session_addr: + type: string + description: >- + session_addr is the bech32 string version of the + session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id + referenced in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: >- + scope_id_prefix is the prefix portion of the + scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of + the scope_id. + scope_addr: + type: string + description: >- + scope_addr is the bech32 string version of the + scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the + id/address of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: type: string format: byte description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: type: string format: byte description: >- - record_spec_id_hashed_name is the hashed name - portion of the record_spec_id. - record_spec_addr: + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: type: string description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: + contract_spec_addr is the bech32 string version of + the contract_spec_id. + contract_spec_uuid: + type: string description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. description: >- - RecordWrapper contains a single record and some extra + SessionWrapper contains a single session and some extra identifiers for it. - description: records is any number of wrapped record results. + description: sessions are the wrapped sessions. request: description: request is a copy of the request that generated these results. type: object properties: - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - scope_id: - type: string - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope - address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: - type: string - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session - address, e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - - provided. - name: - type: string - title: name is the name of the record to look for - include_scope: - type: boolean - description: >- - include_scope is a flag for whether to include the the - scope containing these records in the response. - include_sessions: - type: boolean - description: >- - include_sessions is a flag for whether to include the - sessions containing these records in the response. exclude_id_info: type: boolean description: >- @@ -54450,9 +66564,93 @@ paths: description: >- include_request is a flag for whether to include this request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to + begin + + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key + is unavailable. + + It is less efficient than using key. Only one of + offset or key should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the + result set should include + + a count of the total number of items available for + pagination in UIs. + + count_total is only respected when offset is used. It + is ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: >- + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise description: >- - RecordsResponse is the response type for the Query/Records RPC - method. + SessionsAllResponse is the response type for the Query/SessionsAll + RPC method. default: description: An unexpected error response. schema: @@ -54476,855 +66674,657 @@ paths: type: string format: byte parameters: - - name: session_id - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, - e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - - provided. - in: path - required: true - type: string - - name: name - description: name is the name of the record to look for - in: path - required: true - type: string - - name: record_addr + - name: exclude_id_info description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + exclude_id_info is a flag for whether to exclude the id info from + the response. in: query required: false - type: string - - name: scope_id + type: boolean + - name: include_request description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. in: query required: false type: string - - name: include_scope + format: byte + - name: pagination.offset description: >- - include_scope is a flag for whether to include the the scope - containing these records in the response. + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. in: query required: false - type: boolean - - name: include_sessions + type: string + format: uint64 + - name: pagination.limit description: >- - include_sessions is a flag for whether to include the sessions - containing these records in the response. + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. in: query required: false - type: boolean - - name: exclude_id_info + type: string + format: uint64 + - name: pagination.count_total description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. in: query required: false type: boolean - - name: include_request + - name: pagination.reverse description: >- - include_request is a flag for whether to include this request in - your result. + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean tags: - Query - /provenance/metadata/v1/session/{session_id}/records: + /provenance/metadata/v1/valueownership/{address}: get: - summary: Records searches for records. - description: >- - The record_addr, if provided, must be a bech32 record address, e.g. - - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. The - scope-id can either be scope uuid, e.g. - - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a scope address, e.g. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. Similarly, - - the session_id can either be a uuid or session address, e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. The - name is the name of the record you're - - interested in. - - - * If only a record_addr is provided, that single record will be - returned. - - * If only a scope_id is provided, all records in that scope will be - returned. - - * If only a session_id (or scope_id/session_id), all records in that - session will be returned. - - * If a name is provided with a scope_id and/or session_id, that single - record will be returned. - - - A bad request is returned if: - - * The session_id is a uuid and no scope_id is provided. - - * There are two or more of record_addr, session_id, and scope_id, and - they don't all refer to the same scope. - - * A name is provided, but not a scope_id and/or a session_id. - - * A name and record_addr are provided and the name doesn't match the - record_addr. - - - By default, the scope and sessions are not included. - - Set include_scope and/or include_sessions to true to include the scope - and/or sessions. - operationId: Records6 + summary: >- + ValueOwnership returns the scope identifiers that list the given address + as the value owner. + operationId: ValueOwnership responses: '200': description: A successful response. schema: type: object properties: - scope: - description: >- - scope is the wrapped scope that holds these records (if - requested). + scope_uuids: + type: array + items: + type: string + description: A list of scope ids (uuid) associated with the given address. + request: + description: request is a copy of the request that generated these results. type: object properties: - scope: + address: + type: string + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this + request in your result. + pagination: + description: >- + pagination defines optional pagination parameters for the + request. type: object properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address - interface for use where addresses are required in - Cosmos - specification_id: + key: type: string format: byte - title: >- - the scope specification that contains the - specifications for data elements allowed within this - scope - owners: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED - is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract description: >- - These parties represent top level owners of the - records within. These parties must sign any requests - that modify + key is a value returned in PageResponse.next_key to + begin - the data within the scope. These addresses are in - union with parties listed on the sessions. - data_access: - type: array - items: - type: string - description: >- - Addresses in this list are authorized to receive - off-chain data associated with this scope. - value_owner_address: + querying the next page most efficiently. Only one of + offset or key + + should be set. + offset: type: string + format: uint64 description: >- - An address that controls the value associated with - this scope. Standard blockchain accounts and marker - accounts + offset is a numeric offset that can be used when key + is unavailable. - are supported for this value. This attribute may only - be changed by the entity indicated once it is set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions - must be present in this scope's owners field. + It is less efficient than using key. Only one of + offset or key should - This also enables use of optional=true scope owners - and session parties. - description: >- - Scope defines a root reference for a collection of records - owned by one or more parties. - scope_id_info: - description: >- - scope_id_info contains information about the id/address of - the scope. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - scope_spec_id_info: - description: >- - scope_spec_id_info contains information about the - id/address of the scope specification. - type: object - properties: - scope_spec_id: - type: string - format: byte - description: >- - scope_spec_id is the raw bytes of the scope - specification address. - scope_spec_id_prefix: - type: string - format: byte - description: >- - scope_spec_id_prefix is the prefix portion of the - scope_spec_id. - scope_spec_id_scope_spec_uuid: - type: string - format: byte - description: >- - scope_spec_id_scope_spec_uuid is the scope_spec_uuid - portion of the scope_spec_id. - scope_spec_addr: + be set. + limit: type: string + format: uint64 description: >- - scope_spec_addr is the bech32 string version of the - scope_spec_id. - scope_spec_uuid: - type: string + limit is the total number of results to be returned in + the result page. + + If left empty it will default to a value to be set by + each app. + count_total: + type: boolean description: >- - scope_spec_uuid is the uuid hex string of the - scope_spec_id_scope_spec_uuid. - sessions: - type: array - items: - type: object - properties: - session: - type: object - properties: - session_id: - type: string - format: byte - specification_id: - type: string - format: byte - description: >- - unique id of the contract specification that was - used to create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: - PARTY_TYPE_UNSPECIFIED is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - title: >- - parties is the set of identities that signed this - contract - name: - type: string - title: >- - name to associate with this session execution - context, typically classname - context: - type: string - format: byte - description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, - and related info. - type: object - properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: - type: string - title: >- - the address of the account that created this - record - updated_date: - type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: - type: string - title: >- - the address of the account that modified this - record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented - with each update - message: - type: string - title: >- - an optional message associated with the - creation/update event - title: >- - AuditFields capture information about the last - account to make modifications and when they were - made - description: >- - Session defines an execution context against a specific - specification instance. + count_total is set to true to indicate that the + result set should include - The context will have a specification and set of parties - involved. + a count of the total number of items available for + pagination in UIs. + count_total is only respected when offset is used. It + is ignored when key - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: - description: >- - session_id_info contains information about the - id/address of the session. - type: object - properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: >- - session_id_prefix is the prefix portion of the - session_id. - session_id_scope_uuid: - type: string - format: byte - description: >- - session_id_scope_uuid is the scope_uuid portion of - the session_id. - session_id_session_uuid: - type: string - format: byte - description: >- - session_id_session_uuid is the session_uuid portion - of the session_id. - session_addr: - type: string - description: >- - session_addr is the bech32 string version of the - session_id. - session_uuid: - type: string - description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the session_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - contract_spec_id_info: - description: >- - contract_spec_id_info contains information about the - id/address of the contract specification. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - SessionWrapper contains a single session and some extra - identifiers for it. + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned + in the descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: description: >- - sessions is any number of wrapped sessions that hold these - records (if requested). - records: + pagination provides the pagination information of this + response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + ValueOwnershipResponse is the response type for the + Query/ValueOwnership RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - record: - type: object - properties: - name: - type: string - title: >- - name/identifier for this record. Value must be - unique within the scope. Also known as a Fact name - session_id: - type: string - format: byte - title: >- - id of the session context that was used to create - this record (use with filtered kvprefix iterator) - process: - title: >- - process contain information used to uniquely - identify an execution on or off chain that generated - this record - type: object - properties: - address: - type: string - title: >- - the address of a smart contract used for this - process - hash: - type: string - title: the hash of an off-chain process used - name: - type: string - title: >- - a name associated with the process (type_name, - classname or smart contract common name) - method: - type: string - title: >- - method is a name or reference to a specific - operation (method) within a class/contract that - was invoked - inputs: - type: array - items: - type: object - properties: - name: - type: string - description: >- - Name value included to link back to the - definition spec. - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For - Established Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information - (For Proposed Records) - type_name: - type: string - title: from proposed fact structure to unmarshal - status: - title: >- - Indicates if this input was a recorded fact on - chain or just a given hashed input - type: string - enum: - - RECORD_INPUT_STATUS_UNSPECIFIED - - RECORD_INPUT_STATUS_PROPOSED - - RECORD_INPUT_STATUS_RECORD - default: RECORD_INPUT_STATUS_UNSPECIFIED - description: >- - - RECORD_INPUT_STATUS_UNSPECIFIED: - RECORD_INPUT_STATUS_UNSPECIFIED indicates an - invalid/unknown input type - - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed - - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain - title: Tracks the inputs used to establish this record - title: >- - inputs used with the process to achieve the output - on this record - outputs: - type: array - items: - type: object - properties: - hash: - type: string - title: >- - Hash of the data output that was - output/generated for this record - status: - title: >- - Status of the process execution associated - with this output indicating success,failure, - or pending - type: string - enum: - - RESULT_STATUS_UNSPECIFIED - - RESULT_STATUS_PASS - - RESULT_STATUS_SKIP - - RESULT_STATUS_FAIL - default: RESULT_STATUS_UNSPECIFIED - description: >- - - RESULT_STATUS_UNSPECIFIED: - RESULT_STATUS_UNSPECIFIED indicates an unset - condition - - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful - - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution - - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. - title: >- - RecordOutput encapsulates the output of a process - recorded on chain - title: >- - output(s) is the results of executing the process on - the given process indicated in this record - specification_id: - type: string - format: byte - description: >- - specification_id is the id of the record - specification that was used to create this record. + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: address + in: path + required: true + type: string + - name: include_request + description: >- + include_request is a flag for whether to include this request in + your result. + in: query + required: false + type: boolean + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/msgfees/v1/all: + get: + summary: Query all Msgs which have fees associated with them. + operationId: QueryAllMsgFees + responses: + '200': + description: A successful response. + schema: + type: object + properties: + msg_fees: + type: array + items: + type: object + properties: + msg_type_url: + type: string + additional_fee: title: >- - A record (of fact) is attached to a session or each - consideration output from a contract - description: record is the on-chain record message. - record_id_info: - description: >- - record_id_info contains information about the id/address - of the record. + additional_fee can pay in any Coin( basically a Denom + and Amount, Amount can be zero) type: object properties: - record_id: - type: string - format: byte - description: record_id is the raw bytes of the record address. - record_id_prefix: - type: string - format: byte - description: >- - record_id_prefix is the prefix portion of the - record_id. - record_id_scope_uuid: - type: string - format: byte - description: >- - record_id_scope_uuid is the scope_uuid portion of - the record_id. - record_id_hashed_name: + denom: type: string - format: byte - description: >- - record_id_hashed_name is the hashed name portion of - the record_id. - record_addr: + amount: type: string - description: >- - record_addr is the bech32 string version of the - record_id. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - record_spec_id_info: description: >- - record_spec_id_info contains information about the - id/address of the record specification. - type: object - properties: - record_spec_id: - type: string - format: byte - description: >- - record_spec_id is the raw bytes of the record - specification address. - record_spec_id_prefix: - type: string - format: byte - description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - record_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the record_spec_id. - record_spec_id_hashed_name: - type: string - format: byte - description: >- - record_spec_id_hashed_name is the hashed name - portion of the record_spec_id. - record_spec_addr: - type: string - description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the - contract spec id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the - contract specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of - the contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the - contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version - of the contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordWrapper contains a single record and some extra - identifiers for it. - description: records is any number of wrapped record results. - request: - description: request is a copy of the request that generated these results. + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + recipient: + type: string + recipient_basis_points: + type: integer + format: int64 + title: >- + MsgFee is the core of what gets stored on the blockchain + + it consists of four parts + + 1. the msg type url, i.e. /cosmos.bank.v1beta1.MsgSend + + 2. minimum additional fees(can be of any denom) + + 3. optional recipient of fee based on + `recipient_basis_points` + + 4. if recipient is declared they will recieve the basis + points of the fee (0-10,000) + pagination: + description: pagination defines an optional pagination for the request. type: object properties: - record_addr: + next_key: type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - scope_id: + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope - address, e.g. + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: - type: string + was set, its value is undefined otherwise + title: response for querying all msg's with fees associated with them + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/msgfees/v1/params: + get: + summary: Params queries the parameters for x/msgfees + operationId: MsgFeeParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + floor_gas_price: description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session - address, e.g. + floor_gas_price is the constant used to calculate fees + when gas fees shares denom with msg fee. - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - provided. - name: + Conversions: + - x nhash/usd-mil = 1,000,000/x usd/hash + - y usd/hash = 1,000,000/y nhash/usd-mil + + Examples: + - 40,000,000 nhash/usd-mil = 1,000,000/40,000,000 usd/hash = $0.025/hash, + - $0.040/hash = 1,000,000/0.040 nhash/usd-mil = 25,000,000 nhash/usd-mil + type: object + properties: + denom: + type: string + amount: + type: string + nhash_per_usd_mil: type: string - title: name is the name of the record to look for - include_scope: - type: boolean - description: >- - include_scope is a flag for whether to include the the - scope containing these records in the response. - include_sessions: - type: boolean - description: >- - include_sessions is a flag for whether to include the - sessions containing these records in the response. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean + format: uint64 description: >- - include_request is a flag for whether to include this - request in your result. + nhash_per_usd_mil is the total nhash per usd mil for + converting usd to nhash. + conversion_fee_denom: + type: string + description: conversion_fee_denom is the denom usd is converted to. description: >- - RecordsResponse is the response type for the Query/Records RPC + QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + tags: + - Query + /provenance/tx/v1/calculate_msg_based_fee: + post: + summary: >- + CalculateTxFees simulates executing a transaction for estimating gas + usage and additional fees. + operationId: CalculateTxFees + responses: + '200': + description: A successful response. + schema: + type: object + properties: + additional_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + title: >- + additional_fees are the amount of coins to be for addition msg + fees + total_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + total_fees are the total amount of fees needed for the + transactions (msg fees + gas fee) + + note: the gas fee is calculated with the floor gas price + module param. + estimated_gas: + type: string + format: uint64 + title: estimated_gas is the amount of gas needed for the transaction + description: >- + CalculateTxFeesResponse is the response type for the Query RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: body + in: body + required: true + schema: + type: object + properties: + tx_bytes: + type: string + format: byte + description: tx_bytes is the transaction to simulate. + default_base_denom: + type: string + description: |- + default_base_denom is used to set the denom used for gas fees + if not set it will default to nhash. + gas_adjustment: + type: number + format: float + title: >- + gas_adjustment is the adjustment factor to be multiplied + against the estimate returned by the tx simulation + description: >- + CalculateTxFeesRequest is the request type for the Query RPC method. + tags: + - Query + /provenance/name/v1/lookup/{address}: + get: + summary: ReverseLookup queries for all names bound against a given address + operationId: ReverseLookup + responses: + '200': + description: A successful response. + schema: + type: object + properties: + name: + type: array + items: + type: string + title: an array of names bound against a given address + pagination: + description: pagination defines an optional pagination for the request. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryReverseLookupResponse is the response type for the + Query/Resolve method. default: description: An unexpected error response. schema: @@ -55348,394 +67348,577 @@ paths: type: string format: byte parameters: - - name: session_id - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, - e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - - provided. + - name: address + description: address to find name records for in: path required: true type: string - - name: record_addr - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. in: query required: false type: string - - name: scope_id + format: byte + - name: pagination.offset description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + offset is a numeric offset that can be used when key is unavailable. - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - in: query - required: false - type: string - - name: name - description: name is the name of the record to look for. + It is less efficient than using key. Only one of offset or key + should + + be set. in: query required: false type: string - - name: include_scope + format: uint64 + - name: pagination.limit description: >- - include_scope is a flag for whether to include the the scope - containing these records in the response. + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. in: query required: false - type: boolean - - name: include_sessions + type: string + format: uint64 + - name: pagination.count_total description: >- - include_sessions is a flag for whether to include the sessions - containing these records in the response. + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. in: query required: false type: boolean - - name: exclude_id_info + - name: pagination.reverse description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. + tags: + - Query + /provenance/name/v1/params: + get: + summary: Params queries params of the name module. + operationId: NameParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_segment_length: + type: integer + format: int64 + title: maximum length of name segment to allow + min_segment_length: + type: integer + format: int64 + title: minimum length of name segment to allow + max_name_levels: + type: integer + format: int64 + title: >- + maximum number of name segments to allow. Example: + `foo.bar.baz` would be 3 + allow_unrestricted_names: + type: boolean + title: determines if unrestricted name keys are allowed or not + description: >- + QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + tags: + - Query + /provenance/name/v1/resolve/{name}: + get: + summary: Resolve queries for the address associated with a given name + operationId: Resolve + responses: + '200': + description: A successful response. + schema: + type: object + properties: + address: + type: string + title: a string containing the address the name resolves to + restricted: + type: boolean + description: Whether owner signature is required to add sub-names. + description: >- + QueryResolveResponse is the response type for the Query/Resolve + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: name + description: name to resolve the address for + in: path + required: true + type: string + tags: + - Query + /provenance/oracle/v1/oracle: + get: + summary: Oracle forwards a query to the module's oracle + operationId: Oracle + responses: + '200': + description: A successful response. + schema: + type: object + properties: + data: + type: string + format: byte + description: Data contains the json data returned from the oracle. + description: >- + QueryOracleResponse contains the result of the query sent to the + oracle. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: query + description: Query contains the query data passed to the oracle. in: query required: false - type: boolean + type: string + format: byte tags: - Query - /provenance/metadata/v1/sessions/all: + /provenance/oracle/v1/oracle_address: get: - summary: SessionsAll retrieves all sessions. - operationId: SessionsAll + summary: OracleAddress returns the address of the oracle + operationId: OracleAddress responses: '200': description: A successful response. schema: type: object properties: - sessions: + address: + type: string + title: The address of the oracle + description: QueryOracleAddressResponse contains the address of the oracle. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - session: - type: object - properties: - session_id: - type: string - format: byte - specification_id: - type: string - format: byte - description: >- - unique id of the contract specification that was - used to create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of - the processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: - PARTY_TYPE_UNSPECIFIED is an error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role - associated with a contract - title: >- - parties is the set of identities that signed this - contract - name: - type: string - title: >- - name to associate with this session execution - context, typically classname - context: - type: string - format: byte - description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, - and related info. - type: object - properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: - type: string - title: >- - the address of the account that created this - record - updated_date: - type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: - type: string - title: >- - the address of the account that modified this - record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented - with each update - message: - type: string - title: >- - an optional message associated with the - creation/update event - title: >- - AuditFields capture information about the last - account to make modifications and when they were - made + type_url: + type: string + value: + type: string + format: byte + tags: + - Query + /provenance/rewards/v1/claim_period_reward_distributions: + get: + summary: >- + ClaimPeriodRewardDistributions returns a list of claim period reward + distributions matching the claim_status. + operationId: ClaimPeriodRewardDistributions + responses: + '200': + description: A successful response. + schema: + type: object + properties: + claim_period_reward_distributions: + type: array + items: + type: object + properties: + claim_period_id: + type: string + format: uint64 + description: The claim period id. + reward_program_id: + type: string + format: uint64 description: >- - Session defines an execution context against a specific - specification instance. - - The context will have a specification and set of parties - involved. - - - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: + The id of the reward program that this reward belongs + to. + total_rewards_pool_for_claim_period: description: >- - session_id_info contains information about the - id/address of the session. + The sum of all the granted rewards for this claim + period. type: object properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: >- - session_id_prefix is the prefix portion of the - session_id. - session_id_scope_uuid: - type: string - format: byte - description: >- - session_id_scope_uuid is the scope_uuid portion of - the session_id. - session_id_session_uuid: - type: string - format: byte - description: >- - session_id_session_uuid is the session_uuid portion - of the session_id. - session_addr: + denom: type: string - description: >- - session_addr is the bech32 string version of the - session_id. - session_uuid: + amount: type: string - description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id - referenced in the session_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: >- - scope_id_prefix is the prefix portion of the - scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of - the scope_id. - scope_addr: - type: string - description: >- - scope_addr is the bech32 string version of the - scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - contract_spec_id_info: - description: >- - contract_spec_id_info contains information about the - id/address of the contract specification. + rewards_pool: + description: The final allocated rewards for this claim period. type: object properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: + denom: type: string - description: >- - contract_spec_addr is the bech32 string version of - the contract_spec_id. - contract_spec_uuid: + amount: type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - SessionWrapper contains a single session and some extra - identifiers for it. - description: sessions are the wrapped sessions. - request: - description: request is a copy of the request that generated these results. + total_shares: + type: string + format: int64 + description: >- + The total number of granted shares for this claim + period. + claim_period_ended: + type: boolean + description: >- + A flag representing if the claim period for this reward + has ended. + description: >- + ClaimPeriodRewardDistribution, this is updated at the end of + every claim period. + description: List of all ClaimPeriodRewardDistribution objects queried for. + pagination: + description: pagination defines an optional pagination for the response. type: object properties: - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id - info from the response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - pagination: - description: >- - pagination defines optional pagination parameters for the - request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to - begin - - querying the next page most efficiently. Only one of - offset or key + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key - is unavailable. + was set, its value is undefined otherwise + title: >- + QueryClaimPeriodRewardDistributionsResponse returns the list of + paginated ClaimPeriodRewardDistributions + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. - It is less efficient than using key. Only one of - offset or key should + It is less efficient than using key. Only one of offset or key + should - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in - the result page. + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the - result set should include + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include - a count of the total number of items available for - pagination in UIs. + a count of the total number of items available for pagination in + UIs. - count_total is only respected when offset is used. It - is ignored when key + count_total is only respected when offset is used. It is ignored + when key - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned - in the descending order. + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /provenance/rewards/v1/claim_period_reward_distributions/{reward_id}/claim_periods/{claim_period_id}: + get: + summary: >- + ClaimPeriodRewardDistributionsByID returns a claim period reward + distribution matching the ID. + operationId: ClaimPeriodRewardDistributionsByID + responses: + '200': + description: A successful response. + schema: + type: object + properties: + claim_period_reward_distribution: + type: object + properties: + claim_period_id: + type: string + format: uint64 + description: The claim period id. + reward_program_id: + type: string + format: uint64 + description: The id of the reward program that this reward belongs to. + total_rewards_pool_for_claim_period: + description: The sum of all the granted rewards for this claim period. + type: object + properties: + denom: + type: string + amount: + type: string + rewards_pool: + description: The final allocated rewards for this claim period. + type: object + properties: + denom: + type: string + amount: + type: string + total_shares: + type: string + format: int64 + description: The total number of granted shares for this claim period. + claim_period_ended: + type: boolean + description: >- + A flag representing if the claim period for this reward + has ended. + description: >- + ClaimPeriodRewardDistribution, this is updated at the end of + every claim period. + title: >- + QueryClaimPeriodRewardDistributionsByIDResponse returns the + requested ClaimPeriodRewardDistribution + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: reward_id + description: >- + The reward program that the claim period reward distribution belongs + to. + in: path + required: true + type: string + format: uint64 + - name: claim_period_id + description: >- + The claim period that the claim period reward distribution was + created for. + in: path + required: true + type: string + format: uint64 + tags: + - Query + /provenance/rewards/v1/reward_claims/{address}: + get: + summary: >- + RewardDistributionsByAddress returns a list of reward claims belonging + to the account and matching the claim - pagination. Ex: + status. + operationId: RewardDistributionsByAddress + responses: + '200': + description: A successful response. + schema: + type: object + properties: + address: + type: string + description: The address that the reward account belongs to. + reward_account_state: + type: array + items: + type: object + properties: + reward_program_id: + type: string + format: uint64 + description: The id of the reward program that this claim belongs to. + total_reward_claim: + description: >- + total rewards claimed for all eligible claim periods in + program. + type: object + properties: + denom: + type: string + amount: + type: string + claim_status: + description: The status of the claim. + type: string + enum: + - CLAIM_STATUS_UNSPECIFIED + - CLAIM_STATUS_UNCLAIMABLE + - CLAIM_STATUS_CLAIMABLE + - CLAIM_STATUS_CLAIMED + - CLAIM_STATUS_EXPIRED + default: CLAIM_STATUS_UNSPECIFIED + title: ClaimStatus is the state a claim is in + claim_id: + type: string + format: uint64 + description: The claim period that the claim belongs to. + description: >- + RewardAccountResponse is an address' reward claim for a + reward program's claim period. + description: List of RewardAccounts queried for. pagination: - description: >- - pagination provides the pagination information of this - response. + description: pagination defines an optional pagination for the response. type: object properties: next_key: @@ -55754,8 +67937,8 @@ paths: was set, its value is undefined otherwise description: >- - SessionsAllResponse is the response type for the Query/SessionsAll - RPC method. + QueryRewardDistributionsByAddressResponse returns the reward + claims for an address that match the claim_status. default: description: An unexpected error response. schema: @@ -55779,20 +67962,30 @@ paths: type: string format: byte parameters: - - name: exclude_id_info - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. - in: query - required: false - type: boolean - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. + - name: address + description: The address that the claim belongs to. + in: path + required: true + type: string + - name: claim_status + description: |- + The status that the reward account must have. + + - CLAIM_STATUS_UNSPECIFIED: undefined state + - CLAIM_STATUS_UNCLAIMABLE: unclaimable status + - CLAIM_STATUS_CLAIMABLE: unclaimable claimable + - CLAIM_STATUS_CLAIMED: unclaimable claimed + - CLAIM_STATUS_EXPIRED: unclaimable expired in: query required: false - type: boolean + type: string + enum: + - CLAIM_STATUS_UNSPECIFIED + - CLAIM_STATUS_UNCLAIMABLE + - CLAIM_STATUS_CLAIMABLE + - CLAIM_STATUS_CLAIMED + - CLAIM_STATUS_EXPIRED + default: CLAIM_STATUS_UNSPECIFIED - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -55851,101 +68044,270 @@ paths: type: boolean tags: - Query - /provenance/metadata/v1/valueownership/{address}: + /provenance/rewards/v1/reward_programs: get: summary: >- - ValueOwnership returns the scope identifiers that list the given address - as the value owner. - operationId: ValueOwnership + RewardPrograms returns a list of reward programs matching the query + type. + operationId: RewardPrograms responses: '200': description: A successful response. schema: type: object properties: - scope_uuids: + reward_programs: type: array items: - type: string - description: A list of scope ids (uuid) associated with the given address. - request: - description: request is a copy of the request that generated these results. - type: object - properties: - address: - type: string - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this - request in your result. - pagination: - description: >- - pagination defines optional pagination parameters for the - request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to - begin - - querying the next page most efficiently. Only one of - offset or key - - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key - is unavailable. - - It is less efficient than using key. Only one of - offset or key should - - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in - the result page. - - If left empty it will default to a value to be set by - each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the - result set should include - - a count of the total number of items available for - pagination in UIs. - - count_total is only respected when offset is used. It - is ignored when key - - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned - in the descending order. + type: object + properties: + id: + type: string + format: uint64 + description: An integer to uniquely identify the reward program. + title: + type: string + title: >- + Name to help identify the Reward + Program.(MaxTitleLength=140) + description: + type: string + title: >- + Short summary describing the Reward + Program.(MaxDescriptionLength=10000) + distribute_from_address: + type: string + description: address that provides funds for the total reward pool. + total_reward_pool: + description: The total amount of funding given to the RewardProgram. + type: object + properties: + denom: + type: string + amount: + type: string + remaining_pool_balance: + description: >- + The remaining funds available to distribute after n + claim periods have passed. + type: object + properties: + denom: + type: string + amount: + type: string + claimed_amount: + description: >- + The total amount of all funds claimed by participants + for all past claim periods. + type: object + properties: + denom: + type: string + amount: + type: string + max_reward_by_address: + description: Maximum reward per claim period per address. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_rollover_amount: + description: Minimum amount of coins for a program to rollover. + type: object + properties: + denom: + type: string + amount: + type: string + claim_period_seconds: + type: string + format: uint64 + description: Number of seconds that a claim period lasts. + program_start_time: + type: string + format: date-time + description: >- + Time that a RewardProgram should start and switch to + STARTED state. + expected_program_end_time: + type: string + format: date-time + description: >- + Time that a RewardProgram is expected to end, based on + data when it was setup. + program_end_time_max: + type: string + format: date-time + description: Time that a RewardProgram MUST end. + claim_period_end_time: + type: string + format: date-time + description: >- + Used internally to calculate and track the current claim + period's ending time. + actual_program_end_time: + type: string + format: date-time + description: >- + Time the RewardProgram switched to FINISHED state. + Initially set as empty. + claim_periods: + type: string + format: uint64 + description: Number of claim periods this program will run for. + current_claim_period: + type: string + format: uint64 + description: >- + Current claim period of the RewardProgram. Uses 1-based + indexing. + max_rollover_claim_periods: + type: string + format: uint64 + description: >- + maximum number of claim periods a reward program can + rollover. + state: + description: Current state of the RewardProgram. + type: string + enum: + - STATE_UNSPECIFIED + - STATE_PENDING + - STATE_STARTED + - STATE_FINISHED + - STATE_EXPIRED + default: STATE_UNSPECIFIED + title: State is the state of the reward program + expiration_offset: + type: string + format: uint64 + description: >- + Grace period after a RewardProgram FINISHED. It is the + number of seconds until a RewardProgram enters the + EXPIRED + state. + qualifying_actions: + type: array + items: + type: object + properties: + delegate: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful delegates. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful delegates. + minimum_delegation_amount: + description: >- + Minimum amount that the user must have + currently delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + maximum_delegation_amount: + description: >- + Maximum amount that the user must have + currently delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_active_stake_percentile: + type: string + description: >- + Minimum percentile that can be below the + validator's power ranking. + maximum_active_stake_percentile: + type: string + description: >- + Maximum percentile that can be below the + validator's power ranking. + description: >- + ActionDelegate represents the delegate action and + its required eligibility criteria. + transfer: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful transfers. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful transfers. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must + have across all validators, for the transfer + action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + ActionTransfer represents the transfer action and + its required eligibility criteria. + vote: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful votes. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful votes. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must + have across all validators, for the vote + action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + validator_multiplier: + type: string + format: uint64 + title: >- + Positive multiplier that is applied to the + shares awarded by the vote action when + conditions - Since: cosmos-sdk 0.43 - title: >- - PageRequest is to be embedded in gRPC request messages for - efficient + are met(for now the only condition is the + current vote is a validator vote). A value of + zero will behave the same - pagination. Ex: + as one + description: >- + ActionVote represents the voting action and its + required eligibility criteria. + description: QualifyingAction can be one of many action types. + description: Actions that count towards the reward. + title: RewardProgram + description: List of RewardProgram objects matching the query_type. pagination: - description: >- - pagination provides the pagination information of this - response. + description: pagination defines an optional pagination for the response. type: object properties: next_key: @@ -55963,9 +68325,9 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - description: >- - ValueOwnershipResponse is the response type for the - Query/ValueOwnership RPC method. + title: >- + QueryRewardProgramsResponse contains the list of RewardPrograms + matching the query default: description: An unexpected error response. schema: @@ -55989,17 +68351,27 @@ paths: type: string format: byte parameters: - - name: address - in: path - required: true - type: string - - name: include_request - description: >- - include_request is a flag for whether to include this request in - your result. + - name: query_type + description: |- + A filter on the types of reward programs. + + - QUERY_TYPE_UNSPECIFIED: unspecified type + - QUERY_TYPE_ALL: all reward programs states + - QUERY_TYPE_PENDING: pending reward program state= + - QUERY_TYPE_ACTIVE: active reward program state + - QUERY_TYPE_OUTSTANDING: pending and active reward program states + - QUERY_TYPE_FINISHED: finished reward program state in: query required: false - type: boolean + type: string + enum: + - QUERY_TYPE_UNSPECIFIED + - QUERY_TYPE_ALL + - QUERY_TYPE_PENDING + - QUERY_TYPE_ACTIVE + - QUERY_TYPE_OUTSTANDING + - QUERY_TYPE_FINISHED + default: QUERY_TYPE_UNSPECIFIED - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -56058,206 +68430,266 @@ paths: type: boolean tags: - Query - /provenance/name/v1/lookup/{address}: + /provenance/rewards/v1/reward_programs/{id}: get: - summary: ReverseLookup queries for all names bound against a given address - operationId: ReverseLookup + summary: RewardProgramByID returns a reward program matching the ID. + operationId: RewardProgramByID responses: '200': description: A successful response. schema: type: object properties: - name: - type: array - items: - type: string - title: an array of names bound against a given address - pagination: - description: pagination defines an optional pagination for the request. + reward_program: type: object properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + id: type: string format: uint64 + description: An integer to uniquely identify the reward program. + title: + type: string title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - QueryReverseLookupResponse is the response type for the - Query/Resolve method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - parameters: - - name: address - description: address to find name records for - in: path - required: true - type: string - - name: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. - in: query - required: false - type: string - format: byte - - name: pagination.offset - description: >- - offset is a numeric offset that can be used when key is unavailable. - - It is less efficient than using key. Only one of offset or key - should - - be set. - in: query - required: false - type: string - format: uint64 - - name: pagination.limit - description: >- - limit is the total number of results to be returned in the result - page. - - If left empty it will default to a value to be set by each app. - in: query - required: false - type: string - format: uint64 - - name: pagination.count_total - description: >- - count_total is set to true to indicate that the result set should - include - - a count of the total number of items available for pagination in - UIs. - - count_total is only respected when offset is used. It is ignored - when key + Name to help identify the Reward + Program.(MaxTitleLength=140) + description: + type: string + title: >- + Short summary describing the Reward + Program.(MaxDescriptionLength=10000) + distribute_from_address: + type: string + description: address that provides funds for the total reward pool. + total_reward_pool: + description: The total amount of funding given to the RewardProgram. + type: object + properties: + denom: + type: string + amount: + type: string + remaining_pool_balance: + description: >- + The remaining funds available to distribute after n claim + periods have passed. + type: object + properties: + denom: + type: string + amount: + type: string + claimed_amount: + description: >- + The total amount of all funds claimed by participants for + all past claim periods. + type: object + properties: + denom: + type: string + amount: + type: string + max_reward_by_address: + description: Maximum reward per claim period per address. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_rollover_amount: + description: Minimum amount of coins for a program to rollover. + type: object + properties: + denom: + type: string + amount: + type: string + claim_period_seconds: + type: string + format: uint64 + description: Number of seconds that a claim period lasts. + program_start_time: + type: string + format: date-time + description: >- + Time that a RewardProgram should start and switch to + STARTED state. + expected_program_end_time: + type: string + format: date-time + description: >- + Time that a RewardProgram is expected to end, based on + data when it was setup. + program_end_time_max: + type: string + format: date-time + description: Time that a RewardProgram MUST end. + claim_period_end_time: + type: string + format: date-time + description: >- + Used internally to calculate and track the current claim + period's ending time. + actual_program_end_time: + type: string + format: date-time + description: >- + Time the RewardProgram switched to FINISHED state. + Initially set as empty. + claim_periods: + type: string + format: uint64 + description: Number of claim periods this program will run for. + current_claim_period: + type: string + format: uint64 + description: >- + Current claim period of the RewardProgram. Uses 1-based + indexing. + max_rollover_claim_periods: + type: string + format: uint64 + description: >- + maximum number of claim periods a reward program can + rollover. + state: + description: Current state of the RewardProgram. + type: string + enum: + - STATE_UNSPECIFIED + - STATE_PENDING + - STATE_STARTED + - STATE_FINISHED + - STATE_EXPIRED + default: STATE_UNSPECIFIED + title: State is the state of the reward program + expiration_offset: + type: string + format: uint64 + description: >- + Grace period after a RewardProgram FINISHED. It is the + number of seconds until a RewardProgram enters the EXPIRED - is set. - in: query - required: false - type: boolean - - name: pagination.reverse - description: >- - reverse is set to true if results are to be returned in the - descending order. + state. + qualifying_actions: + type: array + items: + type: object + properties: + delegate: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful delegates. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful delegates. + minimum_delegation_amount: + description: >- + Minimum amount that the user must have currently + delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + maximum_delegation_amount: + description: >- + Maximum amount that the user must have currently + delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_active_stake_percentile: + type: string + description: >- + Minimum percentile that can be below the + validator's power ranking. + maximum_active_stake_percentile: + type: string + description: >- + Maximum percentile that can be below the + validator's power ranking. + description: >- + ActionDelegate represents the delegate action and + its required eligibility criteria. + transfer: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful transfers. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful transfers. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have + across all validators, for the transfer action + to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + ActionTransfer represents the transfer action and + its required eligibility criteria. + vote: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful votes. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful votes. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have + across all validators, for the vote action to be + counted. + type: object + properties: + denom: + type: string + amount: + type: string + validator_multiplier: + type: string + format: uint64 + title: >- + Positive multiplier that is applied to the + shares awarded by the vote action when + conditions + are met(for now the only condition is the + current vote is a validator vote). A value of + zero will behave the same - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /provenance/name/v1/params: - get: - summary: Params queries params of the name module. - operationId: NameParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - params: - description: params defines the parameters of the module. - type: object - properties: - max_segment_length: - type: integer - format: int64 - title: maximum length of name segment to allow - min_segment_length: - type: integer - format: int64 - title: minimum length of name segment to allow - max_name_levels: - type: integer - format: int64 - title: >- - maximum number of name segments to allow. Example: - `foo.bar.baz` would be 3 - allow_unrestricted_names: - type: boolean - title: determines if unrestricted name keys are allowed or not - description: >- - QueryParamsResponse is the response type for the Query/Params RPC - method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - tags: - - Query - /provenance/name/v1/resolve/{name}: - get: - summary: Resolve queries for the address associated with a given name - operationId: Resolve - responses: - '200': - description: A successful response. - schema: - type: object - properties: - address: - type: string - title: a string containing the address the name resolves to - restricted: - type: boolean - description: Whether owner signature is required to add sub-names. - description: >- - QueryResolveResponse is the response type for the Query/Resolve - method. + as one + description: >- + ActionVote represents the voting action and its + required eligibility criteria. + description: QualifyingAction can be one of many action types. + description: Actions that count towards the reward. + title: RewardProgram + description: The reward program object that was queried for. + title: >- + QueryRewardProgramByIDResponse contains the requested + RewardProgram default: description: An unexpected error response. schema: @@ -56281,69 +68713,31 @@ paths: type: string format: byte parameters: - - name: name - description: name to resolve the address for + - name: id + description: The id of the reward program to query. in: path required: true type: string + format: uint64 tags: - Query - /provenance/msgfees/v1/all: + /cosmos/sanction/v1beta1/all: get: - summary: Query all Msgs which have fees associated with them. - operationId: QueryAllMsgFees + summary: SanctionedAddresses returns a list of sanctioned addresses. + operationId: SanctionedAddresses responses: '200': description: A successful response. schema: type: object properties: - msg_fees: + addresses: type: array items: - type: object - properties: - msg_type_url: - type: string - additional_fee: - title: >- - additional_fee can pay in any Coin( basically a Denom - and Amount, Amount can be zero) - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the - custom method - - signatures required by gogoproto. - recipient: - type: string - recipient_basis_points: - type: integer - format: int64 - title: >- - MsgFee is the core of what gets stored on the blockchain - - it consists of four parts - - 1. the msg type url, i.e. /cosmos.bank.v1beta1.MsgSend - - 2. minimum additional fees(can be of any denom) - - 3. optional recipient of fee based on - `recipient_basis_points` - - 4. if recipient is declared they will recieve the basis - points of the fee (0-10,000) + type: string + description: addresses is the list of sanctioned account addresses. pagination: - description: pagination defines an optional pagination for the request. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -56361,7 +68755,9 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - title: response for querying all msg's with fees associated with them + description: >- + QuerySanctionedAddressesResponse defines the RPC response of a + SanctionedAddresses query. default: description: An unexpected error response. schema: @@ -56443,48 +68839,22 @@ paths: type: boolean tags: - Query - /provenance/msgfees/v1/params: + /cosmos/sanction/v1beta1/check/{address}: get: - summary: Params queries the parameters for x/msgfees - operationId: MsgFeeParams + summary: IsSanctioned checks if an account has been sanctioned. + operationId: IsSanctioned responses: '200': description: A successful response. schema: type: object properties: - params: - description: params defines the parameters of the module. - type: object - properties: - floor_gas_price: - title: >- - constant used to calculate fees when gas fees shares denom - with msg fee - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the - custom method - - signatures required by gogoproto. - nhash_per_usd_mil: - type: string - format: uint64 - title: total nhash per usd mil for converting usd to nhash - conversion_fee_denom: - type: string - title: conversion fee denom is the denom usd is converted to + is_sanctioned: + type: boolean + description: is_sanctioned is true if the address is sanctioned. description: >- - QueryParamsResponse is the response type for the Query/Params RPC - method. + QueryIsSanctionedResponse defines the RPC response of an + IsSanctioned query. default: description: An unexpected error response. schema: @@ -56507,70 +68877,84 @@ paths: value: type: string format: byte + parameters: + - name: address + in: path + required: true + type: string tags: - Query - /provenance/tx/v1/calculate_msg_based_fee: - post: - summary: >- - CalculateTxFees simulates executing a transaction for estimating gas - usage and additional fees. - operationId: CalculateTxFees + /cosmos/sanction/v1beta1/params: + get: + summary: Params returns the sanction module's params. + operationId: SanctionParams responses: '200': description: A successful response. schema: type: object properties: - additional_fees: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + params: + description: params are the sanction module parameters. + type: object + properties: + immediate_sanction_min_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Int which implements the custom - method + NOTE: The amount field is an Int which implements the + custom method - signatures required by gogoproto. - title: >- - additional_fees are the amount of coins to be for addition msg - fees - total_fees: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + signatures required by gogoproto. + description: >- + immediate_sanction_min_deposit is the minimum deposit for + a sanction to happen immediately. + If this is zero, immediate sanctioning is not available. - NOTE: The amount field is an Int which implements the custom - method + Otherwise, if a sanction governance proposal is issued + with a deposit at least this large, a temporary sanction - signatures required by gogoproto. - description: >- - total_fees are the total amount of fees needed for the - transactions (msg fees + gas fee) + will be immediately issued that will expire when voting + ends on the governance proposal. + immediate_unsanction_min_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - note: the gas fee is calculated with the floor gas price - module param. - estimated_gas: - type: string - format: uint64 - title: estimated_gas is the amount of gas needed for the transaction - description: >- - CalculateTxFeesResponse is the response type for the Query RPC - method. + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + immediate_unsanction_min_deposit is the minimum deposit + for an unsanction to happen immediately. + + If this is zero, immediate unsanctioning is not available. + + Otherwise, if an unsanction governance proposal is issued + with a deposit at least this large, a temporary + + unsanction will be immediately issued that will expire + when voting ends on the governance proposal. + description: QueryParamsResponse defines the RPC response of a Params query. default: description: An unexpected error response. schema: @@ -56593,95 +68977,45 @@ paths: value: type: string format: byte - parameters: - - name: body - in: body - required: true - schema: - type: object - properties: - tx_bytes: - type: string - format: byte - description: tx_bytes is the transaction to simulate. - default_base_denom: - type: string - description: |- - default_base_denom is used to set the denom used for gas fees - if not set it will default to nhash. - gas_adjustment: - type: number - format: float - title: >- - gas_adjustment is the adjustment factor to be multiplied - against the estimate returned by the tx simulation - description: >- - CalculateTxFeesRequest is the request type for the Query RPC - method. tags: - Query - /provenance/rewards/v1/claim_period_reward_distributions: + /cosmos/sanction/v1beta1/temp: get: - summary: >- - ClaimPeriodRewardDistributions returns a list of claim period reward - distributions matching the claim_status. - operationId: ClaimPeriodRewardDistributions + summary: TemporaryEntries returns temporary sanction/unsanction info. + operationId: TemporaryEntries responses: '200': description: A successful response. schema: type: object properties: - claim_period_reward_distributions: + entries: type: array items: type: object properties: - claim_period_id: + address: type: string - format: uint64 - description: The claim period id. - reward_program_id: + description: address is the address of this temporary entry. + proposal_id: type: string format: uint64 description: >- - The id of the reward program that this reward belongs - to. - total_rewards_pool_for_claim_period: - description: >- - The sum of all the granted rewards for this claim - period. - type: object - properties: - denom: - type: string - amount: - type: string - rewards_pool: - description: The final allocated rewards for this claim period. - type: object - properties: - denom: - type: string - amount: - type: string - total_shares: + proposal_id is the governance proposal id associated + with this temporary entry. + status: + description: status is whether the entry is a sanction or unsanction. type: string - format: int64 - description: >- - The total number of granted shares for this claim - period. - claim_period_ended: - type: boolean - description: >- - A flag representing if the claim period for this reward - has ended. + enum: + - TEMP_STATUS_UNSPECIFIED + - TEMP_STATUS_SANCTIONED + - TEMP_STATUS_UNSANCTIONED + default: TEMP_STATUS_UNSPECIFIED description: >- - ClaimPeriodRewardDistribution, this is updated at the end of - every claim period. - description: List of all ClaimPeriodRewardDistribution objects queried for. + TemporaryEntry defines the information involved in a + temporary sanction or unsanction. pagination: - description: pagination defines an optional pagination for the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -56699,9 +69033,9 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - title: >- - QueryClaimPeriodRewardDistributionsResponse returns the list of - paginated ClaimPeriodRewardDistributions + description: >- + QueryTemporaryEntriesResponse defines the RPC response of a + TemporaryEntries query. default: description: An unexpected error response. schema: @@ -56725,6 +69059,11 @@ paths: type: string format: byte parameters: + - name: address + description: address is an optional address to restrict results to. + in: query + required: false + type: string - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -56736,203 +69075,325 @@ paths: format: byte - name: pagination.offset description: >- - offset is a numeric offset that can be used when key is unavailable. - - It is less efficient than using key. Only one of offset or key - should - - be set. - in: query - required: false - type: string - format: uint64 - - name: pagination.limit - description: >- - limit is the total number of results to be returned in the result - page. - - If left empty it will default to a value to be set by each app. - in: query - required: false - type: string - format: uint64 - - name: pagination.count_total - description: >- - count_total is set to true to indicate that the result set should - include - - a count of the total number of items available for pagination in - UIs. - - count_total is only respected when offset is used. It is ignored - when key - - is set. - in: query - required: false - type: boolean - - name: pagination.reverse - description: >- - reverse is set to true if results are to be returned in the - descending order. - - - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /provenance/rewards/v1/claim_period_reward_distributions/{reward_id}/claim_periods/{claim_period_id}: - get: - summary: >- - ClaimPeriodRewardDistributionsByID returns a claim period reward - distribution matching the ID. - operationId: ClaimPeriodRewardDistributionsByID - responses: - '200': - description: A successful response. - schema: - type: object - properties: - claim_period_reward_distribution: - type: object - properties: - claim_period_id: - type: string - format: uint64 - description: The claim period id. - reward_program_id: - type: string - format: uint64 - description: The id of the reward program that this reward belongs to. - total_rewards_pool_for_claim_period: - description: The sum of all the granted rewards for this claim period. - type: object - properties: - denom: - type: string - amount: - type: string - rewards_pool: - description: The final allocated rewards for this claim period. - type: object - properties: - denom: - type: string - amount: - type: string - total_shares: - type: string - format: int64 - description: The total number of granted shares for this claim period. - claim_period_ended: - type: boolean - description: >- - A flag representing if the claim period for this reward - has ended. - description: >- - ClaimPeriodRewardDistribution, this is updated at the end of - every claim period. - title: >- - QueryClaimPeriodRewardDistributionsByIDResponse returns the - requested ClaimPeriodRewardDistribution - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - parameters: - - name: reward_id - description: >- - The reward program that the claim period reward distribution belongs - to. - in: path - required: true + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false type: string format: uint64 - - name: claim_period_id + - name: pagination.limit description: >- - The claim period that the claim period reward distribution was - created for. - in: path - required: true + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false type: string format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean tags: - Query - /provenance/rewards/v1/reward_claims/{address}: + /provenance/trigger/v1/triggers: get: - summary: >- - RewardDistributionsByAddress returns a list of reward claims belonging - to the account and matching the claim - - status. - operationId: RewardDistributionsByAddress + summary: Triggers returns the list of triggers. + operationId: Triggers responses: '200': description: A successful response. schema: type: object properties: - address: - type: string - description: The address that the reward account belongs to. - reward_account_state: + triggers: type: array items: type: object properties: - reward_program_id: + id: type: string format: uint64 - description: The id of the reward program that this claim belongs to. - total_reward_claim: - description: >- - total rewards claimed for all eligible claim periods in - program. + description: An integer to uniquely identify the trigger. + owner: + type: string + description: The owner of the trigger. + event: + description: The event that must be detected for the trigger to fire. type: object properties: - denom: + type_url: type: string - amount: + description: >- + A URL/resource name that uniquely identifies the + type of the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's + path must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be + in a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the + binary all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can + optionally set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results + based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available + in the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty + scheme) might be + + used with implementation specific semantics. + value: type: string - claim_status: - description: The status of the claim. - type: string - enum: - - CLAIM_STATUS_UNSPECIFIED - - CLAIM_STATUS_UNCLAIMABLE - - CLAIM_STATUS_CLAIMABLE - - CLAIM_STATUS_CLAIMED - - CLAIM_STATUS_EXPIRED - default: CLAIM_STATUS_UNSPECIFIED - title: ClaimStatus is the state a claim is in - claim_id: - type: string - format: uint64 - description: The claim period that the claim belongs to. - description: >- - RewardAccountResponse is an address' reward claim for a - reward program's claim period. - description: List of RewardAccounts queried for. + format: byte + description: >- + Must be a valid serialized protocol buffer of the + above specified type. + actions: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the + type of the serialized + + protocol buffer message. This string must contain + at least + + one "/" character. The last segment of the URL's + path must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should + be in a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the + binary all types that they + + expect it to use in the context of Any. However, + for URLs which use the + + scheme `http`, `https`, or no scheme, one can + optionally set up a type + + server that maps type URLs to message definitions + as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results + based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently + available in the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty + scheme) might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the + above specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any + values in the form + + of utility functions or additional generated methods + of the Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL + and the unpack + + methods only use the fully qualified type name after + the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will + yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the + regular + + representation of the deserialized, embedded message, + with an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a + custom JSON + + representation, that representation will be embedded + adding a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message + [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: The messages to run when the trigger fires. + title: Trigger + description: List of Trigger objects. pagination: description: pagination defines an optional pagination for the response. type: object @@ -56952,9 +69413,7 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryRewardDistributionsByAddressResponse returns the reward - claims for an address that match the claim_status. + description: QueryTriggersResponse contains the list of Triggers. default: description: An unexpected error response. schema: @@ -56974,34 +69433,177 @@ paths: properties: type_url: type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte - parameters: - - name: address - description: The address that the claim belongs to. - in: path - required: true - type: string - - name: claim_status - description: |- - The status that the reward account must have. + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a - - CLAIM_STATUS_UNSPECIFIED: undefined state - - CLAIM_STATUS_UNCLAIMABLE: unclaimable status - - CLAIM_STATUS_CLAIMABLE: unclaimable claimable - - CLAIM_STATUS_CLAIMED: unclaimable claimed - - CLAIM_STATUS_EXPIRED: unclaimable expired - in: query - required: false - type: string - enum: - - CLAIM_STATUS_UNSPECIFIED - - CLAIM_STATUS_UNCLAIMABLE - - CLAIM_STATUS_CLAIMABLE - - CLAIM_STATUS_CLAIMED - - CLAIM_STATUS_EXPIRED - default: CLAIM_STATUS_UNSPECIFIED + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -57060,290 +69662,277 @@ paths: type: boolean tags: - Query - /provenance/rewards/v1/reward_programs: + /provenance/trigger/v1/triggers/{id}: get: - summary: >- - RewardPrograms returns a list of reward programs matching the query - type. - operationId: RewardPrograms + summary: TriggerByID returns a trigger matching the ID. + operationId: TriggerByID responses: '200': description: A successful response. schema: type: object properties: - reward_programs: - type: array - items: - type: object - properties: - id: - type: string - format: uint64 - description: An integer to uniquely identify the reward program. - title: - type: string - title: >- - Name to help identify the Reward - Program.(MaxTitleLength=140) - description: - type: string - title: >- - Short summary describing the Reward - Program.(MaxDescriptionLength=10000) - distribute_from_address: - type: string - description: address that provides funds for the total reward pool. - total_reward_pool: - description: The total amount of funding given to the RewardProgram. - type: object - properties: - denom: - type: string - amount: - type: string - remaining_pool_balance: - description: >- - The remaining funds available to distribute after n - claim periods have passed. - type: object - properties: - denom: - type: string - amount: - type: string - claimed_amount: - description: >- - The total amount of all funds claimed by participants - for all past claim periods. - type: object - properties: - denom: - type: string - amount: - type: string - max_reward_by_address: - description: Maximum reward per claim period per address. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_rollover_amount: - description: Minimum amount of coins for a program to rollover. + trigger: + type: object + properties: + id: + type: string + format: uint64 + description: An integer to uniquely identify the trigger. + owner: + type: string + description: The owner of the trigger. + event: + description: The event that must be detected for the trigger to fire. + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type + of the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be + in a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can + optionally set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results + based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty + scheme) might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the + above specified type. + actions: + type: array + items: type: object properties: - denom: + type_url: type: string - amount: + description: >- + A URL/resource name that uniquely identifies the + type of the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's + path must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be + in a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the + binary all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can + optionally set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results + based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available + in the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty + scheme) might be + + used with implementation specific semantics. + value: type: string - claim_period_seconds: - type: string - format: uint64 - description: Number of seconds that a claim period lasts. - program_start_time: - type: string - format: date-time - description: >- - Time that a RewardProgram should start and switch to - STARTED state. - expected_program_end_time: - type: string - format: date-time - description: >- - Time that a RewardProgram is expected to end, based on - data when it was setup. - program_end_time_max: - type: string - format: date-time - description: Time that a RewardProgram MUST end. - claim_period_end_time: - type: string - format: date-time - description: >- - Used internally to calculate and track the current claim - period's ending time. - actual_program_end_time: - type: string - format: date-time - description: >- - Time the RewardProgram switched to FINISHED state. - Initially set as empty. - claim_periods: - type: string - format: uint64 - description: Number of claim periods this program will run for. - current_claim_period: - type: string - format: uint64 - description: >- - Current claim period of the RewardProgram. Uses 1-based - indexing. - max_rollover_claim_periods: - type: string - format: uint64 - description: >- - maximum number of claim periods a reward program can - rollover. - state: - description: Current state of the RewardProgram. - type: string - enum: - - STATE_UNSPECIFIED - - STATE_PENDING - - STATE_STARTED - - STATE_FINISHED - - STATE_EXPIRED - default: STATE_UNSPECIFIED - title: State is the state of the reward program - expiration_offset: - type: string - format: uint64 + format: byte + description: >- + Must be a valid serialized protocol buffer of the + above specified type. description: >- - Grace period after a RewardProgram FINISHED. It is the - number of seconds until a RewardProgram enters the - EXPIRED + `Any` contains an arbitrary serialized protocol buffer + message along with a - state. - qualifying_actions: - type: array - items: - type: object - properties: - delegate: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful delegates. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful delegates. - minimum_delegation_amount: - description: >- - Minimum amount that the user must have - currently delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - maximum_delegation_amount: - description: >- - Maximum amount that the user must have - currently delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_active_stake_percentile: - type: string - description: >- - Minimum percentile that can be below the - validator's power ranking. - maximum_active_stake_percentile: - type: string - description: >- - Maximum percentile that can be below the - validator's power ranking. - description: >- - ActionDelegate represents the delegate action and - its required eligibility criteria. - transfer: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful transfers. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful transfers. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must - have across all validators, for the transfer - action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - ActionTransfer represents the transfer action and - its required eligibility criteria. - vote: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful votes. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful votes. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must - have across all validators, for the vote - action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - validator_multiplier: - type: string - format: uint64 - title: >- - Positive multiplier that is applied to the - shares awarded by the vote action when - conditions + URL that describes the type of the serialized message. - are met(for now the only condition is the - current vote is a validator vote). A value of - zero will behave the same - as one - description: >- - ActionVote represents the voting action and its - required eligibility criteria. - description: QualifyingAction can be one of many action types. - description: Actions that count towards the reward. - title: RewardProgram - description: List of RewardProgram objects matching the query_type. - pagination: - description: pagination defines an optional pagination for the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + Protobuf library provides support to pack/unpack Any + values in the form - was set, its value is undefined otherwise - title: >- - QueryRewardProgramsResponse contains the list of RewardPrograms - matching the query + of utility functions or additional generated methods of + the Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and + the unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will + yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the + regular + + representation of the deserialized, embedded message, + with an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a + custom JSON + + representation, that representation will be embedded + adding a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message + [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: The messages to run when the trigger fires. + title: Trigger + description: The trigger object that was queried for. + description: QueryTriggerByIDResponse contains the requested Trigger. default: description: An unexpected error response. schema: @@ -57363,374 +69952,179 @@ paths: properties: type_url: type: string - value: - type: string - format: byte - parameters: - - name: query_type - description: |- - A filter on the types of reward programs. + description: >- + A URL/resource name that uniquely identifies the type of + the serialized - - QUERY_TYPE_UNSPECIFIED: unspecified type - - QUERY_TYPE_ALL: all reward programs states - - QUERY_TYPE_PENDING: pending reward program state= - - QUERY_TYPE_ACTIVE: active reward program state - - QUERY_TYPE_OUTSTANDING: pending and active reward program states - - QUERY_TYPE_FINISHED: finished reward program state - in: query - required: false - type: string - enum: - - QUERY_TYPE_UNSPECIFIED - - QUERY_TYPE_ALL - - QUERY_TYPE_PENDING - - QUERY_TYPE_ACTIVE - - QUERY_TYPE_OUTSTANDING - - QUERY_TYPE_FINISHED - default: QUERY_TYPE_UNSPECIFIED - - name: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. - in: query - required: false - type: string - format: byte - - name: pagination.offset - description: >- - offset is a numeric offset that can be used when key is unavailable. + protocol buffer message. This string must contain at + least - It is less efficient than using key. Only one of offset or key - should + one "/" character. The last segment of the URL's path + must represent - be set. - in: query - required: false - type: string - format: uint64 - - name: pagination.limit - description: >- - limit is the total number of results to be returned in the result - page. + the fully qualified name of the type (as in - If left empty it will default to a value to be set by each app. - in: query - required: false - type: string - format: uint64 - - name: pagination.count_total - description: >- - count_total is set to true to indicate that the result set should - include + `path/google.protobuf.Duration`). The name should be in + a canonical form - a count of the total number of items available for pagination in - UIs. + (e.g., leading "." is not accepted). - count_total is only respected when offset is used. It is ignored - when key - is set. - in: query - required: false - type: boolean - - name: pagination.reverse - description: >- - reverse is set to true if results are to be returned in the - descending order. + In practice, teams usually precompile into the binary + all types that they + expect it to use in the context of Any. However, for + URLs which use the - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /provenance/rewards/v1/reward_programs/{id}: - get: - summary: RewardProgramByID returns a reward program matching the ID. - operationId: RewardProgramByID - responses: - '200': - description: A successful response. - schema: - type: object - properties: - reward_program: - type: object - properties: - id: - type: string - format: uint64 - description: An integer to uniquely identify the reward program. - title: - type: string - title: >- - Name to help identify the Reward - Program.(MaxTitleLength=140) - description: - type: string - title: >- - Short summary describing the Reward - Program.(MaxDescriptionLength=10000) - distribute_from_address: - type: string - description: address that provides funds for the total reward pool. - total_reward_pool: - description: The total amount of funding given to the RewardProgram. - type: object - properties: - denom: - type: string - amount: - type: string - remaining_pool_balance: - description: >- - The remaining funds available to distribute after n claim - periods have passed. - type: object - properties: - denom: - type: string - amount: - type: string - claimed_amount: - description: >- - The total amount of all funds claimed by participants for - all past claim periods. - type: object - properties: - denom: - type: string - amount: - type: string - max_reward_by_address: - description: Maximum reward per claim period per address. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_rollover_amount: - description: Minimum amount of coins for a program to rollover. - type: object - properties: - denom: - type: string - amount: - type: string - claim_period_seconds: - type: string - format: uint64 - description: Number of seconds that a claim period lasts. - program_start_time: - type: string - format: date-time - description: >- - Time that a RewardProgram should start and switch to - STARTED state. - expected_program_end_time: - type: string - format: date-time - description: >- - Time that a RewardProgram is expected to end, based on - data when it was setup. - program_end_time_max: - type: string - format: date-time - description: Time that a RewardProgram MUST end. - claim_period_end_time: - type: string - format: date-time - description: >- - Used internally to calculate and track the current claim - period's ending time. - actual_program_end_time: - type: string - format: date-time - description: >- - Time the RewardProgram switched to FINISHED state. - Initially set as empty. - claim_periods: - type: string - format: uint64 - description: Number of claim periods this program will run for. - current_claim_period: - type: string - format: uint64 - description: >- - Current claim period of the RewardProgram. Uses 1-based - indexing. - max_rollover_claim_periods: - type: string - format: uint64 - description: >- - maximum number of claim periods a reward program can - rollover. - state: - description: Current state of the RewardProgram. - type: string - enum: - - STATE_UNSPECIFIED - - STATE_PENDING - - STATE_STARTED - - STATE_FINISHED - - STATE_EXPIRED - default: STATE_UNSPECIFIED - title: State is the state of the reward program - expiration_offset: - type: string - format: uint64 - description: >- - Grace period after a RewardProgram FINISHED. It is the - number of seconds until a RewardProgram enters the EXPIRED + scheme `http`, `https`, or no scheme, one can optionally + set up a type - state. - qualifying_actions: - type: array - items: - type: object - properties: - delegate: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful delegates. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful delegates. - minimum_delegation_amount: - description: >- - Minimum amount that the user must have currently - delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - maximum_delegation_amount: - description: >- - Maximum amount that the user must have currently - delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_active_stake_percentile: - type: string - description: >- - Minimum percentile that can be below the - validator's power ranking. - maximum_active_stake_percentile: - type: string - description: >- - Maximum percentile that can be below the - validator's power ranking. - description: >- - ActionDelegate represents the delegate action and - its required eligibility criteria. - transfer: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful transfers. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful transfers. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have - across all validators, for the transfer action - to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - ActionTransfer represents the transfer action and - its required eligibility criteria. - vote: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful votes. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful votes. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have - across all validators, for the vote action to be - counted. - type: object - properties: - denom: - type: string - amount: - type: string - validator_multiplier: - type: string - format: uint64 - title: >- - Positive multiplier that is applied to the - shares awarded by the vote action when - conditions + server that maps type URLs to message definitions as + follows: - are met(for now the only condition is the - current vote is a validator vote). A value of - zero will behave the same - as one - description: >- - ActionVote represents the voting action and its - required eligibility criteria. - description: QualifyingAction can be one of many action types. - description: Actions that count towards the reward. - title: RewardProgram - description: The reward program object that was queried for. - title: >- - QueryRewardProgramByIDResponse contains the requested - RewardProgram - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } parameters: - name: id - description: The id of the reward program to query. + description: The id of the trigger to query. in: path required: true type: string @@ -62415,7 +74809,301 @@ definitions: RPC method. - cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse: + cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse: + type: object + properties: + block_height: + type: string + format: int64 + validators: + type: array + items: + type: object + properties: + address: + type: string + pub_key: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in + the form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last + '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + description: Validator is the type for the validator-set. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: |- + GetLatestValidatorSetResponse is the response type for the + Query/GetValidatorSetByHeight RPC method. + cosmos.base.tendermint.v1beta1.GetNodeInfoResponse: + type: object + properties: + default_node_info: + type: object + properties: + protocol_version: + type: object + properties: + p2p: + type: string + format: uint64 + block: + type: string + format: uint64 + app: + type: string + format: uint64 + default_node_id: + type: string + listen_addr: + type: string + network: + type: string + version: + type: string + channels: + type: string + format: byte + moniker: + type: string + other: + type: object + properties: + tx_index: + type: string + rpc_address: + type: string + application_version: + type: object + properties: + name: + type: string + app_name: + type: string + version: + type: string + git_commit: + type: string + build_tags: + type: string + go_version: + type: string + build_deps: + type: array + items: + type: object + properties: + path: + type: string + title: module path + version: + type: string + title: module version + sum: + type: string + title: checksum + title: Module is the type for VersionInfo + cosmos_sdk_version: + type: string + title: 'Since: cosmos-sdk 0.43' + description: VersionInfo is the type for the GetNodeInfoResponse message. + description: |- + GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC + method. + cosmos.base.tendermint.v1beta1.GetSyncingResponse: + type: object + properties: + syncing: + type: boolean + description: >- + GetSyncingResponse is the response type for the Query/GetSyncing RPC + method. + cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse: type: object properties: block_height: @@ -62624,332 +75312,993 @@ definitions: was set, its value is undefined otherwise description: |- - GetLatestValidatorSetResponse is the response type for the + GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. - cosmos.base.tendermint.v1beta1.GetNodeInfoResponse: + cosmos.base.tendermint.v1beta1.Header: type: object properties: - default_node_info: + version: + title: basic block info type: object properties: - protocol_version: - type: object - properties: - p2p: - type: string - format: uint64 - block: - type: string - format: uint64 - app: - type: string - format: uint64 - default_node_id: - type: string - listen_addr: - type: string - network: + block: type: string - version: + format: uint64 + app: type: string - channels: + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block in the + blockchain, + + including all blockchain data structures and the rules of the + application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: type: string format: byte - moniker: - type: string - other: + part_set_header: type: object properties: - tx_index: - type: string - rpc_address: + total: + type: integer + format: int64 + hash: type: string - application_version: - type: object - properties: - name: - type: string - app_name: - type: string - version: - type: string - git_commit: - type: string - build_tags: - type: string - go_version: - type: string - build_deps: - type: array - items: - type: object - properties: - path: - type: string - title: module path - version: - type: string - title: module version - sum: - type: string - title: checksum - title: Module is the type for VersionInfo - cosmos_sdk_version: - type: string - title: 'Since: cosmos-sdk 0.43' - description: VersionInfo is the type for the GetNodeInfoResponse message. - description: |- - GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC - method. - cosmos.base.tendermint.v1beta1.GetSyncingResponse: + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + description: >- + proposer_address is the original block proposer address, formatted as + a Bech32 string. + + In Tendermint, this type is `bytes`, but in the SDK, we convert it to + a Bech32 string + + for better UX. + description: Header defines the structure of a Tendermint block header. + cosmos.base.tendermint.v1beta1.Module: type: object properties: - syncing: - type: boolean - description: >- - GetSyncingResponse is the response type for the Query/GetSyncing RPC - method. - cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse: + path: + type: string + title: module path + version: + type: string + title: module version + sum: + type: string + title: checksum + title: Module is the type for VersionInfo + cosmos.base.tendermint.v1beta1.ProofOp: type: object properties: - block_height: + type: type: string - format: int64 - validators: + key: + type: string + format: byte + data: + type: string + format: byte + description: >- + ProofOp defines an operation used for calculating Merkle root. The data + could + + be arbitrary format, providing nessecary data for example neighbouring + node + + hash. + + + Note: This type is a duplicate of the ProofOp proto type defined in + + Tendermint. + cosmos.base.tendermint.v1beta1.ProofOps: + type: object + properties: + ops: type: array items: type: object properties: - address: + type: type: string - pub_key: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + key: + type: string + format: byte + data: + type: string + format: byte + description: >- + ProofOp defines an operation used for calculating Merkle root. The + data could - protocol buffer message. This string must contain at least + be arbitrary format, providing nessecary data for example + neighbouring node - one "/" character. The last segment of the URL's path must - represent + hash. - the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + Note: This type is a duplicate of the ProofOp proto type defined in - (e.g., leading "." is not accepted). + Tendermint. + description: |- + ProofOps is Merkle proof defined by the list of ProofOps. + + Note: This type is a duplicate of the ProofOps proto type defined in + Tendermint. + cosmos.base.tendermint.v1beta1.Validator: + type: object + properties: + address: + type: string + pub_key: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + protocol buffer message. This string must contain at least - In practice, teams usually precompile into the binary all - types that they + one "/" character. The last segment of the URL's path must + represent - expect it to use in the context of Any. However, for URLs - which use the + the fully qualified name of the type (as in - scheme `http`, `https`, or no scheme, one can optionally set - up a type + `path/google.protobuf.Duration`). The name should be in a + canonical form - server that maps type URLs to message definitions as - follows: + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up a + type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + description: Validator is the type for the validator-set. + cosmos.base.tendermint.v1beta1.VersionInfo: + type: object + properties: + name: + type: string + app_name: + type: string + version: + type: string + git_commit: + type: string + build_tags: + type: string + go_version: + type: string + build_deps: + type: array + items: + type: object + properties: + path: + type: string + title: module path + version: + type: string + title: module version + sum: + type: string + title: checksum + title: Module is the type for VersionInfo + cosmos_sdk_version: + type: string + title: 'Since: cosmos-sdk 0.43' + description: VersionInfo is the type for the GetNodeInfoResponse message. + tendermint.crypto.PublicKey: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: PublicKey defines the keys available for use with Validators + tendermint.p2p.DefaultNodeInfo: + type: object + properties: + protocol_version: + type: object + properties: + p2p: + type: string + format: uint64 + block: + type: string + format: uint64 + app: + type: string + format: uint64 + default_node_id: + type: string + listen_addr: + type: string + network: + type: string + version: + type: string + channels: + type: string + format: byte + moniker: + type: string + other: + type: object + properties: + tx_index: + type: string + rpc_address: + type: string + tendermint.p2p.DefaultNodeInfoOther: + type: object + properties: + tx_index: + type: string + rpc_address: + type: string + tendermint.p2p.ProtocolVersion: + type: object + properties: + p2p: + type: string + format: uint64 + block: + type: string + format: uint64 + app: + type: string + format: uint64 + tendermint.types.Block: + type: object + properties: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block in + the blockchain, - * If no scheme is provided, `https` is assumed. + including all blockchain data structures and the rules of the + application's - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + data: + type: object + properties: + txs: + type: array + items: + type: string + format: byte + description: >- + Txs that will be applied by state @ block.Height+1. - Note: this functionality is not currently available in the - official + NOTE: not all txs here are valid. We're just agreeing on the + order first. - protobuf release, and it is not used for type URLs beginning - with + This means that block.AppHash does not include these txs. + title: Data contains the set of transactions included in the block + evidence: + type: object + properties: + evidence: + type: array + items: + type: object + properties: + duplicate_vote_evidence: + type: object + properties: + vote_a: + type: object + properties: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: >- + SignedMsgType is a type of signed message in the + consensus. - type.googleapis.com. + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote + from validators for + consensus. + vote_b: + type: object + properties: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: >- + SignedMsgType is a type of signed message in the + consensus. - Schemes other than `http`, `https` (or the empty scheme) - might be + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote + from validators for - used with implementation specific semantics. - value: - type: string - format: byte + consensus. + total_voting_power: + type: string + format: int64 + validator_power: + type: string + format: int64 + timestamp: + type: string + format: date-time description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in - the form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default - use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the last - '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a - field - - `value` which holds the custom JSON in addition to the `@type` + DuplicateVoteEvidence contains evidence of a validator + signed two conflicting votes. + light_client_attack_evidence: + type: object + properties: + conflicting_block: + type: object + properties: + signed_header: + type: object + properties: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for + processing a block in the blockchain, - field. Example (for message [google.protobuf.Duration][]): + including all blockchain data structures and + the rules of the application's - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - description: Validator is the type for the validator-set. - pagination: - description: pagination defines an pagination for the response. + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: >- + hashes from the app output from the prev + block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + commit: + type: object + properties: + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + signatures: + type: array + items: + type: object + properties: + block_id_flag: + type: string + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: >- + BlockIdFlag indicates which BlcokID the + signature is for + validator_address: + type: string + format: byte + timestamp: + type: string + format: date-time + signature: + type: string + format: byte + description: >- + CommitSig is a part of the Vote included + in a Commit. + description: >- + Commit contains the evidence that a block was + committed by a set of validators. + validator_set: + type: object + properties: + validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for + use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + proposer: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use + with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + common_height: + type: string + format: int64 + byzantine_validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use with + Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + timestamp: + type: string + format: date-time + description: >- + LightClientAttackEvidence contains evidence of a set of + validators attempting to mislead a light client. + last_commit: type: object properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + height: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: |- - GetValidatorSetByHeightResponse is the response type for the - Query/GetValidatorSetByHeight RPC method. - cosmos.base.tendermint.v1beta1.Header: + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + signatures: + type: array + items: + type: object + properties: + block_id_flag: + type: string + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: BlockIdFlag indicates which BlcokID the signature is for + validator_address: + type: string + format: byte + timestamp: + type: string + format: date-time + signature: + type: string + format: byte + description: CommitSig is a part of the Vote included in a Commit. + description: >- + Commit contains the evidence that a block was committed by a set of + validators. + tendermint.types.BlockID: type: object properties: - version: - title: basic block info + hash: + type: string + format: byte + part_set_header: type: object properties: - block: - type: string - format: uint64 - app: + total: + type: integer + format: int64 + hash: type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a block in the - blockchain, - - including all blockchain data structures and the rules of the - application's - - state transition machine. - chain_id: - type: string + format: byte + title: PartsetHeader + title: BlockID + tendermint.types.BlockIDFlag: + type: string + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: BlockIdFlag indicates which BlcokID the signature is for + tendermint.types.Commit: + type: object + properties: height: type: string format: int64 - time: - type: string - format: date-time - last_block_id: + round: + type: integer + format: int32 + block_id: type: object properties: hash: @@ -62966,857 +76315,1526 @@ definitions: format: byte title: PartsetHeader title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - description: >- - proposer_address is the original block proposer address, formatted as - a Bech32 string. - - In Tendermint, this type is `bytes`, but in the SDK, we convert it to - a Bech32 string - - for better UX. - description: Header defines the structure of a Tendermint block header. - cosmos.base.tendermint.v1beta1.Module: - type: object - properties: - path: - type: string - title: module path - version: - type: string - title: module version - sum: - type: string - title: checksum - title: Module is the type for VersionInfo - cosmos.base.tendermint.v1beta1.ProofOp: - type: object - properties: - type: - type: string - key: - type: string - format: byte - data: - type: string - format: byte - description: >- - ProofOp defines an operation used for calculating Merkle root. The data - could - - be arbitrary format, providing nessecary data for example neighbouring - node - - hash. - - - Note: This type is a duplicate of the ProofOp proto type defined in - - Tendermint. - cosmos.base.tendermint.v1beta1.ProofOps: - type: object - properties: - ops: + signatures: type: array items: type: object properties: - type: + block_id_flag: type: string - key: + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: BlockIdFlag indicates which BlcokID the signature is for + validator_address: type: string format: byte - data: + timestamp: + type: string + format: date-time + signature: type: string format: byte - description: >- - ProofOp defines an operation used for calculating Merkle root. The - data could - - be arbitrary format, providing nessecary data for example - neighbouring node - - hash. - - - Note: This type is a duplicate of the ProofOp proto type defined in - - Tendermint. - description: |- - ProofOps is Merkle proof defined by the list of ProofOps. - - Note: This type is a duplicate of the ProofOps proto type defined in - Tendermint. - cosmos.base.tendermint.v1beta1.Validator: - type: object - properties: - address: - type: string - pub_key: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all types - that they - - expect it to use in the context of Any. However, for URLs which - use the - - scheme `http`, `https`, or no scheme, one can optionally set up a - type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default use - - 'type.googleapis.com/full.type.name' as the type URL and the unpack - - methods only use the fully qualified type name after the last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - description: Validator is the type for the validator-set. - cosmos.base.tendermint.v1beta1.VersionInfo: + description: CommitSig is a part of the Vote included in a Commit. + description: >- + Commit contains the evidence that a block was committed by a set of + validators. + tendermint.types.CommitSig: type: object properties: - name: - type: string - app_name: - type: string - version: - type: string - git_commit: - type: string - build_tags: - type: string - go_version: - type: string - build_deps: - type: array - items: - type: object - properties: - path: - type: string - title: module path - version: - type: string - title: module version - sum: - type: string - title: checksum - title: Module is the type for VersionInfo - cosmos_sdk_version: + block_id_flag: type: string - title: 'Since: cosmos-sdk 0.43' - description: VersionInfo is the type for the GetNodeInfoResponse message. - tendermint.crypto.PublicKey: - type: object - properties: - ed25519: + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: BlockIdFlag indicates which BlcokID the signature is for + validator_address: type: string format: byte - secp256k1: + timestamp: + type: string + format: date-time + signature: type: string format: byte - title: PublicKey defines the keys available for use with Validators - tendermint.p2p.DefaultNodeInfo: + description: CommitSig is a part of the Vote included in a Commit. + tendermint.types.Data: type: object properties: - protocol_version: + txs: + type: array + items: + type: string + format: byte + description: >- + Txs that will be applied by state @ block.Height+1. + + NOTE: not all txs here are valid. We're just agreeing on the order + first. + + This means that block.AppHash does not include these txs. + title: Data contains the set of transactions included in the block + tendermint.types.DuplicateVoteEvidence: + type: object + properties: + vote_a: type: object properties: - p2p: + type: type: string - format: uint64 - block: + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: |- + SignedMsgType is a type of signed message in the consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: type: string - format: uint64 - app: + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: type: string - format: uint64 - default_node_id: - type: string - listen_addr: - type: string - network: - type: string - version: - type: string - channels: - type: string - format: byte - moniker: - type: string - other: + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote from validators + for + + consensus. + vote_b: type: object properties: - tx_index: + type: type: string - rpc_address: + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: |- + SignedMsgType is a type of signed message in the consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: type: string - tendermint.p2p.DefaultNodeInfoOther: - type: object - properties: - tx_index: - type: string - rpc_address: - type: string - tendermint.p2p.ProtocolVersion: - type: object - properties: - p2p: + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote from validators + for + + consensus. + total_voting_power: type: string - format: uint64 - block: + format: int64 + validator_power: type: string - format: uint64 - app: + format: int64 + timestamp: type: string - format: uint64 - tendermint.types.Block: + format: date-time + description: >- + DuplicateVoteEvidence contains evidence of a validator signed two + conflicting votes. + tendermint.types.Evidence: type: object properties: - header: + duplicate_vote_evidence: type: object properties: - version: - title: basic block info + vote_a: type: object properties: - block: + type: type: string - format: uint64 - app: + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: |- + SignedMsgType is a type of signed message in the consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: type: string - format: uint64 + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte description: >- - Consensus captures the consensus rules for processing a block in - the blockchain, + Vote represents a prevote, precommit, or commit vote from + validators for - including all blockchain data structures and the rules of the - application's + consensus. + vote_b: + type: object + properties: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: |- + SignedMsgType is a type of signed message in the consensus. - state transition machine. - chain_id: + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote from + validators for + + consensus. + total_voting_power: type: string - height: + format: int64 + validator_power: type: string format: int64 - time: + timestamp: type: string format: date-time - last_block_id: + description: >- + DuplicateVoteEvidence contains evidence of a validator signed two + conflicting votes. + light_client_attack_evidence: + type: object + properties: + conflicting_block: type: object properties: - hash: - type: string - format: byte - part_set_header: + signed_header: type: object properties: - total: - type: integer - format: int64 - hash: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing + a block in the blockchain, + + including all blockchain data structures and the rules + of the application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + commit: + type: object + properties: + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + signatures: + type: array + items: + type: object + properties: + block_id_flag: + type: string + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: >- + BlockIdFlag indicates which BlcokID the + signature is for + validator_address: + type: string + format: byte + timestamp: + type: string + format: date-time + signature: + type: string + format: byte + description: >- + CommitSig is a part of the Vote included in a + Commit. + description: >- + Commit contains the evidence that a block was committed by + a set of validators. + validator_set: + type: object + properties: + validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use with + Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + proposer: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use with + Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: + format: int64 + common_height: type: string - format: byte - description: Header defines the structure of a block header. - data: - type: object - properties: - txs: + format: int64 + byzantine_validators: type: array items: - type: string - format: byte - description: >- - Txs that will be applied by state @ block.Height+1. - - NOTE: not all txs here are valid. We're just agreeing on the - order first. - - This means that block.AppHash does not include these txs. - title: Data contains the set of transactions included in the block + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: PublicKey defines the keys available for use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + timestamp: + type: string + format: date-time + description: >- + LightClientAttackEvidence contains evidence of a set of validators + attempting to mislead a light client. + tendermint.types.EvidenceList: + type: object + properties: evidence: - type: object - properties: - evidence: - type: array - items: + type: array + items: + type: object + properties: + duplicate_vote_evidence: type: object properties: - duplicate_vote_evidence: + vote_a: type: object properties: - vote_a: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: >- + SignedMsgType is a type of signed message in the + consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: type: object properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: >- - SignedMsgType is a type of signed message in the - consensus. - - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: + hash: type: string - format: int64 - round: - type: integer - format: int32 - block_id: + format: byte + part_set_header: type: object properties: + total: + type: integer + format: int64 hash: type: string format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote - from validators for + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote from + validators for + consensus. + vote_b: + type: object + properties: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: >- + SignedMsgType is a type of signed message in the consensus. - vote_b: + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: type: object properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: >- - SignedMsgType is a type of signed message in the - consensus. - - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: + hash: type: string - format: int64 - round: - type: integer - format: int32 - block_id: + format: byte + part_set_header: type: object properties: + total: + type: integer + format: int64 hash: type: string format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote - from validators for - - consensus. - total_voting_power: - type: string - format: int64 - validator_power: - type: string - format: int64 + title: PartsetHeader + title: BlockID timestamp: type: string format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte description: >- - DuplicateVoteEvidence contains evidence of a validator - signed two conflicting votes. - light_client_attack_evidence: + Vote represents a prevote, precommit, or commit vote from + validators for + + consensus. + total_voting_power: + type: string + format: int64 + validator_power: + type: string + format: int64 + timestamp: + type: string + format: date-time + description: >- + DuplicateVoteEvidence contains evidence of a validator signed + two conflicting votes. + light_client_attack_evidence: + type: object + properties: + conflicting_block: type: object properties: - conflicting_block: + signed_header: type: object properties: - signed_header: + header: type: object properties: - header: + version: + title: basic block info type: object properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for - processing a block in the blockchain, - - including all blockchain data structures and - the rules of the application's - - state transition machine. - chain_id: + block: type: string - height: + format: uint64 + app: type: string - format: int64 - time: + format: uint64 + description: >- + Consensus captures the consensus rules for + processing a block in the blockchain, + + including all blockchain data structures and the + rules of the application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: type: string - format: date-time - last_block_id: + format: byte + part_set_header: type: object properties: + total: + type: integer + format: int64 hash: type: string format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: >- - hashes from the app output from the prev - block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: Header defines the structure of a block header. - commit: + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + commit: + type: object + properties: + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: type: object properties: - height: + hash: type: string - format: int64 - round: - type: integer - format: int32 - block_id: + format: byte + part_set_header: type: object properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: - type: array - items: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: >- - BlockIdFlag indicates which BlcokID the - signature is for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: >- - CommitSig is a part of the Vote included - in a Commit. - description: >- - Commit contains the evidence that a block was - committed by a set of validators. - validator_set: - type: object - properties: - validators: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + signatures: type: array items: type: object properties: - address: + block_id_flag: type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN title: >- - PublicKey defines the keys available for - use with Validators - voting_power: + BlockIdFlag indicates which BlcokID the + signature is for + validator_address: type: string - format: int64 - proposer_priority: + format: byte + timestamp: type: string - format: int64 - proposer: + format: date-time + signature: + type: string + format: byte + description: >- + CommitSig is a part of the Vote included in a + Commit. + description: >- + Commit contains the evidence that a block was + committed by a set of validators. + validator_set: + type: object + properties: + validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use + with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + proposer: + type: object + properties: + address: + type: string + format: byte + pub_key: type: object properties: - address: + ed25519: type: string format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use - with Validators - voting_power: - type: string - format: int64 - proposer_priority: + secp256k1: type: string - format: int64 - total_voting_power: + format: byte + title: >- + PublicKey defines the keys available for use + with Validators + voting_power: type: string format: int64 - common_height: + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + common_height: + type: string + format: int64 + byzantine_validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use with + Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + timestamp: + type: string + format: date-time + description: >- + LightClientAttackEvidence contains evidence of a set of + validators attempting to mislead a light client. + tendermint.types.Header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block in the + blockchain, + + including all blockchain data structures and the rules of the + application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + tendermint.types.LightBlock: + type: object + properties: + signed_header: + type: object + properties: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block + in the blockchain, + + including all blockchain data structures and the rules of the + application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + commit: + type: object + properties: + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + signatures: + type: array + items: + type: object + properties: + block_id_flag: type: string - format: int64 - byzantine_validators: - type: array - items: + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: BlockIdFlag indicates which BlcokID the signature is for + validator_address: + type: string + format: byte + timestamp: + type: string + format: date-time + signature: + type: string + format: byte + description: CommitSig is a part of the Vote included in a Commit. + description: >- + Commit contains the evidence that a block was committed by a set + of validators. + validator_set: + type: object + properties: + validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: PublicKey defines the keys available for use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + proposer: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: PublicKey defines the keys available for use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + tendermint.types.LightClientAttackEvidence: + type: object + properties: + conflicting_block: + type: object + properties: + signed_header: + type: object + properties: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a + block in the blockchain, + + including all blockchain data structures and the rules of + the application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + commit: + type: object + properties: + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: type: object properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use with - Validators - voting_power: - type: string + total: + type: integer format: int64 - proposer_priority: + hash: type: string - format: int64 - total_voting_power: + format: byte + title: PartsetHeader + title: BlockID + signatures: + type: array + items: + type: object + properties: + block_id_flag: + type: string + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: >- + BlockIdFlag indicates which BlcokID the signature is + for + validator_address: + type: string + format: byte + timestamp: + type: string + format: date-time + signature: + type: string + format: byte + description: CommitSig is a part of the Vote included in a Commit. + description: >- + Commit contains the evidence that a block was committed by a + set of validators. + validator_set: + type: object + properties: + validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use with + Validators + voting_power: type: string format: int64 - timestamp: + proposer_priority: type: string - format: date-time - description: >- - LightClientAttackEvidence contains evidence of a set of - validators attempting to mislead a light client. - last_commit: + format: int64 + proposer: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use with + Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + common_height: + type: string + format: int64 + byzantine_validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: PublicKey defines the keys available for use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + timestamp: + type: string + format: date-time + description: >- + LightClientAttackEvidence contains evidence of a set of validators + attempting to mislead a light client. + tendermint.types.PartSetHeader: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + tendermint.types.SignedHeader: + type: object + properties: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block in + the blockchain, + + including all blockchain data structures and the rules of the + application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + commit: type: object properties: height: @@ -63869,1889 +77887,1789 @@ definitions: description: >- Commit contains the evidence that a block was committed by a set of validators. - tendermint.types.BlockID: + tendermint.types.SignedMsgType: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: |- + SignedMsgType is a type of signed message in the consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + tendermint.types.Validator: type: object properties: - hash: + address: type: string format: byte - part_set_header: + pub_key: type: object properties: - total: - type: integer - format: int64 - hash: + ed25519: type: string format: byte - title: PartsetHeader - title: BlockID - tendermint.types.BlockIDFlag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: BlockIdFlag indicates which BlcokID the signature is for - tendermint.types.Commit: - type: object - properties: - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: + secp256k1: type: string format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: + title: PublicKey defines the keys available for use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + tendermint.types.ValidatorSet: + type: object + properties: + validators: type: array items: type: object properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: BlockIdFlag indicates which BlcokID the signature is for - validator_address: + address: type: string format: byte - timestamp: + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: PublicKey defines the keys available for use with Validators + voting_power: type: string - format: date-time - signature: + format: int64 + proposer_priority: type: string - format: byte - description: CommitSig is a part of the Vote included in a Commit. - description: >- - Commit contains the evidence that a block was committed by a set of - validators. - tendermint.types.CommitSig: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: BlockIdFlag indicates which BlcokID the signature is for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: CommitSig is a part of the Vote included in a Commit. - tendermint.types.Data: - type: object - properties: - txs: - type: array - items: - type: string - format: byte - description: >- - Txs that will be applied by state @ block.Height+1. - - NOTE: not all txs here are valid. We're just agreeing on the order - first. - - This means that block.AppHash does not include these txs. - title: Data contains the set of transactions included in the block - tendermint.types.DuplicateVoteEvidence: - type: object - properties: - vote_a: + format: int64 + proposer: type: object properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: |- - SignedMsgType is a type of signed message in the consensus. - - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: + address: type: string - format: int64 - round: - type: integer - format: int32 - block_id: + format: byte + pub_key: type: object properties: - hash: + ed25519: type: string format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote from validators - for - - consensus. - vote_b: - type: object - properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: |- - SignedMsgType is a type of signed message in the consensus. - - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: + secp256k1: type: string format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: + title: PublicKey defines the keys available for use with Validators + voting_power: type: string - format: byte - validator_index: - type: integer - format: int32 - signature: + format: int64 + proposer_priority: type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote from validators - for - - consensus. + format: int64 total_voting_power: type: string format: int64 - validator_power: - type: string - format: int64 - timestamp: - type: string - format: date-time - description: >- - DuplicateVoteEvidence contains evidence of a validator signed two - conflicting votes. - tendermint.types.Evidence: + tendermint.types.Vote: type: object properties: - duplicate_vote_evidence: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: |- + SignedMsgType is a type of signed message in the consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: type: object properties: - vote_a: + hash: + type: string + format: byte + part_set_header: type: object properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: |- - SignedMsgType is a type of signed message in the consensus. - - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: + total: type: integer - format: int32 - signature: + format: int64 + hash: type: string format: byte - description: >- - Vote represents a prevote, precommit, or commit vote from - validators for + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: |- + Vote represents a prevote, precommit, or commit vote from validators for + consensus. + tendermint.version.Consensus: + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block in the + blockchain, - consensus. - vote_b: - type: object - properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: |- - SignedMsgType is a type of signed message in the consensus. + including all blockchain data structures and the rules of the + application's - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote from - validators for + state transition machine. + cosmos.base.v1beta1.DecCoin: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + DecCoin defines a token with a denomination and a decimal amount. - consensus. - total_voting_power: - type: string - format: int64 - validator_power: - type: string - format: int64 - timestamp: - type: string - format: date-time - description: >- - DuplicateVoteEvidence contains evidence of a validator signed two - conflicting votes. - light_client_attack_evidence: - type: object - properties: - conflicting_block: - type: object - properties: - signed_header: - type: object - properties: - header: - type: object - properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing - a block in the blockchain, + NOTE: The amount field is an Dec which implements the custom method + signatures required by gogoproto. + cosmos.distribution.v1beta1.DelegationDelegatorReward: + type: object + properties: + validator_address: + type: string + reward: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + DecCoin defines a token with a denomination and a decimal amount. - including all blockchain data structures and the rules - of the application's + NOTE: The amount field is an Dec which implements the custom method + signatures required by gogoproto. + description: |- + DelegationDelegatorReward represents the properties + of a delegator's delegation reward. + cosmos.distribution.v1beta1.Params: + type: object + properties: + community_tax: + type: string + base_proposer_reward: + type: string + bonus_proposer_reward: + type: string + withdraw_addr_enabled: + type: boolean + description: Params defines the set of params for the distribution module. + cosmos.distribution.v1beta1.QueryCommunityPoolResponse: + type: object + properties: + pool: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + DecCoin defines a token with a denomination and a decimal amount. - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: Header defines the structure of a block header. - commit: - type: object - properties: - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: - type: array - items: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: >- - BlockIdFlag indicates which BlcokID the - signature is for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: >- - CommitSig is a part of the Vote included in a - Commit. - description: >- - Commit contains the evidence that a block was committed by - a set of validators. - validator_set: + NOTE: The amount field is an Dec which implements the custom method + signatures required by gogoproto. + description: pool defines community pool's coins. + description: >- + QueryCommunityPoolResponse is the response type for the + Query/CommunityPool + + RPC method. + cosmos.distribution.v1beta1.QueryDelegationRewardsResponse: + type: object + properties: + rewards: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + DecCoin defines a token with a denomination and a decimal amount. + + NOTE: The amount field is an Dec which implements the custom method + signatures required by gogoproto. + description: rewards defines the rewards accrued by a delegation. + description: |- + QueryDelegationRewardsResponse is the response type for the + Query/DelegationRewards RPC method. + cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse: + type: object + properties: + rewards: + type: array + items: + type: object + properties: + validator_address: + type: string + reward: + type: array + items: type: object properties: - validators: - type: array - items: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use with - Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - proposer: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use with - Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: + denom: type: string - format: int64 - common_height: + amount: + type: string + description: >- + DecCoin defines a token with a denomination and a decimal + amount. + + + NOTE: The amount field is an Dec which implements the custom + method + + signatures required by gogoproto. + description: |- + DelegationDelegatorReward represents the properties + of a delegator's delegation reward. + description: rewards defines all the rewards accrued by a delegator. + total: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + DecCoin defines a token with a denomination and a decimal amount. + + NOTE: The amount field is an Dec which implements the custom method + signatures required by gogoproto. + description: total defines the sum of all the rewards. + description: |- + QueryDelegationTotalRewardsResponse is the response type for the + Query/DelegationTotalRewards RPC method. + cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse: + type: object + properties: + validators: + type: array + items: + type: string + description: validators defines the validators a delegator is delegating for. + description: |- + QueryDelegatorValidatorsResponse is the response type for the + Query/DelegatorValidators RPC method. + cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse: + type: object + properties: + withdraw_address: + type: string + description: withdraw_address defines the delegator address to query for. + description: |- + QueryDelegatorWithdrawAddressResponse is the response type for the + Query/DelegatorWithdrawAddress RPC method. + cosmos.distribution.v1beta1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + community_tax: type: string - format: int64 - byzantine_validators: + base_proposer_reward: + type: string + bonus_proposer_reward: + type: string + withdraw_addr_enabled: + type: boolean + description: QueryParamsResponse is the response type for the Query/Params RPC method. + cosmos.distribution.v1beta1.QueryValidatorCommissionResponse: + type: object + properties: + commission: + description: commission defines the commision the validator received. + type: object + properties: + commission: type: array items: type: object properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: PublicKey defines the keys available for use with Validators - voting_power: + denom: type: string - format: int64 - proposer_priority: + amount: type: string - format: int64 - total_voting_power: - type: string - format: int64 - timestamp: - type: string - format: date-time - description: >- - LightClientAttackEvidence contains evidence of a set of validators - attempting to mislead a light client. - tendermint.types.EvidenceList: + description: >- + DecCoin defines a token with a denomination and a decimal + amount. + + + NOTE: The amount field is an Dec which implements the custom + method + + signatures required by gogoproto. + title: |- + QueryValidatorCommissionResponse is the response type for the + Query/ValidatorCommission RPC method + cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse: type: object properties: - evidence: - type: array - items: - type: object - properties: - duplicate_vote_evidence: + rewards: + type: object + properties: + rewards: + type: array + items: type: object properties: - vote_a: - type: object - properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: >- - SignedMsgType is a type of signed message in the - consensus. - - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote from - validators for - - consensus. - vote_b: - type: object - properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: >- - SignedMsgType is a type of signed message in the - consensus. - - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote from - validators for - - consensus. - total_voting_power: - type: string - format: int64 - validator_power: + denom: type: string - format: int64 - timestamp: + amount: type: string - format: date-time description: >- - DuplicateVoteEvidence contains evidence of a validator signed - two conflicting votes. - light_client_attack_evidence: - type: object - properties: - conflicting_block: - type: object - properties: - signed_header: - type: object - properties: - header: - type: object - properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for - processing a block in the blockchain, + DecCoin defines a token with a denomination and a decimal + amount. - including all blockchain data structures and the - rules of the application's - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: Header defines the structure of a block header. - commit: - type: object - properties: - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: - type: array - items: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: >- - BlockIdFlag indicates which BlcokID the - signature is for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: >- - CommitSig is a part of the Vote included in a - Commit. - description: >- - Commit contains the evidence that a block was - committed by a set of validators. - validator_set: - type: object - properties: - validators: - type: array - items: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use - with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - proposer: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use - with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: - type: string - format: int64 - common_height: - type: string - format: int64 - byzantine_validators: - type: array - items: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use with - Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: - type: string - format: int64 - timestamp: - type: string - format: date-time - description: >- - LightClientAttackEvidence contains evidence of a set of - validators attempting to mislead a light client. - tendermint.types.Header: + NOTE: The amount field is an Dec which implements the custom + method + + signatures required by gogoproto. + description: >- + ValidatorOutstandingRewards represents outstanding (un-withdrawn) + rewards + + for a validator inexpensive to track, allows simple sanity checks. + description: |- + QueryValidatorOutstandingRewardsResponse is the response type for the + Query/ValidatorOutstandingRewards RPC method. + cosmos.distribution.v1beta1.QueryValidatorSlashesResponse: + type: object + properties: + slashes: + type: array + items: + type: object + properties: + validator_period: + type: string + format: uint64 + fraction: + type: string + description: |- + ValidatorSlashEvent represents a validator slash event. + Height is implicit within the store key. + This is needed to calculate appropriate amount of staking tokens + for delegations which are withdrawn after a slash has occurred. + description: slashes defines the slashes the validator received. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: |- + QueryValidatorSlashesResponse is the response type for the + Query/ValidatorSlashes RPC method. + cosmos.distribution.v1beta1.ValidatorAccumulatedCommission: type: object properties: - version: - title: basic block info + commission: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + DecCoin defines a token with a denomination and a decimal amount. + + NOTE: The amount field is an Dec which implements the custom method + signatures required by gogoproto. + description: |- + ValidatorAccumulatedCommission represents accumulated commission + for a validator kept as a running counter, can be withdrawn at any time. + cosmos.distribution.v1beta1.ValidatorOutstandingRewards: + type: object + properties: + rewards: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + DecCoin defines a token with a denomination and a decimal amount. + + NOTE: The amount field is an Dec which implements the custom method + signatures required by gogoproto. + description: |- + ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards + for a validator inexpensive to track, allows simple sanity checks. + cosmos.distribution.v1beta1.ValidatorSlashEvent: + type: object + properties: + validator_period: + type: string + format: uint64 + fraction: + type: string + description: |- + ValidatorSlashEvent represents a validator slash event. + Height is implicit within the store key. + This is needed to calculate appropriate amount of staking tokens + for delegations which are withdrawn after a slash has occurred. + cosmos.evidence.v1beta1.QueryAllEvidenceResponse: + type: object + properties: + evidence: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up + a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: evidence returns all evidences. + pagination: + description: pagination defines the pagination in the response. type: object properties: - block: + next_key: type: string - format: uint64 - app: + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string format: uint64 - description: >- - Consensus captures the consensus rules for processing a block in the - blockchain, + title: >- + total is total number of results available if + PageRequest.count_total - including all blockchain data structures and the rules of the - application's + was set, its value is undefined otherwise + description: >- + QueryAllEvidenceResponse is the response type for the Query/AllEvidence + RPC - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: + method. + cosmos.evidence.v1beta1.QueryEvidenceResponse: + type: object + properties: + evidence: type: object properties: - hash: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up a + type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might be + + used with implementation specific semantics. + value: type: string format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + QueryEvidenceResponse is the response type for the Query/Evidence RPC + method. + cosmos.gov.v1beta1.Deposit: + type: object + properties: + proposal_id: type: string - format: byte - evidence_hash: + format: uint64 + depositor: type: string - format: byte - title: consensus info - proposer_address: + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: |- + Deposit defines an amount deposited by an account address to an active + proposal. + cosmos.gov.v1beta1.DepositParams: + type: object + properties: + min_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: Minimum deposit for a proposal to enter voting period. + max_deposit_period: type: string - format: byte - description: Header defines the structure of a block header. - tendermint.types.LightBlock: + description: >- + Maximum period for Atom holders to deposit on a proposal. Initial + value: 2 + months. + description: DepositParams defines the params for deposits on governance proposals. + cosmos.gov.v1beta1.Proposal: type: object properties: - signed_header: + proposal_id: + type: string + format: uint64 + content: type: object properties: - header: - type: object - properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a block - in the blockchain, + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - including all blockchain data structures and the rules of the - application's + protocol buffer message. This string must contain at least - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: Header defines the structure of a block header. - commit: - type: object - properties: - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: - type: array - items: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: BlockIdFlag indicates which BlcokID the signature is for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: CommitSig is a part of the Vote included in a Commit. - description: >- - Commit contains the evidence that a block was committed by a set - of validators. - validator_set: - type: object - properties: - validators: - type: array - items: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: PublicKey defines the keys available for use with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - proposer: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: PublicKey defines the keys available for use with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up a + type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might be + + used with implementation specific semantics. + value: type: string - format: int64 - tendermint.types.LightClientAttackEvidence: - type: object - properties: - conflicting_block: - type: object - properties: - signed_header: - type: object - properties: - header: - type: object - properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a - block in the blockchain, + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a - including all blockchain data structures and the rules of - the application's + URL that describes the type of the serialized message. - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: Header defines the structure of a block header. - commit: - type: object - properties: - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: - type: array - items: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: >- - BlockIdFlag indicates which BlcokID the signature is - for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: CommitSig is a part of the Vote included in a Commit. - description: >- - Commit contains the evidence that a block was committed by a - set of validators. - validator_set: - type: object - properties: - validators: - type: array - items: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use with - Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - proposer: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use with - Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: - type: string - format: int64 - common_height: + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + status: type: string - format: int64 - byzantine_validators: + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + final_tally_result: + description: |- + final_tally_result is the final tally result of the proposal. When + querying a proposal via gRPC, this field is not populated until the + proposal's voting period has ended. + type: object + properties: + 'yes': + type: string + abstain: + type: string + 'no': + type: string + no_with_veto: + type: string + submit_time: + type: string + format: date-time + deposit_end_time: + type: string + format: date-time + total_deposit: type: array items: type: object properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: PublicKey defines the keys available for use with Validators - voting_power: + denom: type: string - format: int64 - proposer_priority: + amount: type: string - format: int64 - total_voting_power: - type: string - format: int64 - timestamp: + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + voting_start_time: type: string format: date-time - description: >- - LightClientAttackEvidence contains evidence of a set of validators - attempting to mislead a light client. - tendermint.types.PartSetHeader: - type: object - properties: - total: - type: integer - format: int64 - hash: + voting_end_time: type: string - format: byte - title: PartsetHeader - tendermint.types.SignedHeader: + format: date-time + description: Proposal defines the core field members of a governance proposal. + cosmos.gov.v1beta1.ProposalStatus: + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + cosmos.gov.v1beta1.QueryDepositResponse: type: object properties: - header: + deposit: type: object properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a block in - the blockchain, - - including all blockchain data structures and the rules of the - application's - - state transition machine. - chain_id: - type: string - height: + proposal_id: type: string - format: int64 - time: + format: uint64 + depositor: type: string - format: date-time - last_block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: |- + Deposit defines an amount deposited by an account address to an active + proposal. + description: >- + QueryDepositResponse is the response type for the Query/Deposit RPC + method. + cosmos.gov.v1beta1.QueryDepositsResponse: + type: object + properties: + deposits: + type: array + items: + type: object + properties: + proposal_id: + type: string + format: uint64 + depositor: + type: string + amount: + type: array + items: type: object properties: - total: - type: integer - format: int64 - hash: + denom: type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + Deposit defines an amount deposited by an account address to an + active + + proposal. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: type: string format: byte - title: hashes from the app output from the prev block - next_validators_hash: + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string - format: byte - consensus_hash: + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryDepositsResponse is the response type for the Query/Deposits RPC + method. + cosmos.gov.v1beta1.QueryParamsResponse: + type: object + properties: + voting_params: + description: voting_params defines the parameters related to voting. + type: object + properties: + voting_period: type: string - format: byte - app_hash: + description: Length of the voting period. + deposit_params: + description: deposit_params defines the parameters related to deposit. + type: object + properties: + min_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: Minimum deposit for a proposal to enter voting period. + max_deposit_period: type: string - format: byte - last_results_hash: + description: >- + Maximum period for Atom holders to deposit on a proposal. Initial + value: 2 + months. + tally_params: + description: tally_params defines the parameters related to tally. + type: object + properties: + quorum: type: string format: byte - evidence_hash: + description: >- + Minimum percentage of total stake needed to vote for a result to + be + considered valid. + threshold: type: string format: byte - title: consensus info - proposer_address: + description: >- + Minimum proportion of Yes votes for proposal to pass. Default + value: 0.5. + veto_threshold: type: string format: byte - description: Header defines the structure of a block header. - commit: + description: >- + Minimum value of Veto votes to Total votes ratio for proposal to + be + vetoed. Default value: 1/3. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + cosmos.gov.v1beta1.QueryProposalResponse: + type: object + properties: + proposal: type: object properties: - height: + proposal_id: type: string - format: int64 - round: - type: integer - format: int32 - block_id: + format: uint64 + content: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + status: + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + final_tally_result: + description: >- + final_tally_result is the final tally result of the proposal. When + + querying a proposal via gRPC, this field is not populated until + the + + proposal's voting period has ended. type: object properties: - hash: + 'yes': type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: + abstain: + type: string + 'no': + type: string + no_with_veto: + type: string + submit_time: + type: string + format: date-time + deposit_end_time: + type: string + format: date-time + total_deposit: type: array items: type: object properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: BlockIdFlag indicates which BlcokID the signature is for - validator_address: - type: string - format: byte - timestamp: + denom: type: string - format: date-time - signature: + amount: type: string - format: byte - description: CommitSig is a part of the Vote included in a Commit. - description: >- - Commit contains the evidence that a block was committed by a set of - validators. - tendermint.types.SignedMsgType: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: |- - SignedMsgType is a type of signed message in the consensus. + description: >- + Coin defines a token with a denomination and an amount. - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - tendermint.types.Validator: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + voting_start_time: type: string - format: byte - secp256k1: + format: date-time + voting_end_time: type: string - format: byte - title: PublicKey defines the keys available for use with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - tendermint.types.ValidatorSet: + format: date-time + description: Proposal defines the core field members of a governance proposal. + description: >- + QueryProposalResponse is the response type for the Query/Proposal RPC + method. + cosmos.gov.v1beta1.QueryProposalsResponse: type: object properties: - validators: + proposals: type: array items: type: object properties: - address: + proposal_id: type: string - format: byte - pub_key: + format: uint64 + content: type: object properties: - ed25519: + type_url: type: string - format: byte - secp256k1: + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: type: string format: byte - title: PublicKey defines the keys available for use with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - proposer: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: PublicKey defines the keys available for use with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: - type: string - format: int64 - tendermint.types.Vote: - type: object - properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: |- - SignedMsgType is a type of signed message in the consensus. + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: |- - Vote represents a prevote, precommit, or commit vote from validators for - consensus. - tendermint.version.Consensus: - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a block in the - blockchain, + URL that describes the type of the serialized message. - including all blockchain data structures and the rules of the - application's - state transition machine. - cosmos.base.v1beta1.DecCoin: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - DecCoin defines a token with a denomination and a decimal amount. + Protobuf library provides support to pack/unpack Any values in + the form - NOTE: The amount field is an Dec which implements the custom method - signatures required by gogoproto. - cosmos.distribution.v1beta1.DelegationDelegatorReward: - type: object - properties: - validator_address: - type: string - reward: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - DecCoin defines a token with a denomination and a decimal amount. + of utility functions or additional generated methods of the Any + type. - NOTE: The amount field is an Dec which implements the custom method - signatures required by gogoproto. - description: |- - DelegationDelegatorReward represents the properties - of a delegator's delegation reward. - cosmos.distribution.v1beta1.Params: - type: object - properties: - community_tax: - type: string - base_proposer_reward: - type: string - bonus_proposer_reward: - type: string - withdraw_addr_enabled: - type: boolean - description: Params defines the set of params for the distribution module. - cosmos.distribution.v1beta1.QueryCommunityPoolResponse: - type: object - properties: - pool: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - DecCoin defines a token with a denomination and a decimal amount. - NOTE: The amount field is an Dec which implements the custom method - signatures required by gogoproto. - description: pool defines community pool's coins. - description: >- - QueryCommunityPoolResponse is the response type for the - Query/CommunityPool + Example 1: Pack and unpack a message in C++. - RPC method. - cosmos.distribution.v1beta1.QueryDelegationRewardsResponse: - type: object - properties: - rewards: - type: array - items: - type: object - properties: - denom: + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last + '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + status: type: string - amount: + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + final_tally_result: + description: >- + final_tally_result is the final tally result of the proposal. + When + + querying a proposal via gRPC, this field is not populated until + the + + proposal's voting period has ended. + type: object + properties: + 'yes': + type: string + abstain: + type: string + 'no': + type: string + no_with_veto: + type: string + submit_time: type: string - description: |- - DecCoin defines a token with a denomination and a decimal amount. - - NOTE: The amount field is an Dec which implements the custom method - signatures required by gogoproto. - description: rewards defines the rewards accrued by a delegation. - description: |- - QueryDelegationRewardsResponse is the response type for the - Query/DelegationRewards RPC method. - cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse: - type: object - properties: - rewards: - type: array - items: - type: object - properties: - validator_address: + format: date-time + deposit_end_time: type: string - reward: + format: date-time + total_deposit: type: array items: type: object @@ -65761,151 +79679,186 @@ definitions: amount: type: string description: >- - DecCoin defines a token with a denomination and a decimal - amount. + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Dec which implements the custom + NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. - description: |- - DelegationDelegatorReward represents the properties - of a delegator's delegation reward. - description: rewards defines all the rewards accrued by a delegator. - total: - type: array - items: - type: object - properties: - denom: + voting_start_time: type: string - amount: + format: date-time + voting_end_time: type: string - description: |- - DecCoin defines a token with a denomination and a decimal amount. + format: date-time + description: Proposal defines the core field members of a governance proposal. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - NOTE: The amount field is an Dec which implements the custom method - signatures required by gogoproto. - description: total defines the sum of all the rewards. - description: |- - QueryDelegationTotalRewardsResponse is the response type for the - Query/DelegationTotalRewards RPC method. - cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse: - type: object - properties: - validators: - type: array - items: - type: string - description: validators defines the validators a delegator is delegating for. - description: |- - QueryDelegatorValidatorsResponse is the response type for the - Query/DelegatorValidators RPC method. - cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse: - type: object - properties: - withdraw_address: - type: string - description: withdraw_address defines the delegator address to query for. + was set, its value is undefined otherwise description: |- - QueryDelegatorWithdrawAddressResponse is the response type for the - Query/DelegatorWithdrawAddress RPC method. - cosmos.distribution.v1beta1.QueryParamsResponse: + QueryProposalsResponse is the response type for the Query/Proposals RPC + method. + cosmos.gov.v1beta1.QueryTallyResultResponse: type: object properties: - params: - description: params defines the parameters of the module. + tally: + description: tally defines the requested tally. type: object properties: - community_tax: + 'yes': type: string - base_proposer_reward: + abstain: type: string - bonus_proposer_reward: + 'no': type: string - withdraw_addr_enabled: - type: boolean - description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.distribution.v1beta1.QueryValidatorCommissionResponse: + no_with_veto: + type: string + description: >- + QueryTallyResultResponse is the response type for the Query/Tally RPC + method. + cosmos.gov.v1beta1.QueryVoteResponse: type: object properties: - commission: - description: commission defines the commision the validator received. + vote: type: object properties: - commission: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - DecCoin defines a token with a denomination and a decimal - amount. - + proposal_id: + type: string + format: uint64 + voter: + type: string + option: + description: >- + Deprecated: Prefer to use `options` instead. This field is set in + queries - NOTE: The amount field is an Dec which implements the custom - method + if and only if `len(options) == 1` and that option has weight 1. + In all - signatures required by gogoproto. - title: |- - QueryValidatorCommissionResponse is the response type for the - Query/ValidatorCommission RPC method - cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse: - type: object - properties: - rewards: - type: object - properties: - rewards: + other cases, this field will default to VOTE_OPTION_UNSPECIFIED. + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + options: type: array items: type: object properties: - denom: - type: string - amount: + option: type: string - description: >- - DecCoin defines a token with a denomination and a decimal - amount. - - - NOTE: The amount field is an Dec which implements the custom - method + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given + governance proposal. - signatures required by gogoproto. - description: >- - ValidatorOutstandingRewards represents outstanding (un-withdrawn) - rewards + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: |- + WeightedVoteOption defines a unit of vote for vote split. - for a validator inexpensive to track, allows simple sanity checks. - description: |- - QueryValidatorOutstandingRewardsResponse is the response type for the - Query/ValidatorOutstandingRewards RPC method. - cosmos.distribution.v1beta1.QueryValidatorSlashesResponse: + Since: cosmos-sdk 0.43 + title: 'Since: cosmos-sdk 0.43' + description: |- + Vote defines a vote on a governance proposal. + A Vote consists of a proposal ID, the voter, and the vote option. + description: QueryVoteResponse is the response type for the Query/Vote RPC method. + cosmos.gov.v1beta1.QueryVotesResponse: type: object properties: - slashes: + votes: type: array items: type: object properties: - validator_period: + proposal_id: type: string format: uint64 - fraction: + voter: + type: string + option: + description: >- + Deprecated: Prefer to use `options` instead. This field is set + in queries + + if and only if `len(options) == 1` and that option has weight 1. + In all + + other cases, this field will default to VOTE_OPTION_UNSPECIFIED. type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + options: + type: array + items: + type: object + properties: + option: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given + governance proposal. + + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: |- + WeightedVoteOption defines a unit of vote for vote split. + + Since: cosmos-sdk 0.43 + title: 'Since: cosmos-sdk 0.43' description: |- - ValidatorSlashEvent represents a validator slash event. - Height is implicit within the store key. - This is needed to calculate appropriate amount of staking tokens - for delegations which are withdrawn after a slash has occurred. - description: slashes defines the slashes the validator received. + Vote defines a vote on a governance proposal. + A Vote consists of a proposal ID, the voter, and the vote option. + description: votes defined the queried votes. pagination: description: pagination defines the pagination in the response. type: object @@ -65925,13 +79878,160 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise + description: QueryVotesResponse is the response type for the Query/Votes RPC method. + cosmos.gov.v1beta1.TallyParams: + type: object + properties: + quorum: + type: string + format: byte + description: |- + Minimum percentage of total stake needed to vote for a result to be + considered valid. + threshold: + type: string + format: byte + description: >- + Minimum proportion of Yes votes for proposal to pass. Default value: + 0.5. + veto_threshold: + type: string + format: byte + description: |- + Minimum value of Veto votes to Total votes ratio for proposal to be + vetoed. Default value: 1/3. + description: TallyParams defines the params for tallying votes on governance proposals. + cosmos.gov.v1beta1.TallyResult: + type: object + properties: + 'yes': + type: string + abstain: + type: string + 'no': + type: string + no_with_veto: + type: string + description: TallyResult defines a standard tally for a governance proposal. + cosmos.gov.v1beta1.Vote: + type: object + properties: + proposal_id: + type: string + format: uint64 + voter: + type: string + option: + description: >- + Deprecated: Prefer to use `options` instead. This field is set in + queries + + if and only if `len(options) == 1` and that option has weight 1. In + all + + other cases, this field will default to VOTE_OPTION_UNSPECIFIED. + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + options: + type: array + items: + type: object + properties: + option: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given + governance proposal. + + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: |- + WeightedVoteOption defines a unit of vote for vote split. + + Since: cosmos-sdk 0.43 + title: 'Since: cosmos-sdk 0.43' description: |- - QueryValidatorSlashesResponse is the response type for the - Query/ValidatorSlashes RPC method. - cosmos.distribution.v1beta1.ValidatorAccumulatedCommission: + Vote defines a vote on a governance proposal. + A Vote consists of a proposal ID, the voter, and the vote option. + cosmos.gov.v1beta1.VoteOption: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given governance + proposal. + + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + cosmos.gov.v1beta1.VotingParams: type: object properties: - commission: + voting_period: + type: string + description: Length of the voting period. + description: VotingParams defines the params for voting on governance proposals. + cosmos.gov.v1beta1.WeightedVoteOption: + type: object + properties: + option: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given governance + proposal. + + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: |- + WeightedVoteOption defines a unit of vote for vote split. + + Since: cosmos-sdk 0.43 + cosmos.gov.v1.Deposit: + type: object + properties: + proposal_id: + type: string + format: uint64 + depositor: + type: string + amount: type: array items: type: object @@ -65941,17 +80041,17 @@ definitions: amount: type: string description: |- - DecCoin defines a token with a denomination and a decimal amount. + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Dec which implements the custom method + NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. description: |- - ValidatorAccumulatedCommission represents accumulated commission - for a validator kept as a running counter, can be withdrawn at any time. - cosmos.distribution.v1beta1.ValidatorOutstandingRewards: + Deposit defines an amount deposited by an account address to an active + proposal. + cosmos.gov.v1.DepositParams: type: object properties: - rewards: + min_deposit: type: array items: type: object @@ -65961,30 +80061,25 @@ definitions: amount: type: string description: |- - DecCoin defines a token with a denomination and a decimal amount. + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Dec which implements the custom method + NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. - description: |- - ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards - for a validator inexpensive to track, allows simple sanity checks. - cosmos.distribution.v1beta1.ValidatorSlashEvent: + description: Minimum deposit for a proposal to enter voting period. + max_deposit_period: + type: string + description: >- + Maximum period for Atom holders to deposit on a proposal. Initial + value: 2 + months. + description: DepositParams defines the params for deposits on governance proposals. + cosmos.gov.v1.Proposal: type: object properties: - validator_period: + id: type: string format: uint64 - fraction: - type: string - description: |- - ValidatorSlashEvent represents a validator slash event. - Height is implicit within the store key. - This is needed to calculate appropriate amount of staking tokens - for delegations which are withdrawn after a slash has occurred. - cosmos.evidence.v1beta1.QueryAllEvidenceResponse: - type: object - properties: - evidence: + messages: type: array items: type: object @@ -66120,35 +80215,196 @@ definitions: The JSON representation of an `Any` value uses the regular - representation of the deserialized, embedded message, with an + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + status: + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + final_tally_result: + description: |- + final_tally_result is the final tally result of the proposal. When + querying a proposal via gRPC, this field is not populated until the + proposal's voting period has ended. + type: object + properties: + yes_count: + type: string + abstain_count: + type: string + no_count: + type: string + no_with_veto_count: + type: string + submit_time: + type: string + format: date-time + deposit_end_time: + type: string + format: date-time + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + voting_start_time: + type: string + format: date-time + voting_end_time: + type: string + format: date-time + metadata: + type: string + description: metadata is any arbitrary metadata attached to the proposal. + description: Proposal defines the core field members of a governance proposal. + cosmos.gov.v1.ProposalStatus: + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. - additional field `@type` which contains the type URL. Example: + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + cosmos.gov.v1.QueryDepositResponse: + type: object + properties: + deposit: + type: object + properties: + proposal_id: + type: string + format: uint64 + depositor: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + NOTE: The amount field is an Int which implements the custom + method - If the embedded message type is well-known and has a custom JSON + signatures required by gogoproto. + description: |- + Deposit defines an amount deposited by an account address to an active + proposal. + description: >- + QueryDepositResponse is the response type for the Query/Deposit RPC + method. + cosmos.gov.v1.QueryDepositsResponse: + type: object + properties: + deposits: + type: array + items: + type: object + properties: + proposal_id: + type: string + format: uint64 + depositor: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation, that representation will be embedded adding a field - `value` which holds the custom JSON in addition to the `@type` + NOTE: The amount field is an Int which implements the custom + method - field. Example (for message [google.protobuf.Duration][]): + signatures required by gogoproto. + description: >- + Deposit defines an amount deposited by an account address to an + active - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - description: evidence returns all evidences. + proposal. pagination: description: pagination defines the pagination in the response. type: object @@ -66169,518 +80425,674 @@ definitions: was set, its value is undefined otherwise description: >- - QueryAllEvidenceResponse is the response type for the Query/AllEvidence - RPC - + QueryDepositsResponse is the response type for the Query/Deposits RPC method. - cosmos.evidence.v1beta1.QueryEvidenceResponse: + cosmos.gov.v1.QueryParamsResponse: type: object properties: - evidence: + voting_params: + description: voting_params defines the parameters related to voting. type: object properties: - type_url: + voting_period: + type: string + description: Length of the voting period. + deposit_params: + description: deposit_params defines the parameters related to deposit. + type: object + properties: + min_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: Minimum deposit for a proposal to enter voting period. + max_deposit_period: type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized + Maximum period for Atom holders to deposit on a proposal. Initial + value: 2 + months. + tally_params: + description: tally_params defines the parameters related to tally. + type: object + properties: + quorum: + type: string + description: >- + Minimum percentage of total stake needed to vote for a result to + be + considered valid. + threshold: + type: string + description: >- + Minimum proportion of Yes votes for proposal to pass. Default + value: 0.5. + veto_threshold: + type: string + description: >- + Minimum value of Veto votes to Total votes ratio for proposal to + be + vetoed. Default value: 1/3. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + cosmos.gov.v1.QueryProposalResponse: + type: object + properties: + proposal: + type: object + properties: + id: + type: string + format: uint64 + messages: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - protocol buffer message. This string must contain at least + protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + one "/" character. The last segment of the URL's path must + represent - the fully qualified name of the type (as in + the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + `path/google.protobuf.Duration`). The name should be in a + canonical form - (e.g., leading "." is not accepted). + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all types - that they + In practice, teams usually precompile into the binary all + types that they - expect it to use in the context of Any. However, for URLs which - use the + expect it to use in the context of Any. However, for URLs + which use the - scheme `http`, `https`, or no scheme, one can optionally set up a - type + scheme `http`, `https`, or no scheme, one can optionally set + up a type - server that maps type URLs to message definitions as follows: + server that maps type URLs to message definitions as + follows: - * If no scheme is provided, `https` is assumed. + * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - Note: this functionality is not currently available in the - official + Note: this functionality is not currently available in the + official - protobuf release, and it is not used for type URLs beginning with + protobuf release, and it is not used for type URLs beginning + with - type.googleapis.com. + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) might be + Schemes other than `http`, `https` (or the empty scheme) + might be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - URL that describes the type of the serialized message. + URL that describes the type of the serialized message. - Protobuf library provides support to pack/unpack Any values in the - form + Protobuf library provides support to pack/unpack Any values in + the form - of utility functions or additional generated methods of the Any type. + of utility functions or additional generated methods of the Any + type. - Example 1: Pack and unpack a message in C++. + Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Example 2: Pack and unpack a message in Java. + Example 2: Pack and unpack a message in Java. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - The pack methods provided by protobuf library will by default use + The pack methods provided by protobuf library will by default + use - 'type.googleapis.com/full.type.name' as the type URL and the unpack + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - methods only use the fully qualified type name after the last '/' + methods only use the fully qualified type name after the last + '/' - in the type URL, for example "foo.bar.com/x/y.z" will yield type + in the type URL, for example "foo.bar.com/x/y.z" will yield type - name "y.z". + name "y.z". - JSON + JSON - ==== + ==== - The JSON representation of an `Any` value uses the regular + The JSON representation of an `Any` value uses the regular - representation of the deserialized, embedded message, with an + representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + additional field `@type` which contains the type URL. Example: - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - If the embedded message type is well-known and has a custom JSON + If the embedded message type is well-known and has a custom JSON - representation, that representation will be embedded adding a field + representation, that representation will be embedded adding a + field - `value` which holds the custom JSON in addition to the `@type` + `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + field. Example (for message [google.protobuf.Duration][]): - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + status: + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + final_tally_result: + description: >- + final_tally_result is the final tally result of the proposal. When + + querying a proposal via gRPC, this field is not populated until + the + + proposal's voting period has ended. + type: object + properties: + yes_count: + type: string + abstain_count: + type: string + no_count: + type: string + no_with_veto_count: + type: string + submit_time: + type: string + format: date-time + deposit_end_time: + type: string + format: date-time + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + voting_start_time: + type: string + format: date-time + voting_end_time: + type: string + format: date-time + metadata: + type: string + description: metadata is any arbitrary metadata attached to the proposal. + description: Proposal defines the core field members of a governance proposal. description: >- - QueryEvidenceResponse is the response type for the Query/Evidence RPC + QueryProposalResponse is the response type for the Query/Proposal RPC method. - cosmos.gov.v1beta1.Deposit: + cosmos.gov.v1.QueryProposalsResponse: type: object properties: - proposal_id: - type: string - format: uint64 - depositor: - type: string - amount: + proposals: type: array items: type: object properties: - denom: - type: string - amount: + id: type: string - description: |- - Coin defines a token with a denomination and an amount. + format: uint64 + messages: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - description: |- - Deposit defines an amount deposited by an account address to an active - proposal. - cosmos.gov.v1beta1.DepositParams: - type: object - properties: - min_deposit: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - Coin defines a token with a denomination and an amount. + protocol buffer message. This string must contain at least - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - description: Minimum deposit for a proposal to enter voting period. - max_deposit_period: - type: string - description: >- - Maximum period for Atom holders to deposit on a proposal. Initial - value: 2 - months. - description: DepositParams defines the params for deposits on governance proposals. - cosmos.gov.v1beta1.Proposal: - type: object - properties: - proposal_id: - type: string - format: uint64 - content: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + one "/" character. The last segment of the URL's path must + represent - protocol buffer message. This string must contain at least + the fully qualified name of the type (as in - one "/" character. The last segment of the URL's path must - represent + `path/google.protobuf.Duration`). The name should be in a + canonical form - the fully qualified name of the type (as in + (e.g., leading "." is not accepted). - `path/google.protobuf.Duration`). The name should be in a - canonical form - (e.g., leading "." is not accepted). + In practice, teams usually precompile into the binary all + types that they + expect it to use in the context of Any. However, for URLs + which use the - In practice, teams usually precompile into the binary all types - that they + scheme `http`, `https`, or no scheme, one can optionally + set up a type - expect it to use in the context of Any. However, for URLs which - use the + server that maps type URLs to message definitions as + follows: - scheme `http`, `https`, or no scheme, one can optionally set up a - type - server that maps type URLs to message definitions as follows: + * If no scheme is provided, `https` is assumed. + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - * If no scheme is provided, `https` is assumed. + Note: this functionality is not currently available in the + official - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + protobuf release, and it is not used for type URLs + beginning with - Note: this functionality is not currently available in the - official + type.googleapis.com. - protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + Schemes other than `http`, `https` (or the empty scheme) + might be + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - Schemes other than `http`, `https` (or the empty scheme) might be + URL that describes the type of the serialized message. - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - URL that describes the type of the serialized message. + Protobuf library provides support to pack/unpack Any values in + the form + of utility functions or additional generated methods of the + Any type. - Protobuf library provides support to pack/unpack Any values in the - form - of utility functions or additional generated methods of the Any type. + Example 1: Pack and unpack a message in C++. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Example 1: Pack and unpack a message in C++. + Example 2: Pack and unpack a message in Java. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - Example 2: Pack and unpack a message in Java. + Example 3: Pack and unpack a message in Python. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - Example 3: Pack and unpack a message in Python. + Example 4: Pack and unpack a message in Go - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - Example 4: Pack and unpack a message in Go + The pack methods provided by protobuf library will by default + use - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - The pack methods provided by protobuf library will by default use + methods only use the fully qualified type name after the last + '/' - 'type.googleapis.com/full.type.name' as the type URL and the unpack + in the type URL, for example "foo.bar.com/x/y.z" will yield + type - methods only use the fully qualified type name after the last '/' + name "y.z". - in the type URL, for example "foo.bar.com/x/y.z" will yield type - name "y.z". + JSON + ==== - JSON + The JSON representation of an `Any` value uses the regular - ==== + representation of the deserialized, embedded message, with an - The JSON representation of an `Any` value uses the regular + additional field `@type` which contains the type URL. Example: - representation of the deserialized, embedded message, with an + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - additional field `@type` which contains the type URL. Example: + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + If the embedded message type is well-known and has a custom + JSON - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + representation, that representation will be embedded adding a + field - If the embedded message type is well-known and has a custom JSON + `value` which holds the custom JSON in addition to the `@type` - representation, that representation will be embedded adding a field + field. Example (for message [google.protobuf.Duration][]): - `value` which holds the custom JSON in addition to the `@type` + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + status: + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_DEPOSIT_PERIOD + - PROPOSAL_STATUS_VOTING_PERIOD + - PROPOSAL_STATUS_PASSED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_FAILED + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus enumerates the valid statuses of a proposal. - field. Example (for message [google.protobuf.Duration][]): + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. + - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit + period. + - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting + period. + - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has + passed. + - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has + been rejected. + - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has + failed. + final_tally_result: + description: >- + final_tally_result is the final tally result of the proposal. + When - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - status: - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED - description: |- - ProposalStatus enumerates the valid statuses of a proposal. + querying a proposal via gRPC, this field is not populated until + the - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - final_tally_result: - description: |- - final_tally_result is the final tally result of the proposal. When - querying a proposal via gRPC, this field is not populated until the - proposal's voting period has ended. + proposal's voting period has ended. + type: object + properties: + yes_count: + type: string + abstain_count: + type: string + no_count: + type: string + no_with_veto_count: + type: string + submit_time: + type: string + format: date-time + deposit_end_time: + type: string + format: date-time + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + voting_start_time: + type: string + format: date-time + voting_end_time: + type: string + format: date-time + metadata: + type: string + description: metadata is any arbitrary metadata attached to the proposal. + description: Proposal defines the core field members of a governance proposal. + pagination: + description: pagination defines the pagination in the response. type: object properties: - 'yes': - type: string - abstain: - type: string - 'no': + next_key: type: string - no_with_veto: + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string - submit_time: - type: string - format: date-time - deposit_end_time: - type: string - format: date-time - total_deposit: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - Coin defines a token with a denomination and an amount. + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - voting_start_time: - type: string - format: date-time - voting_end_time: - type: string - format: date-time - description: Proposal defines the core field members of a governance proposal. - cosmos.gov.v1beta1.ProposalStatus: - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED + was set, its value is undefined otherwise description: |- - ProposalStatus enumerates the valid statuses of a proposal. - - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - cosmos.gov.v1beta1.QueryDepositResponse: + QueryProposalsResponse is the response type for the Query/Proposals RPC + method. + cosmos.gov.v1.QueryTallyResultResponse: type: object properties: - deposit: + tally: + description: tally defines the requested tally. + type: object + properties: + yes_count: + type: string + abstain_count: + type: string + no_count: + type: string + no_with_veto_count: + type: string + description: >- + QueryTallyResultResponse is the response type for the Query/Tally RPC + method. + cosmos.gov.v1.QueryVoteResponse: + type: object + properties: + vote: type: object properties: proposal_id: type: string format: uint64 - depositor: + voter: type: string - amount: + options: type: array items: type: object properties: - denom: - type: string - amount: + option: type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the custom - method + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given + governance proposal. - signatures required by gogoproto. + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: WeightedVoteOption defines a unit of vote for vote split. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the vote. description: |- - Deposit defines an amount deposited by an account address to an active - proposal. - description: >- - QueryDepositResponse is the response type for the Query/Deposit RPC - method. - cosmos.gov.v1beta1.QueryDepositsResponse: + Vote defines a vote on a governance proposal. + A Vote consists of a proposal ID, the voter, and the vote option. + description: QueryVoteResponse is the response type for the Query/Vote RPC method. + cosmos.gov.v1.QueryVotesResponse: type: object properties: - deposits: + votes: type: array items: type: object @@ -66688,30 +81100,41 @@ definitions: proposal_id: type: string format: uint64 - depositor: + voter: type: string - amount: + options: type: array items: type: object properties: - denom: - type: string - amount: + option: type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the custom - method - - signatures required by gogoproto. - description: >- - Deposit defines an amount deposited by an account address to an - active + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given + governance proposal. - proposal. + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: WeightedVoteOption defines a unit of vote for vote split. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the vote. + description: |- + Vote defines a vote on a governance proposal. + A Vote consists of a proposal ID, the voter, and the vote option. + description: votes defined the queried votes. pagination: description: pagination defines the pagination in the response. type: object @@ -66731,551 +81154,413 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryDepositsResponse is the response type for the Query/Deposits RPC - method. - cosmos.gov.v1beta1.QueryParamsResponse: + description: QueryVotesResponse is the response type for the Query/Votes RPC method. + cosmos.gov.v1.TallyParams: type: object properties: - voting_params: - description: voting_params defines the parameters related to voting. - type: object - properties: - voting_period: - type: string - description: Length of the voting period. - deposit_params: - description: deposit_params defines the parameters related to deposit. - type: object - properties: - min_deposit: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string + quorum: + type: string + description: |- + Minimum percentage of total stake needed to vote for a result to be + considered valid. + threshold: + type: string + description: >- + Minimum proportion of Yes votes for proposal to pass. Default value: + 0.5. + veto_threshold: + type: string + description: |- + Minimum value of Veto votes to Total votes ratio for proposal to be + vetoed. Default value: 1/3. + description: TallyParams defines the params for tallying votes on governance proposals. + cosmos.gov.v1.TallyResult: + type: object + properties: + yes_count: + type: string + abstain_count: + type: string + no_count: + type: string + no_with_veto_count: + type: string + description: TallyResult defines a standard tally for a governance proposal. + cosmos.gov.v1.Vote: + type: object + properties: + proposal_id: + type: string + format: uint64 + voter: + type: string + options: + type: array + items: + type: object + properties: + option: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED description: >- - Coin defines a token with a denomination and an amount. + VoteOption enumerates the valid vote options for a given + governance proposal. + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: WeightedVoteOption defines a unit of vote for vote split. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the vote. + description: |- + Vote defines a vote on a governance proposal. + A Vote consists of a proposal ID, the voter, and the vote option. + cosmos.gov.v1.VoteOption: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given governance + proposal. - NOTE: The amount field is an Int which implements the custom - method + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + cosmos.gov.v1.VotingParams: + type: object + properties: + voting_period: + type: string + description: Length of the voting period. + description: VotingParams defines the params for voting on governance proposals. + cosmos.gov.v1.WeightedVoteOption: + type: object + properties: + option: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: >- + VoteOption enumerates the valid vote options for a given governance + proposal. - signatures required by gogoproto. - description: Minimum deposit for a proposal to enter voting period. - max_deposit_period: - type: string - description: >- - Maximum period for Atom holders to deposit on a proposal. Initial - value: 2 - months. - tally_params: - description: tally_params defines the parameters related to tally. - type: object - properties: - quorum: - type: string - format: byte - description: >- - Minimum percentage of total stake needed to vote for a result to - be - considered valid. - threshold: - type: string - format: byte - description: >- - Minimum proportion of Yes votes for proposal to pass. Default - value: 0.5. - veto_threshold: - type: string - format: byte - description: >- - Minimum value of Veto votes to Total votes ratio for proposal to - be - vetoed. Default value: 1/3. - description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.gov.v1beta1.QueryProposalResponse: + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + weight: + type: string + description: WeightedVoteOption defines a unit of vote for vote split. + cosmos.mint.v1beta1.Params: type: object properties: - proposal: + mint_denom: + type: string + title: type of coin to mint + inflation_rate_change: + type: string + title: maximum annual change in inflation rate + inflation_max: + type: string + title: maximum inflation rate + inflation_min: + type: string + title: minimum inflation rate + goal_bonded: + type: string + title: goal of percent bonded atoms + blocks_per_year: + type: string + format: uint64 + title: expected blocks per year + description: Params holds parameters for the mint module. + cosmos.mint.v1beta1.QueryAnnualProvisionsResponse: + type: object + properties: + annual_provisions: + type: string + format: byte + description: annual_provisions is the current minting annual provisions value. + description: |- + QueryAnnualProvisionsResponse is the response type for the + Query/AnnualProvisions RPC method. + cosmos.mint.v1beta1.QueryInflationResponse: + type: object + properties: + inflation: + type: string + format: byte + description: inflation is the current minting inflation value. + description: |- + QueryInflationResponse is the response type for the Query/Inflation RPC + method. + cosmos.mint.v1beta1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. type: object properties: - proposal_id: + mint_denom: type: string - format: uint64 - content: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally set - up a type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might - be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a - field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - status: + title: type of coin to mint + inflation_rate_change: type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED - description: |- - ProposalStatus enumerates the valid statuses of a proposal. - - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - final_tally_result: - description: >- - final_tally_result is the final tally result of the proposal. When - - querying a proposal via gRPC, this field is not populated until - the - - proposal's voting period has ended. - type: object - properties: - 'yes': - type: string - abstain: - type: string - 'no': - type: string - no_with_veto: - type: string - submit_time: + title: maximum annual change in inflation rate + inflation_max: + type: string + title: maximum inflation rate + inflation_min: type: string - format: date-time - deposit_end_time: + title: minimum inflation rate + goal_bonded: type: string - format: date-time - total_deposit: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the custom - method - - signatures required by gogoproto. - voting_start_time: + title: goal of percent bonded atoms + blocks_per_year: type: string - format: date-time - voting_end_time: + format: uint64 + title: expected blocks per year + description: QueryParamsResponse is the response type for the Query/Params RPC method. + cosmos.params.v1beta1.ParamChange: + type: object + properties: + subspace: + type: string + key: + type: string + value: + type: string + description: |- + ParamChange defines an individual parameter change, for use in + ParameterChangeProposal. + cosmos.params.v1beta1.QueryParamsResponse: + type: object + properties: + param: + description: param defines the queried parameter. + type: object + properties: + subspace: type: string - format: date-time - description: Proposal defines the core field members of a governance proposal. - description: >- - QueryProposalResponse is the response type for the Query/Proposal RPC - method. - cosmos.gov.v1beta1.QueryProposalsResponse: + key: + type: string + value: + type: string + description: QueryParamsResponse is response type for the Query/Params RPC method. + cosmos.params.v1beta1.QuerySubspacesResponse: type: object properties: - proposals: + subspaces: type: array items: type: object properties: - proposal_id: + subspace: type: string - format: uint64 - content: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally set - up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) - might be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in - the form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default - use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the last - '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an + keys: + type: array + items: + type: string + description: >- + Subspace defines a parameter subspace name and all the keys that + exist for - additional field `@type` which contains the type URL. Example: + the subspace. - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + Since: cosmos-sdk 0.46 + description: |- + QuerySubspacesResponse defines the response types for querying for all + registered subspaces and all keys for a subspace. - If the embedded message type is well-known and has a custom JSON + Since: cosmos-sdk 0.46 + cosmos.params.v1beta1.Subspace: + type: object + properties: + subspace: + type: string + keys: + type: array + items: + type: string + description: |- + Subspace defines a parameter subspace name and all the keys that exist for + the subspace. - representation, that representation will be embedded adding a - field + Since: cosmos-sdk 0.46 + cosmos.quarantine.v1beta1.AutoResponse: + type: string + enum: + - AUTO_RESPONSE_UNSPECIFIED + - AUTO_RESPONSE_ACCEPT + - AUTO_RESPONSE_DECLINE + default: AUTO_RESPONSE_UNSPECIFIED + description: >- + AutoResponse enumerates the quarantine auto-response options. - `value` which holds the custom JSON in addition to the `@type` + - AUTO_RESPONSE_UNSPECIFIED: AUTO_RESPONSE_UNSPECIFIED defines that an automatic response has not been specified. + This means that no automatic action should be taken, i.e. this + auto-response is off, - field. Example (for message [google.protobuf.Duration][]): + and default quarantine behavior is used. + - AUTO_RESPONSE_ACCEPT: AUTO_RESPONSE_ACCEPT defines that sends should be automatically accepted, bypassing quarantine. + - AUTO_RESPONSE_DECLINE: AUTO_RESPONSE_DECLINE defines that sends should be automatically declined. + cosmos.quarantine.v1beta1.AutoResponseEntry: + type: object + properties: + to_address: + type: string + description: to_address is the receiving address. + from_address: + type: string + description: from_address is the sending address. + response: + description: response is the auto-response setting for these two addresses. + type: string + enum: + - AUTO_RESPONSE_UNSPECIFIED + - AUTO_RESPONSE_ACCEPT + - AUTO_RESPONSE_DECLINE + default: AUTO_RESPONSE_UNSPECIFIED + description: AutoResponseEntry defines the auto response to one address from another. + cosmos.quarantine.v1beta1.QuarantinedFunds: + type: object + properties: + to_address: + type: string + description: >- + to_address is the intended recipient of the coins that have been + quarantined. + unaccepted_from_addresses: + type: array + items: + type: string + description: >- + unaccepted_from_addresses are the senders that have not been part of + an accept yet for these coins. + coins: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - status: + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: coins is the amount currently in quarantined for the two addresses. + declined: + type: boolean + description: declined is true if these funds were previously declined. + description: >- + QuarantinedFunds defines structure that represents coins that have been + quarantined. + cosmos.quarantine.v1beta1.QueryAutoResponsesResponse: + type: object + properties: + auto_responses: + type: array + items: + type: object + properties: + to_address: + type: string + description: to_address is the receiving address. + from_address: + type: string + description: from_address is the sending address. + response: + description: response is the auto-response setting for these two addresses. type: string enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED - description: |- - ProposalStatus enumerates the valid statuses of a proposal. - - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - final_tally_result: - description: >- - final_tally_result is the final tally result of the proposal. - When - - querying a proposal via gRPC, this field is not populated until - the + - AUTO_RESPONSE_UNSPECIFIED + - AUTO_RESPONSE_ACCEPT + - AUTO_RESPONSE_DECLINE + default: AUTO_RESPONSE_UNSPECIFIED + description: >- + AutoResponseEntry defines the auto response to one address from + another. + description: auto_responses are the auto-response entries from the provided query. + pagination: + description: pagination defines the pagination parameters of the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - proposal's voting period has ended. - type: object - properties: - 'yes': - type: string - abstain: - type: string - 'no': - type: string - no_with_veto: - type: string - submit_time: - type: string - format: date-time - deposit_end_time: + was set, its value is undefined otherwise + description: >- + QueryAutoResponsesResponse defines the RPC response of a AutoResponses + query. + cosmos.quarantine.v1beta1.QueryIsQuarantinedResponse: + type: object + properties: + is_quarantined: + type: boolean + description: is_quarantined is true if the to_address has opted into quarantine. + description: >- + QueryIsQuarantinedResponse defines the RPC response of an IsQuarantined + query. + cosmos.quarantine.v1beta1.QueryQuarantinedFundsResponse: + type: object + properties: + quarantinedFunds: + type: array + items: + type: object + properties: + to_address: type: string - format: date-time - total_deposit: + description: >- + to_address is the intended recipient of the coins that have been + quarantined. + unaccepted_from_addresses: + type: array + items: + type: string + description: >- + unaccepted_from_addresses are the senders that have not been + part of an accept yet for these coins. + coins: type: array items: type: object @@ -67292,15 +81577,18 @@ definitions: method signatures required by gogoproto. - voting_start_time: - type: string - format: date-time - voting_end_time: - type: string - format: date-time - description: Proposal defines the core field members of a governance proposal. + description: >- + coins is the amount currently in quarantined for the two + addresses. + declined: + type: boolean + description: declined is true if these funds were previously declined. + description: >- + QuarantinedFunds defines structure that represents coins that have + been quarantined. + description: quarantinedFunds is info about coins sitting in quarantine. pagination: - description: pagination defines the pagination in the response. + description: pagination defines the pagination parameters of the response. type: object properties: next_key: @@ -67318,155 +81606,159 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: |- - QueryProposalsResponse is the response type for the Query/Proposals RPC - method. - cosmos.gov.v1beta1.QueryTallyResultResponse: + description: >- + QueryQuarantinedFundsResponse defines the RPC response of a + QuarantinedFunds query. + cosmos.slashing.v1beta1.Params: type: object properties: - tally: - description: tally defines the requested tally. + signed_blocks_window: + type: string + format: int64 + min_signed_per_window: + type: string + format: byte + downtime_jail_duration: + type: string + slash_fraction_double_sign: + type: string + format: byte + slash_fraction_downtime: + type: string + format: byte + description: Params represents the parameters used for by the slashing module. + cosmos.slashing.v1beta1.QueryParamsResponse: + type: object + properties: + params: type: object properties: - 'yes': + signed_blocks_window: type: string - abstain: + format: int64 + min_signed_per_window: type: string - 'no': + format: byte + downtime_jail_duration: type: string - no_with_veto: + slash_fraction_double_sign: type: string - description: >- - QueryTallyResultResponse is the response type for the Query/Tally RPC - method. - cosmos.gov.v1beta1.QueryVoteResponse: + format: byte + slash_fraction_downtime: + type: string + format: byte + description: Params represents the parameters used for by the slashing module. + title: QueryParamsResponse is the response type for the Query/Params RPC method + cosmos.slashing.v1beta1.QuerySigningInfoResponse: type: object properties: - vote: + val_signing_info: type: object properties: - proposal_id: + address: type: string - format: uint64 - voter: + start_height: type: string - option: + format: int64 + title: Height at which validator was first a candidate OR was unjailed + index_offset: + type: string + format: int64 description: >- - Deprecated: Prefer to use `options` instead. This field is set in - queries + Index which is incremented each time the validator was a bonded - if and only if `len(options) == 1` and that option has weight 1. - In all + in a block and may have signed a precommit or not. This in + conjunction with the - other cases, this field will default to VOTE_OPTION_UNSPECIFIED. + `SignedBlocksWindow` param determines the index in the + `MissedBlocksBitArray`. + jailed_until: type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - options: - type: array - items: - type: object - properties: - option: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given - governance proposal. + format: date-time + description: >- + Timestamp until which the validator is jailed due to liveness + downtime. + tombstoned: + type: boolean + description: >- + Whether or not a validator has been tombstoned (killed out of + validator set). It is set - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: - type: string - description: |- - WeightedVoteOption defines a unit of vote for vote split. + once the validator commits an equivocation or for any other + configured misbehiavor. + missed_blocks_counter: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. - Since: cosmos-sdk 0.43 - title: 'Since: cosmos-sdk 0.43' - description: |- - Vote defines a vote on a governance proposal. - A Vote consists of a proposal ID, the voter, and the vote option. - description: QueryVoteResponse is the response type for the Query/Vote RPC method. - cosmos.gov.v1beta1.QueryVotesResponse: + Note that `Sum(MissedBlocksBitArray)` always equals + `MissedBlocksCounter`. + description: >- + ValidatorSigningInfo defines a validator's signing info for monitoring + their + + liveness activity. + title: val_signing_info is the signing info of requested val cons address + title: >- + QuerySigningInfoResponse is the response type for the Query/SigningInfo + RPC + + method + cosmos.slashing.v1beta1.QuerySigningInfosResponse: type: object properties: - votes: + info: type: array items: type: object properties: - proposal_id: + address: type: string - format: uint64 - voter: + start_height: type: string - option: + format: int64 + title: Height at which validator was first a candidate OR was unjailed + index_offset: + type: string + format: int64 description: >- - Deprecated: Prefer to use `options` instead. This field is set - in queries + Index which is incremented each time the validator was a bonded - if and only if `len(options) == 1` and that option has weight 1. - In all + in a block and may have signed a precommit or not. This in + conjunction with the - other cases, this field will default to VOTE_OPTION_UNSPECIFIED. + `SignedBlocksWindow` param determines the index in the + `MissedBlocksBitArray`. + jailed_until: type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - options: - type: array - items: - type: object - properties: - option: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given - governance proposal. + format: date-time + description: >- + Timestamp until which the validator is jailed due to liveness + downtime. + tombstoned: + type: boolean + description: >- + Whether or not a validator has been tombstoned (killed out of + validator set). It is set - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: - type: string - description: |- - WeightedVoteOption defines a unit of vote for vote split. + once the validator commits an equivocation or for any other + configured misbehiavor. + missed_blocks_counter: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. - Since: cosmos-sdk 0.43 - title: 'Since: cosmos-sdk 0.43' - description: |- - Vote defines a vote on a governance proposal. - A Vote consists of a proposal ID, the voter, and the vote option. - description: votes defined the queried votes. + Note that `Sum(MissedBlocksBitArray)` always equals + `MissedBlocksCounter`. + description: >- + ValidatorSigningInfo defines a validator's signing info for + monitoring their + + liveness activity. + title: info is the signing info of all validators pagination: - description: pagination defines the pagination in the response. type: object properties: next_key: @@ -67484,478 +81776,712 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: QueryVotesResponse is the response type for the Query/Votes RPC method. - cosmos.gov.v1beta1.TallyParams: - type: object - properties: - quorum: - type: string - format: byte - description: |- - Minimum percentage of total stake needed to vote for a result to be - considered valid. - threshold: - type: string - format: byte - description: >- - Minimum proportion of Yes votes for proposal to pass. Default value: - 0.5. - veto_threshold: - type: string - format: byte description: |- - Minimum value of Veto votes to Total votes ratio for proposal to be - vetoed. Default value: 1/3. - description: TallyParams defines the params for tallying votes on governance proposals. - cosmos.gov.v1beta1.TallyResult: + PageResponse is to be embedded in gRPC response messages where the + corresponding request message has used PageRequest. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: >- + QuerySigningInfosResponse is the response type for the Query/SigningInfos + RPC + + method + cosmos.slashing.v1beta1.ValidatorSigningInfo: type: object properties: - 'yes': - type: string - abstain: - type: string - 'no': - type: string - no_with_veto: + address: type: string - description: TallyResult defines a standard tally for a governance proposal. - cosmos.gov.v1beta1.Vote: - type: object - properties: - proposal_id: + start_height: type: string - format: uint64 - voter: + format: int64 + title: Height at which validator was first a candidate OR was unjailed + index_offset: type: string - option: + format: int64 description: >- - Deprecated: Prefer to use `options` instead. This field is set in - queries + Index which is incremented each time the validator was a bonded - if and only if `len(options) == 1` and that option has weight 1. In - all + in a block and may have signed a precommit or not. This in conjunction + with the - other cases, this field will default to VOTE_OPTION_UNSPECIFIED. + `SignedBlocksWindow` param determines the index in the + `MissedBlocksBitArray`. + jailed_until: type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - options: - type: array - items: - type: object - properties: - option: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given - governance proposal. + format: date-time + description: >- + Timestamp until which the validator is jailed due to liveness + downtime. + tombstoned: + type: boolean + description: >- + Whether or not a validator has been tombstoned (killed out of + validator set). It is set - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: - type: string - description: |- - WeightedVoteOption defines a unit of vote for vote split. + once the validator commits an equivocation or for any other configured + misbehiavor. + missed_blocks_counter: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. - Since: cosmos-sdk 0.43 - title: 'Since: cosmos-sdk 0.43' - description: |- - Vote defines a vote on a governance proposal. - A Vote consists of a proposal ID, the voter, and the vote option. - cosmos.gov.v1beta1.VoteOption: + Note that `Sum(MissedBlocksBitArray)` always equals + `MissedBlocksCounter`. + description: >- + ValidatorSigningInfo defines a validator's signing info for monitoring + their + + liveness activity. + cosmos.staking.v1beta1.BondStatus: type: string enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given governance - proposal. + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + description: |- + BondStatus is the status of a validator. - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - cosmos.gov.v1beta1.VotingParams: + - BOND_STATUS_UNSPECIFIED: UNSPECIFIED defines an invalid validator status. + - BOND_STATUS_UNBONDED: UNBONDED defines a validator that is not bonded. + - BOND_STATUS_UNBONDING: UNBONDING defines a validator that is unbonding. + - BOND_STATUS_BONDED: BONDED defines a validator that is bonded. + cosmos.staking.v1beta1.Commission: type: object properties: - voting_period: + commission_rates: + description: >- + commission_rates defines the initial commission rates to be used for + creating a validator. + type: object + properties: + rate: + type: string + description: rate is the commission rate charged to delegators, as a fraction. + max_rate: + type: string + description: >- + max_rate defines the maximum commission rate which validator can + ever charge, as a fraction. + max_change_rate: + type: string + description: >- + max_change_rate defines the maximum daily increase of the + validator commission, as a fraction. + update_time: type: string - description: Length of the voting period. - description: VotingParams defines the params for voting on governance proposals. - cosmos.gov.v1beta1.WeightedVoteOption: + format: date-time + description: update_time is the last time the commission rate was changed. + description: Commission defines commission parameters for a given validator. + cosmos.staking.v1beta1.CommissionRates: type: object properties: - option: + rate: + type: string + description: rate is the commission rate charged to delegators, as a fraction. + max_rate: type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED description: >- - VoteOption enumerates the valid vote options for a given governance - proposal. - - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: + max_rate defines the maximum commission rate which validator can ever + charge, as a fraction. + max_change_rate: type: string - description: |- - WeightedVoteOption defines a unit of vote for vote split. + description: >- + max_change_rate defines the maximum daily increase of the validator + commission, as a fraction. + description: >- + CommissionRates defines the initial commission rates to be used for + creating - Since: cosmos-sdk 0.43 - cosmos.gov.v1.Deposit: + a validator. + cosmos.staking.v1beta1.Delegation: type: object properties: - proposal_id: + delegator_address: type: string - format: uint64 - depositor: + description: delegator_address is the bech32-encoded address of the delegator. + validator_address: type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - Coin defines a token with a denomination and an amount. + description: validator_address is the bech32-encoded address of the validator. + shares: + type: string + description: shares define the delegation shares received. + description: |- + Delegation represents the bond with tokens held by an account. It is + owned by one delegator, and is associated with the voting power of one + validator. + cosmos.staking.v1beta1.DelegationResponse: + type: object + properties: + delegation: + type: object + properties: + delegator_address: + type: string + description: delegator_address is the bech32-encoded address of the delegator. + validator_address: + type: string + description: validator_address is the bech32-encoded address of the validator. + shares: + type: string + description: shares define the delegation shares received. + description: |- + Delegation represents the bond with tokens held by an account. It is + owned by one delegator, and is associated with the voting power of one + validator. + balance: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. description: |- - Deposit defines an amount deposited by an account address to an active - proposal. - cosmos.gov.v1.DepositParams: + DelegationResponse is equivalent to Delegation except that it contains a + balance in addition to shares which is more suitable for client responses. + cosmos.staking.v1beta1.Description: type: object properties: - min_deposit: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - Coin defines a token with a denomination and an amount. + moniker: + type: string + description: moniker defines a human-readable name for the validator. + identity: + type: string + description: >- + identity defines an optional identity signature (ex. UPort or + Keybase). + website: + type: string + description: website defines an optional website link. + security_contact: + type: string + description: security_contact defines an optional email for security contact. + details: + type: string + description: details define other optional details. + description: Description defines a validator description. + cosmos.staking.v1beta1.HistoricalInfo: + type: object + properties: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block in + the blockchain, - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - description: Minimum deposit for a proposal to enter voting period. - max_deposit_period: - type: string - description: >- - Maximum period for Atom holders to deposit on a proposal. Initial - value: 2 - months. - description: DepositParams defines the params for deposits on governance proposals. - cosmos.gov.v1.Proposal: - type: object - properties: - id: - type: string - format: uint64 - messages: + including all blockchain data structures and the rules of the + application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + title: prev block info + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + valset: type: array items: type: object properties: - type_url: + operator_address: type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized + operator_address defines the address of the validator's + operator; bech encoded in JSON. + consensus_pubkey: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - protocol buffer message. This string must contain at least + protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + one "/" character. The last segment of the URL's path must + represent - the fully qualified name of the type (as in + the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + `path/google.protobuf.Duration`). The name should be in a + canonical form - (e.g., leading "." is not accepted). + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all types - that they + In practice, teams usually precompile into the binary all + types that they - expect it to use in the context of Any. However, for URLs which - use the + expect it to use in the context of Any. However, for URLs + which use the - scheme `http`, `https`, or no scheme, one can optionally set up - a type + scheme `http`, `https`, or no scheme, one can optionally set + up a type - server that maps type URLs to message definitions as follows: + server that maps type URLs to message definitions as + follows: - * If no scheme is provided, `https` is assumed. + * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - Note: this functionality is not currently available in the - official + Note: this functionality is not currently available in the + official - protobuf release, and it is not used for type URLs beginning - with + protobuf release, and it is not used for type URLs beginning + with - type.googleapis.com. + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) might - be + Schemes other than `http`, `https` (or the empty scheme) + might be - used with implementation specific semantics. - value: - type: string - format: byte + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. + `Any` contains an arbitrary serialized protocol buffer message + along with a + URL that describes the type of the serialized message. - Protobuf library provides support to pack/unpack Any values in the - form - of utility functions or additional generated methods of the Any - type. + Protobuf library provides support to pack/unpack Any values in + the form + of utility functions or additional generated methods of the Any + type. - Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Example 1: Pack and unpack a message in C++. - Example 2: Pack and unpack a message in Java. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Example 2: Pack and unpack a message in Java. - Example 3: Pack and unpack a message in Python. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + Example 3: Pack and unpack a message in Python. - Example 4: Pack and unpack a message in Go + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + Example 4: Pack and unpack a message in Go - The pack methods provided by protobuf library will by default use + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - 'type.googleapis.com/full.type.name' as the type URL and the unpack + The pack methods provided by protobuf library will by default + use - methods only use the fully qualified type name after the last '/' + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - in the type URL, for example "foo.bar.com/x/y.z" will yield type + methods only use the fully qualified type name after the last + '/' - name "y.z". + in the type URL, for example "foo.bar.com/x/y.z" will yield type + name "y.z". - JSON - ==== + JSON - The JSON representation of an `Any` value uses the regular + ==== - representation of the deserialized, embedded message, with an + The JSON representation of an `Any` value uses the regular - additional field `@type` which contains the type URL. Example: + representation of the deserialized, embedded message, with an - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + additional field `@type` which contains the type URL. Example: - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - If the embedded message type is well-known and has a custom JSON + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - representation, that representation will be embedded adding a field + If the embedded message type is well-known and has a custom JSON - `value` which holds the custom JSON in addition to the `@type` + representation, that representation will be embedded adding a + field - field. Example (for message [google.protobuf.Duration][]): + `value` which holds the custom JSON in addition to the `@type` - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - status: - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED - description: |- - ProposalStatus enumerates the valid statuses of a proposal. + field. Example (for message [google.protobuf.Duration][]): - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - final_tally_result: - description: |- - final_tally_result is the final tally result of the proposal. When - querying a proposal via gRPC, this field is not populated until the - proposal's voting period has ended. - type: object - properties: - yes_count: - type: string - abstain_count: - type: string - no_count: - type: string - no_with_veto_count: - type: string - submit_time: - type: string - format: date-time - deposit_end_time: - type: string - format: date-time - total_deposit: - type: array - items: - type: object - properties: - denom: + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + jailed: + type: boolean + description: >- + jailed defined whether the validator has been jailed from bonded + status or not. + status: + description: status is the validator status (bonded/unbonding/unbonded). type: string - amount: + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: type: string - description: |- - Coin defines a token with a denomination and an amount. + description: tokens define the delegated tokens (incl. self-delegation). + delegator_shares: + type: string + description: >- + delegator_shares defines total shares issued to a validator's + delegators. + description: + description: description defines the description terms for the validator. + type: object + properties: + moniker: + type: string + description: moniker defines a human-readable name for the validator. + identity: + type: string + description: >- + identity defines an optional identity signature (ex. UPort + or Keybase). + website: + type: string + description: website defines an optional website link. + security_contact: + type: string + description: >- + security_contact defines an optional email for security + contact. + details: + type: string + description: details define other optional details. + unbonding_height: + type: string + format: int64 + description: >- + unbonding_height defines, if unbonding, the height at which this + validator has begun unbonding. + unbonding_time: + type: string + format: date-time + description: >- + unbonding_time defines, if unbonding, the min time for the + validator to complete unbonding. + commission: + description: commission defines the commission parameters. + type: object + properties: + commission_rates: + description: >- + commission_rates defines the initial commission rates to be + used for creating a validator. + type: object + properties: + rate: + type: string + description: >- + rate is the commission rate charged to delegators, as a + fraction. + max_rate: + type: string + description: >- + max_rate defines the maximum commission rate which + validator can ever charge, as a fraction. + max_change_rate: + type: string + description: >- + max_change_rate defines the maximum daily increase of + the validator commission, as a fraction. + update_time: + type: string + format: date-time + description: >- + update_time is the last time the commission rate was + changed. + min_self_delegation: + type: string + description: >- + min_self_delegation is the validator's self declared minimum + self delegation. - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - voting_start_time: + + Since: cosmos-sdk 0.46 + description: >- + Validator defines a validator, together with the total amount of the + + Validator's bond shares and their exchange rate to coins. Slashing + results in + + a decrease in the exchange rate, allowing correct calculation of + future + + undelegations without iterating over delegators. When coins are + delegated to + + this validator, the validator is credited with a delegation whose + number of + + bond shares is based on the amount of coins delegated divided by the + current + + exchange rate. Voting power can be calculated as total bonded shares + + multiplied by exchange rate. + description: >- + HistoricalInfo contains header and validator information for a given + block. + + It is stored as part of staking module's state, which persists the `n` + most + + recent HistoricalInfo + + (`n` is set by the staking module's `historical_entries` parameter). + cosmos.staking.v1beta1.Params: + type: object + properties: + unbonding_time: type: string - format: date-time - voting_end_time: + description: unbonding_time is the time duration of unbonding. + max_validators: + type: integer + format: int64 + description: max_validators is the maximum number of validators. + max_entries: + type: integer + format: int64 + description: >- + max_entries is the max entries for either unbonding delegation or + redelegation (per pair/trio). + historical_entries: + type: integer + format: int64 + description: historical_entries is the number of historical entries to persist. + bond_denom: + type: string + description: bond_denom defines the bondable coin denomination. + min_commission_rate: + type: string + title: >- + min_commission_rate is the chain-wide minimum commission rate that a + validator can charge their delegators + description: Params defines the parameters for the staking module. + cosmos.staking.v1beta1.Pool: + type: object + properties: + not_bonded_tokens: type: string - format: date-time - metadata: + bonded_tokens: type: string - description: metadata is any arbitrary metadata attached to the proposal. - description: Proposal defines the core field members of a governance proposal. - cosmos.gov.v1.ProposalStatus: - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED description: |- - ProposalStatus enumerates the valid statuses of a proposal. - - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - cosmos.gov.v1.QueryDepositResponse: + Pool is used for tracking bonded and not-bonded token supply of the bond + denomination. + cosmos.staking.v1beta1.QueryDelegationResponse: type: object properties: - deposit: + delegation_response: type: object properties: - proposal_id: - type: string - format: uint64 - depositor: - type: string - amount: - type: array - items: + delegation: + type: object + properties: + delegator_address: + type: string + description: >- + delegator_address is the bech32-encoded address of the + delegator. + validator_address: + type: string + description: >- + validator_address is the bech32-encoded address of the + validator. + shares: + type: string + description: shares define the delegation shares received. + description: >- + Delegation represents the bond with tokens held by an account. It + is + + owned by one delegator, and is associated with the voting power of + one + + validator. + balance: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + DelegationResponse is equivalent to Delegation except that it contains + a + + balance in addition to shares which is more suitable for client + responses. + description: >- + QueryDelegationResponse is response type for the Query/Delegation RPC + method. + cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse: + type: object + properties: + delegation_responses: + type: array + items: + type: object + properties: + delegation: + type: object + properties: + delegator_address: + type: string + description: >- + delegator_address is the bech32-encoded address of the + delegator. + validator_address: + type: string + description: >- + validator_address is the bech32-encoded address of the + validator. + shares: + type: string + description: shares define the delegation shares received. + description: >- + Delegation represents the bond with tokens held by an account. + It is + + owned by one delegator, and is associated with the voting power + of one + + validator. + balance: type: object properties: denom: @@ -67970,47 +82496,85 @@ definitions: method signatures required by gogoproto. - description: |- - Deposit defines an amount deposited by an account address to an active - proposal. - description: >- - QueryDepositResponse is the response type for the Query/Deposit RPC - method. - cosmos.gov.v1.QueryDepositsResponse: + description: >- + DelegationResponse is equivalent to Delegation except that it + contains a + + balance in addition to shares which is more suitable for client + responses. + description: delegation_responses defines all the delegations' info of a delegator. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: |- + QueryDelegatorDelegationsResponse is response type for the + Query/DelegatorDelegations RPC method. + cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse: type: object properties: - deposits: + unbonding_responses: type: array items: type: object properties: - proposal_id: + delegator_address: type: string - format: uint64 - depositor: + description: >- + delegator_address is the bech32-encoded address of the + delegator. + validator_address: type: string - amount: + description: >- + validator_address is the bech32-encoded address of the + validator. + entries: type: array items: type: object properties: - denom: + creation_height: type: string - amount: + format: int64 + description: >- + creation_height is the height which the unbonding took + place. + completion_time: + type: string + format: date-time + description: completion_time is the unix time for unbonding completion. + initial_balance: + type: string + description: >- + initial_balance defines the tokens initially scheduled to + receive at completion. + balance: type: string + description: balance defines the tokens to receive at completion. description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the custom - method - - signatures required by gogoproto. + UnbondingDelegationEntry defines an unbonding object with + relevant metadata. + description: entries are the unbonding delegation entries. description: >- - Deposit defines an amount deposited by an account address to an - active + UnbondingDelegation stores all of a single delegator's unbonding + bonds - proposal. + for a single validator in an time-ordered list. pagination: description: pagination defines the pagination in the response. type: object @@ -68030,81 +82594,317 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryDepositsResponse is the response type for the Query/Deposits RPC - method. - cosmos.gov.v1.QueryParamsResponse: + description: |- + QueryUnbondingDelegatorDelegationsResponse is response type for the + Query/UnbondingDelegatorDelegations RPC method. + cosmos.staking.v1beta1.QueryDelegatorValidatorResponse: type: object properties: - voting_params: - description: voting_params defines the parameters related to voting. + validator: type: object properties: - voting_period: + operator_address: type: string - description: Length of the voting period. - deposit_params: - description: deposit_params defines the parameters related to deposit. - type: object - properties: - min_deposit: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + description: >- + operator_address defines the address of the validator's operator; + bech encoded in JSON. + consensus_pubkey: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + protocol buffer message. This string must contain at least - NOTE: The amount field is an Int which implements the custom - method + one "/" character. The last segment of the URL's path must + represent - signatures required by gogoproto. - description: Minimum deposit for a proposal to enter voting period. - max_deposit_period: + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + jailed: + type: boolean + description: >- + jailed defined whether the validator has been jailed from bonded + status or not. + status: + description: status is the validator status (bonded/unbonding/unbonded). + type: string + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: + type: string + description: tokens define the delegated tokens (incl. self-delegation). + delegator_shares: type: string description: >- - Maximum period for Atom holders to deposit on a proposal. Initial - value: 2 - months. - tally_params: - description: tally_params defines the parameters related to tally. - type: object - properties: - quorum: + delegator_shares defines total shares issued to a validator's + delegators. + description: + description: description defines the description terms for the validator. + type: object + properties: + moniker: + type: string + description: moniker defines a human-readable name for the validator. + identity: + type: string + description: >- + identity defines an optional identity signature (ex. UPort or + Keybase). + website: + type: string + description: website defines an optional website link. + security_contact: + type: string + description: >- + security_contact defines an optional email for security + contact. + details: + type: string + description: details define other optional details. + unbonding_height: type: string + format: int64 description: >- - Minimum percentage of total stake needed to vote for a result to - be - considered valid. - threshold: + unbonding_height defines, if unbonding, the height at which this + validator has begun unbonding. + unbonding_time: type: string + format: date-time description: >- - Minimum proportion of Yes votes for proposal to pass. Default - value: 0.5. - veto_threshold: + unbonding_time defines, if unbonding, the min time for the + validator to complete unbonding. + commission: + description: commission defines the commission parameters. + type: object + properties: + commission_rates: + description: >- + commission_rates defines the initial commission rates to be + used for creating a validator. + type: object + properties: + rate: + type: string + description: >- + rate is the commission rate charged to delegators, as a + fraction. + max_rate: + type: string + description: >- + max_rate defines the maximum commission rate which + validator can ever charge, as a fraction. + max_change_rate: + type: string + description: >- + max_change_rate defines the maximum daily increase of the + validator commission, as a fraction. + update_time: + type: string + format: date-time + description: update_time is the last time the commission rate was changed. + min_self_delegation: type: string description: >- - Minimum value of Veto votes to Total votes ratio for proposal to - be - vetoed. Default value: 1/3. - description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.gov.v1.QueryProposalResponse: + min_self_delegation is the validator's self declared minimum self + delegation. + + + Since: cosmos-sdk 0.46 + description: >- + Validator defines a validator, together with the total amount of the + + Validator's bond shares and their exchange rate to coins. Slashing + results in + + a decrease in the exchange rate, allowing correct calculation of + future + + undelegations without iterating over delegators. When coins are + delegated to + + this validator, the validator is credited with a delegation whose + number of + + bond shares is based on the amount of coins delegated divided by the + current + + exchange rate. Voting power can be calculated as total bonded shares + + multiplied by exchange rate. + description: |- + QueryDelegatorValidatorResponse response type for the + Query/DelegatorValidator RPC method. + cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse: type: object properties: - proposal: - type: object - properties: - id: - type: string - format: uint64 - messages: - type: array - items: + validators: + type: array + items: + type: object + properties: + operator_address: + type: string + description: >- + operator_address defines the address of the validator's + operator; bech encoded in JSON. + consensus_pubkey: type: object properties: type_url: @@ -68273,344 +83073,698 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - status: - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED - description: |- - ProposalStatus enumerates the valid statuses of a proposal. + jailed: + type: boolean + description: >- + jailed defined whether the validator has been jailed from bonded + status or not. + status: + description: status is the validator status (bonded/unbonding/unbonded). + type: string + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: + type: string + description: tokens define the delegated tokens (incl. self-delegation). + delegator_shares: + type: string + description: >- + delegator_shares defines total shares issued to a validator's + delegators. + description: + description: description defines the description terms for the validator. + type: object + properties: + moniker: + type: string + description: moniker defines a human-readable name for the validator. + identity: + type: string + description: >- + identity defines an optional identity signature (ex. UPort + or Keybase). + website: + type: string + description: website defines an optional website link. + security_contact: + type: string + description: >- + security_contact defines an optional email for security + contact. + details: + type: string + description: details define other optional details. + unbonding_height: + type: string + format: int64 + description: >- + unbonding_height defines, if unbonding, the height at which this + validator has begun unbonding. + unbonding_time: + type: string + format: date-time + description: >- + unbonding_time defines, if unbonding, the min time for the + validator to complete unbonding. + commission: + description: commission defines the commission parameters. + type: object + properties: + commission_rates: + description: >- + commission_rates defines the initial commission rates to be + used for creating a validator. + type: object + properties: + rate: + type: string + description: >- + rate is the commission rate charged to delegators, as a + fraction. + max_rate: + type: string + description: >- + max_rate defines the maximum commission rate which + validator can ever charge, as a fraction. + max_change_rate: + type: string + description: >- + max_change_rate defines the maximum daily increase of + the validator commission, as a fraction. + update_time: + type: string + format: date-time + description: >- + update_time is the last time the commission rate was + changed. + min_self_delegation: + type: string + description: >- + min_self_delegation is the validator's self declared minimum + self delegation. - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - final_tally_result: - description: >- - final_tally_result is the final tally result of the proposal. When - querying a proposal via gRPC, this field is not populated until - the + Since: cosmos-sdk 0.46 + description: >- + Validator defines a validator, together with the total amount of the - proposal's voting period has ended. + Validator's bond shares and their exchange rate to coins. Slashing + results in + + a decrease in the exchange rate, allowing correct calculation of + future + + undelegations without iterating over delegators. When coins are + delegated to + + this validator, the validator is credited with a delegation whose + number of + + bond shares is based on the amount of coins delegated divided by the + current + + exchange rate. Voting power can be calculated as total bonded shares + + multiplied by exchange rate. + description: validators defines the validators' info of a delegator. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: |- + QueryDelegatorValidatorsResponse is response type for the + Query/DelegatorValidators RPC method. + cosmos.staking.v1beta1.QueryHistoricalInfoResponse: + type: object + properties: + hist: + description: hist defines the historical info at the given height. + type: object + properties: + header: type: object properties: - yes_count: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block + in the blockchain, + + including all blockchain data structures and the rules of the + application's + + state transition machine. + chain_id: type: string - abstain_count: + height: type: string - no_count: + format: int64 + time: type: string - no_with_veto_count: + format: date-time + last_block_id: + title: prev block info + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + last_commit_hash: type: string - submit_time: - type: string - format: date-time - deposit_end_time: - type: string - format: date-time - total_deposit: + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + valset: type: array items: type: object properties: - denom: - type: string - amount: + operator_address: type: string - description: >- - Coin defines a token with a denomination and an amount. + description: >- + operator_address defines the address of the validator's + operator; bech encoded in JSON. + consensus_pubkey: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + protocol buffer message. This string must contain at + least - NOTE: The amount field is an Int which implements the custom - method + one "/" character. The last segment of the URL's path + must represent - signatures required by gogoproto. - voting_start_time: - type: string - format: date-time - voting_end_time: - type: string - format: date-time - metadata: - type: string - description: metadata is any arbitrary metadata attached to the proposal. - description: Proposal defines the core field members of a governance proposal. - description: >- - QueryProposalResponse is the response type for the Query/Proposal RPC - method. - cosmos.gov.v1.QueryProposalsResponse: - type: object - properties: - proposals: - type: array - items: - type: object - properties: - id: - type: string - format: uint64 - messages: - type: array - items: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of - the serialized + the fully qualified name of the type (as in - protocol buffer message. This string must contain at least + `path/google.protobuf.Duration`). The name should be in + a canonical form - one "/" character. The last segment of the URL's path must - represent + (e.g., leading "." is not accepted). - the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + In practice, teams usually precompile into the binary + all types that they - (e.g., leading "." is not accepted). + expect it to use in the context of Any. However, for + URLs which use the + scheme `http`, `https`, or no scheme, one can optionally + set up a type - In practice, teams usually precompile into the binary all - types that they + server that maps type URLs to message definitions as + follows: - expect it to use in the context of Any. However, for URLs - which use the - scheme `http`, `https`, or no scheme, one can optionally - set up a type + * If no scheme is provided, `https` is assumed. - server that maps type URLs to message definitions as - follows: + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + Note: this functionality is not currently available in + the official - * If no scheme is provided, `https` is assumed. + protobuf release, and it is not used for type URLs + beginning with - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based - on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + type.googleapis.com. - Note: this functionality is not currently available in the - official - protobuf release, and it is not used for type URLs - beginning with + Schemes other than `http`, `https` (or the empty scheme) + might be - type.googleapis.com. + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + URL that describes the type of the serialized message. - Schemes other than `http`, `https` (or the empty scheme) - might be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + Protobuf library provides support to pack/unpack Any values + in the form - URL that describes the type of the serialized message. + of utility functions or additional generated methods of the + Any type. - Protobuf library provides support to pack/unpack Any values in - the form + Example 1: Pack and unpack a message in C++. - of utility functions or additional generated methods of the - Any type. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + Example 2: Pack and unpack a message in Java. - Example 1: Pack and unpack a message in C++. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) ... - } + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - Example 2: Pack and unpack a message in Java. + Example 4: Pack and unpack a message in Go - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' - Example 3: Pack and unpack a message in Python. + in the type URL, for example "foo.bar.com/x/y.z" will yield + type - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + name "y.z". - Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - The pack methods provided by protobuf library will by default - use + JSON - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + ==== - methods only use the fully qualified type name after the last - '/' + The JSON representation of an `Any` value uses the regular - in the type URL, for example "foo.bar.com/x/y.z" will yield - type + representation of the deserialized, embedded message, with + an - name "y.z". + additional field `@type` which contains the type URL. + Example: + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - JSON + If the embedded message type is well-known and has a custom + JSON - ==== + representation, that representation will be embedded adding + a field - The JSON representation of an `Any` value uses the regular + `value` which holds the custom JSON in addition to the + `@type` - representation of the deserialized, embedded message, with an + field. Example (for message [google.protobuf.Duration][]): - additional field `@type` which contains the type URL. Example: + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + jailed: + type: boolean + description: >- + jailed defined whether the validator has been jailed from + bonded status or not. + status: + description: status is the validator status (bonded/unbonding/unbonded). + type: string + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: + type: string + description: tokens define the delegated tokens (incl. self-delegation). + delegator_shares: + type: string + description: >- + delegator_shares defines total shares issued to a + validator's delegators. + description: + description: description defines the description terms for the validator. + type: object + properties: + moniker: + type: string + description: moniker defines a human-readable name for the validator. + identity: + type: string + description: >- + identity defines an optional identity signature (ex. + UPort or Keybase). + website: + type: string + description: website defines an optional website link. + security_contact: + type: string + description: >- + security_contact defines an optional email for security + contact. + details: + type: string + description: details define other optional details. + unbonding_height: + type: string + format: int64 + description: >- + unbonding_height defines, if unbonding, the height at which + this validator has begun unbonding. + unbonding_time: + type: string + format: date-time + description: >- + unbonding_time defines, if unbonding, the min time for the + validator to complete unbonding. + commission: + description: commission defines the commission parameters. + type: object + properties: + commission_rates: + description: >- + commission_rates defines the initial commission rates to + be used for creating a validator. + type: object + properties: + rate: + type: string + description: >- + rate is the commission rate charged to delegators, + as a fraction. + max_rate: + type: string + description: >- + max_rate defines the maximum commission rate which + validator can ever charge, as a fraction. + max_change_rate: + type: string + description: >- + max_change_rate defines the maximum daily increase + of the validator commission, as a fraction. + update_time: + type: string + format: date-time + description: >- + update_time is the last time the commission rate was + changed. + min_self_delegation: + type: string + description: >- + min_self_delegation is the validator's self declared minimum + self delegation. - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + Since: cosmos-sdk 0.46 + description: >- + Validator defines a validator, together with the total amount of + the - If the embedded message type is well-known and has a custom - JSON + Validator's bond shares and their exchange rate to coins. + Slashing results in - representation, that representation will be embedded adding a - field + a decrease in the exchange rate, allowing correct calculation of + future - `value` which holds the custom JSON in addition to the `@type` + undelegations without iterating over delegators. When coins are + delegated to - field. Example (for message [google.protobuf.Duration][]): + this validator, the validator is credited with a delegation + whose number of - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - status: - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_DEPOSIT_PERIOD - - PROPOSAL_STATUS_VOTING_PERIOD - - PROPOSAL_STATUS_PASSED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_FAILED - default: PROPOSAL_STATUS_UNSPECIFIED - description: |- - ProposalStatus enumerates the valid statuses of a proposal. + bond shares is based on the amount of coins delegated divided by + the current - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status. - - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit - period. - - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting - period. - - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has - passed. - - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has - been rejected. - - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has - failed. - final_tally_result: - description: >- - final_tally_result is the final tally result of the proposal. - When + exchange rate. Voting power can be calculated as total bonded + shares - querying a proposal via gRPC, this field is not populated until - the + multiplied by exchange rate. + description: >- + QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo + RPC - proposal's voting period has ended. + method. + cosmos.staking.v1beta1.QueryParamsResponse: + type: object + properties: + params: + description: params holds all the parameters of this module. + type: object + properties: + unbonding_time: + type: string + description: unbonding_time is the time duration of unbonding. + max_validators: + type: integer + format: int64 + description: max_validators is the maximum number of validators. + max_entries: + type: integer + format: int64 + description: >- + max_entries is the max entries for either unbonding delegation or + redelegation (per pair/trio). + historical_entries: + type: integer + format: int64 + description: historical_entries is the number of historical entries to persist. + bond_denom: + type: string + description: bond_denom defines the bondable coin denomination. + min_commission_rate: + type: string + title: >- + min_commission_rate is the chain-wide minimum commission rate that + a validator can charge their delegators + description: QueryParamsResponse is response type for the Query/Params RPC method. + cosmos.staking.v1beta1.QueryPoolResponse: + type: object + properties: + pool: + description: pool defines the pool info. + type: object + properties: + not_bonded_tokens: + type: string + bonded_tokens: + type: string + description: QueryPoolResponse is response type for the Query/Pool RPC method. + cosmos.staking.v1beta1.QueryRedelegationsResponse: + type: object + properties: + redelegation_responses: + type: array + items: + type: object + properties: + redelegation: type: object properties: - yes_count: - type: string - abstain_count: + delegator_address: type: string - no_count: + description: >- + delegator_address is the bech32-encoded address of the + delegator. + validator_src_address: type: string - no_with_veto_count: + description: >- + validator_src_address is the validator redelegation source + operator address. + validator_dst_address: type: string - submit_time: - type: string - format: date-time - deposit_end_time: - type: string - format: date-time - total_deposit: + description: >- + validator_dst_address is the validator redelegation + destination operator address. + entries: + type: array + items: + type: object + properties: + creation_height: + type: string + format: int64 + description: >- + creation_height defines the height which the + redelegation took place. + completion_time: + type: string + format: date-time + description: >- + completion_time defines the unix time for redelegation + completion. + initial_balance: + type: string + description: >- + initial_balance defines the initial balance when + redelegation started. + shares_dst: + type: string + description: >- + shares_dst is the amount of destination-validator + shares created by redelegation. + description: >- + RedelegationEntry defines a redelegation object with + relevant metadata. + description: entries are the redelegation entries. + description: >- + Redelegation contains the list of a particular delegator's + redelegating bonds + + from a particular source validator to a particular destination + validator. + entries: type: array items: type: object properties: - denom: - type: string - amount: + redelegation_entry: + type: object + properties: + creation_height: + type: string + format: int64 + description: >- + creation_height defines the height which the + redelegation took place. + completion_time: + type: string + format: date-time + description: >- + completion_time defines the unix time for redelegation + completion. + initial_balance: + type: string + description: >- + initial_balance defines the initial balance when + redelegation started. + shares_dst: + type: string + description: >- + shares_dst is the amount of destination-validator + shares created by redelegation. + description: >- + RedelegationEntry defines a redelegation object with + relevant metadata. + balance: type: string description: >- - Coin defines a token with a denomination and an amount. + RedelegationEntryResponse is equivalent to a RedelegationEntry + except that it + contains a balance in addition to shares which is more + suitable for client - NOTE: The amount field is an Int which implements the custom - method + responses. + description: >- + RedelegationResponse is equivalent to a Redelegation except that its + entries - signatures required by gogoproto. - voting_start_time: - type: string - format: date-time - voting_end_time: - type: string - format: date-time - metadata: - type: string - description: metadata is any arbitrary metadata attached to the proposal. - description: Proposal defines the core field members of a governance proposal. + contain a balance in addition to shares which is more suitable for + client + + responses. pagination: description: pagination defines the pagination in the response. type: object @@ -68630,117 +83784,109 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: |- - QueryProposalsResponse is the response type for the Query/Proposals RPC - method. - cosmos.gov.v1.QueryTallyResultResponse: - type: object - properties: - tally: - description: tally defines the requested tally. - type: object - properties: - yes_count: - type: string - abstain_count: - type: string - no_count: - type: string - no_with_veto_count: - type: string description: >- - QueryTallyResultResponse is the response type for the Query/Tally RPC + QueryRedelegationsResponse is response type for the Query/Redelegations + RPC + method. - cosmos.gov.v1.QueryVoteResponse: + cosmos.staking.v1beta1.QueryUnbondingDelegationResponse: type: object properties: - vote: + unbond: type: object properties: - proposal_id: + delegator_address: type: string - format: uint64 - voter: + description: delegator_address is the bech32-encoded address of the delegator. + validator_address: type: string - options: + description: validator_address is the bech32-encoded address of the validator. + entries: type: array items: type: object properties: - option: + creation_height: type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED + format: int64 description: >- - VoteOption enumerates the valid vote options for a given - governance proposal. - - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: + creation_height is the height which the unbonding took + place. + completion_time: type: string - description: WeightedVoteOption defines a unit of vote for vote split. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the vote. + format: date-time + description: completion_time is the unix time for unbonding completion. + initial_balance: + type: string + description: >- + initial_balance defines the tokens initially scheduled to + receive at completion. + balance: + type: string + description: balance defines the tokens to receive at completion. + description: >- + UnbondingDelegationEntry defines an unbonding object with + relevant metadata. + description: entries are the unbonding delegation entries. description: |- - Vote defines a vote on a governance proposal. - A Vote consists of a proposal ID, the voter, and the vote option. - description: QueryVoteResponse is the response type for the Query/Vote RPC method. - cosmos.gov.v1.QueryVotesResponse: + UnbondingDelegation stores all of a single delegator's unbonding bonds + for a single validator in an time-ordered list. + description: |- + QueryDelegationResponse is response type for the Query/UnbondingDelegation + RPC method. + cosmos.staking.v1beta1.QueryValidatorDelegationsResponse: type: object properties: - votes: + delegation_responses: type: array items: - type: object - properties: - proposal_id: - type: string - format: uint64 - voter: - type: string - options: - type: array - items: - type: object - properties: - option: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given - governance proposal. + type: object + properties: + delegation: + type: object + properties: + delegator_address: + type: string + description: >- + delegator_address is the bech32-encoded address of the + delegator. + validator_address: + type: string + description: >- + validator_address is the bech32-encoded address of the + validator. + shares: + type: string + description: shares define the delegation shares received. + description: >- + Delegation represents the bond with tokens held by an account. + It is - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: - type: string - description: WeightedVoteOption defines a unit of vote for vote split. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the vote. - description: |- - Vote defines a vote on a governance proposal. - A Vote consists of a proposal ID, the voter, and the vote option. - description: votes defined the queried votes. + owned by one delegator, and is associated with the voting power + of one + + validator. + balance: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + DelegationResponse is equivalent to Delegation except that it + contains a + + balance in addition to shares which is more suitable for client + responses. pagination: description: pagination defines the pagination in the response. type: object @@ -68760,363 +83906,353 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: QueryVotesResponse is the response type for the Query/Votes RPC method. - cosmos.gov.v1.TallyParams: - type: object - properties: - quorum: - type: string - description: |- - Minimum percentage of total stake needed to vote for a result to be - considered valid. - threshold: - type: string - description: >- - Minimum proportion of Yes votes for proposal to pass. Default value: - 0.5. - veto_threshold: - type: string - description: |- - Minimum value of Veto votes to Total votes ratio for proposal to be - vetoed. Default value: 1/3. - description: TallyParams defines the params for tallying votes on governance proposals. - cosmos.gov.v1.TallyResult: - type: object - properties: - yes_count: - type: string - abstain_count: - type: string - no_count: - type: string - no_with_veto_count: - type: string - description: TallyResult defines a standard tally for a governance proposal. - cosmos.gov.v1.Vote: - type: object - properties: - proposal_id: - type: string - format: uint64 - voter: - type: string - options: - type: array - items: - type: object - properties: - option: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given - governance proposal. - - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: - type: string - description: WeightedVoteOption defines a unit of vote for vote split. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the vote. - description: |- - Vote defines a vote on a governance proposal. - A Vote consists of a proposal ID, the voter, and the vote option. - cosmos.gov.v1.VoteOption: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given governance - proposal. - - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - cosmos.gov.v1.VotingParams: - type: object - properties: - voting_period: - type: string - description: Length of the voting period. - description: VotingParams defines the params for voting on governance proposals. - cosmos.gov.v1.WeightedVoteOption: - type: object - properties: - option: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: >- - VoteOption enumerates the valid vote options for a given governance - proposal. - - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - weight: - type: string - description: WeightedVoteOption defines a unit of vote for vote split. - cosmos.mint.v1beta1.Params: - type: object - properties: - mint_denom: - type: string - title: type of coin to mint - inflation_rate_change: - type: string - title: maximum annual change in inflation rate - inflation_max: - type: string - title: maximum inflation rate - inflation_min: - type: string - title: minimum inflation rate - goal_bonded: - type: string - title: goal of percent bonded atoms - blocks_per_year: - type: string - format: uint64 - title: expected blocks per year - description: Params holds parameters for the mint module. - cosmos.mint.v1beta1.QueryAnnualProvisionsResponse: - type: object - properties: - annual_provisions: - type: string - format: byte - description: annual_provisions is the current minting annual provisions value. - description: |- - QueryAnnualProvisionsResponse is the response type for the - Query/AnnualProvisions RPC method. - cosmos.mint.v1beta1.QueryInflationResponse: - type: object - properties: - inflation: - type: string - format: byte - description: inflation is the current minting inflation value. - description: |- - QueryInflationResponse is the response type for the Query/Inflation RPC - method. - cosmos.mint.v1beta1.QueryParamsResponse: + title: |- + QueryValidatorDelegationsResponse is response type for the + Query/ValidatorDelegations RPC method + cosmos.staking.v1beta1.QueryValidatorResponse: type: object properties: - params: - description: params defines the parameters of the module. + validator: type: object properties: - mint_denom: - type: string - title: type of coin to mint - inflation_rate_change: - type: string - title: maximum annual change in inflation rate - inflation_max: - type: string - title: maximum inflation rate - inflation_min: + operator_address: type: string - title: minimum inflation rate - goal_bonded: + description: >- + operator_address defines the address of the validator's operator; + bech encoded in JSON. + consensus_pubkey: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + jailed: + type: boolean + description: >- + jailed defined whether the validator has been jailed from bonded + status or not. + status: + description: status is the validator status (bonded/unbonding/unbonded). type: string - title: goal of percent bonded atoms - blocks_per_year: + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: type: string - format: uint64 - title: expected blocks per year - description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.params.v1beta1.ParamChange: - type: object - properties: - subspace: - type: string - key: - type: string - value: - type: string - description: |- - ParamChange defines an individual parameter change, for use in - ParameterChangeProposal. - cosmos.params.v1beta1.QueryParamsResponse: - type: object - properties: - param: - description: param defines the queried parameter. - type: object - properties: - subspace: + description: tokens define the delegated tokens (incl. self-delegation). + delegator_shares: type: string - key: + description: >- + delegator_shares defines total shares issued to a validator's + delegators. + description: + description: description defines the description terms for the validator. + type: object + properties: + moniker: + type: string + description: moniker defines a human-readable name for the validator. + identity: + type: string + description: >- + identity defines an optional identity signature (ex. UPort or + Keybase). + website: + type: string + description: website defines an optional website link. + security_contact: + type: string + description: >- + security_contact defines an optional email for security + contact. + details: + type: string + description: details define other optional details. + unbonding_height: type: string - value: + format: int64 + description: >- + unbonding_height defines, if unbonding, the height at which this + validator has begun unbonding. + unbonding_time: type: string - description: QueryParamsResponse is response type for the Query/Params RPC method. - cosmos.params.v1beta1.QuerySubspacesResponse: - type: object - properties: - subspaces: - type: array - items: - type: object - properties: - subspace: - type: string - keys: - type: array - items: + format: date-time + description: >- + unbonding_time defines, if unbonding, the min time for the + validator to complete unbonding. + commission: + description: commission defines the commission parameters. + type: object + properties: + commission_rates: + description: >- + commission_rates defines the initial commission rates to be + used for creating a validator. + type: object + properties: + rate: + type: string + description: >- + rate is the commission rate charged to delegators, as a + fraction. + max_rate: + type: string + description: >- + max_rate defines the maximum commission rate which + validator can ever charge, as a fraction. + max_change_rate: + type: string + description: >- + max_change_rate defines the maximum daily increase of the + validator commission, as a fraction. + update_time: type: string - description: >- - Subspace defines a parameter subspace name and all the keys that - exist for + format: date-time + description: update_time is the last time the commission rate was changed. + min_self_delegation: + type: string + description: >- + min_self_delegation is the validator's self declared minimum self + delegation. - the subspace. + Since: cosmos-sdk 0.46 + description: >- + Validator defines a validator, together with the total amount of the - Since: cosmos-sdk 0.46 - description: |- - QuerySubspacesResponse defines the response types for querying for all - registered subspaces and all keys for a subspace. + Validator's bond shares and their exchange rate to coins. Slashing + results in - Since: cosmos-sdk 0.46 - cosmos.params.v1beta1.Subspace: - type: object - properties: - subspace: - type: string - keys: - type: array - items: - type: string - description: |- - Subspace defines a parameter subspace name and all the keys that exist for - the subspace. + a decrease in the exchange rate, allowing correct calculation of + future - Since: cosmos-sdk 0.46 - cosmos.quarantine.v1beta1.AutoResponse: - type: string - enum: - - AUTO_RESPONSE_UNSPECIFIED - - AUTO_RESPONSE_ACCEPT - - AUTO_RESPONSE_DECLINE - default: AUTO_RESPONSE_UNSPECIFIED - description: >- - AutoResponse enumerates the quarantine auto-response options. + undelegations without iterating over delegators. When coins are + delegated to - - AUTO_RESPONSE_UNSPECIFIED: AUTO_RESPONSE_UNSPECIFIED defines that an automatic response has not been specified. - This means that no automatic action should be taken, i.e. this - auto-response is off, + this validator, the validator is credited with a delegation whose + number of - and default quarantine behavior is used. - - AUTO_RESPONSE_ACCEPT: AUTO_RESPONSE_ACCEPT defines that sends should be automatically accepted, bypassing quarantine. - - AUTO_RESPONSE_DECLINE: AUTO_RESPONSE_DECLINE defines that sends should be automatically declined. - cosmos.quarantine.v1beta1.AutoResponseEntry: - type: object - properties: - to_address: - type: string - description: to_address is the receiving address. - from_address: - type: string - description: from_address is the sending address. - response: - description: response is the auto-response setting for these two addresses. - type: string - enum: - - AUTO_RESPONSE_UNSPECIFIED - - AUTO_RESPONSE_ACCEPT - - AUTO_RESPONSE_DECLINE - default: AUTO_RESPONSE_UNSPECIFIED - description: AutoResponseEntry defines the auto response to one address from another. - cosmos.quarantine.v1beta1.QuarantinedFunds: - type: object - properties: - to_address: - type: string - description: >- - to_address is the intended recipient of the coins that have been - quarantined. - unaccepted_from_addresses: - type: array - items: - type: string - description: >- - unaccepted_from_addresses are the senders that have not been part of - an accept yet for these coins. - coins: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - Coin defines a token with a denomination and an amount. + bond shares is based on the amount of coins delegated divided by the + current - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - description: coins is the amount currently in quarantined for the two addresses. - declined: - type: boolean - description: declined is true if these funds were previously declined. - description: >- - QuarantinedFunds defines structure that represents coins that have been - quarantined. - cosmos.quarantine.v1beta1.QueryAutoResponsesResponse: + exchange rate. Voting power can be calculated as total bonded shares + + multiplied by exchange rate. + title: QueryValidatorResponse is response type for the Query/Validator RPC method + cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse: type: object properties: - auto_responses: + unbonding_responses: type: array items: type: object properties: - to_address: - type: string - description: to_address is the receiving address. - from_address: + delegator_address: type: string - description: from_address is the sending address. - response: - description: response is the auto-response setting for these two addresses. + description: >- + delegator_address is the bech32-encoded address of the + delegator. + validator_address: type: string - enum: - - AUTO_RESPONSE_UNSPECIFIED - - AUTO_RESPONSE_ACCEPT - - AUTO_RESPONSE_DECLINE - default: AUTO_RESPONSE_UNSPECIFIED + description: >- + validator_address is the bech32-encoded address of the + validator. + entries: + type: array + items: + type: object + properties: + creation_height: + type: string + format: int64 + description: >- + creation_height is the height which the unbonding took + place. + completion_time: + type: string + format: date-time + description: completion_time is the unix time for unbonding completion. + initial_balance: + type: string + description: >- + initial_balance defines the tokens initially scheduled to + receive at completion. + balance: + type: string + description: balance defines the tokens to receive at completion. + description: >- + UnbondingDelegationEntry defines an unbonding object with + relevant metadata. + description: entries are the unbonding delegation entries. description: >- - AutoResponseEntry defines the auto response to one address from - another. - description: auto_responses are the auto-response entries from the provided query. + UnbondingDelegation stores all of a single delegator's unbonding + bonds + + for a single validator in an time-ordered list. pagination: - description: pagination defines the pagination parameters of the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -69134,67 +84270,311 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryAutoResponsesResponse defines the RPC response of a AutoResponses - query. - cosmos.quarantine.v1beta1.QueryIsQuarantinedResponse: - type: object - properties: - is_quarantined: - type: boolean - description: is_quarantined is true if the to_address has opted into quarantine. - description: >- - QueryIsQuarantinedResponse defines the RPC response of an IsQuarantined - query. - cosmos.quarantine.v1beta1.QueryQuarantinedFundsResponse: + description: |- + QueryValidatorUnbondingDelegationsResponse is response type for the + Query/ValidatorUnbondingDelegations RPC method. + cosmos.staking.v1beta1.QueryValidatorsResponse: type: object properties: - quarantinedFunds: + validators: type: array items: type: object properties: - to_address: + operator_address: type: string description: >- - to_address is the intended recipient of the coins that have been - quarantined. - unaccepted_from_addresses: - type: array - items: - type: string + operator_address defines the address of the validator's + operator; bech encoded in JSON. + consensus_pubkey: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. description: >- - unaccepted_from_addresses are the senders that have not been - part of an accept yet for these coins. - coins: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in + the form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last + '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + jailed: + type: boolean + description: >- + jailed defined whether the validator has been jailed from bonded + status or not. + status: + description: status is the validator status (bonded/unbonding/unbonded). + type: string + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: + type: string + description: tokens define the delegated tokens (incl. self-delegation). + delegator_shares: + type: string + description: >- + delegator_shares defines total shares issued to a validator's + delegators. + description: + description: description defines the description terms for the validator. + type: object + properties: + moniker: + type: string + description: moniker defines a human-readable name for the validator. + identity: + type: string + description: >- + identity defines an optional identity signature (ex. UPort + or Keybase). + website: + type: string + description: website defines an optional website link. + security_contact: + type: string + description: >- + security_contact defines an optional email for security + contact. + details: + type: string + description: details define other optional details. + unbonding_height: + type: string + format: int64 + description: >- + unbonding_height defines, if unbonding, the height at which this + validator has begun unbonding. + unbonding_time: + type: string + format: date-time + description: >- + unbonding_time defines, if unbonding, the min time for the + validator to complete unbonding. + commission: + description: commission defines the commission parameters. + type: object + properties: + commission_rates: + description: >- + commission_rates defines the initial commission rates to be + used for creating a validator. + type: object + properties: + rate: + type: string + description: >- + rate is the commission rate charged to delegators, as a + fraction. + max_rate: + type: string + description: >- + max_rate defines the maximum commission rate which + validator can ever charge, as a fraction. + max_change_rate: + type: string + description: >- + max_change_rate defines the maximum daily increase of + the validator commission, as a fraction. + update_time: + type: string + format: date-time + description: >- + update_time is the last time the commission rate was + changed. + min_self_delegation: + type: string + description: >- + min_self_delegation is the validator's self declared minimum + self delegation. + + + Since: cosmos-sdk 0.46 + description: >- + Validator defines a validator, together with the total amount of the + + Validator's bond shares and their exchange rate to coins. Slashing + results in + + a decrease in the exchange rate, allowing correct calculation of + future + + undelegations without iterating over delegators. When coins are + delegated to + this validator, the validator is credited with a delegation whose + number of - NOTE: The amount field is an Int which implements the custom - method + bond shares is based on the amount of coins delegated divided by the + current - signatures required by gogoproto. - description: >- - coins is the amount currently in quarantined for the two - addresses. - declined: - type: boolean - description: declined is true if these funds were previously declined. - description: >- - QuarantinedFunds defines structure that represents coins that have - been quarantined. - description: quarantinedFunds is info about coins sitting in quarantine. + exchange rate. Voting power can be calculated as total bonded shares + + multiplied by exchange rate. + description: validators contains all the queried validators. pagination: - description: pagination defines the pagination parameters of the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -69212,2167 +84592,2316 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise + title: >- + QueryValidatorsResponse is response type for the Query/Validators RPC + method + cosmos.staking.v1beta1.Redelegation: + type: object + properties: + delegator_address: + type: string + description: delegator_address is the bech32-encoded address of the delegator. + validator_src_address: + type: string + description: >- + validator_src_address is the validator redelegation source operator + address. + validator_dst_address: + type: string + description: >- + validator_dst_address is the validator redelegation destination + operator address. + entries: + type: array + items: + type: object + properties: + creation_height: + type: string + format: int64 + description: >- + creation_height defines the height which the redelegation took + place. + completion_time: + type: string + format: date-time + description: >- + completion_time defines the unix time for redelegation + completion. + initial_balance: + type: string + description: >- + initial_balance defines the initial balance when redelegation + started. + shares_dst: + type: string + description: >- + shares_dst is the amount of destination-validator shares created + by redelegation. + description: >- + RedelegationEntry defines a redelegation object with relevant + metadata. + description: entries are the redelegation entries. description: >- - QueryQuarantinedFundsResponse defines the RPC response of a - QuarantinedFunds query. - cosmos.slashing.v1beta1.Params: + Redelegation contains the list of a particular delegator's redelegating + bonds + + from a particular source validator to a particular destination validator. + cosmos.staking.v1beta1.RedelegationEntry: type: object properties: - signed_blocks_window: + creation_height: type: string format: int64 - min_signed_per_window: - type: string - format: byte - downtime_jail_duration: + description: creation_height defines the height which the redelegation took place. + completion_time: type: string - slash_fraction_double_sign: + format: date-time + description: completion_time defines the unix time for redelegation completion. + initial_balance: type: string - format: byte - slash_fraction_downtime: + description: initial_balance defines the initial balance when redelegation started. + shares_dst: type: string - format: byte - description: Params represents the parameters used for by the slashing module. - cosmos.slashing.v1beta1.QueryParamsResponse: + description: >- + shares_dst is the amount of destination-validator shares created by + redelegation. + description: RedelegationEntry defines a redelegation object with relevant metadata. + cosmos.staking.v1beta1.RedelegationEntryResponse: type: object properties: - params: + redelegation_entry: type: object properties: - signed_blocks_window: + creation_height: type: string format: int64 - min_signed_per_window: - type: string - format: byte - downtime_jail_duration: + description: >- + creation_height defines the height which the redelegation took + place. + completion_time: type: string - slash_fraction_double_sign: + format: date-time + description: completion_time defines the unix time for redelegation completion. + initial_balance: type: string - format: byte - slash_fraction_downtime: + description: >- + initial_balance defines the initial balance when redelegation + started. + shares_dst: type: string - format: byte - description: Params represents the parameters used for by the slashing module. - title: QueryParamsResponse is the response type for the Query/Params RPC method - cosmos.slashing.v1beta1.QuerySigningInfoResponse: + description: >- + shares_dst is the amount of destination-validator shares created + by redelegation. + description: >- + RedelegationEntry defines a redelegation object with relevant + metadata. + balance: + type: string + description: >- + RedelegationEntryResponse is equivalent to a RedelegationEntry except that + it + + contains a balance in addition to shares which is more suitable for client + + responses. + cosmos.staking.v1beta1.RedelegationResponse: type: object properties: - val_signing_info: + redelegation: type: object properties: - address: - type: string - start_height: + delegator_address: type: string - format: int64 - title: Height at which validator was first a candidate OR was unjailed - index_offset: + description: delegator_address is the bech32-encoded address of the delegator. + validator_src_address: type: string - format: int64 description: >- - Index which is incremented each time the validator was a bonded - - in a block and may have signed a precommit or not. This in - conjunction with the - - `SignedBlocksWindow` param determines the index in the - `MissedBlocksBitArray`. - jailed_until: + validator_src_address is the validator redelegation source + operator address. + validator_dst_address: type: string - format: date-time - description: >- - Timestamp until which the validator is jailed due to liveness - downtime. - tombstoned: - type: boolean description: >- - Whether or not a validator has been tombstoned (killed out of - validator set). It is set + validator_dst_address is the validator redelegation destination + operator address. + entries: + type: array + items: + type: object + properties: + creation_height: + type: string + format: int64 + description: >- + creation_height defines the height which the redelegation + took place. + completion_time: + type: string + format: date-time + description: >- + completion_time defines the unix time for redelegation + completion. + initial_balance: + type: string + description: >- + initial_balance defines the initial balance when + redelegation started. + shares_dst: + type: string + description: >- + shares_dst is the amount of destination-validator shares + created by redelegation. + description: >- + RedelegationEntry defines a redelegation object with relevant + metadata. + description: entries are the redelegation entries. + description: >- + Redelegation contains the list of a particular delegator's + redelegating bonds - once the validator commits an equivocation or for any other - configured misbehiavor. - missed_blocks_counter: - type: string - format: int64 - description: >- - A counter kept to avoid unnecessary array reads. + from a particular source validator to a particular destination + validator. + entries: + type: array + items: + type: object + properties: + redelegation_entry: + type: object + properties: + creation_height: + type: string + format: int64 + description: >- + creation_height defines the height which the redelegation + took place. + completion_time: + type: string + format: date-time + description: >- + completion_time defines the unix time for redelegation + completion. + initial_balance: + type: string + description: >- + initial_balance defines the initial balance when + redelegation started. + shares_dst: + type: string + description: >- + shares_dst is the amount of destination-validator shares + created by redelegation. + description: >- + RedelegationEntry defines a redelegation object with relevant + metadata. + balance: + type: string + description: >- + RedelegationEntryResponse is equivalent to a RedelegationEntry + except that it - Note that `Sum(MissedBlocksBitArray)` always equals - `MissedBlocksCounter`. - description: >- - ValidatorSigningInfo defines a validator's signing info for monitoring - their + contains a balance in addition to shares which is more suitable for + client - liveness activity. - title: val_signing_info is the signing info of requested val cons address - title: >- - QuerySigningInfoResponse is the response type for the Query/SigningInfo - RPC + responses. + description: >- + RedelegationResponse is equivalent to a Redelegation except that its + entries - method - cosmos.slashing.v1beta1.QuerySigningInfosResponse: + contain a balance in addition to shares which is more suitable for client + + responses. + cosmos.staking.v1beta1.UnbondingDelegation: type: object properties: - info: + delegator_address: + type: string + description: delegator_address is the bech32-encoded address of the delegator. + validator_address: + type: string + description: validator_address is the bech32-encoded address of the validator. + entries: type: array items: type: object properties: - address: - type: string - start_height: - type: string - format: int64 - title: Height at which validator was first a candidate OR was unjailed - index_offset: + creation_height: type: string format: int64 - description: >- - Index which is incremented each time the validator was a bonded - - in a block and may have signed a precommit or not. This in - conjunction with the - - `SignedBlocksWindow` param determines the index in the - `MissedBlocksBitArray`. - jailed_until: + description: creation_height is the height which the unbonding took place. + completion_time: type: string format: date-time - description: >- - Timestamp until which the validator is jailed due to liveness - downtime. - tombstoned: - type: boolean - description: >- - Whether or not a validator has been tombstoned (killed out of - validator set). It is set - - once the validator commits an equivocation or for any other - configured misbehiavor. - missed_blocks_counter: + description: completion_time is the unix time for unbonding completion. + initial_balance: type: string - format: int64 description: >- - A counter kept to avoid unnecessary array reads. - - Note that `Sum(MissedBlocksBitArray)` always equals - `MissedBlocksCounter`. + initial_balance defines the tokens initially scheduled to + receive at completion. + balance: + type: string + description: balance defines the tokens to receive at completion. description: >- - ValidatorSigningInfo defines a validator's signing info for - monitoring their - - liveness activity. - title: info is the signing info of all validators - pagination: + UnbondingDelegationEntry defines an unbonding object with relevant + metadata. + description: entries are the unbonding delegation entries. + description: |- + UnbondingDelegation stores all of a single delegator's unbonding bonds + for a single validator in an time-ordered list. + cosmos.staking.v1beta1.UnbondingDelegationEntry: + type: object + properties: + creation_height: + type: string + format: int64 + description: creation_height is the height which the unbonding took place. + completion_time: + type: string + format: date-time + description: completion_time is the unix time for unbonding completion. + initial_balance: + type: string + description: >- + initial_balance defines the tokens initially scheduled to receive at + completion. + balance: + type: string + description: balance defines the tokens to receive at completion. + description: >- + UnbondingDelegationEntry defines an unbonding object with relevant + metadata. + cosmos.staking.v1beta1.Validator: + type: object + properties: + operator_address: + type: string + description: >- + operator_address defines the address of the validator's operator; bech + encoded in JSON. + consensus_pubkey: type: object properties: - next_key: + type_url: type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up a + type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might be + + used with implementation specific semantics. + value: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular - was set, its value is undefined otherwise - description: |- - PageResponse is to be embedded in gRPC response messages where the - corresponding request message has used PageRequest. + representation of the deserialized, embedded message, with an - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } - title: >- - QuerySigningInfosResponse is the response type for the Query/SigningInfos - RPC + additional field `@type` which contains the type URL. Example: - method - cosmos.slashing.v1beta1.ValidatorSigningInfo: - type: object - properties: - address: - type: string - start_height: - type: string - format: int64 - title: Height at which validator was first a candidate OR was unjailed - index_offset: - type: string - format: int64 - description: >- - Index which is incremented each time the validator was a bonded + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - in a block and may have signed a precommit or not. This in conjunction - with the + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - `SignedBlocksWindow` param determines the index in the - `MissedBlocksBitArray`. - jailed_until: - type: string - format: date-time - description: >- - Timestamp until which the validator is jailed due to liveness - downtime. - tombstoned: - type: boolean - description: >- - Whether or not a validator has been tombstoned (killed out of - validator set). It is set + If the embedded message type is well-known and has a custom JSON - once the validator commits an equivocation or for any other configured - misbehiavor. - missed_blocks_counter: - type: string - format: int64 - description: >- - A counter kept to avoid unnecessary array reads. + representation, that representation will be embedded adding a field - Note that `Sum(MissedBlocksBitArray)` always equals - `MissedBlocksCounter`. - description: >- - ValidatorSigningInfo defines a validator's signing info for monitoring - their + `value` which holds the custom JSON in addition to the `@type` - liveness activity. - cosmos.staking.v1beta1.BondStatus: - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - description: |- - BondStatus is the status of a validator. + field. Example (for message [google.protobuf.Duration][]): - - BOND_STATUS_UNSPECIFIED: UNSPECIFIED defines an invalid validator status. - - BOND_STATUS_UNBONDED: UNBONDED defines a validator that is not bonded. - - BOND_STATUS_UNBONDING: UNBONDING defines a validator that is unbonding. - - BOND_STATUS_BONDED: BONDED defines a validator that is bonded. - cosmos.staking.v1beta1.Commission: - type: object - properties: - commission_rates: + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + jailed: + type: boolean description: >- - commission_rates defines the initial commission rates to be used for - creating a validator. - type: object - properties: - rate: - type: string - description: rate is the commission rate charged to delegators, as a fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which validator can - ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase of the - validator commission, as a fraction. - update_time: - type: string - format: date-time - description: update_time is the last time the commission rate was changed. - description: Commission defines commission parameters for a given validator. - cosmos.staking.v1beta1.CommissionRates: - type: object - properties: - rate: + jailed defined whether the validator has been jailed from bonded + status or not. + status: + description: status is the validator status (bonded/unbonding/unbonded). type: string - description: rate is the commission rate charged to delegators, as a fraction. - max_rate: + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: type: string - description: >- - max_rate defines the maximum commission rate which validator can ever - charge, as a fraction. - max_change_rate: + description: tokens define the delegated tokens (incl. self-delegation). + delegator_shares: type: string description: >- - max_change_rate defines the maximum daily increase of the validator - commission, as a fraction. - description: >- - CommissionRates defines the initial commission rates to be used for - creating - - a validator. - cosmos.staking.v1beta1.Delegation: - type: object - properties: - delegator_address: - type: string - description: delegator_address is the bech32-encoded address of the delegator. - validator_address: - type: string - description: validator_address is the bech32-encoded address of the validator. - shares: - type: string - description: shares define the delegation shares received. - description: |- - Delegation represents the bond with tokens held by an account. It is - owned by one delegator, and is associated with the voting power of one - validator. - cosmos.staking.v1beta1.DelegationResponse: - type: object - properties: - delegation: + delegator_shares defines total shares issued to a validator's + delegators. + description: + description: description defines the description terms for the validator. type: object properties: - delegator_address: + moniker: type: string - description: delegator_address is the bech32-encoded address of the delegator. - validator_address: + description: moniker defines a human-readable name for the validator. + identity: type: string - description: validator_address is the bech32-encoded address of the validator. - shares: + description: >- + identity defines an optional identity signature (ex. UPort or + Keybase). + website: type: string - description: shares define the delegation shares received. - description: |- - Delegation represents the bond with tokens held by an account. It is - owned by one delegator, and is associated with the voting power of one - validator. - balance: - type: object - properties: - denom: + description: website defines an optional website link. + security_contact: type: string - amount: + description: security_contact defines an optional email for security contact. + details: type: string - description: |- - Coin defines a token with a denomination and an amount. - - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - description: |- - DelegationResponse is equivalent to Delegation except that it contains a - balance in addition to shares which is more suitable for client responses. - cosmos.staking.v1beta1.Description: - type: object - properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: + description: details define other optional details. + unbonding_height: type: string + format: int64 description: >- - identity defines an optional identity signature (ex. UPort or - Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: security_contact defines an optional email for security contact. - details: + unbonding_height defines, if unbonding, the height at which this + validator has begun unbonding. + unbonding_time: type: string - description: details define other optional details. - description: Description defines a validator description. - cosmos.staking.v1beta1.HistoricalInfo: - type: object - properties: - header: + format: date-time + description: >- + unbonding_time defines, if unbonding, the min time for the validator + to complete unbonding. + commission: + description: commission defines the commission parameters. type: object properties: - version: - title: basic block info + commission_rates: + description: >- + commission_rates defines the initial commission rates to be used + for creating a validator. type: object properties: - block: + rate: type: string - format: uint64 - app: + description: >- + rate is the commission rate charged to delegators, as a + fraction. + max_rate: type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a block in - the blockchain, - - including all blockchain data structures and the rules of the - application's - - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - title: prev block info - type: object - properties: - hash: + description: >- + max_rate defines the maximum commission rate which validator + can ever charge, as a fraction. + max_change_rate: type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: + description: >- + max_change_rate defines the maximum daily increase of the + validator commission, as a fraction. + update_time: type: string - format: byte - description: Header defines the structure of a block header. - valset: - type: array - items: - type: object - properties: - operator_address: - type: string - description: >- - operator_address defines the address of the validator's - operator; bech encoded in JSON. - consensus_pubkey: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least + format: date-time + description: update_time is the last time the commission rate was changed. + min_self_delegation: + type: string + description: >- + min_self_delegation is the validator's self declared minimum self + delegation. - one "/" character. The last segment of the URL's path must - represent - the fully qualified name of the type (as in + Since: cosmos-sdk 0.46 + description: >- + Validator defines a validator, together with the total amount of the - `path/google.protobuf.Duration`). The name should be in a - canonical form + Validator's bond shares and their exchange rate to coins. Slashing results + in - (e.g., leading "." is not accepted). + a decrease in the exchange rate, allowing correct calculation of future + undelegations without iterating over delegators. When coins are delegated + to - In practice, teams usually precompile into the binary all - types that they + this validator, the validator is credited with a delegation whose number + of - expect it to use in the context of Any. However, for URLs - which use the + bond shares is based on the amount of coins delegated divided by the + current - scheme `http`, `https`, or no scheme, one can optionally set - up a type + exchange rate. Voting power can be calculated as total bonded shares - server that maps type URLs to message definitions as - follows: + multiplied by exchange rate. + cosmos.base.abci.v1beta1.ABCIMessageLog: + type: object + properties: + msg_index: + type: integer + format: int64 + log: + type: string + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + description: >- + Attribute defines an attribute wrapper where the key and value + are + strings instead of raw bytes. + description: |- + StringEvent defines en Event object wrapper where all the attributes + contain key/value pairs that are strings instead of raw bytes. + description: |- + Events contains a slice of Event objects that were emitted during some + execution. + description: >- + ABCIMessageLog defines a structure containing an indexed tx ABCI message + log. + cosmos.base.abci.v1beta1.Attribute: + type: object + properties: + key: + type: string + value: + type: string + description: |- + Attribute defines an attribute wrapper where the key and value are + strings instead of raw bytes. + cosmos.base.abci.v1beta1.GasInfo: + type: object + properties: + gas_wanted: + type: string + format: uint64 + description: GasWanted is the maximum units of work we allow this tx to perform. + gas_used: + type: string + format: uint64 + description: GasUsed is the amount of gas actually consumed. + description: GasInfo defines tx execution gas context. + cosmos.base.abci.v1beta1.Result: + type: object + properties: + data: + type: string + format: byte + description: >- + Data is any data returned from message or handler execution. It MUST + be - * If no scheme is provided, `https` is assumed. + length prefixed in order to separate data from multiple message + executions. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + Deprecated. This field is still populated, but prefer msg_response + instead - Note: this functionality is not currently available in the - official + because it also contains the Msg response typeURL. + log: + type: string + description: Log contains the log information from message or handler execution. + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: >- + EventAttribute is a single key-value pair, associated with an + event. + description: >- + Event allows application developers to attach additional information + to - protobuf release, and it is not used for type URLs beginning - with + ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and + ResponseDeliverTx. - type.googleapis.com. + Later, transactions may be queried using these events. + description: >- + Events contains a slice of Event objects that were emitted during + message + or handler execution. + msg_responses: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - Schemes other than `http`, `https` (or the empty scheme) - might be + protocol buffer message. This string must contain at least - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + one "/" character. The last segment of the URL's path must + represent - URL that describes the type of the serialized message. + the fully qualified name of the type (as in + `path/google.protobuf.Duration`). The name should be in a + canonical form - Protobuf library provides support to pack/unpack Any values in - the form + (e.g., leading "." is not accepted). - of utility functions or additional generated methods of the Any - type. + In practice, teams usually precompile into the binary all types + that they - Example 1: Pack and unpack a message in C++. + expect it to use in the context of Any. However, for URLs which + use the - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + scheme `http`, `https`, or no scheme, one can optionally set up + a type - Example 2: Pack and unpack a message in Java. + server that maps type URLs to message definitions as follows: - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - Example 3: Pack and unpack a message in Python. + * If no scheme is provided, `https` is assumed. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - Example 4: Pack and unpack a message in Go + Note: this functionality is not currently available in the + official - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + protobuf release, and it is not used for type URLs beginning + with - The pack methods provided by protobuf library will by default - use + type.googleapis.com. - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - methods only use the fully qualified type name after the last - '/' + Schemes other than `http`, `https` (or the empty scheme) might + be - in the type URL, for example "foo.bar.com/x/y.z" will yield type + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a - name "y.z". + URL that describes the type of the serialized message. + Protobuf library provides support to pack/unpack Any values in the + form - JSON + of utility functions or additional generated methods of the Any + type. - ==== - The JSON representation of an `Any` value uses the regular + Example 1: Pack and unpack a message in C++. - representation of the deserialized, embedded message, with an + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - additional field `@type` which contains the type URL. Example: + Example 2: Pack and unpack a message in Java. - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + Example 3: Pack and unpack a message in Python. - If the embedded message type is well-known and has a custom JSON + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - representation, that representation will be embedded adding a - field + Example 4: Pack and unpack a message in Go - `value` which holds the custom JSON in addition to the `@type` + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - field. Example (for message [google.protobuf.Duration][]): + The pack methods provided by protobuf library will by default use - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - jailed: - type: boolean - description: >- - jailed defined whether the validator has been jailed from bonded - status or not. - status: - description: status is the validator status (bonded/unbonding/unbonded). - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - tokens: - type: string - description: tokens define the delegated tokens (incl. self-delegation). - delegator_shares: - type: string - description: >- - delegator_shares defines total shares issued to a validator's - delegators. - description: - description: description defines the description terms for the validator. - type: object - properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: - type: string - description: >- - identity defines an optional identity signature (ex. UPort - or Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: >- - security_contact defines an optional email for security - contact. - details: - type: string - description: details define other optional details. - unbonding_height: - type: string - format: int64 - description: >- - unbonding_height defines, if unbonding, the height at which this - validator has begun unbonding. - unbonding_time: - type: string - format: date-time - description: >- - unbonding_time defines, if unbonding, the min time for the - validator to complete unbonding. - commission: - description: commission defines the commission parameters. - type: object - properties: - commission_rates: - description: >- - commission_rates defines the initial commission rates to be - used for creating a validator. - type: object - properties: - rate: - type: string - description: >- - rate is the commission rate charged to delegators, as a - fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which - validator can ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase of - the validator commission, as a fraction. - update_time: - type: string - format: date-time - description: >- - update_time is the last time the commission rate was - changed. - min_self_delegation: - type: string - description: >- - min_self_delegation is the validator's self declared minimum - self delegation. + 'type.googleapis.com/full.type.name' as the type URL and the unpack + methods only use the fully qualified type name after the last '/' - Since: cosmos-sdk 0.46 - description: >- - Validator defines a validator, together with the total amount of the + in the type URL, for example "foo.bar.com/x/y.z" will yield type - Validator's bond shares and their exchange rate to coins. Slashing - results in + name "y.z". - a decrease in the exchange rate, allowing correct calculation of - future - undelegations without iterating over delegators. When coins are - delegated to - this validator, the validator is credited with a delegation whose - number of + JSON - bond shares is based on the amount of coins delegated divided by the - current + ==== - exchange rate. Voting power can be calculated as total bonded shares + The JSON representation of an `Any` value uses the regular - multiplied by exchange rate. - description: >- - HistoricalInfo contains header and validator information for a given - block. + representation of the deserialized, embedded message, with an - It is stored as part of staking module's state, which persists the `n` - most + additional field `@type` which contains the type URL. Example: - recent HistoricalInfo + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - (`n` is set by the staking module's `historical_entries` parameter). - cosmos.staking.v1beta1.Params: - type: object - properties: - unbonding_time: - type: string - description: unbonding_time is the time duration of unbonding. - max_validators: - type: integer - format: int64 - description: max_validators is the maximum number of validators. - max_entries: - type: integer - format: int64 - description: >- - max_entries is the max entries for either unbonding delegation or - redelegation (per pair/trio). - historical_entries: - type: integer - format: int64 - description: historical_entries is the number of historical entries to persist. - bond_denom: - type: string - description: bond_denom defines the bondable coin denomination. - min_commission_rate: - type: string - title: >- - min_commission_rate is the chain-wide minimum commission rate that a - validator can charge their delegators - description: Params defines the parameters for the staking module. - cosmos.staking.v1beta1.Pool: - type: object - properties: - not_bonded_tokens: - type: string - bonded_tokens: - type: string - description: |- - Pool is used for tracking bonded and not-bonded token supply of the bond - denomination. - cosmos.staking.v1beta1.QueryDelegationResponse: - type: object - properties: - delegation_response: - type: object - properties: - delegation: - type: object - properties: - delegator_address: - type: string - description: >- - delegator_address is the bech32-encoded address of the - delegator. - validator_address: - type: string - description: >- - validator_address is the bech32-encoded address of the - validator. - shares: - type: string - description: shares define the delegation shares received. - description: >- - Delegation represents the bond with tokens held by an account. It - is + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - owned by one delegator, and is associated with the voting power of - one + If the embedded message type is well-known and has a custom JSON - validator. - balance: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + representation, that representation will be embedded adding a field + `value` which holds the custom JSON in addition to the `@type` - NOTE: The amount field is an Int which implements the custom - method + field. Example (for message [google.protobuf.Duration][]): - signatures required by gogoproto. - description: >- - DelegationResponse is equivalent to Delegation except that it contains - a + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: |- + msg_responses contains the Msg handler responses type packed in Anys. - balance in addition to shares which is more suitable for client - responses. - description: >- - QueryDelegationResponse is response type for the Query/Delegation RPC - method. - cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse: + Since: cosmos-sdk 0.46 + description: Result is the union of ResponseFormat and ResponseCheckTx. + cosmos.base.abci.v1beta1.StringEvent: type: object properties: - delegation_responses: + type: + type: string + attributes: type: array items: type: object properties: - delegation: - type: object - properties: - delegator_address: - type: string - description: >- - delegator_address is the bech32-encoded address of the - delegator. - validator_address: - type: string - description: >- - validator_address is the bech32-encoded address of the - validator. - shares: - type: string - description: shares define the delegation shares received. - description: >- - Delegation represents the bond with tokens held by an account. - It is - - owned by one delegator, and is associated with the voting power - of one - - validator. - balance: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the custom - method - - signatures required by gogoproto. - description: >- - DelegationResponse is equivalent to Delegation except that it - contains a - - balance in addition to shares which is more suitable for client - responses. - description: delegation_responses defines all the delegations' info of a delegator. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise + key: + type: string + value: + type: string + description: |- + Attribute defines an attribute wrapper where the key and value are + strings instead of raw bytes. description: |- - QueryDelegatorDelegationsResponse is response type for the - Query/DelegatorDelegations RPC method. - cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse: + StringEvent defines en Event object wrapper where all the attributes + contain key/value pairs that are strings instead of raw bytes. + cosmos.base.abci.v1beta1.TxResponse: type: object properties: - unbonding_responses: + height: + type: string + format: int64 + title: The block height + txhash: + type: string + description: The transaction hash. + codespace: + type: string + title: Namespace for the Code + code: + type: integer + format: int64 + description: Response code. + data: + type: string + description: Result bytes, if any. + raw_log: + type: string + description: |- + The output of the application's logger (raw string). May be + non-deterministic. + logs: type: array items: type: object properties: - delegator_address: - type: string - description: >- - delegator_address is the bech32-encoded address of the - delegator. - validator_address: - type: string - description: >- - validator_address is the bech32-encoded address of the - validator. - entries: + msg_index: + type: integer + format: int64 + log: + type: string + events: type: array items: type: object properties: - creation_height: - type: string - format: int64 - description: >- - creation_height is the height which the unbonding took - place. - completion_time: - type: string - format: date-time - description: completion_time is the unix time for unbonding completion. - initial_balance: - type: string - description: >- - initial_balance defines the tokens initially scheduled to - receive at completion. - balance: + type: type: string - description: balance defines the tokens to receive at completion. + attributes: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + description: >- + Attribute defines an attribute wrapper where the key and + value are + + strings instead of raw bytes. description: >- - UnbondingDelegationEntry defines an unbonding object with - relevant metadata. - description: entries are the unbonding delegation entries. - description: >- - UnbondingDelegation stores all of a single delegator's unbonding - bonds + StringEvent defines en Event object wrapper where all the + attributes - for a single validator in an time-ordered list. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + contain key/value pairs that are strings instead of raw bytes. + description: >- + Events contains a slice of Event objects that were emitted + during some - was set, its value is undefined otherwise - description: |- - QueryUnbondingDelegatorDelegationsResponse is response type for the - Query/UnbondingDelegatorDelegations RPC method. - cosmos.staking.v1beta1.QueryDelegatorValidatorResponse: - type: object - properties: - validator: + execution. + description: >- + ABCIMessageLog defines a structure containing an indexed tx ABCI + message log. + description: >- + The output of the application's logger (typed). May be + non-deterministic. + info: + type: string + description: Additional information. May be non-deterministic. + gas_wanted: + type: string + format: int64 + description: Amount of gas requested for transaction. + gas_used: + type: string + format: int64 + description: Amount of gas consumed by transaction. + tx: type: object properties: - operator_address: + type_url: type: string description: >- - operator_address defines the address of the validator's operator; - bech encoded in JSON. - consensus_pubkey: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + A URL/resource name that uniquely identifies the type of the + serialized - protocol buffer message. This string must contain at least + protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + one "/" character. The last segment of the URL's path must + represent - the fully qualified name of the type (as in + the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + `path/google.protobuf.Duration`). The name should be in a + canonical form - (e.g., leading "." is not accepted). + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all - types that they + In practice, teams usually precompile into the binary all types + that they - expect it to use in the context of Any. However, for URLs - which use the + expect it to use in the context of Any. However, for URLs which + use the - scheme `http`, `https`, or no scheme, one can optionally set - up a type + scheme `http`, `https`, or no scheme, one can optionally set up a + type - server that maps type URLs to message definitions as follows: + server that maps type URLs to message definitions as follows: - * If no scheme is provided, `https` is assumed. + * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - Note: this functionality is not currently available in the - official + Note: this functionality is not currently available in the + official - protobuf release, and it is not used for type URLs beginning - with + protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) might - be + Schemes other than `http`, `https` (or the empty scheme) might be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. + used with implementation specific semantics. + value: + type: string + format: byte description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any + Must be a valid serialized protocol buffer of the above specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + URL that describes the type of the serialized message. - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - Example 3: Pack and unpack a message in Python. + Protobuf library provides support to pack/unpack Any values in the + form - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + of utility functions or additional generated methods of the Any type. - Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + Example 1: Pack and unpack a message in C++. - The pack methods provided by protobuf library will by default use + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + Example 2: Pack and unpack a message in Java. - methods only use the fully qualified type name after the last '/' + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - in the type URL, for example "foo.bar.com/x/y.z" will yield type + Example 3: Pack and unpack a message in Python. - name "y.z". + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + Example 4: Pack and unpack a message in Go + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - JSON + The pack methods provided by protobuf library will by default use - ==== + 'type.googleapis.com/full.type.name' as the type URL and the unpack - The JSON representation of an `Any` value uses the regular + methods only use the fully qualified type name after the last '/' - representation of the deserialized, embedded message, with an + in the type URL, for example "foo.bar.com/x/y.z" will yield type - additional field `@type` which contains the type URL. Example: + name "y.z". - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - If the embedded message type is well-known and has a custom JSON + JSON - representation, that representation will be embedded adding a - field + ==== - `value` which holds the custom JSON in addition to the `@type` + The JSON representation of an `Any` value uses the regular - field. Example (for message [google.protobuf.Duration][]): + representation of the deserialized, embedded message, with an - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - jailed: - type: boolean - description: >- - jailed defined whether the validator has been jailed from bonded - status or not. - status: - description: status is the validator status (bonded/unbonding/unbonded). - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - tokens: - type: string - description: tokens define the delegated tokens (incl. self-delegation). - delegator_shares: - type: string - description: >- - delegator_shares defines total shares issued to a validator's - delegators. - description: - description: description defines the description terms for the validator. - type: object - properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: - type: string - description: >- - identity defines an optional identity signature (ex. UPort or - Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: >- - security_contact defines an optional email for security - contact. - details: - type: string - description: details define other optional details. - unbonding_height: - type: string - format: int64 - description: >- - unbonding_height defines, if unbonding, the height at which this - validator has begun unbonding. - unbonding_time: - type: string - format: date-time - description: >- - unbonding_time defines, if unbonding, the min time for the - validator to complete unbonding. - commission: - description: commission defines the commission parameters. - type: object - properties: - commission_rates: - description: >- - commission_rates defines the initial commission rates to be - used for creating a validator. - type: object - properties: - rate: - type: string - description: >- - rate is the commission rate charged to delegators, as a - fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which - validator can ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase of the - validator commission, as a fraction. - update_time: - type: string - format: date-time - description: update_time is the last time the commission rate was changed. - min_self_delegation: - type: string - description: >- - min_self_delegation is the validator's self declared minimum self - delegation. + additional field `@type` which contains the type URL. Example: + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - Since: cosmos-sdk 0.46 - description: >- - Validator defines a validator, together with the total amount of the + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - Validator's bond shares and their exchange rate to coins. Slashing - results in + If the embedded message type is well-known and has a custom JSON - a decrease in the exchange rate, allowing correct calculation of - future + representation, that representation will be embedded adding a field - undelegations without iterating over delegators. When coins are - delegated to + `value` which holds the custom JSON in addition to the `@type` - this validator, the validator is credited with a delegation whose - number of + field. Example (for message [google.protobuf.Duration][]): - bond shares is based on the amount of coins delegated divided by the - current + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + timestamp: + type: string + description: >- + Time of the previous block. For heights > 1, it's the weighted median + of - exchange rate. Voting power can be calculated as total bonded shares + the timestamps of the valid votes in the block.LastCommit. For height + == 1, - multiplied by exchange rate. - description: |- - QueryDelegatorValidatorResponse response type for the - Query/DelegatorValidator RPC method. - cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse: - type: object - properties: - validators: + it's genesis time. + events: type: array items: type: object properties: - operator_address: - type: string - description: >- - operator_address defines the address of the validator's - operator; bech encoded in JSON. - consensus_pubkey: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally set - up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) - might be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: >- + EventAttribute is a single key-value pair, associated with an + event. + description: >- + Event allows application developers to attach additional information + to - URL that describes the type of the serialized message. + ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and + ResponseDeliverTx. + Later, transactions may be queried using these events. + description: >- + Events defines all the events emitted by processing a transaction. + Note, - Protobuf library provides support to pack/unpack Any values in - the form + these events include those emitted by processing all the messages and + those - of utility functions or additional generated methods of the Any - type. + emitted from the ante. Whereas Logs contains the events, with + additional metadata, emitted only by processing the messages. - Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 + description: >- + TxResponse defines a structure containing relevant tx data and metadata. + The - Example 2: Pack and unpack a message in Java. + tags are stringified and the log is JSON decoded. + cosmos.crypto.multisig.v1beta1.CompactBitArray: + type: object + properties: + extra_bits_stored: + type: integer + format: int64 + elems: + type: string + format: byte + description: |- + CompactBitArray is an implementation of a space efficient bit array. + This is used to ensure that the encoded data takes up a minimal amount of + space after proto encoding. + This is not thread safe, and is not intended for concurrent usage. + cosmos.tx.signing.v1beta1.SignMode: + type: string + enum: + - SIGN_MODE_UNSPECIFIED + - SIGN_MODE_DIRECT + - SIGN_MODE_TEXTUAL + - SIGN_MODE_DIRECT_AUX + - SIGN_MODE_LEGACY_AMINO_JSON + - SIGN_MODE_EIP_191 + default: SIGN_MODE_UNSPECIFIED + description: |- + SignMode represents a signing mode with its own security guarantees. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + This enum should be considered a registry of all known sign modes + in the Cosmos ecosystem. Apps are not expected to support all known + sign modes. Apps that would like to support custom sign modes are + encouraged to open a small PR against this file to add a new case + to this SignMode enum describing their sign mode so that different + apps have a consistent version of this enum. - Example 3: Pack and unpack a message in Python. + - SIGN_MODE_UNSPECIFIED: SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be + rejected. + - SIGN_MODE_DIRECT: SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is + verified with raw bytes from Tx. + - SIGN_MODE_TEXTUAL: SIGN_MODE_TEXTUAL is a future signing mode that will verify some + human-readable textual representation on top of the binary representation + from SIGN_MODE_DIRECT. It is currently not supported. + - SIGN_MODE_DIRECT_AUX: SIGN_MODE_DIRECT_AUX specifies a signing mode which uses + SignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode does not + require signers signing over other signers' `signer_info`. It also allows + for adding Tips in transactions. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + Since: cosmos-sdk 0.46 + - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses + Amino JSON and will be removed in the future. + - SIGN_MODE_EIP_191: SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos + SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 - Example 4: Pack and unpack a message in Go + Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, + but is not implemented on the SDK by default. To enable EIP-191, you need + to pass a custom `TxConfig` that has an implementation of + `SignModeHandler` for EIP-191. The SDK may decide to fully support + EIP-191 in the future. - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + Since: cosmos-sdk 0.45.2 + cosmos.tx.v1beta1.AuthInfo: + type: object + properties: + signer_infos: + type: array + items: + $ref: '#/definitions/cosmos.tx.v1beta1.SignerInfo' + description: >- + signer_infos defines the signing modes for the required signers. The + number - The pack methods provided by protobuf library will by default - use + and order of elements must match the required signers from TxBody's - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + messages. The first element is the primary signer and the one which + pays - methods only use the fully qualified type name after the last - '/' + the fee. + fee: + description: >- + Fee is the fee and gas limit for the transaction. The first signer is + the - in the type URL, for example "foo.bar.com/x/y.z" will yield type + primary signer and the one which pays the fee. The fee can be + calculated - name "y.z". + based on the cost of evaluating the body and doing signature + verification + of the signers. This can be estimated via simulation. + type: object + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - JSON + NOTE: The amount field is an Int which implements the custom + method - ==== + signatures required by gogoproto. + title: amount is the amount of coins to be paid as a fee + gas_limit: + type: string + format: uint64 + title: >- + gas_limit is the maximum gas that can be used in transaction + processing - The JSON representation of an `Any` value uses the regular + before an out of gas error occurs + payer: + type: string + description: >- + if unset, the first signer is responsible for paying the fees. If + set, the specified account must pay the fees. - representation of the deserialized, embedded message, with an + the payer must be a tx signer (and thus have signed this field in + AuthInfo). - additional field `@type` which contains the type URL. Example: + setting this field does *not* change the ordering of required + signers for the transaction. + granter: + type: string + title: >- + if set, the fee payer (either the first signer or the value of the + payer field) requests that a fee grant be used - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + to pay fees instead of the fee payer's own balance. If an + appropriate fee grant does not exist or the chain does - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + not support fee grants, this will fail + tip: + description: >- + Tip is the optional tip used for transactions fees paid in another + denom. - If the embedded message type is well-known and has a custom JSON - representation, that representation will be embedded adding a - field + This field is ignored if the chain didn't enable tips, i.e. didn't add + the - `value` which holds the custom JSON in addition to the `@type` + `TipDecorator` in its posthandler. - field. Example (for message [google.protobuf.Duration][]): - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - jailed: - type: boolean - description: >- - jailed defined whether the validator has been jailed from bonded - status or not. - status: - description: status is the validator status (bonded/unbonding/unbonded). - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - tokens: - type: string - description: tokens define the delegated tokens (incl. self-delegation). - delegator_shares: - type: string - description: >- - delegator_shares defines total shares issued to a validator's - delegators. - description: - description: description defines the description terms for the validator. + Since: cosmos-sdk 0.46 + type: object + properties: + amount: + type: array + items: type: object properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: - type: string - description: >- - identity defines an optional identity signature (ex. UPort - or Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: >- - security_contact defines an optional email for security - contact. - details: + denom: type: string - description: details define other optional details. - unbonding_height: - type: string - format: int64 - description: >- - unbonding_height defines, if unbonding, the height at which this - validator has begun unbonding. - unbonding_time: - type: string - format: date-time - description: >- - unbonding_time defines, if unbonding, the min time for the - validator to complete unbonding. - commission: - description: commission defines the commission parameters. - type: object - properties: - commission_rates: - description: >- - commission_rates defines the initial commission rates to be - used for creating a validator. - type: object - properties: - rate: - type: string - description: >- - rate is the commission rate charged to delegators, as a - fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which - validator can ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase of - the validator commission, as a fraction. - update_time: + amount: type: string - format: date-time - description: >- - update_time is the last time the commission rate was - changed. - min_self_delegation: - type: string description: >- - min_self_delegation is the validator's self declared minimum - self delegation. - - - Since: cosmos-sdk 0.46 - description: >- - Validator defines a validator, together with the total amount of the - - Validator's bond shares and their exchange rate to coins. Slashing - results in - - a decrease in the exchange rate, allowing correct calculation of - future - - undelegations without iterating over delegators. When coins are - delegated to - - this validator, the validator is credited with a delegation whose - number of + Coin defines a token with a denomination and an amount. - bond shares is based on the amount of coins delegated divided by the - current - exchange rate. Voting power can be calculated as total bonded shares + NOTE: The amount field is an Int which implements the custom + method - multiplied by exchange rate. - description: validators defines the validators' info of a delegator. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + signatures required by gogoproto. + title: amount is the amount of the tip + tipper: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + title: tipper is the address of the account paying for the tip + description: |- + AuthInfo describes the fee and signer modes that are used to sign a + transaction. + cosmos.tx.v1beta1.BroadcastMode: + type: string + enum: + - BROADCAST_MODE_UNSPECIFIED + - BROADCAST_MODE_BLOCK + - BROADCAST_MODE_SYNC + - BROADCAST_MODE_ASYNC + default: BROADCAST_MODE_UNSPECIFIED + description: >- + BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC + method. - was set, its value is undefined otherwise + - BROADCAST_MODE_UNSPECIFIED: zero-value for mode ordering + - BROADCAST_MODE_BLOCK: BROADCAST_MODE_BLOCK defines a tx broadcasting mode where the client waits for + the tx to be committed in a block. + - BROADCAST_MODE_SYNC: BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for + a CheckTx execution response only. + - BROADCAST_MODE_ASYNC: BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns + immediately. + cosmos.tx.v1beta1.BroadcastTxRequest: + type: object + properties: + tx_bytes: + type: string + format: byte + description: tx_bytes is the raw transaction. + mode: + type: string + enum: + - BROADCAST_MODE_UNSPECIFIED + - BROADCAST_MODE_BLOCK + - BROADCAST_MODE_SYNC + - BROADCAST_MODE_ASYNC + default: BROADCAST_MODE_UNSPECIFIED + description: >- + BroadcastMode specifies the broadcast mode for the TxService.Broadcast + RPC method. + + - BROADCAST_MODE_UNSPECIFIED: zero-value for mode ordering + - BROADCAST_MODE_BLOCK: BROADCAST_MODE_BLOCK defines a tx broadcasting mode where the client waits for + the tx to be committed in a block. + - BROADCAST_MODE_SYNC: BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for + a CheckTx execution response only. + - BROADCAST_MODE_ASYNC: BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns + immediately. description: |- - QueryDelegatorValidatorsResponse is response type for the - Query/DelegatorValidators RPC method. - cosmos.staking.v1beta1.QueryHistoricalInfoResponse: + BroadcastTxRequest is the request type for the Service.BroadcastTxRequest + RPC method. + cosmos.tx.v1beta1.BroadcastTxResponse: type: object properties: - hist: - description: hist defines the historical info at the given height. + tx_response: type: object properties: - header: - type: object - properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a block - in the blockchain, - - including all blockchain data structures and the rules of the - application's - - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - title: prev block info - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: Header defines the structure of a block header. - valset: + height: + type: string + format: int64 + title: The block height + txhash: + type: string + description: The transaction hash. + codespace: + type: string + title: Namespace for the Code + code: + type: integer + format: int64 + description: Response code. + data: + type: string + description: Result bytes, if any. + raw_log: + type: string + description: |- + The output of the application's logger (raw string). May be + non-deterministic. + logs: type: array items: type: object properties: - operator_address: + msg_index: + type: integer + format: int64 + log: type: string + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + description: >- + Attribute defines an attribute wrapper where the key + and value are + + strings instead of raw bytes. + description: >- + StringEvent defines en Event object wrapper where all the + attributes + + contain key/value pairs that are strings instead of raw + bytes. description: >- - operator_address defines the address of the validator's - operator; bech encoded in JSON. - consensus_pubkey: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of - the serialized + Events contains a slice of Event objects that were emitted + during some - protocol buffer message. This string must contain at - least + execution. + description: >- + ABCIMessageLog defines a structure containing an indexed tx ABCI + message log. + description: >- + The output of the application's logger (typed). May be + non-deterministic. + info: + type: string + description: Additional information. May be non-deterministic. + gas_wanted: + type: string + format: int64 + description: Amount of gas requested for transaction. + gas_used: + type: string + format: int64 + description: Amount of gas consumed by transaction. + tx: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - one "/" character. The last segment of the URL's path - must represent + protocol buffer message. This string must contain at least - the fully qualified name of the type (as in + one "/" character. The last segment of the URL's path must + represent - `path/google.protobuf.Duration`). The name should be in - a canonical form + the fully qualified name of the type (as in - (e.g., leading "." is not accepted). + `path/google.protobuf.Duration`). The name should be in a + canonical form + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary - all types that they - expect it to use in the context of Any. However, for - URLs which use the + In practice, teams usually precompile into the binary all + types that they - scheme `http`, `https`, or no scheme, one can optionally - set up a type + expect it to use in the context of Any. However, for URLs + which use the - server that maps type URLs to message definitions as - follows: + scheme `http`, `https`, or no scheme, one can optionally set + up a type + server that maps type URLs to message definitions as follows: - * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based - on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * If no scheme is provided, `https` is assumed. - Note: this functionality is not currently available in - the official + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - protobuf release, and it is not used for type URLs - beginning with + Note: this functionality is not currently available in the + official - type.googleapis.com. + protobuf release, and it is not used for type URLs beginning + with + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) - might be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer - message along with a + Schemes other than `http`, `https` (or the empty scheme) might + be - URL that describes the type of the serialized message. + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + URL that describes the type of the serialized message. - Protobuf library provides support to pack/unpack Any values - in the form - of utility functions or additional generated methods of the - Any type. + Protobuf library provides support to pack/unpack Any values in the + form + of utility functions or additional generated methods of the Any + type. - Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Example 1: Pack and unpack a message in C++. - Example 2: Pack and unpack a message in Java. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Example 2: Pack and unpack a message in Java. - Example 3: Pack and unpack a message in Python. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + Example 3: Pack and unpack a message in Python. - Example 4: Pack and unpack a message in Go + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + Example 4: Pack and unpack a message in Go - The pack methods provided by protobuf library will by - default use + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + The pack methods provided by protobuf library will by default use - methods only use the fully qualified type name after the - last '/' + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - in the type URL, for example "foo.bar.com/x/y.z" will yield - type + methods only use the fully qualified type name after the last '/' - name "y.z". + in the type URL, for example "foo.bar.com/x/y.z" will yield type + name "y.z". - JSON - ==== + JSON - The JSON representation of an `Any` value uses the regular + ==== - representation of the deserialized, embedded message, with - an + The JSON representation of an `Any` value uses the regular - additional field `@type` which contains the type URL. - Example: + representation of the deserialized, embedded message, with an - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + additional field `@type` which contains the type URL. Example: - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - If the embedded message type is well-known and has a custom - JSON + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - representation, that representation will be embedded adding - a field + If the embedded message type is well-known and has a custom JSON - `value` which holds the custom JSON in addition to the - `@type` + representation, that representation will be embedded adding a + field - field. Example (for message [google.protobuf.Duration][]): + `value` which holds the custom JSON in addition to the `@type` - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - jailed: - type: boolean - description: >- - jailed defined whether the validator has been jailed from - bonded status or not. - status: - description: status is the validator status (bonded/unbonding/unbonded). - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - tokens: - type: string - description: tokens define the delegated tokens (incl. self-delegation). - delegator_shares: - type: string - description: >- - delegator_shares defines total shares issued to a - validator's delegators. - description: - description: description defines the description terms for the validator. - type: object - properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: - type: string - description: >- - identity defines an optional identity signature (ex. - UPort or Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: >- - security_contact defines an optional email for security - contact. - details: - type: string - description: details define other optional details. - unbonding_height: - type: string - format: int64 - description: >- - unbonding_height defines, if unbonding, the height at which - this validator has begun unbonding. - unbonding_time: - type: string - format: date-time - description: >- - unbonding_time defines, if unbonding, the min time for the - validator to complete unbonding. - commission: - description: commission defines the commission parameters. - type: object - properties: - commission_rates: - description: >- - commission_rates defines the initial commission rates to - be used for creating a validator. - type: object - properties: - rate: - type: string - description: >- - rate is the commission rate charged to delegators, - as a fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which - validator can ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase - of the validator commission, as a fraction. - update_time: - type: string - format: date-time - description: >- - update_time is the last time the commission rate was - changed. - min_self_delegation: - type: string - description: >- - min_self_delegation is the validator's self declared minimum - self delegation. + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + timestamp: + type: string + description: >- + Time of the previous block. For heights > 1, it's the weighted + median of + the timestamps of the valid votes in the block.LastCommit. For + height == 1, - Since: cosmos-sdk 0.46 + it's genesis time. + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: >- + EventAttribute is a single key-value pair, associated with + an event. description: >- - Validator defines a validator, together with the total amount of - the + Event allows application developers to attach additional + information to - Validator's bond shares and their exchange rate to coins. - Slashing results in + ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and + ResponseDeliverTx. - a decrease in the exchange rate, allowing correct calculation of - future + Later, transactions may be queried using these events. + description: >- + Events defines all the events emitted by processing a transaction. + Note, - undelegations without iterating over delegators. When coins are - delegated to + these events include those emitted by processing all the messages + and those - this validator, the validator is credited with a delegation - whose number of + emitted from the ante. Whereas Logs contains the events, with - bond shares is based on the amount of coins delegated divided by - the current + additional metadata, emitted only by processing the messages. - exchange rate. Voting power can be calculated as total bonded - shares - multiplied by exchange rate. + Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 + description: >- + TxResponse defines a structure containing relevant tx data and + metadata. The + + tags are stringified and the log is JSON decoded. + description: |- + BroadcastTxResponse is the response type for the + Service.BroadcastTx method. + cosmos.tx.v1beta1.Fee: + type: object + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + title: amount is the amount of coins to be paid as a fee + gas_limit: + type: string + format: uint64 + title: >- + gas_limit is the maximum gas that can be used in transaction + processing + + before an out of gas error occurs + payer: + type: string + description: >- + if unset, the first signer is responsible for paying the fees. If set, + the specified account must pay the fees. + + the payer must be a tx signer (and thus have signed this field in + AuthInfo). + + setting this field does *not* change the ordering of required signers + for the transaction. + granter: + type: string + title: >- + if set, the fee payer (either the first signer or the value of the + payer field) requests that a fee grant be used + + to pay fees instead of the fee payer's own balance. If an appropriate + fee grant does not exist or the chain does + + not support fee grants, this will fail description: >- - QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo - RPC + Fee includes the amount of coins paid in fees and the maximum - method. - cosmos.staking.v1beta1.QueryParamsResponse: + gas to be used by the transaction. The ratio yields an effective + "gasprice", + + which must be above some miminum to be accepted into the mempool. + cosmos.tx.v1beta1.GetBlockWithTxsResponse: type: object properties: - params: - description: params holds all the parameters of this module. + txs: + type: array + items: + $ref: '#/definitions/cosmos.tx.v1beta1.Tx' + description: txs are the transactions in the block. + block_id: type: object properties: - unbonding_time: - type: string - description: unbonding_time is the time duration of unbonding. - max_validators: - type: integer - format: int64 - description: max_validators is the maximum number of validators. - max_entries: - type: integer - format: int64 - description: >- - max_entries is the max entries for either unbonding delegation or - redelegation (per pair/trio). - historical_entries: - type: integer - format: int64 - description: historical_entries is the number of historical entries to persist. - bond_denom: - type: string - description: bond_denom defines the bondable coin denomination. - min_commission_rate: + hash: type: string - title: >- - min_commission_rate is the chain-wide minimum commission rate that - a validator can charge their delegators - description: QueryParamsResponse is response type for the Query/Params RPC method. - cosmos.staking.v1beta1.QueryPoolResponse: - type: object - properties: - pool: - description: pool defines the pool info. + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + block: type: object properties: - not_bonded_tokens: - type: string - bonded_tokens: - type: string - description: QueryPoolResponse is response type for the Query/Pool RPC method. - cosmos.staking.v1beta1.QueryRedelegationsResponse: - type: object - properties: - redelegation_responses: - type: array - items: - type: object - properties: - redelegation: - type: object - properties: - delegator_address: - type: string - description: >- - delegator_address is the bech32-encoded address of the - delegator. - validator_src_address: - type: string - description: >- - validator_src_address is the validator redelegation source - operator address. - validator_dst_address: - type: string - description: >- - validator_dst_address is the validator redelegation - destination operator address. - entries: - type: array - items: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules for processing a block + in the blockchain, + + including all blockchain data structures and the rules of the + application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: type: object properties: - creation_height: - type: string + total: + type: integer format: int64 - description: >- - creation_height defines the height which the - redelegation took place. - completion_time: - type: string - format: date-time - description: >- - completion_time defines the unix time for redelegation - completion. - initial_balance: - type: string - description: >- - initial_balance defines the initial balance when - redelegation started. - shares_dst: + hash: type: string - description: >- - shares_dst is the amount of destination-validator - shares created by redelegation. - description: >- - RedelegationEntry defines a redelegation object with - relevant metadata. - description: entries are the redelegation entries. - description: >- - Redelegation contains the list of a particular delegator's - redelegating bonds + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: hashes from the app output from the prev block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: Header defines the structure of a block header. + data: + type: object + properties: + txs: + type: array + items: + type: string + format: byte + description: >- + Txs that will be applied by state @ block.Height+1. - from a particular source validator to a particular destination - validator. - entries: - type: array - items: + NOTE: not all txs here are valid. We're just agreeing on the + order first. + + This means that block.AppHash does not include these txs. + title: Data contains the set of transactions included in the block + evidence: + type: object + properties: + evidence: + type: array + items: + type: object + properties: + duplicate_vote_evidence: + type: object + properties: + vote_a: + type: object + properties: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: >- + SignedMsgType is a type of signed message in the + consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote + from validators for + + consensus. + vote_b: + type: object + properties: + type: + type: string + enum: + - SIGNED_MSG_TYPE_UNKNOWN + - SIGNED_MSG_TYPE_PREVOTE + - SIGNED_MSG_TYPE_PRECOMMIT + - SIGNED_MSG_TYPE_PROPOSAL + default: SIGNED_MSG_TYPE_UNKNOWN + description: >- + SignedMsgType is a type of signed message in the + consensus. + + - SIGNED_MSG_TYPE_PREVOTE: Votes + - SIGNED_MSG_TYPE_PROPOSAL: Proposals + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + timestamp: + type: string + format: date-time + validator_address: + type: string + format: byte + validator_index: + type: integer + format: int32 + signature: + type: string + format: byte + description: >- + Vote represents a prevote, precommit, or commit vote + from validators for + + consensus. + total_voting_power: + type: string + format: int64 + validator_power: + type: string + format: int64 + timestamp: + type: string + format: date-time + description: >- + DuplicateVoteEvidence contains evidence of a validator + signed two conflicting votes. + light_client_attack_evidence: + type: object + properties: + conflicting_block: + type: object + properties: + signed_header: + type: object + properties: + header: + type: object + properties: + version: + title: basic block info + type: object + properties: + block: + type: string + format: uint64 + app: + type: string + format: uint64 + description: >- + Consensus captures the consensus rules + for processing a block in the + blockchain, + + including all blockchain data structures + and the rules of the application's + + state transition machine. + chain_id: + type: string + height: + type: string + format: int64 + time: + type: string + format: date-time + last_block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + last_commit_hash: + type: string + format: byte + title: hashes of block data + data_hash: + type: string + format: byte + validators_hash: + type: string + format: byte + title: >- + hashes from the app output from the prev + block + next_validators_hash: + type: string + format: byte + consensus_hash: + type: string + format: byte + app_hash: + type: string + format: byte + last_results_hash: + type: string + format: byte + evidence_hash: + type: string + format: byte + title: consensus info + proposer_address: + type: string + format: byte + description: >- + Header defines the structure of a block + header. + commit: + type: object + properties: + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: + type: object + properties: + hash: + type: string + format: byte + part_set_header: + type: object + properties: + total: + type: integer + format: int64 + hash: + type: string + format: byte + title: PartsetHeader + title: BlockID + signatures: + type: array + items: + type: object + properties: + block_id_flag: + type: string + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: >- + BlockIdFlag indicates which BlcokID the + signature is for + validator_address: + type: string + format: byte + timestamp: + type: string + format: date-time + signature: + type: string + format: byte + description: >- + CommitSig is a part of the Vote included + in a Commit. + description: >- + Commit contains the evidence that a block + was committed by a set of validators. + validator_set: + type: object + properties: + validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for + use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + proposer: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for + use with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + common_height: + type: string + format: int64 + byzantine_validators: + type: array + items: + type: object + properties: + address: + type: string + format: byte + pub_key: + type: object + properties: + ed25519: + type: string + format: byte + secp256k1: + type: string + format: byte + title: >- + PublicKey defines the keys available for use + with Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + timestamp: + type: string + format: date-time + description: >- + LightClientAttackEvidence contains evidence of a set of + validators attempting to mislead a light client. + last_commit: + type: object + properties: + height: + type: string + format: int64 + round: + type: integer + format: int32 + block_id: type: object properties: - redelegation_entry: + hash: + type: string + format: byte + part_set_header: type: object properties: - creation_height: - type: string + total: + type: integer format: int64 - description: >- - creation_height defines the height which the - redelegation took place. - completion_time: - type: string - format: date-time - description: >- - completion_time defines the unix time for redelegation - completion. - initial_balance: - type: string - description: >- - initial_balance defines the initial balance when - redelegation started. - shares_dst: + hash: type: string - description: >- - shares_dst is the amount of destination-validator - shares created by redelegation. - description: >- - RedelegationEntry defines a redelegation object with - relevant metadata. - balance: - type: string - description: >- - RedelegationEntryResponse is equivalent to a RedelegationEntry - except that it - - contains a balance in addition to shares which is more - suitable for client - - responses. - description: >- - RedelegationResponse is equivalent to a Redelegation except that its - entries - - contain a balance in addition to shares which is more suitable for - client - - responses. + format: byte + title: PartsetHeader + title: BlockID + signatures: + type: array + items: + type: object + properties: + block_id_flag: + type: string + enum: + - BLOCK_ID_FLAG_UNKNOWN + - BLOCK_ID_FLAG_ABSENT + - BLOCK_ID_FLAG_COMMIT + - BLOCK_ID_FLAG_NIL + default: BLOCK_ID_FLAG_UNKNOWN + title: BlockIdFlag indicates which BlcokID the signature is for + validator_address: + type: string + format: byte + timestamp: + type: string + format: date-time + signature: + type: string + format: byte + description: CommitSig is a part of the Vote included in a Commit. + description: >- + Commit contains the evidence that a block was committed by a set + of validators. pagination: - description: pagination defines the pagination in the response. + description: pagination defines a pagination for the response. type: object properties: next_key: @@ -71391,142 +86920,102 @@ definitions: was set, its value is undefined otherwise description: >- - QueryRedelegationsResponse is response type for the Query/Redelegations - RPC + GetBlockWithTxsResponse is the response type for the + Service.GetBlockWithTxs method. - method. - cosmos.staking.v1beta1.QueryUnbondingDelegationResponse: + + Since: cosmos-sdk 0.45.2 + cosmos.tx.v1beta1.GetTxResponse: type: object properties: - unbond: + tx: + $ref: '#/definitions/cosmos.tx.v1beta1.Tx' + description: tx is the queried transaction. + tx_response: type: object properties: - delegator_address: + height: type: string - description: delegator_address is the bech32-encoded address of the delegator. - validator_address: + format: int64 + title: The block height + txhash: type: string - description: validator_address is the bech32-encoded address of the validator. - entries: + description: The transaction hash. + codespace: + type: string + title: Namespace for the Code + code: + type: integer + format: int64 + description: Response code. + data: + type: string + description: Result bytes, if any. + raw_log: + type: string + description: |- + The output of the application's logger (raw string). May be + non-deterministic. + logs: type: array items: type: object properties: - creation_height: - type: string + msg_index: + type: integer format: int64 - description: >- - creation_height is the height which the unbonding took - place. - completion_time: - type: string - format: date-time - description: completion_time is the unix time for unbonding completion. - initial_balance: - type: string - description: >- - initial_balance defines the tokens initially scheduled to - receive at completion. - balance: - type: string - description: balance defines the tokens to receive at completion. - description: >- - UnbondingDelegationEntry defines an unbonding object with - relevant metadata. - description: entries are the unbonding delegation entries. - description: |- - UnbondingDelegation stores all of a single delegator's unbonding bonds - for a single validator in an time-ordered list. - description: |- - QueryDelegationResponse is response type for the Query/UnbondingDelegation - RPC method. - cosmos.staking.v1beta1.QueryValidatorDelegationsResponse: - type: object - properties: - delegation_responses: - type: array - items: - type: object - properties: - delegation: - type: object - properties: - delegator_address: - type: string - description: >- - delegator_address is the bech32-encoded address of the - delegator. - validator_address: - type: string - description: >- - validator_address is the bech32-encoded address of the - validator. - shares: - type: string - description: shares define the delegation shares received. - description: >- - Delegation represents the bond with tokens held by an account. - It is - - owned by one delegator, and is associated with the voting power - of one - - validator. - balance: - type: object - properties: - denom: - type: string - amount: + log: type: string - description: >- - Coin defines a token with a denomination and an amount. - + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + description: >- + Attribute defines an attribute wrapper where the key + and value are - NOTE: The amount field is an Int which implements the custom - method + strings instead of raw bytes. + description: >- + StringEvent defines en Event object wrapper where all the + attributes - signatures required by gogoproto. - description: >- - DelegationResponse is equivalent to Delegation except that it - contains a + contain key/value pairs that are strings instead of raw + bytes. + description: >- + Events contains a slice of Event objects that were emitted + during some - balance in addition to shares which is more suitable for client - responses. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: + execution. + description: >- + ABCIMessageLog defines a structure containing an indexed tx ABCI + message log. + description: >- + The output of the application's logger (typed). May be + non-deterministic. + info: type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + description: Additional information. May be non-deterministic. + gas_wanted: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - title: |- - QueryValidatorDelegationsResponse is response type for the - Query/ValidatorDelegations RPC method - cosmos.staking.v1beta1.QueryValidatorResponse: - type: object - properties: - validator: - type: object - properties: - operator_address: + format: int64 + description: Amount of gas requested for transaction. + gas_used: type: string - description: >- - operator_address defines the address of the validator's operator; - bech encoded in JSON. - consensus_pubkey: + format: int64 + description: Amount of gas consumed by transaction. + tx: type: object properties: type_url: @@ -71691,208 +87180,161 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - jailed: - type: boolean - description: >- - jailed defined whether the validator has been jailed from bonded - status or not. - status: - description: status is the validator status (bonded/unbonding/unbonded). - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - tokens: - type: string - description: tokens define the delegated tokens (incl. self-delegation). - delegator_shares: - type: string - description: >- - delegator_shares defines total shares issued to a validator's - delegators. - description: - description: description defines the description terms for the validator. - type: object - properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: - type: string - description: >- - identity defines an optional identity signature (ex. UPort or - Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: >- - security_contact defines an optional email for security - contact. - details: - type: string - description: details define other optional details. - unbonding_height: - type: string - format: int64 - description: >- - unbonding_height defines, if unbonding, the height at which this - validator has begun unbonding. - unbonding_time: - type: string - format: date-time - description: >- - unbonding_time defines, if unbonding, the min time for the - validator to complete unbonding. - commission: - description: commission defines the commission parameters. - type: object - properties: - commission_rates: - description: >- - commission_rates defines the initial commission rates to be - used for creating a validator. - type: object - properties: - rate: - type: string - description: >- - rate is the commission rate charged to delegators, as a - fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which - validator can ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase of the - validator commission, as a fraction. - update_time: - type: string - format: date-time - description: update_time is the last time the commission rate was changed. - min_self_delegation: + timestamp: type: string description: >- - min_self_delegation is the validator's self declared minimum self - delegation. + Time of the previous block. For heights > 1, it's the weighted + median of + the timestamps of the valid votes in the block.LastCommit. For + height == 1, - Since: cosmos-sdk 0.46 - description: >- - Validator defines a validator, together with the total amount of the + it's genesis time. + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: >- + EventAttribute is a single key-value pair, associated with + an event. + description: >- + Event allows application developers to attach additional + information to - Validator's bond shares and their exchange rate to coins. Slashing - results in + ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and + ResponseDeliverTx. - a decrease in the exchange rate, allowing correct calculation of - future + Later, transactions may be queried using these events. + description: >- + Events defines all the events emitted by processing a transaction. + Note, - undelegations without iterating over delegators. When coins are - delegated to + these events include those emitted by processing all the messages + and those + + emitted from the ante. Whereas Logs contains the events, with - this validator, the validator is credited with a delegation whose - number of + additional metadata, emitted only by processing the messages. - bond shares is based on the amount of coins delegated divided by the - current - exchange rate. Voting power can be calculated as total bonded shares + Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 + description: >- + TxResponse defines a structure containing relevant tx data and + metadata. The - multiplied by exchange rate. - title: QueryValidatorResponse is response type for the Query/Validator RPC method - cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse: + tags are stringified and the log is JSON decoded. + description: GetTxResponse is the response type for the Service.GetTx method. + cosmos.tx.v1beta1.GetTxsEventResponse: type: object properties: - unbonding_responses: + txs: + type: array + items: + $ref: '#/definitions/cosmos.tx.v1beta1.Tx' + description: txs is the list of queried transactions. + tx_responses: type: array items: type: object properties: - delegator_address: + height: type: string - description: >- - delegator_address is the bech32-encoded address of the - delegator. - validator_address: + format: int64 + title: The block height + txhash: type: string - description: >- - validator_address is the bech32-encoded address of the - validator. - entries: + description: The transaction hash. + codespace: + type: string + title: Namespace for the Code + code: + type: integer + format: int64 + description: Response code. + data: + type: string + description: Result bytes, if any. + raw_log: + type: string + description: |- + The output of the application's logger (raw string). May be + non-deterministic. + logs: type: array items: type: object properties: - creation_height: - type: string + msg_index: + type: integer format: int64 - description: >- - creation_height is the height which the unbonding took - place. - completion_time: - type: string - format: date-time - description: completion_time is the unix time for unbonding completion. - initial_balance: - type: string - description: >- - initial_balance defines the tokens initially scheduled to - receive at completion. - balance: + log: type: string - description: balance defines the tokens to receive at completion. - description: >- - UnbondingDelegationEntry defines an unbonding object with - relevant metadata. - description: entries are the unbonding delegation entries. - description: >- - UnbondingDelegation stores all of a single delegator's unbonding - bonds + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + description: >- + Attribute defines an attribute wrapper where the + key and value are - for a single validator in an time-ordered list. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + strings instead of raw bytes. + description: >- + StringEvent defines en Event object wrapper where all + the attributes - was set, its value is undefined otherwise - description: |- - QueryValidatorUnbondingDelegationsResponse is response type for the - Query/ValidatorUnbondingDelegations RPC method. - cosmos.staking.v1beta1.QueryValidatorsResponse: - type: object - properties: - validators: - type: array - items: - type: object - properties: - operator_address: - type: string + contain key/value pairs that are strings instead of raw + bytes. + description: >- + Events contains a slice of Event objects that were emitted + during some + + execution. + description: >- + ABCIMessageLog defines a structure containing an indexed tx + ABCI message log. description: >- - operator_address defines the address of the validator's - operator; bech encoded in JSON. - consensus_pubkey: + The output of the application's logger (typed). May be + non-deterministic. + info: + type: string + description: Additional information. May be non-deterministic. + gas_wanted: + type: string + format: int64 + description: Amount of gas requested for transaction. + gas_used: + type: string + format: int64 + description: Amount of gas consumed by transaction. + tx: type: object properties: type_url: @@ -72061,126 +87503,70 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - jailed: - type: boolean - description: >- - jailed defined whether the validator has been jailed from bonded - status or not. - status: - description: status is the validator status (bonded/unbonding/unbonded). - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - tokens: - type: string - description: tokens define the delegated tokens (incl. self-delegation). - delegator_shares: - type: string - description: >- - delegator_shares defines total shares issued to a validator's - delegators. - description: - description: description defines the description terms for the validator. - type: object - properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: - type: string - description: >- - identity defines an optional identity signature (ex. UPort - or Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: >- - security_contact defines an optional email for security - contact. - details: - type: string - description: details define other optional details. - unbonding_height: - type: string - format: int64 - description: >- - unbonding_height defines, if unbonding, the height at which this - validator has begun unbonding. - unbonding_time: - type: string - format: date-time - description: >- - unbonding_time defines, if unbonding, the min time for the - validator to complete unbonding. - commission: - description: commission defines the commission parameters. - type: object - properties: - commission_rates: - description: >- - commission_rates defines the initial commission rates to be - used for creating a validator. - type: object - properties: - rate: - type: string - description: >- - rate is the commission rate charged to delegators, as a - fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which - validator can ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase of - the validator commission, as a fraction. - update_time: - type: string - format: date-time - description: >- - update_time is the last time the commission rate was - changed. - min_self_delegation: + timestamp: type: string description: >- - min_self_delegation is the validator's self declared minimum - self delegation. + Time of the previous block. For heights > 1, it's the weighted + median of + + the timestamps of the valid votes in the block.LastCommit. For + height == 1, + it's genesis time. + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: >- + EventAttribute is a single key-value pair, associated + with an event. + description: >- + Event allows application developers to attach additional + information to - Since: cosmos-sdk 0.46 - description: >- - Validator defines a validator, together with the total amount of the + ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and + ResponseDeliverTx. - Validator's bond shares and their exchange rate to coins. Slashing - results in + Later, transactions may be queried using these events. + description: >- + Events defines all the events emitted by processing a + transaction. Note, - a decrease in the exchange rate, allowing correct calculation of - future + these events include those emitted by processing all the + messages and those - undelegations without iterating over delegators. When coins are - delegated to + emitted from the ante. Whereas Logs contains the events, with - this validator, the validator is credited with a delegation whose - number of + additional metadata, emitted only by processing the messages. - bond shares is based on the amount of coins delegated divided by the - current - exchange rate. Voting power can be calculated as total bonded shares + Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 + description: >- + TxResponse defines a structure containing relevant tx data and + metadata. The - multiplied by exchange rate. - description: validators contains all the queried validators. + tags are stringified and the log is JSON decoded. + description: tx_responses is the list of queried TxResponses. pagination: - description: pagination defines the pagination in the response. + description: |- + pagination defines a pagination for the response. + Deprecated post v0.46.x: use total instead. type: object properties: next_key: @@ -72198,293 +87584,213 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - title: >- - QueryValidatorsResponse is response type for the Query/Validators RPC - method - cosmos.staking.v1beta1.Redelegation: - type: object - properties: - delegator_address: - type: string - description: delegator_address is the bech32-encoded address of the delegator. - validator_src_address: - type: string - description: >- - validator_src_address is the validator redelegation source operator - address. - validator_dst_address: - type: string - description: >- - validator_dst_address is the validator redelegation destination - operator address. - entries: - type: array - items: - type: object - properties: - creation_height: - type: string - format: int64 - description: >- - creation_height defines the height which the redelegation took - place. - completion_time: - type: string - format: date-time - description: >- - completion_time defines the unix time for redelegation - completion. - initial_balance: - type: string - description: >- - initial_balance defines the initial balance when redelegation - started. - shares_dst: - type: string - description: >- - shares_dst is the amount of destination-validator shares created - by redelegation. - description: >- - RedelegationEntry defines a redelegation object with relevant - metadata. - description: entries are the redelegation entries. - description: >- - Redelegation contains the list of a particular delegator's redelegating - bonds - - from a particular source validator to a particular destination validator. - cosmos.staking.v1beta1.RedelegationEntry: - type: object - properties: - creation_height: - type: string - format: int64 - description: creation_height defines the height which the redelegation took place. - completion_time: - type: string - format: date-time - description: completion_time defines the unix time for redelegation completion. - initial_balance: - type: string - description: initial_balance defines the initial balance when redelegation started. - shares_dst: + total: type: string - description: >- - shares_dst is the amount of destination-validator shares created by - redelegation. - description: RedelegationEntry defines a redelegation object with relevant metadata. - cosmos.staking.v1beta1.RedelegationEntryResponse: + format: uint64 + title: total is total number of results available + description: |- + GetTxsEventResponse is the response type for the Service.TxsByEvents + RPC method. + cosmos.tx.v1beta1.ModeInfo: type: object properties: - redelegation_entry: + single: + title: single represents a single signer type: object properties: - creation_height: - type: string - format: int64 - description: >- - creation_height defines the height which the redelegation took - place. - completion_time: - type: string - format: date-time - description: completion_time defines the unix time for redelegation completion. - initial_balance: - type: string - description: >- - initial_balance defines the initial balance when redelegation - started. - shares_dst: + mode: + title: mode is the signing mode of the single signer type: string + enum: + - SIGN_MODE_UNSPECIFIED + - SIGN_MODE_DIRECT + - SIGN_MODE_TEXTUAL + - SIGN_MODE_DIRECT_AUX + - SIGN_MODE_LEGACY_AMINO_JSON + - SIGN_MODE_EIP_191 + default: SIGN_MODE_UNSPECIFIED description: >- - shares_dst is the amount of destination-validator shares created - by redelegation. - description: >- - RedelegationEntry defines a redelegation object with relevant - metadata. - balance: - type: string - description: >- - RedelegationEntryResponse is equivalent to a RedelegationEntry except that - it + SignMode represents a signing mode with its own security + guarantees. - contains a balance in addition to shares which is more suitable for client - responses. - cosmos.staking.v1beta1.RedelegationResponse: - type: object - properties: - redelegation: - type: object - properties: - delegator_address: - type: string - description: delegator_address is the bech32-encoded address of the delegator. - validator_src_address: - type: string - description: >- - validator_src_address is the validator redelegation source - operator address. - validator_dst_address: - type: string - description: >- - validator_dst_address is the validator redelegation destination - operator address. - entries: - type: array - items: - type: object - properties: - creation_height: - type: string - format: int64 - description: >- - creation_height defines the height which the redelegation - took place. - completion_time: - type: string - format: date-time - description: >- - completion_time defines the unix time for redelegation - completion. - initial_balance: - type: string - description: >- - initial_balance defines the initial balance when - redelegation started. - shares_dst: - type: string - description: >- - shares_dst is the amount of destination-validator shares - created by redelegation. - description: >- - RedelegationEntry defines a redelegation object with relevant - metadata. - description: entries are the redelegation entries. - description: >- - Redelegation contains the list of a particular delegator's - redelegating bonds + This enum should be considered a registry of all known sign modes + + in the Cosmos ecosystem. Apps are not expected to support all + known + + sign modes. Apps that would like to support custom sign modes are + + encouraged to open a small PR against this file to add a new case + + to this SignMode enum describing their sign mode so that different + + apps have a consistent version of this enum. + + - SIGN_MODE_UNSPECIFIED: SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be + rejected. + - SIGN_MODE_DIRECT: SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is + verified with raw bytes from Tx. + - SIGN_MODE_TEXTUAL: SIGN_MODE_TEXTUAL is a future signing mode that will verify some + human-readable textual representation on top of the binary + representation - from a particular source validator to a particular destination - validator. - entries: - type: array - items: - type: object - properties: - redelegation_entry: - type: object - properties: - creation_height: - type: string - format: int64 - description: >- - creation_height defines the height which the redelegation - took place. - completion_time: - type: string - format: date-time - description: >- - completion_time defines the unix time for redelegation - completion. - initial_balance: - type: string - description: >- - initial_balance defines the initial balance when - redelegation started. - shares_dst: - type: string - description: >- - shares_dst is the amount of destination-validator shares - created by redelegation. - description: >- - RedelegationEntry defines a redelegation object with relevant - metadata. - balance: - type: string - description: >- - RedelegationEntryResponse is equivalent to a RedelegationEntry - except that it + from SIGN_MODE_DIRECT. It is currently not supported. + - SIGN_MODE_DIRECT_AUX: SIGN_MODE_DIRECT_AUX specifies a signing mode which uses + SignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode + does not - contains a balance in addition to shares which is more suitable for - client + require signers signing over other signers' `signer_info`. It also + allows - responses. - description: >- - RedelegationResponse is equivalent to a Redelegation except that its - entries + for adding Tips in transactions. - contain a balance in addition to shares which is more suitable for client - responses. - cosmos.staking.v1beta1.UnbondingDelegation: + Since: cosmos-sdk 0.46 + - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses + Amino JSON and will be removed in the future. + - SIGN_MODE_EIP_191: SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos + SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 + + + Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum + variant, + + but is not implemented on the SDK by default. To enable EIP-191, + you need + + to pass a custom `TxConfig` that has an implementation of + + `SignModeHandler` for EIP-191. The SDK may decide to fully support + + EIP-191 in the future. + + + Since: cosmos-sdk 0.45.2 + multi: + $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo.Multi' + title: multi represents a nested multisig signer + description: ModeInfo describes the signing mode of a single or nested multisig signer. + cosmos.tx.v1beta1.ModeInfo.Multi: type: object properties: - delegator_address: - type: string - description: delegator_address is the bech32-encoded address of the delegator. - validator_address: - type: string - description: validator_address is the bech32-encoded address of the validator. - entries: + bitarray: + title: bitarray specifies which keys within the multisig are signing + type: object + properties: + extra_bits_stored: + type: integer + format: int64 + elems: + type: string + format: byte + description: >- + CompactBitArray is an implementation of a space efficient bit array. + + This is used to ensure that the encoded data takes up a minimal amount + of + + space after proto encoding. + + This is not thread safe, and is not intended for concurrent usage. + mode_infos: type: array items: - type: object - properties: - creation_height: - type: string - format: int64 - description: creation_height is the height which the unbonding took place. - completion_time: - type: string - format: date-time - description: completion_time is the unix time for unbonding completion. - initial_balance: - type: string - description: >- - initial_balance defines the tokens initially scheduled to - receive at completion. - balance: - type: string - description: balance defines the tokens to receive at completion. - description: >- - UnbondingDelegationEntry defines an unbonding object with relevant - metadata. - description: entries are the unbonding delegation entries. - description: |- - UnbondingDelegation stores all of a single delegator's unbonding bonds - for a single validator in an time-ordered list. - cosmos.staking.v1beta1.UnbondingDelegationEntry: + $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo' + title: |- + mode_infos is the corresponding modes of the signers of the multisig + which could include nested multisig public keys + title: Multi is the mode info for a multisig public key + cosmos.tx.v1beta1.ModeInfo.Single: type: object properties: - creation_height: - type: string - format: int64 - description: creation_height is the height which the unbonding took place. - completion_time: - type: string - format: date-time - description: completion_time is the unix time for unbonding completion. - initial_balance: + mode: + title: mode is the signing mode of the single signer type: string + enum: + - SIGN_MODE_UNSPECIFIED + - SIGN_MODE_DIRECT + - SIGN_MODE_TEXTUAL + - SIGN_MODE_DIRECT_AUX + - SIGN_MODE_LEGACY_AMINO_JSON + - SIGN_MODE_EIP_191 + default: SIGN_MODE_UNSPECIFIED description: >- - initial_balance defines the tokens initially scheduled to receive at - completion. - balance: - type: string - description: balance defines the tokens to receive at completion. + SignMode represents a signing mode with its own security guarantees. + + + This enum should be considered a registry of all known sign modes + + in the Cosmos ecosystem. Apps are not expected to support all known + + sign modes. Apps that would like to support custom sign modes are + + encouraged to open a small PR against this file to add a new case + + to this SignMode enum describing their sign mode so that different + + apps have a consistent version of this enum. + + - SIGN_MODE_UNSPECIFIED: SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be + rejected. + - SIGN_MODE_DIRECT: SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is + verified with raw bytes from Tx. + - SIGN_MODE_TEXTUAL: SIGN_MODE_TEXTUAL is a future signing mode that will verify some + human-readable textual representation on top of the binary + representation + + from SIGN_MODE_DIRECT. It is currently not supported. + - SIGN_MODE_DIRECT_AUX: SIGN_MODE_DIRECT_AUX specifies a signing mode which uses + SignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode does + not + + require signers signing over other signers' `signer_info`. It also + allows + + for adding Tips in transactions. + + + Since: cosmos-sdk 0.46 + - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses + Amino JSON and will be removed in the future. + - SIGN_MODE_EIP_191: SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos + SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 + + + Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, + + but is not implemented on the SDK by default. To enable EIP-191, you + need + + to pass a custom `TxConfig` that has an implementation of + + `SignModeHandler` for EIP-191. The SDK may decide to fully support + + EIP-191 in the future. + + + Since: cosmos-sdk 0.45.2 + title: |- + Single is the mode info for a single signer. It is structured as a message + to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the + future + cosmos.tx.v1beta1.OrderBy: + type: string + enum: + - ORDER_BY_UNSPECIFIED + - ORDER_BY_ASC + - ORDER_BY_DESC + default: ORDER_BY_UNSPECIFIED description: >- - UnbondingDelegationEntry defines an unbonding object with relevant - metadata. - cosmos.staking.v1beta1.Validator: + - ORDER_BY_UNSPECIFIED: ORDER_BY_UNSPECIFIED specifies an unknown sorting + order. OrderBy defaults to ASC in this case. + - ORDER_BY_ASC: ORDER_BY_ASC defines ascending order + - ORDER_BY_DESC: ORDER_BY_DESC defines descending order + title: OrderBy defines the sorting order + cosmos.tx.v1beta1.SignerInfo: type: object properties: - operator_address: - type: string - description: >- - operator_address defines the address of the validator's operator; bech - encoded in JSON. - consensus_pubkey: + public_key: type: object properties: type_url: @@ -72635,2768 +87941,2009 @@ definitions: representation, that representation will be embedded adding a field - `value` which holds the custom JSON in addition to the `@type` + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + mode_info: + $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo' + title: |- + mode_info describes the signing mode of the signer and is a nested + structure to support nested multisig pubkey's + sequence: + type: string + format: uint64 + description: >- + sequence is the sequence of the account, which describes the + + number of committed transactions signed by a given address. It is used + to + + prevent replay attacks. + description: |- + SignerInfo describes the public key and signing mode of a single top-level + signer. + cosmos.tx.v1beta1.SimulateRequest: + type: object + properties: + tx: + $ref: '#/definitions/cosmos.tx.v1beta1.Tx' + description: |- + tx is the transaction to simulate. + Deprecated. Send raw tx bytes instead. + tx_bytes: + type: string + format: byte + description: |- + tx_bytes is the raw transaction. + + Since: cosmos-sdk 0.43 + description: |- + SimulateRequest is the request type for the Service.Simulate + RPC method. + cosmos.tx.v1beta1.SimulateResponse: + type: object + properties: + gas_info: + description: gas_info is the information about gas used in the simulation. + type: object + properties: + gas_wanted: + type: string + format: uint64 + description: >- + GasWanted is the maximum units of work we allow this tx to + perform. + gas_used: + type: string + format: uint64 + description: GasUsed is the amount of gas actually consumed. + result: + description: result is the result of the simulation. + type: object + properties: + data: + type: string + format: byte + description: >- + Data is any data returned from message or handler execution. It + MUST be + + length prefixed in order to separate data from multiple message + executions. + + Deprecated. This field is still populated, but prefer msg_response + instead + + because it also contains the Msg response typeURL. + log: + type: string + description: >- + Log contains the log information from message or handler + execution. + events: + type: array + items: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: >- + EventAttribute is a single key-value pair, associated with + an event. + description: >- + Event allows application developers to attach additional + information to + + ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and + ResponseDeliverTx. + + Later, transactions may be queried using these events. + description: >- + Events contains a slice of Event objects that were emitted during + message + + or handler execution. + msg_responses: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in + the form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last + '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular - field. Example (for message [google.protobuf.Duration][]): + representation of the deserialized, embedded message, with an - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - jailed: - type: boolean - description: >- - jailed defined whether the validator has been jailed from bonded - status or not. - status: - description: status is the validator status (bonded/unbonding/unbonded). - type: string - enum: - - BOND_STATUS_UNSPECIFIED - - BOND_STATUS_UNBONDED - - BOND_STATUS_UNBONDING - - BOND_STATUS_BONDED - default: BOND_STATUS_UNSPECIFIED - tokens: - type: string - description: tokens define the delegated tokens (incl. self-delegation). - delegator_shares: - type: string - description: >- - delegator_shares defines total shares issued to a validator's - delegators. - description: - description: description defines the description terms for the validator. - type: object - properties: - moniker: - type: string - description: moniker defines a human-readable name for the validator. - identity: - type: string - description: >- - identity defines an optional identity signature (ex. UPort or - Keybase). - website: - type: string - description: website defines an optional website link. - security_contact: - type: string - description: security_contact defines an optional email for security contact. - details: - type: string - description: details define other optional details. - unbonding_height: - type: string - format: int64 - description: >- - unbonding_height defines, if unbonding, the height at which this - validator has begun unbonding. - unbonding_time: - type: string - format: date-time - description: >- - unbonding_time defines, if unbonding, the min time for the validator - to complete unbonding. - commission: - description: commission defines the commission parameters. - type: object - properties: - commission_rates: - description: >- - commission_rates defines the initial commission rates to be used - for creating a validator. - type: object - properties: - rate: - type: string - description: >- - rate is the commission rate charged to delegators, as a - fraction. - max_rate: - type: string - description: >- - max_rate defines the maximum commission rate which validator - can ever charge, as a fraction. - max_change_rate: - type: string - description: >- - max_change_rate defines the maximum daily increase of the - validator commission, as a fraction. - update_time: - type: string - format: date-time - description: update_time is the last time the commission rate was changed. - min_self_delegation: - type: string - description: >- - min_self_delegation is the validator's self declared minimum self - delegation. + additional field `@type` which contains the type URL. Example: + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - Since: cosmos-sdk 0.46 - description: >- - Validator defines a validator, together with the total amount of the + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - Validator's bond shares and their exchange rate to coins. Slashing results - in + If the embedded message type is well-known and has a custom JSON - a decrease in the exchange rate, allowing correct calculation of future + representation, that representation will be embedded adding a + field - undelegations without iterating over delegators. When coins are delegated - to + `value` which holds the custom JSON in addition to the `@type` - this validator, the validator is credited with a delegation whose number - of + field. Example (for message [google.protobuf.Duration][]): - bond shares is based on the amount of coins delegated divided by the - current + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + msg_responses contains the Msg handler responses type packed in + Anys. - exchange rate. Voting power can be calculated as total bonded shares - multiplied by exchange rate. - cosmos.base.abci.v1beta1.ABCIMessageLog: + Since: cosmos-sdk 0.46 + description: |- + SimulateResponse is the response type for the + Service.SimulateRPC method. + cosmos.tx.v1beta1.Tip: type: object properties: - msg_index: - type: integer - format: int64 - log: - type: string - events: + amount: type: array items: type: object properties: - type: + denom: + type: string + amount: type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - description: >- - Attribute defines an attribute wrapper where the key and value - are - - strings instead of raw bytes. description: |- - StringEvent defines en Event object wrapper where all the attributes - contain key/value pairs that are strings instead of raw bytes. - description: |- - Events contains a slice of Event objects that were emitted during some - execution. - description: >- - ABCIMessageLog defines a structure containing an indexed tx ABCI message - log. - cosmos.base.abci.v1beta1.Attribute: - type: object - properties: - key: - type: string - value: + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + title: amount is the amount of the tip + tipper: type: string + title: tipper is the address of the account paying for the tip description: |- - Attribute defines an attribute wrapper where the key and value are - strings instead of raw bytes. - cosmos.base.abci.v1beta1.GasInfo: - type: object - properties: - gas_wanted: - type: string - format: uint64 - description: GasWanted is the maximum units of work we allow this tx to perform. - gas_used: - type: string - format: uint64 - description: GasUsed is the amount of gas actually consumed. - description: GasInfo defines tx execution gas context. - cosmos.base.abci.v1beta1.Result: + Tip is the tip used for meta-transactions. + + Since: cosmos-sdk 0.46 + cosmos.tx.v1beta1.Tx: type: object properties: - data: - type: string - format: byte - description: >- - Data is any data returned from message or handler execution. It MUST - be + body: + title: body is the processable content of the transaction + type: object + properties: + messages: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - length prefixed in order to separate data from multiple message - executions. + protocol buffer message. This string must contain at least - Deprecated. This field is still populated, but prefer msg_response - instead + one "/" character. The last segment of the URL's path must + represent - because it also contains the Msg response typeURL. - log: - type: string - description: Log contains the log information from message or handler execution. - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: >- - EventAttribute is a single key-value pair, associated with an - event. - description: >- - Event allows application developers to attach additional information - to + the fully qualified name of the type (as in - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + `path/google.protobuf.Duration`). The name should be in a + canonical form - Later, transactions may be queried using these events. - description: >- - Events contains a slice of Event objects that were emitted during - message + (e.g., leading "." is not accepted). - or handler execution. - msg_responses: - type: array - items: - type: object - properties: - type_url: - type: string + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. description: >- - A URL/resource name that uniquely identifies the type of the - serialized + `Any` contains an arbitrary serialized protocol buffer message + along with a - protocol buffer message. This string must contain at least + URL that describes the type of the serialized message. - one "/" character. The last segment of the URL's path must - represent - the fully qualified name of the type (as in + Protobuf library provides support to pack/unpack Any values in + the form - `path/google.protobuf.Duration`). The name should be in a - canonical form + of utility functions or additional generated methods of the Any + type. - (e.g., leading "." is not accepted). + Example 1: Pack and unpack a message in C++. - In practice, teams usually precompile into the binary all types - that they + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - expect it to use in the context of Any. However, for URLs which - use the + Example 2: Pack and unpack a message in Java. - scheme `http`, `https`, or no scheme, one can optionally set up - a type + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - server that maps type URLs to message definitions as follows: + Example 3: Pack and unpack a message in Python. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - * If no scheme is provided, `https` is assumed. + Example 4: Pack and unpack a message in Go - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - Note: this functionality is not currently available in the - official + The pack methods provided by protobuf library will by default + use - protobuf release, and it is not used for type URLs beginning - with + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - type.googleapis.com. + methods only use the fully qualified type name after the last + '/' + in the type URL, for example "foo.bar.com/x/y.z" will yield type - Schemes other than `http`, `https` (or the empty scheme) might - be + name "y.z". - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - URL that describes the type of the serialized message. + JSON - Protobuf library provides support to pack/unpack Any values in the - form + ==== - of utility functions or additional generated methods of the Any - type. + The JSON representation of an `Any` value uses the regular + representation of the deserialized, embedded message, with an - Example 1: Pack and unpack a message in C++. + additional field `@type` which contains the type URL. Example: - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - Example 2: Pack and unpack a message in Java. + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + If the embedded message type is well-known and has a custom JSON - Example 3: Pack and unpack a message in Python. + representation, that representation will be embedded adding a + field - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + `value` which holds the custom JSON in addition to the `@type` - Example 4: Pack and unpack a message in Go + field. Example (for message [google.protobuf.Duration][]): - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + messages is a list of messages to be executed. The required + signers of - The pack methods provided by protobuf library will by default use + those messages define the number and order of elements in + AuthInfo's - 'type.googleapis.com/full.type.name' as the type URL and the unpack + signer_infos and Tx's signatures. Each required signer address is + added to - methods only use the fully qualified type name after the last '/' + the list only the first time it occurs. + + By convention, the first required signer (usually from the first + message) + + is referred to as the primary signer and pays the fee for the + whole + + transaction. + memo: + type: string + description: >- + memo is any arbitrary note/comment to be added to the transaction. + + WARNING: in clients, any publicly exposed text should not be + called memo, + + but should be called `note` instead (see + https://github.com/cosmos/cosmos-sdk/issues/9122). + timeout_height: + type: string + format: uint64 + title: |- + timeout is the block height after which this transaction will not + be processed by the chain + extension_options: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - in the type URL, for example "foo.bar.com/x/y.z" will yield type + protocol buffer message. This string must contain at least - name "y.z". + one "/" character. The last segment of the URL's path must + represent + the fully qualified name of the type (as in + `path/google.protobuf.Duration`). The name should be in a + canonical form - JSON + (e.g., leading "." is not accepted). - ==== - The JSON representation of an `Any` value uses the regular + In practice, teams usually precompile into the binary all + types that they - representation of the deserialized, embedded message, with an + expect it to use in the context of Any. However, for URLs + which use the - additional field `@type` which contains the type URL. Example: + scheme `http`, `https`, or no scheme, one can optionally set + up a type - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + server that maps type URLs to message definitions as + follows: - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - If the embedded message type is well-known and has a custom JSON + * If no scheme is provided, `https` is assumed. - representation, that representation will be embedded adding a field + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - `value` which holds the custom JSON in addition to the `@type` + Note: this functionality is not currently available in the + official - field. Example (for message [google.protobuf.Duration][]): + protobuf release, and it is not used for type URLs beginning + with - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - description: |- - msg_responses contains the Msg handler responses type packed in Anys. + type.googleapis.com. - Since: cosmos-sdk 0.46 - description: Result is the union of ResponseFormat and ResponseCheckTx. - cosmos.base.abci.v1beta1.StringEvent: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - description: |- - Attribute defines an attribute wrapper where the key and value are - strings instead of raw bytes. - description: |- - StringEvent defines en Event object wrapper where all the attributes - contain key/value pairs that are strings instead of raw bytes. - cosmos.base.abci.v1beta1.TxResponse: - type: object - properties: - height: - type: string - format: int64 - title: The block height - txhash: - type: string - description: The transaction hash. - codespace: - type: string - title: Namespace for the Code - code: - type: integer - format: int64 - description: Response code. - data: - type: string - description: Result bytes, if any. - raw_log: - type: string - description: |- - The output of the application's logger (raw string). May be - non-deterministic. - logs: - type: array - items: - type: object - properties: - msg_index: - type: integer - format: int64 - log: - type: string - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - description: >- - Attribute defines an attribute wrapper where the key and - value are - strings instead of raw bytes. - description: >- - StringEvent defines en Event object wrapper where all the - attributes + Schemes other than `http`, `https` (or the empty scheme) + might be - contain key/value pairs that are strings instead of raw bytes. + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. description: >- - Events contains a slice of Event objects that were emitted - during some - - execution. - description: >- - ABCIMessageLog defines a structure containing an indexed tx ABCI - message log. - description: >- - The output of the application's logger (typed). May be - non-deterministic. - info: - type: string - description: Additional information. May be non-deterministic. - gas_wanted: - type: string - format: int64 - description: Amount of gas requested for transaction. - gas_used: - type: string - format: int64 - description: Amount of gas consumed by transaction. - tx: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in + `Any` contains an arbitrary serialized protocol buffer message + along with a - `path/google.protobuf.Duration`). The name should be in a - canonical form + URL that describes the type of the serialized message. - (e.g., leading "." is not accepted). + Protobuf library provides support to pack/unpack Any values in + the form - In practice, teams usually precompile into the binary all types - that they + of utility functions or additional generated methods of the Any + type. - expect it to use in the context of Any. However, for URLs which - use the - scheme `http`, `https`, or no scheme, one can optionally set up a - type + Example 1: Pack and unpack a message in C++. - server that maps type URLs to message definitions as follows: + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + Example 2: Pack and unpack a message in Java. - * If no scheme is provided, `https` is assumed. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + Example 3: Pack and unpack a message in Python. - Note: this functionality is not currently available in the - official + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - protobuf release, and it is not used for type URLs beginning with + Example 4: Pack and unpack a message in Go - type.googleapis.com. + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + The pack methods provided by protobuf library will by default + use - Schemes other than `http`, `https` (or the empty scheme) might be + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a + methods only use the fully qualified type name after the last + '/' - URL that describes the type of the serialized message. + in the type URL, for example "foo.bar.com/x/y.z" will yield type + name "y.z". - Protobuf library provides support to pack/unpack Any values in the - form - of utility functions or additional generated methods of the Any type. + JSON - Example 1: Pack and unpack a message in C++. + ==== - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + The JSON representation of an `Any` value uses the regular - Example 2: Pack and unpack a message in Java. + representation of the deserialized, embedded message, with an - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + additional field `@type` which contains the type URL. Example: - Example 3: Pack and unpack a message in Python. + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - Example 4: Pack and unpack a message in Go + If the embedded message type is well-known and has a custom JSON - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + representation, that representation will be embedded adding a + field - The pack methods provided by protobuf library will by default use + `value` which holds the custom JSON in addition to the `@type` - 'type.googleapis.com/full.type.name' as the type URL and the unpack + field. Example (for message [google.protobuf.Duration][]): - methods only use the fully qualified type name after the last '/' + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: >- + extension_options are arbitrary options that can be added by + chains - in the type URL, for example "foo.bar.com/x/y.z" will yield type + when the default options are not sufficient. If any of these are + present - name "y.z". + and can't be handled, the transaction will be rejected + non_critical_extension_options: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + protocol buffer message. This string must contain at least + one "/" character. The last segment of the URL's path must + represent - JSON + the fully qualified name of the type (as in - ==== + `path/google.protobuf.Duration`). The name should be in a + canonical form - The JSON representation of an `Any` value uses the regular + (e.g., leading "." is not accepted). - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + In practice, teams usually precompile into the binary all + types that they - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + expect it to use in the context of Any. However, for URLs + which use the - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + scheme `http`, `https`, or no scheme, one can optionally set + up a type - If the embedded message type is well-known and has a custom JSON + server that maps type URLs to message definitions as + follows: - representation, that representation will be embedded adding a field - `value` which holds the custom JSON in addition to the `@type` + * If no scheme is provided, `https` is assumed. - field. Example (for message [google.protobuf.Duration][]): + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - timestamp: - type: string - description: >- - Time of the previous block. For heights > 1, it's the weighted median - of + Note: this functionality is not currently available in the + official - the timestamps of the valid votes in the block.LastCommit. For height - == 1, + protobuf release, and it is not used for type URLs beginning + with - it's genesis time. - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: >- - EventAttribute is a single key-value pair, associated with an - event. - description: >- - Event allows application developers to attach additional information - to + type.googleapis.com. - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. - Later, transactions may be queried using these events. - description: >- - Events defines all the events emitted by processing a transaction. - Note, + Schemes other than `http`, `https` (or the empty scheme) + might be - these events include those emitted by processing all the messages and - those + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - emitted from the ante. Whereas Logs contains the events, with + URL that describes the type of the serialized message. - additional metadata, emitted only by processing the messages. + Protobuf library provides support to pack/unpack Any values in + the form - Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 - description: >- - TxResponse defines a structure containing relevant tx data and metadata. - The + of utility functions or additional generated methods of the Any + type. - tags are stringified and the log is JSON decoded. - cosmos.crypto.multisig.v1beta1.CompactBitArray: - type: object - properties: - extra_bits_stored: - type: integer - format: int64 - elems: - type: string - format: byte - description: |- - CompactBitArray is an implementation of a space efficient bit array. - This is used to ensure that the encoded data takes up a minimal amount of - space after proto encoding. - This is not thread safe, and is not intended for concurrent usage. - cosmos.tx.signing.v1beta1.SignMode: - type: string - enum: - - SIGN_MODE_UNSPECIFIED - - SIGN_MODE_DIRECT - - SIGN_MODE_TEXTUAL - - SIGN_MODE_DIRECT_AUX - - SIGN_MODE_LEGACY_AMINO_JSON - - SIGN_MODE_EIP_191 - default: SIGN_MODE_UNSPECIFIED - description: |- - SignMode represents a signing mode with its own security guarantees. - This enum should be considered a registry of all known sign modes - in the Cosmos ecosystem. Apps are not expected to support all known - sign modes. Apps that would like to support custom sign modes are - encouraged to open a small PR against this file to add a new case - to this SignMode enum describing their sign mode so that different - apps have a consistent version of this enum. + Example 1: Pack and unpack a message in C++. - - SIGN_MODE_UNSPECIFIED: SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be - rejected. - - SIGN_MODE_DIRECT: SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is - verified with raw bytes from Tx. - - SIGN_MODE_TEXTUAL: SIGN_MODE_TEXTUAL is a future signing mode that will verify some - human-readable textual representation on top of the binary representation - from SIGN_MODE_DIRECT. It is currently not supported. - - SIGN_MODE_DIRECT_AUX: SIGN_MODE_DIRECT_AUX specifies a signing mode which uses - SignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode does not - require signers signing over other signers' `signer_info`. It also allows - for adding Tips in transactions. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Since: cosmos-sdk 0.46 - - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses - Amino JSON and will be removed in the future. - - SIGN_MODE_EIP_191: SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos - SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 + Example 2: Pack and unpack a message in Java. - Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, - but is not implemented on the SDK by default. To enable EIP-191, you need - to pass a custom `TxConfig` that has an implementation of - `SignModeHandler` for EIP-191. The SDK may decide to fully support - EIP-191 in the future. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - Since: cosmos-sdk 0.45.2 - cosmos.tx.v1beta1.AuthInfo: - type: object - properties: - signer_infos: - type: array - items: - $ref: '#/definitions/cosmos.tx.v1beta1.SignerInfo' - description: >- - signer_infos defines the signing modes for the required signers. The - number + Example 3: Pack and unpack a message in Python. - and order of elements must match the required signers from TxBody's + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - messages. The first element is the primary signer and the one which - pays + Example 4: Pack and unpack a message in Go - the fee. - fee: - description: >- - Fee is the fee and gas limit for the transaction. The first signer is - the + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - primary signer and the one which pays the fee. The fee can be - calculated + The pack methods provided by protobuf library will by default + use - based on the cost of evaluating the body and doing signature - verification + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - of the signers. This can be estimated via simulation. - type: object - properties: - amount: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + methods only use the fully qualified type name after the last + '/' + in the type URL, for example "foo.bar.com/x/y.z" will yield type - NOTE: The amount field is an Int which implements the custom - method + name "y.z". - signatures required by gogoproto. - title: amount is the amount of coins to be paid as a fee - gas_limit: - type: string - format: uint64 - title: >- - gas_limit is the maximum gas that can be used in transaction - processing - before an out of gas error occurs - payer: - type: string - description: >- - if unset, the first signer is responsible for paying the fees. If - set, the specified account must pay the fees. - the payer must be a tx signer (and thus have signed this field in - AuthInfo). + JSON - setting this field does *not* change the ordering of required - signers for the transaction. - granter: - type: string - title: >- - if set, the fee payer (either the first signer or the value of the - payer field) requests that a fee grant be used + ==== - to pay fees instead of the fee payer's own balance. If an - appropriate fee grant does not exist or the chain does + The JSON representation of an `Any` value uses the regular - not support fee grants, this will fail - tip: - description: >- - Tip is the optional tip used for transactions fees paid in another - denom. + representation of the deserialized, embedded message, with an + additional field `@type` which contains the type URL. Example: - This field is ignored if the chain didn't enable tips, i.e. didn't add - the + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - `TipDecorator` in its posthandler. + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + If the embedded message type is well-known and has a custom JSON - Since: cosmos-sdk 0.46 - type: object - properties: - amount: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + representation, that representation will be embedded adding a + field + `value` which holds the custom JSON in addition to the `@type` - NOTE: The amount field is an Int which implements the custom - method + field. Example (for message [google.protobuf.Duration][]): - signatures required by gogoproto. - title: amount is the amount of the tip - tipper: - type: string - title: tipper is the address of the account paying for the tip - description: |- - AuthInfo describes the fee and signer modes that are used to sign a - transaction. - cosmos.tx.v1beta1.BroadcastMode: - type: string - enum: - - BROADCAST_MODE_UNSPECIFIED - - BROADCAST_MODE_BLOCK - - BROADCAST_MODE_SYNC - - BROADCAST_MODE_ASYNC - default: BROADCAST_MODE_UNSPECIFIED - description: >- - BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC - method. + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: >- + extension_options are arbitrary options that can be added by + chains - - BROADCAST_MODE_UNSPECIFIED: zero-value for mode ordering - - BROADCAST_MODE_BLOCK: BROADCAST_MODE_BLOCK defines a tx broadcasting mode where the client waits for - the tx to be committed in a block. - - BROADCAST_MODE_SYNC: BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for - a CheckTx execution response only. - - BROADCAST_MODE_ASYNC: BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns - immediately. - cosmos.tx.v1beta1.BroadcastTxRequest: - type: object - properties: - tx_bytes: - type: string - format: byte - description: tx_bytes is the raw transaction. - mode: - type: string - enum: - - BROADCAST_MODE_UNSPECIFIED - - BROADCAST_MODE_BLOCK - - BROADCAST_MODE_SYNC - - BROADCAST_MODE_ASYNC - default: BROADCAST_MODE_UNSPECIFIED + when the default options are not sufficient. If any of these are + present + + and can't be handled, they will be ignored + description: TxBody is the body of a transaction that all signers sign over. + auth_info: + $ref: '#/definitions/cosmos.tx.v1beta1.AuthInfo' + title: |- + auth_info is the authorization related content of the transaction, + specifically signers, signer modes and fee + signatures: + type: array + items: + type: string + format: byte description: >- - BroadcastMode specifies the broadcast mode for the TxService.Broadcast - RPC method. + signatures is a list of signatures that matches the length and order + of - - BROADCAST_MODE_UNSPECIFIED: zero-value for mode ordering - - BROADCAST_MODE_BLOCK: BROADCAST_MODE_BLOCK defines a tx broadcasting mode where the client waits for - the tx to be committed in a block. - - BROADCAST_MODE_SYNC: BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for - a CheckTx execution response only. - - BROADCAST_MODE_ASYNC: BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns - immediately. - description: |- - BroadcastTxRequest is the request type for the Service.BroadcastTxRequest - RPC method. - cosmos.tx.v1beta1.BroadcastTxResponse: + AuthInfo's signer_infos to allow connecting signature meta information + like + + public key and signing mode by position. + description: Tx is the standard type used for broadcasting transactions. + cosmos.tx.v1beta1.TxBody: type: object properties: - tx_response: - type: object - properties: - height: - type: string - format: int64 - title: The block height - txhash: - type: string - description: The transaction hash. - codespace: - type: string - title: Namespace for the Code - code: - type: integer - format: int64 - description: Response code. - data: - type: string - description: Result bytes, if any. - raw_log: - type: string - description: |- - The output of the application's logger (raw string). May be - non-deterministic. - logs: - type: array - items: - type: object - properties: - msg_index: - type: integer - format: int64 - log: - type: string - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - description: >- - Attribute defines an attribute wrapper where the key - and value are - - strings instead of raw bytes. - description: >- - StringEvent defines en Event object wrapper where all the - attributes - - contain key/value pairs that are strings instead of raw - bytes. - description: >- - Events contains a slice of Event objects that were emitted - during some - - execution. + messages: + type: array + items: + type: object + properties: + type_url: + type: string description: >- - ABCIMessageLog defines a structure containing an indexed tx ABCI - message log. - description: >- - The output of the application's logger (typed). May be - non-deterministic. - info: - type: string - description: Additional information. May be non-deterministic. - gas_wanted: - type: string - format: int64 - description: Amount of gas requested for transaction. - gas_used: - type: string - format: int64 - description: Amount of gas consumed by transaction. - tx: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + A URL/resource name that uniquely identifies the type of the + serialized - protocol buffer message. This string must contain at least + protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + one "/" character. The last segment of the URL's path must + represent - the fully qualified name of the type (as in + the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + `path/google.protobuf.Duration`). The name should be in a + canonical form - (e.g., leading "." is not accepted). + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all - types that they + In practice, teams usually precompile into the binary all types + that they - expect it to use in the context of Any. However, for URLs - which use the + expect it to use in the context of Any. However, for URLs which + use the - scheme `http`, `https`, or no scheme, one can optionally set - up a type + scheme `http`, `https`, or no scheme, one can optionally set up + a type - server that maps type URLs to message definitions as follows: + server that maps type URLs to message definitions as follows: - * If no scheme is provided, `https` is assumed. + * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - Note: this functionality is not currently available in the - official + Note: this functionality is not currently available in the + official - protobuf release, and it is not used for type URLs beginning - with + protobuf release, and it is not used for type URLs beginning + with - type.googleapis.com. + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) might - be + Schemes other than `http`, `https` (or the empty scheme) might + be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a - URL that describes the type of the serialized message. + URL that describes the type of the serialized message. - Protobuf library provides support to pack/unpack Any values in the - form + Protobuf library provides support to pack/unpack Any values in the + form - of utility functions or additional generated methods of the Any - type. + of utility functions or additional generated methods of the Any + type. - Example 1: Pack and unpack a message in C++. + Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { ... - if (any.UnpackTo(&foo)) { - ... - } + } - Example 2: Pack and unpack a message in Java. + Example 2: Pack and unpack a message in Java. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + } - The pack methods provided by protobuf library will by default use + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - methods only use the fully qualified type name after the last '/' + If the embedded message type is well-known and has a custom JSON - in the type URL, for example "foo.bar.com/x/y.z" will yield type + representation, that representation will be embedded adding a field - name "y.z". + `value` which holds the custom JSON in addition to the `@type` + field. Example (for message [google.protobuf.Duration][]): + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + messages is a list of messages to be executed. The required signers of - JSON + those messages define the number and order of elements in AuthInfo's - ==== + signer_infos and Tx's signatures. Each required signer address is + added to - The JSON representation of an `Any` value uses the regular + the list only the first time it occurs. - representation of the deserialized, embedded message, with an + By convention, the first required signer (usually from the first + message) - additional field `@type` which contains the type URL. Example: + is referred to as the primary signer and pays the fee for the whole - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + transaction. + memo: + type: string + description: >- + memo is any arbitrary note/comment to be added to the transaction. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + WARNING: in clients, any publicly exposed text should not be called + memo, - If the embedded message type is well-known and has a custom JSON + but should be called `note` instead (see + https://github.com/cosmos/cosmos-sdk/issues/9122). + timeout_height: + type: string + format: uint64 + title: |- + timeout is the block height after which this transaction will not + be processed by the chain + extension_options: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - representation, that representation will be embedded adding a - field + protocol buffer message. This string must contain at least - `value` which holds the custom JSON in addition to the `@type` + one "/" character. The last segment of the URL's path must + represent - field. Example (for message [google.protobuf.Duration][]): + the fully qualified name of the type (as in - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - timestamp: - type: string - description: >- - Time of the previous block. For heights > 1, it's the weighted - median of + `path/google.protobuf.Duration`). The name should be in a + canonical form - the timestamps of the valid votes in the block.LastCommit. For - height == 1, + (e.g., leading "." is not accepted). - it's genesis time. - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: >- - EventAttribute is a single key-value pair, associated with - an event. - description: >- - Event allows application developers to attach additional - information to - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + In practice, teams usually precompile into the binary all types + that they - Later, transactions may be queried using these events. - description: >- - Events defines all the events emitted by processing a transaction. - Note, + expect it to use in the context of Any. However, for URLs which + use the - these events include those emitted by processing all the messages - and those + scheme `http`, `https`, or no scheme, one can optionally set up + a type - emitted from the ante. Whereas Logs contains the events, with + server that maps type URLs to message definitions as follows: - additional metadata, emitted only by processing the messages. + * If no scheme is provided, `https` is assumed. - Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 - description: >- - TxResponse defines a structure containing relevant tx data and - metadata. The + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - tags are stringified and the log is JSON decoded. - description: |- - BroadcastTxResponse is the response type for the - Service.BroadcastTx method. - cosmos.tx.v1beta1.Fee: - type: object - properties: - amount: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - Coin defines a token with a denomination and an amount. + Note: this functionality is not currently available in the + official - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - title: amount is the amount of coins to be paid as a fee - gas_limit: - type: string - format: uint64 - title: >- - gas_limit is the maximum gas that can be used in transaction - processing + protobuf release, and it is not used for type URLs beginning + with - before an out of gas error occurs - payer: - type: string - description: >- - if unset, the first signer is responsible for paying the fees. If set, - the specified account must pay the fees. + type.googleapis.com. - the payer must be a tx signer (and thus have signed this field in - AuthInfo). - setting this field does *not* change the ordering of required signers - for the transaction. - granter: - type: string - title: >- - if set, the fee payer (either the first signer or the value of the - payer field) requests that a fee grant be used + Schemes other than `http`, `https` (or the empty scheme) might + be - to pay fees instead of the fee payer's own balance. If an appropriate - fee grant does not exist or the chain does + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a - not support fee grants, this will fail - description: >- - Fee includes the amount of coins paid in fees and the maximum + URL that describes the type of the serialized message. - gas to be used by the transaction. The ratio yields an effective - "gasprice", - which must be above some miminum to be accepted into the mempool. - cosmos.tx.v1beta1.GetBlockWithTxsResponse: - type: object - properties: - txs: - type: array - items: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' - description: txs are the transactions in the block. - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - block: - type: object - properties: - header: - type: object - properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules for processing a block - in the blockchain, + Protobuf library provides support to pack/unpack Any values in the + form - including all blockchain data structures and the rules of the - application's + of utility functions or additional generated methods of the Any + type. - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: hashes from the app output from the prev block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: Header defines the structure of a block header. - data: - type: object - properties: - txs: - type: array - items: - type: string - format: byte - description: >- - Txs that will be applied by state @ block.Height+1. - NOTE: not all txs here are valid. We're just agreeing on the - order first. + Example 1: Pack and unpack a message in C++. - This means that block.AppHash does not include these txs. - title: Data contains the set of transactions included in the block - evidence: - type: object - properties: - evidence: - type: array - items: - type: object - properties: - duplicate_vote_evidence: - type: object - properties: - vote_a: - type: object - properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: >- - SignedMsgType is a type of signed message in the - consensus. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote - from validators for + Example 2: Pack and unpack a message in Java. - consensus. - vote_b: - type: object - properties: - type: - type: string - enum: - - SIGNED_MSG_TYPE_UNKNOWN - - SIGNED_MSG_TYPE_PREVOTE - - SIGNED_MSG_TYPE_PRECOMMIT - - SIGNED_MSG_TYPE_PROPOSAL - default: SIGNED_MSG_TYPE_UNKNOWN - description: >- - SignedMsgType is a type of signed message in the - consensus. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - - SIGNED_MSG_TYPE_PREVOTE: Votes - - SIGNED_MSG_TYPE_PROPOSAL: Proposals - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - timestamp: - type: string - format: date-time - validator_address: - type: string - format: byte - validator_index: - type: integer - format: int32 - signature: - type: string - format: byte - description: >- - Vote represents a prevote, precommit, or commit vote - from validators for + Example 3: Pack and unpack a message in Python. - consensus. - total_voting_power: - type: string - format: int64 - validator_power: - type: string - format: int64 - timestamp: - type: string - format: date-time - description: >- - DuplicateVoteEvidence contains evidence of a validator - signed two conflicting votes. - light_client_attack_evidence: - type: object - properties: - conflicting_block: - type: object - properties: - signed_header: - type: object - properties: - header: - type: object - properties: - version: - title: basic block info - type: object - properties: - block: - type: string - format: uint64 - app: - type: string - format: uint64 - description: >- - Consensus captures the consensus rules - for processing a block in the - blockchain, + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - including all blockchain data structures - and the rules of the application's + Example 4: Pack and unpack a message in Go - state transition machine. - chain_id: - type: string - height: - type: string - format: int64 - time: - type: string - format: date-time - last_block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - last_commit_hash: - type: string - format: byte - title: hashes of block data - data_hash: - type: string - format: byte - validators_hash: - type: string - format: byte - title: >- - hashes from the app output from the prev - block - next_validators_hash: - type: string - format: byte - consensus_hash: - type: string - format: byte - app_hash: - type: string - format: byte - last_results_hash: - type: string - format: byte - evidence_hash: - type: string - format: byte - title: consensus info - proposer_address: - type: string - format: byte - description: >- - Header defines the structure of a block - header. - commit: - type: object - properties: - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: - type: array - items: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: >- - BlockIdFlag indicates which BlcokID the - signature is for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: >- - CommitSig is a part of the Vote included - in a Commit. - description: >- - Commit contains the evidence that a block - was committed by a set of validators. - validator_set: - type: object - properties: - validators: - type: array - items: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for - use with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - proposer: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for - use with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: - type: string - format: int64 - common_height: - type: string - format: int64 - byzantine_validators: - type: array - items: - type: object - properties: - address: - type: string - format: byte - pub_key: - type: object - properties: - ed25519: - type: string - format: byte - secp256k1: - type: string - format: byte - title: >- - PublicKey defines the keys available for use - with Validators - voting_power: - type: string - format: int64 - proposer_priority: - type: string - format: int64 - total_voting_power: - type: string - format: int64 - timestamp: - type: string - format: date-time - description: >- - LightClientAttackEvidence contains evidence of a set of - validators attempting to mislead a light client. - last_commit: - type: object - properties: - height: - type: string - format: int64 - round: - type: integer - format: int32 - block_id: - type: object - properties: - hash: - type: string - format: byte - part_set_header: - type: object - properties: - total: - type: integer - format: int64 - hash: - type: string - format: byte - title: PartsetHeader - title: BlockID - signatures: - type: array - items: - type: object - properties: - block_id_flag: - type: string - enum: - - BLOCK_ID_FLAG_UNKNOWN - - BLOCK_ID_FLAG_ABSENT - - BLOCK_ID_FLAG_COMMIT - - BLOCK_ID_FLAG_NIL - default: BLOCK_ID_FLAG_UNKNOWN - title: BlockIdFlag indicates which BlcokID the signature is for - validator_address: - type: string - format: byte - timestamp: - type: string - format: date-time - signature: - type: string - format: byte - description: CommitSig is a part of the Vote included in a Commit. - description: >- - Commit contains the evidence that a block was committed by a set - of validators. - pagination: - description: pagination defines a pagination for the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - was set, its value is undefined otherwise - description: >- - GetBlockWithTxsResponse is the response type for the - Service.GetBlockWithTxs method. + The pack methods provided by protobuf library will by default use + 'type.googleapis.com/full.type.name' as the type URL and the unpack - Since: cosmos-sdk 0.45.2 - cosmos.tx.v1beta1.GetTxResponse: - type: object - properties: - tx: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' - description: tx is the queried transaction. - tx_response: - type: object - properties: - height: - type: string - format: int64 - title: The block height - txhash: - type: string - description: The transaction hash. - codespace: - type: string - title: Namespace for the Code - code: - type: integer - format: int64 - description: Response code. - data: - type: string - description: Result bytes, if any. - raw_log: - type: string - description: |- - The output of the application's logger (raw string). May be - non-deterministic. - logs: - type: array - items: - type: object - properties: - msg_index: - type: integer - format: int64 - log: - type: string - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - description: >- - Attribute defines an attribute wrapper where the key - and value are + methods only use the fully qualified type name after the last '/' - strings instead of raw bytes. - description: >- - StringEvent defines en Event object wrapper where all the - attributes + in the type URL, for example "foo.bar.com/x/y.z" will yield type - contain key/value pairs that are strings instead of raw - bytes. - description: >- - Events contains a slice of Event objects that were emitted - during some + name "y.z". - execution. + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: >- + extension_options are arbitrary options that can be added by chains + + when the default options are not sufficient. If any of these are + present + + and can't be handled, the transaction will be rejected + non_critical_extension_options: + type: array + items: + type: object + properties: + type_url: + type: string description: >- - ABCIMessageLog defines a structure containing an indexed tx ABCI - message log. - description: >- - The output of the application's logger (typed). May be - non-deterministic. - info: - type: string - description: Additional information. May be non-deterministic. - gas_wanted: - type: string - format: int64 - description: Amount of gas requested for transaction. - gas_used: - type: string - format: int64 - description: Amount of gas consumed by transaction. - tx: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + A URL/resource name that uniquely identifies the type of the + serialized - protocol buffer message. This string must contain at least + protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + one "/" character. The last segment of the URL's path must + represent - the fully qualified name of the type (as in + the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + `path/google.protobuf.Duration`). The name should be in a + canonical form - (e.g., leading "." is not accepted). + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all - types that they + In practice, teams usually precompile into the binary all types + that they - expect it to use in the context of Any. However, for URLs - which use the + expect it to use in the context of Any. However, for URLs which + use the - scheme `http`, `https`, or no scheme, one can optionally set - up a type + scheme `http`, `https`, or no scheme, one can optionally set up + a type - server that maps type URLs to message definitions as follows: + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + URL that describes the type of the serialized message. - * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + Protobuf library provides support to pack/unpack Any values in the + form - Note: this functionality is not currently available in the - official + of utility functions or additional generated methods of the Any + type. - protobuf release, and it is not used for type URLs beginning - with - type.googleapis.com. + Example 1: Pack and unpack a message in C++. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Schemes other than `http`, `https` (or the empty scheme) might - be + Example 2: Pack and unpack a message in Java. - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - URL that describes the type of the serialized message. + Example 3: Pack and unpack a message in Python. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - Protobuf library provides support to pack/unpack Any values in the - form + Example 4: Pack and unpack a message in Go - of utility functions or additional generated methods of the Any - type. + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + The pack methods provided by protobuf library will by default use - Example 1: Pack and unpack a message in C++. + 'type.googleapis.com/full.type.name' as the type URL and the unpack - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + methods only use the fully qualified type name after the last '/' - Example 2: Pack and unpack a message in Java. + in the type URL, for example "foo.bar.com/x/y.z" will yield type - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + name "y.z". - Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - Example 4: Pack and unpack a message in Go + JSON - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + ==== - The pack methods provided by protobuf library will by default use + The JSON representation of an `Any` value uses the regular - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + representation of the deserialized, embedded message, with an - methods only use the fully qualified type name after the last '/' + additional field `@type` which contains the type URL. Example: - in the type URL, for example "foo.bar.com/x/y.z" will yield type + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - name "y.z". + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + If the embedded message type is well-known and has a custom JSON + representation, that representation will be embedded adding a field - JSON + `value` which holds the custom JSON in addition to the `@type` - ==== + field. Example (for message [google.protobuf.Duration][]): - The JSON representation of an `Any` value uses the regular + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: >- + extension_options are arbitrary options that can be added by chains - representation of the deserialized, embedded message, with an + when the default options are not sufficient. If any of these are + present - additional field `@type` which contains the type URL. Example: + and can't be handled, they will be ignored + description: TxBody is the body of a transaction that all signers sign over. + tendermint.abci.Event: + type: object + properties: + type: + type: string + attributes: + type: array + items: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: EventAttribute is a single key-value pair, associated with an event. + description: >- + Event allows application developers to attach additional information to - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and + ResponseDeliverTx. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + Later, transactions may be queried using these events. + tendermint.abci.EventAttribute: + type: object + properties: + key: + type: string + format: byte + value: + type: string + format: byte + index: + type: boolean + description: EventAttribute is a single key-value pair, associated with an event. + cosmos.upgrade.v1beta1.ModuleVersion: + type: object + properties: + name: + type: string + title: name of the app module + version: + type: string + format: uint64 + title: consensus version of the app module + description: |- + ModuleVersion specifies a module and its consensus version. - If the embedded message type is well-known and has a custom JSON + Since: cosmos-sdk 0.43 + cosmos.upgrade.v1beta1.Plan: + type: object + properties: + name: + type: string + description: >- + Sets the name for the upgrade. This name will be used by the upgraded - representation, that representation will be embedded adding a - field + version of the software to apply any special "on-upgrade" commands + during - `value` which holds the custom JSON in addition to the `@type` + the first BeginBlock method after the upgrade is applied. It is also + used - field. Example (for message [google.protobuf.Duration][]): + to detect whether a software version can handle a given upgrade. If no - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - timestamp: - type: string - description: >- - Time of the previous block. For heights > 1, it's the weighted - median of + upgrade handler with this name has been set in the software, it will + be - the timestamps of the valid votes in the block.LastCommit. For - height == 1, + assumed that the software is out-of-date when the upgrade Time or + Height is - it's genesis time. - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: >- - EventAttribute is a single key-value pair, associated with - an event. - description: >- - Event allows application developers to attach additional - information to + reached and the software will exit. + time: + type: string + format: date-time + description: >- + Deprecated: Time based upgrades have been deprecated. Time based + upgrade logic - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + has been removed from the SDK. - Later, transactions may be queried using these events. + If this field is not empty, an error will be thrown. + height: + type: string + format: int64 + description: |- + The height at which the upgrade must be performed. + Only used if Time is not set. + info: + type: string + title: |- + Any application specific upgrade info to be included on-chain + such as a git commit that validators could automatically upgrade to + upgraded_client_state: + type: object + properties: + type_url: + type: string description: >- - Events defines all the events emitted by processing a transaction. - Note, + A URL/resource name that uniquely identifies the type of the + serialized - these events include those emitted by processing all the messages - and those + protocol buffer message. This string must contain at least - emitted from the ante. Whereas Logs contains the events, with + one "/" character. The last segment of the URL's path must + represent - additional metadata, emitted only by processing the messages. + the fully qualified name of the type (as in + `path/google.protobuf.Duration`). The name should be in a + canonical form - Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 - description: >- - TxResponse defines a structure containing relevant tx data and - metadata. The + (e.g., leading "." is not accepted). - tags are stringified and the log is JSON decoded. - description: GetTxResponse is the response type for the Service.GetTx method. - cosmos.tx.v1beta1.GetTxsEventResponse: - type: object - properties: - txs: - type: array - items: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' - description: txs is the list of queried transactions. - tx_responses: - type: array - items: - type: object - properties: - height: - type: string - format: int64 - title: The block height - txhash: - type: string - description: The transaction hash. - codespace: - type: string - title: Namespace for the Code - code: - type: integer - format: int64 - description: Response code. - data: - type: string - description: Result bytes, if any. - raw_log: - type: string - description: |- - The output of the application's logger (raw string). May be - non-deterministic. - logs: - type: array - items: - type: object - properties: - msg_index: - type: integer - format: int64 - log: - type: string - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - description: >- - Attribute defines an attribute wrapper where the - key and value are - strings instead of raw bytes. - description: >- - StringEvent defines en Event object wrapper where all - the attributes + In practice, teams usually precompile into the binary all types + that they - contain key/value pairs that are strings instead of raw - bytes. - description: >- - Events contains a slice of Event objects that were emitted - during some + expect it to use in the context of Any. However, for URLs which + use the - execution. - description: >- - ABCIMessageLog defines a structure containing an indexed tx - ABCI message log. - description: >- - The output of the application's logger (typed). May be - non-deterministic. - info: - type: string - description: Additional information. May be non-deterministic. - gas_wanted: - type: string - format: int64 - description: Amount of gas requested for transaction. - gas_used: - type: string - format: int64 - description: Amount of gas consumed by transaction. - tx: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + scheme `http`, `https`, or no scheme, one can optionally set up a + type - protocol buffer message. This string must contain at least + server that maps type URLs to message definitions as follows: - one "/" character. The last segment of the URL's path must - represent - the fully qualified name of the type (as in + * If no scheme is provided, `https` is assumed. - `path/google.protobuf.Duration`). The name should be in a - canonical form + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - (e.g., leading "." is not accepted). + Note: this functionality is not currently available in the + official + protobuf release, and it is not used for type URLs beginning with - In practice, teams usually precompile into the binary all - types that they + type.googleapis.com. - expect it to use in the context of Any. However, for URLs - which use the - scheme `http`, `https`, or no scheme, one can optionally set - up a type + Schemes other than `http`, `https` (or the empty scheme) might be - server that maps type URLs to message definitions as - follows: + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + URL that describes the type of the serialized message. - * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + Protobuf library provides support to pack/unpack Any values in the + form - Note: this functionality is not currently available in the - official + of utility functions or additional generated methods of the Any type. - protobuf release, and it is not used for type URLs beginning - with - type.googleapis.com. + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + Example 2: Pack and unpack a message in Java. - Schemes other than `http`, `https` (or the empty scheme) - might be + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + Example 3: Pack and unpack a message in Python. - URL that describes the type of the serialized message. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + Example 4: Pack and unpack a message in Go - Protobuf library provides support to pack/unpack Any values in - the form + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - of utility functions or additional generated methods of the Any - type. + The pack methods provided by protobuf library will by default use + 'type.googleapis.com/full.type.name' as the type URL and the unpack - Example 1: Pack and unpack a message in C++. + methods only use the fully qualified type name after the last '/' - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + in the type URL, for example "foo.bar.com/x/y.z" will yield type - Example 2: Pack and unpack a message in Java. + name "y.z". - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + JSON - Example 4: Pack and unpack a message in Go + ==== - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + The JSON representation of an `Any` value uses the regular - The pack methods provided by protobuf library will by default - use + representation of the deserialized, embedded message, with an - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + additional field `@type` which contains the type URL. Example: - methods only use the fully qualified type name after the last - '/' + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - in the type URL, for example "foo.bar.com/x/y.z" will yield type + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - name "y.z". + If the embedded message type is well-known and has a custom JSON + representation, that representation will be embedded adding a field + `value` which holds the custom JSON in addition to the `@type` - JSON + field. Example (for message [google.protobuf.Duration][]): - ==== + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + Plan specifies information about a planned upgrade and when it should + occur. + cosmos.upgrade.v1beta1.QueryAppliedPlanResponse: + type: object + properties: + height: + type: string + format: int64 + description: height is the block height at which the plan was applied. + description: >- + QueryAppliedPlanResponse is the response type for the Query/AppliedPlan + RPC - The JSON representation of an `Any` value uses the regular + method. + cosmos.upgrade.v1beta1.QueryAuthorityResponse: + type: object + properties: + address: + type: string + description: 'Since: cosmos-sdk 0.46' + title: QueryAuthorityResponse is the response type for Query/Authority + cosmos.upgrade.v1beta1.QueryCurrentPlanResponse: + type: object + properties: + plan: + description: plan is the current upgrade plan. + type: object + properties: + name: + type: string + description: >- + Sets the name for the upgrade. This name will be used by the + upgraded - representation of the deserialized, embedded message, with an + version of the software to apply any special "on-upgrade" commands + during - additional field `@type` which contains the type URL. Example: + the first BeginBlock method after the upgrade is applied. It is + also used - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + to detect whether a software version can handle a given upgrade. + If no - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + upgrade handler with this name has been set in the software, it + will be - If the embedded message type is well-known and has a custom JSON + assumed that the software is out-of-date when the upgrade Time or + Height is - representation, that representation will be embedded adding a - field + reached and the software will exit. + time: + type: string + format: date-time + description: >- + Deprecated: Time based upgrades have been deprecated. Time based + upgrade logic - `value` which holds the custom JSON in addition to the `@type` + has been removed from the SDK. - field. Example (for message [google.protobuf.Duration][]): + If this field is not empty, an error will be thrown. + height: + type: string + format: int64 + description: |- + The height at which the upgrade must be performed. + Only used if Time is not set. + info: + type: string + title: >- + Any application specific upgrade info to be included on-chain - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - timestamp: - type: string - description: >- - Time of the previous block. For heights > 1, it's the weighted - median of + such as a git commit that validators could automatically upgrade + to + upgraded_client_state: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - the timestamps of the valid votes in the block.LastCommit. For - height == 1, + protocol buffer message. This string must contain at least - it's genesis time. - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: >- - EventAttribute is a single key-value pair, associated - with an event. - description: >- - Event allows application developers to attach additional - information to + one "/" character. The last segment of the URL's path must + represent - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + the fully qualified name of the type (as in - Later, transactions may be queried using these events. - description: >- - Events defines all the events emitted by processing a - transaction. Note, + `path/google.protobuf.Duration`). The name should be in a + canonical form - these events include those emitted by processing all the - messages and those + (e.g., leading "." is not accepted). - emitted from the ante. Whereas Logs contains the events, with - additional metadata, emitted only by processing the messages. + In practice, teams usually precompile into the binary all + types that they + expect it to use in the context of Any. However, for URLs + which use the - Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 - description: >- - TxResponse defines a structure containing relevant tx data and - metadata. The + scheme `http`, `https`, or no scheme, one can optionally set + up a type - tags are stringified and the log is JSON decoded. - description: tx_responses is the list of queried TxResponses. - pagination: - description: |- - pagination defines a pagination for the response. - Deprecated post v0.46.x: use total instead. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + server that maps type URLs to message definitions as follows: - was set, its value is undefined otherwise - total: - type: string - format: uint64 - title: total is total number of results available - description: |- - GetTxsEventResponse is the response type for the Service.TxsByEvents - RPC method. - cosmos.tx.v1beta1.ModeInfo: - type: object - properties: - single: - title: single represents a single signer - type: object - properties: - mode: - title: mode is the signing mode of the single signer - type: string - enum: - - SIGN_MODE_UNSPECIFIED - - SIGN_MODE_DIRECT - - SIGN_MODE_TEXTUAL - - SIGN_MODE_DIRECT_AUX - - SIGN_MODE_LEGACY_AMINO_JSON - - SIGN_MODE_EIP_191 - default: SIGN_MODE_UNSPECIFIED - description: >- - SignMode represents a signing mode with its own security - guarantees. + * If no scheme is provided, `https` is assumed. - This enum should be considered a registry of all known sign modes + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - in the Cosmos ecosystem. Apps are not expected to support all - known + Note: this functionality is not currently available in the + official - sign modes. Apps that would like to support custom sign modes are + protobuf release, and it is not used for type URLs beginning + with - encouraged to open a small PR against this file to add a new case + type.googleapis.com. - to this SignMode enum describing their sign mode so that different - apps have a consistent version of this enum. + Schemes other than `http`, `https` (or the empty scheme) might + be - - SIGN_MODE_UNSPECIFIED: SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be - rejected. - - SIGN_MODE_DIRECT: SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is - verified with raw bytes from Tx. - - SIGN_MODE_TEXTUAL: SIGN_MODE_TEXTUAL is a future signing mode that will verify some - human-readable textual representation on top of the binary - representation + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - from SIGN_MODE_DIRECT. It is currently not supported. - - SIGN_MODE_DIRECT_AUX: SIGN_MODE_DIRECT_AUX specifies a signing mode which uses - SignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode - does not + URL that describes the type of the serialized message. - require signers signing over other signers' `signer_info`. It also - allows - for adding Tips in transactions. + Protobuf library provides support to pack/unpack Any values in the + form + of utility functions or additional generated methods of the Any + type. - Since: cosmos-sdk 0.46 - - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses - Amino JSON and will be removed in the future. - - SIGN_MODE_EIP_191: SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos - SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 + Example 1: Pack and unpack a message in C++. - Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum - variant, + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - but is not implemented on the SDK by default. To enable EIP-191, - you need + Example 2: Pack and unpack a message in Java. - to pass a custom `TxConfig` that has an implementation of + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - `SignModeHandler` for EIP-191. The SDK may decide to fully support + Example 3: Pack and unpack a message in Python. - EIP-191 in the future. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + Example 4: Pack and unpack a message in Go - Since: cosmos-sdk 0.45.2 - multi: - $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo.Multi' - title: multi represents a nested multisig signer - description: ModeInfo describes the signing mode of a single or nested multisig signer. - cosmos.tx.v1beta1.ModeInfo.Multi: - type: object - properties: - bitarray: - title: bitarray specifies which keys within the multisig are signing - type: object - properties: - extra_bits_stored: - type: integer - format: int64 - elems: - type: string - format: byte - description: >- - CompactBitArray is an implementation of a space efficient bit array. + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - This is used to ensure that the encoded data takes up a minimal amount - of + The pack methods provided by protobuf library will by default use - space after proto encoding. + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - This is not thread safe, and is not intended for concurrent usage. - mode_infos: - type: array - items: - $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo' - title: |- - mode_infos is the corresponding modes of the signers of the multisig - which could include nested multisig public keys - title: Multi is the mode info for a multisig public key - cosmos.tx.v1beta1.ModeInfo.Single: - type: object - properties: - mode: - title: mode is the signing mode of the single signer - type: string - enum: - - SIGN_MODE_UNSPECIFIED - - SIGN_MODE_DIRECT - - SIGN_MODE_TEXTUAL - - SIGN_MODE_DIRECT_AUX - - SIGN_MODE_LEGACY_AMINO_JSON - - SIGN_MODE_EIP_191 - default: SIGN_MODE_UNSPECIFIED - description: >- - SignMode represents a signing mode with its own security guarantees. + methods only use the fully qualified type name after the last '/' + in the type URL, for example "foo.bar.com/x/y.z" will yield type - This enum should be considered a registry of all known sign modes + name "y.z". - in the Cosmos ecosystem. Apps are not expected to support all known - sign modes. Apps that would like to support custom sign modes are - encouraged to open a small PR against this file to add a new case + JSON - to this SignMode enum describing their sign mode so that different + ==== - apps have a consistent version of this enum. + The JSON representation of an `Any` value uses the regular - - SIGN_MODE_UNSPECIFIED: SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be - rejected. - - SIGN_MODE_DIRECT: SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is - verified with raw bytes from Tx. - - SIGN_MODE_TEXTUAL: SIGN_MODE_TEXTUAL is a future signing mode that will verify some - human-readable textual representation on top of the binary - representation + representation of the deserialized, embedded message, with an - from SIGN_MODE_DIRECT. It is currently not supported. - - SIGN_MODE_DIRECT_AUX: SIGN_MODE_DIRECT_AUX specifies a signing mode which uses - SignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode does - not + additional field `@type` which contains the type URL. Example: - require signers signing over other signers' `signer_info`. It also - allows + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - for adding Tips in transactions. + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + If the embedded message type is well-known and has a custom JSON - Since: cosmos-sdk 0.46 - - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses - Amino JSON and will be removed in the future. - - SIGN_MODE_EIP_191: SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos - SDK. Ref: https://eips.ethereum.org/EIPS/eip-191 + representation, that representation will be embedded adding a + field + `value` which holds the custom JSON in addition to the `@type` - Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, + field. Example (for message [google.protobuf.Duration][]): - but is not implemented on the SDK by default. To enable EIP-191, you - need + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + QueryCurrentPlanResponse is the response type for the Query/CurrentPlan + RPC - to pass a custom `TxConfig` that has an implementation of + method. + cosmos.upgrade.v1beta1.QueryModuleVersionsResponse: + type: object + properties: + module_versions: + type: array + items: + type: object + properties: + name: + type: string + title: name of the app module + version: + type: string + format: uint64 + title: consensus version of the app module + description: |- + ModuleVersion specifies a module and its consensus version. - `SignModeHandler` for EIP-191. The SDK may decide to fully support + Since: cosmos-sdk 0.43 + description: >- + module_versions is a list of module names with their consensus + versions. + description: >- + QueryModuleVersionsResponse is the response type for the + Query/ModuleVersions - EIP-191 in the future. + RPC method. - Since: cosmos-sdk 0.45.2 - title: |- - Single is the mode info for a single signer. It is structured as a message - to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the - future - cosmos.tx.v1beta1.OrderBy: - type: string - enum: - - ORDER_BY_UNSPECIFIED - - ORDER_BY_ASC - - ORDER_BY_DESC - default: ORDER_BY_UNSPECIFIED + Since: cosmos-sdk 0.43 + cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse: + type: object + properties: + upgraded_consensus_state: + type: string + format: byte + title: 'Since: cosmos-sdk 0.43' description: >- - - ORDER_BY_UNSPECIFIED: ORDER_BY_UNSPECIFIED specifies an unknown sorting - order. OrderBy defaults to ASC in this case. - - ORDER_BY_ASC: ORDER_BY_ASC defines ascending order - - ORDER_BY_DESC: ORDER_BY_DESC defines descending order - title: OrderBy defines the sorting order - cosmos.tx.v1beta1.SignerInfo: + QueryUpgradedConsensusStateResponse is the response type for the + Query/UpgradedConsensusState + + RPC method. + cosmos.authz.v1beta1.Grant: type: object properties: - public_key: + authorization: type: object properties: type_url: @@ -75555,333 +90102,206 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - mode_info: - $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo' - title: |- - mode_info describes the signing mode of the signer and is a nested - structure to support nested multisig pubkey's - sequence: + expiration: type: string - format: uint64 - description: >- - sequence is the sequence of the account, which describes the + format: date-time + title: >- + time when the grant will expire and will be pruned. If null, then the + grant - number of committed transactions signed by a given address. It is used - to + doesn't have a time expiration (other conditions in `authorization` - prevent replay attacks. + may apply to invalidate the grant) description: |- - SignerInfo describes the public key and signing mode of a single top-level - signer. - cosmos.tx.v1beta1.SimulateRequest: + Grant gives permissions to execute + the provide method with expiration time. + cosmos.authz.v1beta1.GrantAuthorization: type: object properties: - tx: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' - description: |- - tx is the transaction to simulate. - Deprecated. Send raw tx bytes instead. - tx_bytes: + granter: type: string - format: byte - description: |- - tx_bytes is the raw transaction. - - Since: cosmos-sdk 0.43 - description: |- - SimulateRequest is the request type for the Service.Simulate - RPC method. - cosmos.tx.v1beta1.SimulateResponse: - type: object - properties: - gas_info: - description: gas_info is the information about gas used in the simulation. - type: object - properties: - gas_wanted: - type: string - format: uint64 - description: >- - GasWanted is the maximum units of work we allow this tx to - perform. - gas_used: - type: string - format: uint64 - description: GasUsed is the amount of gas actually consumed. - result: - description: result is the result of the simulation. + grantee: + type: string + authorization: type: object properties: - data: - type: string - format: byte - description: >- - Data is any data returned from message or handler execution. It - MUST be - - length prefixed in order to separate data from multiple message - executions. - - Deprecated. This field is still populated, but prefer msg_response - instead - - because it also contains the Msg response typeURL. - log: + type_url: type: string description: >- - Log contains the log information from message or handler - execution. - events: - type: array - items: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: >- - EventAttribute is a single key-value pair, associated with - an event. - description: >- - Event allows application developers to attach additional - information to - - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. - - Later, transactions may be queried using these events. - description: >- - Events contains a slice of Event objects that were emitted during - message - - or handler execution. - msg_responses: - type: array - items: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least + A URL/resource name that uniquely identifies the type of the + serialized - one "/" character. The last segment of the URL's path must - represent + protocol buffer message. This string must contain at least - the fully qualified name of the type (as in + one "/" character. The last segment of the URL's path must + represent - `path/google.protobuf.Duration`). The name should be in a - canonical form + the fully qualified name of the type (as in - (e.g., leading "." is not accepted). + `path/google.protobuf.Duration`). The name should be in a + canonical form + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all - types that they - expect it to use in the context of Any. However, for URLs - which use the + In practice, teams usually precompile into the binary all types + that they - scheme `http`, `https`, or no scheme, one can optionally set - up a type + expect it to use in the context of Any. However, for URLs which + use the - server that maps type URLs to message definitions as - follows: + scheme `http`, `https`, or no scheme, one can optionally set up a + type + server that maps type URLs to message definitions as follows: - * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * If no scheme is provided, `https` is assumed. - Note: this functionality is not currently available in the - official + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - protobuf release, and it is not used for type URLs beginning - with + Note: this functionality is not currently available in the + official - type.googleapis.com. + protobuf release, and it is not used for type URLs beginning with + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) - might be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + Schemes other than `http`, `https` (or the empty scheme) might be - URL that describes the type of the serialized message. + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + URL that describes the type of the serialized message. - Protobuf library provides support to pack/unpack Any values in - the form - of utility functions or additional generated methods of the Any - type. + Protobuf library provides support to pack/unpack Any values in the + form + of utility functions or additional generated methods of the Any type. - Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Example 1: Pack and unpack a message in C++. - Example 2: Pack and unpack a message in Java. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Example 2: Pack and unpack a message in Java. - Example 3: Pack and unpack a message in Python. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + Example 3: Pack and unpack a message in Python. - Example 4: Pack and unpack a message in Go + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + Example 4: Pack and unpack a message in Go - The pack methods provided by protobuf library will by default - use + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + The pack methods provided by protobuf library will by default use - methods only use the fully qualified type name after the last - '/' + 'type.googleapis.com/full.type.name' as the type URL and the unpack - in the type URL, for example "foo.bar.com/x/y.z" will yield type + methods only use the fully qualified type name after the last '/' - name "y.z". + in the type URL, for example "foo.bar.com/x/y.z" will yield type + name "y.z". - JSON - ==== + JSON - The JSON representation of an `Any` value uses the regular + ==== - representation of the deserialized, embedded message, with an + The JSON representation of an `Any` value uses the regular - additional field `@type` which contains the type URL. Example: + representation of the deserialized, embedded message, with an - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + additional field `@type` which contains the type URL. Example: - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - If the embedded message type is well-known and has a custom JSON + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - representation, that representation will be embedded adding a - field + If the embedded message type is well-known and has a custom JSON - `value` which holds the custom JSON in addition to the `@type` + representation, that representation will be embedded adding a field - field. Example (for message [google.protobuf.Duration][]): + `value` which holds the custom JSON in addition to the `@type` - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - description: >- - msg_responses contains the Msg handler responses type packed in - Anys. + field. Example (for message [google.protobuf.Duration][]): + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + expiration: + type: string + format: date-time + title: >- + GrantAuthorization extends a grant with both the addresses of the grantee + and granter. - Since: cosmos-sdk 0.46 - description: |- - SimulateResponse is the response type for the - Service.SimulateRPC method. - cosmos.tx.v1beta1.Tip: + It is used in genesis.proto and query.proto + cosmos.authz.v1beta1.QueryGranteeGrantsResponse: type: object properties: - amount: + grants: type: array items: type: object properties: - denom: + granter: type: string - amount: + grantee: type: string - description: |- - Coin defines a token with a denomination and an amount. - - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - title: amount is the amount of the tip - tipper: - type: string - title: tipper is the address of the account paying for the tip - description: |- - Tip is the tip used for meta-transactions. - - Since: cosmos-sdk 0.46 - cosmos.tx.v1beta1.Tx: - type: object - properties: - body: - title: body is the processable content of the transaction - type: object - properties: - messages: - type: array - items: + authorization: type: object properties: type_url: @@ -76050,44 +90470,50 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - description: >- - messages is a list of messages to be executed. The required - signers of - - those messages define the number and order of elements in - AuthInfo's - - signer_infos and Tx's signatures. Each required signer address is - added to - - the list only the first time it occurs. - - By convention, the first required signer (usually from the first - message) - - is referred to as the primary signer and pays the fee for the - whole + expiration: + type: string + format: date-time + title: >- + GrantAuthorization extends a grant with both the addresses of the + grantee and granter. - transaction. - memo: + It is used in genesis.proto and query.proto + description: grants is a list of grants granted to the grantee. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: type: string - description: >- - memo is any arbitrary note/comment to be added to the transaction. - - WARNING: in clients, any publicly exposed text should not be - called memo, - - but should be called `note` instead (see - https://github.com/cosmos/cosmos-sdk/issues/9122). - timeout_height: + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string format: uint64 - title: |- - timeout is the block height after which this transaction will not - be processed by the chain - extension_options: - type: array - items: + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryGranteeGrantsResponse is the response type for the + Query/GranteeGrants RPC method. + cosmos.authz.v1beta1.QueryGranterGrantsResponse: + type: object + properties: + grants: + type: array + items: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: type: object properties: type_url: @@ -76252,21 +90678,50 @@ definitions: field. Example (for message [google.protobuf.Duration][]): - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + expiration: + type: string + format: date-time + title: >- + GrantAuthorization extends a grant with both the addresses of the + grantee and granter. + + It is used in genesis.proto and query.proto + description: grants is a list of grants granted by the granter. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 title: >- - extension_options are arbitrary options that can be added by - chains - - when the default options are not sufficient. If any of these are - present + total is total number of results available if + PageRequest.count_total - and can't be handled, the transaction will be rejected - non_critical_extension_options: - type: array - items: + was set, its value is undefined otherwise + description: >- + QueryGranterGrantsResponse is the response type for the + Query/GranterGrants RPC method. + cosmos.authz.v1beta1.QueryGrantsResponse: + type: object + properties: + grants: + type: array + items: + type: object + properties: + authorization: type: object properties: type_url: @@ -76435,673 +90890,632 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - title: >- - extension_options are arbitrary options that can be added by - chains - - when the default options are not sufficient. If any of these are - present + expiration: + type: string + format: date-time + title: >- + time when the grant will expire and will be pruned. If null, + then the grant - and can't be handled, they will be ignored - description: TxBody is the body of a transaction that all signers sign over. - auth_info: - $ref: '#/definitions/cosmos.tx.v1beta1.AuthInfo' - title: |- - auth_info is the authorization related content of the transaction, - specifically signers, signer modes and fee - signatures: - type: array - items: - type: string - format: byte - description: >- - signatures is a list of signatures that matches the length and order - of + doesn't have a time expiration (other conditions in + `authorization` - AuthInfo's signer_infos to allow connecting signature meta information - like + may apply to invalidate the grant) + description: |- + Grant gives permissions to execute + the provide method with expiration time. + description: authorizations is a list of grants granted for grantee by granter. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - public key and signing mode by position. - description: Tx is the standard type used for broadcasting transactions. - cosmos.tx.v1beta1.TxBody: + was set, its value is undefined otherwise + description: >- + QueryGrantsResponse is the response type for the Query/Authorizations RPC + method. + cosmos.feegrant.v1beta1.Grant: type: object properties: - messages: - type: array - items: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all types - that they - - expect it to use in the context of Any. However, for URLs which - use the - - scheme `http`, `https`, or no scheme, one can optionally set up - a type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might - be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. - + granter: + type: string + description: >- + granter is the address of the user granting an allowance of their + funds. + grantee: + type: string + description: >- + grantee is the address of the user being granted an allowance of + another user's funds. + allowance: + description: allowance can be any of basic, periodic, allowed fee allowance. + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - Protobuf library provides support to pack/unpack Any values in the - form + protocol buffer message. This string must contain at least - of utility functions or additional generated methods of the Any - type. + one "/" character. The last segment of the URL's path must + represent + the fully qualified name of the type (as in - Example 1: Pack and unpack a message in C++. + `path/google.protobuf.Duration`). The name should be in a + canonical form - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + (e.g., leading "." is not accepted). - Example 2: Pack and unpack a message in Java. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + In practice, teams usually precompile into the binary all types + that they - Example 3: Pack and unpack a message in Python. + expect it to use in the context of Any. However, for URLs which + use the - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + scheme `http`, `https`, or no scheme, one can optionally set up a + type - Example 4: Pack and unpack a message in Go + server that maps type URLs to message definitions as follows: - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - The pack methods provided by protobuf library will by default use + * If no scheme is provided, `https` is assumed. - 'type.googleapis.com/full.type.name' as the type URL and the unpack + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - methods only use the fully qualified type name after the last '/' + Note: this functionality is not currently available in the + official - in the type URL, for example "foo.bar.com/x/y.z" will yield type + protobuf release, and it is not used for type URLs beginning with - name "y.z". + type.googleapis.com. + Schemes other than `http`, `https` (or the empty scheme) might be - JSON + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + title: Grant is stored in the KVStore to record a grant with full context + cosmos.feegrant.v1beta1.QueryAllowanceResponse: + type: object + properties: + allowance: + description: allowance is a allowance granted for grantee by granter. + type: object + properties: + granter: + type: string + description: >- + granter is the address of the user granting an allowance of their + funds. + grantee: + type: string + description: >- + grantee is the address of the user being granted an allowance of + another user's funds. + allowance: + description: allowance can be any of basic, periodic, allowed fee allowance. + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - ==== + protocol buffer message. This string must contain at least - The JSON representation of an `Any` value uses the regular + one "/" character. The last segment of the URL's path must + represent - representation of the deserialized, embedded message, with an + the fully qualified name of the type (as in - additional field `@type` which contains the type URL. Example: + `path/google.protobuf.Duration`). The name should be in a + canonical form - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + (e.g., leading "." is not accepted). - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - If the embedded message type is well-known and has a custom JSON + In practice, teams usually precompile into the binary all + types that they - representation, that representation will be embedded adding a field + expect it to use in the context of Any. However, for URLs + which use the - `value` which holds the custom JSON in addition to the `@type` + scheme `http`, `https`, or no scheme, one can optionally set + up a type - field. Example (for message [google.protobuf.Duration][]): + server that maps type URLs to message definitions as follows: - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - description: >- - messages is a list of messages to be executed. The required signers of - those messages define the number and order of elements in AuthInfo's + * If no scheme is provided, `https` is assumed. - signer_infos and Tx's signatures. Each required signer address is - added to + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - the list only the first time it occurs. + Note: this functionality is not currently available in the + official - By convention, the first required signer (usually from the first - message) + protobuf release, and it is not used for type URLs beginning + with - is referred to as the primary signer and pays the fee for the whole + type.googleapis.com. - transaction. - memo: - type: string - description: >- - memo is any arbitrary note/comment to be added to the transaction. - WARNING: in clients, any publicly exposed text should not be called - memo, + Schemes other than `http`, `https` (or the empty scheme) might + be - but should be called `note` instead (see - https://github.com/cosmos/cosmos-sdk/issues/9122). - timeout_height: - type: string - format: uint64 - title: |- - timeout is the block height after which this transaction will not - be processed by the chain - extension_options: + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + title: Grant is stored in the KVStore to record a grant with full context + description: >- + QueryAllowanceResponse is the response type for the Query/Allowance RPC + method. + cosmos.feegrant.v1beta1.QueryAllowancesByGranterResponse: + type: object + properties: + allowances: type: array items: type: object properties: - type_url: + granter: type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all types - that they - - expect it to use in the context of Any. However, for URLs which - use the - - scheme `http`, `https`, or no scheme, one can optionally set up - a type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might - be - - used with implementation specific semantics. - value: + granter is the address of the user granting an allowance of + their funds. + grantee: type: string - format: byte description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go + grantee is the address of the user being granted an allowance of + another user's funds. + allowance: + description: allowance can be any of basic, periodic, allowed fee allowance. + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + protocol buffer message. This string must contain at least - The pack methods provided by protobuf library will by default use + one "/" character. The last segment of the URL's path must + represent - 'type.googleapis.com/full.type.name' as the type URL and the unpack + the fully qualified name of the type (as in - methods only use the fully qualified type name after the last '/' + `path/google.protobuf.Duration`). The name should be in a + canonical form - in the type URL, for example "foo.bar.com/x/y.z" will yield type + (e.g., leading "." is not accepted). - name "y.z". + In practice, teams usually precompile into the binary all + types that they + expect it to use in the context of Any. However, for URLs + which use the - JSON + scheme `http`, `https`, or no scheme, one can optionally set + up a type - ==== + server that maps type URLs to message definitions as + follows: - The JSON representation of an `Any` value uses the regular - representation of the deserialized, embedded message, with an + * If no scheme is provided, `https` is assumed. - additional field `@type` which contains the type URL. Example: + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + Note: this functionality is not currently available in the + official - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + protobuf release, and it is not used for type URLs beginning + with - If the embedded message type is well-known and has a custom JSON + type.googleapis.com. - representation, that representation will be embedded adding a field - `value` which holds the custom JSON in addition to the `@type` + Schemes other than `http`, `https` (or the empty scheme) + might be - field. Example (for message [google.protobuf.Duration][]): + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + title: Grant is stored in the KVStore to record a grant with full context + description: allowances that have been issued by the granter. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: >- - extension_options are arbitrary options that can be added by chains + was set, its value is undefined otherwise + description: >- + QueryAllowancesByGranterResponse is the response type for the + Query/AllowancesByGranter RPC method. - when the default options are not sufficient. If any of these are - present - and can't be handled, the transaction will be rejected - non_critical_extension_options: + Since: cosmos-sdk 0.46 + cosmos.feegrant.v1beta1.QueryAllowancesResponse: + type: object + properties: + allowances: type: array items: type: object properties: - type_url: + granter: type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized + granter is the address of the user granting an allowance of + their funds. + grantee: + type: string + description: >- + grantee is the address of the user being granted an allowance of + another user's funds. + allowance: + description: allowance can be any of basic, periodic, allowed fee allowance. + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - protocol buffer message. This string must contain at least + protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + one "/" character. The last segment of the URL's path must + represent - the fully qualified name of the type (as in + the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + `path/google.protobuf.Duration`). The name should be in a + canonical form - (e.g., leading "." is not accepted). + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all types - that they + In practice, teams usually precompile into the binary all + types that they - expect it to use in the context of Any. However, for URLs which - use the + expect it to use in the context of Any. However, for URLs + which use the - scheme `http`, `https`, or no scheme, one can optionally set up - a type + scheme `http`, `https`, or no scheme, one can optionally set + up a type - server that maps type URLs to message definitions as follows: + server that maps type URLs to message definitions as + follows: - * If no scheme is provided, `https` is assumed. + * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - Note: this functionality is not currently available in the - official + Note: this functionality is not currently available in the + official - protobuf release, and it is not used for type URLs beginning - with + protobuf release, and it is not used for type URLs beginning + with - type.googleapis.com. + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) might - be + Schemes other than `http`, `https` (or the empty scheme) + might be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + title: Grant is stored in the KVStore to record a grant with full context + description: allowances are allowance's granted for grantee by granter. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - URL that describes the type of the serialized message. + was set, its value is undefined otherwise + description: >- + QueryAllowancesResponse is the response type for the Query/Allowances RPC + method. + cosmos.nft.v1beta1.Class: + type: object + properties: + id: + type: string + title: >- + id defines the unique identifier of the NFT classification, similar to + the contract address of ERC721 + name: + type: string + title: >- + name defines the human-readable name of the NFT classification. + Optional + symbol: + type: string + title: symbol is an abbreviated name for nft classification. Optional + description: + type: string + title: description is a brief description of nft classification. Optional + uri: + type: string + title: >- + uri for the class metadata stored off chain. It can define schema for + Class and NFT `Data` attributes. Optional + uri_hash: + type: string + title: uri_hash is a hash of the document pointed by uri. Optional + data: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + protocol buffer message. This string must contain at least - Protobuf library provides support to pack/unpack Any values in the - form + one "/" character. The last segment of the URL's path must + represent - of utility functions or additional generated methods of the Any - type. + the fully qualified name of the type (as in + `path/google.protobuf.Duration`). The name should be in a + canonical form - Example 1: Pack and unpack a message in C++. + (e.g., leading "." is not accepted). - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - Example 2: Pack and unpack a message in Java. + In practice, teams usually precompile into the binary all types + that they - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + expect it to use in the context of Any. However, for URLs which + use the - Example 3: Pack and unpack a message in Python. + scheme `http`, `https`, or no scheme, one can optionally set up a + type - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + server that maps type URLs to message definitions as follows: - Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + * If no scheme is provided, `https` is assumed. - The pack methods provided by protobuf library will by default use + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - 'type.googleapis.com/full.type.name' as the type URL and the unpack + Note: this functionality is not currently available in the + official - methods only use the fully qualified type name after the last '/' + protobuf release, and it is not used for type URLs beginning with - in the type URL, for example "foo.bar.com/x/y.z" will yield type + type.googleapis.com. - name "y.z". + Schemes other than `http`, `https` (or the empty scheme) might be + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a - JSON + URL that describes the type of the serialized message. - ==== - The JSON representation of an `Any` value uses the regular + Protobuf library provides support to pack/unpack Any values in the + form - representation of the deserialized, embedded message, with an + of utility functions or additional generated methods of the Any type. - additional field `@type` which contains the type URL. Example: - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + Example 1: Pack and unpack a message in C++. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - If the embedded message type is well-known and has a custom JSON + Example 2: Pack and unpack a message in Java. - representation, that representation will be embedded adding a field + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - `value` which holds the custom JSON in addition to the `@type` + Example 3: Pack and unpack a message in Python. - field. Example (for message [google.protobuf.Duration][]): + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: >- - extension_options are arbitrary options that can be added by chains + Example 4: Pack and unpack a message in Go - when the default options are not sufficient. If any of these are - present + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - and can't be handled, they will be ignored - description: TxBody is the body of a transaction that all signers sign over. - tendermint.abci.Event: - type: object - properties: - type: - type: string - attributes: - type: array - items: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: EventAttribute is a single key-value pair, associated with an event. - description: >- - Event allows application developers to attach additional information to + The pack methods provided by protobuf library will by default use - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + 'type.googleapis.com/full.type.name' as the type URL and the unpack - Later, transactions may be queried using these events. - tendermint.abci.EventAttribute: - type: object - properties: - key: - type: string - format: byte - value: - type: string - format: byte - index: - type: boolean - description: EventAttribute is a single key-value pair, associated with an event. - cosmos.upgrade.v1beta1.ModuleVersion: - type: object - properties: - name: - type: string - title: name of the app module - version: - type: string - format: uint64 - title: consensus version of the app module - description: |- - ModuleVersion specifies a module and its consensus version. + methods only use the fully qualified type name after the last '/' - Since: cosmos-sdk 0.43 - cosmos.upgrade.v1beta1.Plan: - type: object - properties: - name: - type: string - description: >- - Sets the name for the upgrade. This name will be used by the upgraded + in the type URL, for example "foo.bar.com/x/y.z" will yield type - version of the software to apply any special "on-upgrade" commands - during + name "y.z". - the first BeginBlock method after the upgrade is applied. It is also - used - to detect whether a software version can handle a given upgrade. If no - upgrade handler with this name has been set in the software, it will - be + JSON - assumed that the software is out-of-date when the upgrade Time or - Height is + ==== - reached and the software will exit. - time: - type: string - format: date-time - description: >- - Deprecated: Time based upgrades have been deprecated. Time based - upgrade logic + The JSON representation of an `Any` value uses the regular - has been removed from the SDK. + representation of the deserialized, embedded message, with an - If this field is not empty, an error will be thrown. - height: + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: data is the app specific metadata of the NFT class. Optional + description: Class defines the class of the nft type. + cosmos.nft.v1beta1.NFT: + type: object + properties: + class_id: type: string - format: int64 - description: |- - The height at which the upgrade must be performed. - Only used if Time is not set. - info: + title: >- + class_id associated with the NFT, similar to the contract address of + ERC721 + id: type: string - title: |- - Any application specific upgrade info to be included on-chain - such as a git commit that validators could automatically upgrade to - upgraded_client_state: + title: id is a unique identifier of the NFT + uri: + type: string + title: uri for the NFT metadata stored off chain + uri_hash: + type: string + title: uri_hash is a hash of the document pointed by uri + data: type: object properties: type_url: @@ -77260,81 +91674,466 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - description: >- - Plan specifies information about a planned upgrade and when it should - occur. - cosmos.upgrade.v1beta1.QueryAppliedPlanResponse: - type: object - properties: - height: - type: string - format: int64 - description: height is the block height at which the plan was applied. - description: >- - QueryAppliedPlanResponse is the response type for the Query/AppliedPlan - RPC - - method. - cosmos.upgrade.v1beta1.QueryAuthorityResponse: + title: data is an app specific data of the NFT. Optional + description: NFT defines the NFT. + cosmos.nft.v1beta1.QueryBalanceResponse: type: object properties: - address: + amount: type: string - description: 'Since: cosmos-sdk 0.46' - title: QueryAuthorityResponse is the response type for Query/Authority - cosmos.upgrade.v1beta1.QueryCurrentPlanResponse: + format: uint64 + title: QueryBalanceResponse is the response type for the Query/Balance RPC method + cosmos.nft.v1beta1.QueryClassResponse: type: object properties: - plan: - description: plan is the current upgrade plan. + class: type: object properties: + id: + type: string + title: >- + id defines the unique identifier of the NFT classification, + similar to the contract address of ERC721 name: type: string - description: >- - Sets the name for the upgrade. This name will be used by the - upgraded + title: >- + name defines the human-readable name of the NFT classification. + Optional + symbol: + type: string + title: symbol is an abbreviated name for nft classification. Optional + description: + type: string + title: description is a brief description of nft classification. Optional + uri: + type: string + title: >- + uri for the class metadata stored off chain. It can define schema + for Class and NFT `Data` attributes. Optional + uri_hash: + type: string + title: uri_hash is a hash of the document pointed by uri. Optional + data: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - version of the software to apply any special "on-upgrade" commands - during + protocol buffer message. This string must contain at least - the first BeginBlock method after the upgrade is applied. It is - also used + one "/" character. The last segment of the URL's path must + represent - to detect whether a software version can handle a given upgrade. - If no + the fully qualified name of the type (as in - upgrade handler with this name has been set in the software, it - will be + `path/google.protobuf.Duration`). The name should be in a + canonical form - assumed that the software is out-of-date when the upgrade Time or - Height is + (e.g., leading "." is not accepted). - reached and the software will exit. - time: - type: string - format: date-time + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. description: >- - Deprecated: Time based upgrades have been deprecated. Time based - upgrade logic + `Any` contains an arbitrary serialized protocol buffer message + along with a - has been removed from the SDK. + URL that describes the type of the serialized message. - If this field is not empty, an error will be thrown. - height: + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: data is the app specific metadata of the NFT class. Optional + description: Class defines the class of the nft type. + title: QueryClassResponse is the response type for the Query/Class RPC method + cosmos.nft.v1beta1.QueryClassesResponse: + type: object + properties: + classes: + type: array + items: + type: object + properties: + id: + type: string + title: >- + id defines the unique identifier of the NFT classification, + similar to the contract address of ERC721 + name: + type: string + title: >- + name defines the human-readable name of the NFT classification. + Optional + symbol: + type: string + title: symbol is an abbreviated name for nft classification. Optional + description: + type: string + title: >- + description is a brief description of nft classification. + Optional + uri: + type: string + title: >- + uri for the class metadata stored off chain. It can define + schema for Class and NFT `Data` attributes. Optional + uri_hash: + type: string + title: uri_hash is a hash of the document pointed by uri. Optional + data: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in + the form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last + '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: data is the app specific metadata of the NFT class. Optional + description: Class defines the class of the nft type. + pagination: + type: object + properties: + next_key: type: string - format: int64 + format: byte description: |- - The height at which the upgrade must be performed. - Only used if Time is not set. - info: + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string + format: uint64 title: >- - Any application specific upgrade info to be included on-chain + total is total number of results available if + PageRequest.count_total - such as a git commit that validators could automatically upgrade - to - upgraded_client_state: + was set, its value is undefined otherwise + description: |- + PageResponse is to be embedded in gRPC response messages where the + corresponding request message has used PageRequest. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: QueryClassesResponse is the response type for the Query/Classes RPC method + cosmos.nft.v1beta1.QueryNFTResponse: + type: object + properties: + nft: + type: object + properties: + class_id: + type: string + title: >- + class_id associated with the NFT, similar to the contract address + of ERC721 + id: + type: string + title: id is a unique identifier of the NFT + uri: + type: string + title: uri for the NFT metadata stored off chain + uri_hash: + type: string + title: uri_hash is a hash of the document pointed by uri + data: type: object properties: type_url: @@ -77499,236 +92298,328 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - description: >- - QueryCurrentPlanResponse is the response type for the Query/CurrentPlan - RPC - - method. - cosmos.upgrade.v1beta1.QueryModuleVersionsResponse: + title: data is an app specific data of the NFT. Optional + description: NFT defines the NFT. + title: QueryNFTResponse is the response type for the Query/NFT RPC method + cosmos.nft.v1beta1.QueryNFTsResponse: type: object properties: - module_versions: + nfts: type: array items: type: object properties: - name: + class_id: type: string - title: name of the app module - version: + title: >- + class_id associated with the NFT, similar to the contract + address of ERC721 + id: type: string - format: uint64 - title: consensus version of the app module - description: |- - ModuleVersion specifies a module and its consensus version. + title: id is a unique identifier of the NFT + uri: + type: string + title: uri for the NFT metadata stored off chain + uri_hash: + type: string + title: uri_hash is a hash of the document pointed by uri + data: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - Since: cosmos-sdk 0.43 - description: >- - module_versions is a list of module names with their consensus - versions. - description: >- - QueryModuleVersionsResponse is the response type for the - Query/ModuleVersions + protocol buffer message. This string must contain at least - RPC method. + one "/" character. The last segment of the URL's path must + represent + the fully qualified name of the type (as in - Since: cosmos-sdk 0.43 - cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse: - type: object - properties: - upgraded_consensus_state: - type: string - format: byte - title: 'Since: cosmos-sdk 0.43' - description: >- - QueryUpgradedConsensusStateResponse is the response type for the - Query/UpgradedConsensusState + `path/google.protobuf.Duration`). The name should be in a + canonical form - RPC method. - cosmos.authz.v1beta1.Grant: - type: object - properties: - authorization: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + (e.g., leading "." is not accepted). - protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + In practice, teams usually precompile into the binary all + types that they - the fully qualified name of the type (as in + expect it to use in the context of Any. However, for URLs + which use the - `path/google.protobuf.Duration`). The name should be in a - canonical form + scheme `http`, `https`, or no scheme, one can optionally set + up a type - (e.g., leading "." is not accepted). + server that maps type URLs to message definitions as + follows: - In practice, teams usually precompile into the binary all types - that they + * If no scheme is provided, `https` is assumed. - expect it to use in the context of Any. However, for URLs which - use the + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - scheme `http`, `https`, or no scheme, one can optionally set up a - type + Note: this functionality is not currently available in the + official - server that maps type URLs to message definitions as follows: + protobuf release, and it is not used for type URLs beginning + with + type.googleapis.com. - * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + Schemes other than `http`, `https` (or the empty scheme) + might be - Note: this functionality is not currently available in the - official + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - protobuf release, and it is not used for type URLs beginning with + URL that describes the type of the serialized message. - type.googleapis.com. + Protobuf library provides support to pack/unpack Any values in + the form - Schemes other than `http`, `https` (or the empty scheme) might be + of utility functions or additional generated methods of the Any + type. - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - URL that describes the type of the serialized message. + Example 1: Pack and unpack a message in C++. + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Protobuf library provides support to pack/unpack Any values in the - form + Example 2: Pack and unpack a message in Java. - of utility functions or additional generated methods of the Any type. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + Example 3: Pack and unpack a message in Python. - Example 1: Pack and unpack a message in C++. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Example 4: Pack and unpack a message in Go - Example 2: Pack and unpack a message in Java. + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + The pack methods provided by protobuf library will by default + use - Example 3: Pack and unpack a message in Python. + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + methods only use the fully qualified type name after the last + '/' - Example 4: Pack and unpack a message in Go + in the type URL, for example "foo.bar.com/x/y.z" will yield type - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + name "y.z". - The pack methods provided by protobuf library will by default use - 'type.googleapis.com/full.type.name' as the type URL and the unpack - methods only use the fully qualified type name after the last '/' + JSON - in the type URL, for example "foo.bar.com/x/y.z" will yield type + ==== - name "y.z". + The JSON representation of an `Any` value uses the regular + representation of the deserialized, embedded message, with an + additional field `@type` which contains the type URL. Example: - JSON + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - ==== + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - The JSON representation of an `Any` value uses the regular + If the embedded message type is well-known and has a custom JSON - representation of the deserialized, embedded message, with an + representation, that representation will be embedded adding a + field - additional field `@type` which contains the type URL. Example: + `value` which holds the custom JSON in addition to the `@type` - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + field. Example (for message [google.protobuf.Duration][]): - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: data is an app specific data of the NFT. Optional + description: NFT defines the NFT. + pagination: + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - If the embedded message type is well-known and has a custom JSON + was set, its value is undefined otherwise + description: |- + PageResponse is to be embedded in gRPC response messages where the + corresponding request message has used PageRequest. - representation, that representation will be embedded adding a field + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: QueryNFTsResponse is the response type for the Query/NFTs RPC methods + cosmos.nft.v1beta1.QueryOwnerResponse: + type: object + properties: + owner: + type: string + title: QueryOwnerResponse is the response type for the Query/Owner RPC method + cosmos.nft.v1beta1.QuerySupplyResponse: + type: object + properties: + amount: + type: string + format: uint64 + title: QuerySupplyResponse is the response type for the Query/Supply RPC method + cosmos.group.v1.GroupInfo: + type: object + properties: + id: + type: string + format: uint64 + description: id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group's admin. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the group. + version: + type: string + format: uint64 + title: >- + version is used to track changes to a group's membership structure + that - `value` which holds the custom JSON in addition to the `@type` + would break existing proposals. Whenever any members weight is + changed, - field. Example (for message [google.protobuf.Duration][]): + or any member is added or removed this version is incremented and will - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - expiration: + cause proposals based on older versions of this group to fail + total_weight: + type: string + description: total_weight is the sum of the group members' weights. + created_at: type: string format: date-time - title: >- - time when the grant will expire and will be pruned. If null, then the - grant - - doesn't have a time expiration (other conditions in `authorization` - - may apply to invalidate the grant) - description: |- - Grant gives permissions to execute - the provide method with expiration time. - cosmos.authz.v1beta1.GrantAuthorization: + description: created_at is a timestamp specifying when a group was created. + description: GroupInfo represents the high-level on-chain information for a group. + cosmos.group.v1.GroupMember: type: object properties: - granter: + group_id: type: string - grantee: + format: uint64 + description: group_id is the unique ID of the group. + member: + description: member is the member data. + type: object + properties: + address: + type: string + description: address is the member's account address. + weight: + type: string + description: >- + weight is the member's voting weight that should be greater than + 0. + metadata: + type: string + description: metadata is any arbitrary metadata attached to the member. + added_at: + type: string + format: date-time + description: added_at is a timestamp specifying when a member was added. + description: GroupMember represents the relationship between a group and a member. + cosmos.group.v1.GroupPolicyInfo: + type: object + properties: + address: type: string - authorization: + description: address is the account address of group policy. + group_id: + type: string + format: uint64 + description: group_id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group admin. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the group policy. + version: + type: string + format: uint64 + description: >- + version is used to track changes to a group's GroupPolicyInfo + structure that + + would create a different result on a running proposal. + decision_policy: type: object properties: type_url: @@ -77869,224 +92760,445 @@ definitions: string last_name = 2; } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + created_at: + type: string + format: date-time + description: created_at is a timestamp specifying when a group policy was created. + description: >- + GroupPolicyInfo represents the high-level on-chain information for a group + policy. + cosmos.group.v1.Member: + type: object + properties: + address: + type: string + description: address is the member's account address. + weight: + type: string + description: weight is the member's voting weight that should be greater than 0. + metadata: + type: string + description: metadata is any arbitrary metadata attached to the member. + added_at: + type: string + format: date-time + description: added_at is a timestamp specifying when a member was added. + description: |- + Member represents a group member with an account address, + non-zero weight, metadata and added_at timestamp. + cosmos.group.v1.Proposal: + type: object + properties: + id: + type: string + format: uint64 + description: id is the unique id of the proposal. + group_policy_address: + type: string + description: group_policy_address is the account address of group policy. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the proposal. + proposers: + type: array + items: + type: string + description: proposers are the account addresses of the proposers. + submit_time: + type: string + format: date-time + description: submit_time is a timestamp specifying when a proposal was submitted. + group_version: + type: string + format: uint64 + description: |- + group_version tracks the version of the group at proposal submission. + This field is here for informational purposes only. + group_policy_version: + type: string + format: uint64 + description: >- + group_policy_version tracks the version of the group policy at + proposal submission. + + When a decision policy is changed, existing proposals from previous + policy + + versions will become invalid with the `ABORTED` status. + + This field is here for informational purposes only. + status: + description: >- + status represents the high level position in the life cycle of the + proposal. Initial value is Submitted. + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_SUBMITTED + - PROPOSAL_STATUS_ACCEPTED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_ABORTED + - PROPOSAL_STATUS_WITHDRAWN + default: PROPOSAL_STATUS_UNSPECIFIED + final_tally_result: + description: >- + final_tally_result contains the sums of all weighted votes for this + + proposal for each vote option. It is empty at submission, and only - If the embedded message type is well-known and has a custom JSON + populated after tallying, at voting period end or at proposal + execution, - representation, that representation will be embedded adding a field + whichever happens first. + type: object + properties: + yes_count: + type: string + description: yes_count is the weighted sum of yes votes. + abstain_count: + type: string + description: abstain_count is the weighted sum of abstainers. + no_count: + type: string + description: no_count is the weighted sum of no votes. + no_with_veto_count: + type: string + description: no_with_veto_count is the weighted sum of veto. + voting_period_end: + type: string + format: date-time + description: >- + voting_period_end is the timestamp before which voting must be done. - `value` which holds the custom JSON in addition to the `@type` + Unless a successfull MsgExec is called before (to execute a proposal + whose - field. Example (for message [google.protobuf.Duration][]): + tally is successful before the voting period ends), tallying will be + done - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - expiration: - type: string - format: date-time - title: >- - GrantAuthorization extends a grant with both the addresses of the grantee - and granter. + at this point, and the `final_tally_result`and `status` fields will be - It is used in genesis.proto and query.proto - cosmos.authz.v1beta1.QueryGranteeGrantsResponse: - type: object - properties: - grants: + accordingly updated. + executor_result: + description: >- + executor_result is the final result of the proposal execution. Initial + value is NotRun. + type: string + enum: + - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + - PROPOSAL_EXECUTOR_RESULT_NOT_RUN + - PROPOSAL_EXECUTOR_RESULT_SUCCESS + - PROPOSAL_EXECUTOR_RESULT_FAILURE + default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + messages: type: array items: type: object properties: - granter: - type: string - grantee: + type_url: type: string - authorization: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - protocol buffer message. This string must contain at least + protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + one "/" character. The last segment of the URL's path must + represent - the fully qualified name of the type (as in + the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + `path/google.protobuf.Duration`). The name should be in a + canonical form - (e.g., leading "." is not accepted). + (e.g., leading "." is not accepted). - In practice, teams usually precompile into the binary all - types that they + In practice, teams usually precompile into the binary all types + that they - expect it to use in the context of Any. However, for URLs - which use the + expect it to use in the context of Any. However, for URLs which + use the - scheme `http`, `https`, or no scheme, one can optionally set - up a type + scheme `http`, `https`, or no scheme, one can optionally set up + a type - server that maps type URLs to message definitions as - follows: + server that maps type URLs to message definitions as follows: - * If no scheme is provided, `https` is assumed. + * If no scheme is provided, `https` is assumed. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - Note: this functionality is not currently available in the - official + Note: this functionality is not currently available in the + official - protobuf release, and it is not used for type URLs beginning - with + protobuf release, and it is not used for type URLs beginning + with - type.googleapis.com. + type.googleapis.com. - Schemes other than `http`, `https` (or the empty scheme) - might be + Schemes other than `http`, `https` (or the empty scheme) might + be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. + used with implementation specific semantics. + value: + type: string + format: byte description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a - URL that describes the type of the serialized message. + URL that describes the type of the serialized message. - Protobuf library provides support to pack/unpack Any values in - the form + Protobuf library provides support to pack/unpack Any values in the + form - of utility functions or additional generated methods of the Any - type. + of utility functions or additional generated methods of the Any + type. - Example 1: Pack and unpack a message in C++. + Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - Example 2: Pack and unpack a message in Java. + Example 2: Pack and unpack a message in Java. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - Example 3: Pack and unpack a message in Python. + Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - Example 4: Pack and unpack a message in Go + Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - The pack methods provided by protobuf library will by default - use + The pack methods provided by protobuf library will by default use - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + 'type.googleapis.com/full.type.name' as the type URL and the unpack - methods only use the fully qualified type name after the last - '/' + methods only use the fully qualified type name after the last '/' - in the type URL, for example "foo.bar.com/x/y.z" will yield type + in the type URL, for example "foo.bar.com/x/y.z" will yield type - name "y.z". + name "y.z". - JSON + JSON - ==== + ==== - The JSON representation of an `Any` value uses the regular + The JSON representation of an `Any` value uses the regular - representation of the deserialized, embedded message, with an + representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + additional field `@type` which contains the type URL. Example: - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - If the embedded message type is well-known and has a custom JSON + If the embedded message type is well-known and has a custom JSON - representation, that representation will be embedded adding a - field + representation, that representation will be embedded adding a field - `value` which holds the custom JSON in addition to the `@type` + `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + field. Example (for message [google.protobuf.Duration][]): - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - expiration: - type: string - format: date-time - title: >- - GrantAuthorization extends a grant with both the addresses of the - grantee and granter. + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + messages is a list of `sdk.Msg`s that will be executed if the proposal + passes. + description: >- + Proposal defines a group proposal. Any member of a group can submit a + proposal - It is used in genesis.proto and query.proto - description: grants is a list of grants granted to the grantee. + for a group policy to decide upon. + + A proposal consists of a set of `sdk.Msg`s that will be executed if the + proposal + + passes as well as some optional metadata associated with the proposal. + cosmos.group.v1.ProposalExecutorResult: + type: string + enum: + - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + - PROPOSAL_EXECUTOR_RESULT_NOT_RUN + - PROPOSAL_EXECUTOR_RESULT_SUCCESS + - PROPOSAL_EXECUTOR_RESULT_FAILURE + default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + description: |- + ProposalExecutorResult defines types of proposal executor results. + + - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED: An empty value is not allowed. + - PROPOSAL_EXECUTOR_RESULT_NOT_RUN: We have not yet run the executor. + - PROPOSAL_EXECUTOR_RESULT_SUCCESS: The executor was successful and proposed action updated state. + - PROPOSAL_EXECUTOR_RESULT_FAILURE: The executor returned an error and proposed action didn't update state. + cosmos.group.v1.ProposalStatus: + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_SUBMITTED + - PROPOSAL_STATUS_ACCEPTED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_ABORTED + - PROPOSAL_STATUS_WITHDRAWN + default: PROPOSAL_STATUS_UNSPECIFIED + description: |- + ProposalStatus defines proposal statuses. + + - PROPOSAL_STATUS_UNSPECIFIED: An empty value is invalid and not allowed. + - PROPOSAL_STATUS_SUBMITTED: Initial status of a proposal when submitted. + - PROPOSAL_STATUS_ACCEPTED: Final status of a proposal when the final tally is done and the outcome + passes the group policy's decision policy. + - PROPOSAL_STATUS_REJECTED: Final status of a proposal when the final tally is done and the outcome + is rejected by the group policy's decision policy. + - PROPOSAL_STATUS_ABORTED: Final status of a proposal when the group policy is modified before the + final tally. + - PROPOSAL_STATUS_WITHDRAWN: A proposal can be withdrawn before the voting start time by the owner. + When this happens the final status is Withdrawn. + cosmos.group.v1.QueryGroupInfoResponse: + type: object + properties: + info: + description: info is the GroupInfo for the group. + type: object + properties: + id: + type: string + format: uint64 + description: id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group's admin. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the group. + version: + type: string + format: uint64 + title: >- + version is used to track changes to a group's membership structure + that + + would break existing proposals. Whenever any members weight is + changed, + + or any member is added or removed this version is incremented and + will + + cause proposals based on older versions of this group to fail + total_weight: + type: string + description: total_weight is the sum of the group members' weights. + created_at: + type: string + format: date-time + description: created_at is a timestamp specifying when a group was created. + description: QueryGroupInfoResponse is the Query/GroupInfo response type. + cosmos.group.v1.QueryGroupMembersResponse: + type: object + properties: + members: + type: array + items: + type: object + properties: + group_id: + type: string + format: uint64 + description: group_id is the unique ID of the group. + member: + description: member is the member data. + type: object + properties: + address: + type: string + description: address is the member's account address. + weight: + type: string + description: >- + weight is the member's voting weight that should be greater + than 0. + metadata: + type: string + description: metadata is any arbitrary metadata attached to the member. + added_at: + type: string + format: date-time + description: added_at is a timestamp specifying when a member was added. + description: >- + GroupMember represents the relationship between a group and a + member. + description: members are the members of the group with given group_id. pagination: - description: pagination defines an pagination for the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -78104,22 +93216,39 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryGranteeGrantsResponse is the response type for the - Query/GranteeGrants RPC method. - cosmos.authz.v1beta1.QueryGranterGrantsResponse: + description: QueryGroupMembersResponse is the Query/GroupMembersResponse response type. + cosmos.group.v1.QueryGroupPoliciesByAdminResponse: type: object properties: - grants: + group_policies: type: array items: type: object properties: - granter: + address: type: string - grantee: + description: address is the account address of group policy. + group_id: type: string - authorization: + format: uint64 + description: group_id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group admin. + metadata: + type: string + description: >- + metadata is any arbitrary metadata to attached to the group + policy. + version: + type: string + format: uint64 + description: >- + version is used to track changes to a group's GroupPolicyInfo + structure that + + would create a different result on a running proposal. + decision_policy: type: object properties: type_url: @@ -78288,17 +93417,18 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - expiration: + created_at: type: string format: date-time - title: >- - GrantAuthorization extends a grant with both the addresses of the - grantee and granter. - - It is used in genesis.proto and query.proto - description: grants is a list of grants granted by the granter. + description: >- + created_at is a timestamp specifying when a group policy was + created. + description: >- + GroupPolicyInfo represents the high-level on-chain information for a + group policy. + description: group_policies are the group policies info with provided admin. pagination: - description: pagination defines an pagination for the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -78317,17 +93447,40 @@ definitions: was set, its value is undefined otherwise description: >- - QueryGranterGrantsResponse is the response type for the - Query/GranterGrants RPC method. - cosmos.authz.v1beta1.QueryGrantsResponse: + QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin + response type. + cosmos.group.v1.QueryGroupPoliciesByGroupResponse: type: object properties: - grants: + group_policies: type: array items: type: object properties: - authorization: + address: + type: string + description: address is the account address of group policy. + group_id: + type: string + format: uint64 + description: group_id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group admin. + metadata: + type: string + description: >- + metadata is any arbitrary metadata to attached to the group + policy. + version: + type: string + format: uint64 + description: >- + version is used to track changes to a group's GroupPolicyInfo + structure that + + would create a different result on a running proposal. + decision_policy: type: object properties: type_url: @@ -78496,23 +93649,20 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - expiration: + created_at: type: string format: date-time - title: >- - time when the grant will expire and will be pruned. If null, - then the grant - - doesn't have a time expiration (other conditions in - `authorization` - - may apply to invalidate the grant) - description: |- - Grant gives permissions to execute - the provide method with expiration time. - description: authorizations is a list of grants granted for grantee by granter. + description: >- + created_at is a timestamp specifying when a group policy was + created. + description: >- + GroupPolicyInfo represents the high-level on-chain information for a + group policy. + description: >- + group_policies are the group policies info associated with the + provided group. pagination: - description: pagination defines an pagination for the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -78531,103 +93681,38 @@ definitions: was set, its value is undefined otherwise description: >- - QueryGrantsResponse is the response type for the Query/Authorizations RPC - method. - cosmos.feegrant.v1beta1.Grant: + QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup + response type. + cosmos.group.v1.QueryGroupPolicyInfoResponse: type: object properties: - granter: - type: string - description: >- - granter is the address of the user granting an allowance of their - funds. - grantee: - type: string - description: >- - grantee is the address of the user being granted an allowance of - another user's funds. - allowance: - description: allowance can be any of basic, periodic, allowed fee allowance. + info: type: object properties: - type_url: + address: type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all types - that they - - expect it to use in the context of Any. However, for URLs which - use the - - scheme `http`, `https`, or no scheme, one can optionally set up a - type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might be - - used with implementation specific semantics. - value: + description: address is the account address of group policy. + group_id: type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - title: Grant is stored in the KVStore to record a grant with full context - cosmos.feegrant.v1beta1.QueryAllowanceResponse: - type: object - properties: - allowance: - description: allowance is a allowance granted for grantee by granter. - type: object - properties: - granter: + format: uint64 + description: group_id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group admin. + metadata: type: string description: >- - granter is the address of the user granting an allowance of their - funds. - grantee: + metadata is any arbitrary metadata to attached to the group + policy. + version: type: string + format: uint64 description: >- - grantee is the address of the user being granted an allowance of - another user's funds. - allowance: - description: allowance can be any of basic, periodic, allowed fee allowance. + version is used to track changes to a group's GroupPolicyInfo + structure that + + would create a different result on a running proposal. + decision_policy: type: object properties: type_url: @@ -78691,142 +93776,429 @@ definitions: description: >- Must be a valid serialized protocol buffer of the above specified type. - title: Grant is stored in the KVStore to record a grant with full context - description: >- - QueryAllowanceResponse is the response type for the Query/Allowance RPC - method. - cosmos.feegrant.v1beta1.QueryAllowancesByGranterResponse: + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + created_at: + type: string + format: date-time + description: >- + created_at is a timestamp specifying when a group policy was + created. + description: >- + GroupPolicyInfo represents the high-level on-chain information for a + group policy. + description: QueryGroupPolicyInfoResponse is the Query/GroupPolicyInfo response type. + cosmos.group.v1.QueryGroupsByAdminResponse: type: object properties: - allowances: + groups: type: array items: type: object properties: - granter: + id: type: string - description: >- - granter is the address of the user granting an allowance of - their funds. - grantee: + format: uint64 + description: id is the unique ID of the group. + admin: type: string - description: >- - grantee is the address of the user being granted an allowance of - another user's funds. - allowance: - description: allowance can be any of basic, periodic, allowed fee allowance. - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + description: admin is the account address of the group's admin. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the group. + version: + type: string + format: uint64 + title: >- + version is used to track changes to a group's membership + structure that - protocol buffer message. This string must contain at least + would break existing proposals. Whenever any members weight is + changed, - one "/" character. The last segment of the URL's path must - represent + or any member is added or removed this version is incremented + and will - the fully qualified name of the type (as in + cause proposals based on older versions of this group to fail + total_weight: + type: string + description: total_weight is the sum of the group members' weights. + created_at: + type: string + format: date-time + description: created_at is a timestamp specifying when a group was created. + description: >- + GroupInfo represents the high-level on-chain information for a + group. + description: groups are the groups info with the provided admin. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - `path/google.protobuf.Duration`). The name should be in a - canonical form + was set, its value is undefined otherwise + description: >- + QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response + type. + cosmos.group.v1.QueryGroupsByMemberResponse: + type: object + properties: + groups: + type: array + items: + type: object + properties: + id: + type: string + format: uint64 + description: id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group's admin. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the group. + version: + type: string + format: uint64 + title: >- + version is used to track changes to a group's membership + structure that - (e.g., leading "." is not accepted). + would break existing proposals. Whenever any members weight is + changed, + or any member is added or removed this version is incremented + and will - In practice, teams usually precompile into the binary all - types that they + cause proposals based on older versions of this group to fail + total_weight: + type: string + description: total_weight is the sum of the group members' weights. + created_at: + type: string + format: date-time + description: created_at is a timestamp specifying when a group was created. + description: >- + GroupInfo represents the high-level on-chain information for a + group. + description: groups are the groups info with the provided group member. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - expect it to use in the context of Any. However, for URLs - which use the + was set, its value is undefined otherwise + description: QueryGroupsByMemberResponse is the Query/GroupsByMember response type. + cosmos.group.v1.QueryGroupsResponse: + type: object + properties: + groups: + type: array + items: + type: object + properties: + id: + type: string + format: uint64 + description: id is the unique ID of the group. + admin: + type: string + description: admin is the account address of the group's admin. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the group. + version: + type: string + format: uint64 + title: >- + version is used to track changes to a group's membership + structure that - scheme `http`, `https`, or no scheme, one can optionally set - up a type + would break existing proposals. Whenever any members weight is + changed, - server that maps type URLs to message definitions as - follows: + or any member is added or removed this version is incremented + and will + + cause proposals based on older versions of this group to fail + total_weight: + type: string + description: total_weight is the sum of the group members' weights. + created_at: + type: string + format: date-time + description: created_at is a timestamp specifying when a group was created. + description: >- + GroupInfo represents the high-level on-chain information for a + group. + description: '`groups` is all the groups present in state.' + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + was set, its value is undefined otherwise + description: |- + QueryGroupsResponse is the Query/Groups response type. - * If no scheme is provided, `https` is assumed. + Since: cosmos-sdk 0.47.1 + cosmos.group.v1.QueryProposalResponse: + type: object + properties: + proposal: + description: proposal is the proposal info. + type: object + properties: + id: + type: string + format: uint64 + description: id is the unique id of the proposal. + group_policy_address: + type: string + description: group_policy_address is the account address of group policy. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the proposal. + proposers: + type: array + items: + type: string + description: proposers are the account addresses of the proposers. + submit_time: + type: string + format: date-time + description: >- + submit_time is a timestamp specifying when a proposal was + submitted. + group_version: + type: string + format: uint64 + description: >- + group_version tracks the version of the group at proposal + submission. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + This field is here for informational purposes only. + group_policy_version: + type: string + format: uint64 + description: >- + group_policy_version tracks the version of the group policy at + proposal submission. - Note: this functionality is not currently available in the - official + When a decision policy is changed, existing proposals from + previous policy - protobuf release, and it is not used for type URLs beginning - with + versions will become invalid with the `ABORTED` status. - type.googleapis.com. + This field is here for informational purposes only. + status: + description: >- + status represents the high level position in the life cycle of the + proposal. Initial value is Submitted. + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_SUBMITTED + - PROPOSAL_STATUS_ACCEPTED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_ABORTED + - PROPOSAL_STATUS_WITHDRAWN + default: PROPOSAL_STATUS_UNSPECIFIED + final_tally_result: + description: >- + final_tally_result contains the sums of all weighted votes for + this + proposal for each vote option. It is empty at submission, and only - Schemes other than `http`, `https` (or the empty scheme) - might be + populated after tallying, at voting period end or at proposal + execution, - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - title: Grant is stored in the KVStore to record a grant with full context - description: allowances that have been issued by the granter. - pagination: - description: pagination defines an pagination for the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + whichever happens first. + type: object + properties: + yes_count: + type: string + description: yes_count is the weighted sum of yes votes. + abstain_count: + type: string + description: abstain_count is the weighted sum of abstainers. + no_count: + type: string + description: no_count is the weighted sum of no votes. + no_with_veto_count: + type: string + description: no_with_veto_count is the weighted sum of veto. + voting_period_end: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + format: date-time + description: >- + voting_period_end is the timestamp before which voting must be + done. - was set, its value is undefined otherwise - description: >- - QueryAllowancesByGranterResponse is the response type for the - Query/AllowancesByGranter RPC method. + Unless a successfull MsgExec is called before (to execute a + proposal whose + tally is successful before the voting period ends), tallying will + be done - Since: cosmos-sdk 0.46 - cosmos.feegrant.v1beta1.QueryAllowancesResponse: - type: object - properties: - allowances: - type: array - items: - type: object - properties: - granter: - type: string - description: >- - granter is the address of the user granting an allowance of - their funds. - grantee: - type: string - description: >- - grantee is the address of the user being granted an allowance of - another user's funds. - allowance: - description: allowance can be any of basic, periodic, allowed fee allowance. + at this point, and the `final_tally_result`and `status` fields + will be + + accordingly updated. + executor_result: + description: >- + executor_result is the final result of the proposal execution. + Initial value is NotRun. + type: string + enum: + - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + - PROPOSAL_EXECUTOR_RESULT_NOT_RUN + - PROPOSAL_EXECUTOR_RESULT_SUCCESS + - PROPOSAL_EXECUTOR_RESULT_FAILURE + default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + messages: + type: array + items: type: object properties: type_url: @@ -78892,807 +94264,975 @@ definitions: description: >- Must be a valid serialized protocol buffer of the above specified type. - title: Grant is stored in the KVStore to record a grant with full context - description: allowances are allowance's granted for grantee by granter. - pagination: - description: pagination defines an pagination for the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - QueryAllowancesResponse is the response type for the Query/Allowances RPC - method. - cosmos.nft.v1beta1.Class: - type: object - properties: - id: - type: string - title: >- - id defines the unique identifier of the NFT classification, similar to - the contract address of ERC721 - name: - type: string - title: >- - name defines the human-readable name of the NFT classification. - Optional - symbol: - type: string - title: symbol is an abbreviated name for nft classification. Optional - description: - type: string - title: description is a brief description of nft classification. Optional - uri: - type: string - title: >- - uri for the class metadata stored off chain. It can define schema for - Class and NFT `Data` attributes. Optional - uri_hash: - type: string - title: uri_hash is a hash of the document pointed by uri. Optional - data: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - one "/" character. The last segment of the URL's path must - represent + URL that describes the type of the serialized message. - the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + Protobuf library provides support to pack/unpack Any values in + the form - (e.g., leading "." is not accepted). + of utility functions or additional generated methods of the Any + type. - In practice, teams usually precompile into the binary all types - that they + Example 1: Pack and unpack a message in C++. - expect it to use in the context of Any. However, for URLs which - use the + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - scheme `http`, `https`, or no scheme, one can optionally set up a - type + Example 2: Pack and unpack a message in Java. - server that maps type URLs to message definitions as follows: + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + Example 3: Pack and unpack a message in Python. - * If no scheme is provided, `https` is assumed. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + Example 4: Pack and unpack a message in Go - Note: this functionality is not currently available in the - official + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - protobuf release, and it is not used for type URLs beginning with + The pack methods provided by protobuf library will by default + use - type.googleapis.com. + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + methods only use the fully qualified type name after the last + '/' - Schemes other than `http`, `https` (or the empty scheme) might be + in the type URL, for example "foo.bar.com/x/y.z" will yield type - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a + name "y.z". - URL that describes the type of the serialized message. - Protobuf library provides support to pack/unpack Any values in the - form + JSON - of utility functions or additional generated methods of the Any type. + ==== + The JSON representation of an `Any` value uses the regular - Example 1: Pack and unpack a message in C++. + representation of the deserialized, embedded message, with an - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + additional field `@type` which contains the type URL. Example: - Example 2: Pack and unpack a message in Java. + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - Example 3: Pack and unpack a message in Python. + If the embedded message type is well-known and has a custom JSON - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + representation, that representation will be embedded adding a + field - Example 4: Pack and unpack a message in Go + `value` which holds the custom JSON in addition to the `@type` - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + field. Example (for message [google.protobuf.Duration][]): - The pack methods provided by protobuf library will by default use + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + messages is a list of `sdk.Msg`s that will be executed if the + proposal passes. + description: QueryProposalResponse is the Query/Proposal response type. + cosmos.group.v1.QueryProposalsByGroupPolicyResponse: + type: object + properties: + proposals: + type: array + items: + type: object + properties: + id: + type: string + format: uint64 + description: id is the unique id of the proposal. + group_policy_address: + type: string + description: group_policy_address is the account address of group policy. + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the proposal. + proposers: + type: array + items: + type: string + description: proposers are the account addresses of the proposers. + submit_time: + type: string + format: date-time + description: >- + submit_time is a timestamp specifying when a proposal was + submitted. + group_version: + type: string + format: uint64 + description: >- + group_version tracks the version of the group at proposal + submission. - 'type.googleapis.com/full.type.name' as the type URL and the unpack + This field is here for informational purposes only. + group_policy_version: + type: string + format: uint64 + description: >- + group_policy_version tracks the version of the group policy at + proposal submission. - methods only use the fully qualified type name after the last '/' + When a decision policy is changed, existing proposals from + previous policy - in the type URL, for example "foo.bar.com/x/y.z" will yield type + versions will become invalid with the `ABORTED` status. - name "y.z". + This field is here for informational purposes only. + status: + description: >- + status represents the high level position in the life cycle of + the proposal. Initial value is Submitted. + type: string + enum: + - PROPOSAL_STATUS_UNSPECIFIED + - PROPOSAL_STATUS_SUBMITTED + - PROPOSAL_STATUS_ACCEPTED + - PROPOSAL_STATUS_REJECTED + - PROPOSAL_STATUS_ABORTED + - PROPOSAL_STATUS_WITHDRAWN + default: PROPOSAL_STATUS_UNSPECIFIED + final_tally_result: + description: >- + final_tally_result contains the sums of all weighted votes for + this + proposal for each vote option. It is empty at submission, and + only + populated after tallying, at voting period end or at proposal + execution, - JSON + whichever happens first. + type: object + properties: + yes_count: + type: string + description: yes_count is the weighted sum of yes votes. + abstain_count: + type: string + description: abstain_count is the weighted sum of abstainers. + no_count: + type: string + description: no_count is the weighted sum of no votes. + no_with_veto_count: + type: string + description: no_with_veto_count is the weighted sum of veto. + voting_period_end: + type: string + format: date-time + description: >- + voting_period_end is the timestamp before which voting must be + done. - ==== + Unless a successfull MsgExec is called before (to execute a + proposal whose - The JSON representation of an `Any` value uses the regular + tally is successful before the voting period ends), tallying + will be done - representation of the deserialized, embedded message, with an + at this point, and the `final_tally_result`and `status` fields + will be - additional field `@type` which contains the type URL. Example: + accordingly updated. + executor_result: + description: >- + executor_result is the final result of the proposal execution. + Initial value is NotRun. + type: string + enum: + - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + - PROPOSAL_EXECUTOR_RESULT_NOT_RUN + - PROPOSAL_EXECUTOR_RESULT_SUCCESS + - PROPOSAL_EXECUTOR_RESULT_FAILURE + default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED + messages: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + protocol buffer message. This string must contain at least - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + one "/" character. The last segment of the URL's path must + represent - If the embedded message type is well-known and has a custom JSON + the fully qualified name of the type (as in - representation, that representation will be embedded adding a field + `path/google.protobuf.Duration`). The name should be in a + canonical form - `value` which holds the custom JSON in addition to the `@type` + (e.g., leading "." is not accepted). - field. Example (for message [google.protobuf.Duration][]): - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: data is the app specific metadata of the NFT class. Optional - description: Class defines the class of the nft type. - cosmos.nft.v1beta1.NFT: - type: object - properties: - class_id: - type: string - title: >- - class_id associated with the NFT, similar to the contract address of - ERC721 - id: - type: string - title: id is a unique identifier of the NFT - uri: - type: string - title: uri for the NFT metadata stored off chain - uri_hash: - type: string - title: uri_hash is a hash of the document pointed by uri - data: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + In practice, teams usually precompile into the binary all + types that they - protocol buffer message. This string must contain at least + expect it to use in the context of Any. However, for URLs + which use the - one "/" character. The last segment of the URL's path must - represent + scheme `http`, `https`, or no scheme, one can optionally + set up a type - the fully qualified name of the type (as in + server that maps type URLs to message definitions as + follows: - `path/google.protobuf.Duration`). The name should be in a - canonical form - (e.g., leading "." is not accepted). + * If no scheme is provided, `https` is assumed. + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) - In practice, teams usually precompile into the binary all types - that they + Note: this functionality is not currently available in the + official - expect it to use in the context of Any. However, for URLs which - use the + protobuf release, and it is not used for type URLs + beginning with - scheme `http`, `https`, or no scheme, one can optionally set up a - type + type.googleapis.com. - server that maps type URLs to message definitions as follows: + Schemes other than `http`, `https` (or the empty scheme) + might be - * If no scheme is provided, `https` is assumed. + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + URL that describes the type of the serialized message. - Note: this functionality is not currently available in the - official - protobuf release, and it is not used for type URLs beginning with + Protobuf library provides support to pack/unpack Any values in + the form - type.googleapis.com. + of utility functions or additional generated methods of the + Any type. - Schemes other than `http`, `https` (or the empty scheme) might be + Example 1: Pack and unpack a message in C++. - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - URL that describes the type of the serialized message. + Example 2: Pack and unpack a message in Java. + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - Protobuf library provides support to pack/unpack Any values in the - form + Example 3: Pack and unpack a message in Python. - of utility functions or additional generated methods of the Any type. + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + Example 4: Pack and unpack a message in Go - Example 1: Pack and unpack a message in C++. + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + The pack methods provided by protobuf library will by default + use - Example 2: Pack and unpack a message in Java. + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + methods only use the fully qualified type name after the last + '/' - Example 3: Pack and unpack a message in Python. + in the type URL, for example "foo.bar.com/x/y.z" will yield + type - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + name "y.z". - Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - The pack methods provided by protobuf library will by default use + JSON - 'type.googleapis.com/full.type.name' as the type URL and the unpack + ==== - methods only use the fully qualified type name after the last '/' + The JSON representation of an `Any` value uses the regular - in the type URL, for example "foo.bar.com/x/y.z" will yield type + representation of the deserialized, embedded message, with an - name "y.z". + additional field `@type` which contains the type URL. Example: + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - JSON + If the embedded message type is well-known and has a custom + JSON - ==== + representation, that representation will be embedded adding a + field - The JSON representation of an `Any` value uses the regular + `value` which holds the custom JSON in addition to the `@type` - representation of the deserialized, embedded message, with an + field. Example (for message [google.protobuf.Duration][]): - additional field `@type` which contains the type URL. Example: + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + messages is a list of `sdk.Msg`s that will be executed if the + proposal passes. + description: >- + Proposal defines a group proposal. Any member of a group can submit + a proposal - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + for a group policy to decide upon. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + A proposal consists of a set of `sdk.Msg`s that will be executed if + the proposal - If the embedded message type is well-known and has a custom JSON + passes as well as some optional metadata associated with the + proposal. + description: proposals are the proposals with given group policy. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - representation, that representation will be embedded adding a field + was set, its value is undefined otherwise + description: >- + QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy + response type. + cosmos.group.v1.QueryTallyResultResponse: + type: object + properties: + tally: + description: tally defines the requested tally. + type: object + properties: + yes_count: + type: string + description: yes_count is the weighted sum of yes votes. + abstain_count: + type: string + description: abstain_count is the weighted sum of abstainers. + no_count: + type: string + description: no_count is the weighted sum of no votes. + no_with_veto_count: + type: string + description: no_with_veto_count is the weighted sum of veto. + description: QueryTallyResultResponse is the Query/TallyResult response type. + cosmos.group.v1.QueryVoteByProposalVoterResponse: + type: object + properties: + vote: + description: vote is the vote with given proposal_id and voter. + type: object + properties: + proposal_id: + type: string + format: uint64 + description: proposal is the unique ID of the proposal. + voter: + type: string + description: voter is the account address of the voter. + option: + description: option is the voter's choice on the proposal. + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the vote. + submit_time: + type: string + format: date-time + description: submit_time is the timestamp when the vote was submitted. + description: >- + QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response + type. + cosmos.group.v1.QueryVotesByProposalResponse: + type: object + properties: + votes: + type: array + items: + type: object + properties: + proposal_id: + type: string + format: uint64 + description: proposal is the unique ID of the proposal. + voter: + type: string + description: voter is the account address of the voter. + option: + description: option is the voter's choice on the proposal. + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the vote. + submit_time: + type: string + format: date-time + description: submit_time is the timestamp when the vote was submitted. + description: Vote represents a vote for a proposal. + description: votes are the list of votes for given proposal_id. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - `value` which holds the custom JSON in addition to the `@type` + was set, its value is undefined otherwise + description: QueryVotesByProposalResponse is the Query/VotesByProposal response type. + cosmos.group.v1.QueryVotesByVoterResponse: + type: object + properties: + votes: + type: array + items: + type: object + properties: + proposal_id: + type: string + format: uint64 + description: proposal is the unique ID of the proposal. + voter: + type: string + description: voter is the account address of the voter. + option: + description: option is the voter's choice on the proposal. + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the vote. + submit_time: + type: string + format: date-time + description: submit_time is the timestamp when the vote was submitted. + description: Vote represents a vote for a proposal. + description: votes are the list of votes by given voter. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - field. Example (for message [google.protobuf.Duration][]): + was set, its value is undefined otherwise + description: QueryVotesByVoterResponse is the Query/VotesByVoter response type. + cosmos.group.v1.TallyResult: + type: object + properties: + yes_count: + type: string + description: yes_count is the weighted sum of yes votes. + abstain_count: + type: string + description: abstain_count is the weighted sum of abstainers. + no_count: + type: string + description: no_count is the weighted sum of no votes. + no_with_veto_count: + type: string + description: no_with_veto_count is the weighted sum of veto. + description: TallyResult represents the sum of weighted votes for each vote option. + cosmos.group.v1.Vote: + type: object + properties: + proposal_id: + type: string + format: uint64 + description: proposal is the unique ID of the proposal. + voter: + type: string + description: voter is the account address of the voter. + option: + description: option is the voter's choice on the proposal. + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + metadata: + type: string + description: metadata is any arbitrary metadata to attached to the vote. + submit_time: + type: string + format: date-time + description: submit_time is the timestamp when the vote was submitted. + description: Vote represents a vote for a proposal. + cosmos.group.v1.VoteOption: + type: string + enum: + - VOTE_OPTION_UNSPECIFIED + - VOTE_OPTION_YES + - VOTE_OPTION_ABSTAIN + - VOTE_OPTION_NO + - VOTE_OPTION_NO_WITH_VETO + default: VOTE_OPTION_UNSPECIFIED + description: |- + VoteOption enumerates the valid vote options for a given proposal. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: data is an app specific data of the NFT. Optional - description: NFT defines the NFT. - cosmos.nft.v1beta1.QueryBalanceResponse: + - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines an unspecified vote option which will + return an error. + - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. + - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. + - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. + - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. + provenance.attribute.v1.Attribute: + type: object + properties: + name: + type: string + description: The attribute name. + value: + type: string + format: byte + description: The attribute value. + attribute_type: + description: The attribute value type. + type: string + enum: + - ATTRIBUTE_TYPE_UNSPECIFIED + - ATTRIBUTE_TYPE_UUID + - ATTRIBUTE_TYPE_JSON + - ATTRIBUTE_TYPE_STRING + - ATTRIBUTE_TYPE_URI + - ATTRIBUTE_TYPE_INT + - ATTRIBUTE_TYPE_FLOAT + - ATTRIBUTE_TYPE_PROTO + - ATTRIBUTE_TYPE_BYTES + default: ATTRIBUTE_TYPE_UNSPECIFIED + title: >- + AttributeType defines the type of the data stored in the attribute + value + address: + type: string + title: The address the attribute is bound to + expiration_date: + type: string + format: date-time + description: Time that an attribute will expire. + title: >- + Attribute holds a typed key/value structure for data associated with an + account + provenance.attribute.v1.AttributeType: + type: string + enum: + - ATTRIBUTE_TYPE_UNSPECIFIED + - ATTRIBUTE_TYPE_UUID + - ATTRIBUTE_TYPE_JSON + - ATTRIBUTE_TYPE_STRING + - ATTRIBUTE_TYPE_URI + - ATTRIBUTE_TYPE_INT + - ATTRIBUTE_TYPE_FLOAT + - ATTRIBUTE_TYPE_PROTO + - ATTRIBUTE_TYPE_BYTES + default: ATTRIBUTE_TYPE_UNSPECIFIED + description: >- + - ATTRIBUTE_TYPE_UNSPECIFIED: ATTRIBUTE_TYPE_UNSPECIFIED defines an + unknown/invalid type + - ATTRIBUTE_TYPE_UUID: ATTRIBUTE_TYPE_UUID defines an attribute value that contains a string value representation of a V4 uuid + - ATTRIBUTE_TYPE_JSON: ATTRIBUTE_TYPE_JSON defines an attribute value that contains a byte string containing json data + - ATTRIBUTE_TYPE_STRING: ATTRIBUTE_TYPE_STRING defines an attribute value that contains a generic string value + - ATTRIBUTE_TYPE_URI: ATTRIBUTE_TYPE_URI defines an attribute value that contains a URI + - ATTRIBUTE_TYPE_INT: ATTRIBUTE_TYPE_INT defines an attribute value that contains an integer (cast as int64) + - ATTRIBUTE_TYPE_FLOAT: ATTRIBUTE_TYPE_FLOAT defines an attribute value that contains a float + - ATTRIBUTE_TYPE_PROTO: ATTRIBUTE_TYPE_PROTO defines an attribute value that contains a serialized proto value in bytes + - ATTRIBUTE_TYPE_BYTES: ATTRIBUTE_TYPE_BYTES defines an attribute value that contains an untyped array of bytes + title: AttributeType defines the type of the data stored in the attribute value + provenance.attribute.v1.Params: type: object properties: - amount: + max_value_length: + type: integer + format: int64 + title: maximum length of data to allow in an attribute value + description: Params defines the set of params for the attribute module. + provenance.attribute.v1.QueryAccountDataResponse: + type: object + properties: + value: type: string - format: uint64 - title: QueryBalanceResponse is the response type for the Query/Balance RPC method - cosmos.nft.v1beta1.QueryClassResponse: + description: value is the accountdata attribute value for the requested account. + description: >- + QueryAccountDataResponse is the response type for the Query/AccountData + method. + provenance.attribute.v1.QueryAttributeAccountsResponse: type: object properties: - class: + accounts: + type: array + items: + type: string + title: list of account addresses that have attributes of request name + pagination: + description: pagination defines an optional pagination for the request. type: object properties: - id: + next_key: type: string - title: >- - id defines the unique identifier of the NFT classification, - similar to the contract address of ERC721 - name: + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string + format: uint64 title: >- - name defines the human-readable name of the NFT classification. - Optional - symbol: - type: string - title: symbol is an abbreviated name for nft classification. Optional - description: + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryAttributeAccountsResponse is the response type for the + Query/AttributeAccounts method. + provenance.attribute.v1.QueryAttributeResponse: + type: object + properties: + account: + type: string + description: >- + a string containing the address of the account the attributes are + assigned to. + attributes: + type: array + items: + type: object + properties: + name: + type: string + description: The attribute name. + value: + type: string + format: byte + description: The attribute value. + attribute_type: + description: The attribute value type. + type: string + enum: + - ATTRIBUTE_TYPE_UNSPECIFIED + - ATTRIBUTE_TYPE_UUID + - ATTRIBUTE_TYPE_JSON + - ATTRIBUTE_TYPE_STRING + - ATTRIBUTE_TYPE_URI + - ATTRIBUTE_TYPE_INT + - ATTRIBUTE_TYPE_FLOAT + - ATTRIBUTE_TYPE_PROTO + - ATTRIBUTE_TYPE_BYTES + default: ATTRIBUTE_TYPE_UNSPECIFIED + title: >- + AttributeType defines the type of the data stored in the + attribute value + address: + type: string + title: The address the attribute is bound to + expiration_date: + type: string + format: date-time + description: Time that an attribute will expire. + title: >- + Attribute holds a typed key/value structure for data associated with + an account + title: a list of attribute values + pagination: + description: pagination defines an optional pagination for the request. + type: object + properties: + next_key: type: string - title: description is a brief description of nft classification. Optional - uri: + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string + format: uint64 title: >- - uri for the class metadata stored off chain. It can define schema - for Class and NFT `Data` attributes. Optional - uri_hash: - type: string - title: uri_hash is a hash of the document pointed by uri. Optional - data: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally set - up a type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might - be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a - field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): + total is total number of results available if + PageRequest.count_total - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: data is the app specific metadata of the NFT class. Optional - description: Class defines the class of the nft type. - title: QueryClassResponse is the response type for the Query/Class RPC method - cosmos.nft.v1beta1.QueryClassesResponse: + was set, its value is undefined otherwise + description: >- + QueryAttributeResponse is the response type for the Query/Attribute + method. + provenance.attribute.v1.QueryAttributesResponse: type: object properties: - classes: + account: + type: string + title: >- + a string containing the address of the account the attributes are + assigned to= + attributes: type: array items: type: object properties: - id: - type: string - title: >- - id defines the unique identifier of the NFT classification, - similar to the contract address of ERC721 name: type: string - title: >- - name defines the human-readable name of the NFT classification. - Optional - symbol: + description: The attribute name. + value: type: string - title: symbol is an abbreviated name for nft classification. Optional - description: + format: byte + description: The attribute value. + attribute_type: + description: The attribute value type. type: string + enum: + - ATTRIBUTE_TYPE_UNSPECIFIED + - ATTRIBUTE_TYPE_UUID + - ATTRIBUTE_TYPE_JSON + - ATTRIBUTE_TYPE_STRING + - ATTRIBUTE_TYPE_URI + - ATTRIBUTE_TYPE_INT + - ATTRIBUTE_TYPE_FLOAT + - ATTRIBUTE_TYPE_PROTO + - ATTRIBUTE_TYPE_BYTES + default: ATTRIBUTE_TYPE_UNSPECIFIED title: >- - description is a brief description of nft classification. - Optional - uri: + AttributeType defines the type of the data stored in the + attribute value + address: type: string - title: >- - uri for the class metadata stored off chain. It can define - schema for Class and NFT `Data` attributes. Optional - uri_hash: + title: The address the attribute is bound to + expiration_date: type: string - title: uri_hash is a hash of the document pointed by uri. Optional - data: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally set - up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) - might be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in - the form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default - use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the last - '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a - field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): + format: date-time + description: Time that an attribute will expire. + title: >- + Attribute holds a typed key/value structure for data associated with + an account + title: a list of attribute values + pagination: + description: pagination defines an optional pagination for the request. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: data is the app specific metadata of the NFT class. Optional - description: Class defines the class of the nft type. + was set, its value is undefined otherwise + description: >- + QueryAttributesResponse is the response type for the Query/Attributes + method. + provenance.attribute.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_value_length: + type: integer + format: int64 + title: maximum length of data to allow in an attribute value + description: QueryParamsResponse is the response type for the Query/Params RPC method. + provenance.attribute.v1.QueryScanResponse: + type: object + properties: + account: + type: string + title: >- + a string containing the address of the account the attributes are + assigned to= + attributes: + type: array + items: + type: object + properties: + name: + type: string + description: The attribute name. + value: + type: string + format: byte + description: The attribute value. + attribute_type: + description: The attribute value type. + type: string + enum: + - ATTRIBUTE_TYPE_UNSPECIFIED + - ATTRIBUTE_TYPE_UUID + - ATTRIBUTE_TYPE_JSON + - ATTRIBUTE_TYPE_STRING + - ATTRIBUTE_TYPE_URI + - ATTRIBUTE_TYPE_INT + - ATTRIBUTE_TYPE_FLOAT + - ATTRIBUTE_TYPE_PROTO + - ATTRIBUTE_TYPE_BYTES + default: ATTRIBUTE_TYPE_UNSPECIFIED + title: >- + AttributeType defines the type of the data stored in the + attribute value + address: + type: string + title: The address the attribute is bound to + expiration_date: + type: string + format: date-time + description: Time that an attribute will expire. + title: >- + Attribute holds a typed key/value structure for data associated with + an account + title: a list of attribute values pagination: + description: pagination defines an optional pagination for the request. type: object properties: next_key: @@ -79710,1331 +95250,2404 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise + description: QueryScanResponse is the response type for the Query/Scan method. + provenance.attribute.v1.MsgAddAttributeResponse: + type: object + description: MsgAddAttributeResponse defines the Msg/AddAttribute response type. + provenance.attribute.v1.MsgDeleteAttributeResponse: + type: object + description: MsgDeleteAttributeResponse defines the Msg/DeleteAttribute response type. + provenance.attribute.v1.MsgDeleteDistinctAttributeResponse: + type: object + description: >- + MsgDeleteDistinctAttributeResponse defines the Msg/DeleteDistinctAttribute + response type. + provenance.attribute.v1.MsgSetAccountDataResponse: + type: object + description: MsgSetAccountDataResponse defines the Msg/SetAccountData response type. + provenance.attribute.v1.MsgUpdateAttributeExpirationResponse: + type: object + description: MsgUpdateAttributeExpirationResponse defines the Msg/Vote response type. + provenance.attribute.v1.MsgUpdateAttributeResponse: + type: object + description: MsgUpdateAttributeResponse defines the Msg/UpdateAttribute response type. + provenance.exchange.v1.AccessGrant: + type: object + properties: + address: + type: string + description: address is the address that these permissions apply to. + permissions: + type: array + items: + type: string + enum: + - PERMISSION_UNSPECIFIED + - PERMISSION_SETTLE + - PERMISSION_SET_IDS + - PERMISSION_CANCEL + - PERMISSION_WITHDRAW + - PERMISSION_UPDATE + - PERMISSION_PERMISSIONS + - PERMISSION_ATTRIBUTES + default: PERMISSION_UNSPECIFIED + description: >- + Permission defines the different types of permission that can be + given to an account for a market. + + - PERMISSION_UNSPECIFIED: PERMISSION_UNSPECIFIED is the zero-value Permission; it is an error to use it. + - PERMISSION_SETTLE: PERMISSION_SETTLE is the ability to use the Settle Tx endpoint on behalf of a market. + - PERMISSION_SET_IDS: PERMISSION_SET_IDS is the ability to use the SetOrderExternalID Tx endpoint on behalf of a market. + - PERMISSION_CANCEL: PERMISSION_CANCEL is the ability to use the Cancel Tx endpoint on behalf of a market. + - PERMISSION_WITHDRAW: PERMISSION_WITHDRAW is the ability to use the MarketWithdraw Tx endpoint. + - PERMISSION_UPDATE: PERMISSION_UPDATE is the ability to use the MarketUpdate* Tx endpoints. + - PERMISSION_PERMISSIONS: PERMISSION_PERMISSIONS is the ability to use the MarketManagePermissions Tx endpoint. + - PERMISSION_ATTRIBUTES: PERMISSION_ATTRIBUTES is the ability to use the MarketManageReqAttrs Tx endpoint. + description: allowed is the list of permissions available for the address. + description: >- + AddrPermissions associates an address with a list of permissions available + for that address. + provenance.exchange.v1.AccountAmount: + type: object + properties: + account: + type: string + description: >- + account is the bech32 address string of the account associated with + the amount. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: AccountAmount associates an account with a coins amount. + provenance.exchange.v1.AskOrder: + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this order and has the + assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string description: |- - PageResponse is to be embedded in gRPC response messages where the - corresponding request message has used PageRequest. + Coin defines a token with a denomination and an amount. - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } - title: QueryClassesResponse is the response type for the Query/Classes RPC method - cosmos.nft.v1beta1.QueryNFTResponse: + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this order + should be allowed, and should be false if the + + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify this + order. Max length is 100 characters. + + If an order in this market with this external id already exists, this + order will be rejected. + description: AskOrder represents someone's desire to sell something at a minimum price. + provenance.exchange.v1.BidOrder: type: object properties: - nft: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and has the + price to spend. + assets: type: object properties: - class_id: + denom: type: string - title: >- - class_id associated with the NFT, similar to the contract address - of ERC721 - id: + amount: type: string - title: id is a unique identifier of the NFT - uri: + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + price: + type: object + properties: + denom: type: string - title: uri for the NFT metadata stored off chain - uri_hash: + amount: type: string - title: uri_hash is a hash of the document pointed by uri - data: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + description: |- + Coin defines a token with a denomination and an amount. - protocol buffer message. This string must contain at least + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - one "/" character. The last segment of the URL's path must - represent + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and proportional) that + the buyer will pay (in addition to the price) - the fully qualified name of the type (as in + when the order is settled. A hold is placed on this until the order is + filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this order + should be allowed, and should be false if the - `path/google.protobuf.Duration`). The name should be in a - canonical form + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify this + order. Max length is 100 characters. - (e.g., leading "." is not accepted). + If an order in this market with this external id already exists, this + order will be rejected. + description: BidOrder represents someone's desire to buy something at a specific price. + provenance.exchange.v1.Commitment: + type: object + properties: + account: + type: string + description: account is the bech32 address string with the committed funds. + market_id: + type: integer + format: int64 + description: >- + market_id is the numeric identifier of the market the funds are + committed to. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + amount is the funds that have been committed by the account to the + market. + description: Commitment contains information on committed funds. + provenance.exchange.v1.DenomSplit: + type: object + properties: + denom: + type: string + description: denom is the coin denomination this split applies to. + split: + type: integer + format: int64 + description: >- + split is the proportion of fees the exchange receives for this denom + in basis points. - In practice, teams usually precompile into the binary all - types that they + E.g. 100 = 1%. Min = 0, Max = 10000. + description: >- + DenomSplit associates a coin denomination with an amount the exchange + receives for that denom. + provenance.exchange.v1.FeeRatio: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - expect it to use in the context of Any. However, for URLs - which use the + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - scheme `http`, `https`, or no scheme, one can optionally set - up a type + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - server that maps type URLs to message definitions as follows: + For an order to be valid, its price must be evenly divisible by a + FeeRatio's price. + provenance.exchange.v1.Market: + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id is the numerical identifier for this market. + market_details: + description: market_details is some information about this market. + type: object + properties: + name: + type: string + description: name is a moniker that people can use to refer to this market. + description: + type: string + description: >- + description extra information about this market. The field is + meant to be human-readable. + website_url: + type: string + description: >- + website_url is a url people can use to get to this market, or at + least get more information about this market. + icon_uri: + type: string + description: icon_uri is a uri for an icon to associate with this market. + fee_create_ask_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + fee_create_ask_flat is the flat fee charged for creating an ask order. - * If no scheme is provided, `https` is assumed. + Each coin entry is a separate option. When an ask is created, one of + these must be paid. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + If empty, no fee is required to create an ask order. + fee_create_bid_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Note: this functionality is not currently available in the - official + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + fee_create_bid_flat is the flat fee charged for creating a bid order. - protobuf release, and it is not used for type URLs beginning - with + Each coin entry is a separate option. When a bid is created, one of + these must be paid. - type.googleapis.com. + If empty, no fee is required to create a bid order. + fee_seller_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + fee_seller_settlement_flat is the flat fee charged to the seller + during settlement. - Schemes other than `http`, `https` (or the empty scheme) might - be + Each coin entry is a separate option. - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + When an ask is settled, the seller will pay the amount in the denom + that matches the price they received. + fee_seller_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - URL that describes the type of the serialized message. + NOTE: The amount field is an Int which implements the custom + method - Protobuf library provides support to pack/unpack Any values in the - form + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - of utility functions or additional generated methods of the Any - type. + NOTE: The amount field is an Int which implements the custom + method - Example 1: Pack and unpack a message in C++. + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + For an order to be valid, its price must be evenly divisible by a + FeeRatio's price. + description: >- + fee_seller_settlement_ratios is the fee to charge a seller during + settlement based on the price they are receiving. - Example 2: Pack and unpack a message in Java. + The price and fee denoms must be equal for each entry, and only one + entry for any given denom is allowed. + fee_buyer_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + fee_buyer_settlement_flat is the flat fee charged to the buyer during + settlement. - Example 3: Pack and unpack a message in Python. + Each coin entry is a separate option. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + When a bid is created, the settlement fees provided must contain one + of these. + fee_buyer_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + NOTE: The amount field is an Int which implements the custom + method - The pack methods provided by protobuf library will by default use + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - methods only use the fully qualified type name after the last '/' + NOTE: The amount field is an Int which implements the custom + method - in the type URL, for example "foo.bar.com/x/y.z" will yield type + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - name "y.z". + For an order to be valid, its price must be evenly divisible by a + FeeRatio's price. + description: >- + fee_buyer_settlement_ratios is the fee to charge a buyer during + settlement based on the price they are spending. + The price and fee denoms do not have to equal. Multiple entries for + any given price or fee denom are allowed, but + each price denom to fee denom pair can only have one entry. + accepting_orders: + type: boolean + description: >- + accepting_orders is whether this market is allowing orders to be + created for it. + allow_user_settlement: + type: boolean + description: >- + allow_user_settlement is whether this market allows users to initiate + their own settlements. - JSON + For example, the FillBids and FillAsks endpoints are available if and + only if this is true. - ==== + The MarketSettle endpoint is only available to market actors + regardless of the value of this field. + access_grants: + type: array + items: + type: object + properties: + address: + type: string + description: address is the address that these permissions apply to. + permissions: + type: array + items: + type: string + enum: + - PERMISSION_UNSPECIFIED + - PERMISSION_SETTLE + - PERMISSION_SET_IDS + - PERMISSION_CANCEL + - PERMISSION_WITHDRAW + - PERMISSION_UPDATE + - PERMISSION_PERMISSIONS + - PERMISSION_ATTRIBUTES + default: PERMISSION_UNSPECIFIED + description: >- + Permission defines the different types of permission that can + be given to an account for a market. + + - PERMISSION_UNSPECIFIED: PERMISSION_UNSPECIFIED is the zero-value Permission; it is an error to use it. + - PERMISSION_SETTLE: PERMISSION_SETTLE is the ability to use the Settle Tx endpoint on behalf of a market. + - PERMISSION_SET_IDS: PERMISSION_SET_IDS is the ability to use the SetOrderExternalID Tx endpoint on behalf of a market. + - PERMISSION_CANCEL: PERMISSION_CANCEL is the ability to use the Cancel Tx endpoint on behalf of a market. + - PERMISSION_WITHDRAW: PERMISSION_WITHDRAW is the ability to use the MarketWithdraw Tx endpoint. + - PERMISSION_UPDATE: PERMISSION_UPDATE is the ability to use the MarketUpdate* Tx endpoints. + - PERMISSION_PERMISSIONS: PERMISSION_PERMISSIONS is the ability to use the MarketManagePermissions Tx endpoint. + - PERMISSION_ATTRIBUTES: PERMISSION_ATTRIBUTES is the ability to use the MarketManageReqAttrs Tx endpoint. + description: allowed is the list of permissions available for the address. + description: >- + AddrPermissions associates an address with a list of permissions + available for that address. + description: >- + access_grants is the list of addresses and permissions granted for + this market. + req_attr_create_ask: + type: array + items: + type: string + description: >- + req_attr_create_ask is a list of attributes required on an account for + it to be allowed to create an ask order. - The JSON representation of an `Any` value uses the regular + An account must have all of these attributes in order to create an ask + order in this market. - representation of the deserialized, embedded message, with an + If the list is empty, any account can create ask orders in this + market. - additional field `@type` which contains the type URL. Example: - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + An entry that starts with "*." will match any attributes that end with + the rest of it. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; but + not "b.a", "xb.a", "b.x.a", or "c.b.a.x". + req_attr_create_bid: + type: array + items: + type: string + description: >- + req_attr_create_ask is a list of attributes required on an account for + it to be allowed to create a bid order. - If the embedded message type is well-known and has a custom JSON + An account must have all of these attributes in order to create a bid + order in this market. - representation, that representation will be embedded adding a - field + If the list is empty, any account can create bid orders in this + market. - `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + An entry that starts with "*." will match any attributes that end with + the rest of it. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: data is an app specific data of the NFT. Optional - description: NFT defines the NFT. - title: QueryNFTResponse is the response type for the Query/NFT RPC method - cosmos.nft.v1beta1.QueryNFTsResponse: - type: object - properties: - nfts: + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; but + not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + accepting_commitments: + type: boolean + description: >- + accepting_commitments is whether the market is allowing users to + commit funds to it. + fee_create_commitment_flat: type: array items: type: object properties: - class_id: - type: string - title: >- - class_id associated with the NFT, similar to the contract - address of ERC721 - id: - type: string - title: id is a unique identifier of the NFT - uri: + denom: type: string - title: uri for the NFT metadata stored off chain - uri_hash: + amount: type: string - title: uri_hash is a hash of the document pointed by uri - data: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + description: |- + Coin defines a token with a denomination and an amount. - protocol buffer message. This string must contain at least + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + fee_create_commitment_flat is the flat fee charged for creating a + commitment. - one "/" character. The last segment of the URL's path must - represent + Each coin entry is a separate option. When a commitment is created, + one of these must be paid. - the fully qualified name of the type (as in + If empty, no fee is required to create a commitment. + commitment_settlement_bips: + type: integer + format: int64 + description: >- + commitment_settlement_bips is the fraction of a commitment settlement + that will be paid to the exchange. - `path/google.protobuf.Duration`). The name should be in a - canonical form + It is represented in basis points (1/100th of 1%, e.g. 0.0001) and is + limited to 0 to 10,000 inclusive. - (e.g., leading "." is not accepted). + During a commitment settlement, the inputs are summed and NAVs are + used to convert that total to the + intermediary denom, then to the fee denom. That is then multiplied by + this value to get the fee amount - In practice, teams usually precompile into the binary all - types that they + that will be transferred out of the market's account into the exchange + for that settlement. - expect it to use in the context of Any. However, for URLs - which use the - scheme `http`, `https`, or no scheme, one can optionally set - up a type + Summing the inputs effectively doubles the value of the settlement + from what what is usually thought of - server that maps type URLs to message definitions as - follows: + as the value of a trade. That should be taken into account when + setting this value. + E.g. if two accounts are trading 10apples for 100grapes, the inputs + total will be 10apples,100grapes - * If no scheme is provided, `https` is assumed. + (which might then be converted to USD then nhash before applying this + ratio); Usually, though, the value - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + of that trade would be viewed as either just 10apples or just + 100grapes. + intermediary_denom: + type: string + description: >- + intermediary_denom is the denom that funds get converted to (before + being converted to the chain's fee denom) - Note: this functionality is not currently available in the - official + when calculating the fees that are paid to the exchange. NAVs are used + for this conversion and actions will fail - protobuf release, and it is not used for type URLs beginning - with + if a NAV is needed but not available. + req_attr_create_commitment: + type: array + items: + type: string + description: >- + req_attr_create_commitment is a list of attributes required on an + account for it to be allowed to create a - type.googleapis.com. + commitment. An account must have all of these attributes in order to + create a commitment in this market. + If the list is empty, any account can create commitments in this + market. - Schemes other than `http`, `https` (or the empty scheme) - might be - used with implementation specific semantics. - value: + An entry that starts with "*." will match any attributes that end with + the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; but + not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + description: Market contains all information about a market. + provenance.exchange.v1.MarketAmount: + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id is the numeric identifier the amount has been committed to. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: MarketAmount associates a market with a coins amount. + provenance.exchange.v1.MarketBrief: + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id is the numerical identifier for this market. + market_address: + type: string + description: market_address is the bech32 address string of this market's account. + market_details: + description: market_details is some information about this market. + type: object + properties: + name: + type: string + description: name is a moniker that people can use to refer to this market. + description: + type: string + description: >- + description extra information about this market. The field is + meant to be human-readable. + website_url: + type: string + description: >- + website_url is a url people can use to get to this market, or at + least get more information about this market. + icon_uri: + type: string + description: icon_uri is a uri for an icon to associate with this market. + description: >- + MarketBrief is a message containing brief, superficial information about a + market. + provenance.exchange.v1.MarketDetails: + type: object + properties: + name: + type: string + description: name is a moniker that people can use to refer to this market. + description: + type: string + description: >- + description extra information about this market. The field is meant to + be human-readable. + website_url: + type: string + description: >- + website_url is a url people can use to get to this market, or at least + get more information about this market. + icon_uri: + type: string + description: icon_uri is a uri for an icon to associate with this market. + description: MarketDetails contains information about a market. + provenance.exchange.v1.MsgGovCreateMarketRequest: + type: object + properties: + authority: + type: string + description: authority should be the governance module account address. + market: + description: >- + market is the initial market configuration. + + If the market_id is 0, the next available market_id will be used (once + voting ends). + + If it is not zero, it must not yet be in use when the voting period + ends. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id is the numerical identifier for this market. + market_details: + description: market_details is some information about this market. + type: object + properties: + name: + type: string + description: name is a moniker that people can use to refer to this market. + description: + type: string + description: >- + description extra information about this market. The field is + meant to be human-readable. + website_url: + type: string + description: >- + website_url is a url people can use to get to this market, or + at least get more information about this market. + icon_uri: + type: string + description: icon_uri is a uri for an icon to associate with this market. + fee_create_ask_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + Coin defines a token with a denomination and an amount. - URL that describes the type of the serialized message. + NOTE: The amount field is an Int which implements the custom + method - Protobuf library provides support to pack/unpack Any values in - the form + signatures required by gogoproto. + description: >- + fee_create_ask_flat is the flat fee charged for creating an ask + order. - of utility functions or additional generated methods of the Any - type. + Each coin entry is a separate option. When an ask is created, one + of these must be paid. + If empty, no fee is required to create an ask order. + fee_create_bid_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + NOTE: The amount field is an Int which implements the custom + method - Example 2: Pack and unpack a message in Java. + signatures required by gogoproto. + description: >- + fee_create_bid_flat is the flat fee charged for creating a bid + order. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Each coin entry is a separate option. When a bid is created, one + of these must be paid. - Example 3: Pack and unpack a message in Python. + If empty, no fee is required to create a bid order. + fee_seller_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - Example 4: Pack and unpack a message in Go + NOTE: The amount field is an Int which implements the custom + method - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + signatures required by gogoproto. + description: >- + fee_seller_settlement_flat is the flat fee charged to the seller + during settlement. - The pack methods provided by protobuf library will by default - use + Each coin entry is a separate option. - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + When an ask is settled, the seller will pay the amount in the + denom that matches the price they received. + fee_seller_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - methods only use the fully qualified type name after the last - '/' - in the type URL, for example "foo.bar.com/x/y.z" will yield type + NOTE: The amount field is an Int which implements the custom + method - name "y.z". + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom + method - JSON + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - ==== + For an order to be valid, its price must be evenly divisible by + a FeeRatio's price. + description: >- + fee_seller_settlement_ratios is the fee to charge a seller during + settlement based on the price they are receiving. - The JSON representation of an `Any` value uses the regular + The price and fee denoms must be equal for each entry, and only + one entry for any given denom is allowed. + fee_buyer_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + NOTE: The amount field is an Int which implements the custom + method - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + signatures required by gogoproto. + description: >- + fee_buyer_settlement_flat is the flat fee charged to the buyer + during settlement. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + Each coin entry is a separate option. - If the embedded message type is well-known and has a custom JSON + When a bid is created, the settlement fees provided must contain + one of these. + fee_buyer_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation, that representation will be embedded adding a - field - `value` which holds the custom JSON in addition to the `@type` + NOTE: The amount field is an Int which implements the custom + method - field. Example (for message [google.protobuf.Duration][]): + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: data is an app specific data of the NFT. Optional - description: NFT defines the NFT. - pagination: - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - was set, its value is undefined otherwise - description: |- - PageResponse is to be embedded in gRPC response messages where the - corresponding request message has used PageRequest. + NOTE: The amount field is an Int which implements the custom + method - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } - title: QueryNFTsResponse is the response type for the Query/NFTs RPC methods - cosmos.nft.v1beta1.QueryOwnerResponse: - type: object - properties: - owner: - type: string - title: QueryOwnerResponse is the response type for the Query/Owner RPC method - cosmos.nft.v1beta1.QuerySupplyResponse: - type: object - properties: - amount: - type: string - format: uint64 - title: QuerySupplyResponse is the response type for the Query/Supply RPC method - cosmos.group.v1.GroupInfo: - type: object - properties: - id: - type: string - format: uint64 - description: id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group's admin. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the group. - version: - type: string - format: uint64 - title: >- - version is used to track changes to a group's membership structure - that + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - would break existing proposals. Whenever any members weight is - changed, + For an order to be valid, its price must be evenly divisible by + a FeeRatio's price. + description: >- + fee_buyer_settlement_ratios is the fee to charge a buyer during + settlement based on the price they are spending. - or any member is added or removed this version is incremented and will + The price and fee denoms do not have to equal. Multiple entries + for any given price or fee denom are allowed, but - cause proposals based on older versions of this group to fail - total_weight: - type: string - description: total_weight is the sum of the group members' weights. - created_at: - type: string - format: date-time - description: created_at is a timestamp specifying when a group was created. - description: GroupInfo represents the high-level on-chain information for a group. - cosmos.group.v1.GroupMember: - type: object - properties: - group_id: - type: string - format: uint64 - description: group_id is the unique ID of the group. - member: - description: member is the member data. - type: object - properties: - address: - type: string - description: address is the member's account address. - weight: - type: string + each price denom to fee denom pair can only have one entry. + accepting_orders: + type: boolean description: >- - weight is the member's voting weight that should be greater than - 0. - metadata: - type: string - description: metadata is any arbitrary metadata attached to the member. - added_at: - type: string - format: date-time - description: added_at is a timestamp specifying when a member was added. - description: GroupMember represents the relationship between a group and a member. - cosmos.group.v1.GroupPolicyInfo: - type: object - properties: - address: - type: string - description: address is the account address of group policy. - group_id: - type: string - format: uint64 - description: group_id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group admin. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the group policy. - version: - type: string - format: uint64 - description: >- - version is used to track changes to a group's GroupPolicyInfo - structure that + accepting_orders is whether this market is allowing orders to be + created for it. + allow_user_settlement: + type: boolean + description: >- + allow_user_settlement is whether this market allows users to + initiate their own settlements. + + For example, the FillBids and FillAsks endpoints are available if + and only if this is true. + + The MarketSettle endpoint is only available to market actors + regardless of the value of this field. + access_grants: + type: array + items: + type: object + properties: + address: + type: string + description: address is the address that these permissions apply to. + permissions: + type: array + items: + type: string + enum: + - PERMISSION_UNSPECIFIED + - PERMISSION_SETTLE + - PERMISSION_SET_IDS + - PERMISSION_CANCEL + - PERMISSION_WITHDRAW + - PERMISSION_UPDATE + - PERMISSION_PERMISSIONS + - PERMISSION_ATTRIBUTES + default: PERMISSION_UNSPECIFIED + description: >- + Permission defines the different types of permission that + can be given to an account for a market. + + - PERMISSION_UNSPECIFIED: PERMISSION_UNSPECIFIED is the zero-value Permission; it is an error to use it. + - PERMISSION_SETTLE: PERMISSION_SETTLE is the ability to use the Settle Tx endpoint on behalf of a market. + - PERMISSION_SET_IDS: PERMISSION_SET_IDS is the ability to use the SetOrderExternalID Tx endpoint on behalf of a market. + - PERMISSION_CANCEL: PERMISSION_CANCEL is the ability to use the Cancel Tx endpoint on behalf of a market. + - PERMISSION_WITHDRAW: PERMISSION_WITHDRAW is the ability to use the MarketWithdraw Tx endpoint. + - PERMISSION_UPDATE: PERMISSION_UPDATE is the ability to use the MarketUpdate* Tx endpoints. + - PERMISSION_PERMISSIONS: PERMISSION_PERMISSIONS is the ability to use the MarketManagePermissions Tx endpoint. + - PERMISSION_ATTRIBUTES: PERMISSION_ATTRIBUTES is the ability to use the MarketManageReqAttrs Tx endpoint. + description: >- + allowed is the list of permissions available for the + address. + description: >- + AddrPermissions associates an address with a list of permissions + available for that address. + description: >- + access_grants is the list of addresses and permissions granted for + this market. + req_attr_create_ask: + type: array + items: + type: string + description: >- + req_attr_create_ask is a list of attributes required on an account + for it to be allowed to create an ask order. - would create a different result on a running proposal. - decision_policy: - type: object - properties: - type_url: - type: string + An account must have all of these attributes in order to create an + ask order in this market. + + If the list is empty, any account can create ask orders in this + market. + + + An entry that starts with "*." will match any attributes that end + with the rest of it. + + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "b.x.a", or "c.b.a.x". + req_attr_create_bid: + type: array + items: + type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized + req_attr_create_ask is a list of attributes required on an account + for it to be allowed to create a bid order. - protocol buffer message. This string must contain at least + An account must have all of these attributes in order to create a + bid order in this market. - one "/" character. The last segment of the URL's path must - represent + If the list is empty, any account can create bid orders in this + market. - the fully qualified name of the type (as in - `path/google.protobuf.Duration`). The name should be in a - canonical form + An entry that starts with "*." will match any attributes that end + with the rest of it. - (e.g., leading "." is not accepted). + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + accepting_commitments: + type: boolean + description: >- + accepting_commitments is whether the market is allowing users to + commit funds to it. + fee_create_commitment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - In practice, teams usually precompile into the binary all types - that they + NOTE: The amount field is an Int which implements the custom + method - expect it to use in the context of Any. However, for URLs which - use the + signatures required by gogoproto. + description: >- + fee_create_commitment_flat is the flat fee charged for creating a + commitment. - scheme `http`, `https`, or no scheme, one can optionally set up a - type + Each coin entry is a separate option. When a commitment is + created, one of these must be paid. - server that maps type URLs to message definitions as follows: + If empty, no fee is required to create a commitment. + commitment_settlement_bips: + type: integer + format: int64 + description: >- + commitment_settlement_bips is the fraction of a commitment + settlement that will be paid to the exchange. + It is represented in basis points (1/100th of 1%, e.g. 0.0001) and + is limited to 0 to 10,000 inclusive. - * If no scheme is provided, `https` is assumed. + During a commitment settlement, the inputs are summed and NAVs are + used to convert that total to the - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + intermediary denom, then to the fee denom. That is then multiplied + by this value to get the fee amount - Note: this functionality is not currently available in the - official + that will be transferred out of the market's account into the + exchange for that settlement. - protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + Summing the inputs effectively doubles the value of the settlement + from what what is usually thought of + as the value of a trade. That should be taken into account when + setting this value. - Schemes other than `http`, `https` (or the empty scheme) might be + E.g. if two accounts are trading 10apples for 100grapes, the + inputs total will be 10apples,100grapes - used with implementation specific semantics. - value: + (which might then be converted to USD then nhash before applying + this ratio); Usually, though, the value + + of that trade would be viewed as either just 10apples or just + 100grapes. + intermediary_denom: type: string - format: byte description: >- - Must be a valid serialized protocol buffer of the above specified - type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a + intermediary_denom is the denom that funds get converted to + (before being converted to the chain's fee denom) - URL that describes the type of the serialized message. + when calculating the fees that are paid to the exchange. NAVs are + used for this conversion and actions will fail + if a NAV is needed but not available. + req_attr_create_commitment: + type: array + items: + type: string + description: >- + req_attr_create_commitment is a list of attributes required on an + account for it to be allowed to create a - Protobuf library provides support to pack/unpack Any values in the - form + commitment. An account must have all of these attributes in order + to create a commitment in this market. - of utility functions or additional generated methods of the Any type. + If the list is empty, any account can create commitments in this + market. - Example 1: Pack and unpack a message in C++. + An entry that starts with "*." will match any attributes that end + with the rest of it. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + description: >- + MsgGovCreateMarketRequest is a request message for the GovCreateMarket + endpoint. + provenance.exchange.v1.MsgGovManageFeesRequest: + type: object + properties: + authority: + type: string + description: authority should be the governance module account address. + market_id: + type: integer + format: int64 + description: market_id is the market id that will get these fee updates. + add_fee_create_ask_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Example 2: Pack and unpack a message in Java. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: add_fee_create_ask_flat are the create-ask flat fee options to add. + remove_fee_create_ask_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + remove_fee_create_ask_flat are the create-ask flat fee options to + remove. + add_fee_create_bid_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Example 3: Pack and unpack a message in Python. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: add_fee_create_bid_flat are the create-bid flat fee options to add. + remove_fee_create_bid_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + remove_fee_create_bid_flat are the create-bid flat fee options to + remove. + add_fee_seller_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Example 4: Pack and unpack a message in Go + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + add_fee_seller_settlement_flat are the seller settlement flat fee + options to add. + remove_fee_seller_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + remove_fee_seller_settlement_flat are the seller settlement flat fee + options to remove. + add_fee_seller_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - The pack methods provided by protobuf library will by default use - 'type.googleapis.com/full.type.name' as the type URL and the unpack + NOTE: The amount field is an Int which implements the custom + method - methods only use the fully qualified type name after the last '/' + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - in the type URL, for example "foo.bar.com/x/y.z" will yield type - name "y.z". + NOTE: The amount field is an Int which implements the custom + method + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. + For an order to be valid, its price must be evenly divisible by a + FeeRatio's price. + description: >- + add_fee_seller_settlement_ratios are the seller settlement fee ratios + to add. + remove_fee_seller_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - JSON - ==== + NOTE: The amount field is an Int which implements the custom + method - The JSON representation of an `Any` value uses the regular + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + NOTE: The amount field is an Int which implements the custom + method - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + For an order to be valid, its price must be evenly divisible by a + FeeRatio's price. + description: >- + remove_fee_seller_settlement_ratios are the seller settlement fee + ratios to remove. + add_fee_buyer_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - If the embedded message type is well-known and has a custom JSON + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + add_fee_buyer_settlement_flat are the buyer settlement flat fee + options to add. + remove_fee_buyer_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - representation, that representation will be embedded adding a field + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + remove_fee_buyer_settlement_flat are the buyer settlement flat fee + options to remove. + add_fee_buyer_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + NOTE: The amount field is an Int which implements the custom + method - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - created_at: - type: string - format: date-time - description: created_at is a timestamp specifying when a group policy was created. - description: >- - GroupPolicyInfo represents the high-level on-chain information for a group - policy. - cosmos.group.v1.Member: - type: object - properties: - address: - type: string - description: address is the member's account address. - weight: - type: string - description: weight is the member's voting weight that should be greater than 0. - metadata: - type: string - description: metadata is any arbitrary metadata attached to the member. - added_at: - type: string - format: date-time - description: added_at is a timestamp specifying when a member was added. - description: |- - Member represents a group member with an account address, - non-zero weight, metadata and added_at timestamp. - cosmos.group.v1.Proposal: - type: object - properties: - id: - type: string - format: uint64 - description: id is the unique id of the proposal. - group_policy_address: - type: string - description: group_policy_address is the account address of group policy. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the proposal. - proposers: + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. + + For an order to be valid, its price must be evenly divisible by a + FeeRatio's price. + description: >- + add_fee_buyer_settlement_ratios are the buyer settlement fee ratios to + add. + remove_fee_buyer_settlement_ratios: type: array items: - type: string - description: proposers are the account addresses of the proposers. - submit_time: - type: string - format: date-time - description: submit_time is a timestamp specifying when a proposal was submitted. - group_version: - type: string - format: uint64 - description: |- - group_version tracks the version of the group at proposal submission. - This field is here for informational purposes only. - group_policy_version: - type: string - format: uint64 - description: >- - group_policy_version tracks the version of the group policy at - proposal submission. + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - When a decision policy is changed, existing proposals from previous - policy - versions will become invalid with the `ABORTED` status. + NOTE: The amount field is an Int which implements the custom + method - This field is here for informational purposes only. - status: - description: >- - status represents the high level position in the life cycle of the - proposal. Initial value is Submitted. - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_SUBMITTED - - PROPOSAL_STATUS_ACCEPTED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_ABORTED - - PROPOSAL_STATUS_WITHDRAWN - default: PROPOSAL_STATUS_UNSPECIFIED - final_tally_result: - description: >- - final_tally_result contains the sums of all weighted votes for this + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - proposal for each vote option. It is empty at submission, and only - populated after tallying, at voting period end or at proposal - execution, + NOTE: The amount field is an Int which implements the custom + method - whichever happens first. - type: object - properties: - yes_count: - type: string - description: yes_count is the weighted sum of yes votes. - abstain_count: - type: string - description: abstain_count is the weighted sum of abstainers. - no_count: - type: string - description: no_count is the weighted sum of no votes. - no_with_veto_count: - type: string - description: no_with_veto_count is the weighted sum of veto. - voting_period_end: - type: string - format: date-time - description: >- - voting_period_end is the timestamp before which voting must be done. + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - Unless a successfull MsgExec is called before (to execute a proposal - whose + For an order to be valid, its price must be evenly divisible by a + FeeRatio's price. + description: >- + remove_fee_buyer_settlement_ratios are the buyer settlement fee ratios + to remove. + add_fee_create_commitment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - tally is successful before the voting period ends), tallying will be - done + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + add_fee_create_commitment_flat are the create-commitment flat fee + options to add. + remove_fee_create_commitment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - at this point, and the `final_tally_result`and `status` fields will be + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + remove_fee_create_commitment_flat are the create-commitment flat fee + options to remove. + set_fee_commitment_settlement_bips: + type: integer + format: int64 + description: >- + set_fee_commitment_settlement_bips is the new + fee_commitment_settlement_bips for the market. - accordingly updated. - executor_result: + It is ignored if it is zero. To set it to zero set + unset_fee_commitment_settlement_bips to true. + unset_fee_commitment_settlement_bips: + type: boolean description: >- - executor_result is the final result of the proposal execution. Initial - value is NotRun. + unset_fee_commitment_settlement_bips, if true, sets the + fee_commitment_settlement_bips to zero. + + If false, it is ignored. + description: >- + MsgGovManageFeesRequest is a request message for the GovManageFees + endpoint. + provenance.exchange.v1.MsgMarketCommitmentSettleRequest: + type: object + properties: + admin: type: string - enum: - - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - - PROPOSAL_EXECUTOR_RESULT_NOT_RUN - - PROPOSAL_EXECUTOR_RESULT_SUCCESS - - PROPOSAL_EXECUTOR_RESULT_FAILURE - default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - messages: + description: >- + admin is the account with "settle" permission requesting this + settlement. + market_id: + type: integer + format: int64 + description: >- + market_id is the numerical identifier of the market requesting this + settlement. + inputs: type: array items: type: object properties: - type_url: + account: type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - + account is the bech32 address string of the account associated + with the amount. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - In practice, teams usually precompile into the binary all types - that they - expect it to use in the context of Any. However, for URLs which - use the + NOTE: The amount field is an Int which implements the custom + method - scheme `http`, `https`, or no scheme, one can optionally set up - a type + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: AccountAmount associates an account with a coins amount. + description: >- + inputs defines where the funds are coming from. All of these funds + must be already committed to the market. + outputs: + type: array + items: + type: object + properties: + account: + type: string + description: >- + account is the bech32 address string of the account associated + with the amount. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - server that maps type URLs to message definitions as follows: + NOTE: The amount field is an Int which implements the custom + method - * If no scheme is provided, `https` is assumed. + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: AccountAmount associates an account with a coins amount. + description: >- + outputs defines how the funds are to be distributed. These funds will + be re-committed in the destination accounts. + fees: + type: array + items: + type: object + properties: + account: + type: string + description: >- + account is the bech32 address string of the account associated + with the amount. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - Note: this functionality is not currently available in the - official + NOTE: The amount field is an Int which implements the custom + method - protobuf release, and it is not used for type URLs beginning - with + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: AccountAmount associates an account with a coins amount. + description: >- + fees is the funds that the market is collecting as part of this + settlement. - type.googleapis.com. + All of these funds must be already committed to the market. + navs: + type: array + items: + type: object + properties: + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Schemes other than `http`, `https` (or the empty scheme) might - be + NOTE: The amount field is an Int which implements the custom + method - used with implementation specific semantics. - value: - type: string - format: byte + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. - + Coin defines a token with a denomination and an amount. - Protobuf library provides support to pack/unpack Any values in the - form - of utility functions or additional generated methods of the Any - type. + NOTE: The amount field is an Int which implements the custom + method + signatures required by gogoproto. + description: >- + NetAssetPrice is an association of assets and price used to record + the value of things. - Example 1: Pack and unpack a message in C++. + It is related to the NetAssetValue message from the x/marker module, + and is therefore often referred to as "a NAV". + description: >- + navs are any NAV info that should be updated at the beginning of this + settlement. + event_tag: + type: string + description: >- + event_tag is a string that is included in the funds-committed/released + events. Max length is 100 characters. + description: >- + MsgMarketCommitmentSettleRequest is a request message for the + MarketCommitmentSettle endpoint. + provenance.exchange.v1.NetAssetPrice: + type: object + properties: + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Example 2: Pack and unpack a message in Java. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + NetAssetPrice is an association of assets and price used to record the + value of things. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + It is related to the NetAssetValue message from the x/marker module, and + is therefore often referred to as "a NAV". + provenance.exchange.v1.Order: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it represents an ask + order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this order and has + the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + NOTE: The amount field is an Int which implements the custom + method - Example 4: Pack and unpack a message in Go + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - The pack methods provided by protobuf library will by default use + NOTE: The amount field is an Int which implements the custom + method - 'type.googleapis.com/full.type.name' as the type URL and the unpack + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - methods only use the fully qualified type name after the last '/' - in the type URL, for example "foo.bar.com/x/y.z" will yield type + NOTE: The amount field is an Int which implements the custom + method - name "y.z". + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this order + should be allowed, and should be false if the + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify this + order. Max length is 100 characters. + If an order in this market with this external id already exists, + this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it represents a bid + order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and has + the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - JSON - ==== + NOTE: The amount field is an Int which implements the custom + method - The JSON representation of an `Any` value uses the regular + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + NOTE: The amount field is an Int which implements the custom + method - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - If the embedded message type is well-known and has a custom JSON + NOTE: The amount field is an Int which implements the custom + method - representation, that representation will be embedded adding a field + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and proportional) + that the buyer will pay (in addition to the price) - `value` which holds the custom JSON in addition to the `@type` + when the order is settled. A hold is placed on this until the + order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this order + should be allowed, and should be false if the - field. Example (for message [google.protobuf.Duration][]): + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify this + order. Max length is 100 characters. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } + If an order in this market with this external id already exists, + this order will be rejected. + description: Order associates an order id with one of the order types. + provenance.exchange.v1.Params: + type: object + properties: + default_split: + type: integer + format: int64 description: >- - messages is a list of `sdk.Msg`s that will be executed if the proposal - passes. - description: >- - Proposal defines a group proposal. Any member of a group can submit a - proposal - - for a group policy to decide upon. - - A proposal consists of a set of `sdk.Msg`s that will be executed if the - proposal + default_split is the default proportion of fees the exchange receives + in basis points. - passes as well as some optional metadata associated with the proposal. - cosmos.group.v1.ProposalExecutorResult: - type: string - enum: - - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - - PROPOSAL_EXECUTOR_RESULT_NOT_RUN - - PROPOSAL_EXECUTOR_RESULT_SUCCESS - - PROPOSAL_EXECUTOR_RESULT_FAILURE - default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - description: |- - ProposalExecutorResult defines types of proposal executor results. + It is used if there isn't an applicable denom-specific split defined. - - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED: An empty value is not allowed. - - PROPOSAL_EXECUTOR_RESULT_NOT_RUN: We have not yet run the executor. - - PROPOSAL_EXECUTOR_RESULT_SUCCESS: The executor was successful and proposed action updated state. - - PROPOSAL_EXECUTOR_RESULT_FAILURE: The executor returned an error and proposed action didn't update state. - cosmos.group.v1.ProposalStatus: - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_SUBMITTED - - PROPOSAL_STATUS_ACCEPTED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_ABORTED - - PROPOSAL_STATUS_WITHDRAWN - default: PROPOSAL_STATUS_UNSPECIFIED - description: |- - ProposalStatus defines proposal statuses. + E.g. 100 = 1%. Min = 0, Max = 10000. + denom_splits: + type: array + items: + type: object + properties: + denom: + type: string + description: denom is the coin denomination this split applies to. + split: + type: integer + format: int64 + description: >- + split is the proportion of fees the exchange receives for this + denom in basis points. - - PROPOSAL_STATUS_UNSPECIFIED: An empty value is invalid and not allowed. - - PROPOSAL_STATUS_SUBMITTED: Initial status of a proposal when submitted. - - PROPOSAL_STATUS_ACCEPTED: Final status of a proposal when the final tally is done and the outcome - passes the group policy's decision policy. - - PROPOSAL_STATUS_REJECTED: Final status of a proposal when the final tally is done and the outcome - is rejected by the group policy's decision policy. - - PROPOSAL_STATUS_ABORTED: Final status of a proposal when the group policy is modified before the - final tally. - - PROPOSAL_STATUS_WITHDRAWN: A proposal can be withdrawn before the voting start time by the owner. - When this happens the final status is Withdrawn. - cosmos.group.v1.QueryGroupInfoResponse: - type: object - properties: - info: - description: info is the GroupInfo for the group. - type: object - properties: - id: - type: string - format: uint64 - description: id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group's admin. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the group. - version: - type: string - format: uint64 - title: >- - version is used to track changes to a group's membership structure - that + E.g. 100 = 1%. Min = 0, Max = 10000. + description: >- + DenomSplit associates a coin denomination with an amount the + exchange receives for that denom. + description: denom_splits are the denom-specific amounts the exchange receives. + fee_create_payment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - would break existing proposals. Whenever any members weight is - changed, + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + fee_create_payment_flat is the flat fee options for creating a + payment. - or any member is added or removed this version is incremented and - will + If the source amount is not zero then one of these fee entries is + required to create the payment. - cause proposals based on older versions of this group to fail - total_weight: - type: string - description: total_weight is the sum of the group members' weights. - created_at: - type: string - format: date-time - description: created_at is a timestamp specifying when a group was created. - description: QueryGroupInfoResponse is the Query/GroupInfo response type. - cosmos.group.v1.QueryGroupMembersResponse: - type: object - properties: - members: + This field is currently limited to zero or one entries. + fee_accept_payment_flat: type: array items: type: object properties: - group_id: + denom: type: string - format: uint64 - description: group_id is the unique ID of the group. - member: - description: member is the member data. - type: object - properties: - address: - type: string - description: address is the member's account address. - weight: - type: string - description: >- - weight is the member's voting weight that should be greater - than 0. - metadata: - type: string - description: metadata is any arbitrary metadata attached to the member. - added_at: - type: string - format: date-time - description: added_at is a timestamp specifying when a member was added. - description: >- - GroupMember represents the relationship between a group and a - member. - description: members are the members of the group with given group_id. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - was set, its value is undefined otherwise - description: QueryGroupMembersResponse is the Query/GroupMembersResponse response type. - cosmos.group.v1.QueryGroupPoliciesByAdminResponse: + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + fee_accept_payment_flat is the flat fee options for accepting a + payment. + + If the target amount is not zero then one of these fee entries is + required to accept the payment. + + This field is currently limited to zero or one entries. + description: Params is a representation of the exchange module parameters. + provenance.exchange.v1.Payment: type: object properties: - group_policies: + source: + type: string + description: >- + source is the account that created this Payment. It is considered the + owner of the payment. + source_amount: type: array items: type: object properties: - address: - type: string - description: address is the account address of group policy. - group_id: - type: string - format: uint64 - description: group_id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group admin. - metadata: + denom: type: string - description: >- - metadata is any arbitrary metadata to attached to the group - policy. - version: + amount: type: string - format: uint64 - description: >- - version is used to track changes to a group's GroupPolicyInfo - structure that - - would create a different result on a running proposal. - decision_policy: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent + description: |- + Coin defines a token with a denomination and an amount. - the fully qualified name of the type (as in + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay the target in + exchange for the target_amount. - `path/google.protobuf.Duration`). The name should be in a - canonical form + A hold will be placed on this amount in the source account until this + Payment is accepted, rejected or cancelled. - (e.g., leading "." is not accepted). + If the source_amount is zero, this Payment can be considered a + "payment request." + target: + type: string + description: |- + target is the account that can accept this Payment. + The target is the only thing allowed to change in a payment. + I.e. it can be empty initially and updated later as needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the source in + exchange for the source_amount. - In practice, teams usually precompile into the binary all - types that they + If the target_amount is zero, this Payment can be considered a + "peer-to-peer (P2P) payment." + external_id: + type: string + description: >- + external_id is used along with the source to uniquely identify this + Payment. - expect it to use in the context of Any. However, for URLs - which use the - scheme `http`, `https`, or no scheme, one can optionally set - up a type + A source can only have one Payment with any given external id. - server that maps type URLs to message definitions as - follows: + A source can have two payments with two different external ids. + Two different sources can each have a payment with the same external + id. - * If no scheme is provided, `https` is assumed. + But a source cannot have two different payments each with the same + external id. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - Note: this functionality is not currently available in the - official + An external id can be reused by a source once the payment is accepted, + rejected, or cancelled. - protobuf release, and it is not used for type URLs beginning - with - type.googleapis.com. + The external id is limited to 100 bytes. An empty string is a valid + external id. + description: >- + Payment represents one account's desire to trade funds with another + account. + provenance.exchange.v1.Permission: + type: string + enum: + - PERMISSION_UNSPECIFIED + - PERMISSION_SETTLE + - PERMISSION_SET_IDS + - PERMISSION_CANCEL + - PERMISSION_WITHDRAW + - PERMISSION_UPDATE + - PERMISSION_PERMISSIONS + - PERMISSION_ATTRIBUTES + default: PERMISSION_UNSPECIFIED + description: >- + Permission defines the different types of permission that can be given to + an account for a market. + + - PERMISSION_UNSPECIFIED: PERMISSION_UNSPECIFIED is the zero-value Permission; it is an error to use it. + - PERMISSION_SETTLE: PERMISSION_SETTLE is the ability to use the Settle Tx endpoint on behalf of a market. + - PERMISSION_SET_IDS: PERMISSION_SET_IDS is the ability to use the SetOrderExternalID Tx endpoint on behalf of a market. + - PERMISSION_CANCEL: PERMISSION_CANCEL is the ability to use the Cancel Tx endpoint on behalf of a market. + - PERMISSION_WITHDRAW: PERMISSION_WITHDRAW is the ability to use the MarketWithdraw Tx endpoint. + - PERMISSION_UPDATE: PERMISSION_UPDATE is the ability to use the MarketUpdate* Tx endpoints. + - PERMISSION_PERMISSIONS: PERMISSION_PERMISSIONS is the ability to use the MarketManagePermissions Tx endpoint. + - PERMISSION_ATTRIBUTES: PERMISSION_ATTRIBUTES is the ability to use the MarketManageReqAttrs Tx endpoint. + provenance.exchange.v1.QueryCommitmentSettlementFeeCalcResponse: + type: object + properties: + exchange_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + exchange_fees is the total that the exchange would currently pay for + the provided settlement. + input_total: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - Schemes other than `http`, `https` (or the empty scheme) - might be + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: input_total is the sum of all the inputs in the provided settlement. + converted_total: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - used with implementation specific semantics. - value: + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + converted_total is the input_total converted to a single intermediary + denom or left as the fee denom. + conversion_navs: + type: array + items: + type: object + properties: + assets: + type: object + properties: + denom: + type: string + amount: type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in - the form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + Coin defines a token with a denomination and an amount. - Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + NOTE: The amount field is an Int which implements the custom + method - The pack methods provided by protobuf library will by default - use + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - methods only use the fully qualified type name after the last - '/' + NOTE: The amount field is an Int which implements the custom + method - in the type URL, for example "foo.bar.com/x/y.z" will yield type + signatures required by gogoproto. + description: >- + NetAssetPrice is an association of assets and price used to record + the value of things. - name "y.z". + It is related to the NetAssetValue message from the x/marker module, + and is therefore often referred to as "a NAV". + description: >- + conversion_navs are the NAVs used to convert the input_total to the + converted_total. + to_fee_nav: + type: object + properties: + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom + method - JSON + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - ==== - The JSON representation of an `Any` value uses the regular + NOTE: The amount field is an Int which implements the custom + method - representation of the deserialized, embedded message, with an + signatures required by gogoproto. + description: >- + NetAssetPrice is an association of assets and price used to record the + value of things. - additional field `@type` which contains the type URL. Example: + It is related to the NetAssetValue message from the x/marker module, + and is therefore often referred to as "a NAV". + description: >- + QueryCommitmentSettlementFeeCalcResponse is a response message for the + CommitmentSettlementFeeCalc query. + provenance.exchange.v1.QueryGetAccountCommitmentsResponse: + type: object + properties: + commitments: + type: array + items: + type: object + properties: + market_id: + type: integer + format: int64 + description: >- + market_id is the numeric identifier the amount has been + committed to. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + NOTE: The amount field is an Int which implements the custom + method - If the embedded message type is well-known and has a custom JSON + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: MarketAmount associates a market with a coins amount. + description: >- + commitments is the amounts committed from the account to the any + market. + description: >- + QueryGetAccountCommitmentsResponse is a response message for the + GetAccountCommitments query. + provenance.exchange.v1.QueryGetAllCommitmentsResponse: + type: object + properties: + commitments: + type: array + items: + type: object + properties: + account: + type: string + description: account is the bech32 address string with the committed funds. + market_id: + type: integer + format: int64 + description: >- + market_id is the numeric identifier of the market the funds are + committed to. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation, that representation will be embedded adding a - field - `value` which holds the custom JSON in addition to the `@type` + NOTE: The amount field is an Int which implements the custom + method - field. Example (for message [google.protobuf.Duration][]): + signatures required by gogoproto. + description: >- + amount is the funds that have been committed by the account to + the market. + description: Commitment contains information on committed funds. + description: commitments is the requested commitment information. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - created_at: + was set, its value is undefined otherwise + description: >- + QueryGetAllCommitmentsResponse is a response message for the + GetAllCommitments query. + provenance.exchange.v1.QueryGetAllMarketsResponse: + type: object + properties: + markets: + type: array + items: + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id is the numerical identifier for this market. + market_address: type: string - format: date-time description: >- - created_at is a timestamp specifying when a group policy was - created. + market_address is the bech32 address string of this market's + account. + market_details: + description: market_details is some information about this market. + type: object + properties: + name: + type: string + description: >- + name is a moniker that people can use to refer to this + market. + description: + type: string + description: >- + description extra information about this market. The field + is meant to be human-readable. + website_url: + type: string + description: >- + website_url is a url people can use to get to this market, + or at least get more information about this market. + icon_uri: + type: string + description: icon_uri is a uri for an icon to associate with this market. description: >- - GroupPolicyInfo represents the high-level on-chain information for a - group policy. - description: group_policies are the group policies info with provided admin. + MarketBrief is a message containing brief, superficial information + about a market. + description: markets are a page of the briefs for all markets. pagination: - description: pagination defines the pagination in the response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -81053,222 +97666,183 @@ definitions: was set, its value is undefined otherwise description: >- - QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin - response type. - cosmos.group.v1.QueryGroupPoliciesByGroupResponse: + QueryGetAllMarketsResponse is a response message for the GetAllMarkets + query. + provenance.exchange.v1.QueryGetAllOrdersResponse: type: object properties: - group_policies: + orders: type: array items: type: object properties: - address: - type: string - description: address is the account address of group policy. - group_id: - type: string - format: uint64 - description: group_id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group admin. - metadata: - type: string - description: >- - metadata is any arbitrary metadata to attached to the group - policy. - version: + order_id: type: string format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: description: >- - version is used to track changes to a group's GroupPolicyInfo - structure that - - would create a different result on a running proposal. - decision_policy: + ask_order is the information about this order if it represents + an ask order. type: object properties: - type_url: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally set - up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) - might be - - used with implementation specific semantics. - value: - type: string - format: byte + seller is the address of the account that owns this order + and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in - the form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + Coin defines a token with a denomination and an amount. - Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + NOTE: The amount field is an Int which implements the custom + method - Example 4: Pack and unpack a message in Go + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - The pack methods provided by protobuf library will by default - use + NOTE: The amount field is an Int which implements the custom + method - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - methods only use the fully qualified type name after the last - '/' - in the type URL, for example "foo.bar.com/x/y.z" will yield type + NOTE: The amount field is an Int which implements the custom + method - name "y.z". + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + If an order in this market with this external id already + exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it represents a + bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and + has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - JSON - ==== + NOTE: The amount field is an Int which implements the custom + method - The JSON representation of an `Any` value uses the regular + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + NOTE: The amount field is an Int which implements the custom + method - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - If the embedded message type is well-known and has a custom JSON + NOTE: The amount field is an Int which implements the + custom method - representation, that representation will be embedded adding a - field + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to the + price) - `value` which holds the custom JSON in addition to the `@type` + when the order is settled. A hold is placed on this until + the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - field. Example (for message [google.protobuf.Duration][]): + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - created_at: - type: string - format: date-time - description: >- - created_at is a timestamp specifying when a group policy was - created. - description: >- - GroupPolicyInfo represents the high-level on-chain information for a - group policy. - description: >- - group_policies are the group policies info associated with the - provided group. + If an order in this market with this external id already + exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the all orders. pagination: - description: pagination defines the pagination in the response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -81287,257 +97861,301 @@ definitions: was set, its value is undefined otherwise description: >- - QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup - response type. - cosmos.group.v1.QueryGroupPolicyInfoResponse: + QueryGetAllOrdersResponse is a response message for the GetAllOrders + query. + provenance.exchange.v1.QueryGetAllPaymentsResponse: type: object properties: - info: - type: object - properties: - address: - type: string - description: address is the account address of group policy. - group_id: - type: string - format: uint64 - description: group_id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group admin. - metadata: - type: string - description: >- - metadata is any arbitrary metadata to attached to the group - policy. - version: - type: string - format: uint64 - description: >- - version is used to track changes to a group's GroupPolicyInfo - structure that - - would create a different result on a running proposal. - decision_policy: - type: object - properties: - type_url: - type: string + payments: + type: array + items: + type: object + properties: + source: + type: string + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all - types that they - - expect it to use in the context of Any. However, for URLs - which use the - - scheme `http`, `https`, or no scheme, one can optionally set - up a type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. + Coin defines a token with a denomination and an amount. - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - Note: this functionality is not currently available in the - official + NOTE: The amount field is an Int which implements the custom + method - protobuf release, and it is not used for type URLs beginning - with + signatures required by gogoproto. + title: >- + source_amount is the funds that the source is will pay the + target in exchange for the target_amount. - type.googleapis.com. + A hold will be placed on this amount in the source account until + this Payment is accepted, rejected or cancelled. + If the source_amount is zero, this Payment can be considered a + "payment request." + target: + type: string + description: |- + target is the account that can accept this Payment. + The target is the only thing allowed to change in a payment. + I.e. it can be empty initially and updated later as needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Schemes other than `http`, `https` (or the empty scheme) might - be - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + NOTE: The amount field is an Int which implements the custom + method - URL that describes the type of the serialized message. + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the source + in exchange for the source_amount. + If the target_amount is zero, this Payment can be considered a + "peer-to-peer (P2P) payment." + external_id: + type: string + description: >- + external_id is used along with the source to uniquely identify + this Payment. - Protobuf library provides support to pack/unpack Any values in the - form - of utility functions or additional generated methods of the Any - type. + A source can only have one Payment with any given external id. + A source can have two payments with two different external ids. - Example 1: Pack and unpack a message in C++. + Two different sources can each have a payment with the same + external id. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + But a source cannot have two different payments each with the + same external id. - Example 2: Pack and unpack a message in Java. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + An external id can be reused by a source once the payment is + accepted, rejected, or cancelled. - Example 3: Pack and unpack a message in Python. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + The external id is limited to 100 bytes. An empty string is a + valid external id. + description: >- + Payment represents one account's desire to trade funds with another + account. + description: payments is all the payments on this page of results. + pagination: + description: pagination is the resulting pagination parameters. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - Example 4: Pack and unpack a message in Go + was set, its value is undefined otherwise + description: >- + QueryGetAllPaymentsResponse is a response message for the GetAllPayments + query. + provenance.exchange.v1.QueryGetAssetOrdersResponse: + type: object + properties: + orders: + type: array + items: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it represents + an ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this order + and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } - The pack methods provided by protobuf library will by default use + NOTE: The amount field is an Int which implements the custom + method - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - methods only use the fully qualified type name after the last '/' - in the type URL, for example "foo.bar.com/x/y.z" will yield type + NOTE: The amount field is an Int which implements the custom + method - name "y.z". + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom + method - JSON + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - ==== + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. - The JSON representation of an `Any` value uses the regular + If an order in this market with this external id already + exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it represents a + bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and + has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + NOTE: The amount field is an Int which implements the custom + method - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - If the embedded message type is well-known and has a custom JSON + NOTE: The amount field is an Int which implements the custom + method - representation, that representation will be embedded adding a - field + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + NOTE: The amount field is an Int which implements the + custom method - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - created_at: - type: string - format: date-time - description: >- - created_at is a timestamp specifying when a group policy was - created. - description: >- - GroupPolicyInfo represents the high-level on-chain information for a - group policy. - description: QueryGroupPolicyInfoResponse is the Query/GroupPolicyInfo response type. - cosmos.group.v1.QueryGroupsByAdminResponse: - type: object - properties: - groups: - type: array - items: - type: object - properties: - id: - type: string - format: uint64 - description: id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group's admin. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the group. - version: - type: string - format: uint64 - title: >- - version is used to track changes to a group's membership - structure that + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to the + price) - would break existing proposals. Whenever any members weight is - changed, + when the order is settled. A hold is placed on this until + the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - or any member is added or removed this version is incremented - and will + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. - cause proposals based on older versions of this group to fail - total_weight: - type: string - description: total_weight is the sum of the group members' weights. - created_at: - type: string - format: date-time - description: created_at is a timestamp specifying when a group was created. - description: >- - GroupInfo represents the high-level on-chain information for a - group. - description: groups are the groups info with the provided admin. + If an order in this market with this external id already + exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the orders for the provided asset. pagination: - description: pagination defines the pagination in the response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -81556,53 +98174,64 @@ definitions: was set, its value is undefined otherwise description: >- - QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response - type. - cosmos.group.v1.QueryGroupsByMemberResponse: + QueryGetAssetOrdersResponse is a response message for the GetAssetOrders + query. + provenance.exchange.v1.QueryGetCommitmentResponse: type: object properties: - groups: + amount: type: array items: type: object properties: - id: - type: string - format: uint64 - description: id is the unique ID of the group. - admin: + denom: type: string - description: admin is the account address of the group's admin. - metadata: + amount: type: string - description: metadata is any arbitrary metadata to attached to the group. - version: + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: amount is the total funds committed to the market by the account. + description: >- + QueryGetCommitmentResponse is a response message for the GetCommitment + query. + provenance.exchange.v1.QueryGetMarketCommitmentsResponse: + type: object + properties: + commitments: + type: array + items: + type: object + properties: + account: type: string - format: uint64 - title: >- - version is used to track changes to a group's membership - structure that + description: >- + account is the bech32 address string of the account associated + with the amount. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - would break existing proposals. Whenever any members weight is - changed, - or any member is added or removed this version is incremented - and will + NOTE: The amount field is an Int which implements the custom + method - cause proposals based on older versions of this group to fail - total_weight: - type: string - description: total_weight is the sum of the group members' weights. - created_at: - type: string - format: date-time - description: created_at is a timestamp specifying when a group was created. - description: >- - GroupInfo represents the high-level on-chain information for a - group. - description: groups are the groups info with the provided group member. + signatures required by gogoproto. + description: amount is the funds associated with the address. + description: AccountAmount associates an account with a coins amount. + description: commitments is the amounts committed to the market from any account. pagination: - description: pagination defines the pagination in the response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -81620,52 +98249,184 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: QueryGroupsByMemberResponse is the Query/GroupsByMember response type. - cosmos.group.v1.QueryGroupsResponse: + description: >- + QueryGetMarketCommitmentsResponse is a response message for the + GetMarketCommitments query. + provenance.exchange.v1.QueryGetMarketOrdersResponse: type: object properties: - groups: + orders: type: array items: type: object properties: - id: - type: string - format: uint64 - description: id is the unique ID of the group. - admin: - type: string - description: admin is the account address of the group's admin. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the group. - version: + order_id: type: string format: uint64 - title: >- - version is used to track changes to a group's membership - structure that + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it represents + an ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this order + and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - would break existing proposals. Whenever any members weight is - changed, - or any member is added or removed this version is incremented - and will + NOTE: The amount field is an Int which implements the custom + method - cause proposals based on older versions of this group to fail - total_weight: - type: string - description: total_weight is the sum of the group members' weights. - created_at: - type: string - format: date-time - description: created_at is a timestamp specifying when a group was created. - description: >- - GroupInfo represents the high-level on-chain information for a - group. - description: '`groups` is all the groups present in state.' + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the + + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id already + exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it represents a + bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and + has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to the + price) + + when the order is settled. A hold is placed on this until + the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the + + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id already + exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the orders in the provided market. pagination: - description: pagination defines the pagination in the response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -81683,607 +98444,950 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: |- - QueryGroupsResponse is the Query/Groups response type. - - Since: cosmos-sdk 0.47.1 - cosmos.group.v1.QueryProposalResponse: + description: >- + QueryGetMarketOrdersResponse is a response message for the GetMarketOrders + query. + provenance.exchange.v1.QueryGetMarketResponse: type: object properties: - proposal: - description: proposal is the proposal info. + address: + type: string + description: address is the bech32 address string of this market's account. + market: + description: market is all information and details of the market. type: object properties: - id: - type: string - format: uint64 - description: id is the unique id of the proposal. - group_policy_address: - type: string - description: group_policy_address is the account address of group policy. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the proposal. - proposers: + market_id: + type: integer + format: int64 + description: market_id is the numerical identifier for this market. + market_details: + description: market_details is some information about this market. + type: object + properties: + name: + type: string + description: name is a moniker that people can use to refer to this market. + description: + type: string + description: >- + description extra information about this market. The field is + meant to be human-readable. + website_url: + type: string + description: >- + website_url is a url people can use to get to this market, or + at least get more information about this market. + icon_uri: + type: string + description: icon_uri is a uri for an icon to associate with this market. + fee_create_ask_flat: type: array items: - type: string - description: proposers are the account addresses of the proposers. - submit_time: - type: string - format: date-time - description: >- - submit_time is a timestamp specifying when a proposal was - submitted. - group_version: - type: string - format: uint64 - description: >- - group_version tracks the version of the group at proposal - submission. - - This field is here for informational purposes only. - group_policy_version: - type: string - format: uint64 - description: >- - group_policy_version tracks the version of the group policy at - proposal submission. + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - When a decision policy is changed, existing proposals from - previous policy - versions will become invalid with the `ABORTED` status. + NOTE: The amount field is an Int which implements the custom + method - This field is here for informational purposes only. - status: - description: >- - status represents the high level position in the life cycle of the - proposal. Initial value is Submitted. - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_SUBMITTED - - PROPOSAL_STATUS_ACCEPTED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_ABORTED - - PROPOSAL_STATUS_WITHDRAWN - default: PROPOSAL_STATUS_UNSPECIFIED - final_tally_result: + signatures required by gogoproto. description: >- - final_tally_result contains the sums of all weighted votes for - this + fee_create_ask_flat is the flat fee charged for creating an ask + order. - proposal for each vote option. It is empty at submission, and only + Each coin entry is a separate option. When an ask is created, one + of these must be paid. - populated after tallying, at voting period end or at proposal - execution, + If empty, no fee is required to create an ask order. + fee_create_bid_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - whichever happens first. - type: object - properties: - yes_count: - type: string - description: yes_count is the weighted sum of yes votes. - abstain_count: - type: string - description: abstain_count is the weighted sum of abstainers. - no_count: - type: string - description: no_count is the weighted sum of no votes. - no_with_veto_count: - type: string - description: no_with_veto_count is the weighted sum of veto. - voting_period_end: - type: string - format: date-time + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. description: >- - voting_period_end is the timestamp before which voting must be - done. + fee_create_bid_flat is the flat fee charged for creating a bid + order. - Unless a successfull MsgExec is called before (to execute a - proposal whose + Each coin entry is a separate option. When a bid is created, one + of these must be paid. - tally is successful before the voting period ends), tallying will - be done + If empty, no fee is required to create a bid order. + fee_seller_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - at this point, and the `final_tally_result`and `status` fields - will be - accordingly updated. - executor_result: + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. description: >- - executor_result is the final result of the proposal execution. - Initial value is NotRun. - type: string - enum: - - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - - PROPOSAL_EXECUTOR_RESULT_NOT_RUN - - PROPOSAL_EXECUTOR_RESULT_SUCCESS - - PROPOSAL_EXECUTOR_RESULT_FAILURE - default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - messages: + fee_seller_settlement_flat is the flat fee charged to the seller + during settlement. + + Each coin entry is a separate option. + + When an ask is settled, the seller will pay the amount in the + denom that matches the price they received. + fee_seller_settlement_ratios: type: array items: type: object properties: - type_url: - type: string + price: + type: object + properties: + denom: + type: string + amount: + type: string description: >- - A URL/resource name that uniquely identifies the type of the - serialized + Coin defines a token with a denomination and an amount. - protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + NOTE: The amount field is an Int which implements the custom + method - the fully qualified name of the type (as in + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - `path/google.protobuf.Duration`). The name should be in a - canonical form - (e.g., leading "." is not accepted). + NOTE: The amount field is an Int which implements the custom + method + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. - In practice, teams usually precompile into the binary all - types that they + For an order to be valid, its price must be evenly divisible by + a FeeRatio's price. + description: >- + fee_seller_settlement_ratios is the fee to charge a seller during + settlement based on the price they are receiving. - expect it to use in the context of Any. However, for URLs - which use the + The price and fee denoms must be equal for each entry, and only + one entry for any given denom is allowed. + fee_buyer_settlement_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - scheme `http`, `https`, or no scheme, one can optionally set - up a type - server that maps type URLs to message definitions as - follows: + NOTE: The amount field is an Int which implements the custom + method + signatures required by gogoproto. + description: >- + fee_buyer_settlement_flat is the flat fee charged to the buyer + during settlement. - * If no scheme is provided, `https` is assumed. + Each coin entry is a separate option. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on - the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + When a bid is created, the settlement fees provided must contain + one of these. + fee_buyer_settlement_ratios: + type: array + items: + type: object + properties: + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Note: this functionality is not currently available in the - official - protobuf release, and it is not used for type URLs beginning - with + NOTE: The amount field is an Int which implements the custom + method - type.googleapis.com. + signatures required by gogoproto. + fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Schemes other than `http`, `https` (or the empty scheme) - might be + NOTE: The amount field is an Int which implements the custom + method - used with implementation specific semantics. - value: + signatures required by gogoproto. + description: >- + FeeRatio defines a ratio of price amount to fee amount. + + For an order to be valid, its price must be evenly divisible by + a FeeRatio's price. + description: >- + fee_buyer_settlement_ratios is the fee to charge a buyer during + settlement based on the price they are spending. + + The price and fee denoms do not have to equal. Multiple entries + for any given price or fee denom are allowed, but + + each price denom to fee denom pair can only have one entry. + accepting_orders: + type: boolean + description: >- + accepting_orders is whether this market is allowing orders to be + created for it. + allow_user_settlement: + type: boolean + description: >- + allow_user_settlement is whether this market allows users to + initiate their own settlements. + + For example, the FillBids and FillAsks endpoints are available if + and only if this is true. + + The MarketSettle endpoint is only available to market actors + regardless of the value of this field. + access_grants: + type: array + items: + type: object + properties: + address: type: string - format: byte + description: address is the address that these permissions apply to. + permissions: + type: array + items: + type: string + enum: + - PERMISSION_UNSPECIFIED + - PERMISSION_SETTLE + - PERMISSION_SET_IDS + - PERMISSION_CANCEL + - PERMISSION_WITHDRAW + - PERMISSION_UPDATE + - PERMISSION_PERMISSIONS + - PERMISSION_ATTRIBUTES + default: PERMISSION_UNSPECIFIED + description: >- + Permission defines the different types of permission that + can be given to an account for a market. + + - PERMISSION_UNSPECIFIED: PERMISSION_UNSPECIFIED is the zero-value Permission; it is an error to use it. + - PERMISSION_SETTLE: PERMISSION_SETTLE is the ability to use the Settle Tx endpoint on behalf of a market. + - PERMISSION_SET_IDS: PERMISSION_SET_IDS is the ability to use the SetOrderExternalID Tx endpoint on behalf of a market. + - PERMISSION_CANCEL: PERMISSION_CANCEL is the ability to use the Cancel Tx endpoint on behalf of a market. + - PERMISSION_WITHDRAW: PERMISSION_WITHDRAW is the ability to use the MarketWithdraw Tx endpoint. + - PERMISSION_UPDATE: PERMISSION_UPDATE is the ability to use the MarketUpdate* Tx endpoints. + - PERMISSION_PERMISSIONS: PERMISSION_PERMISSIONS is the ability to use the MarketManagePermissions Tx endpoint. + - PERMISSION_ATTRIBUTES: PERMISSION_ATTRIBUTES is the ability to use the MarketManageReqAttrs Tx endpoint. description: >- - Must be a valid serialized protocol buffer of the above - specified type. + allowed is the list of permissions available for the + address. description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + AddrPermissions associates an address with a list of permissions + available for that address. + description: >- + access_grants is the list of addresses and permissions granted for + this market. + req_attr_create_ask: + type: array + items: + type: string + description: >- + req_attr_create_ask is a list of attributes required on an account + for it to be allowed to create an ask order. - URL that describes the type of the serialized message. + An account must have all of these attributes in order to create an + ask order in this market. + If the list is empty, any account can create ask orders in this + market. - Protobuf library provides support to pack/unpack Any values in - the form - of utility functions or additional generated methods of the Any - type. + An entry that starts with "*." will match any attributes that end + with the rest of it. + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "b.x.a", or "c.b.a.x". + req_attr_create_bid: + type: array + items: + type: string + description: >- + req_attr_create_ask is a list of attributes required on an account + for it to be allowed to create a bid order. - Example 1: Pack and unpack a message in C++. + An account must have all of these attributes in order to create a + bid order in this market. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + If the list is empty, any account can create bid orders in this + market. - Example 2: Pack and unpack a message in Java. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + An entry that starts with "*." will match any attributes that end + with the rest of it. - Example 3: Pack and unpack a message in Python. + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + accepting_commitments: + type: boolean + description: >- + accepting_commitments is whether the market is allowing users to + commit funds to it. + fee_create_commitment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - Example 4: Pack and unpack a message in Go + NOTE: The amount field is an Int which implements the custom + method - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + signatures required by gogoproto. + description: >- + fee_create_commitment_flat is the flat fee charged for creating a + commitment. - The pack methods provided by protobuf library will by default - use + Each coin entry is a separate option. When a commitment is + created, one of these must be paid. - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + If empty, no fee is required to create a commitment. + commitment_settlement_bips: + type: integer + format: int64 + description: >- + commitment_settlement_bips is the fraction of a commitment + settlement that will be paid to the exchange. - methods only use the fully qualified type name after the last - '/' + It is represented in basis points (1/100th of 1%, e.g. 0.0001) and + is limited to 0 to 10,000 inclusive. - in the type URL, for example "foo.bar.com/x/y.z" will yield type + During a commitment settlement, the inputs are summed and NAVs are + used to convert that total to the - name "y.z". + intermediary denom, then to the fee denom. That is then multiplied + by this value to get the fee amount + that will be transferred out of the market's account into the + exchange for that settlement. - JSON + Summing the inputs effectively doubles the value of the settlement + from what what is usually thought of - ==== + as the value of a trade. That should be taken into account when + setting this value. - The JSON representation of an `Any` value uses the regular + E.g. if two accounts are trading 10apples for 100grapes, the + inputs total will be 10apples,100grapes - representation of the deserialized, embedded message, with an + (which might then be converted to USD then nhash before applying + this ratio); Usually, though, the value - additional field `@type` which contains the type URL. Example: + of that trade would be viewed as either just 10apples or just + 100grapes. + intermediary_denom: + type: string + description: >- + intermediary_denom is the denom that funds get converted to + (before being converted to the chain's fee denom) - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + when calculating the fees that are paid to the exchange. NAVs are + used for this conversion and actions will fail - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + if a NAV is needed but not available. + req_attr_create_commitment: + type: array + items: + type: string + description: >- + req_attr_create_commitment is a list of attributes required on an + account for it to be allowed to create a - If the embedded message type is well-known and has a custom JSON + commitment. An account must have all of these attributes in order + to create a commitment in this market. - representation, that representation will be embedded adding a - field + If the list is empty, any account can create commitments in this + market. - `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + An entry that starts with "*." will match any attributes that end + with the rest of it. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - description: >- - messages is a list of `sdk.Msg`s that will be executed if the - proposal passes. - description: QueryProposalResponse is the Query/Proposal response type. - cosmos.group.v1.QueryProposalsByGroupPolicyResponse: + E.g. "*.b.a" will match all of "c.b.a", "x.b.a", and "e.d.c.b.a"; + but not "b.a", "xb.a", "c.b.x.a", or "c.b.a.x". + description: QueryGetMarketResponse is a response message for the GetMarket query. + provenance.exchange.v1.QueryGetOrderByExternalIDResponse: type: object properties: - proposals: - type: array - items: - type: object - properties: - id: - type: string - format: uint64 - description: id is the unique id of the proposal. - group_policy_address: - type: string - description: group_policy_address is the account address of group policy. - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the proposal. - proposers: - type: array - items: + order: + description: order is the requested order. + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it represents an + ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: type: string - description: proposers are the account addresses of the proposers. - submit_time: - type: string - format: date-time - description: >- - submit_time is a timestamp specifying when a proposal was - submitted. - group_version: - type: string - format: uint64 - description: >- - group_version tracks the version of the group at proposal - submission. + description: >- + seller is the address of the account that owns this order and + has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - This field is here for informational purposes only. - group_policy_version: - type: string - format: uint64 - description: >- - group_policy_version tracks the version of the group policy at - proposal submission. - When a decision policy is changed, existing proposals from - previous policy + NOTE: The amount field is an Int which implements the custom + method - versions will become invalid with the `ABORTED` status. + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - This field is here for informational purposes only. - status: - description: >- - status represents the high level position in the life cycle of - the proposal. Initial value is Submitted. - type: string - enum: - - PROPOSAL_STATUS_UNSPECIFIED - - PROPOSAL_STATUS_SUBMITTED - - PROPOSAL_STATUS_ACCEPTED - - PROPOSAL_STATUS_REJECTED - - PROPOSAL_STATUS_ABORTED - - PROPOSAL_STATUS_WITHDRAWN - default: PROPOSAL_STATUS_UNSPECIFIED - final_tally_result: - description: >- - final_tally_result contains the sums of all weighted votes for - this - proposal for each vote option. It is empty at submission, and - only + NOTE: The amount field is an Int which implements the custom + method - populated after tallying, at voting period end or at proposal - execution, + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - whichever happens first. - type: object - properties: - yes_count: - type: string - description: yes_count is the weighted sum of yes votes. - abstain_count: - type: string - description: abstain_count is the weighted sum of abstainers. - no_count: - type: string - description: no_count is the weighted sum of no votes. - no_with_veto_count: - type: string - description: no_with_veto_count is the weighted sum of veto. - voting_period_end: - type: string - format: date-time - description: >- - voting_period_end is the timestamp before which voting must be - done. - Unless a successfull MsgExec is called before (to execute a - proposal whose + NOTE: The amount field is an Int which implements the custom + method - tally is successful before the voting period ends), tallying - will be done + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - at this point, and the `final_tally_result`and `status` fields - will be + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify + this order. Max length is 100 characters. - accordingly updated. - executor_result: - description: >- - executor_result is the final result of the proposal execution. - Initial value is NotRun. - type: string - enum: - - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - - PROPOSAL_EXECUTOR_RESULT_NOT_RUN - - PROPOSAL_EXECUTOR_RESULT_SUCCESS - - PROPOSAL_EXECUTOR_RESULT_FAILURE - default: PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED - messages: - type: array - items: + If an order in this market with this external id already + exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it represents a + bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and + has the price to spend. + assets: type: object properties: - type_url: + denom: type: string - description: >- - A URL/resource name that uniquely identifies the type of - the serialized - - protocol buffer message. This string must contain at least + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - one "/" character. The last segment of the URL's path must - represent - the fully qualified name of the type (as in + NOTE: The amount field is an Int which implements the custom + method - `path/google.protobuf.Duration`). The name should be in a - canonical form + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - (e.g., leading "." is not accepted). + NOTE: The amount field is an Int which implements the custom + method - In practice, teams usually precompile into the binary all - types that they + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - expect it to use in the context of Any. However, for URLs - which use the - scheme `http`, `https`, or no scheme, one can optionally - set up a type + NOTE: The amount field is an Int which implements the custom + method - server that maps type URLs to message definitions as - follows: + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to the + price) + when the order is settled. A hold is placed on this until the + order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - * If no scheme is provided, `https` is assumed. + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify + this order. Max length is 100 characters. - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based - on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) + If an order in this market with this external id already + exists, this order will be rejected. + description: >- + QueryGetOrderByExternalIDResponse is a response message for the + GetOrderByExternalID query. + provenance.exchange.v1.QueryGetOrderResponse: + type: object + properties: + order: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it represents an + ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this order and + has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Note: this functionality is not currently available in the - official - protobuf release, and it is not used for type URLs - beginning with + NOTE: The amount field is an Int which implements the custom + method - type.googleapis.com. + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Schemes other than `http`, `https` (or the empty scheme) - might be + NOTE: The amount field is an Int which implements the custom + method - used with implementation specific semantics. - value: + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a + Coin defines a token with a denomination and an amount. - URL that describes the type of the serialized message. + NOTE: The amount field is an Int which implements the custom + method - Protobuf library provides support to pack/unpack Any values in - the form + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - of utility functions or additional generated methods of the - Any type. + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify + this order. Max length is 100 characters. + If an order in this market with this external id already + exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it represents a + bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and + has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + NOTE: The amount field is an Int which implements the custom + method - Example 2: Pack and unpack a message in Java. + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - Example 3: Pack and unpack a message in Python. + NOTE: The amount field is an Int which implements the custom + method - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - Example 4: Pack and unpack a message in Go - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + NOTE: The amount field is an Int which implements the custom + method - The pack methods provided by protobuf library will by default - use + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to the + price) - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + when the order is settled. A hold is placed on this until the + order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - methods only use the fully qualified type name after the last - '/' + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally identify + this order. Max length is 100 characters. + + If an order in this market with this external id already + exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: QueryGetOrderResponse is a response message for the GetOrder query. + provenance.exchange.v1.QueryGetOwnerOrdersResponse: + type: object + properties: + orders: + type: array + items: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the numerical identifier for this order. + ask_order: + description: >- + ask_order is the information about this order if it represents + an ask order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + seller: + type: string + description: >- + seller is the address of the account that owns this order + and has the assets to sell. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - in the type URL, for example "foo.bar.com/x/y.z" will yield - type - name "y.z". + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + NOTE: The amount field is an Int which implements the custom + method - JSON + signatures required by gogoproto. + seller_settlement_flat_fee: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - ==== - The JSON representation of an `Any` value uses the regular + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the + + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. + + If an order in this market with this external id already + exists, this order will be rejected. + bid_order: + description: >- + bid_order is the information about this order if it represents a + bid order. + type: object + properties: + market_id: + type: integer + format: int64 + description: market_id identifies the market that this order belongs to. + buyer: + type: string + description: >- + buyer is the address of the account that owns this order and + has the price to spend. + assets: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + NOTE: The amount field is an Int which implements the custom + method - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + signatures required by gogoproto. + price: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - If the embedded message type is well-known and has a custom - JSON + NOTE: The amount field is an Int which implements the custom + method - representation, that representation will be embedded adding a - field + signatures required by gogoproto. + buyer_settlement_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + NOTE: The amount field is an Int which implements the + custom method - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - description: >- - messages is a list of `sdk.Msg`s that will be executed if the - proposal passes. - description: >- - Proposal defines a group proposal. Any member of a group can submit - a proposal + signatures required by gogoproto. + description: >- + buyer_settlement_fees are the fees (both flat and + proportional) that the buyer will pay (in addition to the + price) - for a group policy to decide upon. + when the order is settled. A hold is placed on this until + the order is filled or cancelled. + allow_partial: + type: boolean + description: >- + allow_partial should be true if partial fulfillment of this + order should be allowed, and should be false if the - A proposal consists of a set of `sdk.Msg`s that will be executed if - the proposal + order must be either filled in full or not filled at all. + external_id: + type: string + description: >- + external_id is an optional string used to externally + identify this order. Max length is 100 characters. - passes as well as some optional metadata associated with the - proposal. - description: proposals are the proposals with given group policy. + If an order in this market with this external id already + exists, this order will be rejected. + description: Order associates an order id with one of the order types. + description: orders are a page of the orders for the provided address. pagination: - description: pagination defines the pagination in the response. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -82302,391 +99406,198 @@ definitions: was set, its value is undefined otherwise description: >- - QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy - response type. - cosmos.group.v1.QueryTallyResultResponse: - type: object - properties: - tally: - description: tally defines the requested tally. - type: object - properties: - yes_count: - type: string - description: yes_count is the weighted sum of yes votes. - abstain_count: - type: string - description: abstain_count is the weighted sum of abstainers. - no_count: - type: string - description: no_count is the weighted sum of no votes. - no_with_veto_count: - type: string - description: no_with_veto_count is the weighted sum of veto. - description: QueryTallyResultResponse is the Query/TallyResult response type. - cosmos.group.v1.QueryVoteByProposalVoterResponse: - type: object - properties: - vote: - description: vote is the vote with given proposal_id and voter. - type: object - properties: - proposal_id: - type: string - format: uint64 - description: proposal is the unique ID of the proposal. - voter: - type: string - description: voter is the account address of the voter. - option: - description: option is the voter's choice on the proposal. - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the vote. - submit_time: - type: string - format: date-time - description: submit_time is the timestamp when the vote was submitted. - description: >- - QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response - type. - cosmos.group.v1.QueryVotesByProposalResponse: + QueryGetOwnerOrdersResponse is a response message for the GetOwnerOrders + query. + provenance.exchange.v1.QueryGetPaymentResponse: type: object properties: - votes: - type: array - items: - type: object - properties: - proposal_id: - type: string - format: uint64 - description: proposal is the unique ID of the proposal. - voter: - type: string - description: voter is the account address of the voter. - option: - description: option is the voter's choice on the proposal. - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the vote. - submit_time: - type: string - format: date-time - description: submit_time is the timestamp when the vote was submitted. - description: Vote represents a vote for a proposal. - description: votes are the list of votes for given proposal_id. - pagination: - description: pagination defines the pagination in the response. + payment: + description: payment is the info on the requested payment. type: object properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: + source: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + description: >- + source is the account that created this Payment. It is considered + the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - was set, its value is undefined otherwise - description: QueryVotesByProposalResponse is the Query/VotesByProposal response type. - cosmos.group.v1.QueryVotesByVoterResponse: - type: object - properties: - votes: - type: array - items: - type: object - properties: - proposal_id: - type: string - format: uint64 - description: proposal is the unique ID of the proposal. - voter: - type: string - description: voter is the account address of the voter. - option: - description: option is the voter's choice on the proposal. - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the vote. - submit_time: - type: string - format: date-time - description: submit_time is the timestamp when the vote was submitted. - description: Vote represents a vote for a proposal. - description: votes are the list of votes by given voter. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. title: >- - total is total number of results available if - PageRequest.count_total + source_amount is the funds that the source is will pay the target + in exchange for the target_amount. - was set, its value is undefined otherwise - description: QueryVotesByVoterResponse is the Query/VotesByVoter response type. - cosmos.group.v1.TallyResult: - type: object - properties: - yes_count: - type: string - description: yes_count is the weighted sum of yes votes. - abstain_count: - type: string - description: abstain_count is the weighted sum of abstainers. - no_count: - type: string - description: no_count is the weighted sum of no votes. - no_with_veto_count: - type: string - description: no_with_veto_count is the weighted sum of veto. - description: TallyResult represents the sum of weighted votes for each vote option. - cosmos.group.v1.Vote: - type: object - properties: - proposal_id: - type: string - format: uint64 - description: proposal is the unique ID of the proposal. - voter: - type: string - description: voter is the account address of the voter. - option: - description: option is the voter's choice on the proposal. - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - metadata: - type: string - description: metadata is any arbitrary metadata to attached to the vote. - submit_time: - type: string - format: date-time - description: submit_time is the timestamp when the vote was submitted. - description: Vote represents a vote for a proposal. - cosmos.group.v1.VoteOption: - type: string - enum: - - VOTE_OPTION_UNSPECIFIED - - VOTE_OPTION_YES - - VOTE_OPTION_ABSTAIN - - VOTE_OPTION_NO - - VOTE_OPTION_NO_WITH_VETO - default: VOTE_OPTION_UNSPECIFIED - description: |- - VoteOption enumerates the valid vote options for a given proposal. + A hold will be placed on this amount in the source account until + this Payment is accepted, rejected or cancelled. - - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines an unspecified vote option which will - return an error. - - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option. - - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - provenance.attribute.v1.Attribute: - type: object - properties: - name: - type: string - description: The attribute name. - value: - type: string - format: byte - description: The attribute value. - attribute_type: - description: The attribute value type. - type: string - enum: - - ATTRIBUTE_TYPE_UNSPECIFIED - - ATTRIBUTE_TYPE_UUID - - ATTRIBUTE_TYPE_JSON - - ATTRIBUTE_TYPE_STRING - - ATTRIBUTE_TYPE_URI - - ATTRIBUTE_TYPE_INT - - ATTRIBUTE_TYPE_FLOAT - - ATTRIBUTE_TYPE_PROTO - - ATTRIBUTE_TYPE_BYTES - default: ATTRIBUTE_TYPE_UNSPECIFIED - title: >- - AttributeType defines the type of the data stored in the attribute - value - address: - type: string - title: The address the attribute is bound to - expiration_date: - type: string - format: date-time - description: Time that an attribute will expire. - title: >- - Attribute holds a typed key/value structure for data associated with an - account - provenance.attribute.v1.AttributeType: - type: string - enum: - - ATTRIBUTE_TYPE_UNSPECIFIED - - ATTRIBUTE_TYPE_UUID - - ATTRIBUTE_TYPE_JSON - - ATTRIBUTE_TYPE_STRING - - ATTRIBUTE_TYPE_URI - - ATTRIBUTE_TYPE_INT - - ATTRIBUTE_TYPE_FLOAT - - ATTRIBUTE_TYPE_PROTO - - ATTRIBUTE_TYPE_BYTES - default: ATTRIBUTE_TYPE_UNSPECIFIED - description: >- - - ATTRIBUTE_TYPE_UNSPECIFIED: ATTRIBUTE_TYPE_UNSPECIFIED defines an - unknown/invalid type - - ATTRIBUTE_TYPE_UUID: ATTRIBUTE_TYPE_UUID defines an attribute value that contains a string value representation of a V4 uuid - - ATTRIBUTE_TYPE_JSON: ATTRIBUTE_TYPE_JSON defines an attribute value that contains a byte string containing json data - - ATTRIBUTE_TYPE_STRING: ATTRIBUTE_TYPE_STRING defines an attribute value that contains a generic string value - - ATTRIBUTE_TYPE_URI: ATTRIBUTE_TYPE_URI defines an attribute value that contains a URI - - ATTRIBUTE_TYPE_INT: ATTRIBUTE_TYPE_INT defines an attribute value that contains an integer (cast as int64) - - ATTRIBUTE_TYPE_FLOAT: ATTRIBUTE_TYPE_FLOAT defines an attribute value that contains a float - - ATTRIBUTE_TYPE_PROTO: ATTRIBUTE_TYPE_PROTO defines an attribute value that contains a serialized proto value in bytes - - ATTRIBUTE_TYPE_BYTES: ATTRIBUTE_TYPE_BYTES defines an attribute value that contains an untyped array of bytes - title: AttributeType defines the type of the data stored in the attribute value - provenance.attribute.v1.Params: - type: object - properties: - max_value_length: - type: integer - format: int64 - title: maximum length of data to allow in an attribute value - description: Params defines the set of params for the attribute module. - provenance.attribute.v1.QueryAccountDataResponse: - type: object - properties: - value: - type: string - description: value is the accountdata attribute value for the requested account. - description: >- - QueryAccountDataResponse is the response type for the Query/AccountData - method. - provenance.attribute.v1.QueryAttributeAccountsResponse: - type: object - properties: - accounts: - type: array - items: - type: string - title: list of account addresses that have attributes of request name - pagination: - description: pagination defines an optional pagination for the request. - type: object - properties: - next_key: + If the source_amount is zero, this Payment can be considered a + "payment request." + target: type: string - format: byte description: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently. It will be empty if - there are no more results. - total: - type: string - format: uint64 + target is the account that can accept this Payment. + The target is the only thing allowed to change in a payment. + I.e. it can be empty initially and updated later as needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. title: >- - total is total number of results available if - PageRequest.count_total + target_amount is the funds that the target will pay the source in + exchange for the source_amount. - was set, its value is undefined otherwise - description: >- - QueryAttributeAccountsResponse is the response type for the - Query/AttributeAccounts method. - provenance.attribute.v1.QueryAttributeResponse: + If the target_amount is zero, this Payment can be considered a + "peer-to-peer (P2P) payment." + external_id: + type: string + description: >- + external_id is used along with the source to uniquely identify + this Payment. + + + A source can only have one Payment with any given external id. + + A source can have two payments with two different external ids. + + Two different sources can each have a payment with the same + external id. + + But a source cannot have two different payments each with the same + external id. + + + An external id can be reused by a source once the payment is + accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string is a + valid external id. + description: QueryGetPaymentResponse is a response message for the GetPayment query. + provenance.exchange.v1.QueryGetPaymentsWithSourceResponse: type: object properties: - account: - type: string - description: >- - a string containing the address of the account the attributes are - assigned to. - attributes: + payments: type: array items: type: object properties: - name: - type: string - description: The attribute name. - value: - type: string - format: byte - description: The attribute value. - attribute_type: - description: The attribute value type. + source: type: string - enum: - - ATTRIBUTE_TYPE_UNSPECIFIED - - ATTRIBUTE_TYPE_UUID - - ATTRIBUTE_TYPE_JSON - - ATTRIBUTE_TYPE_STRING - - ATTRIBUTE_TYPE_URI - - ATTRIBUTE_TYPE_INT - - ATTRIBUTE_TYPE_FLOAT - - ATTRIBUTE_TYPE_PROTO - - ATTRIBUTE_TYPE_BYTES - default: ATTRIBUTE_TYPE_UNSPECIFIED + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. title: >- - AttributeType defines the type of the data stored in the - attribute value - address: + source_amount is the funds that the source is will pay the + target in exchange for the target_amount. + + A hold will be placed on this amount in the source account until + this Payment is accepted, rejected or cancelled. + + If the source_amount is zero, this Payment can be considered a + "payment request." + target: type: string - title: The address the attribute is bound to - expiration_date: + description: |- + target is the account that can accept this Payment. + The target is the only thing allowed to change in a payment. + I.e. it can be empty initially and updated later as needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the source + in exchange for the source_amount. + + If the target_amount is zero, this Payment can be considered a + "peer-to-peer (P2P) payment." + external_id: type: string - format: date-time - description: Time that an attribute will expire. - title: >- - Attribute holds a typed key/value structure for data associated with - an account - title: a list of attribute values + description: >- + external_id is used along with the source to uniquely identify + this Payment. + + + A source can only have one Payment with any given external id. + + A source can have two payments with two different external ids. + + Two different sources can each have a payment with the same + external id. + + But a source cannot have two different payments each with the + same external id. + + + An external id can be reused by a source once the payment is + accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string is a + valid external id. + description: >- + Payment represents one account's desire to trade funds with another + account. + description: payments is all the payments with the requested source. pagination: - description: pagination defines an optional pagination for the request. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -82705,58 +99616,106 @@ definitions: was set, its value is undefined otherwise description: >- - QueryAttributeResponse is the response type for the Query/Attribute - method. - provenance.attribute.v1.QueryAttributesResponse: + QueryGetPaymentsWithSourceResponse is a response message for the + GetPaymentsWithSource query. + provenance.exchange.v1.QueryGetPaymentsWithTargetResponse: type: object properties: - account: - type: string - title: >- - a string containing the address of the account the attributes are - assigned to= - attributes: + payments: type: array items: type: object properties: - name: - type: string - description: The attribute name. - value: - type: string - format: byte - description: The attribute value. - attribute_type: - description: The attribute value type. + source: type: string - enum: - - ATTRIBUTE_TYPE_UNSPECIFIED - - ATTRIBUTE_TYPE_UUID - - ATTRIBUTE_TYPE_JSON - - ATTRIBUTE_TYPE_STRING - - ATTRIBUTE_TYPE_URI - - ATTRIBUTE_TYPE_INT - - ATTRIBUTE_TYPE_FLOAT - - ATTRIBUTE_TYPE_PROTO - - ATTRIBUTE_TYPE_BYTES - default: ATTRIBUTE_TYPE_UNSPECIFIED + description: >- + source is the account that created this Payment. It is + considered the owner of the payment. + source_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. title: >- - AttributeType defines the type of the data stored in the - attribute value - address: + source_amount is the funds that the source is will pay the + target in exchange for the target_amount. + + A hold will be placed on this amount in the source account until + this Payment is accepted, rejected or cancelled. + + If the source_amount is zero, this Payment can be considered a + "payment request." + target: type: string - title: The address the attribute is bound to - expiration_date: + description: |- + target is the account that can accept this Payment. + The target is the only thing allowed to change in a payment. + I.e. it can be empty initially and updated later as needed. + target_amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + title: >- + target_amount is the funds that the target will pay the source + in exchange for the source_amount. + + If the target_amount is zero, this Payment can be considered a + "peer-to-peer (P2P) payment." + external_id: type: string - format: date-time - description: Time that an attribute will expire. - title: >- - Attribute holds a typed key/value structure for data associated with - an account - title: a list of attribute values + description: >- + external_id is used along with the source to uniquely identify + this Payment. + + + A source can only have one Payment with any given external id. + + A source can have two payments with two different external ids. + + Two different sources can each have a payment with the same + external id. + + But a source cannot have two different payments each with the + same external id. + + + An external id can be reused by a source once the payment is + accepted, rejected, or cancelled. + + + The external id is limited to 100 bytes. An empty string is a + valid external id. + description: >- + Payment represents one account's desire to trade funds with another + account. + description: payments is all the payments with the requested target. pagination: - description: pagination defines an optional pagination for the request. + description: pagination is the resulting pagination parameters. type: object properties: next_key: @@ -82775,68 +99734,479 @@ definitions: was set, its value is undefined otherwise description: >- - QueryAttributesResponse is the response type for the Query/Attributes - method. - provenance.attribute.v1.QueryParamsResponse: + QueryGetPaymentsWithTargetResponse is a response message for the + GetPaymentsWithTarget query. + provenance.exchange.v1.QueryOrderFeeCalcResponse: + type: object + properties: + creation_fee_options: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + creation_fee_options are the order creation flat fee options available + for creating the provided order. + + If it's empty, no order creation fee is required. + + When creating the order, you should include exactly one of these. + settlement_flat_fee_options: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + settlement_flat_fee_options are the settlement flat fee options + available for the provided order. + + If it's empty, no settlement flat fee is required. + + When creating an order, you should include exactly one of these in the + settlement fees field. + settlement_ratio_fee_options: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + settlement_ratio_fee_options are the settlement ratio fee options + available for the provided order. + + If it's empty, no settlement ratio fee is required. + + + If the provided order was a bid order, you should include exactly one + of these in the settlement fees field. + + If the flat and ratio options you've chose have the same denom, a + single entry should be included with their sum. + + + If the provided order was an ask order, these are purely informational + and represent how much will be removed + + from your price if it settles at that price. If it settles for more, + the actual amount will probably be larger. + description: >- + QueryOrderFeeCalcResponse is a response message for the OrderFeeCalc + query. + provenance.exchange.v1.QueryParamsResponse: type: object properties: params: - description: params defines the parameters of the module. + description: params are the exchange module parameter values. type: object properties: - max_value_length: + default_split: type: integer format: int64 - title: maximum length of data to allow in an attribute value - description: QueryParamsResponse is the response type for the Query/Params RPC method. - provenance.attribute.v1.QueryScanResponse: + description: >- + default_split is the default proportion of fees the exchange + receives in basis points. + + It is used if there isn't an applicable denom-specific split + defined. + + E.g. 100 = 1%. Min = 0, Max = 10000. + denom_splits: + type: array + items: + type: object + properties: + denom: + type: string + description: denom is the coin denomination this split applies to. + split: + type: integer + format: int64 + description: >- + split is the proportion of fees the exchange receives for + this denom in basis points. + + E.g. 100 = 1%. Min = 0, Max = 10000. + description: >- + DenomSplit associates a coin denomination with an amount the + exchange receives for that denom. + description: denom_splits are the denom-specific amounts the exchange receives. + fee_create_payment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + fee_create_payment_flat is the flat fee options for creating a + payment. + + If the source amount is not zero then one of these fee entries is + required to create the payment. + + This field is currently limited to zero or one entries. + fee_accept_payment_flat: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + fee_accept_payment_flat is the flat fee options for accepting a + payment. + + If the target amount is not zero then one of these fee entries is + required to accept the payment. + + This field is currently limited to zero or one entries. + description: QueryParamsResponse is a response message for the Params query. + provenance.exchange.v1.QueryPaymentFeeCalcResponse: type: object properties: - account: - type: string - title: >- - a string containing the address of the account the attributes are - assigned to= - attributes: + fee_create: type: array items: type: object properties: - name: + denom: type: string - description: The attribute name. - value: + amount: type: string - format: byte - description: The attribute value. - attribute_type: - description: The attribute value type. + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: fee_create is the fee required to create the provided payment. + fee_accept: + type: array + items: + type: object + properties: + denom: type: string - enum: - - ATTRIBUTE_TYPE_UNSPECIFIED - - ATTRIBUTE_TYPE_UUID - - ATTRIBUTE_TYPE_JSON - - ATTRIBUTE_TYPE_STRING - - ATTRIBUTE_TYPE_URI - - ATTRIBUTE_TYPE_INT - - ATTRIBUTE_TYPE_FLOAT - - ATTRIBUTE_TYPE_PROTO - - ATTRIBUTE_TYPE_BYTES - default: ATTRIBUTE_TYPE_UNSPECIFIED - title: >- - AttributeType defines the type of the data stored in the - attribute value - address: + amount: type: string - title: The address the attribute is bound to - expiration_date: + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: fee_accept is the fee required to accept the provided payment. + description: >- + QueryPaymentFeeCalcResponse is a response message for the PaymentFeeCalc + query. + provenance.exchange.v1.QueryValidateCreateMarketResponse: + type: object + properties: + error: + type: string + description: >- + error is any problems or inconsistencies in the provided gov prop msg. + + This goes above and beyond the validation done when actually + processing the governance proposal. + + If an error is returned, and gov_prop_will_pass is true, it means the + error is more of an + + inconsistency that might cause certain aspects of the market to behave + unexpectedly. + gov_prop_will_pass: + type: boolean + description: >- + gov_prop_will_pass will be true if the the provided msg will be + successfully processed at the end of it's voting + + period (assuming it passes). + description: >- + QueryValidateCreateMarketResponse is a response message for the + ValidateCreateMarket query. + provenance.exchange.v1.QueryValidateManageFeesResponse: + type: object + properties: + error: + type: string + description: >- + error is any problems or inconsistencies in the provided gov prop msg. + + This goes above and beyond the validation done when actually + processing the governance proposal. + + If an error is returned, and gov_prop_will_pass is true, it means the + error is more of an + + inconsistency that might cause certain aspects of the market to behave + unexpectedly. + gov_prop_will_pass: + type: boolean + description: >- + gov_prop_will_pass will be true if the the provided msg will be + successfully processed at the end of it's voting + + period (assuming it passes). + description: >- + QueryValidateManageFeesResponse is a response message for the + ValidateManageFees query. + provenance.exchange.v1.QueryValidateMarketResponse: + type: object + properties: + error: + type: string + description: error is any problems or inconsistencies in the provided market. + description: >- + QueryValidateMarketResponse is a response message for the ValidateMarket + query. + provenance.exchange.v1.MsgAcceptPaymentResponse: + type: object + description: >- + MsgAcceptPaymentResponse is a response message for the AcceptPayment + endpoint. + provenance.exchange.v1.MsgCancelOrderResponse: + type: object + description: MsgCancelOrderResponse is a response message for the CancelOrder endpoint. + provenance.exchange.v1.MsgCancelPaymentsResponse: + type: object + description: >- + MsgCancelPaymentsResponse is a response message for the CancelPayments + endpoint. + provenance.exchange.v1.MsgChangePaymentTargetResponse: + type: object + description: >- + MsgChangePaymentTargetResponse is a response message for the + ChangePaymentTarget endpoint. + provenance.exchange.v1.MsgCommitFundsResponse: + type: object + description: MsgCommitFundsResponse is a response message for the CommitFunds endpoint. + provenance.exchange.v1.MsgCreateAskResponse: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the id of the order created. + description: MsgCreateAskResponse is a response message for the CreateAsk endpoint. + provenance.exchange.v1.MsgCreateBidResponse: + type: object + properties: + order_id: + type: string + format: uint64 + description: order_id is the id of the order created. + description: MsgCreateBidResponse is a response message for the CreateBid endpoint. + provenance.exchange.v1.MsgCreatePaymentResponse: + type: object + description: >- + MsgCreatePaymentResponse is a response message for the CreatePayment + endpoint. + provenance.exchange.v1.MsgFillAsksResponse: + type: object + description: MsgFillAsksResponse is a response message for the FillAsks endpoint. + provenance.exchange.v1.MsgFillBidsResponse: + type: object + description: MsgFillBidsResponse is a response message for the FillBids endpoint. + provenance.exchange.v1.MsgGovCloseMarketResponse: + type: object + description: >- + MsgGovCloseMarketResponse is a response message for the GovCloseMarket + endpoint. + provenance.exchange.v1.MsgGovCreateMarketResponse: + type: object + description: >- + MsgGovCreateMarketResponse is a response message for the GovCreateMarket + endpoint. + provenance.exchange.v1.MsgGovManageFeesResponse: + type: object + description: >- + MsgGovManageFeesResponse is a response message for the GovManageFees + endpoint. + provenance.exchange.v1.MsgGovUpdateParamsResponse: + type: object + description: >- + MsgGovUpdateParamsResponse is a response message for the GovUpdateParams + endpoint. + provenance.exchange.v1.MsgMarketCommitmentSettleResponse: + type: object + description: >- + MsgMarketCommitmentSettleResponse is a response message for the + MarketCommitmentSettle endpoint. + provenance.exchange.v1.MsgMarketManagePermissionsResponse: + type: object + description: >- + MsgMarketManagePermissionsResponse is a response message for the + MarketManagePermissions endpoint. + provenance.exchange.v1.MsgMarketManageReqAttrsResponse: + type: object + description: >- + MsgMarketManageReqAttrsResponse is a response message for the + MarketManageReqAttrs endpoint. + provenance.exchange.v1.MsgMarketReleaseCommitmentsResponse: + type: object + description: >- + MsgMarketReleaseCommitmentsResponse is a response message for the + MarketReleaseCommitments endpoint. + provenance.exchange.v1.MsgMarketSetOrderExternalIDResponse: + type: object + description: >- + MsgMarketSetOrderExternalIDResponse is a response message for the + MarketSetOrderExternalID endpoint. + provenance.exchange.v1.MsgMarketSettleResponse: + type: object + description: >- + MsgMarketSettleResponse is a response message for the MarketSettle + endpoint. + provenance.exchange.v1.MsgMarketUpdateAcceptingCommitmentsResponse: + type: object + description: >- + MsgMarketUpdateAcceptingCommitmentsResponse is a response message for the + MarketUpdateAcceptingCommitments endpoint. + provenance.exchange.v1.MsgMarketUpdateAcceptingOrdersResponse: + type: object + description: >- + MsgMarketUpdateAcceptingOrdersResponse is a response message for the + MarketUpdateAcceptingOrders endpoint. + provenance.exchange.v1.MsgMarketUpdateDetailsResponse: + type: object + description: >- + MsgMarketUpdateDetailsResponse is a response message for the + MarketUpdateDetails endpoint. + provenance.exchange.v1.MsgMarketUpdateEnabledResponse: + type: object + description: >- + MsgMarketUpdateEnabledResponse is a response message for the + MarketUpdateEnabled endpoint. + + Deprecated: This endpoint is no longer usable. It is replaced by + MarketUpdateAcceptingOrders. + provenance.exchange.v1.MsgMarketUpdateIntermediaryDenomResponse: + type: object + description: >- + MsgMarketUpdateIntermediaryDenomResponse is a response message for the + MarketUpdateIntermediaryDenom endpoint. + provenance.exchange.v1.MsgMarketUpdateUserSettleResponse: + type: object + description: >- + MsgMarketUpdateUserSettleResponse is a response message for the + MarketUpdateUserSettle endpoint. + provenance.exchange.v1.MsgMarketWithdrawResponse: + type: object + description: >- + MsgMarketWithdrawResponse is a response message for the MarketWithdraw + endpoint. + provenance.exchange.v1.MsgRejectPaymentResponse: + type: object + description: >- + MsgRejectPaymentResponse is a response message for the RejectPayment + endpoint. + provenance.exchange.v1.MsgRejectPaymentsResponse: + type: object + description: >- + MsgRejectPaymentsResponse is a response message for the RejectPayments + endpoint. + provenance.hold.v1.AccountHold: + type: object + properties: + address: + type: string + description: address is the account address that holds the funds on hold. + amount: + type: array + items: + type: object + properties: + denom: type: string - format: date-time - description: Time that an attribute will expire. - title: >- - Attribute holds a typed key/value structure for data associated with - an account - title: a list of attribute values + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: amount is the balances that are on hold for the address. + description: AccountHold associates an address with an amount on hold for that address. + provenance.hold.v1.GetAllHoldsResponse: + type: object + properties: + holds: + type: array + items: + type: object + properties: + address: + type: string + description: address is the account address that holds the funds on hold. + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: amount is the balances that are on hold for the address. + description: >- + AccountHold associates an address with an amount on hold for that + address. + description: >- + holds is a list of addresses with funds on hold and the amounts being + held. pagination: description: pagination defines an optional pagination for the request. type: object @@ -82856,27 +100226,57 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: QueryScanResponse is the response type for the Query/Scan method. - provenance.attribute.v1.MsgAddAttributeResponse: - type: object - description: MsgAddAttributeResponse defines the Msg/AddAttribute response type. - provenance.attribute.v1.MsgDeleteAttributeResponse: + description: GetAllHoldsResponse is the response type for the Query/GetAllHolds query. + provenance.hold.v1.GetHoldsResponse: type: object - description: MsgDeleteAttributeResponse defines the Msg/DeleteAttribute response type. - provenance.attribute.v1.MsgDeleteDistinctAttributeResponse: + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: amount is the total on hold for the requested address. + description: GetHoldsResponse is the response type for the Query/GetHolds query. + provenance.ibchooks.v1.MsgEmitIBCAckResponse: type: object - description: >- - MsgDeleteDistinctAttributeResponse defines the Msg/DeleteDistinctAttribute - response type. - provenance.attribute.v1.MsgSetAccountDataResponse: + properties: + contract_result: + type: string + ibc_ack: + type: string + title: MsgEmitIBCAckResponse is the IBC Acknowledgement response + provenance.ibcratelimit.v1.Params: type: object - description: MsgSetAccountDataResponse defines the Msg/SetAccountData response type. - provenance.attribute.v1.MsgUpdateAttributeExpirationResponse: + properties: + contract_address: + type: string + description: contract_address is the address of the rate limiter contract. + description: Params defines the parameters for the ibcratelimit module. + provenance.ibcratelimit.v1.ParamsResponse: type: object - description: MsgUpdateAttributeExpirationResponse defines the Msg/Vote response type. - provenance.attribute.v1.MsgUpdateAttributeResponse: + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + contract_address: + type: string + description: contract_address is the address of the rate limiter contract. + description: ParamsResponse is the response type for the Query/Params RPC method. + provenance.ibcratelimit.v1.MsgGovUpdateParamsResponse: type: object - description: MsgUpdateAttributeResponse defines the Msg/UpdateAttribute response type. + description: >- + MsgGovUpdateParamsResponse is a response message for the GovUpdateParams + endpoint. provenance.marker.v1.Access: type: string enum: @@ -82888,22 +100288,32 @@ definitions: - ACCESS_DELETE - ACCESS_ADMIN - ACCESS_TRANSFER + - ACCESS_FORCE_TRANSFER default: ACCESS_UNSPECIFIED description: >- Access defines the different types of permissions that a marker supports granting to an address. - ACCESS_UNSPECIFIED: ACCESS_UNSPECIFIED defines a no-op vote option. - - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker + - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker. - ACCESS_BURN: ACCESS_BURN is the ability to decrease the supply of the marker using coin held by the marker. - - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to set a marker reference to this marker in the metadata/scopes module - - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to remove marker references to this marker in from metadata/scopes or - transfer coin from this marker account to another account. - - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. This - access also allows cancelled markers to be marked for deletion + - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to transfer funds from another account to this marker account + or to set a reference to this marker in the metadata/scopes module. + - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to transfer funds from this marker account to another account + or to remove a reference to this marker in the metadata/scopes module. + - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. + This access also allows cancelled markers to be marked for deletion. - ACCESS_ADMIN: ACCESS_ADMIN is the ability to add access grants for accounts to the list of marker permissions. - - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to invoke a send operation using the marker module to facilitate exchange. + This access also gives the ability to update the marker's denom metadata. + - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to manage transfer settings and broker transfers of the marker. + Accounts with this access can: + - Update the marker's required attributes. + - Update the send-deny list. + - Use the transfer or bank send endpoints to move marker funds out of their own account. This access right is only supported on RESTRICTED markers. + - ACCESS_FORCE_TRANSFER: ACCESS_FORCE_TRANSFER is the ability to transfer restricted coins from a 3rd-party account without their signature. + This access right is only supported on RESTRICTED markers and only has + meaning when allow_forced_transfer is true. provenance.marker.v1.AccessGrant: type: object properties: @@ -82922,22 +100332,34 @@ definitions: - ACCESS_DELETE - ACCESS_ADMIN - ACCESS_TRANSFER + - ACCESS_FORCE_TRANSFER default: ACCESS_UNSPECIFIED description: >- Access defines the different types of permissions that a marker supports granting to an address. - ACCESS_UNSPECIFIED: ACCESS_UNSPECIFIED defines a no-op vote option. - - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker + - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker. - ACCESS_BURN: ACCESS_BURN is the ability to decrease the supply of the marker using coin held by the marker. - - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to set a marker reference to this marker in the metadata/scopes module - - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to remove marker references to this marker in from metadata/scopes or - transfer coin from this marker account to another account. - - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. This - access also allows cancelled markers to be marked for deletion + - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to transfer funds from another account to this marker account + or to set a reference to this marker in the metadata/scopes module. + - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to transfer funds from this marker account to another account + or to remove a reference to this marker in the metadata/scopes + module. + - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. + This access also allows cancelled markers to be marked for deletion. - ACCESS_ADMIN: ACCESS_ADMIN is the ability to add access grants for accounts to the list of marker permissions. - - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to invoke a send operation using the marker module to facilitate exchange. + This access also gives the ability to update the marker's denom + metadata. + - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to manage transfer settings and broker transfers of the marker. + Accounts with this access can: + - Update the marker's required attributes. + - Update the send-deny list. + - Use the transfer or bank send endpoints to move marker funds out of their own account. This access right is only supported on RESTRICTED markers. + - ACCESS_FORCE_TRANSFER: ACCESS_FORCE_TRANSFER is the ability to transfer restricted coins from a 3rd-party account without their signature. + This access right is only supported on RESTRICTED markers and only + has meaning when allow_forced_transfer is true. description: >- AccessGrant associates a collection of permissions with an address for delegated marker account control. @@ -83059,22 +100481,36 @@ definitions: - ACCESS_DELETE - ACCESS_ADMIN - ACCESS_TRANSFER + - ACCESS_FORCE_TRANSFER default: ACCESS_UNSPECIFIED description: >- Access defines the different types of permissions that a marker supports granting to an address. - ACCESS_UNSPECIFIED: ACCESS_UNSPECIFIED defines a no-op vote option. - - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker + - ACCESS_MINT: ACCESS_MINT is the ability to increase the supply of a marker. - ACCESS_BURN: ACCESS_BURN is the ability to decrease the supply of the marker using coin held by the marker. - - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to set a marker reference to this marker in the metadata/scopes module - - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to remove marker references to this marker in from metadata/scopes or - transfer coin from this marker account to another account. - - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. This - access also allows cancelled markers to be marked for deletion + - ACCESS_DEPOSIT: ACCESS_DEPOSIT is the ability to transfer funds from another account to this marker account + or to set a reference to this marker in the metadata/scopes + module. + - ACCESS_WITHDRAW: ACCESS_WITHDRAW is the ability to transfer funds from this marker account to another account + or to remove a reference to this marker in the metadata/scopes + module. + - ACCESS_DELETE: ACCESS_DELETE is the ability to move a proposed, finalized or active marker into the cancelled state. + This access also allows cancelled markers to be marked for + deletion. - ACCESS_ADMIN: ACCESS_ADMIN is the ability to add access grants for accounts to the list of marker permissions. - - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to invoke a send operation using the marker module to facilitate exchange. + This access also gives the ability to update the marker's + denom metadata. + - ACCESS_TRANSFER: ACCESS_TRANSFER is the ability to manage transfer settings and broker transfers of the marker. + Accounts with this access can: + - Update the marker's required attributes. + - Update the send-deny list. + - Use the transfer or bank send endpoints to move marker funds out of their own account. This access right is only supported on RESTRICTED markers. + - ACCESS_FORCE_TRANSFER: ACCESS_FORCE_TRANSFER is the ability to transfer restricted coins from a 3rd-party account without their signature. + This access right is only supported on RESTRICTED markers and + only has meaning when allow_forced_transfer is true. description: >- AccessGrant associates a collection of permissions with an address for delegated marker account control. @@ -85471,6 +102907,27 @@ definitions: on or off chain) to define an input parameter + provenance.metadata.v1.NetAssetValue: + type: object + properties: + price: + title: price is the complete value of the asset's volume + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + updated_block_height: + type: string + format: uint64 + title: updated_block_height is the block height of last update + title: NetAssetValue defines a scope's net asset value provenance.metadata.v1.OSAllLocatorsRequest: type: object properties: @@ -86260,6 +103717,39 @@ definitions: include_request is a flag for whether to include this request in your result. description: QueryParamsResponse is the response type for the Query/Params RPC method. + provenance.metadata.v1.QueryScopeNetAssetValuesResponse: + type: object + properties: + net_asset_values: + type: array + items: + type: object + properties: + price: + title: price is the complete value of the asset's volume + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + updated_block_height: + type: string + format: uint64 + title: updated_block_height is the block height of last update + title: NetAssetValue defines a scope's net asset value + title: net asset values for scope + description: >- + QueryNetAssetValuesRequest is the response type for the + Query/NetAssetValues method. provenance.metadata.v1.Record: type: object properties: @@ -91951,117 +109441,1025 @@ definitions: involved. - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: - description: >- - session_id_info contains information about the id/address of the - session. - type: object - properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: session_id_prefix is the prefix portion of the session_id. - session_id_scope_uuid: - type: string - format: byte - description: >- - session_id_scope_uuid is the scope_uuid portion of the - session_id. - session_id_session_uuid: - type: string - format: byte - description: >- - session_id_session_uuid is the session_uuid portion of the - session_id. - session_addr: - type: string - description: session_addr is the bech32 string version of the session_id. - session_uuid: - type: string - description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id referenced - in the session_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: scope_addr is the bech32 string version of the scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - contract_spec_id_info: - description: >- - contract_spec_id_info contains information about the id/address - of the contract specification. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of the - contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - SessionWrapper contains a single session and some extra identifiers - for it. - description: sessions are the wrapped sessions. + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the id/address of the + session. + type: object + properties: + session_id: + type: string + format: byte + description: session_id is the raw bytes of the session address. + session_id_prefix: + type: string + format: byte + description: session_id_prefix is the prefix portion of the session_id. + session_id_scope_uuid: + type: string + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of the + session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion of the + session_id. + session_addr: + type: string + description: session_addr is the bech32 string version of the session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id referenced + in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: + type: string + description: scope_addr is the bech32 string version of the scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the id/address + of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of the + contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + SessionWrapper contains a single session and some extra identifiers + for it. + description: sessions are the wrapped sessions. + request: + description: request is a copy of the request that generated these results. + type: object + properties: + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this request in + your result. + pagination: + description: pagination defines optional pagination parameters for the request. + type: object + properties: + key: + type: string + format: byte + description: >- + key is a value returned in PageResponse.next_key to begin + + querying the next page most efficiently. Only one of offset or + key + + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key is + unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in the + result page. + + If left empty it will default to a value to be set by each + app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the result set + should include + + a count of the total number of items available for pagination + in UIs. + + count_total is only respected when offset is used. It is + ignored when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + title: >- + PageRequest is to be embedded in gRPC request messages for + efficient + + pagination. Ex: + pagination: + description: pagination provides the pagination information of this response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + SessionsAllResponse is the response type for the Query/SessionsAll RPC + method. + provenance.metadata.v1.SessionsRequest: + type: object + properties: + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_id: + type: string + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + record_name: + type: string + description: >- + record_name is the name of the record to find the session for in the + provided scope. + include_scope: + type: boolean + description: >- + include_scope is a flag for whether to include the scope containing + these sessions in the response. + include_records: + type: boolean + description: >- + include_records is a flag for whether to include the records of these + sessions in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id info from the + response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this request in your + result. + description: SessionsRequest is the request type for the Query/Sessions RPC method. + provenance.metadata.v1.SessionsResponse: + type: object + properties: + scope: + description: scope is the wrapped scope that holds these sessions (if requested). + type: object + properties: + scope: + type: object + properties: + scope_id: + type: string + format: byte + title: >- + Unique ID for this scope. Implements sdk.Address interface + for use where addresses are required in Cosmos + specification_id: + type: string + format: byte + title: >- + the scope specification that contains the specifications for + data elements allowed within this scope + owners: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of the + processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an + error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role associated with a + contract + description: >- + These parties represent top level owners of the records + within. These parties must sign any requests that modify + + the data within the scope. These addresses are in union with + parties listed on the sessions. + data_access: + type: array + items: + type: string + description: >- + Addresses in this list are authorized to receive off-chain + data associated with this scope. + value_owner_address: + type: string + description: >- + An address that controls the value associated with this + scope. Standard blockchain accounts and marker accounts + + are supported for this value. This attribute may only be + changed by the entity indicated once it is set. + require_party_rollup: + type: boolean + description: >- + Whether all parties in this scope and its sessions must be + present in this scope's owners field. + + This also enables use of optional=true scope owners and + session parties. + description: >- + Scope defines a root reference for a collection of records owned + by one or more parties. + scope_id_info: + description: >- + scope_id_info contains information about the id/address of the + scope. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: scope_id_scope_uuid is the scope_uuid portion of the scope_id. + scope_addr: + type: string + description: scope_addr is the bech32 string version of the scope_id. + scope_uuid: + type: string + description: scope_uuid is the uuid hex string of the scope_id_scope_uuid. + scope_spec_id_info: + description: >- + scope_spec_id_info contains information about the id/address of + the scope specification. + type: object + properties: + scope_spec_id: + type: string + format: byte + description: >- + scope_spec_id is the raw bytes of the scope specification + address. + scope_spec_id_prefix: + type: string + format: byte + description: >- + scope_spec_id_prefix is the prefix portion of the + scope_spec_id. + scope_spec_id_scope_spec_uuid: + type: string + format: byte + description: >- + scope_spec_id_scope_spec_uuid is the scope_spec_uuid portion + of the scope_spec_id. + scope_spec_addr: + type: string + description: >- + scope_spec_addr is the bech32 string version of the + scope_spec_id. + scope_spec_uuid: + type: string + description: >- + scope_spec_uuid is the uuid hex string of the + scope_spec_id_scope_spec_uuid. + sessions: + type: array + items: + type: object + properties: + session: + type: object + properties: + session_id: + type: string + format: byte + specification_id: + type: string + format: byte + description: >- + unique id of the contract specification that was used to + create this session. + parties: + type: array + items: + type: object + properties: + address: + type: string + title: address of the account (on chain) + role: + title: >- + a role for this account within the context of the + processes used + type: string + enum: + - PARTY_TYPE_UNSPECIFIED + - PARTY_TYPE_ORIGINATOR + - PARTY_TYPE_SERVICER + - PARTY_TYPE_INVESTOR + - PARTY_TYPE_CUSTODIAN + - PARTY_TYPE_OWNER + - PARTY_TYPE_AFFILIATE + - PARTY_TYPE_OMNIBUS + - PARTY_TYPE_PROVENANCE + - PARTY_TYPE_CONTROLLER + - PARTY_TYPE_VALIDATOR + default: PARTY_TYPE_UNSPECIFIED + description: >- + - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an + error condition + - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator + - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions + - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor + - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets + - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item + - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement + - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account + - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action + - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) + - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain + optional: + type: boolean + title: whether this party's signature is optional + title: >- + A Party is an address with/in a given role associated with + a contract + title: parties is the set of identities that signed this contract + name: + type: string + title: >- + name to associate with this session execution context, + typically classname + context: + type: string + format: byte + description: >- + context is a field for storing client specific data + associated with a session. + audit: + description: >- + Created by, updated by, timestamps, version number, and + related info. + type: object + properties: + created_date: + type: string + format: date-time + title: the date/time when this entry was created + created_by: + type: string + title: the address of the account that created this record + updated_date: + type: string + format: date-time + title: the date/time when this entry was last updated + updated_by: + type: string + title: the address of the account that modified this record + version: + type: integer + format: int64 + title: >- + an optional version number that is incremented with each + update + message: + type: string + title: >- + an optional message associated with the creation/update + event + title: >- + AuditFields capture information about the last account to + make modifications and when they were made + description: >- + Session defines an execution context against a specific + specification instance. + + The context will have a specification and set of parties + involved. + + + NOTE: When there are no more Records within a Scope that + reference a Session, the Session is removed. + session_id_info: + description: >- + session_id_info contains information about the id/address of the + session. + type: object + properties: + session_id: + type: string + format: byte + description: session_id is the raw bytes of the session address. + session_id_prefix: + type: string + format: byte + description: session_id_prefix is the prefix portion of the session_id. + session_id_scope_uuid: + type: string + format: byte + description: >- + session_id_scope_uuid is the scope_uuid portion of the + session_id. + session_id_session_uuid: + type: string + format: byte + description: >- + session_id_session_uuid is the session_uuid portion of the + session_id. + session_addr: + type: string + description: session_addr is the bech32 string version of the session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id referenced + in the session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: + type: string + description: scope_addr is the bech32 string version of the scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the id/address + of the contract specification. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of the + contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + SessionWrapper contains a single session and some extra identifiers + for it. + description: sessions is any number of wrapped session results. + records: + type: array + items: + type: object + properties: + record: + type: object + properties: + name: + type: string + title: >- + name/identifier for this record. Value must be unique + within the scope. Also known as a Fact name + session_id: + type: string + format: byte + title: >- + id of the session context that was used to create this + record (use with filtered kvprefix iterator) + process: + title: >- + process contain information used to uniquely identify an + execution on or off chain that generated this record + type: object + properties: + address: + type: string + title: the address of a smart contract used for this process + hash: + type: string + title: the hash of an off-chain process used + name: + type: string + title: >- + a name associated with the process (type_name, classname + or smart contract common name) + method: + type: string + title: >- + method is a name or reference to a specific operation + (method) within a class/contract that was invoked + inputs: + type: array + items: + type: object + properties: + name: + type: string + description: >- + Name value included to link back to the definition + spec. + record_id: + type: string + format: byte + title: >- + the address of a record on chain (For Established + Records) + hash: + type: string + title: >- + the hash of an off-chain piece of information (For + Proposed Records) + type_name: + type: string + title: from proposed fact structure to unmarshal + status: + title: >- + Indicates if this input was a recorded fact on chain + or just a given hashed input + type: string + enum: + - RECORD_INPUT_STATUS_UNSPECIFIED + - RECORD_INPUT_STATUS_PROPOSED + - RECORD_INPUT_STATUS_RECORD + default: RECORD_INPUT_STATUS_UNSPECIFIED + description: >- + - RECORD_INPUT_STATUS_UNSPECIFIED: + RECORD_INPUT_STATUS_UNSPECIFIED indicates an + invalid/unknown input type + - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed + - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain + title: Tracks the inputs used to establish this record + title: >- + inputs used with the process to achieve the output on this + record + outputs: + type: array + items: + type: object + properties: + hash: + type: string + title: >- + Hash of the data output that was output/generated for + this record + status: + title: >- + Status of the process execution associated with this + output indicating success,failure, or pending + type: string + enum: + - RESULT_STATUS_UNSPECIFIED + - RESULT_STATUS_PASS + - RESULT_STATUS_SKIP + - RESULT_STATUS_FAIL + default: RESULT_STATUS_UNSPECIFIED + description: >- + - RESULT_STATUS_UNSPECIFIED: RESULT_STATUS_UNSPECIFIED + indicates an unset condition + - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful + - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution + - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. + title: >- + RecordOutput encapsulates the output of a process recorded + on chain + title: >- + output(s) is the results of executing the process on the + given process indicated in this record + specification_id: + type: string + format: byte + description: >- + specification_id is the id of the record specification that + was used to create this record. + title: >- + A record (of fact) is attached to a session or each + consideration output from a contract + description: record is the on-chain record message. + record_id_info: + description: >- + record_id_info contains information about the id/address of the + record. + type: object + properties: + record_id: + type: string + format: byte + description: record_id is the raw bytes of the record address. + record_id_prefix: + type: string + format: byte + description: record_id_prefix is the prefix portion of the record_id. + record_id_scope_uuid: + type: string + format: byte + description: >- + record_id_scope_uuid is the scope_uuid portion of the + record_id. + record_id_hashed_name: + type: string + format: byte + description: >- + record_id_hashed_name is the hashed name portion of the + record_id. + record_addr: + type: string + description: record_addr is the bech32 string version of the record_id. + scope_id_info: + description: >- + scope_id_info is information about the scope id referenced + in the record_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: >- + scope_id_scope_uuid is the scope_uuid portion of the + scope_id. + scope_addr: + type: string + description: scope_addr is the bech32 string version of the scope_id. + scope_uuid: + type: string + description: >- + scope_uuid is the uuid hex string of the + scope_id_scope_uuid. + record_spec_id_info: + description: >- + record_spec_id_info contains information about the id/address of + the record specification. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record specification + address. + record_spec_id_prefix: + type: string + format: byte + description: >- + record_spec_id_prefix is the prefix portion of the + record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the contract_spec_uuid + portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name portion of the + record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: + description: >- + contract_spec_id_info is information about the contract spec + id referenced in the record_spec_id. + type: object + properties: + contract_spec_id: + type: string + format: byte + description: >- + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the + contract_spec_uuid portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of the + contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + RecordWrapper contains a single record and some extra identifiers + for it. + description: >- + records is any number of wrapped records contained in these sessions + (if requested). + request: + description: request is a copy of the request that generated these results. + type: object + properties: + scope_id: + type: string + description: >- + scope_id can either be a uuid, e.g. + 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, + e.g. + + scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. + session_id: + type: string + description: >- + session_id can either be a uuid, e.g. + 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, + e.g. + + session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. + This can only be a uuid if a scope_id is also + + provided. + record_addr: + type: string + description: >- + record_addr is a bech32 record address, e.g. + record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. + record_name: + type: string + description: >- + record_name is the name of the record to find the session for in + the provided scope. + include_scope: + type: boolean + description: >- + include_scope is a flag for whether to include the scope + containing these sessions in the response. + include_records: + type: boolean + description: >- + include_records is a flag for whether to include the records of + these sessions in the response. + exclude_id_info: + type: boolean + description: >- + exclude_id_info is a flag for whether to exclude the id info from + the response. + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this request in + your result. + description: SessionsResponse is the response type for the Query/Sessions RPC method. + provenance.metadata.v1.ValueOwnershipRequest: + type: object + properties: + address: + type: string + include_request: + type: boolean + description: >- + include_request is a flag for whether to include this request in your + result. + pagination: + description: pagination defines optional pagination parameters for the request. + type: object + properties: + key: + type: string + format: byte + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + offset: + type: string + format: uint64 + description: >- + offset is a numeric offset that can be used when key is + unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + limit: + type: string + format: uint64 + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + count_total: + type: boolean + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + reverse: + type: boolean + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + title: |- + PageRequest is to be embedded in gRPC request messages for efficient + pagination. Ex: + description: >- + ValueOwnershipRequest is the request type for the Query/ValueOwnership RPC + method. + provenance.metadata.v1.ValueOwnershipResponse: + type: object + properties: + scope_uuids: + type: array + items: + type: string + description: A list of scope ids (uuid) associated with the given address. request: description: request is a copy of the request that generated these results. type: object properties: - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. + address: + type: string include_request: type: boolean description: >- @@ -92147,162 +110545,228 @@ definitions: was set, its value is undefined otherwise description: >- - SessionsAllResponse is the response type for the Query/SessionsAll RPC - method. - provenance.metadata.v1.SessionsRequest: + ValueOwnershipResponse is the response type for the Query/ValueOwnership + RPC method. + provenance.metadata.v1.MsgAddContractSpecToScopeSpecResponse: + type: object + description: >- + MsgAddContractSpecToScopeSpecResponse is the response type for the + Msg/AddContractSpecToScopeSpec RPC method. + provenance.metadata.v1.MsgAddNetAssetValuesResponse: + type: object + title: >- + MsgAddNetAssetValuesResponse defines the Msg/AddNetAssetValue response + type + provenance.metadata.v1.MsgAddScopeDataAccessResponse: + type: object + title: >- + MsgAddScopeDataAccessResponse is the response for adding data access + AccAddress to scope + provenance.metadata.v1.MsgAddScopeOwnerResponse: + type: object + title: >- + MsgAddScopeOwnerResponse is the response for adding owner AccAddresses to + scope + provenance.metadata.v1.MsgBindOSLocatorResponse: type: object properties: - scope_id: - type: string - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: - type: string + locator: + type: object + properties: + owner: + type: string + title: account address the endpoint is owned by + locator_uri: + type: string + title: locator endpoint uri + encryption_key: + type: string + title: owners encryption key address description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g. + Defines an Locator object stored on chain, which represents a owner( + blockchain address) associated with a endpoint - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also + uri for it's associated object store. + description: >- + MsgBindOSLocatorResponse is the response type for the Msg/BindOSLocator + RPC method. + provenance.metadata.v1.MsgDeleteContractSpecFromScopeSpecResponse: + type: object + description: >- + MsgDeleteContractSpecFromScopeSpecResponse is the response type for the + Msg/DeleteContractSpecFromScopeSpec RPC - provided. - record_addr: - type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - record_name: - type: string - description: >- - record_name is the name of the record to find the session for in the - provided scope. - include_scope: - type: boolean - description: >- - include_scope is a flag for whether to include the scope containing - these sessions in the response. - include_records: - type: boolean - description: >- - include_records is a flag for whether to include the records of these - sessions in the response. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id info from the - response. - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this request in your - result. - description: SessionsRequest is the request type for the Query/Sessions RPC method. - provenance.metadata.v1.SessionsResponse: + method. + provenance.metadata.v1.MsgDeleteContractSpecificationResponse: + type: object + description: >- + MsgDeleteContractSpecificationResponse is the response type for the + Msg/DeleteContractSpecification RPC method. + provenance.metadata.v1.MsgDeleteOSLocatorResponse: type: object properties: - scope: - description: scope is the wrapped scope that holds these sessions (if requested). + locator: type: object properties: - scope: - type: object - properties: - scope_id: - type: string - format: byte - title: >- - Unique ID for this scope. Implements sdk.Address interface - for use where addresses are required in Cosmos - specification_id: - type: string - format: byte - title: >- - the scope specification that contains the specifications for - data elements allowed within this scope - owners: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of the - processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an - error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role associated with a - contract - description: >- - These parties represent top level owners of the records - within. These parties must sign any requests that modify + owner: + type: string + title: account address the endpoint is owned by + locator_uri: + type: string + title: locator endpoint uri + encryption_key: + type: string + title: owners encryption key address + description: >- + Defines an Locator object stored on chain, which represents a owner( + blockchain address) associated with a endpoint - the data within the scope. These addresses are in union with - parties listed on the sessions. - data_access: - type: array - items: - type: string - description: >- - Addresses in this list are authorized to receive off-chain - data associated with this scope. - value_owner_address: - type: string - description: >- - An address that controls the value associated with this - scope. Standard blockchain accounts and marker accounts + uri for it's associated object store. + description: >- + MsgDeleteOSLocatorResponse is the response type for the + Msg/DeleteOSLocator RPC method. + provenance.metadata.v1.MsgDeleteRecordResponse: + type: object + description: >- + MsgDeleteRecordResponse is the response type for the Msg/DeleteRecord RPC + method. + provenance.metadata.v1.MsgDeleteRecordSpecificationResponse: + type: object + description: >- + MsgDeleteRecordSpecificationResponse is the response type for the + Msg/DeleteRecordSpecification RPC method. + provenance.metadata.v1.MsgDeleteScopeDataAccessResponse: + type: object + title: >- + MsgDeleteScopeDataAccessResponse is the response from removing data access + AccAddress to scope + provenance.metadata.v1.MsgDeleteScopeOwnerResponse: + type: object + title: >- + MsgDeleteScopeOwnerResponse is the response from removing owner AccAddress + to scope + provenance.metadata.v1.MsgDeleteScopeResponse: + type: object + description: >- + MsgDeleteScopeResponse is the response type for the Msg/DeleteScope RPC + method. + provenance.metadata.v1.MsgDeleteScopeSpecificationResponse: + type: object + description: >- + MsgDeleteScopeSpecificationResponse is the response type for the + Msg/DeleteScopeSpecification RPC method. + provenance.metadata.v1.MsgMigrateValueOwnerResponse: + type: object + description: >- + MsgMigrateValueOwnerResponse is the response from migrating a value owner + address. + provenance.metadata.v1.MsgModifyOSLocatorResponse: + type: object + properties: + locator: + type: object + properties: + owner: + type: string + title: account address the endpoint is owned by + locator_uri: + type: string + title: locator endpoint uri + encryption_key: + type: string + title: owners encryption key address + description: >- + Defines an Locator object stored on chain, which represents a owner( + blockchain address) associated with a endpoint - are supported for this value. This attribute may only be - changed by the entity indicated once it is set. - require_party_rollup: - type: boolean - description: >- - Whether all parties in this scope and its sessions must be - present in this scope's owners field. + uri for it's associated object store. + description: >- + MsgModifyOSLocatorResponse is the response type for the + Msg/ModifyOSLocator RPC method. + provenance.metadata.v1.MsgSetAccountDataResponse: + type: object + description: >- + MsgSetAccountDataResponse is the response from setting/updating/deleting a + scope's account data. + provenance.metadata.v1.MsgUpdateValueOwnersResponse: + type: object + description: >- + MsgUpdateValueOwnersResponse is the response from updating value owner + addresses in one or more scopes. + provenance.metadata.v1.MsgWriteContractSpecificationResponse: + type: object + properties: + contract_spec_id_info: + description: >- + contract_spec_id_info contains information about the id/address of the + contract specification that was added or - This also enables use of optional=true scope owners and - session parties. + updated. + type: object + properties: + contract_spec_id: + type: string + format: byte description: >- - Scope defines a root reference for a collection of records owned - by one or more parties. + contract_spec_id is the raw bytes of the contract specification + address. + contract_spec_id_prefix: + type: string + format: byte + description: >- + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + contract_spec_id_contract_spec_uuid is the contract_spec_uuid + portion of the contract_spec_id. + contract_spec_addr: + type: string + description: >- + contract_spec_addr is the bech32 string version of the + contract_spec_id. + contract_spec_uuid: + type: string + description: >- + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + MsgWriteContractSpecificationResponse is the response type for the + Msg/WriteContractSpecification RPC method. + provenance.metadata.v1.MsgWriteRecordResponse: + type: object + properties: + record_id_info: + description: >- + record_id_info contains information about the id/address of the record + that was added or updated. + type: object + properties: + record_id: + type: string + format: byte + description: record_id is the raw bytes of the record address. + record_id_prefix: + type: string + format: byte + description: record_id_prefix is the prefix portion of the record_id. + record_id_scope_uuid: + type: string + format: byte + description: record_id_scope_uuid is the scope_uuid portion of the record_id. + record_id_hashed_name: + type: string + format: byte + description: record_id_hashed_name is the hashed name portion of the record_id. + record_addr: + type: string + description: record_addr is the bech32 string version of the record_id. scope_id_info: description: >- - scope_id_info contains information about the id/address of the - scope. + scope_id_info is information about the scope id referenced in the + record_id. type: object properties: scope_id: @@ -92323,720 +110787,560 @@ definitions: scope_uuid: type: string description: scope_uuid is the uuid hex string of the scope_id_scope_uuid. - scope_spec_id_info: + description: >- + MsgWriteRecordResponse is the response type for the Msg/WriteRecord RPC + method. + provenance.metadata.v1.MsgWriteRecordSpecificationResponse: + type: object + properties: + record_spec_id_info: + description: >- + record_spec_id_info contains information about the id/address of the + record specification that was added or + + updated. + type: object + properties: + record_spec_id: + type: string + format: byte + description: >- + record_spec_id is the raw bytes of the record specification + address. + record_spec_id_prefix: + type: string + format: byte + description: record_spec_id_prefix is the prefix portion of the record_spec_id. + record_spec_id_contract_spec_uuid: + type: string + format: byte + description: >- + record_spec_id_contract_spec_uuid is the contract_spec_uuid + portion of the record_spec_id. + record_spec_id_hashed_name: + type: string + format: byte + description: >- + record_spec_id_hashed_name is the hashed name portion of the + record_spec_id. + record_spec_addr: + type: string + description: >- + record_spec_addr is the bech32 string version of the + record_spec_id. + contract_spec_id_info: description: >- - scope_spec_id_info contains information about the id/address of - the scope specification. + contract_spec_id_info is information about the contract spec id + referenced in the record_spec_id. type: object properties: - scope_spec_id: + contract_spec_id: type: string format: byte description: >- - scope_spec_id is the raw bytes of the scope specification - address. - scope_spec_id_prefix: + contract_spec_id is the raw bytes of the contract + specification address. + contract_spec_id_prefix: type: string format: byte description: >- - scope_spec_id_prefix is the prefix portion of the - scope_spec_id. - scope_spec_id_scope_spec_uuid: + contract_spec_id_prefix is the prefix portion of the + contract_spec_id. + contract_spec_id_contract_spec_uuid: type: string format: byte description: >- - scope_spec_id_scope_spec_uuid is the scope_spec_uuid portion - of the scope_spec_id. - scope_spec_addr: + contract_spec_id_contract_spec_uuid is the contract_spec_uuid + portion of the contract_spec_id. + contract_spec_addr: type: string description: >- - scope_spec_addr is the bech32 string version of the - scope_spec_id. - scope_spec_uuid: + contract_spec_addr is the bech32 string version of the + contract_spec_id. + contract_spec_uuid: type: string description: >- - scope_spec_uuid is the uuid hex string of the - scope_spec_id_scope_spec_uuid. - sessions: - type: array - items: - type: object - properties: - session: - type: object - properties: - session_id: - type: string - format: byte - specification_id: - type: string - format: byte - description: >- - unique id of the contract specification that was used to - create this session. - parties: - type: array - items: - type: object - properties: - address: - type: string - title: address of the account (on chain) - role: - title: >- - a role for this account within the context of the - processes used - type: string - enum: - - PARTY_TYPE_UNSPECIFIED - - PARTY_TYPE_ORIGINATOR - - PARTY_TYPE_SERVICER - - PARTY_TYPE_INVESTOR - - PARTY_TYPE_CUSTODIAN - - PARTY_TYPE_OWNER - - PARTY_TYPE_AFFILIATE - - PARTY_TYPE_OMNIBUS - - PARTY_TYPE_PROVENANCE - - PARTY_TYPE_CONTROLLER - - PARTY_TYPE_VALIDATOR - default: PARTY_TYPE_UNSPECIFIED - description: >- - - PARTY_TYPE_UNSPECIFIED: PARTY_TYPE_UNSPECIFIED is an - error condition - - PARTY_TYPE_ORIGINATOR: PARTY_TYPE_ORIGINATOR is an asset originator - - PARTY_TYPE_SERVICER: PARTY_TYPE_SERVICER provides debt servicing functions - - PARTY_TYPE_INVESTOR: PARTY_TYPE_INVESTOR is a generic investor - - PARTY_TYPE_CUSTODIAN: PARTY_TYPE_CUSTODIAN is an entity that provides custodian services for assets - - PARTY_TYPE_OWNER: PARTY_TYPE_OWNER indicates this party is an owner of the item - - PARTY_TYPE_AFFILIATE: PARTY_TYPE_AFFILIATE is a party with an affiliate agreement - - PARTY_TYPE_OMNIBUS: PARTY_TYPE_OMNIBUS is a special type of party that controls an omnibus bank account - - PARTY_TYPE_PROVENANCE: PARTY_TYPE_PROVENANCE is used to indicate this party represents the blockchain or a smart contract action - - PARTY_TYPE_CONTROLLER: PARTY_TYPE_CONTROLLER is an entity which controls a specific asset on chain (ie enote) - - PARTY_TYPE_VALIDATOR: PARTY_TYPE_VALIDATOR is an entity which validates given assets on chain - optional: - type: boolean - title: whether this party's signature is optional - title: >- - A Party is an address with/in a given role associated with - a contract - title: parties is the set of identities that signed this contract - name: - type: string - title: >- - name to associate with this session execution context, - typically classname - context: - type: string - format: byte - description: >- - context is a field for storing client specific data - associated with a session. - audit: - description: >- - Created by, updated by, timestamps, version number, and - related info. - type: object - properties: - created_date: - type: string - format: date-time - title: the date/time when this entry was created - created_by: - type: string - title: the address of the account that created this record - updated_date: - type: string - format: date-time - title: the date/time when this entry was last updated - updated_by: - type: string - title: the address of the account that modified this record - version: - type: integer - format: int64 - title: >- - an optional version number that is incremented with each - update - message: - type: string - title: >- - an optional message associated with the creation/update - event - title: >- - AuditFields capture information about the last account to - make modifications and when they were made - description: >- - Session defines an execution context against a specific - specification instance. - - The context will have a specification and set of parties - involved. - - - NOTE: When there are no more Records within a Scope that - reference a Session, the Session is removed. - session_id_info: - description: >- - session_id_info contains information about the id/address of the - session. - type: object - properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: session_id_prefix is the prefix portion of the session_id. - session_id_scope_uuid: - type: string - format: byte - description: >- - session_id_scope_uuid is the scope_uuid portion of the - session_id. - session_id_session_uuid: - type: string - format: byte - description: >- - session_id_session_uuid is the session_uuid portion of the - session_id. - session_addr: - type: string - description: session_addr is the bech32 string version of the session_id. - session_uuid: - type: string - description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id referenced - in the session_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: scope_addr is the bech32 string version of the scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - contract_spec_id_info: - description: >- - contract_spec_id_info contains information about the id/address - of the contract specification. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of the - contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - SessionWrapper contains a single session and some extra identifiers - for it. - description: sessions is any number of wrapped session results. - records: - type: array - items: - type: object - properties: - record: - type: object - properties: - name: - type: string - title: >- - name/identifier for this record. Value must be unique - within the scope. Also known as a Fact name - session_id: - type: string - format: byte - title: >- - id of the session context that was used to create this - record (use with filtered kvprefix iterator) - process: - title: >- - process contain information used to uniquely identify an - execution on or off chain that generated this record - type: object - properties: - address: - type: string - title: the address of a smart contract used for this process - hash: - type: string - title: the hash of an off-chain process used - name: - type: string - title: >- - a name associated with the process (type_name, classname - or smart contract common name) - method: - type: string - title: >- - method is a name or reference to a specific operation - (method) within a class/contract that was invoked - inputs: - type: array - items: - type: object - properties: - name: - type: string - description: >- - Name value included to link back to the definition - spec. - record_id: - type: string - format: byte - title: >- - the address of a record on chain (For Established - Records) - hash: - type: string - title: >- - the hash of an off-chain piece of information (For - Proposed Records) - type_name: - type: string - title: from proposed fact structure to unmarshal - status: - title: >- - Indicates if this input was a recorded fact on chain - or just a given hashed input - type: string - enum: - - RECORD_INPUT_STATUS_UNSPECIFIED - - RECORD_INPUT_STATUS_PROPOSED - - RECORD_INPUT_STATUS_RECORD - default: RECORD_INPUT_STATUS_UNSPECIFIED - description: >- - - RECORD_INPUT_STATUS_UNSPECIFIED: - RECORD_INPUT_STATUS_UNSPECIFIED indicates an - invalid/unknown input type - - RECORD_INPUT_STATUS_PROPOSED: RECORD_INPUT_STATUS_PROPOSED indicates this input was an arbitrary piece of data that was hashed - - RECORD_INPUT_STATUS_RECORD: RECORD_INPUT_STATUS_RECORD indicates this input is a reference to a previously recorded fact on blockchain - title: Tracks the inputs used to establish this record - title: >- - inputs used with the process to achieve the output on this - record - outputs: - type: array - items: - type: object - properties: - hash: - type: string - title: >- - Hash of the data output that was output/generated for - this record - status: - title: >- - Status of the process execution associated with this - output indicating success,failure, or pending - type: string - enum: - - RESULT_STATUS_UNSPECIFIED - - RESULT_STATUS_PASS - - RESULT_STATUS_SKIP - - RESULT_STATUS_FAIL - default: RESULT_STATUS_UNSPECIFIED - description: >- - - RESULT_STATUS_UNSPECIFIED: RESULT_STATUS_UNSPECIFIED - indicates an unset condition - - RESULT_STATUS_PASS: RESULT_STATUS_PASS indicates the execution was successful - - RESULT_STATUS_SKIP: RESULT_STATUS_SKIP indicates condition/consideration was skipped due to missing inputs or delayed execution - - RESULT_STATUS_FAIL: RESULT_STATUS_FAIL indicates the execution of the condition/consideration failed. - title: >- - RecordOutput encapsulates the output of a process recorded - on chain - title: >- - output(s) is the results of executing the process on the - given process indicated in this record - specification_id: - type: string - format: byte - description: >- - specification_id is the id of the record specification that - was used to create this record. - title: >- - A record (of fact) is attached to a session or each - consideration output from a contract - description: record is the on-chain record message. - record_id_info: - description: >- - record_id_info contains information about the id/address of the - record. - type: object - properties: - record_id: - type: string - format: byte - description: record_id is the raw bytes of the record address. - record_id_prefix: - type: string - format: byte - description: record_id_prefix is the prefix portion of the record_id. - record_id_scope_uuid: - type: string - format: byte - description: >- - record_id_scope_uuid is the scope_uuid portion of the - record_id. - record_id_hashed_name: - type: string - format: byte - description: >- - record_id_hashed_name is the hashed name portion of the - record_id. - record_addr: - type: string - description: record_addr is the bech32 string version of the record_id. - scope_id_info: - description: >- - scope_id_info is information about the scope id referenced - in the record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: >- - scope_id_scope_uuid is the scope_uuid portion of the - scope_id. - scope_addr: - type: string - description: scope_addr is the bech32 string version of the scope_id. - scope_uuid: - type: string - description: >- - scope_uuid is the uuid hex string of the - scope_id_scope_uuid. - record_spec_id_info: - description: >- - record_spec_id_info contains information about the id/address of - the record specification. - type: object - properties: - record_spec_id: - type: string - format: byte - description: >- - record_spec_id is the raw bytes of the record specification - address. - record_spec_id_prefix: - type: string - format: byte - description: >- - record_spec_id_prefix is the prefix portion of the - record_spec_id. - record_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - record_spec_id_contract_spec_uuid is the contract_spec_uuid - portion of the record_spec_id. - record_spec_id_hashed_name: - type: string - format: byte - description: >- - record_spec_id_hashed_name is the hashed name portion of the - record_spec_id. - record_spec_addr: - type: string - description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the contract spec - id referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the - contract_spec_uuid portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of the - contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. - description: >- - RecordWrapper contains a single record and some extra identifiers - for it. + contract_spec_uuid is the uuid hex string of the + contract_spec_id_contract_spec_uuid. + description: >- + MsgWriteRecordSpecificationResponse is the response type for the + Msg/WriteRecordSpecification RPC method. + provenance.metadata.v1.MsgWriteScopeResponse: + type: object + properties: + scope_id_info: description: >- - records is any number of wrapped records contained in these sessions - (if requested). - request: - description: request is a copy of the request that generated these results. + scope_id_info contains information about the id/address of the scope + that was added or updated. type: object properties: scope_id: type: string - description: >- - scope_id can either be a uuid, e.g. - 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, - e.g. - - scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel. - session_id: + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: type: string - description: >- - session_id can either be a uuid, e.g. - 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, - e.g. - - session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. - This can only be a uuid if a scope_id is also - - provided. - record_addr: + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: type: string - description: >- - record_addr is a bech32 record address, e.g. - record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3. - record_name: + format: byte + description: scope_id_scope_uuid is the scope_uuid portion of the scope_id. + scope_addr: type: string + description: scope_addr is the bech32 string version of the scope_id. + scope_uuid: + type: string + description: scope_uuid is the uuid hex string of the scope_id_scope_uuid. + description: >- + MsgWriteScopeResponse is the response type for the Msg/WriteScope RPC + method. + provenance.metadata.v1.MsgWriteScopeSpecificationResponse: + type: object + properties: + scope_spec_id_info: + description: >- + scope_spec_id_info contains information about the id/address of the + scope specification that was added or updated. + type: object + properties: + scope_spec_id: + type: string + format: byte + description: scope_spec_id is the raw bytes of the scope specification address. + scope_spec_id_prefix: + type: string + format: byte + description: scope_spec_id_prefix is the prefix portion of the scope_spec_id. + scope_spec_id_scope_spec_uuid: + type: string + format: byte description: >- - record_name is the name of the record to find the session for in - the provided scope. - include_scope: - type: boolean - description: >- - include_scope is a flag for whether to include the scope - containing these sessions in the response. - include_records: - type: boolean - description: >- - include_records is a flag for whether to include the records of - these sessions in the response. - exclude_id_info: - type: boolean - description: >- - exclude_id_info is a flag for whether to exclude the id info from - the response. - include_request: - type: boolean + scope_spec_id_scope_spec_uuid is the scope_spec_uuid portion of + the scope_spec_id. + scope_spec_addr: + type: string + description: scope_spec_addr is the bech32 string version of the scope_spec_id. + scope_spec_uuid: + type: string description: >- - include_request is a flag for whether to include this request in - your result. - description: SessionsResponse is the response type for the Query/Sessions RPC method. - provenance.metadata.v1.ValueOwnershipRequest: + scope_spec_uuid is the uuid hex string of the + scope_spec_id_scope_spec_uuid. + description: >- + MsgWriteScopeSpecificationResponse is the response type for the + Msg/WriteScopeSpecification RPC method. + provenance.metadata.v1.MsgWriteSessionResponse: type: object properties: - address: - type: string - include_request: - type: boolean + session_id_info: description: >- - include_request is a flag for whether to include this request in your - result. - pagination: - description: pagination defines optional pagination parameters for the request. + session_id_info contains information about the id/address of the + session that was added or updated. type: object properties: - key: + session_id: type: string format: byte - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. - offset: + description: session_id is the raw bytes of the session address. + session_id_prefix: type: string - format: uint64 + format: byte + description: session_id_prefix is the prefix portion of the session_id. + session_id_scope_uuid: + type: string + format: byte + description: session_id_scope_uuid is the scope_uuid portion of the session_id. + session_id_session_uuid: + type: string + format: byte description: >- - offset is a numeric offset that can be used when key is - unavailable. + session_id_session_uuid is the session_uuid portion of the + session_id. + session_addr: + type: string + description: session_addr is the bech32 string version of the session_id. + session_uuid: + type: string + description: >- + session_uuid is the uuid hex string of the + session_id_session_uuid. + scope_id_info: + description: >- + scope_id_info is information about the scope id referenced in the + session_id. + type: object + properties: + scope_id: + type: string + format: byte + description: scope_id is the raw bytes of the scope address. + scope_id_prefix: + type: string + format: byte + description: scope_id_prefix is the prefix portion of the scope_id. + scope_id_scope_uuid: + type: string + format: byte + description: scope_id_scope_uuid is the scope_uuid portion of the scope_id. + scope_addr: + type: string + description: scope_addr is the bech32 string version of the scope_id. + scope_uuid: + type: string + description: scope_uuid is the uuid hex string of the scope_id_scope_uuid. + description: >- + MsgWriteSessionResponse is the response type for the Msg/WriteSession RPC + method. + provenance.metadata.v1.SessionIdComponents: + type: object + properties: + scope_uuid: + type: string + title: >- + scope_uuid is the uuid string for the scope, e.g. + "91978ba2-5f35-459a-86a7-feca1b0512e0" + scope_addr: + type: string + title: >- + scope_addr is the bech32 address string for the scope, g.g. + "scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel" + session_uuid: + type: string + title: >- + session_uuid is a uuid string for identifying this session, e.g. + "5803f8bc-6067-4eb5-951f-2121671c2ec0" + description: >- + SessionIDComponents contains fields for the components that make up a + session id. + provenance.msgfees.v1.CalculateTxFeesRequest: + type: object + properties: + tx_bytes: + type: string + format: byte + description: tx_bytes is the transaction to simulate. + default_base_denom: + type: string + description: |- + default_base_denom is used to set the denom used for gas fees + if not set it will default to nhash. + gas_adjustment: + type: number + format: float + title: >- + gas_adjustment is the adjustment factor to be multiplied against the + estimate returned by the tx simulation + description: CalculateTxFeesRequest is the request type for the Query RPC method. + provenance.msgfees.v1.CalculateTxFeesResponse: + type: object + properties: + additional_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - It is less efficient than using key. Only one of offset or key - should + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + title: additional_fees are the amount of coins to be for addition msg fees + total_fees: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - be set. - limit: + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + total_fees are the total amount of fees needed for the transactions + (msg fees + gas fee) + + note: the gas fee is calculated with the floor gas price module param. + estimated_gas: + type: string + format: uint64 + title: estimated_gas is the amount of gas needed for the transaction + description: CalculateTxFeesResponse is the response type for the Query RPC method. + provenance.msgfees.v1.MsgFee: + type: object + properties: + msg_type_url: + type: string + additional_fee: + title: >- + additional_fee can pay in any Coin( basically a Denom and Amount, + Amount can be zero) + type: object + properties: + denom: type: string - format: uint64 - description: >- - limit is the total number of results to be returned in the result - page. + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - If left empty it will default to a value to be set by each app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the result set should - include + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + recipient: + type: string + recipient_basis_points: + type: integer + format: int64 + title: >- + MsgFee is the core of what gets stored on the blockchain - a count of the total number of items available for pagination in - UIs. + it consists of four parts - count_total is only respected when offset is used. It is ignored - when key + 1. the msg type url, i.e. /cosmos.bank.v1beta1.MsgSend - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned in the - descending order. + 2. minimum additional fees(can be of any denom) + 3. optional recipient of fee based on `recipient_basis_points` - Since: cosmos-sdk 0.43 - title: |- - PageRequest is to be embedded in gRPC request messages for efficient - pagination. Ex: - description: >- - ValueOwnershipRequest is the request type for the Query/ValueOwnership RPC - method. - provenance.metadata.v1.ValueOwnershipResponse: + 4. if recipient is declared they will recieve the basis points of the fee + (0-10,000) + provenance.msgfees.v1.Params: type: object properties: - scope_uuids: - type: array - items: - type: string - description: A list of scope ids (uuid) associated with the given address. - request: - description: request is a copy of the request that generated these results. + floor_gas_price: + description: >- + floor_gas_price is the constant used to calculate fees when gas fees + shares denom with msg fee. + + + Conversions: + - x nhash/usd-mil = 1,000,000/x usd/hash + - y usd/hash = 1,000,000/y nhash/usd-mil + + Examples: + - 40,000,000 nhash/usd-mil = 1,000,000/40,000,000 usd/hash = $0.025/hash, + - $0.040/hash = 1,000,000/0.040 nhash/usd-mil = 25,000,000 nhash/usd-mil type: object properties: - address: + denom: type: string - include_request: - type: boolean - description: >- - include_request is a flag for whether to include this request in - your result. - pagination: - description: pagination defines optional pagination parameters for the request. - type: object - properties: - key: - type: string - format: byte - description: >- - key is a value returned in PageResponse.next_key to begin + amount: + type: string + nhash_per_usd_mil: + type: string + format: uint64 + description: >- + nhash_per_usd_mil is the total nhash per usd mil for converting usd to + nhash. + conversion_fee_denom: + type: string + description: conversion_fee_denom is the denom usd is converted to. + description: Params defines the set of params for the msgfees module. + provenance.msgfees.v1.QueryAllMsgFeesResponse: + type: object + properties: + msg_fees: + type: array + items: + type: object + properties: + msg_type_url: + type: string + additional_fee: + title: >- + additional_fee can pay in any Coin( basically a Denom and + Amount, Amount can be zero) + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - querying the next page most efficiently. Only one of offset or - key - should be set. - offset: - type: string - format: uint64 - description: >- - offset is a numeric offset that can be used when key is - unavailable. + NOTE: The amount field is an Int which implements the custom + method - It is less efficient than using key. Only one of offset or key - should + signatures required by gogoproto. + recipient: + type: string + recipient_basis_points: + type: integer + format: int64 + title: >- + MsgFee is the core of what gets stored on the blockchain - be set. - limit: - type: string - format: uint64 - description: >- - limit is the total number of results to be returned in the - result page. + it consists of four parts - If left empty it will default to a value to be set by each - app. - count_total: - type: boolean - description: >- - count_total is set to true to indicate that the result set - should include + 1. the msg type url, i.e. /cosmos.bank.v1beta1.MsgSend - a count of the total number of items available for pagination - in UIs. + 2. minimum additional fees(can be of any denom) - count_total is only respected when offset is used. It is - ignored when key + 3. optional recipient of fee based on `recipient_basis_points` - is set. - reverse: - type: boolean - description: >- - reverse is set to true if results are to be returned in the - descending order. + 4. if recipient is declared they will recieve the basis points of + the fee (0-10,000) + pagination: + description: pagination defines an optional pagination for the request. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + title: response for querying all msg's with fees associated with them + provenance.msgfees.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + floor_gas_price: + description: >- + floor_gas_price is the constant used to calculate fees when gas + fees shares denom with msg fee. - Since: cosmos-sdk 0.43 + Conversions: + - x nhash/usd-mil = 1,000,000/x usd/hash + - y usd/hash = 1,000,000/y nhash/usd-mil + + Examples: + - 40,000,000 nhash/usd-mil = 1,000,000/40,000,000 usd/hash = $0.025/hash, + - $0.040/hash = 1,000,000/0.040 nhash/usd-mil = 25,000,000 nhash/usd-mil + type: object + properties: + denom: + type: string + amount: + type: string + nhash_per_usd_mil: + type: string + format: uint64 + description: >- + nhash_per_usd_mil is the total nhash per usd mil for converting + usd to nhash. + conversion_fee_denom: + type: string + description: conversion_fee_denom is the denom usd is converted to. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + provenance.msgfees.v1.MsgAddMsgFeeProposalResponse: + type: object + title: >- + MsgAddMsgFeeProposalResponse defines the Msg/AddMsgFeeProposal response + type + provenance.msgfees.v1.MsgAssessCustomMsgFeeResponse: + type: object + description: >- + MsgAssessCustomMsgFeeResponse defines the Msg/AssessCustomMsgFeee response + type. + provenance.msgfees.v1.MsgRemoveMsgFeeProposalResponse: + type: object + title: >- + MsgRemoveMsgFeeProposalResponse defines the Msg/RemoveMsgFeeProposal + response type + provenance.msgfees.v1.MsgUpdateConversionFeeDenomProposalResponse: + type: object + title: >- + MsgUpdateConversionFeeDenomProposalResponse defines the + Msg/UpdateConversionFeeDenomProposal response type + provenance.msgfees.v1.MsgUpdateMsgFeeProposalResponse: + type: object + title: >- + MsgUpdateMsgFeeProposalResponse defines the Msg/RemoveMsgFeeProposal + response type + provenance.msgfees.v1.MsgUpdateNhashPerUsdMilProposalResponse: + type: object + title: >- + MsgUpdateNhashPerUsdMilProposalResponse defines the + Msg/UpdateNhashPerUsdMilProposal response type + provenance.name.v1.Params: + type: object + properties: + max_segment_length: + type: integer + format: int64 + title: maximum length of name segment to allow + min_segment_length: + type: integer + format: int64 + title: minimum length of name segment to allow + max_name_levels: + type: integer + format: int64 + title: >- + maximum number of name segments to allow. Example: `foo.bar.baz` + would be 3 + allow_unrestricted_names: + type: boolean + title: determines if unrestricted name keys are allowed or not + description: Params defines the set of params for the name module. + provenance.name.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_segment_length: + type: integer + format: int64 + title: maximum length of name segment to allow + min_segment_length: + type: integer + format: int64 + title: minimum length of name segment to allow + max_name_levels: + type: integer + format: int64 title: >- - PageRequest is to be embedded in gRPC request messages for - efficient - - pagination. Ex: + maximum number of name segments to allow. Example: `foo.bar.baz` + would be 3 + allow_unrestricted_names: + type: boolean + title: determines if unrestricted name keys are allowed or not + description: QueryParamsResponse is the response type for the Query/Params RPC method. + provenance.name.v1.QueryResolveResponse: + type: object + properties: + address: + type: string + title: a string containing the address the name resolves to + restricted: + type: boolean + description: Whether owner signature is required to add sub-names. + description: QueryResolveResponse is the response type for the Query/Resolve method. + provenance.name.v1.QueryReverseLookupResponse: + type: object + properties: + name: + type: array + items: + type: string + title: an array of names bound against a given address pagination: - description: pagination provides the pagination information of this response. + description: pagination defines an optional pagination for the request. type: object properties: next_key: @@ -93055,534 +111359,394 @@ definitions: was set, its value is undefined otherwise description: >- - ValueOwnershipResponse is the response type for the Query/ValueOwnership - RPC method. - provenance.metadata.v1.MsgAddContractSpecToScopeSpecResponse: - type: object - description: >- - MsgAddContractSpecToScopeSpecResponse is the response type for the - Msg/AddContractSpecToScopeSpec RPC method. - provenance.metadata.v1.MsgAddScopeDataAccessResponse: - type: object - title: >- - MsgAddScopeDataAccessResponse is the response for adding data access - AccAddress to scope - provenance.metadata.v1.MsgAddScopeOwnerResponse: - type: object - title: >- - MsgAddScopeOwnerResponse is the response for adding owner AccAddresses to - scope - provenance.metadata.v1.MsgBindOSLocatorResponse: - type: object - properties: - locator: - type: object - properties: - owner: - type: string - title: account address the endpoint is owned by - locator_uri: - type: string - title: locator endpoint uri - encryption_key: - type: string - title: owners encryption key address - description: >- - Defines an Locator object stored on chain, which represents a owner( - blockchain address) associated with a endpoint - - uri for it's associated object store. - description: >- - MsgBindOSLocatorResponse is the response type for the Msg/BindOSLocator - RPC method. - provenance.metadata.v1.MsgDeleteContractSpecFromScopeSpecResponse: - type: object - description: >- - MsgDeleteContractSpecFromScopeSpecResponse is the response type for the - Msg/DeleteContractSpecFromScopeSpec RPC - + QueryReverseLookupResponse is the response type for the Query/Resolve method. - provenance.metadata.v1.MsgDeleteContractSpecificationResponse: + provenance.name.v1.MsgBindNameResponse: type: object - description: >- - MsgDeleteContractSpecificationResponse is the response type for the - Msg/DeleteContractSpecification RPC method. - provenance.metadata.v1.MsgDeleteOSLocatorResponse: + description: MsgBindNameResponse defines the Msg/BindName response type. + provenance.name.v1.MsgCreateRootNameResponse: type: object - properties: - locator: - type: object - properties: - owner: - type: string - title: account address the endpoint is owned by - locator_uri: - type: string - title: locator endpoint uri - encryption_key: - type: string - title: owners encryption key address - description: >- - Defines an Locator object stored on chain, which represents a owner( - blockchain address) associated with a endpoint - - uri for it's associated object store. - description: >- - MsgDeleteOSLocatorResponse is the response type for the - Msg/DeleteOSLocator RPC method. - provenance.metadata.v1.MsgDeleteRecordResponse: + description: MsgCreateRootNameResponse defines Msg/CreateRootName response type. + provenance.name.v1.MsgDeleteNameResponse: type: object - description: >- - MsgDeleteRecordResponse is the response type for the Msg/DeleteRecord RPC - method. - provenance.metadata.v1.MsgDeleteRecordSpecificationResponse: + description: MsgDeleteNameResponse defines the Msg/DeleteName response type. + provenance.name.v1.MsgModifyNameResponse: type: object - description: >- - MsgDeleteRecordSpecificationResponse is the response type for the - Msg/DeleteRecordSpecification RPC method. - provenance.metadata.v1.MsgDeleteScopeDataAccessResponse: + description: MsgModifyNameResponse defines the Msg/ModifyName response type. + provenance.name.v1.NameRecord: type: object + properties: + name: + type: string + title: the bound name + address: + type: string + title: the address the name resolved to + restricted: + type: boolean + title: whether owner signature is required to add sub-names title: >- - MsgDeleteScopeDataAccessResponse is the response from removing data access - AccAddress to scope - provenance.metadata.v1.MsgDeleteScopeOwnerResponse: + NameRecord is a structure used to bind ownership of a name hierarchy to a + collection of addresses + provenance.oracle.v1.QueryOracleAddressResponse: type: object - title: >- - MsgDeleteScopeOwnerResponse is the response from removing owner AccAddress - to scope - provenance.metadata.v1.MsgDeleteScopeResponse: + properties: + address: + type: string + title: The address of the oracle + description: QueryOracleAddressResponse contains the address of the oracle. + provenance.oracle.v1.QueryOracleResponse: type: object - description: >- - MsgDeleteScopeResponse is the response type for the Msg/DeleteScope RPC - method. - provenance.metadata.v1.MsgDeleteScopeSpecificationResponse: + properties: + data: + type: string + format: byte + description: Data contains the json data returned from the oracle. + description: QueryOracleResponse contains the result of the query sent to the oracle. + provenance.oracle.v1.MsgSendQueryOracleResponse: type: object - description: >- - MsgDeleteScopeSpecificationResponse is the response type for the - Msg/DeleteScopeSpecification RPC method. - provenance.metadata.v1.MsgMigrateValueOwnerResponse: + properties: + sequence: + type: string + format: uint64 + description: The sequence number that uniquely identifies the query. + description: MsgSendQueryOracleResponse contains the id of the oracle query. + provenance.oracle.v1.MsgUpdateOracleResponse: type: object - description: >- - MsgMigrateValueOwnerResponse is the response from migrating a value owner - address. - provenance.metadata.v1.MsgModifyOSLocatorResponse: + description: MsgUpdateOracleResponse is the response type for updating the oracle. + provenance.reward.v1.ActionDelegate: type: object properties: - locator: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful delegates. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful delegates. + minimum_delegation_amount: + description: >- + Minimum amount that the user must have currently delegated on the + validator. type: object properties: - owner: - type: string - title: account address the endpoint is owned by - locator_uri: + denom: type: string - title: locator endpoint uri - encryption_key: + amount: type: string - title: owners encryption key address - description: >- - Defines an Locator object stored on chain, which represents a owner( - blockchain address) associated with a endpoint - - uri for it's associated object store. - description: >- - MsgModifyOSLocatorResponse is the response type for the - Msg/ModifyOSLocator RPC method. - provenance.metadata.v1.MsgSetAccountDataResponse: - type: object - description: >- - MsgSetAccountDataResponse is the response from setting/updating/deleting a - scope's account data. - provenance.metadata.v1.MsgUpdateValueOwnersResponse: - type: object - description: >- - MsgUpdateValueOwnersResponse is the response from updating value owner - addresses in one or more scopes. - provenance.metadata.v1.MsgWriteContractSpecificationResponse: - type: object - properties: - contract_spec_id_info: + maximum_delegation_amount: description: >- - contract_spec_id_info contains information about the id/address of the - contract specification that was added or - - updated. + Maximum amount that the user must have currently delegated on the + validator. type: object properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract specification - address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the contract_spec_uuid - portion of the contract_spec_id. - contract_spec_addr: + denom: type: string - description: >- - contract_spec_addr is the bech32 string version of the - contract_spec_id. - contract_spec_uuid: + amount: type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. + minimum_active_stake_percentile: + type: string + description: Minimum percentile that can be below the validator's power ranking. + maximum_active_stake_percentile: + type: string + description: Maximum percentile that can be below the validator's power ranking. description: >- - MsgWriteContractSpecificationResponse is the response type for the - Msg/WriteContractSpecification RPC method. - provenance.metadata.v1.MsgWriteRecordResponse: + ActionDelegate represents the delegate action and its required eligibility + criteria. + provenance.reward.v1.ActionTransfer: type: object properties: - record_id_info: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful transfers. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful transfers. + minimum_delegation_amount: description: >- - record_id_info contains information about the id/address of the record - that was added or updated. + Minimum delegation amount the account must have across all validators, + for the transfer action to be counted. type: object properties: - record_id: - type: string - format: byte - description: record_id is the raw bytes of the record address. - record_id_prefix: - type: string - format: byte - description: record_id_prefix is the prefix portion of the record_id. - record_id_scope_uuid: - type: string - format: byte - description: record_id_scope_uuid is the scope_uuid portion of the record_id. - record_id_hashed_name: + denom: type: string - format: byte - description: record_id_hashed_name is the hashed name portion of the record_id. - record_addr: + amount: type: string - description: record_addr is the bech32 string version of the record_id. - scope_id_info: - description: >- - scope_id_info is information about the scope id referenced in the - record_id. - type: object - properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: scope_id_scope_uuid is the scope_uuid portion of the scope_id. - scope_addr: - type: string - description: scope_addr is the bech32 string version of the scope_id. - scope_uuid: - type: string - description: scope_uuid is the uuid hex string of the scope_id_scope_uuid. description: >- - MsgWriteRecordResponse is the response type for the Msg/WriteRecord RPC - method. - provenance.metadata.v1.MsgWriteRecordSpecificationResponse: + ActionTransfer represents the transfer action and its required eligibility + criteria. + provenance.reward.v1.ActionVote: type: object properties: - record_spec_id_info: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful votes. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful votes. + minimum_delegation_amount: description: >- - record_spec_id_info contains information about the id/address of the - record specification that was added or - - updated. + Minimum delegation amount the account must have across all validators, + for the vote action to be counted. type: object properties: - record_spec_id: - type: string - format: byte - description: >- - record_spec_id is the raw bytes of the record specification - address. - record_spec_id_prefix: - type: string - format: byte - description: record_spec_id_prefix is the prefix portion of the record_spec_id. - record_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - record_spec_id_contract_spec_uuid is the contract_spec_uuid - portion of the record_spec_id. - record_spec_id_hashed_name: + denom: type: string - format: byte - description: >- - record_spec_id_hashed_name is the hashed name portion of the - record_spec_id. - record_spec_addr: + amount: type: string - description: >- - record_spec_addr is the bech32 string version of the - record_spec_id. - contract_spec_id_info: - description: >- - contract_spec_id_info is information about the contract spec id - referenced in the record_spec_id. - type: object - properties: - contract_spec_id: - type: string - format: byte - description: >- - contract_spec_id is the raw bytes of the contract - specification address. - contract_spec_id_prefix: - type: string - format: byte - description: >- - contract_spec_id_prefix is the prefix portion of the - contract_spec_id. - contract_spec_id_contract_spec_uuid: - type: string - format: byte - description: >- - contract_spec_id_contract_spec_uuid is the contract_spec_uuid - portion of the contract_spec_id. - contract_spec_addr: - type: string - description: >- - contract_spec_addr is the bech32 string version of the - contract_spec_id. - contract_spec_uuid: - type: string - description: >- - contract_spec_uuid is the uuid hex string of the - contract_spec_id_contract_spec_uuid. + validator_multiplier: + type: string + format: uint64 + title: >- + Positive multiplier that is applied to the shares awarded by the vote + action when conditions + + are met(for now the only condition is the current vote is a validator + vote). A value of zero will behave the same + + as one description: >- - MsgWriteRecordSpecificationResponse is the response type for the - Msg/WriteRecordSpecification RPC method. - provenance.metadata.v1.MsgWriteScopeResponse: + ActionVote represents the voting action and its required eligibility + criteria. + provenance.reward.v1.ClaimPeriodRewardDistribution: type: object properties: - scope_id_info: - description: >- - scope_id_info contains information about the id/address of the scope - that was added or updated. + claim_period_id: + type: string + format: uint64 + description: The claim period id. + reward_program_id: + type: string + format: uint64 + description: The id of the reward program that this reward belongs to. + total_rewards_pool_for_claim_period: + description: The sum of all the granted rewards for this claim period. type: object properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: + denom: type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: + amount: type: string - format: byte - description: scope_id_scope_uuid is the scope_uuid portion of the scope_id. - scope_addr: + rewards_pool: + description: The final allocated rewards for this claim period. + type: object + properties: + denom: type: string - description: scope_addr is the bech32 string version of the scope_id. - scope_uuid: + amount: type: string - description: scope_uuid is the uuid hex string of the scope_id_scope_uuid. + total_shares: + type: string + format: int64 + description: The total number of granted shares for this claim period. + claim_period_ended: + type: boolean + description: A flag representing if the claim period for this reward has ended. description: >- - MsgWriteScopeResponse is the response type for the Msg/WriteScope RPC - method. - provenance.metadata.v1.MsgWriteScopeSpecificationResponse: + ClaimPeriodRewardDistribution, this is updated at the end of every claim + period. + provenance.reward.v1.QualifyingAction: type: object properties: - scope_spec_id_info: - description: >- - scope_spec_id_info contains information about the id/address of the - scope specification that was added or updated. + delegate: type: object properties: - scope_spec_id: + minimum_actions: type: string - format: byte - description: scope_spec_id is the raw bytes of the scope specification address. - scope_spec_id_prefix: + format: uint64 + description: Minimum number of successful delegates. + maximum_actions: type: string - format: byte - description: scope_spec_id_prefix is the prefix portion of the scope_spec_id. - scope_spec_id_scope_spec_uuid: + format: uint64 + description: Maximum number of successful delegates. + minimum_delegation_amount: + description: >- + Minimum amount that the user must have currently delegated on the + validator. + type: object + properties: + denom: + type: string + amount: + type: string + maximum_delegation_amount: + description: >- + Maximum amount that the user must have currently delegated on the + validator. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_active_stake_percentile: type: string - format: byte description: >- - scope_spec_id_scope_spec_uuid is the scope_spec_uuid portion of - the scope_spec_id. - scope_spec_addr: - type: string - description: scope_spec_addr is the bech32 string version of the scope_spec_id. - scope_spec_uuid: + Minimum percentile that can be below the validator's power + ranking. + maximum_active_stake_percentile: type: string description: >- - scope_spec_uuid is the uuid hex string of the - scope_spec_id_scope_spec_uuid. - description: >- - MsgWriteScopeSpecificationResponse is the response type for the - Msg/WriteScopeSpecification RPC method. - provenance.metadata.v1.MsgWriteSessionResponse: - type: object - properties: - session_id_info: + Maximum percentile that can be below the validator's power + ranking. description: >- - session_id_info contains information about the id/address of the - session that was added or updated. + ActionDelegate represents the delegate action and its required + eligibility criteria. + transfer: type: object properties: - session_id: - type: string - format: byte - description: session_id is the raw bytes of the session address. - session_id_prefix: - type: string - format: byte - description: session_id_prefix is the prefix portion of the session_id. - session_id_scope_uuid: + minimum_actions: type: string - format: byte - description: session_id_scope_uuid is the scope_uuid portion of the session_id. - session_id_session_uuid: + format: uint64 + description: Minimum number of successful transfers. + maximum_actions: type: string - format: byte + format: uint64 + description: Maximum number of successful transfers. + minimum_delegation_amount: description: >- - session_id_session_uuid is the session_uuid portion of the - session_id. - session_addr: + Minimum delegation amount the account must have across all + validators, for the transfer action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + ActionTransfer represents the transfer action and its required + eligibility criteria. + vote: + type: object + properties: + minimum_actions: type: string - description: session_addr is the bech32 string version of the session_id. - session_uuid: + format: uint64 + description: Minimum number of successful votes. + maximum_actions: type: string + format: uint64 + description: Maximum number of successful votes. + minimum_delegation_amount: description: >- - session_uuid is the uuid hex string of the - session_id_session_uuid. - scope_id_info: - description: >- - scope_id_info is information about the scope id referenced in the - session_id. + Minimum delegation amount the account must have across all + validators, for the vote action to be counted. type: object properties: - scope_id: - type: string - format: byte - description: scope_id is the raw bytes of the scope address. - scope_id_prefix: - type: string - format: byte - description: scope_id_prefix is the prefix portion of the scope_id. - scope_id_scope_uuid: - type: string - format: byte - description: scope_id_scope_uuid is the scope_uuid portion of the scope_id. - scope_addr: + denom: type: string - description: scope_addr is the bech32 string version of the scope_id. - scope_uuid: + amount: type: string - description: scope_uuid is the uuid hex string of the scope_id_scope_uuid. - description: >- - MsgWriteSessionResponse is the response type for the Msg/WriteSession RPC - method. - provenance.metadata.v1.SessionIdComponents: - type: object - properties: - scope_uuid: - type: string - title: >- - scope_uuid is the uuid string for the scope, e.g. - "91978ba2-5f35-459a-86a7-feca1b0512e0" - scope_addr: - type: string - title: >- - scope_addr is the bech32 address string for the scope, g.g. - "scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel" - session_uuid: - type: string - title: >- - session_uuid is a uuid string for identifying this session, e.g. - "5803f8bc-6067-4eb5-951f-2121671c2ec0" - description: >- - SessionIDComponents contains fields for the components that make up a - session id. - provenance.name.v1.Params: - type: object - properties: - max_segment_length: - type: integer - format: int64 - title: maximum length of name segment to allow - min_segment_length: - type: integer - format: int64 - title: minimum length of name segment to allow - max_name_levels: - type: integer - format: int64 - title: >- - maximum number of name segments to allow. Example: `foo.bar.baz` - would be 3 - allow_unrestricted_names: - type: boolean - title: determines if unrestricted name keys are allowed or not - description: Params defines the set of params for the name module. - provenance.name.v1.QueryParamsResponse: + validator_multiplier: + type: string + format: uint64 + title: >- + Positive multiplier that is applied to the shares awarded by the + vote action when conditions + + are met(for now the only condition is the current vote is a + validator vote). A value of zero will behave the same + + as one + description: >- + ActionVote represents the voting action and its required eligibility + criteria. + description: QualifyingAction can be one of many action types. + provenance.reward.v1.QueryClaimPeriodRewardDistributionsByIDResponse: type: object properties: - params: - description: params defines the parameters of the module. + claim_period_reward_distribution: type: object properties: - max_segment_length: - type: integer - format: int64 - title: maximum length of name segment to allow - min_segment_length: - type: integer - format: int64 - title: minimum length of name segment to allow - max_name_levels: - type: integer + claim_period_id: + type: string + format: uint64 + description: The claim period id. + reward_program_id: + type: string + format: uint64 + description: The id of the reward program that this reward belongs to. + total_rewards_pool_for_claim_period: + description: The sum of all the granted rewards for this claim period. + type: object + properties: + denom: + type: string + amount: + type: string + rewards_pool: + description: The final allocated rewards for this claim period. + type: object + properties: + denom: + type: string + amount: + type: string + total_shares: + type: string format: int64 - title: >- - maximum number of name segments to allow. Example: `foo.bar.baz` - would be 3 - allow_unrestricted_names: + description: The total number of granted shares for this claim period. + claim_period_ended: type: boolean - title: determines if unrestricted name keys are allowed or not - description: QueryParamsResponse is the response type for the Query/Params RPC method. - provenance.name.v1.QueryResolveResponse: - type: object - properties: - address: - type: string - title: a string containing the address the name resolves to - restricted: - type: boolean - description: Whether owner signature is required to add sub-names. - description: QueryResolveResponse is the response type for the Query/Resolve method. - provenance.name.v1.QueryReverseLookupResponse: + description: A flag representing if the claim period for this reward has ended. + description: >- + ClaimPeriodRewardDistribution, this is updated at the end of every + claim period. + title: >- + QueryClaimPeriodRewardDistributionsByIDResponse returns the requested + ClaimPeriodRewardDistribution + provenance.reward.v1.QueryClaimPeriodRewardDistributionsResponse: type: object properties: - name: + claim_period_reward_distributions: type: array items: - type: string - title: an array of names bound against a given address + type: object + properties: + claim_period_id: + type: string + format: uint64 + description: The claim period id. + reward_program_id: + type: string + format: uint64 + description: The id of the reward program that this reward belongs to. + total_rewards_pool_for_claim_period: + description: The sum of all the granted rewards for this claim period. + type: object + properties: + denom: + type: string + amount: + type: string + rewards_pool: + description: The final allocated rewards for this claim period. + type: object + properties: + denom: + type: string + amount: + type: string + total_shares: + type: string + format: int64 + description: The total number of granted shares for this claim period. + claim_period_ended: + type: boolean + description: >- + A flag representing if the claim period for this reward has + ended. + description: >- + ClaimPeriodRewardDistribution, this is updated at the end of every + claim period. + description: List of all ClaimPeriodRewardDistribution objects queried for. pagination: - description: pagination defines an optional pagination for the request. + description: pagination defines an optional pagination for the response. type: object properties: next_key: @@ -93600,209 +111764,580 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryReverseLookupResponse is the response type for the Query/Resolve - method. - provenance.name.v1.MsgBindNameResponse: - type: object - description: MsgBindNameResponse defines the Msg/BindName response type. - provenance.name.v1.MsgCreateRootNameResponse: - type: object - description: MsgCreateRootNameResponse defines Msg/CreateRootName response type. - provenance.name.v1.MsgDeleteNameResponse: - type: object - description: MsgDeleteNameResponse defines the Msg/DeleteName response type. - provenance.name.v1.MsgModifyNameResponse: - type: object - description: MsgModifyNameResponse defines the Msg/ModifyName response type. - provenance.name.v1.NameRecord: - type: object - properties: - name: - type: string - title: the bound name - address: - type: string - title: the address the name resolved to - restricted: - type: boolean - title: whether owner signature is required to add sub-names title: >- - NameRecord is a structure used to bind ownership of a name hierarchy to a - collection of addresses - provenance.msgfees.v1.CalculateTxFeesRequest: + QueryClaimPeriodRewardDistributionsResponse returns the list of paginated + ClaimPeriodRewardDistributions + provenance.reward.v1.QueryRewardDistributionsByAddressResponse: type: object properties: - tx_bytes: - type: string - format: byte - description: tx_bytes is the transaction to simulate. - default_base_denom: + address: type: string - description: |- - default_base_denom is used to set the denom used for gas fees - if not set it will default to nhash. - gas_adjustment: - type: number - format: float - title: >- - gas_adjustment is the adjustment factor to be multiplied against the - estimate returned by the tx simulation - description: CalculateTxFeesRequest is the request type for the Query RPC method. - provenance.msgfees.v1.CalculateTxFeesResponse: - type: object - properties: - additional_fees: + description: The address that the reward account belongs to. + reward_account_state: type: array items: type: object properties: - denom: - type: string - amount: + reward_program_id: type: string - description: |- - Coin defines a token with a denomination and an amount. - - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - title: additional_fees are the amount of coins to be for addition msg fees - total_fees: - type: array - items: - type: object - properties: - denom: + format: uint64 + description: The id of the reward program that this claim belongs to. + total_reward_claim: + description: total rewards claimed for all eligible claim periods in program. + type: object + properties: + denom: + type: string + amount: + type: string + claim_status: + description: The status of the claim. type: string - amount: + enum: + - CLAIM_STATUS_UNSPECIFIED + - CLAIM_STATUS_UNCLAIMABLE + - CLAIM_STATUS_CLAIMABLE + - CLAIM_STATUS_CLAIMED + - CLAIM_STATUS_EXPIRED + default: CLAIM_STATUS_UNSPECIFIED + title: ClaimStatus is the state a claim is in + claim_id: type: string - description: |- - Coin defines a token with a denomination and an amount. - - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - description: >- - total_fees are the total amount of fees needed for the transactions - (msg fees + gas fee) + format: uint64 + description: The claim period that the claim belongs to. + description: >- + RewardAccountResponse is an address' reward claim for a reward + program's claim period. + description: List of RewardAccounts queried for. + pagination: + description: pagination defines an optional pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - note: the gas fee is calculated with the floor gas price module param. - estimated_gas: - type: string - format: uint64 - title: estimated_gas is the amount of gas needed for the transaction - description: CalculateTxFeesResponse is the response type for the Query RPC method. - provenance.msgfees.v1.MsgFee: + was set, its value is undefined otherwise + description: >- + QueryRewardDistributionsByAddressResponse returns the reward claims for an + address that match the claim_status. + provenance.reward.v1.QueryRewardProgramByIDResponse: type: object properties: - msg_type_url: - type: string - additional_fee: - title: >- - additional_fee can pay in any Coin( basically a Denom and Amount, - Amount can be zero) + reward_program: type: object properties: - denom: + id: + type: string + format: uint64 + description: An integer to uniquely identify the reward program. + title: + type: string + title: Name to help identify the Reward Program.(MaxTitleLength=140) + description: + type: string + title: >- + Short summary describing the Reward + Program.(MaxDescriptionLength=10000) + distribute_from_address: + type: string + description: address that provides funds for the total reward pool. + total_reward_pool: + description: The total amount of funding given to the RewardProgram. + type: object + properties: + denom: + type: string + amount: + type: string + remaining_pool_balance: + description: >- + The remaining funds available to distribute after n claim periods + have passed. + type: object + properties: + denom: + type: string + amount: + type: string + claimed_amount: + description: >- + The total amount of all funds claimed by participants for all past + claim periods. + type: object + properties: + denom: + type: string + amount: + type: string + max_reward_by_address: + description: Maximum reward per claim period per address. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_rollover_amount: + description: Minimum amount of coins for a program to rollover. + type: object + properties: + denom: + type: string + amount: + type: string + claim_period_seconds: + type: string + format: uint64 + description: Number of seconds that a claim period lasts. + program_start_time: + type: string + format: date-time + description: >- + Time that a RewardProgram should start and switch to STARTED + state. + expected_program_end_time: + type: string + format: date-time + description: >- + Time that a RewardProgram is expected to end, based on data when + it was setup. + program_end_time_max: + type: string + format: date-time + description: Time that a RewardProgram MUST end. + claim_period_end_time: + type: string + format: date-time + description: >- + Used internally to calculate and track the current claim period's + ending time. + actual_program_end_time: + type: string + format: date-time + description: >- + Time the RewardProgram switched to FINISHED state. Initially set + as empty. + claim_periods: + type: string + format: uint64 + description: Number of claim periods this program will run for. + current_claim_period: type: string - amount: + format: uint64 + description: Current claim period of the RewardProgram. Uses 1-based indexing. + max_rollover_claim_periods: type: string - description: |- - Coin defines a token with a denomination and an amount. - - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - recipient: - type: string - recipient_basis_points: - type: integer - format: int64 - title: >- - MsgFee is the core of what gets stored on the blockchain - - it consists of four parts - - 1. the msg type url, i.e. /cosmos.bank.v1beta1.MsgSend - - 2. minimum additional fees(can be of any denom) - - 3. optional recipient of fee based on `recipient_basis_points` - - 4. if recipient is declared they will recieve the basis points of the fee - (0-10,000) - provenance.msgfees.v1.Params: - type: object - properties: - floor_gas_price: - title: >- - constant used to calculate fees when gas fees shares denom with msg - fee - type: object - properties: - denom: + format: uint64 + description: maximum number of claim periods a reward program can rollover. + state: + description: Current state of the RewardProgram. type: string - amount: + enum: + - STATE_UNSPECIFIED + - STATE_PENDING + - STATE_STARTED + - STATE_FINISHED + - STATE_EXPIRED + default: STATE_UNSPECIFIED + title: State is the state of the reward program + expiration_offset: type: string - description: |- - Coin defines a token with a denomination and an amount. + format: uint64 + description: >- + Grace period after a RewardProgram FINISHED. It is the number of + seconds until a RewardProgram enters the EXPIRED - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. - nhash_per_usd_mil: - type: string - format: uint64 - title: total nhash per usd mil for converting usd to nhash - conversion_fee_denom: - type: string - title: conversion fee denom is the denom usd is converted to - description: Params defines the set of params for the msgfees module. - provenance.msgfees.v1.QueryAllMsgFeesResponse: + state. + qualifying_actions: + type: array + items: + type: object + properties: + delegate: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful delegates. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful delegates. + minimum_delegation_amount: + description: >- + Minimum amount that the user must have currently + delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + maximum_delegation_amount: + description: >- + Maximum amount that the user must have currently + delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_active_stake_percentile: + type: string + description: >- + Minimum percentile that can be below the validator's + power ranking. + maximum_active_stake_percentile: + type: string + description: >- + Maximum percentile that can be below the validator's + power ranking. + description: >- + ActionDelegate represents the delegate action and its + required eligibility criteria. + transfer: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful transfers. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful transfers. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have across + all validators, for the transfer action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + ActionTransfer represents the transfer action and its + required eligibility criteria. + vote: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful votes. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful votes. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have across + all validators, for the vote action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + validator_multiplier: + type: string + format: uint64 + title: >- + Positive multiplier that is applied to the shares + awarded by the vote action when conditions + + are met(for now the only condition is the current vote + is a validator vote). A value of zero will behave the + same + + as one + description: >- + ActionVote represents the voting action and its required + eligibility criteria. + description: QualifyingAction can be one of many action types. + description: Actions that count towards the reward. + title: RewardProgram + description: The reward program object that was queried for. + title: QueryRewardProgramByIDResponse contains the requested RewardProgram + provenance.reward.v1.QueryRewardProgramsRequest.QueryType: + type: string + enum: + - QUERY_TYPE_UNSPECIFIED + - QUERY_TYPE_ALL + - QUERY_TYPE_PENDING + - QUERY_TYPE_ACTIVE + - QUERY_TYPE_OUTSTANDING + - QUERY_TYPE_FINISHED + default: QUERY_TYPE_UNSPECIFIED + description: |- + - QUERY_TYPE_UNSPECIFIED: unspecified type + - QUERY_TYPE_ALL: all reward programs states + - QUERY_TYPE_PENDING: pending reward program state= + - QUERY_TYPE_ACTIVE: active reward program state + - QUERY_TYPE_OUTSTANDING: pending and active reward program states + - QUERY_TYPE_FINISHED: finished reward program state + title: QueryType is the state of reward program to query + provenance.reward.v1.QueryRewardProgramsResponse: type: object properties: - msg_fees: + reward_programs: type: array items: type: object properties: - msg_type_url: + id: + type: string + format: uint64 + description: An integer to uniquely identify the reward program. + title: + type: string + title: Name to help identify the Reward Program.(MaxTitleLength=140) + description: type: string - additional_fee: title: >- - additional_fee can pay in any Coin( basically a Denom and - Amount, Amount can be zero) + Short summary describing the Reward + Program.(MaxDescriptionLength=10000) + distribute_from_address: + type: string + description: address that provides funds for the total reward pool. + total_reward_pool: + description: The total amount of funding given to the RewardProgram. type: object properties: denom: type: string amount: type: string + remaining_pool_balance: description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the custom - method - - signatures required by gogoproto. - recipient: + The remaining funds available to distribute after n claim + periods have passed. + type: object + properties: + denom: + type: string + amount: + type: string + claimed_amount: + description: >- + The total amount of all funds claimed by participants for all + past claim periods. + type: object + properties: + denom: + type: string + amount: + type: string + max_reward_by_address: + description: Maximum reward per claim period per address. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_rollover_amount: + description: Minimum amount of coins for a program to rollover. + type: object + properties: + denom: + type: string + amount: + type: string + claim_period_seconds: type: string - recipient_basis_points: - type: integer - format: int64 - title: >- - MsgFee is the core of what gets stored on the blockchain - - it consists of four parts - - 1. the msg type url, i.e. /cosmos.bank.v1beta1.MsgSend + format: uint64 + description: Number of seconds that a claim period lasts. + program_start_time: + type: string + format: date-time + description: >- + Time that a RewardProgram should start and switch to STARTED + state. + expected_program_end_time: + type: string + format: date-time + description: >- + Time that a RewardProgram is expected to end, based on data when + it was setup. + program_end_time_max: + type: string + format: date-time + description: Time that a RewardProgram MUST end. + claim_period_end_time: + type: string + format: date-time + description: >- + Used internally to calculate and track the current claim + period's ending time. + actual_program_end_time: + type: string + format: date-time + description: >- + Time the RewardProgram switched to FINISHED state. Initially set + as empty. + claim_periods: + type: string + format: uint64 + description: Number of claim periods this program will run for. + current_claim_period: + type: string + format: uint64 + description: >- + Current claim period of the RewardProgram. Uses 1-based + indexing. + max_rollover_claim_periods: + type: string + format: uint64 + description: maximum number of claim periods a reward program can rollover. + state: + description: Current state of the RewardProgram. + type: string + enum: + - STATE_UNSPECIFIED + - STATE_PENDING + - STATE_STARTED + - STATE_FINISHED + - STATE_EXPIRED + default: STATE_UNSPECIFIED + title: State is the state of the reward program + expiration_offset: + type: string + format: uint64 + description: >- + Grace period after a RewardProgram FINISHED. It is the number of + seconds until a RewardProgram enters the EXPIRED - 2. minimum additional fees(can be of any denom) + state. + qualifying_actions: + type: array + items: + type: object + properties: + delegate: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful delegates. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful delegates. + minimum_delegation_amount: + description: >- + Minimum amount that the user must have currently + delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + maximum_delegation_amount: + description: >- + Maximum amount that the user must have currently + delegated on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_active_stake_percentile: + type: string + description: >- + Minimum percentile that can be below the validator's + power ranking. + maximum_active_stake_percentile: + type: string + description: >- + Maximum percentile that can be below the validator's + power ranking. + description: >- + ActionDelegate represents the delegate action and its + required eligibility criteria. + transfer: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful transfers. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful transfers. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have across + all validators, for the transfer action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + ActionTransfer represents the transfer action and its + required eligibility criteria. + vote: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful votes. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful votes. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have across + all validators, for the vote action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + validator_multiplier: + type: string + format: uint64 + title: >- + Positive multiplier that is applied to the shares + awarded by the vote action when conditions - 3. optional recipient of fee based on `recipient_basis_points` + are met(for now the only condition is the current vote + is a validator vote). A value of zero will behave the + same - 4. if recipient is declared they will recieve the basis points of - the fee (0-10,000) + as one + description: >- + ActionVote represents the voting action and its required + eligibility criteria. + description: QualifyingAction can be one of many action types. + description: Actions that count towards the reward. + title: RewardProgram + description: List of RewardProgram objects matching the query_type. pagination: - description: pagination defines an optional pagination for the request. + description: pagination defines an optional pagination for the response. type: object properties: next_key: @@ -93820,139 +112355,308 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - title: response for querying all msg's with fees associated with them - provenance.msgfees.v1.QueryParamsResponse: + title: >- + QueryRewardProgramsResponse contains the list of RewardPrograms matching + the query + provenance.reward.v1.RewardAccountResponse: type: object properties: - params: - description: params defines the parameters of the module. + reward_program_id: + type: string + format: uint64 + description: The id of the reward program that this claim belongs to. + total_reward_claim: + description: total rewards claimed for all eligible claim periods in program. type: object properties: - floor_gas_price: - title: >- - constant used to calculate fees when gas fees shares denom with - msg fee - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the custom - method - - signatures required by gogoproto. - nhash_per_usd_mil: + denom: type: string - format: uint64 - title: total nhash per usd mil for converting usd to nhash - conversion_fee_denom: + amount: type: string - title: conversion fee denom is the denom usd is converted to - description: QueryParamsResponse is the response type for the Query/Params RPC method. - provenance.reward.v1.ActionDelegate: + claim_status: + description: The status of the claim. + type: string + enum: + - CLAIM_STATUS_UNSPECIFIED + - CLAIM_STATUS_UNCLAIMABLE + - CLAIM_STATUS_CLAIMABLE + - CLAIM_STATUS_CLAIMED + - CLAIM_STATUS_EXPIRED + default: CLAIM_STATUS_UNSPECIFIED + title: ClaimStatus is the state a claim is in + claim_id: + type: string + format: uint64 + description: The claim period that the claim belongs to. + description: >- + RewardAccountResponse is an address' reward claim for a reward program's + claim period. + provenance.reward.v1.RewardAccountState.ClaimStatus: + type: string + enum: + - CLAIM_STATUS_UNSPECIFIED + - CLAIM_STATUS_UNCLAIMABLE + - CLAIM_STATUS_CLAIMABLE + - CLAIM_STATUS_CLAIMED + - CLAIM_STATUS_EXPIRED + default: CLAIM_STATUS_UNSPECIFIED + description: |- + - CLAIM_STATUS_UNSPECIFIED: undefined state + - CLAIM_STATUS_UNCLAIMABLE: unclaimable status + - CLAIM_STATUS_CLAIMABLE: unclaimable claimable + - CLAIM_STATUS_CLAIMED: unclaimable claimed + - CLAIM_STATUS_EXPIRED: unclaimable expired + title: ClaimStatus is the state a claim is in + provenance.reward.v1.RewardProgram: type: object properties: - minimum_actions: + id: type: string format: uint64 - description: Minimum number of successful delegates. - maximum_actions: + description: An integer to uniquely identify the reward program. + title: type: string - format: uint64 - description: Maximum number of successful delegates. - minimum_delegation_amount: - description: >- - Minimum amount that the user must have currently delegated on the - validator. + title: Name to help identify the Reward Program.(MaxTitleLength=140) + description: + type: string + title: >- + Short summary describing the Reward + Program.(MaxDescriptionLength=10000) + distribute_from_address: + type: string + description: address that provides funds for the total reward pool. + total_reward_pool: + description: The total amount of funding given to the RewardProgram. type: object properties: denom: type: string amount: type: string - maximum_delegation_amount: + remaining_pool_balance: description: >- - Maximum amount that the user must have currently delegated on the - validator. + The remaining funds available to distribute after n claim periods have + passed. type: object properties: denom: type: string amount: type: string - minimum_active_stake_percentile: - type: string - description: Minimum percentile that can be below the validator's power ranking. - maximum_active_stake_percentile: - type: string - description: Maximum percentile that can be below the validator's power ranking. - description: >- - ActionDelegate represents the delegate action and its required eligibility - criteria. - provenance.reward.v1.ActionTransfer: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful transfers. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful transfers. - minimum_delegation_amount: + claimed_amount: description: >- - Minimum delegation amount the account must have across all validators, - for the transfer action to be counted. + The total amount of all funds claimed by participants for all past + claim periods. type: object properties: denom: type: string amount: type: string - description: >- - ActionTransfer represents the transfer action and its required eligibility - criteria. - provenance.reward.v1.ActionVote: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful votes. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful votes. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across all validators, - for the vote action to be counted. + max_reward_by_address: + description: Maximum reward per claim period per address. type: object properties: denom: type: string amount: type: string - validator_multiplier: + minimum_rollover_amount: + description: Minimum amount of coins for a program to rollover. + type: object + properties: + denom: + type: string + amount: + type: string + claim_period_seconds: type: string format: uint64 - title: >- - Positive multiplier that is applied to the shares awarded by the vote - action when conditions + description: Number of seconds that a claim period lasts. + program_start_time: + type: string + format: date-time + description: Time that a RewardProgram should start and switch to STARTED state. + expected_program_end_time: + type: string + format: date-time + description: >- + Time that a RewardProgram is expected to end, based on data when it + was setup. + program_end_time_max: + type: string + format: date-time + description: Time that a RewardProgram MUST end. + claim_period_end_time: + type: string + format: date-time + description: >- + Used internally to calculate and track the current claim period's + ending time. + actual_program_end_time: + type: string + format: date-time + description: >- + Time the RewardProgram switched to FINISHED state. Initially set as + empty. + claim_periods: + type: string + format: uint64 + description: Number of claim periods this program will run for. + current_claim_period: + type: string + format: uint64 + description: Current claim period of the RewardProgram. Uses 1-based indexing. + max_rollover_claim_periods: + type: string + format: uint64 + description: maximum number of claim periods a reward program can rollover. + state: + description: Current state of the RewardProgram. + type: string + enum: + - STATE_UNSPECIFIED + - STATE_PENDING + - STATE_STARTED + - STATE_FINISHED + - STATE_EXPIRED + default: STATE_UNSPECIFIED + title: State is the state of the reward program + expiration_offset: + type: string + format: uint64 + description: >- + Grace period after a RewardProgram FINISHED. It is the number of + seconds until a RewardProgram enters the EXPIRED - are met(for now the only condition is the current vote is a validator - vote). A value of zero will behave the same + state. + qualifying_actions: + type: array + items: + type: object + properties: + delegate: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful delegates. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful delegates. + minimum_delegation_amount: + description: >- + Minimum amount that the user must have currently delegated + on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + maximum_delegation_amount: + description: >- + Maximum amount that the user must have currently delegated + on the validator. + type: object + properties: + denom: + type: string + amount: + type: string + minimum_active_stake_percentile: + type: string + description: >- + Minimum percentile that can be below the validator's power + ranking. + maximum_active_stake_percentile: + type: string + description: >- + Maximum percentile that can be below the validator's power + ranking. + description: >- + ActionDelegate represents the delegate action and its required + eligibility criteria. + transfer: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful transfers. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful transfers. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have across all + validators, for the transfer action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + ActionTransfer represents the transfer action and its required + eligibility criteria. + vote: + type: object + properties: + minimum_actions: + type: string + format: uint64 + description: Minimum number of successful votes. + maximum_actions: + type: string + format: uint64 + description: Maximum number of successful votes. + minimum_delegation_amount: + description: >- + Minimum delegation amount the account must have across all + validators, for the vote action to be counted. + type: object + properties: + denom: + type: string + amount: + type: string + validator_multiplier: + type: string + format: uint64 + title: >- + Positive multiplier that is applied to the shares awarded by + the vote action when conditions - as one - description: >- - ActionVote represents the voting action and its required eligibility - criteria. + are met(for now the only condition is the current vote is a + validator vote). A value of zero will behave the same + + as one + description: >- + ActionVote represents the voting action and its required + eligibility criteria. + description: QualifyingAction can be one of many action types. + description: Actions that count towards the reward. + title: RewardProgram + provenance.reward.v1.RewardProgram.State: + type: string + enum: + - STATE_UNSPECIFIED + - STATE_PENDING + - STATE_STARTED + - STATE_FINISHED + - STATE_EXPIRED + default: STATE_UNSPECIFIED + description: |- + - STATE_UNSPECIFIED: undefined program state + - STATE_PENDING: pending state of reward program + - STATE_STARTED: started state of reward program + - STATE_FINISHED: finished state of reward program + - STATE_EXPIRED: expired state of reward program + title: State is the state of the reward program provenance.reward.v1.ClaimedRewardPeriodDetail: type: object properties: @@ -94141,113 +112845,6 @@ definitions: title: >- MsgEndRewardProgramResponse is the response type for ending a reward program RPC - provenance.reward.v1.QualifyingAction: - type: object - properties: - delegate: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful delegates. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful delegates. - minimum_delegation_amount: - description: >- - Minimum amount that the user must have currently delegated on the - validator. - type: object - properties: - denom: - type: string - amount: - type: string - maximum_delegation_amount: - description: >- - Maximum amount that the user must have currently delegated on the - validator. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_active_stake_percentile: - type: string - description: >- - Minimum percentile that can be below the validator's power - ranking. - maximum_active_stake_percentile: - type: string - description: >- - Maximum percentile that can be below the validator's power - ranking. - description: >- - ActionDelegate represents the delegate action and its required - eligibility criteria. - transfer: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful transfers. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful transfers. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across all - validators, for the transfer action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - ActionTransfer represents the transfer action and its required - eligibility criteria. - vote: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful votes. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful votes. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across all - validators, for the vote action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - validator_multiplier: - type: string - format: uint64 - title: >- - Positive multiplier that is applied to the shares awarded by the - vote action when conditions - - are met(for now the only condition is the current vote is a - validator vote). A value of zero will behave the same - - as one - description: >- - ActionVote represents the voting action and its required eligibility - criteria. - description: QualifyingAction can be one of many action types. provenance.reward.v1.RewardProgramClaimDetail: type: object properties: @@ -94303,133 +112900,143 @@ definitions: description: >- RewardProgramClaimDetail is the response object regarding an address's shares and reward for a reward program. - provenance.reward.v1.ClaimPeriodRewardDistribution: - type: object - properties: - claim_period_id: - type: string - format: uint64 - description: The claim period id. - reward_program_id: - type: string - format: uint64 - description: The id of the reward program that this reward belongs to. - total_rewards_pool_for_claim_period: - description: The sum of all the granted rewards for this claim period. - type: object - properties: - denom: - type: string - amount: - type: string - rewards_pool: - description: The final allocated rewards for this claim period. - type: object - properties: - denom: - type: string - amount: - type: string - total_shares: - type: string - format: int64 - description: The total number of granted shares for this claim period. - claim_period_ended: - type: boolean - description: A flag representing if the claim period for this reward has ended. - description: >- - ClaimPeriodRewardDistribution, this is updated at the end of every claim - period. - provenance.reward.v1.QueryClaimPeriodRewardDistributionsByIDResponse: + cosmos.sanction.v1beta1.Params: type: object properties: - claim_period_reward_distribution: - type: object - properties: - claim_period_id: - type: string - format: uint64 - description: The claim period id. - reward_program_id: - type: string - format: uint64 - description: The id of the reward program that this reward belongs to. - total_rewards_pool_for_claim_period: - description: The sum of all the granted rewards for this claim period. - type: object - properties: - denom: - type: string - amount: - type: string - rewards_pool: - description: The final allocated rewards for this claim period. - type: object - properties: - denom: - type: string - amount: - type: string - total_shares: - type: string - format: int64 - description: The total number of granted shares for this claim period. - claim_period_ended: - type: boolean - description: A flag representing if the claim period for this reward has ended. + immediate_sanction_min_deposit: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. description: >- - ClaimPeriodRewardDistribution, this is updated at the end of every - claim period. - title: >- - QueryClaimPeriodRewardDistributionsByIDResponse returns the requested - ClaimPeriodRewardDistribution - provenance.reward.v1.QueryClaimPeriodRewardDistributionsResponse: - type: object - properties: - claim_period_reward_distributions: + immediate_sanction_min_deposit is the minimum deposit for a sanction + to happen immediately. + + If this is zero, immediate sanctioning is not available. + + Otherwise, if a sanction governance proposal is issued with a deposit + at least this large, a temporary sanction + + will be immediately issued that will expire when voting ends on the + governance proposal. + immediate_unsanction_min_deposit: type: array items: type: object properties: - claim_period_id: + denom: type: string - format: uint64 - description: The claim period id. - reward_program_id: + amount: type: string - format: uint64 - description: The id of the reward program that this reward belongs to. - total_rewards_pool_for_claim_period: - description: The sum of all the granted rewards for this claim period. + description: |- + Coin defines a token with a denomination and an amount. + + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + description: >- + immediate_unsanction_min_deposit is the minimum deposit for an + unsanction to happen immediately. + + If this is zero, immediate unsanctioning is not available. + + Otherwise, if an unsanction governance proposal is issued with a + deposit at least this large, a temporary + + unsanction will be immediately issued that will expire when voting + ends on the governance proposal. + description: Params defines the configurable parameters of the sanction module. + cosmos.sanction.v1beta1.QueryIsSanctionedResponse: + type: object + properties: + is_sanctioned: + type: boolean + description: is_sanctioned is true if the address is sanctioned. + description: >- + QueryIsSanctionedResponse defines the RPC response of an IsSanctioned + query. + cosmos.sanction.v1beta1.QueryParamsResponse: + type: object + properties: + params: + description: params are the sanction module parameters. + type: object + properties: + immediate_sanction_min_deposit: + type: array + items: type: object properties: denom: type: string amount: type: string - rewards_pool: - description: The final allocated rewards for this claim period. + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + immediate_sanction_min_deposit is the minimum deposit for a + sanction to happen immediately. + + If this is zero, immediate sanctioning is not available. + + Otherwise, if a sanction governance proposal is issued with a + deposit at least this large, a temporary sanction + + will be immediately issued that will expire when voting ends on + the governance proposal. + immediate_unsanction_min_deposit: + type: array + items: type: object properties: denom: type: string amount: type: string - total_shares: - type: string - format: int64 - description: The total number of granted shares for this claim period. - claim_period_ended: - type: boolean description: >- - A flag representing if the claim period for this reward has - ended. - description: >- - ClaimPeriodRewardDistribution, this is updated at the end of every - claim period. - description: List of all ClaimPeriodRewardDistribution objects queried for. + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the custom + method + + signatures required by gogoproto. + description: >- + immediate_unsanction_min_deposit is the minimum deposit for an + unsanction to happen immediately. + + If this is zero, immediate unsanctioning is not available. + + Otherwise, if an unsanction governance proposal is issued with a + deposit at least this large, a temporary + + unsanction will be immediately issued that will expire when voting + ends on the governance proposal. + description: QueryParamsResponse defines the RPC response of a Params query. + cosmos.sanction.v1beta1.QuerySanctionedAddressesResponse: + type: object + properties: + addresses: + type: array + items: + type: string + description: addresses is the list of sanctioned account addresses. pagination: - description: pagination defines an optional pagination for the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -94447,53 +113054,39 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - title: >- - QueryClaimPeriodRewardDistributionsResponse returns the list of paginated - ClaimPeriodRewardDistributions - provenance.reward.v1.QueryRewardDistributionsByAddressResponse: + description: >- + QuerySanctionedAddressesResponse defines the RPC response of a + SanctionedAddresses query. + cosmos.sanction.v1beta1.QueryTemporaryEntriesResponse: type: object properties: - address: - type: string - description: The address that the reward account belongs to. - reward_account_state: + entries: type: array items: type: object properties: - reward_program_id: + address: + type: string + description: address is the address of this temporary entry. + proposal_id: type: string format: uint64 - description: The id of the reward program that this claim belongs to. - total_reward_claim: - description: total rewards claimed for all eligible claim periods in program. - type: object - properties: - denom: - type: string - amount: - type: string - claim_status: - description: The status of the claim. + description: >- + proposal_id is the governance proposal id associated with this + temporary entry. + status: + description: status is whether the entry is a sanction or unsanction. type: string enum: - - CLAIM_STATUS_UNSPECIFIED - - CLAIM_STATUS_UNCLAIMABLE - - CLAIM_STATUS_CLAIMABLE - - CLAIM_STATUS_CLAIMED - - CLAIM_STATUS_EXPIRED - default: CLAIM_STATUS_UNSPECIFIED - title: ClaimStatus is the state a claim is in - claim_id: - type: string - format: uint64 - description: The claim period that the claim belongs to. + - TEMP_STATUS_UNSPECIFIED + - TEMP_STATUS_SANCTIONED + - TEMP_STATUS_UNSANCTIONED + default: TEMP_STATUS_UNSPECIFIED description: >- - RewardAccountResponse is an address' reward claim for a reward - program's claim period. - description: List of RewardAccounts queried for. + TemporaryEntry defines the information involved in a temporary + sanction or unsanction. pagination: - description: pagination defines an optional pagination for the response. + description: pagination defines the pagination in the response. type: object properties: next_key: @@ -94512,272 +113105,310 @@ definitions: was set, its value is undefined otherwise description: >- - QueryRewardDistributionsByAddressResponse returns the reward claims for an - address that match the claim_status. - provenance.reward.v1.QueryRewardProgramByIDResponse: + QueryTemporaryEntriesResponse defines the RPC response of a + TemporaryEntries query. + cosmos.sanction.v1beta1.TempStatus: + type: string + enum: + - TEMP_STATUS_UNSPECIFIED + - TEMP_STATUS_SANCTIONED + - TEMP_STATUS_UNSANCTIONED + default: TEMP_STATUS_UNSPECIFIED + description: |- + TempStatus is whether a temporary entry is a sanction or unsanction. + + - TEMP_STATUS_UNSPECIFIED: TEMP_STATUS_UNSPECIFIED represents and unspecified status value. + - TEMP_STATUS_SANCTIONED: TEMP_STATUS_SANCTIONED indicates a sanction is in place. + - TEMP_STATUS_UNSANCTIONED: TEMP_STATUS_UNSANCTIONED indicates an unsanctioned is in place. + cosmos.sanction.v1beta1.TemporaryEntry: type: object properties: - reward_program: + address: + type: string + description: address is the address of this temporary entry. + proposal_id: + type: string + format: uint64 + description: >- + proposal_id is the governance proposal id associated with this + temporary entry. + status: + description: status is whether the entry is a sanction or unsanction. + type: string + enum: + - TEMP_STATUS_UNSPECIFIED + - TEMP_STATUS_SANCTIONED + - TEMP_STATUS_UNSANCTIONED + default: TEMP_STATUS_UNSPECIFIED + description: >- + TemporaryEntry defines the information involved in a temporary sanction or + unsanction. + cosmos.sanction.v1beta1.MsgSanctionResponse: + type: object + description: MsgOptInResponse defines the Msg/Sanction response type. + cosmos.sanction.v1beta1.MsgUnsanctionResponse: + type: object + description: MsgOptInResponse defines the Msg/Unsanction response type. + cosmos.sanction.v1beta1.MsgUpdateParamsResponse: + type: object + description: MsgUpdateParamsResponse defined the Msg/UpdateParams response type. + provenance.trigger.v1.QueryTriggerByIDResponse: + type: object + properties: + trigger: type: object properties: id: type: string format: uint64 - description: An integer to uniquely identify the reward program. - title: - type: string - title: Name to help identify the Reward Program.(MaxTitleLength=140) - description: - type: string - title: >- - Short summary describing the Reward - Program.(MaxDescriptionLength=10000) - distribute_from_address: + description: An integer to uniquely identify the trigger. + owner: type: string - description: address that provides funds for the total reward pool. - total_reward_pool: - description: The total amount of funding given to the RewardProgram. - type: object - properties: - denom: - type: string - amount: - type: string - remaining_pool_balance: - description: >- - The remaining funds available to distribute after n claim periods - have passed. - type: object - properties: - denom: - type: string - amount: - type: string - claimed_amount: - description: >- - The total amount of all funds claimed by participants for all past - claim periods. - type: object - properties: - denom: - type: string - amount: - type: string - max_reward_by_address: - description: Maximum reward per claim period per address. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_rollover_amount: - description: Minimum amount of coins for a program to rollover. + description: The owner of the trigger. + event: + description: The event that must be detected for the trigger to fire. type: object properties: - denom: - type: string - amount: + type_url: type: string - claim_period_seconds: - type: string - format: uint64 - description: Number of seconds that a claim period lasts. - program_start_time: - type: string - format: date-time - description: >- - Time that a RewardProgram should start and switch to STARTED - state. - expected_program_end_time: - type: string - format: date-time - description: >- - Time that a RewardProgram is expected to end, based on data when - it was setup. - program_end_time_max: - type: string - format: date-time - description: Time that a RewardProgram MUST end. - claim_period_end_time: - type: string - format: date-time - description: >- - Used internally to calculate and track the current claim period's - ending time. - actual_program_end_time: - type: string - format: date-time - description: >- - Time the RewardProgram switched to FINISHED state. Initially set - as empty. - claim_periods: - type: string - format: uint64 - description: Number of claim periods this program will run for. - current_claim_period: - type: string - format: uint64 - description: Current claim period of the RewardProgram. Uses 1-based indexing. - max_rollover_claim_periods: - type: string - format: uint64 - description: maximum number of claim periods a reward program can rollover. - state: - description: Current state of the RewardProgram. - type: string - enum: - - STATE_UNSPECIFIED - - STATE_PENDING - - STATE_STARTED - - STATE_FINISHED - - STATE_EXPIRED - default: STATE_UNSPECIFIED - title: State is the state of the reward program - expiration_offset: - type: string - format: uint64 - description: >- - Grace period after a RewardProgram FINISHED. It is the number of - seconds until a RewardProgram enters the EXPIRED + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - state. - qualifying_actions: + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + actions: type: array items: type: object properties: - delegate: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful delegates. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful delegates. - minimum_delegation_amount: - description: >- - Minimum amount that the user must have currently - delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - maximum_delegation_amount: - description: >- - Maximum amount that the user must have currently - delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_active_stake_percentile: - type: string - description: >- - Minimum percentile that can be below the validator's - power ranking. - maximum_active_stake_percentile: - type: string - description: >- - Maximum percentile that can be below the validator's - power ranking. + type_url: + type: string description: >- - ActionDelegate represents the delegate action and its - required eligibility criteria. - transfer: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful transfers. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful transfers. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across - all validators, for the transfer action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte description: >- - ActionTransfer represents the transfer action and its - required eligibility criteria. - vote: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful votes. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful votes. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across - all validators, for the vote action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - validator_multiplier: - type: string - format: uint64 - title: >- - Positive multiplier that is applied to the shares - awarded by the vote action when conditions + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in + the form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - are met(for now the only condition is the current vote - is a validator vote). A value of zero will behave the - same + methods only use the fully qualified type name after the last + '/' - as one - description: >- - ActionVote represents the voting action and its required - eligibility criteria. - description: QualifyingAction can be one of many action types. - description: Actions that count towards the reward. - title: RewardProgram - description: The reward program object that was queried for. - title: QueryRewardProgramByIDResponse contains the requested RewardProgram - provenance.reward.v1.QueryRewardProgramsRequest.QueryType: - type: string - enum: - - QUERY_TYPE_UNSPECIFIED - - QUERY_TYPE_ALL - - QUERY_TYPE_PENDING - - QUERY_TYPE_ACTIVE - - QUERY_TYPE_OUTSTANDING - - QUERY_TYPE_FINISHED - default: QUERY_TYPE_UNSPECIFIED - description: |- - - QUERY_TYPE_UNSPECIFIED: unspecified type - - QUERY_TYPE_ALL: all reward programs states - - QUERY_TYPE_PENDING: pending reward program state= - - QUERY_TYPE_ACTIVE: active reward program state - - QUERY_TYPE_OUTSTANDING: pending and active reward program states - - QUERY_TYPE_FINISHED: finished reward program state - title: QueryType is the state of reward program to query - provenance.reward.v1.QueryRewardProgramsResponse: + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: The messages to run when the trigger fires. + title: Trigger + description: The trigger object that was queried for. + description: QueryTriggerByIDResponse contains the requested Trigger. + provenance.trigger.v1.QueryTriggersResponse: type: object properties: - reward_programs: + triggers: type: array items: type: object @@ -94785,240 +113416,253 @@ definitions: id: type: string format: uint64 - description: An integer to uniquely identify the reward program. - title: - type: string - title: Name to help identify the Reward Program.(MaxTitleLength=140) - description: - type: string - title: >- - Short summary describing the Reward - Program.(MaxDescriptionLength=10000) - distribute_from_address: + description: An integer to uniquely identify the trigger. + owner: type: string - description: address that provides funds for the total reward pool. - total_reward_pool: - description: The total amount of funding given to the RewardProgram. - type: object - properties: - denom: - type: string - amount: - type: string - remaining_pool_balance: - description: >- - The remaining funds available to distribute after n claim - periods have passed. - type: object - properties: - denom: - type: string - amount: - type: string - claimed_amount: - description: >- - The total amount of all funds claimed by participants for all - past claim periods. - type: object - properties: - denom: - type: string - amount: - type: string - max_reward_by_address: - description: Maximum reward per claim period per address. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_rollover_amount: - description: Minimum amount of coins for a program to rollover. + description: The owner of the trigger. + event: + description: The event that must be detected for the trigger to fire. type: object properties: - denom: - type: string - amount: + type_url: type: string - claim_period_seconds: - type: string - format: uint64 - description: Number of seconds that a claim period lasts. - program_start_time: - type: string - format: date-time - description: >- - Time that a RewardProgram should start and switch to STARTED - state. - expected_program_end_time: - type: string - format: date-time - description: >- - Time that a RewardProgram is expected to end, based on data when - it was setup. - program_end_time_max: - type: string - format: date-time - description: Time that a RewardProgram MUST end. - claim_period_end_time: - type: string - format: date-time - description: >- - Used internally to calculate and track the current claim - period's ending time. - actual_program_end_time: - type: string - format: date-time - description: >- - Time the RewardProgram switched to FINISHED state. Initially set - as empty. - claim_periods: - type: string - format: uint64 - description: Number of claim periods this program will run for. - current_claim_period: - type: string - format: uint64 - description: >- - Current claim period of the RewardProgram. Uses 1-based - indexing. - max_rollover_claim_periods: - type: string - format: uint64 - description: maximum number of claim periods a reward program can rollover. - state: - description: Current state of the RewardProgram. - type: string - enum: - - STATE_UNSPECIFIED - - STATE_PENDING - - STATE_STARTED - - STATE_FINISHED - - STATE_EXPIRED - default: STATE_UNSPECIFIED - title: State is the state of the reward program - expiration_offset: - type: string - format: uint64 - description: >- - Grace period after a RewardProgram FINISHED. It is the number of - seconds until a RewardProgram enters the EXPIRED + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - state. - qualifying_actions: + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally set + up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on + the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + actions: type: array items: type: object properties: - delegate: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful delegates. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful delegates. - minimum_delegation_amount: - description: >- - Minimum amount that the user must have currently - delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - maximum_delegation_amount: - description: >- - Maximum amount that the user must have currently - delegated on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_active_stake_percentile: - type: string - description: >- - Minimum percentile that can be below the validator's - power ranking. - maximum_active_stake_percentile: - type: string - description: >- - Maximum percentile that can be below the validator's - power ranking. - description: >- - ActionDelegate represents the delegate action and its - required eligibility criteria. - transfer: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful transfers. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful transfers. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across - all validators, for the transfer action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string + type_url: + type: string description: >- - ActionTransfer represents the transfer action and its - required eligibility criteria. - vote: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful votes. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful votes. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across - all validators, for the vote action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - validator_multiplier: - type: string - format: uint64 - title: >- - Positive multiplier that is applied to the shares - awarded by the vote action when conditions + A URL/resource name that uniquely identifies the type of + the serialized - are met(for now the only condition is the current vote - is a validator vote). A value of zero will behave the - same + protocol buffer message. This string must contain at least - as one + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all + types that they + + expect it to use in the context of Any. However, for URLs + which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte description: >- - ActionVote represents the voting action and its required - eligibility criteria. - description: QualifyingAction can be one of many action types. - description: Actions that count towards the reward. - title: RewardProgram - description: List of RewardProgram objects matching the query_type. + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message + along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in + the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default + use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the last + '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding a + field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: The messages to run when the trigger fires. + title: Trigger + description: List of Trigger objects. pagination: description: pagination defines an optional pagination for the response. type: object @@ -95038,305 +113682,253 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - title: >- - QueryRewardProgramsResponse contains the list of RewardPrograms matching - the query - provenance.reward.v1.RewardAccountResponse: - type: object - properties: - reward_program_id: - type: string - format: uint64 - description: The id of the reward program that this claim belongs to. - total_reward_claim: - description: total rewards claimed for all eligible claim periods in program. - type: object - properties: - denom: - type: string - amount: - type: string - claim_status: - description: The status of the claim. - type: string - enum: - - CLAIM_STATUS_UNSPECIFIED - - CLAIM_STATUS_UNCLAIMABLE - - CLAIM_STATUS_CLAIMABLE - - CLAIM_STATUS_CLAIMED - - CLAIM_STATUS_EXPIRED - default: CLAIM_STATUS_UNSPECIFIED - title: ClaimStatus is the state a claim is in - claim_id: - type: string - format: uint64 - description: The claim period that the claim belongs to. - description: >- - RewardAccountResponse is an address' reward claim for a reward program's - claim period. - provenance.reward.v1.RewardAccountState.ClaimStatus: - type: string - enum: - - CLAIM_STATUS_UNSPECIFIED - - CLAIM_STATUS_UNCLAIMABLE - - CLAIM_STATUS_CLAIMABLE - - CLAIM_STATUS_CLAIMED - - CLAIM_STATUS_EXPIRED - default: CLAIM_STATUS_UNSPECIFIED - description: |- - - CLAIM_STATUS_UNSPECIFIED: undefined state - - CLAIM_STATUS_UNCLAIMABLE: unclaimable status - - CLAIM_STATUS_CLAIMABLE: unclaimable claimable - - CLAIM_STATUS_CLAIMED: unclaimable claimed - - CLAIM_STATUS_EXPIRED: unclaimable expired - title: ClaimStatus is the state a claim is in - provenance.reward.v1.RewardProgram: + description: QueryTriggersResponse contains the list of Triggers. + provenance.trigger.v1.Trigger: type: object properties: id: type: string format: uint64 - description: An integer to uniquely identify the reward program. - title: - type: string - title: Name to help identify the Reward Program.(MaxTitleLength=140) - description: - type: string - title: >- - Short summary describing the Reward - Program.(MaxDescriptionLength=10000) - distribute_from_address: + description: An integer to uniquely identify the trigger. + owner: type: string - description: address that provides funds for the total reward pool. - total_reward_pool: - description: The total amount of funding given to the RewardProgram. - type: object - properties: - denom: - type: string - amount: - type: string - remaining_pool_balance: - description: >- - The remaining funds available to distribute after n claim periods have - passed. - type: object - properties: - denom: - type: string - amount: - type: string - claimed_amount: - description: >- - The total amount of all funds claimed by participants for all past - claim periods. - type: object - properties: - denom: - type: string - amount: - type: string - max_reward_by_address: - description: Maximum reward per claim period per address. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_rollover_amount: - description: Minimum amount of coins for a program to rollover. + description: The owner of the trigger. + event: + description: The event that must be detected for the trigger to fire. type: object properties: - denom: - type: string - amount: + type_url: type: string - claim_period_seconds: - type: string - format: uint64 - description: Number of seconds that a claim period lasts. - program_start_time: - type: string - format: date-time - description: Time that a RewardProgram should start and switch to STARTED state. - expected_program_end_time: - type: string - format: date-time - description: >- - Time that a RewardProgram is expected to end, based on data when it - was setup. - program_end_time_max: - type: string - format: date-time - description: Time that a RewardProgram MUST end. - claim_period_end_time: - type: string - format: date-time - description: >- - Used internally to calculate and track the current claim period's - ending time. - actual_program_end_time: - type: string - format: date-time - description: >- - Time the RewardProgram switched to FINISHED state. Initially set as - empty. - claim_periods: - type: string - format: uint64 - description: Number of claim periods this program will run for. - current_claim_period: - type: string - format: uint64 - description: Current claim period of the RewardProgram. Uses 1-based indexing. - max_rollover_claim_periods: - type: string - format: uint64 - description: maximum number of claim periods a reward program can rollover. - state: - description: Current state of the RewardProgram. - type: string - enum: - - STATE_UNSPECIFIED - - STATE_PENDING - - STATE_STARTED - - STATE_FINISHED - - STATE_EXPIRED - default: STATE_UNSPECIFIED - title: State is the state of the reward program - expiration_offset: - type: string - format: uint64 - description: >- - Grace period after a RewardProgram FINISHED. It is the number of - seconds until a RewardProgram enters the EXPIRED + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - state. - qualifying_actions: + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up a + type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above specified + type. + actions: type: array items: type: object properties: - delegate: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful delegates. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful delegates. - minimum_delegation_amount: - description: >- - Minimum amount that the user must have currently delegated - on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - maximum_delegation_amount: - description: >- - Maximum amount that the user must have currently delegated - on the validator. - type: object - properties: - denom: - type: string - amount: - type: string - minimum_active_stake_percentile: - type: string - description: >- - Minimum percentile that can be below the validator's power - ranking. - maximum_active_stake_percentile: - type: string - description: >- - Maximum percentile that can be below the validator's power - ranking. - description: >- - ActionDelegate represents the delegate action and its required - eligibility criteria. - transfer: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful transfers. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful transfers. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across all - validators, for the transfer action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string + type_url: + type: string description: >- - ActionTransfer represents the transfer action and its required - eligibility criteria. - vote: - type: object - properties: - minimum_actions: - type: string - format: uint64 - description: Minimum number of successful votes. - maximum_actions: - type: string - format: uint64 - description: Maximum number of successful votes. - minimum_delegation_amount: - description: >- - Minimum delegation amount the account must have across all - validators, for the vote action to be counted. - type: object - properties: - denom: - type: string - amount: - type: string - validator_multiplier: - type: string - format: uint64 - title: >- - Positive multiplier that is applied to the shares awarded by - the vote action when conditions + A URL/resource name that uniquely identifies the type of the + serialized - are met(for now the only condition is the current vote is a - validator vote). A value of zero will behave the same + protocol buffer message. This string must contain at least - as one + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up + a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + value: + type: string + format: byte description: >- - ActionVote represents the voting action and its required - eligibility criteria. - description: QualifyingAction can be one of many action types. - description: Actions that count towards the reward. - title: RewardProgram - provenance.reward.v1.RewardProgram.State: - type: string - enum: - - STATE_UNSPECIFIED - - STATE_PENDING - - STATE_STARTED - - STATE_FINISHED - - STATE_EXPIRED - default: STATE_UNSPECIFIED - description: |- - - STATE_UNSPECIFIED: undefined program state - - STATE_PENDING: pending state of reward program - - STATE_STARTED: started state of reward program - - STATE_FINISHED: finished state of reward program - - STATE_EXPIRED: expired state of reward program - title: State is the state of the reward program + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: The messages to run when the trigger fires. + title: Trigger + provenance.trigger.v1.MsgCreateTriggerResponse: + type: object + properties: + id: + type: string + format: uint64 + description: trigger id that is generated on creation. + title: MsgCreateTriggerResponse is the response type for creating a trigger RPC + provenance.trigger.v1.MsgDestroyTriggerResponse: + type: object + title: MsgDestroyTriggerResponse is the response type for creating a trigger RPC diff --git a/cmd/provenanced/cmd/genaccounts_test.go b/cmd/provenanced/cmd/genaccounts_test.go index 7072f4ca17..fd0b4de920 100644 --- a/cmd/provenanced/cmd/genaccounts_test.go +++ b/cmd/provenanced/cmd/genaccounts_test.go @@ -99,6 +99,8 @@ func TestAddGenesisAccountCmd(t *testing.T) { } func TestAddGenesisMsgFeeCmd(t *testing.T) { + encCfg := app.MakeTestEncodingConfig(t) + tests := []struct { name string msgType string @@ -156,7 +158,7 @@ func TestAddGenesisMsgFeeCmd(t *testing.T) { ctx = context.WithValue(ctx, server.ServerContextKey, serverCtx) cmd := provenancecmd.AddGenesisCustomFloorPriceDenomCmd(home) - cmdFee := provenancecmd.AddGenesisMsgFeeCmd(home, app.MakeEncodingConfig().InterfaceRegistry) + cmdFee := provenancecmd.AddGenesisMsgFeeCmd(home, encCfg.InterfaceRegistry) cmd.SetArgs([]string{ tc.msgFeeFloorCoin, fmt.Sprintf("--%s=home", flags.FlagHome)}) diff --git a/cmd/provenanced/cmd/root.go b/cmd/provenanced/cmd/root.go index 09b7c52b22..08a382915d 100644 --- a/cmd/provenanced/cmd/root.go +++ b/cmd/provenanced/cmd/root.go @@ -33,7 +33,6 @@ import ( "github.com/cosmos/cosmos-sdk/client/pruning" "github.com/cosmos/cosmos-sdk/client/rpc" "github.com/cosmos/cosmos-sdk/client/snapshot" - "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/server" serverconfig "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" @@ -72,15 +71,14 @@ func NewRootCmd(sealConfig bool) (*cobra.Command, params.EncodingConfig) { if err != nil { panic(fmt.Errorf("failed to create temp dir: %w", err)) } - os.RemoveAll(tempDir) + defer os.RemoveAll(tempDir) - encodingConfig := app.MakeEncodingConfig() tempApp := app.New(log.NewNopLogger(), dbm.NewMemDB(), nil, true, nil, tempDir, 0, - encodingConfig, simtestutil.EmptyAppOptions{}, ) + encodingConfig := tempApp.GetEncodingConfig() initClientCtx := client.Context{}. WithCodec(encodingConfig.Marshaler). @@ -371,7 +369,6 @@ func newApp(logger log.Logger, db dbm.DB, traceStore io.Writer, appOpts serverty logger, db, traceStore, true, skipUpgradeHeights, cast.ToString(appOpts.Get(flags.FlagHome)), cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)), - app.MakeEncodingConfig(), // Ideally, we would reuse the one created by NewRootCmd. appOpts, baseapp.SetPruning(pruningOpts), baseapp.SetMinGasPrices(cast.ToString(appOpts.Get(server.FlagMinGasPrices))), @@ -418,8 +415,6 @@ func createAppAndExport( appOpts servertypes.AppOptions, modulesToExport []string, ) (servertypes.ExportedApp, error) { - encCfg := app.MakeEncodingConfig() // Ideally, we would reuse the one created by NewRootCmd. - encCfg.Marshaler = codec.NewProtoCodec(encCfg.InterfaceRegistry) var a *app.App homePath, ok := appOpts.Get(flags.FlagHome).(string) @@ -428,13 +423,13 @@ func createAppAndExport( } if height != -1 { - a = app.New(logger, db, traceStore, false, map[int64]bool{}, homePath, cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)), encCfg, appOpts) + a = app.New(logger, db, traceStore, false, map[int64]bool{}, homePath, cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)), appOpts) if err := a.LoadHeight(height); err != nil { return servertypes.ExportedApp{}, err } } else { - a = app.New(logger, db, traceStore, true, map[int64]bool{}, homePath, cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)), encCfg, appOpts) + a = app.New(logger, db, traceStore, true, map[int64]bool{}, homePath, cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)), appOpts) } return a.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs, modulesToExport) diff --git a/cmd/provenanced/cmd/testnet_test.go b/cmd/provenanced/cmd/testnet_test.go index bf12ce5e44..6b3e9c929c 100644 --- a/cmd/provenanced/cmd/testnet_test.go +++ b/cmd/provenanced/cmd/testnet_test.go @@ -27,16 +27,15 @@ import ( func Test_TestnetCmd(t *testing.T) { home := t.TempDir() - encodingConfig := app.MakeEncodingConfig() pioconfig.SetProvenanceConfig("", 0) logger := log.NewNopLogger() cfg, err := genutiltest.CreateDefaultCometConfig(home) tempApp := app.New(log.NewNopLogger(), dbm.NewMemDB(), nil, true, nil, home, 0, - encodingConfig, simtestutil.EmptyAppOptions{}, ) + encodingConfig := tempApp.GetEncodingConfig() require.NoError(t, err) diff --git a/go.mod b/go.mod index de49881000..f4acc75093 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,7 @@ module github.com/provenance-io/provenance go 1.21 require ( + cosmossdk.io/collections v0.4.0 cosmossdk.io/core v0.11.0 cosmossdk.io/errors v1.0.1 cosmossdk.io/log v1.3.1 @@ -33,7 +34,6 @@ require ( github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/hashicorp/go-metrics v0.5.3 github.com/rakyll/statik v0.1.7 - github.com/regen-network/cosmos-proto v0.3.1 // TODO[1760]: Verify that this is still needed github.com/rs/zerolog v1.32.0 github.com/spf13/cast v1.6.0 github.com/spf13/cobra v1.8.0 @@ -56,7 +56,6 @@ require ( cloud.google.com/go/storage v1.36.0 // indirect cosmossdk.io/api v0.7.3 // indirect cosmossdk.io/client/v2 v2.0.0-beta.1 // indirect - cosmossdk.io/collections v0.4.0 // indirect cosmossdk.io/depinject v1.0.0-alpha.4 // indirect cosmossdk.io/x/circuit v0.1.0 // indirect cosmossdk.io/x/nft v0.1.0 // indirect diff --git a/go.sum b/go.sum index 42f430f69e..8d8557c281 100644 --- a/go.sum +++ b/go.sum @@ -925,8 +925,6 @@ github.com/rakyll/statik v0.1.7/go.mod h1:AlZONWzMtEnMs7W4e/1LURLiI49pIMmp6V9Ung github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= -github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= diff --git a/internal/handlers/msg_service_router_test.go b/internal/handlers/msg_service_router_test.go index f3a52e5cb7..657d7ec8b6 100644 --- a/internal/handlers/msg_service_router_test.go +++ b/internal/handlers/msg_service_router_test.go @@ -166,22 +166,13 @@ func jsonArrayJoin(entries ...string) string { } func getLastProposal(t *testing.T, ctx sdk.Context, app *piosimapp.App) *govtypesv1.Proposal { - var rv *govtypesv1.Proposal - var highestProposalID uint64 = 0 - - err := app.GovKeeper.Proposals.Walk(ctx, nil, func(key uint64, value govtypesv1.Proposal) (stop bool, err error) { - if value.Id > highestProposalID { - highestProposalID = value.Id - rv = &value - } - return false, nil - }) - if err != nil { - t.Fatalf("Error walking through proposals: %v", err) - } - - require.NotNil(t, rv, "no gov proposals found") - return rv + propID, err := app.GovKeeper.ProposalID.Peek(ctx) + require.NoError(t, err, "app.GovKeeper.ProposalID.Peek(ctx)") + propID-- + require.NotEqual(t, 0, propID, "last proposal id") + rv, err := app.GovKeeper.Proposals.Get(ctx, propID) + require.NoError(t, err, "app.GovKeeper.Proposals.Get(ctx, %d)", propID) + return &rv } func TestRegisterMsgService(t *testing.T) { diff --git a/internal/provcli/cli_helpers.go b/internal/provcli/cli_helpers.go new file mode 100644 index 0000000000..4872465f9b --- /dev/null +++ b/internal/provcli/cli_helpers.go @@ -0,0 +1,71 @@ +package provcli + +import ( + "fmt" + + "github.com/spf13/cobra" + "github.com/spf13/pflag" + + "github.com/cosmos/cosmos-sdk/client" + "github.com/cosmos/cosmos-sdk/client/tx" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" + govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" +) + +const ( + FlagAuthority = "authority" +) + +var ( + // DefaultAuthorityAddr is the default authority to provide governance proposal messages. + // It is defined as a sdk.AccAddress to be independent of global bech32 HRP definition. + DefaultAuthorityAddr = authtypes.NewModuleAddress(govtypes.ModuleName) +) + +// AddAuthorityFlagToCmd adds the authority flag to a command. +func AddAuthorityFlagToCmd(cmd *cobra.Command) { + // Note: Not setting a default here because the HRP might not yet be set correctly. + cmd.Flags().String(FlagAuthority, "", "The authority to use. If not provided, a default is used") +} + +// GetAuthority gets the authority string from the flagSet or returns the default. +func GetAuthority(flagSet *pflag.FlagSet) string { + // Ignoring the error here since we really don't care, + // and it's easier if this just returns a string. + authority, _ := flagSet.GetString(FlagAuthority) + if len(authority) > 0 { + return authority + } + return DefaultAuthorityAddr.String() +} + +// GenerateOrBroadcastTxCLIAsGovProp wraps the provided msgs in a governance proposal +// and calls GenerateOrBroadcastTxCLI for that proposal. +// At least one msg is required. +// This uses flags added by govcli.AddGovPropFlagsToCmd to fill in the rest of the proposal. +func GenerateOrBroadcastTxCLIAsGovProp(clientCtx client.Context, flagSet *pflag.FlagSet, msgs ...sdk.Msg) error { + if len(msgs) == 0 { + return fmt.Errorf("no messages to submit") + } + + prop, err := govcli.ReadGovPropFlags(clientCtx, flagSet) + if err != nil { + return err + } + + prop.Messages = make([]*codectypes.Any, len(msgs)) + for i, msg := range msgs { + prop.Messages[i], err = codectypes.NewAnyWithValue(msg) + if err != nil { + if len(msgs) == 1 { + return fmt.Errorf("could not wrap %T message as Any: %w", msg, err) + } + return fmt.Errorf("could not wrap message %d (%T) as Any: %w", i, msg, err) + } + } + + return tx.GenerateOrBroadcastTxCLI(clientCtx, flagSet, prop) +} diff --git a/internal/tools/tools.go b/internal/tools/tools.go deleted file mode 100644 index 0552bb27b3..0000000000 --- a/internal/tools/tools.go +++ /dev/null @@ -1,11 +0,0 @@ -//go:build tools -// +build tools - -package tools - -import ( - _ "github.com/golang/protobuf/protoc-gen-go" - _ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway" - _ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger" - _ "github.com/regen-network/cosmos-proto/protoc-gen-gocosmos" -) diff --git a/proto/cosmos/sanction/v1beta1/events.proto b/proto/cosmos/sanction/v1beta1/events.proto new file mode 100644 index 0000000000..0f156e9e22 --- /dev/null +++ b/proto/cosmos/sanction/v1beta1/events.proto @@ -0,0 +1,29 @@ +syntax = "proto3"; +package cosmos.sanction.v1beta1; + +import "cosmos_proto/cosmos.proto"; + +option go_package = "github.com/provenance-io/provenance/x/sanction"; + +// EventAddressSanctioned is an event emitted when an address is sanctioned. +message EventAddressSanctioned { + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// EventAddressUnsanctioned is an event emitted when an address is unsanctioned. +message EventAddressUnsanctioned { + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// EventTempAddressSanctioned is an event emitted when an address is temporarily sanctioned. +message EventTempAddressSanctioned { + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// EventTempAddressUnsanctioned is an event emitted when an address is temporarily unsanctioned. +message EventTempAddressUnsanctioned { + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// EventParamsUpdated is an event emitted when the sanction module params are updated. +message EventParamsUpdated {} \ No newline at end of file diff --git a/proto/cosmos/sanction/v1beta1/genesis.proto b/proto/cosmos/sanction/v1beta1/genesis.proto new file mode 100644 index 0000000000..ed511507a3 --- /dev/null +++ b/proto/cosmos/sanction/v1beta1/genesis.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package cosmos.sanction.v1beta1; + +import "cosmos/sanction/v1beta1/sanction.proto"; +import "cosmos_proto/cosmos.proto"; + +option go_package = "github.com/provenance-io/provenance/x/sanction"; + +// GenesisState defines the sanction module's genesis state. +message GenesisState { + // params are the sanction module parameters. + Params params = 1; + // sanctioned_addresses defines account addresses that are sanctioned. + repeated string sanctioned_addresses = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // temporary_entries defines the temporary entries associated with on-going governance proposals. + repeated TemporaryEntry temporary_entries = 3; +} \ No newline at end of file diff --git a/proto/cosmos/sanction/v1beta1/query.proto b/proto/cosmos/sanction/v1beta1/query.proto new file mode 100644 index 0000000000..5e3ccc9a93 --- /dev/null +++ b/proto/cosmos/sanction/v1beta1/query.proto @@ -0,0 +1,84 @@ +syntax = "proto3"; +package cosmos.sanction.v1beta1; + +import "cosmos/base/query/v1beta1/pagination.proto"; +import "cosmos/sanction/v1beta1/sanction.proto"; +import "cosmos_proto/cosmos.proto"; +import "google/api/annotations.proto"; + +option go_package = "github.com/provenance-io/provenance/x/sanction"; + +// Query defines the gRPC querier service. +service Query { + // IsSanctioned checks if an account has been sanctioned. + rpc IsSanctioned(QueryIsSanctionedRequest) returns (QueryIsSanctionedResponse) { + option (google.api.http).get = "/cosmos/sanction/v1beta1/check/{address}"; + } + + // SanctionedAddresses returns a list of sanctioned addresses. + rpc SanctionedAddresses(QuerySanctionedAddressesRequest) returns (QuerySanctionedAddressesResponse) { + option (google.api.http).get = "/cosmos/sanction/v1beta1/all"; + } + + // TemporaryEntries returns temporary sanction/unsanction info. + rpc TemporaryEntries(QueryTemporaryEntriesRequest) returns (QueryTemporaryEntriesResponse) { + option (google.api.http).get = "/cosmos/sanction/v1beta1/temp"; + } + + // Params returns the sanction module's params. + rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { + option (google.api.http).get = "/cosmos/sanction/v1beta1/params"; + } +} + +// QueryIsSanctionedRequest defines the RPC request for checking if an account is sanctioned. +message QueryIsSanctionedRequest { + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// QueryIsSanctionedResponse defines the RPC response of an IsSanctioned query. +message QueryIsSanctionedResponse { + // is_sanctioned is true if the address is sanctioned. + bool is_sanctioned = 1; +} + +// QuerySanctionedAddressesRequest defines the RPC request for listing sanctioned accounts. +message QuerySanctionedAddressesRequest { + // pagination defines an optional pagination for the request. + cosmos.base.query.v1beta1.PageRequest pagination = 99; +} + +// QuerySanctionedAddressesResponse defines the RPC response of a SanctionedAddresses query. +message QuerySanctionedAddressesResponse { + // addresses is the list of sanctioned account addresses. + repeated string addresses = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + + // pagination defines the pagination in the response. + cosmos.base.query.v1beta1.PageResponse pagination = 99; +} + +// QueryTemporaryEntriesRequest defines the RPC request for listing temporary sanction/unsanction entries. +message QueryTemporaryEntriesRequest { + // address is an optional address to restrict results to. + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + + // pagination defines an optional pagination for the request. + cosmos.base.query.v1beta1.PageRequest pagination = 99; +} + +// QueryTemporaryEntriesResponse defines the RPC response of a TemporaryEntries query. +message QueryTemporaryEntriesResponse { + repeated TemporaryEntry entries = 1; + + // pagination defines the pagination in the response. + cosmos.base.query.v1beta1.PageResponse pagination = 99; +} + +// QueryParamsRequest defines the RPC request for getting the sanction module params. +message QueryParamsRequest {} + +// QueryParamsResponse defines the RPC response of a Params query. +message QueryParamsResponse { + // params are the sanction module parameters. + Params params = 1; +} \ No newline at end of file diff --git a/proto/cosmos/sanction/v1beta1/sanction.proto b/proto/cosmos/sanction/v1beta1/sanction.proto new file mode 100644 index 0000000000..35cb0720e9 --- /dev/null +++ b/proto/cosmos/sanction/v1beta1/sanction.proto @@ -0,0 +1,47 @@ +syntax = "proto3"; +package cosmos.sanction.v1beta1; + +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos_proto/cosmos.proto"; +import "gogoproto/gogo.proto"; + +option go_package = "github.com/provenance-io/provenance/x/sanction"; + +// Params defines the configurable parameters of the sanction module. +message Params { + // immediate_sanction_min_deposit is the minimum deposit for a sanction to happen immediately. + // If this is zero, immediate sanctioning is not available. + // Otherwise, if a sanction governance proposal is issued with a deposit at least this large, a temporary sanction + // will be immediately issued that will expire when voting ends on the governance proposal. + repeated cosmos.base.v1beta1.Coin immediate_sanction_min_deposit = 1 + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + + // immediate_unsanction_min_deposit is the minimum deposit for an unsanction to happen immediately. + // If this is zero, immediate unsanctioning is not available. + // Otherwise, if an unsanction governance proposal is issued with a deposit at least this large, a temporary + // unsanction will be immediately issued that will expire when voting ends on the governance proposal. + repeated cosmos.base.v1beta1.Coin immediate_unsanction_min_deposit = 2 + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; +} + +// TemporaryEntry defines the information involved in a temporary sanction or unsanction. +message TemporaryEntry { + // address is the address of this temporary entry. + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // proposal_id is the governance proposal id associated with this temporary entry. + uint64 proposal_id = 2; + // status is whether the entry is a sanction or unsanction. + TempStatus status = 3; +} + +// TempStatus is whether a temporary entry is a sanction or unsanction. +enum TempStatus { + option (gogoproto.goproto_enum_prefix) = false; + + // TEMP_STATUS_UNSPECIFIED represents and unspecified status value. + TEMP_STATUS_UNSPECIFIED = 0; + // TEMP_STATUS_SANCTIONED indicates a sanction is in place. + TEMP_STATUS_SANCTIONED = 1; + // TEMP_STATUS_UNSANCTIONED indicates an unsanctioned is in place. + TEMP_STATUS_UNSANCTIONED = 2; +} \ No newline at end of file diff --git a/proto/cosmos/sanction/v1beta1/tx.proto b/proto/cosmos/sanction/v1beta1/tx.proto new file mode 100644 index 0000000000..f038ac31f7 --- /dev/null +++ b/proto/cosmos/sanction/v1beta1/tx.proto @@ -0,0 +1,65 @@ +syntax = "proto3"; +package cosmos.sanction.v1beta1; + +import "cosmos/msg/v1/msg.proto"; +import "cosmos/sanction/v1beta1/sanction.proto"; +import "cosmos_proto/cosmos.proto"; + +option go_package = "github.com/provenance-io/provenance/x/sanction"; + +// Msg defines the sanction Msg service. +service Msg { + // Sanction is a governance operation for sanctioning addresses. + rpc Sanction(MsgSanction) returns (MsgSanctionResponse); + + // Unsanction is a governance operation for unsanctioning addresses. + rpc Unsanction(MsgUnsanction) returns (MsgUnsanctionResponse); + + // UpdateParams is a governance operation for updating the sanction module params. + rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse); +} + +// MsgSanction represents a message for the governance operation of sanctioning addresses. +message MsgSanction { + option (cosmos.msg.v1.signer) = "authority"; + + // addresses are the addresses to sanction. + repeated string addresses = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + + // authority is the address of the account with the authority to enact sanctions (most likely the governance module + // account). + string authority = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// MsgOptInResponse defines the Msg/Sanction response type. +message MsgSanctionResponse {} + +// MsgSanction represents a message for the governance operation of unsanctioning addresses. +message MsgUnsanction { + option (cosmos.msg.v1.signer) = "authority"; + + // addresses are the addresses to unsanction. + repeated string addresses = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + + // authority is the address of the account with the authority to retract sanctions (most likely the governance module + // account). + string authority = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// MsgOptInResponse defines the Msg/Unsanction response type. +message MsgUnsanctionResponse {} + +// MsgUpdateParams represents a message for the governance operation of updating the sanction module params. +message MsgUpdateParams { + option (cosmos.msg.v1.signer) = "authority"; + + // params are the sanction module parameters. + Params params = 1; + + // authority is the address of the account with the authority to update params (most likely the governance module + // account). + string authority = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; +} + +// MsgUpdateParamsResponse defined the Msg/UpdateParams response type. +message MsgUpdateParamsResponse {} \ No newline at end of file diff --git a/proto/provenance/name/v1/name.proto b/proto/provenance/name/v1/name.proto index 8e7068b05a..523cb4f618 100644 --- a/proto/provenance/name/v1/name.proto +++ b/proto/provenance/name/v1/name.proto @@ -31,7 +31,7 @@ message NameRecord { // the bound name string name = 1; // the address the name resolved to - string address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];; + string address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // whether owner signature is required to add sub-names bool restricted = 3; } diff --git a/scripts/no-now-lint.sh b/scripts/no-now-lint.sh index e9ad585c09..99a3032f09 100755 --- a/scripts/no-now-lint.sh +++ b/scripts/no-now-lint.sh @@ -18,7 +18,7 @@ if [ "$1" == '-v' ] || [ "$1" == '--verbose' ]; then fi # Find all files that import the "time" module, and identify what they're referenced as in that file. -# There's at least one other module that has a .Now() function ("github.com/tendermint/tendermint/types/time") that we don't want used. +# There's at least one other module that has a .Now() function ("github.com/cometbft/cometbft/types/time") that we don't want used. # So we're actually finding an import of any "time" package. # If a file has multiple such imports, there'll be a line for each import. # The vendor directory is ignored since it's not under our control and has lots of matches (that hopefully don't cause problems). diff --git a/testutil/network.go b/testutil/network.go index 64eb72e3c8..cffe4972a7 100644 --- a/testutil/network.go +++ b/testutil/network.go @@ -2,15 +2,18 @@ package testutil import ( "fmt" + "os" "testing" "time" cmtrand "github.com/cometbft/cometbft/libs/rand" + "cosmossdk.io/log" pruningtypes "cosmossdk.io/store/pruning/types" dbm "github.com/cosmos/cosmos-db" "github.com/cosmos/cosmos-sdk/baseapp" + "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/crypto/hd" "github.com/cosmos/cosmos-sdk/crypto/keyring" servertypes "github.com/cosmos/cosmos-sdk/server/types" @@ -20,28 +23,36 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" provenanceapp "github.com/provenance-io/provenance/app" - "github.com/provenance-io/provenance/app/params" ) // NewAppConstructor returns a new provenanceapp AppConstructor -func NewAppConstructor(encodingCfg params.EncodingConfig) testnet.AppConstructor { +func NewAppConstructor() testnet.AppConstructor { return func(val testnet.ValidatorI) servertypes.Application { ctx := val.GetCtx() appCfg := val.GetAppConfig() return provenanceapp.New( ctx.Logger, dbm.NewMemDB(), nil, true, make(map[int64]bool), ctx.Config.RootDir, 0, - encodingCfg, simtestutil.EmptyAppOptions{}, baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(appCfg.Pruning)), baseapp.SetMinGasPrices(appCfg.MinGasPrices), + baseapp.SetChainID(ctx.Viper.GetString(flags.FlagChainID)), ) } } // DefaultTestNetworkConfig creates a network configuration for inproc testing func DefaultTestNetworkConfig() testnet.Config { - encCfg := provenanceapp.MakeEncodingConfig() - tempApp := NewAppConstructor(encCfg)(nil).(*provenanceapp.App) + tempDir, err := os.MkdirTemp("", "tempprovapp") + if err != nil { + panic(fmt.Sprintf("failed creating temporary directory: %v", err)) + } + defer os.RemoveAll(tempDir) + + tempApp := provenanceapp.New( + log.NewNopLogger(), dbm.NewMemDB(), nil, true, make(map[int64]bool), tempDir, 0, + simtestutil.NewAppOptionsWithFlagHome(tempDir), + ) + encCfg := provenanceapp.MakeTestEncodingConfig(nil) return testnet.Config{ Codec: encCfg.Marshaler, @@ -49,9 +60,9 @@ func DefaultTestNetworkConfig() testnet.Config { LegacyAmino: encCfg.Amino, InterfaceRegistry: encCfg.InterfaceRegistry, AccountRetriever: authtypes.AccountRetriever{}, - AppConstructor: NewAppConstructor(encCfg), + AppConstructor: NewAppConstructor(), GenesisState: tempApp.DefaultGenesis(), - TimeoutCommit: 2 * time.Second, + TimeoutCommit: 500 * time.Millisecond, ChainID: "chain-" + cmtrand.NewRand().Str(6), NumValidators: 4, BondDenom: sdk.DefaultBondDenom, // we use the SDK bond denom here, at least until the entire genesis is rewritten to match bond denom diff --git a/testutil/queries/auth.go b/testutil/queries/auth.go new file mode 100644 index 0000000000..300afd9ab3 --- /dev/null +++ b/testutil/queries/auth.go @@ -0,0 +1,102 @@ +package queries + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/assert" + + "github.com/cosmos/cosmos-sdk/testutil/cli" + "github.com/cosmos/cosmos-sdk/testutil/network" + sdk "github.com/cosmos/cosmos-sdk/types" + authcli "github.com/cosmos/cosmos-sdk/x/auth/client/cli" + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" +) + +// GetModuleAccountByName executes a query to get a module account by name, requiring everything to be okay. +func GetModuleAccountByName(t *testing.T, val *network.Validator, moduleName string) sdk.ModuleAccountI { + t.Helper() + rv, ok := AssertGetModuleAccountByName(t, val, moduleName) + if !ok { + t.FailNow() + } + return rv +} + +// AssertGetModuleAccountByName executes a query to get a module account by name, asserting that everything is okay. +// The returned bool will be true on success, or false if something goes wrong. +func AssertGetModuleAccountByName(t *testing.T, val *network.Validator, moduleName string) (sdk.ModuleAccountI, bool) { + t.Helper() + url := fmt.Sprintf("%s/cosmos/auth/v1beta1/module_accounts/%s", val.APIAddress, moduleName) + resp, ok := AssertGetRequest(t, val, url, &authtypes.QueryModuleAccountByNameResponse{}) + if !ok { + return nil, false + } + if !assert.NotNil(t, resp.Account, "module %q account", moduleName) { + return nil, false + } + + var acct sdk.AccountI + err := val.ClientCtx.Codec.UnpackAny(resp.Account, &acct) + if !assert.NoError(t, err, "UnpackAny(%#v, %T)", resp.Account, &acct) { + return nil, false + } + + rv, ok := acct.(sdk.ModuleAccountI) + if !assert.True(t, ok, "could not cast %T as a sdk.ModuleAccountI", acct) { + return nil, false + } + + return rv, true +} + +// GetTxFromResponse extracts a tx hash from the provided txRespBz and executes a query for it, +// requiring everything to be okay. Since the SDK got rid of block broadcast, we now need to query +// for a tx after submitting it in order to find out what happened. +// +// The provided txRespBz should be the bytes returned from submitting a Tx. +// +// In most cases, you'll have to wait for the next block after submitting your tx, and before calling this. +func GetTxFromResponse(t *testing.T, val *network.Validator, txRespBz []byte) sdk.TxResponse { + t.Helper() + rv, ok := AssertGetTxFromResponse(t, val, txRespBz) + if !ok { + t.FailNow() + } + return rv +} + +// AssertGetTxFromResponse extracts a tx hash from the provided txRespBz and executes a query for it, +// asserting that everything is okay. Since the SDK got rid of block broadcast, we now need to query +// for a tx after submitting it in order to find out what happened. +// +// The provided txRespBz should be the bytes returned from submitting a Tx. +// +// In most cases, you'll have to wait for the next block after submitting your tx, and before calling this. +func AssertGetTxFromResponse(t *testing.T, val *network.Validator, txRespBz []byte) (sdk.TxResponse, bool) { + var origResp sdk.TxResponse + err := val.ClientCtx.Codec.UnmarshalJSON(txRespBz, &origResp) + if !assert.NoError(t, err, "UnmarshalJSON(%q, %T) (original tx response)", string(txRespBz), &origResp) { + return sdk.TxResponse{}, false + } + if !assert.NotEmpty(t, origResp.TxHash, "the tx hash") { + return sdk.TxResponse{}, false + } + + cmd := authcli.QueryTxCmd() + args := []string{origResp.TxHash, "--output", "json"} + out, err := cli.ExecTestCLICmd(val.ClientCtx, cmd, args) + outBz := out.Bytes() + t.Logf("Tx %s result:\n%s", origResp.TxHash, string(outBz)) + if !assert.NoError(t, err, "ExecTestCLICmd QueryTxCmd %v", args) { + return sdk.TxResponse{}, false + } + + var rv sdk.TxResponse + err = val.ClientCtx.Codec.UnmarshalJSON(outBz, &rv) + if !assert.NoError(t, err, "UnmarshalJSON(%q, %T) (tx query response)", string(outBz), &rv) { + return sdk.TxResponse{}, false + } + + return rv, true +} diff --git a/testutil/queries/generic.go b/testutil/queries/generic.go new file mode 100644 index 0000000000..8fcb9db4f4 --- /dev/null +++ b/testutil/queries/generic.go @@ -0,0 +1,30 @@ +package queries + +import ( + "testing" + + "github.com/stretchr/testify/assert" + + "github.com/cosmos/gogoproto/proto" + + "github.com/cosmos/cosmos-sdk/testutil" + "github.com/cosmos/cosmos-sdk/testutil/network" +) + +// AssertGetRequest does an HTTP get on the provided url and unmarshalls the response into the provided emptyResp. +// The returned bool will be true on success, or false if something goes wrong. +func AssertGetRequest[T proto.Message](t *testing.T, val *network.Validator, url string, emptyResp T) (T, bool) { + t.Helper() + respBz, err := testutil.GetRequestWithHeaders(url, nil) + if !assert.NoError(t, err, "failed to execute GET %q", url) { + return emptyResp, false + } + t.Logf("GET %q\nResponse: %s", url, string(respBz)) + + err = val.ClientCtx.Codec.UnmarshalJSON(respBz, emptyResp) + if !assert.NoError(t, err, "failed to unmarshal response as %T", emptyResp) { + return emptyResp, false + } + + return emptyResp, true +} diff --git a/testutil/queries/gov.go b/testutil/queries/gov.go new file mode 100644 index 0000000000..dc97287e26 --- /dev/null +++ b/testutil/queries/gov.go @@ -0,0 +1,81 @@ +package queries + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/assert" + + "github.com/cosmos/cosmos-sdk/testutil/network" + sdk "github.com/cosmos/cosmos-sdk/types" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" +) + +// GetLastGovProp executes a query to get the most recent governance proposal, requiring everything to be okay. +func GetLastGovProp(t *testing.T, val *network.Validator) *govv1.Proposal { + t.Helper() + rv, ok := AssertGetLastGovProp(t, val) + if !ok { + t.FailNow() + } + return rv +} + +// AssertGetLastGovProp executes a query to get the most recent governance proposal, asserting that everything is okay. +// The returned bool will be true on success, or false if something goes wrong. +func AssertGetLastGovProp(t *testing.T, val *network.Validator) (*govv1.Proposal, bool) { + t.Helper() + url := fmt.Sprintf("%s/cosmos/gov/v1/proposals?limit=1&reverse=true", val.APIAddress) + resp, ok := AssertGetRequest(t, val, url, &govv1.QueryProposalsResponse{}) + if !ok { + return nil, false + } + if !assert.NotEmpty(t, resp.Proposals, "returned proposals") { + return nil, false + } + if !assert.NotNil(t, resp.Proposals[0], "most recent proposal") { + return nil, false + } + // Unpack all the proposal messages so that the cachedValue is set in them. + for i := range resp.Proposals[0].Messages { + var msg sdk.Msg + err := val.ClientCtx.Codec.UnpackAny(resp.Proposals[0].Messages[i], &msg) + if !assert.NoError(t, err, "UnpackAny on Messages[%d]", i) { + return nil, false + } + } + return resp.Proposals[0], true +} + +// GetGovProp executes a query to get the requested governance proposal, requiring everything to be okay. +func GetGovProp(t *testing.T, val *network.Validator, propID string) *govv1.Proposal { + t.Helper() + rv, ok := AssertGetGovProp(t, val, propID) + if !ok { + t.FailNow() + } + return rv +} + +// AssertGetGovProp executes a query to get the requested governance proposal, asserting that everything is okay. +// The returned bool will be true on success, or false if something goes wrong. +func AssertGetGovProp(t *testing.T, val *network.Validator, propID string) (*govv1.Proposal, bool) { + t.Helper() + url := fmt.Sprintf("%s/cosmos/gov/v1/proposals/%s", val.APIAddress, propID) + resp, ok := AssertGetRequest(t, val, url, &govv1.QueryProposalResponse{}) + if !ok { + return nil, false + } + if !assert.NotNil(t, resp.Proposal, "governance proposal %d", propID) { + return nil, false + } + // Unpack all the proposal messages so that the cachedValue is set in them. + for i := range resp.Proposal.Messages { + var msg sdk.Msg + err := val.ClientCtx.Codec.UnpackAny(resp.Proposal.Messages[i], &msg) + if !assert.NoError(t, err, "UnpackAny on Messages[%d]", i) { + return nil, false + } + } + return resp.Proposal, true +} diff --git a/x/README.md b/x/README.md index 71cb3e6972..6f4d2e040f 100644 --- a/x/README.md +++ b/x/README.md @@ -16,4 +16,5 @@ Provenance Blockchain leverages inherited modules from Cosmos SDK, and has purpo * [Name](./name/spec/README.md) - Provides a system for providing human-readable names as aliases for addresses. * [Oracle](./oracle/spec/README.md) - Provides the capability to dynamically expose query endpoints. * [Reward](./reward/spec/README.md) - Provides a system for distributing rewards to accounts. +* [Sanction](./sanction/spec/README.md) - Provides a mechanism for freezing accounts. * [Trigger](./trigger/spec/README.md) - Provides a system for triggering transactions based on predeterminded events. diff --git a/x/attribute/simulation/decoder_test.go b/x/attribute/simulation/decoder_test.go index ec68c565e6..fa773d4b08 100644 --- a/x/attribute/simulation/decoder_test.go +++ b/x/attribute/simulation/decoder_test.go @@ -14,7 +14,7 @@ import ( ) func TestDecodeStore(t *testing.T) { - cdc := app.MakeEncodingConfig().Marshaler + cdc := app.MakeTestEncodingConfig(t).Marshaler dec := simulation.NewDecodeStore(cdc) testAttributeRecord := types.NewAttribute("test", "", types.AttributeType_Int, []byte{1}, nil) diff --git a/x/exchange/client/cli/cli_test.go b/x/exchange/client/cli/cli_test.go index 4c9f624f76..3f5ed4ea18 100644 --- a/x/exchange/client/cli/cli_test.go +++ b/x/exchange/client/cli/cli_test.go @@ -34,6 +34,7 @@ import ( "github.com/cosmos/gogoproto/proto" "github.com/provenance-io/provenance/app" + "github.com/provenance-io/provenance/app/params" "github.com/provenance-io/provenance/internal/antewrapper" "github.com/provenance-io/provenance/internal/pioconfig" "github.com/provenance-io/provenance/testutil" @@ -1421,14 +1422,28 @@ func addOneReqAnnotations(tc *setupTestCase, oneReqFlags ...string) { } } +// encodingConfig is an encoding config that can be used by these tests. +// Do not use this variable directly. Instead, use the getEncodingConfig function. +var encodingConfig *params.EncodingConfig + +// getEncodingConfig gets the encoding config, creating it if it hasn't been made yet. +func getEncodingConfig(t *testing.T) params.EncodingConfig { + t.Helper() + if encodingConfig == nil { + encCfg := app.MakeTestEncodingConfig(t) + encodingConfig = &encCfg + } + return *encodingConfig +} + // newClientContextWithCodec returns a new client.Context that has a useful Codec. -func newClientContextWithCodec() client.Context { - return clientContextWithCodec(client.Context{}) +func newClientContextWithCodec(t *testing.T) client.Context { + return clientContextWithCodec(t, client.Context{}) } // clientContextWithCodec adds a useful Codec to the provided client context. -func clientContextWithCodec(clientCtx client.Context) client.Context { - encCfg := app.MakeEncodingConfig() +func clientContextWithCodec(t *testing.T, clientCtx client.Context) client.Context { + encCfg := getEncodingConfig(t) return clientCtx. WithCodec(encCfg.Marshaler). WithInterfaceRegistry(encCfg.InterfaceRegistry). @@ -1463,7 +1478,7 @@ func newTx(t *testing.T, msgs ...sdk.Msg) *txtypes.Tx { // writeFileAsJson writes the provided proto message as a json file, requiring it to not error. func writeFileAsJson(t *testing.T, filename string, content proto.Message) { - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) bz, err := clientCtx.Codec.MarshalJSON(content) require.NoError(t, err, "MarshalJSON(%T)", content) writeFile(t, filename, bz) diff --git a/x/exchange/client/cli/flags_test.go b/x/exchange/client/cli/flags_test.go index 2203030375..77a983ae61 100644 --- a/x/exchange/client/cli/flags_test.go +++ b/x/exchange/client/cli/flags_test.go @@ -2541,7 +2541,7 @@ func TestReadTxFileFlag(t *testing.T) { err := tc.flagSet.Parse(args) require.NoError(t, err, "flagSet.Parse(%q)", args) - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) var actFilename string var actTx *txtypes.Tx @@ -2765,7 +2765,7 @@ func TestReadProposalFlag(t *testing.T) { err := tc.flagSet.Parse(args) require.NoError(t, err, "flagSet.Parse(%q)", args) - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) var actPropFN string var actAnys []*codectypes.Any @@ -2893,7 +2893,7 @@ func TestReadMsgGovCreateMarketRequestFromProposalFlag(t *testing.T) { err := flagSet.Parse(args) require.NoError(t, err, "flagSet.Parse(%q)", args) - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) var actual *exchange.MsgGovCreateMarketRequest testFunc := func() { @@ -3010,7 +3010,7 @@ func TestReadMsgGovManageFeesRequestFromProposalFlag(t *testing.T) { err := flagSet.Parse(args) require.NoError(t, err, "flagSet.Parse(%q)", args) - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) var actual *exchange.MsgGovManageFeesRequest testFunc := func() { @@ -3173,7 +3173,7 @@ func TestReadMsgMarketCommitmentSettleFromFileFlag(t *testing.T) { err := flagSet.Parse(args) require.NoError(t, err, "flagSet.Parse(%q)", args) - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) var actual *exchange.MsgMarketCommitmentSettleRequest testFunc := func() { @@ -3376,7 +3376,7 @@ func TestReadPaymentFromFileFlag(t *testing.T) { err := flagSet.Parse(args) require.NoError(t, err, "flagSet.Parse(%q)", args) - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) var actual exchange.Payment testFunc := func() { diff --git a/x/exchange/client/cli/query_setup_test.go b/x/exchange/client/cli/query_setup_test.go index c73a125f8b..5a648beefb 100644 --- a/x/exchange/client/cli/query_setup_test.go +++ b/x/exchange/client/cli/query_setup_test.go @@ -12,7 +12,6 @@ import ( "github.com/stretchr/testify/require" sdkmath "cosmossdk.io/math" - "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" @@ -69,7 +68,7 @@ func runQueryMakerTest[R any](t *testing.T, td queryMakerTestDef[R], tc queryMak err := cmd.Flags().Parse(tc.flags) require.NoError(t, err, "cmd.Flags().Parse(%q)", tc.flags) - clientCtx := newClientContextWithCodec() + clientCtx := newClientContextWithCodec(t) var req *R testFunc := func() { diff --git a/x/exchange/client/cli/tx_setup_test.go b/x/exchange/client/cli/tx_setup_test.go index 5856cc2ec8..3eaaf18589 100644 --- a/x/exchange/client/cli/tx_setup_test.go +++ b/x/exchange/client/cli/tx_setup_test.go @@ -12,7 +12,6 @@ import ( "github.com/stretchr/testify/require" sdkmath "cosmossdk.io/math" - "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" @@ -733,7 +732,7 @@ func TestMakeMsgMarketCommitmentSettle(t *testing.T) { }, { name: "from file", - clientCtx: newClientContextWithCodec(), + clientCtx: newClientContextWithCodec(t), flags: []string{"--file", filename}, expMsg: fileMsg, }, @@ -743,7 +742,7 @@ func TestMakeMsgMarketCommitmentSettle(t *testing.T) { "--file", filename, "--tag", "new-thang", "--authority", "--outputs", "monroe:87plum", }, - clientCtx: newClientContextWithCodec(), + clientCtx: newClientContextWithCodec(t), expMsg: &exchange.MsgMarketCommitmentSettleRequest{ Admin: cli.AuthorityAddr.String(), MarketId: 4, @@ -1842,13 +1841,13 @@ func TestMakeMsgCreatePayment(t *testing.T) { }, { name: "from file", - clientCtx: clientContextWithCodec(client.Context{}), + clientCtx: clientContextWithCodec(t, client.Context{}), flags: []string{"--file", txFN}, expMsg: &exchange.MsgCreatePaymentRequest{Payment: filePayment}, }, { name: "from file with override", - clientCtx: clientContextWithCodec(client.Context{FromAddress: sdk.AccAddress("another_from________")}), + clientCtx: clientContextWithCodec(t, client.Context{FromAddress: sdk.AccAddress("another_from________")}), flags: []string{"--external-id", "something-else", "--file", txFN}, expMsg: &exchange.MsgCreatePaymentRequest{Payment: exchange.Payment{ Source: sdk.AccAddress("another_from________").String(), @@ -1957,13 +1956,13 @@ func TestMakeMsgAcceptPayment(t *testing.T) { }, { name: "from file", - clientCtx: clientContextWithCodec(client.Context{}), + clientCtx: clientContextWithCodec(t, client.Context{}), flags: []string{"--file", txFN}, expMsg: &exchange.MsgAcceptPaymentRequest{Payment: filePayment}, }, { name: "from file with override", - clientCtx: clientContextWithCodec(client.Context{FromAddress: sdk.AccAddress("another_from________")}), + clientCtx: clientContextWithCodec(t, client.Context{FromAddress: sdk.AccAddress("another_from________")}), flags: []string{"--external-id", "something-else", "--file", txFN}, expMsg: &exchange.MsgAcceptPaymentRequest{Payment: exchange.Payment{ Source: filePayment.Source, @@ -2453,13 +2452,13 @@ func TestMakeMsgGovCreateMarket(t *testing.T) { }, { name: "proposal flag", - clientCtx: clientContextWithCodec(client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), + clientCtx: clientContextWithCodec(t, client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), flags: []string{"--proposal", propFN}, expMsg: fileMsg, }, { name: "proposal flag with others", - clientCtx: clientContextWithCodec(client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), + clientCtx: clientContextWithCodec(t, client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), flags: []string{"--proposal", propFN, "--market", "22"}, expMsg: &exchange.MsgGovCreateMarketRequest{ Authority: fileMsg.Authority, @@ -2647,13 +2646,13 @@ func TestMakeMsgGovManageFees(t *testing.T) { }, { name: "proposal flag", - clientCtx: clientContextWithCodec(client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), + clientCtx: clientContextWithCodec(t, client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), flags: []string{"--proposal", propFN}, expMsg: fileMsg, }, { name: "proposal flag plus others", - clientCtx: clientContextWithCodec(client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), + clientCtx: clientContextWithCodec(t, client.Context{FromAddress: sdk.AccAddress("FromAddress_________")}), flags: []string{"--market", "5", "--proposal", propFN}, expMsg: &exchange.MsgGovManageFeesRequest{ Authority: fileMsg.Authority, diff --git a/x/ibchooks/ibc_middleware_test.go b/x/ibchooks/ibc_middleware_test.go index 119fb8c589..be1e0701d7 100644 --- a/x/ibchooks/ibc_middleware_test.go +++ b/x/ibchooks/ibc_middleware_test.go @@ -80,8 +80,7 @@ type HooksTestSuite struct { func SetupSimApp() (ibctesting.TestingApp, map[string]json.RawMessage) { pioconfig.SetProvenanceConfig(sdk.DefaultBondDenom, 0) db := dbm.NewMemDB() - encCdc := app.MakeEncodingConfig() - provenanceApp := app.New(log.NewNopLogger(), db, nil, true, map[int64]bool{}, app.DefaultNodeHome, 5, encCdc, simtestutil.EmptyAppOptions{}) + provenanceApp := app.New(log.NewNopLogger(), db, nil, true, map[int64]bool{}, app.DefaultNodeHome, 5, simtestutil.EmptyAppOptions{}) genesis := provenanceApp.DefaultGenesis() return provenanceApp, genesis } diff --git a/x/ibcratelimit/module/ibc_middleware_test.go b/x/ibcratelimit/module/ibc_middleware_test.go index 61a0c12385..74d032ccba 100644 --- a/x/ibcratelimit/module/ibc_middleware_test.go +++ b/x/ibcratelimit/module/ibc_middleware_test.go @@ -52,8 +52,7 @@ func TestMiddlewareTestSuite(t *testing.T) { func SetupSimApp() (ibctesting.TestingApp, map[string]json.RawMessage) { pioconfig.SetProvenanceConfig(sdk.DefaultBondDenom, 0) db := dbm.NewMemDB() - encCdc := app.MakeEncodingConfig() - provenanceApp := app.New(log.NewNopLogger(), db, nil, true, map[int64]bool{}, app.DefaultNodeHome, 5, encCdc, simtestutil.EmptyAppOptions{}) + provenanceApp := app.New(log.NewNopLogger(), db, nil, true, map[int64]bool{}, app.DefaultNodeHome, 5, simtestutil.EmptyAppOptions{}) genesis := provenanceApp.DefaultGenesis() return provenanceApp, genesis } diff --git a/x/marker/simulation/operations.go b/x/marker/simulation/operations.go index 1aa3681a55..4a2f66af39 100644 --- a/x/marker/simulation/operations.go +++ b/x/marker/simulation/operations.go @@ -333,10 +333,11 @@ func SimulateMsgAddMarkerProposal(k keeper.Keeper, args *WeightedOpsArgs) simtyp return opMsg, nil, err } - proposalID, err := args.GK.ProposalID.Next(ctx) + proposalID, err := args.GK.ProposalID.Peek(ctx) if err != nil { return opMsg, nil, err } + proposalID-- votingPeriod := govParams.VotingPeriod fops := make([]simtypes.FutureOperation, len(accs)) diff --git a/x/name/simulation/decoder_test.go b/x/name/simulation/decoder_test.go index 9c253b3c82..3948de22b7 100644 --- a/x/name/simulation/decoder_test.go +++ b/x/name/simulation/decoder_test.go @@ -15,7 +15,7 @@ import ( ) func TestDecodeStore(t *testing.T) { - cdc := app.MakeEncodingConfig().Marshaler + cdc := app.MakeTestEncodingConfig(t).Marshaler dec := simulation.NewDecodeStore(cdc) testNameRecord := types.NewNameRecord("test", sdk.AccAddress{}, true) diff --git a/x/sanction/client/cli/query.go b/x/sanction/client/cli/query.go new file mode 100644 index 0000000000..f20e755394 --- /dev/null +++ b/x/sanction/client/cli/query.go @@ -0,0 +1,225 @@ +package cli + +import ( + "fmt" + + "github.com/spf13/cobra" + + "github.com/cosmos/cosmos-sdk/client" + "github.com/cosmos/cosmos-sdk/client/flags" + sdk "github.com/cosmos/cosmos-sdk/types" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/cosmos/cosmos-sdk/version" + + "github.com/provenance-io/provenance/x/sanction" +) + +// exampleQueryCmdBase is the base command that gets a user to one of the query commands in here. +var exampleQueryCmdBase = fmt.Sprintf("%s query %s", version.AppName, sanction.ModuleName) + +var exampleQueryAddr1 = sdk.AccAddress("exampleQueryAddr1___") + +// QueryCmd returns the command with sub-commands for specific sanction module queries. +func QueryCmd() *cobra.Command { + queryCmd := &cobra.Command{ + Use: sanction.ModuleName, + Short: "Querying commands for the sanction module", + DisableFlagParsing: true, + SuggestionsMinimumDistance: 2, + RunE: client.ValidateCmd, + } + + queryCmd.AddCommand( + QueryIsSanctionedCmd(), + QuerySanctionedAddressesCmd(), + QueryTemporaryEntriesCmd(), + QueryParamsCmd(), + ) + + return queryCmd +} + +// QueryIsSanctionedCmd returns the command for executing an IsSanctioned query. +func QueryIsSanctionedCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "is-sanctioned
", + Aliases: []string{"is", "check", "is-sanction", "c"}, + Short: "Check if an address is sanctioned", + Long: fmt.Sprintf(`Check if an address is sanctioned. + +Examples: + $ %[1]s is-sanctioned %[2]s + $ %[1]s is %[2]s + $ %[1]s check %[2]s + $ %[1]s c %[2]s +`, + exampleQueryCmdBase, exampleQueryAddr1), + Args: cobra.ExactArgs(1), + RunE: func(cmd *cobra.Command, args []string) error { + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } + + if _, err = sdk.AccAddressFromBech32(args[0]); err != nil { + return sdkerrors.ErrInvalidAddress.Wrap(err.Error()) + } + + req := sanction.QueryIsSanctionedRequest{ + Address: args[0], + } + + var res *sanction.QueryIsSanctionedResponse + queryClient := sanction.NewQueryClient(clientCtx) + res, err = queryClient.IsSanctioned(cmd.Context(), &req) + if err != nil { + return err + } + + return clientCtx.PrintProto(res) + }, + } + + flags.AddQueryFlagsToCmd(cmd) + + return cmd +} + +// QuerySanctionedAddressesCmd returns a command for executing a SanctionedAddresses query. +func QuerySanctionedAddressesCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "sanctioned-addresses", + Aliases: []string{"addresses", "all"}, + Short: "List all the sanctioned addresses", + Long: fmt.Sprintf(`List all the sanctioned addresses. + +Examples: + $ %[1]s sanctioned-addresses + $ %[1]s addresses + $ %[1]s all +`, + exampleQueryCmdBase), + Args: cobra.ExactArgs(0), + RunE: func(cmd *cobra.Command, args []string) error { + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } + + req := sanction.QuerySanctionedAddressesRequest{} + req.Pagination, err = client.ReadPageRequestWithPageKeyDecoded(cmd.Flags()) + if err != nil { + return err + } + + var res *sanction.QuerySanctionedAddressesResponse + queryClient := sanction.NewQueryClient(clientCtx) + res, err = queryClient.SanctionedAddresses(cmd.Context(), &req) + if err != nil { + return err + } + + return clientCtx.PrintProto(res) + }, + } + + flags.AddQueryFlagsToCmd(cmd) + flags.AddPaginationFlagsToCmd(cmd, "sanctioned-addresses") + + return cmd +} + +// QueryTemporaryEntriesCmd returns a command for executing a TemporaryEntries query. +func QueryTemporaryEntriesCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "temporary-entries [
]", + Aliases: []string{"temp-entries", "temp"}, + Short: "List temporarily sanctioned/unsanctioned addresses", + Long: fmt.Sprintf(`List all temporarily sanctioned/unsanctioned addresses. +If an address is provided, only temporary entries for that address are returned. +Otherwise, all temporary entries are returned. + +Examples: + $ %[1]s temporary-entries + $ %[1]s temporary-entries %[2]s + $ %[1]s temp-entries + $ %[1]s temp-entries %[2]s + $ %[1]s temp + $ %[1]s temp %[2]s +`, + exampleQueryCmdBase, exampleQueryAddr1), + Args: cobra.MaximumNArgs(1), + RunE: func(cmd *cobra.Command, args []string) error { + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } + + if len(args) > 0 { + if _, err := sdk.AccAddressFromBech32(args[0]); err != nil { + return err + } + } + + req := sanction.QueryTemporaryEntriesRequest{} + if len(args) > 0 { + req.Address = args[0] + } + + req.Pagination, err = client.ReadPageRequestWithPageKeyDecoded(cmd.Flags()) + if err != nil { + return err + } + + var res *sanction.QueryTemporaryEntriesResponse + queryClient := sanction.NewQueryClient(clientCtx) + res, err = queryClient.TemporaryEntries(cmd.Context(), &req) + if err != nil { + return err + } + + return clientCtx.PrintProto(res) + }, + } + + flags.AddQueryFlagsToCmd(cmd) + flags.AddPaginationFlagsToCmd(cmd, "temporary-entries") + + return cmd +} + +// QueryParamsCmd returns a command for executing a Params query. +func QueryParamsCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "params", + Short: "Get the sanction module params", + Long: fmt.Sprintf(`Get the sanction module params. + +Example: + $ %[1]s params +`, + exampleQueryCmdBase), + Args: cobra.ExactArgs(0), + RunE: func(cmd *cobra.Command, args []string) error { + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } + + req := sanction.QueryParamsRequest{} + + var res *sanction.QueryParamsResponse + queryClient := sanction.NewQueryClient(clientCtx) + res, err = queryClient.Params(cmd.Context(), &req) + if err != nil { + return err + } + + return clientCtx.PrintProto(res) + }, + } + + flags.AddQueryFlagsToCmd(cmd) + + return cmd +} diff --git a/x/sanction/client/cli/tx.go b/x/sanction/client/cli/tx.go new file mode 100644 index 0000000000..d7f20ba88c --- /dev/null +++ b/x/sanction/client/cli/tx.go @@ -0,0 +1,184 @@ +package cli + +import ( + "fmt" + + "github.com/spf13/cobra" + + "github.com/cosmos/cosmos-sdk/client" + "github.com/cosmos/cosmos-sdk/client/flags" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/version" + govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" + + "github.com/provenance-io/provenance/internal/provcli" + "github.com/provenance-io/provenance/x/sanction" +) + +var ( + // exampleTxCmdBase is the base command that gets a user to one of the tx commands in here. + exampleTxCmdBase = fmt.Sprintf("%s tx %s", version.AppName, sanction.ModuleName) + // exampleTxAddr1 is a constant address for use in example strings. + exampleTxAddr1 = sdk.AccAddress("exampleTxAddr1______") + // exampleTxAddr2 is a constant address for use in example strings. + exampleTxAddr2 = sdk.AccAddress("exampleTxAddr2______") +) + +// TxCmd returns the command with sub-commands for specific sanction module Tx interaction. +func TxCmd() *cobra.Command { + txCmd := &cobra.Command{ + Use: sanction.ModuleName, + Short: "Sanction transaction subcommands", + DisableFlagParsing: true, + SuggestionsMinimumDistance: 2, + RunE: client.ValidateCmd, + } + + txCmd.AddCommand( + TxSanctionCmd(), + TxUnsanctionCmd(), + TxUpdateParamsCmd(), + ) + + return txCmd +} + +// TxSanctionCmd returns the command for submitting a MsgSanction governance proposal tx. +func TxSanctionCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "sanction
[
...]", + Short: "Submit a governance proposal to sanction one or more addresses", + Long: `Submit a governance proposal to sanction one or more addresses. +At least one address is required; any number of addresses can be provided. +Each address should be a valid bech32 encoded string.`, + Example: fmt.Sprintf(` +$ %[1]s sanction %[2]s +$ %[1]s sanction %[3]s %[2]s +`, + exampleTxCmdBase, exampleTxAddr1, exampleTxAddr2), + Args: cobra.MinimumNArgs(1), + RunE: func(cmd *cobra.Command, args []string) error { + clientCtx, err := client.GetClientTxContext(cmd) + if err != nil { + return err + } + + flagSet := cmd.Flags() + + msgSanction := &sanction.MsgSanction{ + Addresses: args, + Authority: provcli.GetAuthority(flagSet), + } + if err = msgSanction.ValidateBasic(); err != nil { + return err + } + + return provcli.GenerateOrBroadcastTxCLIAsGovProp(clientCtx, flagSet, msgSanction) + }, + } + + flags.AddTxFlagsToCmd(cmd) + govcli.AddGovPropFlagsToCmd(cmd) + provcli.AddAuthorityFlagToCmd(cmd) + + return cmd +} + +// TxUnsanctionCmd returns the command for submitting a MsgUnsanction governance proposal tx. +func TxUnsanctionCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "unsanction
[
...]", + Short: "Submit a governance proposal to unsanction one or more addresses", + Long: `Submit a governance proposal to unsanction one or more addresses. +At least one address is required; any number of addresses can be provided. +Each address should be a valid bech32 encoded string.`, + Example: fmt.Sprintf(` +$ %[1]s unsanction %[3]s +$ %[1]s unsanction %[2]s %[3]s +`, + exampleTxCmdBase, exampleTxAddr1, exampleTxAddr2), + Args: cobra.MinimumNArgs(1), + RunE: func(cmd *cobra.Command, args []string) error { + clientCtx, err := client.GetClientTxContext(cmd) + if err != nil { + return err + } + + flagSet := cmd.Flags() + + msgUnsanction := &sanction.MsgUnsanction{ + Addresses: args, + Authority: provcli.GetAuthority(flagSet), + } + if err = msgUnsanction.ValidateBasic(); err != nil { + return err + } + + return provcli.GenerateOrBroadcastTxCLIAsGovProp(clientCtx, flagSet, msgUnsanction) + }, + } + + flags.AddTxFlagsToCmd(cmd) + govcli.AddGovPropFlagsToCmd(cmd) + provcli.AddAuthorityFlagToCmd(cmd) + + return cmd +} + +// TxUpdateParamsCmd returns the command for submitting a MsgUpdateParams governance proposal tx. +func TxUpdateParamsCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "update-params ", + Short: "Submit a governance proposal to update the sanction module's params", + Long: `Submit a governance proposal to update the sanction module's params. +Both and are required. +They must be coins or empty strings.`, + Example: fmt.Sprintf(` +$ %[1]s update-params 100%[2]s 150%[2]s +$ %[1]s update-params '' 50%[2]s +$ %[1]s update-params 75%[2]s '' +$ %[1]s update-params '' '' +`, + exampleTxCmdBase, sdk.DefaultBondDenom), + Args: cobra.ExactArgs(2), + RunE: func(cmd *cobra.Command, args []string) error { + clientCtx, err := client.GetClientTxContext(cmd) + if err != nil { + return err + } + + flagSet := cmd.Flags() + + msgUpdateParams := &sanction.MsgUpdateParams{ + Params: &sanction.Params{}, + Authority: provcli.GetAuthority(flagSet), + } + + if len(args[0]) > 0 { + msgUpdateParams.Params.ImmediateSanctionMinDeposit, err = sdk.ParseCoinsNormalized(args[0]) + if err != nil { + return fmt.Errorf("invalid immediate_sanction_min_deposit string %q: %w", args[0], err) + } + } + + if len(args[1]) > 0 { + msgUpdateParams.Params.ImmediateUnsanctionMinDeposit, err = sdk.ParseCoinsNormalized(args[1]) + if err != nil { + return fmt.Errorf("invalid immediate_unsanction_min_deposit string %q: %w", args[1], err) + } + } + + if err = msgUpdateParams.ValidateBasic(); err != nil { + return err + } + + return provcli.GenerateOrBroadcastTxCLIAsGovProp(clientCtx, flagSet, msgUpdateParams) + }, + } + + flags.AddTxFlagsToCmd(cmd) + govcli.AddGovPropFlagsToCmd(cmd) + provcli.AddAuthorityFlagToCmd(cmd) + + return cmd +} diff --git a/x/sanction/client/testutil/cli_test.go b/x/sanction/client/testutil/cli_test.go new file mode 100644 index 0000000000..08d9d62a21 --- /dev/null +++ b/x/sanction/client/testutil/cli_test.go @@ -0,0 +1,255 @@ +//go:build norace +// +build norace + +package testutil + +import ( + "encoding/json" + "fmt" + "os" + "path/filepath" + "testing" + "time" + + "github.com/stretchr/testify/suite" + + cmtcli "github.com/cometbft/cometbft/libs/cli" + + sdkmath "cosmossdk.io/math" + + "github.com/cosmos/cosmos-sdk/client/flags" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + "github.com/cosmos/cosmos-sdk/crypto/keyring" + "github.com/cosmos/cosmos-sdk/testutil/cli" + sdk "github.com/cosmos/cosmos-sdk/types" + govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" + gov "github.com/cosmos/cosmos-sdk/x/gov/types" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + + "github.com/provenance-io/provenance/internal/pioconfig" + "github.com/provenance-io/provenance/testutil" + "github.com/provenance-io/provenance/testutil/queries" + "github.com/provenance-io/provenance/x/sanction" + client "github.com/provenance-io/provenance/x/sanction/client/cli" +) + +func TestIntegrationTestSuite(t *testing.T) { + pioconfig.SetProvenanceConfig(sdk.DefaultBondDenom, 0) + govv1.DefaultMinDepositRatio = sdkmath.LegacyZeroDec() + cfg := testutil.DefaultTestNetworkConfig() + cfg.NumValidators = 5 + cfg.TimeoutCommit = 500 * time.Millisecond + + // Define some stuff in the sanction genesis state. + sanctionedAddr1 := sdk.AccAddress("1_sanctioned_address_") + sanctionedAddr2 := sdk.AccAddress("2_sanctioned_address_") + tempSanctAddr := sdk.AccAddress("temp_sanctioned_addr") + tempUnsanctAddr := sdk.AccAddress("temp_unsanctioned___") + sanctionGenBz := cfg.GenesisState[sanction.ModuleName] + var sanctionGen sanction.GenesisState + if len(sanctionGenBz) > 0 { + cfg.Codec.MustUnmarshalJSON(sanctionGenBz, &sanctionGen) + } + sanctionGen.SanctionedAddresses = append(sanctionGen.SanctionedAddresses, + sanctionedAddr1.String(), + sanctionedAddr2.String(), + ) + sanctionGen.TemporaryEntries = append(sanctionGen.TemporaryEntries, + &sanction.TemporaryEntry{ + Address: tempSanctAddr.String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + &sanction.TemporaryEntry{ + Address: tempUnsanctAddr.String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + ) + sanctionGen.Params = &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin(cfg.BondDenom, 52)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin(cfg.BondDenom, 133)), + } + cfg.GenesisState[sanction.ModuleName] = cfg.Codec.MustMarshalJSON(&sanctionGen) + + // Tweak the gov params too to make testing gov props easier. + // MinDeposit: 6stake (default is 10000000stake) + // MaxDepositPeriod: 5s (default is 48h) + // VotingPeriod: 5s (default is 48h) + govGenBz := cfg.GenesisState[gov.ModuleName] + var govGen govv1.GenesisState + if len(govGenBz) > 0 { + cfg.Codec.MustUnmarshalJSON(govGenBz, &govGen) + } + govGen.Params.MinDeposit = sdk.NewCoins(sdk.NewInt64Coin(cfg.BondDenom, 6)) + twoSeconds := time.Second * 2 + govGen.Params.MaxDepositPeriod = &twoSeconds + govGen.Params.VotingPeriod = &twoSeconds + cfg.GenesisState[gov.ModuleName] = cfg.Codec.MustMarshalJSON(&govGen) + + suite.Run(t, NewIntegrationTestSuite(cfg, &sanctionGen)) +} + +func (s *IntegrationTestSuite) TestSanctionValidatorImmediateUsingGovCmds() { + // Wait 2 blocks to start this. That way, hopefully the query tests are done. + // In between the two, create all the stuff to send. + s.Require().NoError(s.network.WaitForNextBlock(), "wait for next block 1") + authority := s.getAuthority() + proposerValI := 0 + sanctionValI := 4 + sanctMsg := &sanction.MsgSanction{ + Addresses: []string{s.network.Validators[sanctionValI].Address.String()}, + Authority: authority, + } + sanctMsgAny, err := codectypes.NewAnyWithValue(sanctMsg) + depAmt := s.sanctionGenesis.Params.ImmediateSanctionMinDeposit + feeAmt := s.bondCoins(10) + s.Require().NoError(err, "NewAnyWithValue(MsgSanction)") + // Thankfully, the struct used to unmarshal the proposal json (in NewCmdSubmitProposal), is private. + // And to be really helpful, it's not the same as MsgSubmitProposal. + // Specifically, the command wants keys "messages", "metadata", and "deposit", + // but MsgSubmitProposal ends up with "messages", "metadata", "initial_deposit", and "proposer". + // So I'm going to marshal MsgSubmitProposal to json, then unmarshal it to a map[string]json.RawMessage, + // tweak the map, then marshal that into what ends up in the file. + propMsg := &govv1.MsgSubmitProposal{ + Messages: []*codectypes.Any{sanctMsgAny}, + InitialDeposit: depAmt, + Proposer: s.network.Validators[proposerValI].Address.String(), + Metadata: "", + Title: "Sanction an address", + Summary: "Sanction an address", + } + propMsgBzStep1, err := s.cfg.Codec.MarshalJSON(propMsg) + s.Require().NoError(err, "MarshalJSON(MsgSubmitProposal)") + var propMsgJSON map[string]json.RawMessage + err = json.Unmarshal(propMsgBzStep1, &propMsgJSON) + s.Require().NoError(err, "Unmarshal MsgSubmitProposal") + propMsgJSON["deposit"] = []byte(fmt.Sprintf("%q", depAmt.String())) + delete(propMsgJSON, "initial_deposit") + delete(propMsgJSON, "proposer") + propMsgBz, err := json.Marshal(propMsgJSON) + s.Require().NoError(err, "Marshal propMsgJSON") + propFile := filepath.Join(s.T().TempDir(), "gov-prop-sanction.json") + err = os.WriteFile(propFile, propMsgBz, 0644) + s.Require().NoError(err, "WriteFile %s", propFile) + + // Usage: simd tx gov submit-proposal [path/to/proposal.json] [flags] + propCmd := govcli.NewCmdSubmitProposal() + propArgs := []string{ + propFile, + "--" + flags.FlagKeyringBackend, keyring.BackendTest, + "--" + flags.FlagFrom, propMsg.Proposer, + "--" + flags.FlagFees, feeAmt.String(), + "--" + flags.FlagSkipConfirmation, + "--" + flags.FlagBroadcastMode, flags.BroadcastSync, + "--" + cmtcli.OutputFlag, "json", + } + + // Usage: simd tx gov vote [proposal-id] [option] [flags] + voteCmd := govcli.NewCmdVote() + allVoteArgs := make([][]string, len(s.network.Validators)) + for i, val := range s.network.Validators { + // Note: The no_with_veto vote from the validator being sanctioned should fail because + // enough deposit is provided to make the sanction immediate, so they won't be able to pay fees. + // The command won't return an error though. That failure will happen when the block is being processed. + // Failure of that tx will be reflected in the final tally of the proposal later on though, + // i.e. it won't have any recorded no-with-veto votes. + option := "yes" + if i == sanctionValI { + option = "no_with_veto" + } + // Note: arg[0] will be updated with the gov prop once it's known. + allVoteArgs[i] = []string{ + "0", option, + "--" + flags.FlagKeyringDir, filepath.Join(val.Dir, "simcli"), + "--" + flags.FlagKeyringBackend, keyring.BackendTest, + "--" + flags.FlagFrom, val.Address.String(), + "--" + flags.FlagFees, feeAmt.String(), + "--" + flags.FlagBroadcastMode, flags.BroadcastAsync, + "--" + flags.FlagSkipConfirmation, + "--" + cmtcli.OutputFlag, "json", + } + } + + // Usage: simd query sanction is-sanctioned
[flags] + isSanctCmd := client.QueryIsSanctionedCmd() + isSanctArgs := []string{ + s.network.Validators[sanctionValI].Address.String(), + "--" + cmtcli.OutputFlag, "json", + } + + // Finally, wait for the next block. + s.Require().NoError(s.network.WaitForNextBlock(), "wait for next block 2") + startHeight := s.logHeight() + + // Submit the proposal. + s.T().Logf("Proposal: %s\n%s", propFile, propMsgBz) + propOutBW, err := cli.ExecTestCLICmd(s.clientCtx, propCmd, propArgs) + s.Require().NoError(err, "ExecTestCLICmd tx gov submit-proposal") + propOutBz := propOutBW.Bytes() + s.T().Logf("tx gov submit-proposal output:\n%s", propOutBz) + propHeight := s.waitForHeight(startHeight + 1) + + // Find the last proposal (assuming it's the one just submitted above). + lastProp := queries.GetLastGovProp(s.T(), s.val0) + propID := fmt.Sprintf("%d", lastProp.Id) + s.T().Logf("Proposal id to vote on: %s", propID) + + // Verify that the validator is sanctioned + isSanctOutBW1, err := cli.ExecTestCLICmd(s.clientCtx, isSanctCmd, isSanctArgs) + s.Require().NoError(err, "ExecTestCLICmd query sanction is-sanctioned (first time)") + isSanctOutBz1 := isSanctOutBW1.Bytes() + s.T().Logf("query sanction is-sanctioned output (first time):\n%s", isSanctOutBz1) + var isSanctOut1 sanction.QueryIsSanctionedResponse + err = json.Unmarshal(isSanctOutBz1, &isSanctOut1) + s.Require().NoError(err, "Unmarshal QueryIsSanctionedResponse (first time)") + s.Assert().True(isSanctOut1.IsSanctioned, "is sanctioned (first time)") + + // Cast votes on it. + for i, voteArgs := range allVoteArgs { + voteArgs[0] = propID + voteOutBW, err := cli.ExecTestCLICmd(s.clientCtx, voteCmd, voteArgs) + s.Require().NoError(err, "[%d]: ExecTestCLICmd tx gov vote", i) + voteOutBz := voteOutBW.Bytes() + s.T().Logf("[%d]: tx gov vote output:\n%s", i, voteOutBz) + } + + // We configured 1/2 second per block, and a 2-second voting period. + // So wait for 4 blocks after the proposal block. + s.logHeight() + s.T().Log("waiting for voting period to end") + lastHeight := s.waitForHeight(propHeight + 4) + + // Check that the proposal passed. + finalProp := queries.GetGovProp(s.T(), s.val0, propID) + s.Assert().Equal(govv1.StatusPassed, finalProp.Status, "proposal status") + + // Check that that validator is still sanctioned. + isSanctOutBW2, err := cli.ExecTestCLICmd(s.clientCtx, isSanctCmd, isSanctArgs) + s.Require().NoError(err, "ExecTestCLICmd query sanction is-sanctioned (second time)") + isSanctOutBz2 := isSanctOutBW2.Bytes() + s.T().Logf("query sanction is-sanctioned output (second time):\n%s", isSanctOutBz2) + var isSanctOut2 sanction.QueryIsSanctionedResponse + err = json.Unmarshal(isSanctOutBz2, &isSanctOut2) + s.Require().NoError(err, "Unmarshal QueryIsSanctionedResponse (second time)") + s.Assert().True(isSanctOut2.IsSanctioned, "is sanctioned (second time)") + + // Wait 20 more blocks to make sure nothing unravels. + s.logHeight() + s.T().Log("waiting 20 blocks before shutdown") + _, err = s.network.WaitForHeightWithTimeout(lastHeight+20, 30*time.Second) + s.Require().NoError(err, "waiting for block %d (or 30 seconds)", lastHeight+20) + s.logHeight() + + // Check that that validator is still sanctioned one last time. + isSanctOutBW3, err := cli.ExecTestCLICmd(s.clientCtx, isSanctCmd, isSanctArgs) + s.Require().NoError(err, "ExecTestCLICmd query sanction is-sanctioned (third time)") + isSanctOutBz3 := isSanctOutBW3.Bytes() + s.T().Logf("query sanction is-sanctioned output (third time):\n%s", isSanctOutBz3) + var isSanctOut3 sanction.QueryIsSanctionedResponse + err = json.Unmarshal(isSanctOutBz3, &isSanctOut3) + s.Require().NoError(err, "Unmarshal QueryIsSanctionedResponse (third time)") + s.Assert().True(isSanctOut3.IsSanctioned, "is sanctioned (third time)") + + s.T().Log("done") +} diff --git a/x/sanction/client/testutil/common_test.go b/x/sanction/client/testutil/common_test.go new file mode 100644 index 0000000000..11856b4e7d --- /dev/null +++ b/x/sanction/client/testutil/common_test.go @@ -0,0 +1,106 @@ +package testutil + +import ( + "fmt" + + "github.com/stretchr/testify/suite" + + "github.com/cosmos/cosmos-sdk/client" + "github.com/cosmos/cosmos-sdk/client/flags" + "github.com/cosmos/cosmos-sdk/testutil/network" + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/testutil/queries" + "github.com/provenance-io/provenance/x/sanction" +) + +type IntegrationTestSuite struct { + suite.Suite + + cfg network.Config + network *network.Network + clientCtx client.Context + + commonArgs []string + val0 *network.Validator + valAddr sdk.AccAddress + authority string + + sanctionGenesis *sanction.GenesisState +} + +func NewIntegrationTestSuite(cfg network.Config, sanctionGenesis *sanction.GenesisState) *IntegrationTestSuite { + return &IntegrationTestSuite{ + cfg: cfg, + sanctionGenesis: sanctionGenesis, + } +} + +func (s *IntegrationTestSuite) SetupSuite() { + s.T().Log("setting up integration test suite") + + var err error + s.network, err = network.New(s.T(), s.T().TempDir(), s.cfg) + s.Require().NoError(err) + + _, err = s.network.WaitForHeight(1) + s.Require().NoError(err) + + s.val0 = s.network.Validators[0] + s.clientCtx = s.network.Validators[0].ClientCtx + s.valAddr = s.network.Validators[0].Address + + s.commonArgs = []string{ + fmt.Sprintf("--%s", flags.FlagFrom), s.valAddr.String(), + fmt.Sprintf("--%s=true", flags.FlagSkipConfirmation), + fmt.Sprintf("--%s=%s", flags.FlagBroadcastMode, flags.BroadcastSync), + fmt.Sprintf("--%s=%s", flags.FlagFees, s.bondCoins(10).String()), + } + +} + +func (s *IntegrationTestSuite) TearDownSuite() { + s.T().Log("tearing down integration test suite") + s.network.Cleanup() +} + +// assertErrorContents calls AssertErrorContents using this suite's t. +func (s *IntegrationTestSuite) assertErrorContents(theError error, contains []string, msgAndArgs ...interface{}) bool { + return assertions.AssertErrorContents(s.T(), theError, contains, msgAndArgs...) +} + +// bondCoin creates an sdk.Coin with the bond-denom in the amount provided. +func (s *IntegrationTestSuite) bondCoin(amt int64) sdk.Coin { + return sdk.NewInt64Coin(s.cfg.BondDenom, amt) +} + +// bondCoins creates an sdk.Coins with the bond-denom in the amount provided. +func (s *IntegrationTestSuite) bondCoins(amt int64) sdk.Coins { + return sdk.NewCoins(s.bondCoin(amt)) +} + +// appendCommonFlagsTo adds this suite's common flags to the end of the provided arguments. +func (s *IntegrationTestSuite) appendCommonArgsTo(args ...string) []string { + return append(args, s.commonArgs...) +} + +// getAuthority executes a query to get the address of the gov module account. +func (s *IntegrationTestSuite) getAuthority() string { + acct := queries.GetModuleAccountByName(s.T(), s.val0, "gov") + return acct.GetAddress().String() +} + +func (s *IntegrationTestSuite) logHeight() int64 { + height, err := s.network.LatestHeight() + s.Require().NoError(err, "LatestHeight()") + s.T().Logf("Current height: %d", height) + return height +} + +func (s *IntegrationTestSuite) waitForHeight(height int64) int64 { + rv, err := s.network.WaitForHeight(height) + s.Require().NoError(err, "WaitForHeight(%d)", height) + s.T().Logf("Current height: %d", rv) + return rv +} diff --git a/x/sanction/client/testutil/query_test.go b/x/sanction/client/testutil/query_test.go new file mode 100644 index 0000000000..5a39497a82 --- /dev/null +++ b/x/sanction/client/testutil/query_test.go @@ -0,0 +1,332 @@ +package testutil + +import ( + "fmt" + + cmtcli "github.com/cometbft/cometbft/libs/cli" + + "github.com/cosmos/cosmos-sdk/testutil/cli" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/address" + "github.com/cosmos/cosmos-sdk/types/query" + + "github.com/provenance-io/provenance/x/sanction" + client "github.com/provenance-io/provenance/x/sanction/client/cli" + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +// These tests are initiated by TestIntegrationTestSuite in cli_test.go + +func (s *IntegrationTestSuite) TestIsSanctionedCmd() { + otherAddr := sdk.AccAddress("1_other_test_address") + + tests := []struct { + name string + args []string + exp *sanction.QueryIsSanctionedResponse + expErr []string + }{ + { + name: "not sanctioned", + args: []string{otherAddr.String()}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: false}, + }, + { + name: "sanctioned address 1", + args: []string{s.sanctionGenesis.SanctionedAddresses[0]}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: true}, + }, + { + name: "sanctioned address 2", + args: []string{s.sanctionGenesis.SanctionedAddresses[1]}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: true}, + }, + { + name: "temp sanctioned address", + args: []string{s.sanctionGenesis.TemporaryEntries[0].Address}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: true}, + }, + { + name: "temp unsanctioned address", + args: []string{s.sanctionGenesis.TemporaryEntries[1].Address}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: false}, + }, + { + name: "no args", + args: []string{}, + expErr: []string{"accepts 1 arg(s), received 0"}, + }, + { + name: "two args", + args: []string{"arg1", "arg2"}, + expErr: []string{"accepts 1 arg(s), received 2"}, + }, + { + name: "not an address", + args: []string{"notanaddress"}, + expErr: []string{"decoding bech32 failed"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + cmd := client.QueryIsSanctionedCmd() + args := append(tc.args, fmt.Sprintf("--%s=json", cmtcli.OutputFlag)) + outBW, err := cli.ExecTestCLICmd(s.clientCtx, cmd, args) + outBz := outBW.Bytes() + s.T().Logf("Output:\n%s", string(outBz)) + s.assertErrorContents(err, tc.expErr, "QueryIsSanctionedCmd error") + for _, expErr := range tc.expErr { + s.Assert().Contains(string(outBz), expErr, "QueryIsSanctionedCmd output with error") + } + if tc.exp != nil { + act := &sanction.QueryIsSanctionedResponse{} + testFunc := func() { + err = s.clientCtx.Codec.UnmarshalJSON(outBz, act) + } + if s.Assert().NotPanics(testFunc, "UnmarshalJSON on output") { + if s.Assert().NoError(err, "UnmarshalJSON on output") { + s.Assert().Equal(tc.exp, act, "QueryIsSanctionedCmd response") + } + } + } + }) + } +} + +func (s *IntegrationTestSuite) TestQuerySanctionedAddressesCmd() { + addr2Key := address.MustLengthPrefix(sdk.MustAccAddressFromBech32(s.sanctionGenesis.SanctionedAddresses[1])) + + tests := []struct { + name string + args []string + exp *sanction.QuerySanctionedAddressesResponse + expErr []string + }{ + { + name: "arg provided", + args: []string{"arg1"}, + expErr: []string{"accepts 0 arg(s), received 1"}, + }, + { + name: "no args", + args: []string{}, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: s.sanctionGenesis.SanctionedAddresses, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "limit 1", + args: []string{"--limit", "1"}, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{s.sanctionGenesis.SanctionedAddresses[0]}, + Pagination: &query.PageResponse{ + NextKey: addr2Key, + Total: 0, + }, + }, + }, + { + name: "limit 1 offset 1", + args: []string{"--limit", "1", "--offset", "1"}, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{s.sanctionGenesis.SanctionedAddresses[1]}, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + cmd := client.QuerySanctionedAddressesCmd() + args := append(tc.args, fmt.Sprintf("--%s=json", cmtcli.OutputFlag)) + outBW, err := cli.ExecTestCLICmd(s.clientCtx, cmd, args) + outBz := outBW.Bytes() + s.T().Logf("Output:\n%s", string(outBz)) + s.assertErrorContents(err, tc.expErr, "QuerySanctionedAddressesCmd error") + for _, expErr := range tc.expErr { + s.Assert().Contains(string(outBz), expErr, "QuerySanctionedAddressesCmd output with error") + } + if tc.exp != nil { + act := &sanction.QuerySanctionedAddressesResponse{} + testFunc := func() { + err = s.clientCtx.Codec.UnmarshalJSON(outBz, act) + } + if s.Assert().NotPanics(testFunc, "UnmarshalJSON on output") { + if s.Assert().NoError(err, "UnmarshalJSON on output") { + s.Assert().Equal(tc.exp.Addresses, act.Addresses, "Addresses") + s.Assert().Equal(tc.exp.Pagination, act.Pagination, "Pagination") + } + } + } + }) + } +} + +func (s *IntegrationTestSuite) TestQueryTemporaryEntriesCmd() { + entry2Key := keeper.CreateTemporaryKey(sdk.MustAccAddressFromBech32(s.sanctionGenesis.TemporaryEntries[1].Address), s.sanctionGenesis.TemporaryEntries[1].ProposalId)[1:] + + tests := []struct { + name string + args []string + exp *sanction.QueryTemporaryEntriesResponse + expErr []string + }{ + { + name: "two args provided", + args: []string{"arg1", "arg2"}, + expErr: []string{"accepts at most 1 arg(s), received 2"}, + }, + { + name: "not an address", + args: []string{"notanaddress"}, + expErr: []string{"decoding bech32 failed"}, + }, + { + name: "no args", + args: []string{}, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: s.sanctionGenesis.TemporaryEntries, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "limit 1", + args: []string{"--limit", "1"}, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + s.sanctionGenesis.TemporaryEntries[0], + }, + Pagination: &query.PageResponse{ + NextKey: entry2Key, + Total: 0, + }, + }, + }, + { + name: "limit 1 offset 1", + args: []string{"--limit", "1", "--offset", "1"}, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + s.sanctionGenesis.TemporaryEntries[1], + }, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "addr provided with an entry", + args: []string{s.sanctionGenesis.TemporaryEntries[0].Address}, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + s.sanctionGenesis.TemporaryEntries[0], + }, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "addr provided without entries", + args: []string{s.sanctionGenesis.SanctionedAddresses[0]}, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{}, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + cmd := client.QueryTemporaryEntriesCmd() + args := append(tc.args, fmt.Sprintf("--%s=json", cmtcli.OutputFlag)) + outBW, err := cli.ExecTestCLICmd(s.clientCtx, cmd, args) + outBz := outBW.Bytes() + s.T().Logf("Output:\n%s", string(outBz)) + s.assertErrorContents(err, tc.expErr, "QueryTemporaryEntriesCmd error") + for _, expErr := range tc.expErr { + s.Assert().Contains(string(outBz), expErr, "QueryTemporaryEntriesCmd output with error") + } + if tc.exp != nil { + act := &sanction.QueryTemporaryEntriesResponse{} + testFunc := func() { + err = s.clientCtx.Codec.UnmarshalJSON(outBz, act) + } + if s.Assert().NotPanics(testFunc, "UnmarshalJSON on output") { + if s.Assert().NoError(err, "UnmarshalJSON on output") { + s.Assert().Equal(tc.exp.Entries, act.Entries, "Entries") + s.Assert().Equal(tc.exp.Pagination, act.Pagination, "Pagination") + } + } + } + }) + } +} + +func (s *IntegrationTestSuite) TestQueryParamsCmd() { + tests := []struct { + name string + args []string + exp *sanction.QueryParamsResponse + expErr []string + }{ + { + name: "no args", + args: []string{}, + exp: &sanction.QueryParamsResponse{Params: s.sanctionGenesis.Params}, + }, + { + name: "one arg", + args: []string{"arg1"}, + expErr: []string{"accepts 0 arg(s), received 1"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + cmd := client.QueryParamsCmd() + args := append(tc.args, fmt.Sprintf("--%s=json", cmtcli.OutputFlag)) + outBW, err := cli.ExecTestCLICmd(s.clientCtx, cmd, args) + outBz := outBW.Bytes() + s.T().Logf("Output:\n%s", string(outBz)) + s.assertErrorContents(err, tc.expErr, "QueryParamsCmd error") + for _, expErr := range tc.expErr { + s.Assert().Contains(string(outBz), expErr, "QueryParamsCmd output with error") + } + if tc.exp != nil { + act := &sanction.QueryParamsResponse{} + testFunc := func() { + err = s.clientCtx.Codec.UnmarshalJSON(outBz, act) + } + if s.Assert().NotPanics(testFunc, "UnmarshalJSON on output") { + if s.Assert().NoError(err, "UnmarshalJSON on output") { + if !s.Assert().Equal(tc.exp, act, "response") && tc.exp != nil && tc.exp.Params != nil && act != nil && act.Params != nil { + s.Assert().Equal(tc.exp.Params.ImmediateSanctionMinDeposit.String(), + act.Params.ImmediateSanctionMinDeposit.String(), + "ImmediateSanctionMinDeposit") + s.Assert().Equal(tc.exp.Params.ImmediateUnsanctionMinDeposit.String(), + act.Params.ImmediateUnsanctionMinDeposit.String(), + "ImmediateUnsanctionMinDeposit") + } + } + } + } + }) + } +} diff --git a/x/sanction/client/testutil/tx_test.go b/x/sanction/client/testutil/tx_test.go new file mode 100644 index 0000000000..00c43aef89 --- /dev/null +++ b/x/sanction/client/testutil/tx_test.go @@ -0,0 +1,358 @@ +package testutil + +import ( + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + "github.com/cosmos/cosmos-sdk/testutil/cli" + sdk "github.com/cosmos/cosmos-sdk/types" + govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" + + "github.com/provenance-io/provenance/internal/provcli" + "github.com/provenance-io/provenance/testutil/queries" + "github.com/provenance-io/provenance/x/sanction" + client "github.com/provenance-io/provenance/x/sanction/client/cli" +) + +// assertGovPropMsg gets a gov prop and makes sure it has one specific message. +func (s *IntegrationTestSuite) assertGovPropMsg(propID string, msg sdk.Msg) bool { + s.T().Helper() + if msg == nil { + return true + } + + if !s.Assert().NotEmpty(propID, "proposal id") { + return false + } + expPropMsgAny, err := codectypes.NewAnyWithValue(msg) + if !s.Assert().NoError(err, "NewAnyWithValue on %T", msg) { + return false + } + + prop := queries.GetGovProp(s.T(), s.val0, propID) + if !s.Assert().Len(prop.Messages, 1, "number of messages in proposal") { + return false + } + if !s.Assert().Equal(expPropMsgAny, prop.Messages[0], "the message in the proposal") { + return false + } + + return true +} + +// findProposalID looks through the provided response to find a governance proposal id. +// If one is found, it's returned (as a string). Otherwise, an empty string is returned. +func (s *IntegrationTestSuite) findProposalID(resp *sdk.TxResponse) string { + for _, event := range resp.Events { + if event.Type == "submit_proposal" { + for _, attr := range event.Attributes { + if string(attr.Key) == "proposal_id" { + return string(attr.Value) + } + } + } + } + return "" +} + +func (s *IntegrationTestSuite) TestTxSanctionCmd() { + authority := s.getAuthority() + addr1 := sdk.AccAddress("1_address_test_test_").String() + addr2 := sdk.AccAddress("2_address_test_test_").String() + + tests := []struct { + name string + args []string + expErr []string + expPropMsg *sanction.MsgSanction + }{ + { + name: "no addresses given", + args: []string{}, + expErr: []string{"requires at least 1 arg(s), only received 0"}, + }, + { + name: "one address good", + args: []string{addr1}, + expPropMsg: &sanction.MsgSanction{ + Addresses: []string{addr1}, + Authority: authority, + }, + }, + { + name: "one address bad", + args: []string{"thisis1addrthatisbad"}, + expErr: []string{"addresses[0]", `"thisis1addrthatisbad"`, "decoding bech32 failed"}, + }, + { + name: "two addresses first bad", + args: []string{"another1badaddr", addr2}, + expErr: []string{"addresses[0]", `"another1badaddr"`, "decoding bech32 failed"}, + }, + { + name: "two addresses second bad", + args: []string{addr1, "athird1badaddress"}, + expErr: []string{"addresses[1]", `"athird1badaddress"`, "decoding bech32 failed"}, + }, + { + name: "two addresses good", + args: []string{addr1, addr2}, + expPropMsg: &sanction.MsgSanction{ + Addresses: []string{addr1, addr2}, + Authority: authority, + }, + }, + { + name: "bad authority", + args: []string{addr1, "--" + provcli.FlagAuthority, "bad1auth34sd2"}, + expErr: []string{"authority", `"bad1auth34sd2"`, "decoding bech32 failed"}, + }, + { + name: "bad deposit", + args: []string{addr1, "--" + govcli.FlagDeposit, "notcoins"}, + expErr: []string{"invalid deposit", "notcoins"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + cmd := client.TxSanctionCmd() + cmdFuncName := "TxSanctionCmd" + args := s.appendCommonArgsTo(tc.args...) + args = append(args, "--title", cmdFuncName, "--summary", tc.name) + + outBW, err := cli.ExecTestCLICmd(s.clientCtx, cmd, args) + out := outBW.String() + s.T().Logf("Output:\n%s", out) + s.assertErrorContents(err, tc.expErr, "%s error", cmdFuncName) + for _, expErr := range tc.expErr { + s.Assert().Contains(out, expErr, "%s output with error", cmdFuncName) + } + + var propID string + if len(tc.expErr) == 0 { + s.Require().NoError(s.network.WaitForNextBlock(), "wait for next") + txResp, ok := queries.AssertGetTxFromResponse(s.T(), s.val0, []byte(out)) + if ok { + s.Assert().Equal(0, int(txResp.Code), "%s response code", cmdFuncName) + } + propID = s.findProposalID(&txResp) + } + + if tc.expPropMsg != nil { + s.assertGovPropMsg(propID, tc.expPropMsg) + } + }) + } +} + +func (s *IntegrationTestSuite) TestTxUnsanctionCmd() { + authority := s.getAuthority() + addr1 := sdk.AccAddress("1_address_untest____").String() + addr2 := sdk.AccAddress("2_address_untest____").String() + + tests := []struct { + name string + args []string + expErr []string + expPropMsg *sanction.MsgUnsanction + }{ + { + name: "no addresses given", + args: []string{}, + expErr: []string{"requires at least 1 arg(s), only received 0"}, + }, + { + name: "one address good", + args: []string{addr1}, + expPropMsg: &sanction.MsgUnsanction{ + Addresses: []string{addr1}, + Authority: authority, + }, + }, + { + name: "one address bad", + args: []string{"thisis1addrthatisbad"}, + expErr: []string{"addresses[0]", `"thisis1addrthatisbad"`, "decoding bech32 failed"}, + }, + { + name: "two addresses first bad", + args: []string{"another1badaddr", addr2}, + expErr: []string{"addresses[0]", `"another1badaddr"`, "decoding bech32 failed"}, + }, + { + name: "two addresses second bad", + args: []string{addr1, "athird1badaddress"}, + expErr: []string{"addresses[1]", `"athird1badaddress"`, "decoding bech32 failed"}, + }, + { + name: "two addresses good", + args: []string{addr1, addr2}, + expPropMsg: &sanction.MsgUnsanction{ + Addresses: []string{addr1, addr2}, + Authority: authority, + }, + }, + { + name: "bad authority", + args: []string{addr1, "--" + provcli.FlagAuthority, "bad1auth34sd2"}, + expErr: []string{"authority", `"bad1auth34sd2"`, "decoding bech32 failed"}, + }, + { + name: "bad deposit", + args: []string{addr1, "--" + govcli.FlagDeposit, "notcoins"}, + expErr: []string{"invalid deposit", "notcoins"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + cmd := client.TxUnsanctionCmd() + cmdFuncName := "TxUnsanctionCmd" + args := s.appendCommonArgsTo(tc.args...) + args = append(args, "--title", cmdFuncName, "--summary", tc.name) + + outBW, err := cli.ExecTestCLICmd(s.clientCtx, cmd, args) + out := outBW.String() + s.T().Logf("Output:\n%s", out) + s.assertErrorContents(err, tc.expErr, "%s error", cmdFuncName) + for _, expErr := range tc.expErr { + s.Assert().Contains(out, expErr, "%s output with error", cmdFuncName) + } + + var propID string + if len(tc.expErr) == 0 { + s.Require().NoError(s.network.WaitForNextBlock(), "wait for next") + txResp, ok := queries.AssertGetTxFromResponse(s.T(), s.val0, []byte(out)) + if ok { + s.Assert().Equal(0, int(txResp.Code), "%s response code", cmdFuncName) + } + propID = s.findProposalID(&txResp) + } + + if tc.expPropMsg != nil { + s.assertGovPropMsg(propID, tc.expPropMsg) + } + }) + } +} + +func (s *IntegrationTestSuite) TestTxUpdateParamsCmd() { + authority := s.getAuthority() + + tests := []struct { + name string + args []string + expErr []string + expPropMsg *sanction.MsgUpdateParams + }{ + { + name: "no args", + args: []string{}, + expErr: []string{"accepts 2 arg(s), received 0"}, + }, + { + name: "one arg", + args: []string{"arg1"}, + expErr: []string{"accepts 2 arg(s), received 1"}, + }, + { + name: "three args", + args: []string{"arg1", "arg2", "arg3"}, + expErr: []string{"accepts 2 arg(s), received 3"}, + }, + { + name: "coins coins", + args: []string{"1acoin", "2bcoin"}, + expPropMsg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("acoin", 1)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bcoin", 2)), + }, + Authority: authority, + }, + }, + { + name: "empty coins", + args: []string{"", "3ccoin"}, + expPropMsg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("ccoin", 3)), + }, + Authority: authority, + }, + }, + { + name: "coins empty", + args: []string{"4dcoin", ""}, + expPropMsg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("dcoin", 4)), + ImmediateUnsanctionMinDeposit: nil, + }, + Authority: authority, + }, + }, + { + name: "empty empty", + args: []string{"", ""}, + expPropMsg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + Authority: authority, + }, + }, + { + name: "bad good", + args: []string{"firscoinsbad", "5ecoin"}, + expErr: []string{"invalid immediate_sanction_min_deposit", `"firscoinsbad"`}, + }, + { + name: "good bad", + args: []string{"6fcoin", "secondcoinsbad"}, + expErr: []string{"invalid immediate_unsanction_min_deposit", `"secondcoinsbad"`}, + }, + { + name: "bad authority", + args: []string{"", "", "--" + provcli.FlagAuthority, "bad1auth34sd2"}, + expErr: []string{"authority", `"bad1auth34sd2"`, "decoding bech32 failed"}, + }, + { + name: "bad deposit", + args: []string{"", "", "--" + govcli.FlagDeposit, "notcoins"}, + expErr: []string{"invalid deposit", "notcoins"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + cmd := client.TxUpdateParamsCmd() + cmdFuncName := "TxUpdateParamsCmd" + args := s.appendCommonArgsTo(tc.args...) + args = append(args, "--title", cmdFuncName, "--summary", tc.name) + + outBW, err := cli.ExecTestCLICmd(s.clientCtx, cmd, args) + out := outBW.String() + s.T().Logf("Output:\n%s", out) + s.assertErrorContents(err, tc.expErr, "%s error", cmdFuncName) + for _, expErr := range tc.expErr { + s.Assert().Contains(out, expErr, "%s output with error", cmdFuncName) + } + + var propID string + if len(tc.expErr) == 0 { + s.Require().NoError(s.network.WaitForNextBlock(), "wait for next") + txResp, ok := queries.AssertGetTxFromResponse(s.T(), s.val0, []byte(out)) + if ok { + s.Assert().Equal(0, int(txResp.Code), "%s response code", cmdFuncName) + } + propID = s.findProposalID(&txResp) + } + + if tc.expPropMsg != nil { + s.assertGovPropMsg(propID, tc.expPropMsg) + } + }) + } +} diff --git a/x/sanction/codec.go b/x/sanction/codec.go new file mode 100644 index 0000000000..53cdbb275a --- /dev/null +++ b/x/sanction/codec.go @@ -0,0 +1,17 @@ +package sanction + +import ( + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/msgservice" +) + +func RegisterInterfaces(registry codectypes.InterfaceRegistry) { + registry.RegisterImplementations((*sdk.Msg)(nil), + &MsgSanction{}, + &MsgUnsanction{}, + &MsgUpdateParams{}, + ) + + msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) +} diff --git a/x/sanction/errors/errors.go b/x/sanction/errors/errors.go new file mode 100644 index 0000000000..21b0573f88 --- /dev/null +++ b/x/sanction/errors/errors.go @@ -0,0 +1,15 @@ +package errors + +import ( + "cosmossdk.io/errors" +) + +// sanctionCodespace is the codespace for all errors defined in sanction package +const sanctionCodespace = "sanction" + +var ( + ErrInvalidParams = errors.Register(sanctionCodespace, 2, "invalid params") + ErrUnsanctionableAddr = errors.Register(sanctionCodespace, 3, "address cannot be sanctioned") + ErrInvalidTempStatus = errors.Register(sanctionCodespace, 4, "invalid temp status") + ErrSanctionedAccount = errors.Register(sanctionCodespace, 5, "account is sanctioned") +) diff --git a/x/sanction/events.go b/x/sanction/events.go new file mode 100644 index 0000000000..bd2bf8d40a --- /dev/null +++ b/x/sanction/events.go @@ -0,0 +1,27 @@ +package sanction + +import sdk "github.com/cosmos/cosmos-sdk/types" + +func NewEventAddressSanctioned(addr sdk.AccAddress) *EventAddressSanctioned { + return &EventAddressSanctioned{ + Address: addr.String(), + } +} + +func NewEventAddressUnsanctioned(addr sdk.AccAddress) *EventAddressUnsanctioned { + return &EventAddressUnsanctioned{ + Address: addr.String(), + } +} + +func NewEventTempAddressSanctioned(addr sdk.AccAddress) *EventTempAddressSanctioned { + return &EventTempAddressSanctioned{ + Address: addr.String(), + } +} + +func NewEventTempAddressUnsanctioned(addr sdk.AccAddress) *EventTempAddressUnsanctioned { + return &EventTempAddressUnsanctioned{ + Address: addr.String(), + } +} diff --git a/x/sanction/events.pb.go b/x/sanction/events.pb.go new file mode 100644 index 0000000000..bd062772c1 --- /dev/null +++ b/x/sanction/events.pb.go @@ -0,0 +1,957 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/sanction/v1beta1/events.proto + +package sanction + +import ( + fmt "fmt" + _ "github.com/cosmos/cosmos-proto" + proto "github.com/cosmos/gogoproto/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 + +// EventAddressSanctioned is an event emitted when an address is sanctioned. +type EventAddressSanctioned struct { + Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` +} + +func (m *EventAddressSanctioned) Reset() { *m = EventAddressSanctioned{} } +func (m *EventAddressSanctioned) String() string { return proto.CompactTextString(m) } +func (*EventAddressSanctioned) ProtoMessage() {} +func (*EventAddressSanctioned) Descriptor() ([]byte, []int) { + return fileDescriptor_ae9bc0752677962a, []int{0} +} +func (m *EventAddressSanctioned) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EventAddressSanctioned) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EventAddressSanctioned.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 *EventAddressSanctioned) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventAddressSanctioned.Merge(m, src) +} +func (m *EventAddressSanctioned) XXX_Size() int { + return m.Size() +} +func (m *EventAddressSanctioned) XXX_DiscardUnknown() { + xxx_messageInfo_EventAddressSanctioned.DiscardUnknown(m) +} + +var xxx_messageInfo_EventAddressSanctioned proto.InternalMessageInfo + +func (m *EventAddressSanctioned) GetAddress() string { + if m != nil { + return m.Address + } + return "" +} + +// EventAddressUnsanctioned is an event emitted when an address is unsanctioned. +type EventAddressUnsanctioned struct { + Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` +} + +func (m *EventAddressUnsanctioned) Reset() { *m = EventAddressUnsanctioned{} } +func (m *EventAddressUnsanctioned) String() string { return proto.CompactTextString(m) } +func (*EventAddressUnsanctioned) ProtoMessage() {} +func (*EventAddressUnsanctioned) Descriptor() ([]byte, []int) { + return fileDescriptor_ae9bc0752677962a, []int{1} +} +func (m *EventAddressUnsanctioned) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EventAddressUnsanctioned) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EventAddressUnsanctioned.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 *EventAddressUnsanctioned) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventAddressUnsanctioned.Merge(m, src) +} +func (m *EventAddressUnsanctioned) XXX_Size() int { + return m.Size() +} +func (m *EventAddressUnsanctioned) XXX_DiscardUnknown() { + xxx_messageInfo_EventAddressUnsanctioned.DiscardUnknown(m) +} + +var xxx_messageInfo_EventAddressUnsanctioned proto.InternalMessageInfo + +func (m *EventAddressUnsanctioned) GetAddress() string { + if m != nil { + return m.Address + } + return "" +} + +// EventTempAddressSanctioned is an event emitted when an address is temporarily sanctioned. +type EventTempAddressSanctioned struct { + Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` +} + +func (m *EventTempAddressSanctioned) Reset() { *m = EventTempAddressSanctioned{} } +func (m *EventTempAddressSanctioned) String() string { return proto.CompactTextString(m) } +func (*EventTempAddressSanctioned) ProtoMessage() {} +func (*EventTempAddressSanctioned) Descriptor() ([]byte, []int) { + return fileDescriptor_ae9bc0752677962a, []int{2} +} +func (m *EventTempAddressSanctioned) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EventTempAddressSanctioned) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EventTempAddressSanctioned.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 *EventTempAddressSanctioned) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventTempAddressSanctioned.Merge(m, src) +} +func (m *EventTempAddressSanctioned) XXX_Size() int { + return m.Size() +} +func (m *EventTempAddressSanctioned) XXX_DiscardUnknown() { + xxx_messageInfo_EventTempAddressSanctioned.DiscardUnknown(m) +} + +var xxx_messageInfo_EventTempAddressSanctioned proto.InternalMessageInfo + +func (m *EventTempAddressSanctioned) GetAddress() string { + if m != nil { + return m.Address + } + return "" +} + +// EventTempAddressUnsanctioned is an event emitted when an address is temporarily unsanctioned. +type EventTempAddressUnsanctioned struct { + Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` +} + +func (m *EventTempAddressUnsanctioned) Reset() { *m = EventTempAddressUnsanctioned{} } +func (m *EventTempAddressUnsanctioned) String() string { return proto.CompactTextString(m) } +func (*EventTempAddressUnsanctioned) ProtoMessage() {} +func (*EventTempAddressUnsanctioned) Descriptor() ([]byte, []int) { + return fileDescriptor_ae9bc0752677962a, []int{3} +} +func (m *EventTempAddressUnsanctioned) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EventTempAddressUnsanctioned) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EventTempAddressUnsanctioned.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 *EventTempAddressUnsanctioned) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventTempAddressUnsanctioned.Merge(m, src) +} +func (m *EventTempAddressUnsanctioned) XXX_Size() int { + return m.Size() +} +func (m *EventTempAddressUnsanctioned) XXX_DiscardUnknown() { + xxx_messageInfo_EventTempAddressUnsanctioned.DiscardUnknown(m) +} + +var xxx_messageInfo_EventTempAddressUnsanctioned proto.InternalMessageInfo + +func (m *EventTempAddressUnsanctioned) GetAddress() string { + if m != nil { + return m.Address + } + return "" +} + +// EventParamsUpdated is an event emitted when the sanction module params are updated. +type EventParamsUpdated struct { +} + +func (m *EventParamsUpdated) Reset() { *m = EventParamsUpdated{} } +func (m *EventParamsUpdated) String() string { return proto.CompactTextString(m) } +func (*EventParamsUpdated) ProtoMessage() {} +func (*EventParamsUpdated) Descriptor() ([]byte, []int) { + return fileDescriptor_ae9bc0752677962a, []int{4} +} +func (m *EventParamsUpdated) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EventParamsUpdated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EventParamsUpdated.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 *EventParamsUpdated) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventParamsUpdated.Merge(m, src) +} +func (m *EventParamsUpdated) XXX_Size() int { + return m.Size() +} +func (m *EventParamsUpdated) XXX_DiscardUnknown() { + xxx_messageInfo_EventParamsUpdated.DiscardUnknown(m) +} + +var xxx_messageInfo_EventParamsUpdated proto.InternalMessageInfo + +func init() { + proto.RegisterType((*EventAddressSanctioned)(nil), "cosmos.sanction.v1beta1.EventAddressSanctioned") + proto.RegisterType((*EventAddressUnsanctioned)(nil), "cosmos.sanction.v1beta1.EventAddressUnsanctioned") + proto.RegisterType((*EventTempAddressSanctioned)(nil), "cosmos.sanction.v1beta1.EventTempAddressSanctioned") + proto.RegisterType((*EventTempAddressUnsanctioned)(nil), "cosmos.sanction.v1beta1.EventTempAddressUnsanctioned") + proto.RegisterType((*EventParamsUpdated)(nil), "cosmos.sanction.v1beta1.EventParamsUpdated") +} + +func init() { + proto.RegisterFile("cosmos/sanction/v1beta1/events.proto", fileDescriptor_ae9bc0752677962a) +} + +var fileDescriptor_ae9bc0752677962a = []byte{ + // 249 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x2f, 0x4e, 0xcc, 0x4b, 0x2e, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0x33, 0x4c, 0x4a, + 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x2d, 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, + 0x17, 0x12, 0x87, 0xa8, 0xd2, 0x83, 0xa9, 0xd2, 0x83, 0xaa, 0x92, 0x92, 0x84, 0x48, 0xc4, 0x83, + 0x95, 0xe9, 0x43, 0x55, 0x81, 0x39, 0x4a, 0x3e, 0x5c, 0x62, 0xae, 0x20, 0x33, 0x1c, 0x53, 0x52, + 0x8a, 0x52, 0x8b, 0x8b, 0x83, 0xa1, 0x5a, 0x53, 0x53, 0x84, 0x8c, 0xb8, 0xd8, 0x13, 0x21, 0x82, + 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x4e, 0x12, 0x97, 0xb6, 0xe8, 0x8a, 0x40, 0x35, 0xc3, 0x94, + 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x07, 0xc1, 0x14, 0x2a, 0xf9, 0x71, 0x49, 0x20, 0x9b, 0x16, 0x9a, + 0x57, 0x4c, 0x99, 0x79, 0x01, 0x5c, 0x52, 0x60, 0xf3, 0x42, 0x52, 0x73, 0x0b, 0xa8, 0xe3, 0xc2, + 0x20, 0x2e, 0x19, 0x74, 0x13, 0x29, 0x76, 0xa5, 0x08, 0x97, 0x10, 0xd8, 0xcc, 0x80, 0xc4, 0xa2, + 0xc4, 0xdc, 0xe2, 0xd0, 0x82, 0x94, 0xc4, 0x92, 0xd4, 0x14, 0x27, 0x8f, 0x13, 0x8f, 0xe4, 0x18, + 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, + 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4b, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, + 0xcf, 0xd5, 0x2f, 0x28, 0xca, 0x2f, 0x4b, 0xcd, 0x4b, 0xcc, 0x4b, 0x4e, 0xd5, 0xcd, 0xcc, 0x47, + 0xe2, 0xe9, 0x57, 0xc0, 0x23, 0x3b, 0x89, 0x0d, 0x1c, 0x55, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x07, 0x3a, 0xbf, 0xc3, 0x06, 0x02, 0x00, 0x00, +} + +func (m *EventAddressSanctioned) 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 *EventAddressSanctioned) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EventAddressSanctioned) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Address) > 0 { + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *EventAddressUnsanctioned) 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 *EventAddressUnsanctioned) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EventAddressUnsanctioned) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Address) > 0 { + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *EventTempAddressSanctioned) 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 *EventTempAddressSanctioned) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EventTempAddressSanctioned) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Address) > 0 { + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *EventTempAddressUnsanctioned) 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 *EventTempAddressUnsanctioned) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EventTempAddressUnsanctioned) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Address) > 0 { + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *EventParamsUpdated) 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 *EventParamsUpdated) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EventParamsUpdated) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func encodeVarintEvents(dAtA []byte, offset int, v uint64) int { + offset -= sovEvents(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *EventAddressSanctioned) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + return n +} + +func (m *EventAddressUnsanctioned) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + return n +} + +func (m *EventTempAddressSanctioned) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + return n +} + +func (m *EventTempAddressUnsanctioned) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + return n +} + +func (m *EventParamsUpdated) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func sovEvents(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozEvents(x uint64) (n int) { + return sovEvents(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *EventAddressSanctioned) 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 ErrIntOverflowEvents + } + 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: EventAddressSanctioned: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EventAddressSanctioned: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *EventAddressUnsanctioned) 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 ErrIntOverflowEvents + } + 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: EventAddressUnsanctioned: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EventAddressUnsanctioned: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *EventTempAddressSanctioned) 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 ErrIntOverflowEvents + } + 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: EventTempAddressSanctioned: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EventTempAddressSanctioned: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *EventTempAddressUnsanctioned) 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 ErrIntOverflowEvents + } + 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: EventTempAddressUnsanctioned: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EventTempAddressUnsanctioned: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *EventParamsUpdated) 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 ErrIntOverflowEvents + } + 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: EventParamsUpdated: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EventParamsUpdated: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipEvents(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, ErrIntOverflowEvents + } + 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, ErrIntOverflowEvents + } + 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, ErrIntOverflowEvents + } + 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, ErrInvalidLengthEvents + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupEvents + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthEvents + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthEvents = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowEvents = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupEvents = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/sanction/expected_keepers.go b/x/sanction/expected_keepers.go new file mode 100644 index 0000000000..04b5f268d6 --- /dev/null +++ b/x/sanction/expected_keepers.go @@ -0,0 +1,27 @@ +package sanction + +import ( + "context" + + sdk "github.com/cosmos/cosmos-sdk/types" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" +) + +// AccountKeeper defines the account/auth functionality needed from within the sanction module. +type AccountKeeper interface { + NewAccount(context.Context, sdk.AccountI) sdk.AccountI + GetAccount(context.Context, sdk.AccAddress) sdk.AccountI + SetAccount(context.Context, sdk.AccountI) +} + +// BankKeeper defines the bank functionality needed from within the sanction module. +type BankKeeper interface { + AppendSendRestriction(restriction banktypes.SendRestrictionFn) + SpendableCoins(ctx context.Context, addr sdk.AccAddress) sdk.Coins +} + +// GovKeeper defines the gov functionality needed from within the sanction module. +type GovKeeper interface { + GetProposal(ctx context.Context, proposalID uint64) *govv1.Proposal +} diff --git a/x/sanction/genesis.go b/x/sanction/genesis.go new file mode 100644 index 0000000000..d854f2de75 --- /dev/null +++ b/x/sanction/genesis.go @@ -0,0 +1,44 @@ +package sanction + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + + "github.com/provenance-io/provenance/x/sanction/errors" +) + +func NewGenesisState(params *Params, addrs []string, tempEntries []*TemporaryEntry) *GenesisState { + return &GenesisState{ + Params: params, + SanctionedAddresses: addrs, + TemporaryEntries: tempEntries, + } +} + +func DefaultGenesisState() *GenesisState { + return NewGenesisState(DefaultParams(), nil, nil) +} + +func (g GenesisState) Validate() error { + if g.Params != nil { + if err := g.Params.ValidateBasic(); err != nil { + return errors.ErrInvalidParams.Wrap(err.Error()) + } + } + for i, addr := range g.SanctionedAddresses { + _, err := sdk.AccAddressFromBech32(addr) + if err != nil { + return sdkerrors.ErrInvalidAddress.Wrapf("sanctioned addresses[%d], %q: %v", i, addr, err) + } + } + for i, entry := range g.TemporaryEntries { + if entry.Status != TEMP_STATUS_SANCTIONED && entry.Status != TEMP_STATUS_UNSANCTIONED { + return errors.ErrInvalidTempStatus.Wrapf("temporary entries[%d]: %s", i, entry.Status) + } + _, err := sdk.AccAddressFromBech32(entry.Address) + if err != nil { + return sdkerrors.ErrInvalidAddress.Wrapf("temporary entries[%d], %q: %v", i, entry.Address, err) + } + } + return nil +} diff --git a/x/sanction/genesis.pb.go b/x/sanction/genesis.pb.go new file mode 100644 index 0000000000..62eddd1aac --- /dev/null +++ b/x/sanction/genesis.pb.go @@ -0,0 +1,456 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/sanction/v1beta1/genesis.proto + +package sanction + +import ( + fmt "fmt" + _ "github.com/cosmos/cosmos-proto" + proto "github.com/cosmos/gogoproto/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 + +// GenesisState defines the sanction module's genesis state. +type GenesisState struct { + // params are the sanction module parameters. + Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"` + // sanctioned_addresses defines account addresses that are sanctioned. + SanctionedAddresses []string `protobuf:"bytes,2,rep,name=sanctioned_addresses,json=sanctionedAddresses,proto3" json:"sanctioned_addresses,omitempty"` + // temporary_entries defines the temporary entries associated with on-going governance proposals. + TemporaryEntries []*TemporaryEntry `protobuf:"bytes,3,rep,name=temporary_entries,json=temporaryEntries,proto3" json:"temporary_entries,omitempty"` +} + +func (m *GenesisState) Reset() { *m = GenesisState{} } +func (m *GenesisState) String() string { return proto.CompactTextString(m) } +func (*GenesisState) ProtoMessage() {} +func (*GenesisState) Descriptor() ([]byte, []int) { + return fileDescriptor_78e0ba43b92003f6, []int{0} +} +func (m *GenesisState) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_GenesisState.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 *GenesisState) XXX_Merge(src proto.Message) { + xxx_messageInfo_GenesisState.Merge(m, src) +} +func (m *GenesisState) XXX_Size() int { + return m.Size() +} +func (m *GenesisState) XXX_DiscardUnknown() { + xxx_messageInfo_GenesisState.DiscardUnknown(m) +} + +var xxx_messageInfo_GenesisState proto.InternalMessageInfo + +func (m *GenesisState) GetParams() *Params { + if m != nil { + return m.Params + } + return nil +} + +func (m *GenesisState) GetSanctionedAddresses() []string { + if m != nil { + return m.SanctionedAddresses + } + return nil +} + +func (m *GenesisState) GetTemporaryEntries() []*TemporaryEntry { + if m != nil { + return m.TemporaryEntries + } + return nil +} + +func init() { + proto.RegisterType((*GenesisState)(nil), "cosmos.sanction.v1beta1.GenesisState") +} + +func init() { + proto.RegisterFile("cosmos/sanction/v1beta1/genesis.proto", fileDescriptor_78e0ba43b92003f6) +} + +var fileDescriptor_78e0ba43b92003f6 = []byte{ + // 295 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0xbd, 0x4e, 0xf3, 0x30, + 0x18, 0x85, 0xe3, 0x2f, 0x52, 0xa5, 0x2f, 0x65, 0x80, 0x50, 0x89, 0xd0, 0xc1, 0x44, 0x48, 0x40, + 0x96, 0xda, 0x6a, 0x19, 0x98, 0x5b, 0x09, 0x81, 0xc4, 0x82, 0xd2, 0x4e, 0x2c, 0x91, 0x93, 0xbc, + 0x0a, 0x1e, 0x62, 0x47, 0xb6, 0xa9, 0xe8, 0x5d, 0x70, 0x31, 0x5c, 0x04, 0x63, 0xc5, 0xc4, 0x88, + 0x92, 0x8d, 0xab, 0x40, 0xca, 0x4f, 0xe9, 0x92, 0xf1, 0xc8, 0xcf, 0x73, 0x5e, 0xeb, 0x38, 0x17, + 0x89, 0xd4, 0xb9, 0xd4, 0x54, 0x33, 0x91, 0x18, 0x2e, 0x05, 0x5d, 0x4f, 0x63, 0x30, 0x6c, 0x4a, + 0x33, 0x10, 0xa0, 0xb9, 0x26, 0x85, 0x92, 0x46, 0xba, 0x27, 0x0d, 0x46, 0x3a, 0x8c, 0xb4, 0xd8, + 0xf8, 0xb2, 0xcf, 0xdf, 0x91, 0x75, 0xc1, 0xf8, 0xb4, 0xe1, 0xa2, 0x3a, 0xd1, 0xb6, 0xad, 0x0e, + 0xe7, 0x3f, 0xc8, 0x39, 0xb8, 0x6b, 0xae, 0x2d, 0x0d, 0x33, 0xe0, 0xde, 0x38, 0x83, 0x82, 0x29, + 0x96, 0x6b, 0x0f, 0xf9, 0x28, 0x18, 0xce, 0xce, 0x48, 0xcf, 0x75, 0xf2, 0x58, 0x63, 0x61, 0x8b, + 0xbb, 0x0f, 0xce, 0xa8, 0x43, 0x20, 0x8d, 0x58, 0x9a, 0x2a, 0xd0, 0x1a, 0xb4, 0xf7, 0xcf, 0xb7, + 0x83, 0xff, 0x0b, 0xef, 0xf3, 0x7d, 0x32, 0x6a, 0x9b, 0xe6, 0xcd, 0xdb, 0xd2, 0x28, 0x2e, 0xb2, + 0xf0, 0xf8, 0xcf, 0x9a, 0x77, 0x92, 0xbb, 0x72, 0x8e, 0x0c, 0xe4, 0x85, 0x54, 0x4c, 0x6d, 0x22, + 0x10, 0x46, 0x71, 0xd0, 0x9e, 0xed, 0xdb, 0xc1, 0x70, 0x76, 0xd5, 0xfb, 0xa1, 0x55, 0x67, 0xdc, + 0x0a, 0xa3, 0x36, 0xe1, 0xa1, 0xd9, 0xcf, 0x1c, 0xf4, 0xe2, 0xfe, 0xa3, 0xc4, 0x68, 0x5b, 0x62, + 0xf4, 0x5d, 0x62, 0xf4, 0x56, 0x61, 0x6b, 0x5b, 0x61, 0xeb, 0xab, 0xc2, 0xd6, 0x13, 0xc9, 0xb8, + 0x79, 0x7e, 0x89, 0x49, 0x22, 0x73, 0x5a, 0x28, 0xb9, 0x06, 0xc1, 0x44, 0x02, 0x13, 0x2e, 0xf7, + 0x12, 0x7d, 0xdd, 0xed, 0x1a, 0x0f, 0xea, 0xf5, 0xae, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x3e, + 0x07, 0x52, 0x36, 0xc2, 0x01, 0x00, 0x00, +} + +func (m *GenesisState) 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 *GenesisState) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.TemporaryEntries) > 0 { + for iNdEx := len(m.TemporaryEntries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.TemporaryEntries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenesis(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if len(m.SanctionedAddresses) > 0 { + for iNdEx := len(m.SanctionedAddresses) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.SanctionedAddresses[iNdEx]) + copy(dAtA[i:], m.SanctionedAddresses[iNdEx]) + i = encodeVarintGenesis(dAtA, i, uint64(len(m.SanctionedAddresses[iNdEx]))) + i-- + dAtA[i] = 0x12 + } + } + if m.Params != nil { + { + size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenesis(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintGenesis(dAtA []byte, offset int, v uint64) int { + offset -= sovGenesis(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *GenesisState) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Params != nil { + l = m.Params.Size() + n += 1 + l + sovGenesis(uint64(l)) + } + if len(m.SanctionedAddresses) > 0 { + for _, s := range m.SanctionedAddresses { + l = len(s) + n += 1 + l + sovGenesis(uint64(l)) + } + } + if len(m.TemporaryEntries) > 0 { + for _, e := range m.TemporaryEntries { + l = e.Size() + n += 1 + l + sovGenesis(uint64(l)) + } + } + return n +} + +func sovGenesis(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozGenesis(x uint64) (n int) { + return sovGenesis(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *GenesisState) 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 ErrIntOverflowGenesis + } + 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: GenesisState: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GenesisState: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenesis + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenesis + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenesis + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Params == nil { + m.Params = &Params{} + } + if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SanctionedAddresses", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenesis + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenesis + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenesis + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SanctionedAddresses = append(m.SanctionedAddresses, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TemporaryEntries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenesis + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenesis + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenesis + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TemporaryEntries = append(m.TemporaryEntries, &TemporaryEntry{}) + if err := m.TemporaryEntries[len(m.TemporaryEntries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenesis(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenesis + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipGenesis(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, ErrIntOverflowGenesis + } + 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, ErrIntOverflowGenesis + } + 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, ErrIntOverflowGenesis + } + 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, ErrInvalidLengthGenesis + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupGenesis + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthGenesis + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthGenesis = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowGenesis = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/sanction/genesis_test.go b/x/sanction/genesis_test.go new file mode 100644 index 0000000000..73fc6c01d1 --- /dev/null +++ b/x/sanction/genesis_test.go @@ -0,0 +1,546 @@ +package sanction_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" +) + +func TestNewGenesisState(t *testing.T) { + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + require.NoError(t, err, "ParseCoinsNormalized(%q)", coins) + return rv + } + tests := []struct { + name string + params *sanction.Params + addrs []string + temps []*sanction.TemporaryEntry + exp *sanction.GenesisState + }{ + { + name: "nil nil nil", + params: nil, + addrs: nil, + temps: nil, + exp: &sanction.GenesisState{ + Params: nil, + SanctionedAddresses: nil, + TemporaryEntries: nil, + }, + }, + { + name: "nil empty empty", + params: nil, + addrs: []string{}, + temps: []*sanction.TemporaryEntry{}, + exp: &sanction.GenesisState{ + Params: nil, + SanctionedAddresses: []string{}, + TemporaryEntries: []*sanction.TemporaryEntry{}, + }, + }, + { + name: "empty nil empty", + params: &sanction.Params{}, + addrs: nil, + temps: []*sanction.TemporaryEntry{}, + exp: &sanction.GenesisState{ + Params: &sanction.Params{}, + SanctionedAddresses: nil, + TemporaryEntries: []*sanction.TemporaryEntry{}, + }, + }, + { + name: "empty empty empty", + params: &sanction.Params{}, + addrs: []string{}, + temps: []*sanction.TemporaryEntry{}, + exp: &sanction.GenesisState{ + Params: &sanction.Params{}, + SanctionedAddresses: []string{}, + TemporaryEntries: []*sanction.TemporaryEntry{}, + }, + }, + { + name: "only-sanct-dep nil nil", + params: &sanction.Params{ImmediateSanctionMinDeposit: cz("5sanct")}, + addrs: nil, + temps: nil, + exp: &sanction.GenesisState{ + Params: &sanction.Params{ImmediateSanctionMinDeposit: cz("5sanct")}, + SanctionedAddresses: nil, + TemporaryEntries: nil, + }, + }, + { + name: "only-unsanct-dep nil nil", + params: &sanction.Params{ImmediateUnsanctionMinDeposit: cz("8usanct")}, + addrs: nil, + temps: nil, + exp: &sanction.GenesisState{ + Params: &sanction.Params{ImmediateUnsanctionMinDeposit: cz("8usanct")}, + SanctionedAddresses: nil, + TemporaryEntries: nil, + }, + }, + { + name: "both params nil addrs and temps", + params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("11sanct"), + ImmediateUnsanctionMinDeposit: cz("13usanct"), + }, + addrs: nil, + temps: nil, + exp: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("11sanct"), + ImmediateUnsanctionMinDeposit: cz("13usanct"), + }, + SanctionedAddresses: nil, + TemporaryEntries: nil, + }, + }, + { + name: "nil params 3 addrs nil temps", + params: nil, + addrs: []string{"addr1", "addr2", "addr3"}, + temps: nil, + exp: &sanction.GenesisState{ + Params: nil, + SanctionedAddresses: []string{"addr1", "addr2", "addr3"}, + TemporaryEntries: nil, + }, + }, + { + name: "nil params nil addrs 3 temps", + params: nil, + addrs: nil, + temps: []*sanction.TemporaryEntry{ + { + Address: "addr4", + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: "addr5", + ProposalId: 5, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: "addr6", + ProposalId: 6, + Status: 8, + }, + }, + exp: &sanction.GenesisState{ + Params: nil, + SanctionedAddresses: nil, + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: "addr4", + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: "addr5", + ProposalId: 5, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: "addr6", + ProposalId: 6, + Status: 8, + }, + }, + }, + }, + { + name: "a little of all", + params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("11sanct"), + ImmediateUnsanctionMinDeposit: cz("13usanct"), + }, + addrs: []string{"addr-one", "addr-two", "addr-three", "addr-fourteen"}, // Bono, why? + temps: []*sanction.TemporaryEntry{ + { + Address: "addr-twenty", + ProposalId: 8, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: "addr-twenty-one", + ProposalId: 9, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + exp: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("11sanct"), + ImmediateUnsanctionMinDeposit: cz("13usanct"), + }, + SanctionedAddresses: []string{"addr-one", "addr-two", "addr-three", "addr-fourteen"}, + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: "addr-twenty", + ProposalId: 8, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: "addr-twenty-one", + ProposalId: 9, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + }, + }, + { + name: "default", + params: sanction.DefaultParams(), + addrs: nil, + exp: sanction.DefaultGenesisState(), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual *sanction.GenesisState + testFunc := func() { + actual = sanction.NewGenesisState(tc.params, tc.addrs, tc.temps) + } + require.NotPanics(t, testFunc, "NewGenesisState") + if assert.NotNil(t, actual, "NewGenesisState result") { + if !assert.Equal(t, tc.exp, actual, "NewGenesisState result") { + // If we get here, at least one of these should fail and hopefully help point to the thing that's different. + assert.Equal(t, tc.exp.Params, actual.Params, "NewGenesisState Params") + assert.Equal(t, tc.exp.SanctionedAddresses, actual.SanctionedAddresses, "NewGenesisState SanctionedAddresses") + assert.Equal(t, tc.exp.TemporaryEntries, actual.TemporaryEntries, "NewGenesisState TemporaryEntries") + } + } + }) + } +} + +func TestGenesisState_Validate(t *testing.T) { + + tests := []struct { + name string + gs *sanction.GenesisState + exp []string + }{ + { + name: "empty genesis state", + gs: &sanction.GenesisState{}, + exp: nil, + }, + { + name: "control", + gs: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("dcoin", 1)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("dcoin", 2)), + }, + SanctionedAddresses: []string{ + sdk.AccAddress("testaddr0___________").String(), + sdk.AccAddress("testaddr1___________").String(), + sdk.AccAddress("testaddr2___________").String(), + sdk.AccAddress("testaddr3___________").String(), + sdk.AccAddress("testaddr4___________").String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: sdk.AccAddress("tempaddr0___________").String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr1___________").String(), + ProposalId: 2, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr2___________").String(), + ProposalId: 3, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr3___________").String(), + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr4___________").String(), + ProposalId: 4, // same as last one on purpose. + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + }, + exp: nil, + }, + { + name: "invalid params", + gs: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{sdk.NewInt64Coin("dcoin", 1), sdk.NewInt64Coin("dcoin", 2)}, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + exp: []string{"invalid params", "invalid immediate sanction min deposit", "duplicate denomination dcoin"}, + }, + { + name: "invalid first address", + gs: &sanction.GenesisState{ + SanctionedAddresses: []string{ + "not1avalidaddr0", + sdk.AccAddress("testaddr1___________").String(), + sdk.AccAddress("testaddr2___________").String(), + sdk.AccAddress("testaddr3___________").String(), + sdk.AccAddress("testaddr4___________").String(), + }, + }, + exp: []string{"invalid address", "sanctioned addresses[0]", "decoding bech32 failed", `"not1avalidaddr0"`}, + }, + { + name: "invalid third address", + gs: &sanction.GenesisState{ + SanctionedAddresses: []string{ + sdk.AccAddress("testaddr0___________").String(), + sdk.AccAddress("testaddr1___________").String(), + "not1avalidaddr2", + sdk.AccAddress("testaddr3___________").String(), + sdk.AccAddress("testaddr4___________").String(), + }, + }, + exp: []string{"invalid address", "sanctioned addresses[2]", "decoding bech32 failed", `"not1avalidaddr2"`}, + }, + { + name: "invalid last address", + gs: &sanction.GenesisState{ + SanctionedAddresses: []string{ + sdk.AccAddress("testaddr0___________").String(), + sdk.AccAddress("testaddr1___________").String(), + sdk.AccAddress("testaddr2___________").String(), + sdk.AccAddress("testaddr3___________").String(), + "not1avalidaddr4", + }, + }, + exp: []string{"invalid address", "sanctioned addresses[4]", "decoding bech32 failed", `"not1avalidaddr4"`}, + }, + { + name: "invalid first temp entry bad status", + gs: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: sdk.AccAddress("tempaddr0___________").String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_UNSPECIFIED, + }, + { + Address: sdk.AccAddress("tempaddr1___________").String(), + ProposalId: 2, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr2___________").String(), + ProposalId: 3, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr3___________").String(), + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr4___________").String(), + ProposalId: 4, // same as last one on purpose. + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + }, + exp: []string{"temporary entries[0]", "TEMP_STATUS_UNSPECIFIED", "invalid temp status"}, + }, + { + name: "invalid first temp entry bad addr", + gs: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: "this is a bad address, bad, bad, bad", + ProposalId: 1, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr1___________").String(), + ProposalId: 2, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr2___________").String(), + ProposalId: 3, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr3___________").String(), + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr4___________").String(), + ProposalId: 4, // same as last one on purpose. + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + }, + exp: []string{"temporary entries[0]", `"this is a bad address, bad, bad, bad"`, "invalid address", "decoding bech32 failed"}, + }, + { + name: "invalid third temp entry bad status", + gs: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: sdk.AccAddress("tempaddr0___________").String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr1___________").String(), + ProposalId: 2, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr2___________").String(), + ProposalId: 3, + Status: 42, + }, + { + Address: sdk.AccAddress("tempaddr3___________").String(), + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr4___________").String(), + ProposalId: 4, // same as last one on purpose. + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + }, + exp: []string{"temporary entries[2]", "42", "invalid temp status"}, + }, + { + name: "invalid third temp entry bad addr", + gs: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: sdk.AccAddress("tempaddr0___________").String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr1___________").String(), + ProposalId: 2, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: "Nope. Not good.", + ProposalId: 3, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr3___________").String(), + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr4___________").String(), + ProposalId: 4, // same as last one on purpose. + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + }, + exp: []string{"temporary entries[2]", `"Nope. Not good."`, "invalid address", "decoding bech32 failed"}, + }, + { + name: "invalid last temp entry bad status", + gs: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: sdk.AccAddress("tempaddr0___________").String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr1___________").String(), + ProposalId: 2, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr2___________").String(), + ProposalId: 3, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr3___________").String(), + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr4___________").String(), + ProposalId: 4, // same as last one on purpose. + Status: -800, + }, + }, + }, + exp: []string{"temporary entries[4]", "-800", "invalid temp status"}, + }, + { + name: "invalid last temp entry bad addr", + gs: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + { + Address: sdk.AccAddress("tempaddr0___________").String(), + ProposalId: 1, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr1___________").String(), + ProposalId: 2, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr2___________").String(), + ProposalId: 3, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: sdk.AccAddress("tempaddr3___________").String(), + ProposalId: 4, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: "Woops. This isn't right.", + ProposalId: 4, // same as last one on purpose. + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + }, + }, + exp: []string{"temporary entries[4]", `"Woops. This isn't right."`, "invalid address", "decoding bech32 failed"}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var err error + testFunc := func() { + err = tc.gs.Validate() + } + require.NotPanics(t, testFunc, "GenesisState.Validate()") + assertions.AssertErrorContents(t, err, tc.exp, ".Validate result") + }) + } +} diff --git a/x/sanction/keeper/export_test.go b/x/sanction/keeper/export_test.go new file mode 100644 index 0000000000..b4d8ef2283 --- /dev/null +++ b/x/sanction/keeper/export_test.go @@ -0,0 +1,111 @@ +package keeper + +import ( + "context" + + storetypes "cosmossdk.io/store/types" + + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/x/sanction" +) + +// This file is available only to unit tests and houses functions for doing +// things with private keeper package stuff. + +var ( + // OnlyTestsConcatBzPlusCap, for unit tests, exposes the concatBzPlusCap function. + OnlyTestsConcatBzPlusCap = concatBzPlusCap + + // OnlyTestsToCoinsOrDefault, for unit tests, exposes the toCoinsOrDefault function. + OnlyTestsToCoinsOrDefault = toCoinsOrDefault + + // OnlyTestsToAccAddrs, for unit tests, exposes the toAccAddrs function. + OnlyTestsToAccAddrs = toAccAddrs +) + +// WithGovKeeper, for unit tests, creates a copy of this, setting the govKeeper to the provided one. +func (k Keeper) WithGovKeeper(govKeeper sanction.GovKeeper) Keeper { + k.govKeeper = govKeeper + return k +} + +// WithAuthority, for unit tests, creates a copy of this, setting the authority to the provided one. +func (k Keeper) WithAuthority(authority string) Keeper { + k.authority = authority + return k +} + +// WithUnsanctionableAddrs, for unit tests, creates a copy of this, setting the unsanctionableAddrs to the provided one. +// This does not add the provided ones to the unsanctionableAddrs, it overwrites the +// existing ones with the ones provided. +func (k Keeper) WithUnsanctionableAddrs(unsanctionableAddrs map[string]bool) Keeper { + k.unsanctionableAddrs = unsanctionableAddrs + return k +} + +// StoreKey, for unit tests, exposes this keeper's storekey. +func (k Keeper) StoreKey() storetypes.StoreKey { + return k.storeKey +} + +// MsgSanctionTypeURL, for unit tests, exposes this keeper's msgSanctionTypeURL. +func (k Keeper) MsgSanctionTypeURL() string { + return k.msgSanctionTypeURL +} + +// MsgUnsanctionTypeURL, for unit tests, exposes this keeper's msgUnsanctionTypeURL. +func (k Keeper) MsgUnsanctionTypeURL() string { + return k.msgUnsanctionTypeURL +} + +// MsgExecLegacyContentTypeURL, for unit tests, exposes this keeper's msgExecLegacyContentTypeURL. +func (k Keeper) MsgExecLegacyContentTypeURL() string { + return k.msgExecLegacyContentTypeURL +} + +// GetParamAsCoinsOrDefault, for unit tests, exposes this keeper's getParamAsCoinsOrDefault function. +func (k Keeper) GetParamAsCoinsOrDefault(ctx sdk.Context, name string, dflt sdk.Coins) sdk.Coins { + return k.getParamAsCoinsOrDefault(ctx, name, dflt) +} + +// GetLatestTempEntry, for unit tests, exposes this keeper's getLatestTempEntry function. +func (k Keeper) GetLatestTempEntry(store storetypes.KVStore, addr sdk.AccAddress) []byte { + return k.getLatestTempEntry(store, addr) +} + +// GetParam, for unit tests, exposes this keeper's getParam function. +func (k Keeper) GetParam(store storetypes.KVStore, name string) (string, bool) { + return k.getParam(store, name) +} + +// SetParam, for unit tests, exposes this keeper's setParam function. +func (k Keeper) SetParam(store storetypes.KVStore, name, value string) { + k.setParam(store, name, value) +} + +// DeleteParam, for unit tests, exposes this keeper's deleteParam function. +func (k Keeper) DeleteParam(store storetypes.KVStore, name string) { + k.deleteParam(store, name) +} + +// ProposalGovHook, for unit tests, exposes this keeper's proposalGovHook function. +func (k Keeper) ProposalGovHook(ctx context.Context, proposalID uint64) error { + return k.proposalGovHook(ctx, proposalID) +} + +// IsModuleGovHooksMsgURL, for unit tests, exposes this keeper's isModuleGovHooksMsgURL function. +func (k Keeper) IsModuleGovHooksMsgURL(url string) bool { + return k.isModuleGovHooksMsgURL(url) +} + +// GetMsgAddresses, for unit tests, exposes this keeper's getMsgAddresses function. +func (k Keeper) GetMsgAddresses(msg *codectypes.Any) []sdk.AccAddress { + return k.getMsgAddresses(msg) +} + +// ImmediateMinDeposit, for unit tests, exposes this keeper's getImmediateMinDeposit function. +func (k Keeper) ImmediateMinDeposit(ctx sdk.Context, msg *codectypes.Any) sdk.Coins { + return k.getImmediateMinDeposit(ctx, msg) +} diff --git a/x/sanction/keeper/genesis.go b/x/sanction/keeper/genesis.go new file mode 100644 index 0000000000..45963ce135 --- /dev/null +++ b/x/sanction/keeper/genesis.go @@ -0,0 +1,92 @@ +package keeper + +import ( + "fmt" + + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/x/sanction" +) + +// InitGenesis updates this keeper's store using the provided GenesisState. +func (k Keeper) InitGenesis(origCtx sdk.Context, genState *sanction.GenesisState) { + if genState == nil { + return + } + + // We don't want the events from this, so use a context with a throw-away event manager. + ctx := origCtx.WithEventManager(sdk.NewEventManager()) + if err := k.SetParams(ctx, genState.Params); err != nil { + panic(fmt.Errorf("error setting params: %w", err)) + } + + toSanction, err := toAccAddrs(genState.SanctionedAddresses) + if err != nil { + // toAccAddrs has enough context to the error, no need to add more. + panic(err) + } + err = k.SanctionAddresses(ctx, toSanction...) + if err != nil { + panic(fmt.Errorf("error sanctioning addresses: %w", err)) + } + + for i, entry := range genState.TemporaryEntries { + var addr sdk.AccAddress + addr, err = sdk.AccAddressFromBech32(entry.Address) + if err != nil { + panic(fmt.Errorf("invalid temp entry[%d]: invalid address: %w", i, err)) + } + switch entry.Status { + case sanction.TEMP_STATUS_SANCTIONED: + err = k.AddTemporarySanction(ctx, entry.ProposalId, addr) + if err != nil { + panic(fmt.Errorf("error adding temp entry[%d]: sanction: %w", i, err)) + } + case sanction.TEMP_STATUS_UNSANCTIONED: + err = k.AddTemporaryUnsanction(ctx, entry.ProposalId, addr) + if err != nil { + panic(fmt.Errorf("error adding temp entry[%d]: unsanction: %w", i, err)) + } + default: + panic(fmt.Errorf("invalid temp entry[%d]: invalid status: %s", i, entry.Status)) + } + } +} + +// ExportGenesis reads this keeper's entire state and returns it as a GenesisState. +func (k Keeper) ExportGenesis(ctx sdk.Context) *sanction.GenesisState { + params := k.GetParams(ctx) + sanctionedAddrs := k.GetAllSanctionedAddresses(ctx) + tempEntries := k.GetAllTemporaryEntries(ctx) + return sanction.NewGenesisState(params, sanctionedAddrs, tempEntries) +} + +// GetAllSanctionedAddresses gets the bech32 string of every account that is sanctioned. +// This is designed for use with ExportGenesis. See also IterateSanctionedAddresses. +func (k Keeper) GetAllSanctionedAddresses(ctx sdk.Context) []string { + var rv []string + k.IterateSanctionedAddresses(ctx, func(addr sdk.AccAddress) bool { + rv = append(rv, addr.String()) + return false + }) + return rv +} + +// GetAllTemporaryEntries gets all the Temporary entries. +// This is designed for use with ExportGenesis. See also IterateTemporaryEntries. +func (k Keeper) GetAllTemporaryEntries(ctx sdk.Context) []*sanction.TemporaryEntry { + var rv []*sanction.TemporaryEntry + k.IterateTemporaryEntries(ctx, nil, func(addr sdk.AccAddress, id uint64, isSanction bool) bool { + status := sanction.TEMP_STATUS_SANCTIONED + if !isSanction { + status = sanction.TEMP_STATUS_UNSANCTIONED + } + rv = append(rv, &sanction.TemporaryEntry{ + Address: addr.String(), + ProposalId: id, + Status: status, + }) + return false + }) + return rv +} diff --git a/x/sanction/keeper/genesis_test.go b/x/sanction/keeper/genesis_test.go new file mode 100644 index 0000000000..c4c166e7e8 --- /dev/null +++ b/x/sanction/keeper/genesis_test.go @@ -0,0 +1,777 @@ +package keeper_test + +import ( + "testing" + + "github.com/stretchr/testify/suite" + + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +type GenesisTestSuite struct { + BaseTestSuite +} + +func (s *GenesisTestSuite) SetupTest() { + s.BaseSetup() +} + +func TestGenesisTestSuite(t *testing.T) { + suite.Run(t, new(GenesisTestSuite)) +} + +func (s *GenesisTestSuite) TestKeeper_InitGenesis() { + // Set some different (hopefully unique) default param values. + origSanctMinDep := sanction.DefaultImmediateSanctionMinDeposit + origUnsanctMinDep := sanction.DefaultImmediateUnsanctionMinDeposit + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origSanctMinDep + sanction.DefaultImmediateUnsanctionMinDeposit = origUnsanctMinDep + }() + sanction.DefaultImmediateSanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("jounce", 31367)) + sanction.DefaultImmediateUnsanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("crackle", 56476)) + + addr1 := sdk.AccAddress("1st_init_tester_addr") + addr2 := sdk.AccAddress("2nd_init_tester_addr") + addr3 := sdk.AccAddress("3rd_init_tester_addr") + addr4 := sdk.AccAddress("4th_init_tester_addr") + addr5 := sdk.AccAddress("5th_init_tester_addr") + addr6 := sdk.AccAddress("6th_init_tester_addr") + addr7 := sdk.AccAddress("7th_init_tester_addr") + addr8 := sdk.AccAddress("8th_init_tester_addr") + + tests := []struct { + name string + setup func(s *GenesisTestSuite) + genState *sanction.GenesisState + expExport *sanction.GenesisState + expPanic []string + }{ + { + name: "nil gen state nothing yet in state", + genState: nil, + expExport: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: nil, + TemporaryEntries: nil, + }, + }, + { + name: "nil gen state stuff already in state", + setup: func(s *GenesisTestSuite) { + s.ReqOKSetParams(&sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("snap", 4)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("pop", 6)), + }) + s.ReqOKAddPermSanct("addr1", addr1) + s.ReqOKAddTempSanct(55, "addr2", addr2) + s.ReqOKAddTempUnsanct(111, "addr3", addr3) + }, + genState: nil, + expExport: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("snap", 4)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("pop", 6)), + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr2.String(), ProposalId: 55, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr3.String(), ProposalId: 111, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + }, + { + name: "filled gen state nothing yet in state", + genState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bop", 71)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("slide", 95)), + }, + SanctionedAddresses: []string{ + addr7.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr1.String(), + addr6.String(), + addr8.String(), + addr5.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr4.String(), ProposalId: 5555, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr1.String(), ProposalId: 24, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 99, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr1.String(), ProposalId: 23, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_SANCTIONED}, + }, + }, + expExport: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bop", 71)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("slide", 95)), + }, + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + addr7.String(), + addr8.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 23, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr1.String(), ProposalId: 24, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr2.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr3.String(), ProposalId: 99, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr4.String(), ProposalId: 5555, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + }, + { + name: "filled gen state other stuff already in state", + setup: func(s *GenesisTestSuite) { + s.ReqOKSetParams(&sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("oops", 954845)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("wrong", 6)), + }) + s.ReqOKAddPermSanct("addr2, addr4, addr6, addr8", addr2, addr4, addr6, addr8) + s.ReqOKAddTempSanct(99, "addr3, addr5", addr3, addr5) + s.ReqOKAddTempUnsanct(12, "addr7, addr2, addr6", addr7, addr2, addr6) + }, + genState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("plop", 1984)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("skewer", 5532)), + }, + SanctionedAddresses: []string{ + addr7.String(), + addr3.String(), + addr1.String(), + addr6.String(), + addr8.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr4.String(), ProposalId: 5555, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr1.String(), ProposalId: 24, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr2.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr1.String(), ProposalId: 23, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr3.String(), ProposalId: 99, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expExport: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("plop", 1984)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("skewer", 5532)), + }, + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr6.String(), + addr7.String(), + addr8.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 23, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr1.String(), ProposalId: 24, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr2.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr3.String(), ProposalId: 99, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr4.String(), ProposalId: 5555, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr5.String(), ProposalId: 99, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + // Because addr6 is in SanctionedAddresses, the temporary entry for it (that is added during setup) is cleared. + }, + }, + }, + { + name: "nil params", + setup: func(s *GenesisTestSuite) { + s.ReqOKSetParams(&sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("these", 3302), sdk.NewInt64Coin("should", 9)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("goaway", 551515)), + }) + }, + genState: &sanction.GenesisState{ + Params: nil, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr2.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expExport: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr2.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 12, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + }, + { + name: "six addrs first bad", + genState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + "addrOneString", + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + expPanic: []string{"invalid address[0]", "decoding bech32 failed"}, + }, + { + name: "six addrs third bad", + genState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + "addrThreeString", + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + expPanic: []string{"invalid address[2]", "decoding bech32 failed"}, + }, + { + name: "six addrs, sixth bad", + genState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + "addrSixString", + }, + }, + expPanic: []string{"invalid address[5]", "decoding bech32 failed"}, + }, + { + name: "six temps first with bad addr", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: "addrOneString", ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expPanic: []string{"invalid temp entry[0]", "invalid address", "decoding bech32 failed"}, + }, + { + name: "six temps first with bad status", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: -12}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expPanic: []string{"invalid temp entry[0]", "invalid status", "-12"}, + }, + { + name: "six temps first with unspecified status", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSPECIFIED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expPanic: []string{"invalid temp entry[0]", "invalid status", "TEMP_STATUS_UNSPECIFIED"}, + }, + { + name: "six temps third with bad addr", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: "addrThreeString", ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expPanic: []string{"invalid temp entry[2]", "invalid address", "decoding bech32 failed"}, + }, + { + name: "six temps third with bad status", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: 55}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expPanic: []string{"invalid temp entry[2]", "invalid status", "55"}, + }, + { + name: "six temps third with unspecified status", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_UNSPECIFIED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expPanic: []string{"invalid temp entry[2]", "invalid status", "TEMP_STATUS_UNSPECIFIED"}, + }, + { + name: "six temps sixth with bad addr", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: "addrSixString", ProposalId: 5, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + }, + expPanic: []string{"invalid temp entry[5]", "invalid address", "decoding bech32 failed"}, + }, + { + name: "six temps sixth with bad status", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: 800}, + }, + }, + expPanic: []string{"invalid temp entry[5]", "invalid status", "800"}, + }, + { + name: "six temps sixth with unspecified status", + genState: &sanction.GenesisState{ + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr5.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr6.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_UNSPECIFIED}, + }, + }, + expPanic: []string{"invalid temp entry[5]", "invalid status", "TEMP_STATUS_UNSPECIFIED"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + s.ClearState() + if tc.setup != nil { + tc.setup(s) + } + + em := sdk.NewEventManager() + ctx := s.SdkCtx.WithEventManager(em) + testFuncInit := func() { + s.Keeper.InitGenesis(ctx, tc.genState) + } + assertions.RequirePanicContents(s.T(), testFuncInit, tc.expPanic, "InitGenesis") + events := em.Events() + s.Assert().Empty(events, "events emitted during InitGenesis") + if tc.expExport != nil { + s.ExportAndCheck(tc.expExport) + } + }) + } +} + +func (s *GenesisTestSuite) TestKeeper_ExportGenesis() { + s.ClearState() + + addr1 := sdk.AccAddress("1st_export_test_addr") + addr2 := sdk.AccAddress("2nd_export_test_addr") + addr3 := sdk.AccAddress("3rd_export_test_addr") + addr4 := sdk.AccAddress("4th_export_test_addr") + addr5 := sdk.AccAddress("5th_export_test_addr") + addr6 := sdk.AccAddress("6th_export_test_addr") + addr7 := sdk.AccAddress("7th_export_test_addr") + addr8 := sdk.AccAddress("8th_export_test_addr") + + // Set some different (hopefully unique) default param values. + origSanctMinDep := sanction.DefaultImmediateSanctionMinDeposit + origUnsanctMinDep := sanction.DefaultImmediateUnsanctionMinDeposit + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origSanctMinDep + sanction.DefaultImmediateUnsanctionMinDeposit = origUnsanctMinDep + }() + sanction.DefaultImmediateSanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("gurgle", 129)) + sanction.DefaultImmediateUnsanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("yodle", 94221)) + + s.Run("nothing in state", func() { + expected := &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sanction.DefaultImmediateSanctionMinDeposit, + ImmediateUnsanctionMinDeposit: sanction.DefaultImmediateUnsanctionMinDeposit, + }, + SanctionedAddresses: nil, + TemporaryEntries: nil, + } + + s.ExportAndCheck(expected) + }) + + s.Run("a little of everything in state", func() { + expected := &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("scoina", 54), sdk.NewInt64Coin("scoinb", 76)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("ucoiny", 17), sdk.NewInt64Coin("ucoinz", 39)), + }, + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + addr7.String(), + addr8.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr2.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr3.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr4.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr5.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr5.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr6.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr6.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr7.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 47, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr7.String(), ProposalId: 88, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr8.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr8.String(), ProposalId: 47, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr8.String(), ProposalId: 88, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + } + + s.ReqOKSetParams(expected.Params) + s.ReqOKAddPermSanct("addr1, addr2, addr3, addr4, addr5, addr6, addr7, addr8", addr1, addr2, addr3, addr4, addr5, addr6, addr7, addr8) + s.ReqOKAddTempSanct(1, "addr1, addr5", addr1, addr5) + s.ReqOKAddTempUnsanct(1, "addr2, addr6", addr2, addr6) + s.ReqOKAddTempSanct(2, "addr3, addr5, addr7", addr3, addr5, addr7) + s.ReqOKAddTempUnsanct(2, "addr4, addr6, addr8", addr4, addr6, addr8) + s.ReqOKAddTempUnsanct(3, "addr3", addr3) + s.ReqOKAddTempSanct(4, "addr4", addr4) + s.ReqOKAddTempSanct(47, "addr7, addr8", addr7, addr8) + s.ReqOKAddTempUnsanct(88, "addr7, addr8", addr7, addr8) + + s.ExportAndCheck(expected) + }) + + s.Run("with some entries removed", func() { + expected := &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("scoina", 54), sdk.NewInt64Coin("scoinb", 76)), + ImmediateUnsanctionMinDeposit: sanction.DefaultImmediateUnsanctionMinDeposit, + }, + SanctionedAddresses: []string{ + addr1.String(), + addr3.String(), + addr5.String(), + addr7.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr2.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr3.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr4.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr6.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr8.String(), ProposalId: 47, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr8.String(), ProposalId: 88, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + }, + } + + store := s.GetStore() + s.Require().NotPanics(func() { + s.Keeper.DeleteParam(store, keeper.ParamNameImmediateUnsanctionMinDeposit) + }, "deleting the ParamNameImmediateUnsanctionMinDeposit param entry") + // Note: Not using UnsanctionAddresses here since I want to keep the temp entries for these addrs. + s.Require().NotPanics(func() { + for _, addr := range []sdk.AccAddress{addr2, addr4, addr6, addr8} { + key := keeper.CreateSanctionedAddrKey(addr) + store.Delete(key) + } + }, "deleting sanctioned addr entries for addr2, addr4, addr6, addr8") + s.ReqOKDelAddrTemp("addr5, addr7", addr5, addr7) + s.ReqOKDelPropTemp(2) + + s.ExportAndCheck(expected) + }) +} + +func (s *GenesisTestSuite) TestKeeper_GetAllSanctionedAddresses() { + addr1 := sdk.AccAddress("1st_get_all_perm_address_in_test") + addr2 := sdk.AccAddress("2nd_get_all_perm_address_in_test") + addr3 := sdk.AccAddress("3rd_get_all_perm_address_in_test") + addr4 := sdk.AccAddress("4th_get_all_perm_address_in_test") + addr5 := sdk.AccAddress("5th_get_all_perm_address_in_test") + addr6 := sdk.AccAddress("6th_get_all_perm_address_in_test") + addr7 := sdk.AccAddress("7th_get_all_perm_address_in_test") + addr8 := sdk.AccAddress("8th_get_all_perm_address_in_test") + + // Add some temporary sanctions to help ensure they don't matter here. + s.ReqOKAddTempSanct(1, "addr1, addr5", addr1, addr5) + s.ReqOKAddTempUnsanct(1, "addr2, addr6", addr2, addr6) + s.ReqOKAddTempSanct(2, "addr1, addr3, addr5, addr7", addr1, addr3, addr5, addr7) + s.ReqOKAddTempUnsanct(2, "addr2, addr4, addr6, addr8", addr2, addr4, addr6, addr8) + s.ReqOKAddTempUnsanct(3, "addr3", addr3) + s.ReqOKAddTempSanct(4, "addr4", addr4) + s.ReqOKAddTempSanct(47, "addr7, addr8", addr7, addr8) + s.ReqOKAddTempUnsanct(88, "addr7, addr8", addr7, addr8) + // Then delete a few in the really off chance that matters in here. + s.ReqOKDelAddrTemp("addr1", addr1) + s.ReqOKDelAddrTemp("addr2", addr2) + s.ReqOKDelPropTemp(2) + + s.Run("no entries", func() { + var actual []string + testFunc := func() { + actual = s.Keeper.GetAllSanctionedAddresses(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllSanctionedAddresses") + s.Assert().Empty(actual, "GetAllSanctionedAddresses result") + }) + + s.Run("one entry", func() { + expected := []string{addr2.String()} + s.ReqOKAddPermSanct("addr2", addr2) + + var actual []string + testFunc := func() { + actual = s.Keeper.GetAllSanctionedAddresses(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllSanctionedAddresses") + s.Assert().Equal(expected, actual, "GetAllSanctionedAddresses result") + }) + + s.Run("several entries", func() { + expected := []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + addr7.String(), + addr8.String(), + } + // Note: addr2 was sanctioned in the "one entry" test. + s.ReqOKAddPermSanct("addr1, addr3, addr4, addr5, addr6, addr7, addr8", addr1, addr3, addr4, addr5, addr6, addr7, addr8) + + var actual []string + testFunc := func() { + actual = s.Keeper.GetAllSanctionedAddresses(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllSanctionedAddresses") + s.Assert().Equal(expected, actual, "GetAllSanctionedAddresses result") + }) + + s.Run("after some unsanctions", func() { + // Note: all addrs should be sanctioned by now. Unsanction the odd ones. + expected := []string{ + addr2.String(), + addr4.String(), + addr6.String(), + addr8.String(), + } + + s.ReqOKAddPermUnsanct("addr1, addr3, addr5, addr7", addr1, addr3, addr5, addr7) + + var actual []string + testFunc := func() { + actual = s.Keeper.GetAllSanctionedAddresses(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllSanctionedAddresses") + s.Assert().Equal(expected, actual, "GetAllSanctionedAddresses result") + }) +} + +func (s *GenesisTestSuite) TestKeeper_GetAllTemporaryEntries() { + addr1 := sdk.AccAddress("1st_get_all_temp_address_in_test") + addr2 := sdk.AccAddress("2nd_get_all_temp_address_in_test") + addr3 := sdk.AccAddress("3rd_get_all_temp_address_in_test") + addr4 := sdk.AccAddress("4th_get_all_temp_address_in_test") + addr5 := sdk.AccAddress("5th_get_all_temp_address_in_test") + addr6 := sdk.AccAddress("6th_get_all_temp_address_in_test") + addr7 := sdk.AccAddress("7th_get_all_temp_address_in_test") + addr8 := sdk.AccAddress("8th_get_all_temp_address_in_test") + + // Set permanent sanctions for the even addresses to help ensure they don't matter here. + s.ReqOKAddPermSanct("addr2, addr4, addr6, addr8", addr2, addr4, addr6, addr8) + // Unsanction the odd addrs just in case in the really off chance it does weird things in here. + s.ReqOKAddPermUnsanct("addr1, addr3, addr5, addr7", addr1, addr3, addr5, addr7) + + s.Run("no entries", func() { + var actual []*sanction.TemporaryEntry + testFunc := func() { + actual = s.Keeper.GetAllTemporaryEntries(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllTemporaryEntries") + s.Assert().Empty(actual, "GetAllTemporaryEntries result") + }) + + s.Run("one entry", func() { + expected := []*sanction.TemporaryEntry{ + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + } + s.ReqOKAddTempSanct(2, "addr2", addr2) + + var actual []*sanction.TemporaryEntry + testFunc := func() { + actual = s.Keeper.GetAllTemporaryEntries(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllTemporaryEntries") + s.Assert().Equal(expected, actual, "GetAllTemporaryEntries result") + }) + + s.Run("several entries", func() { + // Setup + // addr1: sanctioned prop 1, unsanctioned prop 2, sanctioned prop 3 + // addr2: unsanctioned prop 1, sanctioned prop 2, unsanctioned prop 3 + // addr3: sanctioned prop 1 + // addr4: unsanctioned prop 1 + // addr5: sanctioned props 2, 3, 4, 6 + // addr6: unsanctioned props 3, 4, 5 + // addr7: sanctioned prop 10 + // addr8: unsanctioned prop 15 + // I.e.: + // Prop 1: sanct: addr1, addr3; unsanct: addr2, addr4 + // Prop 2: sanct: addr2, addr5; unsanct: addr1 + // Prop 3: sanct: addr1, addr5; unsanct: addr2, addr6 + // Prop 4: sanct: addr5; unsanct: addr6 + // Prop 5: unsanct: addr6 + // Prop 6: sanct: addr5 + // Prop 10: sanct: addr7; + // Prop 15: unsanct: addr8 + + expected := []*sanction.TemporaryEntry{ + {Address: addr1.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr1.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr1.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr2.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr2.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr3.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr4.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr5.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr5.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr5.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr5.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr6.String(), ProposalId: 3, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr6.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr6.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr7.String(), ProposalId: 10, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr8.String(), ProposalId: 15, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + } + + s.ReqOKAddTempSanct(1, "addr1, addr3", addr1, addr3) + s.ReqOKAddTempUnsanct(1, "addr2, addr4", addr2, addr4) + // Note that the prop 2, addr2 sanction was already set in the "one entry" test. + s.ReqOKAddTempSanct(2, "addr5", addr5) + s.ReqOKAddTempUnsanct(2, "addr1", addr1) + s.ReqOKAddTempSanct(3, "addr1, addr5", addr1, addr5) + s.ReqOKAddTempUnsanct(3, "addr2, addr6", addr2, addr6) + s.ReqOKAddTempSanct(4, "addr5", addr5) + s.ReqOKAddTempUnsanct(4, "addr6", addr6) + s.ReqOKAddTempUnsanct(5, "addr6", addr6) + s.ReqOKAddTempSanct(6, "addr5", addr5) + s.ReqOKAddTempSanct(10, "addr7", addr7) + s.ReqOKAddTempUnsanct(15, "addr8", addr8) + + var actual []*sanction.TemporaryEntry + testFunc := func() { + actual = s.Keeper.GetAllTemporaryEntries(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllTemporaryEntries") + s.Assert().Equal(expected, actual, "GetAllTemporaryEntries result") + }) + + s.Run("after some entries are deleted", func() { + // Note: There should several entries by now. Delete all the addr1 entries and gov prop 3 entries. + expected := []*sanction.TemporaryEntry{ + {Address: addr2.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr2.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr3.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr4.String(), ProposalId: 1, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr5.String(), ProposalId: 2, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr5.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_SANCTIONED}, + {Address: addr5.String(), ProposalId: 6, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr6.String(), ProposalId: 4, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + {Address: addr6.String(), ProposalId: 5, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + + {Address: addr7.String(), ProposalId: 10, Status: sanction.TEMP_STATUS_SANCTIONED}, + + {Address: addr8.String(), ProposalId: 15, Status: sanction.TEMP_STATUS_UNSANCTIONED}, + } + + s.ReqOKDelAddrTemp("addr1", addr1) + s.ReqOKDelPropTemp(3) + + var actual []*sanction.TemporaryEntry + testFunc := func() { + actual = s.Keeper.GetAllTemporaryEntries(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetAllTemporaryEntries") + s.Assert().Equal(expected, actual, "GetAllTemporaryEntries result") + }) +} diff --git a/x/sanction/keeper/gov_hooks.go b/x/sanction/keeper/gov_hooks.go new file mode 100644 index 0000000000..e41d644300 --- /dev/null +++ b/x/sanction/keeper/gov_hooks.go @@ -0,0 +1,160 @@ +package keeper + +import ( + "context" + "fmt" + + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + + "github.com/provenance-io/provenance/x/sanction" +) + +var _ govtypes.GovHooks = Keeper{} + +// AfterProposalSubmission is called after proposal is submitted. +// If there's enough deposit, temporary entries are created. +func (k Keeper) AfterProposalSubmission(ctx context.Context, proposalID uint64) error { + return k.proposalGovHook(ctx, proposalID) +} + +// AfterProposalDeposit is called after a deposit is made. +// If there's enough deposit, temporary entries are created. +func (k Keeper) AfterProposalDeposit(ctx context.Context, proposalID uint64, _ sdk.AccAddress) error { + return k.proposalGovHook(ctx, proposalID) +} + +// AfterProposalVote is called after a vote on a proposal is cast. This one does nothing. +func (k Keeper) AfterProposalVote(_ context.Context, _ uint64, _ sdk.AccAddress) error { + return nil +} + +// AfterProposalFailedMinDeposit is called when proposal fails to reach min deposit. +// Cleans up any possible temporary entries. +func (k Keeper) AfterProposalFailedMinDeposit(ctx context.Context, proposalID uint64) error { + return k.proposalGovHook(ctx, proposalID) +} + +// AfterProposalVotingPeriodEnded is called when proposal's finishes it's voting period. +// Cleans up temporary entries. +func (k Keeper) AfterProposalVotingPeriodEnded(ctx context.Context, proposalID uint64) error { + return k.proposalGovHook(ctx, proposalID) +} + +const ( + // propStatusNotFound is a governance module ProposalStatus (an enum) used in here to indicate that a proposal wasn't found. + propStatusNotFound = govv1.ProposalStatus(-100) +) + +// proposalGovHook does what needs to be done in here with the proposal in question. +// What needs to be done always depends on the status of the proposal. +// So while some hooks are probably only called when a proposal has a certain status, it's safer to just always do this. +func (k Keeper) proposalGovHook(goCtx context.Context, proposalID uint64) error { + ctx := sdk.UnwrapSDKContext(goCtx) + // A proposal can sometimes be deleted. In such cases, we still need to do some stuff. + propStatus := propStatusNotFound + proposal := k.govKeeper.GetProposal(ctx, proposalID) + if proposal != nil { + propStatus = proposal.Status + } + + switch propStatus { + case govv1.StatusDepositPeriod, govv1.StatusVotingPeriod: + for _, msg := range proposal.Messages { + if k.isModuleGovHooksMsgURL(msg.TypeUrl) { + // If the deposit is over the (non-zero) minimum, add temporary entries for the addrs. + makeTemps := false + minDeposit := k.getImmediateMinDeposit(ctx, msg) + if !minDeposit.IsZero() { + deposit := sdk.Coins(proposal.TotalDeposit) + _, hasNeg := deposit.SafeSub(minDeposit...) + if !hasNeg { + makeTemps = true + } + } + if makeTemps { + addrs := k.getMsgAddresses(msg) + var err error + switch msg.TypeUrl { + case k.msgSanctionTypeURL: + err = k.AddTemporarySanction(ctx, proposalID, addrs...) + case k.msgUnsanctionTypeURL: + err = k.AddTemporaryUnsanction(ctx, proposalID, addrs...) + } + if err != nil { + panic(err) + } + } + } + } + case govv1.StatusRejected, govv1.StatusFailed, propStatusNotFound: + // Delete only the temporary entries that were associated with this proposal. + // We do this for all proposals, regardless of whether they have a sanction or unsanction message. + // A) When the proposal isn't found, there's no way we can know what messages it had. + // B) This code is simpler than trying to not call DeleteGovPropTempEntries when not needed. + // C) The extra processing from calling DeleteGovPropTempEntries is probably on par with what's needed + // to not always call it. + // D) There's no risk of this deleting anything that shouldn't be deleted. + k.DeleteGovPropTempEntries(ctx, proposalID) + case govv1.StatusPassed: + // Nothing to do. The processing of the proposal message does everything that's needed. + default: + return fmt.Errorf("invalid governance proposal status: [%s]", proposal.Status) + } + + return nil +} + +// isModuleGovHooksMsgURL returns true if the provided URL is one that these gov hooks care about. +func (k Keeper) isModuleGovHooksMsgURL(url string) bool { + // Note: We don't need to care about one of ours being wrapped in a MsgExecLegacyContent, + // because ours don't implement the old v1beta1.Content interface, and thus can't be wrapped as such. + return url == k.msgSanctionTypeURL || url == k.msgUnsanctionTypeURL +} + +// getMsgAddresses gets the list of addresses from the provided message if it's one we care about. +// If it's a type we don't care about, returns nil. +func (k Keeper) getMsgAddresses(msg *codectypes.Any) []sdk.AccAddress { + if msg == nil { + return nil + } + switch msg.TypeUrl { + case k.msgSanctionTypeURL: + var msgSanction *sanction.MsgSanction + if err := k.cdc.UnpackAny(msg, &msgSanction); err != nil { + panic(err) + } + addrs, err := toAccAddrs(msgSanction.Addresses) + if err != nil { + panic(err) + } + return addrs + case k.msgUnsanctionTypeURL: + var msgUnsanction *sanction.MsgUnsanction + if err := k.cdc.UnpackAny(msg, &msgUnsanction); err != nil { + panic(err) + } + addrs, err := toAccAddrs(msgUnsanction.Addresses) + if err != nil { + panic(err) + } + return addrs + } + return nil +} + +// getImmediateMinDeposit gets the minimum deposit for immediate action to be taken on the proposal msg. +// If the msg isn't of a type we care about, returns empty coins. +func (k Keeper) getImmediateMinDeposit(ctx sdk.Context, msg *codectypes.Any) sdk.Coins { + if msg != nil { + switch msg.TypeUrl { + case k.msgSanctionTypeURL: + return k.GetImmediateSanctionMinDeposit(ctx) + case k.msgUnsanctionTypeURL: + return k.GetImmediateUnsanctionMinDeposit(ctx) + } + } + return sdk.Coins{} +} diff --git a/x/sanction/keeper/gov_hooks_test.go b/x/sanction/keeper/gov_hooks_test.go new file mode 100644 index 0000000000..8505213167 --- /dev/null +++ b/x/sanction/keeper/gov_hooks_test.go @@ -0,0 +1,1581 @@ +package keeper_test + +import ( + "fmt" + "strings" + "testing" + + "github.com/stretchr/testify/suite" + + sdkmath "cosmossdk.io/math" + + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" +) + +type GovHooksTestSuite struct { + BaseTestSuite +} + +func (s *GovHooksTestSuite) SetupTest() { + s.BaseSetup() +} + +func TestGovHooksTestSuite(t *testing.T) { + suite.Run(t, new(GovHooksTestSuite)) +} + +func (s *GovHooksTestSuite) TestKeeper_AfterProposalSubmission() { + // Since this just calls proposalGovHook, all we should test in here is + // that the proposalGovHook function was called for the given gov prop id. + // So just mock up the gov keeper to return a proposal of interest, but with a bad status. + // Hopefully the panic message that causes is unique to the proposalGovHook function. + // We test that the call panics with the expected message. + // We also test that GetProposal was called as expected. + + govPropID := uint64(3982) + s.GovKeeper.GetProposalReturns[govPropID] = govv1.Proposal{ + Id: govPropID, + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{"this addr doesn't matter"}, + Authority: "neither does this authority", + }), + }, + Status: 5555, + } + s.GovKeeper.GetProposalCalls = nil + + expErr := "invalid governance proposal status: [5555]" + var err error + testFunc := func() { + err = s.Keeper.AfterProposalSubmission(s.SdkCtx, govPropID) + } + s.Require().NotPanics(testFunc, "AfterProposalSubmission") + assertions.AssertErrorValue(s.T(), err, expErr, "AfterProposalSubmission error") + actualCalls := s.GovKeeper.GetProposalCalls + if s.Assert().Len(actualCalls, 1, "number of calls made to GetProposal") { + s.Assert().Equal(int(govPropID), int(actualCalls[0]), "the proposal requested to GetProposal") + } +} + +func (s *GovHooksTestSuite) TestKeeper_AfterProposalDeposit() { + // Since this just calls proposalGovHook, all we should test in here is + // that the proposalGovHook function was called for the given gov prop id. + // So just mock up the gov keeper to return a proposal of interest, but with a bad status. + // Hopefully the panic message that causes is unique to the proposalGovHook function. + // We test that the call panics with the expected message. + // We also test that GetProposal was called as expected. + + govPropID := uint64(5994) + s.GovKeeper.GetProposalReturns[govPropID] = govv1.Proposal{ + Id: govPropID, + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{"this addr doesn't matter"}, + Authority: "neither does this authority", + }), + }, + Status: 4434, + } + s.GovKeeper.GetProposalCalls = nil + + expErr := "invalid governance proposal status: [4434]" + var err error + testFunc := func() { + err = s.Keeper.AfterProposalDeposit(s.SdkCtx, govPropID, sdk.AccAddress("this doesn't matter")) + } + s.Require().NotPanics(testFunc, "AfterProposalDeposit") + assertions.AssertErrorValue(s.T(), err, expErr, "AfterProposalDeposit error") + actualCalls := s.GovKeeper.GetProposalCalls + if s.Assert().Len(actualCalls, 1, "number of calls made to GetProposal") { + s.Assert().Equal(int(govPropID), int(actualCalls[0]), "the proposal requested to GetProposal") + } +} + +func (s *GovHooksTestSuite) TestKeeper_AfterProposalVote() { + // This one shouldn't do anything. So again, set it up to panic like the others, + // but make sure it doesn't panic and that no calls were made to GetProposal + + govPropID := uint64(6370) + s.GovKeeper.GetProposalReturns[govPropID] = govv1.Proposal{ + Id: govPropID, + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{"this addr doesn't matter"}, + Authority: "neither does this authority", + }), + }, + Status: 2411, + } + s.GovKeeper.GetProposalCalls = nil + + testFunc := func() error { + return s.Keeper.AfterProposalVote(s.SdkCtx, govPropID, sdk.AccAddress("this doesn't matter either")) + } + assertions.AssertNotPanicsNoError(s.T(), testFunc, "AfterProposalVote") + actualCalls := s.GovKeeper.GetProposalCalls + s.Require().Nil(actualCalls, "calls made to GetProposal") +} + +func (s *GovHooksTestSuite) TestKeeper_AfterProposalFailedMinDeposit() { + // Since this just calls proposalGovHook, all we should test in here is + // that the proposalGovHook function was called for the given gov prop id. + // So just mock up the gov keeper to return a proposal of interest, but with a bad status. + // Hopefully the panic message that causes is unique to the proposalGovHook function. + // We test that the call panics with the expected message. + // We also test that GetProposal was called as expected. + + govPropID := uint64(2111) + s.GovKeeper.GetProposalReturns[govPropID] = govv1.Proposal{ + Id: govPropID, + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{"this addr doesn't matter"}, + Authority: "neither does this authority", + }), + }, + Status: 3275, + } + s.GovKeeper.GetProposalCalls = nil + + expErr := "invalid governance proposal status: [3275]" + var err error + testFunc := func() { + err = s.Keeper.AfterProposalFailedMinDeposit(s.SdkCtx, govPropID) + } + s.Require().NotPanics(testFunc, "AfterProposalFailedMinDeposit") + assertions.AssertErrorValue(s.T(), err, expErr, "AfterProposalFailedMinDeposit error") + actualCalls := s.GovKeeper.GetProposalCalls + if s.Assert().Len(actualCalls, 1, "number of calls made to GetProposal") { + s.Assert().Equal(int(govPropID), int(actualCalls[0]), "the proposal requested to GetProposal") + } +} + +func (s *GovHooksTestSuite) TestKeeper_AfterProposalVotingPeriodEnded() { + // Since this just calls proposalGovHook, all we should test in here is + // that the proposalGovHook function was called for the given gov prop id. + // So just mock up the gov keeper to return a proposal of interest, but with a bad status. + // Hopefully the panic message that causes is unique to the proposalGovHook function. + // We test that the call panics with the expected message. + // We also test that GetProposal was called as expected. + + govPropID := uint64(4041) + s.GovKeeper.GetProposalReturns[govPropID] = govv1.Proposal{ + Id: govPropID, + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{"this addr doesn't matter"}, + Authority: "neither does this authority", + }), + }, + Status: 99, + } + s.GovKeeper.GetProposalCalls = nil + + expErr := "invalid governance proposal status: [99]" + var err error + testFunc := func() { + err = s.Keeper.AfterProposalVotingPeriodEnded(s.SdkCtx, govPropID) + } + s.Require().NotPanics(testFunc, "AfterProposalVotingPeriodEnded") + assertions.AssertErrorValue(s.T(), err, expErr, "AfterProposalVotingPeriodEnded error") + actualCalls := s.GovKeeper.GetProposalCalls + if s.Assert().Len(actualCalls, 1, "number of calls made to GetProposal") { + s.Assert().Equal(int(govPropID), int(actualCalls[0]), "the proposal requested to GetProposal") + } +} + +func (s *GovHooksTestSuite) TestKeeper_proposalGovHook() { + // Make it easy to use a different proposal id for each test. + lastPropID := uint64(0) + nextPropID := func() uint64 { + lastPropID += 1 + return lastPropID + } + // When using lastPropID directly in test definition, things got out of sync. + // Basically, nextPropID was being called for all the tests before lastPropID was being used. + // Having it returned by a func like this fixed that though. + curPropID := func() uint64 { + return lastPropID + } + + addr1 := sdk.AccAddress("1st_hooks_test_addr") + addr2 := sdk.AccAddress("2nd_hooks_test_addr") + addr3 := sdk.AccAddress("3rd_hooks_test_addr") + addr4 := sdk.AccAddress("4th_hooks_test_addr") + addr5 := sdk.AccAddress("5th_hooks_test_addr") + addr6 := sdk.AccAddress("6th_hooks_test_addr") + + // nonEmptyState creates a new GenesisState with a few things in it. + nonEmptyState := func(govPropID uint64) *sanction.GenesisState { + return &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("nesanct", 17)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("neusanct", 23)), + }, + SanctionedAddresses: []string{addr3.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr4, govPropID+1, true), + newTempEntry(addr5, govPropID, true), + newTempEntry(addr6, govPropID, false), + newTempEntry(addr6, govPropID+2, true), + }, + } + } + // cleanupStateIni creates a new GenesisState with entries that are expected to be deleted during a test. + cleanupStateIni := func(govPropID uint64) *sanction.GenesisState { + return &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("nesanct", int64(govPropID-1))), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("neusanct", int64(govPropID+1))), + }, + SanctionedAddresses: []string{addr3.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, true), + newTempEntry(addr1, 50000, false), + newTempEntry(addr3, govPropID, false), + newTempEntry(addr4, govPropID, false), + newTempEntry(addr5, govPropID-1, false), + newTempEntry(addr5, govPropID, true), + newTempEntry(addr5, govPropID+1, true), + newTempEntry(addr6, govPropID-1, true), + newTempEntry(addr6, govPropID, true), + newTempEntry(addr6, govPropID+1, false), + }, + } + } + // cleanupStateExp creates a new GenesisState that is a cleanupStateIni, but without the entries expected to be deleted. + cleanupStateExp := func(govPropID uint64) *sanction.GenesisState { + return &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("nesanct", int64(govPropID-1))), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("neusanct", int64(govPropID+1))), + }, + SanctionedAddresses: []string{addr3.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, true), + newTempEntry(addr1, 50000, false), + newTempEntry(addr5, govPropID-1, false), + newTempEntry(addr5, govPropID+1, true), + newTempEntry(addr6, govPropID-1, true), + newTempEntry(addr6, govPropID+1, false), + }, + } + } + + // Create some Any wrapped messages for easier proposal definitions. + otherAny := s.NewAny(&govv1.MsgVote{ + ProposalId: 99887766, + Voter: "voter addr that should not matter", + Option: govv1.OptionAbstain, + }) + updateParamsAny := s.NewAny(&sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("ismdcoin", 59)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("iumdcoin", 86)), + }, + Authority: "yadda yadda", + }) + sanctionAny := s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr2.String()}, + Authority: "nospendy", + }) + unsanctionAny := s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr1.String(), addr3.String()}, + Authority: "spendyagainy", + }) + // Note: In normal operation, it shouldn't be possible to end up with a governance proposal + // containing a MsgExecLegacyContent sanction or unsanction; they don't implement Content. + legWrapSanctAny := s.NewAny(&govv1.MsgExecLegacyContent{ + Content: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr5.String(), addr6.String()}, + Authority: "notgonnadoit", + }), + Authority: "legacywrappingsanct", + }) + legWrapUnsanctAny := s.NewAny(&govv1.MsgExecLegacyContent{ + Content: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr4.String(), addr6.String()}, + Authority: "justignoreme", + }), + Authority: "legacywrappingunsanct", + }) + + // Define several proposal message sets to commonly use in tests. + messageSets := []struct { + name string + msgs []*codectypes.Any + boring bool // boring = true means none of the msgs should cause any changes. + }{ + {name: "sanction", msgs: []*codectypes.Any{sanctionAny}}, + {name: "unsanction", msgs: []*codectypes.Any{unsanctionAny}}, + {name: "other", msgs: []*codectypes.Any{otherAny}, boring: true}, + {name: "update params", msgs: []*codectypes.Any{updateParamsAny}, boring: true}, + {name: "legacy wrapped sanction", msgs: []*codectypes.Any{legWrapSanctAny}, boring: true}, + {name: "legacy wrapped unsanction", msgs: []*codectypes.Any{legWrapUnsanctAny}, boring: true}, + {name: "sanction unsanction", msgs: []*codectypes.Any{sanctionAny, unsanctionAny}}, + {name: "unsanction sanction", msgs: []*codectypes.Any{unsanctionAny, sanctionAny}}, + {name: "three ignorable messages", msgs: []*codectypes.Any{legWrapSanctAny, updateParamsAny, legWrapSanctAny}, boring: true}, + {name: "three messages sanction x x", msgs: []*codectypes.Any{sanctionAny, updateParamsAny, otherAny}}, + {name: "three messages unsanction x x", msgs: []*codectypes.Any{unsanctionAny, updateParamsAny, otherAny}}, + {name: "three messages x sanction x", msgs: []*codectypes.Any{otherAny, sanctionAny, legWrapUnsanctAny}}, + {name: "three messages x unsanction x", msgs: []*codectypes.Any{otherAny, unsanctionAny, legWrapUnsanctAny}}, + {name: "three message x x sanction", msgs: []*codectypes.Any{updateParamsAny, legWrapUnsanctAny, sanctionAny}}, + {name: "three message x x unsanction", msgs: []*codectypes.Any{updateParamsAny, legWrapSanctAny, unsanctionAny}}, + } + + type testCase struct { + name string + proposalID uint64 + iniState *sanction.GenesisState + proposal *govv1.Proposal + expState *sanction.GenesisState + expErr []string + } + + var tests []testCase + + // prop status unknown -> panic + for _, msgs := range messageSets { + tests = append(tests, testCase{ + name: "unknown prop status on " + msgs.name, + proposalID: nextPropID(), + iniState: nonEmptyState(curPropID()), + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: msgs.msgs, + Status: govv1.ProposalStatus(curPropID() + 5000), + }, + expState: nonEmptyState(curPropID()), + expErr: []string{fmt.Sprintf("invalid governance proposal status: [%d]", curPropID()+5000)}, + }) + } + + // prop status unspecified -> panic + for _, msgs := range messageSets { + tests = append(tests, testCase{ + name: "unspecified prop status on " + msgs.name, + proposalID: nextPropID(), + iniState: nonEmptyState(curPropID()), + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: msgs.msgs, + Status: govv1.ProposalStatus_PROPOSAL_STATUS_UNSPECIFIED, + }, + expState: nonEmptyState(curPropID()), + expErr: []string{"invalid governance proposal status: [PROPOSAL_STATUS_UNSPECIFIED]"}, + }) + } + + // prop passed -> nothing happens in any case. + for _, msgs := range messageSets { + tests = append(tests, testCase{ + name: "passed on " + msgs.name, + proposalID: nextPropID(), + iniState: nonEmptyState(curPropID()), + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: msgs.msgs, + Status: govv1.StatusPassed, + }, + expState: nonEmptyState(curPropID()), + }) + } + + // not found -> it's temp entries are deleted. No need to do this for each message set since there's no proposal. + tests = append(tests, testCase{ + name: "not found", + proposalID: nextPropID(), + iniState: cleanupStateIni(curPropID()), + proposal: nil, + expState: cleanupStateExp(curPropID()), + }) + + // prop rejected, failed -> it's temp entries are deleted. + for _, status := range []govv1.ProposalStatus{govv1.StatusRejected, govv1.StatusFailed} { + var baseName string + switch status { + case govv1.StatusRejected: + baseName = "rejected" + case govv1.StatusFailed: + baseName = "failed" + default: + s.FailNow("unhandled status in setup: %s", status) + } + for _, msgs := range messageSets { + tests = append(tests, testCase{ + name: baseName + " on " + msgs.name, + proposalID: nextPropID(), + iniState: cleanupStateIni(curPropID()), + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: msgs.msgs, + Status: status, + }, + expState: cleanupStateExp(curPropID()), + }) + } + } + + // prop status deposit period or voting period -> depends on the deposit + for _, status := range []govv1.ProposalStatus{govv1.StatusDepositPeriod, govv1.StatusVotingPeriod} { + var baseName string + switch status { + case govv1.StatusDepositPeriod: + baseName = "deposit period" + case govv1.StatusVotingPeriod: + baseName = "voting period" + default: + s.FailNow("unhandled status in setup: %s", status) + } + + // min deposit = 0 -> nothing happens + for _, msgs := range messageSets { + state := nonEmptyState(nextPropID()) + dep := sdk.Coins{} + for _, c := range state.Params.ImmediateSanctionMinDeposit.Add(state.Params.ImmediateUnsanctionMinDeposit...) { + dep = dep.Add(sdk.NewCoin(c.Denom, c.Amount.AddRaw(100))) + } + state.Params.ImmediateSanctionMinDeposit = nil + state.Params.ImmediateUnsanctionMinDeposit = nil + tests = append(tests, testCase{ + name: baseName + " min dep = 0 on " + msgs.name, + proposalID: curPropID(), + iniState: state, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: msgs.msgs, + Status: status, + TotalDeposit: dep, + }, + expState: state, + }) + } + + // deposit < min deposit -> nothing happens + for _, msgs := range messageSets { + state := nonEmptyState(nextPropID()) + dep := sdk.Coins{} + for _, c := range state.Params.ImmediateSanctionMinDeposit.Add(state.Params.ImmediateUnsanctionMinDeposit...) { + if c.Amount.GT(sdkmath.NewInt(1)) { + dep = dep.Add(sdk.NewCoin(c.Denom, c.Amount.SubRaw(1))) + } + } + tests = append(tests, testCase{ + name: baseName + " dep < min dep on " + msgs.name, + proposalID: curPropID(), + iniState: state, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: msgs.msgs, + Status: status, + TotalDeposit: dep, + }, + expState: state, + }) + } + + // deposit == min deposit or depoist > min deposit -> temp entries added for non-boring msgs. + mods := []struct { + name string + amount sdkmath.Int + }{ + {name: " deposit = min", amount: sdkmath.NewInt(0)}, + {name: " deposit > min", amount: sdkmath.NewInt(1)}, + } + for _, mod := range mods { + // Using all the messageSets for this would be to complex (just duplicating the code I'm trying to test). + // Plus, there's a couple extra cases to account for here. + // So define them verbosely here. + // The deposit will be added to each proposal before being added to the tests. + newTests := []testCase{ + { + name: baseName + mod.name + " on sanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + })}, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr6, curPropID(), false), + }, + }, + }, + { + name: baseName + mod.name + " on unsanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), true), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + })}, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), true), + }, + }, + }, + { + name: baseName + mod.name + " on sanction sanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + }), + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr3.String()}, + Authority: "whatever", + }), + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr3, curPropID(), true), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr6, curPropID(), false), + }, + }, + }, + { + name: baseName + mod.name + " on unsanction unsanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), true), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + }), + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr3.String()}, + Authority: "whatever", + }), + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr3, curPropID(), false), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), true), + }, + }, + }, + { + name: baseName + mod.name + " on sanction unsanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bunsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), true), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever1", + }), + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever2", + }), + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bunsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), true), + }, + }, + }, + { + name: baseName + mod.name + " on unsanction sanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bunsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), true), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever2", + }), + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever1", + }), + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bunsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), true), + }, + }, + }, + { + name: baseName + mod.name + " on sanction x", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + }), + updateParamsAny, + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr6, curPropID(), false), + }, + }, + }, + { + name: baseName + mod.name + " on x sanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + updateParamsAny, + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + }), + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("jsanct", int64(curPropID()))), + ImmediateUnsanctionMinDeposit: nil, + }, + SanctionedAddresses: []string{addr1.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr6, curPropID(), false), + }, + }, + }, + { + name: baseName + mod.name + " on unsanction x", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), true), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + }), + legWrapSanctAny, + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), true), + }, + }, + }, + { + name: baseName + mod.name + " on x unsanction", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), true), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + otherAny, + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + }), + }, + Status: status, + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("junsanct", int64(curPropID()))), + }, + SanctionedAddresses: []string{addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), true), + }, + }, + }, + } + + for _, tc := range newTests { + dep := sdk.Coins{} + for _, c := range tc.iniState.Params.ImmediateSanctionMinDeposit.Add(tc.iniState.Params.ImmediateUnsanctionMinDeposit...) { + dep = dep.Add(sdk.NewCoin(c.Denom, c.Amount.Add(mod.amount))) + } + tc.proposal.TotalDeposit = dep + tests = append(tests, tc) + } + + // Now add all the boring message sets since they shouldn't do anything. + for _, msgs := range messageSets { + if msgs.boring { + state := nonEmptyState(nextPropID()) + dep := sdk.Coins{} + for _, c := range state.Params.ImmediateSanctionMinDeposit.Add(state.Params.ImmediateUnsanctionMinDeposit...) { + dep = dep.Add(sdk.NewCoin(c.Denom, c.Amount.Add(mod.amount))) + } + tests = append(tests, testCase{ + name: baseName + mod.name + " on " + msgs.name, + proposalID: curPropID(), + iniState: state, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: msgs.msgs, + Status: status, + TotalDeposit: dep, + }, + expState: state, + }) + } + } + } + + // A few cases where the deposit is enough for one message but not another. + // only enough deposit for sanction, sanction unsanction + tests = append(tests, testCase{ + name: baseName + " sanct < dep < unsanct on sanction unsanction ", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bothcoin", 5)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bothcoin", 6)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + }), + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + }), + }, + Status: status, + TotalDeposit: sdk.NewCoins(sdk.NewInt64Coin("bothcoin", 5)), + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bothcoin", 5)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bothcoin", 6)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr6, curPropID(), false), + }, + }, + }) + // only enough deposit for sanction, unsanction sanction + tests = append(tests, testCase{ + name: baseName + " sanct < dep < unsanct on unsanction sanction ", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twocoin", 5)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twocoin", 6)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + }), + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + }), + }, + Status: status, + TotalDeposit: sdk.NewCoins(sdk.NewInt64Coin("twocoin", 5)), + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twocoin", 5)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twocoin", 6)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, curPropID(), true), + newTempEntry(addr4, curPropID(), true), + newTempEntry(addr6, curPropID(), false), + }, + }, + }) + // only enough deposit for unsanction, sanction unsanction + tests = append(tests, testCase{ + name: baseName + " unsanct < dep < sanct on sanction unsanction ", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twincoin", 6)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twincoin", 5)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + }), + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + }), + }, + Status: status, + TotalDeposit: sdk.NewCoins(sdk.NewInt64Coin("twincoin", 5)), + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twincoin", 6)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("twincoin", 5)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), false), + }, + }, + }) + // only enough deposit for unsanction, unsanction sanction + tests = append(tests, testCase{ + name: baseName + " unsanct < dep < sanct on unsanction sanction ", + proposalID: nextPropID(), + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("duocoin", 6)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("duocoin", 5)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr6, curPropID(), false), + }, + }, + proposal: &govv1.Proposal{ + Id: curPropID(), + Messages: []*codectypes.Any{ + s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr2.String(), addr5.String()}, + Authority: "whatever", + }), + s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String(), addr4.String()}, + Authority: "whatever", + }), + }, + Status: status, + TotalDeposit: sdk.NewCoins(sdk.NewInt64Coin("duocoin", 5)), + }, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("duocoin", 6)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("duocoin", 5)), + }, + SanctionedAddresses: []string{addr1.String(), addr2.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, curPropID(), false), + newTempEntry(addr5, curPropID(), false), + newTempEntry(addr6, curPropID(), false), + }, + }, + }) + } + + // sanity check on tests names since there's probably a lot of copy/pasting being done in here. + names := map[string]bool{} + for _, tc := range tests { + if names[tc.name] { + s.FailNow("test name duplicated: " + tc.name) + } + names[tc.name] = true + } + + // Finally.... run the tests. + for i, tc := range tests { + // Including the index in the name since a) most names are from concatenation, and + // b) so it's easier to change the loop to tests[5:6] to isolate and troubleshoot a single test of interest. + s.Run(fmt.Sprintf("%03d %s", i, tc.name), func() { + s.ClearState() + if tc.iniState != nil { + s.Require().NotPanics(func() { + s.Keeper.InitGenesis(s.SdkCtx, tc.iniState) + }, "InitGenesis") + } + + s.GovKeeper.GetProposalCalls = nil + if tc.proposal != nil { + s.GovKeeper.GetProposalReturns[tc.proposal.Id] = *tc.proposal + } + + var err error + testFunc := func() { + err = s.Keeper.ProposalGovHook(s.SdkCtx, tc.proposalID) + } + s.Require().NotPanics(testFunc, "proposalGovHook(%d)", tc.proposalID) + assertions.AssertErrorContents(s.T(), err, tc.expErr, "proposalGovHook(%d) error", tc.proposalID) + + getPropCalls := s.GovKeeper.GetProposalCalls + if s.Assert().Len(getPropCalls, 1, "number of calls made to GetProposal") { + // doing it this way because a failure message from an .Equal on two []uint64 slices shows + // the values in hex. Since they're decimal in test definition, this is just easier. + s.Assert().Equal(int(tc.proposalID), int(getPropCalls[0]), "gov prop id provided to GetProposal") + } + + if tc.expState != nil { + s.ExportAndCheck(tc.expState) + } + }) + } +} + +func (s *GovHooksTestSuite) TestKeeper_isModuleGovHooksMsgURL() { + tests := []struct { + url string + exp bool + }{ + {exp: true, url: sdk.MsgTypeURL(&sanction.MsgSanction{})}, + {exp: true, url: sdk.MsgTypeURL(&sanction.MsgUnsanction{})}, + {exp: false, url: ""}, + {exp: false, url: " "}, + {exp: false, url: "something random"}, + {exp: false, url: sdk.MsgTypeURL(&sanction.MsgUpdateParams{})}, + {exp: false, url: sdk.MsgTypeURL(&govv1.MsgExecLegacyContent{})}, + {exp: false, url: "cosmos.sanction.v1beta1.MsgSanction"}, + {exp: false, url: "/cosmos.sanction.v1beta1.MsgSanctio"}, + {exp: false, url: "/cosmos.sanction.v1beta1.MsgSanction "}, + {exp: false, url: " /cosmos.sanction.v1beta1.MsgSanction"}, + {exp: false, url: "/cosmos.sanction.v1beta1.MsgSanction2"}, + } + + for _, tc := range tests { + name := tc.url + if name == "" { + name = "empty" + } + if strings.TrimSpace(name) == "" { + name = fmt.Sprintf("spaces x %d", len(name)) + } + s.Run(name, func() { + var actual bool + testFunc := func() { + actual = s.Keeper.IsModuleGovHooksMsgURL(tc.url) + } + s.Require().NotPanics(testFunc, "isModuleGovHooksMsgURL(%q)", tc.url) + s.Assert().Equal(tc.exp, actual, "isModuleGovHooksMsgURL(%q) result", tc.url) + }) + } +} + +func (s *GovHooksTestSuite) TestKeeper_getMsgAddresses() { + addr1 := sdk.AccAddress("1_good_addr_for_test") + addr2 := sdk.AccAddress("2_good_addr_for_test") + addr3 := sdk.AccAddress("3_good_addr_for_test") + addr4 := sdk.AccAddress("4_good_addr_for_test") + addr5 := sdk.AccAddress("5_good_addr_for_test") + addr6 := sdk.AccAddress("6_good_addr_for_test") + + tests := []struct { + name string + msg *codectypes.Any + exp []sdk.AccAddress + expPanic []string + }{ + // Tests for things outside the switch. + { + name: "nil", + msg: nil, + exp: nil, + }, + { + name: "type url is empty but content is MsgSanction", + msg: s.CustomAny(nil, &sanction.MsgSanction{ + Addresses: []string{addr1.String()}, + Authority: "whatever", + }), + exp: nil, + }, + { + name: "type url is empty but content is MsgUnsanction", + msg: s.CustomAny(nil, &sanction.MsgUnsanction{ + Addresses: []string{addr1.String()}, + Authority: "whatever", + }), + exp: nil, + }, + { + name: "MsgUpdateParams", + msg: s.NewAny(&sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("pcoin", 1)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("pcoin", 2)), + }, + Authority: "whatever", + }), + exp: nil, + }, + { + name: "MsgExecLegacyContent with a MsgSanction in it", + msg: s.NewAny(&govv1.MsgExecLegacyContent{ + Content: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String()}, + Authority: "whatever2", + }), + Authority: "whatever", + }), + exp: nil, + }, + { + name: "MsgExecLegacyContent with a MsgUnsanction in it", + msg: s.NewAny(&govv1.MsgExecLegacyContent{ + Content: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr1.String()}, + Authority: "whatever2", + }), + Authority: "whatever", + }), + exp: nil, + }, + + // Tests for the MsgSanction case. + { + name: "MsgSanction nil addrs", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: nil, + Authority: "whatever", + }), + exp: []sdk.AccAddress{}, + }, + { + name: "MsgSanction empty addrs", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{}, + Authority: "whatever", + }), + exp: []sdk.AccAddress{}, + }, + { + name: "MsgSanction one addr good", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{addr1.String()}, + Authority: "whatever", + }), + exp: []sdk.AccAddress{addr1}, + }, + { + name: "MsgSanction one addr bad", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{"this1isnotgood"}, + Authority: "whatever", + }), + expPanic: []string{"invalid address[0]", "decoding bech32 failed"}, + }, + { + name: "MsgSanction six addrs all good", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: "whatever", + }), + exp: []sdk.AccAddress{addr1, addr2, addr3, addr4, addr5, addr6}, + }, + { + name: "MsgSanction six addrs bad xxxx", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{ + "this1isalsobad", + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: "whatever", + }), + expPanic: []string{"invalid address[0]", "decoding bech32 failed"}, + }, + { + name: "MsgSanction six addrs bad third", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + "this1isthethirdbadone", + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: "whatever", + }), + expPanic: []string{"invalid address[2]", "decoding bech32 failed"}, + }, + { + name: "MsgSanction six addrs bad sixth", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + "another1thatisnotgood", + }, + Authority: "whatever", + }), + expPanic: []string{"invalid address[5]", "decoding bech32 failed"}, + }, + { + name: "type is MsgSanction but content is not", + msg: s.CustomAny(&sanction.MsgSanction{}, &govv1.MsgVote{ + ProposalId: 5, + Voter: addr1.String(), + Option: govv1.OptionNo, + Metadata: "I do not know what is going on", + }), + expPanic: []string{"no registered implementations of type *sanction.MsgSanction"}, + }, + + // Tests for the MsgUnsanction case. + { + name: "MsgUnsanction nil addrs", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: nil, + Authority: "whatever", + }), + exp: []sdk.AccAddress{}, + }, + { + name: "MsgUnsanction empty addrs", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{}, + Authority: "whatever", + }), + exp: []sdk.AccAddress{}, + }, + { + name: "MsgUnsanction one addr good", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{addr1.String()}, + Authority: "whatever", + }), + exp: []sdk.AccAddress{addr1}, + }, + { + name: "MsgUnsanction one addr bad", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{"this1isnotgood"}, + Authority: "whatever", + }), + expPanic: []string{"invalid address[0]", "decoding bech32 failed"}, + }, + { + name: "MsgUnsanction six addrs all good", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: "whatever", + }), + exp: []sdk.AccAddress{addr1, addr2, addr3, addr4, addr5, addr6}, + }, + { + name: "MsgUnsanction six addrs bad xxxx", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{ + "this1isalsobad", + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: "whatever", + }), + expPanic: []string{"invalid address[0]", "decoding bech32 failed"}, + }, + { + name: "MsgUnsanction six addrs bad third", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + "this1isthethirdbadone", + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: "whatever", + }), + expPanic: []string{"invalid address[2]", "decoding bech32 failed"}, + }, + { + name: "MsgUnsanction six addrs bad sixth", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + "another1thatisnotgood", + }, + Authority: "whatever", + }), + expPanic: []string{"invalid address[5]", "decoding bech32 failed"}, + }, + { + name: "type is MsgUnsanction but content is not", + msg: s.CustomAny(&sanction.MsgUnsanction{}, &govv1.MsgVote{ + ProposalId: 5, + Voter: addr1.String(), + Option: govv1.OptionNo, + Metadata: "I do not know what is going on", + }), + expPanic: []string{"no registered implementations of type *sanction.MsgUnsanction"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var actual []sdk.AccAddress + testFunc := func() { + actual = s.Keeper.GetMsgAddresses(tc.msg) + } + assertions.AssertPanicContents(s.T(), testFunc, tc.expPanic, "getMsgAddresses") + s.Assert().Equal(tc.exp, actual, "getMsgAddresses result") + }) + } +} + +func (s *GovHooksTestSuite) TestKeeper_getImmediateMinDeposit() { + origSanctMin := sanction.DefaultImmediateSanctionMinDeposit + origUnsanctMin := sanction.DefaultImmediateUnsanctionMinDeposit + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origSanctMin + sanction.DefaultImmediateUnsanctionMinDeposit = origUnsanctMin + }() + sanction.DefaultImmediateSanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("dsanct", 3)) + sanction.DefaultImmediateUnsanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("dunsanct", 7)) + + paramSanctMin := sdk.NewCoins(sdk.NewInt64Coin("psanct", 5)) + paramUnsanctMin := sdk.NewCoins(sdk.NewInt64Coin("punsanct", 10)) + + tests := []struct { + name string + msg *codectypes.Any + exp sdk.Coins // expected for either case. + expd sdk.Coins // expected when getting from defaults. + expp sdk.Coins // expected when getting from params. + }{ + { + name: "nil", + msg: nil, + exp: sdk.Coins{}, + }, + { + name: "MsgSanction", + msg: s.NewAny(&sanction.MsgSanction{ + Addresses: nil, + Authority: "whatever", + }), + expd: sanction.DefaultImmediateSanctionMinDeposit, + expp: paramSanctMin, + }, + { + name: "MsgUnsanction", + msg: s.NewAny(&sanction.MsgUnsanction{ + Addresses: nil, + Authority: "whatever", + }), + expd: sanction.DefaultImmediateUnsanctionMinDeposit, + expp: paramUnsanctMin, + }, + { + name: "MsgExecLegacyContent with a MsgSanction", + msg: s.NewAny(&govv1.MsgExecLegacyContent{ + Content: s.NewAny(&sanction.MsgSanction{ + Addresses: []string{"some dumb addr", "another unsavory addr"}, + Authority: "whatever2", + }), + Authority: "whatever", + }), + exp: sdk.Coins{}, + }, + { + name: "MsgExecLegacyContent with a MsgUnsanction", + msg: s.NewAny(&govv1.MsgExecLegacyContent{ + Content: s.NewAny(&sanction.MsgUnsanction{ + Addresses: []string{"some dumb addr", "another unsavory addr"}, + Authority: "whatever2", + }), + Authority: "whatever", + }), + exp: sdk.Coins{}, + }, + { + name: "MsgUpdateParams", + msg: s.NewAny(&sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("qcoin", 72)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("qcoin", 91)), + }, + Authority: "whatever", + }), + exp: sdk.Coins{}, + }, + } + + // Delete the params so that the defaults are used. + s.RequireNotPanicsNoError(func() error { + return s.Keeper.SetParams(s.SdkCtx, nil) + }, "SetParams(nil)") + + for _, tc := range tests { + s.Run(tc.name+" from defaults", func() { + expected := tc.expd + if expected == nil { + expected = tc.exp + } + var actual sdk.Coins + testFunc := func() { + actual = s.Keeper.ImmediateMinDeposit(s.SdkCtx, tc.msg) + } + s.Require().NotPanics(testFunc, "getImmediateMinDeposit") + s.Assert().Equal(expected, actual, "getImmediateMinDeposit result") + }) + } + + // Now, set the params appropriately. + s.RequireNotPanicsNoError(func() error { + return s.Keeper.SetParams(s.SdkCtx, &sanction.Params{ + ImmediateSanctionMinDeposit: paramSanctMin, + ImmediateUnsanctionMinDeposit: paramUnsanctMin, + }) + }, "SetParams with values") + + for _, tc := range tests { + s.Run(tc.name+" from params", func() { + expected := tc.expp + if expected == nil { + expected = tc.exp + } + var actual sdk.Coins + testFunc := func() { + actual = s.Keeper.ImmediateMinDeposit(s.SdkCtx, tc.msg) + } + s.Require().NotPanics(testFunc, "getImmediateMinDeposit") + s.Assert().Equal(expected, actual, "getImmediateMinDeposit result") + }) + } +} diff --git a/x/sanction/keeper/gov_keeper.go b/x/sanction/keeper/gov_keeper.go new file mode 100644 index 0000000000..d08bc56250 --- /dev/null +++ b/x/sanction/keeper/gov_keeper.go @@ -0,0 +1,27 @@ +package keeper + +import ( + "context" + + govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" +) + +// A WrappedGovKeeper implements the sanction.GovKeeper interface, allowing for +// mocking of some of the stuff that the gov keeper keeps in fields now. +type WrappedGovKeeper struct { + Keeper *govkeeper.Keeper +} + +// WrapGovKeeper creates a new WrappedGovKeeper around the provided keeper. +func WrapGovKeeper(keeper *govkeeper.Keeper) *WrappedGovKeeper { + return &WrappedGovKeeper{Keeper: keeper} +} + +func (w WrappedGovKeeper) GetProposal(ctx context.Context, propID uint64) *govv1.Proposal { + prop, err := w.Keeper.Proposals.Get(ctx, propID) + if err != nil { + return nil + } + return &prop +} diff --git a/x/sanction/keeper/grpc_query.go b/x/sanction/keeper/grpc_query.go new file mode 100644 index 0000000000..6c0ce756f6 --- /dev/null +++ b/x/sanction/keeper/grpc_query.go @@ -0,0 +1,102 @@ +package keeper + +import ( + "context" + + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/query" + + "github.com/provenance-io/provenance/x/sanction" +) + +var _ sanction.QueryServer = Keeper{} + +func (k Keeper) IsSanctioned(goCtx context.Context, req *sanction.QueryIsSanctionedRequest) (*sanction.QueryIsSanctionedResponse, error) { + if req == nil { + return nil, status.Error(codes.InvalidArgument, "empty request") + } + if len(req.Address) == 0 { + return nil, status.Error(codes.InvalidArgument, "address cannot be empty") + } + + addr, err := sdk.AccAddressFromBech32(req.Address) + if err != nil { + return nil, status.Errorf(codes.InvalidArgument, "invalid address: %s", err.Error()) + } + + resp := &sanction.QueryIsSanctionedResponse{} + resp.IsSanctioned = k.IsSanctionedAddr(goCtx, addr) + return resp, nil +} + +func (k Keeper) SanctionedAddresses(goCtx context.Context, req *sanction.QuerySanctionedAddressesRequest) (*sanction.QuerySanctionedAddressesResponse, error) { + var err error + var pagination *query.PageRequest + if req != nil { + pagination = req.Pagination + } + + resp := &sanction.QuerySanctionedAddressesResponse{} + ctx := sdk.UnwrapSDKContext(goCtx) + store := k.getSanctionedAddressPrefixStore(ctx) + resp.Pagination, err = query.Paginate( + store, pagination, + func(key, _ []byte) error { + addrBz, _ := ParseLengthPrefixedBz(key) + resp.Addresses = append(resp.Addresses, sdk.AccAddress(addrBz).String()) + return nil + }, + ) + if err != nil { + return nil, status.Error(codes.Internal, err.Error()) + } + + return resp, nil +} + +func (k Keeper) TemporaryEntries(goCtx context.Context, req *sanction.QueryTemporaryEntriesRequest) (*sanction.QueryTemporaryEntriesResponse, error) { + var err error + var pagination *query.PageRequest + var addr sdk.AccAddress + if req != nil { + pagination = req.Pagination + if len(req.Address) > 0 { + addr, err = sdk.AccAddressFromBech32(req.Address) + if err != nil { + return nil, status.Errorf(codes.InvalidArgument, "invalid address: %s", err.Error()) + } + } + } + + resp := &sanction.QueryTemporaryEntriesResponse{} + ctx := sdk.UnwrapSDKContext(goCtx) + store, pre := k.getTemporaryEntryPrefixStore(ctx, addr) + resp.Pagination, err = query.Paginate( + store, pagination, + func(key, value []byte) error { + kAddr, propID := ParseTemporaryKey(ConcatBz(pre, key)) + entry := sanction.TemporaryEntry{ + Address: kAddr.String(), + ProposalId: propID, + Status: ToTempStatus(value), + } + resp.Entries = append(resp.Entries, &entry) + return nil + }, + ) + if err != nil { + return nil, status.Error(codes.Internal, err.Error()) + } + + return resp, nil +} + +func (k Keeper) Params(goCtx context.Context, _ *sanction.QueryParamsRequest) (*sanction.QueryParamsResponse, error) { + resp := &sanction.QueryParamsResponse{} + ctx := sdk.UnwrapSDKContext(goCtx) + resp.Params = k.GetParams(ctx) + return resp, nil +} diff --git a/x/sanction/keeper/grpc_query_test.go b/x/sanction/keeper/grpc_query_test.go new file mode 100644 index 0000000000..592e86a7e7 --- /dev/null +++ b/x/sanction/keeper/grpc_query_test.go @@ -0,0 +1,947 @@ +package keeper_test + +import ( + "testing" + + "github.com/stretchr/testify/suite" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/query" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +type QueryTestSuite struct { + BaseTestSuite +} + +func (s *QueryTestSuite) SetupTest() { + s.BaseSetup() +} + +func TestQueryTestSuite(t *testing.T) { + suite.Run(t, new(QueryTestSuite)) +} + +func (s *QueryTestSuite) TestKeeper_IsSanctioned() { + addrNotSanctioned := sdk.AccAddress("not_sanctioned_addr") + addrSanctioned := sdk.AccAddress("sanctioned_address") + AddrTempSanct := sdk.AccAddress("temporarily_sanctioned_address") + addrSanctTempUn := sdk.AccAddress("this_address_is_nuts") + + s.ClearState() + s.ReqOKAddPermSanct("addrSanctioned, addrSanctTempUn", addrSanctioned, addrSanctTempUn) + s.ReqOKAddTempSanct(1, "AddrTempSanct", AddrTempSanct) + s.ReqOKAddTempUnsanct(1, "addrSanctTempUn", addrSanctTempUn) + + tests := []struct { + name string + req *sanction.QueryIsSanctionedRequest + exp *sanction.QueryIsSanctionedResponse + expErr []string + }{ + { + name: "nil req", + req: nil, + expErr: []string{"InvalidArgument", "empty request"}, + }, + { + name: "no address", + req: &sanction.QueryIsSanctionedRequest{Address: ""}, + expErr: []string{"InvalidArgument", "address cannot be empty"}, + }, + { + name: "bad address", + req: &sanction.QueryIsSanctionedRequest{Address: "not1addr"}, + expErr: []string{"invalid address", "InvalidArgument", "decoding bech32 failed"}, + }, + { + name: "normal address", + req: &sanction.QueryIsSanctionedRequest{Address: addrNotSanctioned.String()}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: false}, + }, + { + name: "sanctioned address", + req: &sanction.QueryIsSanctionedRequest{Address: addrSanctioned.String()}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: true}, + }, + { + name: "temporarily sanctioned address", + req: &sanction.QueryIsSanctionedRequest{Address: AddrTempSanct.String()}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: true}, + }, + { + name: "sanctioned address that is temporarily unsanctioned", + req: &sanction.QueryIsSanctionedRequest{Address: addrSanctTempUn.String()}, + exp: &sanction.QueryIsSanctionedResponse{IsSanctioned: false}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var resp *sanction.QueryIsSanctionedResponse + var err error + testFunc := func() { + resp, err = s.Keeper.IsSanctioned(s.StdlibCtx, tc.req) + } + s.Require().NotPanics(testFunc, "IsSanctioned") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "IsSanctioned error") + s.Assert().Equal(tc.exp, resp, "IsSanctioned response") + }) + } +} + +func (s *QueryTestSuite) TestKeeper_SanctionedAddresses() { + addr1 := sdk.AccAddress("1_addr_made_for_test") + addr2 := sdk.AccAddress("2_addr_made_for_test") + addr3 := sdk.AccAddress("3_addr_made_for_test") + addr4 := sdk.AccAddress("4_addr_made_for_test") + addr5 := sdk.AccAddress("5_addr_made_for_test") + addr6 := sdk.AccAddress("6_addr_made_for_test") + + asNextKey := func(addr sdk.AccAddress) []byte { + key := keeper.CreateSanctionedAddrKey(addr) + return key[1:] + } + + tests := []struct { + name string + iniState *sanction.GenesisState + req *sanction.QuerySanctionedAddressesRequest + exp *sanction.QuerySanctionedAddressesResponse + expErr []string + }{ + { + name: "nil req nothing to return", + iniState: nil, + req: nil, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: nil, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "nil req stuff to return", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr3.String(), addr5.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, 1, true), + newTempEntry(addr3, 1, false), + }, + }, + req: nil, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{addr1.String(), addr3.String(), addr5.String()}, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 3, + }, + }, + }, + { + name: "empty req nothing to return", + iniState: nil, + req: &sanction.QuerySanctionedAddressesRequest{}, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: nil, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "empty req stuff to return", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr3.String(), addr5.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, 1, true), + newTempEntry(addr3, 1, false), + }, + }, + req: &sanction.QuerySanctionedAddressesRequest{}, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{addr1.String(), addr3.String(), addr5.String()}, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 3, + }, + }, + }, + { + name: "paginated by counts", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + addr1.String(), addr2.String(), addr3.String(), + addr4.String(), addr5.String(), addr6.String(), + }, + }, + req: &sanction.QuerySanctionedAddressesRequest{ + Pagination: &query.PageRequest{ + Offset: 2, + Limit: 3, + CountTotal: false, + Reverse: false, + }, + }, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{addr3.String(), addr4.String(), addr5.String()}, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr6), + Total: 0, + }, + }, + }, + { + name: "paginated by counts reversed", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + addr1.String(), addr2.String(), addr3.String(), + addr4.String(), addr5.String(), addr6.String(), + }, + }, + req: &sanction.QuerySanctionedAddressesRequest{ + Pagination: &query.PageRequest{ + Offset: 2, + Limit: 3, + CountTotal: false, + Reverse: true, + }, + }, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{addr4.String(), addr3.String(), addr2.String()}, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr1), + Total: 0, + }, + }, + }, + { + name: "paginated by key", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + addr1.String(), addr2.String(), addr3.String(), + addr4.String(), addr5.String(), addr6.String(), + }, + }, + req: &sanction.QuerySanctionedAddressesRequest{ + Pagination: &query.PageRequest{ + Key: asNextKey(addr2), + Limit: 2, + CountTotal: false, + Reverse: false, + }, + }, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{addr2.String(), addr3.String()}, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr4), + Total: 0, + }, + }, + }, + { + name: "paginated by key reversed", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + addr1.String(), addr2.String(), addr3.String(), + addr4.String(), addr5.String(), addr6.String(), + }, + }, + req: &sanction.QuerySanctionedAddressesRequest{ + Pagination: &query.PageRequest{ + Key: asNextKey(addr4), + Limit: 2, + CountTotal: false, + Reverse: true, + }, + }, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{addr4.String(), addr3.String()}, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr2), + Total: 0, + }, + }, + }, + { + name: "paginated count total", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{ + addr1.String(), addr2.String(), addr3.String(), + addr4.String(), addr5.String(), addr6.String(), + }, + }, + req: &sanction.QuerySanctionedAddressesRequest{ + Pagination: &query.PageRequest{ + Limit: 1, + CountTotal: true, + }, + }, + exp: &sanction.QuerySanctionedAddressesResponse{ + Addresses: []string{addr1.String()}, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr2), + Total: 6, + }, + }, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + s.ClearState() + if tc.iniState != nil { + s.Require().NotPanics(func() { + s.Keeper.InitGenesis(s.SdkCtx, tc.iniState) + }, "InitGenesis") + } + + var resp *sanction.QuerySanctionedAddressesResponse + var err error + testFunc := func() { + resp, err = s.Keeper.SanctionedAddresses(s.StdlibCtx, tc.req) + } + s.Require().NotPanics(testFunc, "SanctionedAddresses") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "SanctionedAddresses error") + if !s.Assert().Equal(tc.exp, resp, "SanctionedAddresses response") && tc.exp != nil && resp != nil { + s.Assert().Equal(tc.exp.Addresses, resp.Addresses, "SanctionedAddresses response Addresses") + s.Assert().Equal(tc.exp.Pagination.NextKey, resp.Pagination.NextKey, "TemporaryEntries response Pagination.NextKey") + s.Assert().Equal(tc.exp.Pagination.Total, resp.Pagination.Total, "TemporaryEntries response Pagination.Total") + } + }) + } +} + +func (s *QueryTestSuite) TestKeeper_TemporaryEntries() { + addr1 := sdk.AccAddress("1_addr_made_for_test") + addr2 := sdk.AccAddress("2_addr_made_for_test") + addr3 := sdk.AccAddress("3_addr_made_for_test") + addr4 := sdk.AccAddress("4_addr_made_for_test") + addr5 := sdk.AccAddress("5_addr_made_for_test") + addr6 := sdk.AccAddress("6_addr_made_for_test") + + asNextKey := func(addr sdk.AccAddress, govPropID uint64) []byte { + key := keeper.CreateTemporaryKey(addr, govPropID) + return key[1:] + } + propNextKey := func(govPropID uint64) []byte { + return sdk.Uint64ToBigEndian(govPropID) + } + + _, _, _, _, _, _, _ = addr1, addr2, addr3, addr4, addr5, addr6, asNextKey + + tests := []struct { + name string + iniState *sanction.GenesisState + req *sanction.QueryTemporaryEntriesRequest + exp *sanction.QueryTemporaryEntriesResponse + expErr []string + }{ + { + name: "nil req nothing to return", + iniState: nil, + req: nil, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: nil, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "nil req stuff to return", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + }, + }, + req: nil, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + }, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 5, + }, + }, + }, + { + name: "empty req nothing to return", + iniState: nil, + req: &sanction.QueryTemporaryEntriesRequest{}, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: nil, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "empty req stuff to return", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{}, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + }, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 5, + }, + }, + }, + { + name: "bad address given", + req: &sanction.QueryTemporaryEntriesRequest{ + Address: "badbadbad", + }, + expErr: []string{"InvalidArgument", "invalid address", "decoding bech32 failed"}, + }, + { + name: "paginated by count", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: "", + Pagination: &query.PageRequest{ + Offset: 2, + Limit: 3, + CountTotal: false, + Reverse: false, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + }, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr5, 10), + Total: 0, + }, + }, + }, + { + name: "paginated by count reversed", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: "", + Pagination: &query.PageRequest{ + Offset: 2, + Limit: 3, + CountTotal: false, + Reverse: true, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 10, false), + }, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr4, 4), + Total: 0, + }, + }, + }, + { + name: "paginated by key", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: "", + Pagination: &query.PageRequest{ + Key: asNextKey(addr3, 3), + Limit: 4, + CountTotal: false, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + }, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr5, 12), + Total: 0, + }, + }, + }, + { + name: "paginated by key reversed", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: "", + Pagination: &query.PageRequest{ + Key: asNextKey(addr5, 11), + Limit: 4, + CountTotal: false, + Reverse: true, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 10, false), + newTempEntry(addr4, 4, false), + newTempEntry(addr3, 3, true), + }, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr2, 2), + Total: 0, + }, + }, + }, + { + name: "paginated count total", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: "", + Pagination: &query.PageRequest{ + Limit: 1, + CountTotal: true, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + }, + Pagination: &query.PageResponse{ + NextKey: asNextKey(addr2, 1), + Total: 10, + }, + }, + }, + { + name: "with address paginated by count", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: addr5.String(), + Pagination: &query.PageRequest{ + Offset: 1, + Limit: 2, + CountTotal: false, + Reverse: false, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + }, + Pagination: &query.PageResponse{ + NextKey: propNextKey(13), + Total: 0, + }, + }, + }, + { + name: "with address paginated by count reversed", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: addr5.String(), + Pagination: &query.PageRequest{ + Offset: 1, + Limit: 2, + CountTotal: false, + Reverse: true, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 11, true), + }, + Pagination: &query.PageResponse{ + NextKey: propNextKey(10), + Total: 0, + }, + }, + }, + { + name: "with address paginated by key", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: addr5.String(), + Pagination: &query.PageRequest{ + Key: propNextKey(12), + Limit: 2, + CountTotal: false, + Reverse: false, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + }, + Pagination: &query.PageResponse{ + NextKey: nil, + Total: 0, + }, + }, + }, + { + name: "with address paginated by key reversed", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: addr5.String(), + Pagination: &query.PageRequest{ + Key: propNextKey(12), + Limit: 2, + CountTotal: false, + Reverse: true, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 11, true), + }, + Pagination: &query.PageResponse{ + NextKey: propNextKey(10), + Total: 0, + }, + }, + }, + { + name: "with address paginated count total", + iniState: &sanction.GenesisState{ + SanctionedAddresses: []string{addr1.String(), addr4.String()}, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, false), + newTempEntry(addr2, 1, true), + newTempEntry(addr2, 2, false), + newTempEntry(addr3, 3, true), + newTempEntry(addr4, 4, false), + newTempEntry(addr5, 10, false), + newTempEntry(addr5, 11, true), + newTempEntry(addr5, 12, false), + newTempEntry(addr5, 13, false), + newTempEntry(addr6, 2, true), + }, + }, + req: &sanction.QueryTemporaryEntriesRequest{ + Address: addr5.String(), + Pagination: &query.PageRequest{ + Limit: 1, + CountTotal: true, + }, + }, + exp: &sanction.QueryTemporaryEntriesResponse{ + Entries: []*sanction.TemporaryEntry{ + newTempEntry(addr5, 10, false), + }, + Pagination: &query.PageResponse{ + NextKey: propNextKey(11), + Total: 4, + }, + }, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + s.ClearState() + if tc.iniState != nil { + s.Require().NotPanics(func() { + s.Keeper.InitGenesis(s.SdkCtx, tc.iniState) + }, "InitGenesis") + } + + var resp *sanction.QueryTemporaryEntriesResponse + var err error + testFunc := func() { + resp, err = s.Keeper.TemporaryEntries(s.StdlibCtx, tc.req) + } + s.Require().NotPanics(testFunc, "TemporaryEntries") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "TemporaryEntries error") + if !s.Assert().Equal(tc.exp, resp, "TemporaryEntries response") && tc.exp != nil && resp != nil { + s.Assert().Equal(tc.exp.Entries, resp.Entries, "TemporaryEntries response Entries") + s.Assert().Equal(tc.exp.Pagination.NextKey, resp.Pagination.NextKey, "TemporaryEntries response Pagination.NextKey") + s.Assert().Equal(tc.exp.Pagination.Total, resp.Pagination.Total, "TemporaryEntries response Pagination.Total") + } + }) + } +} + +func (s *QueryTestSuite) TestKeeper_Params() { + origMinSanct := sanction.DefaultImmediateSanctionMinDeposit + origMinUnsanct := sanction.DefaultImmediateUnsanctionMinDeposit + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origMinSanct + sanction.DefaultImmediateUnsanctionMinDeposit = origMinUnsanct + }() + sanction.DefaultImmediateSanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("stestcoin", 5)) + sanction.DefaultImmediateUnsanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("utestcoin", 7)) + + tests := []struct { + name string + iniState *sanction.GenesisState + req *sanction.QueryParamsRequest + exp *sanction.QueryParamsResponse + }{ + { + name: "nil req nothing in state", + iniState: nil, + req: nil, + exp: &sanction.QueryParamsResponse{Params: sanction.DefaultParams()}, + }, + { + name: "empty req nothing in state", + iniState: nil, + req: &sanction.QueryParamsRequest{}, + exp: &sanction.QueryParamsResponse{Params: sanction.DefaultParams()}, + }, + { + name: "nil req params set to nothing", + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + req: nil, + exp: &sanction.QueryParamsResponse{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + }, + { + name: "empty req params set to nothing", + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + req: &sanction.QueryParamsRequest{}, + exp: &sanction.QueryParamsResponse{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + }, + { + name: "nil req params set with values", + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newscoin", 55)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newucoin", 77)), + }, + }, + req: nil, + exp: &sanction.QueryParamsResponse{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newscoin", 55)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newucoin", 77)), + }, + }, + }, + { + name: "empty req params set with values", + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newscoin", 55)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newucoin", 77)), + }, + }, + req: &sanction.QueryParamsRequest{}, + exp: &sanction.QueryParamsResponse{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newscoin", 55)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("newucoin", 77)), + }, + }, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + s.ClearState() + if tc.iniState != nil { + s.Require().NotPanics(func() { + s.Keeper.InitGenesis(s.SdkCtx, tc.iniState) + }, "InitGenesis") + } + + var resp *sanction.QueryParamsResponse + s.RequireNotPanicsNoError(func() error { + var err error + resp, err = s.Keeper.Params(s.StdlibCtx, tc.req) + return err + }, "Params") + + if !s.Assert().Equal(tc.exp, resp, "Params response") && tc.exp != nil && resp != nil { + s.Assert().Equal(tc.exp.Params.ImmediateSanctionMinDeposit.String(), + resp.Params.ImmediateSanctionMinDeposit.String(), + "Params response Params.ImmediateSanctionMinDeposit") + s.Assert().Equal(tc.exp.Params.ImmediateUnsanctionMinDeposit.String(), + resp.Params.ImmediateUnsanctionMinDeposit.String(), + "Params response Params.ImmediateUnsanctionMinDeposit") + } + }) + } +} diff --git a/x/sanction/keeper/keeper.go b/x/sanction/keeper/keeper.go new file mode 100644 index 0000000000..dd04d22ebc --- /dev/null +++ b/x/sanction/keeper/keeper.go @@ -0,0 +1,413 @@ +package keeper + +import ( + "context" + "fmt" + + "cosmossdk.io/store/prefix" + storetypes "cosmossdk.io/store/types" + + "github.com/cosmos/cosmos-sdk/codec" + sdk "github.com/cosmos/cosmos-sdk/types" + govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/errors" +) + +type Keeper struct { + cdc codec.BinaryCodec + storeKey storetypes.StoreKey + + govKeeper sanction.GovKeeper + + authority string + + unsanctionableAddrs map[string]bool + + msgSanctionTypeURL string + msgUnsanctionTypeURL string + msgExecLegacyContentTypeURL string +} + +func NewKeeper( + cdc codec.BinaryCodec, + storeKey storetypes.StoreKey, + bankKeeper sanction.BankKeeper, + govKeeper *govkeeper.Keeper, + authority string, + unsanctionableAddrs []sdk.AccAddress, +) Keeper { + rv := Keeper{ + cdc: cdc, + storeKey: storeKey, + govKeeper: WrapGovKeeper(govKeeper), + authority: authority, + unsanctionableAddrs: make(map[string]bool), + msgSanctionTypeURL: sdk.MsgTypeURL(&sanction.MsgSanction{}), + msgUnsanctionTypeURL: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + msgExecLegacyContentTypeURL: sdk.MsgTypeURL(&govv1.MsgExecLegacyContent{}), + } + for _, addr := range unsanctionableAddrs { + // using string(addr) here instead of addr.String() to cut down on the need to bech32 encode things. + rv.unsanctionableAddrs[string(addr)] = true + } + bankKeeper.AppendSendRestriction(rv.SendRestrictionFn) + return rv +} + +// GetAuthority returns this module's authority string. +func (k Keeper) GetAuthority() string { + return k.authority +} + +// IsSanctionedAddr returns true if the provided address is currently sanctioned (either permanently or temporarily). +func (k Keeper) IsSanctionedAddr(goCtx context.Context, addr sdk.AccAddress) bool { + if len(addr) == 0 || k.IsAddrThatCannotBeSanctioned(addr) { + return false + } + ctx := sdk.UnwrapSDKContext(goCtx) + store := ctx.KVStore(k.storeKey) + tempEntry := k.getLatestTempEntry(store, addr) + if IsSanctionBz(tempEntry) { + return true + } + if IsUnsanctionBz(tempEntry) { + return false + } + key := CreateSanctionedAddrKey(addr) + return store.Has(key) +} + +// SanctionAddresses creates permanent sanctioned address entries for each of the provided addresses. +// Also deletes any temporary entries for each address. +func (k Keeper) SanctionAddresses(ctx sdk.Context, addrs ...sdk.AccAddress) error { + store := ctx.KVStore(k.storeKey) + val := []byte{SanctionB} + for _, addr := range addrs { + if k.IsAddrThatCannotBeSanctioned(addr) { + return errors.ErrUnsanctionableAddr.Wrap(addr.String()) + } + key := CreateSanctionedAddrKey(addr) + store.Set(key, val) + if err := ctx.EventManager().EmitTypedEvent(sanction.NewEventAddressSanctioned(addr)); err != nil { + return err + } + } + k.DeleteAddrTempEntries(ctx, addrs...) + return nil +} + +// UnsanctionAddresses deletes any sanctioned address entries for each provided address. +// Also deletes any temporary entries for each address. +func (k Keeper) UnsanctionAddresses(ctx sdk.Context, addrs ...sdk.AccAddress) error { + store := ctx.KVStore(k.storeKey) + for _, addr := range addrs { + key := CreateSanctionedAddrKey(addr) + store.Delete(key) + if err := ctx.EventManager().EmitTypedEvent(sanction.NewEventAddressUnsanctioned(addr)); err != nil { + return err + } + } + k.DeleteAddrTempEntries(ctx, addrs...) + return nil +} + +// AddTemporarySanction adds a temporary sanction with the given gov prop id for each of the provided addresses. +func (k Keeper) AddTemporarySanction(ctx sdk.Context, govPropID uint64, addrs ...sdk.AccAddress) error { + return k.addTempEntries(ctx, SanctionB, govPropID, addrs) +} + +// AddTemporaryUnsanction adds a temporary unsanction with the given gov prop id for each of the provided addresses. +func (k Keeper) AddTemporaryUnsanction(ctx sdk.Context, govPropID uint64, addrs ...sdk.AccAddress) error { + return k.addTempEntries(ctx, UnsanctionB, govPropID, addrs) +} + +// addTempEntries adds a temporary entry with the given value and gov prop id for each address given. +func (k Keeper) addTempEntries(ctx sdk.Context, value byte, govPropID uint64, addrs []sdk.AccAddress) error { + store := ctx.KVStore(k.storeKey) + val := []byte{value} + for _, addr := range addrs { + if value == SanctionB && k.IsAddrThatCannotBeSanctioned(addr) { + return errors.ErrUnsanctionableAddr.Wrap(addr.String()) + } + key := CreateTemporaryKey(addr, govPropID) + store.Set(key, val) + indKey := CreateProposalTempIndexKey(govPropID, addr) + store.Set(indKey, val) + if err := ctx.EventManager().EmitTypedEvent(NewTempEvent(value, addr)); err != nil { + return err + } + } + return nil +} + +// getLatestTempEntry gets the most recent temporary entry for the given address. +func (k Keeper) getLatestTempEntry(store storetypes.KVStore, addr sdk.AccAddress) []byte { + if len(addr) == 0 { + return nil + } + pre := CreateTemporaryAddrPrefix(addr) + preStore := prefix.NewStore(store, pre) + iter := preStore.ReverseIterator(nil, nil) + defer iter.Close() + if iter.Valid() { + return iter.Value() + } + return nil +} + +// DeleteGovPropTempEntries deletes the temporary entries for the given proposal id. +func (k Keeper) DeleteGovPropTempEntries(ctx sdk.Context, govPropID uint64) { + var toRemove [][]byte + k.IterateProposalIndexEntries(ctx, &govPropID, func(cbGovPropID uint64, cbAddr sdk.AccAddress) bool { + toRemove = append(toRemove, + CreateTemporaryKey(cbAddr, cbGovPropID), + CreateProposalTempIndexKey(cbGovPropID, cbAddr), + ) + return false + }) + if len(toRemove) > 0 { + store := ctx.KVStore(k.storeKey) + for _, key := range toRemove { + store.Delete(key) + } + } +} + +// DeleteAddrTempEntries deletes all temporary entries for each given address. +func (k Keeper) DeleteAddrTempEntries(ctx sdk.Context, addrs ...sdk.AccAddress) { + if len(addrs) == 0 { + return + } + var toRemove [][]byte + callback := func(cbAddr sdk.AccAddress, cbGovPropId uint64, _ bool) bool { + toRemove = append(toRemove, + CreateTemporaryKey(cbAddr, cbGovPropId), + CreateProposalTempIndexKey(cbGovPropId, cbAddr), + ) + return false + } + for _, addr := range addrs { + if len(addr) > 0 { + k.IterateTemporaryEntries(ctx, addr, callback) + } + } + if len(toRemove) > 0 { + store := ctx.KVStore(k.storeKey) + for _, key := range toRemove { + store.Delete(key) + } + } +} + +// getSanctionedAddressPrefixStore returns a kv store prefixed for sanctioned addresses, and the prefix bytes. +func (k Keeper) getSanctionedAddressPrefixStore(ctx sdk.Context) storetypes.KVStore { + return prefix.NewStore(ctx.KVStore(k.storeKey), SanctionedPrefix) +} + +// IterateSanctionedAddresses iterates over all of the permanently sanctioned addresses. +// The callback takes in the sanctioned address and should return whether to stop iteration (true = stop, false = keep going). +func (k Keeper) IterateSanctionedAddresses(ctx sdk.Context, cb func(addr sdk.AccAddress) (stop bool)) { + store := k.getSanctionedAddressPrefixStore(ctx) + + iter := store.Iterator(nil, nil) + defer iter.Close() + + for ; iter.Valid(); iter.Next() { + addr, _ := ParseLengthPrefixedBz(iter.Key()) + if cb(addr) { + break + } + } +} + +// getTemporaryEntryPrefixStore returns a kv store prefixed for temporary sanction/unsanction entries, and the prefix bytes used. +// If an addr is provided, the store is prefixed for just the given address. +// If addr is empty, it will be prefixed for all temporary entries. +func (k Keeper) getTemporaryEntryPrefixStore(ctx sdk.Context, addr sdk.AccAddress) (storetypes.KVStore, []byte) { + pre := CreateTemporaryAddrPrefix(addr) + return prefix.NewStore(ctx.KVStore(k.storeKey), pre), pre +} + +// IterateTemporaryEntries iterates over each of the temporary entries. +// If an address is provided, only the temporary entries for that address are iterated, +// otherwise all entries are iterated. +// The callback takes in the address in question, the governance proposal associated with it, and whether it's a sanction (true) or unsanction (false). +// The callback should return whether to stop iteration (true = stop, false = keep going). +func (k Keeper) IterateTemporaryEntries(ctx sdk.Context, addr sdk.AccAddress, cb func(addr sdk.AccAddress, govPropID uint64, isSanction bool) (stop bool)) { + store, pre := k.getTemporaryEntryPrefixStore(ctx, addr) + + iter := store.Iterator(nil, nil) + defer iter.Close() + + for ; iter.Valid(); iter.Next() { + key := ConcatBz(pre, iter.Key()) + kAddr, govPropID := ParseTemporaryKey(key) + isSanction := IsSanctionBz(iter.Value()) + if cb(kAddr, govPropID, isSanction) { + break + } + } +} + +// getProposalIndexPrefixStore returns a kv store prefixed for the gov prop -> temporary sanction/unsanction index entries, +// and the prefix bytes used. +// If a gov prop id is provided, the store is prefixed for just that proposal. +// If not provided, it will be prefixed for all temp index entries. +func (k Keeper) getProposalIndexPrefixStore(ctx sdk.Context, govPropID *uint64) (storetypes.KVStore, []byte) { + pre := CreateProposalTempIndexPrefix(govPropID) + return prefix.NewStore(ctx.KVStore(k.storeKey), pre), pre +} + +// IterateProposalIndexEntries iterates over all of the index entries for temp entries. +// The callback takes in the gov prop id and address. +// The callback should return whether to stop iteration (true = stop, false = keep going). +func (k Keeper) IterateProposalIndexEntries(ctx sdk.Context, govPropID *uint64, cb func(govPropID uint64, addr sdk.AccAddress) (stop bool)) { + store, pre := k.getProposalIndexPrefixStore(ctx, govPropID) + + iter := store.Iterator(nil, nil) + defer iter.Close() + + for ; iter.Valid(); iter.Next() { + key := ConcatBz(pre, iter.Key()) + kPropID, kAddr := ParseProposalTempIndexKey(key) + if cb(kPropID, kAddr) { + break + } + } +} + +// IsAddrThatCannotBeSanctioned returns true if the provided address is one of the ones that cannot be sanctioned. +// Returns false if the addr can be sanctioned. +func (k Keeper) IsAddrThatCannotBeSanctioned(addr sdk.AccAddress) bool { + // Okay. I know this is a clunky name for this function. + // IsUnsanctionableAddr would be a better name if it weren't WAY too close to IsSanctionedAddr. + // The latter is the key function of this module, and I wanted to help prevent + // confusion between this one and that one since they have vastly different purposes. + return k.unsanctionableAddrs[string(addr)] +} + +// GetParams gets the sanction module's params. +// If there isn't anything set in state, the defaults are returned. +func (k Keeper) GetParams(ctx sdk.Context) *sanction.Params { + rv := sanction.DefaultParams() + + k.IterateParams(ctx, func(name, value string) bool { + switch name { + case ParamNameImmediateSanctionMinDeposit: + rv.ImmediateSanctionMinDeposit = toCoinsOrDefault(value, rv.ImmediateSanctionMinDeposit) + case ParamNameImmediateUnsanctionMinDeposit: + rv.ImmediateUnsanctionMinDeposit = toCoinsOrDefault(value, rv.ImmediateUnsanctionMinDeposit) + default: + panic(fmt.Errorf("unknown param key: %q", name)) + } + return false + }) + + return rv +} + +// SetParams sets the sanction module's params. +// Providing a nil params will cause all params to be deleted (so that defaults are used). +func (k Keeper) SetParams(ctx sdk.Context, params *sanction.Params) error { + store := ctx.KVStore(k.storeKey) + if params == nil { + k.deleteParam(store, ParamNameImmediateSanctionMinDeposit) + k.deleteParam(store, ParamNameImmediateUnsanctionMinDeposit) + } else { + k.setParam(store, ParamNameImmediateSanctionMinDeposit, params.ImmediateSanctionMinDeposit.String()) + k.setParam(store, ParamNameImmediateUnsanctionMinDeposit, params.ImmediateUnsanctionMinDeposit.String()) + } + return ctx.EventManager().EmitTypedEvent(&sanction.EventParamsUpdated{}) +} + +// IterateParams iterates over all params entries. +// The callback takes in the name and value, and should return whether to stop iteration (true = stop, false = keep going). +func (k Keeper) IterateParams(ctx sdk.Context, cb func(name, value string) (stop bool)) { + store := prefix.NewStore(ctx.KVStore(k.storeKey), ParamsPrefix) + + iter := store.Iterator(nil, nil) + defer iter.Close() + + for ; iter.Valid(); iter.Next() { + if cb(string(iter.Key()), string(iter.Value())) { + break + } + } +} + +// GetImmediateSanctionMinDeposit gets the minimum deposit for a sanction to happen immediately. +func (k Keeper) GetImmediateSanctionMinDeposit(ctx sdk.Context) sdk.Coins { + return k.getParamAsCoinsOrDefault( + ctx, + ParamNameImmediateSanctionMinDeposit, + sanction.DefaultImmediateSanctionMinDeposit, + ) +} + +// GetImmediateUnsanctionMinDeposit gets the minimum deposit for an unsanction to happen immediately. +func (k Keeper) GetImmediateUnsanctionMinDeposit(ctx sdk.Context) sdk.Coins { + return k.getParamAsCoinsOrDefault( + ctx, + ParamNameImmediateUnsanctionMinDeposit, + sanction.DefaultImmediateUnsanctionMinDeposit, + ) +} + +// getParam returns a param value and whether it existed. +func (k Keeper) getParam(store storetypes.KVStore, name string) (string, bool) { + key := CreateParamKey(name) + if store.Has(key) { + return string(store.Get(key)), true + } + return "", false +} + +// setParam sets a param value. +func (k Keeper) setParam(store storetypes.KVStore, name, value string) { + key := CreateParamKey(name) + val := []byte(value) + store.Set(key, val) +} + +// deleteParam deletes a param value. +func (k Keeper) deleteParam(store storetypes.KVStore, name string) { + key := CreateParamKey(name) + store.Delete(key) +} + +// getParamAsCoinsOrDefault gets a param value and converts it to a coins if possible. +// If the param doesn't exist, the default is returned. +// If the param's value cannot be converted to a Coins, the default is returned. +func (k Keeper) getParamAsCoinsOrDefault(ctx sdk.Context, name string, dflt sdk.Coins) sdk.Coins { + coins, has := k.getParam(ctx.KVStore(k.storeKey), name) + if !has { + return dflt + } + return toCoinsOrDefault(coins, dflt) +} + +// toCoinsOrDefault converts a string to coins if possible or else returns the provided default. +func toCoinsOrDefault(coins string, dflt sdk.Coins) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + if err != nil { + return dflt + } + return rv +} + +// toAccAddrs converts the provided strings into a slice of sdk.AccAddress. +// If any fail to convert, an error is returned. +func toAccAddrs(addrs []string) ([]sdk.AccAddress, error) { + var err error + rv := make([]sdk.AccAddress, len(addrs)) + for i, addr := range addrs { + rv[i], err = sdk.AccAddressFromBech32(addr) + if err != nil { + return nil, fmt.Errorf("invalid address[%d]: %w", i, err) + } + } + return rv, nil +} diff --git a/x/sanction/keeper/keeper_test.go b/x/sanction/keeper/keeper_test.go new file mode 100644 index 0000000000..b8e4cc0855 --- /dev/null +++ b/x/sanction/keeper/keeper_test.go @@ -0,0 +1,2394 @@ +package keeper_test + +import ( + "bytes" + "sort" + "testing" + + "github.com/stretchr/testify/suite" + + sdkmath "cosmossdk.io/math" + + sdk "github.com/cosmos/cosmos-sdk/types" + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" + + "github.com/provenance-io/provenance/app" + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +type KeeperTestSuite struct { + BaseTestSuite + + addr1 sdk.AccAddress + addr2 sdk.AccAddress + addr3 sdk.AccAddress + addr4 sdk.AccAddress + addr5 sdk.AccAddress +} + +func (s *KeeperTestSuite) SetupTest() { + s.BaseSetup() + + addrs := app.AddTestAddrsIncremental(s.App, s.SdkCtx, 5, sdkmath.NewInt(1_000_000_000)) + s.addr1 = addrs[0] + s.addr2 = addrs[1] + s.addr3 = addrs[2] + s.addr4 = addrs[3] + s.addr5 = addrs[4] +} + +func TestKeeperTestSuite(t *testing.T) { + suite.Run(t, new(KeeperTestSuite)) +} + +func (s *KeeperTestSuite) TestKeeperMsgUrls() { + vals := []struct { + name string + val string + exp string + }{ + { + name: "msgSanctionTypeURL", + val: s.Keeper.MsgSanctionTypeURL(), + exp: "/cosmos.sanction.v1beta1.MsgSanction", + }, + { + name: "msgUnsanctionTypeURL", + val: s.Keeper.MsgUnsanctionTypeURL(), + exp: "/cosmos.sanction.v1beta1.MsgUnsanction", + }, + { + name: "msgExecLegacyContentTypeURL", + val: s.Keeper.MsgExecLegacyContentTypeURL(), + exp: "/cosmos.gov.v1.MsgExecLegacyContent", + }, + } + + for i, val := range vals { + s.Run(val.name, func() { + s.Assert().Equal(val.exp, val.val, "field value") + + for j, val2 := range vals { + if i == j { + continue + } + s.Assert().NotEqual(val.val, val2.val, "%q = %s = %s", val.val, val.name, val2.name) + } + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_GetAuthority() { + s.Run("default", func() { + expected := authtypes.NewModuleAddress(govtypes.ModuleName).String() + actual := s.Keeper.GetAuthority() + s.Assert().Equal(expected, actual, "GetAuthority result") + }) + + tests := []string{"something", "something else"} + for _, tc := range tests { + s.Run(tc, func() { + k := s.Keeper.WithAuthority(tc) + actual := k.GetAuthority() + s.Assert().Equal(tc, actual, "GetAuthority result") + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_IsSanctionedAddr() { + // Setup: + // addr1 will be sanctioned. + // addr2 will be sanctioned, but have a temp unsanction. + // addr3 will have a temp sanction. + // addr4 will have a temp sanction then temp unsanction. + // addr5 will be sanctioned and have a temp unsanction then a temp sanction. + // addrUnsanctionable will have a sanction in place, but be one of the unsanctionable addresses. + addrUnsanctionable := sdk.AccAddress("unsanctionable_addr_") + s.ReqOKAddPermSanct("s.addr1, s.addr2, s.addr5, addrUnsanctionable", s.addr1, s.addr2, s.addr5, addrUnsanctionable) + s.ReqOKAddTempSanct(1, "s.addr3, s.addr4", s.addr3, s.addr4) + s.ReqOKAddTempUnsanct(2, "s.addr2, s.addr4, s.addr5", s.addr2, s.addr4, s.addr5) + s.ReqOKAddTempSanct(3, "s.addr5", s.addr5) + + k := s.Keeper.WithUnsanctionableAddrs(map[string]bool{string(addrUnsanctionable): true}) + + tests := []struct { + name string + addr sdk.AccAddress + exp bool + }{ + { + name: "nil", + addr: nil, + exp: false, + }, + { + name: "empty", + addr: sdk.AccAddress{}, + exp: false, + }, + { + name: "unknown address", + addr: sdk.AccAddress("an__unknown__address"), + exp: false, + }, + { + name: "sanctioned addr", + addr: s.addr1, + exp: true, + }, + { + name: "sanctioned with temp unsanction", + addr: s.addr2, + exp: false, + }, + { + name: "temp sanction", + addr: s.addr3, + exp: true, + }, + { + name: "temp sanction then temp unsanction", + addr: s.addr4, + exp: false, + }, + { + name: "sanctioned with temp unsanction then temp sanction", + addr: s.addr5, + exp: true, + }, + { + name: "first byte of sanctioned addr", + addr: sdk.AccAddress{s.addr1[0]}, + exp: false, + }, + { + name: "sanctioned addr plus 1 byte at end", + addr: append(append([]byte{}, s.addr1...), 'f'), + exp: false, + }, + { + name: "sanctioned addr plus 1 byte at front", + addr: append([]byte{'g'}, s.addr1...), + exp: false, + }, + { + name: "sanctioned addr minus last byte", + addr: s.addr1[:len(s.addr1)-1], + exp: false, + }, + { + name: "sanctioned addr minus first byte", + addr: s.addr1[1:], + exp: false, + }, + { + name: "sanctioned addr that is now unsanctionable", + addr: addrUnsanctionable, + exp: false, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var origAddr, origAtFullCap sdk.AccAddress + if tc.addr != nil { + origAddr = make(sdk.AccAddress, len(tc.addr), cap(tc.addr)) + copy(origAddr, tc.addr[:cap(tc.addr)]) + origAtFullCap = tc.addr[:cap(tc.addr)] + } + var actual bool + testFunc := func() { + actual = k.IsSanctionedAddr(s.SdkCtx, tc.addr) + } + s.Require().NotPanics(testFunc, "IsSanctionedAddr") + s.Assert().Equal(tc.exp, actual, "IsSanctionedAddr result") + s.Assert().Equal(origAddr, tc.addr, "provided addr before and after") + s.Assert().Equal(cap(origAddr), cap(tc.addr), "provided addr capacity before and after") + var addrAtFullCap sdk.AccAddress + if tc.addr != nil { + addrAtFullCap = tc.addr[:cap(tc.addr)] + } + s.Assert().Equal(origAtFullCap, addrAtFullCap, "provided addr at full capacity before and after") + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_SanctionAddresses() { + makeEvents := func(addrs ...sdk.AccAddress) sdk.Events { + rv := sdk.Events{} + for _, addr := range addrs { + event, err := sdk.TypedEventToEvent(sanction.NewEventAddressSanctioned(addr)) + s.Require().NoError(err, "TypedEventToEvent NewEventAddressSanctioned") + rv = append(rv, event) + } + return rv + } + + addrUnsanctionable := sdk.AccAddress("unsanctionable_addr_") + k := s.Keeper.WithUnsanctionableAddrs(map[string]bool{string(addrUnsanctionable): true}) + + tests := []struct { + name string + addrs []sdk.AccAddress + expEvents sdk.Events + expErr []string + checkSanctioned []sdk.AccAddress + checkNotSanctioned []sdk.AccAddress + }{ + { + name: "no addresses", + addrs: []sdk.AccAddress{}, + expEvents: sdk.Events{}, + checkSanctioned: []sdk.AccAddress{}, + checkNotSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, s.addr5, addrUnsanctionable}, + }, + { + name: "one addr", + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + checkSanctioned: []sdk.AccAddress{s.addr1}, + checkNotSanctioned: []sdk.AccAddress{s.addr2, s.addr3, s.addr4, s.addr5, addrUnsanctionable}, + }, + { + name: "already sanctioned addr", + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + checkSanctioned: []sdk.AccAddress{s.addr1}, + checkNotSanctioned: []sdk.AccAddress{s.addr2, s.addr3, s.addr4, s.addr5, addrUnsanctionable}, + }, + { + name: "two new addrs", + addrs: []sdk.AccAddress{s.addr2, s.addr3}, + expEvents: makeEvents(s.addr2, s.addr3), + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3}, + checkNotSanctioned: []sdk.AccAddress{s.addr4, s.addr5, addrUnsanctionable}, + }, + { + name: "three addrs all already sanctioned", + addrs: []sdk.AccAddress{s.addr1, s.addr2, s.addr3}, + expEvents: makeEvents(s.addr1, s.addr2, s.addr3), + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3}, + checkNotSanctioned: []sdk.AccAddress{s.addr4, s.addr5, addrUnsanctionable}, + }, + { + name: "two addrs one already sanctioned", + addrs: []sdk.AccAddress{s.addr1, s.addr4}, + expEvents: makeEvents(s.addr1, s.addr4), + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4}, + checkNotSanctioned: []sdk.AccAddress{s.addr5, addrUnsanctionable}, + }, + { + name: "unsanctionable addr", + addrs: []sdk.AccAddress{addrUnsanctionable}, + expEvents: sdk.Events{}, + expErr: []string{addrUnsanctionable.String(), "address cannot be sanctioned"}, + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4}, + checkNotSanctioned: []sdk.AccAddress{s.addr5, addrUnsanctionable}, + }, + { + name: "three addrs first unsanctionable", + addrs: []sdk.AccAddress{addrUnsanctionable, s.addr4, s.addr5}, + expEvents: sdk.Events{}, + expErr: []string{addrUnsanctionable.String(), "address cannot be sanctioned"}, + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4}, + checkNotSanctioned: []sdk.AccAddress{s.addr5, addrUnsanctionable}, + }, + { + name: "three addrs second unsanctionable", + addrs: []sdk.AccAddress{s.addr1, addrUnsanctionable, s.addr5}, + expEvents: makeEvents(s.addr1), + expErr: []string{addrUnsanctionable.String(), "address cannot be sanctioned"}, + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4}, + checkNotSanctioned: []sdk.AccAddress{s.addr5, addrUnsanctionable}, + }, + { + name: "three addrs third unsanctionable", + addrs: []sdk.AccAddress{s.addr1, s.addr2, addrUnsanctionable}, + expEvents: makeEvents(s.addr1, s.addr2), + expErr: []string{addrUnsanctionable.String(), "address cannot be sanctioned"}, + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4}, + checkNotSanctioned: []sdk.AccAddress{s.addr5, addrUnsanctionable}, + }, + } + + var isSanctioned bool + testIsSanction := func(addr sdk.AccAddress) func() { + return func() { + isSanctioned = k.IsSanctionedAddr(s.SdkCtx, addr) + } + } + + for _, tc := range tests { + s.Run(tc.name, func() { + em := sdk.NewEventManager() + ctx := s.SdkCtx.WithEventManager(em) + var err error + testFunc := func() { + err = k.SanctionAddresses(ctx, tc.addrs...) + } + s.Require().NotPanics(testFunc, "SanctionAddresses") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "SanctionAddresses error") + events := em.Events() + s.Assert().Equal(tc.expEvents, events, "events emitted during SanctionAddresses") + for _, addr := range tc.checkSanctioned { + if s.Assert().NotPanics(testIsSanction(addr), "IsSanctionedAddr") { + s.Assert().True(isSanctioned, "IsSanctionedAddr result") + } + } + for _, addr := range tc.checkNotSanctioned { + if s.Assert().NotPanics(testIsSanction(addr), "IsSanctionedAddr") { + s.Assert().False(isSanctioned, "IsSanctionedAddr result") + } + } + }) + } + + s.Run("temp entries are deleted", func() { + s.ReqOKAddTempSanct(1, "s.addr1, s.addr2", s.addr1, s.addr2) + s.ReqOKAddTempSanct(2, "s.addr1, s.addr3", s.addr1, s.addr3) + s.ReqOKAddTempUnsanct(3, "s.addr2, s.addr4, s.addr5", s.addr2, s.addr4, s.addr5) + + testFunc := func() error { + return k.SanctionAddresses(s.SdkCtx, s.addr5, s.addr3, s.addr1, s.addr2, s.addr4) + } + s.RequireNotPanicsNoError(testFunc, "SanctionAddresses") + + tempEntries := s.GetAllTempEntries() + s.Assert().Empty(tempEntries, "temporary entries still in the store") + + tempIndEntries := s.GetAllIndexTempEntries() + s.Assert().Empty(tempIndEntries, "proposal index temporary entries still in the store") + }) +} + +func (s *KeeperTestSuite) TestKeeper_UnsanctionAddresses() { + makeEvents := func(addrs ...sdk.AccAddress) sdk.Events { + rv := sdk.Events{} + for _, addr := range addrs { + event, err := sdk.TypedEventToEvent(sanction.NewEventAddressUnsanctioned(addr)) + s.Require().NoError(err, "TypedEventToEvent NewEventAddressUnsanctioned") + rv = append(rv, event) + } + return rv + } + + // Setup: Sanction all 5 addrs plus a new one that will end up being unsanctionable. + addrUnsanctionable := sdk.AccAddress("unsanctionable_addr_") + addrRandom := sdk.AccAddress("just_a_random_addr") + s.ReqOKAddPermSanct("s.addr1, s.addr2, s.addr3, s.addr4, s.addr5, addrUnsanctionable", + s.addr1, s.addr2, s.addr3, s.addr4, s.addr5, addrUnsanctionable) + k := s.Keeper.WithUnsanctionableAddrs(map[string]bool{string(addrUnsanctionable): true}) + + tests := []struct { + name string + addrs []sdk.AccAddress + expEvents sdk.Events + checkSanctioned []sdk.AccAddress + checkNotSanctioned []sdk.AccAddress + }{ + { + name: "no addresses", + addrs: []sdk.AccAddress{}, + expEvents: sdk.Events{}, + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, s.addr5}, + checkNotSanctioned: []sdk.AccAddress{addrUnsanctionable, addrRandom}, + }, + { + name: "one addr never sanctioned", + addrs: []sdk.AccAddress{addrRandom}, + expEvents: makeEvents(addrRandom), + checkSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, s.addr5}, + checkNotSanctioned: []sdk.AccAddress{addrUnsanctionable, addrRandom}, + }, + { + name: "one addr", + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + checkSanctioned: []sdk.AccAddress{s.addr2, s.addr3, s.addr4, s.addr5}, + checkNotSanctioned: []sdk.AccAddress{s.addr1, addrUnsanctionable, addrRandom}, + }, + { + name: "already unsanctioned", + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + checkSanctioned: []sdk.AccAddress{s.addr2, s.addr3, s.addr4, s.addr5}, + checkNotSanctioned: []sdk.AccAddress{s.addr1, addrUnsanctionable, addrRandom}, + }, + { + name: "two new addrs", + addrs: []sdk.AccAddress{s.addr2, s.addr3}, + expEvents: makeEvents(s.addr2, s.addr3), + checkSanctioned: []sdk.AccAddress{s.addr4, s.addr5}, + checkNotSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, addrUnsanctionable, addrRandom}, + }, + { + name: "three addrs all already unsanctioned", + addrs: []sdk.AccAddress{s.addr1, s.addr2, s.addr3}, + expEvents: makeEvents(s.addr1, s.addr2, s.addr3), + checkSanctioned: []sdk.AccAddress{s.addr4, s.addr5}, + checkNotSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, addrUnsanctionable, addrRandom}, + }, + { + name: "two addrs one already unsanctioned", + addrs: []sdk.AccAddress{s.addr4, s.addr1}, + expEvents: makeEvents(s.addr4, s.addr1), + checkSanctioned: []sdk.AccAddress{s.addr5}, + checkNotSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, addrUnsanctionable, addrRandom}, + }, + { + name: "three addrs one unsanctionable", + addrs: []sdk.AccAddress{addrUnsanctionable, s.addr4, s.addr1}, + expEvents: makeEvents(addrUnsanctionable, s.addr4, s.addr1), + checkSanctioned: []sdk.AccAddress{s.addr5}, + checkNotSanctioned: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, addrUnsanctionable, addrRandom}, + }, + } + + var isSanctioned bool + testIsSanction := func(addr sdk.AccAddress) func() { + return func() { + isSanctioned = k.IsSanctionedAddr(s.SdkCtx, addr) + } + } + + for _, tc := range tests { + s.Run(tc.name, func() { + em := sdk.NewEventManager() + ctx := s.SdkCtx.WithEventManager(em) + testFunc := func() error { + return k.UnsanctionAddresses(ctx, tc.addrs...) + } + s.RequireNotPanicsNoError(testFunc, "UnsanctionAddresses") + events := em.Events() + s.Assert().Equal(tc.expEvents, events, "events emitted during UnsanctionAddresses") + for i, addr := range tc.checkSanctioned { + if s.Assert().NotPanics(testIsSanction(addr), "checkSanctioned[%d] IsSanctionedAddr", i) { + s.Assert().True(isSanctioned, "checkSanctioned[%d] IsSanctionedAddr result", i) + } + } + for i, addr := range tc.checkNotSanctioned { + if s.Assert().NotPanics(testIsSanction(addr), "checkNotSanctioned[%d] IsSanctionedAddr", i) { + s.Assert().False(isSanctioned, "checkNotSanctioned[%d] IsSanctionedAddr result", i) + } + } + }) + } + + s.Run("temp entries are deleted", func() { + s.ReqOKAddTempSanct(1, "s.addr1, s.addr2", s.addr1, s.addr2) + s.ReqOKAddTempSanct(2, "s.addr1, s.addr3", s.addr1, s.addr3) + s.ReqOKAddTempUnsanct(3, "s.addr2, s.addr4, s.addr5", s.addr2, s.addr4, s.addr5) + + testFunc := func() error { + return k.UnsanctionAddresses(s.SdkCtx, s.addr5, s.addr3, s.addr1, s.addr2, s.addr4) + } + s.RequireNotPanicsNoError(testFunc, "UnsanctionAddresses") + + tempEntries := s.GetAllTempEntries() + s.Assert().Empty(tempEntries, "temporary entries still in the store") + + tempIndEntries := s.GetAllIndexTempEntries() + s.Assert().Empty(tempIndEntries, "proposal index temporary entries still in the store") + }) +} + +func (s *KeeperTestSuite) TestKeeper_AddTemporarySanction() { + makeEvents := func(addrs ...sdk.AccAddress) sdk.Events { + rv := sdk.Events{} + for _, addr := range addrs { + event, err := sdk.TypedEventToEvent(keeper.NewTempEvent(keeper.SanctionB, addr)) + s.Require().NoError(err, "TypedEventToEvent temp event") + rv = append(rv, event) + } + return rv + } + + var previousTempEntries []*sanction.TemporaryEntry + var previousIndEntries []*sanction.TemporaryEntry + + getNewEntries := func(previous, now []*sanction.TemporaryEntry) []*sanction.TemporaryEntry { + var rv []*sanction.TemporaryEntry + for _, entry := range now { + found := false + for _, known := range previous { + if entry.Address == known.Address && entry.ProposalId == known.ProposalId && entry.Status == known.Status { + found = true + break + } + } + if !found { + rv = append(rv, entry) + } + } + return rv + } + + // Start with addr5 having a temp unsanction entry. + s.ReqOKAddTempUnsanct(100, "s.addr5", s.addr5) + + addrUnsanctionable := sdk.AccAddress("unsanctionable_addr_") + k := s.Keeper.WithUnsanctionableAddrs(map[string]bool{string(addrUnsanctionable): true}) + + tests := []struct { + name string + govPropID uint64 + addrs []sdk.AccAddress + expEvents sdk.Events + expErr []string + addedTempEntries []*sanction.TemporaryEntry + addedIndEntries []*sanction.TemporaryEntry + }{ + { + name: "no addrs", + addrs: []sdk.AccAddress{}, + expEvents: sdk.Events{}, + }, + { + name: "one addr", + govPropID: 1, + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr1, 1, true)}, + addedIndEntries: []*sanction.TemporaryEntry{newIndTempEntry(1, s.addr1)}, + }, + { + name: "same addr and gov prop as before", + govPropID: 1, + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + }, + { + name: "same addr new gov prop", + govPropID: 2, + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr1, 2, true)}, + addedIndEntries: []*sanction.TemporaryEntry{newIndTempEntry(2, s.addr1)}, + }, + { + name: "previous gov prop new addr", + govPropID: 1, + addrs: []sdk.AccAddress{s.addr2}, + expEvents: makeEvents(s.addr2), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr2, 1, true)}, + addedIndEntries: []*sanction.TemporaryEntry{newIndTempEntry(1, s.addr2)}, + }, + { + name: "three addrs", + govPropID: 3, + addrs: []sdk.AccAddress{s.addr1, s.addr2, s.addr3}, + expEvents: makeEvents(s.addr1, s.addr2, s.addr3), + addedTempEntries: []*sanction.TemporaryEntry{ + newTempEntry(s.addr1, 3, true), + newTempEntry(s.addr2, 3, true), + newTempEntry(s.addr3, 3, true), + }, + addedIndEntries: []*sanction.TemporaryEntry{ + newIndTempEntry(3, s.addr1), + newIndTempEntry(3, s.addr2), + newIndTempEntry(3, s.addr3), + }, + }, + { + name: "five addrs first unsanctionable", + govPropID: 4, + addrs: []sdk.AccAddress{addrUnsanctionable, s.addr2, s.addr3, s.addr4, s.addr5}, + expEvents: sdk.Events{}, + expErr: []string{addrUnsanctionable.String(), "address cannot be sanctioned"}, + }, + { + name: "five addrs third unsanctionable", + govPropID: 5, + addrs: []sdk.AccAddress{s.addr1, s.addr2, addrUnsanctionable, s.addr4, s.addr5}, + expEvents: makeEvents(s.addr1, s.addr2), + expErr: []string{addrUnsanctionable.String(), "address cannot be sanctioned"}, + addedTempEntries: []*sanction.TemporaryEntry{ + newTempEntry(s.addr1, 5, true), + newTempEntry(s.addr2, 5, true), + }, + addedIndEntries: []*sanction.TemporaryEntry{ + newIndTempEntry(5, s.addr1), + newIndTempEntry(5, s.addr2), + }, + }, + { + name: "five addrs fifth unsanctionable", + govPropID: 6, + addrs: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, addrUnsanctionable}, + expEvents: makeEvents(s.addr1, s.addr2, s.addr3, s.addr4), + expErr: []string{addrUnsanctionable.String(), "address cannot be sanctioned"}, + addedTempEntries: []*sanction.TemporaryEntry{ + newTempEntry(s.addr1, 6, true), + newTempEntry(s.addr2, 6, true), + newTempEntry(s.addr3, 6, true), + newTempEntry(s.addr4, 6, true), + }, + addedIndEntries: []*sanction.TemporaryEntry{ + newIndTempEntry(6, s.addr1), + newIndTempEntry(6, s.addr2), + newIndTempEntry(6, s.addr3), + newIndTempEntry(6, s.addr4), + }, + }, + { + name: "previous entry overwritten", + govPropID: 100, + addrs: []sdk.AccAddress{s.addr5}, + expEvents: makeEvents(s.addr5), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr5, 100, true)}, + addedIndEntries: nil, + }, + } + + previousTempEntries = s.GetAllTempEntries() + previousIndEntries = s.GetAllIndexTempEntries() + + for _, tc := range tests { + s.Run(tc.name, func() { + em := sdk.NewEventManager() + ctx := s.SdkCtx.WithEventManager(em) + var err error + testFunc := func() { + err = k.AddTemporarySanction(ctx, tc.govPropID, tc.addrs...) + } + s.Require().NotPanics(testFunc, "AddTemporarySanction") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "AddTemporarySanction error") + + events := em.Events() + s.Assert().Equal(tc.expEvents, events, "events emitted during AddTemporarySanction") + + currentTempEntries := s.GetAllTempEntries() + newTempEntries := getNewEntries(previousTempEntries, currentTempEntries) + s.Assert().ElementsMatch(tc.addedTempEntries, newTempEntries, "new temp entries, A = expected, B = actual") + previousTempEntries = currentTempEntries + + currentIndEntries := s.GetAllIndexTempEntries() + newIndEntries := getNewEntries(previousIndEntries, currentIndEntries) + s.Assert().ElementsMatch(tc.addedIndEntries, newIndEntries, "new index entries, A = expected, B = actual") + previousIndEntries = currentIndEntries + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_AddTemporaryUnsanction() { + makeEvents := func(addrs ...sdk.AccAddress) sdk.Events { + rv := sdk.Events{} + for _, addr := range addrs { + event, err := sdk.TypedEventToEvent(keeper.NewTempEvent(keeper.UnsanctionB, addr)) + s.Require().NoError(err, "TypedEventToEvent temp event") + rv = append(rv, event) + } + return rv + } + + var previousTempEntries []*sanction.TemporaryEntry + var previousIndEntries []*sanction.TemporaryEntry + + getNewEntries := func(previous, now []*sanction.TemporaryEntry) []*sanction.TemporaryEntry { + var rv []*sanction.TemporaryEntry + for _, entry := range now { + found := false + for _, known := range previous { + if entry.Address == known.Address && entry.ProposalId == known.ProposalId && entry.Status == known.Status { + found = true + break + } + } + if !found { + rv = append(rv, entry) + } + } + return rv + } + + // Start with addr5 having a temp sanction entry. + s.ReqOKAddTempSanct(100, "s.addr5", s.addr5) + + addrUnsanctionable := sdk.AccAddress("unsanctionable_addr_") + k := s.Keeper.WithUnsanctionableAddrs(map[string]bool{string(addrUnsanctionable): true}) + + tests := []struct { + name string + govPropID uint64 + addrs []sdk.AccAddress + expEvents sdk.Events + addedTempEntries []*sanction.TemporaryEntry + addedIndEntries []*sanction.TemporaryEntry + }{ + { + name: "no addrs", + addrs: []sdk.AccAddress{}, + expEvents: sdk.Events{}, + }, + { + name: "one addr", + govPropID: 1, + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr1, 1, false)}, + addedIndEntries: []*sanction.TemporaryEntry{newIndTempEntry(1, s.addr1)}, + }, + { + name: "same addr and gov prop as before", + govPropID: 1, + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + }, + { + name: "same addr new gov prop", + govPropID: 2, + addrs: []sdk.AccAddress{s.addr1}, + expEvents: makeEvents(s.addr1), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr1, 2, false)}, + addedIndEntries: []*sanction.TemporaryEntry{newIndTempEntry(2, s.addr1)}, + }, + { + name: "previous gov prop new addr", + govPropID: 1, + addrs: []sdk.AccAddress{s.addr2}, + expEvents: makeEvents(s.addr2), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr2, 1, false)}, + addedIndEntries: []*sanction.TemporaryEntry{newIndTempEntry(1, s.addr2)}, + }, + { + name: "three addrs", + govPropID: 3, + addrs: []sdk.AccAddress{s.addr1, s.addr2, s.addr3}, + expEvents: makeEvents(s.addr1, s.addr2, s.addr3), + addedTempEntries: []*sanction.TemporaryEntry{ + newTempEntry(s.addr1, 3, false), + newTempEntry(s.addr2, 3, false), + newTempEntry(s.addr3, 3, false), + }, + addedIndEntries: []*sanction.TemporaryEntry{ + newIndTempEntry(3, s.addr1), + newIndTempEntry(3, s.addr2), + newIndTempEntry(3, s.addr3), + }, + }, + { + name: "five addrs first unsanctionable", + govPropID: 4, + addrs: []sdk.AccAddress{addrUnsanctionable, s.addr2, s.addr3, s.addr4, s.addr5}, + expEvents: makeEvents(addrUnsanctionable, s.addr2, s.addr3, s.addr4, s.addr5), + addedTempEntries: []*sanction.TemporaryEntry{ + newTempEntry(addrUnsanctionable, 4, false), + newTempEntry(s.addr2, 4, false), + newTempEntry(s.addr3, 4, false), + newTempEntry(s.addr4, 4, false), + newTempEntry(s.addr5, 4, false), + }, + addedIndEntries: []*sanction.TemporaryEntry{ + newIndTempEntry(4, addrUnsanctionable), + newIndTempEntry(4, s.addr2), + newIndTempEntry(4, s.addr3), + newIndTempEntry(4, s.addr4), + newIndTempEntry(4, s.addr5), + }, + }, + { + name: "five addrs third unsanctionable", + govPropID: 5, + addrs: []sdk.AccAddress{s.addr1, s.addr2, addrUnsanctionable, s.addr4, s.addr5}, + expEvents: makeEvents(s.addr1, s.addr2, addrUnsanctionable, s.addr4, s.addr5), + addedTempEntries: []*sanction.TemporaryEntry{ + newTempEntry(s.addr1, 5, false), + newTempEntry(s.addr2, 5, false), + newTempEntry(addrUnsanctionable, 5, false), + newTempEntry(s.addr4, 5, false), + newTempEntry(s.addr5, 5, false), + }, + addedIndEntries: []*sanction.TemporaryEntry{ + newIndTempEntry(5, s.addr1), + newIndTempEntry(5, s.addr2), + newIndTempEntry(5, addrUnsanctionable), + newIndTempEntry(5, s.addr4), + newIndTempEntry(5, s.addr5), + }, + }, + { + name: "five addrs fifth unsanctionable", + govPropID: 6, + addrs: []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, addrUnsanctionable}, + expEvents: makeEvents(s.addr1, s.addr2, s.addr3, s.addr4, addrUnsanctionable), + addedTempEntries: []*sanction.TemporaryEntry{ + newTempEntry(s.addr1, 6, false), + newTempEntry(s.addr2, 6, false), + newTempEntry(s.addr3, 6, false), + newTempEntry(s.addr4, 6, false), + newTempEntry(addrUnsanctionable, 6, false), + }, + addedIndEntries: []*sanction.TemporaryEntry{ + newIndTempEntry(6, s.addr1), + newIndTempEntry(6, s.addr2), + newIndTempEntry(6, s.addr3), + newIndTempEntry(6, s.addr4), + newIndTempEntry(6, addrUnsanctionable), + }, + }, + { + name: "previous entry overwritten", + govPropID: 100, + addrs: []sdk.AccAddress{s.addr5}, + expEvents: makeEvents(s.addr5), + addedTempEntries: []*sanction.TemporaryEntry{newTempEntry(s.addr5, 100, false)}, + addedIndEntries: nil, + }, + } + + previousTempEntries = s.GetAllTempEntries() + previousIndEntries = s.GetAllIndexTempEntries() + + for _, tc := range tests { + s.Run(tc.name, func() { + em := sdk.NewEventManager() + ctx := s.SdkCtx.WithEventManager(em) + testFunc := func() error { + return k.AddTemporaryUnsanction(ctx, tc.govPropID, tc.addrs...) + } + s.RequireNotPanicsNoError(testFunc, "AddTemporaryUnsanction") + + events := em.Events() + s.Assert().Equal(tc.expEvents, events, "events emitted during AddTemporaryUnsanction") + + currentTempEntries := s.GetAllTempEntries() + newTempEntries := getNewEntries(previousTempEntries, currentTempEntries) + s.Assert().ElementsMatch(tc.addedTempEntries, newTempEntries, "new temp entries, A = expected, B = actual") + previousTempEntries = currentTempEntries + + currentIndEntries := s.GetAllIndexTempEntries() + newIndEntries := getNewEntries(previousIndEntries, currentIndEntries) + s.Assert().ElementsMatch(tc.addedIndEntries, newIndEntries, "new index entries, A = expected, B = actual") + previousIndEntries = currentIndEntries + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_getLatestTempEntry() { + store := s.GetStore() + // Add a few random entries with weird values, so they're easy to identify. + randAddr1 := sdk.AccAddress{0, 0, 0, 0, 0} + randAddr2 := s.addr1[:len(s.addr1)-1] + randAddr3 := s.addr1[1:] + randAddr4 := sdk.AccAddress{255, 255, 255, 255, 255, 255} + val := uint8(39) + for _, id := range []uint64{18, 19, 55, 100000} { + for _, addr := range []sdk.AccAddress{randAddr1, randAddr2, randAddr3, randAddr4} { + val += 1 + store.Set(keeper.CreateTemporaryKey(addr, id), []byte{val}) + store.Set(keeper.CreateProposalTempIndexKey(id, addr), []byte{val}) + } + } + + s.Run("nil addr", func() { + var expected []byte + var actual []byte + testFunc := func() { + actual = s.Keeper.GetLatestTempEntry(store, nil) + } + s.Require().NotPanics(testFunc, "getLatestTempEntry") + s.Assert().Equal(expected, actual, "getLatestTempEntry result") + }) + + s.Run("empty addr", func() { + var expected []byte + var actual []byte + testFunc := func() { + actual = s.Keeper.GetLatestTempEntry(store, sdk.AccAddress{}) + } + s.Require().NotPanics(testFunc, "getLatestTempEntry") + s.Assert().Equal(expected, actual, "getLatestTempEntry result") + }) + + s.Run("no entries", func() { + var expected []byte + var actual []byte + testFunc := func() { + actual = s.Keeper.GetLatestTempEntry(store, s.addr1) + } + s.Require().NotPanics(testFunc, "getLatestTempEntry") + s.Assert().Equal(expected, actual, "getLatestTempEntry result") + }) + + s.Run("one sanction entry", func() { + addr := sdk.AccAddress("one_entry_test_addr") + s.ReqOKAddTempSanct(1, "addr", addr) + + expected := []byte{keeper.SanctionB} + var actual []byte + testFunc := func() { + actual = s.Keeper.GetLatestTempEntry(store, addr) + } + s.Require().NotPanics(testFunc, "getLatestTempEntry") + s.Assert().Equal(expected, actual, "getLatestTempEntry result") + }) + + s.Run("one unsanction entry", func() { + addr := sdk.AccAddress("one_entry_test_addr2") + s.ReqOKAddTempUnsanct(2, "addr", addr) + + expected := []byte{keeper.UnsanctionB} + var actual []byte + testFunc := func() { + actual = s.Keeper.GetLatestTempEntry(store, addr) + } + s.Require().NotPanics(testFunc, "getLatestTempEntry") + s.Assert().Equal(expected, actual, "getLatestTempEntry result") + }) + + s.Run("three entries last sanction", func() { + addr := sdk.AccAddress("three_entry_sanctioned") + // Writing the one with the largest prop id first to show that later writes with smaller prop ids don't mess it up. + s.ReqOKAddTempSanct(5, "addr", addr) + s.ReqOKAddTempUnsanct(3, "addr", addr) + s.ReqOKAddTempUnsanct(4, "addr", addr) + + expected := []byte{keeper.SanctionB} + var actual []byte + testFunc := func() { + actual = s.Keeper.GetLatestTempEntry(store, addr) + } + s.Require().NotPanics(testFunc, "getLatestTempEntry") + s.Assert().Equal(expected, actual, "getLatestTempEntry result") + }) + + s.Run("three entries last unsanction", func() { + addr := sdk.AccAddress("three_entry_unsanctioned") + // Writing the one with the largest prop id first to show that later writes with smaller prop ids don't mess it up. + s.ReqOKAddTempUnsanct(8, "addr", addr) + s.ReqOKAddTempSanct(7, "addr", addr) + s.ReqOKAddTempSanct(6, "addr", addr) + + expected := []byte{keeper.UnsanctionB} + var actual []byte + testFunc := func() { + actual = s.Keeper.GetLatestTempEntry(store, addr) + } + s.Require().NotPanics(testFunc, "getLatestTempEntry") + s.Assert().Equal(expected, actual, "getLatestTempEntry result") + }) +} + +func (s *KeeperTestSuite) TestKeeper_DeleteGovPropTempEntries() { + // Add several temp entries for multiple gov props. + addrs := []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, s.addr5} + for id := uint64(1); id <= 10; id++ { + if id%2 == 1 { + s.ReqOKAddTempSanct(id, "addrs...", addrs...) + } else { + s.ReqOKAddTempUnsanct(id, "addrs...", addrs...) + } + } + + s.Run("unknown gov prop id", func() { + origTempEntries := s.GetAllTempEntries() + origIndEntries := s.GetAllIndexTempEntries() + + testFunc := func() { + s.Keeper.DeleteGovPropTempEntries(s.SdkCtx, 382892) + } + s.Require().NotPanics(testFunc, "DeleteGovPropTempEntries") + + finalTempEntries := s.GetAllTempEntries() + finalIndEntries := s.GetAllIndexTempEntries() + + s.Assert().ElementsMatch(origTempEntries, finalTempEntries, "temp entries, A = orig, B = after delete") + s.Assert().ElementsMatch(origIndEntries, finalIndEntries, "index entries, A = orig, B = after delete") + }) + + s.Run("id with sanction entries", func() { + origTempEntries := s.GetAllTempEntries() + origIndEntries := s.GetAllIndexTempEntries() + + idToDelete := uint64(5) + var expTempEntries []*sanction.TemporaryEntry + for _, entry := range origTempEntries { + if entry.ProposalId != idToDelete { + expTempEntries = append(expTempEntries, entry) + } + } + var expIndEntries []*sanction.TemporaryEntry + for _, entry := range origIndEntries { + if entry.ProposalId != idToDelete { + expIndEntries = append(expIndEntries, entry) + } + } + + testFunc := func() { + s.Keeper.DeleteGovPropTempEntries(s.SdkCtx, idToDelete) + } + s.Require().NotPanics(testFunc, "DeleteGovPropTempEntries") + + finalTempEntries := s.GetAllTempEntries() + finalIndEntries := s.GetAllIndexTempEntries() + + s.Assert().ElementsMatch(expTempEntries, finalTempEntries, "temp entries, A = expected, B = after delete") + s.Assert().ElementsMatch(expIndEntries, finalIndEntries, "index entries, A = expected, B = after delete") + }) + + s.Run("id with unsanction entries", func() { + origTempEntries := s.GetAllTempEntries() + origIndEntries := s.GetAllIndexTempEntries() + + idToDelete := uint64(2) + var expTempEntries []*sanction.TemporaryEntry + for _, entry := range origTempEntries { + if entry.ProposalId != idToDelete { + expTempEntries = append(expTempEntries, entry) + } + } + var expIndEntries []*sanction.TemporaryEntry + for _, entry := range origIndEntries { + if entry.ProposalId != idToDelete { + expIndEntries = append(expIndEntries, entry) + } + } + + testFunc := func() { + s.Keeper.DeleteGovPropTempEntries(s.SdkCtx, idToDelete) + } + s.Require().NotPanics(testFunc, "DeleteGovPropTempEntries") + + finalTempEntries := s.GetAllTempEntries() + finalIndEntries := s.GetAllIndexTempEntries() + + s.Assert().ElementsMatch(expTempEntries, finalTempEntries, "temp entries, A = expected, B = after delete") + s.Assert().ElementsMatch(expIndEntries, finalIndEntries, "index entries, A = expected, B = after delete") + }) +} + +func (s *KeeperTestSuite) TestKeeper_DeleteAddrTempEntries() { + // Add several temp entries for multiple gov props. + addrs := []sdk.AccAddress{s.addr1, s.addr2, s.addr3, s.addr4, s.addr5} + for id := uint64(1); id <= 10; id++ { + if id%2 == 1 { + s.ReqOKAddTempSanct(id, "addrs...", addrs...) + } else { + s.ReqOKAddTempUnsanct(id, "addrs...", addrs...) + } + } + + s.Run("unknown address", func() { + origTempEntries := s.GetAllTempEntries() + origIndEntries := s.GetAllIndexTempEntries() + + testFunc := func() { + s.Keeper.DeleteAddrTempEntries(s.SdkCtx, sdk.AccAddress("unknown_test_address")) + } + s.Require().NotPanics(testFunc, "DeleteAddrTempEntries") + + finalTempEntries := s.GetAllTempEntries() + finalIndEntries := s.GetAllIndexTempEntries() + + s.Assert().ElementsMatch(origTempEntries, finalTempEntries, "temp entries, A = orig, B = after delete") + s.Assert().ElementsMatch(origIndEntries, finalIndEntries, "index entries, A = orig, B = after delete") + }) + + s.Run("known addr", func() { + origTempEntries := s.GetAllTempEntries() + origIndEntries := s.GetAllIndexTempEntries() + + addrToDelete := s.addr3 + addrToDeleteStr := addrToDelete.String() + + var expTempEntries []*sanction.TemporaryEntry + for _, entry := range origTempEntries { + if entry.Address != addrToDeleteStr { + expTempEntries = append(expTempEntries, entry) + } + } + var expIndEntries []*sanction.TemporaryEntry + for _, entry := range origIndEntries { + if entry.Address != addrToDeleteStr { + expIndEntries = append(expIndEntries, entry) + } + } + + testFunc := func() { + s.Keeper.DeleteAddrTempEntries(s.SdkCtx, addrToDelete) + } + s.Require().NotPanics(testFunc, "DeleteAddrTempEntries") + + finalTempEntries := s.GetAllTempEntries() + finalIndEntries := s.GetAllIndexTempEntries() + + s.Assert().ElementsMatch(expTempEntries, finalTempEntries, "temp entries, A = expected, B = after delete") + s.Assert().ElementsMatch(expIndEntries, finalIndEntries, "index entries, A = expected, B = after delete") + }) +} + +func (s *KeeperTestSuite) TestKeeper_IterateSanctionedAddresses() { + s.Run("nothing to iterate", func() { + var addrs []sdk.AccAddress + cb := func(addr sdk.AccAddress) bool { + addrs = append(addrs, addr) + return false + } + testFunc := func() { + s.Keeper.IterateSanctionedAddresses(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateSanctionedAddresses") + s.Require().Empty(addrs, "addresses iterated") + }) + + // rAddr makes a "random" address that starts with 0xFF, 0xFF and an index. + // hopefully that makes them last when iterating, putting other entries first. + rAddr := func(i uint8) sdk.AccAddress { + return append(sdk.AccAddress{255, 255, i}, "_random_test_addr"...) + } + randomAddrs := []sdk.AccAddress{rAddr(0), rAddr(1), rAddr(2), rAddr(3), rAddr(4)} + // Setup: + // all the randomAddrs = sanctioned + // addr1 = sanctioned + // addr2 = sanctioned then unsanctioned + // addr3 = temp sanctioned + // addr4 = temp unsanctioned + s.ReqOKAddPermSanct("s.addr1, s.addr2", s.addr1, s.addr2) + s.ReqOKAddPermSanct("randomAddrs...", randomAddrs...) + s.ReqOKAddPermUnsanct("s.addr2", s.addr2) + s.ReqOKAddTempSanct(1, "s.addr3", s.addr3) + s.ReqOKAddTempUnsanct(1, "s.addr4", s.addr4) + + s.Run("get all entries", func() { + expected := []sdk.AccAddress{s.addr1} + expected = append(expected, randomAddrs...) + var addrs []sdk.AccAddress + cb := func(addr sdk.AccAddress) bool { + addrs = append(addrs, addr) + return false + } + testFunc := func() { + s.Keeper.IterateSanctionedAddresses(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateSanctionedAddresses") + s.Assert().Equal(expected, addrs, "sanctioned addresses iterated") + }) + + s.Run("stop after third", func() { + expected := []sdk.AccAddress{s.addr1} + expected = append(expected, randomAddrs...) + expected = expected[:3] + var addrs []sdk.AccAddress + cb := func(addr sdk.AccAddress) bool { + addrs = append(addrs, addr) + return len(addrs) >= 3 + } + testFunc := func() { + s.Keeper.IterateSanctionedAddresses(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateSanctionedAddresses") + s.Assert().Equal(expected, addrs, "sanctioned addresses iterated") + }) + + s.Run("stop after first", func() { + expected := []sdk.AccAddress{s.addr1} + var addrs []sdk.AccAddress + cb := func(addr sdk.AccAddress) bool { + addrs = append(addrs, addr) + return true + } + testFunc := func() { + s.Keeper.IterateSanctionedAddresses(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateSanctionedAddresses") + s.Assert().Equal(expected, addrs, "sanctioned addresses iterated") + }) +} + +func (s *KeeperTestSuite) TestKeeper_IterateTemporaryEntries() { + s.Run("nothing to iterate", func() { + var addrs []sdk.AccAddress + cb := func(addr sdk.AccAddress, _ uint64, _ bool) bool { + addrs = append(addrs, addr) + return false + } + testFunc := func() { + s.Keeper.IterateTemporaryEntries(s.SdkCtx, nil, cb) + } + s.Require().NotPanics(testFunc, "IterateTemporaryEntries") + s.Require().Empty(addrs, "addresses iterated") + }) + + // rAddr makes a "random" address that starts with 0xFF, 0xFF and an index. + // hopefully that makes them last when iterating, putting other entries first. + rAddr := func(i uint8) sdk.AccAddress { + return append(sdk.AccAddress{255, 255, i}, "_random_test_addr"...) + } + randomSanctAddrs := []sdk.AccAddress{rAddr(0), rAddr(1), rAddr(2), rAddr(3), rAddr(4)} + randomUnsanctAddrs := []sdk.AccAddress{rAddr(5), rAddr(6), rAddr(7), rAddr(8), rAddr(9)} + mixedAddr := rAddr(10) + // Setup: + // addr1 = sanctioned + // addr2 = sanctioned then unsanctioned + // addr3 = temp sanctioned id 1 + // addr4 = temp unsanctioned id 1 + // all the randomSanctAddrs = temp sanctioned for gov prop 1 and 2 + // first two randomSanctAddrs = temp unsanctioned for gov prop 3 too + // all the randomUnsanctAddrs = temp unsanctioned for gov prop 1 and 2 + // first two randomUnsanctAddrs = temp unsanctioned for gov prop 3 too + // mixedAddr = temp sanction for 1 and 3, temp unsanction for 2 + s.ReqOKAddPermSanct("s.addr1, s.addr2", s.addr1, s.addr2) + s.ReqOKAddPermUnsanct("s.addr2", s.addr2) + s.ReqOKAddTempSanct(1, "s.addr3", s.addr3) + s.ReqOKAddTempUnsanct(1, "s.addr4", s.addr4) + s.ReqOKAddTempSanct(1, "randomSanctAddrs...", randomSanctAddrs...) + s.ReqOKAddTempSanct(2, "randomSanctAddrs...", randomSanctAddrs...) + s.ReqOKAddTempSanct(3, "randomSanctAddrs[:2]...", randomSanctAddrs[:2]...) + s.ReqOKAddTempUnsanct(1, "randomUnsanctAddrs...", randomUnsanctAddrs...) + s.ReqOKAddTempUnsanct(2, "randomUnsanctAddrs...", randomUnsanctAddrs...) + s.ReqOKAddTempUnsanct(3, "randomUnsanctAddrs[:2]...", randomUnsanctAddrs[:2]...) + s.ReqOKAddTempSanct(1, "mixedAddr", mixedAddr) + s.ReqOKAddTempUnsanct(2, "mixedAddr", mixedAddr) + s.ReqOKAddTempSanct(3, "mixedAddr", mixedAddr) + + // sortEntries sorts the provided entries in place and also returns that slice. + // They are ordered the same way they're expected to be in state. + // This is horribly inefficient. Do not use it outside unit tests. + sortEntries := func(entries []*sanction.TemporaryEntry) []*sanction.TemporaryEntry { + sort.Slice(entries, func(i, j int) bool { + addrI, err := sdk.AccAddressFromBech32(entries[i].Address) + s.Require().NoError(err, "AccAddressFromBech32(%q)", entries[i].Address) + addrJ, err := sdk.AccAddressFromBech32(entries[j].Address) + s.Require().NoError(err, "AccAddressFromBech32(%q)", entries[j].Address) + addrCmp := bytes.Compare(addrI, addrJ) + if addrCmp < 0 { + return true + } + return addrCmp == 0 && entries[i].ProposalId < entries[j].ProposalId + }) + return entries + } + + addr3Entries := sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(s.addr3, 1, true), + }) + addr4Entries := sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(s.addr4, 1, false), + }) + randomSanctEntries := [][]*sanction.TemporaryEntry{ + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomSanctAddrs[0], 1, true), + newTempEntry(randomSanctAddrs[0], 2, true), + newTempEntry(randomSanctAddrs[0], 3, true), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomSanctAddrs[1], 1, true), + newTempEntry(randomSanctAddrs[1], 2, true), + newTempEntry(randomSanctAddrs[1], 3, true), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomSanctAddrs[2], 1, true), + newTempEntry(randomSanctAddrs[2], 2, true), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomSanctAddrs[3], 1, true), + newTempEntry(randomSanctAddrs[3], 2, true), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomSanctAddrs[4], 1, true), + newTempEntry(randomSanctAddrs[4], 2, true), + }), + } + randomUnsanctEntries := [][]*sanction.TemporaryEntry{ + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomUnsanctAddrs[0], 1, false), + newTempEntry(randomUnsanctAddrs[0], 2, false), + newTempEntry(randomUnsanctAddrs[0], 3, false), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomUnsanctAddrs[1], 1, false), + newTempEntry(randomUnsanctAddrs[1], 2, false), + newTempEntry(randomUnsanctAddrs[1], 3, false), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomUnsanctAddrs[2], 1, false), + newTempEntry(randomUnsanctAddrs[2], 2, false), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomUnsanctAddrs[3], 1, false), + newTempEntry(randomUnsanctAddrs[3], 2, false), + }), + sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(randomUnsanctAddrs[4], 1, false), + newTempEntry(randomUnsanctAddrs[4], 2, false), + }), + } + mixedEntries := sortEntries([]*sanction.TemporaryEntry{ + newTempEntry(mixedAddr, 1, true), + newTempEntry(mixedAddr, 2, false), + newTempEntry(mixedAddr, 3, true), + }) + + var allEntries []*sanction.TemporaryEntry + allEntries = append(allEntries, addr3Entries...) + allEntries = append(allEntries, addr4Entries...) + for _, entries := range randomSanctEntries { + allEntries = append(allEntries, entries...) + } + for _, entries := range randomUnsanctEntries { + allEntries = append(allEntries, entries...) + } + allEntries = append(allEntries, mixedEntries...) + allEntries = sortEntries(allEntries) + + s.Run("stop after third", func() { + expected := allEntries[:3] + var entries []*sanction.TemporaryEntry + cb := func(addr sdk.AccAddress, govPropId uint64, isSanctioned bool) bool { + entries = append(entries, newTempEntry(addr, govPropId, isSanctioned)) + return len(entries) >= 3 + } + testFunc := func() { + s.Keeper.IterateTemporaryEntries(s.SdkCtx, nil, cb) + } + s.Require().NotPanics(testFunc, "IterateTemporaryEntries") + s.Assert().Equal(expected, entries, "entries iterated") + }) + + s.Run("stop after first", func() { + expected := allEntries[:1] + var entries []*sanction.TemporaryEntry + cb := func(addr sdk.AccAddress, govPropId uint64, isSanctioned bool) bool { + entries = append(entries, newTempEntry(addr, govPropId, isSanctioned)) + return true + } + testFunc := func() { + s.Keeper.IterateTemporaryEntries(s.SdkCtx, nil, cb) + } + s.Require().NotPanics(testFunc, "IterateTemporaryEntries") + s.Assert().Equal(expected, entries, "entries iterated") + }) + + tests := []struct { + name string + addr sdk.AccAddress + expected []*sanction.TemporaryEntry + }{ + { + name: "nil addr", + addr: nil, + expected: allEntries, + }, + { + name: "addr with only one is sanction", + addr: s.addr3, + expected: addr3Entries, + }, + { + name: "addr with only one is unsanction", + addr: s.addr4, + expected: addr4Entries, + }, + { + name: "addr with 3 sanction entries", + addr: randomSanctAddrs[0], + expected: randomSanctEntries[0], + }, + { + name: "addr with 3 unsanction entries", + addr: randomUnsanctAddrs[0], + expected: randomUnsanctEntries[0], + }, + { + name: "addr with mixed entries", + addr: mixedAddr, + expected: mixedEntries, + }, + { + name: "first byte of a random addr", + addr: sdk.AccAddress{randomSanctAddrs[0][0]}, + expected: nil, + }, + { + name: "first byte of addr 3", + addr: sdk.AccAddress{s.addr3[0]}, + expected: nil, + }, + { + name: "first byte of addr 4", + addr: sdk.AccAddress{s.addr4[0]}, + expected: nil, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var entries []*sanction.TemporaryEntry + cb := func(addr sdk.AccAddress, govPropId uint64, isSanctioned bool) bool { + entries = append(entries, newTempEntry(addr, govPropId, isSanctioned)) + return false + } + testFunc := func() { + s.Keeper.IterateTemporaryEntries(s.SdkCtx, tc.addr, cb) + } + s.Require().NotPanics(testFunc, "IterateTemporaryEntries") + s.Assert().Equal(tc.expected, entries, "entries iterated") + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_IterateProposalIndexEntries() { + s.Run("nothing to iterate", func() { + var addrs []sdk.AccAddress + cb := func(_ uint64, addr sdk.AccAddress) bool { + addrs = append(addrs, addr) + return false + } + testFunc := func() { + s.Keeper.IterateProposalIndexEntries(s.SdkCtx, nil, cb) + } + s.Require().NotPanics(testFunc, "IterateProposalIndexEntries") + s.Require().Empty(addrs, "addresses iterated") + }) + + // rAddr makes a "random" address that starts with 0xFF, 0xFF and an index. + // hopefully that makes them last when iterating, putting other entries first. + rAddr := func(i uint8) sdk.AccAddress { + return append(sdk.AccAddress{255, 255, i}, "_random_test_addr"...) + } + randomSanctAddrs := []sdk.AccAddress{rAddr(0), rAddr(1), rAddr(2), rAddr(3), rAddr(4)} + randomUnsanctAddrs := []sdk.AccAddress{rAddr(5), rAddr(6), rAddr(7), rAddr(8), rAddr(9)} + mixedAddr := rAddr(10) + + // Setup: + // id 1 = sanctioned: addr3, all randomSanctAddrs mixed addr, unsanctioned: addr4, all randomUnsanctAddrs + // id 2 = sanctioned: addr3, all randomSanctAddrs mixed addr + // id 3 = unsanctioned: addr4, all randomUnsanctAddrs, mixed addr + s.ReqOKAddPermSanct("s.addr1, s.addr2", s.addr1, s.addr2) + s.ReqOKAddPermUnsanct("s.addr2", s.addr2) + s.ReqOKAddTempSanct(1, "s.addr3, mixedAddr", s.addr3, mixedAddr) + s.ReqOKAddTempSanct(1, "randomSanctAddrs...", randomSanctAddrs...) + s.ReqOKAddTempUnsanct(1, "s.addr4", s.addr4) + s.ReqOKAddTempUnsanct(1, "randomUnsanctAddrs...", randomUnsanctAddrs...) + s.ReqOKAddTempSanct(2, "s.addr3, mixedAddr", s.addr3, mixedAddr) + s.ReqOKAddTempSanct(2, "randomSanctAddrs...", randomSanctAddrs...) + s.ReqOKAddTempUnsanct(3, "s.addr4, mixedAddr", s.addr4, mixedAddr) + s.ReqOKAddTempUnsanct(3, "randomUnsanctAddrs...", randomUnsanctAddrs...) + + // sortEntries sorts the provided entries in place and also returns that slice. + // They are ordered the same way they're expected to be in state. + // This is horribly inefficient. Do not use it outside unit tests. + sortEntries := func(entries []*sanction.TemporaryEntry) []*sanction.TemporaryEntry { + sort.Slice(entries, func(i, j int) bool { + if entries[i].ProposalId < entries[j].ProposalId { + return true + } + if entries[i].ProposalId > entries[j].ProposalId { + return false + } + addrI, err := sdk.AccAddressFromBech32(entries[i].Address) + s.Require().NoError(err, "AccAddressFromBech32(%q)", entries[i].Address) + addrJ, err := sdk.AccAddressFromBech32(entries[j].Address) + s.Require().NoError(err, "AccAddressFromBech32(%q)", entries[j].Address) + return bytes.Compare(addrI, addrJ) < 0 + }) + return entries + } + + prop1Entries := sortEntries([]*sanction.TemporaryEntry{ + newIndTempEntry(1, s.addr3), + newIndTempEntry(1, s.addr4), + newIndTempEntry(1, mixedAddr), + newIndTempEntry(1, randomSanctAddrs[0]), + newIndTempEntry(1, randomSanctAddrs[1]), + newIndTempEntry(1, randomSanctAddrs[2]), + newIndTempEntry(1, randomSanctAddrs[3]), + newIndTempEntry(1, randomSanctAddrs[4]), + newIndTempEntry(1, randomUnsanctAddrs[0]), + newIndTempEntry(1, randomUnsanctAddrs[1]), + newIndTempEntry(1, randomUnsanctAddrs[2]), + newIndTempEntry(1, randomUnsanctAddrs[3]), + newIndTempEntry(1, randomUnsanctAddrs[4]), + }) + prop2Entries := sortEntries([]*sanction.TemporaryEntry{ + newIndTempEntry(2, s.addr3), + newIndTempEntry(2, mixedAddr), + newIndTempEntry(2, randomSanctAddrs[0]), + newIndTempEntry(2, randomSanctAddrs[1]), + newIndTempEntry(2, randomSanctAddrs[2]), + newIndTempEntry(2, randomSanctAddrs[3]), + newIndTempEntry(2, randomSanctAddrs[4]), + }) + prop3Entries := sortEntries([]*sanction.TemporaryEntry{ + newIndTempEntry(3, s.addr4), + newIndTempEntry(3, mixedAddr), + newIndTempEntry(3, randomUnsanctAddrs[0]), + newIndTempEntry(3, randomUnsanctAddrs[1]), + newIndTempEntry(3, randomUnsanctAddrs[2]), + newIndTempEntry(3, randomUnsanctAddrs[3]), + newIndTempEntry(3, randomUnsanctAddrs[4]), + }) + + var allEntries []*sanction.TemporaryEntry + allEntries = append(allEntries, prop1Entries...) + allEntries = append(allEntries, prop2Entries...) + allEntries = append(allEntries, prop3Entries...) + allEntries = sortEntries(allEntries) + + s.Run("stop after third", func() { + expected := allEntries[:3] + var entries []*sanction.TemporaryEntry + cb := func(govPropId uint64, addr sdk.AccAddress) bool { + entries = append(entries, newIndTempEntry(govPropId, addr)) + return len(entries) >= 3 + } + testFunc := func() { + s.Keeper.IterateProposalIndexEntries(s.SdkCtx, nil, cb) + } + s.Require().NotPanics(testFunc, "IterateProposalIndexEntries") + s.Assert().Equal(expected, entries, "entries iterated") + }) + + s.Run("stop after first", func() { + expected := allEntries[:1] + var entries []*sanction.TemporaryEntry + cb := func(govPropId uint64, addr sdk.AccAddress) bool { + entries = append(entries, newIndTempEntry(govPropId, addr)) + return true + } + testFunc := func() { + s.Keeper.IterateProposalIndexEntries(s.SdkCtx, nil, cb) + } + s.Require().NotPanics(testFunc, "IterateProposalIndexEntries") + s.Assert().Equal(expected, entries, "entries iterated") + }) + + id := func(i uint64) *uint64 { + return &i + } + + tests := []struct { + name string + govPropId *uint64 + expected []*sanction.TemporaryEntry + }{ + { + name: "nil id", + govPropId: nil, + expected: allEntries, + }, + { + name: "id without entries.", + govPropId: id(392023), + expected: nil, + }, + { + name: "id with mixed entries.", + govPropId: id(1), + expected: prop1Entries, + }, + { + name: "id with only sanctions", + govPropId: id(2), + expected: prop2Entries, + }, + { + name: "id with only unsanctions", + govPropId: id(3), + expected: prop3Entries, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var entries []*sanction.TemporaryEntry + cb := func(govPropId uint64, addr sdk.AccAddress) bool { + entries = append(entries, newIndTempEntry(govPropId, addr)) + return false + } + testFunc := func() { + s.Keeper.IterateProposalIndexEntries(s.SdkCtx, tc.govPropId, cb) + } + s.Require().NotPanics(testFunc, "IterateProposalIndexEntries") + s.Assert().Equal(tc.expected, entries, "entries iterated") + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_IsAddrThatCannotBeSanctioned() { + k := s.Keeper.WithUnsanctionableAddrs(map[string]bool{ + string(s.addr1): true, + string(s.addr2): true, + string(s.addr3): false, // I'm not sure how this would happen, but whatever. + }) + + tests := []struct { + name string + addr sdk.AccAddress + exp bool + }{ + { + name: "unsanctionable addr 1", + addr: s.addr1, + exp: true, + }, + { + name: "unsanctionable addr 2", + addr: s.addr2, + exp: true, + }, + { + name: "sanctionable addr", + addr: s.addr3, + exp: false, + }, + { + name: "nil", + addr: nil, + exp: false, + }, + { + name: "empty", + addr: nil, + exp: false, + }, + { + name: "random", + addr: sdk.AccAddress("random"), + exp: false, + }, + { + name: "other addr", + addr: s.addr5, + exp: false, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var actual bool + testFunc := func() { + actual = k.IsAddrThatCannotBeSanctioned(tc.addr) + } + s.Require().NotPanics(testFunc, "IsAddrThatCannotBeSanctioned") + s.Assert().Equal(tc.exp, actual, "IsAddrThatCannotBeSanctioned result") + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_GetSetParams() { + // Change the defaults from their norm so, we know they've got values we can check against. + origSanct := sanction.DefaultImmediateSanctionMinDeposit + origUnsanct := sanction.DefaultImmediateUnsanctionMinDeposit + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origSanct + sanction.DefaultImmediateUnsanctionMinDeposit = origUnsanct + }() + sanction.DefaultImmediateSanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("sanct", 93)) + sanction.DefaultImmediateUnsanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("usanct", 49)) + + store := s.GetStore() + s.Require().NotPanics(func() { + s.Keeper.DeleteParam(store, keeper.ParamNameImmediateSanctionMinDeposit) + }, "deleteParam(%q)", keeper.ParamNameImmediateSanctionMinDeposit) + s.Require().NotPanics(func() { + s.Keeper.DeleteParam(store, keeper.ParamNameImmediateUnsanctionMinDeposit) + }, "deleteParam(%q)", keeper.ParamNameImmediateUnsanctionMinDeposit) + + s.Run("get with no entries in store", func() { + expected := sanction.DefaultParams() + var actual *sanction.Params + testGet := func() { + actual = s.Keeper.GetParams(s.SdkCtx) + } + s.Require().NotPanics(testGet, "GetParams") + s.Assert().Equal(expected, actual, "GetParams result") + }) + + tests := []struct { + name string + setInput *sanction.Params + getOutput *sanction.Params + }{ + { + name: "params with nils", + setInput: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + getOutput: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + { + name: "empty coins", + setInput: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{}, + ImmediateUnsanctionMinDeposit: sdk.Coins{}, + }, + getOutput: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + { + name: "only sanction", + setInput: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("sanct", 66)), + ImmediateUnsanctionMinDeposit: nil, + }, + getOutput: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("sanct", 66)), + ImmediateUnsanctionMinDeposit: nil, + }, + }, + { + name: "only unsanction", + setInput: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("unsuns", 5555)), + }, + getOutput: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("unsuns", 5555)), + }, + }, + { + name: "with both", + setInput: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("sss", 123)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("uuu", 456)), + }, + getOutput: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("sss", 123)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("uuu", 456)), + }, + }, + { + name: "nil", + setInput: nil, + getOutput: sanction.DefaultParams(), + }, + } + + paramsUpdatedEvent, eventErr := sdk.TypedEventToEvent(&sanction.EventParamsUpdated{}) + s.Require().NoError(eventErr, "sdk.TypedEventToEvent(&sanction.EventParamsUpdated{})") + expectedEvents := sdk.Events{paramsUpdatedEvent} + + for _, tc := range tests { + s.Run(tc.name, func() { + em := sdk.NewEventManager() + ctx := s.SdkCtx.WithEventManager(em) + s.RequireNotPanicsNoError(func() error { + return s.Keeper.SetParams(ctx, tc.setInput) + }, "SetParams") + actualEvents := em.Events() + s.Assert().Equal(expectedEvents, actualEvents, "events emitted during SetParams") + var actual *sanction.Params + testGet := func() { + actual = s.Keeper.GetParams(ctx) + } + s.Require().NotPanics(testGet, "GetParams") + if !s.Assert().Equal(tc.getOutput, actual, "GetParams result") { + if actual != nil { + // it failed, but the coins aren't easy to read in that output, so be helpful here. + s.Assert().Equal(tc.getOutput.ImmediateSanctionMinDeposit.String(), + actual.ImmediateSanctionMinDeposit.String(), "ImmediateSanctionMinDeposit") + s.Assert().Equal(tc.getOutput.ImmediateUnsanctionMinDeposit.String(), + actual.ImmediateUnsanctionMinDeposit.String(), "ImmediateUnsanctionMinDeposit") + } + } + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_IterateParams() { + type kvPair struct { + key string + value string + } + + store := s.GetStore() + s.Require().NotPanics(func() { + s.Keeper.DeleteParam(store, keeper.ParamNameImmediateSanctionMinDeposit) + }, "deleteParam(%q)", keeper.ParamNameImmediateSanctionMinDeposit) + s.Require().NotPanics(func() { + s.Keeper.DeleteParam(store, keeper.ParamNameImmediateUnsanctionMinDeposit) + }, "deleteParam(%q)", keeper.ParamNameImmediateUnsanctionMinDeposit) + + s.Run("no entries", func() { + var actual []kvPair + cb := func(name, value string) bool { + actual = append(actual, kvPair{key: name, value: value}) + return false + } + testFunc := func() { + s.Keeper.IterateParams(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateParams") + s.Assert().Empty(actual, "params iterated") + }) + + // They should be iterated in alphabetical order by key, so they're ordered as such here. + expected := []kvPair{ + {key: "param1", value: "value for param1"}, + {key: "param2", value: "param2 value"}, + {key: "param3", value: "the param3 value"}, + {key: "param4", value: "This is param4's value."}, + {key: "param5", value: "5valuecoin"}, + } + // Write them in reverse order from expected. + for i := len(expected) - 1; i >= 0; i-- { + s.Require().NotPanics(func() { + s.Keeper.SetParam(store, expected[i].key, expected[i].value) + }, "setParam(%q, %q)", expected[i].key, expected[i].value) + } + + s.Run("full iteration", func() { + var actual []kvPair + cb := func(name, value string) bool { + actual = append(actual, kvPair{key: name, value: value}) + return false + } + testFunc := func() { + s.Keeper.IterateParams(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateParams") + s.Assert().Equal(expected, actual, "params iterated") + }) + + s.Run("stop after 3", func() { + exp := []kvPair{expected[0], expected[1], expected[2]} + var actual []kvPair + cb := func(name, value string) bool { + actual = append(actual, kvPair{key: name, value: value}) + return len(actual) >= len(exp) + } + testFunc := func() { + s.Keeper.IterateParams(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateParams") + s.Assert().Equal(exp, actual, "params iterated") + }) + + s.Run("stop after 1", func() { + exp := []kvPair{expected[0]} + var actual []kvPair + cb := func(name, value string) bool { + actual = append(actual, kvPair{key: name, value: value}) + return len(actual) >= len(exp) + } + testFunc := func() { + s.Keeper.IterateParams(s.SdkCtx, cb) + } + s.Require().NotPanics(testFunc, "IterateParams") + s.Assert().Equal(exp, actual, "params iterated") + }) +} + +func (s *KeeperTestSuite) TestKeeper_GetImmediateSanctionMinDeposit() { + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + s.Require().NoError(err, "ParseCoinsNormalized(%q)", coins) + return rv + } + + // Set the defaults to different things to help sus out problems. + origS := sanction.DefaultImmediateSanctionMinDeposit + origU := sanction.DefaultImmediateUnsanctionMinDeposit + sanction.DefaultImmediateSanctionMinDeposit = cz("3dflts") + sanction.DefaultImmediateUnsanctionMinDeposit = cz("6dfltu") + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origS + sanction.DefaultImmediateUnsanctionMinDeposit = origU + }() + + // prep is something that should be done at the start of a test case. + type prep struct { + value string + set bool + delete bool + } + + store := s.GetStore() + testFuncSetSanct := func() { + s.Keeper.SetParam(store, keeper.ParamNameImmediateUnsanctionMinDeposit, "98unsanct") + } + s.Require().NotPanics(testFuncSetSanct, "setParam(%q, %q)", keeper.ParamNameImmediateUnsanctionMinDeposit, "98unsanct") + + tests := []struct { + name string + prep []prep + exp sdk.Coins + }{ + { + name: "not in store", + prep: []prep{{delete: true}}, + exp: sanction.DefaultImmediateSanctionMinDeposit, + }, + { + name: "empty string in store", + prep: []prep{{value: "", set: true}}, + exp: nil, + }, + { + name: "3sanct in store", + prep: []prep{{value: "3sanct", set: true}}, + exp: cz("3sanct"), + }, + { + name: "bad value in store", + prep: []prep{{value: "how how", set: true}}, + exp: sanction.DefaultImmediateSanctionMinDeposit, + }, + { + name: "not in store again", + prep: []prep{{delete: true}}, + exp: sanction.DefaultImmediateSanctionMinDeposit, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + for _, p := range tc.prep { + if p.set { + testFuncSet := func() { + s.Keeper.SetParam(store, keeper.ParamNameImmediateSanctionMinDeposit, p.value) + } + s.Require().NotPanics(testFuncSet, "setParam(%q, %q)", keeper.ParamNameImmediateSanctionMinDeposit, p.value) + } + if p.delete { + testFuncDelete := func() { + s.Keeper.DeleteParam(store, keeper.ParamNameImmediateSanctionMinDeposit) + } + s.Require().NotPanics(testFuncDelete, "deleteParam(%q)", keeper.ParamNameImmediateSanctionMinDeposit) + } + } + var actual sdk.Coins + testFunc := func() { + actual = s.Keeper.GetImmediateSanctionMinDeposit(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetImmediateSanctionMinDeposit") + s.Assert().Equal(tc.exp, actual, "GetImmediateSanctionMinDeposit result") + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_GetImmediateUnsanctionMinDeposit() { + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + s.Require().NoError(err, "ParseCoinsNormalized(%q)", coins) + return rv + } + + // Set the defaults to different things to help sus out problems. + origS := sanction.DefaultImmediateSanctionMinDeposit + origU := sanction.DefaultImmediateUnsanctionMinDeposit + sanction.DefaultImmediateSanctionMinDeposit = cz("2dflts") + sanction.DefaultImmediateUnsanctionMinDeposit = cz("5dfltu") + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origS + sanction.DefaultImmediateUnsanctionMinDeposit = origU + }() + + // prep is something that should be done at the start of a test case. + type prep struct { + value string + set bool + delete bool + } + + store := s.GetStore() + testFuncSetSanct := func() { + s.Keeper.SetParam(store, keeper.ParamNameImmediateSanctionMinDeposit, "99sanct") + } + s.Require().NotPanics(testFuncSetSanct, "setParam(%q, %q)", keeper.ParamNameImmediateSanctionMinDeposit, "99sanct") + + tests := []struct { + name string + prep []prep + exp sdk.Coins + }{ + { + name: "not in store", + prep: []prep{{delete: true}}, + exp: sanction.DefaultImmediateUnsanctionMinDeposit, + }, + { + name: "empty string in store", + prep: []prep{{value: "", set: true}}, + exp: nil, + }, + { + name: "3unsanct in store", + prep: []prep{{value: "3unsanct", set: true}}, + exp: cz("3unsanct"), + }, + { + name: "bad value in store", + prep: []prep{{value: "what what", set: true}}, + exp: sanction.DefaultImmediateUnsanctionMinDeposit, + }, + { + name: "not in store again", + prep: []prep{{delete: true}}, + exp: sanction.DefaultImmediateUnsanctionMinDeposit, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + for _, p := range tc.prep { + if p.set { + testFuncSet := func() { + s.Keeper.SetParam(store, keeper.ParamNameImmediateUnsanctionMinDeposit, p.value) + } + s.Require().NotPanics(testFuncSet, "setParam(%q, %q)", keeper.ParamNameImmediateUnsanctionMinDeposit, p.value) + } + if p.delete { + testFuncDelete := func() { + s.Keeper.DeleteParam(store, keeper.ParamNameImmediateUnsanctionMinDeposit) + } + s.Require().NotPanics(testFuncDelete, "deleteParam(%q)", keeper.ParamNameImmediateUnsanctionMinDeposit) + } + } + var actual sdk.Coins + testFunc := func() { + actual = s.Keeper.GetImmediateUnsanctionMinDeposit(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "GetImmediateUnsanctionMinDeposit") + s.Assert().Equal(tc.exp, actual, "GetImmediateUnsanctionMinDeposit result") + }) + } +} + +func (s *KeeperTestSuite) TestKeeper_getSetDeleteParam() { + store := s.GetStore() + var toDelete []string + + newParamName := "new param" + s.Run("get param that does not exist", func() { + var actual string + var ok bool + testFuncGet := func() { + actual, ok = s.Keeper.GetParam(store, newParamName) + } + s.Require().NotPanics(testFuncGet, "getParam(%q)", newParamName) + s.Assert().Equal("", actual, "getParam(%q) result string", newParamName) + s.Assert().False(ok, "getParam(%q) result bool", newParamName) + }) + + newParamValue := "new param value" + s.Run("set param new param", func() { + var alreadyExists bool + testFuncGet := func() { + _, alreadyExists = s.Keeper.GetParam(store, newParamName) + } + s.Require().NotPanics(testFuncGet, "getParam(%q) on param that should not exist yet", newParamName) + s.Require().False(alreadyExists, "getParam(%q) result bool on param that should not exist yet", newParamName) + testFuncSet := func() { + s.Keeper.SetParam(store, newParamName, newParamValue) + } + s.Require().NotPanics(testFuncSet, "setParam(%q, %q)", newParamName, newParamValue) + toDelete = append(toDelete, newParamName) + }) + + s.Run("get param new param", func() { + var actual string + var ok bool + testFuncGet := func() { + actual, ok = s.Keeper.GetParam(store, newParamName) + } + s.Require().NotPanics(testFuncGet, "getParam(%q)", newParamName) + s.Require().True(ok, "getParam(%q) result bool", newParamName) + s.Require().Equal(newParamValue, actual, "getParam(%q) result string", newParamName) + }) + + s.Run("set and get fruits", func() { + name := "fruits" + value := "bananas, apples, pears, papaya, pineapple, pomegranate" + testFuncSet := func() { + s.Keeper.SetParam(store, name, value) + } + s.Require().NotPanics(testFuncSet, "setParam(%q, %q)", name, value) + toDelete = append(toDelete, name) + var actual string + var ok bool + testFuncGet := func() { + actual, ok = s.Keeper.GetParam(store, name) + } + s.Require().NotPanics(testFuncGet, "getParam(%q)", name) + s.Assert().True(ok, "getParam(%q) result bool", name) + s.Assert().Equal(value, actual, "getParam(%q) result string", name) + }) + + s.Run("get new param again", func() { + var actual string + var ok bool + testFuncGet := func() { + actual, ok = s.Keeper.GetParam(store, newParamName) + } + s.Require().NotPanics(testFuncGet, "getParam(%q)", newParamName) + s.Require().True(ok, "getParam(%q) result bool", newParamName) + s.Require().Equal(newParamValue, actual, "getParam(%q) result string", newParamName) + }) + + s.Run("update and get first param", func() { + var alreadyExists bool + testFuncGet1 := func() { + _, alreadyExists = s.Keeper.GetParam(store, newParamName) + } + s.Require().NotPanics(testFuncGet1, "getParam(%q) on param that should not exist yet", newParamName) + s.Require().True(alreadyExists, "getParam(%q) result bool on param that should not exist yet", newParamName) + newParamValue = "this is an updated new param value" + testFuncSet := func() { + s.Keeper.SetParam(store, newParamName, newParamValue) + } + s.Require().NotPanics(testFuncSet, "setParam(%q, %q)", newParamName, newParamValue) + + var actual string + var ok bool + testFuncGet2 := func() { + actual, ok = s.Keeper.GetParam(store, newParamName) + } + s.Require().NotPanics(testFuncGet2, "getParam(%q)", newParamName) + s.Require().True(ok, "getParam(%q) result bool", newParamName) + s.Require().Equal(newParamValue, actual, "getParam(%q) result string", newParamName) + }) + + for _, name := range toDelete { + s.Run("delete "+name, func() { + testDeleteFunc := func() { + s.Keeper.DeleteParam(store, name) + } + s.Require().NotPanics(testDeleteFunc, "deleteParam(%q)", name) + var actual string + var ok bool + testGetFunc := func() { + actual, ok = s.Keeper.GetParam(store, name) + } + s.Require().NotPanics(testGetFunc, "getParam(%q)", name) + s.Assert().False(ok, "getParam(%q) result bool", name) + s.Assert().Equal("", actual, "getParam(%q) result string", name) + }) + } + + s.Run("delete new param again", func() { + testDeleteFunc := func() { + s.Keeper.DeleteParam(store, newParamName) + } + s.Require().NotPanics(testDeleteFunc, "deleteParam(%q)", newParamName) + }) +} + +func (s *KeeperTestSuite) TestKeeper_getParamAsCoinsOrDefault() { + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + s.Require().NoError(err, "ParseCoinsNormalized(%q)", coins) + return rv + } + + tests := []struct { + name string + setFirst bool + setTo string + param string + dflt sdk.Coins + exp sdk.Coins + }{ + { + name: "unknown name", + setFirst: false, + param: "unknown", + dflt: cz("1default"), + exp: cz("1default"), + }, + { + name: "param not a coin", + setFirst: true, + setTo: "not a coin", + param: "not-a-coin", + dflt: cz("1default"), + exp: cz("1default"), + }, + { + name: "empty string", + setFirst: true, + setTo: "", + param: "empty-string", + dflt: cz("1default"), + exp: nil, + }, + { + name: "coin string one denom", + setFirst: true, + setTo: "5acoin", + param: "one-denom", + dflt: cz("1default"), + exp: cz("5acoin"), + }, + { + name: "coin string two denoms", + setFirst: true, + setTo: "4acoin,10walnut", + param: "two-denom", + dflt: cz("1default"), + exp: cz("4acoin,10walnut"), + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + if tc.setFirst { + store := s.GetStore() + s.Keeper.SetParam(store, tc.param, tc.setTo) + defer func() { + s.Keeper.DeleteParam(store, tc.param) + }() + } + var actual sdk.Coins + testFunc := func() { + actual = s.Keeper.GetParamAsCoinsOrDefault(s.SdkCtx, tc.param, tc.dflt) + } + s.Require().NotPanics(testFunc, "getParamAsCoinsOrDefault") + s.Assert().Equal(tc.exp, actual, "getParamAsCoinsOrDefault result") + }) + } +} + +func (s *KeeperTestSuite) Test_toCoinsOrDefault() { + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + s.Require().NoError(err, "ParseCoinsNormalized(%q)", coins) + return rv + } + tests := []struct { + name string + coins string + dflt sdk.Coins + exp sdk.Coins + }{ + { + name: "empty string", + coins: "", + dflt: cz("1defaultcoin,2banana"), + exp: nil, + }, + { + name: "bad string", + coins: "bad", + dflt: cz("1goodcoin,8defaults"), + exp: cz("1goodcoin,8defaults"), + }, + { + name: "one denom", + coins: "1particle", + dflt: cz("8quark"), + exp: cz("1particle"), + }, + { + name: "two denoms", + coins: "50handcoin,99gloves", + dflt: cz("42towels"), + exp: cz("50handcoin,99gloves"), + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var actual sdk.Coins + testFunc := func() { + actual = keeper.OnlyTestsToCoinsOrDefault(tc.coins, tc.dflt) + } + s.Require().NotPanics(testFunc, "toCoinsOrDefault") + s.Assert().Equal(tc.exp, actual, "toCoinsOrDefault result") + }) + } +} + +func (s *KeeperTestSuite) Test_toAccAddrs() { + tests := []struct { + name string + addrs []string + exp []sdk.AccAddress + expErr []string + }{ + { + name: "nil list", + addrs: nil, + exp: []sdk.AccAddress{}, + }, + { + name: "empty list", + addrs: []string{}, + exp: []sdk.AccAddress{}, + }, + { + name: "one good address", + addrs: []string{sdk.AccAddress("one good address").String()}, + exp: []sdk.AccAddress{sdk.AccAddress("one good address")}, + }, + { + name: "one bad address", + addrs: []string{"one bad address"}, + expErr: []string{"invalid address[0]", "decoding bech32 failed"}, + }, + { + name: "five addresses all good", + addrs: []string{ + sdk.AccAddress("good address 0").String(), + sdk.AccAddress("good address 1").String(), + sdk.AccAddress("good address 2").String(), + sdk.AccAddress("good address 3").String(), + sdk.AccAddress("good address 4").String(), + }, + exp: []sdk.AccAddress{ + sdk.AccAddress("good address 0"), + sdk.AccAddress("good address 1"), + sdk.AccAddress("good address 2"), + sdk.AccAddress("good address 3"), + sdk.AccAddress("good address 4"), + }, + }, + { + name: "five addresses first bad", + addrs: []string{ + "bad address 0", + sdk.AccAddress("good address 1").String(), + sdk.AccAddress("good address 2").String(), + sdk.AccAddress("good address 3").String(), + sdk.AccAddress("good address 4").String(), + }, + expErr: []string{"invalid address[0]", "decoding bech32 failed"}, + }, + { + name: "five addresses third bad", + addrs: []string{ + sdk.AccAddress("good address 0").String(), + sdk.AccAddress("good address 1").String(), + "bad address 2", + sdk.AccAddress("good address 3").String(), + sdk.AccAddress("good address 4").String(), + }, + expErr: []string{"invalid address[2]", "decoding bech32 failed"}, + }, + { + name: "five addresses fifth bad", + addrs: []string{ + sdk.AccAddress("good address 0").String(), + sdk.AccAddress("good address 1").String(), + sdk.AccAddress("good address 2").String(), + sdk.AccAddress("good address 3").String(), + "bad address 4", + }, + expErr: []string{"invalid address[4]", "decoding bech32 failed"}, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + var actual []sdk.AccAddress + var err error + testFunc := func() { + actual, err = keeper.OnlyTestsToAccAddrs(tc.addrs) + } + s.Require().NotPanics(testFunc, "toAccAddrs") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "toAccAddrs error") + s.Assert().Equal(tc.exp, actual, "toAccAddrs result") + }) + } +} diff --git a/x/sanction/keeper/keys.go b/x/sanction/keeper/keys.go new file mode 100644 index 0000000000..f207ee08f8 --- /dev/null +++ b/x/sanction/keeper/keys.go @@ -0,0 +1,192 @@ +package keeper + +import ( + "fmt" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/address" + "github.com/cosmos/gogoproto/proto" + + "github.com/provenance-io/provenance/x/sanction" +) + +// Keys for store prefixes +// Items are stored with the following keys: +// +// Params entry: +// - 0x00 -> +// Sanctioned addresses: +// - 0x01 -> 0x01 +// Temporarily sanctioned or unsanctioned addresses: +// - 0x02 -> 0x01 or 0x00 +// Proposal id temp sanction index: +// - 0x03 -> 0x00 or 0x01 +var ( + ParamsPrefix = []byte{0x00} + SanctionedPrefix = []byte{0x01} + TemporaryPrefix = []byte{0x02} + ProposalIndexPrefix = []byte{0x03} +) + +const ( + ParamNameImmediateSanctionMinDeposit = "immediate_sanction_min_deposit" + ParamNameImmediateUnsanctionMinDeposit = "immediate_unsanction_min_deposit" +) + +// ConcatBz creates a single byte slice consisting of the two provided byte slices. +// Like append() but always returns a new slice with its own underlying array. +func ConcatBz(bz1, bz2 []byte) []byte { + return concatBzPlusCap(bz1, bz2, 0) +} + +// concatBzPlusCap creates a single byte slice consisting of the two provided byte slices with some extra capacity in the underlying array. +// The idea is that you can append(...) to the result of this without it needed a new underlying array. +func concatBzPlusCap(bz1, bz2 []byte, extraCap int) []byte { + l1 := len(bz1) + l2 := len(bz2) + rv := make([]byte, l1+l2, l1+l2+extraCap) + if l1 > 0 { + copy(rv, bz1) + } + if l2 > 0 { + copy(rv[l1:], bz2) + } + return rv +} + +// ParseLengthPrefixedBz parses a length-prefixed byte slice into those bytes and any leftover bytes. +func ParseLengthPrefixedBz(bz []byte) ([]byte, []byte) { + addrLen, addrLenEndIndex := sdk.ParseLengthPrefixedBytes(bz, 0, 1) + addr, addrEndIndex := sdk.ParseLengthPrefixedBytes(bz, addrLenEndIndex+1, int(addrLen[0])) + var remainder []byte + if len(bz) > addrEndIndex+1 { + remainder = bz[addrEndIndex+1:] + } + return addr, remainder +} + +// CreateParamKey creates the key to use for a param with the given name. +// +// - 0x00 -> +func CreateParamKey(name string) []byte { + return ConcatBz(ParamsPrefix, []byte(name)) +} + +// ParseParamKey extracts the param name from the provided key. +func ParseParamKey(bz []byte) string { + return string(bz[1:]) +} + +// CreateSanctionedAddrKey creates the sanctioned address key for the provided address. +// +// - 0x01 +func CreateSanctionedAddrKey(addr sdk.AccAddress) []byte { + return ConcatBz(SanctionedPrefix, address.MustLengthPrefix(addr)) +} + +// ParseSanctionedAddrKey extracts the address from the provided sanctioned address key. +func ParseSanctionedAddrKey(key []byte) sdk.AccAddress { + addr, _ := ParseLengthPrefixedBz(key[1:]) + return addr +} + +// CreateTemporaryAddrPrefix creates a key prefix for a temporarily sanctioned/unsanctioned address. +// +// If an address is provided: +// - 0x02 +// If an address isn't provided: +// - 0x02 +func CreateTemporaryAddrPrefix(addr sdk.AccAddress) []byte { + if len(addr) == 0 { + return ConcatBz(TemporaryPrefix, []byte{}) + } + return concatBzPlusCap(TemporaryPrefix, address.MustLengthPrefix(addr), 8) +} + +// CreateTemporaryKey creates a key for a temporarily sanctioned/unsanctioned address associated with the given governance proposal id. +// +// - 0x02 +func CreateTemporaryKey(addr sdk.AccAddress, govPropID uint64) []byte { + pre := CreateTemporaryAddrPrefix(addr) + idBz := sdk.Uint64ToBigEndian(govPropID) + if len(pre)+8 == cap(pre) { + return append(CreateTemporaryAddrPrefix(addr), idBz...) + } + return ConcatBz(pre, idBz) +} + +// ParseTemporaryKey extracts the address and gov prop id from the provided temporary key. +func ParseTemporaryKey(key []byte) (sdk.AccAddress, uint64) { + addr, govPropIDBz := ParseLengthPrefixedBz(key[1:]) + govPropID := sdk.BigEndianToUint64(govPropIDBz) + return addr, govPropID +} + +const ( + // SanctionB is a byte representing a sanction (either temporary or permanent). + SanctionB = 0x01 + // UnsanctionB is a byte representing an unsanction (probably temporary). + UnsanctionB = 0x00 +) + +// IsSanctionBz returns true if the provided byte slice indicates a temporary sanction. +func IsSanctionBz(bz []byte) bool { + return len(bz) == 1 && bz[0] == SanctionB +} + +// IsUnsanctionBz returns true if the provided byte slice indicates a temporary unsanction. +func IsUnsanctionBz(bz []byte) bool { + return len(bz) == 1 && bz[0] == UnsanctionB +} + +// ToTempStatus converts a temporary entry value byte slice into a TempStatus value. +func ToTempStatus(bz []byte) sanction.TempStatus { + if len(bz) == 1 { + switch bz[0] { + case SanctionB: + return sanction.TEMP_STATUS_SANCTIONED + case UnsanctionB: + return sanction.TEMP_STATUS_UNSANCTIONED + } + } + return sanction.TEMP_STATUS_UNSPECIFIED +} + +// NewTempEvent creates the temp event for the given type val (e.g. SanctionB or UnsanctionB) with the given address. +func NewTempEvent(typeVal byte, addr sdk.AccAddress) proto.Message { + switch typeVal { + case SanctionB: + return sanction.NewEventTempAddressSanctioned(addr) + case UnsanctionB: + return sanction.NewEventTempAddressUnsanctioned(addr) + default: + panic(fmt.Errorf("unknown temp value byte: %x", typeVal)) + } +} + +// CreateProposalTempIndexPrefix creates a key prefix for a proposal temporary index key. +// +// If a govPropID is provided: +// - 0x03 +// If a govPropID isn't provided: +// - 0x03 +func CreateProposalTempIndexPrefix(govPropID *uint64) []byte { + if govPropID == nil { + return ConcatBz(ProposalIndexPrefix, []byte{}) + } + return concatBzPlusCap(ProposalIndexPrefix, sdk.Uint64ToBigEndian(*govPropID), 33) +} + +// CreateProposalTempIndexKey creates a key for a proposal id + addr temporary index entry. +// +// 0x03 +func CreateProposalTempIndexKey(govPropID uint64, addr sdk.AccAddress) []byte { + return append(CreateProposalTempIndexPrefix(&govPropID), address.MustLengthPrefix(addr)...) +} + +// ParseProposalTempIndexKey extracts the gov prop id and address from the provided proposal temp index key. +func ParseProposalTempIndexKey(key []byte) (uint64, sdk.AccAddress) { + govPropID := sdk.BigEndianToUint64(key[1:9]) + addr, _ := ParseLengthPrefixedBz(key[9:]) + return govPropID, addr +} diff --git a/x/sanction/keeper/keys_test.go b/x/sanction/keeper/keys_test.go new file mode 100644 index 0000000000..dba91e033d --- /dev/null +++ b/x/sanction/keeper/keys_test.go @@ -0,0 +1,1076 @@ +package keeper_test + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/address" + "github.com/cosmos/gogoproto/proto" + "github.com/provenance-io/provenance/testutil/assertions" + + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +func TestPrefixValues(t *testing.T) { + prefixes := []struct { + name string + prefix []byte + expected []byte + }{ + {name: "ParamsPrefix", prefix: keeper.ParamsPrefix, expected: []byte{0x00}}, + {name: "SanctionedPrefix", prefix: keeper.SanctionedPrefix, expected: []byte{0x01}}, + {name: "TemporaryPrefix", prefix: keeper.TemporaryPrefix, expected: []byte{0x02}}, + {name: "ProposalIndexPrefix", prefix: keeper.ProposalIndexPrefix, expected: []byte{0x03}}, + } + + for i, p := range prefixes { + t.Run(fmt.Sprintf("%s expected value", p.name), func(t *testing.T) { + assert.Equal(t, p.prefix, p.expected, "prefix value") + + for j, p2 := range prefixes { + if i == j { + continue + } + assert.NotEqual(t, p.prefix, p2.prefix, "%v = %s = %s", p.prefix, p.name, p2.name) + } + }) + } +} + +func TestConstValues(t *testing.T) { + consts := []struct { + name string + value string + exptected string + }{ + { + name: "ParamNameImmediateSanctionMinDeposit", + value: keeper.ParamNameImmediateSanctionMinDeposit, + exptected: "immediate_sanction_min_deposit", + }, + { + name: "ParamNameImmediateUnsanctionMinDeposit", + value: keeper.ParamNameImmediateUnsanctionMinDeposit, + exptected: "immediate_unsanction_min_deposit", + }, + } + + for i, c := range consts { + t.Run(fmt.Sprintf("%s", c.name), func(t *testing.T) { + assert.Equal(t, c.exptected, c.value, "variable value") + + for j, c2 := range consts { + if i == j { + continue + } + assert.NotEqual(t, c.value, c2.value, "%q = %s = %s", c.value, c.name, c2.name) + } + }) + } + +} + +func TestConcatBz(t *testing.T) { + type testCase struct { + name string + bz1 []byte + bz2 []byte + expected []byte + } + copyTestCase := func(tc testCase) testCase { + rv := testCase{ + name: tc.name, + bz1: nil, + bz2: nil, + expected: nil, + } + if tc.bz1 != nil { + rv.bz1 = make([]byte, len(tc.bz1), cap(tc.bz1)) + copy(rv.bz1, tc.bz1) + } + if tc.bz2 != nil { + rv.bz2 = make([]byte, len(tc.bz2), cap(tc.bz2)) + copy(rv.bz2, tc.bz2) + } + if tc.expected != nil { + rv.expected = make([]byte, len(tc.expected), cap(tc.expected)) + copy(rv.expected, tc.expected) + } + return rv + } + + tests := []testCase{ + { + name: "nil nil", + bz1: nil, + bz2: nil, + expected: []byte{}, + }, + { + name: "nil empty", + bz1: nil, + bz2: []byte{}, + expected: []byte{}, + }, + { + name: "empty nil", + bz1: []byte{}, + bz2: nil, + expected: []byte{}, + }, + { + name: "empty empty", + bz1: []byte{}, + bz2: []byte{}, + expected: []byte{}, + }, + { + name: "nil 1 byte", + bz1: nil, + bz2: []byte{'a'}, + expected: []byte{'a'}, + }, + { + name: "empty 1 byte", + bz1: []byte{}, + bz2: []byte{'a'}, + expected: []byte{'a'}, + }, + { + name: "nil 4 bytes", + bz1: nil, + bz2: []byte("test"), + expected: []byte("test"), + }, + { + name: "empty 4 bytes", + bz1: []byte{}, + bz2: []byte("test"), + expected: []byte("test"), + }, + { + name: "1 byte nil", + bz1: []byte{'a'}, + bz2: nil, + expected: []byte{'a'}, + }, + { + name: "1 byte empty", + bz1: []byte{'a'}, + bz2: []byte{}, + expected: []byte{'a'}, + }, + { + name: "4 bytes nil", + bz1: []byte("test"), + bz2: nil, + expected: []byte("test"), + }, + { + name: "4 bytes empty", + bz1: []byte("test"), + bz2: []byte{}, + expected: []byte("test"), + }, + { + name: "1 byte 1 byte", + bz1: []byte{'a'}, + bz2: []byte{'b'}, + expected: []byte{'a', 'b'}, + }, + { + name: "1 byte 4 bytes", + bz1: []byte{'a'}, + bz2: []byte("test"), + expected: []byte("atest"), + }, + { + name: "4 bytes 1 byte", + bz1: []byte("word"), + bz2: []byte{'x'}, + expected: []byte("wordx"), + }, + { + name: "5 bytes 5 bytes", + bz1: []byte("hello"), + bz2: []byte("world"), + expected: []byte("helloworld"), + }, + } + + for _, tcOrig := range tests { + passes := t.Run(tcOrig.name, func(t *testing.T) { + tc := copyTestCase(tcOrig) + var actual []byte + testFunc := func() { + actual = keeper.ConcatBz(tc.bz1, tc.bz2) + } + require.NotPanics(t, testFunc, "ConcatBz") + assert.Equal(t, tc.expected, actual, "ConcatBz result") + assert.Equal(t, len(tc.expected), len(actual), "ConcatBz result length") + assert.Equal(t, cap(tc.expected), cap(actual), "ConcatBz result capacity") + assert.Equal(t, len(actual), cap(actual), "ConcatBz result length and capacity") + assert.Equal(t, tcOrig.bz1, tc.bz1, "input 1 before and after ConcatBz") + assert.Equal(t, len(tcOrig.bz1), len(tc.bz1), "input 1 length before and after ConcatBz") + assert.Equal(t, cap(tcOrig.bz1), cap(tc.bz1), "input 1 capacity before and after ConcatBz") + assert.Equal(t, tcOrig.bz2, tc.bz2, "input 2 before and after ConcatBz") + assert.Equal(t, len(tcOrig.bz2), len(tc.bz2), "input 2 length before and after ConcatBz") + assert.Equal(t, cap(tcOrig.bz2), cap(tc.bz2), "input 2 capacity before and after ConcatBz") + if cap(tc.bz1) > 0 { + if len(tc.bz1) > 0 { + if tc.bz1[0] == 'x' { + tc.bz1[0] = 'y' + } else { + tc.bz1[0] = 'x' + } + assert.Equal(t, tc.expected, actual, "ConcatBz result after changing original bz1 input") + } + if len(tc.bz1) < cap(tc.bz1) { + tc.bz1 = tc.bz1[:len(tc.bz1)+1] + tc.bz1[len(tc.bz1)] = 'x' + assert.Equal(t, tc.expected, actual, "ConcatBz result after extending original bz1 input") + } + } + if cap(tc.bz2) > 0 { + if len(tc.bz2) > 0 { + if tc.bz2[0] == 'x' { + tc.bz2[0] = 'y' + } else { + tc.bz2[0] = 'x' + } + assert.Equal(t, tc.expected, actual, "ConcatBz result after changing original bz2 input") + } + if len(tc.bz2) < cap(tc.bz2) { + tc.bz2 = tc.bz2[:len(tc.bz2)+1] + tc.bz2[len(tc.bz2)] = 'x' + assert.Equal(t, tc.expected, actual, "ConcatBz result after extending original bz2 input") + } + } + }) + if !passes { + continue + } + + if len(tcOrig.expected) > 0 { + t.Run(tcOrig.name+" changing result", func(t *testing.T) { + tc := copyTestCase(tcOrig) + actual := keeper.ConcatBz(tc.bz1, tc.bz2) + if len(actual) > 0 { + if actual[0] == 'x' { + actual[0] = 'y' + } else { + actual[0] = 'x' + } + assert.Equal(t, tcOrig.bz1, tc.bz1, "original bz1 after changing first result byte") + assert.Equal(t, len(tcOrig.bz1), len(tc.bz1), "original bz1 length after changing first result byte") + assert.Equal(t, cap(tcOrig.bz1), cap(tc.bz1), "original bz1 capacity after changing first result byte") + } + if len(actual) > 1 { + if actual[len(actual)-1] == 'x' { + actual[len(actual)-1] = 'y' + } else { + actual[len(actual)-1] = 'x' + } + assert.Equal(t, tcOrig.bz2, tc.bz2, "original bz2 after changing last result byte") + assert.Equal(t, len(tcOrig.bz2), len(tc.bz2), "original bz2 length after changing last result byte") + assert.Equal(t, cap(tcOrig.bz2), cap(tc.bz2), "original bz2 capacity after changing last result byte") + } + }) + } + + t.Run(tcOrig.name+" plus cap", func(t *testing.T) { + tc := copyTestCase(tcOrig) + plusCap := 5 + actual := keeper.OnlyTestsConcatBzPlusCap(tc.bz1, tc.bz2, plusCap) + assert.Equal(t, tc.expected, actual, "concatBzPlusCap result") + assert.Equal(t, len(tc.expected), len(actual), "concatBzPlusCap result length") + assert.Equal(t, cap(tc.expected)+plusCap, cap(actual), "concatBzPlusCap result capacity") + actual = actual[:len(actual)+1] + actual[len(actual)-1] = 'x' + assert.Equal(t, tcOrig.bz1, tc.bz1, "input 1 after extending result from concatBzPlusCap") + assert.Equal(t, tcOrig.bz2, tc.bz2, "input 2 after extending result from concatBzPlusCap") + }) + } +} + +func TestParseLengthPrefixedBz(t *testing.T) { + tests := []struct { + name string + bz []byte + expAddr []byte + expSuffix []byte + expPanic string + }{ + { + name: "nil", + bz: nil, + expPanic: "expected key of length at least 1, got 0", + }, + { + name: "empty", + bz: []byte{}, + expPanic: "expected key of length at least 1, got 0", + }, + { + name: "only length byte of 0", + bz: []byte{0}, + expAddr: []byte{}, + expSuffix: nil, + }, + { + name: "only length byte of 1", + bz: []byte{1}, + expPanic: "expected key of length at least 2, got 1", + }, + { + name: "length byte 20 but one short", + bz: []byte{20, + '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', + '1', '2', '3', '4', '5', '6', '7', '8', '9', + }, + expPanic: "expected key of length at least 21, got 20", + }, + { + name: "length byte of 0 with extra", + bz: []byte{0, 'a', 'b', 'c'}, + expAddr: []byte{}, + expSuffix: []byte("abc"), + }, + { + name: "20 bytes no suffix", + bz: address.MustLengthPrefix([]byte("test_20_byte_addr___")), + expAddr: []byte("test_20_byte_addr___"), + expSuffix: nil, + }, + { + name: "20 bytes with suffix", + bz: append(address.MustLengthPrefix([]byte("test_20_byte_addr_2_")), []byte("something")...), + expAddr: sdk.AccAddress("test_20_byte_addr_2_"), + expSuffix: []byte("something"), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var addr, suffix []byte + testFunc := func() { + addr, suffix = keeper.ParseLengthPrefixedBz(tc.bz) + } + if len(tc.expPanic) > 0 { + require.PanicsWithValue(t, tc.expPanic, testFunc, "ParseLengthPrefixedBz") + } else { + require.NotPanics(t, testFunc, "ParseLengthPrefixedBz") + assert.Equal(t, tc.expAddr, addr, "ParseLengthPrefixedBz result addr") + assert.Equal(t, tc.expSuffix, suffix, "ParseLengthPrefixedBz result suffix") + } + }) + } +} + +func TestCreateParamKey(t *testing.T) { + tests := []struct { + name string + input string + exp []byte + }{ + { + name: "control", + input: "a word", + exp: append([]byte{keeper.ParamsPrefix[0]}, "a word"...), + }, + { + name: "empty", + input: "", + exp: keeper.ParamsPrefix, + }, + { + name: "ParamNameImmediateSanctionMinDeposit", + input: keeper.ParamNameImmediateSanctionMinDeposit, + exp: append([]byte{keeper.ParamsPrefix[0]}, keeper.ParamNameImmediateSanctionMinDeposit...), + }, + { + name: "ParamNameImmediateUnsanctionMinDeposit", + input: keeper.ParamNameImmediateUnsanctionMinDeposit, + exp: append([]byte{keeper.ParamsPrefix[0]}, keeper.ParamNameImmediateUnsanctionMinDeposit...), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []byte + testFunc := func() { + actual = keeper.CreateParamKey(tc.input) + } + require.NotPanics(t, testFunc, "CreateParamKey") + assert.Equal(t, tc.exp, actual, "CreateParamKey result") + }) + } +} + +func TestParseParamKey(t *testing.T) { + tests := []struct { + name string + input []byte + exp string + }{ + { + name: "control", + input: append([]byte{keeper.ParamsPrefix[0]}, "a word"...), + exp: "a word", + }, + { + name: "empty", + input: keeper.ParamsPrefix, + exp: "", + }, + { + name: "ParamNameImmediateSanctionMinDeposit", + input: keeper.CreateParamKey(keeper.ParamNameImmediateSanctionMinDeposit), + exp: keeper.ParamNameImmediateSanctionMinDeposit, + }, + { + name: "ParamNameImmediateUnsanctionMinDeposit", + input: keeper.CreateParamKey(keeper.ParamNameImmediateUnsanctionMinDeposit), + exp: keeper.ParamNameImmediateUnsanctionMinDeposit, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual string + testFunc := func() { + actual = keeper.ParseParamKey(tc.input) + } + require.NotPanics(t, testFunc, "ParseParamKey") + assert.Equal(t, tc.exp, actual, "ParseParamKey result") + }) + } +} + +func TestCreateSanctionedAddrKey(t *testing.T) { + tests := []struct { + name string + addr sdk.AccAddress + exp []byte + }{ + { + name: "nil addr", + addr: nil, + exp: []byte{keeper.SanctionedPrefix[0]}, + }, + { + name: "4 byte address", + addr: sdk.AccAddress("test"), + exp: append([]byte{keeper.SanctionedPrefix[0], 4}, "test"...), + }, + { + name: "20 byte address", + addr: sdk.AccAddress("test_20_byte_address"), + exp: append([]byte{keeper.SanctionedPrefix[0], 20}, "test_20_byte_address"...), + }, + { + name: "32 byte address", + addr: sdk.AccAddress("test_____32_____byte_____address"), + exp: append([]byte{keeper.SanctionedPrefix[0], 32}, "test_____32_____byte_____address"...), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []byte + testFunc := func() { + actual = keeper.CreateSanctionedAddrKey(tc.addr) + } + require.NotPanics(t, testFunc, "CreateSanctionedAddrKey") + assert.Equal(t, tc.exp, actual, "CreateSanctionedAddrKey result") + }) + } +} + +func TestParseSanctionedAddrKey(t *testing.T) { + tests := []struct { + name string + key []byte + exp sdk.AccAddress + expPanic string + }{ + { + name: "nil", + key: nil, + expPanic: "runtime error: slice bounds out of range [1:0]", + }, + { + name: "empty", + key: []byte{}, + expPanic: "runtime error: slice bounds out of range [1:0]", + }, + { + name: "just one byte", + key: []byte{'f'}, // doesn't matter what that byte is. + expPanic: "expected key of length at least 1, got 0", + }, + { + name: "empty addr", + key: []byte{'g', 0}, + exp: sdk.AccAddress{}, + }, + { + name: "4 byte addr", + key: []byte{'P', 4, 't', 'e', 's', 't'}, + exp: sdk.AccAddress("test"), + }, + { + name: "20 byte addr", + key: keeper.CreateSanctionedAddrKey(sdk.AccAddress("this_test_addr_is_20")), + exp: sdk.AccAddress("this_test_addr_is_20"), + }, + { + name: "32 byte addr", + key: keeper.CreateSanctionedAddrKey(sdk.AccAddress("this_test_addr_is_longer_with_32")), + exp: sdk.AccAddress("this_test_addr_is_longer_with_32"), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual sdk.AccAddress + testFunc := func() { + actual = keeper.ParseSanctionedAddrKey(tc.key) + } + assertions.RequirePanicEquals(t, testFunc, tc.expPanic, "ParseSanctionedAddrKey") + assert.Equal(t, tc.exp, actual, "ParseSanctionedAddrKey result") + }) + } +} + +func TestCreateTemporaryAddrPrefix(t *testing.T) { + tests := []struct { + name string + addr sdk.AccAddress + exp []byte + expCap int + }{ + { + name: "nil addr", + addr: nil, + exp: []byte{keeper.TemporaryPrefix[0]}, + expCap: 1, + }, + { + name: "4 byte address", + addr: sdk.AccAddress("test"), + exp: append([]byte{keeper.TemporaryPrefix[0], 4}, "test"...), + expCap: 14, + }, + { + name: "20 byte address", + addr: sdk.AccAddress("test_20_byte_address"), + exp: append([]byte{keeper.TemporaryPrefix[0], 20}, "test_20_byte_address"...), + expCap: 30, + }, + { + name: "32 byte address", + addr: sdk.AccAddress("test_____32_____byte_____address"), + exp: append([]byte{keeper.TemporaryPrefix[0], 32}, "test_____32_____byte_____address"...), + expCap: 42, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []byte + testFunc := func() { + actual = keeper.CreateTemporaryAddrPrefix(tc.addr) + } + require.NotPanics(t, testFunc, "CreateSanctionedAddrKey") + assert.Equal(t, tc.exp, actual, "CreateSanctionedAddrKey result") + assert.Equal(t, tc.expCap, cap(actual), "CreateSanctionedAddrKey result capacity") + }) + } +} + +func TestCreateTemporaryKey(t *testing.T) { + tests := []struct { + name string + addr sdk.AccAddress + govId uint64 + exp []byte + expCap int + }{ + { + name: "nil addr id 0", + addr: nil, + govId: 0, + exp: []byte{keeper.TemporaryPrefix[0], 0, 0, 0, 0, 0, 0, 0, 0}, + expCap: 9, + }, + { + name: "4 byte address id 1", + addr: sdk.AccAddress("test"), + govId: 1, + exp: append([]byte{keeper.TemporaryPrefix[0], 4}, append([]byte("test"), 0, 0, 0, 0, 0, 0, 0, 1)...), + expCap: 14, + }, + { + name: "20 byte address id 2", + addr: sdk.AccAddress("test_20_byte_address"), + govId: 2, + exp: append([]byte{keeper.TemporaryPrefix[0], 20}, append([]byte("test_20_byte_address"), 0, 0, 0, 0, 0, 0, 0, 2)...), + expCap: 30, + }, + { + name: "32 byte address id 3", + addr: sdk.AccAddress("test_____32_____byte_____address"), + govId: 3, + exp: append([]byte{keeper.TemporaryPrefix[0], 32}, append([]byte("test_____32_____byte_____address"), 0, 0, 0, 0, 0, 0, 0, 3)...), + expCap: 42, + }, + { + name: "20 byte address id 1000", + addr: sdk.AccAddress("test_20_byte_address"), + govId: 1000, + exp: append([]byte{keeper.TemporaryPrefix[0], 20}, append([]byte("test_20_byte_address"), 0, 0, 0, 0, 0, 0, 3, 232)...), + expCap: 30, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []byte + testFunc := func() { + actual = keeper.CreateTemporaryKey(tc.addr, tc.govId) + } + require.NotPanics(t, testFunc, "CreateTemporaryKey") + assert.Equal(t, tc.exp, actual, "CreateTemporaryKey result") + assert.Equal(t, tc.expCap, cap(actual), "CreateTemporaryKey result capacity") + }) + } +} + +func TestParseTemporaryKey(t *testing.T) { + tests := []struct { + name string + key []byte + expAddr sdk.AccAddress + expId uint64 + expPanic string + }{ + { + name: "nil", + key: nil, + expPanic: "runtime error: slice bounds out of range [1:0]", + }, + { + name: "empty", + key: []byte{}, + expPanic: "runtime error: slice bounds out of range [1:0]", + }, + { + name: "just one byte", + key: []byte{'f'}, // doesn't matter what that byte is. + expPanic: "expected key of length at least 1, got 0", + }, + { + name: "empty addr only 7 id bytes", + key: []byte{'g', 0, 0, 0, 0, 0, 0, 0, 77}, + expPanic: "runtime error: index out of range [7] with length 7", + }, + { + name: "empty addr id 1", + key: []byte{'g', 0, 0, 0, 0, 0, 0, 0, 0, 1}, + expAddr: sdk.AccAddress{}, + expId: 1, + }, + { + name: "4 byte addr id 2", + key: []byte{'P', 4, 't', 'e', 's', 't', 0, 0, 0, 0, 0, 0, 0, 2}, + expAddr: sdk.AccAddress("test"), + expId: 2, + }, + { + name: "20 byte addr id 3", + key: keeper.CreateTemporaryKey(sdk.AccAddress("this_test_addr_is_20"), 3), + expAddr: sdk.AccAddress("this_test_addr_is_20"), + expId: 3, + }, + { + name: "32 byte addr id 4", + key: keeper.CreateTemporaryKey(sdk.AccAddress("this_test_addr_is_longer_with_32"), 4), + expAddr: sdk.AccAddress("this_test_addr_is_longer_with_32"), + expId: 4, + }, + { + name: "20 byte addr id 1000", + key: keeper.CreateTemporaryKey(sdk.AccAddress("this_test_addr_is_20"), 1000), + expAddr: sdk.AccAddress("this_test_addr_is_20"), + expId: 1000, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var addr sdk.AccAddress + var id uint64 + testFunc := func() { + addr, id = keeper.ParseTemporaryKey(tc.key) + } + assertions.RequirePanicEquals(t, testFunc, tc.expPanic, "ParseTemporaryKey") + assert.Equal(t, tc.expAddr, addr, "ParseTemporaryKey address") + assert.Equal(t, tc.expId, id, "ParseTemporaryKey gov prop id") + }) + } +} + +func TestTempBValues(t *testing.T) { + // If these were the same, it'd be bad. + assert.NotEqual(t, keeper.SanctionB, keeper.UnsanctionB, "%v = SanctionB = UnsanctionB", keeper.SanctionB) +} + +func TestIsSanctionBz(t *testing.T) { + tests := []struct { + name string + bz []byte + exp bool + }{ + {name: "nil", bz: nil, exp: false}, + {name: "empty", bz: []byte{}, exp: false}, + {name: "SanctionB and 0", bz: []byte{keeper.SanctionB, 0}, exp: false}, + {name: "UnsanctionB and 0", bz: []byte{keeper.UnsanctionB, 0}, exp: false}, + {name: "0 and SanctionB", bz: []byte{0, keeper.SanctionB}, exp: false}, + {name: "0 and UnsanctionB", bz: []byte{0, keeper.UnsanctionB}, exp: false}, + {name: "the letter f", bz: []byte{'f'}, exp: false}, + {name: "SanctionB", bz: []byte{keeper.SanctionB}, exp: true}, + {name: "UnsanctionB", bz: []byte{keeper.UnsanctionB}, exp: false}, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual bool + testFunc := func() { + actual = keeper.IsSanctionBz(tc.bz) + } + require.NotPanics(t, testFunc, "IsSanctionBz") + assert.Equal(t, tc.exp, actual, "IsSanctionBz result") + }) + } +} + +func TestIsUnsanctionBz(t *testing.T) { + tests := []struct { + name string + bz []byte + exp bool + }{ + {name: "nil", bz: nil, exp: false}, + {name: "empty", bz: []byte{}, exp: false}, + {name: "SanctionB and 0", bz: []byte{keeper.SanctionB, 0}, exp: false}, + {name: "UnsanctionB and 0", bz: []byte{keeper.UnsanctionB, 0}, exp: false}, + {name: "0 and SanctionB", bz: []byte{0, keeper.SanctionB}, exp: false}, + {name: "0 and UnsanctionB", bz: []byte{0, keeper.UnsanctionB}, exp: false}, + {name: "the letter f", bz: []byte{'f'}, exp: false}, + {name: "SanctionB", bz: []byte{keeper.SanctionB}, exp: false}, + {name: "UnsanctionB", bz: []byte{keeper.UnsanctionB}, exp: true}, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual bool + testFunc := func() { + actual = keeper.IsUnsanctionBz(tc.bz) + } + require.NotPanics(t, testFunc, "IsUnsanctionBz") + assert.Equal(t, tc.exp, actual, "IsUnsanctionBz result") + }) + } +} + +func TestToTempStatus(t *testing.T) { + tests := []struct { + name string + bz []byte + exp sanction.TempStatus + }{ + {name: "nil", bz: nil, exp: sanction.TEMP_STATUS_UNSPECIFIED}, + {name: "empty", bz: []byte{}, exp: sanction.TEMP_STATUS_UNSPECIFIED}, + {name: "SanctionB and 0", bz: []byte{keeper.SanctionB, 0}, exp: sanction.TEMP_STATUS_UNSPECIFIED}, + {name: "UnsanctionB and 0", bz: []byte{keeper.UnsanctionB, 0}, exp: sanction.TEMP_STATUS_UNSPECIFIED}, + {name: "0 and SanctionB", bz: []byte{0, keeper.SanctionB}, exp: sanction.TEMP_STATUS_UNSPECIFIED}, + {name: "0 and UnsanctionB", bz: []byte{0, keeper.UnsanctionB}, exp: sanction.TEMP_STATUS_UNSPECIFIED}, + {name: "the letter f", bz: []byte{'f'}, exp: sanction.TEMP_STATUS_UNSPECIFIED}, + {name: "SanctionB", bz: []byte{keeper.SanctionB}, exp: sanction.TEMP_STATUS_SANCTIONED}, + {name: "UnsanctionB", bz: []byte{keeper.UnsanctionB}, exp: sanction.TEMP_STATUS_UNSANCTIONED}, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual sanction.TempStatus + testFunc := func() { + actual = keeper.ToTempStatus(tc.bz) + } + require.NotPanics(t, testFunc, "ToTempStatus") + assert.Equal(t, tc.exp, actual, "ToTempStatus result") + }) + } +} + +func TestNewTempEvent(t *testing.T) { + tests := []struct { + name string + typeVal byte + addr sdk.AccAddress + exp proto.Message + expPanic string + }{ + { + name: "SanctionB nil addr", + typeVal: keeper.SanctionB, + addr: nil, + exp: &sanction.EventTempAddressSanctioned{Address: ""}, + }, + { + name: "SanctionB empty addr", + typeVal: keeper.SanctionB, + addr: sdk.AccAddress{}, + exp: &sanction.EventTempAddressSanctioned{Address: ""}, + }, + { + name: "SanctionB 20 byte addr", + typeVal: keeper.SanctionB, + addr: sdk.AccAddress("this_is_a_short_addr"), + exp: &sanction.EventTempAddressSanctioned{Address: sdk.AccAddress("this_is_a_short_addr").String()}, + }, + { + name: "SanctionB 32 byte addr", + typeVal: keeper.SanctionB, + addr: sdk.AccAddress("this_is_a_longer_addr_for_tests_"), + exp: &sanction.EventTempAddressSanctioned{Address: sdk.AccAddress("this_is_a_longer_addr_for_tests_").String()}, + }, + { + name: "UnsanctionB nil addr", + typeVal: keeper.UnsanctionB, + addr: nil, + exp: &sanction.EventTempAddressUnsanctioned{Address: ""}, + }, + { + name: "UnsanctionB empty addr", + typeVal: keeper.UnsanctionB, + addr: sdk.AccAddress{}, + exp: &sanction.EventTempAddressUnsanctioned{Address: ""}, + }, + { + name: "UnsanctionB 20 byte addr", + typeVal: keeper.UnsanctionB, + addr: sdk.AccAddress("this_is_a_short_addr"), + exp: &sanction.EventTempAddressUnsanctioned{Address: sdk.AccAddress("this_is_a_short_addr").String()}, + }, + { + name: "UnsanctionB 32 byte addr", + typeVal: keeper.UnsanctionB, + addr: sdk.AccAddress("this_is_a_longer_addr_for_tests_"), + exp: &sanction.EventTempAddressUnsanctioned{Address: sdk.AccAddress("this_is_a_longer_addr_for_tests_").String()}, + }, + { + name: "unknown type byte", + typeVal: 42, + addr: sdk.AccAddress("does_not_matter"), + expPanic: "unknown temp value byte: 2a", + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual proto.Message + testFunc := func() { + actual = keeper.NewTempEvent(tc.typeVal, tc.addr) + } + assertions.RequirePanicEquals(t, testFunc, tc.expPanic, "NewTempEvent") + assert.Equal(t, tc.exp, actual, "NewTempEvent result") + }) + } +} + +func TestCreateProposalTempIndexPrefix(t *testing.T) { + uint64p := func(v uint64) *uint64 { + return &v + } + tests := []struct { + name string + id *uint64 + exp []byte + expCap int + }{ + { + name: "nil id", + id: nil, + exp: []byte{keeper.ProposalIndexPrefix[0]}, + expCap: 1, + }, + { + name: "id 0", + id: uint64p(0), + exp: []byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 0, 0}, + expCap: 42, + }, + { + name: "id 1", + id: uint64p(1), + exp: []byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 0, 1}, + expCap: 42, + }, + { + name: "id 100", + id: uint64p(100), + exp: []byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 0, 100}, + expCap: 42, + }, + { + name: "id 1000", + id: uint64p(1000), + exp: []byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 3, 232}, + expCap: 42, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []byte + testFunc := func() { + actual = keeper.CreateProposalTempIndexPrefix(tc.id) + } + require.NotPanics(t, testFunc, "CreateProposalTempIndexPrefix") + require.Equal(t, tc.exp, actual, "CreateProposalTempIndexPrefix result") + require.Equal(t, tc.expCap, cap(actual), "CreateProposalTempIndexPrefix result capacity") + }) + } +} + +func TestCreateProposalTempIndexKey(t *testing.T) { + tests := []struct { + name string + addr sdk.AccAddress + govId uint64 + exp []byte + }{ + { + name: "nil addr id 0", + addr: nil, + govId: 0, + exp: []byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 0, 0}, + }, + { + name: "4 byte address id 1", + addr: sdk.AccAddress("test"), + govId: 1, + exp: append([]byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 0, 1, 4}, "test"...), + }, + { + name: "20 byte address id 2", + addr: sdk.AccAddress("test_20_byte_address"), + govId: 2, + exp: append([]byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 0, 2, 20}, "test_20_byte_address"...), + }, + { + name: "32 byte address id 3", + addr: sdk.AccAddress("test_____32_____byte_____address"), + govId: 3, + exp: append([]byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 0, 3, 32}, "test_____32_____byte_____address"...), + }, + { + name: "20 byte address id 1000", + addr: sdk.AccAddress("test_20_byte_address"), + govId: 1000, + exp: append([]byte{keeper.ProposalIndexPrefix[0], 0, 0, 0, 0, 0, 0, 3, 232, 20}, "test_20_byte_address"...), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []byte + testFunc := func() { + actual = keeper.CreateProposalTempIndexKey(tc.govId, tc.addr) + } + require.NotPanics(t, testFunc, "CreateProposalTempIndexKey") + assert.Equal(t, tc.exp, actual, "CreateProposalTempIndexKey result") + assert.Equal(t, 42, cap(actual), "CreateProposalTempIndexKey result capacity") + }) + } +} + +func TestParseProposalTempIndexKey(t *testing.T) { + tests := []struct { + name string + key []byte + expAddr sdk.AccAddress + expPanic string + expId uint64 + }{ + { + name: "nil", + key: nil, + expPanic: "runtime error: slice bounds out of range [:9] with capacity 0", + }, + { + name: "empty", + key: []byte{}, + expPanic: "runtime error: slice bounds out of range [:9] with capacity 0", + }, + { + name: "just one byte", + key: []byte{'f'}, // doesn't matter what that byte is. + expPanic: "runtime error: slice bounds out of range [:9] with capacity 1", + }, + { + name: "only 7 id bytes empty addr", + key: []byte{'g', 0, 0, 0, 0, 0, 0, 77}, + expPanic: "runtime error: slice bounds out of range [:9] with capacity 8", + }, + { + name: "id 1 empty addr", + key: []byte{'g', 0, 0, 0, 0, 0, 0, 0, 1, 0}, + expId: 1, + expAddr: sdk.AccAddress{}, + }, + { + name: "id 2 4 byte addr", + key: []byte{'P', 0, 0, 0, 0, 0, 0, 0, 2, 4, 't', 'e', 's', 't'}, + expId: 2, + expAddr: sdk.AccAddress("test"), + }, + { + name: "id 3 20 byte addr", + key: keeper.CreateProposalTempIndexKey(3, sdk.AccAddress("this_test_addr_is_20")), + expId: 3, + expAddr: sdk.AccAddress("this_test_addr_is_20"), + }, + { + name: "id 4 32 byte addr", + key: keeper.CreateProposalTempIndexKey(4, sdk.AccAddress("this_test_addr_is_longer_with_32")), + expId: 4, + expAddr: sdk.AccAddress("this_test_addr_is_longer_with_32"), + }, + { + name: "id 1000 20 byte addr", + key: keeper.CreateProposalTempIndexKey(1000, sdk.AccAddress("this_test_addr_is_20")), + expId: 1000, + expAddr: sdk.AccAddress("this_test_addr_is_20"), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var addr sdk.AccAddress + var id uint64 + testFunc := func() { + id, addr = keeper.ParseProposalTempIndexKey(tc.key) + } + assertions.RequirePanicEquals(t, testFunc, tc.expPanic, "ParseProposalTempIndexKey") + assert.Equal(t, tc.expId, id, "ParseProposalTempIndexKey gov prop id") + assert.Equal(t, tc.expAddr, addr, "ParseProposalTempIndexKey address") + }) + } +} diff --git a/x/sanction/keeper/mocks_test.go b/x/sanction/keeper/mocks_test.go new file mode 100644 index 0000000000..481d92baad --- /dev/null +++ b/x/sanction/keeper/mocks_test.go @@ -0,0 +1,35 @@ +package keeper_test + +import ( + "context" + + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + + "github.com/provenance-io/provenance/x/sanction" +) + +// Define a Mock Gov Keeper that records calls to GetProposal and allows +// definition of what it returns. + +type MockGovKeeper struct { + GetProposalCalls []uint64 + GetProposalReturns map[uint64]govv1.Proposal +} + +var _ sanction.GovKeeper = &MockGovKeeper{} + +func NewMockGovKeeper() *MockGovKeeper { + return &MockGovKeeper{ + GetProposalCalls: nil, + GetProposalReturns: make(map[uint64]govv1.Proposal), + } +} + +func (k *MockGovKeeper) GetProposal(_ context.Context, proposalID uint64) *govv1.Proposal { + k.GetProposalCalls = append(k.GetProposalCalls, proposalID) + prop, ok := k.GetProposalReturns[proposalID] + if !ok { + return nil + } + return &prop +} diff --git a/x/sanction/keeper/msg_server.go b/x/sanction/keeper/msg_server.go new file mode 100644 index 0000000000..7f21825ce8 --- /dev/null +++ b/x/sanction/keeper/msg_server.go @@ -0,0 +1,73 @@ +package keeper + +import ( + "context" + + sdk "github.com/cosmos/cosmos-sdk/types" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + gov "github.com/cosmos/cosmos-sdk/x/gov/types" + + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/errors" +) + +var _ sanction.MsgServer = Keeper{} + +func (k Keeper) Sanction(goCtx context.Context, req *sanction.MsgSanction) (*sanction.MsgSanctionResponse, error) { + if req.Authority != k.authority { + return nil, gov.ErrInvalidSigner.Wrapf("expected %q got %q", k.authority, req.Authority) + } + + toSanction, err := toAccAddrs(req.Addresses) + if err != nil { + return nil, sdkerrors.ErrInvalidAddress.Wrap(err.Error()) + } + + ctx := sdk.UnwrapSDKContext(goCtx) + err = k.SanctionAddresses(ctx, toSanction...) + if err != nil { + return nil, err + } + + return &sanction.MsgSanctionResponse{}, nil +} + +func (k Keeper) Unsanction(goCtx context.Context, req *sanction.MsgUnsanction) (*sanction.MsgUnsanctionResponse, error) { + if req.Authority != k.authority { + return nil, gov.ErrInvalidSigner.Wrapf("expected %q got %q", k.authority, req.Authority) + } + + toUnsanction, err := toAccAddrs(req.Addresses) + if err != nil { + return nil, sdkerrors.ErrInvalidAddress.Wrap(err.Error()) + } + + ctx := sdk.UnwrapSDKContext(goCtx) + err = k.UnsanctionAddresses(ctx, toUnsanction...) + if err != nil { + return nil, err + } + + return &sanction.MsgUnsanctionResponse{}, nil +} + +func (k Keeper) UpdateParams(goCtx context.Context, req *sanction.MsgUpdateParams) (*sanction.MsgUpdateParamsResponse, error) { + if req.Authority != k.authority { + return nil, gov.ErrInvalidSigner.Wrapf("expected %q got %q", k.authority, req.Authority) + } + + if req.Params != nil { + err := req.Params.ValidateBasic() + if err != nil { + return nil, errors.ErrInvalidParams.Wrap(err.Error()) + } + } + + ctx := sdk.UnwrapSDKContext(goCtx) + err := k.SetParams(ctx, req.Params) + if err != nil { + return nil, err + } + + return &sanction.MsgUpdateParamsResponse{}, nil +} diff --git a/x/sanction/keeper/msg_server_test.go b/x/sanction/keeper/msg_server_test.go new file mode 100644 index 0000000000..5c646923bb --- /dev/null +++ b/x/sanction/keeper/msg_server_test.go @@ -0,0 +1,661 @@ +package keeper_test + +import ( + "testing" + + "github.com/stretchr/testify/suite" + + sdkmath "cosmossdk.io/math" + + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" +) + +type MsgServerTestSuite struct { + BaseTestSuite + + quotedAuthority string +} + +func (s *MsgServerTestSuite) SetupTest() { + s.BaseSetup() + + s.quotedAuthority = `"` + s.Keeper.GetAuthority() + `"` +} + +func TestMsgServerTestSuite(t *testing.T) { + suite.Run(t, new(MsgServerTestSuite)) +} + +func (s *MsgServerTestSuite) TestKeeper_Sanction() { + addr1 := sdk.AccAddress("1_addr_sanction_test") + addr2 := sdk.AccAddress("2_addr_sanction_test") + addr3 := sdk.AccAddress("3_addr_sanction_test") + addr4 := sdk.AccAddress("4_addr_sanction_test") + addr5 := sdk.AccAddress("5_addr_sanction_test") + addr6 := sdk.AccAddress("6_addr_sanction_test") + + tests := []struct { + name string + iniState *sanction.GenesisState + req *sanction.MsgSanction + expErr []string + expState *sanction.GenesisState + }{ + { + name: "empty authority", + req: &sanction.MsgSanction{ + Addresses: nil, + Authority: "", + }, + expErr: []string{"expected gov account as only signer for proposal message", `""`, s.quotedAuthority}, + }, + { + name: "wrong authority quoted", + req: &sanction.MsgSanction{ + Addresses: nil, + Authority: s.quotedAuthority, + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"\"` + s.Keeper.GetAuthority() + `\""`, s.quotedAuthority}, + }, + { + name: "wrong authority space at end", + req: &sanction.MsgSanction{ + Addresses: nil, + Authority: s.Keeper.GetAuthority() + " ", + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority() + ` "`, s.quotedAuthority}, + }, + { + name: "wrong authority space at front", + req: &sanction.MsgSanction{ + Addresses: nil, + Authority: " " + s.Keeper.GetAuthority(), + }, + expErr: []string{"expected gov account as only signer for proposal message", + `" ` + s.Keeper.GetAuthority() + `"`, s.quotedAuthority}, + }, + { + name: "wrong authority missing first char", + req: &sanction.MsgSanction{ + Addresses: nil, + Authority: s.Keeper.GetAuthority()[1:], + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority()[1:] + `"`, s.quotedAuthority}, + }, + { + name: "wrong authority missing last char", + req: &sanction.MsgSanction{ + Addresses: nil, + Authority: s.Keeper.GetAuthority()[:len(s.Keeper.GetAuthority())-1], + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority()[:len(s.Keeper.GetAuthority())-1] + `"`, s.quotedAuthority}, + }, + { + name: "six addrs invalid first", + req: &sanction.MsgSanction{ + Addresses: []string{ + "notanaddr", + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: []string{"invalid address", "invalid address[0]", "decoding bech32 failed"}, + expState: sanction.DefaultGenesisState(), + }, + { + name: "six addrs invalid third", + req: &sanction.MsgSanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + "addrnogood", + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: []string{"invalid address", "invalid address[2]", "decoding bech32 failed"}, + expState: sanction.DefaultGenesisState(), + }, + { + name: "six addrs invalid sixth", + req: &sanction.MsgSanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + "badaddrbad", + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: []string{"invalid address", "invalid address[5]", "decoding bech32 failed"}, + expState: sanction.DefaultGenesisState(), + }, + { + name: "six new addrs", + req: &sanction.MsgSanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: s.Keeper.GetAuthority(), + }, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + TemporaryEntries: nil, + }, + }, + { + name: "temp entries cleared for addr", + iniState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: nil, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, true), + newTempEntry(addr3, 1, true), + newTempEntry(addr3, 2, false), + newTempEntry(addr3, 3, false), + newTempEntry(addr6, 1, true), + }, + }, + req: &sanction.MsgSanction{ + Addresses: []string{addr3.String()}, + Authority: s.Keeper.GetAuthority(), + }, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr3.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, true), + newTempEntry(addr6, 1, true), + }, + }, + }, + { + name: "already sanctioned addr", + iniState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr4.String(), + }, + TemporaryEntries: nil, + }, + req: &sanction.MsgSanction{ + Addresses: []string{addr4.String()}, + Authority: s.Keeper.GetAuthority(), + }, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr4.String(), + }, + TemporaryEntries: nil, + }, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + s.ClearState() + if tc.iniState != nil { + s.Require().NotPanics(func() { + s.Keeper.InitGenesis(s.SdkCtx, tc.iniState) + }, "InitGenesis") + } + + var err error + testFunc := func() { + _, err = s.Keeper.Sanction(s.StdlibCtx, tc.req) + } + s.Require().NotPanics(testFunc, "Sanction") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "Sanction error") + if tc.expState != nil { + s.ExportAndCheck(tc.expState) + } + }) + } + +} + +func (s *MsgServerTestSuite) TestKeeper_Unsanction() { + addr1 := sdk.AccAddress("1_addr_unsanction_test") + addr2 := sdk.AccAddress("2_addr_unsanction_test") + addr3 := sdk.AccAddress("3_addr_unsanction_test") + addr4 := sdk.AccAddress("4_addr_unsanction_test") + addr5 := sdk.AccAddress("5_addr_unsanction_test") + addr6 := sdk.AccAddress("6_addr_unsanction_test") + + tests := []struct { + name string + iniState *sanction.GenesisState + req *sanction.MsgUnsanction + expErr []string + expState *sanction.GenesisState + }{ + { + name: "empty authority", + req: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: "", + }, + expErr: []string{"expected gov account as only signer for proposal message", `""`, s.quotedAuthority}, + }, + { + name: "wrong authority quoted", + req: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: s.quotedAuthority, + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"\"` + s.Keeper.GetAuthority() + `\""`, s.quotedAuthority}, + }, + { + name: "wrong authority space at end", + req: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: s.Keeper.GetAuthority() + " ", + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority() + ` "`, s.quotedAuthority}, + }, + { + name: "wrong authority space at front", + req: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: " " + s.Keeper.GetAuthority(), + }, + expErr: []string{"expected gov account as only signer for proposal message", + `" ` + s.Keeper.GetAuthority() + `"`, s.quotedAuthority}, + }, + { + name: "wrong authority missing first char", + req: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: s.Keeper.GetAuthority()[1:], + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority()[1:] + `"`, s.quotedAuthority}, + }, + { + name: "wrong authority missing last char", + req: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: s.Keeper.GetAuthority()[:len(s.Keeper.GetAuthority())-1], + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority()[:len(s.Keeper.GetAuthority())-1] + `"`, s.quotedAuthority}, + }, + { + name: "six addrs invalid first", + iniState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + req: &sanction.MsgUnsanction{ + Addresses: []string{ + "notanaddr", + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: []string{"invalid address", "invalid address[0]", "decoding bech32 failed"}, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + }, + { + name: "six addrs invalid third", + iniState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + req: &sanction.MsgUnsanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + "addrnogood", + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: []string{"invalid address", "invalid address[2]", "decoding bech32 failed"}, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + }, + { + name: "six addrs invalid sixth", + iniState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + req: &sanction.MsgUnsanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + "badaddrbad", + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: []string{"invalid address", "invalid address[5]", "decoding bech32 failed"}, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + }, + }, + { + name: "six previously sanctioned addrs", + req: &sanction.MsgUnsanction{ + Addresses: []string{ + addr1.String(), + addr2.String(), + addr3.String(), + addr4.String(), + addr5.String(), + addr6.String(), + }, + Authority: s.Keeper.GetAuthority(), + }, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: nil, + TemporaryEntries: nil, + }, + }, + { + name: "temp entries cleared for addr", + iniState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: []string{ + addr3.String(), + }, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, true), + newTempEntry(addr3, 1, true), + newTempEntry(addr3, 2, false), + newTempEntry(addr3, 3, false), + newTempEntry(addr6, 1, true), + }, + }, + req: &sanction.MsgUnsanction{ + Addresses: []string{addr3.String()}, + Authority: s.Keeper.GetAuthority(), + }, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + SanctionedAddresses: nil, + TemporaryEntries: []*sanction.TemporaryEntry{ + newTempEntry(addr1, 1, true), + newTempEntry(addr6, 1, true), + }, + }, + }, + { + name: "not sanctioned addr", + req: &sanction.MsgUnsanction{ + Addresses: []string{addr4.String()}, + Authority: s.Keeper.GetAuthority(), + }, + expState: sanction.DefaultGenesisState(), + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + s.ClearState() + if tc.iniState != nil { + s.Require().NotPanics(func() { + s.Keeper.InitGenesis(s.SdkCtx, tc.iniState) + }, "InitGenesis") + } + + var err error + testFunc := func() { + _, err = s.Keeper.Unsanction(s.StdlibCtx, tc.req) + } + s.Require().NotPanics(testFunc, "Unsanction") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "Unsanction error") + if tc.expState != nil { + s.ExportAndCheck(tc.expState) + } + }) + } +} + +func (s *MsgServerTestSuite) TestKeeper_UpdateParams() { + origMinSanct := sanction.DefaultImmediateSanctionMinDeposit + origMinUnsanct := sanction.DefaultImmediateUnsanctionMinDeposit + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origMinSanct + sanction.DefaultImmediateUnsanctionMinDeposit = origMinUnsanct + }() + sanction.DefaultImmediateSanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("spcoin", 15)) + sanction.DefaultImmediateUnsanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin("upcoin", 17)) + + tests := []struct { + name string + iniState *sanction.GenesisState + req *sanction.MsgUpdateParams + expErr []string + expState *sanction.GenesisState + }{ + { + name: "empty authority", + req: &sanction.MsgUpdateParams{ + Authority: "", + }, + expErr: []string{"expected gov account as only signer for proposal message", `""`, s.quotedAuthority}, + }, + { + name: "wrong authority quoted", + req: &sanction.MsgUpdateParams{ + Authority: s.quotedAuthority, + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"\"` + s.Keeper.GetAuthority() + `\""`, s.quotedAuthority}, + }, + { + name: "wrong authority space at end", + req: &sanction.MsgUpdateParams{ + Authority: s.Keeper.GetAuthority() + " ", + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority() + ` "`, s.quotedAuthority}, + }, + { + name: "wrong authority space at front", + req: &sanction.MsgUpdateParams{ + Authority: " " + s.Keeper.GetAuthority(), + }, + expErr: []string{"expected gov account as only signer for proposal message", + `" ` + s.Keeper.GetAuthority() + `"`, s.quotedAuthority}, + }, + { + name: "wrong authority missing first char", + req: &sanction.MsgUpdateParams{ + Authority: s.Keeper.GetAuthority()[1:], + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority()[1:] + `"`, s.quotedAuthority}, + }, + { + name: "wrong authority missing last char", + req: &sanction.MsgUpdateParams{ + Authority: s.Keeper.GetAuthority()[:len(s.Keeper.GetAuthority())-1], + }, + expErr: []string{"expected gov account as only signer for proposal message", + `"` + s.Keeper.GetAuthority()[:len(s.Keeper.GetAuthority())-1] + `"`, s.quotedAuthority}, + }, + { + name: "invalid params", + req: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{sdk.Coin{Denom: "a", Amount: sdkmath.NewInt(5)}}, + ImmediateUnsanctionMinDeposit: nil, + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: []string{"invalid params", "invalid immediate sanction min deposit", "invalid denom"}, + expState: sanction.DefaultGenesisState(), + }, + { + name: "params not previously set", + req: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("doitcoin", 3)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("nahcoin", 5)), + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: nil, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("doitcoin", 3)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("nahcoin", 5)), + }, + }, + }, + { + name: "params being overwritten", + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("oldscoin", 22)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("olducoin", 44)), + }, + }, + req: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("doitcoin", 3)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("nahcoin", 5)), + }, + Authority: s.Keeper.GetAuthority(), + }, + expErr: nil, + expState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("doitcoin", 3)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("nahcoin", 5)), + }, + }, + }, + { + name: "nil params over previously defined", + iniState: &sanction.GenesisState{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("oldscoin", 22)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("olducoin", 44)), + }, + }, + req: &sanction.MsgUpdateParams{ + Params: nil, + Authority: s.Keeper.GetAuthority(), + }, + expErr: nil, + expState: &sanction.GenesisState{ + Params: sanction.DefaultParams(), + }, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + s.ClearState() + if tc.iniState != nil { + s.Require().NotPanics(func() { + s.Keeper.InitGenesis(s.SdkCtx, tc.iniState) + }, "InitGenesis") + } + + var err error + testFunc := func() { + _, err = s.Keeper.UpdateParams(s.StdlibCtx, tc.req) + } + s.Require().NotPanics(testFunc, "UpdateParams") + assertions.AssertErrorContents(s.T(), err, tc.expErr, "UpdateParams error") + if tc.expState != nil { + s.ExportAndCheck(tc.expState) + } + }) + } +} diff --git a/x/sanction/keeper/send_restriction.go b/x/sanction/keeper/send_restriction.go new file mode 100644 index 0000000000..9f25b8e411 --- /dev/null +++ b/x/sanction/keeper/send_restriction.go @@ -0,0 +1,20 @@ +package keeper + +import ( + "context" + + sdk "github.com/cosmos/cosmos-sdk/types" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/errors" +) + +var _ banktypes.SendRestrictionFn = Keeper{}.SendRestrictionFn + +func (k Keeper) SendRestrictionFn(ctx context.Context, fromAddr, toAddr sdk.AccAddress, _ sdk.Coins) (sdk.AccAddress, error) { + if !sanction.HasBypass(ctx) && k.IsSanctionedAddr(ctx, fromAddr) { + return nil, errors.ErrSanctionedAccount.Wrapf("cannot send from %s", fromAddr.String()) + } + return toAddr, nil +} diff --git a/x/sanction/keeper/send_restriction_test.go b/x/sanction/keeper/send_restriction_test.go new file mode 100644 index 0000000000..d43051c0cf --- /dev/null +++ b/x/sanction/keeper/send_restriction_test.go @@ -0,0 +1,195 @@ +package keeper_test + +import ( + "testing" + + "github.com/stretchr/testify/suite" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/x/bank/testutil" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + + "github.com/provenance-io/provenance/x/sanction" +) + +type SendRestrictionTestSuite struct { + BaseTestSuite +} + +func (s *SendRestrictionTestSuite) SetupTest() { + s.BaseSetup() +} + +func TestSendRestrictionTestSuite(t *testing.T) { + suite.Run(t, new(SendRestrictionTestSuite)) +} + +func (s *SendRestrictionTestSuite) TestSendRestrictionFn() { + addrSanctioned := sdk.AccAddress("addrSanctioned______") + addrUnsanctioned := sdk.AccAddress("addrUnsanctioned____") + addrOther := sdk.AccAddress("addrOther___________") + ctxWithBypass := sanction.WithBypass(s.SdkCtx) + + s.ReqOKAddPermSanct("addrSanctioned", addrSanctioned) + s.ReqOKAddPermUnsanct("addrUnsanctioned", addrUnsanctioned) + + tests := []struct { + name string + ctx *sdk.Context + fromAddr sdk.AccAddress + toAddr sdk.AccAddress + amt sdk.Coins + expErr []string + }{ + { + name: "has bypass", + ctx: &ctxWithBypass, + fromAddr: addrSanctioned, + toAddr: addrOther, + }, + { + name: "from sanctioned address", + fromAddr: addrSanctioned, + toAddr: addrOther, + expErr: []string{"account is sanctioned", "cannot send from " + addrSanctioned.String()}, + }, + { + name: "from unsanctioned address", + fromAddr: addrUnsanctioned, + toAddr: addrOther, + }, + { + name: "to sanctioned address", + fromAddr: addrOther, + toAddr: addrSanctioned, + }, + { + name: "to unsanctioned address", + fromAddr: addrOther, + toAddr: addrUnsanctioned, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + ctx := s.SdkCtx + if tc.ctx != nil { + ctx = *tc.ctx + } + var expNewTo sdk.AccAddress + if len(tc.expErr) == 0 { + expNewTo = tc.toAddr + } + + newTo, err := s.Keeper.SendRestrictionFn(ctx, tc.fromAddr, tc.toAddr, tc.amt) + s.AssertErrorContents(err, tc.expErr, "SendRestrictionFn error") + s.Assert().Equal(expNewTo, newTo, "SendRestrictionFn returned address") + }) + } +} + +func (s *SendRestrictionTestSuite) TestBankSendCoinsUsesSendRestrictionFn() { + // This specifically does NOT mock the bank keeper because it's testing + // that the bank keeper is applying this module's send restriction. + + denom := "greatcoin" + cz := func(amt int64) sdk.Coins { + return sdk.NewCoins(sdk.NewInt64Coin(denom, amt)) + } + + sanctionedAddr := sdk.AccAddress("sanctionedAddr______") + otherAddr := sdk.AccAddress("otherAddr___________") + + // Fund the addresses + s.Require().NoError(testutil.FundAccount(s.SdkCtx, s.App.BankKeeper, sanctionedAddr, cz(1_000_005_000_000_000)), "FundAccount sanctionedAddr") + s.Require().NoError(testutil.FundAccount(s.SdkCtx, s.App.BankKeeper, otherAddr, cz(3_000)), "FundAccount otherAddr") + + // Sanction the account. + s.ReqOKAddPermSanct("sanctionedAddr", sanctionedAddr) + + s.Run("SendCoins from sanctioned addr returns error", func() { + ctx, writeCache := s.SdkCtx.CacheContext() + expErr := "cannot send from " + sanctionedAddr.String() + ": account is sanctioned" + err := s.App.BankKeeper.SendCoins(ctx, sanctionedAddr, otherAddr, cz(5_000_000_000)) + s.Assert().EqualError(err, expErr, "SendCoins from sanctioned address error") + if err == nil { + writeCache() + } + }) + + s.Run("SendCoins to sanctioned addr does not return an error", func() { + err := s.App.BankKeeper.SendCoins(s.SdkCtx, otherAddr, sanctionedAddr, cz(3_000)) + s.Assert().NoError(err, "SendCoins to sanctioned address error") + }) + + s.Run("sanctioned address has expected balance", func() { + bal := s.App.BankKeeper.GetBalance(s.SdkCtx, sanctionedAddr, denom) + s.Assert().Equal(cz(1_000_005_000_003_000).String(), bal.String(), "GetBalance sanctionedAddr") + }) + + s.Run("other address has expected balance", func() { + bal := s.App.BankKeeper.GetBalance(s.SdkCtx, otherAddr, denom) + s.Assert().Equal("0"+denom, bal.String(), "GetBalance otherAddr") + }) +} + +func (s *SendRestrictionTestSuite) TestBankInputOutputCoinsUsesSendRestrictionFn() { + // This specifically does NOT mock the bank keeper because it's testing + // that the bank keeper is applying this module's send restriction. + + denom := "goodcoin" + cz := func(amt int64) sdk.Coins { + return sdk.NewCoins(sdk.NewInt64Coin(denom, amt)) + } + + sanctionedAddr := sdk.AccAddress("sanctionedAddr______") + otherAddr1 := sdk.AccAddress("otherAddr1__________") + otherAddr2 := sdk.AccAddress("otherAddr2__________") + otherAddr3 := sdk.AccAddress("otherAddr3__________") + + // Fund the addresses + s.Require().NoError(testutil.FundAccount(s.SdkCtx, s.App.BankKeeper, sanctionedAddr, cz(6_006)), "FundAccount sanctionedAddr") + s.Require().NoError(testutil.FundAccount(s.SdkCtx, s.App.BankKeeper, otherAddr1, cz(1)), "FundAccount otherAddr1") + s.Require().NoError(testutil.FundAccount(s.SdkCtx, s.App.BankKeeper, otherAddr2, cz(2)), "FundAccount otherAddr2") + s.Require().NoError(testutil.FundAccount(s.SdkCtx, s.App.BankKeeper, otherAddr3, cz(3)), "FundAccount otherAddr3") + + // Sanction the account. + s.ReqOKAddPermSanct("sanctionedAddr", sanctionedAddr) + + // Do an InputOutputCoins from the sanctioned address to the others. + inputs := []banktypes.Input{{Address: sanctionedAddr.String(), Coins: cz(6_000)}} + outputs := []banktypes.Output{ + {Address: otherAddr1.String(), Coins: cz(1_000)}, + {Address: otherAddr2.String(), Coins: cz(2_000)}, + {Address: otherAddr3.String(), Coins: cz(3_000)}, + } + err := s.App.BankKeeper.InputOutputCoins(s.SdkCtx, inputs[0], outputs) + + s.Run("error is as expected", func() { + exp := "cannot send from " + sanctionedAddr.String() + ": account is sanctioned" + s.Assert().EqualError(err, exp, "InputOutputCoins") + }) + + // Note: In InputOutputCoins, the funds are removed from the input before calling the restriction function. + // This is okay because it's usually being called in a transaction where an error will cause a rollback. + // Rather than having a test that passes, but technically contrary to desired behavior, + // the input balance is just not checked. + + expBals := []struct { + name string + addr sdk.AccAddress + exp sdk.Coins + }{ + // not checking input balance (see comment above). + {name: "funds not removed from output[0]", addr: otherAddr1, exp: cz(1)}, + {name: "funds not removed from output[1]", addr: otherAddr2, exp: cz(2)}, + {name: "funds not removed from output[2]", addr: otherAddr3, exp: cz(3)}, + } + + for _, tc := range expBals { + s.Run(tc.name, func() { + bal := s.App.BankKeeper.GetBalance(s.SdkCtx, tc.addr, denom) + s.Assert().Equal(tc.exp.String(), bal.String(), "GetBalance") + }) + } +} diff --git a/x/sanction/keeper/suite_test.go b/x/sanction/keeper/suite_test.go new file mode 100644 index 0000000000..82f09d9e81 --- /dev/null +++ b/x/sanction/keeper/suite_test.go @@ -0,0 +1,240 @@ +package keeper_test + +import ( + "context" + "time" + + "github.com/stretchr/testify/suite" + + cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" + cmttime "github.com/cometbft/cometbft/types/time" + + storetypes "cosmossdk.io/store/types" + + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/gogoproto/proto" + + "github.com/provenance-io/provenance/app" + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +// newTempEntry creates a TemporaryEntry from iterator callback args. +func newTempEntry(addr sdk.AccAddress, govPropId uint64, isSanctioned bool) *sanction.TemporaryEntry { + status := sanction.TEMP_STATUS_SANCTIONED + if !isSanctioned { + status = sanction.TEMP_STATUS_UNSANCTIONED + } + return &sanction.TemporaryEntry{ + Address: addr.String(), + ProposalId: govPropId, + Status: status, + } +} + +// newIndTempEntry creates a TemporaryEntry to represent a proposal index temporary entry. +func newIndTempEntry(govPropId uint64, addr sdk.AccAddress) *sanction.TemporaryEntry { + return &sanction.TemporaryEntry{ + Address: addr.String(), + ProposalId: govPropId, + Status: sanction.TEMP_STATUS_UNSPECIFIED, + } +} + +// BaseTestSuite is a base suite.Suite with values and functions commonly needed for these keeper tests. +type BaseTestSuite struct { + suite.Suite + + App *app.App + SdkCtx sdk.Context + StdlibCtx context.Context + Keeper keeper.Keeper + GovKeeper *MockGovKeeper + + BlockTime time.Time +} + +func (s *BaseTestSuite) BaseSetup() { + s.BlockTime = cmttime.Now() + s.App = app.Setup(s.T()) + s.SdkCtx = s.App.BaseApp.NewContext(false).WithBlockHeader(cmtproto.Header{Time: s.BlockTime}) + s.StdlibCtx = context.Context(s.SdkCtx) + s.GovKeeper = NewMockGovKeeper() + s.Keeper = s.App.SanctionKeeper.WithGovKeeper(s.GovKeeper) +} + +// AssertErrorContents calls assertions.AssertErrorContents using this suite's T. +func (s *BaseTestSuite) AssertErrorContents(theError error, contains []string, msgAndArgs ...interface{}) bool { + return assertions.AssertErrorContents(s.T(), theError, contains, msgAndArgs...) +} + +// GetStore gets the sanction module's store. +func (s *BaseTestSuite) GetStore() storetypes.KVStore { + return s.SdkCtx.KVStore(s.Keeper.StoreKey()) +} + +// ClearState deletes all entries in the sanction store. +func (s *BaseTestSuite) ClearState() { + var keysToDelete [][]byte + store := s.GetStore() + iter := store.Iterator(nil, nil) + closeIter := func() { + if iter != nil { + s.Require().NoError(iter.Close(), "iter.Close") + iter = nil + } + } + defer closeIter() + + for ; iter.Valid(); iter.Next() { + keysToDelete = append(keysToDelete, iter.Key()) + } + closeIter() + + for _, key := range keysToDelete { + store.Delete(key) + } +} + +// GetAllTempEntries gets all temporary entries in the store. +func (s *BaseTestSuite) GetAllTempEntries() []*sanction.TemporaryEntry { + var tempEntries []*sanction.TemporaryEntry + tempCB := func(cbAddr sdk.AccAddress, cbGovPropId uint64, cbIsSanction bool) bool { + tempEntries = append(tempEntries, newTempEntry(cbAddr, cbGovPropId, cbIsSanction)) + return false + } + s.Require().NotPanics(func() { + s.Keeper.IterateTemporaryEntries(s.SdkCtx, nil, tempCB) + }, "IterateTemporaryEntries") + return tempEntries +} + +// GetAllIndexTempEntries gets all the gov prop index temporary entries in the store. +func (s *BaseTestSuite) GetAllIndexTempEntries() []*sanction.TemporaryEntry { + var tempIndEntries []*sanction.TemporaryEntry + tempIndCB := func(cbGovPropId uint64, cbAddr sdk.AccAddress) bool { + tempIndEntries = append(tempIndEntries, newIndTempEntry(cbGovPropId, cbAddr)) + return false + } + s.Require().NotPanics(func() { + s.Keeper.IterateProposalIndexEntries(s.SdkCtx, nil, tempIndCB) + }, "IterateProposalIndexEntries") + return tempIndEntries +} + +// RequireNotPanicsNoError calls RequireNotPanicsNoError with this suite's t. +func (s *BaseTestSuite) RequireNotPanicsNoError(f func() error, msgAndArgs ...interface{}) { + s.T().Helper() + assertions.RequireNotPanicsNoError(s.T(), f, msgAndArgs...) +} + +// ReqOKSetParams calls SetParams, making sure it doesn't panic and doesn't return an error. +func (s *BaseTestSuite) ReqOKSetParams(params *sanction.Params) { + s.T().Helper() + s.RequireNotPanicsNoError(func() error { + return s.Keeper.SetParams(s.SdkCtx, params) + }, "SetParams") +} + +// ReqOKAddPermSanct calls SanctionAddresses, making sure it doesn't panic and doesn't return an error. +func (s *BaseTestSuite) ReqOKAddPermSanct(addrArgNames string, addrs ...sdk.AccAddress) { + s.T().Helper() + s.RequireNotPanicsNoError(func() error { + return s.Keeper.SanctionAddresses(s.SdkCtx, addrs...) + }, "SanctionAddresses(%s)", addrArgNames) +} + +// ReqOKAddPermUnsanct calls UnsanctionAddresses, making sure it doesn't panic and doesn't return an error. +func (s *BaseTestSuite) ReqOKAddPermUnsanct(addrArgNames string, addrs ...sdk.AccAddress) { + s.T().Helper() + s.RequireNotPanicsNoError(func() error { + return s.Keeper.UnsanctionAddresses(s.SdkCtx, addrs...) + }, "UnsanctionAddresses(%s)", addrArgNames) +} + +// ReqOKAddTempSanct calls AddTemporarySanction, making sure it doesn't panic and doesn't return an error. +func (s *BaseTestSuite) ReqOKAddTempSanct(id uint64, addrArgNames string, addrs ...sdk.AccAddress) { + s.T().Helper() + s.RequireNotPanicsNoError(func() error { + return s.Keeper.AddTemporarySanction(s.SdkCtx, id, addrs...) + }, "AddTemporarySanction(%d, %s)", id, addrArgNames) +} + +// ReqOKAddTempUnsanct calls AddTemporaryUnsanction, making sure it doesn't panic and doesn't return an error. +func (s *BaseTestSuite) ReqOKAddTempUnsanct(id uint64, addrArgNames string, addrs ...sdk.AccAddress) { + s.T().Helper() + s.RequireNotPanicsNoError(func() error { + return s.Keeper.AddTemporaryUnsanction(s.SdkCtx, id, addrs...) + }, "AddTemporaryUnsanction(%d, %s)", id, addrArgNames) +} + +// ReqOKDelAddrTemp calls DeleteAddrTempEntries, making sure it doesn't panic. +func (s *BaseTestSuite) ReqOKDelAddrTemp(addrArgNames string, addrs ...sdk.AccAddress) { + s.T().Helper() + s.Require().NotPanics(func() { + s.Keeper.DeleteAddrTempEntries(s.SdkCtx, addrs...) + }, "DeleteAddrTempEntries(%s)", addrArgNames) +} + +// ReqOKDelPropTemp calls DeleteGovPropTempEntries, making sure it doesn't panic. +func (s *BaseTestSuite) ReqOKDelPropTemp(id uint64) { + s.Require().NotPanics(func() { + s.Keeper.DeleteGovPropTempEntries(s.SdkCtx, id) + }, "DeleteGovPropTempEntries(%d)", id) +} + +// NewAny calls codectypes.NewAnyWithValue requiring it to not error. +func (s *BaseTestSuite) NewAny(value proto.Message) *codectypes.Any { + rv, err := codectypes.NewAnyWithValue(value) + s.Require().NoError(err, "NewAnyWithValue on a %T", value) + return rv +} + +// CustomAny calls codectypes.NewAnyWithValue requiring it to not error. +// Then it overwrites the resulting TypeUrl using the provided typeValue. +func (s *BaseTestSuite) CustomAny(typeValue proto.Message, value proto.Message) *codectypes.Any { + rv, err := codectypes.NewAnyWithValue(value) + s.Require().NoError(err, "NewAnyWithValue on a %T", value) + if typeValue == nil { + rv.TypeUrl = "" + } else { + rv.TypeUrl = "/" + proto.MessageName(typeValue) + } + return rv +} + +// ExportAndCheck calls ExportGenesis, making sure it doesn't panic, +// then makes sure the result is as expected. +// Returns true if everything is okay. +func (s *BaseTestSuite) ExportAndCheck(expected *sanction.GenesisState) bool { + s.T().Helper() + + var actual *sanction.GenesisState + testFunc := func() { + actual = s.Keeper.ExportGenesis(s.SdkCtx) + } + s.Require().NotPanics(testFunc, "ExportGenesis") + if s.Assert().Equal(expected, actual, "ExportGenesis result") { + return true + } + if expected != nil && actual != nil { + // Okay, it failed, make assertions on each field to hopefully help highlight the differences. + if !s.Assert().Equal(expected.Params, actual.Params, "ExportGenesis result Params") && expected.Params != nil && actual.Params != nil { + s.Assert().Equal(expected.Params.ImmediateSanctionMinDeposit.String(), + actual.Params.ImmediateSanctionMinDeposit.String(), + "ExportGenesis result Params.ImmediateSanctionMinDeposit") + s.Assert().Equal(expected.Params.ImmediateUnsanctionMinDeposit.String(), + actual.Params.ImmediateUnsanctionMinDeposit.String(), + "ExportGenesis result Params.ImmediateUnsanctionMinDeposit") + } + s.Assert().Equal(expected.SanctionedAddresses, + actual.SanctionedAddresses, + "ExportGenesis result SanctionedAddresses") + s.Assert().Equal(expected.TemporaryEntries, + actual.TemporaryEntries, + "ExportGenesis result TemporaryEntries") + } + return false +} diff --git a/x/sanction/keys.go b/x/sanction/keys.go new file mode 100644 index 0000000000..41a5473c60 --- /dev/null +++ b/x/sanction/keys.go @@ -0,0 +1,9 @@ +package sanction + +const ( + // ModuleName is the name of the module + ModuleName = "sanction" + + // StoreKey is the store key string for gov + StoreKey = ModuleName +) diff --git a/x/sanction/module/module.go b/x/sanction/module/module.go new file mode 100644 index 0000000000..d071ca0df0 --- /dev/null +++ b/x/sanction/module/module.go @@ -0,0 +1,173 @@ +package module + +import ( + "context" + "encoding/json" + "fmt" + "math/rand" + + "github.com/grpc-ecosystem/grpc-gateway/runtime" + "github.com/spf13/cobra" + + abci "github.com/cometbft/cometbft/abci/types" + + "cosmossdk.io/core/appmodule" + + sdkclient "github.com/cosmos/cosmos-sdk/client" + "github.com/cosmos/cosmos-sdk/codec" + cdctypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/module" + simtypes "github.com/cosmos/cosmos-sdk/types/simulation" + govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" + + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/client/cli" + "github.com/provenance-io/provenance/x/sanction/keeper" + "github.com/provenance-io/provenance/x/sanction/simulation" +) + +var ( + _ module.AppModuleBasic = AppModuleBasic{} + _ module.AppModuleSimulation = AppModule{} + + _ appmodule.AppModule = AppModule{} +) + +type AppModuleBasic struct { + cdc codec.Codec +} + +func (AppModuleBasic) Name() string { + return sanction.ModuleName +} + +// DefaultGenesis returns default genesis state as raw bytes for the sanction module. +func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage { + return cdc.MustMarshalJSON(sanction.DefaultGenesisState()) +} + +// ValidateGenesis performs genesis state validation for the sanction module. +func (AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, _ sdkclient.TxEncodingConfig, bz json.RawMessage) error { + var data sanction.GenesisState + if err := cdc.UnmarshalJSON(bz, &data); err != nil { + return fmt.Errorf("failed to unmarshal %s genesis state: %w", sanction.ModuleName, err) + } + return data.Validate() +} + +// GetQueryCmd returns the cli query commands for the sanction module +func (a AppModuleBasic) GetQueryCmd() *cobra.Command { + return cli.QueryCmd() +} + +// GetTxCmd returns the transaction commands for the sanction module +func (a AppModuleBasic) GetTxCmd() *cobra.Command { + return cli.TxCmd() +} + +// RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the sanction module. +func (a AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx sdkclient.Context, mux *runtime.ServeMux) { + if err := sanction.RegisterQueryHandlerClient(context.Background(), mux, sanction.NewQueryClient(clientCtx)); err != nil { + panic(err) + } +} + +// RegisterInterfaces registers the sanction module's interface types +func (AppModuleBasic) RegisterInterfaces(registry cdctypes.InterfaceRegistry) { + sanction.RegisterInterfaces(registry) +} + +type AppModule struct { + AppModuleBasic + keeper keeper.Keeper + accKeeper sanction.AccountKeeper + bankKeeper sanction.BankKeeper + govKeeper govkeeper.Keeper + registry cdctypes.InterfaceRegistry +} + +func NewAppModule(cdc codec.Codec, sanctionKeeper keeper.Keeper, accKeeper sanction.AccountKeeper, bankKeeper sanction.BankKeeper, govKeeper govkeeper.Keeper, registry cdctypes.InterfaceRegistry) AppModule { + return AppModule{ + AppModuleBasic: AppModuleBasic{cdc: cdc}, + keeper: sanctionKeeper, + accKeeper: accKeeper, + bankKeeper: bankKeeper, + govKeeper: govKeeper, + registry: registry, + } +} + +// RegisterLegacyAminoCodec registers the sanction module's types for the given codec. +func (AppModuleBasic) RegisterLegacyAminoCodec(_ *codec.LegacyAmino) {} + +// IsOnePerModuleType is a dummy function that satisfies the OnePerModuleType interface (needed by AppModule). +func (AppModule) IsOnePerModuleType() {} + +// IsAppModule is a dummy function that satisfies the AppModule interface. +func (AppModule) IsAppModule() {} + +// RegisterInvariants does nothing, there are no invariants to enforce for the sanction module. +func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry) {} + +// InitGenesis performs genesis initialization for the sanction module. It returns +// no validator updates. +func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, data json.RawMessage) []abci.ValidatorUpdate { + var genesisState sanction.GenesisState + cdc.MustUnmarshalJSON(data, &genesisState) + am.keeper.InitGenesis(ctx, &genesisState) + return []abci.ValidatorUpdate{} +} + +// ExportGenesis returns the exported genesis state as raw bytes for the sanction module. +func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.RawMessage { + gs := am.keeper.ExportGenesis(ctx) + return cdc.MustMarshalJSON(gs) +} + +// RegisterServices registers a gRPC query service to respond to the sanction-specific gRPC queries. +func (am AppModule) RegisterServices(cfg module.Configurator) { + sanction.RegisterMsgServer(cfg.MsgServer(), am.keeper) + sanction.RegisterQueryServer(cfg.QueryServer(), am.keeper) +} + +// ConsensusVersion implements AppModule/ConsensusVersion. +func (AppModule) ConsensusVersion() uint64 { return 1 } + +// ____________________________________________________________________________ + +// AppModuleSimulation functions + +// GenerateGenesisState creates a randomized GenState of the sanction module. +func (am AppModule) GenerateGenesisState(simState *module.SimulationState) { + simulation.RandomizedGenState(simState) +} + +// ProposalContents returns all the sanction content functions used to +// simulate governance proposals. +func (am AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalContent { + // This is for stuff that uses the v1beta1 gov module's Content interface. + // This module use the v1 gov stuff, though, so there's nothing to do here. + // It's all handled in the WeightedOperations. + return nil +} + +// RandomizedParams creates randomized sanction param changes for the simulator. +func (AppModule) RandomizedParams(_ *rand.Rand) []simtypes.LegacyParamChange { + // While the x/sanction module does have "Params", it doesn't use the x/params module. + // So there's nothing to return here. + return nil +} + +// RegisterStoreDecoder registers a decoder for sanction module's types +func (am AppModule) RegisterStoreDecoder(sdr simtypes.StoreDecoderRegistry) { + sdr[sanction.StoreKey] = simulation.NewDecodeStore(am.cdc) +} + +// WeightedOperations returns the all the sanction module operations with their respective weights. +func (am AppModule) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation { + return simulation.WeightedOperations( + simState.AppParams, simState.Cdc, codec.NewProtoCodec(am.registry), + am.accKeeper, am.bankKeeper, am.govKeeper, am.keeper, + ) +} diff --git a/x/sanction/msgs.go b/x/sanction/msgs.go new file mode 100644 index 0000000000..e7ce7c22ed --- /dev/null +++ b/x/sanction/msgs.go @@ -0,0 +1,102 @@ +package sanction + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + + "github.com/provenance-io/provenance/x/sanction/errors" +) + +var _ sdk.Msg = &MsgSanction{} + +func NewMsgSanction(authority string, addrs ...sdk.AccAddress) *MsgSanction { + rv := &MsgSanction{ + Authority: authority, + } + for _, addr := range addrs { + rv.Addresses = append(rv.Addresses, addr.String()) + } + return rv +} + +func (m MsgSanction) ValidateBasic() error { + _, err := sdk.AccAddressFromBech32(m.Authority) + if err != nil { + return sdkerrors.ErrInvalidAddress.Wrapf("authority, %q: %v", m.Authority, err) + } + for i, addr := range m.Addresses { + _, err = sdk.AccAddressFromBech32(addr) + if err != nil { + return sdkerrors.ErrInvalidAddress.Wrapf("addresses[%d], %q: %v", i, addr, err) + } + } + return nil +} + +func (m MsgSanction) GetSigners() []sdk.AccAddress { + addr := sdk.MustAccAddressFromBech32(m.Authority) + return []sdk.AccAddress{addr} +} + +var _ sdk.Msg = &MsgUnsanction{} + +func NewMsgUnsanction(authority string, addrs ...sdk.AccAddress) *MsgUnsanction { + rv := &MsgUnsanction{ + Authority: authority, + } + for _, addr := range addrs { + rv.Addresses = append(rv.Addresses, addr.String()) + } + return rv +} + +func (m MsgUnsanction) ValidateBasic() error { + _, err := sdk.AccAddressFromBech32(m.Authority) + if err != nil { + return sdkerrors.ErrInvalidAddress.Wrapf("authority, %q: %v", m.Authority, err) + } + for i, addr := range m.Addresses { + _, err = sdk.AccAddressFromBech32(addr) + if err != nil { + return sdkerrors.ErrInvalidAddress.Wrapf("addresses[%d], %q: %v", i, addr, err) + } + } + return nil +} + +func (m MsgUnsanction) GetSigners() []sdk.AccAddress { + addr := sdk.MustAccAddressFromBech32(m.Authority) + return []sdk.AccAddress{addr} +} + +var _ sdk.Msg = &MsgUpdateParams{} + +func NewMsgUpdateParams(authority string, minDepSanction, minDepUnsanction sdk.Coins) *MsgUpdateParams { + rv := &MsgUpdateParams{ + Authority: authority, + Params: &Params{ + ImmediateSanctionMinDeposit: minDepSanction, + ImmediateUnsanctionMinDeposit: minDepUnsanction, + }, + } + return rv +} + +func (m MsgUpdateParams) ValidateBasic() error { + _, err := sdk.AccAddressFromBech32(m.Authority) + if err != nil { + return sdkerrors.ErrInvalidAddress.Wrapf("authority, %q: %v", m.Authority, err) + } + if m.Params != nil { + err = m.Params.ValidateBasic() + if err != nil { + return errors.ErrInvalidParams.Wrap(err.Error()) + } + } + return nil +} + +func (m MsgUpdateParams) GetSigners() []sdk.AccAddress { + addr := sdk.MustAccAddressFromBech32(m.Authority) + return []sdk.AccAddress{addr} +} diff --git a/x/sanction/msgs_test.go b/x/sanction/msgs_test.go new file mode 100644 index 0000000000..8910ec0494 --- /dev/null +++ b/x/sanction/msgs_test.go @@ -0,0 +1,658 @@ +package sanction_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" +) + +func TestNewMsgSanction(t *testing.T) { + tests := []struct { + name string + authority string + addrs []sdk.AccAddress + exp *sanction.MsgSanction + }{ + { + name: "empty nil", + authority: "", + addrs: nil, + exp: &sanction.MsgSanction{ + Addresses: nil, + Authority: "", + }, + }, + { + name: "empty empty", + authority: "", + addrs: []sdk.AccAddress{}, + exp: &sanction.MsgSanction{ + Addresses: nil, + Authority: "", + }, + }, + { + name: "just authority provided", + authority: "cartman", + addrs: nil, + exp: &sanction.MsgSanction{ + Addresses: nil, + Authority: "cartman", + }, + }, + { + name: "three addresses provided", + authority: "authority", + addrs: []sdk.AccAddress{ + sdk.AccAddress("testaddr0___________"), + sdk.AccAddress("testaddr1___________"), + sdk.AccAddress("testaddr2___________"), + }, + exp: &sanction.MsgSanction{ + Addresses: []string{ + sdk.AccAddress("testaddr0___________").String(), + sdk.AccAddress("testaddr1___________").String(), + sdk.AccAddress("testaddr2___________").String(), + }, + Authority: "authority", + }, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var msg *sanction.MsgSanction + testFunc := func() { + msg = sanction.NewMsgSanction(tc.authority, tc.addrs...) + } + require.NotPanics(t, testFunc, "NewMsgSanction") + assert.Equal(t, tc.exp, msg, "NewMsgSanction result") + }) + } +} + +func TestMsgSanction_ValidateBasic(t *testing.T) { + tests := []struct { + name string + msg *sanction.MsgSanction + exp []string + }{ + { + name: "control", + msg: &sanction.MsgSanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: nil, + }, + { + name: "empty authority", + msg: &sanction.MsgSanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: "", + }, + exp: []string{"invalid address", "authority", `""`, "empty address string is not allowed"}, + }, + { + name: "bad authority", + msg: &sanction.MsgSanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: "bad1authority", + }, + exp: []string{"invalid address", "authority", `"bad1authority"`, "decoding bech32 failed"}, + }, + { + name: "bad first addr", + msg: &sanction.MsgSanction{ + Addresses: []string{ + "bad1firstaddr", + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: []string{"invalid address", "addresses[0]", `"bad1firstaddr"`, "decoding bech32 failed"}, + }, + { + name: "bad third addr", + msg: &sanction.MsgSanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + "bad1thirdaddr", + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: []string{"invalid address", "addresses[2]", `"bad1thirdaddr"`, "decoding bech32 failed"}, + }, + { + name: "bad first addr", + msg: &sanction.MsgSanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + "bad1fifthaddr", + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: []string{"invalid address", "addresses[4]", `"bad1fifthaddr"`, "decoding bech32 failed"}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var err error + testFunc := func() { + err = tc.msg.ValidateBasic() + } + require.NotPanics(t, testFunc, "ValidateBasic") + assertions.AssertErrorContents(t, err, tc.exp, "ValidateBasic result.") + }) + } +} + +func TestMsgSanction_GetSigners(t *testing.T) { + tests := []struct { + name string + msg *sanction.MsgSanction + exp []sdk.AccAddress + panic string + }{ + { + name: "empty authority", + msg: &sanction.MsgSanction{Authority: ""}, + panic: "empty address string is not allowed", + }, + { + name: "bad authority", + msg: &sanction.MsgSanction{Authority: "nope1notauthority"}, + panic: "decoding bech32 failed: invalid character not part of charset: 111", + }, + { + name: "good authority", + msg: &sanction.MsgSanction{Authority: sdk.AccAddress("testauthority_______").String()}, + exp: []sdk.AccAddress{sdk.AccAddress("testauthority_______")}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []sdk.AccAddress + testFunc := func() { + actual = tc.msg.GetSigners() + } + if len(tc.panic) > 0 { + require.PanicsWithError(t, tc.panic, testFunc, "GetSigners()") + } else { + require.NotPanics(t, testFunc, "GetSigners()") + assert.Equal(t, tc.exp, actual, "GetSigners result") + } + }) + } +} + +func TestNewMsgUnsanction(t *testing.T) { + tests := []struct { + name string + authority string + addrs []sdk.AccAddress + exp *sanction.MsgUnsanction + }{ + { + name: "empty nil", + authority: "", + addrs: nil, + exp: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: "", + }, + }, + { + name: "empty empty", + authority: "", + addrs: []sdk.AccAddress{}, + exp: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: "", + }, + }, + { + name: "just authority provided", + authority: "cartman", + addrs: nil, + exp: &sanction.MsgUnsanction{ + Addresses: nil, + Authority: "cartman", + }, + }, + { + name: "three addresses provided", + authority: "authority", + addrs: []sdk.AccAddress{ + sdk.AccAddress("testaddr0___________"), + sdk.AccAddress("testaddr1___________"), + sdk.AccAddress("testaddr2___________"), + }, + exp: &sanction.MsgUnsanction{ + Addresses: []string{ + sdk.AccAddress("testaddr0___________").String(), + sdk.AccAddress("testaddr1___________").String(), + sdk.AccAddress("testaddr2___________").String(), + }, + Authority: "authority", + }, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var msg *sanction.MsgUnsanction + testFunc := func() { + msg = sanction.NewMsgUnsanction(tc.authority, tc.addrs...) + } + require.NotPanics(t, testFunc, "NewMsgUnsanction") + assert.Equal(t, tc.exp, msg, "NewMsgUnsanction result") + }) + } +} + +func TestMsgUnsanction_ValidateBasic(t *testing.T) { + tests := []struct { + name string + msg *sanction.MsgUnsanction + exp []string + }{ + { + name: "control", + msg: &sanction.MsgUnsanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: nil, + }, + { + name: "empty authority", + msg: &sanction.MsgUnsanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: "", + }, + exp: []string{"invalid address", "authority", `""`, "empty address string is not allowed"}, + }, + { + name: "bad authority", + msg: &sanction.MsgUnsanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: "bad1authority", + }, + exp: []string{"invalid address", "authority", `"bad1authority"`, "decoding bech32 failed"}, + }, + { + name: "bad first addr", + msg: &sanction.MsgUnsanction{ + Addresses: []string{ + "bad1firstaddr", + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: []string{"invalid address", "addresses[0]", `"bad1firstaddr"`, "decoding bech32 failed"}, + }, + { + name: "bad third addr", + msg: &sanction.MsgUnsanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + "bad1thirdaddr", + sdk.AccAddress("addr3_______________").String(), + sdk.AccAddress("addr4_______________").String(), + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: []string{"invalid address", "addresses[2]", `"bad1thirdaddr"`, "decoding bech32 failed"}, + }, + { + name: "bad first addr", + msg: &sanction.MsgUnsanction{ + Addresses: []string{ + sdk.AccAddress("addr0_______________").String(), + sdk.AccAddress("addr1_______________").String(), + sdk.AccAddress("addr2_______________").String(), + sdk.AccAddress("addr3_______________").String(), + "bad1fifthaddr", + }, + Authority: sdk.AccAddress("authority___________").String(), + }, + exp: []string{"invalid address", "addresses[4]", `"bad1fifthaddr"`, "decoding bech32 failed"}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var err error + testFunc := func() { + err = tc.msg.ValidateBasic() + } + require.NotPanics(t, testFunc, "ValidateBasic") + assertions.AssertErrorContents(t, err, tc.exp, "ValidateBasic result.") + }) + } +} + +func TestMsgUnsanction_GetSigners(t *testing.T) { + tests := []struct { + name string + msg *sanction.MsgUnsanction + exp []sdk.AccAddress + panic string + }{ + { + name: "empty authority", + msg: &sanction.MsgUnsanction{Authority: ""}, + panic: "empty address string is not allowed", + }, + { + name: "bad authority", + msg: &sanction.MsgUnsanction{Authority: "nope1notauthority"}, + panic: "decoding bech32 failed: invalid character not part of charset: 111", + }, + { + name: "good authority", + msg: &sanction.MsgUnsanction{Authority: sdk.AccAddress("testauthority_______").String()}, + exp: []sdk.AccAddress{sdk.AccAddress("testauthority_______")}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []sdk.AccAddress + testFunc := func() { + actual = tc.msg.GetSigners() + } + if len(tc.panic) > 0 { + require.PanicsWithError(t, tc.panic, testFunc, "GetSigners()") + } else { + require.NotPanics(t, testFunc, "GetSigners()") + assert.Equal(t, tc.exp, actual, "GetSigners result") + } + }) + } +} + +func TestNewMsgUpdateParams(t *testing.T) { + // cz is a short way of defining sdk.Coins for these tests. + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + require.NoError(t, err, "ParseCoinsNormalized(%q)", coins) + return rv + } + + tests := []struct { + name string + authority string + minDepSanction sdk.Coins + minDepUnsanction sdk.Coins + expected *sanction.MsgUpdateParams + }{ + { + name: "control", + authority: "auth-str", + minDepSanction: cz("1acoin,2bcoin"), + minDepUnsanction: cz("5acoin,3bcoin,1ccoin"), + expected: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("1acoin,2bcoin"), + ImmediateUnsanctionMinDeposit: cz("5acoin,3bcoin,1ccoin"), + }, + Authority: "auth-str", + }, + }, + { + name: "empty authority", + authority: "", + minDepSanction: cz("1acoin,2bcoin"), + minDepUnsanction: cz("5acoin,3bcoin,1ccoin"), + expected: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("1acoin,2bcoin"), + ImmediateUnsanctionMinDeposit: cz("5acoin,3bcoin,1ccoin"), + }, + Authority: "", + }, + }, + { + name: "nil minDepSanction", + authority: "auth-str", + minDepSanction: nil, + minDepUnsanction: cz("5acoin,3bcoin,1ccoin"), + expected: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: cz("5acoin,3bcoin,1ccoin"), + }, + Authority: "auth-str", + }, + }, + { + name: "empty minDepSanction", + authority: "auth-str", + minDepSanction: sdk.Coins{}, + minDepUnsanction: cz("5acoin,3bcoin,1ccoin"), + expected: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{}, + ImmediateUnsanctionMinDeposit: cz("5acoin,3bcoin,1ccoin"), + }, + Authority: "auth-str", + }, + }, + { + name: "nil minDepUnsanction", + authority: "auth-str", + minDepSanction: cz("1acoin,2bcoin"), + minDepUnsanction: nil, + expected: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("1acoin,2bcoin"), + ImmediateUnsanctionMinDeposit: nil, + }, + Authority: "auth-str", + }, + }, + { + name: "empty minDepUnsanction", + authority: "auth-str", + minDepSanction: cz("1acoin,2bcoin"), + minDepUnsanction: sdk.Coins{}, + expected: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("1acoin,2bcoin"), + ImmediateUnsanctionMinDeposit: sdk.Coins{}, + }, + Authority: "auth-str", + }, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual *sanction.MsgUpdateParams + testFunc := func() { + actual = sanction.NewMsgUpdateParams(tc.authority, tc.minDepSanction, tc.minDepUnsanction) + } + require.NotPanics(t, testFunc, "NewMsgUpdateParams") + if !assert.Equal(t, tc.expected, actual, "NewMsgUpdateParams result") && actual != nil { + // The test already failed, assert each field just to make it easier to find the problem. + assert.Equal(t, tc.expected.Authority, actual.Authority, "Authority") + if assert.NotNil(t, actual.Params, "Params") { + assert.Equal(t, tc.expected.Params.ImmediateSanctionMinDeposit.String(), + actual.Params.ImmediateSanctionMinDeposit.String(), "ImmediateSanctionMinDeposit") + assert.Equal(t, tc.expected.Params.ImmediateUnsanctionMinDeposit.String(), + actual.Params.ImmediateUnsanctionMinDeposit.String(), "ImmediateUnsanctionMinDeposit") + } + } + }) + } +} + +func TestMsgUpdateParams_ValidateBasic(t *testing.T) { + // cz is a short way of defining sdk.Coins for these tests. + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + require.NoError(t, err, "ParseCoinsNormalized(%q)", coins) + return rv + } + + tests := []struct { + name string + msg *sanction.MsgUpdateParams + exp []string + }{ + { + name: "control", + msg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("5dolla"), + ImmediateUnsanctionMinDeposit: cz("50cent"), + }, + Authority: sdk.AccAddress("authority_test_addr_").String(), + }, + exp: nil, + }, + { + name: "empty authority", + msg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("5dolla"), + ImmediateUnsanctionMinDeposit: cz("50cent"), + }, + Authority: "", + }, + exp: []string{"invalid address", "authority", `""`, "empty address string is not allowed"}, + }, + { + name: "bad authority", + msg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("5dolla"), + ImmediateUnsanctionMinDeposit: cz("50cent"), + }, + Authority: "auth1notvalidaddr", + }, + exp: []string{"invalid address", "authority", `"auth1notvalidaddr"`, "decoding bech32 failed"}, + }, + { + name: "bad params", + msg: &sanction.MsgUpdateParams{ + Params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{sdk.NewInt64Coin("dcoin", 1), sdk.NewInt64Coin("dcoin", 2)}, + ImmediateUnsanctionMinDeposit: cz("50cent"), + }, + Authority: sdk.AccAddress("authority_test_addr_").String(), + }, + exp: []string{"invalid params", "invalid immediate sanction min deposit", "duplicate denomination dcoin"}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var err error + testFunc := func() { + err = tc.msg.ValidateBasic() + } + require.NotPanics(t, testFunc, "ValidateBasic") + assertions.AssertErrorContents(t, err, tc.exp, "ValidateBasic result.") + }) + } +} + +func TestMsgUpdateParams_GetSigners(t *testing.T) { + tests := []struct { + name string + msg *sanction.MsgUpdateParams + exp []sdk.AccAddress + panic string + }{ + { + name: "empty authority", + msg: &sanction.MsgUpdateParams{Authority: ""}, + panic: "empty address string is not allowed", + }, + { + name: "bad authority", + msg: &sanction.MsgUpdateParams{Authority: "nope1notauthority"}, + panic: "decoding bech32 failed: invalid character not part of charset: 111", + }, + { + name: "good authority", + msg: &sanction.MsgUpdateParams{Authority: sdk.AccAddress("testauthority_______").String()}, + exp: []sdk.AccAddress{sdk.AccAddress("testauthority_______")}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual []sdk.AccAddress + testFunc := func() { + actual = tc.msg.GetSigners() + } + if len(tc.panic) > 0 { + require.PanicsWithError(t, tc.panic, testFunc, "GetSigners()") + } else { + require.NotPanics(t, testFunc, "GetSigners()") + assert.Equal(t, tc.exp, actual, "GetSigners result") + } + }) + } +} diff --git a/x/sanction/query.pb.go b/x/sanction/query.pb.go new file mode 100644 index 0000000000..b01232d8e0 --- /dev/null +++ b/x/sanction/query.pb.go @@ -0,0 +1,1914 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/sanction/v1beta1/query.proto + +package sanction + +import ( + context "context" + fmt "fmt" + _ "github.com/cosmos/cosmos-proto" + query "github.com/cosmos/cosmos-sdk/types/query" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" + _ "google.golang.org/genproto/googleapis/api/annotations" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" + 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 + +// QueryIsSanctionedRequest defines the RPC request for checking if an account is sanctioned. +type QueryIsSanctionedRequest struct { + Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` +} + +func (m *QueryIsSanctionedRequest) Reset() { *m = QueryIsSanctionedRequest{} } +func (m *QueryIsSanctionedRequest) String() string { return proto.CompactTextString(m) } +func (*QueryIsSanctionedRequest) ProtoMessage() {} +func (*QueryIsSanctionedRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{0} +} +func (m *QueryIsSanctionedRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryIsSanctionedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryIsSanctionedRequest.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 *QueryIsSanctionedRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryIsSanctionedRequest.Merge(m, src) +} +func (m *QueryIsSanctionedRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryIsSanctionedRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryIsSanctionedRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryIsSanctionedRequest proto.InternalMessageInfo + +func (m *QueryIsSanctionedRequest) GetAddress() string { + if m != nil { + return m.Address + } + return "" +} + +// QueryIsSanctionedResponse defines the RPC response of an IsSanctioned query. +type QueryIsSanctionedResponse struct { + // is_sanctioned is true if the address is sanctioned. + IsSanctioned bool `protobuf:"varint,1,opt,name=is_sanctioned,json=isSanctioned,proto3" json:"is_sanctioned,omitempty"` +} + +func (m *QueryIsSanctionedResponse) Reset() { *m = QueryIsSanctionedResponse{} } +func (m *QueryIsSanctionedResponse) String() string { return proto.CompactTextString(m) } +func (*QueryIsSanctionedResponse) ProtoMessage() {} +func (*QueryIsSanctionedResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{1} +} +func (m *QueryIsSanctionedResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryIsSanctionedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryIsSanctionedResponse.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 *QueryIsSanctionedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryIsSanctionedResponse.Merge(m, src) +} +func (m *QueryIsSanctionedResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryIsSanctionedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryIsSanctionedResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryIsSanctionedResponse proto.InternalMessageInfo + +func (m *QueryIsSanctionedResponse) GetIsSanctioned() bool { + if m != nil { + return m.IsSanctioned + } + return false +} + +// QuerySanctionedAddressesRequest defines the RPC request for listing sanctioned accounts. +type QuerySanctionedAddressesRequest struct { + // pagination defines an optional pagination for the request. + Pagination *query.PageRequest `protobuf:"bytes,99,opt,name=pagination,proto3" json:"pagination,omitempty"` +} + +func (m *QuerySanctionedAddressesRequest) Reset() { *m = QuerySanctionedAddressesRequest{} } +func (m *QuerySanctionedAddressesRequest) String() string { return proto.CompactTextString(m) } +func (*QuerySanctionedAddressesRequest) ProtoMessage() {} +func (*QuerySanctionedAddressesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{2} +} +func (m *QuerySanctionedAddressesRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QuerySanctionedAddressesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QuerySanctionedAddressesRequest.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 *QuerySanctionedAddressesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QuerySanctionedAddressesRequest.Merge(m, src) +} +func (m *QuerySanctionedAddressesRequest) XXX_Size() int { + return m.Size() +} +func (m *QuerySanctionedAddressesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QuerySanctionedAddressesRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QuerySanctionedAddressesRequest proto.InternalMessageInfo + +func (m *QuerySanctionedAddressesRequest) GetPagination() *query.PageRequest { + if m != nil { + return m.Pagination + } + return nil +} + +// QuerySanctionedAddressesResponse defines the RPC response of a SanctionedAddresses query. +type QuerySanctionedAddressesResponse struct { + // addresses is the list of sanctioned account addresses. + Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"` + // pagination defines the pagination in the response. + Pagination *query.PageResponse `protobuf:"bytes,99,opt,name=pagination,proto3" json:"pagination,omitempty"` +} + +func (m *QuerySanctionedAddressesResponse) Reset() { *m = QuerySanctionedAddressesResponse{} } +func (m *QuerySanctionedAddressesResponse) String() string { return proto.CompactTextString(m) } +func (*QuerySanctionedAddressesResponse) ProtoMessage() {} +func (*QuerySanctionedAddressesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{3} +} +func (m *QuerySanctionedAddressesResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QuerySanctionedAddressesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QuerySanctionedAddressesResponse.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 *QuerySanctionedAddressesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QuerySanctionedAddressesResponse.Merge(m, src) +} +func (m *QuerySanctionedAddressesResponse) XXX_Size() int { + return m.Size() +} +func (m *QuerySanctionedAddressesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QuerySanctionedAddressesResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QuerySanctionedAddressesResponse proto.InternalMessageInfo + +func (m *QuerySanctionedAddressesResponse) GetAddresses() []string { + if m != nil { + return m.Addresses + } + return nil +} + +func (m *QuerySanctionedAddressesResponse) GetPagination() *query.PageResponse { + if m != nil { + return m.Pagination + } + return nil +} + +// QueryTemporaryEntriesRequest defines the RPC request for listing temporary sanction/unsanction entries. +type QueryTemporaryEntriesRequest struct { + // address is an optional address to restrict results to. + Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` + // pagination defines an optional pagination for the request. + Pagination *query.PageRequest `protobuf:"bytes,99,opt,name=pagination,proto3" json:"pagination,omitempty"` +} + +func (m *QueryTemporaryEntriesRequest) Reset() { *m = QueryTemporaryEntriesRequest{} } +func (m *QueryTemporaryEntriesRequest) String() string { return proto.CompactTextString(m) } +func (*QueryTemporaryEntriesRequest) ProtoMessage() {} +func (*QueryTemporaryEntriesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{4} +} +func (m *QueryTemporaryEntriesRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryTemporaryEntriesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryTemporaryEntriesRequest.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 *QueryTemporaryEntriesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryTemporaryEntriesRequest.Merge(m, src) +} +func (m *QueryTemporaryEntriesRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryTemporaryEntriesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryTemporaryEntriesRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryTemporaryEntriesRequest proto.InternalMessageInfo + +func (m *QueryTemporaryEntriesRequest) GetAddress() string { + if m != nil { + return m.Address + } + return "" +} + +func (m *QueryTemporaryEntriesRequest) GetPagination() *query.PageRequest { + if m != nil { + return m.Pagination + } + return nil +} + +// QueryTemporaryEntriesResponse defines the RPC response of a TemporaryEntries query. +type QueryTemporaryEntriesResponse struct { + Entries []*TemporaryEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"` + // pagination defines the pagination in the response. + Pagination *query.PageResponse `protobuf:"bytes,99,opt,name=pagination,proto3" json:"pagination,omitempty"` +} + +func (m *QueryTemporaryEntriesResponse) Reset() { *m = QueryTemporaryEntriesResponse{} } +func (m *QueryTemporaryEntriesResponse) String() string { return proto.CompactTextString(m) } +func (*QueryTemporaryEntriesResponse) ProtoMessage() {} +func (*QueryTemporaryEntriesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{5} +} +func (m *QueryTemporaryEntriesResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryTemporaryEntriesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryTemporaryEntriesResponse.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 *QueryTemporaryEntriesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryTemporaryEntriesResponse.Merge(m, src) +} +func (m *QueryTemporaryEntriesResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryTemporaryEntriesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryTemporaryEntriesResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryTemporaryEntriesResponse proto.InternalMessageInfo + +func (m *QueryTemporaryEntriesResponse) GetEntries() []*TemporaryEntry { + if m != nil { + return m.Entries + } + return nil +} + +func (m *QueryTemporaryEntriesResponse) GetPagination() *query.PageResponse { + if m != nil { + return m.Pagination + } + return nil +} + +// QueryParamsRequest defines the RPC request for getting the sanction module params. +type QueryParamsRequest struct { +} + +func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } +func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } +func (*QueryParamsRequest) ProtoMessage() {} +func (*QueryParamsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{6} +} +func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryParamsRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryParamsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryParamsRequest.Merge(m, src) +} +func (m *QueryParamsRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryParamsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryParamsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryParamsRequest proto.InternalMessageInfo + +// QueryParamsResponse defines the RPC response of a Params query. +type QueryParamsResponse struct { + // params are the sanction module parameters. + Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"` +} + +func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } +func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } +func (*QueryParamsResponse) ProtoMessage() {} +func (*QueryParamsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9d9fc7de93fcbdc3, []int{7} +} +func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryParamsResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryParamsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryParamsResponse.Merge(m, src) +} +func (m *QueryParamsResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryParamsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryParamsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryParamsResponse proto.InternalMessageInfo + +func (m *QueryParamsResponse) GetParams() *Params { + if m != nil { + return m.Params + } + return nil +} + +func init() { + proto.RegisterType((*QueryIsSanctionedRequest)(nil), "cosmos.sanction.v1beta1.QueryIsSanctionedRequest") + proto.RegisterType((*QueryIsSanctionedResponse)(nil), "cosmos.sanction.v1beta1.QueryIsSanctionedResponse") + proto.RegisterType((*QuerySanctionedAddressesRequest)(nil), "cosmos.sanction.v1beta1.QuerySanctionedAddressesRequest") + proto.RegisterType((*QuerySanctionedAddressesResponse)(nil), "cosmos.sanction.v1beta1.QuerySanctionedAddressesResponse") + proto.RegisterType((*QueryTemporaryEntriesRequest)(nil), "cosmos.sanction.v1beta1.QueryTemporaryEntriesRequest") + proto.RegisterType((*QueryTemporaryEntriesResponse)(nil), "cosmos.sanction.v1beta1.QueryTemporaryEntriesResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.sanction.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.sanction.v1beta1.QueryParamsResponse") +} + +func init() { + proto.RegisterFile("cosmos/sanction/v1beta1/query.proto", fileDescriptor_9d9fc7de93fcbdc3) +} + +var fileDescriptor_9d9fc7de93fcbdc3 = []byte{ + // 606 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xcf, 0x4f, 0x13, 0x41, + 0x14, 0xc7, 0x3b, 0x1a, 0x8a, 0x3c, 0x30, 0x31, 0x03, 0x89, 0x65, 0x53, 0xb6, 0x75, 0x51, 0x68, + 0x50, 0x76, 0x6d, 0x8d, 0xa8, 0x37, 0x21, 0xf1, 0xd7, 0x85, 0x60, 0xf1, 0xe4, 0x85, 0x4c, 0xb7, + 0x93, 0x65, 0x63, 0x3b, 0xb3, 0xec, 0x6c, 0x89, 0x8d, 0xf1, 0xe2, 0xd9, 0x83, 0x89, 0x37, 0x0f, + 0x5e, 0x3c, 0x68, 0xe2, 0xc5, 0x83, 0x7f, 0x84, 0x47, 0xa2, 0x17, 0x8f, 0xa6, 0xf5, 0x0f, 0x31, + 0xcc, 0xcc, 0xf6, 0x07, 0xe9, 0x54, 0x20, 0x1c, 0x77, 0xe6, 0xfb, 0xbe, 0xef, 0x93, 0xef, 0xbc, + 0xd7, 0xc2, 0xa2, 0xcf, 0x45, 0x93, 0x0b, 0x4f, 0x10, 0xe6, 0x27, 0x21, 0x67, 0xde, 0x7e, 0xb9, + 0x46, 0x13, 0x52, 0xf6, 0xf6, 0x5a, 0x34, 0x6e, 0xbb, 0x51, 0xcc, 0x13, 0x8e, 0x2f, 0x2b, 0x91, + 0x9b, 0x8a, 0x5c, 0x2d, 0xb2, 0x56, 0x74, 0x75, 0x8d, 0x08, 0xaa, 0x2a, 0x7a, 0xf5, 0x11, 0x09, + 0x42, 0x46, 0xa4, 0x5a, 0x9a, 0x58, 0x4b, 0xa6, 0x4e, 0x3d, 0x57, 0xa5, 0x9b, 0x57, 0xba, 0x1d, + 0xf9, 0xe5, 0xe9, 0xce, 0xea, 0x2a, 0x1f, 0x70, 0x1e, 0x34, 0xa8, 0x47, 0xa2, 0xd0, 0x23, 0x8c, + 0xf1, 0x44, 0xfa, 0xeb, 0x5b, 0x67, 0x13, 0x72, 0x4f, 0x0f, 0x11, 0x9e, 0x88, 0x6d, 0xed, 0x48, + 0xeb, 0x55, 0xba, 0xd7, 0xa2, 0x22, 0xc1, 0x15, 0x98, 0x24, 0xf5, 0x7a, 0x4c, 0x85, 0xc8, 0xa1, + 0x22, 0x2a, 0x4d, 0x6d, 0xe4, 0x7e, 0x7e, 0x5f, 0x9d, 0xd3, 0xe6, 0xeb, 0xea, 0x66, 0x3b, 0x89, + 0x43, 0x16, 0x54, 0x53, 0xa1, 0x73, 0x1f, 0xe6, 0x47, 0xf8, 0x89, 0x88, 0x33, 0x41, 0xf1, 0x22, + 0x5c, 0x0c, 0xc5, 0x8e, 0xe8, 0x5d, 0x48, 0xdb, 0x0b, 0xd5, 0x99, 0x70, 0x40, 0xec, 0x84, 0x50, + 0x90, 0x0e, 0xfd, 0x23, 0xdd, 0x8a, 0x8a, 0x14, 0xec, 0x21, 0x40, 0x3f, 0xa9, 0x9c, 0x5f, 0x44, + 0xa5, 0xe9, 0xca, 0x92, 0xab, 0xc1, 0x0e, 0x63, 0x75, 0xd5, 0x43, 0xe8, 0xb0, 0xdc, 0x2d, 0x12, + 0x50, 0x5d, 0x5b, 0x1d, 0xa8, 0x74, 0x3e, 0x21, 0x28, 0x9a, 0x7b, 0x69, 0xe8, 0x35, 0x98, 0x22, + 0xe9, 0x61, 0x0e, 0x15, 0xcf, 0x8f, 0xcd, 0xa1, 0x2f, 0xc5, 0x8f, 0x46, 0x40, 0x2e, 0xff, 0x17, + 0x52, 0x35, 0x1d, 0xa2, 0xfc, 0x80, 0x20, 0x2f, 0x29, 0x9f, 0xd1, 0x66, 0xc4, 0x63, 0x12, 0xb7, + 0x1f, 0xb0, 0x24, 0x0e, 0xfb, 0x71, 0x9c, 0xe2, 0x9d, 0xce, 0x2c, 0xc2, 0xaf, 0x08, 0x16, 0x0c, + 0x70, 0x3a, 0xbf, 0x75, 0x98, 0xa4, 0xea, 0x48, 0xa6, 0x37, 0x10, 0xc2, 0xd1, 0xcd, 0x70, 0x87, + 0x3c, 0xda, 0xd5, 0xb4, 0xee, 0xec, 0xa2, 0x9c, 0x03, 0x2c, 0x61, 0xb7, 0x48, 0x4c, 0x9a, 0x69, + 0x7e, 0xce, 0x26, 0xcc, 0x0e, 0x9d, 0x6a, 0xf0, 0x3b, 0x90, 0x8d, 0xe4, 0x89, 0x4c, 0x75, 0xba, + 0x52, 0x30, 0x72, 0xeb, 0x42, 0x2d, 0xaf, 0x7c, 0x9c, 0x80, 0x09, 0x69, 0x88, 0x3f, 0x23, 0x98, + 0x19, 0xdc, 0x04, 0x5c, 0x36, 0x7a, 0x98, 0xb6, 0xd0, 0xaa, 0x9c, 0xa4, 0x44, 0xa1, 0x3b, 0x37, + 0xdf, 0xfc, 0xfa, 0xfb, 0xfe, 0xdc, 0x0a, 0x2e, 0x79, 0xa6, 0xdf, 0x0f, 0x7f, 0x97, 0xfa, 0x2f, + 0xbc, 0x57, 0x7a, 0x1c, 0x5e, 0xe3, 0x6f, 0x08, 0x66, 0x47, 0x6c, 0x01, 0xbe, 0x3b, 0xbe, 0xbb, + 0x79, 0x49, 0xad, 0x7b, 0xa7, 0xa8, 0xd4, 0xf8, 0x57, 0x25, 0xbe, 0x8d, 0xf3, 0x46, 0x7c, 0xd2, + 0x68, 0xe0, 0x2f, 0x08, 0x2e, 0x1d, 0x9d, 0x3a, 0x7c, 0x7b, 0x7c, 0x57, 0xc3, 0x0a, 0x59, 0x6b, + 0x27, 0x2d, 0xd3, 0xa4, 0xd7, 0x24, 0x69, 0x01, 0x2f, 0x18, 0x49, 0x13, 0xda, 0x8c, 0xf0, 0x5b, + 0x04, 0x59, 0x35, 0x24, 0xf8, 0xfa, 0xf8, 0x4e, 0x43, 0x93, 0x69, 0xdd, 0x38, 0x9e, 0x58, 0xc3, + 0x2c, 0x4b, 0x98, 0x2b, 0xb8, 0x60, 0x84, 0x51, 0x03, 0xba, 0xf1, 0xf8, 0x47, 0xc7, 0x46, 0x07, + 0x1d, 0x1b, 0xfd, 0xe9, 0xd8, 0xe8, 0x5d, 0xd7, 0xce, 0x1c, 0x74, 0xed, 0xcc, 0xef, 0xae, 0x9d, + 0x79, 0xee, 0x06, 0x61, 0xb2, 0xdb, 0xaa, 0xb9, 0x3e, 0x6f, 0x7a, 0x51, 0xcc, 0xf7, 0x29, 0x23, + 0xcc, 0xa7, 0xab, 0x21, 0x1f, 0xf8, 0xf2, 0x5e, 0xf6, 0x8c, 0x6b, 0x59, 0xf9, 0x2f, 0x72, 0xeb, + 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x42, 0x5f, 0xe8, 0x01, 0x12, 0x07, 0x00, 0x00, +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConn + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion4 + +// QueryClient is the client API for Query service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type QueryClient interface { + // IsSanctioned checks if an account has been sanctioned. + IsSanctioned(ctx context.Context, in *QueryIsSanctionedRequest, opts ...grpc.CallOption) (*QueryIsSanctionedResponse, error) + // SanctionedAddresses returns a list of sanctioned addresses. + SanctionedAddresses(ctx context.Context, in *QuerySanctionedAddressesRequest, opts ...grpc.CallOption) (*QuerySanctionedAddressesResponse, error) + // TemporaryEntries returns temporary sanction/unsanction info. + TemporaryEntries(ctx context.Context, in *QueryTemporaryEntriesRequest, opts ...grpc.CallOption) (*QueryTemporaryEntriesResponse, error) + // Params returns the sanction module's params. + Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) +} + +type queryClient struct { + cc grpc1.ClientConn +} + +func NewQueryClient(cc grpc1.ClientConn) QueryClient { + return &queryClient{cc} +} + +func (c *queryClient) IsSanctioned(ctx context.Context, in *QueryIsSanctionedRequest, opts ...grpc.CallOption) (*QueryIsSanctionedResponse, error) { + out := new(QueryIsSanctionedResponse) + err := c.cc.Invoke(ctx, "/cosmos.sanction.v1beta1.Query/IsSanctioned", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *queryClient) SanctionedAddresses(ctx context.Context, in *QuerySanctionedAddressesRequest, opts ...grpc.CallOption) (*QuerySanctionedAddressesResponse, error) { + out := new(QuerySanctionedAddressesResponse) + err := c.cc.Invoke(ctx, "/cosmos.sanction.v1beta1.Query/SanctionedAddresses", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *queryClient) TemporaryEntries(ctx context.Context, in *QueryTemporaryEntriesRequest, opts ...grpc.CallOption) (*QueryTemporaryEntriesResponse, error) { + out := new(QueryTemporaryEntriesResponse) + err := c.cc.Invoke(ctx, "/cosmos.sanction.v1beta1.Query/TemporaryEntries", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { + out := new(QueryParamsResponse) + err := c.cc.Invoke(ctx, "/cosmos.sanction.v1beta1.Query/Params", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// QueryServer is the server API for Query service. +type QueryServer interface { + // IsSanctioned checks if an account has been sanctioned. + IsSanctioned(context.Context, *QueryIsSanctionedRequest) (*QueryIsSanctionedResponse, error) + // SanctionedAddresses returns a list of sanctioned addresses. + SanctionedAddresses(context.Context, *QuerySanctionedAddressesRequest) (*QuerySanctionedAddressesResponse, error) + // TemporaryEntries returns temporary sanction/unsanction info. + TemporaryEntries(context.Context, *QueryTemporaryEntriesRequest) (*QueryTemporaryEntriesResponse, error) + // Params returns the sanction module's params. + Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) +} + +// UnimplementedQueryServer can be embedded to have forward compatible implementations. +type UnimplementedQueryServer struct { +} + +func (*UnimplementedQueryServer) IsSanctioned(ctx context.Context, req *QueryIsSanctionedRequest) (*QueryIsSanctionedResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method IsSanctioned not implemented") +} +func (*UnimplementedQueryServer) SanctionedAddresses(ctx context.Context, req *QuerySanctionedAddressesRequest) (*QuerySanctionedAddressesResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method SanctionedAddresses not implemented") +} +func (*UnimplementedQueryServer) TemporaryEntries(ctx context.Context, req *QueryTemporaryEntriesRequest) (*QueryTemporaryEntriesResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method TemporaryEntries not implemented") +} +func (*UnimplementedQueryServer) Params(ctx context.Context, req *QueryParamsRequest) (*QueryParamsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Params not implemented") +} + +func RegisterQueryServer(s grpc1.Server, srv QueryServer) { + s.RegisterService(&_Query_serviceDesc, srv) +} + +func _Query_IsSanctioned_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryIsSanctionedRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).IsSanctioned(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.sanction.v1beta1.Query/IsSanctioned", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).IsSanctioned(ctx, req.(*QueryIsSanctionedRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Query_SanctionedAddresses_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QuerySanctionedAddressesRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).SanctionedAddresses(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.sanction.v1beta1.Query/SanctionedAddresses", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).SanctionedAddresses(ctx, req.(*QuerySanctionedAddressesRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Query_TemporaryEntries_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryTemporaryEntriesRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).TemporaryEntries(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.sanction.v1beta1.Query/TemporaryEntries", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).TemporaryEntries(ctx, req.(*QueryTemporaryEntriesRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryParamsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).Params(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.sanction.v1beta1.Query/Params", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _Query_serviceDesc = grpc.ServiceDesc{ + ServiceName: "cosmos.sanction.v1beta1.Query", + HandlerType: (*QueryServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "IsSanctioned", + Handler: _Query_IsSanctioned_Handler, + }, + { + MethodName: "SanctionedAddresses", + Handler: _Query_SanctionedAddresses_Handler, + }, + { + MethodName: "TemporaryEntries", + Handler: _Query_TemporaryEntries_Handler, + }, + { + MethodName: "Params", + Handler: _Query_Params_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "cosmos/sanction/v1beta1/query.proto", +} + +func (m *QueryIsSanctionedRequest) 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 *QueryIsSanctionedRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryIsSanctionedRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Address) > 0 { + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *QueryIsSanctionedResponse) 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 *QueryIsSanctionedResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryIsSanctionedResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.IsSanctioned { + i-- + if m.IsSanctioned { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *QuerySanctionedAddressesRequest) 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 *QuerySanctionedAddressesRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QuerySanctionedAddressesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Pagination != nil { + { + size, err := m.Pagination.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x6 + i-- + dAtA[i] = 0x9a + } + return len(dAtA) - i, nil +} + +func (m *QuerySanctionedAddressesResponse) 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 *QuerySanctionedAddressesResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QuerySanctionedAddressesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Pagination != nil { + { + size, err := m.Pagination.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x6 + i-- + dAtA[i] = 0x9a + } + if len(m.Addresses) > 0 { + for iNdEx := len(m.Addresses) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Addresses[iNdEx]) + copy(dAtA[i:], m.Addresses[iNdEx]) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Addresses[iNdEx]))) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *QueryTemporaryEntriesRequest) 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 *QueryTemporaryEntriesRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryTemporaryEntriesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Pagination != nil { + { + size, err := m.Pagination.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x6 + i-- + dAtA[i] = 0x9a + } + if len(m.Address) > 0 { + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *QueryTemporaryEntriesResponse) 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 *QueryTemporaryEntriesResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryTemporaryEntriesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Pagination != nil { + { + size, err := m.Pagination.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x6 + i-- + dAtA[i] = 0x9a + } + if len(m.Entries) > 0 { + for iNdEx := len(m.Entries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Entries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Params != nil { + { + size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { + offset -= sovQuery(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *QueryIsSanctionedRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryIsSanctionedResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.IsSanctioned { + n += 2 + } + return n +} + +func (m *QuerySanctionedAddressesRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Pagination != nil { + l = m.Pagination.Size() + n += 2 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QuerySanctionedAddressesResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Addresses) > 0 { + for _, s := range m.Addresses { + l = len(s) + n += 1 + l + sovQuery(uint64(l)) + } + } + if m.Pagination != nil { + l = m.Pagination.Size() + n += 2 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryTemporaryEntriesRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + if m.Pagination != nil { + l = m.Pagination.Size() + n += 2 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryTemporaryEntriesResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Entries) > 0 { + for _, e := range m.Entries { + l = e.Size() + n += 1 + l + sovQuery(uint64(l)) + } + } + if m.Pagination != nil { + l = m.Pagination.Size() + n += 2 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryParamsRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *QueryParamsResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Params != nil { + l = m.Params.Size() + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + +func sovQuery(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozQuery(x uint64) (n int) { + return sovQuery(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *QueryIsSanctionedRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryIsSanctionedRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryIsSanctionedRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryIsSanctionedResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryIsSanctionedResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryIsSanctionedResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsSanctioned", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsSanctioned = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QuerySanctionedAddressesRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QuerySanctionedAddressesRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QuerySanctionedAddressesRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 99: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Pagination == nil { + m.Pagination = &query.PageRequest{} + } + if err := m.Pagination.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QuerySanctionedAddressesResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QuerySanctionedAddressesResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QuerySanctionedAddressesResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Addresses = append(m.Addresses, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 99: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Pagination == nil { + m.Pagination = &query.PageResponse{} + } + if err := m.Pagination.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryTemporaryEntriesRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryTemporaryEntriesRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryTemporaryEntriesRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 99: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Pagination == nil { + m.Pagination = &query.PageRequest{} + } + if err := m.Pagination.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryTemporaryEntriesResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryTemporaryEntriesResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryTemporaryEntriesResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Entries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Entries = append(m.Entries, &TemporaryEntry{}) + if err := m.Entries[len(m.Entries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 99: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Pagination == nil { + m.Pagination = &query.PageResponse{} + } + if err := m.Pagination.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryParamsRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryParamsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryParamsResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Params == nil { + m.Params = &Params{} + } + if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipQuery(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowQuery + } + 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, ErrIntOverflowQuery + } + 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, ErrIntOverflowQuery + } + 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, ErrInvalidLengthQuery + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupQuery + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthQuery + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthQuery = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowQuery = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/sanction/query.pb.gw.go b/x/sanction/query.pb.gw.go new file mode 100644 index 0000000000..3d02735a0b --- /dev/null +++ b/x/sanction/query.pb.gw.go @@ -0,0 +1,420 @@ +// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. +// source: cosmos/sanction/v1beta1/query.proto + +/* +Package sanction is a reverse proxy. + +It translates gRPC into RESTful JSON APIs. +*/ +package sanction + +import ( + "context" + "io" + "net/http" + + "github.com/golang/protobuf/descriptor" + "github.com/golang/protobuf/proto" + "github.com/grpc-ecosystem/grpc-gateway/runtime" + "github.com/grpc-ecosystem/grpc-gateway/utilities" + "google.golang.org/grpc" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/grpclog" + "google.golang.org/grpc/metadata" + "google.golang.org/grpc/status" +) + +// Suppress "imported and not used" errors +var _ codes.Code +var _ io.Reader +var _ status.Status +var _ = runtime.String +var _ = utilities.NewDoubleArray +var _ = descriptor.ForMessage +var _ = metadata.Join + +func request_Query_IsSanctioned_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryIsSanctionedRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["address"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "address") + } + + protoReq.Address, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "address", err) + } + + msg, err := client.IsSanctioned(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_IsSanctioned_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryIsSanctionedRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["address"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "address") + } + + protoReq.Address, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "address", err) + } + + msg, err := server.IsSanctioned(ctx, &protoReq) + return msg, metadata, err + +} + +var ( + filter_Query_SanctionedAddresses_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)} +) + +func request_Query_SanctionedAddresses_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QuerySanctionedAddressesRequest + var metadata runtime.ServerMetadata + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_SanctionedAddresses_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.SanctionedAddresses(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_SanctionedAddresses_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QuerySanctionedAddressesRequest + var metadata runtime.ServerMetadata + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_SanctionedAddresses_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := server.SanctionedAddresses(ctx, &protoReq) + return msg, metadata, err + +} + +var ( + filter_Query_TemporaryEntries_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)} +) + +func request_Query_TemporaryEntries_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryTemporaryEntriesRequest + var metadata runtime.ServerMetadata + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_TemporaryEntries_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.TemporaryEntries(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_TemporaryEntries_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryTemporaryEntriesRequest + var metadata runtime.ServerMetadata + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_TemporaryEntries_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := server.TemporaryEntries(ctx, &protoReq) + return msg, metadata, err + +} + +func request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryParamsRequest + var metadata runtime.ServerMetadata + + msg, err := client.Params(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryParamsRequest + var metadata runtime.ServerMetadata + + msg, err := server.Params(ctx, &protoReq) + return msg, metadata, err + +} + +// RegisterQueryHandlerServer registers the http handlers for service Query to "mux". +// UnaryRPC :call QueryServer directly. +// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. +func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { + + mux.Handle("GET", pattern_Query_IsSanctioned_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_IsSanctioned_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_IsSanctioned_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Query_SanctionedAddresses_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_SanctionedAddresses_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_SanctionedAddresses_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Query_TemporaryEntries_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_TemporaryEntries_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_TemporaryEntries_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_Params_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_Params_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + return nil +} + +// RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but +// automatically dials to "endpoint" and closes the connection when "ctx" gets done. +func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) { + conn, err := grpc.Dial(endpoint, opts...) + if err != nil { + return err + } + defer func() { + if err != nil { + if cerr := conn.Close(); cerr != nil { + grpclog.Infof("Failed to close conn to %s: %v", endpoint, cerr) + } + return + } + go func() { + <-ctx.Done() + if cerr := conn.Close(); cerr != nil { + grpclog.Infof("Failed to close conn to %s: %v", endpoint, cerr) + } + }() + }() + + return RegisterQueryHandler(ctx, mux, conn) +} + +// RegisterQueryHandler registers the http handlers for service Query to "mux". +// The handlers forward requests to the grpc endpoint over "conn". +func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error { + return RegisterQueryHandlerClient(ctx, mux, NewQueryClient(conn)) +} + +// RegisterQueryHandlerClient registers the http handlers for service Query +// to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". +// Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" +// doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in +// "QueryClient" to call the correct interceptors. +func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error { + + mux.Handle("GET", pattern_Query_IsSanctioned_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_IsSanctioned_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_IsSanctioned_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Query_SanctionedAddresses_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_SanctionedAddresses_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_SanctionedAddresses_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Query_TemporaryEntries_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_TemporaryEntries_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_TemporaryEntries_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_Params_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_Params_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + return nil +} + +var ( + pattern_Query_IsSanctioned_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"cosmos", "sanction", "v1beta1", "check", "address"}, "", runtime.AssumeColonVerbOpt(false))) + + pattern_Query_SanctionedAddresses_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"cosmos", "sanction", "v1beta1", "all"}, "", runtime.AssumeColonVerbOpt(false))) + + pattern_Query_TemporaryEntries_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"cosmos", "sanction", "v1beta1", "temp"}, "", runtime.AssumeColonVerbOpt(false))) + + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"cosmos", "sanction", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) +) + +var ( + forward_Query_IsSanctioned_0 = runtime.ForwardResponseMessage + + forward_Query_SanctionedAddresses_0 = runtime.ForwardResponseMessage + + forward_Query_TemporaryEntries_0 = runtime.ForwardResponseMessage + + forward_Query_Params_0 = runtime.ForwardResponseMessage +) diff --git a/x/sanction/sanction.go b/x/sanction/sanction.go new file mode 100644 index 0000000000..6ed4e71e1c --- /dev/null +++ b/x/sanction/sanction.go @@ -0,0 +1,32 @@ +package sanction + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" +) + +// Define the defaults for each param field and allow consuming apps to set them. +var ( + // DefaultImmediateSanctionMinDeposit is the default to use for the MinDepositSanction. + DefaultImmediateSanctionMinDeposit sdk.Coins + + // DefaultImmediateUnsanctionMinDeposit is the default to use for the MinDepositUnsanction. + DefaultImmediateUnsanctionMinDeposit sdk.Coins +) + +func DefaultParams() *Params { + return &Params{ + ImmediateSanctionMinDeposit: DefaultImmediateSanctionMinDeposit, + ImmediateUnsanctionMinDeposit: DefaultImmediateUnsanctionMinDeposit, + } +} + +func (p Params) ValidateBasic() error { + if err := p.ImmediateSanctionMinDeposit.Validate(); err != nil { + return sdkerrors.ErrInvalidCoins.Wrapf("invalid immediate sanction min deposit: %s", err.Error()) + } + if err := p.ImmediateUnsanctionMinDeposit.Validate(); err != nil { + return sdkerrors.ErrInvalidCoins.Wrapf("invalid immediate unsanction min deposit: %s", err.Error()) + } + return nil +} diff --git a/x/sanction/sanction.pb.go b/x/sanction/sanction.pb.go new file mode 100644 index 0000000000..1e1fe5e08b --- /dev/null +++ b/x/sanction/sanction.pb.go @@ -0,0 +1,699 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/sanction/v1beta1/sanction.proto + +package sanction + +import ( + fmt "fmt" + _ "github.com/cosmos/cosmos-proto" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/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 + +// TempStatus is whether a temporary entry is a sanction or unsanction. +type TempStatus int32 + +const ( + // TEMP_STATUS_UNSPECIFIED represents and unspecified status value. + TEMP_STATUS_UNSPECIFIED TempStatus = 0 + // TEMP_STATUS_SANCTIONED indicates a sanction is in place. + TEMP_STATUS_SANCTIONED TempStatus = 1 + // TEMP_STATUS_UNSANCTIONED indicates an unsanctioned is in place. + TEMP_STATUS_UNSANCTIONED TempStatus = 2 +) + +var TempStatus_name = map[int32]string{ + 0: "TEMP_STATUS_UNSPECIFIED", + 1: "TEMP_STATUS_SANCTIONED", + 2: "TEMP_STATUS_UNSANCTIONED", +} + +var TempStatus_value = map[string]int32{ + "TEMP_STATUS_UNSPECIFIED": 0, + "TEMP_STATUS_SANCTIONED": 1, + "TEMP_STATUS_UNSANCTIONED": 2, +} + +func (x TempStatus) String() string { + return proto.EnumName(TempStatus_name, int32(x)) +} + +func (TempStatus) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_9e632afabc7910f0, []int{0} +} + +// Params defines the configurable parameters of the sanction module. +type Params struct { + // immediate_sanction_min_deposit is the minimum deposit for a sanction to happen immediately. + // If this is zero, immediate sanctioning is not available. + // Otherwise, if a sanction governance proposal is issued with a deposit at least this large, a temporary sanction + // will be immediately issued that will expire when voting ends on the governance proposal. + ImmediateSanctionMinDeposit github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=immediate_sanction_min_deposit,json=immediateSanctionMinDeposit,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"immediate_sanction_min_deposit"` + // immediate_unsanction_min_deposit is the minimum deposit for an unsanction to happen immediately. + // If this is zero, immediate unsanctioning is not available. + // Otherwise, if an unsanction governance proposal is issued with a deposit at least this large, a temporary + // unsanction will be immediately issued that will expire when voting ends on the governance proposal. + ImmediateUnsanctionMinDeposit github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=immediate_unsanction_min_deposit,json=immediateUnsanctionMinDeposit,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"immediate_unsanction_min_deposit"` +} + +func (m *Params) Reset() { *m = Params{} } +func (m *Params) String() string { return proto.CompactTextString(m) } +func (*Params) ProtoMessage() {} +func (*Params) Descriptor() ([]byte, []int) { + return fileDescriptor_9e632afabc7910f0, []int{0} +} +func (m *Params) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Params.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 *Params) XXX_Merge(src proto.Message) { + xxx_messageInfo_Params.Merge(m, src) +} +func (m *Params) XXX_Size() int { + return m.Size() +} +func (m *Params) XXX_DiscardUnknown() { + xxx_messageInfo_Params.DiscardUnknown(m) +} + +var xxx_messageInfo_Params proto.InternalMessageInfo + +func (m *Params) GetImmediateSanctionMinDeposit() github_com_cosmos_cosmos_sdk_types.Coins { + if m != nil { + return m.ImmediateSanctionMinDeposit + } + return nil +} + +func (m *Params) GetImmediateUnsanctionMinDeposit() github_com_cosmos_cosmos_sdk_types.Coins { + if m != nil { + return m.ImmediateUnsanctionMinDeposit + } + return nil +} + +// TemporaryEntry defines the information involved in a temporary sanction or unsanction. +type TemporaryEntry struct { + // address is the address of this temporary entry. + Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` + // proposal_id is the governance proposal id associated with this temporary entry. + ProposalId uint64 `protobuf:"varint,2,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"` + // status is whether the entry is a sanction or unsanction. + Status TempStatus `protobuf:"varint,3,opt,name=status,proto3,enum=cosmos.sanction.v1beta1.TempStatus" json:"status,omitempty"` +} + +func (m *TemporaryEntry) Reset() { *m = TemporaryEntry{} } +func (m *TemporaryEntry) String() string { return proto.CompactTextString(m) } +func (*TemporaryEntry) ProtoMessage() {} +func (*TemporaryEntry) Descriptor() ([]byte, []int) { + return fileDescriptor_9e632afabc7910f0, []int{1} +} +func (m *TemporaryEntry) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *TemporaryEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_TemporaryEntry.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 *TemporaryEntry) XXX_Merge(src proto.Message) { + xxx_messageInfo_TemporaryEntry.Merge(m, src) +} +func (m *TemporaryEntry) XXX_Size() int { + return m.Size() +} +func (m *TemporaryEntry) XXX_DiscardUnknown() { + xxx_messageInfo_TemporaryEntry.DiscardUnknown(m) +} + +var xxx_messageInfo_TemporaryEntry proto.InternalMessageInfo + +func (m *TemporaryEntry) GetAddress() string { + if m != nil { + return m.Address + } + return "" +} + +func (m *TemporaryEntry) GetProposalId() uint64 { + if m != nil { + return m.ProposalId + } + return 0 +} + +func (m *TemporaryEntry) GetStatus() TempStatus { + if m != nil { + return m.Status + } + return TEMP_STATUS_UNSPECIFIED +} + +func init() { + proto.RegisterEnum("cosmos.sanction.v1beta1.TempStatus", TempStatus_name, TempStatus_value) + proto.RegisterType((*Params)(nil), "cosmos.sanction.v1beta1.Params") + proto.RegisterType((*TemporaryEntry)(nil), "cosmos.sanction.v1beta1.TemporaryEntry") +} + +func init() { + proto.RegisterFile("cosmos/sanction/v1beta1/sanction.proto", fileDescriptor_9e632afabc7910f0) +} + +var fileDescriptor_9e632afabc7910f0 = []byte{ + // 466 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x4f, 0x8b, 0xd3, 0x40, + 0x18, 0xc6, 0x33, 0xdd, 0xa5, 0xe2, 0x2c, 0x2c, 0xcb, 0xb0, 0xb8, 0xd9, 0xae, 0x4e, 0xc3, 0x0a, + 0x12, 0x84, 0x26, 0x6e, 0x3d, 0x7a, 0xea, 0x9f, 0x88, 0x3d, 0x6c, 0x2d, 0x4d, 0x7a, 0xf1, 0x12, + 0xa6, 0xc9, 0x50, 0x07, 0xcd, 0x4c, 0x98, 0x99, 0x2e, 0xf6, 0x1b, 0x78, 0xdc, 0x83, 0x9f, 0x40, + 0x6f, 0x1e, 0xc5, 0x0f, 0xb1, 0xc7, 0xc5, 0x93, 0x27, 0x95, 0xf6, 0x8b, 0x48, 0x9b, 0x69, 0x52, + 0x44, 0x6f, 0x9e, 0xda, 0x79, 0x9e, 0xf7, 0x79, 0x9f, 0x1f, 0xe1, 0x85, 0x8f, 0x12, 0xa1, 0x32, + 0xa1, 0x7c, 0x45, 0x78, 0xa2, 0x99, 0xe0, 0xfe, 0xd5, 0xc5, 0x94, 0x6a, 0x72, 0x51, 0x0a, 0x5e, + 0x2e, 0x85, 0x16, 0xe8, 0xa4, 0x98, 0xf3, 0x4a, 0xd9, 0xcc, 0x35, 0xb0, 0x59, 0x30, 0x25, 0x8a, + 0x96, 0xe1, 0x44, 0x30, 0x13, 0x6c, 0x9c, 0x16, 0x7e, 0xbc, 0x79, 0xf9, 0x66, 0x4b, 0x61, 0x1d, + 0xcf, 0xc4, 0x4c, 0x14, 0xfa, 0xfa, 0x5f, 0xa1, 0x9e, 0x7f, 0xa9, 0xc1, 0xfa, 0x88, 0x48, 0x92, + 0x29, 0x74, 0x0d, 0x20, 0x66, 0x59, 0x46, 0x53, 0x46, 0x34, 0x8d, 0xb7, 0xd5, 0x71, 0xc6, 0x78, + 0x9c, 0xd2, 0x5c, 0x28, 0xa6, 0x6d, 0xe0, 0xec, 0xb9, 0x07, 0xed, 0x53, 0xcf, 0x2c, 0x5e, 0x53, + 0x6c, 0xd1, 0xbc, 0x9e, 0x60, 0xbc, 0xfb, 0xe4, 0xe6, 0x47, 0xd3, 0xfa, 0xfc, 0xb3, 0xe9, 0xce, + 0x98, 0x7e, 0x3d, 0x9f, 0x7a, 0x89, 0xc8, 0x0c, 0x85, 0xf9, 0x69, 0xa9, 0xf4, 0x8d, 0xaf, 0x17, + 0x39, 0x55, 0x9b, 0x80, 0x1a, 0x9f, 0x95, 0x95, 0xa1, 0x69, 0xbc, 0x64, 0xbc, 0x5f, 0xf4, 0xa1, + 0x0f, 0x00, 0x3a, 0x15, 0xd2, 0x9c, 0xff, 0x15, 0xaa, 0xf6, 0xff, 0xa1, 0x1e, 0x94, 0xa5, 0x93, + 0xb2, 0xb3, 0xc2, 0x3a, 0xff, 0x08, 0xe0, 0x61, 0x44, 0xb3, 0x5c, 0x48, 0x22, 0x17, 0x01, 0xd7, + 0x72, 0x81, 0xda, 0xf0, 0x0e, 0x49, 0x53, 0x49, 0x95, 0xb2, 0x81, 0x03, 0xdc, 0xbb, 0x5d, 0xfb, + 0xdb, 0xd7, 0xd6, 0xb1, 0x41, 0xea, 0x14, 0x4e, 0xa8, 0x25, 0xe3, 0xb3, 0xf1, 0x76, 0x10, 0x35, + 0xe1, 0x41, 0x2e, 0x45, 0x2e, 0x14, 0x79, 0x1b, 0xb3, 0xd4, 0xae, 0x39, 0xc0, 0xdd, 0x1f, 0xc3, + 0xad, 0x34, 0x48, 0xd1, 0x33, 0x58, 0x57, 0x9a, 0xe8, 0xb9, 0xb2, 0xf7, 0x1c, 0xe0, 0x1e, 0xb6, + 0x1f, 0x7a, 0xff, 0xb8, 0x0b, 0x6f, 0x4d, 0x13, 0x6e, 0x46, 0xc7, 0x26, 0xf2, 0x98, 0x41, 0x58, + 0xa9, 0xe8, 0x0c, 0x9e, 0x44, 0xc1, 0xe5, 0x28, 0x0e, 0xa3, 0x4e, 0x34, 0x09, 0xe3, 0xc9, 0x30, + 0x1c, 0x05, 0xbd, 0xc1, 0xf3, 0x41, 0xd0, 0x3f, 0xb2, 0x50, 0x03, 0xde, 0xdb, 0x35, 0xc3, 0xce, + 0xb0, 0x17, 0x0d, 0x5e, 0x0e, 0x83, 0xfe, 0x11, 0x40, 0xf7, 0xa1, 0xfd, 0x47, 0xb0, 0x72, 0x6b, + 0x8d, 0xfd, 0xf7, 0x9f, 0xb0, 0xd5, 0x7d, 0x71, 0xb3, 0xc4, 0xe0, 0x76, 0x89, 0xc1, 0xaf, 0x25, + 0x06, 0xd7, 0x2b, 0x6c, 0xdd, 0xae, 0xb0, 0xf5, 0x7d, 0x85, 0xad, 0x57, 0xde, 0xce, 0x27, 0xcf, + 0xa5, 0xb8, 0xa2, 0x9c, 0xf0, 0x84, 0xb6, 0x98, 0xd8, 0x79, 0xf9, 0xef, 0xca, 0xf3, 0x9f, 0xd6, + 0x37, 0x57, 0xf9, 0xf4, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9b, 0x29, 0x02, 0xd5, 0x29, 0x03, + 0x00, 0x00, +} + +func (m *Params) 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 *Params) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ImmediateUnsanctionMinDeposit) > 0 { + for iNdEx := len(m.ImmediateUnsanctionMinDeposit) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ImmediateUnsanctionMinDeposit[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintSanction(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.ImmediateSanctionMinDeposit) > 0 { + for iNdEx := len(m.ImmediateSanctionMinDeposit) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ImmediateSanctionMinDeposit[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintSanction(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *TemporaryEntry) 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 *TemporaryEntry) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *TemporaryEntry) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Status != 0 { + i = encodeVarintSanction(dAtA, i, uint64(m.Status)) + i-- + dAtA[i] = 0x18 + } + if m.ProposalId != 0 { + i = encodeVarintSanction(dAtA, i, uint64(m.ProposalId)) + i-- + dAtA[i] = 0x10 + } + if len(m.Address) > 0 { + i -= len(m.Address) + copy(dAtA[i:], m.Address) + i = encodeVarintSanction(dAtA, i, uint64(len(m.Address))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintSanction(dAtA []byte, offset int, v uint64) int { + offset -= sovSanction(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *Params) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.ImmediateSanctionMinDeposit) > 0 { + for _, e := range m.ImmediateSanctionMinDeposit { + l = e.Size() + n += 1 + l + sovSanction(uint64(l)) + } + } + if len(m.ImmediateUnsanctionMinDeposit) > 0 { + for _, e := range m.ImmediateUnsanctionMinDeposit { + l = e.Size() + n += 1 + l + sovSanction(uint64(l)) + } + } + return n +} + +func (m *TemporaryEntry) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Address) + if l > 0 { + n += 1 + l + sovSanction(uint64(l)) + } + if m.ProposalId != 0 { + n += 1 + sovSanction(uint64(m.ProposalId)) + } + if m.Status != 0 { + n += 1 + sovSanction(uint64(m.Status)) + } + return n +} + +func sovSanction(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozSanction(x uint64) (n int) { + return sovSanction(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *Params) 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 ErrIntOverflowSanction + } + 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: Params: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Params: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ImmediateSanctionMinDeposit", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSanction + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthSanction + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthSanction + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ImmediateSanctionMinDeposit = append(m.ImmediateSanctionMinDeposit, types.Coin{}) + if err := m.ImmediateSanctionMinDeposit[len(m.ImmediateSanctionMinDeposit)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ImmediateUnsanctionMinDeposit", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSanction + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthSanction + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthSanction + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ImmediateUnsanctionMinDeposit = append(m.ImmediateUnsanctionMinDeposit, types.Coin{}) + if err := m.ImmediateUnsanctionMinDeposit[len(m.ImmediateUnsanctionMinDeposit)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipSanction(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthSanction + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *TemporaryEntry) 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 ErrIntOverflowSanction + } + 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: TemporaryEntry: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TemporaryEntry: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSanction + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthSanction + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthSanction + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Address = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ProposalId", wireType) + } + m.ProposalId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSanction + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ProposalId |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + } + m.Status = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSanction + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Status |= TempStatus(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipSanction(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthSanction + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipSanction(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, ErrIntOverflowSanction + } + 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, ErrIntOverflowSanction + } + 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, ErrIntOverflowSanction + } + 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, ErrInvalidLengthSanction + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupSanction + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthSanction + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthSanction = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowSanction = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupSanction = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/sanction/sanction_test.go b/x/sanction/sanction_test.go new file mode 100644 index 0000000000..f55f2d6319 --- /dev/null +++ b/x/sanction/sanction_test.go @@ -0,0 +1,143 @@ +package sanction_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" +) + +func TestDefaultParams(t *testing.T) { + // cz is just a short way to create coins to use in these tests. + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + require.NoError(t, err, "ParseCoinsNormalized(%q)", coins) + return rv + } + + tests := []struct { + name string + dfltImSanctMinDep sdk.Coins + dfltImUnsanctMinDep sdk.Coins + exp *sanction.Params + }{ + { + name: "nil nil", + dfltImSanctMinDep: nil, + dfltImUnsanctMinDep: nil, + exp: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + }, + { + name: "empty empty", + dfltImSanctMinDep: sdk.Coins{}, + dfltImUnsanctMinDep: sdk.Coins{}, + exp: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{}, + ImmediateUnsanctionMinDeposit: sdk.Coins{}, + }, + }, + { + name: "with values", + dfltImSanctMinDep: cz("100000scoin"), + dfltImUnsanctMinDep: cz("1000000ucoin"), + exp: &sanction.Params{ + ImmediateSanctionMinDeposit: cz("100000scoin"), + ImmediateUnsanctionMinDeposit: cz("1000000ucoin"), + }, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + origDefaultImmediateSanctionMinDeposit := sanction.DefaultImmediateSanctionMinDeposit + origDefaultImmediateUnsanctionMinDeposit := sanction.DefaultImmediateUnsanctionMinDeposit + defer func() { + sanction.DefaultImmediateSanctionMinDeposit = origDefaultImmediateSanctionMinDeposit + sanction.DefaultImmediateUnsanctionMinDeposit = origDefaultImmediateUnsanctionMinDeposit + }() + sanction.DefaultImmediateSanctionMinDeposit = tc.dfltImSanctMinDep + sanction.DefaultImmediateUnsanctionMinDeposit = tc.dfltImUnsanctMinDep + + var actual *sanction.Params + testFunc := func() { + actual = sanction.DefaultParams() + } + require.NotPanics(t, testFunc, "DefaultParams") + if !assert.Equal(t, tc.exp, actual, "DefaultParams result") && actual != nil { + // The test failed, but the output of coins isn't handy, so assert each individually for better info. + assert.Equal(t, tc.exp.ImmediateSanctionMinDeposit.String(), + actual.ImmediateSanctionMinDeposit.String(), "ImmediateSanctionMinDeposit") + assert.Equal(t, tc.exp.ImmediateUnsanctionMinDeposit.String(), + actual.ImmediateUnsanctionMinDeposit.String(), "ImmediateUnsanctionMinDeposit") + } + }) + } +} + +func TestParams_ValidateBasic(t *testing.T) { + tests := []struct { + name string + params *sanction.Params + exp []string + }{ + { + name: "control", + params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("goodcoin", 55)), + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bettercoin", 88)), + }, + exp: nil, + }, + { + name: "nil min deps", + params: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + }, + exp: nil, + }, + { + name: "empty min deps", + params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{}, + ImmediateUnsanctionMinDeposit: sdk.Coins{}, + }, + exp: nil, + }, + { + name: "bad sanction min dep", + params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{sdk.NewInt64Coin("dupcoin", 55), sdk.NewInt64Coin("dupcoin", 44)}, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("bettercoin", 88)), + }, + exp: []string{"invalid immediate sanction min deposit", "duplicate denomination dupcoin", "invalid coins"}, + }, + { + name: "bad unsanction min dep", + params: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin("goodcoin", 55)), + ImmediateUnsanctionMinDeposit: sdk.Coins{sdk.NewInt64Coin("twocoin", 88), sdk.NewInt64Coin("twocoin", 66)}, + }, + exp: []string{"invalid immediate unsanction min deposit", "duplicate denomination twocoin", "invalid coins"}, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var err error + testFunc := func() { + err = tc.params.ValidateBasic() + } + require.NotPanics(t, testFunc, "ValidateBasic") + assertions.AssertErrorContents(t, err, tc.exp, "ValidateBasic result") + }) + } +} diff --git a/x/sanction/send_restriction.go b/x/sanction/send_restriction.go new file mode 100644 index 0000000000..3c7b33de18 --- /dev/null +++ b/x/sanction/send_restriction.go @@ -0,0 +1,34 @@ +package sanction + +import ( + "context" + + sdk "github.com/cosmos/cosmos-sdk/types" +) + +var bypassKey = "bypass-sanction-restriction" + +// WithBypass returns a new context that will cause the sanction bank send restriction to be skipped. +func WithBypass[C context.Context](ctx C) C { + sdkCtx := sdk.UnwrapSDKContext(ctx) + sdkCtx = sdkCtx.WithValue(bypassKey, true) + return context.Context(sdkCtx).(C) +} + +// WithoutBypass returns a new context that will cause the sanction bank send restriction to not be skipped. +func WithoutBypass[C context.Context](ctx C) C { + sdkCtx := sdk.UnwrapSDKContext(ctx) + sdkCtx = sdkCtx.WithValue(bypassKey, false) + return context.Context(sdkCtx).(C) +} + +// HasBypass checks the context to see if the sanction bank send restriction should be skipped. +func HasBypass[C context.Context](ctx C) bool { + sdkCtx := sdk.UnwrapSDKContext(ctx) + bypassValue := sdkCtx.Value(bypassKey) + if bypassValue == nil { + return false + } + bypass, isBool := bypassValue.(bool) + return isBool && bypass +} diff --git a/x/sanction/send_restriction_test.go b/x/sanction/send_restriction_test.go new file mode 100644 index 0000000000..590f4de804 --- /dev/null +++ b/x/sanction/send_restriction_test.go @@ -0,0 +1,78 @@ +package sanction + +import ( + "testing" + + "github.com/stretchr/testify/assert" + + cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" + + sdk "github.com/cosmos/cosmos-sdk/types" +) + +func TestKeyContainsModuleName(t *testing.T) { + assert.Contains(t, bypassKey, ModuleName, "bypassKey") +} + +func TestBypassFuncsSDKContext(t *testing.T) { + tests := []struct { + name string + ctx sdk.Context + exp bool + }{ + { + name: "brand new mostly empty context", + ctx: sdk.NewContext(nil, cmtproto.Header{}, false, nil), + exp: false, + }, + { + name: "context with bypass", + ctx: WithBypass(sdk.NewContext(nil, cmtproto.Header{}, false, nil)), + exp: true, + }, + { + name: "context with bypass on one that originally was without it", + ctx: WithBypass(WithoutBypass(sdk.NewContext(nil, cmtproto.Header{}, false, nil))), + exp: true, + }, + { + name: "context with bypass twice", + ctx: WithBypass(WithBypass(sdk.NewContext(nil, cmtproto.Header{}, false, nil))), + exp: true, + }, + { + name: "context without bypass", + ctx: WithoutBypass(sdk.NewContext(nil, cmtproto.Header{}, false, nil)), + exp: false, + }, + { + name: "context without bypass on one that originally had it", + ctx: WithoutBypass(WithBypass(sdk.NewContext(nil, cmtproto.Header{}, false, nil))), + exp: false, + }, + { + name: "context without bypass twice", + ctx: WithoutBypass(WithoutBypass(sdk.NewContext(nil, cmtproto.Header{}, false, nil))), + exp: false, + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + actual := HasBypass(tc.ctx) + assert.Equal(t, tc.exp, actual, "HasBypass") + }) + } +} + +func TestBypassFuncsDoNotModifyProvided(t *testing.T) { + origCtx := sdk.NewContext(nil, cmtproto.Header{}, false, nil) + assert.False(t, HasBypass(origCtx), "HasBypass(origCtx)") + afterWith := WithBypass(origCtx) + assert.True(t, HasBypass(afterWith), "HasBypass(afterWith)") + assert.False(t, HasBypass(origCtx), "HasBypass(origCtx) after giving it to WithBypass") + afterWithout := WithoutBypass(afterWith) + assert.False(t, HasBypass(afterWithout), "HasBypass(afterWithout)") + assert.True(t, HasBypass(afterWith), "HasBypass(afterWith) after giving it to WithoutBypass") + assert.False(t, HasBypass(origCtx), "HasBypass(origCtx) after giving afterWith to WithoutBypass") +} diff --git a/x/sanction/simulation/decoder.go b/x/sanction/simulation/decoder.go new file mode 100644 index 0000000000..717dc5a1c8 --- /dev/null +++ b/x/sanction/simulation/decoder.go @@ -0,0 +1,32 @@ +package simulation + +import ( + "bytes" + "fmt" + + "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" + + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +func NewDecodeStore(_ codec.Codec) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { + switch { + case bytes.HasPrefix(kvA.Key, keeper.ParamsPrefix): + return fmt.Sprintf("%s\n%s", string(kvA.Value), string(kvB.Value)) + + case bytes.HasPrefix(kvA.Key, keeper.SanctionedPrefix): + return fmt.Sprintf("%v\n%v", kvA.Value, kvB.Value) + + case bytes.HasPrefix(kvA.Key, keeper.TemporaryPrefix): + return fmt.Sprintf("%v\n%v", kvA.Value, kvB.Value) + + case bytes.HasPrefix(kvA.Key, keeper.ProposalIndexPrefix): + return fmt.Sprintf("%v\n%v", kvA.Value, kvB.Value) + + default: + panic(fmt.Sprintf("invalid sanction key %X", kvA.Key)) + } + } +} diff --git a/x/sanction/simulation/decoder_test.go b/x/sanction/simulation/decoder_test.go new file mode 100644 index 0000000000..65d8392c1c --- /dev/null +++ b/x/sanction/simulation/decoder_test.go @@ -0,0 +1,74 @@ +package simulation_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" + + simapp "github.com/provenance-io/provenance/app" + "github.com/provenance-io/provenance/x/sanction/keeper" + "github.com/provenance-io/provenance/x/sanction/simulation" +) + +func TestDecodeStore(t *testing.T) { + cdc := simapp.MakeTestEncodingConfig(t).Marshaler + dec := simulation.NewDecodeStore(cdc) + + tests := []struct { + name string + kvA kv.Pair + kvB kv.Pair + exp string + expPanic string + }{ + { + name: "params", + kvA: kv.Pair{Key: keeper.CreateParamKey("pnamea"), Value: []byte("valuea")}, + kvB: kv.Pair{Key: keeper.CreateParamKey("pnameb"), Value: []byte("valueb")}, + exp: "valuea\nvalueb", + }, + { + name: "sanction", + kvA: kv.Pair{Key: keeper.CreateSanctionedAddrKey(sdk.AccAddress("addra")), Value: []byte{50}}, + kvB: kv.Pair{Key: keeper.CreateSanctionedAddrKey(sdk.AccAddress("addrb")), Value: []byte{51}}, + exp: "[50]\n[51]", + }, + { + name: "temp", + kvA: kv.Pair{Key: keeper.CreateTemporaryKey(sdk.AccAddress("addra"), 1), Value: []byte{52}}, + kvB: kv.Pair{Key: keeper.CreateTemporaryKey(sdk.AccAddress("addrb"), 2), Value: []byte{53}}, + exp: "[52]\n[53]", + }, + { + name: "index", + kvA: kv.Pair{Key: keeper.CreateProposalTempIndexKey(1, sdk.AccAddress("addra")), Value: []byte{54}}, + kvB: kv.Pair{Key: keeper.CreateProposalTempIndexKey(1, sdk.AccAddress("addrb")), Value: []byte{55}}, + exp: "[54]\n[55]", + }, + { + name: "unknown", + kvA: kv.Pair{Key: []byte{0x9a}, Value: []byte("valuea")}, + kvB: kv.Pair{Key: []byte{0x9c}, Value: []byte("valueb")}, + expPanic: "invalid sanction key 9A", + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual string + testFunc := func() { + actual = dec(tc.kvA, tc.kvB) + } + if len(tc.expPanic) > 0 { + assert.PanicsWithValue(t, tc.expPanic, testFunc, "running decoder") + } else { + if assert.NotPanics(t, testFunc, "running decoder") { + assert.Equal(t, tc.exp, actual, "decoder result") + } + } + }) + } +} diff --git a/x/sanction/simulation/genesis.go b/x/sanction/simulation/genesis.go new file mode 100644 index 0000000000..ddd986ffa3 --- /dev/null +++ b/x/sanction/simulation/genesis.go @@ -0,0 +1,106 @@ +package simulation + +import ( + "math/rand" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/module" + simtypes "github.com/cosmos/cosmos-sdk/types/simulation" + + "github.com/provenance-io/provenance/x/sanction" +) + +const ( + SanctionAddresses = "sanction-addresses" + SanctionTempEntries = "sanction-temp-entries" + SanctionParams = "sanction-params" +) + +// RandomSanctionedAddresses randomly selects accounts to be sanctioned. +// +// Each account has a: +// * 20% chance of being sanctioned, +// * 80% chance of being ignored. +func RandomSanctionedAddresses(r *rand.Rand, accounts []simtypes.Account) []string { + var rv []string + for _, acct := range accounts { + if r.Int63n(5) == 0 { + rv = append(rv, acct.Address.String()) + } + } + return rv +} + +// RandomTempEntries randomly selects accounts to be temporarily sanctioned/unsanctioned. +// +// Each account has a: +// * 10% chance of having a temp sanction, +// * 10% chance of having a temp unsanction, +// * 80% chance of being ignored. +func RandomTempEntries(r *rand.Rand, accounts []simtypes.Account) []*sanction.TemporaryEntry { + var rv []*sanction.TemporaryEntry + for _, acct := range accounts { + switch r.Int63n(10) { + case 0: + rv = append(rv, &sanction.TemporaryEntry{ + Address: acct.Address.String(), + ProposalId: uint64(r.Int63n(1000) + 1_000_000_000), + Status: sanction.TEMP_STATUS_SANCTIONED, + }) + case 1: + rv = append(rv, &sanction.TemporaryEntry{ + Address: acct.Address.String(), + ProposalId: uint64(r.Int63n(1000) + 2_000_000_000), + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }) + } + } + return rv +} + +// RandomParams generates randomized parameters for the sanction module. +// +// ImmediateSanctionMinDeposit and ImmediateUnsanctionMinDeposit are decided individually. +// Each has a: +// * 20% chance of being empty/zero. +// * 80% chance of being between 1 and 1000 (inclusive) of the default bond denom. +func RandomParams(r *rand.Rand) *sanction.Params { + rv := &sanction.Params{} + if r.Int63n(5) != 0 { + rv.ImmediateSanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, r.Int63n(1_000)+1)) + } + if r.Int63n(5) != 0 { + rv.ImmediateUnsanctionMinDeposit = sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, r.Int63n(1_000)+1)) + } + return rv +} + +// RandomizedGenState creates a randomized sanction genesis state and adds it to the +// provided simState's GenState map. +func RandomizedGenState(simState *module.SimulationState) { + genState := &sanction.GenesisState{} + + // SanctionedAddresses + simState.AppParams.GetOrGenerate( + SanctionAddresses, &genState.SanctionedAddresses, simState.Rand, + func(r *rand.Rand) { + genState.SanctionedAddresses = RandomSanctionedAddresses(r, simtypes.RandomAccounts(r, len(simState.Accounts))) + }, + ) + + // TemporaryEntries + simState.AppParams.GetOrGenerate( + SanctionTempEntries, &genState.TemporaryEntries, simState.Rand, + func(r *rand.Rand) { + genState.TemporaryEntries = RandomTempEntries(r, simtypes.RandomAccounts(r, len(simState.Accounts))) + }, + ) + + // Params + simState.AppParams.GetOrGenerate( + SanctionParams, &genState.Params, simState.Rand, + func(r *rand.Rand) { genState.Params = RandomParams(r) }, + ) + + simState.GenState[sanction.ModuleName] = simState.Cdc.MustMarshalJSON(genState) +} diff --git a/x/sanction/simulation/genesis_test.go b/x/sanction/simulation/genesis_test.go new file mode 100644 index 0000000000..e82c1cccca --- /dev/null +++ b/x/sanction/simulation/genesis_test.go @@ -0,0 +1,344 @@ +package simulation_test + +import ( + "encoding/json" + "fmt" + "math/rand" + "sort" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + sdkmath "cosmossdk.io/math" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/module" + simtypes "github.com/cosmos/cosmos-sdk/types/simulation" + + "github.com/provenance-io/provenance/app" + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/simulation" +) + +// getAccountCount gets the number of accounts to use. +func getAccountCount() int { + // This is a function instead of variable because I dislike global variables. + // Global variables in unit tests just leads to weird, painful problems. + return 10 +} + +// newDefaultRand returns a new Rand made from a default, constant seed value. +func newDefaultRand() *rand.Rand { + return rand.New(rand.NewSource(1)) +} + +// generateAccounts generates a standard number of accounts. +func generateAccounts(t *testing.T) []simtypes.Account { + // This uses its own random number generator in order to not affect the numbers + // generated elsewhere. Plus, by setting the seed the same, we should always + // have the same accounts which can help when trying to identify problems. + rv := simtypes.RandomAccounts(newDefaultRand(), getAccountCount()) + // Log all the account addresses so that if this test breaks, + // people can see which accounts where which. + t.Logf("accounts:") + for i, acct := range rv { + t.Logf("[%d]: %s", i, acct.Address.String()) + } + return rv +} + +func TestRandomizer(t *testing.T) { + // These tests serve primarily to show you what random numbers are being picked, + // but also to alert you if that ever changes. + // If it changes, several other tests in this file will fail too. + // If others fail, but this test does not, it's not because the + // generator is making different numbers, but it could still be due to + // a change in use of the generator (i.e. r is being used differently). + + // The expectedRands values in here were defined by running the test once and seeing what came out. + + // randomSanctionedAddressesRands generates the random numbers used in RandomSanctionedAddresses + randomSanctionedAddressesRands := func(r *rand.Rand) []int64 { + // RandomSanctionedAddresses uses r.Int63n(5) for each account. + rv := make([]int64, getAccountCount()) + for i := range rv { + rv[i] = r.Int63n(5) + } + return rv + } + + t.Run("values used in RandomSanctionedAddresses", func(t *testing.T) { + expectedRands := []int64{0, 1, 1, 1, 2, 0, 3, 3, 1, 4} + + r := newDefaultRand() + actualRands := randomSanctionedAddressesRands(r) + assert.Equal(t, expectedRands, actualRands, "random numbers generated") + }) + + // randomTempEntriesRands generates the random numbers used in RandomTempEntries + randomTempEntriesRands := func(r *rand.Rand) []int64 { + // RandomTempEntries uses r.Int63n(10) to decide which account to use. + // If 0 or 1 then r.Int63n(1000) is called for the prop id. + rv := make([]int64, 0, getAccountCount()*2) + for i := 0; i < 10; i++ { + v := r.Int63n(10) + rv = append(rv, v) + if v <= 1 { + rv = append(rv, r.Int63n(1000)) + } + } + return rv + } + + t.Run("values used in RandomTempEntries", func(t *testing.T) { + expectedRands := []int64{0, 551, 1, 51, 7, 0, 758, 8, 6, 9, 4, 7, 4} + + r := newDefaultRand() + actualRands := randomTempEntriesRands(r) + assert.Equal(t, expectedRands, actualRands, "random numbers generated") + }) + + // randomParamsRands generates the random numbers used in RandomParams + randomParamsRands := func(r *rand.Rand) []int64 { + // RandomParams uses r.Int63n(5) twice. + // For each, if not 0, then r.Int63n(1_000) is used. + rv := make([]int64, 0, 4) + for i := 0; i < 2; i++ { + v := r.Int63n(5) + rv = append(rv, v) + if v != 0 { + rv = append(rv, r.Int63n(1000)) + } + } + return rv + } + + t.Run("values used in RandomParams default seed", func(t *testing.T) { + expectedRands := []int64{0, 1, 821} + + r := newDefaultRand() + actualRands := randomParamsRands(r) + assert.Equal(t, expectedRands, actualRands, "random numbers generated") + }) + + t.Run("values used in RandomParams seed 100", func(t *testing.T) { + // A little crossover here. This knowledge is useful in the operations tests for updating params. + expectedRands := []int64{3, 24, 4, 39} + + r := rand.New(rand.NewSource(100)) + actualRands := randomParamsRands(r) + assert.Equal(t, expectedRands, actualRands, "random numbers generated") + }) + + t.Run("values used in immediate operations for various seeds", func(t *testing.T) { + // A little crossover here. This knowledge is useful in the operations tests for immediate stuff. + expectedRands := []int{0, 1} + actualRands := make([]int, len(expectedRands)) + for i := range actualRands { + actualRands[i] = rand.New(rand.NewSource(int64(i))).Intn(2) + } + assert.Equal(t, expectedRands, actualRands, "first random number generated at each seed") + }) +} + +func TestRandomSanctionedAddresses(t *testing.T) { + accounts := generateAccounts(t) + + // From TestRandomizer: 0, 1, 1, 1, 2, 0, 3, 3, 1, 4 + expected := []string{ + accounts[0].Address.String(), + accounts[5].Address.String(), + } + + r := newDefaultRand() + var actual []string + testFunc := func() { + actual = simulation.RandomSanctionedAddresses(r, accounts) + } + require.NotPanics(t, testFunc, "RandomSanctionedAddresses") + assert.Equal(t, expected, actual, "RandomSanctionedAddresses result") +} + +func TestRandomTempEntries(t *testing.T) { + accounts := generateAccounts(t) + + // From TestRandomizer: 0, 551, 1, 51, 7, 0, 758, 8, 6, 9, 4, 7, 4 + expected := []*sanction.TemporaryEntry{ + { + Address: accounts[0].Address.String(), + ProposalId: 551 + 1_000_000_000, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + { + Address: accounts[1].Address.String(), + ProposalId: 51 + 2_000_000_000, + Status: sanction.TEMP_STATUS_UNSANCTIONED, + }, + { + Address: accounts[3].Address.String(), + ProposalId: 758 + 1_000_000_000, + Status: sanction.TEMP_STATUS_SANCTIONED, + }, + } + + r := newDefaultRand() + var actual []*sanction.TemporaryEntry + testFunc := func() { + actual = simulation.RandomTempEntries(r, accounts) + } + require.NotPanics(t, testFunc, "RandomTempEntries") + assert.Equal(t, expected, actual, "RandomTempEntries result") +} + +func TestRandomParams(t *testing.T) { + // From TestRandomizer: 0, 1, 821 + expected := &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, 821+1)), + } + + r := newDefaultRand() + var actual *sanction.Params + testFunc := func() { + actual = simulation.RandomParams(r) + } + require.NotPanics(t, testFunc, "RandomParams") + assert.Equal(t, expected, actual, "RandomParams result") +} + +func TestRandomizedGenState(t *testing.T) { + accounts := generateAccounts(t) + accountMap := make(map[string]bool) + for _, acc := range accounts { + accountMap[acc.Address.String()] = true + } + + // Since part of RandomizedGenState involves creating new accounts, and that uses r before anything else can use it, + // it's not worthwhile to define a specific expected state. + // Instead, I just need to make sure that the addresses included aren't in the accounts provided. + + simState := module.SimulationState{ + AppParams: make(simtypes.AppParams), + Cdc: app.MakeTestEncodingConfig(t).Marshaler, + Rand: rand.New(rand.NewSource(0)), // not using getSeedValue because that was used to generate the accounts. + NumBonded: 3, + Accounts: accounts, + InitialStake: sdkmath.NewInt(1000), + GenState: make(map[string]json.RawMessage), + } + + testFunc := func() { + simulation.RandomizedGenState(&simState) + } + require.NotPanics(t, testFunc, "RandomizedGenState") + + sanctionGenStateBz := simState.GenState[sanction.ModuleName] + var actual sanction.GenesisState + err := simState.Cdc.UnmarshalJSON(sanctionGenStateBz, &actual) + require.NoError(t, err, "UnmarshalJSON to sanction.GenesisState") + + for i, addr := range actual.SanctionedAddresses { + isKnownAcc := accountMap[addr] + assert.False(t, isKnownAcc, "is SanctionedAddresses[%d] a known account", i) + } + for i, entry := range actual.TemporaryEntries { + isKnownAcc := accountMap[entry.Address] + assert.False(t, isKnownAcc, "is TemporaryEntries[%d] a known account", i) + } + // This is kind of useless because UnmarshalJSON will create an empty Params no matter what, but.... + assert.NotNil(t, actual.Params, "Params") + // Not asserting any param values though since their randomization depends on uses of r outside our control. + // They'd be prone to breakage for seemingly unrelated reasons, which is dumb and annoying. + + // Make sure nothing else was added to the genesis state. + expectedGenStateKeys := []string{sanction.ModuleName} + var actualGenStateKeys []string + for key := range simState.GenState { + actualGenStateKeys = append(actualGenStateKeys, key) + } + sort.Strings(actualGenStateKeys) + assert.Equal(t, expectedGenStateKeys, actualGenStateKeys, "keys in GenState") +} + +func TestRandomizedGenStateImportExport(t *testing.T) { + // This goes through 1001 seeds and: + // 1. generates a random genesis, + // 2. imports it into an app, + // 3. exports the sanction genesis state from the app, + // 4. makes sure the exported gen state is equal to the one randomly generated. + // It will stop at the first seed that fails. + + cdc := app.MakeTestEncodingConfig(t).Marshaler + accounts := generateAccounts(t) + + for i := int64(0); i <= 1000; i++ { + passed := t.Run(fmt.Sprintf("seed %d", i), func(t *testing.T) { + simState := module.SimulationState{ + AppParams: make(simtypes.AppParams), + Cdc: cdc, + Rand: rand.New(rand.NewSource(i)), + NumBonded: 3, + Accounts: make([]simtypes.Account, len(accounts)), + InitialStake: sdkmath.NewInt(1000), + GenState: make(map[string]json.RawMessage), + } + copy(simState.Accounts, accounts) + + // Generate the random genesis state. + testRandGen := func() { + simulation.RandomizedGenState(&simState) + } + require.NotPanics(t, testRandGen, "RandomizedGenState") + + // Extract the randomly generated genesis state from the simState. + var randomGenState sanction.GenesisState + err := simState.Cdc.UnmarshalJSON(simState.GenState[sanction.ModuleName], &randomGenState) + require.NoError(t, err, "UnmarshalJSON to sanction.GenesisState") + + // Set the Coins in Params to nil if they're zero/empty. + // That's how they'll come back from the export. + if randomGenState.Params.ImmediateSanctionMinDeposit.IsZero() { + randomGenState.Params.ImmediateSanctionMinDeposit = nil + } + if randomGenState.Params.ImmediateUnsanctionMinDeposit.IsZero() { + randomGenState.Params.ImmediateUnsanctionMinDeposit = nil + } + + // Create a new app, so we can init + export. + provApp := app.Setup(t) + ctx := provApp.BaseApp.NewContext(false) + + // Do the init on the random genesis state. + testInit := func() { + provApp.SanctionKeeper.InitGenesis(ctx, &randomGenState) + } + require.NotPanics(t, testInit, "sanction InitGenesis") + + // Export the app's sanction genesis state. + var actualGenState *sanction.GenesisState + testExport := func() { + actualGenState = provApp.SanctionKeeper.ExportGenesis(ctx) + } + require.NotPanics(t, testExport, "ExportGenesis") + + // Note: The contents of the genesis states is not expected to be in the same order after the init/export. + // I could probably go through the trouble of sorting things, but it would either be horribly inefficient or annoyingly complex (probably both). + // Primarily, the genesis state uses bech32 encoding for the addresses, but when exported, the entries are sorted based on their byte values. + // And sorting by bech32 does not equal sorting by byte values. + assert.ElementsMatch(t, randomGenState.SanctionedAddresses, actualGenState.SanctionedAddresses, "SanctionedAddresses, A = expected, B = actual") + assert.ElementsMatch(t, randomGenState.TemporaryEntries, actualGenState.TemporaryEntries, "TemporaryEntries, A = expected, B = actual") + if !assert.Equal(t, randomGenState.Params, actualGenState.Params, "Params") && randomGenState.Params != nil && actualGenState.Params != nil { + assert.Equal(t, randomGenState.Params.ImmediateSanctionMinDeposit.String(), + actualGenState.Params.ImmediateSanctionMinDeposit.String(), + "Params.ImmediateSanctionMinDeposit") + assert.Equal(t, randomGenState.Params.ImmediateUnsanctionMinDeposit.String(), + actualGenState.Params.ImmediateUnsanctionMinDeposit.String(), + "Params.ImmediateUnsanctionMinDeposit") + } + }) + if !passed { + break + } + } +} diff --git a/x/sanction/simulation/operations.go b/x/sanction/simulation/operations.go new file mode 100644 index 0000000000..5cee3b49b2 --- /dev/null +++ b/x/sanction/simulation/operations.go @@ -0,0 +1,588 @@ +package simulation + +import ( + "math/rand" + "time" + + "github.com/cosmos/cosmos-sdk/baseapp" + "github.com/cosmos/cosmos-sdk/codec" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + sdk "github.com/cosmos/cosmos-sdk/types" + simtypes "github.com/cosmos/cosmos-sdk/types/simulation" + govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + "github.com/cosmos/cosmos-sdk/x/simulation" + + simappparams "github.com/provenance-io/provenance/app/params" + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/keeper" +) + +const ( + OpWeightSanction = "op_weight_sanction" //nolint:gosec + OpWeightSanctionImmediate = "op_weight_sanction_immediate" //nolint:gosec + OpWeightUnsanction = "op_weight_unsanction" //nolint:gosec + OpWeightUnsanctionImmediate = "op_weight_unsanction_immediate" //nolint:gosec + OpWeightUpdateParams = "op_weight_update_params" //nolint:gosec + + DefaultWeightSanction = 10 + DefaultWeightSanctionImmediate = 10 + DefaultWeightUnsanction = 10 + DefaultWeightUnsanctionImmediate = 10 + DefaultWeightUpdateParams = 10 +) + +// WeightedOpsArgs holds all the args provided to WeightedOperations so that they can be passed on later more easily. +type WeightedOpsArgs struct { + AppParams simtypes.AppParams + JSONCodec codec.JSONCodec + ProtoCodec *codec.ProtoCodec + AK sanction.AccountKeeper + BK sanction.BankKeeper + GK govkeeper.Keeper + SK *keeper.Keeper +} + +// SendGovMsgArgs holds all the args available and needed for sending a gov msg. +type SendGovMsgArgs struct { + WeightedOpsArgs + + R *rand.Rand + App *baseapp.BaseApp + Ctx sdk.Context + Accs []simtypes.Account + ChainID string + + Sender simtypes.Account + Msg sdk.Msg + Deposit sdk.Coins + Comment string +} + +func WeightedOperations( + appParams simtypes.AppParams, jsonCodec codec.JSONCodec, protoCodec *codec.ProtoCodec, + ak sanction.AccountKeeper, bk sanction.BankKeeper, gk govkeeper.Keeper, sk keeper.Keeper, +) simulation.WeightedOperations { + args := &WeightedOpsArgs{ + AppParams: appParams, + JSONCodec: jsonCodec, + ProtoCodec: protoCodec, + AK: ak, + BK: bk, + GK: gk, + SK: &sk, + } + + var ( + weightSanction int + weightSanctionImmediate int + weightUnsanction int + weightUnsanctionImmediate int + weightUpdateParams int + ) + + appParams.GetOrGenerate(OpWeightSanction, &weightSanction, nil, + func(_ *rand.Rand) { weightSanction = DefaultWeightSanction }) + appParams.GetOrGenerate(OpWeightSanctionImmediate, &weightSanctionImmediate, nil, + func(_ *rand.Rand) { weightSanctionImmediate = DefaultWeightSanctionImmediate }) + appParams.GetOrGenerate(OpWeightUnsanction, &weightUnsanction, nil, + func(_ *rand.Rand) { weightUnsanction = DefaultWeightUnsanction }) + appParams.GetOrGenerate(OpWeightUnsanctionImmediate, &weightUnsanctionImmediate, nil, + func(_ *rand.Rand) { weightUnsanctionImmediate = DefaultWeightUnsanctionImmediate }) + appParams.GetOrGenerate(OpWeightUpdateParams, &weightUpdateParams, nil, + func(_ *rand.Rand) { weightUpdateParams = DefaultWeightUpdateParams }) + + return simulation.WeightedOperations{ + simulation.NewWeightedOperation(weightSanction, SimulateGovMsgSanction(args)), + simulation.NewWeightedOperation(weightSanctionImmediate, SimulateGovMsgSanctionImmediate(args)), + simulation.NewWeightedOperation(weightUnsanction, SimulateGovMsgUnsanction(args)), + simulation.NewWeightedOperation(weightUnsanctionImmediate, SimulateGovMsgUnsanctionImmediate(args)), + simulation.NewWeightedOperation(weightUpdateParams, SimulateGovMsgUpdateParams(args)), + } +} + +// SendGovMsg sends a msg as a gov prop. +// It returns whether to skip the rest, an operation message, and any error encountered. +func SendGovMsg(args *SendGovMsgArgs) (bool, simtypes.OperationMsg, error) { + msgType := sdk.MsgTypeURL(args.Msg) + + spendableCoins := args.BK.SpendableCoins(args.Ctx, args.Sender.Address) + if spendableCoins.Empty() { + return true, simtypes.NoOpMsg(sanction.ModuleName, msgType, "sender has no spendable coins"), nil + } + + _, hasNeg := spendableCoins.SafeSub(args.Deposit...) + if hasNeg { + return true, simtypes.NoOpMsg(sanction.ModuleName, msgType, "sender has insufficient balance to cover deposit"), nil + } + + msgAny, err := codectypes.NewAnyWithValue(args.Msg) + if err != nil { + return true, simtypes.NoOpMsg(sanction.ModuleName, msgType, "wrapping MsgSanction as Any"), err + } + + govMsg := &govv1.MsgSubmitProposal{ + Messages: []*codectypes.Any{msgAny}, + InitialDeposit: args.Deposit, + Proposer: args.Sender.Address.String(), + Title: args.Comment, + Summary: args.Comment, + } + + txCtx := simulation.OperationInput{ + R: args.R, + App: args.App, + TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + Cdc: args.ProtoCodec, + Msg: govMsg, + CoinsSpentInMsg: govMsg.InitialDeposit, + Context: args.Ctx, + SimAccount: args.Sender, + AccountKeeper: args.AK, + Bankkeeper: args.BK, + ModuleName: sanction.ModuleName, + } + + opMsg, _, err := simulation.GenAndDeliverTxWithRandFees(txCtx) + if opMsg.Comment == "" { + opMsg.Comment = args.Comment + } + + return err != nil, opMsg, err +} + +// OperationMsgVote returns an operation that casts a yes vote on a gov prop from an account. +func OperationMsgVote(args *WeightedOpsArgs, voter simtypes.Account, govPropID uint64, vote govv1.VoteOption, comment string) simtypes.Operation { + return func( + r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, + accs []simtypes.Account, chainID string, + ) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { + msg := govv1.NewMsgVote(voter.Address, govPropID, vote, "") + + txCtx := simulation.OperationInput{ + R: r, + App: app, + TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + Cdc: args.ProtoCodec, + Msg: msg, + CoinsSpentInMsg: sdk.Coins{}, + Context: ctx, + SimAccount: voter, + AccountKeeper: args.AK, + Bankkeeper: args.BK, + ModuleName: sanction.ModuleName, + } + + opMsg, fops, err := simulation.GenAndDeliverTxWithRandFees(txCtx) + if opMsg.Comment == "" { + opMsg.Comment = comment + } + + return opMsg, fops, err + } +} + +// MaxCoins combines a and b taking the max of each denom. +// The result will have all the denoms from a and all the denoms from b. +// The amount of each denom is the max between a and b for that denom. +func MaxCoins(a, b sdk.Coins) sdk.Coins { + allDenomsMap := map[string]bool{} + for _, c := range a { + allDenomsMap[c.Denom] = true + } + for _, c := range b { + allDenomsMap[c.Denom] = true + } + rv := make([]sdk.Coin, 0, len(allDenomsMap)) + for denom := range allDenomsMap { + cA := a.AmountOf(denom) + cB := b.AmountOf(denom) + if cA.GT(cB) { + rv = append(rv, sdk.NewCoin(denom, cA)) + } else { + rv = append(rv, sdk.NewCoin(denom, cB)) + } + } + return sdk.NewCoins(rv...) +} + +func SimulateGovMsgSanction(args *WeightedOpsArgs) simtypes.Operation { + return func( + r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, + accs []simtypes.Account, chainID string, + ) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { + msg := &sanction.MsgSanction{ + Authority: args.SK.GetAuthority(), + } + msgType := sdk.MsgTypeURL(msg) + + // First, get the governance min deposit needed and immediate sanction min deposit needed. + govParams, err := args.GK.Params.Get(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "error getting gov params"), nil, err + } + govMinDep := sdk.NewCoins(govParams.MinDeposit...) + imMinDep := args.SK.GetImmediateSanctionMinDeposit(ctx) + if !imMinDep.IsZero() && govMinDep.IsAllGTE(imMinDep) { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "cannot sanction without it being immediate"), nil, nil + } + + // Create 1-10 new accounts to sanction. + // Sanctioning known accounts breaks other sim ops. + for _, acct := range simtypes.RandomAccounts(r, r.Intn(10)+1) { + msg.Addresses = append(msg.Addresses, acct.Address.String()) + } + + sender, _ := simtypes.RandomAcc(r, accs) + + msgArgs := &SendGovMsgArgs{ + WeightedOpsArgs: *args, + R: r, + App: app, + Ctx: ctx, + Accs: accs, + ChainID: chainID, + Sender: sender, + Msg: msg, + Deposit: govMinDep, + Comment: "sanction", + } + + skip, opMsg, err := SendGovMsg(msgArgs) + + if skip || err != nil { + return opMsg, nil, err + } + + proposalID, err := args.GK.ProposalID.Peek(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, sdk.MsgTypeURL(msg), "unable to get submitted proposalID"), nil, err + } + proposalID-- + + votingPeriod := govParams.VotingPeriod + fops := make([]simtypes.FutureOperation, len(accs)) + for i, acct := range accs { + whenVote := ctx.BlockHeader().Time.Add(time.Duration(r.Int63n(int64(votingPeriod.Seconds()))) * time.Second) + fops[i] = simtypes.FutureOperation{ + BlockTime: whenVote, + Op: OperationMsgVote(args, acct, proposalID, govv1.OptionYes, msgArgs.Comment), + } + } + + return opMsg, fops, nil + } +} + +func SimulateGovMsgSanctionImmediate(args *WeightedOpsArgs) simtypes.Operation { + return func( + r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, + accs []simtypes.Account, chainID string, + ) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { + msg := &sanction.MsgSanction{ + Authority: args.SK.GetAuthority(), + } + msgType := sdk.MsgTypeURL(msg) + + // Get the governance and immediate sanction min deposits and make sure immediate is possible. + govParams, err := args.GK.Params.Get(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "error getting gov params"), nil, err + } + govMinDep := sdk.NewCoins(govParams.MinDeposit...) + imMinDep := args.SK.GetImmediateSanctionMinDeposit(ctx) + if imMinDep.IsZero() { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "immediate sanction min deposit is zero"), nil, nil + } + + // The deposit needs to be >= both the gov min dep and im min dep. + deposit := MaxCoins(imMinDep, govMinDep) + + // Decide early whether we're going to vote yes or no on this. + // By doing it early, we use r before anything else, which makes testing easier. + vote := govv1.OptionYes + if r.Intn(2) == 0 { + vote = govv1.OptionNo + } + + // Create 1-10 new accounts to sanction. + // Sanctioning known accounts breaks other sim ops. + for _, acct := range simtypes.RandomAccounts(r, r.Intn(10)+1) { + msg.Addresses = append(msg.Addresses, acct.Address.String()) + } + + sender, _ := simtypes.RandomAcc(r, accs) + + msgArgs := &SendGovMsgArgs{ + WeightedOpsArgs: *args, + R: r, + App: app, + Ctx: ctx, + Accs: accs, + ChainID: chainID, + Sender: sender, + Msg: msg, + Deposit: deposit, + Comment: "immediate sanction", + } + + skip, opMsg, err := SendGovMsg(msgArgs) + + if skip || err != nil { + return opMsg, nil, err + } + + proposalID, err := args.GK.ProposalID.Peek(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, sdk.MsgTypeURL(msg), "unable to get submitted proposalID"), nil, err + } + proposalID-- + + votingPeriod := govParams.VotingPeriod + fops := make([]simtypes.FutureOperation, len(accs)) + for i, acct := range accs { + whenVote := ctx.BlockHeader().Time.Add(time.Duration(r.Int63n(int64(votingPeriod.Seconds()))) * time.Second) + fops[i] = simtypes.FutureOperation{ + BlockTime: whenVote, + Op: OperationMsgVote(args, acct, proposalID, vote, msgArgs.Comment), + } + } + + return opMsg, fops, nil + } +} + +func SimulateGovMsgUnsanction(args *WeightedOpsArgs) simtypes.Operation { + return func( + r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, + accs []simtypes.Account, chainID string, + ) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { + msg := &sanction.MsgUnsanction{ + Authority: args.SK.GetAuthority(), + } + msgType := sdk.MsgTypeURL(msg) + + sanctionedAddrs := args.SK.GetAllSanctionedAddresses(ctx) + if len(sanctionedAddrs) == 0 { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "no addresses are sanctioned"), nil, nil + } + + // Get the governance min deposit needed and immediate sanction min deposit needed. + govParams, err := args.GK.Params.Get(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "error getting gov params"), nil, err + } + govMinDep := sdk.NewCoins(govParams.MinDeposit...) + imMinDep := args.SK.GetImmediateUnsanctionMinDeposit(ctx) + if !imMinDep.IsZero() && govMinDep.IsAllGTE(imMinDep) { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "cannot unsanction without it being immediate"), nil, nil + } + + // Unsanction 1/4 of the sanctioned addresses but at least 4. + // If there are fewer than 4 sanctioned addresses, unsanction them all. + count := len(sanctionedAddrs) / 4 + if count < 4 { + count = 4 + } + if count > len(sanctionedAddrs) { + count = len(sanctionedAddrs) + } else { + r.Shuffle(count, func(i, j int) { + sanctionedAddrs[i], sanctionedAddrs[j] = sanctionedAddrs[j], sanctionedAddrs[i] + }) + } + msg.Addresses = sanctionedAddrs[:count] + + sender, _ := simtypes.RandomAcc(r, accs) + + msgArgs := &SendGovMsgArgs{ + WeightedOpsArgs: *args, + R: r, + App: app, + Ctx: ctx, + Accs: accs, + ChainID: chainID, + Sender: sender, + Msg: msg, + Deposit: govMinDep, + Comment: "unsanction", + } + + skip, opMsg, err := SendGovMsg(msgArgs) + + if skip || err != nil { + return opMsg, nil, err + } + + proposalID, err := args.GK.ProposalID.Peek(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, sdk.MsgTypeURL(msg), "unable to get submitted proposalID"), nil, err + } + proposalID-- + + votingPeriod := govParams.VotingPeriod + fops := make([]simtypes.FutureOperation, len(accs)) + for i, acct := range accs { + whenVote := ctx.BlockHeader().Time.Add(time.Duration(r.Int63n(int64(votingPeriod.Seconds()))) * time.Second) + fops[i] = simtypes.FutureOperation{ + BlockTime: whenVote, + Op: OperationMsgVote(args, acct, proposalID, govv1.OptionYes, msgArgs.Comment), + } + } + + return opMsg, fops, nil + } +} + +func SimulateGovMsgUnsanctionImmediate(args *WeightedOpsArgs) simtypes.Operation { + return func( + r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, + accs []simtypes.Account, chainID string, + ) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { + msg := &sanction.MsgUnsanction{ + Authority: args.SK.GetAuthority(), + } + msgType := sdk.MsgTypeURL(msg) + + sanctionedAddrs := args.SK.GetAllSanctionedAddresses(ctx) + if len(sanctionedAddrs) == 0 { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "no addresses are sanctioned"), nil, nil + } + + // Get the governance and immediate sanction min deposits and make sure immediate is possible. + govParams, err := args.GK.Params.Get(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "error getting gov params"), nil, err + } + govMinDep := sdk.NewCoins(govParams.MinDeposit...) + imMinDep := args.SK.GetImmediateUnsanctionMinDeposit(ctx) + if imMinDep.IsZero() { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "immediate unsanction min deposit is zero"), nil, nil + } + + // The deposit needs to be >= both the gov min dep and im min dep. + deposit := MaxCoins(imMinDep, govMinDep) + + // Decide early whether we're going to vote yes or no on this. + // By doing it early, we use r before anything else, which makes testing easier. + vote := govv1.OptionYes + if r.Intn(2) == 0 { + vote = govv1.OptionNo + } + + // Unsanction 1/4 of the sanctioned addresses but at least 4. + // If there are fewer than 4 sanctioned addresses, unsanction them all. + count := len(sanctionedAddrs) / 4 + if count < 4 { + count = 4 + } + if count > len(sanctionedAddrs) { + count = len(sanctionedAddrs) + } else { + r.Shuffle(count, func(i, j int) { + sanctionedAddrs[i], sanctionedAddrs[j] = sanctionedAddrs[j], sanctionedAddrs[i] + }) + } + msg.Addresses = sanctionedAddrs[:count] + + sender, _ := simtypes.RandomAcc(r, accs) + + msgArgs := &SendGovMsgArgs{ + WeightedOpsArgs: *args, + R: r, + App: app, + Ctx: ctx, + Accs: accs, + ChainID: chainID, + Sender: sender, + Msg: msg, + Deposit: deposit, + Comment: "immediate unsanction", + } + + skip, opMsg, err := SendGovMsg(msgArgs) + + if skip || err != nil { + return opMsg, nil, err + } + + proposalID, err := args.GK.ProposalID.Peek(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, sdk.MsgTypeURL(msg), "unable to get submitted proposalID"), nil, err + } + proposalID-- + + votingPeriod := govParams.VotingPeriod + fops := make([]simtypes.FutureOperation, len(accs)) + for i, acct := range accs { + whenVote := ctx.BlockHeader().Time.Add(time.Duration(r.Int63n(int64(votingPeriod.Seconds()))) * time.Second) + fops[i] = simtypes.FutureOperation{ + BlockTime: whenVote, + Op: OperationMsgVote(args, acct, proposalID, vote, msgArgs.Comment), + } + } + + return opMsg, fops, nil + } +} + +func SimulateGovMsgUpdateParams(args *WeightedOpsArgs) simtypes.Operation { + return func( + r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, + accs []simtypes.Account, chainID string, + ) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { + // Pick the random params first, so R isn't used for anything else before, + // which makes testing easier. + msg := &sanction.MsgUpdateParams{ + Params: RandomParams(r), + Authority: args.SK.GetAuthority(), + } + msgType := sdk.MsgTypeURL(msg) + + // Get the governance min deposit needed. + govParams, err := args.GK.Params.Get(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, msgType, "error getting gov params"), nil, err + } + govMinDep := sdk.NewCoins(govParams.MinDeposit...) + + sender, _ := simtypes.RandomAcc(r, accs) + + msgArgs := &SendGovMsgArgs{ + WeightedOpsArgs: *args, + R: r, + App: app, + Ctx: ctx, + Accs: accs, + ChainID: chainID, + Sender: sender, + Msg: msg, + Deposit: govMinDep, + Comment: "update params", + } + + skip, opMsg, err := SendGovMsg(msgArgs) + + if skip || err != nil { + return opMsg, nil, err + } + + proposalID, err := args.GK.ProposalID.Peek(ctx) + if err != nil { + return simtypes.NoOpMsg(sanction.ModuleName, sdk.MsgTypeURL(msg), "unable to get submitted proposalID"), nil, err + } + proposalID-- + + votingPeriod := govParams.VotingPeriod + fops := make([]simtypes.FutureOperation, len(accs)) + for i, acct := range accs { + whenVote := ctx.BlockHeader().Time.Add(time.Duration(r.Int63n(int64(votingPeriod.Seconds()))) * time.Second) + fops[i] = simtypes.FutureOperation{ + BlockTime: whenVote, + Op: OperationMsgVote(args, acct, proposalID, govv1.OptionYes, msgArgs.Comment), + } + } + + return opMsg, fops, nil + } +} diff --git a/x/sanction/simulation/operations_test.go b/x/sanction/simulation/operations_test.go new file mode 100644 index 0000000000..2f5c78e3c2 --- /dev/null +++ b/x/sanction/simulation/operations_test.go @@ -0,0 +1,1847 @@ +package simulation_test + +import ( + "math/rand" + "testing" + "time" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "github.com/stretchr/testify/suite" + + cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" + + "cosmossdk.io/collections" + + "github.com/cosmos/cosmos-sdk/codec" + sdk "github.com/cosmos/cosmos-sdk/types" + simtypes "github.com/cosmos/cosmos-sdk/types/simulation" + bankutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + + "github.com/provenance-io/provenance/app" + "github.com/provenance-io/provenance/testutil/assertions" + "github.com/provenance-io/provenance/x/sanction" + "github.com/provenance-io/provenance/x/sanction/simulation" +) + +type SimTestSuite struct { + suite.Suite + + ctx sdk.Context + app *app.App + + votingPeriod time.Duration + depositPeriod time.Duration + govMinDep sdk.Coins + sanctMinDep sdk.Coins + unsanctMinDep sdk.Coins + + accsRand *rand.Rand +} + +func TestSimTestSuite(t *testing.T) { + suite.Run(t, new(SimTestSuite)) +} + +func (s *SimTestSuite) SetupTest() { + s.app = app.Setup(s.T()) + s.freshCtx() + + s.votingPeriod = 2 * time.Minute + s.depositPeriod = 1 * time.Second + s.govMinDep = sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, 3)) + s.sanctMinDep = sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, 7)) + s.unsanctMinDep = sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, 10)) + + // The block will run out of gas using the default max gas, so we get rid of it here. + consensusParams := s.app.GetConsensusParams(s.ctx) + if consensusParams.Block == nil { + consensusParams.Block = &cmtproto.BlockParams{} + } + consensusParams.Block.MaxGas = -1 + s.Require().NoError(s.app.StoreConsensusParams(s.ctx, consensusParams), "StoreConsensusParams") + s.freshCtx() +} + +// freshCtx creates a new context and sets it to this SimTestSuite's ctx field. +func (s *SimTestSuite) freshCtx() { + s.ctx = s.app.BaseApp.NewContext(false) +} + +// createTestingAccounts creates testing accounts with a default balance. +func (s *SimTestSuite) createTestingAccounts(r *rand.Rand, count int) []simtypes.Account { + return s.createTestingAccountsWithPower(r, count, 200) +} + +// createTestingAccountsWithPower creates new accounts with the specified power (coins amount). +func (s *SimTestSuite) createTestingAccountsWithPower(r *rand.Rand, count int, power int64) []simtypes.Account { + accounts := simtypes.RandomAccounts(r, count) + + initAmt := sdk.TokensFromConsensusPower(power, sdk.DefaultPowerReduction) + initCoins := sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, initAmt)) + + // add coins to the accounts + for _, account := range accounts { + acc := s.app.AccountKeeper.NewAccountWithAddress(s.ctx, account.Address) + s.app.AccountKeeper.SetAccount(s.ctx, acc) + s.Require().NoError(bankutil.FundAccount(s.ctx, s.app.BankKeeper, account.Address, initCoins)) + } + + return accounts +} + +// setSanctionParamsAboveGovDeposit looks up the x/gov min deposit and sets the +// sanction params to be larger by 5 (for sanction) and 10 (for unsanction). +// If there's no gov min dep, sets params to 5stake and 10stake respectively. +func (s *SimTestSuite) setSanctionParamsAboveGovDeposit() { + sancParams := &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: nil, + } + + govParams, err := s.app.GovKeeper.Params.Get(s.ctx) + s.Require().NoError(err, "s.app.GovKeeper.Params.Get(s.ctx)") + for _, coin := range govParams.MinDeposit { + sanctCoin := sdk.NewCoin(coin.Denom, coin.Amount.AddRaw(5)) + unsanctCoin := sdk.NewCoin(coin.Denom, coin.Amount.AddRaw(10)) + sancParams.ImmediateSanctionMinDeposit = sancParams.ImmediateSanctionMinDeposit.Add(sanctCoin) + sancParams.ImmediateUnsanctionMinDeposit = sancParams.ImmediateUnsanctionMinDeposit.Add(unsanctCoin) + } + + if sancParams.ImmediateSanctionMinDeposit.IsZero() { + sancParams.ImmediateSanctionMinDeposit = sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 5)} + } + if sancParams.ImmediateUnsanctionMinDeposit.IsZero() { + sancParams.ImmediateUnsanctionMinDeposit = sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 10)} + } + + s.Require().NoError(s.app.SanctionKeeper.SetParams(s.ctx, sancParams), "SanctionKeeper.SetParams") +} + +// getLastGovProp gets the last gov prop to be submitted. +func (s *SimTestSuite) getLastGovProp() *govv1.Proposal { + propID, err := s.app.GovKeeper.ProposalID.Peek(s.ctx) + s.Require().NoError(err, "s.app.GovKeeper.ProposalID.Peek(s.ctx)") + propID-- + if propID == 0 { + return nil + } + prop, err := s.app.GovKeeper.Proposals.Get(s.ctx, propID) + s.Require().NoError(err, "s.app.GovKeeper.Proposals.Get(s.ctx, %d)", propID) + return &prop +} + +// getVotes gets all the votes on a proposal. +func (s *SimTestSuite) getVotes(propID uint64) []*govv1.Vote { + var rv []*govv1.Vote + rng := collections.NewPrefixedPairRange[uint64, sdk.AccAddress](propID) + err := s.app.GovKeeper.Votes.Walk(s.ctx, rng, func(key collections.Pair[uint64, sdk.AccAddress], vote govv1.Vote) (bool, error) { + entry := vote + rv = append(rv, &entry) + return false, nil + }) + s.Require().NoError(err, "error from s.app.GovKeeper.Votes.Walk") + return rv +} + +// requireResetParams resets both the gov and sanction params to the standards used by most tests in here. +func (s *SimTestSuite) requireResetParams() { + s.requireResetGovParams() + s.requireResetSanctionParams() +} + +// requireResetParams resets the gov params to the standard used by most tests in here. +func (s *SimTestSuite) requireResetGovParams() { + params, err := s.app.GovKeeper.Params.Get(s.ctx) + s.Require().NoError(err, "s.app.GovKeeper.Params.Get(s.ctx)") + params.VotingPeriod = &s.votingPeriod + params.MinDeposit = s.govMinDep + params.MaxDepositPeriod = &s.depositPeriod + err = s.app.GovKeeper.Params.Set(s.ctx, params) + s.Require().NoError(err, "s.app.GovKeeper.Params.Set(s.ctx, params) (setting VotingPeriod, MinDeposit, MaxDepositPeriod)") +} + +// requireSetGovParamsMinDeposit updates the gov params.MinDeposit to the provided amount. +func (s *SimTestSuite) requireSetGovParamsMinDeposit(minDep sdk.Coins) { + params, err := s.app.GovKeeper.Params.Get(s.ctx) + s.Require().NoError(err, "s.app.GovKeeper.Params.Get(s.ctx)") + params.MinDeposit = minDep + err = s.app.GovKeeper.Params.Set(s.ctx, params) + s.Require().NoError(err, "s.app.GovKeeper.Params.Set(s.ctx, params) (setting MinDeposit)") +} + +// requireResetSanctionParams resets the sanction params to the standard used by most tests in here. +func (s *SimTestSuite) requireResetSanctionParams() { + assertions.RequireNotPanicsNoError(s.T(), func() error { + return s.app.SanctionKeeper.SetParams(s.ctx, &sanction.Params{ + ImmediateSanctionMinDeposit: s.sanctMinDep, + ImmediateUnsanctionMinDeposit: s.unsanctMinDep, + }) + }, "sanction SetParams") +} + +// requireResetState resets the params to the standard values and deletes all sanctions and temp sanctions. +func (s *SimTestSuite) requireResetState() { + s.requireResetParams() + + var sanctionedAddrs []sdk.AccAddress + require.NotPanics(s.T(), func() { + s.app.SanctionKeeper.IterateSanctionedAddresses(s.ctx, func(addr sdk.AccAddress) bool { + sanctionedAddrs = append(sanctionedAddrs, addr) + return false + }) + }, "IterateSanctionedAddresses") + + require.NotPanics(s.T(), func() { + s.app.SanctionKeeper.IterateTemporaryEntries(s.ctx, nil, func(addr sdk.AccAddress, _ uint64, _ bool) bool { + sanctionedAddrs = append(sanctionedAddrs, addr) + return false + }) + }, "IterateTemporaryEntries") + + assertions.RequireNotPanicsNoError(s.T(), func() error { + return s.app.SanctionKeeper.UnsanctionAddresses(s.ctx, sanctionedAddrs...) + }, "UnsanctionAddresses") +} + +// resetAccsRand resets the accsRand randomizer to seed 1. +func (s *SimTestSuite) resetAccsRand() { + s.accsRand = rand.New(rand.NewSource(1)) +} + +// randAddrs creates random acc addresses. +func (s *SimTestSuite) randAddrs(count int) []sdk.AccAddress { + accs := simtypes.RandomAccounts(s.accsRand, count) + addrs := make([]sdk.AccAddress, len(accs)) + for i, acc := range accs { + addrs[i] = acc.Address + } + return addrs +} + +// requireSanctionAddresses sanctions the provided addresses. +func (s *SimTestSuite) requireSanctionAddresses(addrs []sdk.AccAddress) { + assertions.RequireNotPanicsNoError(s.T(), func() error { + return s.app.SanctionKeeper.SanctionAddresses(s.ctx, addrs...) + }) +} + +// getWeightedOpsArgs creates a standard WeightedOpsArgs. +func (s *SimTestSuite) getWeightedOpsArgs() simulation.WeightedOpsArgs { + return simulation.WeightedOpsArgs{ + AppParams: make(simtypes.AppParams), + JSONCodec: s.app.AppCodec(), + ProtoCodec: codec.NewProtoCodec(s.app.InterfaceRegistry()), + AK: s.app.AccountKeeper, + BK: s.app.BankKeeper, + GK: s.app.GovKeeper, + SK: &s.app.SanctionKeeper, + } +} + +func (s *SimTestSuite) TestWeightedOperations() { + s.setSanctionParamsAboveGovDeposit() + s.accsRand = rand.New(rand.NewSource(500)) + s.requireSanctionAddresses(s.randAddrs(10)) + + govPropType := sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}) + + expected := []struct { + comment string + weight int + }{ + {comment: "sanction", weight: simulation.DefaultWeightSanction}, + {comment: "immediate sanction", weight: simulation.DefaultWeightSanctionImmediate}, + {comment: "unsanction", weight: simulation.DefaultWeightUnsanction}, + {comment: "immediate unsanction", weight: simulation.DefaultWeightUnsanctionImmediate}, + {comment: "update params", weight: simulation.DefaultWeightUpdateParams}, + } + + weightedOps := simulation.WeightedOperations( + make(simtypes.AppParams), s.app.AppCodec(), codec.NewProtoCodec(s.app.InterfaceRegistry()), + s.app.AccountKeeper, s.app.BankKeeper, s.app.GovKeeper, s.app.SanctionKeeper, + ) + + s.Require().Len(weightedOps, len(expected), "weighted ops") + + accountCount := 10 + r := rand.New(rand.NewSource(1)) + accs := s.createTestingAccounts(r, accountCount) + + for i, actual := range weightedOps { + exp := expected[i] + s.Run(exp.comment, func() { + var operationMsg simtypes.OperationMsg + var futureOps []simtypes.FutureOperation + var err error + testFunc := func() { + operationMsg, futureOps, err = actual.Op()(r, s.app.BaseApp, s.ctx, accs, "") + } + s.Require().NotPanics(testFunc, "calling op") + s.T().Logf("operationMsg.Msg: %s", operationMsg.Msg) + s.Assert().NoError(err, "op error") + s.Assert().Equal(exp.weight, actual.Weight(), "op weight") + s.Assert().True(operationMsg.OK, "op msg ok") + s.Assert().Equal(exp.comment, operationMsg.Comment, "op msg comment") + s.Assert().Equal("gov", operationMsg.Route, "op msg route") + s.Assert().Equal(govPropType, operationMsg.Name, "op msg name") + s.Assert().Len(futureOps, accountCount, "future ops") + // Note: As of writing this, the content of operationMsg.Msg comes from MsgSubmitProposal.GetSignBytes. + // But for some reason, it's also wrapped in '{"type":"{msg.Type}","value":"{msg.GetSignBytes}"}'. + // The sign bytes are json, but the MsgSubmitProposal.Messages field's json marshals as just the value + // instead of the Any that it is (i.e. there's no type_url). That makes it impossible to know from + // that operationMsg.Msg field what type of messages are in the proposal Messages. + // For this specific case, both MsgSanction and MsgUnsanction look exactly the same, + // it's just: '{"addresses":[...]}' + // So, long story short (too late), there's nothing worthwhile to check in the operationMsg.Msg field. + }) + } +} + +func (s *SimTestSuite) TestSendGovMsg() { + s.requireResetGovParams() + + r := rand.New(rand.NewSource(1)) + accounts := s.createTestingAccounts(r, 10) + accounts = append(accounts, s.createTestingAccountsWithPower(r, 1, 0)...) + accounts = append(accounts, s.createTestingAccountsWithPower(r, 1, 1)...) + acctZero := accounts[len(accounts)-2] + acctOne := accounts[len(accounts)-1] + acctOneBalance := s.app.BankKeeper.SpendableCoins(s.ctx, acctOne.Address) + var acctOneBalancePlusOne sdk.Coins + for _, c := range acctOneBalance { + acctOneBalancePlusOne = acctOneBalancePlusOne.Add(sdk.NewCoin(c.Denom, c.Amount.AddRaw(1))) + } + + tests := []struct { + name string + sender simtypes.Account + msg sdk.Msg + deposit sdk.Coins + comment string + expSkip bool + expOpMsgRoute string + expOpMsgName string + expOpMsgComment string + expInErr []string + }{ + { + name: "no spendable coins", + sender: acctZero, + msg: &sanction.MsgSanction{ + Addresses: []string{accounts[4].Address.String(), accounts[5].Address.String()}, + Authority: s.app.SanctionKeeper.GetAuthority(), + }, + deposit: sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 5)}, + comment: "should not matter", + expSkip: true, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgSanction{}), + expOpMsgComment: "sender has no spendable coins", + expInErr: nil, + }, + { + name: "not enough coins for deposit", + sender: acctOne, + msg: &sanction.MsgSanction{ + Addresses: []string{accounts[5].Address.String(), accounts[6].Address.String()}, + Authority: s.app.SanctionKeeper.GetAuthority(), + }, + deposit: acctOneBalancePlusOne, + comment: "should not be this", + expSkip: true, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgSanction{}), + expOpMsgComment: "sender has insufficient balance to cover deposit", + expInErr: nil, + }, + { + name: "nil msg", + sender: accounts[0], + msg: nil, + deposit: sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 5)}, + comment: "will not get returned", + expSkip: true, + expOpMsgRoute: "sanction", + expOpMsgName: "/", + expOpMsgComment: "wrapping MsgSanction as Any", + expInErr: []string{"Expecting non nil value to create a new Any", "failed packing protobuf message to Any"}, + }, + { + name: "gen and deliver returns error", + sender: simtypes.Account{ + PrivKey: accounts[0].PrivKey, + PubKey: acctOne.PubKey, + Address: acctOne.Address, + ConsKey: accounts[0].ConsKey, + }, + msg: &sanction.MsgSanction{ + Addresses: []string{accounts[6].Address.String(), accounts[7].Address.String()}, + Authority: s.app.SanctionKeeper.GetAuthority(), + }, + deposit: acctOneBalance, + comment: "this should be ignored", + expSkip: true, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "unable to deliver tx", + expInErr: []string{"pubKey does not match signer address", "invalid pubkey"}, + }, + { + name: "all good", + sender: accounts[1], + msg: &sanction.MsgSanction{ + Addresses: []string{accounts[2].Address.String(), accounts[3].Address.String()}, + Authority: s.app.SanctionKeeper.GetAuthority(), + }, + deposit: sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 5)}, + comment: "this is a test comment", + expSkip: false, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "this is a test comment", + expInErr: nil, + }, + } + + for _, tc := range tests { + s.Run(tc.name, func() { + args := &simulation.SendGovMsgArgs{ + WeightedOpsArgs: s.getWeightedOpsArgs(), + R: rand.New(rand.NewSource(1)), + App: s.app.BaseApp, + Ctx: s.ctx, + Accs: accounts, + ChainID: "send-gov-test", + Sender: tc.sender, + Msg: tc.msg, + Deposit: tc.deposit, + Comment: tc.comment, + } + + var skip bool + var opMsg simtypes.OperationMsg + var err error + testFunc := func() { + skip, opMsg, err = simulation.SendGovMsg(args) + } + s.Require().NotPanics(testFunc, "SendGovMsg") + assertions.AssertErrorContents(s.T(), err, tc.expInErr, "SendGovMsg error") + s.Assert().Equal(tc.expSkip, skip, "SendGovMsg result skip bool") + s.Assert().Equal(tc.expOpMsgRoute, opMsg.Route, "SendGovMsg result op msg route") + s.Assert().Equal(tc.expOpMsgName, opMsg.Name, "SendGovMsg result op msg name") + s.Assert().Equal(tc.expOpMsgComment, opMsg.Comment, "SendGovMsg result op msg comment") + if !tc.expSkip && !skip { + // If we don't expect a skip, and we didn't get one, + // get the last gov prop and make sure it's the one we just sent. + expMsgs := []sdk.Msg{tc.msg} + prop := s.getLastGovProp() + if s.Assert().NotNil(prop, "last gov prop") { + msgs, err := prop.GetMsgs() + if s.Assert().NoError(err, "error from prop.GetMsgs() on the last gov prop") { + s.Assert().Equal(expMsgs, msgs, "messages in the last gov prop") + } + } + } + }) + } +} + +func (s *SimTestSuite) TestOperationMsgVote() { + s.setSanctionParamsAboveGovDeposit() + + // I don't think the ChainID matters in here, but just for consistency... + chainID := "test-op-msg-vote" + + sancParams := s.app.SanctionKeeper.GetParams(s.ctx) + sanctMinDep := sancParams.ImmediateSanctionMinDeposit + unsanctMinDep := sancParams.ImmediateUnsanctionMinDeposit + + r := rand.New(rand.NewSource(1)) + accounts := s.createTestingAccounts(r, 10) + + // Create a couple gov props that we can vote on. + // Note that I'm sending enough deposit for them to be immediate. + // That shouldn't come into play, but if weird things are happening in here.... + var skip bool + var opMsg simtypes.OperationMsg + var err error + testSendGovSanct := func() { + skip, opMsg, err = simulation.SendGovMsg(&simulation.SendGovMsgArgs{ + WeightedOpsArgs: s.getWeightedOpsArgs(), + R: r, + App: s.app.BaseApp, + Ctx: s.ctx, + Accs: accounts, + ChainID: chainID, + Sender: accounts[0], + Msg: &sanction.MsgSanction{ + Addresses: []string{accounts[8].Address.String(), accounts[9].Address.String()}, + Authority: s.app.SanctionKeeper.GetAuthority(), + }, + Deposit: sanctMinDep, + Comment: "sanction", + }) + } + testSendGovUnsanct := func() { + skip, opMsg, err = simulation.SendGovMsg(&simulation.SendGovMsgArgs{ + WeightedOpsArgs: s.getWeightedOpsArgs(), + R: r, + App: s.app.BaseApp, + Ctx: s.ctx, + Accs: accounts, + ChainID: chainID, + Sender: accounts[0], + Msg: &sanction.MsgUnsanction{ + Addresses: []string{accounts[6].Address.String(), accounts[7].Address.String()}, + Authority: s.app.SanctionKeeper.GetAuthority(), + }, + Deposit: unsanctMinDep, + Comment: "unsanction", + }) + } + + s.Require().NotPanics(testSendGovSanct, "SendGovMsg with MsgSanction") + s.Require().NoError(err, "SendGovMsg with MsgSanction result error") + s.Require().False(skip, "SendGovMsg with MsgSanction result skip") + s.Require().Equal("sanction", opMsg.Comment, "SendGovMsg with MsgSanction result op msg comment") + govPropSanct := s.getLastGovProp() + + s.Require().NotPanics(testSendGovUnsanct, "SendGovMsg with MsgUnsanction") + s.Require().NoError(err, "SendGovMsg with MsgUnsanction result error") + s.Require().False(skip, "SendGovMsg with MsgUnsanction result skip") + s.Require().Equal("unsanction", opMsg.Comment, "SendGovMsg with MsgUnsanction result op msg comment") + govPropUnsanct := s.getLastGovProp() + + tests := []struct { + name string + voter simtypes.Account + govPropID uint64 + vote govv1.VoteOption + comment string + expInErr []string + expOpMsgOK bool + expOpMsgRoute string + expOpMsgName string + expOpMsgComment string + }{ + { + name: "gen and deliver returns error", + voter: simtypes.Account{ + PrivKey: accounts[1].PrivKey, + PubKey: accounts[0].PubKey, + Address: accounts[0].Address, + ConsKey: accounts[1].ConsKey, + }, + govPropID: govPropSanct.Id, + vote: govv1.OptionYes, + comment: "this should be ignored", + expInErr: []string{"pubKey does not match signer address", "invalid pubkey"}, + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgVote{}), + expOpMsgComment: "unable to deliver tx", + }, + { + name: "sanction yes", + voter: accounts[0], + govPropID: govPropSanct.Id, + vote: govv1.OptionYes, + comment: "sanction-yes", + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgVote{}), + expOpMsgComment: "sanction-yes", + }, + { + name: "sanction no", + voter: accounts[1], + govPropID: govPropSanct.Id, + vote: govv1.OptionNo, + comment: "sanction-no", + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgVote{}), + expOpMsgComment: "sanction-no", + }, + { + name: "unsanction yes", + voter: accounts[0], + govPropID: govPropUnsanct.Id, + vote: govv1.OptionYes, + comment: "unsanction-yes", + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgVote{}), + expOpMsgComment: "unsanction-yes", + }, + { + name: "unsanction no", + voter: accounts[1], + govPropID: govPropUnsanct.Id, + vote: govv1.OptionNo, + comment: "unsanction-no", + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgVote{}), + expOpMsgComment: "unsanction-no", + }, + { + // Since we sent enough deposit to make it immediate, + // accounts[9] should have at least a temp sanction. + // So it shouldn't be able to pay the fees on any message. + name: "attempt to vote from a sanctioned account", + voter: accounts[9], + govPropID: govPropSanct.Id, + vote: govv1.OptionNo, + comment: "don't sanction me bro", + expInErr: []string{"account is sanctioned", "insufficient funds"}, + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgVote{}), + expOpMsgComment: "unable to deliver tx", + }, + } + + wopArgs := s.getWeightedOpsArgs() + + for _, tc := range tests { + s.Run(tc.name, func() { + var op simtypes.Operation + testFunc := func() { + op = simulation.OperationMsgVote(&wopArgs, tc.voter, tc.govPropID, tc.vote, tc.comment) + } + s.Require().NotPanics(testFunc, "OperationMsgVote") + var fops []simtypes.FutureOperation + testOp := func() { + opMsg, fops, err = op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, accounts, chainID) + } + s.Require().NotPanics(testOp, "calling Operation returned by OperationMsgVote") + assertions.AssertErrorContents(s.T(), err, tc.expInErr, "op error") + s.Assert().Equal(tc.expOpMsgOK, opMsg.OK, "op msg ok") + s.Assert().Equal(tc.expOpMsgRoute, opMsg.Route, "op msg route") + s.Assert().Equal(tc.expOpMsgName, opMsg.Name, "op msg name") + s.Assert().Equal(tc.expOpMsgComment, opMsg.Comment, "op msg comment") + if tc.expOpMsgOK && opMsg.OK { + // If we were expecting a success and there was a success, + // get the prop again and check that the vote went through. + vote, err := s.app.GovKeeper.Votes.Get(s.ctx, collections.Join(tc.govPropID, tc.voter.Address)) + if s.Assert().NoError(err, "Votes.Get(%d, %s) error", tc.govPropID, tc.voter.Address) { + if s.Assert().Len(vote.Options, 1, "vote options") { + s.Assert().Equal(tc.vote, vote.Options[0].Option, "vote option") + s.Assert().Equal("1.000000000000000000", vote.Options[0].Weight, "vote option weight") + } + } + } + s.Assert().Empty(fops, "future ops") + }) + } +} + +func TestMaxCoins(t *testing.T) { + // Not using SimTestSuite for this one since it doesn't need the infrastructure. + + // cz is a short way to convert a string to Coins. + cz := func(coins string) sdk.Coins { + rv, err := sdk.ParseCoinsNormalized(coins) + require.NoError(t, err, "ParseCoinsNormalized(%q)", coins) + return rv + } + + tests := []struct { + name string + a sdk.Coins + b sdk.Coins + exp sdk.Coins + }{ + { + name: "nil nil", + a: nil, + b: nil, + exp: sdk.Coins{}, + }, + { + name: "nil empty", + a: nil, + b: sdk.Coins{}, + exp: sdk.Coins{}, + }, + { + name: "empty nil", + a: sdk.Coins{}, + b: nil, + exp: sdk.Coins{}, + }, + { + name: "empty empty", + a: sdk.Coins{}, + b: sdk.Coins{}, + exp: sdk.Coins{}, + }, + { + name: "one denom nil", + a: cz("5acoin"), + b: nil, + exp: cz("5acoin"), + }, + { + name: "one denom empty", + a: cz("5acoin"), + b: sdk.Coins{}, + exp: cz("5acoin"), + }, + { + name: "nil one denom", + a: nil, + b: cz("3bcoin"), + exp: cz("3bcoin"), + }, + { + name: "empty one denom", + a: sdk.Coins{}, + b: cz("3bcoin"), + exp: cz("3bcoin"), + }, + { + name: "two denoms nil", + a: cz("1aone,2atwo"), + b: nil, + exp: cz("1aone,2atwo"), + }, + { + name: "two denoms empty", + a: cz("1aone,2atwo"), + b: sdk.Coins{}, + exp: cz("1aone,2atwo"), + }, + { + name: "nil two denoms", + a: nil, + b: cz("4bone,5btwo"), + exp: cz("4bone,5btwo"), + }, + { + name: "empty two denoms", + a: sdk.Coins{}, + b: cz("4bone,5btwo"), + exp: cz("4bone,5btwo"), + }, + { + name: "different denoms", + a: cz("99acoin"), + b: cz("101bcoin"), + exp: cz("99acoin,101bcoin"), + }, + { + name: "both have same denom a bigger", + a: cz("2sharecoin"), + b: cz("1sharecoin"), + exp: cz("2sharecoin"), + }, + { + name: "both have same denom b bigger", + a: cz("4sharecoin"), + b: cz("5sharecoin"), + exp: cz("5sharecoin"), + }, + { + name: "each with unique denoms", + a: cz("3aonecoin,8atwocoin"), + b: cz("4bonecoin,9btwocoin"), + exp: cz("3aonecoin,8atwocoin,4bonecoin,9btwocoin"), + }, + { + name: "one denom smaller vs two denoms", + a: cz("1share"), + b: cz("2bcoin,2share"), + exp: cz("2bcoin,2share"), + }, + { + name: "one denom larger vs two denoms", + a: cz("3share"), + b: cz("2bcoin,2share"), + exp: cz("2bcoin,3share"), + }, + { + name: "two denoms vs one denom smaller", + a: cz("2acoin,2share"), + b: cz("1share"), + exp: cz("2acoin,2share"), + }, + { + name: "two denoms vs one denom larger", + a: cz("2acoin,2share"), + b: cz("3share"), + exp: cz("2acoin,3share"), + }, + { + name: "multiple denoms one shared a bigger", + a: cz("9aonlycoin,22sharecoin"), + b: cz("6bonlycoin,7bonlytwo,21sharecoin"), + exp: cz("9aonlycoin,6bonlycoin,7bonlytwo,22sharecoin"), + }, + { + name: "multiple denoms one shared b bigger", + a: cz("9aonlycoin,22sharecoin"), + b: cz("6bonlycoin,7bonlytwo,23sharecoin"), + exp: cz("9aonlycoin,6bonlycoin,7bonlytwo,23sharecoin"), + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + var actual sdk.Coins + testFunc := func() { + actual = simulation.MaxCoins(tc.a, tc.b) + } + require.NotPanics(t, testFunc, "MaxCoins") + assert.Equal(t, tc.exp.String(), actual.String(), "MaxCoins result") + }) + } +} + +func (s *SimTestSuite) TestSimulateGovMsgSanction() { + chainID := "test-simulate-gov-msg-sanction" + + s.resetAccsRand() + + tests := []struct { + name string + setup func() + accs []simtypes.Account + expInErr []string + expOpMsgOK bool + expOpMsgRoute string + expOpMsgName string + expOpMsgComment string + }{ + { + name: "gov min deposit equals immediate sanction", + setup: func() { + s.requireSetGovParamsMinDeposit(s.sanctMinDep) + }, + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgSanction{}), + expOpMsgComment: "cannot sanction without it being immediate", + }, + { + name: "gov min deposit greater than immediate sanction", + setup: func() { + s.requireSetGovParamsMinDeposit(s.sanctMinDep.Add(s.govMinDep...)) + }, + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgSanction{}), + expOpMsgComment: "cannot sanction without it being immediate", + }, + { + name: "problem sending gov msg", + accs: s.createTestingAccountsWithPower(s.accsRand, 10, 0), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgSanction{}), + expOpMsgComment: "sender has no spendable coins", + }, + { + name: "all good", + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "sanction", + }, + } + + wopArgs := s.getWeightedOpsArgs() + voteType := sdk.MsgTypeURL(&govv1.MsgVote{}) + + for _, tc := range tests { + s.Run(tc.name, func() { + s.freshCtx() + s.requireResetParams() + if tc.setup != nil { + tc.setup() + } + var op simtypes.Operation + testFunc := func() { + op = simulation.SimulateGovMsgSanction(&wopArgs) + } + s.Require().NotPanics(testFunc, "SimulateGovMsgSanction") + var opMsg simtypes.OperationMsg + var fops []simtypes.FutureOperation + var err error + testOp := func() { + opMsg, fops, err = op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, tc.accs, chainID) + } + s.Require().NotPanics(testOp, "SimulateGovMsgSanction op execution") + assertions.AssertErrorContents(s.T(), err, tc.expInErr, "op error") + s.Assert().Equal(tc.expOpMsgOK, opMsg.OK, "op msg ok") + s.Assert().Equal(tc.expOpMsgRoute, opMsg.Route, "op msg route") + s.Assert().Equal(tc.expOpMsgName, opMsg.Name, "op msg name") + s.Assert().Equal(tc.expOpMsgComment, opMsg.Comment, "op msg comment") + if !tc.expOpMsgOK && !opMsg.OK { + s.Assert().Empty(fops, "future ops") + } + if tc.expOpMsgOK && opMsg.OK { + s.Assert().Equal(len(tc.accs), len(fops), "number of future ops") + // If we were expecting it to be okay, and it was, run all the future ops too. + // Some of them might fail (due to being sanctioned), + // but all the ones that went through should be YES votes. + maxBlockTime := s.ctx.BlockHeader().Time.Add(s.votingPeriod) + prop := s.getLastGovProp() + s.Assert().Equal(s.govMinDep.String(), sdk.NewCoins(prop.TotalDeposit...).String(), "prop deposit") + preVotes := s.getVotes(prop.Id) + // There shouldn't be any votes yet. + if !s.Assert().Empty(preVotes, "votes before running future ops") { + for i, fop := range fops { + s.Assert().LessOrEqual(fop.BlockTime, maxBlockTime, "future op %d block time", i+1) + s.Assert().Equal(0, fop.BlockHeight, "future op %d block height", i+1) + var fopMsg simtypes.OperationMsg + var ffops []simtypes.FutureOperation + testFop := func() { + fopMsg, ffops, err = fop.Op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, tc.accs, chainID) + } + if !s.Assert().NotPanics(testFop, "future op %d execution", i+1) { + continue + } + if err != nil { + s.T().Logf("future op %d returned an error, but that's kind of expected: %v", i+1, err) + continue + } + if !fopMsg.OK { + s.T().Logf("future op %d returned not okay, but that's kind of expected: %q", i+1, fopMsg.Comment) + continue + } + s.Assert().Empty(ffops, "future ops returned by future op %d", i+1) + s.Assert().Equal(voteType, fopMsg.Name, "future op %d msg name", i+1) + s.Assert().Equal(tc.expOpMsgComment, fopMsg.Comment, "future op %d msg comment", i+1) + } + // Now there should be some votes. + postVotes := s.getVotes(prop.Id) + for i, vote := range postVotes { + if s.Assert().Len(vote.Options, 1, "vote %d options count", i+1) { + s.Assert().Equal(govv1.OptionYes, vote.Options[0].Option, "vote %d option", i+1) + s.Assert().Equal("1.000000000000000000", vote.Options[1].Weight, "vote %d weight", i+1) + } + } + } + // Now, get the message and count the number of addresses listed that were provided. + providedAddrs := make(map[string]bool) + for _, acc := range tc.accs { + providedAddrs[acc.Address.String()] = true + } + msgs, err := prop.GetMsgs() + if s.Assert().NoError(err, "getting messages from the proposal") { + if s.Assert().Len(msgs, 1, "number of messages in the proposal") { + msg, ok := msgs[0].(*sanction.MsgSanction) + if s.Assert().True(ok, "could not cast prop msg to MsgSanction") { + s.Assert().NotEmpty(msg.Addresses, "msg Addresses") + var inMsg []string + for _, addr := range msg.Addresses { + if providedAddrs[addr] { + inMsg = append(inMsg, addr) + } + } + s.Assert().Empty(inMsg, "provided accs that ended up in the gov prop msg") + } + } + } + } + }) + } +} + +func (s *SimTestSuite) TestSimulateGovMsgSanctionImmediate() { + chainID := "test-simulate-gov-msg-immediate-sanction" + + s.resetAccsRand() + + tests := []struct { + name string + setup func() + r *rand.Rand + accs []simtypes.Account + expInErr []string + expOpMsgOK bool + expOpMsgRoute string + expOpMsgName string + expOpMsgComment string + expVote govv1.VoteOption + expDeposit sdk.Coins + }{ + { + name: "immediate min deposit is zero", + setup: func() { + assertions.RequireNotPanicsNoError(s.T(), func() error { + return s.app.SanctionKeeper.SetParams(s.ctx, &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{}, + ImmediateUnsanctionMinDeposit: sdk.Coins{}, + }) + }, "sanction SetParams") + }, + r: rand.New(rand.NewSource(1)), + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgSanction{}), + expOpMsgComment: "immediate sanction min deposit is zero", + }, + { + name: "gov min deposit less than immediate sanction", + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate sanction", + expVote: govv1.OptionYes, + expDeposit: s.sanctMinDep, + }, + { + name: "gov min deposit equals immediate sanction", + setup: func() { + s.requireSetGovParamsMinDeposit(s.sanctMinDep) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate sanction", + expVote: govv1.OptionYes, + expDeposit: s.sanctMinDep, + }, + { + name: "gov min deposit greater than immediate sanction", + setup: func() { + s.requireSetGovParamsMinDeposit(s.sanctMinDep.Add(s.govMinDep...)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate sanction", + expVote: govv1.OptionYes, + expDeposit: s.sanctMinDep.Add(s.govMinDep...), + }, + { + name: "problem sending gov msg", + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccountsWithPower(s.accsRand, 10, 0), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgSanction{}), + expOpMsgComment: "sender has no spendable coins", + }, + { + name: "all good yes vote", + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate sanction", + expVote: govv1.OptionYes, + expDeposit: s.sanctMinDep, + }, + { + name: "all good no vote", + r: rand.New(rand.NewSource(0)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate sanction", + expVote: govv1.OptionNo, + expDeposit: s.sanctMinDep, + }, + } + + wopArgs := s.getWeightedOpsArgs() + voteType := sdk.MsgTypeURL(&govv1.MsgVote{}) + + for _, tc := range tests { + s.Run(tc.name, func() { + s.freshCtx() + s.requireResetParams() + if tc.setup != nil { + tc.setup() + } + var op simtypes.Operation + testFunc := func() { + op = simulation.SimulateGovMsgSanctionImmediate(&wopArgs) + } + s.Require().NotPanics(testFunc, "SimulateGovMsgSanctionImmediate") + var opMsg simtypes.OperationMsg + var fops []simtypes.FutureOperation + var err error + testOp := func() { + opMsg, fops, err = op(tc.r, s.app.BaseApp, s.ctx, tc.accs, chainID) + } + s.Require().NotPanics(testOp, "SimulateGovMsgSanctionImmediate op execution") + assertions.AssertErrorContents(s.T(), err, tc.expInErr, "op error") + s.Assert().Equal(tc.expOpMsgOK, opMsg.OK, "op msg ok") + s.Assert().Equal(tc.expOpMsgRoute, opMsg.Route, "op msg route") + s.Assert().Equal(tc.expOpMsgName, opMsg.Name, "op msg name") + s.Assert().Equal(tc.expOpMsgComment, opMsg.Comment, "op msg comment") + if !tc.expOpMsgOK && !opMsg.OK { + s.Assert().Empty(fops, "future ops") + } + if tc.expOpMsgOK && opMsg.OK { + s.Assert().Equal(len(tc.accs), len(fops), "number of future ops") + // If we were expecting it to be okay, and it was, run all the future ops too. + // Some of them might fail (due to being sanctioned), + // but all the ones that went through should be YES votes. + maxBlockTime := s.ctx.BlockHeader().Time.Add(s.votingPeriod) + prop := s.getLastGovProp() + s.Assert().Equal(tc.expDeposit.String(), sdk.NewCoins(prop.TotalDeposit...).String(), "prop deposit") + preVotes := s.getVotes(prop.Id) + // There shouldn't be any votes yet. + if !s.Assert().Empty(preVotes, "votes before running future ops") { + for i, fop := range fops { + s.Assert().LessOrEqual(fop.BlockTime, maxBlockTime, "future op %d block time", i+1) + s.Assert().Equal(0, fop.BlockHeight, "future op %d block height", i+1) + var fopMsg simtypes.OperationMsg + var ffops []simtypes.FutureOperation + testFop := func() { + fopMsg, ffops, err = fop.Op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, tc.accs, chainID) + } + if !s.Assert().NotPanics(testFop, "future op %d execution", i+1) { + continue + } + if err != nil { + s.T().Logf("future op %d returned an error, but that's kind of expected: %v", i+1, err) + continue + } + if !fopMsg.OK { + s.T().Logf("future op %d returned not okay, but that's kind of expected: %q", i+1, fopMsg.Comment) + continue + } + s.Assert().Empty(ffops, "future ops returned by future op %d", i+1) + s.Assert().Equal(voteType, fopMsg.Name, "future op %d msg name", i+1) + s.Assert().Equal(tc.expOpMsgComment, fopMsg.Comment, "future op %d msg comment", i+1) + } + // Now there should be some votes. + postVotes := s.getVotes(prop.Id) + for i, vote := range postVotes { + if s.Assert().Len(vote.Options, 1, "vote %d options count", i+1) { + s.Assert().Equal(tc.expVote, vote.Options[0].Option, "vote %d option", i+1) + s.Assert().Equal("1.000000000000000000", vote.Options[1].Weight, "vote %d weight", i+1) + } + } + } + // Now, get the message and count the number of addresses listed that were provided. + providedAddrs := make(map[string]bool) + for _, acc := range tc.accs { + providedAddrs[acc.Address.String()] = true + } + msgs, err := prop.GetMsgs() + if s.Assert().NoError(err, "getting messages from the proposal") { + if s.Assert().Len(msgs, 1, "number of messages in the proposal") { + msg, ok := msgs[0].(*sanction.MsgSanction) + if s.Assert().True(ok, "could not cast prop msg to MsgSanction") { + s.Assert().NotEmpty(msg.Addresses, "msg Addresses") + var inMsg []string + for _, addr := range msg.Addresses { + if providedAddrs[addr] { + inMsg = append(inMsg, addr) + } + } + s.Assert().Empty(inMsg, "provided accs that ended up in the gov prop msg") + } + } + } + } + }) + } +} + +func (s *SimTestSuite) TestSimulateGovMsgUnsanction() { + chainID := "test-simulate-gov-msg-unsanction" + + s.resetAccsRand() + + tests := []struct { + name string + setup func() + accs []simtypes.Account + expInErr []string + expOpMsgOK bool + expOpMsgRoute string + expOpMsgName string + expOpMsgComment string + expAddrCount int + }{ + { + name: "no addresses sanctioned", + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + expOpMsgComment: "no addresses are sanctioned", + }, + { + name: "gov min deposit equals immediate unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + s.requireSetGovParamsMinDeposit(s.unsanctMinDep) + }, + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + expOpMsgComment: "cannot unsanction without it being immediate", + }, + { + name: "gov min deposit greater than immediate unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + s.requireSetGovParamsMinDeposit(s.unsanctMinDep.Add(s.govMinDep...)) + }, + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + expOpMsgComment: "cannot unsanction without it being immediate", + }, + { + name: "problem sending gov msg", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + }, + accs: s.createTestingAccountsWithPower(s.accsRand, 10, 0), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + expOpMsgComment: "sender has no spendable coins", + }, + { + name: "3 addrs to unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(3)) + }, + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "unsanction", + expAddrCount: 3, + }, + { + name: "10 addrs to unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(10)) + }, + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "unsanction", + expAddrCount: 4, + }, + { + name: "39 addrs to unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(39)) + }, + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "unsanction", + expAddrCount: 9, + }, + { + name: "40 addrs to unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(40)) + }, + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "unsanction", + expAddrCount: 10, + }, + } + + wopArgs := s.getWeightedOpsArgs() + voteType := sdk.MsgTypeURL(&govv1.MsgVote{}) + + for _, tc := range tests { + s.Run(tc.name, func() { + s.freshCtx() + s.requireResetState() + if tc.setup != nil { + tc.setup() + } + var op simtypes.Operation + testFunc := func() { + op = simulation.SimulateGovMsgUnsanction(&wopArgs) + } + s.Require().NotPanics(testFunc, "SimulateGovMsgUnsanction") + var opMsg simtypes.OperationMsg + var fops []simtypes.FutureOperation + var err error + testOp := func() { + opMsg, fops, err = op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, tc.accs, chainID) + } + s.Require().NotPanics(testOp, "SimulateGovMsgUnsanction op execution") + assertions.AssertErrorContents(s.T(), err, tc.expInErr, "op error") + s.Assert().Equal(tc.expOpMsgOK, opMsg.OK, "op msg ok") + s.Assert().Equal(tc.expOpMsgRoute, opMsg.Route, "op msg route") + s.Assert().Equal(tc.expOpMsgName, opMsg.Name, "op msg name") + s.Assert().Equal(tc.expOpMsgComment, opMsg.Comment, "op msg comment") + if !tc.expOpMsgOK && !opMsg.OK { + s.Assert().Empty(fops, "future ops") + } + if tc.expOpMsgOK && opMsg.OK { + s.Assert().Equal(len(tc.accs), len(fops), "number of future ops") + // If we were expecting it to be okay, and it was, run all the future ops too. + // Some of them might fail (due to being sanctioned), + // but all the ones that went through should be YES votes. + maxBlockTime := s.ctx.BlockHeader().Time.Add(s.votingPeriod) + prop := s.getLastGovProp() + s.Assert().Equal(s.govMinDep.String(), sdk.NewCoins(prop.TotalDeposit...).String(), "prop deposit") + preVotes := s.getVotes(prop.Id) + // There shouldn't be any votes yet. + if !s.Assert().Empty(preVotes, "votes before running future ops") { + for i, fop := range fops { + s.Assert().LessOrEqual(fop.BlockTime, maxBlockTime, "future op %d block time", i+1) + s.Assert().Equal(0, fop.BlockHeight, "future op %d block height", i+1) + var fopMsg simtypes.OperationMsg + var ffops []simtypes.FutureOperation + testFop := func() { + fopMsg, ffops, err = fop.Op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, tc.accs, chainID) + } + if !s.Assert().NotPanics(testFop, "future op %d execution", i+1) { + continue + } + if err != nil { + s.T().Logf("future op %d returned an error, but that's kind of expected: %v", i+1, err) + continue + } + if !fopMsg.OK { + s.T().Logf("future op %d returned not okay, but that's kind of expected: %q", i+1, fopMsg.Comment) + continue + } + s.Assert().Empty(ffops, "future ops returned by future op %d", i+1) + s.Assert().Equal(voteType, fopMsg.Name, "future op %d msg name", i+1) + s.Assert().Equal(tc.expOpMsgComment, fopMsg.Comment, "future op %d msg comment", i+1) + } + // Now there should be some votes. + postVotes := s.getVotes(prop.Id) + for i, vote := range postVotes { + if s.Assert().Len(vote.Options, 1, "vote %d options count", i+1) { + s.Assert().Equal(govv1.OptionYes, vote.Options[0].Option, "vote %d option", i+1) + s.Assert().Equal("1.000000000000000000", vote.Options[1].Weight, "vote %d weight", i+1) + } + } + } + // Now, get the message and count the number of addresses listed that were provided. + providedAddrs := make(map[string]bool) + for _, acc := range tc.accs { + providedAddrs[acc.Address.String()] = true + } + msgs, err := prop.GetMsgs() + if s.Assert().NoError(err, "getting messages from the proposal") { + if s.Assert().Len(msgs, 1, "number of messages in the proposal") { + msg, ok := msgs[0].(*sanction.MsgUnsanction) + if s.Assert().True(ok, "could not cast prop msg to MsgUnsanction") { + s.Assert().Len(msg.Addresses, tc.expAddrCount, "msg Addresses") + var inMsg []string + for _, addr := range msg.Addresses { + if providedAddrs[addr] { + inMsg = append(inMsg, addr) + } + } + s.Assert().Empty(inMsg, "provided accs that ended up in the gov prop msg") + } + } + } + } + }) + } +} + +func (s *SimTestSuite) TestSimulateGovMsgUnsanctionImmediate() { + chainID := "test-simulate-gov-msg-immediate-unsanction" + + s.resetAccsRand() + + tests := []struct { + name string + setup func() + r *rand.Rand + accs []simtypes.Account + expInErr []string + expOpMsgOK bool + expOpMsgRoute string + expOpMsgName string + expOpMsgComment string + expVote govv1.VoteOption + expDeposit sdk.Coins + expAddrCount int + }{ + { + name: "no addrs to sanction", + r: rand.New(rand.NewSource(1)), + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + expOpMsgComment: "no addresses are sanctioned", + }, + { + name: "immediate min deposit is zero", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + assertions.RequireNotPanicsNoError(s.T(), func() error { + return s.app.SanctionKeeper.SetParams(s.ctx, &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{}, + ImmediateUnsanctionMinDeposit: sdk.Coins{}, + }) + }, "sanction SetParams") + }, + r: rand.New(rand.NewSource(1)), + accs: simtypes.RandomAccounts(s.accsRand, 10), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + expOpMsgComment: "immediate unsanction min deposit is zero", + expAddrCount: 4, + }, + { + name: "gov min deposit less than immediate unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionYes, + expDeposit: s.unsanctMinDep, + expAddrCount: 4, + }, + { + name: "gov min deposit equals immediate unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + s.requireSetGovParamsMinDeposit(s.unsanctMinDep) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionYes, + expDeposit: s.unsanctMinDep, + expAddrCount: 4, + }, + { + name: "gov min deposit greater than immediate unsanction", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + s.requireSetGovParamsMinDeposit(s.unsanctMinDep.Add(s.govMinDep...)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionYes, + expDeposit: s.unsanctMinDep.Add(s.govMinDep...), + expAddrCount: 4, + }, + { + name: "problem sending gov msg", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(5)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccountsWithPower(s.accsRand, 10, 0), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUnsanction{}), + expOpMsgComment: "sender has no spendable coins", + }, + { + name: "3 addrs to unsanction yes", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(3)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionYes, + expDeposit: s.unsanctMinDep, + expAddrCount: 3, + }, + { + name: "3 addrs to unsanction no", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(3)) + }, + r: rand.New(rand.NewSource(0)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionNo, + expDeposit: s.unsanctMinDep, + expAddrCount: 3, + }, + { + name: "10 addrs to unsanction yes", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(10)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionYes, + expDeposit: s.unsanctMinDep, + expAddrCount: 4, + }, + { + name: "10 addrs to unsanction no", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(10)) + }, + r: rand.New(rand.NewSource(0)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionNo, + expDeposit: s.unsanctMinDep, + expAddrCount: 4, + }, + { + name: "39 addrs to unsanction yes", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(39)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionYes, + expDeposit: s.unsanctMinDep, + expAddrCount: 9, + }, + { + name: "39 addrs to unsanction no", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(39)) + }, + r: rand.New(rand.NewSource(0)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionNo, + expDeposit: s.unsanctMinDep, + expAddrCount: 9, + }, + { + name: "40 addrs to unsanction yes", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(40)) + }, + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionYes, + expDeposit: s.unsanctMinDep, + expAddrCount: 10, + }, + { + name: "40 addrs to unsanction no", + setup: func() { + s.requireSanctionAddresses(s.randAddrs(40)) + }, + r: rand.New(rand.NewSource(0)), + accs: s.createTestingAccounts(s.accsRand, 20), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "immediate unsanction", + expVote: govv1.OptionNo, + expDeposit: s.unsanctMinDep, + expAddrCount: 10, + }, + } + + wopArgs := s.getWeightedOpsArgs() + voteType := sdk.MsgTypeURL(&govv1.MsgVote{}) + + for _, tc := range tests { + s.Run(tc.name, func() { + s.freshCtx() + s.requireResetState() + if tc.setup != nil { + tc.setup() + } + var op simtypes.Operation + testFunc := func() { + op = simulation.SimulateGovMsgUnsanctionImmediate(&wopArgs) + } + s.Require().NotPanics(testFunc, "SimulateGovMsgUnsanctionImmediate") + var opMsg simtypes.OperationMsg + var fops []simtypes.FutureOperation + var err error + testOp := func() { + opMsg, fops, err = op(tc.r, s.app.BaseApp, s.ctx, tc.accs, chainID) + } + s.Require().NotPanics(testOp, "SimulateGovMsgUnsanctionImmediate op execution") + assertions.AssertErrorContents(s.T(), err, tc.expInErr, "op error") + s.Assert().Equal(tc.expOpMsgOK, opMsg.OK, "op msg ok") + s.Assert().Equal(tc.expOpMsgRoute, opMsg.Route, "op msg route") + s.Assert().Equal(tc.expOpMsgName, opMsg.Name, "op msg name") + s.Assert().Equal(tc.expOpMsgComment, opMsg.Comment, "op msg comment") + if !tc.expOpMsgOK && !opMsg.OK { + s.Assert().Empty(fops, "future ops") + } + if tc.expOpMsgOK && opMsg.OK { + s.Assert().Equal(len(tc.accs), len(fops), "number of future ops") + // If we were expecting it to be okay, and it was, run all the future ops too. + // Some of them might fail (due to being sanctioned), + // but all the ones that went through should be YES votes. + maxBlockTime := s.ctx.BlockHeader().Time.Add(s.votingPeriod) + prop := s.getLastGovProp() + s.Assert().Equal(tc.expDeposit.String(), sdk.NewCoins(prop.TotalDeposit...).String(), "prop deposit") + preVotes := s.getVotes(prop.Id) + // There shouldn't be any votes yet. + if !s.Assert().Empty(preVotes, "votes before running future ops") { + for i, fop := range fops { + s.Assert().LessOrEqual(fop.BlockTime, maxBlockTime, "future op %d block time", i+1) + s.Assert().Equal(0, fop.BlockHeight, "future op %d block height", i+1) + var fopMsg simtypes.OperationMsg + var ffops []simtypes.FutureOperation + testFop := func() { + fopMsg, ffops, err = fop.Op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, tc.accs, chainID) + } + if !s.Assert().NotPanics(testFop, "future op %d execution", i+1) { + continue + } + if err != nil { + s.T().Logf("future op %d returned an error, but that's kind of expected: %v", i+1, err) + continue + } + if !fopMsg.OK { + s.T().Logf("future op %d returned not okay, but that's kind of expected: %q", i+1, fopMsg.Comment) + continue + } + s.Assert().Empty(ffops, "future ops returned by future op %d", i+1) + s.Assert().Equal(voteType, fopMsg.Name, "future op %d msg name", i+1) + s.Assert().Equal(tc.expOpMsgComment, fopMsg.Comment, "future op %d msg comment", i+1) + } + // Now there should be some votes. + postVotes := s.getVotes(prop.Id) + for i, vote := range postVotes { + if s.Assert().Len(vote.Options, 1, "vote %d options count", i+1) { + s.Assert().Equal(tc.expVote, vote.Options[0].Option, "vote %d option", i+1) + s.Assert().Equal("1.000000000000000000", vote.Options[1].Weight, "vote %d weight", i+1) + } + } + } + // Now, get the message and count the number of addresses listed that were provided. + providedAddrs := make(map[string]bool) + for _, acc := range tc.accs { + providedAddrs[acc.Address.String()] = true + } + msgs, err := prop.GetMsgs() + if s.Assert().NoError(err, "getting messages from the proposal") { + if s.Assert().Len(msgs, 1, "number of messages in the proposal") { + msg, ok := msgs[0].(*sanction.MsgUnsanction) + if s.Assert().True(ok, "could not cast prop msg to MsgUnsanction") { + s.Assert().Len(msg.Addresses, tc.expAddrCount, "msg Addresses") + var inMsg []string + for _, addr := range msg.Addresses { + if providedAddrs[addr] { + inMsg = append(inMsg, addr) + } + } + s.Assert().Empty(inMsg, "provided accs that ended up in the gov prop msg") + } + } + } + } + }) + } +} + +func (s *SimTestSuite) TestSimulateGovMsgUpdateParams() { + chainID := "test-simulate-gov-msg-update-params" + origMinDep := s.govMinDep + defer func() { + s.govMinDep = origMinDep + }() + s.govMinDep = sdk.NewCoins(sdk.NewInt64Coin(sdk.DefaultBondDenom, 2)) + s.requireResetParams() + + s.resetAccsRand() + + tests := []struct { + name string + r *rand.Rand + accs []simtypes.Account + expInErr []string + expOpMsgOK bool + expOpMsgRoute string + expOpMsgName string + expOpMsgComment string + expParams *sanction.Params + }{ + { + name: "problem sending gov msg", + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccountsWithPower(s.accsRand, 10, 0), + expOpMsgOK: false, + expOpMsgRoute: "sanction", + expOpMsgName: sdk.MsgTypeURL(&sanction.MsgUpdateParams{}), + expOpMsgComment: "sender has no spendable coins", + }, + { + name: "all good seed 1", + r: rand.New(rand.NewSource(1)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "update params", + expParams: &sanction.Params{ + ImmediateSanctionMinDeposit: nil, + ImmediateUnsanctionMinDeposit: sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 821+1)}, + }, + }, + { + name: "all good seed 100", + r: rand.New(rand.NewSource(100)), + accs: s.createTestingAccounts(s.accsRand, 10), + expOpMsgOK: true, + expOpMsgRoute: "gov", + expOpMsgName: sdk.MsgTypeURL(&govv1.MsgSubmitProposal{}), + expOpMsgComment: "update params", + expParams: &sanction.Params{ + ImmediateSanctionMinDeposit: sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 24+1)}, + ImmediateUnsanctionMinDeposit: sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 39+1)}, + }, + }, + } + + wopArgs := s.getWeightedOpsArgs() + voteType := sdk.MsgTypeURL(&govv1.MsgVote{}) + + for _, tc := range tests { + s.Run(tc.name, func() { + s.freshCtx() + var op simtypes.Operation + testFunc := func() { + op = simulation.SimulateGovMsgUpdateParams(&wopArgs) + } + s.Require().NotPanics(testFunc, "SimulateGovMsgUpdateParams") + var opMsg simtypes.OperationMsg + var fops []simtypes.FutureOperation + var err error + testOp := func() { + opMsg, fops, err = op(tc.r, s.app.BaseApp, s.ctx, tc.accs, chainID) + } + s.Require().NotPanics(testOp, "SimulateGovMsgUpdateParams op execution") + assertions.AssertErrorContents(s.T(), err, tc.expInErr, "op error") + s.Assert().Equal(tc.expOpMsgOK, opMsg.OK, "op msg ok") + s.Assert().Equal(tc.expOpMsgRoute, opMsg.Route, "op msg route") + s.Assert().Equal(tc.expOpMsgName, opMsg.Name, "op msg name") + s.Assert().Equal(tc.expOpMsgComment, opMsg.Comment, "op msg comment") + if !tc.expOpMsgOK && !opMsg.OK { + s.Assert().Empty(fops, "future ops") + } + if tc.expOpMsgOK && opMsg.OK { + s.Assert().Equal(len(tc.accs), len(fops), "number of future ops") + // If we were expecting it to be okay, and it was, run all the future ops too. + // Some of them might fail (due to being sanctioned), + // but all the ones that went through should be YES votes. + maxBlockTime := s.ctx.BlockHeader().Time.Add(s.votingPeriod) + prop := s.getLastGovProp() + s.Assert().Equal(s.govMinDep.String(), sdk.NewCoins(prop.TotalDeposit...).String(), "prop deposit") + preVotes := s.getVotes(prop.Id) + // There shouldn't be any votes yet. + if !s.Assert().Empty(preVotes, "votes before running future ops") { + for i, fop := range fops { + s.Assert().LessOrEqual(fop.BlockTime, maxBlockTime, "future op %d block time", i+1) + s.Assert().Equal(0, fop.BlockHeight, "future op %d block height", i+1) + var fopMsg simtypes.OperationMsg + var ffops []simtypes.FutureOperation + testFop := func() { + fopMsg, ffops, err = fop.Op(rand.New(rand.NewSource(1)), s.app.BaseApp, s.ctx, tc.accs, chainID) + } + if !s.Assert().NotPanics(testFop, "future op %d execution", i+1) { + continue + } + if err != nil { + s.T().Logf("future op %d returned an error, but that's kind of expected: %v", i+1, err) + continue + } + if !fopMsg.OK { + s.T().Logf("future op %d returned not okay, but that's kind of expected: %q", i+1, fopMsg.Comment) + continue + } + s.Assert().Empty(ffops, "future ops returned by future op %d", i+1) + s.Assert().Equal(voteType, fopMsg.Name, "future op %d msg name", i+1) + s.Assert().Equal(tc.expOpMsgComment, fopMsg.Comment, "future op %d msg comment", i+1) + } + // Now there should be some votes. + postVotes := s.getVotes(prop.Id) + for i, vote := range postVotes { + if s.Assert().Len(vote.Options, 1, "vote %d options count", i+1) { + s.Assert().Equal(govv1.OptionYes, vote.Options[0].Option, "vote %d option", i+1) + s.Assert().Equal("1.000000000000000000", vote.Options[1].Weight, "vote %d weight", i+1) + } + } + } + // Now, get the message and check its content. + msgs, err := prop.GetMsgs() + if s.Assert().NoError(err, "getting messages from the proposal") { + if s.Assert().Len(msgs, 1, "number of messages in the proposal") { + msg, ok := msgs[0].(*sanction.MsgUpdateParams) + if s.Assert().True(ok, "could not cast prop msg to MsgUpdateParams") { + if !s.Assert().Equal(tc.expParams, msg.Params, "params in gov prop") && tc.expParams != nil && msg.Params != nil { + s.Assert().Equal(tc.expParams.ImmediateSanctionMinDeposit.String(), + msg.Params.ImmediateSanctionMinDeposit.String(), + "ImmediateSanctionMinDeposit") + s.Assert().Equal(tc.expParams.ImmediateUnsanctionMinDeposit.String(), + msg.Params.ImmediateUnsanctionMinDeposit.String(), + "ImmediateUnsanctionMinDeposit") + } + } + } + } + } + }) + } +} diff --git a/x/sanction/spec/01_concepts.md b/x/sanction/spec/01_concepts.md new file mode 100644 index 0000000000..71beb0d4ed --- /dev/null +++ b/x/sanction/spec/01_concepts.md @@ -0,0 +1,134 @@ +# Concepts + + + - [Sanctioned Account](#sanctioned-account) + - [Immediate Temporary Sanctions](#immediate-temporary-sanctions) + - [Unsanctioning](#unsanctioning) + - [Immediate Temporary Unsanctions](#immediate-temporary-unsanctions) + - [Unsanctionable Addresses](#unsanctionable-addresses) + - [Params](#params) + - [Complex Interactions](#complex-interactions) + - [Conflicting Messages in a Proposal](#conflicting-messages-in-a-proposal) + - [Conflicting Governance Proposals](#conflicting-governance-proposals) + +## Sanctioned Account + +An account becomes sanctioned when a governance proposal is passed with a `MsgSanction` in it containing the account's address. +When an account is sanctioned, funds cannot be removed from it. +The funds cannot be sent to another account. They cannot be spent either (e.g. on `Tx` fees). +Funds can be sent *to* a sanctioned account, but would then be immediately frozen in that account. + +Sanctioning is enforced as a restriction injected into the `x/bank` send keeper and prevents removal of funds from an account. +A sanctioned account is otherwise unchanged. + +When an attempt is made to remove funds from a sanctioned account, an error is returned indicating that the account is sanctioned. + +## Immediate Temporary Sanctions + +Immediate Temporary Sanctions (sometimes called just "immediate sanctions" or "temporary sanctions") are possible. +They happen when a `MsgSanction` governance proposal has a large enough deposit. +They also happen if a deposit is added after proposal submittal that puts the proposal's total deposit over the threshold. + +This deposit threshold is managed as a module parameter: `ImmediateSanctionMinDeposit`. +If zero or empty, immediate sanctions are not possible. +If set to the governance proposal minimum deposit or less (not recommended), all `MsgSanction` governance proposals put to a vote will create immediate temporary sanctions. +If set to more than the governance proposal minimum deposit (this is recommended), it's possible to submit a `MsgSanction` proposal without the sanctions being immediate. + +Immediate temporary sanctions are associated with both the governance proposal and address in question. +They expire once the governance proposal is resolved (e.g. the voting period ends). +If the proposal passes, permanent sanctions are enacted and any temporary entries for each address are removed. +If the proposal does not pass, any temporary entries associated with that proposal are removed. + +Note: The phrase "permanent sanction" is used in here as a counterpart to "temporary sanction". +It is "permanent" only in the sense that it isn't temporary. +It is *not* "permanent" in the sense that it is possible to be undone (e.g. with a `MsgUnsanction`). + +## Unsanctioning + +A `MsgUnsanction` can be used in a governance proposal to unsanction accounts. +Once an account is unsanctioned, it can again send or spend its funds. + +## Immediate Temporary Unsanctions + +Similar to immediate temporary sanctions, these are created when a `MsgUnsanction` proposal has a large enough deposit (either initially or later). + +This deposit threshold is managed as a module parameter: `ImmediateUnsanctionMinDeposit`. +If zero or empty, immediate unsanctions are not possible. +If set to the governance proposal minimum deposit or less (not recommended), all `MsgUnsanction` governance proposals put to a vote will create immediate temporary unsanctions. +If set to more than the governance proposal minimum deposit (this is recommended), it's possible to submit a `MsgUnsanction` proposal without the unsanctions being immediate. + +Immediate temporary unsanctions are associated with both the governance proposal and address in question. +They expire once the governance proposal is resolved (e.g. the voting period ends). +If the proposal passes, permanent sanctions are removed and any temporary entries for each address are removed. +If the proposal does not pass, any temporary entries associated with that proposal are removed. + +## Unsanctionable Addresses + +When creating the sanction keeper, a list of addresses of unsanctionable accounts can be provided. +An attempt to sanction or enact an immediate temporary sanction on an address in that list results in the error: `"address cannot be sanctioned"`. + +An example of an account that should not be sanctionable is the fee collector. + +## Params + +The `x/sanction` module has some params that can be defined in state. + +* `ImmediateSanctionMinDeposit` is the minimum deposit required for immediate temporary sanctions to be enacted for addresses in a `MsgSanction`. +* `ImmediateUnsanctionMinDeposit` is the minimum deposit required for immediate temporary unsanctions to be enacted for addresses in a `MsgUnsanction`. + +If not defined in state, the following variables are used (defined in `x/sanction/sanction.go`): +* `DefaultImmediateSanctionMinDeposit` +* `DefaultImmediateUnsanctionMinDeposit` + +By default, those have a value of `nil` which makes it impossible to enact immediate temporary sanctions or unsanctions. +They are public, though, so consuming chains can change them as desired. + +The default variables are only used if the state entry does not exist. +If the entry exists, but is empty, that empty value is used. + +It is recommended that both of these minimum deposits be significantly larger than the governance proposal minimum deposit. +This is to prevent malicious use of immediate temporary sanctions or unsanctions. + +## Complex Interactions + +It's possible to end up with some complex interactions due to multiple `MsgSanction` and `MsgUnsanction` messages with large enough deposits for temporary effects. +In a general sense, the last one takes precedence. + +### Conflicting Messages in a Proposal + +When a proposal has multiple messages, they are processed in the order they are listed in the proposal. +So if a governance proposal contains both a `MsgSanction` and `MsgUnsanction`, and one or more addresses are listed in both, +then, the last message they're in takes precedence. + +For example, say a proposal has, a `MsgSanction` for accounts A, B, and C, then a `MsgUnsanction` for accounts B, C, and D. +And the proposal has enough of a deposit for both immediate sanctions and unsanctions. +There will be 4 temporary entries: account A will have a temporary sanction; and B, C, and D will have temporary unsanctions. +If the proposal passes, a permanent sanction will be placed on A, and accounts B, C, and D will have their sanctions removed. + +If a proposal contains both a `MsgSanction` and `MsgUnsanction` and the total deposit is enough for immediate temporary entries of one type, but not the other, +the temporary entries are enacted for the one, but not the other. If later, more deposit is added so there's enough for both, the others will then be enacted too. + +### Conflicting Governance Proposals + +If multiple governance proposals have immediate temporary effects, the effect from the proposal with the largest id takes precedence. +Voting period start and end times/heights are not taken into account, only the proposal id. + +For example, let's say proposal 3 has a `MsgSanction` for accounts A, B, and C; and proposal 5 has a `MsgUnsanction` for accounts B, C, and D. +Both have large enough deposits for immediate effects. +There will be six temporary entries, A+3, B+3, C+3, B+5, C+5, and D+5. +But the temporary entries for accounts B and C from prop 3 are ignored because of their prop 5 entries. +In effect, account A will have a temporary sanction; and accounts, B, C, and D will have temporary unsanctions. + +Scenarios: +* Prop 3 passes while prop 5 is still being voted on: + All temporary entries for accounts A, B, and C are removed, and those accounts are permanently sanctioned. + The only temporary entry left will be an unsanction for account D. +* Prop 3 does not pass while prop 5 is still being voted on: + The temporary sanction entries for accounts A, B, and C are removed leaving temporary unsanction entries for B, C, and D. + No permanent sanctions are enacted. +* Prop 5 passes while prop 3 is still being voted on: + All temporary entries for accounts B, C, and D are removed and permanent sanctions are also removed for those accounts. + The only temporary entry left will be a sanction on account A. +* Prop 5 does not pass while prop 3 is still being voted on: + The temporary unsanction entries for accounts B, C, and D are removed leaving temporary sanction entries for A, B, and C. + If accounts B, C, or D were previously permanently sanctioned, those sanctions remain. diff --git a/x/sanction/spec/02_state.md b/x/sanction/spec/02_state.md new file mode 100644 index 0000000000..97cc9ad45c --- /dev/null +++ b/x/sanction/spec/02_state.md @@ -0,0 +1,60 @@ +# State + +The `x/sanction` module uses key/value pairs to store sanction-related data in state. + + + - [Params](#params) + - [Sanctioned Accounts](#sanctioned-accounts) + - [Temporary Entries](#temporary-entries) + - [Temporary Index](#temporary-index) + +## Params + +Each param field is stored in its own record with this format: + +``` +0x00 | []byte() -> []byte() +``` + +| Param Field | `` | `` format | +|----------------------------------|------------------------------------|------------------------| +| `ImmediateSanctionMinDeposit` | `immediate_sanction_min_deposit` | `sdk.Coins.String()` | +| `ImmediateUnsanctionMinDeposit` | `immediate_unsanction_min_deposit` | `sdk.Coins.String()` | + +## Sanctioned Accounts + +When an account is sanctioned, the following record is made: + +``` +0x01 | len([]byte()) | []byte() -> 0x01 +``` + +When an account is unsanctioned, that record is deleted. + +## Temporary Entries + +Immediate temporary sanctions and/or unsanctions are enacted by creating the following record: + +``` +0x02 | len([]byte()) | []byte() | [8]byte() -> byte() +``` + +| Entry type | `` | +|------------|-----------| +| Sanction | `0x01` | +| Unsanction | `0x00` | + +When an account is sanctioned or unsanctioned, all temporary entry records for the address are removed. +If a proposal does not pass, all temporary entry records for that proposal are removed. + +## Temporary Index + +When a temporary entry is created, the following index record is also created: + +``` +0x03 | [8]byte() | len([]byte()) | []byte() -> byte() +``` + +The same `` is used as the correlated temporary entry. + +Temporary index records are removed when their correlated temporary entry record is removed. diff --git a/x/sanction/spec/03_messages.md b/x/sanction/spec/03_messages.md new file mode 100644 index 0000000000..0cba427a8b --- /dev/null +++ b/x/sanction/spec/03_messages.md @@ -0,0 +1,60 @@ +# Msg Service + +All Msg Service endpoints in the `x/sanction` module are for use with governance proposals. + + + - [Msg/Sanction](#msgsanction) + - [Msg/Unsanction](#msgunsanction) + - [Msg/UpdateParams](#msgupdateparams) + +## Msg/Sanction + +A user can request that accounts be sanctioned by submitting a governance proposal containing a `MsgSanction`. +It contains the list of `addresses` of accounts to be sanctioned and the `authority` able to do it. + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/tx.proto#L22-L32 + +If the proposal ever has enough total deposit (defined in params), immediate temporary sanctions are issued for each address. +Temporary sanctions expire at the completion of the governance proposal regardless of outcome. + +If the proposal passes, permanent sanctions are enacted for each address and temporary entries for each address are removed. +Otherwise, any temporary entries associated with the governance proposal are removed. + +It is expected to fail if: +- The `authority` provided does not equal the authority defined for the `x/sanction` module's keeper. + This is most often the address of the `x/gov` module's account. +- Any `addresses` are not valid bech32 encoded address strings. +- Any `addresses` are unsanctionable. + +## Msg/Unsanction + +A user can request that accounts be unsanctioned by submitting a governance proposal containing a `MsgUnsanction`. +It contains the list of `addresses` of accounts to be unsanctioned and the `authority` able to do it. + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/tx.proto#L37-L47 + +If the proposal ever has enough total deposit (defined in params), immediate temporary unsanctions are issued for each address. +Temporary unsanctions expire at the completion of the governance proposal regardless of outcome. + +If the proposal passes, permanent sanctions are removed for each address and temporary entries for each address are also removed. +Otherwise, any temporary entries associated with the governance proposal are removed. + +It is expected to fail if: +- The `authority` provided does not equal the authority defined for the `x/sanction` module's keeper. + This is most often the address of the `x/gov` module's account. +- Any `addresses` are not valid bech32 encoded address strings. + +## Msg/UpdateParams + +The sanction module params can be updated by submitting a governance proposal containing a `MsgUpdateParams`. +It contains the desired new `params` and the `authority` able to update them. + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/tx.proto#L52-L62 + +If `params` is `null`, they will be deleted from state, reverting them to their code-defined defaults. +If a field in `params` is `null` or empty, the record in state will reflect that. + +It is expected to fail if: +- The `authority` provided does not equal the authority defined for the `x/sanction` module's keeper. + This is most often the address of the `x/gov` module's account. +- Any params are invalid. diff --git a/x/sanction/spec/04_events.md b/x/sanction/spec/04_events.md new file mode 100644 index 0000000000..953e375e08 --- /dev/null +++ b/x/sanction/spec/04_events.md @@ -0,0 +1,60 @@ +# Events + +The `x/sanction` module emits the following events. + + + - [EventAddressSanctioned](#eventaddresssanctioned) + - [EventAddressUnsanctioned](#eventaddressunsanctioned) + - [EventTempAddressSanctioned](#eventtempaddresssanctioned) + - [EventTempAddressUnsanctioned](#eventtempaddressunsanctioned) + - [EventParamsUpdated](#eventparamsupdated) + +## EventAddressSanctioned + +This event is emitted when an account is sanctioned. + +`@Type`: `/cosmos.sanction.v1beta1.EventAddressSanctioned` + +| Attribute Key | Attribute Value | +|---------------|---------------------------------------| +| address | {bech32 string of sanctioned account} | + +## EventAddressUnsanctioned + +This event is emitted when an account is unsanctioned. + +`@Type`: `/cosmos.sanction.v1beta1.EventAddressUnsanctioned` + +| Attribute Key | Attribute Value | +|---------------|-----------------------------------------| +| address | {bech32 string of unsanctioned account} | + +## EventTempAddressSanctioned + +This event is emitted when a temporary sanction is placed on an account. + +`@Type`: `/cosmos.sanction.v1beta1.EventTempAddressSanctioned` + +| Attribute Key | Attribute Value | +|---------------|---------------------------------------| +| address | {bech32 string of sanctioned account} | + +## EventTempAddressUnsanctioned + +This event is emitted when a temporary unsanction is placed on an account. + +`@Type`: `/cosmos.sanction.v1beta1.EventTempAddressUnsanctioned` + +| Attribute Key | Attribute Value | +|---------------|-----------------------------------------| +| address | {bech32 string of unsanctioned account} | + +## EventParamsUpdated + +This event is emitted when the `x/sanction` module's params are updated. + +`@Type`: `/cosmos.sanction.v1beta1.EventParamsUpdated` + +| Attribute Key | Attribute Value | +|---------------|-----------------| +| (none) | | diff --git a/x/sanction/spec/05_queries.md b/x/sanction/spec/05_queries.md new file mode 100644 index 0000000000..413de6ce54 --- /dev/null +++ b/x/sanction/spec/05_queries.md @@ -0,0 +1,98 @@ +# gRPC Queries + + + - [Query/IsSanctioned](#queryissanctioned) + - [Query/SanctionedAddresses](#querysanctionedaddresses) + - [Query/TemporaryEntries](#querytemporaryentries) + - [Query/Params](#queryparams) + +## Query/IsSanctioned + +To find out if an account is sanctioned, use `QueryIsSanctionedRequest`. +The query takes in an `address` and outputs whether the account `is_sanctioned`. + +This query takes into account any temporary sanctions or unsanctions. +If it returns `true`, the account is not allowed to move its funds. +If it returns `false`, the account *is* allowed to move its funds (at least from a sanction perspective). + +Request: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L34-L37 + +Response: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L39-L43 + +It is expected to fail if the `address` is invalid. + +## Query/SanctionedAddresses + +To get all addresses that have permanent sanctions, use `QuerySanctionedAddressesRequest`. +It takes in `pagination` parameters and outputs a list of `addresses`. + +Request: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L45-L49 + +Response: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L51-L58 + +This query does not take into account temporary sanctions or temporary unsanctions. +Addresses that are temporarily sanctioned (but not permanently sanctioned) are **not** returned by this query. +Addresses that are permanently sanctioned but temporarily unsanctioned **are** returned by this query. + +This query is paginated. + +It is expected to fail if invalid `pagination` parameters are provided. + +## Query/TemporaryEntries + +To get information about temporarily sanctioned or unsanctioned accounts, use `QueryTemporaryEntriesRequest`. +It takes in `pagination` parameters and an optional `address`. + +Request: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L60-L67 + +Response: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L69-L75 + +TemporaryEntry: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/sanction.proto#L27-L35 + +TempStatus: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/sanction.proto#L37-L47 + +- If an `address` is provided, only temporary entries associated with that address are returned. +- If an `address` is provided that does not have any temporary entries, a single `TemporaryEntry` with a `status` of `TEMP_STATUS_UNSPECIFIED` is returned. + Otherwise only entries with a `status` of `TEMP_STATUS_SANCTIONED` or `TEMP_STATUS_UNSANCTIONED` are returned. +- If an `address` is not provided, all temporary entries are returned. + +This query is paginated. + +It is expected to fail if: +- An `address` is provided that is invalid. +- Invalid `pagination` parameters are provided. + +## Query/Params + +To get the `x/sanction` module's params, use `QueryParamsRequest`. +It has no input and outputs the `params`. + +Request: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L77-L78 + +Response: + ++++ https://github.com/provenance-io/provenance/blob/v1.19.0/proto/cosmos/sanction/v1beta1/query.proto#L80-L84 + +This query returns the values used for the params. +That is, if there are params stored in state, they are returned; +if there aren't params stored in state, the default values are returned. + +It is not expected to fail. diff --git a/x/sanction/spec/06_client.md b/x/sanction/spec/06_client.md new file mode 100644 index 0000000000..397ffbdb02 --- /dev/null +++ b/x/sanction/spec/06_client.md @@ -0,0 +1,120 @@ +# Client + +A user can interact with the `x/sanction` module using `gRPC`, `CLI`, or `REST`. + + + - [gRPC](#grpc) + - [CLI](#cli) + - [Transactions](#transactions) + - [Queries](#queries) + - [REST](#rest) + +## gRPC + +A user can interact with and query the `x/sanction` module using `gRPC`. + +For details see [Msg Service](03_messages.md) or [gRPC Queries](05_queries.md). + +## CLI + +The `gRPC` transaction and query endpoints are made available through CLI helpers. + +### Transactions + +The transaction endpoints are only for use with governance proposals. +As such, the CLI's `tx gov` commands can be used to interact with them. + +### Queries + +Each of these commands facilitates running a `gRPC` query. +Standard `query` flags are available unless otherwise noted. + +#### IsSanctioned + +```shell +$ simd query sanction is-sanctioned --help +Check if an address is sanctioned. + +Examples: + $ simd query sanction is-sanctioned cosmos1v4uxzmtsd3j4zat9wfu5zerywgc47h6luruvdf + $ simd query sanction is cosmos1v4uxzmtsd3j4zat9wfu5zerywgc47h6luruvdf + $ simd query sanction check cosmos1v4uxzmtsd3j4zat9wfu5zerywgc47h6luruvdf + +Usage: + simd query sanction is-sanctioned
[flags] + +Aliases: + is-sanctioned, is, check, is-sanction +``` + +#### SanctionedAddresses + +```shell +$ simd query sanction sanctioned-addresses --help +List all the sanctioned addresses. + +Examples: + $ simd query sanction sanctioned-addresses + $ simd query sanction addresses + $ simd query sanction all + +Usage: + simd query sanction sanctioned-addresses [flags] + +Aliases: + sanctioned-addresses, addresses, all +``` + +Standard pagination flags are also available for this command. + +#### TemporaryEntries + +```shell +simd query sanction temporary-entries --help +List all temporarily sanctioned/unsanctioned addresses. +If an address is provided, only temporary entries for that address are returned. +Otherwise, all temporary entries are returned. + +Examples: + $ simd query sanction temporary-entries + $ simd query sanction temporary-entries cosmos1v4uxzmtsd3j4zat9wfu5zerywgc47h6luruvdf + $ simd query sanction temp-entries + $ simd query sanction temp-entries cosmos1v4uxzmtsd3j4zat9wfu5zerywgc47h6luruvdf + $ simd query sanction temp + $ simd query sanction temp cosmos1v4uxzmtsd3j4zat9wfu5zerywgc47h6luruvdf + +Usage: + simd query sanction temporary-entries [
] [flags] + +Aliases: + temporary-entries, temp-entries, temp +``` + +Standard pagination flags are also available for this command. + +#### Params + +```shell +$ simd query sanction params --help +Get the sanction module params. + +Example: + $ simd query sanction params + +Usage: + simd query sanction params [flags] +``` + +## REST + +Each of the sanction `gRPC` query endpoints is also available through one or more `REST` endpoints. + +| Name | URL | +|-----------------------------|---------------------------------------------------| +| IsSanctioned | `/cosmos/sanction/v1beta1/check/{address}` | +| SanctionedAddresses | `/cosmos/sanction/v1beta1/all` | +| TemporaryEntries - all | `/cosmos/sanction/v1beta1/temp` | +| TemporaryEntries - specific | `/cosmos/sanction/v1beta1/temp?address={address}` | +| Params | `/cosmos/sanction/v1beta1/params` | + +For `SanctionedAddresses` and `TemporaryEntries`, pagination parameters can be provided using the standard pagination query parameters. diff --git a/x/sanction/spec/README.md b/x/sanction/spec/README.md new file mode 100644 index 0000000000..e979b6303a --- /dev/null +++ b/x/sanction/spec/README.md @@ -0,0 +1,15 @@ +# `x/sanction` + +## Abstract + +The Sanction Module allows management of a list of sanctioned accounts that are prevented from sending or spending any funds. +It injects a restriction into the `x/bank` module to enforce these sanctions. + +## Contents + +1. **[Concepts](01_concepts.md)** +2. **[State](02_state.md)** +3. **[Msg Service](03_messages.md)** +4. **[Events](04_events.md)** +5. **[gRPC Queries](05_queries.md)** +6. **[Client](06_client.md)** diff --git a/x/sanction/tx.pb.go b/x/sanction/tx.pb.go new file mode 100644 index 0000000000..9f7bb3997e --- /dev/null +++ b/x/sanction/tx.pb.go @@ -0,0 +1,1376 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/sanction/v1beta1/tx.proto + +package sanction + +import ( + context "context" + fmt "fmt" + _ "github.com/cosmos/cosmos-proto" + _ "github.com/cosmos/cosmos-sdk/types/msgservice" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" + 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 + +// MsgSanction represents a message for the governance operation of sanctioning addresses. +type MsgSanction struct { + // addresses are the addresses to sanction. + Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"` + // authority is the address of the account with the authority to enact sanctions (most likely the governance module + // account). + Authority string `protobuf:"bytes,2,opt,name=authority,proto3" json:"authority,omitempty"` +} + +func (m *MsgSanction) Reset() { *m = MsgSanction{} } +func (m *MsgSanction) String() string { return proto.CompactTextString(m) } +func (*MsgSanction) ProtoMessage() {} +func (*MsgSanction) Descriptor() ([]byte, []int) { + return fileDescriptor_7db49afb1d08944d, []int{0} +} +func (m *MsgSanction) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgSanction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgSanction.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 *MsgSanction) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSanction.Merge(m, src) +} +func (m *MsgSanction) XXX_Size() int { + return m.Size() +} +func (m *MsgSanction) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSanction.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgSanction proto.InternalMessageInfo + +func (m *MsgSanction) GetAddresses() []string { + if m != nil { + return m.Addresses + } + return nil +} + +func (m *MsgSanction) GetAuthority() string { + if m != nil { + return m.Authority + } + return "" +} + +// MsgOptInResponse defines the Msg/Sanction response type. +type MsgSanctionResponse struct { +} + +func (m *MsgSanctionResponse) Reset() { *m = MsgSanctionResponse{} } +func (m *MsgSanctionResponse) String() string { return proto.CompactTextString(m) } +func (*MsgSanctionResponse) ProtoMessage() {} +func (*MsgSanctionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_7db49afb1d08944d, []int{1} +} +func (m *MsgSanctionResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgSanctionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgSanctionResponse.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 *MsgSanctionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSanctionResponse.Merge(m, src) +} +func (m *MsgSanctionResponse) XXX_Size() int { + return m.Size() +} +func (m *MsgSanctionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSanctionResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgSanctionResponse proto.InternalMessageInfo + +// MsgSanction represents a message for the governance operation of unsanctioning addresses. +type MsgUnsanction struct { + // addresses are the addresses to unsanction. + Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"` + // authority is the address of the account with the authority to retract sanctions (most likely the governance module + // account). + Authority string `protobuf:"bytes,2,opt,name=authority,proto3" json:"authority,omitempty"` +} + +func (m *MsgUnsanction) Reset() { *m = MsgUnsanction{} } +func (m *MsgUnsanction) String() string { return proto.CompactTextString(m) } +func (*MsgUnsanction) ProtoMessage() {} +func (*MsgUnsanction) Descriptor() ([]byte, []int) { + return fileDescriptor_7db49afb1d08944d, []int{2} +} +func (m *MsgUnsanction) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUnsanction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUnsanction.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 *MsgUnsanction) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUnsanction.Merge(m, src) +} +func (m *MsgUnsanction) XXX_Size() int { + return m.Size() +} +func (m *MsgUnsanction) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUnsanction.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUnsanction proto.InternalMessageInfo + +func (m *MsgUnsanction) GetAddresses() []string { + if m != nil { + return m.Addresses + } + return nil +} + +func (m *MsgUnsanction) GetAuthority() string { + if m != nil { + return m.Authority + } + return "" +} + +// MsgOptInResponse defines the Msg/Unsanction response type. +type MsgUnsanctionResponse struct { +} + +func (m *MsgUnsanctionResponse) Reset() { *m = MsgUnsanctionResponse{} } +func (m *MsgUnsanctionResponse) String() string { return proto.CompactTextString(m) } +func (*MsgUnsanctionResponse) ProtoMessage() {} +func (*MsgUnsanctionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_7db49afb1d08944d, []int{3} +} +func (m *MsgUnsanctionResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUnsanctionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUnsanctionResponse.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 *MsgUnsanctionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUnsanctionResponse.Merge(m, src) +} +func (m *MsgUnsanctionResponse) XXX_Size() int { + return m.Size() +} +func (m *MsgUnsanctionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUnsanctionResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUnsanctionResponse proto.InternalMessageInfo + +// MsgUpdateParams represents a message for the governance operation of updating the sanction module params. +type MsgUpdateParams struct { + // params are the sanction module parameters. + Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"` + // authority is the address of the account with the authority to update params (most likely the governance module + // account). + Authority string `protobuf:"bytes,2,opt,name=authority,proto3" json:"authority,omitempty"` +} + +func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } +func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } +func (*MsgUpdateParams) ProtoMessage() {} +func (*MsgUpdateParams) Descriptor() ([]byte, []int) { + return fileDescriptor_7db49afb1d08944d, []int{4} +} +func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUpdateParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUpdateParams.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 *MsgUpdateParams) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUpdateParams.Merge(m, src) +} +func (m *MsgUpdateParams) XXX_Size() int { + return m.Size() +} +func (m *MsgUpdateParams) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUpdateParams.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUpdateParams proto.InternalMessageInfo + +func (m *MsgUpdateParams) GetParams() *Params { + if m != nil { + return m.Params + } + return nil +} + +func (m *MsgUpdateParams) GetAuthority() string { + if m != nil { + return m.Authority + } + return "" +} + +// MsgUpdateParamsResponse defined the Msg/UpdateParams response type. +type MsgUpdateParamsResponse struct { +} + +func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse{} } +func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } +func (*MsgUpdateParamsResponse) ProtoMessage() {} +func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_7db49afb1d08944d, []int{5} +} +func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUpdateParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUpdateParamsResponse.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 *MsgUpdateParamsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUpdateParamsResponse.Merge(m, src) +} +func (m *MsgUpdateParamsResponse) XXX_Size() int { + return m.Size() +} +func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUpdateParamsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo + +func init() { + proto.RegisterType((*MsgSanction)(nil), "cosmos.sanction.v1beta1.MsgSanction") + proto.RegisterType((*MsgSanctionResponse)(nil), "cosmos.sanction.v1beta1.MsgSanctionResponse") + proto.RegisterType((*MsgUnsanction)(nil), "cosmos.sanction.v1beta1.MsgUnsanction") + proto.RegisterType((*MsgUnsanctionResponse)(nil), "cosmos.sanction.v1beta1.MsgUnsanctionResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "cosmos.sanction.v1beta1.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "cosmos.sanction.v1beta1.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("cosmos/sanction/v1beta1/tx.proto", fileDescriptor_7db49afb1d08944d) } + +var fileDescriptor_7db49afb1d08944d = []byte{ + // 393 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x2f, 0x4e, 0xcc, 0x4b, 0x2e, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0x33, 0x4c, 0x4a, + 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa8, + 0xd0, 0x83, 0xa9, 0xd0, 0x83, 0xaa, 0x90, 0x82, 0x4a, 0xe8, 0xe7, 0x16, 0xa7, 0xeb, 0x97, 0x19, + 0x82, 0x28, 0x88, 0x0e, 0x29, 0x35, 0x5c, 0x66, 0xc2, 0x8d, 0x80, 0xa8, 0x93, 0x84, 0xa8, 0x8b, + 0x07, 0xf3, 0xf4, 0xa1, 0xd6, 0x80, 0x39, 0x4a, 0xbd, 0x8c, 0x5c, 0xdc, 0xbe, 0xc5, 0xe9, 0xc1, + 0x50, 0x0d, 0x42, 0x66, 0x5c, 0x9c, 0x89, 0x29, 0x29, 0x45, 0xa9, 0xc5, 0xc5, 0xa9, 0xc5, 0x12, + 0x8c, 0x0a, 0xcc, 0x1a, 0x9c, 0x4e, 0x12, 0x97, 0xb6, 0xe8, 0x8a, 0x40, 0x35, 0x39, 0x42, 0xe4, + 0x82, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x83, 0x10, 0x4a, 0xc1, 0xfa, 0x4a, 0x4b, 0x32, 0xf2, 0x8b, + 0x32, 0x4b, 0x2a, 0x25, 0x98, 0x14, 0x18, 0x09, 0xe8, 0x83, 0x29, 0xb5, 0xe2, 0x6b, 0x7a, 0xbe, + 0x41, 0x0b, 0xc1, 0x57, 0x12, 0xe5, 0x12, 0x46, 0x72, 0x4e, 0x50, 0x6a, 0x71, 0x41, 0x7e, 0x5e, + 0x71, 0xaa, 0x52, 0x3f, 0x23, 0x17, 0xaf, 0x6f, 0x71, 0x7a, 0x68, 0x5e, 0xf1, 0x60, 0x71, 0xa8, + 0x38, 0x97, 0x28, 0x8a, 0x83, 0xe0, 0x4e, 0x9d, 0xc4, 0xc8, 0xc5, 0x0f, 0x92, 0x29, 0x48, 0x49, + 0x2c, 0x49, 0x0d, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0x16, 0x32, 0xe7, 0x62, 0x2b, 0x00, 0xb3, 0x24, + 0x18, 0x15, 0x18, 0x35, 0xb8, 0x8d, 0xe4, 0xf5, 0x70, 0xc4, 0xb5, 0x1e, 0x44, 0x43, 0x10, 0x54, + 0x39, 0xd5, 0x5c, 0x2b, 0xc9, 0x25, 0x8e, 0xe6, 0x26, 0x98, 0x7b, 0x8d, 0xb6, 0x33, 0x71, 0x31, + 0xfb, 0x16, 0xa7, 0x0b, 0xc5, 0x71, 0x71, 0xc0, 0x53, 0x81, 0x0a, 0x4e, 0xf7, 0x21, 0x45, 0x8e, + 0x94, 0x0e, 0x31, 0xaa, 0x60, 0xf6, 0x08, 0xa5, 0x70, 0x71, 0x21, 0x45, 0x9f, 0x1a, 0x3e, 0xbd, + 0x08, 0x75, 0x52, 0x7a, 0xc4, 0xa9, 0x83, 0xdb, 0x92, 0xc5, 0xc5, 0x83, 0x12, 0xf2, 0x1a, 0x78, + 0xf5, 0x23, 0xa9, 0x94, 0x32, 0x20, 0x56, 0x25, 0xcc, 0x2e, 0x27, 0x8f, 0x13, 0x8f, 0xe4, 0x18, + 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, + 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4b, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, + 0xcf, 0xd5, 0x2f, 0x28, 0xca, 0x2f, 0x4b, 0xcd, 0x4b, 0xcc, 0x4b, 0x4e, 0xd5, 0xcd, 0xcc, 0x47, + 0xe2, 0xe9, 0x57, 0xc0, 0xb3, 0x69, 0x12, 0x1b, 0x38, 0x33, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x64, 0x49, 0xbb, 0x37, 0x25, 0x04, 0x00, 0x00, +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConn + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion4 + +// MsgClient is the client API for Msg service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type MsgClient interface { + // Sanction is a governance operation for sanctioning addresses. + Sanction(ctx context.Context, in *MsgSanction, opts ...grpc.CallOption) (*MsgSanctionResponse, error) + // Unsanction is a governance operation for unsanctioning addresses. + Unsanction(ctx context.Context, in *MsgUnsanction, opts ...grpc.CallOption) (*MsgUnsanctionResponse, error) + // UpdateParams is a governance operation for updating the sanction module params. + UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) +} + +type msgClient struct { + cc grpc1.ClientConn +} + +func NewMsgClient(cc grpc1.ClientConn) MsgClient { + return &msgClient{cc} +} + +func (c *msgClient) Sanction(ctx context.Context, in *MsgSanction, opts ...grpc.CallOption) (*MsgSanctionResponse, error) { + out := new(MsgSanctionResponse) + err := c.cc.Invoke(ctx, "/cosmos.sanction.v1beta1.Msg/Sanction", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *msgClient) Unsanction(ctx context.Context, in *MsgUnsanction, opts ...grpc.CallOption) (*MsgUnsanctionResponse, error) { + out := new(MsgUnsanctionResponse) + err := c.cc.Invoke(ctx, "/cosmos.sanction.v1beta1.Msg/Unsanction", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { + out := new(MsgUpdateParamsResponse) + err := c.cc.Invoke(ctx, "/cosmos.sanction.v1beta1.Msg/UpdateParams", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// MsgServer is the server API for Msg service. +type MsgServer interface { + // Sanction is a governance operation for sanctioning addresses. + Sanction(context.Context, *MsgSanction) (*MsgSanctionResponse, error) + // Unsanction is a governance operation for unsanctioning addresses. + Unsanction(context.Context, *MsgUnsanction) (*MsgUnsanctionResponse, error) + // UpdateParams is a governance operation for updating the sanction module params. + UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error) +} + +// UnimplementedMsgServer can be embedded to have forward compatible implementations. +type UnimplementedMsgServer struct { +} + +func (*UnimplementedMsgServer) Sanction(ctx context.Context, req *MsgSanction) (*MsgSanctionResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Sanction not implemented") +} +func (*UnimplementedMsgServer) Unsanction(ctx context.Context, req *MsgUnsanction) (*MsgUnsanctionResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Unsanction not implemented") +} +func (*UnimplementedMsgServer) UpdateParams(ctx context.Context, req *MsgUpdateParams) (*MsgUpdateParamsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method UpdateParams not implemented") +} + +func RegisterMsgServer(s grpc1.Server, srv MsgServer) { + s.RegisterService(&_Msg_serviceDesc, srv) +} + +func _Msg_Sanction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgSanction) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MsgServer).Sanction(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.sanction.v1beta1.Msg/Sanction", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MsgServer).Sanction(ctx, req.(*MsgSanction)) + } + return interceptor(ctx, in, info, handler) +} + +func _Msg_Unsanction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgUnsanction) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MsgServer).Unsanction(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.sanction.v1beta1.Msg/Unsanction", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MsgServer).Unsanction(ctx, req.(*MsgUnsanction)) + } + return interceptor(ctx, in, info, handler) +} + +func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgUpdateParams) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MsgServer).UpdateParams(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.sanction.v1beta1.Msg/UpdateParams", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) + } + return interceptor(ctx, in, info, handler) +} + +var _Msg_serviceDesc = grpc.ServiceDesc{ + ServiceName: "cosmos.sanction.v1beta1.Msg", + HandlerType: (*MsgServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Sanction", + Handler: _Msg_Sanction_Handler, + }, + { + MethodName: "Unsanction", + Handler: _Msg_Unsanction_Handler, + }, + { + MethodName: "UpdateParams", + Handler: _Msg_UpdateParams_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "cosmos/sanction/v1beta1/tx.proto", +} + +func (m *MsgSanction) 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 *MsgSanction) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgSanction) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Authority) > 0 { + i -= len(m.Authority) + copy(dAtA[i:], m.Authority) + i = encodeVarintTx(dAtA, i, uint64(len(m.Authority))) + i-- + dAtA[i] = 0x12 + } + if len(m.Addresses) > 0 { + for iNdEx := len(m.Addresses) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Addresses[iNdEx]) + copy(dAtA[i:], m.Addresses[iNdEx]) + i = encodeVarintTx(dAtA, i, uint64(len(m.Addresses[iNdEx]))) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *MsgSanctionResponse) 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 *MsgSanctionResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgSanctionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *MsgUnsanction) 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 *MsgUnsanction) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUnsanction) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Authority) > 0 { + i -= len(m.Authority) + copy(dAtA[i:], m.Authority) + i = encodeVarintTx(dAtA, i, uint64(len(m.Authority))) + i-- + dAtA[i] = 0x12 + } + if len(m.Addresses) > 0 { + for iNdEx := len(m.Addresses) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Addresses[iNdEx]) + copy(dAtA[i:], m.Addresses[iNdEx]) + i = encodeVarintTx(dAtA, i, uint64(len(m.Addresses[iNdEx]))) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *MsgUnsanctionResponse) 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 *MsgUnsanctionResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUnsanctionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *MsgUpdateParams) 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 *MsgUpdateParams) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUpdateParams) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Authority) > 0 { + i -= len(m.Authority) + copy(dAtA[i:], m.Authority) + i = encodeVarintTx(dAtA, i, uint64(len(m.Authority))) + i-- + dAtA[i] = 0x12 + } + if m.Params != nil { + { + size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgUpdateParamsResponse) 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 *MsgUpdateParamsResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUpdateParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *MsgSanction) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Addresses) > 0 { + for _, s := range m.Addresses { + l = len(s) + n += 1 + l + sovTx(uint64(l)) + } + } + l = len(m.Authority) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgSanctionResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *MsgUnsanction) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Addresses) > 0 { + for _, s := range m.Addresses { + l = len(s) + n += 1 + l + sovTx(uint64(l)) + } + } + l = len(m.Authority) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgUnsanctionResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *MsgUpdateParams) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Params != nil { + l = m.Params.Size() + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.Authority) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgUpdateParamsResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func sovTx(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *MsgSanction) 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 ErrIntOverflowTx + } + 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: MsgSanction: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgSanction: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Addresses = append(m.Addresses, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Authority", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Authority = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgSanctionResponse) 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 ErrIntOverflowTx + } + 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: MsgSanctionResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgSanctionResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgUnsanction) 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 ErrIntOverflowTx + } + 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: MsgUnsanction: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUnsanction: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Addresses = append(m.Addresses, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Authority", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Authority = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgUnsanctionResponse) 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 ErrIntOverflowTx + } + 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: MsgUnsanctionResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUnsanctionResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgUpdateParams) 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 ErrIntOverflowTx + } + 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: MsgUpdateParams: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUpdateParams: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Params == nil { + m.Params = &Params{} + } + if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Authority", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Authority = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgUpdateParamsResponse) 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 ErrIntOverflowTx + } + 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: MsgUpdateParamsResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUpdateParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTx(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, ErrIntOverflowTx + } + 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, ErrIntOverflowTx + } + 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, ErrIntOverflowTx + } + 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, ErrInvalidLengthTx + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTx + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTx + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") +)